diff --git a/.eslintrc.js b/.eslintrc.js
index a65f3aa..1ef2f03 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -19,5 +19,12 @@ module.exports = {
allow: ['^nsp_|^cssi_|^wgs_|^rdfs_|^skos_|^foaf_'],
},
],
+ 'import/no-extraneous-dependencies': [
+ 'error',
+ {
+ devDependencies: true,
+ packageDir: './',
+ },
+ ],
},
};
diff --git a/.nvmrc b/.nvmrc
new file mode 100644
index 0000000..2ab3d4b
--- /dev/null
+++ b/.nvmrc
@@ -0,0 +1 @@
+v16.20.2
diff --git a/.prettierrc b/.prettierrc
index dd827c3..40e677d 100644
--- a/.prettierrc
+++ b/.prettierrc
@@ -1,10 +1,11 @@
{
"singleQuote": true,
"trailingComma": "all",
- "jsxBracketSameLine": true,
+ "bracketSameLine": false,
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"semi": true,
- "quoteProps": "as-needed"
+ "quoteProps": "as-needed",
+ "endOfLine": "lf"
}
\ No newline at end of file
diff --git a/CLAUDE.md b/CLAUDE.md
index c26000e..251df6f 100644
--- a/CLAUDE.md
+++ b/CLAUDE.md
@@ -4,50 +4,90 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
## Overview
-The Norman Sicily Project Interactive Map is a React application that displays historical places and sites in Norman Sicily using Leaflet maps. The application uses Redux for state management, Redux-Saga for side effects, and connects to an external API server for geographical and historical data.
+The Norman Sicily Project Interactive Map is a standalone React application that displays historical places and sites in Norman Sicily using Leaflet maps. The application uses Redux for state management, Redux-Saga for side effects, and loads all data from local JSON files. No backend server is required.
+
+## Prerequisites
+
+- Node.js v16.20.2 (use nvm: `nvm use 16`)
+- Yarn package manager (preferred) or npm
## Development Commands
-- **Start development server**: `npm start` or `yarn start` - Starts the development server on port 3000
-- **Build for production**: `npm run build` or `yarn build`
-- **Run tests**: `npm test` or `yarn test` - Runs Jest tests in watch mode
+- **Start development server**: `yarn start` or `npm start` - Starts the development server on port 3000
+- **Build for production**: `yarn build` or `npm run build`
+- **Run tests**: `yarn test` or `npm test` - Runs Jest tests in watch mode
- **Lint code**: `npm run lint` - ESLint check for JavaScript/JSX files in src/
- **Fix linting issues**: `npm run lint:fix` - Auto-fix ESLint issues
- **Format code**: `npm run prettify` - Format code using Prettier
## Architecture
+### Data Format and IRIs
+
+The project uses **Linked Open Data (LOD)** principles with slash-based IRIs for all entities:
+
+**IRI Pattern**: `http://www.normansicily.org/{namespace}/{class}/{type}/{id}`
+
+**Examples**:
+- Places: `http://www.normansicily.org/nsp/place/monastery/164`
+- Assessments: `http://www.normansicily.org/cssi/assessment/26`
+- People: `http://www.example.com/genealogy.owl#51370564` (external)
+
+This pattern supports:
+- Content negotiation for different RDF formats (Turtle, RDF/XML, JSON-LD)
+- Dereferenceable URIs following W3C best practices
+- Proper 303 redirects from resource to document
+
### State Management (Redux)
- **Store**: Configured in `src/index.js` with Redux DevTools integration
- **Reducers**: Main reducer in `src/reducers/index.js` handles map state (sites, currentPlace, loading states)
+ - Transforms data from SPARQL JSON format to GeoJSON via `sparqljson2geojson()`
+ - Handles multilingual labels (array format or simple strings)
- **Actions**: Located in `src/actions/index.js` for map initialization, site loading, and place fetching
-- **Sagas**: `src/sagas/map_saga.js` handles asynchronous operations like API calls
+- **Sagas**: `src/sagas/map_saga.js` handles asynchronous operations like loading data from JSON files
+ - Uses `takeEvery` for initial map load, `takeLatest` for place selection to prevent race conditions
+- **Selectors**: `src/selectors/index.js` uses Reselect for memoized state derivation to optimize performance
### Components Structure
- **Presentational Components**: Located in `src/components/` (e.g., `interactive_map.jsx`, `markers.jsx`, `site_popup.jsx`)
- **Container Components**: Located in `src/containers/` - connect Redux state to presentational components
- **Icons**: SVG icons for different place types stored in `src/icons/`
-### API Integration
-- **Configuration**: `src/config.js` contains API endpoints and map settings
-- **API Client**: `src/api.js` handles HTTP requests to the backend
-- **Environment Variables**: API server settings configurable via `.env` directory:
- - `REACT_APP_API_SERVER_PROTOCOL` (default: http)
- - `REACT_APP_API_SERVER_HOST` (default: localhost)
- - `REACT_APP_API_SERVER_PORT` (default: 4000)
+### Data Integration
+- **Configuration**: `src/config.js` contains map settings and tile configuration
+- **API Client**: `src/api.js` loads data from local JSON files with retry logic and timeout handling
+ - Uses native Fetch API with AbortController for request cancellation
+ - Implements exponential backoff for failed requests
+ - Falls back to basic place data if detailed place file not found (404)
+- **Local Data**: All place data stored in `public/data/places.json` and `public/data/place-details/`
+ - Detail files named `{placeType}_{placeId}.json`
+- **Environment Variables**: Optional Mapbox configuration:
+ - `REACT_APP_MAPBOX_ACCESS_TOKEN` - Mapbox public access token
+ - `REACT_APP_MAPBOX_USERNAME` - Mapbox username (default: mapbox)
+ - `REACT_APP_MAPBOX_STYLE_ID` - Mapbox style ID (default: streets-v11)
### Data Flow
-1. Map initializes via `initMap()` action
-2. Saga fetches sites from API and transforms Stardog RDF data to GeoJSON
-3. Sites are displayed as clustered markers on Leaflet map
-4. User interactions (search, marker clicks) trigger place detail fetches
-5. Place details are displayed in popups with historical data, images, and references
+1. Map initializes via `initMap()` action dispatched in `src/index.js`
+2. Saga loads sites from `public/data/places.json` via `getAllPlaces()` API call
+3. Reducer transforms data to GeoJSON format and stores in Redux state
+4. Sites are displayed as clustered markers on Leaflet map
+5. User interactions (search, marker clicks) dispatch `setSelectedPlace()` action
+6. Saga loads place details from `public/data/place-details/{placeType}_{placeId}.json`
+7. Place details are displayed in popups with historical data, images, and references
+8. Map tiles served directly from Mapbox API (if configured) or OpenStreetMap fallback
+
+### Serverless Architecture
+- **No Backend Required**: Application runs completely client-side
+- **Local Data Storage**: All place data bundled in `public/data/` directory
+- **External Tile Services**: Map tiles served from Mapbox or OpenStreetMap
+- **Static Hosting Ready**: Can be deployed to any static hosting service
### Key Features
- **Multilingual Support**: Uses `react-redux-multilingual` for i18n
- **Search**: Leaflet GeoSearch integration for place searching
- **Map Clustering**: Uses `react-leaflet-markercluster` for marker grouping
- **Media Integration**: Connects to Mirador viewer for historical images
+- **Flexible Tile Sources**: Supports Mapbox (with token) or OpenStreetMap fallback
### Testing
- Uses Jest and Enzyme for component testing
@@ -55,7 +95,14 @@ The Norman Sicily Project Interactive Map is a React application that displays h
- Snapshots are stored in `__snapshots__` directories
### Code Quality
-- **ESLint**: Configured with Airbnb config and additional plugins
-- **Prettier**: Code formatting with pre-commit hooks
+- **ESLint**: Configured with Airbnb config and additional plugins (`.eslintrc.js`)
+ - Custom camelCase exceptions for data field prefixes: `nsp_`, `cssi_`, `wgs_`, `rdfs_`, `skos_`, `foaf_`
+- **Prettier**: Code formatting with pre-commit hooks (`.prettierrc`)
- **Husky**: Git hooks for linting and formatting on commit
-- **Pre-commit**: Runs `lint:fix` and `prettify` on staged files
\ No newline at end of file
+- **Lint-staged**: Runs `lint:fix` and `prettify` on staged files automatically
+
+## Important Notes
+
+- **Data Naming Conventions**: Place data fields use underscored prefixes (e.g., `nsp_id`, `wgs_lat`, `cssi_name`) which are exempted from ESLint camelCase rules
+- **Locale Support**: Default locale is English (`en`), configurable via `?locale=` query parameter
+- **Media Catalog**: Historical images served from external Mirador catalog at `https://media.normansicily.org/data/catalog.js`
\ No newline at end of file
diff --git a/MODERNIZATION_PLAN.md b/MODERNIZATION_PLAN.md
new file mode 100644
index 0000000..b95f340
--- /dev/null
+++ b/MODERNIZATION_PLAN.md
@@ -0,0 +1,173 @@
+# Norman Sicily Interactive Map - Modernization Plan
+
+## Overview
+This document outlines a phased approach to modernize the Norman Sicily Interactive Map application from its current stable setup (Node 16, React 17, react-scripts 4.x) to the latest Long Term Support (LTS) versions.
+
+**Current Status (Stable):**
+- Node.js: v16.20.2
+- React: 17.0.1
+- react-scripts: 4.0.1
+- Dependencies: Legacy but stable versions
+
+**Target (Modern LTS):**
+- Node.js: v20.x (Current LTS as of 2024)
+- React: 18.x
+- react-scripts: 5.x
+- Dependencies: Latest compatible versions
+
+## Phase 1: Preparation (1-2 weeks)
+
+### 1.1 Audit and Documentation
+- [ ] Document all current functionality and test coverage
+- [ ] Create comprehensive test suite for critical user paths
+- [ ] Document all custom components and their dependencies
+- [ ] Backup current stable version with git tag `stable-node16`
+
+### 1.2 Development Environment Setup
+- [ ] Set up parallel development environment with Node 20
+- [ ] Create feature branch `modernization-phase1`
+- [ ] Test current application compatibility with Node 20 in isolation
+
+### 1.3 Dependency Analysis
+- [ ] Run `npm audit` to identify security vulnerabilities
+- [ ] Use tools like `npm-check-updates` to identify outdated packages
+- [ ] Create compatibility matrix for major dependencies:
+ - React ecosystem (react, react-dom, react-scripts)
+ - Leaflet ecosystem (react-leaflet, leaflet plugins)
+ - Redux ecosystem (react-redux, redux-saga)
+ - Build tools and linting
+
+## Phase 2: Foundation Upgrade (2-3 weeks)
+
+### 2.1 Node.js Upgrade
+- [ ] Upgrade Node.js from 16.20.2 to 20.x LTS
+- [ ] Update `.nvmrc` file to specify Node 20
+- [ ] Test all npm scripts work with new Node version
+- [ ] Update CI/CD configurations if applicable
+
+### 2.2 Package Manager and Lock Files
+- [ ] Clean up and consolidate package management (ensure yarn consistency)
+- [ ] Remove `package-lock.json` to avoid conflicts
+- [ ] Update `yarn.lock` with new Node compatibility
+
+### 2.3 Core React Upgrade
+- [ ] Upgrade React from 17.0.1 to 18.x
+- [ ] Upgrade react-dom to match React version
+- [ ] Address React 18 breaking changes:
+ - Update to new Root API (`createRoot` vs `render`)
+ - Handle Strict Mode changes for useEffect
+ - Address automatic batching changes
+
+## Phase 3: Build System Modernization (2-3 weeks)
+
+### 3.1 react-scripts Upgrade
+- [ ] Upgrade react-scripts from 4.0.1 to 5.x
+- [ ] Address webpack 5 compatibility issues
+- [ ] Handle PostCSS 8+ compatibility problems:
+ - Update or replace postcss-dependent plugins
+ - Configure PostCSS plugins properly
+- [ ] Test build process thoroughly
+
+### 3.2 ESLint and Code Quality
+- [ ] Update ESLint to latest version
+- [ ] Update eslint-config-airbnb to latest
+- [ ] Address new linting rules and deprecations
+- [ ] Update Prettier to latest version
+- [ ] Test pre-commit hooks still work
+
+### 3.3 Testing Framework Updates
+- [ ] Update Jest and testing-library packages
+- [ ] Update Enzyme or migrate to React Testing Library
+- [ ] Address any testing compatibility issues
+- [ ] Ensure all tests pass with new versions
+
+## Phase 4: Dependencies Modernization (3-4 weeks)
+
+### 4.1 Map Dependencies
+- [ ] Update Leaflet to latest stable version
+- [ ] Update react-leaflet to latest (v4.x)
+- [ ] Address breaking changes in react-leaflet API
+- [ ] Update leaflet plugins (markercluster, geosearch)
+- [ ] Test all map functionality thoroughly
+
+### 4.2 Redux and State Management
+- [ ] Update Redux to latest version
+- [ ] Consider migrating to Redux Toolkit (RTK)
+- [ ] Update react-redux to latest
+- [ ] Update redux-saga or consider RTK Query migration
+- [ ] Test all state management functionality
+
+### 4.3 UI and Styling Dependencies
+- [ ] Update react-tabs to latest
+- [ ] Update mirador and mirador-image-tools
+- [ ] Address any CSS/styling compatibility issues
+- [ ] Test all UI components
+
+### 4.4 Utility Libraries
+- [ ] Update Lodash to latest version (consider tree-shaking)
+- [ ] Update Axios to latest version
+- [ ] Update other utility dependencies
+- [ ] Consider replacing deprecated packages
+
+## Phase 5: Final Integration and Testing (2-3 weeks)
+
+### 5.1 Integration Testing
+- [ ] Run full test suite with all updates
+- [ ] Perform manual testing of all features
+- [ ] Test in production-like environment
+- [ ] Performance testing and comparison
+
+### 5.2 Documentation Updates
+- [ ] Update README.md with new requirements
+- [ ] Update CLAUDE.md with architectural changes
+- [ ] Document any breaking changes for users
+- [ ] Update package.json scripts if needed
+
+### 5.3 Deployment Preparation
+- [ ] Test build process in CI/CD environment
+- [ ] Create rollback plan
+- [ ] Plan deployment strategy
+- [ ] Prepare monitoring for post-deployment
+
+## Risk Mitigation Strategies
+
+### High-Risk Items
+1. **react-leaflet API Changes**: Major version upgrades often have breaking changes
+2. **PostCSS/webpack 5 Compatibility**: Known issue from previous attempt
+3. **React 18 Concurrent Features**: May affect Redux/Saga interactions
+
+### Mitigation Approaches
+- Maintain parallel development branches
+- Incremental testing at each phase
+- Keep detailed rollback procedures
+- Consider gradual rollout strategy
+
+## Timeline Estimate
+
+**Total Duration: 10-15 weeks**
+- Phase 1: 1-2 weeks
+- Phase 2: 2-3 weeks
+- Phase 3: 2-3 weeks
+- Phase 4: 3-4 weeks
+- Phase 5: 2-3 weeks
+
+## Success Criteria
+
+- [ ] Application compiles without errors
+- [ ] All existing functionality preserved
+- [ ] No regression in performance
+- [ ] All tests passing
+- [ ] Clean security audit (`npm audit`)
+- [ ] Production deployment successful
+- [ ] Documentation updated
+
+## Rollback Plan
+
+If critical issues arise:
+1. Revert to `stable-node16` git tag
+2. Restore Node 16 environment
+3. Revert package.json/yarn.lock
+4. Clean install dependencies
+5. Verify application functionality
+
+This plan ensures a systematic, low-risk approach to modernizing the application while maintaining stability throughout the process.
\ No newline at end of file
diff --git a/README.md b/README.md
index 28440dc..756e1bf 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,14 @@
[](https://travis-ci.org/the-norman-sicily-project/interactive-map)
[](https://opensource.org/licenses/MIT)
-This project was bootstrapped with [Create React App](https://github.com/facebookincubator/create-react-app).
+A standalone React application that displays historical places and sites in Norman Sicily using interactive maps. This project was bootstrapped with [Create React App](https://github.com/facebookincubator/create-react-app).
+
+**Note:** This application runs completely standalone without requiring a backend server. All data is bundled locally and map tiles are served directly from external providers.
+
+## Prerequisites
+
+- Node.js v16.20.2 (use nvm: `nvm use 16`)
+- Yarn package manager
## Installing
@@ -13,13 +20,38 @@ Clone the repository:
Move to the directory of the clone:
- yarn intall
+ cd interactive-map
+
+Install dependencies:
+
+ yarn install
+
+## Configuration
+
+### Environment Variables (Optional)
+
+For Mapbox tiles, set these environment variables:
+
+- `REACT_APP_MAPBOX_ACCESS_TOKEN` - Your Mapbox public access token
+- `REACT_APP_MAPBOX_USERNAME` - Your Mapbox username (default: mapbox)
+- `REACT_APP_MAPBOX_STYLE_ID` - Your Mapbox style ID (default: streets-v11)
+
+If not configured, the application will use OpenStreetMap tiles as fallback.
## Running
-Start local server at port 3000:
+### With Node v16:
+
+ source ~/.nvm/nvm.sh && nvm use 16 && yarn start
+
+### With Mapbox configuration:
+
+ export REACT_APP_MAPBOX_ACCESS_TOKEN="your_token_here"
+ export REACT_APP_MAPBOX_USERNAME="your_username"
+ export REACT_APP_MAPBOX_STYLE_ID="your_style_id"
+ source ~/.nvm/nvm.sh && nvm use 16 && yarn start
- yarn start
+The application will start on port 3000: http://localhost:3000
## Running Tests
diff --git a/package.json b/package.json
index 926ed27..97e5691 100644
--- a/package.json
+++ b/package.json
@@ -4,7 +4,7 @@
"license": "MIT",
"description": "Interactive map application for the Norman Sicily Project",
"private": true,
- "homepage": "https://www.normansicily.org/places/map/",
+ "homepage": "https://www.normansicily.org/places/interactive-map/",
"repository": {
"type": "git",
"url": "https://github.com/the-norman-sicily-project/interactive-map.git"
@@ -18,7 +18,7 @@
"@formatjs/intl-displaynames": "^4.0.5",
"@react-leaflet/core": "^1.0.2",
"@wojtekmaj/enzyme-adapter-react-17": "^0.4.1",
- "axios": "^0.21.1",
+ "axios": "^0.27.2",
"enzyme": "3.11.0",
"leaflet": "^1.7.1",
"leaflet-geosearch": "^4.0.0",
@@ -33,6 +33,7 @@
"react-leaflet-markercluster": "3.0.0-rc1",
"react-redux": "^7.2.2",
"react-redux-multilingual": "^2.0.4",
+ "react-router-dom": "^5.3.4",
"react-scripts": "4.0.1",
"react-tabs": "^3.1.2",
"redux": "^4.0.5",
@@ -86,5 +87,9 @@
"npm run prettify",
"git add --force"
]
+ },
+ "resolutions": {
+ "cheerio": "1.0.0-rc.12",
+ "minimatch": "7.4.6"
}
}
diff --git a/public/data/catalog.json b/public/data/catalog.json
new file mode 100644
index 0000000..3f6a62d
--- /dev/null
+++ b/public/data/catalog.json
@@ -0,0 +1 @@
+[{"manifestId":"https://norman-sicily.s3.amazonaws.com/Adrano/Castello_di_Adrano/manifest","locationId":"fortification2"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Adrano/Santa_Lucia_di_Aderno/manifest","locationId":"monastery92"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Agira/San_Filippo_d_Agira/manifest","locationId":"monastery125"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Aidone/Chiesa_di_San_Leone/manifest","locationId":"church3"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Aidone/Chiesa_di_San_Michele/manifest","locationId":"church5"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Aidone/Chiesa_di_Santa_Maria_La_Cava/manifest","locationId":"church4"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Altavilla_Milicia/Ponte_Saraceno/manifest","locationId":"fortification5"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Altavilla_Milicia/Santa_Maria_di_Campogrosso/manifest","locationId":"monastery35"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Altofonte/Cappella_di_San_Michele_Arcangelo/manifest","locationId":"monastery7"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Barcellona_Pozzo_di_Gotto/Santa_Maria_di_Gala/manifest","locationId":"monastery37"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Bronte/Ponte_di_Cantara/manifest","locationId":"fortification2"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Bronte/Santa_Maria_di_Maniace/manifest","locationId":"monastery86"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Burgio/Castello_di_Burgio/manifest","locationId":"fortification12"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Burgio/Santissima_Trinita_di_Refesio/manifest","locationId":"monastery99"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Buscemi/Castello_di_Buscemi/manifest","locationId":"fortification13"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Buscemi/Chiesa_Bizantina/manifest","locationId":"church118"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Caccamo/Castello_di_Caccamo/manifest","locationId":"fortification15"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Caltabellotta/Castello_di_Caltabellotta/manifest","locationId":"fortification26"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Caltabellotta/Chiesa_San_Salvatore/manifest","locationId":"monastery105"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Caltabellotta/Chiesa_di_San_Giorgio/manifest","locationId":"monastery13"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Caltanisetta/Santo_Spirito_a_Caltanissetta/manifest","locationId":"monastery132"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Caltavuturo/Castello_of_Terravecchia/manifest","locationId":"fortification28"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Caltavuturo/Chiesa_del_Casale/manifest","locationId":"church114"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Campofelice_di_Roccella/Castello_di_Roccella/manifest","locationId":"fortification119"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Carlentini/Santa_Maria_di_Roccadia/manifest","locationId":"monastery140"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Caronia/Castello_di_Caronia/manifest","locationId":"fortification32"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Casalvecchio_Siculo/Santi_Pietro_e_Paolo_d_Agro/manifest","locationId":"monastery63"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Castelbuono/San_Cosma_a_Gonata/manifest","locationId":"monastery19"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Castelbuono/Sant_Anastasia_di_Gratteri/manifest","locationId":"monastery143"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Castelmola/Castello_di_Castelmola/manifest","locationId":"fortification35"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Castelvetrano/Santissima_Trinita_di_Delia/manifest","locationId":"monastery76"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Castiglione_di_Sicilia/Chiesa_della_Cuba_di_Castiglione/manifest","locationId":"church20"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Castroreale/Santa_Venera_di_Vanella/manifest","locationId":"monastery77"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Catania/Cattedrale_di_Catania/manifest","locationId":"monastery21"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Catania/Sant_Agata_di_Catania_Sant_Agata_La_Vetere/manifest","locationId":"monastery78"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Cefala_Diana/Castello_di_Cefala_Diana/manifest","locationId":"fortification154"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Cefala_Diana/Terme/manifest","locationId":"fortification1"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Cefalu/Castello/manifest","locationId":"fortification42"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Cefalu/Cattedrale_di_Cefalu/manifest","locationId":"church22"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Cefalu/Chiesa_di_San_Biagio/manifest","locationId":"church23"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Cefalu/Chiesa_di_San_Giorgio/manifest","locationId":"church84"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Cefalu/Osterio_Magno/manifest","locationId":"fortification5"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Cefalu/Palazzo_Maria/manifest","locationId":"fortification4"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Cefalu/Santissimo_Salvatore_e_Santi_Pietro_e_Paolo_a_Cefalu/manifest","locationId":"monastery118"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Collesano/Castello_di_Collesano/manifest","locationId":"fortification46"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Collesano/Chiesa_Santa_Maria_Assunta/manifest","locationId":"church123"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Collesano/Santa_Maria_del_Pedale/manifest","locationId":"monastery142"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Enna/Castello_di_Lombardia/manifest","locationId":"fortification145"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Erice/Castello/manifest","locationId":"fortification51"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Francavilla_di_Sicilia/Santissimo_Salvatore_della_Placa_-_Dawn_Hayes/manifest","locationId":"monastery72"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Francavilla_di_Sicilia/Santissimo_Salvatore_della_Placa_-_Max_Wilson/manifest","locationId":"monastery72"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Frazzano/San_Filippo_di_Fragala/manifest","locationId":"monastery65"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Geraci_Siculo/Castle_Chapel_Cistern_and_Walls/manifest","locationId":"fortification60"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Geraci_Siculo/Chiesa_di_San_Giacomo/manifest","locationId":"church122"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Gratteri/Chiesa_di_Santa_Maria_di_Gesu_or_del_Convento/manifest","locationId":"monastery33"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Gratteri/San_Giorgio/manifest","locationId":"monastery120"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Itala/Santi_Pietro_e_Paolo_di_Itala/manifest","locationId":"monastery64"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Licodia/Chiesa_Medioevale_di_Piano_Ammalati/manifest","locationId":"church97"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Licodia/Santa_Maria_di_Licodia/manifest","locationId":"monastery82"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Licodia/Santa_Maria_di_Licodia_Summer_Abbey/manifest","locationId":"monastery100"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Lipari/San_Bartolomeo_di_Lipari/manifest","locationId":"monastery1"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Mandanici/Santa_Maria_di_Mandanici/manifest","locationId":"monastery39"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Marsala/Santa_Maria_della_Grotta/manifest","locationId":"monastery40"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Mazara_del_Vallo/Castello_di_Mazara/manifest","locationId":"fortification74"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Mazara_del_Vallo/Cattedrale_di_Mazara/manifest","locationId":"church35"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Mazara_del_Vallo/Chiesa_di_San_Vito/manifest","locationId":"church36"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Mazara_del_Vallo/San_Michele_di_Mazara/manifest","locationId":"monastery47"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Mazara_del_Vallo/San_Nicolo_Regale/manifest","locationId":"monastery57"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Mazara_del_Vallo/Santa_Maria_delle_Giummare/manifest","locationId":"monastery33"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Messina/Cattedrale_di_Messina/manifest","locationId":"monastery37"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Messina/Chiesa_della_Santissima_Annunziata_dei_Catalani/manifest","locationId":"monastery44"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Messina/Chiesa_di_San_Gioacomo/manifest","locationId":"church39"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Messina/Santa_Maria_delle_Scale_La_Badiazza/manifest","locationId":"monastery90"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Messina/Santa_Maria_di_Roccamadore/manifest","locationId":"monastery103"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Messina/Santo_Stefano_di_Messina/manifest","locationId":"monastery73"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Mili_San_Pietro/Santa_Maria_di_Mili/manifest","locationId":"monastery42"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Monreale/Castello_di_Monreale_Castellaccio/manifest","locationId":"fortification88"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Monreale/Cattedrale_di_Monreale/manifest","locationId":"church49"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Monreale/Santa_Maria_La_Nuova/manifest","locationId":"monastery85"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Motta_Sant_Anastasia/Castello_Sant_Anastasia/manifest","locationId":"fortification130"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Noto/Castello_di_Noto/manifest","locationId":"fortification96"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Noto_Antica/Chiesa_del_Santissimo_Crocifisso/manifest","locationId":"church54"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Novara_di_Sicilia/Santa_Maria_di_Novara/manifest","locationId":"monastery102"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Palazzo_Adriano/Santa_Maria_di_Adriano/manifest","locationId":"monastery84"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Palermo/Capella_di_Santa_Maria_Incoronata/manifest","locationId":"church58"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Palermo/Castello_di_Castellammare/manifest","locationId":"fortification33"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Palermo/Cattedrale_di_Palermo/manifest","locationId":"monastery55"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Palermo/Chiesa_della_Madonna_dei_Rimedi/manifest","locationId":"monastery79"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Palermo/Chiesa_della_Madonna_dell_Oreto/manifest","locationId":"church76"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Palermo/Chiesa_della_Santissima_Trinita_alla_Zisa/manifest","locationId":"church77"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Palermo/Chiesa_di_San_Cataldo/manifest","locationId":"church62"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Palermo/Chiesa_di_San_Giovanni_alla_Guilla/manifest","locationId":"church65"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Palermo/Chiesa_di_San_Giovanni_dei_Lebbrosi/manifest","locationId":"monastery64"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Palermo/Chiesa_di_San_Nicola/manifest","locationId":"church72"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Palermo/Chiesa_di_Sant_Agata_alla_Guilla/manifest","locationId":"church60"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Palermo/Chiesa_di_Santa_Cristina_la_Vetere/manifest","locationId":"church65"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Palermo/Chiesa_di_Santa_Maria_Maddalena/manifest","locationId":"church68"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Palermo/Chiesa_di_Santa_Maria_dell_Ammiraglio_La_Martorana/manifest","locationId":"church70"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Palermo/Chiesa_di_Santa_Maria_dell_Itria/manifest","locationId":"church69"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Palermo/Chiesa_di_Santa_Maria_della_Speranza/manifest","locationId":"church80"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Palermo/La_Cubula/manifest","locationId":"fortification9"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Palermo/Palazzo_Reale_and_the_Cappella_Palatina/manifest","locationId":"church81"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Palermo/Palazzo_della_Cuba/manifest","locationId":"fortification10"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Palermo/Palazzo_della_Favara_Castello_Maredolce/manifest","locationId":"palace7"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Palermo/Palazzo_della_Zisa_Palermo/manifest","locationId":"palace11"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Palermo/Palazzo_di_Uscibene_Lo_Scibene/manifest","locationId":"fortification12"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Palermo/Palazzo_via_Protonotaro/manifest","locationId":"palace17"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Palermo/Ponte_dell_Ammiraglio/manifest","locationId":"fortification4"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Palermo/Porta_Mazara/manifest","locationId":"fortification2"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Palermo/Porta_della_Vittoria/manifest","locationId":"fortification4"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Palermo/San_Giorgio_in_Kemonia/manifest","locationId":"monastery23"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Palermo/San_Giovanni_degli_Eremiti/manifest","locationId":"monastery83"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Palermo/Santissima_Trinita_del_Cancelliere/manifest","locationId":"monastery94"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Palermo/Santissima_Trinita_di_Palermo/manifest","locationId":"monastery98"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Palermo/Santissimo_Salvatore/manifest","locationId":"monastery71"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Pantelleria/Castello/manifest","locationId":"fortification100"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Paterno/Castello_di_Paterno/manifest","locationId":"fortification102"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Paterno/San_Giorgio/manifest","locationId":"church124"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Paterno/Santa_Maria_di_Giosafat/manifest","locationId":"monastery122"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Paterno/Santa_Maria_di_Scala/manifest","locationId":"monastery0"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Patti/San_Bartolomeo/manifest","locationId":"church82"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Piazza_Armerina/Castello_di_Piazza_Armerina/manifest","locationId":"fortification107"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Piazza_Armerina/Sant_Andrea/manifest","locationId":"monastery130"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Polizzi_Generosa/Chiesa_di_San_Nicolo_de_Franchis/manifest","locationId":"church113"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Polizzi_Generosa/Chiesa_di_Santa_Maria_Assunta/manifest","locationId":"church88"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Polizzi_Generosa/Chiesa_di_Santa_Maria_dell_Udienza/manifest","locationId":"church119"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Raccuia/San_Nicolo_di_Fico/manifest","locationId":"monastery53"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Randazzo/Campanile_della_Chiesa_di_San_Martino/manifest","locationId":"church121"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Randazzo/Palazzo_Reale/manifest","locationId":"fortification98"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Randazzo/San_Giovanni_di_Psichro/manifest","locationId":"monastery30"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/San_Fratello/San_Pancrazio_di_San_Fratello/manifest","locationId":"monastery59"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/San_Marco_d_Alunzio/Castello_San_Marco_d_Alunzio/manifest","locationId":"fortification128"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Sant_Angelo_di_Brolo/San_Michele_Arcangelo_di_Brolo/manifest","locationId":"monastery14"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Sant_Angelo_di_Brolo/Torre_Saracena/manifest","locationId":"fortification146"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Sciacca/Chiesa_di_San_Nicolo_Latina/manifest","locationId":"church99"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Sciacca/Santa_Maria_delle_Giummare/manifest","locationId":"monastery87"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Siracusa/Chiesa_di_San_Nicolo_dei_Cordari/manifest","locationId":"church103"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Sperlinga/Castello_di_Sperlinga/manifest","locationId":"fortification141"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Taormina/Castello_di_Taormina/manifest","locationId":"fortification142"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Taormina/Chiesa_di_Madonna_della_Rocca/manifest","locationId":"monastery105"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Taormina/Chiesa_di_San_Nicolo_di_Bari/manifest","locationId":"church120"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Taormina/Palazzo_Corvaja/manifest","locationId":"fortification3"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Termini_Imerese/Castello_di_Termini_Imerese/manifest","locationId":"fortification145"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Termini_Imerese/Chiesa_di_San_Giacomo/manifest","locationId":"monastery39"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Termini_Imerese/Santa_Caterina_d_Alessandria/manifest","locationId":"church110"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Torrenova/San_Pietro_di_Deca/manifest","locationId":"church61"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Troina/San_Michele_di_Troina/manifest","locationId":"monastery49"},{"manifestId":"https://norman-sicily.s3.amazonaws.com/Troina/Sant_Elia_d_Embula/manifest","locationId":"monastery20"}]
\ No newline at end of file
diff --git a/public/data/place-details/monastery_1.json b/public/data/place-details/monastery_1.json
new file mode 100644
index 0000000..28414be
--- /dev/null
+++ b/public/data/place-details/monastery_1.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/1","nsp_id":"1","labels":["en,Saint Bartholomew of Lipari","it,San Bartolomeo di Lipari"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Bartholomew of Lipari","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.46677,14.95731,10000d","http://www.geonames.org/10376237/cattedrale-di-san-bartolomeo.html"],"wgs_lat":38.46677,"wgs_long":14.95731,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(14.95731 38.46677)"},"nsp_modernComune":"Lipari","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"Yes","wgs_alt":21,"nsp_seismicCode":"2","skos_altLabel":["Garirat-Libara"," Lipara"]},"nsp_updatedOn":"2019-12-05","nsp_createdOn":"2016-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"Located at the top of a steep set of stairs that give way to a street lined with neolithic archeological sites, the current church of San Bartolomeo is easy to access. Although nothing from the Norman period appears to remain on the exterior (though it was impossible for us to tell as we were unable to walk around the entire exterior), the back of the current church offers a view of the sea the monks would have had; the site is on a cliff with a sheer drop to the water. Inside the church is the Norman cloister. Lynn White noted in 1938 that traces of the exterior apse remained, though it seems he was not aware of the extent of the cloister's survival (\"The exterior of the apse of the cathedral of St. Bartholomew on Lipari would seem to be a fragment of the Norman church; however, I could find no reliable information on the subject.\" (Latin Monasticism, 99)). It wasn't fully uncovered until 1978, when Luigi Pastore, the church's long-serving sacristan, noticed other clues and notified the Soprintendenza of Messina, which began excavation.\nInside one gets a sense of the \"recycling\" that went on - fluted columns from Roman houses were freely adapted and integrated into the cloister, providing support for the double barrel-vaulted ceilings. The Roman houses, in their turn, were built over preexisting Greek structures. Apparently, the area was for long a site of religious observance; a temple to Hephaestus and an early Christian church may have preceded the monastery. Though intriguing, this reuse makes stone assessment at the site difficult, as it is hard to discern the stones' ages. Note that the first sustainability reading - the one for the column - was performed on one recycled from a Roman house.\nFrom the cloister’s ambulatory, one can look out into the now-barren courtyard that served as the monastic community's contemplative space. While some of the columns' capitals may be of an earlier style, there are others that seem to be medieval (or, at least, fashioned in a medieval style). Remnants of wall painting from a later period are especially visible near the cloister’s entrance, where it is connected to the cathedral. This was an exceptionally important monastery during the Norman period. It was made a bishopric on September 14, 1131 by Antipope Anacletus II though in 1139, it was reduced to its previous status. Its abbot is referred to as \"electus\" in Sicily after September 1156, but was not consecrated bishop until late 1166.","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_fieldVisit":"2019-07-28","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1088","nsp_minYear":"1088","nsp_maxYear":"1088"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"54, 55, 59, 60, 63, 64 n. 4, 65, 77-104, 189 n. 6, 195, 216, 219","nsp_notes":""},"nsp_hasLink":[{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i74374074","skos_prefLabel":"Robert of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/1","skos_prefLabel":"Saint Bartholomew of Lipari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"77","nsp_notes":""}},{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/1","skos_prefLabel":"Saint Bartholomew of Lipari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"77","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/4","skos_prefLabel":"Holy Cross of Buccheri"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/1","skos_prefLabel":"Saint Bartholomew of Lipari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"101","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/5","skos_prefLabel":"Saint John of Vizzini"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/1","skos_prefLabel":"Saint Bartholomew of Lipari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"101","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/6","skos_prefLabel":"Saint Sophia of Vicari"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/1","skos_prefLabel":"Saint Bartholomew of Lipari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"101-102","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/7","skos_prefLabel":"Saint Mary of Tusa"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/1","skos_prefLabel":"Saint Bartholomew of Lipari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"102","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/8","skos_prefLabel":"Saint Mary of Mazzarino"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/1","skos_prefLabel":"Saint Bartholomew of Lipari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"103","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/9","skos_prefLabel":"Saint Mary of Butera"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/1","skos_prefLabel":"Saint Bartholomew of Lipari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"103","nsp_notes":""}}],"nsp_probableStatus":"Abbey","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Bartholomew","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":[{"iri":"http://www.normansicily.org/cssi/assessment/26","cssi_description":"Third right column, Cloistra Normana","cssi_rockType":"vesicular volcanic ","cssi_assessmentDate":"2019-07-28","cssi_rockCoatingNotationNotes":"recylced roman column","cssi_naturalProcessType":"exfoliation, granular disintegration","cssi_siteSettingScore":5,"cssi_weaknessScore":11,"cssi_largeErosionScore":4,"cssi_smallErosionScore":21,"cssi_rockCoatingsScore":3,"cssi_totalAssessmentScore":44,"cssi_otherConcernsScore":7,"cssi_grandTotalAssessmentScore":51,"cssi_assessedBy":{"foaf_familyName":"Pope","foaf_givenName":"Greg"},"cssi_hasRockCoatingNotation":{"droppings":"?","dustCoatings":"Y","ironFilm":"Y","lithobionts":"N","pollution":"?","rockVarnish":"Y"}},{"iri":"http://www.normansicily.org/cssi/assessment/27","cssi_description":"South arch wall","cssi_rockType":"vesicular volcanic","cssi_assessmentDate":"2019-07-28","cssi_rockCoatingNotationNotes":"Plaster exfoliation; some algea ","cssi_naturalProcessType":"exfoliation, granular disintegration","cssi_siteSettingScore":6,"cssi_weaknessScore":11,"cssi_largeErosionScore":6,"cssi_smallErosionScore":23,"cssi_rockCoatingsScore":5,"cssi_totalAssessmentScore":51,"cssi_otherConcernsScore":7,"cssi_grandTotalAssessmentScore":58,"cssi_assessedBy":{"foaf_familyName":"Pope","foaf_givenName":"Greg"},"cssi_hasRockCoatingNotation":{"droppings":"N","dustCoatings":"Y","ironFilm":"Y","lithobionts":"Y","pollution":"Y","rockVarnish":"N"}},{"iri":"http://www.normansicily.org/cssi/assessment/28","cssi_description":"South edge groin arch ","cssi_rockType":"volcanic","cssi_assessmentDate":"2019-07-28","cssi_rockCoatingNotationNotes":"plaster exfoliation","cssi_naturalProcessType":"exfoliation, granular disintegration","cssi_siteSettingScore":12,"cssi_weaknessScore":7,"cssi_largeErosionScore":7,"cssi_smallErosionScore":15,"cssi_rockCoatingsScore":3,"cssi_totalAssessmentScore":44,"cssi_otherConcernsScore":3,"cssi_grandTotalAssessmentScore":47,"cssi_assessedBy":{"foaf_familyName":"Wilson","foaf_givenName":"Max"},"cssi_hasRockCoatingNotation":{"droppings":"N","dustCoatings":"Y","ironFilm":"Y","lithobionts":"N","pollution":"Y","rockVarnish":"N"}},{"iri":"http://www.normansicily.org/cssi/assessment/30","cssi_description":"South edge, outer column third from west","cssi_rockType":"vesicular volcanic ","cssi_assessmentDate":"2019-07-28","cssi_rockCoatingNotationNotes":"pressure release tapering at top; bottom of coumn is bellow current floor level","cssi_naturalProcessType":"exfoliation, granular disintegration, pressure release","cssi_siteSettingScore":7,"cssi_weaknessScore":12,"cssi_largeErosionScore":6,"cssi_smallErosionScore":25,"cssi_rockCoatingsScore":4,"cssi_totalAssessmentScore":54,"cssi_otherConcernsScore":7,"cssi_grandTotalAssessmentScore":61,"cssi_assessedBy":{"foaf_familyName":"Pope","foaf_givenName":"Greg"},"cssi_hasRockCoatingNotation":{"droppings":"N","dustCoatings":"Y","ironFilm":"Y","lithobionts":"N","pollution":"?","rockVarnish":"N"}}]}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_10.json b/public/data/place-details/monastery_10.json
new file mode 100644
index 0000000..e8c2cf4
--- /dev/null
+++ b/public/data/place-details/monastery_10.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/10","nsp_id":"10","labels":["en,Saint Anastasia of Mistretta","it,Sant'Anastasia di Mistretta"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Anastasia of Mistretta","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.92823,14.35780,10000d","http://www.geonames.org/2524122/mistretta.html"],"wgs_lat":37.92823,"wgs_long":14.3578,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.35780 37.92823)"},"nsp_modernComune":"Mistretta","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":900,"nsp_seismicCode":"2","skos_altLabel":"Mistrecta"},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1122","nsp_minYear":"1122","nsp_maxYear":"1122"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6","http://zotero.org/groups/2199947/items/V7MNSAU3"],"nsp_pages":["41","112","729","413-414"],"nsp_notes":["","A Greek-language document records that Matthew of Creun of Mistretta allows the monastery of Sant'Anastasia to (among other things) to construct a mill. The year is 1122."]},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Anastasia","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_100.json b/public/data/place-details/monastery_100.json
new file mode 100644
index 0000000..8f27843
--- /dev/null
+++ b/public/data/place-details/monastery_100.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/100","nsp_id":"100","labels":["en,Saint Mary of Licodia (Summer Abbey)","it,*Santa Maria di Licodia (Abbazia Estiva)"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of Licodia (Summer Abbey)","nsp_hasLocation":{"rdfs_seeAlso":["http://www.geonames.org/2523320/santa-maria-di-licodia.html","https://earth.google.com/web/@37.66175,14.92333,10000d"],"wgs_lat":37.66175,"wgs_long":14.92333,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(14.92333 37.66175)"},"nsp_modernComune":"Santa Maria di Licodia","nsp_modernProvince":"Catania","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"Yes","wgs_alt":933,"nsp_seismicCode":"2"},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2016-07-02","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"uncorroborated","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_fieldVisit":"2016-07-16","nsp_uncorroboratedInformation":{"nsp_content":"This was purportedly a summer location for the monks in Santa Maria di Licodia. It has now been restored and is used as a restaurant and as a wedding venue. This structure was brought to our attention during a visit to Santa Maria di Licodia in July 2016; we are not yet aware of other sources that attest to Norman origins for this building.","nsp_source":"Field Visit"},"nsp_earliestSurvivingRecord":{},"nsp_hasReference":{},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/100","skos_prefLabel":"Saint Mary of Licodia (Summer Abbey)"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/78","skos_prefLabel":"Saint Agatha of Catania"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"121","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"UNKNOWN","nsp_subjectOfDedication":"UNKNOWN","nsp_monasticIdentity":"UNKNOWN","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_101.json b/public/data/place-details/monastery_101.json
new file mode 100644
index 0000000..88e6e9b
--- /dev/null
+++ b/public/data/place-details/monastery_101.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/101","nsp_id":"101","labels":["en,Saint Mary of the Chancellor or of the Latins","it,Santissima Maria del Cancelliere o dei Latini"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of the Chancellor or of the Latins","nsp_hasLocation":{"rdfs_seeAlso":["http://www.geonames.org/2523920/palermo.html","https://earth.google.com/web/@38.11687,13.36065,10000d"],"wgs_lat":38.11687,"wgs_long":13.36065,"nsp_coordinateSource":"Google Earth","geo_hasGeometry":{"geo_asWKT":"Point(13.36065 38.11687)"},"nsp_modernComune":"Palermo","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"No","wgs_alt":11,"nsp_seismicCode":"2","skos_altLabel":["Bn.rm"," Balarm"," Balarmuh"," Bân.rm"," Panormus"]},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2016-07-02","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1169","nsp_minYear":"1169","nsp_maxYear":"1169"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/7QPHAVE8","http://zotero.org/groups/2199947/items/8D8GP7NX"],"nsp_pages":["110","109-111, 115-118, 129-137, 137-146, 155-161, 209-210","65, 159-161"],"nsp_notes":["King William II allows Matthew of Ajello to transform his house in Palermo into the monastery of Santa Maria dei Latini: \". . . Te, itaque Mathee magister notarie et dilecte familiaris noster, ob ingentia et grata servicia, quibus iam diu benignitatem et gratia domini regis Willelmi pie memorie patris nostri plenarie meruisti ob cotidiana quoque et devota obsequia, quibus nos ad favendum et promovendum tibi reddis merito proptiores, clementer in tuis precibus exaudimus et ad satisfaciendum pro voto et iuste petitioni tue, regie celsitudinis nostre aurem benignissimam inclinamus. Sanctum igitur et iustum propositum tuum favorabiliter prosequentes, iuxta desiderium et instantem petitionem tuam concessimus, ut in urbe Panormi de domo tua sumptibus tuis emptam et edificatam, monasterium facias; tibique liberam tribuimus facultatem concedendi donandi et assignandi in perpetuum ipsi monasterio casale tuum, quod dicitur Carrabule. prefati genitoris nostri sancte recordationis regia tibi liberalitate concessum . . . .\" The year is 1169.","\"The nunnery contained at least two chapels: That of St. Eustachius, where it had two Latin priests, and that of St. Paul, served by a Greek priest. One is tempted to believe that the monastery was also connected with a preexisting church of St. Mary of the Latins, to which, in April 6673 (1165), ind. 13, the widow Filiberta willed two taris. This would seem to be identical with the 'ecclesia S. Marie de Cancellario' to which on the 16 March 1186, ind. 4, regni 22, Theocritus Mairosini of Chioggia left three taris. A church of Santa Maria del Cancelliere still exists in Palermo, near the Quattro Canti, but if anything of the Norman structure still exists it is completely obscured by baroque 'improvements' of the late sixteenth century.\" (160-61)"]},"nsp_hasLink":[{"nsp_role":"Secular Lord","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i81196389","skos_prefLabel":"Margarita of Navarre"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/101","skos_prefLabel":"Saint Mary of the Chancellor or of the Latins"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/7QPHAVE8","nsp_pages":"109","nsp_notes":""}},{"nsp_role":"Secular Lord","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i81016496","skos_prefLabel":"William II of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/101","skos_prefLabel":"Saint Mary of the Chancellor or of the Latins"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/7QPHAVE8","nsp_pages":"109","nsp_notes":""}},{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#70458661","skos_prefLabel":"Matthew of Ajello"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/101","skos_prefLabel":"Saint Mary of the Chancellor or of the Latins"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"109","nsp_notes":""}},{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#70458661","skos_prefLabel":"Matthew of Ajello"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/101","skos_prefLabel":"Saint Mary of the Chancellor or of the Latins"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"159","nsp_notes":""}},{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#70458661","skos_prefLabel":"Matthew of Ajello"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/101","skos_prefLabel":"Saint Mary of the Chancellor or of the Latins"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/7QPHAVE8","nsp_pages":"109","nsp_notes":""}},{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#70458661","skos_prefLabel":"Matthew of Ajello"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/101","skos_prefLabel":"Saint Mary of the Chancellor or of the Latins"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/7QPHAVE8","nsp_pages":"159","nsp_notes":""}}],"nsp_probableStatus":"Abbey","nsp_probableGender":"Female","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_102.json b/public/data/place-details/monastery_102.json
new file mode 100644
index 0000000..a6579be
--- /dev/null
+++ b/public/data/place-details/monastery_102.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/102","nsp_id":"102","labels":["en,Saint Mary of Novara","it,Santa Maria di Novara"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of Novara","nsp_hasLocation":{"rdfs_seeAlso":["http://www.geonames.org/2523994/novara-di-sicilia.html","https://earth.google.com/web/@37.99977,15.10410,10000d","http://www.medioevosicilia.eu/markIII/monastero-cistercense-di-santa-maria-di-novara-di-sicilia/"],"wgs_lat":37.99977,"wgs_long":15.1041,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(15.10410 37.99977)"},"nsp_modernComune":"Novara di Sicilia","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"Yes","wgs_alt":533,"nsp_seismicCode":"2","skos_altLabel":["Noara"," Noharia"," Nouah"," Nugaria"," Nohara"," Castrum Nucariae"]},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2016-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_fieldVisit":"2016-07-16","nsp_uncorroboratedInformation":{"nsp_content":"When we visited in July 2016, a gentleman from the town claimed that there had been a tunnel that dated from the Muslim domination that connected the castle and this monastery.","nsp_source":"Field Visit"},"nsp_earliestSurvivingRecord":{"rdfs_label":"1195","nsp_minYear":"1195","nsp_maxYear":"1195"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/ZTI6IKNV"],"nsp_pages":["164, 182, 183","533"],"nsp_notes":["\"The majority of the Cistercian tables date its foundation in 1171.\" (182 n. 2)","Loud says that this was founded as a Cistercian house in 1195."]},"nsp_hasLink":[{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/102","skos_prefLabel":"Saint Mary of Novara"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/215","skos_prefLabel":"Sambucina"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"182","nsp_notes":""}},{"nsp_role":"Colonized by","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/103","skos_prefLabel":"Saint Mary of Roccamadore"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/102","skos_prefLabel":"Saint Mary of Novara"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"183","nsp_notes":""}}],"nsp_probableStatus":"Abbey","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Cistercians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_103.json b/public/data/place-details/monastery_103.json
new file mode 100644
index 0000000..e6005db
--- /dev/null
+++ b/public/data/place-details/monastery_103.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/103","nsp_id":"103","labels":["en,Saint Mary of Roccamadore","it,Santa Maria di Roccamadore"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of Roccamadore","nsp_hasLocation":{"rdfs_seeAlso":["http://www.geonames.org/2524170/messina.html","https://earth.google.com/web/@38.14060,15.52323,10000d","http://www.medioevosicilia.eu/markIII/monastero-cistercense-di-santa-maria-di-roccamadore-presso-messina/"],"wgs_lat":38.1406,"wgs_long":15.52323,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(15.52323 38.14060)"},"nsp_modernComune":"Messina","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"Yes","wgs_alt":27,"nsp_seismicCode":"1","skos_altLabel":"Massîni"},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2019-06-28","nsp_recordStatus":"Reviewed","nsp_notes":"In September 2019, Max Wilson (B.A., architecture, Yale University) performed the field survey and photographed the site. The site, as identified by the coordinates, is located within the walls of the Villa Mancini, a privately owned bed and breakfast. Max was therefore unable to enter the site and determine if remains of the abbey exist. A sign on the villa's outer wall identified the adjacent street as \"Via Roccamotore,\" and as a \"Strada Privata.\" The villa is located in a suburban, residential area south of Messina.","nsp_attestationType":["documentary"," archaeological?"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_fieldVisit":"2019-09-20","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1193","nsp_minYear":"1193","nsp_maxYear":"1193"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"119 n. 4, 182, 183","nsp_notes":""},"nsp_hasLink":[{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/103","skos_prefLabel":"Saint Mary of Roccamadore"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"183","nsp_notes":""}},{"nsp_role":"Colonized by","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/103","skos_prefLabel":"Saint Mary of Roccamadore"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/102","skos_prefLabel":"Saint Mary of Novara"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"183","nsp_notes":""}}],"nsp_probableStatus":"Abbey","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Cistercians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_105.json b/public/data/place-details/monastery_105.json
new file mode 100644
index 0000000..68cb880
--- /dev/null
+++ b/public/data/place-details/monastery_105.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/105","nsp_id":"105","labels":["en,Saint Peter of Palermo","it,San Pietro di Palermo"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Peter of Palermo","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.13205,13.33561,10000d","http://www.geonames.org/2523920/palermo.html"],"wgs_lat":38.13205,"wgs_long":13.33561,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(13.33561 38.13205)"},"nsp_modernComune":"Palermo","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"No","wgs_alt":14,"nsp_seismicCode":"2","skos_altLabel":["Bn.rm"," Balarm"," Balarmuh"," Bân.rm"," Panormus"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-04","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1116","nsp_minYear":"1116","nsp_maxYear":"1116"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"186, 275","nsp_notes":""},"nsp_hasLink":[{"nsp_role":"Spiritual Lord","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#14105408","skos_prefLabel":"Walter Offamil"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/105","skos_prefLabel":"Saint Peter of Palermo"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"186","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/105","skos_prefLabel":"Saint Peter of Palermo"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/178","skos_prefLabel":"Priory of Saint Mary and the Twelve Apostles at Bagnara, Calabria"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"186","nsp_notes":""}}],"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Peter","nsp_monasticIdentity":"Augustinian Canons","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_106.json b/public/data/place-details/monastery_106.json
new file mode 100644
index 0000000..5f04085
--- /dev/null
+++ b/public/data/place-details/monastery_106.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/106","nsp_id":"106","labels":["en,Saint James of Partinico","it,San Giacomo di Partinico"],"nsp_placeType":"monastery","skos_prefLabel":"Saint James of Partinico","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.04657,13.11785,10000d","http://www.geonames.org/2523871/partinico.html"],"wgs_lat":38.04657,"wgs_long":13.11785,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(13.11785 38.04657)"},"nsp_modernComune":"Partinico","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"No","wgs_alt":175,"nsp_seismicCode":"2","skos_altLabel":["B.rt.niq"," Bartinîq"," Battinîq"," Partenich"," Castrum Sale Parthenici"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-02","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1116","nsp_minYear":"1116","nsp_maxYear":"1116"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"186","nsp_notes":""},"nsp_hasLink":[{"nsp_role":"Spiritual Lord","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#14105408","skos_prefLabel":"Walter Offamil"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/106","skos_prefLabel":"Saint James of Partinico"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"186","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/106","skos_prefLabel":"Saint James of Partinico"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/178","skos_prefLabel":"Priory of Saint Mary and the Twelve Apostles at Bagnara, Calabria"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"186","nsp_notes":""}}],"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint James","nsp_monasticIdentity":"Augustinian Canons","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_107.json b/public/data/place-details/monastery_107.json
new file mode 100644
index 0000000..3f418a0
--- /dev/null
+++ b/public/data/place-details/monastery_107.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/107","nsp_id":"107","labels":["en,Saint Steven of Castronuovo","it,Santo Stefano di Castronuovo"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Steven of Castronuovo","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.67894,13.60346,10000d","http://www.geonames.org/2525074/castronuovo-di-sicilia.html"],"wgs_lat":37.67894,"wgs_long":13.60346,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(13.60346 37.67894)"},"nsp_modernComune":"Castronovo di Sicilia?","nsp_modernProvince":"Palermo?","nsp_historicalProvince":"Val di Mazara?","nsp_locationHighLoc":"No","wgs_alt":677,"nsp_seismicCode":"2","skos_altLabel":["Qaṣr Nubut"," Qasr-Nubu"," Castrum Castrinovi"," Qasr al-Gadid"," Qasr al Jadid"," Castrum Novum"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-04","nsp_recordStatus":"Reviewed","nsp_notes":"Luigi Santagati, Viabilità e topografia della Sicilia antica, vol. 2 (Caltanissetta: Edizioni Lussografica, 2013), 76 (s.v. \"Castronovo\"), equates the location with Castronovo di Sicilia.","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1116","nsp_minYear":"1116","nsp_maxYear":"1116"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/QCQQZXJ9","http://zotero.org/groups/2199947/items/8D8GP7NX"],"nsp_pages":["746","41, 186, 275"],"nsp_notes":["","This house had been a Basilian abbey which had apparently fallen into ruins. (186)"]},"nsp_hasLink":[{"nsp_role":"Secular Lord","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#13764650","skos_prefLabel":"Aymo of Milazzo"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/107","skos_prefLabel":"Saint Steven of Castronuovo"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"186 and 276","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/107","skos_prefLabel":"Saint Steven of Castronuovo"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/178","skos_prefLabel":"Priory of Saint Mary and the Twelve Apostles at Bagnara, Calabria"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"186","nsp_notes":""}}],"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Steven","nsp_monasticIdentity":"Augustinian Canons","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_108.json b/public/data/place-details/monastery_108.json
new file mode 100644
index 0000000..95b290b
--- /dev/null
+++ b/public/data/place-details/monastery_108.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/108","nsp_id":"108","labels":["en,Saint Mary of Castronuovo","it,Santa Maria di Castronuovo"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of Castronuovo","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.67894,13.60346,10000d","http://www.geonames.org/2525074/castronuovo-di-sicilia.html"],"wgs_lat":37.67894,"wgs_long":13.60346,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(13.60346 37.67894)"},"nsp_modernComune":"Castronovo di Sicilia?","nsp_modernProvince":"Palermo?","nsp_historicalProvince":"Val di Mazara?","nsp_locationHighLoc":"No","wgs_alt":677,"nsp_seismicCode":"2","skos_altLabel":["Qaṣr Nubut"," Qasr-Nubu"," Castrum Castrinovi"," Qasr al-Gadid"," Qasr al Jadid"," Castrum Novum"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-04","nsp_recordStatus":"Reviewed","nsp_notes":"Luigi Santagati, Viabilità e topografia della Sicilia antica, vol. 2 (Caltanissetta: Edizioni Lussografica, 2013), 76 (s.v. \"Castronovo\"), suggests that the location was Castronovo di Sicilia.","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1116","nsp_minYear":"1116","nsp_maxYear":"1116"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"186, 187 n. 4, 249, 275","nsp_notes":""},"nsp_hasLink":[{"nsp_role":"Secular Lord","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#15039513","skos_prefLabel":"Arnulf"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/108","skos_prefLabel":"Saint Mary of Castronuovo"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"186","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/108","skos_prefLabel":"Saint Mary of Castronuovo"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/178","skos_prefLabel":"Priory of Saint Mary and the Twelve Apostles at Bagnara, Calabria"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"186","nsp_notes":""}}],"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Augustinian Canons","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_109.json b/public/data/place-details/monastery_109.json
new file mode 100644
index 0000000..a87a36d
--- /dev/null
+++ b/public/data/place-details/monastery_109.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/109","nsp_id":"109","labels":["en,Saint Matthew of Messina","it,San Matteo di Messina"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Matthew of Messina","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.19394,15.55256,10000d","http://www.geonames.org/2524170/messina.html"],"wgs_lat":38.19394,"wgs_long":15.55256,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(15.55256 38.19394)"},"nsp_modernComune":"Messina","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":3,"nsp_seismicCode":"1","skos_altLabel":"Massîni"},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-02","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1188","nsp_minYear":"1188","nsp_maxYear":"1188"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"187","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/109","skos_prefLabel":"Saint Matthew of Messina"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/178","skos_prefLabel":"Priory of Saint Mary and the Twelve Apostles at Bagnara, Calabria"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"187","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Matthew","nsp_monasticIdentity":"Augustinian Canons","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_11.json b/public/data/place-details/monastery_11.json
new file mode 100644
index 0000000..478b9fa
--- /dev/null
+++ b/public/data/place-details/monastery_11.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/11","nsp_id":"11","labels":["en,Saint Andrew of Bebene","it,Sant'Andrea di Bebene"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Andrew of Bebene","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.13205,13.33561,10000d","http://www.geonames.org/2523920/palermo.html"],"wgs_lat":38.13205,"wgs_long":13.33561,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(13.33561 38.13205)"},"nsp_modernComune":"Palermo","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"No","wgs_alt":14,"nsp_seismicCode":"2","skos_altLabel":["Bn.rm"," Balarm"," Balarmuh"," Bân.rm"," Panormus"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-07","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1187?","nsp_minYear":"1187","nsp_maxYear":"1187"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["41","140","729"],"nsp_notes":["White ends the date with a question mark, indicating that he was not certain if the surviving evidence supports that this monastery existed by 1187.","","Date of earliest documentation given is 1163, which differs from White. In addition, Giunta appears to locate this house in Mazara. Lists as a source Cyril Korolevskij, \"Basiliens italo-grecs et espagnoles,\" Dictionnaire d’histoire et de géographie ecclésiastiques, vol. VI (Paris: 1932), cols. 1180-1236 (at 1196). See White's discussion of the limitations of this source. (40)"]},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Andrew","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_110.json b/public/data/place-details/monastery_110.json
new file mode 100644
index 0000000..0fd8184
--- /dev/null
+++ b/public/data/place-details/monastery_110.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/110","nsp_id":"110","labels":["en,Saint Eunufrius of Calatabiano","it,Sant'Eunufrio di Calatabiano"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Eunufrius of Calatabiano","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.82049,15.23069,10000d","http://www.geonames.org/2525459/calatabiano.html"],"wgs_lat":37.82049,"wgs_long":15.23069,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(15.23069 37.82049)"},"nsp_modernComune":"Calatabiano","nsp_modernProvince":"Catania","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":60,"nsp_seismicCode":"2","skos_altLabel":["Qal'at al-Bian"," Qal'at al-Bayan"," Calatabien"," Castrum Calatabiani"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-04","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":["Santo Eunufrio"," Santo Honufrio"," Sant'Onufrio"," Sant'Onofrio"],"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1188","nsp_minYear":"1188","nsp_maxYear":"1188"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"41, 187 n. 2","nsp_notes":"White asks whether this could be the same house as Saint Onufrius of Calatabiet. (187 n.2)"},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/110","skos_prefLabel":"Saint Eunufrius of Calatabiano"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/178","skos_prefLabel":"Priory of Saint Mary and the Twelve Apostles at Bagnara, Calabria"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"187","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Onufrius","nsp_monasticIdentity":"Augustinian Canons","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_111.json b/public/data/place-details/monastery_111.json
new file mode 100644
index 0000000..2da2e3c
--- /dev/null
+++ b/public/data/place-details/monastery_111.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/111","nsp_id":"111","labels":["en,Saint George of Lentini","it,San Giorgio di Lentini"],"nsp_placeType":"monastery","skos_prefLabel":"Saint George of Lentini","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.28556,14.99737,10000d","http://www.geonames.org/2524410/lentini.html"],"wgs_lat":37.28556,"wgs_long":14.99737,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.99737 37.28556)"},"nsp_modernComune":"Lentini","nsp_modernProvince":"Syracuse","nsp_historicalProvince":"Val di Noto","nsp_locationHighLoc":"No","wgs_alt":53,"nsp_seismicCode":"2","skos_altLabel":["Lentina"," Leontini"," Wâdî Lentini"," Palude Salata"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1188","nsp_minYear":"1188","nsp_maxYear":"1188"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"187","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/111","skos_prefLabel":"Saint George of Lentini"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/178","skos_prefLabel":"Priory of Saint Mary and the Twelve Apostles at Bagnara, Calabria"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"187","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint George","nsp_monasticIdentity":"Augustinian Canons","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_112.json b/public/data/place-details/monastery_112.json
new file mode 100644
index 0000000..82a795a
--- /dev/null
+++ b/public/data/place-details/monastery_112.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/112","nsp_id":"112","labels":["en,Saint Lucy of Rahalbiato","it,Santa Lucia di Rahalbiato"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Lucy of Rahalbiato","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@36.89244,15.06977,10000d","http://www.geonames.org/2523998/noto.html"],"wgs_lat":36.89244,"wgs_long":15.06977,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(15.06977 36.89244)"},"nsp_modernComune":"Noto","nsp_modernProvince":"Syracuse","nsp_historicalProvince":"Val di Noto","nsp_locationHighLoc":"No","wgs_alt":152,"nsp_seismicCode":"2","skos_altLabel":["Larbiato"," Notus"," Notosc"," Nutus"," Nota"," Ralbiceo"," Rahalbiati"," Ralbiatum"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-02","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1188","nsp_minYear":"1188","nsp_maxYear":"1188"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"187","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/112","skos_prefLabel":"Saint Lucy of Rahalbiato"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/178","skos_prefLabel":"Priory of Saint Mary and the Twelve Apostles at Bagnara, Calabria"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"187","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Lucy","nsp_monasticIdentity":"Augustinian Canons","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_114.json b/public/data/place-details/monastery_114.json
new file mode 100644
index 0000000..3d4f4e0
--- /dev/null
+++ b/public/data/place-details/monastery_114.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/114","nsp_id":"114","labels":["en,Saint Peter of Sclafani","it,San Pietro di Sclafani"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Peter of Sclafani","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.82175,13.85476,10000d","http://www.geonames.org/2523185/sclafani-bagni.html"],"wgs_lat":37.82175,"wgs_long":13.85476,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(13.85476 37.82175)"},"nsp_modernComune":"Sclafani Bagni","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"No","wgs_alt":755,"nsp_seismicCode":"2","skos_altLabel":["Isqlafiah"," Schafa"," Sclafa"," Cluse"," Chiuse"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-06","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1188","nsp_minYear":"1188","nsp_maxYear":"1188"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"187","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/114","skos_prefLabel":"Saint Peter of Sclafani"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/178","skos_prefLabel":"Priory of Saint Mary and the Twelve Apostles at Bagnara, Calabria"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"187","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Peter","nsp_monasticIdentity":"Augustinian Canons","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_115.json b/public/data/place-details/monastery_115.json
new file mode 100644
index 0000000..15abbdf
--- /dev/null
+++ b/public/data/place-details/monastery_115.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/115","nsp_id":"115","labels":["en,Saint Nicholas of Corleone","it,San Nicola di Corleone"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Nicholas of Corleone","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.81338,13.30170,10000d","http://www.geonames.org/2524928/corleone.html"],"wgs_lat":37.81338,"wgs_long":13.3017,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(13.30170 37.81338)"},"nsp_modernComune":"Corleone","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"No","wgs_alt":550,"nsp_seismicCode":"2","skos_altLabel":["Qorliûn"," Coiroillionis"," Corilionis"," Coniglione"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-05","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1188","nsp_minYear":"1188","nsp_maxYear":"1188"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"187","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/115","skos_prefLabel":"Saint Nicholas of Corleone"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/178","skos_prefLabel":"Priory of Saint Mary and the Twelve Apostles at Bagnara, Calabria"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"187","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Nicholas","nsp_monasticIdentity":"Augustinian Canons","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_116.json b/public/data/place-details/monastery_116.json
new file mode 100644
index 0000000..e24d414
--- /dev/null
+++ b/public/data/place-details/monastery_116.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/116","nsp_id":"116","labels":["en,Saint Peter of Milazzo","it,San Pietro di Milazzo"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Peter of Milazzo","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.22008,15.24023,10000d","http://www.geonames.org/2524155/milazzo.html"],"wgs_lat":38.22008,"wgs_long":15.24023,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(15.24023 38.22008)"},"nsp_modernComune":"Milazzo","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":1,"nsp_seismicCode":"2","skos_altLabel":["Milâs"," Milatium"," Castrum Melacii"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-06","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1188","nsp_minYear":"1188","nsp_maxYear":"1188"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"187, 191 n. 1","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/116","skos_prefLabel":"Saint Peter of Milazzo"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/178","skos_prefLabel":"Priory of Saint Mary and the Twelve Apostles at Bagnara, Calabria"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"187","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Peter","nsp_monasticIdentity":"Augustinian Canons","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_118.json b/public/data/place-details/monastery_118.json
new file mode 100644
index 0000000..dae8dc8
--- /dev/null
+++ b/public/data/place-details/monastery_118.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/118","nsp_id":"118","labels":["en,Christ the Savior and Saints Peter and Paul of Cefalù","it,Santissimo Salvatore e Santi Pietro e Paolo a Cefalù"],"nsp_placeType":"monastery","skos_prefLabel":"Christ the Savior and Saints Peter and Paul of Cefalù","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.03997,14.02338,10000d","http://www.geonames.org/2525041/cefalu.html"],"wgs_lat":38.03997,"wgs_long":14.02338,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(14.02338 38.03997)"},"nsp_modernComune":"Cefalù","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"Yes","wgs_alt":24,"nsp_seismicCode":"2","skos_altLabel":["Gafludi"," Cephaludi"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"We are very grateful to Prof. Eric Ivison, College of Staten Island/CUNY, for making many of his images of this site available to us.","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_fieldVisit":["2008-07-01","2015-08-01"],"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1131","nsp_minYear":"1131","nsp_maxYear":"1131"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/7QPHAVE8"],"nsp_pages":["37, 49, 54, 55, 56, 58, 65, 71, 72, 89, 96, 157, 189-201","93"],"nsp_notes":["This monastery was made a bishopric by the Antipope Anacletus II on 14 December 1131; after July 1139, its bishop was known as electus until December 1166, when the episcopal rank was restored. (189 - 201)","Bosone, Bishop of Cefalù, constructs a mill \"in terra S. Marie\". The year of this document is 1166."]},"nsp_hasLink":[{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i97285789","skos_prefLabel":"Roger II of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/118","skos_prefLabel":"Christ the Savior and Saints Peter and Paul of Cefalù"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"189","nsp_notes":""}},{"nsp_role":"Colonized by","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/118","skos_prefLabel":"Christ the Savior and Saints Peter and Paul of Cefalù"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/178","skos_prefLabel":"Priory of Saint Mary and the Twelve Apostles at Bagnara, Calabria"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"201","nsp_notes":""}}],"nsp_probableStatus":"Abbey","nsp_probableGender":"Male","nsp_subjectOfDedication":"Christ, Saint Peter, Saint Paul","nsp_monasticIdentity":"Augustinian Canons","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_119.json b/public/data/place-details/monastery_119.json
new file mode 100644
index 0000000..040348f
--- /dev/null
+++ b/public/data/place-details/monastery_119.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/119","nsp_id":"119","labels":["en,Saint Lucy","it,Santa Lucia"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Lucy","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.07542,15.28664,10000d","http://www.geonames.org/2523083/siracusa.html"],"wgs_lat":37.07542,"wgs_long":15.28664,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(15.28664 37.07542)"},"nsp_modernComune":"Syracuse","nsp_modernProvince":"Syracuse","nsp_historicalProvince":"Val di Noto","nsp_locationHighLoc":"No","wgs_alt":17,"nsp_seismicCode":"2","skos_altLabel":"Sarakûsa"},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"11, 15 n. 3, 24, 25 n. 3, 154, 192, 202-204","nsp_notes":"\"In conclusion, it seems impossible, as yet, to disentangle the various monasteries at Syracuse dedicated to St. Lucy. We may be certain only of this: that after 1140 one such church was a priory of Augustinian canons subject to Cefalù.\" (204)"},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"Priory","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Lucy","nsp_monasticIdentity":"Augustinian Canons","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_12.json b/public/data/place-details/monastery_12.json
new file mode 100644
index 0000000..04b1081
--- /dev/null
+++ b/public/data/place-details/monastery_12.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/12","nsp_id":"12","labels":["en,Saint Anne of Messina","it,Sant'Anna di Messina"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Anne of Messina","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.19394,15.55256,10000d","http://www.geonames.org/2524170/messina.html"],"wgs_lat":38.19394,"wgs_long":15.55256,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(15.55256 38.19394)"},"nsp_modernComune":"Messina","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":3,"nsp_seismicCode":"1","skos_altLabel":"Massîni"},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-04","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1178-1179","nsp_minYear":"1178","nsp_maxYear":"1179"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/7QPHAVE8","http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["88-89, 166-167","41","155, 156, 412, 493","729"],"nsp_notes":["","Places the foundation of this monastery between 1166-1176. (493)","Date of earliest documentation given is 1310."]},"nsp_hasLink":{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#98413321","skos_prefLabel":"Ola Grafeos"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/12","skos_prefLabel":"Saint Anne of Messina"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"41","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Female","nsp_subjectOfDedication":"Saint Anne","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_120.json b/public/data/place-details/monastery_120.json
new file mode 100644
index 0000000..4703116
--- /dev/null
+++ b/public/data/place-details/monastery_120.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/120","nsp_id":"120","labels":["en,Saint George of Gratteri","it,San Giorgio di Gratteri"],"nsp_placeType":"monastery","skos_prefLabel":"Saint George of Gratteri","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.95286,13.96384,10000d","http://www.geonames.org/2524572/gratteri.html"],"wgs_lat":37.95286,"wgs_long":13.96384,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(13.96384 37.95286)"},"nsp_modernComune":"Gratteri","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"Yes","wgs_alt":662,"nsp_seismicCode":"2","skos_altLabel":"Q.ratiris"},"nsp_updatedOn":"2019-12-09","nsp_createdOn":"2016-07-03","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_fieldVisit":["2015-08-15","2017-07-13"],"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1155","nsp_minYear":"1155","nsp_maxYear":"1155"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"199, 201, 205-206","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i36841256","skos_prefLabel":"Roger of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/120","skos_prefLabel":"Saint George of Gratteri"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"205","nsp_notes":""}},"nsp_probableStatus":"Priory","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint George","nsp_monasticIdentity":"Premonstratensian Canons","cssi_hasAssessment":[{"iri":"http://www.normansicily.org/cssi/assessment/12","cssi_description":"Entrance Arch","cssi_rockType":"sandstone","cssi_assessmentDate":"2017-07-10","cssi_rockCoatingNotationNotes":"N/A","cssi_naturalProcessType":"seismic, landslide","cssi_siteSettingScore":5,"cssi_weaknessScore":8,"cssi_largeErosionScore":5,"cssi_smallErosionScore":18,"cssi_rockCoatingsScore":0,"cssi_totalAssessmentScore":36,"cssi_otherConcernsScore":8,"cssi_grandTotalAssessmentScore":44,"cssi_assessedBy":{"foaf_familyName":"Pope","foaf_givenName":"Greg"},"cssi_hasRockCoatingNotation":{"droppings":"Y","dustCoatings":"Y","ironFilm":"Y","lithobionts":"Y","pollution":"Y","rockVarnish":"Y"}},{"iri":"http://www.normansicily.org/cssi/assessment/13","cssi_description":"Entrance arch","cssi_rockType":"sandstone","cssi_assessmentDate":"2017-07-10","cssi_rockCoatingNotationNotes":"N/A","cssi_naturalProcessType":"seismic, hillslope","cssi_siteSettingScore":5,"cssi_weaknessScore":5,"cssi_largeErosionScore":5,"cssi_smallErosionScore":17,"cssi_rockCoatingsScore":2,"cssi_totalAssessmentScore":34,"cssi_otherConcernsScore":8,"cssi_grandTotalAssessmentScore":42,"cssi_assessedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":"http://www.dawnmariehayes.org/"},"cssi_hasRockCoatingNotation":{"droppings":"Y","dustCoatings":"Y","ironFilm":"Y","lithobionts":"Y","pollution":"?","rockVarnish":"?"}},{"iri":"http://www.normansicily.org/cssi/assessment/14","cssi_description":"Left doorway arch","cssi_rockType":"sandstone","cssi_assessmentDate":"2017-07-10","cssi_rockCoatingNotationNotes":"N/A","cssi_naturalProcessType":"seismic, hillslope","cssi_siteSettingScore":6,"cssi_weaknessScore":10,"cssi_largeErosionScore":4,"cssi_smallErosionScore":20,"cssi_rockCoatingsScore":2,"cssi_totalAssessmentScore":42,"cssi_otherConcernsScore":8,"cssi_grandTotalAssessmentScore":50,"cssi_assessedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Joseph","foaf_mbox":"mailto:joephayes@gmail.com"},"cssi_hasRockCoatingNotation":{"droppings":"Y","dustCoatings":"Y","ironFilm":"Y","lithobionts":"Y","pollution":"?","rockVarnish":"?"}}]}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_121.json b/public/data/place-details/monastery_121.json
new file mode 100644
index 0000000..817d3bc
--- /dev/null
+++ b/public/data/place-details/monastery_121.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/121","nsp_id":"121","labels":["en,Saint Anne of Gala","it,Sant'Anna di Gala"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Anne of Gala","nsp_hasLocation":{"rdfs_seeAlso":["http://www.geonames.org/2525597/barcellona-pozzo-di-gotto.html","https://earth.google.com/web/@38.14772,15.21469,10000d"],"wgs_lat":38.14772,"wgs_long":15.21469,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(15.21469 38.14772)"},"nsp_modernComune":"Barcellona Pozzo di Gotto","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":60,"nsp_seismicCode":"2","skos_altLabel":"Galath"},"nsp_updatedOn":"2020-01-24","nsp_createdOn":"2016-07-03","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1123","nsp_minYear":"1123","nsp_maxYear":"1123"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/QCQQZXJ9","http://zotero.org/groups/2199947/items/8D8GP7NX"],"nsp_pages":["593","209-210, 212 n. 3, 232"],"nsp_notes":["","\"Pirri refers to [the priory] as St. Mary's of Galath, but I have not found such a title used in the Norman period.\" (209 n. 1)"]},"nsp_hasLink":[{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i3215194","skos_prefLabel":"Adelasia del Vasto"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/121","skos_prefLabel":"Saint Anne of Gala"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"210","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/121","skos_prefLabel":"Saint Anne of Gala"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/210","skos_prefLabel":"Saint Mary in the Valley of Jehosaphat"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"210","nsp_notes":""}}],"nsp_probableStatus":"Priory","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Anne","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_122.json b/public/data/place-details/monastery_122.json
new file mode 100644
index 0000000..e548aed
--- /dev/null
+++ b/public/data/place-details/monastery_122.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/122","nsp_id":"122","labels":["en,Saint Mary of Jehosaphat","it,Santa Maria di Giosafat"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of Jehosaphat","nsp_hasLocation":{"rdfs_seeAlso":["http://www.geonames.org/2523866/paterno.html","https://earth.google.com/web/@37.56578,14.89489,10000d"],"wgs_lat":37.56578,"wgs_long":14.89489,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(14.89489 37.56578)"},"nsp_modernComune":"Paternò","nsp_modernProvince":"Catania","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"Yes","wgs_alt":253,"nsp_seismicCode":"2","skos_altLabel":[" Paternio"," Castrum Paternionis","Gancia"," Bâtarnû"]},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2016-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_fieldVisit":"2016-07-16","nsp_uncorroboratedInformation":{"nsp_content":"The gentleman who provided access in July 2016 claimed there had been Muslim burials discovered there three or four years prior. Some had jewelry (he mentioned a necklace and ring, specifically). Among the remains were a mother and a baby. A few of the images show the pavement where he said they are located. At this time, there was a pending plan to open the burials for viewing by covering them with glass. In October 2019, however, this account was challenged by Antonio Mursia, a Ph.D. candidate in the Dipartimento di Studi Umanistici at the Università degli Studi di Catania, who said that the burials were exclusively Christian, with the earliest dating to the twelfth century. A cross discovered in one of the tombs likely comes from either the tenth or eleventh century. It may have functioned as a reliquary.","nsp_source":"Field Visit"},"nsp_earliestSurvivingRecord":{"rdfs_label":"1140","nsp_minYear":"1140","nsp_maxYear":"1140"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/7QPHAVE8","http://zotero.org/groups/2199947/items/8D8GP7NX"],"nsp_pages":["45-49, 200-202","110, 210-211, 276"],"nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/122","skos_prefLabel":"Saint Mary of Jehosaphat"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/210","skos_prefLabel":"Saint Mary in the Valley of Jehosaphat"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"210","nsp_notes":""}},"nsp_probableStatus":"Priory","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_123.json b/public/data/place-details/monastery_123.json
new file mode 100644
index 0000000..e2b93bb
--- /dev/null
+++ b/public/data/place-details/monastery_123.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/123","nsp_id":"123","labels":["en,Saint Mary Magdalene of Jehosaphat","it,Santa Maria Maddalena di Giosafat"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary Magdalene of Jehosaphat","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.19394,15.55256,10000d","http://www.geonames.org/2524170/messina.html"],"wgs_lat":38.19394,"wgs_long":15.55256,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(15.55256 38.19394)"},"nsp_modernComune":"Messina","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":18,"nsp_seismicCode":"1","skos_altLabel":["San Placido di Calonerò"," Massîni"]},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2016-07-07","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1140","nsp_minYear":"1140","nsp_maxYear":"1140"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/7QPHAVE8","http://zotero.org/groups/2199947/items/8D8GP7NX"],"nsp_pages":["36-38, 66-67, 67-72","211-213"],"nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/123","skos_prefLabel":"Saint Mary Magdalene of Jehosaphat"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/210","skos_prefLabel":"Saint Mary in the Valley of Jehosaphat"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"211","nsp_notes":""}},"nsp_probableStatus":"Priory","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Mary Magdalene","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_124.json b/public/data/place-details/monastery_124.json
new file mode 100644
index 0000000..f0405a7
--- /dev/null
+++ b/public/data/place-details/monastery_124.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/124","nsp_id":"124","labels":["en,Saint Mary of Calatahameth","it,Santa Maria di Calatahameth"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of Calatahameth","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.02653,12.88183,10000d","http://www.geonames.org/2525095/castellammare-del-golfo.html"],"wgs_lat":38.02653,"wgs_long":12.88183,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(12.88183 38.02653)"},"nsp_modernComune":"Castellammare del Golfo","nsp_modernProvince":"Trapani","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"No","wgs_alt":26,"nsp_seismicCode":"2","skos_altLabel":["Hisn-al-Madrig"," Calatamet"," Qal'at al hammah"," Castrum Calatameti"]},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2016-07-04","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1100","nsp_minYear":"1100","nsp_maxYear":"1100"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"213-214","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/124","skos_prefLabel":"Saint Mary of Calatahameth"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/210","skos_prefLabel":"Saint Mary in the Valley of Jehosaphat"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"213","nsp_notes":""}},"nsp_probableStatus":"Priory?","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_125.json b/public/data/place-details/monastery_125.json
new file mode 100644
index 0000000..7a25ebb
--- /dev/null
+++ b/public/data/place-details/monastery_125.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/125","nsp_id":"125","labels":["en,Saint Philip of Agira","it,San Filippo d'Agira"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Philip of Agira","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.65711,14.51867,10000d","http://www.geonames.org/2525767/agira.html"],"wgs_lat":37.65711,"wgs_long":14.51867,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(14.51867 37.65711)"},"nsp_modernComune":"Agira","nsp_modernProvince":"Enna","nsp_historicalProvince":"Val di Noto","nsp_locationHighLoc":"Yes","wgs_alt":611,"nsp_seismicCode":"2","skos_altLabel":["Agirò"," Agoron"," Mons Argirium"," Argirione"]},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2016-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"Possibly refounded by Roger I, who gave the monastery to the Benedictine order, the site is now located in one of Agira’s piazze – embedded in an urban context. Not much of its long history is obvious from the exterior; the building was refaced in the early 20th century but had been rebuilt in the 18th, after the monastery had been destroyed by an earthquake in 1693. Little trace from the Norman period is to be found inside, though columns (with replaced capitals) in a chapel on the south side of the church and an external archway off the eastern flank may date to the Middle Ages. Memory of the Normans linger in the sacristy where a painting of Roger I by Filippo Randazzo hangs (we were unable to view this work during our visit). Inside the church, it is clear that the local population traces the ultimate foundation of this monastery to a Basilian community that pre-dated the Normans.","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_fieldVisit":"2019-07-25","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1094","nsp_minYear":"1094","nsp_maxYear":"1094"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/7QPHAVE8","http://zotero.org/groups/2199947/items/8D8GP7NX"],"nsp_pages":["118-120, 120-122","32, 33, 46 n. 2, 81, 82, 92, 94, 110, 115, 214-224"],"nsp_notes":""},"nsp_hasLink":[{"nsp_role":"Benefactor","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/125","skos_prefLabel":"Saint Philip of Agira"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"216","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/125","skos_prefLabel":"Saint Philip of Agira"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/211","skos_prefLabel":"Saint Mary of the Latins"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"216","nsp_notes":""}}],"nsp_probableStatus":"Priory","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Philip of Agira","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":[{"iri":"http://www.normansicily.org/cssi/assessment/24","cssi_description":"Interior Capela del Sacramento ","cssi_rockType":"limestone","cssi_assessmentDate":"2019-07-25","cssi_rockCoatingNotationNotes":"capital was probably replaced","cssi_naturalProcessType":"granular disintegration","cssi_siteSettingScore":6,"cssi_weaknessScore":4,"cssi_largeErosionScore":3,"cssi_smallErosionScore":11,"cssi_rockCoatingsScore":1,"cssi_totalAssessmentScore":25,"cssi_otherConcernsScore":4,"cssi_grandTotalAssessmentScore":29,"cssi_assessedBy":{"foaf_familyName":"Pope","foaf_givenName":"Greg"},"cssi_hasRockCoatingNotation":{"droppings":"N","dustCoatings":"N","ironFilm":"N","lithobionts":"N","pollution":"N","rockVarnish":"N"}},{"iri":"http://www.normansicily.org/cssi/assessment/25","cssi_description":"Norman arch, north entry court ","cssi_rockType":"limestone (fossiliferous) ","cssi_assessmentDate":"2019-07-25","cssi_rockCoatingNotationNotes":"N/A","cssi_naturalProcessType":"granular disintegration, solution","cssi_siteSettingScore":6,"cssi_weaknessScore":9,"cssi_largeErosionScore":4,"cssi_smallErosionScore":17,"cssi_rockCoatingsScore":2,"cssi_totalAssessmentScore":38,"cssi_otherConcernsScore":5,"cssi_grandTotalAssessmentScore":43,"cssi_assessedBy":{"foaf_familyName":"Pope","foaf_givenName":"Greg"},"cssi_hasRockCoatingNotation":{"droppings":"N","dustCoatings":"Y","ironFilm":"N","lithobionts":"Y","pollution":"?","rockVarnish":"N"}}]}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_126.json b/public/data/place-details/monastery_126.json
new file mode 100644
index 0000000..f025bbf
--- /dev/null
+++ b/public/data/place-details/monastery_126.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/126","nsp_id":"126","labels":["en,Saint Mary of the Latins of Polizzi","it,Santa Maria Latina di Polizzi"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of the Latins of Polizzi","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.81159,14.00268,10000d","http://www.geonames.org/2523736/polizzi-generosa.html"],"wgs_lat":37.81159,"wgs_long":14.00268,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.00268 37.81159)"},"nsp_modernComune":"Polizzi Generosa","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"No","wgs_alt":920,"nsp_seismicCode":"2","skos_altLabel":["Hisn-Bûlis"," Castrum Policii"," Politium"," Casrum Policii"]},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2016-07-04","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1151","nsp_minYear":"1151","nsp_maxYear":"1151"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"219, 224-225","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/126","skos_prefLabel":"Saint Mary of the Latins of Polizzi"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/211","skos_prefLabel":"Saint Mary of the Latins"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"224","nsp_notes":""}},"nsp_probableStatus":"Priory","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_127.json b/public/data/place-details/monastery_127.json
new file mode 100644
index 0000000..cfa60fd
--- /dev/null
+++ b/public/data/place-details/monastery_127.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/127","nsp_id":"127","labels":["en,Saint Philip of Capizzi","it,San Filippo di Capizzi"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Philip of Capizzi","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.84788,14.47976,10000d","http://www.geonames.org/2525387/capizzi.html"],"wgs_lat":37.84788,"wgs_long":14.47976,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.47976 37.84788)"},"nsp_modernComune":"Capizzi","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":1100,"nsp_seismicCode":"2","skos_altLabel":["Capicio"," Qaysî"," Capitio"]},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2016-07-04","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1151","nsp_minYear":"1151","nsp_maxYear":"1151"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"219, 220, 223, 225-226","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/127","skos_prefLabel":"Saint Philip of Capizzi"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/211","skos_prefLabel":"Saint Mary of the Latins"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"225","nsp_notes":""}},"nsp_probableStatus":"Priory","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Philip","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_128.json b/public/data/place-details/monastery_128.json
new file mode 100644
index 0000000..debb20a
--- /dev/null
+++ b/public/data/place-details/monastery_128.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/128","nsp_id":"128","labels":["en,Holy Cross of Rasacambri","it,Santa Croce di Rasacambri"],"nsp_placeType":"monastery","skos_prefLabel":"Holy Cross of Rasacambri","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@36.92574,14.72443,10000d","http://www.geonames.org/2523650/ragusa.html"],"wgs_lat":36.92574,"wgs_long":14.72443,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.72443 36.92574)"},"nsp_modernComune":"Ragusa","nsp_modernProvince":"Ragusa","nsp_historicalProvince":"Val di Noto","nsp_locationHighLoc":"No","wgs_alt":502,"nsp_seismicCode":"2","skos_altLabel":["Kamerina"," Camerina"," Ragusia"," Ragûs"," Castrum Ragusiae"," Racusiam"]},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2016-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1151","nsp_minYear":"1151","nsp_maxYear":"1151"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/A82S786X"],"nsp_pages":["226","219, 221, 223, 226","29 n. 3"],"nsp_notes":["\"In [Pope] Hadrian IV's confirmation of the [sic] 21 April 1158 a church and villa of St. Peter of Rasacambri is enumerated, while there is no mention of the Holy Cross. This may be due to a double dedication of our priory.\"",""]},"nsp_hasLink":[{"nsp_role":"Benefactor","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#58307012","skos_prefLabel":"Silvester"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/128","skos_prefLabel":"Holy Cross of Rasacambri"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"226","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/128","skos_prefLabel":"Holy Cross of Rasacambri"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/211","skos_prefLabel":"Saint Mary of the Latins"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"226","nsp_notes":""}}],"nsp_probableStatus":"Priory","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Holy Cross","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_129.json b/public/data/place-details/monastery_129.json
new file mode 100644
index 0000000..f588ca5
--- /dev/null
+++ b/public/data/place-details/monastery_129.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/129","nsp_id":"129","labels":["en,Saint Mary of the Latins","it,Santa Maria dei Latini"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of the Latins","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.19394,15.55256,10000d","http://www.geonames.org/2524170/messina.html"],"wgs_lat":38.19394,"wgs_long":15.55256,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(15.55256 38.19394)"},"nsp_modernComune":"Messina","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":3,"nsp_seismicCode":"1","skos_altLabel":"Massîni"},"nsp_updatedOn":"2020-07-06","nsp_createdOn":"2016-07-03","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1168","nsp_minYear":"1168","nsp_maxYear":"1168"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/7QPHAVE8","http://zotero.org/groups/2199947/items/8D8GP7NX"],"nsp_pages":["163-164","227-228"],"nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/129","skos_prefLabel":"Saint Mary of the Latins"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/211","skos_prefLabel":"Saint Mary of the Latins"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"227","nsp_notes":""}},"nsp_probableStatus":"Priory","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_13.json b/public/data/place-details/monastery_13.json
new file mode 100644
index 0000000..d1ebe46
--- /dev/null
+++ b/public/data/place-details/monastery_13.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/13","nsp_id":"13","labels":["en,Saint Anne of Monforte","it,Sant'Anna di Monforte"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Anne of Monforte","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.15733,15.38132,10000d","https://www.geonames.org/2524093/monforte-san-giorgio.html"],"wgs_lat":38.15733,"wgs_long":15.38132,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(15.38132 38.15733)"},"nsp_modernComune":"Monforte San Giorgio","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":287,"nsp_seismicCode":"2","skos_altLabel":["Anf 'an Nahr"," Capobianco"," Monforte"," Monteforte"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-04","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":["Sant'Anna e San Nicola"," Sant'Anna di Monteforte"],"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1131","nsp_minYear":"1131","nsp_maxYear":"1131"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6","http://zotero.org/groups/2199947/items/AQCF69LJ"],"nsp_pages":["41","183, 363","730","161"],"nsp_notes":["","Giunta appears to refer to this monastery simply as \"San Nicola di Monforte,\" dropping \"Sant'Anna\" from its title. "]},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/13","skos_prefLabel":"Saint Anne of Monforte"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/68","skos_prefLabel":"Christ the Savior in Lingua Phari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/QCQQZXJ9","nsp_pages":"975","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Anne","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_130.json b/public/data/place-details/monastery_130.json
new file mode 100644
index 0000000..508bee0
--- /dev/null
+++ b/public/data/place-details/monastery_130.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/130","nsp_id":"130","labels":["en,Saint Andrew of Piazza Armerina","it,Sant'Andrea di Piazza Amerina"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Andrew of Piazza Armerina","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.39238,14.36244,10000d","http://www.geonames.org/2523796/piazza-armerina.html","http://www.medioevosicilia.eu/markIII/gran-priorato-santandrea-presso-piazza-armerina/"],"wgs_lat":37.39238,"wgs_long":14.36244,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(14.36244 37.39238)"},"nsp_modernComune":"Piazza Armerina","nsp_modernProvince":"Enna","nsp_historicalProvince":"Val di Noto","nsp_locationHighLoc":"Yes","wgs_alt":660,"nsp_seismicCode":"2","skos_altLabel":["Iblatasa"," Iblatsah"," Platia"," Castrum Placiae"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"Located on a hill in one of Piazza Armerina’s suburbs, the former monastery has few neighbors. Although there are roads and a gravel path that lead into the city, there are just a few villas and hills nearby. It is not often disturbed, as it is solely used for wedding ceremonies of which there are just a few every year. Though none were seen during the visit, there is evidence that goats and sheep have access to the site and that it may be used for grazing. They are not the only creatures great or small that have been on the grounds – there are bird droppings and feathers throughout as well. A shrub field with a gravel path lies to the north of the former monastery. Though Sant’Andrea sees little parochial traffic, when we were at the site in 2019, the sacristan described how it sometimes serves as a base for late-night revelry. As a result, the site is littered and graffitied and there are few funds available to help care for the grounds more aggressively. Regularly sized and spaced holes are carved into the building’s exterior, perhaps suggesting the former presence of wooden beams that supported other structures. Though it seems that the original doorway remains, it is quite heavily damaged; on the western façade’s northern side, the interior column has been destroyed except for the base. The southern side has fared better; the columns are almost completely intact. A modern staircase of an undetermined date descends from this doorway. Sant’Andrea’s interior has been more carefully maintained than its exterior – though much of the area has been redone and the original decoration is no longer visible, it was restored with an eye to honoring the original style. There are fragments of Crusader art murals that now hang framed on the former monastery’s walls. A bulletin board contains some more in-depth but as-yet-unverified information about Sant’Andrea’s history. The monastery was run by the Regular Canons of the Holy Sepulcher of Jerusalem and was a stop for pilgrims on their way to the Holy Land. The materials also detailed some of the problems with the site that were not immediately obvious. For example, the roof has been heavily damaged and water enters freely when it rains. In addition, humidity has degraded the building’s stones and presents major challenges to the murals’ preservation.","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_fieldVisit":["2016-07-16","2019-07-20"],"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1148","nsp_minYear":"1148","nsp_maxYear":"1148"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"230","nsp_notes":""},"nsp_hasLink":[{"nsp_role":"Secular Lord","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#88860961","skos_prefLabel":"Simon del Vasto"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/130","skos_prefLabel":"Saint Andrew of Piazza Armerina"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"230","nsp_notes":""}},{"nsp_role":"Secular Lord","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#86223256","skos_prefLabel":"Thomasia"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/130","skos_prefLabel":"Saint Andrew of Piazza Armerina"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"230","nsp_notes":""}}],"nsp_probableStatus":"Priory","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Andrew","nsp_monasticIdentity":"Augustinian Canons","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_131.json b/public/data/place-details/monastery_131.json
new file mode 100644
index 0000000..2ba67be
--- /dev/null
+++ b/public/data/place-details/monastery_131.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/131","nsp_id":"131","labels":["en,Saint Elias the Prophet","it,Sant'Elia Profeta"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Elias the Prophet","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.66358,14.83283,10000d","http://www.geonames.org/2525769/adrano.html"],"wgs_lat":37.66358,"wgs_long":14.83283,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.83283 37.66358)"},"nsp_modernComune":"Adrano","nsp_modernProvince":"Catania","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":560,"nsp_seismicCode":"2","skos_altLabel":"Adernò"},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-03","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1160","nsp_minYear":"1160","nsp_maxYear":"1160"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"114, 230-231, 261-263, 284","nsp_notes":"Countess Adelicia of Adernò gave this monastery to the Augustinian Canons of the Church of the Holy Sepulchre of Jerusalem in a charter that White suggests was dated September 11, 1160. (230) On the same page (n. 5), he notes that although the word \"priory\" is not specifically used for this community, \"the importance of its holdings justifies belief\" that is was one."},"nsp_hasLink":{"nsp_role":"Secular Lord","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#78508863","skos_prefLabel":"Adelasia"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/131","skos_prefLabel":"Saint Elias the Prophet"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"230","nsp_notes":""}},"nsp_probableStatus":"Priory","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Elias the Prophet","nsp_monasticIdentity":"Augustinian Canons","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_132.json b/public/data/place-details/monastery_132.json
new file mode 100644
index 0000000..c8e40f7
--- /dev/null
+++ b/public/data/place-details/monastery_132.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/132","nsp_id":"132","labels":["en,Holy Spirit at Caltanissetta","it,Santo Spirito a Caltanissetta"],"nsp_placeType":"monastery","skos_prefLabel":"Holy Spirit at Caltanissetta","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.50626,14.07618,10000d","http://www.geonames.org/2525448/caltanissetta.html"],"wgs_lat":37.50626,"wgs_long":14.07618,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(14.07618 37.50626)"},"nsp_modernComune":"Caltanissetta","nsp_modernProvince":"Caltanissetta","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"Yes","wgs_alt":572,"nsp_seismicCode":"4","skos_altLabel":["Qal'at an-Nisâ"," Calatanissa"," Calatanixectum"," Castello di Nisa"]},"nsp_updatedOn":"2019-12-05","nsp_createdOn":"2019-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_fieldVisit":"2008-08-01","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1179","nsp_minYear":"1179","nsp_maxYear":"1179"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"71, 193, 231-232","nsp_notes":"\"Judging by the order of the names of Adelaide and Count Roger, this church of the Holy Spirit, still standing about three miles from Caltanissetta, was founded and endowed while Adelaide [Adelasia] was regent . . . .\" (231) With that said, it is unclear whether the church was given to the canons of Mt. Sion during her regency. (232)"},"nsp_hasLink":[{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i3215194","skos_prefLabel":"Adelasia del Vasto"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/132","skos_prefLabel":"Holy Spirit at Caltanissetta"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"231","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/132","skos_prefLabel":"Holy Spirit at Caltanissetta"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/177","skos_prefLabel":"Our Lady of Mount Sion at Jerusalem"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"232","nsp_notes":""}}],"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Holy Spirit","nsp_monasticIdentity":"Augustinian Canons","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_133.json b/public/data/place-details/monastery_133.json
new file mode 100644
index 0000000..b166e45
--- /dev/null
+++ b/public/data/place-details/monastery_133.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/133","nsp_id":"133","labels":["en,Saint Mary of Baratathe","it,Santa Maria di Baratathe"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of Baratathe","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.87736,14.95012,10000d","http://www.geonames.org/2523641/randazzo.html"],"wgs_lat":37.87736,"wgs_long":14.95012,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.95012 37.87736)"},"nsp_modernComune":"Randazzo?","nsp_modernProvince":"Catania?","nsp_historicalProvince":"Val Demone?","nsp_locationHighLoc":"No","wgs_alt":765,"nsp_seismicCode":"2","skos_altLabel":["Baratalhe"," Randâg"," Randatium"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2019-06-28","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1179","nsp_minYear":"1179","nsp_maxYear":"1179"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"232, 274","nsp_notes":"A reference to Roger II as \"king\" in Pope Alexander III's confirmation of March 19, 1179 suggests that \"St. Mary's of Baratathe was given to Mount Sion after 1130.\" (232) "},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/133","skos_prefLabel":"Saint Mary of Baratathe"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/177","skos_prefLabel":"Our Lady of Mount Sion at Jerusalem"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"232","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Augustinian Canons","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_134.json b/public/data/place-details/monastery_134.json
new file mode 100644
index 0000000..c66a892
--- /dev/null
+++ b/public/data/place-details/monastery_134.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/134","nsp_id":"134","labels":["en,Saint Mary of Mount Sion","it,Santa Maria di Monte Sion"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of Mount Sion","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.19394,15.55256,10000d","http://www.geonames.org/2524170/messina.html"],"wgs_lat":38.19394,"wgs_long":15.55256,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(15.55256 38.19394)"},"nsp_modernComune":"Messina","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":3,"nsp_seismicCode":"1","skos_altLabel":"Massîni"},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2019-06-28","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1179","nsp_minYear":"1179","nsp_maxYear":"1179"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"231-233","nsp_notes":"Pope Alexander III's confirmation of March 19, 1179 notes that Roger made a gift to this church, suggesting that it predates the document by some years."},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/134","skos_prefLabel":"Saint Mary of Mount Sion"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/177","skos_prefLabel":"Our Lady of Mount Sion at Jerusalem"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"232","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Augustinian Canons","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_135.json b/public/data/place-details/monastery_135.json
new file mode 100644
index 0000000..5309b9d
--- /dev/null
+++ b/public/data/place-details/monastery_135.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/135","nsp_id":"135","labels":["en,Saint Anne of Fesime","it,Sant'Anna di Fesime"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Anne of Fesime","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.41468,14.44542,10000d","http://www.geonames.org/2525761/aidone.html"],"wgs_lat":37.41468,"wgs_long":14.44542,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.44542 37.41468)"},"nsp_modernComune":"Aidone?","nsp_modernProvince":"Enna?","nsp_historicalProvince":"Val di Noto?","nsp_locationHighLoc":"No","wgs_alt":800,"nsp_seismicCode":"2","skos_altLabel":["Fessina"," Fessima"," Fesine"," Felsinae"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"Luigi Santagati, Viabilità e topografia della Sicilia antica, vol. 2 (Caltanissetta: Edizioni Lussografica, 2013), 88 (s.v. \"Fessina\"), places this near Aidone, near Pietratagliata in Contrada San Bartolo.","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1179","nsp_minYear":"1179","nsp_maxYear":"1179"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"232","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/135","skos_prefLabel":"Saint Anne of Fesime"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/177","skos_prefLabel":"Our Lady of Mount Sion at Jerusalem"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"232","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Anne","nsp_monasticIdentity":"Augustinian Canons","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_136.json b/public/data/place-details/monastery_136.json
new file mode 100644
index 0000000..241a5d4
--- /dev/null
+++ b/public/data/place-details/monastery_136.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/136","nsp_id":"136","labels":["en,Unknown","it,Sconosciuto"],"nsp_placeType":"monastery","skos_prefLabel":"Unknown","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.29548,14.84058,10000d","http://www.geonames.org/2523180/scordia.html"],"wgs_lat":37.29548,"wgs_long":14.84058,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.84058 37.29548)"},"nsp_modernComune":"Scordia","nsp_modernProvince":"Catania","nsp_historicalProvince":"Val di Noto","nsp_locationHighLoc":"No","wgs_alt":150,"nsp_seismicCode":"2","skos_altLabel":["Excordia"," Scordia Suitana"," Scordia Suprana"]},"nsp_updatedOn":"2019-12-09","nsp_createdOn":"2016-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1146","nsp_minYear":"1146","nsp_maxYear":"1146"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"234-235","nsp_notes":""},"nsp_hasLink":[{"nsp_role":"Benefactor","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#95480728","skos_prefLabel":"Henry of Bugli"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/136","skos_prefLabel":"Unknown"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"235","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/136","skos_prefLabel":"Unknown"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/223","skos_prefLabel":"Knights Templar"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"234-235","nsp_notes":""}}],"nsp_probableStatus":"Temple","nsp_probableGender":"Male","nsp_subjectOfDedication":"UNKNOWN","nsp_monasticIdentity":"Knights Templar","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_137.json b/public/data/place-details/monastery_137.json
new file mode 100644
index 0000000..894ef65
--- /dev/null
+++ b/public/data/place-details/monastery_137.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/137","nsp_id":"137","labels":["en,Hospital of Saint John of Jerusalem","it,L'ospedale di San Giovanni di Gerusalemme"],"nsp_placeType":"monastery","skos_prefLabel":"Hospital of Saint John of Jerusalem","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.19394,15.55256,10000d","http://www.geonames.org/2524170/messina.html"],"wgs_lat":38.19394,"wgs_long":15.55256,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(15.55256 38.19394)"},"nsp_modernComune":"Messina","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":3,"nsp_seismicCode":"1","skos_altLabel":"Massîni"},"nsp_updatedOn":"2019-12-09","nsp_createdOn":"2016-07-02","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1113","nsp_minYear":"1113","nsp_maxYear":"1113"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"235-239","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/137","skos_prefLabel":"Hospital of Saint John of Jerusalem"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/221","skos_prefLabel":"Knights of the Hospital of Saint John at Jerusalem"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"235","nsp_notes":""}},"nsp_probableStatus":"Hospital","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint John the Baptist","nsp_monasticIdentity":"Knights of the Hospital of Saint John of Jerusalem","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_138.json b/public/data/place-details/monastery_138.json
new file mode 100644
index 0000000..ba93d99
--- /dev/null
+++ b/public/data/place-details/monastery_138.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/138","nsp_id":"138","labels":["en,Hospital of All Saints of Palermo","it,L'ospedale di Tutti i Santi di Palermo"],"nsp_placeType":"monastery","skos_prefLabel":"Hospital of All Saints of Palermo","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.13205,13.33561,10000d","http://www.geonames.org/2523920/palermo.html"],"wgs_lat":38.13205,"wgs_long":13.33561,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(13.33561 38.13205)"},"nsp_modernComune":"Palermo","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"No","wgs_alt":14,"nsp_seismicCode":"2","skos_altLabel":["Bn.rm"," Balarm"," Balarmuh"," Bân.rm"," Panormus"]},"nsp_updatedOn":"2019-12-09","nsp_createdOn":"2016-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1181","nsp_minYear":"1181","nsp_maxYear":"1181"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"239","nsp_notes":""},"nsp_hasLink":[{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#70458661","skos_prefLabel":"Matthew of Ajello"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/138","skos_prefLabel":"Hospital of All Saints of Palermo"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"239","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/138","skos_prefLabel":"Hospital of All Saints of Palermo"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/221","skos_prefLabel":"Knights of the Hospital of Saint John at Jerusalem"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"239","nsp_notes":""}}],"nsp_probableStatus":"Hospital","nsp_probableGender":"Male","nsp_subjectOfDedication":"All Saints","nsp_monasticIdentity":"Knights of the Hospital of Saint John of Jerusalem","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_139.json b/public/data/place-details/monastery_139.json
new file mode 100644
index 0000000..47d1fbe
--- /dev/null
+++ b/public/data/place-details/monastery_139.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/139","nsp_id":"139","labels":["en,Saint Catherine","it,Santa Caterina"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Catherine","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.69281,13.01584,10000d","http://www.geonames.org/2523330/santa-margherita-di-belice.html"],"wgs_lat":37.69281,"wgs_long":13.01584,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(13.01584 37.69281)"},"nsp_modernComune":"Santa Margherita di Belice","nsp_modernProvince":"Agrigento","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"No","wgs_alt":400,"nsp_seismicCode":"1"},"nsp_updatedOn":"2019-12-09","nsp_createdOn":"2019-06-28","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1170-1176","nsp_minYear":"1170","nsp_maxYear":"1176"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"239-240","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/139","skos_prefLabel":"Saint Catherine"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/222","skos_prefLabel":"Hospital of Saint Lazarus of Jerusalem"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"239","nsp_notes":""}},"nsp_probableStatus":"Hospital","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Catherine","nsp_monasticIdentity":"Knights of the Hospital of Saint Lazarus at Jerusalem","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_14.json b/public/data/place-details/monastery_14.json
new file mode 100644
index 0000000..771b981
--- /dev/null
+++ b/public/data/place-details/monastery_14.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/14","nsp_id":"14","labels":["en,Saint Michael the Archangel of Brolo","it,San Michele Arcangelo di Brolo"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Michael the Archangel of Brolo","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.11039,14.88749,10000d","http://www.geonames.org/2525499/brolo.html"],"wgs_lat":38.11039,"wgs_long":14.88749,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(14.88749 38.11039)"},"nsp_modernComune":"Brolo","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"Yes","wgs_alt":398,"nsp_seismicCode":"2","skos_altLabel":["Voah"," Voab"," Vohab"," Marsâ Dalîah"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"The history of Sant’Angelo di Brolo is shrouded in mystery, a fact that is reflected in the scholarly record. Scaduto (80), sees this monastery as having been one and the same with Sant’Angelo di Ficarra (also known as Fulgerino or Filarino) whereas Lynn White (41-42) considers them separately. Currently used as an urban cemetery, the remains of Sant’Angelo di Brolo bear little evidence of their medieval past; indeed, the reason for why this may have been was addressed by Mr. Basilio Segreto, a resident local historian during our 2019 visit. Given the vicissitudes of the monastery and the highly doubtful survival of Norman remains, cultural stone assessment would be of limited use for the project.","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_fieldVisit":["2014-07-14","2019-07-31"],"nsp_uncorroboratedInformation":{"nsp_content":"During our July 2019 visit, Mr. Basilio Segreto, a local historian and moderator of the Facebook group Siciliantica Sede di Sant’Angelo di Brolo, suggested that, based on legends that surround Roger I’s conquest of the region and a document from 1092 that refers to a pre-existing location, the original monastery was located farther up in the hills surrounding the town. The new medieval community was formed by the count as he collected various Greek monks who were living in the area as hermits. According to this hypothesis, the monks moved to the current location sometime during the 16th century. Although this is not known for certain, it appears that the monastery was rebuilt in the mid-16th century; the following years, Mr. Segreto reports, were very favorable to the monastic community due to silk production and, later, the cultivation of hazelnut trees. The site was converted into a cemetery following the religious suppression of the mid-19th century; today, its nave provides a footprint for its main corridor and the cloister offers an enclosure for a certain section of the interments. We are enormously grateful to Mr. Segreto and to Ms. Angela Princiotto for sharing both their knowledge and time with us.","nsp_source":"Field Visit"},"nsp_earliestSurvivingRecord":{"rdfs_label":"1084","nsp_minYear":"1084","nsp_maxYear":"1084"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/7QPHAVE8","http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/QCQQZXJ9","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["1-7","45","35, 39 n. 6, 40, 41, 88","975","80, 250, 357, 384","105, 110, 404, 421"],"nsp_notes":["","\"The foundation of the great abbey of St. Savior in Lingua Phari at Messina by Roger II in 1131-34, and the organization of most of the Greek houses of Sicily under its archimandrite into a sort of congregation, has generally been regarded as the climax of the Hellenic renaissance in the Norman realm. But it was actually a desperate effort to check the dissolution of Count Roger I's work of restoration.\" White (n. 5) says that he has not been able to explain why certain ones remained independent of the abbey.","According to Pirri, this monastery was not one of the communities that came under St. Savior's jurisdiction.","\"Questo monastero fa tutt'uno col S. Angelo di Ficarra di cui è questione nel diploma del 1130 dell'arcivescovo di Messina Ugo e non giàcon quello di Fulgerino o Filarino situato nei pressi di Linguaglossa e di cui non si hanno notizie prima del sec. XV.\" (80)"]},"nsp_hasLink":{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/14","skos_prefLabel":"Saint Michael the Archangel of Brolo"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"41","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Michael the Archangel","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_142.json b/public/data/place-details/monastery_142.json
new file mode 100644
index 0000000..d99aab0
--- /dev/null
+++ b/public/data/place-details/monastery_142.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/142","nsp_id":"142","labels":["en,Saint Mary of Pedale","it,Santa Maria di Pedale"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of Pedale","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.94210,13.94185,10000d","http://www.geonames.org/2524964/collesano.html"],"wgs_lat":37.9421,"wgs_long":13.94185,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(13.94185 37.94210)"},"nsp_modernComune":"Collesano","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"Yes","wgs_alt":562,"nsp_seismicCode":"2","skos_altLabel":["Golisanum"," Qal'at -aṣ-Ṣirat"," Gulosam"," Pedali"]},"nsp_updatedOn":"2020-10-21","nsp_createdOn":"2019-06-28","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":["Santa Maria Pratali Graecorum"," Santa Maria di Pedali"],"nsp_fieldVisit":"2015-08-15","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1347","nsp_minYear":"1347","nsp_maxYear":"1347"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6","http://zotero.org/groups/2199947/items/EYD3FKFC"],"nsp_pages":["192 n. 7","163","730","n. 241"],"nsp_notes":["\"Pirri...and Amico...think that the Benedictine abbey of St Mary of Pedali, near Collesano, was founded about 1130 by the Countess Adelicia, but offer no proof. St Mary's does not definitely appear before 1347. There may be some confusion with St Peter's [in Collesano].\"","White considered this a Benedictine foundation. Scaduto, however, includes this house in his study of Basilian monasteries. We have included it in the Benedictine list with a caveat.","Giunta places the date of the earliest record between 1308-1310. ",""]},"nsp_hasLink":{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#78508863","skos_prefLabel":"Adelasia"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/142","skos_prefLabel":"Saint Mary of Pedale"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"192 n. 7","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"UNKNOWN","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_143.json b/public/data/place-details/monastery_143.json
new file mode 100644
index 0000000..f82fbbf
--- /dev/null
+++ b/public/data/place-details/monastery_143.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/143","nsp_id":"143","labels":["en,Saint Anastasia of Gratteri","it,Sant'Anastasia di Gratteri"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Anastasia of Gratteri","nsp_hasLocation":{"rdfs_seeAlso":["http://www.geonames.org/2525103/castelbuono.html","https://earth.google.com/web/@37.97260,14.08476,10000d"],"wgs_lat":37.9726,"wgs_long":14.08476,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(14.08476 37.97260)"},"nsp_modernComune":"Castelbuono","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"Yes","wgs_alt":442,"nsp_seismicCode":"2","skos_altLabel":["Ypsigro"," Ruqqah Basili"," Castri Boni"," Q.ratiris"]},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2019-07-02","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_fieldVisit":"2016-07-01","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1151","nsp_minYear":"1151","nsp_maxYear":"1151"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"191 n. 1","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/143","skos_prefLabel":"Saint Anastasia of Gratteri"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/179","skos_prefLabel":"Holy Trinity and Saint Michael the Archangel of Mileto"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"191 n. 1","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"UNKNOWN","nsp_subjectOfDedication":"Saint Anastasia","nsp_monasticIdentity":"UNKNOWN","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_144.json b/public/data/place-details/monastery_144.json
new file mode 100644
index 0000000..7e9f651
--- /dev/null
+++ b/public/data/place-details/monastery_144.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/144","nsp_id":"144","labels":["en,Saint Mary of Cava","it,Santa Maria della Cava"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of Cava","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.88366,14.12173,10000d","http://www.geonames.org/2524641/geraci-siculo.html"],"wgs_lat":37.88366,"wgs_long":14.12173,"nsp_coordinateSource":"Google Earth","geo_hasGeometry":{"geo_asWKT":"Point(14.12173 37.88366)"},"nsp_modernComune":"Geraci Siculo","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"Yes","wgs_alt":654,"nsp_seismicCode":"2","skos_altLabel":["Giracium"," Geragia"," Gârâs"," Garas"," Castrum Giracii"," Castrum Girachii"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-03","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/WNAS99IR","http://zotero.org/groups/2199947/items/UDQ5T7EL"],"nsp_pages":["145-54","34-37"],"nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/219","skos_prefLabel":"Saint Michael the Archangel"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/144","skos_prefLabel":"Saint Mary of Cava"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"136","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"UNKNOWN","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_145.json b/public/data/place-details/monastery_145.json
new file mode 100644
index 0000000..e53ea54
--- /dev/null
+++ b/public/data/place-details/monastery_145.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/145","nsp_id":"145","labels":["en,Christ the Savior of Cerami","it,Santissimo Salvatore di Cerami"],"nsp_placeType":"monastery","skos_prefLabel":"Christ the Savior of Cerami","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.80953,14.50660,10000d","http://www.geonames.org/2525031/cerami.html"],"wgs_lat":37.80953,"wgs_long":14.5066,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.50660 37.80953)"},"nsp_modernComune":"Cerami","nsp_modernProvince":"Enna","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":970,"nsp_seismicCode":"2","skos_altLabel":["Cirama"," Garâmi"," Ceramin"," Chirami"," Terami"," Chinami"]},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2016-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1143","nsp_minYear":"1143","nsp_maxYear":"1143"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"41, 122","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/145","skos_prefLabel":"Christ the Savior of Cerami"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/82","skos_prefLabel":"Saint Mary of Licodia"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"122","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"UNKNOWN","nsp_subjectOfDedication":"Christ","nsp_monasticIdentity":"UNKNOWN","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_147.json b/public/data/place-details/monastery_147.json
new file mode 100644
index 0000000..36b3aad
--- /dev/null
+++ b/public/data/place-details/monastery_147.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/147","nsp_id":"147","labels":["en,Saint Philip of Pantano","it,San Filippo di Pantano"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Philip of Pantano","nsp_hasLocation":{"rdfs_seeAlso":["http://www.geonames.org/2523866/paterno.html","https://earth.google.com/web/@37.56675,14.90254,10000d"],"wgs_lat":37.56675,"wgs_long":14.90254,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.90254 37.56675)"},"nsp_modernComune":"Paternò","nsp_modernProvince":"Catania","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":225,"nsp_seismicCode":"2","skos_altLabel":["Bâtarnû"," Paternio"," Castrum Paternionis"]},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2016-07-03","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1143","nsp_minYear":"1143","nsp_maxYear":"1143"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"41, 121-122","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/147","skos_prefLabel":"Saint Philip of Pantano"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/82","skos_prefLabel":"Saint Mary of Licodia"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"121-122","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"UNKNOWN","nsp_subjectOfDedication":"Saint Philip","nsp_monasticIdentity":"UNKNOWN","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_148.json b/public/data/place-details/monastery_148.json
new file mode 100644
index 0000000..15ba9ff
--- /dev/null
+++ b/public/data/place-details/monastery_148.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/148","nsp_id":"148","labels":["en,Saint Mary of Frazzanò","it,Santa Maria di Frazzanò"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of Frazzanò","nsp_hasLocation":{"rdfs_seeAlso":["http://www.geonames.org/2524698/frazzano.html","https://earth.google.com/web/@38.07202,14.74407,10000d"],"wgs_lat":38.07202,"wgs_long":14.74407,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.74407 38.07202)"},"nsp_modernComune":"Frazzanò","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":563,"nsp_seismicCode":"2","skos_altLabel":["Frasano"," Flacianò"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2019-06-28","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":["Santa Maria di Frigano"," Santa Maria di Fricanò"],"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1096-1097","nsp_minYear":"1096","nsp_maxYear":"1097"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["108, 403","107-108, 403, 497","730"],"nsp_notes":["In his index (497), Scaduto lists this as a dependency of Saint Theodore donated by Roger I to Saint Philip of Fragalà in 1097. On 108, he dates the donation to the Byzantine year 6605, which he converts to 1196-1197. However, the conversion seems to be an error and should read 1096-1097, years that fall within Roger I's reign. The conversion Scaduto gives on 403 (6605=1097) is correct. ","The date of earliest record provided by Giunta is 1116."]},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"UNKNOWN","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_149.json b/public/data/place-details/monastery_149.json
new file mode 100644
index 0000000..ca9d7d4
--- /dev/null
+++ b/public/data/place-details/monastery_149.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/149","nsp_id":"149","labels":["en,Saint Talleleo","it,San Talleleo"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Talleleo","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.12215,14.78702,10000d","http://www.geonames.org/2524020/naso.html"],"wgs_lat":38.12215,"wgs_long":14.78702,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.78702 38.12215)"},"nsp_modernComune":"Naso","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":490,"nsp_seismicCode":"2"},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2019-06-14","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1092","nsp_minYear":"1092","nsp_maxYear":"1092"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["106, 108, 403, 492","731"],"nsp_notes":""},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Talleleo","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_15.json b/public/data/place-details/monastery_15.json
new file mode 100644
index 0000000..a7ba881
--- /dev/null
+++ b/public/data/place-details/monastery_15.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/15","nsp_id":"15","labels":["en,Saint Barbarus of Dimenna","it,San Barbaro di Dimenna"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Barbarus of Dimenna","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.07261,14.70093,10000d","http://www.geonames.org/2523425/san-marco-d-alunzio.html"],"wgs_lat":38.07261,"wgs_long":14.70093,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.70093 38.07261)"},"nsp_modernComune":"San Marco d'Alunzio","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":540,"nsp_seismicCode":"2","skos_altLabel":["l'Agathyrnum"," l'Agathinon"," Qal'at-Sciant-Marku"," Castrum Sancti Mauri"," Castrum Marci"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-07","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/QCQQZXJ9","http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["975","35, 41, 45-46 n. 6 ","105, 110, 404, 421","730"],"nsp_notes":["According to Pirri, this monastery was not one of the communities that came under St. Savior's jurisdiction.","\"The foundation of the great abbey of St. Savior in Lingua Phari at Messina by Roger II in 1131-34, and the organization of most of the Greek houses of Sicily under its archimandrite into a sort of congregation, has generally been regarded as the climax of the Hellenic renaissance in the Norman realm. But it was actually a desperate effort to check the dissolution of Count Roger I's work of restoration.\" White (n. 5) says that he has not been able to explain why certain ones remained independent of the abbey. (45)","Scaduto locates this near Alcara Li Fusi. (110)","Giunta repeats Scaduto's identification of the site in the area of Alcara Li Fusi."]},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/15","skos_prefLabel":"Saint Barbarus of Dimenna"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/68","skos_prefLabel":"Christ the Savior in Lingua Phari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/QCQQZXJ9","nsp_pages":"975","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Barbarus","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_150.json b/public/data/place-details/monastery_150.json
new file mode 100644
index 0000000..d20d580
--- /dev/null
+++ b/public/data/place-details/monastery_150.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/150","nsp_id":"150","labels":["en,Saint Hippolytus","it,San Ippolito"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Hippolytus","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.14736,14.96409,10000d","http://www.geonames.org/2523864/patti.html"],"wgs_lat":38.14736,"wgs_long":14.96409,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.96409 38.14736)"},"nsp_modernComune":"Patti","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":157,"nsp_seismicCode":"2","skos_altLabel":["Baqt.s"," Pactes"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2019-06-14","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":"Sant'Ippolito","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1094","nsp_minYear":"1094","nsp_maxYear":"1094"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6","http://zotero.org/groups/2199947/items/GUIBPSBS"],"nsp_pages":["105, 109","730","165"],"nsp_notes":["","Whereas Scaduto appears to note that the date of earliest document for this monastery is 1094, Giunta lists it as 1105.","Reina locates this house in Patti."]},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"UNKNOWN","nsp_subjectOfDedication":"Saint Hippolytus","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_151.json b/public/data/place-details/monastery_151.json
new file mode 100644
index 0000000..80adc29
--- /dev/null
+++ b/public/data/place-details/monastery_151.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/151","nsp_id":"151","labels":["en,Saint Nicholas of Paleocastro","it,San Niccolò di Paleocastro"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Nicholas of Paleocastro","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.02143,14.70142,10000d","http://www.geonames.org/2525752/alcara-li-fusi.html"],"wgs_lat":38.02143,"wgs_long":14.70142,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.70142 38.02143)"},"nsp_modernComune":"Alcara Li Fusi","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":400,"nsp_seismicCode":"2","skos_altLabel":["Panecastro"," Alcares"," Castellum Alcariae"," Alchares"," Alhares"," Acharet"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2019-06-14","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":["San Nicolò di Ricca"," San Nicolo de Rocca"," San Nicolò de Petra"," San Nicolò de Scalis"," San Nicolò di Palocastro"],"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1094","nsp_minYear":"1094","nsp_maxYear":"1094"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6","http://zotero.org/groups/2199947/items/GUIBPSBS"],"nsp_pages":["105, 109, 402","730","165"],"nsp_notes":["","Reina locates this house in Alcara Li Fusi."]},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"UNKNOWN","nsp_subjectOfDedication":"Saint Nicholas","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_152.json b/public/data/place-details/monastery_152.json
new file mode 100644
index 0000000..2ed27e0
--- /dev/null
+++ b/public/data/place-details/monastery_152.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/152","nsp_id":"152","labels":["en,Saint Mary of Gullia","it,Santa Maria della Gullia"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of Gullia","nsp_hasLocation":{"rdfs_seeAlso":["http://www.geonames.org/2524707/francavilla-di-sicilia.html","https://earth.google.com/web/@37.90197,15.13821,10000d"],"wgs_lat":37.90197,"wgs_long":15.13821,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(15.13821 37.90197)"},"nsp_modernComune":"Francavilla di Sicilia","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":330,"nsp_seismicCode":"2"},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2019-06-28","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1112","nsp_minYear":"1112","nsp_maxYear":"1112"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6","http://zotero.org/groups/2199947/items/GUIBPSBS"],"nsp_pages":["105, 107, 111","730","165"],"nsp_notes":["","Reina locates this house in Francavilla di Sicilia."]},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"UNKNOWN","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_153.json b/public/data/place-details/monastery_153.json
new file mode 100644
index 0000000..c118e0e
--- /dev/null
+++ b/public/data/place-details/monastery_153.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/153","nsp_id":"153","labels":["en,Saint Peter of Mueli","it,San Pietro di Mueli"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Peter of Mueli","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.03176,14.77145,10000d","http://www.geonames.org/2524679/galati-mamertino.html"],"wgs_lat":38.03176,"wgs_long":14.77145,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.77145 38.03176)"},"nsp_modernComune":"Galati Mamertino","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":790,"nsp_seismicCode":"2","skos_altLabel":["Ghalat"," Galati"," Galāt"]},"nsp_updatedOn":"2020-10-26","nsp_createdOn":"2019-06-15","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":"San Pietro di Galati","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1105","nsp_minYear":"1105","nsp_maxYear":"1105"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["108, 112","105, 108","730"],"nsp_notes":""},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"UNKNOWN","nsp_subjectOfDedication":"Saint Peter","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_154.json b/public/data/place-details/monastery_154.json
new file mode 100644
index 0000000..ce1c429
--- /dev/null
+++ b/public/data/place-details/monastery_154.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/154","nsp_id":"154","labels":["en,Saints Cosmas and Damian","it,Santi Cosma e Damiano"],"nsp_placeType":"monastery","skos_prefLabel":"Saints Cosmas and Damian","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.22008,15.24023,10000d","http://www.geonames.org/2524155/milazzo.html"],"wgs_lat":38.22008,"wgs_long":15.24023,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(15.24023 38.22008)"},"nsp_modernComune":"Milazzo","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":1,"nsp_seismicCode":"2","skos_altLabel":"Milatium"},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2019-06-15","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1310","nsp_minYear":"1310","nsp_maxYear":"1310"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6","http://zotero.org/groups/2199947/items/GUIBPSBS"],"nsp_pages":["109","106, 109","730","165"],"nsp_notes":["","Reina locates this house in Milazzo."]},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"UNKNOWN","nsp_subjectOfDedication":"Saints Cosmas and Damian","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_156.json b/public/data/place-details/monastery_156.json
new file mode 100644
index 0000000..db0489c
--- /dev/null
+++ b/public/data/place-details/monastery_156.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/156","nsp_id":"156","labels":["en,Saint John of Murgo","it,San Giovanni di Murgo"],"nsp_placeType":"monastery","skos_prefLabel":"Saint John of Murgo","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.28556,14.99737,10000d","http://www.geonames.org/2524410/lentini.html"],"wgs_lat":37.28556,"wgs_long":14.99737,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.99737 37.28556)"},"nsp_modernComune":"Lentini","nsp_modernProvince":"Syracuse","nsp_historicalProvince":"Val di Noto","nsp_locationHighLoc":"No","wgs_alt":53,"nsp_seismicCode":"2","skos_altLabel":["Lentina"," Leontini"," Wâdî Lentini"," Palude Salata"]},"nsp_updatedOn":"2019-12-09","nsp_createdOn":"2019-06-25","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1116","nsp_minYear":"1116","nsp_maxYear":"1116"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["148, 496","729"],"nsp_notes":["Scaduto states that this monastery was founded in 1116. (496)",""]},"nsp_hasLink":{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#87303534","skos_prefLabel":"Tancred"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/156","skos_prefLabel":"Saint John of Murgo"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/PFHUIXBJ","nsp_pages":"156","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"UNKNOWN","nsp_subjectOfDedication":"Saint John","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_157.json b/public/data/place-details/monastery_157.json
new file mode 100644
index 0000000..7e546f9
--- /dev/null
+++ b/public/data/place-details/monastery_157.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/157","nsp_id":"157","labels":["en,Saint Christopher","it,San Cristoforo"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Christopher","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.13205,13.33561,10000d","http://www.geonames.org/2523920/palermo.html"],"wgs_lat":38.13205,"wgs_long":13.33561,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(13.33561 38.13205)"},"nsp_modernComune":"Palermo","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"No","wgs_alt":14,"nsp_seismicCode":"2","skos_altLabel":["Bn.rm"," Balarm"," Balarmuh"," Bân.rm"," Panormus"]},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2019-06-24","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1697","nsp_minYear":"1697","nsp_maxYear":"1697"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6","http://zotero.org/groups/2199947/items/QCQQZXJ9"],"nsp_pages":["141","729","181 A"],"nsp_notes":""},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"UNKNOWN","nsp_subjectOfDedication":"Saint Christopher","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_158.json b/public/data/place-details/monastery_158.json
new file mode 100644
index 0000000..d8607d9
--- /dev/null
+++ b/public/data/place-details/monastery_158.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/158","nsp_id":"158","labels":["en,Saint Mary de Oreto","it,Santa Maria di Oreto"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary de Oreto","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.13205,13.33561,10000d","http://www.geonames.org/2523920/palermo.html"],"wgs_lat":38.13205,"wgs_long":13.33561,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(13.33561 38.13205)"},"nsp_modernComune":"Palermo","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"No","wgs_alt":14,"nsp_seismicCode":"2","skos_altLabel":["Bn.rm"," Balarm"," Balarmuh"," Bân.rm"," Panormus"]},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2019-06-24","nsp_recordStatus":"Reviewed","nsp_notes":"We are unclear whether this is the same site as the remains of the church of the same name, which stands in ruins at 38.08971,13.34526.","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1148","nsp_minYear":"1148","nsp_maxYear":"1148"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["161","729"],"nsp_notes":["The author appears to be relying on sixteenth-, seventeenth- and eighteenth-century sources.","The date of earliest record is taken from Giunta."]},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"UNKNOWN","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_159.json b/public/data/place-details/monastery_159.json
new file mode 100644
index 0000000..9d2f2d8
--- /dev/null
+++ b/public/data/place-details/monastery_159.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/159","nsp_id":"159","labels":["en,Saint Matthew","it,San Matteo"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Matthew","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.13205,13.33561,10000d","http://www.geonames.org/2523920/palermo.html"],"wgs_lat":38.13205,"wgs_long":13.33561,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(13.33561 38.13205)"},"nsp_modernComune":"Palermo","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"No","wgs_alt":14,"nsp_seismicCode":"2","skos_altLabel":["Bn.rm"," Balarm"," Balarmuh"," Bân.rm"," Panormus"]},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2019-06-24","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1112","nsp_minYear":"1112","nsp_maxYear":"1112"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["161","729"],"nsp_notes":["The author appears to be relying on sixteenth-, seventeenth- and eighteenth-century sources.","The date of earliest record is taken from Giunta."]},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"UNKNOWN","nsp_subjectOfDedication":"Saint Matthew","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_16.json b/public/data/place-details/monastery_16.json
new file mode 100644
index 0000000..60c8d44
--- /dev/null
+++ b/public/data/place-details/monastery_16.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/16","nsp_id":"16","labels":["en,Saint Basil of Naso","it,San Basilio di Naso"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Basil of Naso","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.12215,14.78702,10000d","http://www.geonames.org/2524020/naso.html"],"wgs_lat":38.12215,"wgs_long":14.78702,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.78702 38.12215)"},"nsp_modernComune":"Naso","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":490,"nsp_seismicCode":"2","skos_altLabel":["Nasa"," Nasus"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-02","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1080","nsp_minYear":"1080","nsp_maxYear":"1080"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6","http://zotero.org/groups/2199947/items/EYD3FKFC"],"nsp_pages":["41, 187 n. 4, 191 n. 1","90 n. 78","730","n. 333"],"nsp_notes":["","Giunta lists date of earliest record as 1308-1310, unlike White and Scaduto."]},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/16","skos_prefLabel":"Saint Basil of Naso"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/179","skos_prefLabel":"Holy Trinity and Saint Michael the Archangel of Mileto"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"187 n. 4","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Basil","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_160.json b/public/data/place-details/monastery_160.json
new file mode 100644
index 0000000..0bc12c0
--- /dev/null
+++ b/public/data/place-details/monastery_160.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/160","nsp_id":"160","labels":["en,Saint Theodore","it,San Teodoro"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Theodore","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.13205,13.33561,10000d","http://www.geonames.org/2523920/palermo.html"],"wgs_lat":38.13205,"wgs_long":13.33561,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(13.33561 38.13205)"},"nsp_modernComune":"Palermo","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"No","wgs_alt":14,"nsp_seismicCode":"2","skos_altLabel":["Bn.rm"," Balarm"," Balarmuh"," Bân.rm"," Panormus"]},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2019-06-24","nsp_recordStatus":"Reviewed","nsp_notes":"There is some confusion here. Although Giunta lists White as a source, the only reference we can find in White's book to a St. Theodore in Palermo is found on page 11, a reference to a sixth-century document. This house does not appear in the list of Basilian monasteries White provides on pages 41-43.","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1148","nsp_minYear":"1148","nsp_maxYear":"1148"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["11","161","729"],"nsp_notes":["","The author appears to be relying on sixteenth-, seventeenth- and eighteenth-century sources.","The date of earliest record is taken from Giunta."]},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"UNKNOWN","nsp_subjectOfDedication":"Saint Theodore","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_161.json b/public/data/place-details/monastery_161.json
new file mode 100644
index 0000000..5700305
--- /dev/null
+++ b/public/data/place-details/monastery_161.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/161","nsp_id":"161","labels":["en,Saint John of the Lepers","it,San Giovanni dei Lebbrosi"],"nsp_placeType":"monastery","skos_prefLabel":"Saint John of the Lepers","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.93357,13.66808,10000d","http://www.geonames.org/2525476/caccamo.html"],"wgs_lat":37.93357,"wgs_long":13.66808,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(13.66808 37.93357)"},"nsp_modernComune":"Caccamo","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"No","wgs_alt":521,"nsp_seismicCode":"2","skos_altLabel":["Caccabo"," K.k.b.sc"," Qaqabus"," Calces"," Caccabum"]},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2019-06-24","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1308-1310","nsp_minYear":"1308","nsp_maxYear":"1310"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/XN5REGM6","http://zotero.org/groups/2199947/items/EYD3FKFC"],"nsp_pages":["240","729","n. 206"],"nsp_notes":["","The date of earliest record is taken from Giunta."]},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"UNKNOWN","nsp_subjectOfDedication":"Saint John","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_163.json b/public/data/place-details/monastery_163.json
new file mode 100644
index 0000000..2bcdf2d
--- /dev/null
+++ b/public/data/place-details/monastery_163.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/163","nsp_id":"163","labels":["en,Saint Anne del Solario","it,Sant'Anna del Solario"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Anne del Solario","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.19394,15.55256,10000d","http://www.geonames.org/2524170/messina.html"],"wgs_lat":38.19394,"wgs_long":15.55256,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(15.55256 38.19394)"},"nsp_modernComune":"Messina","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":3,"nsp_seismicCode":"1","skos_altLabel":"Massîni"},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2019-06-25","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1308-1310","nsp_minYear":"1308","nsp_maxYear":"1310"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/XN5REGM6","http://zotero.org/groups/2199947/items/EYD3FKFC","http://zotero.org/groups/2199947/items/CDFDD2GL"],"nsp_pages":["729","n. 447","311"],"nsp_notes":""},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"UNKNOWN","nsp_subjectOfDedication":"Saint Anne","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_164.json b/public/data/place-details/monastery_164.json
new file mode 100644
index 0000000..1dea6f3
--- /dev/null
+++ b/public/data/place-details/monastery_164.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/164","nsp_id":"164","labels":["en,Cluny","it,Cluny"],"nsp_placeType":"monastery","skos_prefLabel":"Cluny","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@46.43432,4.65926,10000d","http://www.geonames.org/3024534/cluny.html"],"wgs_lat":46.43432,"wgs_long":4.65926,"nsp_coordinateSource":"Google Earth","geo_hasGeometry":{"geo_asWKT":"Point(4.65926 46.43432)"},"nsp_modernComune":"NOT SET","nsp_modernProvince":"NOT SET","nsp_historicalProvince":"NOT SET","nsp_locationHighLoc":"Yes","wgs_alt":240},"nsp_updatedOn":"2019-12-09","nsp_createdOn":"2019-12-09","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"55, 70, 79 n. 2, 107, 135, 136, 150, 151, 195","nsp_notes":""},"nsp_hasLink":[{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#51370564","skos_prefLabel":"WIlliam I"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/164","skos_prefLabel":"Cluny"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/MX26G3RV","nsp_pages":"174","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/220","skos_prefLabel":"Saint Mary of Monte Maggiore"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/164","skos_prefLabel":"Cluny"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"151","nsp_notes":""}}],"nsp_probableStatus":"Abbey","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Cluniacs","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_165.json b/public/data/place-details/monastery_165.json
new file mode 100644
index 0000000..bbd4d1d
--- /dev/null
+++ b/public/data/place-details/monastery_165.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/165","nsp_id":"165","labels":["en,Saint Basil del Tormento","it,San Basilio del Tormento"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Basil del Tormento","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.03176,14.77145,10000d","http://www.geonames.org/2524679/galati-mamertino.html"],"wgs_lat":38.03176,"wgs_long":14.77145,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.77145 38.03176)"},"nsp_modernComune":"Galati Mamertino","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":790,"nsp_seismicCode":"2","skos_altLabel":["Ghalat"," Galati"," Galāt"]},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2019-06-28","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/XN5REGM6","http://zotero.org/groups/2199947/items/IGQPVPAG"],"nsp_pages":["730","col. 1197"],"nsp_notes":["","See White's discussion of the limitations of this source. (40)"]},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"UNKNOWN","nsp_subjectOfDedication":"Saint Basil","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_166.json b/public/data/place-details/monastery_166.json
new file mode 100644
index 0000000..ff4ffbb
--- /dev/null
+++ b/public/data/place-details/monastery_166.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/166","nsp_id":"166","labels":["en,Saint Mark in Valdemone","it,San Marco in Valdemone"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mark in Valdemone","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.07261,14.70093,10000d","http://www.geonames.org/2523425/san-marco-d-alunzio.html"],"wgs_lat":38.07261,"wgs_long":14.70093,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.70093 38.07261)"},"nsp_modernComune":"San Marco d'Alunzio","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":540,"nsp_seismicCode":"2","skos_altLabel":["l'Agathyrnum"," l'Agathinon"," Qal'at-Sciant-Marku"," Castrum Sancti Mauri"," Castrum Marci"]},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2019-06-28","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1105","nsp_minYear":"1105","nsp_maxYear":"1105"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["107","730"],"nsp_notes":""},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"UNKNOWN","nsp_subjectOfDedication":"Saint Mark","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_167.json b/public/data/place-details/monastery_167.json
new file mode 100644
index 0000000..e7af1a7
--- /dev/null
+++ b/public/data/place-details/monastery_167.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/167","nsp_id":"167","labels":["en,Saint Mary","it,Santa Maria"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.17007,15.41429,10000d","http://www.geonames.org/6535668/rometta.html"],"wgs_lat":38.17007,"wgs_long":15.41429,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(15.41429 38.17007)"},"nsp_modernComune":"Rometta","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":560,"nsp_seismicCode":"1","skos_altLabel":["Rametta"," Ramete"," Remete"," Rimecta"," Rimetulam"," Qal'at Rimtah"," Qal'at Rimza"," Rimetas"," Romecta"]},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2019-06-28","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1308-1310","nsp_minYear":"1308","nsp_maxYear":"1310"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/XN5REGM6","http://zotero.org/groups/2199947/items/EYD3FKFC"],"nsp_pages":["730","n. 860"],"nsp_notes":""},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"UNKNOWN","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_168.json b/public/data/place-details/monastery_168.json
new file mode 100644
index 0000000..eab2bc1
--- /dev/null
+++ b/public/data/place-details/monastery_168.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/168","nsp_id":"168","labels":["en,Saint Mary of Bucanto","it,Santa Maria di Bucanto"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of Bucanto","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.92823,14.35780,10000d","http://www.geonames.org/2524122/mistretta.html"],"wgs_lat":37.92823,"wgs_long":14.3578,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.35780 37.92823)"},"nsp_modernComune":"Mistretta","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":900,"nsp_seismicCode":"2","skos_altLabel":"Mistrecta"},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2019-06-28","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":"Santa Maria di Vocante","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1308-1310","nsp_minYear":"1308","nsp_maxYear":"1310"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6","http://zotero.org/groups/2199947/items/EYD3FKFC"],"nsp_pages":["163","730","n. 249"],"nsp_notes":""},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"UNKNOWN","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_169.json b/public/data/place-details/monastery_169.json
new file mode 100644
index 0000000..9cf670e
--- /dev/null
+++ b/public/data/place-details/monastery_169.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/169","nsp_id":"169","labels":["en,Saint Mary of Fiumedinisi","it,Santa Maria di Fiumedinisi"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of Fiumedinisi","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.02596,15.38099,10000d","http://www.geonames.org/2524745/fiumedinisi.html"],"wgs_lat":38.02596,"wgs_long":15.38099,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(15.38099 38.02596)"},"nsp_modernComune":"Fiumedinisi","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":200,"nsp_seismicCode":"1","skos_altLabel":["Flumen Dionysii"," Fiumenisi"]},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2019-06-28","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/XN5REGM6","http://zotero.org/groups/2199947/items/IGQPVPAG"],"nsp_pages":["730","n. 1200"],"nsp_notes":["","See White's discussion of the limitations of this source. (40)"]},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"UNKNOWN","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_17.json b/public/data/place-details/monastery_17.json
new file mode 100644
index 0000000..07590e9
--- /dev/null
+++ b/public/data/place-details/monastery_17.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/17","nsp_id":"17","labels":["en,Saint Basil of Troina","it,San Basilio di Troina"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Basil of Troina","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.78437,14.59605,10000d","http://www.geonames.org/2522849/troina.html"],"wgs_lat":37.78437,"wgs_long":14.59605,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.59605 37.78437)"},"nsp_modernComune":"Troina","nsp_modernProvince":"Enna","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":1121,"nsp_seismicCode":"2","skos_altLabel":["Traina"," Targinis"," Trayna"," Castrum Troinae"," Castrum Trainae"," Draginat"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-03","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1131","nsp_minYear":"1131","nsp_maxYear":"1131"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/QCQQZXJ9","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["41","45","975","390","730"],"nsp_notes":["\"The foundation of the great abbey of St. Savior in Lingua Phari at Messina by Roger II in 1131-34, and the organization of most of the Greek houses of Sicily under its archimandrite into a sort of congregation, has generally been regarded as the climax of the Hellenic renaissance in the Norman realm. But it was actually a desperate effort to check the dissolution of Count Roger I's work of restoration.\" White (n. 5) says that he has not been able to explain why certain ones remained independent of the abbey.","\"The foundation of the great abbey of St. Savior in Lingua Phari at Messina by Roger II in 1131-34, and the organization of most of the Greek houses of Sicily under its archimandrite into a sort of congregation, has generally been regarded as the climax of the Hellenic renaissance in the Norman realm. But it was actually a desperate effort to check the dissolution of Count Roger I's work of restoration.\" White (n. 5) says that he has not been able to explain why certain ones remained independent of the abbey. ","According to Pirri, this monastery was not one of the communities that came under St. Savior's jurisdiction.",""]},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Basil","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_170.json b/public/data/place-details/monastery_170.json
new file mode 100644
index 0000000..e87155c
--- /dev/null
+++ b/public/data/place-details/monastery_170.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/170","nsp_id":"170","labels":["en,Saint Mary of Lacu","it,Santa Maria di Lacu"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of Lacu","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.12215,14.78702,10000d","http://www.geonames.org/2524020/naso.html"],"wgs_lat":38.12215,"wgs_long":14.78702,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.78702 38.12215)"},"nsp_modernComune":"Naso","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":490,"nsp_seismicCode":"2"},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2019-06-28","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1389","nsp_minYear":"1389","nsp_maxYear":"1389"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["164","730"],"nsp_notes":""},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"UNKNOWN","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_171.json b/public/data/place-details/monastery_171.json
new file mode 100644
index 0000000..5f1ce25
--- /dev/null
+++ b/public/data/place-details/monastery_171.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/171","nsp_id":"171","labels":["en,Saint Mary della Provvidenza","it,Santa Maria della Provvidenza"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary della Provvidenza","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.02596,15.38099,10000d","http://www.geonames.org/2524745/fiumedinisi.html"],"wgs_lat":38.02596,"wgs_long":15.38099,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(15.38099 38.02596)"},"nsp_modernComune":"Fiumedinisi","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":200,"nsp_seismicCode":"1","skos_altLabel":["Flumen Dionysii"," Fiumenisi"]},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2019-06-28","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1093","nsp_minYear":"1093","nsp_maxYear":"1093"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/XN5REGM6","nsp_pages":"730","nsp_notes":""},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"UNKNOWN","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_172.json b/public/data/place-details/monastery_172.json
new file mode 100644
index 0000000..e314f62
--- /dev/null
+++ b/public/data/place-details/monastery_172.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/172","nsp_id":"172","labels":["en,Saint Mary of Rogato","it,Santa Maria di Rogato"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of Rogato","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.02143,14.70142,10000d","http://www.geonames.org/2525752/alcara-li-fusi.html"],"wgs_lat":38.02143,"wgs_long":14.70142,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.70142 38.02143)"},"nsp_modernComune":"Alcara Li Fusi","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":400,"nsp_seismicCode":"2","skos_altLabel":["Panecastro"," Alcares"," Castellum Alcariae"," Alchares"," Alhares"," Acharet"]},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2019-06-28","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1308-1310","nsp_minYear":"1308","nsp_maxYear":"1310"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6","http://zotero.org/groups/2199947/items/IGQPVPAG"],"nsp_pages":["163","730","n. 249"],"nsp_notes":["Scaduto proposes that Santa Maria di Rogato was also referred to as \"Santa Maria de Altari\" and \"Santa Maria de Alcara.\"","","See White's discussion of the limitations of this source. (40)"]},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"UNKNOWN","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_173.json b/public/data/place-details/monastery_173.json
new file mode 100644
index 0000000..a81f4f1
--- /dev/null
+++ b/public/data/place-details/monastery_173.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/173","nsp_id":"173","labels":["en,Saint Mary of Sparti","it,Santa Maria di Sparti"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of Sparti","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.98096,14.30337,10000d","http://www.geonames.org/6535323/motta-d-affermo.html"],"wgs_lat":37.98096,"wgs_long":14.30337,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.30337 37.98096)"},"nsp_modernComune":"Motta d'Affermo","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":660,"nsp_seismicCode":"2","skos_altLabel":"Sparto"},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2019-06-28","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":"Santa Maria di Spanto","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1278","nsp_minYear":"1278","nsp_maxYear":"1278"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6","http://zotero.org/groups/2199947/items/EYD3FKFC"],"nsp_pages":["163","730","n. 246"],"nsp_notes":""},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"UNKNOWN","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_174.json b/public/data/place-details/monastery_174.json
new file mode 100644
index 0000000..b8bf33a
--- /dev/null
+++ b/public/data/place-details/monastery_174.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/174","nsp_id":"174","labels":["en,Saint Michael the Archangel of Demenna","it,San Michele Arcangelo di Demenna"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Michael the Archangel of Demenna","nsp_hasLocation":{"rdfs_seeAlso":["http://www.geonames.org/2524698/frazzano.html","https://earth.google.com/web/@38.07202,14.74407,10000d"],"wgs_lat":38.07202,"wgs_long":14.74407,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.74407 38.07202)"},"nsp_modernComune":"Frazzanò","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":563,"nsp_seismicCode":"2","skos_altLabel":["Frasano"," Flacianò"]},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2019-06-29","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1105","nsp_minYear":"1105","nsp_maxYear":"1105"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["106-107","730"],"nsp_notes":""},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"UNKNOWN","nsp_subjectOfDedication":"Saint Michael the Archangel","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_175.json b/public/data/place-details/monastery_175.json
new file mode 100644
index 0000000..617b311
--- /dev/null
+++ b/public/data/place-details/monastery_175.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/175","nsp_id":"175","labels":["en,Monastery of John the Forerunner","it,Monastero del Precursore Giovanni"],"nsp_placeType":"monastery","skos_prefLabel":"Monastery of John the Forerunner","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.13205,13.33561,10000d","http://www.geonames.org/2523920/palermo.html"],"wgs_lat":38.13205,"wgs_long":13.33561,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(13.33561 38.13205)"},"nsp_modernComune":"Palermo","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"No","wgs_alt":14,"nsp_seismicCode":"2","skos_altLabel":["Bn.rm"," Balarm"," Balarmuh"," Bân.rm"," Panormus"]},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2019-06-29","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1105","nsp_minYear":"1105","nsp_maxYear":"1105"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/XN5REGM6","http://zotero.org/groups/2199947/items/V7MNSAU3","http://zotero.org/groups/2199947/items/CQ74DH2D"],"nsp_pages":["730","400"],"nsp_notes":""},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"UNKNOWN","nsp_subjectOfDedication":"Saint John the Baptist","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_177.json b/public/data/place-details/monastery_177.json
new file mode 100644
index 0000000..19d9b15
--- /dev/null
+++ b/public/data/place-details/monastery_177.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/177","nsp_id":"177","labels":["en,Our Lady of Mount Sion at Jerusalem","it,Our Lady of Mount Sion at Jerusalem"],"nsp_placeType":"monastery","skos_prefLabel":"Our Lady of Mount Sion at Jerusalem","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@31.77170,35.22904,10000d","http://www.geonames.org/281184/jerusalem.html"],"wgs_lat":31.7717,"wgs_long":35.22904,"nsp_coordinateSource":"Google Earth","geo_hasGeometry":{"geo_asWKT":"Point(35.22904 31.77170)"},"nsp_modernComune":"NOT SET","nsp_modernProvince":"NOT SET","nsp_historicalProvince":"NOT SET","nsp_locationHighLoc":"Yes","wgs_alt":773},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2019-12-06","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1120","nsp_minYear":"1120","nsp_maxYear":"1120"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"231-233","nsp_notes":"Although a prior first appears in documents as of 1120, there is no evidence that it had become an abbey until 1178. (231)"},"nsp_hasLink":[{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#26410592","skos_prefLabel":"Godfrey of Boulogne"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/177","skos_prefLabel":"Our Lady of Mount Sion at Jerusalem"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"231","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/132","skos_prefLabel":"Holy Spirit at Caltanissetta"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/177","skos_prefLabel":"Our Lady of Mount Sion at Jerusalem"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"232","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/133","skos_prefLabel":"Saint Mary of Baratathe"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/177","skos_prefLabel":"Our Lady of Mount Sion at Jerusalem"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"232","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/134","skos_prefLabel":"Saint Mary of Mount Sion"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/177","skos_prefLabel":"Our Lady of Mount Sion at Jerusalem"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"232","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/135","skos_prefLabel":"Saint Anne of Fesime"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/177","skos_prefLabel":"Our Lady of Mount Sion at Jerusalem"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"232","nsp_notes":""}}],"nsp_probableStatus":"Priory then Abbey","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Augustinian Canons","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_178.json b/public/data/place-details/monastery_178.json
new file mode 100644
index 0000000..77dc549
--- /dev/null
+++ b/public/data/place-details/monastery_178.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/178","nsp_id":"178","labels":["en,Priory of Saint Mary and the Twelve Apostles at Bagnara, Calabria","it,Priory of Saint Mary and the Twelve Apostles at Bagnara, Calabria"],"nsp_placeType":"monastery","skos_prefLabel":"Priory of Saint Mary and the Twelve Apostles at Bagnara, Calabria","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.28778,15.80591,10000d","http://www.geonames.org/2525616/bagnara-calabra.html"],"wgs_lat":38.28778,"wgs_long":15.80591,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(15.80591 38.28778)"},"nsp_modernComune":"NOT SET","nsp_modernProvince":"NOT SET","nsp_historicalProvince":"NOT SET","nsp_locationHighLoc":"No","wgs_alt":50},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2019-12-06","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1085","nsp_minYear":"1085","nsp_maxYear":"1085"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"49, 56, 66 n. 7, 67, 72, 114, 184-186, 189, 194-195, 201, 275, 278","nsp_notes":"The foundation date of 1085 is \"probable.\" (184) This community became a subject of the Bishopric of Saint Savior and Saints Peter and Paul, Cefalù in 1131. (189)"},"nsp_hasLink":[{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/178","skos_prefLabel":"Priory of Saint Mary and the Twelve Apostles at Bagnara, Calabria"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"184","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/105","skos_prefLabel":"Saint Peter of Palermo"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/178","skos_prefLabel":"Priory of Saint Mary and the Twelve Apostles at Bagnara, Calabria"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"186","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/106","skos_prefLabel":"Saint James of Partinico"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/178","skos_prefLabel":"Priory of Saint Mary and the Twelve Apostles at Bagnara, Calabria"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"186","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/107","skos_prefLabel":"Saint Steven of Castronuovo"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/178","skos_prefLabel":"Priory of Saint Mary and the Twelve Apostles at Bagnara, Calabria"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"186","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/108","skos_prefLabel":"Saint Mary of Castronuovo"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/178","skos_prefLabel":"Priory of Saint Mary and the Twelve Apostles at Bagnara, Calabria"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"186","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/109","skos_prefLabel":"Saint Matthew of Messina"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/178","skos_prefLabel":"Priory of Saint Mary and the Twelve Apostles at Bagnara, Calabria"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"187","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/110","skos_prefLabel":"Saint Eunufrius of Calatabiano"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/178","skos_prefLabel":"Priory of Saint Mary and the Twelve Apostles at Bagnara, Calabria"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"187","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/111","skos_prefLabel":"Saint George of Lentini"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/178","skos_prefLabel":"Priory of Saint Mary and the Twelve Apostles at Bagnara, Calabria"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"187","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/112","skos_prefLabel":"Saint Lucy of Rahalbiato"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/178","skos_prefLabel":"Priory of Saint Mary and the Twelve Apostles at Bagnara, Calabria"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"187","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/113","skos_prefLabel":"Saint George of Hares"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/178","skos_prefLabel":"Priory of Saint Mary and the Twelve Apostles at Bagnara, Calabria"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"187","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/114","skos_prefLabel":"Saint Peter of Sclafani"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/178","skos_prefLabel":"Priory of Saint Mary and the Twelve Apostles at Bagnara, Calabria"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"187","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/115","skos_prefLabel":"Saint Nicholas of Corleone"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/178","skos_prefLabel":"Priory of Saint Mary and the Twelve Apostles at Bagnara, Calabria"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"187","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/116","skos_prefLabel":"Saint Peter of Milazzo"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/178","skos_prefLabel":"Priory of Saint Mary and the Twelve Apostles at Bagnara, Calabria"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"187","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/117","skos_prefLabel":"Saint Cataldo"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/178","skos_prefLabel":"Priory of Saint Mary and the Twelve Apostles at Bagnara, Calabria"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"187","nsp_notes":""}},{"nsp_role":"Colonized by","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/118","skos_prefLabel":"Christ the Savior and Saints Peter and Paul of Cefalù"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/178","skos_prefLabel":"Priory of Saint Mary and the Twelve Apostles at Bagnara, Calabria"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"201","nsp_notes":""}}],"nsp_probableStatus":"Priory","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary and the Twelve Apostles","nsp_monasticIdentity":"Augustinian Canons","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_179.json b/public/data/place-details/monastery_179.json
new file mode 100644
index 0000000..bd634ce
--- /dev/null
+++ b/public/data/place-details/monastery_179.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/179","nsp_id":"179","labels":["en,Holy Trinity and Saint Michael the Archangel of Mileto","it,Santissima Trinità di San Michele Arcangelo di Mileto"],"nsp_placeType":"monastery","skos_prefLabel":"Holy Trinity and Saint Michael the Archangel of Mileto","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.59216,16.07918,10000d","http://www.geonames.org/2524151/mileto.html"],"wgs_lat":38.59216,"wgs_long":16.07918,"nsp_coordinateSource":"Google Earth","geo_hasGeometry":{"geo_asWKT":"Point(16.07918 38.59216)"},"nsp_modernComune":"NOT SET","nsp_modernProvince":"NOT SET","nsp_historicalProvince":"NOT SET","nsp_locationHighLoc":"Yes","wgs_alt":272},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2019-12-06","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1080","nsp_minYear":"1080","nsp_maxYear":"1080"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"48, 106 n. 2, 187 n. 4, 191, 194, 253","nsp_notes":""},"nsp_hasLink":[{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/179","skos_prefLabel":"Holy Trinity and Saint Michael the Archangel of Mileto"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"48","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/16","skos_prefLabel":"Saint Basil of Naso"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/179","skos_prefLabel":"Holy Trinity and Saint Michael the Archangel of Mileto"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"187 n. 4","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/19","skos_prefLabel":"Saint Cosmas at Gonata"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/179","skos_prefLabel":"Holy Trinity and Saint Michael the Archangel of Mileto"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"191","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/69","skos_prefLabel":"Saint Nicholas of Butana"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/179","skos_prefLabel":"Holy Trinity and Saint Michael the Archangel of Mileto"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"191 n. 1","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/141","skos_prefLabel":"Saint Michael the Archangel of the Val Demone"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/179","skos_prefLabel":"Holy Trinity and Saint Michael the Archangel of Mileto"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"191 n. 1","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/143","skos_prefLabel":"Saint Anastasia of Gratteri"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/179","skos_prefLabel":"Holy Trinity and Saint Michael the Archangel of Mileto"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"191 n. 1","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/146","skos_prefLabel":"Saint Nicholas of the Val Demone"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/179","skos_prefLabel":"Holy Trinity and Saint Michael the Archangel of Mileto"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"191 n. 1","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/216","skos_prefLabel":"Saint John of Rocella"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/179","skos_prefLabel":"Holy Trinity and Saint Michael the Archangel of Mileto"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"191","nsp_notes":""}}],"nsp_probableStatus":"Abbey","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Michael the Archangel then the Holy Trinity","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_18.json b/public/data/place-details/monastery_18.json
new file mode 100644
index 0000000..612d929
--- /dev/null
+++ b/public/data/place-details/monastery_18.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/18","nsp_id":"18","labels":["en,Saint Constantine of Malet","it,San Costantino di Malet"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Constantine of Malet","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.82914,14.86403,10000d","http://www.geonames.org/2524322/maletto.html"],"wgs_lat":37.82914,"wgs_long":14.86403,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.86403 37.82914)"},"nsp_modernComune":"Maletto","nsp_modernProvince":"Catania","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":960,"nsp_seismicCode":"2","skos_altLabel":"Castrum Malecti"},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":"San Costantino di Maletto","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1131","nsp_minYear":"1131","nsp_maxYear":"1131"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["41","183","730"],"nsp_notes":["","Giunta places the date of earliest documentation at 1134, 3 years later than White."]},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Constantine","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_180.json b/public/data/place-details/monastery_180.json
new file mode 100644
index 0000000..0a3592f
--- /dev/null
+++ b/public/data/place-details/monastery_180.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/180","nsp_id":"180","labels":["en,Saint Euphemia","it,Sant'Eufemia"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Euphemia","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.93406,16.23449,10000d","http://www.geonames.org/2523265/santa-eufemia-lamezia.html"],"wgs_lat":38.93406,"wgs_long":16.23449,"nsp_coordinateSource":"Google Earth","geo_hasGeometry":{"geo_asWKT":"Point(16.23449 38.93406)"},"nsp_modernComune":"NOT SET","nsp_modernProvince":"NOT SET","nsp_historicalProvince":"NOT SET","nsp_locationHighLoc":"Yes","wgs_alt":28},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2019-12-07","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1062","nsp_minYear":"1062","nsp_maxYear":"1062"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"48, 55-57, 79 , 80, 105, 107, 114, 117, 118","nsp_notes":""},"nsp_hasLink":[{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i74374074","skos_prefLabel":"Robert of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/180","skos_prefLabel":"Saint Euphemia"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"47-48","nsp_notes":""}},{"nsp_role":"Colonized By","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/78","skos_prefLabel":"Saint Agatha of Catania"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/180","skos_prefLabel":"Saint Euphemia"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"117","nsp_notes":""}}],"nsp_probableStatus":"Abbey","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Euphemia","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_181.json b/public/data/place-details/monastery_181.json
new file mode 100644
index 0000000..0edc2be
--- /dev/null
+++ b/public/data/place-details/monastery_181.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/181","nsp_id":"181","labels":["en,Saint Hippolytus","it,San Ippolito"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Hippolytus","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.19100,14.18232,10000d","http://www.geonames.org/2525480/butera.html"],"wgs_lat":37.191,"wgs_long":14.18232,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.18232 37.19100)"},"nsp_modernComune":"NOT SET","nsp_modernProvince":"Caltanissetta","nsp_historicalProvince":"Val di Noto","nsp_locationHighLoc":"No","wgs_alt":402,"skos_altLabel":["Butheria"," Buthìr"]},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2019-12-07","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":"Sant'Ippolito","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1143","nsp_minYear":"1143","nsp_maxYear":"1143"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"122","nsp_notes":""},"nsp_hasLink":[{"nsp_role":"Secular Lord","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#88860961","skos_prefLabel":"Simon del Vasto"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/181","skos_prefLabel":"Saint Hippolytus"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"122","nsp_notes":""}},{"nsp_role":"Secular Lord","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#86223256","skos_prefLabel":"Thomasia"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/181","skos_prefLabel":"Saint Hippolytus"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"122","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/181","skos_prefLabel":"Saint Hippolytus"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/82","skos_prefLabel":"Saint Mary of Licodia"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"121","nsp_notes":""}}],"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Hippolytus","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_182.json b/public/data/place-details/monastery_182.json
new file mode 100644
index 0000000..9e5a89f
--- /dev/null
+++ b/public/data/place-details/monastery_182.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/182","nsp_id":"182","labels":["en,Santa Maria of Montevergine","it,Santa Maria di Montevergine"],"nsp_placeType":"monastery","skos_prefLabel":"Santa Maria of Montevergine","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@40.93572,14.72824,10000d","http://www.geonames.org/3173555/mercogliano.html"],"wgs_lat":40.93572,"wgs_long":14.72824,"nsp_coordinateSource":"Google Earth","geo_hasGeometry":{"geo_asWKT":"Point(14.72824 40.93572)"},"nsp_modernComune":"NOT SET","nsp_modernProvince":"NOT SET","nsp_historicalProvince":"NOT SET","nsp_locationHighLoc":"Yes","wgs_alt":1277},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2019-12-07","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"56, 72, 116, 123-126, 127, 130, 175","nsp_notes":""},"nsp_hasLink":[{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#87468216","skos_prefLabel":"William of Vercelli"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/182","skos_prefLabel":"Santa Maria of Montevergine"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"124","nsp_notes":""}},{"nsp_role":"Colonized By","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/83","skos_prefLabel":"Saint John of the Hermits"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/182","skos_prefLabel":"Santa Maria of Montevergine"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"123","nsp_notes":""}}],"nsp_probableStatus":"Abbey","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_183.json b/public/data/place-details/monastery_183.json
new file mode 100644
index 0000000..84aaecc
--- /dev/null
+++ b/public/data/place-details/monastery_183.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/183","nsp_id":"183","labels":["en,Saint Paul of the Hospital of Sciara","it,San Paolo dell’Ospedale di Sciara"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Paul of the Hospital of Sciara","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.88306,14.79808,10000d","http://www.geonames.org/6534815/maniace.html"],"wgs_lat":37.88306,"wgs_long":14.79808,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.79808 37.88306)"},"nsp_modernComune":"Maniace","nsp_modernProvince":"Catania","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":787,"nsp_seismicCode":"2"},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2019-12-07","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1178","nsp_minYear":"1178","nsp_maxYear":"1178"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/183","skos_prefLabel":"Saint Paul of the Hospital of Sciara"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Paul","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_184.json b/public/data/place-details/monastery_184.json
new file mode 100644
index 0000000..9b81c64
--- /dev/null
+++ b/public/data/place-details/monastery_184.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/184","nsp_id":"184","labels":["en,Saint Peter of Messuriachia","it,San Pietro di Messuriachia"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Peter of Messuriachia","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.88306,14.79808,10000d","http://www.geonames.org/6534815/maniace.html"],"wgs_lat":37.88306,"wgs_long":14.79808,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.79808 37.88306)"},"nsp_modernComune":"Maniace","nsp_modernProvince":"Catania","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":787,"nsp_seismicCode":"2"},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2019-12-07","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1178","nsp_minYear":"1178","nsp_maxYear":"1178"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/184","skos_prefLabel":"Saint Peter of Messuriachia"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Peter","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_185.json b/public/data/place-details/monastery_185.json
new file mode 100644
index 0000000..17fffd8
--- /dev/null
+++ b/public/data/place-details/monastery_185.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/185","nsp_id":"185","labels":["en,Saint John","it,San Giovanni"],"nsp_placeType":"monastery","skos_prefLabel":"Saint John","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.88306,14.79808,10000d","http://www.geonames.org/6534815/maniace.html"],"wgs_lat":37.88306,"wgs_long":14.79808,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.79808 37.88306)"},"nsp_modernComune":"Maniace","nsp_modernProvince":"Catania","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":787,"nsp_seismicCode":"2"},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2019-12-07","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1178","nsp_minYear":"1178","nsp_maxYear":"1178"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/185","skos_prefLabel":"Saint John"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint John","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_186.json b/public/data/place-details/monastery_186.json
new file mode 100644
index 0000000..6292960
--- /dev/null
+++ b/public/data/place-details/monastery_186.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/186","nsp_id":"186","labels":["en,Saint Nicholas of Sciara","it,San Nicola di Sciara"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Nicholas of Sciara","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.88306,14.79808,10000d","http://www.geonames.org/6534815/maniace.html"],"wgs_lat":37.88306,"wgs_long":14.79808,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.79808 37.88306)"},"nsp_modernComune":"Maniace","nsp_modernProvince":"Catania","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":787,"nsp_seismicCode":"2"},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2019-12-07","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1178","nsp_minYear":"1178","nsp_maxYear":"1178"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/186","skos_prefLabel":"Saint Nicholas of Sciara"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Nicholas","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_187.json b/public/data/place-details/monastery_187.json
new file mode 100644
index 0000000..e25602a
--- /dev/null
+++ b/public/data/place-details/monastery_187.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/187","nsp_id":"187","labels":["en,Saint Leo","it,San Leone"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Leo","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.88306,14.79808,10000d","http://www.geonames.org/6534815/maniace.html"],"wgs_lat":37.88306,"wgs_long":14.79808,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.79808 37.88306)"},"nsp_modernComune":"Maniace","nsp_modernProvince":"Catania","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":787,"nsp_seismicCode":"2"},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2019-12-07","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1178","nsp_minYear":"1178","nsp_maxYear":"1178"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":"Along with Saint Leone are included the other churches in the area (\". . . et omnes Ecclesias, que sunt in eodem Burgo . . . .\")."},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/187","skos_prefLabel":"Saint Leo"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Leo","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_188.json b/public/data/place-details/monastery_188.json
new file mode 100644
index 0000000..c762b76
--- /dev/null
+++ b/public/data/place-details/monastery_188.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/188","nsp_id":"188","labels":["en,Saint Euplus","it,Sant'Euplio"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Euplus","nsp_hasLocation":{"rdfs_seeAlso":["http://www.geonames.org/2524151/mileto.html","https://earth.google.com/web/@38.60780,16.06751,10000d"],"wgs_lat":38.6078,"wgs_long":16.06751,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(16.06751 38.60780)"},"nsp_modernComune":"NOT SET","nsp_modernProvince":"NOT SET","nsp_historicalProvince":"NOT SET","nsp_locationHighLoc":"No","wgs_alt":365},"nsp_updatedOn":"2020-01-24","nsp_createdOn":"2020-01-24","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"57, 153, 203, 243, 285","nsp_notes":""},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Female","nsp_subjectOfDedication":"Saint Euplus","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_189.json b/public/data/place-details/monastery_189.json
new file mode 100644
index 0000000..a0db40e
--- /dev/null
+++ b/public/data/place-details/monastery_189.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/189","nsp_id":"189","labels":["en,Saint Parasceve","it,Santa Parasceve"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Parasceve","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.88306,14.79808,10000d","http://www.geonames.org/6534815/maniace.html"],"wgs_lat":37.88306,"wgs_long":14.79808,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.79808 37.88306)"},"nsp_modernComune":"Maniace","nsp_modernProvince":"Catania","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":787,"nsp_seismicCode":"2"},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2019-12-07","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":"Saint Venera","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1178","nsp_minYear":"1178","nsp_maxYear":"1178"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":"Along with Saint Parasceve are included other churches (\". . . et tam omnes Ecclesias que in eodem Casali constructe permanent . . . .\")."},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/189","skos_prefLabel":"Saint Parasceve"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Parasceve","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_19.json b/public/data/place-details/monastery_19.json
new file mode 100644
index 0000000..a370a94
--- /dev/null
+++ b/public/data/place-details/monastery_19.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/19","nsp_id":"19","labels":["en,Saint Cosmas at Gonata","it,San Cosma a Gonata"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Cosmas at Gonata","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.88556,14.08139,10000d","http://www.geonames.org/2525103/castelbuono.html"],"wgs_lat":37.88556,"wgs_long":14.08139,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(14.08139 37.88556)"},"nsp_modernComune":"Castelbuono","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"Yes","wgs_alt":845,"nsp_seismicCode":"2","skos_altLabel":["Ypsigro"," Ruqqah Basili"," Castri Boni"," Gonato"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"Although Scaduto and Giunta place this house in Petralia, our best guess based on toponymic evidence is that it was located in Gonato, near the Masseria Rocca di Gonato. Today, an agriturismo sits on or near the former site of the monastery. We were able to see no evidence of a medieval structure during our visit.","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":"San Cosma di Gonata","nsp_fieldVisit":"2016-07-16","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1142-1143","nsp_minYear":"1142","nsp_maxYear":"1143"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["41","152","730"],"nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/19","skos_prefLabel":"Saint Cosmas at Gonata"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/179","skos_prefLabel":"Holy Trinity and Saint Michael the Archangel of Mileto"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"191","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Cosmas","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_190.json b/public/data/place-details/monastery_190.json
new file mode 100644
index 0000000..09dfa0f
--- /dev/null
+++ b/public/data/place-details/monastery_190.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/190","nsp_id":"190","labels":["en,Saint Julian of Roccella","it,San Giuliano di Roccella"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Julian of Roccella","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.88306,14.79808,10000d","http://www.geonames.org/6534815/maniace.html"],"wgs_lat":37.88306,"wgs_long":14.79808,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.79808 37.88306)"},"nsp_modernComune":"Maniace","nsp_modernProvince":"Catania","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":787,"nsp_seismicCode":"2","skos_altLabel":["Rocella"," Rochella"]},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2019-12-07","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1178","nsp_minYear":"1178","nsp_maxYear":"1178"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/190","skos_prefLabel":"Saint Julian of Roccella"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Julian","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_191.json b/public/data/place-details/monastery_191.json
new file mode 100644
index 0000000..7dc2f2a
--- /dev/null
+++ b/public/data/place-details/monastery_191.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/191","nsp_id":"191","labels":["en,Saint Mary in the Vineyards","it,Santa Maria nelle Vigne"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary in the Vineyards","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.88306,14.79808,10000d","http://www.geonames.org/6534815/maniace.html"],"wgs_lat":37.88306,"wgs_long":14.79808,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.79808 37.88306)"},"nsp_modernComune":"Maniace","nsp_modernProvince":"Catania","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":787,"nsp_seismicCode":"2"},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2019-12-07","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1178","nsp_minYear":"1178","nsp_maxYear":"1178"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/191","skos_prefLabel":"Saint Mary in the Vineyards"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_192.json b/public/data/place-details/monastery_192.json
new file mode 100644
index 0000000..fd7cefe
--- /dev/null
+++ b/public/data/place-details/monastery_192.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/192","nsp_id":"192","labels":["en,Saint John Oliveri","it,San Giovanni in Oliverio"],"nsp_placeType":"monastery","skos_prefLabel":"Saint John Oliveri","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.88306,14.79808,10000d","http://www.geonames.org/6534815/maniace.html"],"wgs_lat":37.88306,"wgs_long":14.79808,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.79808 37.88306)"},"nsp_modernComune":"Maniace","nsp_modernProvince":"Catania","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":787,"nsp_seismicCode":"2"},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2019-12-07","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1178","nsp_minYear":"1178","nsp_maxYear":"1178"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/192","skos_prefLabel":"Saint John Oliveri"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint John","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_193.json b/public/data/place-details/monastery_193.json
new file mode 100644
index 0000000..9a6fb15
--- /dev/null
+++ b/public/data/place-details/monastery_193.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/193","nsp_id":"193","labels":["en,Saint Leo","it,San Leone"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Leo","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.88306,14.79808,10000d","http://www.geonames.org/6534815/maniace.html"],"wgs_lat":37.88306,"wgs_long":14.79808,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.79808 37.88306)"},"nsp_modernComune":"Maniace","nsp_modernProvince":"Catania","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":787,"nsp_seismicCode":"2"},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2019-12-07","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1178","nsp_minYear":"1178","nsp_maxYear":"1178"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/193","skos_prefLabel":"Saint Leo"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Leo","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_194.json b/public/data/place-details/monastery_194.json
new file mode 100644
index 0000000..4ee551b
--- /dev/null
+++ b/public/data/place-details/monastery_194.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/194","nsp_id":"194","labels":["en,Saint Michael","it,San Michele"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Michael","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.88306,14.79808,10000d","http://www.geonames.org/6534815/maniace.html"],"wgs_lat":37.88306,"wgs_long":14.79808,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.79808 37.88306)"},"nsp_modernComune":"Maniace","nsp_modernProvince":"Catania","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":787,"nsp_seismicCode":"2"},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2019-12-07","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1178","nsp_minYear":"1178","nsp_maxYear":"1178"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/194","skos_prefLabel":"Saint Michael"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Michael","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_195.json b/public/data/place-details/monastery_195.json
new file mode 100644
index 0000000..bc4280d
--- /dev/null
+++ b/public/data/place-details/monastery_195.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/195","nsp_id":"195","labels":["en,Saint Nicholas of Alafico in Tortorici","it,San Nicola di Alafico in Tortorici"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Nicholas of Alafico in Tortorici","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.02973,14.82212,10000d","http://www.geonames.org/2522885/tortorici.html"],"wgs_lat":38.02973,"wgs_long":14.82212,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.82212 38.02973)"},"nsp_modernComune":"Tortorici","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":468,"nsp_seismicCode":"2","skos_altLabel":"Turturitio"},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2019-12-07","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":"Malfico","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1178","nsp_minYear":"1178","nsp_maxYear":"1178"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/195","skos_prefLabel":"Saint Nicholas of Alafico in Tortorici"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Nicholas","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_196.json b/public/data/place-details/monastery_196.json
new file mode 100644
index 0000000..d4c54a3
--- /dev/null
+++ b/public/data/place-details/monastery_196.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/196","nsp_id":"196","labels":["en,Saint Catherine","it,Santa Caterina"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Catherine","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.88306,14.79808,10000d","http://www.geonames.org/6534815/maniace.html"],"wgs_lat":37.88306,"wgs_long":14.79808,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.79808 37.88306)"},"nsp_modernComune":"Maniace","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":787,"nsp_seismicCode":"2"},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2019-12-07","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1178","nsp_minYear":"1178","nsp_maxYear":"1178"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/196","skos_prefLabel":"Saint Catherine"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Catherine","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_197.json b/public/data/place-details/monastery_197.json
new file mode 100644
index 0000000..e7f571d
--- /dev/null
+++ b/public/data/place-details/monastery_197.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/197","nsp_id":"197","labels":["en,Saint Nicholas of Castanea","it,San Nicola de Castanea"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Nicholas of Castanea","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.88306,14.79808,10000d","http://www.geonames.org/6534815/maniace.html"],"wgs_lat":37.88306,"wgs_long":14.79808,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.79808 37.88306)"},"nsp_modernComune":"Maniace","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":787,"nsp_seismicCode":"2"},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2019-12-08","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1178","nsp_minYear":"1178","nsp_maxYear":"1178"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/197","skos_prefLabel":"Saint Nicholas of Castanea"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Nicholas","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_198.json b/public/data/place-details/monastery_198.json
new file mode 100644
index 0000000..1a07bb7
--- /dev/null
+++ b/public/data/place-details/monastery_198.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/198","nsp_id":"198","labels":["en,Saint Mary the Newer","it,Santa Maria Nuova"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary the Newer","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.07261,14.70093,10000d","http://www.geonames.org/2523425/san-marco-d-alunzio.html"],"wgs_lat":38.07261,"wgs_long":14.70093,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.70093 38.07261)"},"nsp_modernComune":"San Marco d'Alunzio","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":540,"nsp_seismicCode":"2"},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2019-12-08","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1178","nsp_minYear":"1178","nsp_maxYear":"1178"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""},"nsp_hasLink":[{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/198","skos_prefLabel":"Saint Mary the Newer"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"145","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/198","skos_prefLabel":"Saint Mary the Newer"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}}],"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_199.json b/public/data/place-details/monastery_199.json
new file mode 100644
index 0000000..fcdfb29
--- /dev/null
+++ b/public/data/place-details/monastery_199.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/199","nsp_id":"199","labels":["en,Saint Parasceve","it,Santa Parasceve"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Parasceve","nsp_hasLocation":{"rdfs_seeAlso":["http://www.geonames.org/2523425/san-marco-d-alunzio.html","https://earth.google.com/web/@37.07261,14.70093,10000d"],"wgs_lat":37.07261,"wgs_long":14.70093,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.70093 37.07261)"},"nsp_modernComune":"San Marco d'Alunzio","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":540,"nsp_seismicCode":"2","skos_altLabel":["l'Agathyrnum"," l'Agathinon"," Qal'at-Sciant-Marku"," Castrum Sancti Mauri"," Castrum Marci"]},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2019-12-08","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":"Saint Venera","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1178","nsp_minYear":"1178","nsp_maxYear":"1178"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/199","skos_prefLabel":"Saint Parasceve"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Parasceve","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_2.json b/public/data/place-details/monastery_2.json
new file mode 100644
index 0000000..1c0e348
--- /dev/null
+++ b/public/data/place-details/monastery_2.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/2","nsp_id":"2","labels":["en,Christ the Savior of Patti","it,Santissimo Salvatore di Patti"],"nsp_placeType":"monastery","skos_prefLabel":"Christ the Savior of Patti","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.14736,14.96409,10000d","http://www.geonames.org/2523864/patti.html"],"wgs_lat":38.14736,"wgs_long":14.96409,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.96409 38.14736)"},"nsp_modernComune":"Patti","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":157,"nsp_seismicCode":"2","skos_altLabel":["Baqt.s"," Pactes"]},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2016-07-02","nsp_recordStatus":"Reviewed","nsp_notes":"This monastery was made a bishopric on September 14, 1131 by Antipope Anacletus II; in 1139, it was reduced to its previous status. Its abbot is referred to as electus in Sicily after September 1156, but was not consecrated bishop until late 1166.","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1094","nsp_minYear":"1094","nsp_maxYear":"1094"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"54, 55, 59, 60, 63, 64 n. 4, 65, 77-104, 189 n. 6, 195, 216, 219","nsp_notes":""},"nsp_hasLink":[{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/2","skos_prefLabel":"Christ the Savior of Patti"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"82","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/3","skos_prefLabel":"Saint Mary of Caccamo"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/2","skos_prefLabel":"Christ the Savior of Patti"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"100","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/4","skos_prefLabel":"Holy Cross of Buccheri"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/2","skos_prefLabel":"Christ the Savior of Patti"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"101","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/5","skos_prefLabel":"Saint John of Vizzini"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/2","skos_prefLabel":"Christ the Savior of Patti"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"101","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/6","skos_prefLabel":"Saint Sophia of Vicari"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/2","skos_prefLabel":"Christ the Savior of Patti"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"101-102","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/7","skos_prefLabel":"Saint Mary of Tusa"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/2","skos_prefLabel":"Christ the Savior of Patti"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"102","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/8","skos_prefLabel":"Saint Mary of Mazzarino"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/2","skos_prefLabel":"Christ the Savior of Patti"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"103","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/9","skos_prefLabel":"Saint Mary of Butera"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/2","skos_prefLabel":"Christ the Savior of Patti"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"103","nsp_notes":""}}],"nsp_probableStatus":"Abbey","nsp_probableGender":"Male","nsp_subjectOfDedication":"Christ","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_20.json b/public/data/place-details/monastery_20.json
new file mode 100644
index 0000000..4ca7375
--- /dev/null
+++ b/public/data/place-details/monastery_20.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/20","nsp_id":"20","labels":["en,Saint Elias of Embula","it,Sant'Elia d'Embula"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Elias of Embula","nsp_hasLocation":{"rdfs_seeAlso":["http://www.geonames.org/2522849/troina.html","https://earth.google.com/web/@37.78340,14.60101,10000d"],"wgs_lat":37.7834,"wgs_long":14.60101,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(14.60101 37.78340)"},"nsp_modernComune":"Troina","nsp_modernProvince":"Enna","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"Yes","wgs_alt":1005,"nsp_seismicCode":"2","skos_altLabel":["Traina"," Targinis"," Trayna"," Castrum Troinae"," Castrum Trainae"," Draginat"," Ambula"," Ambola"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-04","nsp_recordStatus":"Reviewed","nsp_notes":"The location of this house is a guess. Troina's official tourism website (\"Enjoy Troina,\" (https://enjoytroina.it/siti-storici-e-archeologici/) claims that the Chiesa di San Silvestro (the structure's current name) was built to host the monks of the cenobio di Sant'Elia. So the medieval monastery needed to be nearby. The earliest date of construction reported by the comune is 1625, though the site has a placard explaining that the current church of San Silvestro was constructed on the foundations of a preexisting Basilian monastery’s small church. Nothing from the Norman period remains outside and though we were unable to access the church’s interior (it was locked at least for the summer). Still, the current landscape is evocative of the vistas that might have been available to the monks. Located in Troina, the first Norman capital in Sicily, Sant’Elia’s high location would have provided it an expansive overview of the surrounding mountains and valleys. Prof. Pope has considered its geological and topographical settings, which are dramatic. The cliff that is adjacent to the structure is sandstone, part of a belt of marine sandstone that has been formed in the Mediterranean Sea in the area between Tunisia and southern Italy. The boulders on the slope suggest that it is unstable and prone to occasional rock falls that can be triggered by earthquakes. However, given that the slope is steep and susceptible to weathering, something less disruptive, such as a heavy storm, could lead to additional falling rock. The stone itself is not old from a geological perspective (less than 20 million years old) and is not well cemented, making it weak and weatherable. The slope in the Norman period was likely similar to the slope we see today. There is a possibility that some excavation may have occurred at the time of construction. With that said, the boulders themselves are likely more recently deposited. The retaining walls that have been constructed by the comune are an attempt to arrest the movement of the soil, which is also susceptible to slope movement. It could be effective for this purpose though it would likely not be able to hold back the boulders on the slopes. Whether the modern church and the apartments in the immediately surrounding area have been affected by soil and/or slope movement was unclear.","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":["Sant'Elia di Ambula"," Sant'Elia di Ebulo"],"nsp_fieldVisit":"2019-07-25","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1094","nsp_minYear":"1094","nsp_maxYear":"1094"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/QCQQZXJ9","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["4, 41, 45","975","87, 250, 356 f., 367, 390, 391","730"],"nsp_notes":["\"The foundation of the great abbey of St. Savior in Lingua Phari at Messina by Roger II in 1131-34, and the organization of most of the Greek houses of Sicily under its archimandrite into a sort of congregation, has generally been regarded as the climax of the Hellenic renaissance in the Norman realm. But it was actually a desperate effort to check the dissolution of Count Roger I's work of restoration.\" White (n. 5) says that he has not been able to explain why certain ones remained independent of the abbey. (45)","According to Pirri, this monastery was not one of the communities that came under St. Savior's jurisdiction.",""]},"nsp_hasLink":{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/20","skos_prefLabel":"Saint Elias of Embula"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"41","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Elias","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":[{"iri":"http://www.normansicily.org/cssi/assessment/22","cssi_description":"Right side portal","cssi_rockType":"sandstone","cssi_assessmentDate":"2019-07-25","cssi_rockCoatingNotationNotes":"Steep cliff above presents a danger","cssi_naturalProcessType":"granular disintegration, exfoliation","cssi_siteSettingScore":5,"cssi_weaknessScore":11,"cssi_largeErosionScore":5,"cssi_smallErosionScore":24,"cssi_rockCoatingsScore":1,"cssi_totalAssessmentScore":46,"cssi_otherConcernsScore":6,"cssi_grandTotalAssessmentScore":52,"cssi_assessedBy":{"foaf_familyName":"Pope","foaf_givenName":"Greg"},"cssi_hasRockCoatingNotation":{"droppings":"N","dustCoatings":"Y","ironFilm":"N","lithobionts":"N","pollution":"?","rockVarnish":"N"}},{"iri":"http://www.normansicily.org/cssi/assessment/23","cssi_description":"Left side portal","cssi_rockType":"sandstone","cssi_assessmentDate":"2019-07-25","cssi_rockCoatingNotationNotes":"Steep cliff above presents a danger","cssi_naturalProcessType":"granular disintegration, exfoliation","cssi_siteSettingScore":7,"cssi_weaknessScore":10,"cssi_largeErosionScore":7,"cssi_smallErosionScore":24,"cssi_rockCoatingsScore":2,"cssi_totalAssessmentScore":50,"cssi_otherConcernsScore":6,"cssi_grandTotalAssessmentScore":56,"cssi_assessedBy":{"foaf_familyName":"Wilson","foaf_givenName":"Max"},"cssi_hasRockCoatingNotation":{"droppings":"Y","dustCoatings":"Y","ironFilm":"N","lithobionts":"N","pollution":"?","rockVarnish":"N"}}]}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_200.json b/public/data/place-details/monastery_200.json
new file mode 100644
index 0000000..ee78635
--- /dev/null
+++ b/public/data/place-details/monastery_200.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/200","nsp_id":"200","labels":["en,Saint Constantine","it,San Costantino"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Constantine","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.06838,14.63600,10000d","http://www.geonames.org/2523347/sant-agata-di-militello.html"],"wgs_lat":38.06838,"wgs_long":14.636,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.63600 38.06838)"},"nsp_modernComune":"Sant'Agata di Militello","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":30,"nsp_seismicCode":"2"},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2019-12-08","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1178","nsp_minYear":"1178","nsp_maxYear":"1178"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/200","skos_prefLabel":"Saint Constantine"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Constantine","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_201.json b/public/data/place-details/monastery_201.json
new file mode 100644
index 0000000..dd4e937
--- /dev/null
+++ b/public/data/place-details/monastery_201.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/201","nsp_id":"201","labels":["en,Saint John","it,San Giovanni"],"nsp_placeType":"monastery","skos_prefLabel":"Saint John","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.06838,14.63600,10000d","http://www.geonames.org/2523347/sant-agata-di-militello.html"],"wgs_lat":38.06838,"wgs_long":14.636,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.63600 38.06838)"},"nsp_modernComune":"Sant'Agata di Militello","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":30,"nsp_seismicCode":"2"},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2019-12-08","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1178","nsp_minYear":"1178","nsp_maxYear":"1178"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/201","skos_prefLabel":"Saint John"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint John","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_202.json b/public/data/place-details/monastery_202.json
new file mode 100644
index 0000000..777b831
--- /dev/null
+++ b/public/data/place-details/monastery_202.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/202","nsp_id":"202","labels":["en,Saint Nicholas","it,San Nicola"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Nicholas","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.06838,14.63600,10000d","http://www.geonames.org/2523347/sant-agata-di-militello.html"],"wgs_lat":38.06838,"wgs_long":14.636,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.63600 38.06838)"},"nsp_modernComune":"Sant'Agata di Militello","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":30,"nsp_seismicCode":"2"},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2019-12-08","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1178","nsp_minYear":"1178","nsp_maxYear":"1178"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/202","skos_prefLabel":"Saint Nicholas"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Nicholas","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_203.json b/public/data/place-details/monastery_203.json
new file mode 100644
index 0000000..1bed486
--- /dev/null
+++ b/public/data/place-details/monastery_203.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/203","nsp_id":"203","labels":["en,Saint Mary","it,Santa Maria"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.06838,14.63600,10000d","http://www.geonames.org/2523347/sant-agata-di-militello.html"],"wgs_lat":38.06838,"wgs_long":14.636,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.63600 38.06838)"},"nsp_modernComune":"Sant'Agata di Militello","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":30,"nsp_seismicCode":"2"},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2019-12-08","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1178","nsp_minYear":"1178","nsp_maxYear":"1178"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/203","skos_prefLabel":"Saint Mary"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_204.json b/public/data/place-details/monastery_204.json
new file mode 100644
index 0000000..e35b67e
--- /dev/null
+++ b/public/data/place-details/monastery_204.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/204","nsp_id":"204","labels":["en,Saint Bartholomew","it,San Bartolomeo"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Bartholomew","nsp_hasLocation":{"rdfs_seeAlso":["http://www.geonames.org/2523487/san-fratello.html","https://earth.google.com/web/@38.01556,14.59818,10000d"],"wgs_lat":38.01556,"wgs_long":14.59818,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.59818 38.01556)"},"nsp_modernComune":"San Fratello","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":675,"nsp_seismicCode":"2"},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2019-12-08","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1178","nsp_minYear":"1178","nsp_maxYear":"1178"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/204","skos_prefLabel":"Saint Bartholomew"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Bartholomew","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_205.json b/public/data/place-details/monastery_205.json
new file mode 100644
index 0000000..2869483
--- /dev/null
+++ b/public/data/place-details/monastery_205.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/205","nsp_id":"205","labels":["en,Saint Theodore","it,San Teodoro"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Theodore","nsp_hasLocation":{"rdfs_seeAlso":["http://www.geonames.org/2523487/san-fratello.html","https://earth.google.com/web/@38.01556,14.59818,10000d"],"wgs_lat":38.01556,"wgs_long":14.59818,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.59818 38.01556)"},"nsp_modernComune":"San Fratello","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":675,"nsp_seismicCode":"2"},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2019-12-08","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1178","nsp_minYear":"1178","nsp_maxYear":"1178"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/205","skos_prefLabel":"Saint Theodore"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Theodore","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_206.json b/public/data/place-details/monastery_206.json
new file mode 100644
index 0000000..2c2d1c1
--- /dev/null
+++ b/public/data/place-details/monastery_206.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/206","nsp_id":"206","labels":["en,Saint James of the Hospital near the Sea","it,San Giacomo dell’Ospedale Vicino al Mare"],"nsp_placeType":"monastery","skos_prefLabel":"Saint James of the Hospital near the Sea","nsp_hasLocation":{"rdfs_seeAlso":["http://www.geonames.org/2523487/san-fratello.html","https://earth.google.com/web/@38.01566,14.59818,10000d"],"wgs_lat":38.01566,"wgs_long":14.59818,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.59818 38.01566)"},"nsp_modernComune":"San Fratello","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":675,"nsp_seismicCode":"2"},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2019-12-08","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1178","nsp_minYear":"1178","nsp_maxYear":"1178"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/206","skos_prefLabel":"Saint James of the Hospital near the Sea"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint James","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_207.json b/public/data/place-details/monastery_207.json
new file mode 100644
index 0000000..f476fdb
--- /dev/null
+++ b/public/data/place-details/monastery_207.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/207","nsp_id":"207","labels":["en,Saint Nicholas","it,San Nicola"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Nicholas","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.02381,14.44142,10000d","http://www.geonames.org/2525344/caronia.html"],"wgs_lat":38.02381,"wgs_long":14.44142,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.44142 38.02381)"},"nsp_modernComune":"Caronia","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":304,"nsp_seismicCode":"2"},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2019-12-08","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1178","nsp_minYear":"1178","nsp_maxYear":"1178"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"148","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/207","skos_prefLabel":"Saint Nicholas"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Nicholas","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_208.json b/public/data/place-details/monastery_208.json
new file mode 100644
index 0000000..c7e00df
--- /dev/null
+++ b/public/data/place-details/monastery_208.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/208","nsp_id":"208","labels":["en,Saint Mary","it,Santa Maria"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.02381,14.44142,10000d","http://www.geonames.org/2525344/caronia.html"],"wgs_lat":38.02381,"wgs_long":14.44142,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.44142 38.02381)"},"nsp_modernComune":"Caronia","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":304,"nsp_seismicCode":"2"},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2019-12-08","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1178","nsp_minYear":"1178","nsp_maxYear":"1178"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"148","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/208","skos_prefLabel":"Saint Mary"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_209.json b/public/data/place-details/monastery_209.json
new file mode 100644
index 0000000..f4fa11f
--- /dev/null
+++ b/public/data/place-details/monastery_209.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/209","nsp_id":"209","labels":["en,Saint Agatha of the Lighthouse","it,Sant'Agata de Faro"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Agatha of the Lighthouse","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.19394,15.55256,10000d","http://www.geonames.org/2524170/messina.html"],"wgs_lat":38.19394,"wgs_long":15.55256,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(15.55256 38.19394)"},"nsp_modernComune":"Messina","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":3,"nsp_seismicCode":"1"},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2019-12-08","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1178","nsp_minYear":"1178","nsp_maxYear":"1178"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"148","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/209","skos_prefLabel":"Saint Agatha of the Lighthouse"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Agatha","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_21.json b/public/data/place-details/monastery_21.json
new file mode 100644
index 0000000..ed083fd
--- /dev/null
+++ b/public/data/place-details/monastery_21.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/21","nsp_id":"21","labels":["en,Saint Elias of Scala Oliverii","it,Sant'Elia di Scala Oliveri"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Elias of Scala Oliverii","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.12515,15.06068,10000d","http://www.geonames.org/2523972/oliveri.html"],"wgs_lat":38.12515,"wgs_long":15.06068,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(15.06068 38.12515)"},"nsp_modernComune":"Oliveri","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":2,"nsp_seismicCode":"2","skos_altLabel":["Marsa L.biri"," Oliverium"," Libiri"," Limiri"," Lu Liveri"," Castrum Oliverii"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-03","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":["Sant'Elia di Burraca"," Sant'Elia de Burracha"],"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1131","nsp_minYear":"1131","nsp_maxYear":"1131"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/QCQQZXJ9","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["41","45","975","145-146","730"],"nsp_notes":["\"The foundation of the great abbey of St. Savior in Lingua Phari at Messina by Roger II in 1131-34, and the organization of most of the Greek houses of Sicily under its archimandrite into a sort of congregation, has generally been regarded as the climax of the Hellenic renaissance in the Norman realm. But it was actually a desperate effort to check the dissolution of Count Roger I's work of restoration.\" White (n. 5) says that he has not been able to explain why certain ones remained independent of the abbey. ","According to Pirri, this monastery was one of the communities that came under St. Savior's jurisdiction.","Citing Vaticanus Latinus 8201, fol. 99, Scaduto places the foundation of this monastery at 1110, making its date 21 years earlier than White's earliest record.",""]},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/21","skos_prefLabel":"Saint Elias of Scala Oliverii"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/68","skos_prefLabel":"Christ the Savior in Lingua Phari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/QCQQZXJ9","nsp_pages":"975","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Elias","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_210.json b/public/data/place-details/monastery_210.json
new file mode 100644
index 0000000..b30d5ad
--- /dev/null
+++ b/public/data/place-details/monastery_210.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/210","nsp_id":"210","labels":["en,Saint Mary in the Valley of Jehosaphat","it,Santa Maria delle Valle di Giosafat"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary in the Valley of Jehosaphat","nsp_hasLocation":{"rdfs_seeAlso":["http://www.geonames.org/281184/jerusalem.html","https://earth.google.com/web/@31.78000,35.23972,10000d"],"wgs_lat":31.78,"wgs_long":35.23972,"nsp_coordinateSource":"Google Earth","geo_hasGeometry":{"geo_asWKT":"Point(35.23972 31.78000)"},"nsp_modernComune":"NOT SET","nsp_modernProvince":"NOT SET","nsp_historicalProvince":"NOT SET","nsp_locationHighLoc":"Yes","wgs_alt":705},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2019-12-08","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1112","nsp_minYear":"1112","nsp_maxYear":"1112"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"68-69, 204-214, 233","nsp_notes":""},"nsp_hasLink":[{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#26410592","skos_prefLabel":"Godfrey of Boulogne"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/210","skos_prefLabel":"Saint Mary in the Valley of Jehosaphat"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"207","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/121","skos_prefLabel":"Saint Anne of Gala"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/210","skos_prefLabel":"Saint Mary in the Valley of Jehosaphat"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"210","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/122","skos_prefLabel":"Saint Mary of Jehosaphat"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/210","skos_prefLabel":"Saint Mary in the Valley of Jehosaphat"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"210","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/123","skos_prefLabel":"Saint Mary Magdalene of Jehosaphat"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/210","skos_prefLabel":"Saint Mary in the Valley of Jehosaphat"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"211","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/124","skos_prefLabel":"Saint Mary of Calatahameth"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/210","skos_prefLabel":"Saint Mary in the Valley of Jehosaphat"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"213","nsp_notes":""}}],"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_211.json b/public/data/place-details/monastery_211.json
new file mode 100644
index 0000000..33b4476
--- /dev/null
+++ b/public/data/place-details/monastery_211.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/211","nsp_id":"211","labels":["en,Saint Mary of the Latins","it,Santa Maria dei Latini"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of the Latins","nsp_hasLocation":{"rdfs_seeAlso":["http://www.geonames.org/281184/jerusalem.html","https://earth.google.com/web/@31.77786,35.23032,10000d"],"wgs_lat":31.77786,"wgs_long":35.23032,"nsp_coordinateSource":"Google Earth","geo_hasGeometry":{"geo_asWKT":"Point(35.23032 31.77786)"},"nsp_modernComune":"NOT SET","nsp_modernProvince":"NOT SET","nsp_historicalProvince":"NOT SET","nsp_locationHighLoc":"Yes","wgs_alt":705},"nsp_updatedOn":"2020-08-06","nsp_createdOn":"2019-12-08","nsp_recordStatus":"Reviewed","nsp_notes":"This community was established before 1071.","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"68, 92, 214-228, 233, 254","nsp_notes":""},"nsp_hasLink":[{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/125","skos_prefLabel":"Saint Philip of Agira"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/211","skos_prefLabel":"Saint Mary of the Latins"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"216","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/126","skos_prefLabel":"Saint Mary of the Latins of Polizzi"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/211","skos_prefLabel":"Saint Mary of the Latins"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"224","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/127","skos_prefLabel":"Saint Philip of Capizzi"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/211","skos_prefLabel":"Saint Mary of the Latins"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"225","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/128","skos_prefLabel":"Holy Cross of Rasacambri"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/211","skos_prefLabel":"Saint Mary of the Latins"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"226","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/129","skos_prefLabel":"Saint Mary of the Latins"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/211","skos_prefLabel":"Saint Mary of the Latins"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"227","nsp_notes":""}}],"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_212.json b/public/data/place-details/monastery_212.json
new file mode 100644
index 0000000..8ec7343
--- /dev/null
+++ b/public/data/place-details/monastery_212.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/212","nsp_id":"212","labels":["en,Saint Mary Magdalene","it,Santa Maria Maddalena"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary Magdalene","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@34.43352,35.84415,10000d","http://www.geonames.org/266826/tripoli.html"],"wgs_lat":34.43352,"wgs_long":35.84415,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(35.84415 34.43352)"},"nsp_modernComune":"NOT SET","nsp_modernProvince":"NOT SET","nsp_historicalProvince":"NOT SET","nsp_locationHighLoc":"No","wgs_alt":51},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2019-12-08","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"166, 177","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Colonized by","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/96","skos_prefLabel":"Saint Angelo of Prizzi"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/212","skos_prefLabel":"Saint Mary Magdalene"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"166","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"UNKNOWN","nsp_subjectOfDedication":"Saint Mary Magdalene","nsp_monasticIdentity":"Cistercians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_213.json b/public/data/place-details/monastery_213.json
new file mode 100644
index 0000000..4d4c654
--- /dev/null
+++ b/public/data/place-details/monastery_213.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/213","nsp_id":"213","labels":["en,Fossanova","it,Fossanova"],"nsp_placeType":"monastery","skos_prefLabel":"Fossanova","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@41.43810,13.19580,10000d","http://www.geonames.org/8956167/fossanova.html"],"wgs_lat":41.4381,"wgs_long":13.1958,"nsp_coordinateSource":"Google Earth","geo_hasGeometry":{"geo_asWKT":"Point(13.19580 41.43810)"},"nsp_modernComune":"NOT SET","nsp_modernProvince":"NOT SET","nsp_historicalProvince":"NOT SET","nsp_locationHighLoc":"Yes","wgs_alt":25},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2019-12-08","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"56, 165, 166","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/96","skos_prefLabel":"Saint Angelo of Prizzi"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/213","skos_prefLabel":"Fossanova"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"166","nsp_notes":""}},"nsp_probableStatus":"Abbey","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Cistercians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_214.json b/public/data/place-details/monastery_214.json
new file mode 100644
index 0000000..035509c
--- /dev/null
+++ b/public/data/place-details/monastery_214.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/214","nsp_id":"214","labels":["en,Saint Steven of the Forest","it,Santo Stefano del Bosco"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Steven of the Forest","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.56604,16.31813,10000d","http://www.geonames.org/2523146/serra-san-bruno.html"],"wgs_lat":38.56604,"wgs_long":16.31813,"nsp_coordinateSource":"Google Earth","geo_hasGeometry":{"geo_asWKT":"Point(16.31813 38.56604)"},"nsp_modernComune":"NOT SET","nsp_modernProvince":"NOT SET","nsp_historicalProvince":"NOT SET","nsp_locationHighLoc":"Yes","wgs_alt":816},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2019-12-08","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"49, 56, 167, 179, 263, 272","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/97","skos_prefLabel":"Saint Christopher of Prizzi"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/214","skos_prefLabel":"Saint Steven of the Forest"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"167","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Cistercians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_215.json b/public/data/place-details/monastery_215.json
new file mode 100644
index 0000000..28c29a7
--- /dev/null
+++ b/public/data/place-details/monastery_215.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/215","nsp_id":"215","labels":["en,Sambucina","it,Sambucina"],"nsp_placeType":"monastery","skos_prefLabel":"Sambucina","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@39.44539,16.32054,10000d","http://www.geonames.org/2524352/luzzi.html"],"wgs_lat":39.44539,"wgs_long":16.32054,"nsp_coordinateSource":"Google Earth","geo_hasGeometry":{"geo_asWKT":"Point(16.32054 39.44539)"},"nsp_modernComune":"NOT SET","nsp_modernProvince":"NOT SET","nsp_historicalProvince":"NOT SET","nsp_locationHighLoc":"Yes","wgs_alt":854},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2019-12-08","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"56, 169, 182","nsp_notes":""},"nsp_hasLink":[{"nsp_role":"Colonized by","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/98","skos_prefLabel":"Holy Spirit of Palermo"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/215","skos_prefLabel":"Sambucina"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"169","nsp_notes":""}},{"nsp_role":"Colonized by","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/98","skos_prefLabel":"Holy Spirit of Palermo"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/215","skos_prefLabel":"Sambucina"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"549","nsp_notes":""}},{"nsp_role":"Colonized by","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/98","skos_prefLabel":"Holy Spirit of Palermo"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/215","skos_prefLabel":"Sambucina"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/UV39NII9","nsp_pages":"169","nsp_notes":""}},{"nsp_role":"Colonized by","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/98","skos_prefLabel":"Holy Spirit of Palermo"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/215","skos_prefLabel":"Sambucina"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/UV39NII9","nsp_pages":"549","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/102","skos_prefLabel":"Saint Mary of Novara"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/215","skos_prefLabel":"Sambucina"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"182","nsp_notes":""}}],"nsp_probableStatus":"Abbey","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Cistercians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_216.json b/public/data/place-details/monastery_216.json
new file mode 100644
index 0000000..cc1ab17
--- /dev/null
+++ b/public/data/place-details/monastery_216.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/216","nsp_id":"216","labels":["en,Saint John of Rocella","it,San Giovanni di Rocella"],"nsp_placeType":"monastery","skos_prefLabel":"Saint John of Rocella","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.99270,13.87648,10000d","http://www.geonames.org/2525423/campofelice-di-roccella.html"],"wgs_lat":37.9927,"wgs_long":13.87648,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(13.87648 37.99270)"},"nsp_modernComune":"Campofelice di Roccella","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"No","wgs_alt":2,"nsp_seismicCode":"2"},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2019-12-08","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":"Roccella","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1098","nsp_minYear":"1098","nsp_maxYear":"1098"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"191, 199, 253","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/216","skos_prefLabel":"Saint John of Rocella"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/179","skos_prefLabel":"Holy Trinity and Saint Michael the Archangel of Mileto"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"191","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"UNKNOWN","nsp_subjectOfDedication":"Saint John","nsp_monasticIdentity":"UNKNOWN","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_217.json b/public/data/place-details/monastery_217.json
new file mode 100644
index 0000000..d83fa8e
--- /dev/null
+++ b/public/data/place-details/monastery_217.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/217","nsp_id":"217","labels":["en,Balamand","it,Bellus Mons"],"nsp_placeType":"monastery","skos_prefLabel":"Balamand","nsp_hasLocation":{"rdfs_seeAlso":["http://www.geonames.org/266826/tripoli.html","https://earth.google.com/web/@34.36830,35.77940,10000d"],"wgs_lat":34.3683,"wgs_long":35.7794,"nsp_coordinateSource":"Google Earth","geo_hasGeometry":{"geo_asWKT":"Point(35.77940 34.36830)"},"nsp_modernComune":"NOT SET","nsp_modernProvince":"NOT SET","nsp_historicalProvince":"NOT SET","nsp_locationHighLoc":"Yes","wgs_alt":297},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2019-12-08","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1157","nsp_minYear":"1157","nsp_maxYear":"1157"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"176, 177, 289","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Colonized by","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/99","skos_prefLabel":"Holy Trinity of Refesio"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/217","skos_prefLabel":"Balamand"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"176-177","nsp_notes":""}},"nsp_probableStatus":"Abbey","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Cistercians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_218.json b/public/data/place-details/monastery_218.json
new file mode 100644
index 0000000..a130afb
--- /dev/null
+++ b/public/data/place-details/monastery_218.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/218","nsp_id":"218","labels":["en,Holy Trinity at La Cava","it,Santissima Trinità della Cava"],"nsp_placeType":"monastery","skos_prefLabel":"Holy Trinity at La Cava","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@40.68194,14.69111,10000d","http://www.geonames.org/3179337/cava-de-tirreni.html"],"wgs_lat":40.68194,"wgs_long":14.69111,"nsp_coordinateSource":"Google Earth","geo_hasGeometry":{"geo_asWKT":"Point(14.69111 40.68194)"},"nsp_modernComune":"NOT SET","nsp_modernProvince":"NOT SET","nsp_historicalProvince":"NOT SET","nsp_locationHighLoc":"Yes","wgs_alt":347},"nsp_updatedOn":"2019-12-09","nsp_createdOn":"2019-12-09","nsp_recordStatus":"Reviewed","nsp_notes":"Alferius began his monastic life, the seed of this foundation, c. 1020, but La Cava probably didn't become a fully-functioning monastery until the third quarter of the eleventh century. See Graham Loud, The Latin Church in Norman Italy (Cambridge: Cambridge University Press, 2007), 53.","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"40, 57, 60, 69, 72, 81 n. 4, 115 n. 6, 135-136, 141-142 n. 10, 144, 216","nsp_notes":""},"nsp_hasLink":[{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#58742166","skos_prefLabel":"Alferius"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/218","skos_prefLabel":"Holy Trinity at La Cava"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/ZTI6IKNV","nsp_pages":"53","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/55","skos_prefLabel":"Saint Nicholas of Paternò"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/218","skos_prefLabel":"Holy Trinity at La Cava"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"136","nsp_notes":""}},{"nsp_role":"Colonized by","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/219","skos_prefLabel":"Saint Michael the Archangel"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/218","skos_prefLabel":"Holy Trinity at La Cava"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"57","nsp_notes":""}},{"nsp_role":"Colonized by","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/85","skos_prefLabel":"Saint Mary Nuova"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/218","skos_prefLabel":"Holy Trinity at La Cava"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"144","nsp_notes":""}}],"nsp_probableStatus":"Abbey","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Holy Trinity","nsp_monasticIdentity":"Cluniacs","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_219.json b/public/data/place-details/monastery_219.json
new file mode 100644
index 0000000..a6d3e51
--- /dev/null
+++ b/public/data/place-details/monastery_219.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/219","nsp_id":"219","labels":["en,Saint Michael the Archangel","it,San Michele Arcangelo"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Michael the Archangel","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.80064,14.10813,10000d","http://www.geonames.org/2523822/petralia-soprana.html"],"wgs_lat":37.80064,"wgs_long":14.10813,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.10813 37.80064)"},"nsp_modernComune":"Petralia Soprana","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"No","wgs_alt":1147,"nsp_seismicCode":"2"},"nsp_updatedOn":"2019-12-09","nsp_createdOn":"2019-12-09","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1131","nsp_minYear":"1131","nsp_maxYear":"1131"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"54, 57, 136, 136","nsp_notes":""},"nsp_hasLink":[{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#24788274","skos_prefLabel":"Rudolf of Belbaco"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/219","skos_prefLabel":"Saint Michael the Archangel"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"135","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/219","skos_prefLabel":"Saint Michael the Archangel"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/144","skos_prefLabel":"Saint Mary of Cava"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"136","nsp_notes":""}},{"nsp_role":"Colonized by","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/219","skos_prefLabel":"Saint Michael the Archangel"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/218","skos_prefLabel":"Holy Trinity at La Cava"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"57","nsp_notes":""}}],"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Michael the Archangel","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_22.json b/public/data/place-details/monastery_22.json
new file mode 100644
index 0000000..c4124ba
--- /dev/null
+++ b/public/data/place-details/monastery_22.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/22","nsp_id":"22","labels":["en,Saint Felix of San Marco","it,San Felice di San Marco"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Felix of San Marco","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.07261,14.70093,10000d","http://www.geonames.org/2523425/san-marco-d-alunzio.html"],"wgs_lat":38.07261,"wgs_long":14.70093,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.70093 38.07261)"},"nsp_modernComune":"San Marco d'Alunzio","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":540,"nsp_seismicCode":"2","skos_altLabel":["l'Agathyrnum"," l'Agathinon"," Qal'at-Sciant-Marku"," Castrum Sancti Mauri"," Castrum Marci"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-07","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1131","nsp_minYear":"1131","nsp_maxYear":"1131"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["41","102, 400","730"],"nsp_notes":""},"nsp_hasLink":[{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/79","skos_prefLabel":"Saint Leo of Pannachio"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/22","skos_prefLabel":"Saint Felix of San Marco"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"117","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/81","skos_prefLabel":"Saint Mary of Robore Grosso"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/22","skos_prefLabel":"Saint Felix of San Marco"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"121","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/82","skos_prefLabel":"Saint Mary of Licodia"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/22","skos_prefLabel":"Saint Felix of San Marco"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"121","nsp_notes":""}}],"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Felix","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_220.json b/public/data/place-details/monastery_220.json
new file mode 100644
index 0000000..f035b91
--- /dev/null
+++ b/public/data/place-details/monastery_220.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/220","nsp_id":"220","labels":["en,Saint Mary of Monte Maggiore","it,Santa Maria di Monte Maggiore"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of Monte Maggiore","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.84645,13.76126,10000d","http://www.geonames.org/6537748/montemaggiore-belsito.html"],"wgs_lat":37.84645,"wgs_long":13.76126,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(13.76126 37.84645)"},"nsp_modernComune":"Montemaggiore Belsito","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"No","wgs_alt":537,"nsp_seismicCode":"2"},"nsp_updatedOn":"2019-12-09","nsp_createdOn":"2019-12-09","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1157","nsp_minYear":"1157","nsp_maxYear":"1157"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"151, 195","nsp_notes":"This was likely a monastic establishment and one of some importance. Rainald of Tusa was a royal justiciar and Bona, the mother of both Archbishop Walter Offamil of Palermo and Bishop Bartholomew of Agrigento, donated lands near Caccamo for its support. (151)"},"nsp_hasLink":[{"nsp_role":"Secular Lord","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#39808615","skos_prefLabel":"Rainald of Tusa"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/220","skos_prefLabel":"Saint Mary of Monte Maggiore"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"151","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/220","skos_prefLabel":"Saint Mary of Monte Maggiore"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/164","skos_prefLabel":"Cluny"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"151","nsp_notes":""}}],"nsp_probableStatus":"Priory","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Cluniacs","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_221.json b/public/data/place-details/monastery_221.json
new file mode 100644
index 0000000..cb19866
--- /dev/null
+++ b/public/data/place-details/monastery_221.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/221","nsp_id":"221","labels":["en,Knights of the Hospital of Saint John at Jerusalem","it,Cavalieri Ospitalieri di San Giovanni in Gerusalemme"],"nsp_placeType":"monastery","skos_prefLabel":"Knights of the Hospital of Saint John at Jerusalem","nsp_hasLocation":{"rdfs_seeAlso":["http://www.geonames.org/281184/jerusalem.html","https://earth.google.com/web/@31.76904,35.21633,10000d"],"wgs_lat":31.76904,"wgs_long":35.21633,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(35.21633 31.76904)"},"nsp_modernComune":"NOT SET","nsp_modernProvince":"NOT SET","nsp_historicalProvince":"NOT SET","nsp_locationHighLoc":"No","wgs_alt":786},"nsp_updatedOn":"2019-12-09","nsp_createdOn":"2019-12-09","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"235-239","nsp_notes":""},"nsp_hasLink":[{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/137","skos_prefLabel":"Hospital of Saint John of Jerusalem"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/221","skos_prefLabel":"Knights of the Hospital of Saint John at Jerusalem"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"235","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/138","skos_prefLabel":"Hospital of All Saints of Palermo"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/221","skos_prefLabel":"Knights of the Hospital of Saint John at Jerusalem"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"239","nsp_notes":""}}],"nsp_probableStatus":"Hospital","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint John","nsp_monasticIdentity":"Knights of the Hospital of Saint John of Jerusalem","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_222.json b/public/data/place-details/monastery_222.json
new file mode 100644
index 0000000..8d4e4c0
--- /dev/null
+++ b/public/data/place-details/monastery_222.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/222","nsp_id":"222","labels":["en,Hospital of Saint Lazarus of Jerusalem","it,Ospitale di San Lazzaro di Gerusalemme"],"nsp_placeType":"monastery","skos_prefLabel":"Hospital of Saint Lazarus of Jerusalem","nsp_hasLocation":{"rdfs_seeAlso":["http://www.geonames.org/281184/jerusalem.html","https://earth.google.com/web/@31.76904,35.21633,10000d"],"wgs_lat":31.76904,"wgs_long":35.21633,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(35.21633 31.76904)"},"nsp_modernComune":"NOT SET","nsp_modernProvince":"NOT SET","nsp_historicalProvince":"NOT SET","nsp_locationHighLoc":"No","wgs_alt":786},"nsp_updatedOn":"2019-12-09","nsp_createdOn":"2019-12-09","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"239-240","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/139","skos_prefLabel":"Saint Catherine"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/222","skos_prefLabel":"Hospital of Saint Lazarus of Jerusalem"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"239","nsp_notes":""}},"nsp_probableStatus":"Hospital","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Lazarus","nsp_monasticIdentity":"Hospital of Saint Lazarus of Jerusalem","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_223.json b/public/data/place-details/monastery_223.json
new file mode 100644
index 0000000..d702b2e
--- /dev/null
+++ b/public/data/place-details/monastery_223.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/223","nsp_id":"223","labels":["en,Knights Templar","it,Cavalieri Templari"],"nsp_placeType":"monastery","skos_prefLabel":"Knights Templar","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@31.77797,35.23580,10000d","http://www.geonames.org/11258705/temple-mount.html"],"wgs_lat":31.77797,"wgs_long":35.2358,"nsp_coordinateSource":"Google Earth","geo_hasGeometry":{"geo_asWKT":"Point(35.23580 31.77797)"},"nsp_modernComune":"NOT SET","nsp_modernProvince":"NOT SET","nsp_historicalProvince":"NOT SET","nsp_locationHighLoc":"Yes","wgs_alt":743},"nsp_updatedOn":"2019-12-09","nsp_createdOn":"2019-12-09","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"234-235","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/136","skos_prefLabel":"Unknown"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/223","skos_prefLabel":"Knights Templar"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"234-235","nsp_notes":""}},"nsp_probableStatus":"Temple","nsp_probableGender":"Male","nsp_subjectOfDedication":"UNKNOWN","nsp_monasticIdentity":"Knights Templar","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_224.json b/public/data/place-details/monastery_224.json
new file mode 100644
index 0000000..882541f
--- /dev/null
+++ b/public/data/place-details/monastery_224.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/224","nsp_id":"224","labels":["en,Saint Evroul-en-Ouche","it,Saint-Evroul-en-Ouche"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Evroul-en-Ouche","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@48.790556,0.463889,10000d","http://www.geonames.org/2980176/saint-evroult-notre-dame-du-bois.html"],"wgs_lat":48.790558,"wgs_long":0.463889,"nsp_coordinateSource":"Google Earth","geo_hasGeometry":{"geo_asWKT":"Point(0.463889 48.790556)"},"nsp_modernComune":"NOT SET","nsp_modernProvince":"NOT SET","nsp_historicalProvince":"NOT SET","nsp_locationHighLoc":"Yes","wgs_alt":264},"nsp_updatedOn":"2020-01-24","nsp_createdOn":"2020-01-24","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":"Saint-Évroult-en-Ouche","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{},"nsp_hasReference":{},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"Abbey","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Ebrulf","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_23.json b/public/data/place-details/monastery_23.json
new file mode 100644
index 0000000..209eba7
--- /dev/null
+++ b/public/data/place-details/monastery_23.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/23","nsp_id":"23","labels":["en,Saint George of the Kemonia","it,San Giorgio in Kemonia"],"nsp_placeType":"monastery","skos_prefLabel":"Saint George of the Kemonia","nsp_hasLocation":{"rdfs_seeAlso":["http://www.geonames.org/2523920/palermo.html","https://earth.google.com/web/@38.10926,13.35507,10000d"],"wgs_lat":38.10926,"wgs_long":13.35507,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(13.35507 38.10926)"},"nsp_modernComune":"Palermo","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"Yes","wgs_alt":26,"nsp_seismicCode":"2","skos_altLabel":["Bn.rm"," Balarm"," Balarmuh"," Bân.rm"," Panormus"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-02","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_fieldVisit":"2015-08-15","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1148","nsp_minYear":"1148","nsp_maxYear":"1148"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["41","140","729"],"nsp_notes":["White suggests that this monastery may have been founded in 1172 by Robert Guiscard.","Scaduto records the earliest document at 1140, 8 years earlier than White.",""]},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint George","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_24.json b/public/data/place-details/monastery_24.json
new file mode 100644
index 0000000..cea774c
--- /dev/null
+++ b/public/data/place-details/monastery_24.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/24","nsp_id":"24","labels":["en,Saint George of Triocala","it,San Giorgio di Triocala"],"nsp_placeType":"monastery","skos_prefLabel":"Saint George of Triocala","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.57543,13.21632,10000d","http://www.geonames.org/2525451/caltabellotta.html"],"wgs_lat":37.57543,"wgs_long":13.21632,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(13.21632 37.57543)"},"nsp_modernComune":"Caltabellotta","nsp_modernProvince":"Agrigento","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"No","wgs_alt":949,"nsp_seismicCode":"2","skos_altLabel":"Troccolum"},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2019-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1098","nsp_minYear":"1098","nsp_maxYear":"1098"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6","http://zotero.org/groups/2199947/items/EYD3FKFC"],"nsp_pages":["41, 45-46 n. 6, 59, 71 n. 2","126, 405, 420","729","n. 241"],"nsp_notes":["","Scaduto records the earliest document at 1097, a year earlier than White."]},"nsp_hasLink":{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/24","skos_prefLabel":"Saint George of Triocala"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"41","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint George","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_25.json b/public/data/place-details/monastery_25.json
new file mode 100644
index 0000000..168976e
--- /dev/null
+++ b/public/data/place-details/monastery_25.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/25","nsp_id":"25","labels":["en,Saint George of Agrigento","it,San Giorgio di Agrigento"],"nsp_placeType":"monastery","skos_prefLabel":"Saint George of Agrigento","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.31065,13.57661,10000d","http://www.geonames.org/2525764/agrigento.html"],"wgs_lat":37.31065,"wgs_long":13.57661,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(13.57661 37.31065)"},"nsp_modernComune":"Agrigento","nsp_modernProvince":"Agrigento","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"No","wgs_alt":230,"nsp_seismicCode":"2","skos_altLabel":"Girgenti"},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["41","152","729"],"nsp_notes":["","The monastery is mislabeled as San Gregorio. The earliest document date provided is 1090."]},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint George","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_26.json b/public/data/place-details/monastery_26.json
new file mode 100644
index 0000000..cc67d26
--- /dev/null
+++ b/public/data/place-details/monastery_26.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/26","nsp_id":"26","labels":["en,Saint Gregory of Gypso","it,San Gregorio di Gypso"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Gregory of Gypso","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.23531,15.46865,10000d","http://www.geonames.org/2524634/gesso.html"],"wgs_lat":38.23531,"wgs_long":15.46865,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(15.46865 38.23531)"},"nsp_modernComune":"Gesso","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":265,"nsp_seismicCode":"1","skos_altLabel":["Gibiso"," Gesso"," Ibiso"," Gysa"," Gypsus"," Ysa"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-02","nsp_recordStatus":"Reviewed","nsp_notes":"Luigi Santagati, Viabilità e topografia della Sicilia antica, vol. 2 (Caltanissetta: Edizioni Lussografica, 2013), 93 (s.v. \"Gesso\"), places Gypso 9 kilometers (approximately 5.5 miles) northwest of Messina.","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/QCQQZXJ9","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["41, 45","975","93, 187, 357","730"],"nsp_notes":["\"The foundation of the great abbey of St. Savior in Lingua Phari at Messina by Roger II in 1131-34, and the organization of most of the Greek houses of Sicily under its archimandrite into a sort of congregation, has generally been regarded as the climax of the Hellenic renaissance in the Norman realm. But it was actually a desperate effort to check the dissolution of Count Roger I's work of restoration.\" White (n. 5) says that he has not been able to explain why certain ones remained independent of the abbey. (45)","According to Pirri, this monastery was not one of the communities that came under St. Savior's jurisdiction.","","Whereas White asks if the date of earliest documentation is sometime before 1101 (p. 41), Giunta proposes the more exact date of 1063 (p. 730). Also lists as a source Cyril Korolevskij, Basiliens italo-grecs et espagnoles, Dictionnaire d’histoire et de géographie ecclésiastiques, vol. VI (Paris: 1932), cols. 1180-1236 (at 1199). See White's discussion of the limitations of this source. (40)"]},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Gregory","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_27.json b/public/data/place-details/monastery_27.json
new file mode 100644
index 0000000..b3fac14
--- /dev/null
+++ b/public/data/place-details/monastery_27.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/27","nsp_id":"27","labels":["en,Saint Onufrius of Calatabiet","it,Sant'Onofrio di Calatabiet"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Onufrius of Calatabiet","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.82049,15.23069,10000d","http://www.geonames.org/2525459/calatabiano.html"],"wgs_lat":37.82049,"wgs_long":15.23069,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(15.23069 37.82049)"},"nsp_modernComune":"Calatabiano","nsp_modernProvince":"Catania","nsp_historicalProvince":"Val di Noto","nsp_locationHighLoc":"No","wgs_alt":60,"nsp_seismicCode":"2","skos_altLabel":["Palachorion"," Calatabiet"," Calatabieth"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2019-06-29","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":["Santo Eunufrio"," Santo Honufrio"," Sant'Onufrio"," Sant'Onofrio"],"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1131","nsp_minYear":"1131","nsp_maxYear":"1131"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["41, 187 n. 2","183, 418","730"],"nsp_notes":["White asks whether this could be the same house as Saint Eunufrius of Calatabiano. (187 n. 2)","Scaduto locates this house in Calatabiano. (418)","Giunta concurs with Scaduto on the location of this monastery in Calatabiano."]},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Onufrius","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_28.json b/public/data/place-details/monastery_28.json
new file mode 100644
index 0000000..c352424
--- /dev/null
+++ b/public/data/place-details/monastery_28.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/28","nsp_id":"28","labels":["en,Saint James of Calò","it,San Giacomo di Calò"],"nsp_placeType":"monastery","skos_prefLabel":"Saint James of Calò","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.01538,15.13134,10000d","http://www.geonames.org/2523994/novara-di-sicilia.html"],"wgs_lat":38.01538,"wgs_long":15.13134,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(15.13134 38.01538)"},"nsp_modernComune":"Novara di Sicilia","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":650,"nsp_seismicCode":"2","skos_altLabel":["Noara"," Noharia"," Nouah"," Nugaria"," Nohara"," Castrum Nucariae"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-02","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1131","nsp_minYear":"1131","nsp_maxYear":"1131"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/QCQQZXJ9","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["42, 45","975","100-101, 363, 403","730"],"nsp_notes":["\"The foundation of the great abbey of St. Savior in Lingua Phari at Messina by Roger II in 1131-34, and the organization of most of the Greek houses of Sicily under its archimandrite into a sort of congregation, has generally been regarded as the climax of the Hellenic renaissance in the Norman realm. But it was actually a desperate effort to check the dissolution of Count Roger I's work of restoration.\" White (n. 5) says that he has not been able to explain why certain ones remained independent of the abbey. (45)","According to Pirri, this monastery was one of the communities that came under St. Savior's jurisdiction.","Scaduto appears to list the date of earliest document at 1310, the date in Vaticanus latinus, 8201, f. 347. (101)","Giunta repeats Scaduto's date of earliest document (1310), which is much later than White's 1131. "]},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/28","skos_prefLabel":"Saint James of Calò"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/68","skos_prefLabel":"Christ the Savior in Lingua Phari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/QCQQZXJ9","nsp_pages":"975","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint James","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_29.json b/public/data/place-details/monastery_29.json
new file mode 100644
index 0000000..1b3de22
--- /dev/null
+++ b/public/data/place-details/monastery_29.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/29","nsp_id":"29","labels":["en,Saint John of the Greeks","it,San Giovanni dei Greci"],"nsp_placeType":"monastery","skos_prefLabel":"Saint John of the Greeks","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.19394,15.55256,10000d","http://www.geonames.org/2524170/messina.html"],"wgs_lat":38.19394,"wgs_long":15.55256,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(15.55256 38.19394)"},"nsp_modernComune":"Messina","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":3,"nsp_seismicCode":"1","skos_altLabel":"Massîni"},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2019-06-28","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1092?","nsp_minYear":"1092","nsp_maxYear":"1092"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["42","156","729"],"nsp_notes":""},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Female","nsp_subjectOfDedication":"Saint John","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_3.json b/public/data/place-details/monastery_3.json
new file mode 100644
index 0000000..6127f2d
--- /dev/null
+++ b/public/data/place-details/monastery_3.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/3","nsp_id":"3","labels":["en,Saint Mary of Caccamo","it,Santa Maria di Caccamo"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of Caccamo","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.93357,13.66808,10000d","http://www.geonames.org/2525476/caccamo.html"],"wgs_lat":37.93357,"wgs_long":13.66808,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(13.66808 37.93357)"},"nsp_modernComune":"Caccamo","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"No","wgs_alt":521,"nsp_seismicCode":"2","skos_altLabel":["Caccabo"," K.k.b.sc"," Qaqabus"," Calces"," Caccabum"]},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2016-07-05","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1098","nsp_minYear":"1098","nsp_maxYear":"1098"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"95, 100, 245, 255","nsp_notes":""},"nsp_hasLink":[{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i91329006","skos_prefLabel":"Robert"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/3","skos_prefLabel":"Saint Mary of Caccamo"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"100","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/3","skos_prefLabel":"Saint Mary of Caccamo"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/2","skos_prefLabel":"Christ the Savior of Patti"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"100","nsp_notes":""}}],"nsp_probableStatus":"Priory","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_30.json b/public/data/place-details/monastery_30.json
new file mode 100644
index 0000000..53dd793
--- /dev/null
+++ b/public/data/place-details/monastery_30.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/30","nsp_id":"30","labels":["en,Saint John of Psichro","it,San Giovanni di Psichro"],"nsp_placeType":"monastery","skos_prefLabel":"Saint John of Psichro","nsp_hasLocation":{"rdfs_seeAlso":["http://www.geonames.org/2523641/randazzo.html","https://earth.google.com/web/@37.88905,15.01443,10000d","http://www.medioevosicilia.eu/markIII/il-monastero-di-san-giovanni-psicro-presso-randazzo/"],"wgs_lat":37.88905,"wgs_long":15.01443,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(15.01443 37.88905)"},"nsp_modernComune":"Randazzo","nsp_modernProvince":"Catania","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"Yes","wgs_alt":590,"nsp_seismicCode":"2","skos_altLabel":[" Randatium","Randâg"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2019-07-04","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":["Psicro"," Ipsichro"," Sicro"," Fiumefreddo"," Ysigiro"],"nsp_fieldVisit":"2016-07-16","nsp_uncorroboratedInformation":{"nsp_content":"There appears to be some difference as to where exactly this house was located. Both Scaduto (101) and Giunta (730) place it near Mascali. Giuseppe Tropea, however, says on his medioevosicilia.eu (http://www.medioevosicilia.eu/markIII/il-monastero-di-san-giovanni-psicro-presso-randazzo/) that the remains of this monastery can be found in Contrada Sant'Anastasia, Randazzo. If this is right, what remains of the monastery is now on the property of Feudo Vagliasindi. The proprietors were not aware that the structure may actually be the remains of a monastery that dates to the Norman period. There are two distinct structures here, which may have been joined. The owners shared that there was an excavation led by Prof. Privitera of the University of Catania c. 2007. Found were a few lava stone tombs were covered with terracotta. Another tomb was discovered nearby that likely belonged to a member of the clergy which contained a slab with a Greek inscription. It has been left in place. Pieces of exterior walls, obscured by thick vegetation, also survive. We are grateful to Paolo and Corrado Vassallo for making the site available to us.","nsp_source":"Field Visit"},"nsp_earliestSurvivingRecord":{"rdfs_label":"1131","nsp_minYear":"1131","nsp_maxYear":"1131"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/QCQQZXJ9","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["42","45","975","101, 399, 420, 421","730"],"nsp_notes":["\"The foundation of the great abbey of St. Savior in Lingua Phari at Messina by Roger II in 1131-34, and the organization of most of the Greek houses of Sicily under its archimandrite into a sort of congregation, has generally been regarded as the climax of the Hellenic renaissance in the Norman realm. But it was actually a desperate effort to check the dissolution of Count Roger I's work of restoration.\" White (n. 5) says that he has not been able to explain why certain ones remained independent of the abbey. ","According to Pirri, this monastery was one of the communities that came under St. Savior's jurisdiction.","Scaduto appears to place the date of earliest document at 1105, some 26 years earlier than White. (101)","Giunta repeats Scaduto's 1105 date for eariest documentation, rejecting White's later date of 1131."]},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/30","skos_prefLabel":"Saint John of Psichro"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/68","skos_prefLabel":"Christ the Savior in Lingua Phari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/QCQQZXJ9","nsp_pages":"975","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint John (the Baptist?)","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_31.json b/public/data/place-details/monastery_31.json
new file mode 100644
index 0000000..313bd2a
--- /dev/null
+++ b/public/data/place-details/monastery_31.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/31","nsp_id":"31","labels":["en,Saint Leo of Messina","it,San Leone di Messina"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Leo of Messina","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.19394,15.55256,10000d","http://www.geonames.org/2524170/messina.html"],"wgs_lat":38.19394,"wgs_long":15.55256,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(15.55256 38.19394)"},"nsp_modernComune":"Messina","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":3,"nsp_seismicCode":"1","skos_altLabel":"Massîni"},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2019-06-28","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1131","nsp_minYear":"1131","nsp_maxYear":"1131"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/QCQQZXJ9","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["42, 45","975","97, 98, 375 n. 69, 394, 398","729"],"nsp_notes":["\"The foundation of the great abbey of St. Savior in Lingua Phari at Messina by Roger II in 1131-34, and the organization of most of the Greek houses of Sicily under its archimandrite into a sort of congregation, has generally been regarded as the climax of the Hellenic renaissance in the Norman realm. But it was actually a desperate effort to check the dissolution of Count Roger I's work of restoration.\" White (n. 5) says that he has not been able to explain why certain ones remained independent of the abbey. (45)","According to Pirri, this monastery was one of the communities that came under St. Savior's jurisdiction.","Scaduto puts the first mention of the house at 1130, one year earlier than White.","Date of earliest documentation given is 1134."]},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/31","skos_prefLabel":"Saint Leo of Messina"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/68","skos_prefLabel":"Christ the Savior in Lingua Phari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/QCQQZXJ9","nsp_pages":"975","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Leo","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_32.json b/public/data/place-details/monastery_32.json
new file mode 100644
index 0000000..2d13fd8
--- /dev/null
+++ b/public/data/place-details/monastery_32.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/32","nsp_id":"32","labels":["en,Saint Mary of Ambuto","it,Santa Maria di Ambuto"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of Ambuto","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.19394,15.55256,10000d","http://www.geonames.org/2524170/messina.html"],"wgs_lat":38.19394,"wgs_long":15.55256,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(15.55256 38.19394)"},"nsp_modernComune":"Messina","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":3,"nsp_seismicCode":"1","skos_altLabel":"Massîni"},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["42, 45, 155-156","396 f., 497","729"],"nsp_notes":["In 1146, Abbess Moriella of St. Mary de Scalis transferred the abandoned Basilian monastery and its land to her monastery's notary to be restored so that a new community could inhabit it to honor both the Virgin Mary as well as the memory of Count Roger. (155-156)","Scaduto asserts that the house is of \"uncertain origin\" (\"di origine incerta\"). (497)","The location of this house in Messina is provided by Giunta. The date of earliest attestation he offers is 1146, somewhat later than White's estimate of 1100 or earlier."]},"nsp_hasLink":{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/32","skos_prefLabel":"Saint Mary of Ambuto"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"41","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_33.json b/public/data/place-details/monastery_33.json
new file mode 100644
index 0000000..ea68d83
--- /dev/null
+++ b/public/data/place-details/monastery_33.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/33","nsp_id":"33","labels":["en,Saint Mary of the Giummare","it,Santa Maria delle Giummare"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of the Giummare","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.65160,12.61308,10000d","http://www.geonames.org/2524205/mazara-del-vallo.html"],"wgs_lat":37.6516,"wgs_long":12.61308,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(12.61308 37.65160)"},"nsp_modernComune":"Mazara del Vallo","nsp_modernProvince":"Trapani","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"Yes","wgs_alt":32,"nsp_seismicCode":"2","skos_altLabel":["Mâzar"," Castrum Maczarie"," Mazzara"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-02","nsp_recordStatus":"Reviewed","nsp_notes":"Found on a hill in a suburb in Mazara’s east, the former monastery provides an impressive vantage point of the urban landscape and a sliver of the sea just beyond the sprawl – one can only imagine the unimpeded vista that would have been available to the monks. Though it was converted into a church and is apparently used with some frequency (a local newspaper reports that weddings are held there), the site seems abandoned. While it is relatively easy to reach the site by car/on foot, it is impossible to access the interior without keys. That said, the exterior is very telling: it seems that there has been some real effort to recreate the original context. A plaque on a stone wall describes the restoration of an \"ancient enclosing wall restored through the works of the Servi del Cuore Immacolato di Maria in 2000 A.D.\" The doorway and columns at the church's front appear to be original and it seems that the rest of the facade was later restored to harmonize with the earlier style. Unfortunately, the more modern stone does not seem to be wearing well, as cracks are visible. Also, it appears that fragments - some of which may be of the original building - are scattered throughout a debris field to the church's north side. As they are fully exposed to the elements and the animals that have easy access to the site, there are real concerns for their preservation. Humans have not been completely kind to the site either - litter abounds and there is some light graffiti present. The exterior security measures are easy to evade - the fences have large holes in them and despite signs warning of video surveillance and a camera, it is unclear whether the site is actually monitored. In addition to being of historical interest, the church's grounds are also of interest from a perspective of biodiversity. According to a video produced by a local newspaper, there is some unique vegetation located around the building. During our visit of 2019, we noticed that rough-hewn rocks had been arranged in a rounded labyrinth pattern, perhaps suggesting an attempt at creating a prayer space, though no identification was available.","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":["Santa Maria de Jummariis"," Santa Maria de Alto"],"nsp_fieldVisit":["2015-08-15","2019-07-19"],"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/CDFDD2GL"],"nsp_pages":["42","125"],"nsp_notes":""},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_34.json b/public/data/place-details/monastery_34.json
new file mode 100644
index 0000000..06b5996
--- /dev/null
+++ b/public/data/place-details/monastery_34.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/34","nsp_id":"34","labels":["en,Saint Mary of Bordonaro","it,Santa Maria di Bordonaro"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of Bordonaro","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.19394,15.55256,10000d","http://www.geonames.org/2524170/messina.html"],"wgs_lat":38.19394,"wgs_long":15.55256,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(15.55256 38.19394)"},"nsp_modernComune":"Messina","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":3,"nsp_seismicCode":"1","skos_altLabel":"Massîni"},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-04","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1178-1179","nsp_minYear":"1178","nsp_maxYear":"1179"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/7QPHAVE8","http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["88-89","42, 71 n. 2","152-155, 357, 367, 411, 412","730"],"nsp_notes":["","Drawing on Scaduto (153), Giunta suggests an earliest document date of 1162."]},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_35.json b/public/data/place-details/monastery_35.json
new file mode 100644
index 0000000..6707c97
--- /dev/null
+++ b/public/data/place-details/monastery_35.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/35","nsp_id":"35","labels":["en,Saint Mary of Campogrosso","it,Santa Maria di Campogrosso"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of Campogrosso","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.03733,13.56387,10000d","http://www.geonames.org/2525734/altavilla-milicia.html"],"wgs_lat":38.03733,"wgs_long":13.56387,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(13.56387 38.03733)"},"nsp_modernComune":"Altavilla Milicia","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"Yes","wgs_alt":53,"nsp_seismicCode":"2"},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-07","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":"San Michele di Campogrosso","nsp_fieldVisit":"2014-08-05","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["42, 272","124, 125","729"],"nsp_notes":""},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_36.json b/public/data/place-details/monastery_36.json
new file mode 100644
index 0000000..58f9f13
--- /dev/null
+++ b/public/data/place-details/monastery_36.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/36","nsp_id":"36","labels":["en,Saint Mary of the Crypt","it,Santa Maria de Crypta"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of the Crypt","nsp_hasLocation":{"rdfs_seeAlso":["http://www.geonames.org/2523920/palermo.html","https://earth.google.com/web/@38.11314,13.36105,10000d"],"wgs_lat":38.11314,"wgs_long":13.36105,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(13.36105 38.11314)"},"nsp_modernComune":"Palermo","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"Yes","wgs_alt":13,"nsp_seismicCode":"2","skos_altLabel":["Bn.rm"," Balarm"," Balarmuh"," Bân.rm"," Panormus"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":"Santa Maria della Grotta","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["42","128-129","729"],"nsp_notes":["White suggests that this community may have been founded by Robert Guiscard in 1072.",""]},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_37.json b/public/data/place-details/monastery_37.json
new file mode 100644
index 0000000..536a6e2
--- /dev/null
+++ b/public/data/place-details/monastery_37.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/37","nsp_id":"37","labels":["en,Saint Mary of Gala","it,Santa Maria di Gala"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of Gala","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.11992,15.23400,10000d","http://www.geonames.org/2525597/barcellona-pozzo-di-gotto.html"],"wgs_lat":38.11992,"wgs_long":15.234,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(15.23400 38.11992)"},"nsp_modernComune":"Barcellona Pozzo di Gotto","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"Yes","wgs_alt":259,"nsp_seismicCode":"2","skos_altLabel":"Galath"},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-03","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_fieldVisit":"2016-07-16","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1105","nsp_minYear":"1105","nsp_maxYear":"1105"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/7QPHAVE8","http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/QCQQZXJ9","http://zotero.org/groups/2199947/items/CDFDD2GL"],"nsp_pages":["19-20","42, 45","975","143, 144, 357, 367, 375, 410"],"nsp_notes":["","\"The foundation of the great abbey of St. Savior in Lingua Phari at Messina by Roger II in 1131-34, and the organization of most of the Greek houses of Sicily under its archimandrite into a sort of congregation, has generally been regarded as the climax of the Hellenic renaissance in the Norman realm. But it was actually a desperate effort to check the dissolution of Count Roger I's work of restoration.\" White (n. 5) says that he has not been able to explain why certain ones remained independent of the abbey. (45)","According to Pirri, this monastery was not one of the communities that came under St. Savior's jurisdiction."]},"nsp_hasLink":{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i3215194","skos_prefLabel":"Adelasia del Vasto"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/37","skos_prefLabel":"Saint Mary of Gala"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"42","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_38.json b/public/data/place-details/monastery_38.json
new file mode 100644
index 0000000..1242262
--- /dev/null
+++ b/public/data/place-details/monastery_38.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/38","nsp_id":"38","labels":["en,Saint Mary of Mallimachi","it,Santa Maria di Mallimachi"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of Mallimachi","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.08626,14.80686,10000d","http://www.geonames.org/2525088/castell-umberto.html"],"wgs_lat":38.08626,"wgs_long":14.80686,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.80686 38.08626)"},"nsp_modernComune":"Castell'Umberto","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":660,"nsp_seismicCode":"2","skos_altLabel":["Mallimaco"," Castania"," Quastania"," Castaniae"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2019-06-28","nsp_recordStatus":"Reviewed","nsp_notes":"Luigi Santagati, Viabilità e topografia della Sicilia antica, vol. 2 (Caltanissetta: Edizioni Lusografica, 2013), 104 (s.v. \"Mallimaco\"), places Mallimachi near Castell'Umberto and we have used this town as the monastery's marker.","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1131","nsp_minYear":"1131","nsp_maxYear":"1131"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/QCQQZXJ9","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["42, 45","975","101, 400","730"],"nsp_notes":["\"The foundation of the great abbey of St. Savior in Lingua Phari at Messina by Roger II in 1131-34, and the organization of most of the Greek houses of Sicily under its archimandrite into a sort of congregation, has generally been regarded as the climax of the Hellenic renaissance in the Norman realm. But it was actually a desperate effort to check the dissolution of Count Roger I's work of restoration.\" White (n. 5) says that he has not been able to explain why certain ones remained independent of the abbey. (45) White locates this monastery in the diocese of Patti.","According to Pirri, this monastery was one of the communities that came under St. Savior's jurisdiction.","Scaduto also locates this monastery in the diocese of Patti, but in the town of Castanea.","Giunta repeats Scaduto's location as Castanea. He also gives the earliest document date as 1134, 3 years after White's date."]},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/38","skos_prefLabel":"Saint Mary of Mallimachi"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/68","skos_prefLabel":"Christ the Savior in Lingua Phari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/QCQQZXJ9","nsp_pages":"975","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_39.json b/public/data/place-details/monastery_39.json
new file mode 100644
index 0000000..27f2bd9
--- /dev/null
+++ b/public/data/place-details/monastery_39.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/39","nsp_id":"39","labels":["en,Saint Mary of Mandanici","it,Santa Maria di Mandanici"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of Mandanici","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.99524,15.33537,10000d","http://www.geonames.org/2524310/mandanici.html"],"wgs_lat":37.99524,"wgs_long":15.33537,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(15.33537 37.99524)"},"nsp_modernComune":"Mandanici","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"Yes","wgs_alt":319,"nsp_seismicCode":"1","skos_altLabel":["Mandanichium"," Mashjmonli"," Mandanich"," Mandanichi"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-07","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_fieldVisit":"2016-07-16","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1100","nsp_minYear":"1100","nsp_maxYear":"1100"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6","http://zotero.org/groups/2199947/items/IGQPVPAG"],"nsp_pages":["42, 145 n. 4","96-97, 238, 357","730","col. 1200"],"nsp_notes":["","See White, Latin Monasticism, for a discussion of the limitations of this source. (40)"]},"nsp_hasLink":{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/39","skos_prefLabel":"Saint Mary of Mandanici"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"42","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_4.json b/public/data/place-details/monastery_4.json
new file mode 100644
index 0000000..93abc9b
--- /dev/null
+++ b/public/data/place-details/monastery_4.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/4","nsp_id":"4","labels":["en,Holy Cross of Buccheri","it,Santa Croce di Buccheri"],"nsp_placeType":"monastery","skos_prefLabel":"Holy Cross of Buccheri","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.12494,14.85222,10000d","http://www.geonames.org/2525492/buccheri.html"],"wgs_lat":37.12494,"wgs_long":14.85222,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.85222 37.12494)"},"nsp_modernComune":"Buccheri","nsp_modernProvince":"Syracuse","nsp_historicalProvince":"Val di Noto","nsp_locationHighLoc":"No","wgs_alt":820,"nsp_seismicCode":"2","skos_altLabel":["Baccaratum"," Broccatus"," Manzil-Bukìr"," Buccherie"," Castrum Buccherii"]},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2016-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1134","nsp_minYear":"1134","nsp_maxYear":"1134"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"94, 96, 98, 101, 270, 274","nsp_notes":""},"nsp_hasLink":[{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/4","skos_prefLabel":"Holy Cross of Buccheri"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/1","skos_prefLabel":"Saint Bartholomew of Lipari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"101","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/4","skos_prefLabel":"Holy Cross of Buccheri"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/2","skos_prefLabel":"Christ the Savior of Patti"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"101","nsp_notes":""}}],"nsp_probableStatus":"Priory","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Holy Cross","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_40.json b/public/data/place-details/monastery_40.json
new file mode 100644
index 0000000..6a0263f
--- /dev/null
+++ b/public/data/place-details/monastery_40.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/40","nsp_id":"40","labels":["en,Saint Mary of the Grotto","it,Santa Maria della Grotta"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of the Grotto","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.79919,12.44246,10000d","http://www.geonames.org/2524245/marsala.html"],"wgs_lat":37.79919,"wgs_long":12.44246,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(12.44246 37.79919)"},"nsp_modernComune":"Marsala","nsp_modernProvince":"Trapani","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"Yes","wgs_alt":17,"nsp_seismicCode":"2","skos_altLabel":["Marsa-Ali"," Marsa-Allah"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-04","nsp_recordStatus":"Reviewed","nsp_notes":"There is some confusion here. White, Latin Monasticism, 42, locates this house in Marsala. But Loud thinks it was in Palermo but had been given a house in Marsala so that the monks of Palermo would revive the house to the west (Latin Church in Norman Italy, 508). Scaduto, Il monachesimo basiliano, 131-32, argues that the confusion comes from the two houses having the same name and maintains that the monastery in Palermo had been united with the one in Marsala at the end of the twelfth century. Today, there is graffiti at the Marsala site and there is a business being run from the area just behind an exterior wall. The site is built over a Punic burial ground. Stairs that descend to the entrance perhaps suggest the presence of the grotto after which this monastery had been named. The site is now autonomous and is under the care of Marsala's polo museale. It is possible to view the exterior without a guide, but entrance into the gated area can only be made possible by a representative.","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_fieldVisit":"2019-07-18","nsp_uncorroboratedInformation":{"nsp_content":"In July 2019, we met a representative of the Museo Archeologico Lillibeo at the site. It has been rebuilt, having suffered significant damage during World War II, and there is no sign of a Norman presence. Excessive vegetation prevented us from accessing the interior. Michele, the representative, told us that up until approximately 30 years ago the site was in use but then was closed on account of structural concerns. Until about 15 years ago, it was possible to access the entrance. He also shared that the site has been vandalized and we were told that an altar and a statue of the Virgin Mary have been taken.","nsp_source":"Field Visit"},"nsp_earliestSurvivingRecord":{"rdfs_label":"1098-1108","nsp_minYear":"1098","nsp_maxYear":"1108"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6","http://zotero.org/groups/2199947/items/7QPHAVE8","http://zotero.org/groups/2199947/items/IGQPVPAG"],"nsp_pages":["42, 45, 60","128, 130, 132, 140, 358, 405, 407","729","21-24, 42-44, 195-196","col. 1200"],"nsp_notes":["White dates this before 1107-1108. (42)","Scaduto dates the foundation of this house to 1098. (407)","","Roger II confirms to Bartholomew, abbot of the Monastery of Santa Maria della Grotta in Marsala, earlier privileges made by himself and his mother, Adelasia. These include the donation of the Casale di Farchina and vineyards and lands as well as the exemption from some taxes, which the monastery's founder, Admiral Christodulos, had put in place at the time of its creation. \"Concessimus fore dictum Monasterium liberum vel exemptum ab Episcopis archiepiscopis et ab omni sacerdotali ordine. Petens et exorans ab Excellentia nostra confirmare eidem venerabili Monasterio contenta et declarata seu distincta in eodem privilegio. Videlicet casale quod dicitur farchina et omnia que sunt in eo et sibi pertinent et limitantur et omnia quecumque continet predictum privilegium. Sicut dictum est. Nos autem scientes quod sanctarum Ecclesiarum dei curam habentibus et in eis gloriflcationem seu laudem agentibus necessaria distribuere. Deo acceptabile est et anime grandis utilitas comparatur. Lubemus, concedimus, et conflrmamus esse ipsum monasterium liberum vel exemptum et totaliter liberum ab Episcopis archiepiscopis et omni universali sacerdotali seu clericali ordine. Similiter conflrmamus eidem etiam omnia que divi nostri parentes in eorum privilegiis eidem concesserant. Scilicet homines Casalis farchine. vineas et terras et barcam unam liberam et etiam que ammiratus Xpistodulus, qui a fundamentis ediflcavit predictum Monasterium.\" The year is 1131. (21-24)","See White, Latin Monasticism, for a discussion of the limitations of this source. (40)"]},"nsp_hasLink":[{"nsp_role":"Secular Lord","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i97285789","skos_prefLabel":"Roger II of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/40","skos_prefLabel":"Saint Mary of the Grotto"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/7QPHAVE8","nsp_pages":"21-24","nsp_notes":""}},{"nsp_role":"Secular Lord","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i3215194","skos_prefLabel":"Adelasia del Vasto"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/40","skos_prefLabel":"Saint Mary of the Grotto"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/7QPHAVE8","nsp_pages":"21-24","nsp_notes":""}},{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#8726857","skos_prefLabel":"Christodoulos"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/40","skos_prefLabel":"Saint Mary of the Grotto"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/7QPHAVE8","nsp_pages":"21-24","nsp_notes":""}}],"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_41.json b/public/data/place-details/monastery_41.json
new file mode 100644
index 0000000..6761397
--- /dev/null
+++ b/public/data/place-details/monastery_41.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/41","nsp_id":"41","labels":["en,Saint Mary of Massa","it,Santa Maria di Massa"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of Massa","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.19394,15.55256,10000d","http://www.geonames.org/2524170/messina.html"],"wgs_lat":38.19394,"wgs_long":15.55256,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(15.55256 38.19394)"},"nsp_modernComune":"Messina","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":3,"nsp_seismicCode":"1","skos_altLabel":"Massîni"},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2019-06-28","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":"Santa Maria di Austro","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/QCQQZXJ9","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6","http://zotero.org/groups/2199947/items/IGQPVPAG"],"nsp_pages":["42, 45","975","121, 363","730","col. 1201"],"nsp_notes":["\"The foundation of the great abbey of St. Savior in Lingua Phari at Messina by Roger II in 1131-34, and the organization of most of the Greek houses of Sicily under its archimandrite into a sort of congregation, has generally been regarded as the climax of the Hellenic renaissance in the Norman realm. But it was actually a desperate effort to check the dissolution of Count Roger I's work of restoration.\" White (n. 5) says that he has not been able to explain why certain ones remained independent of the abbey. (45)","According to Pirri, this monastery was not one of the communities that came under St. Savior's jurisdiction.","","Dates earliest record to 1099 and identifies the monastery's location as Massa Santa Lucia.","See White, Latin Monasticism, for a discussion of the limitations of this source. (40)"]},"nsp_hasLink":{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#229108","skos_prefLabel":"Nicholas"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/41","skos_prefLabel":"Saint Mary of Massa"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"42","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_42.json b/public/data/place-details/monastery_42.json
new file mode 100644
index 0000000..1d451f4
--- /dev/null
+++ b/public/data/place-details/monastery_42.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/42","nsp_id":"42","labels":["en,Saint Mary of Mili","it,Santa Maria di Mili"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of Mili","nsp_hasLocation":{"rdfs_seeAlso":["http://www.geonames.org/2524170/messina.html","https://earth.google.com/web/@38.12406,15.49103,10000d","http://www.medioevosicilia.eu/markIII/monastero-di-santa-maria-di-mili-presso-messina/"],"wgs_lat":38.12406,"wgs_long":15.49103,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(15.49103 38.12406)"},"nsp_modernComune":"Messina","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"Yes","wgs_alt":165,"nsp_seismicCode":"1","skos_altLabel":"Massîni"},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2019-06-28","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_fieldVisit":"2014-07-01","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1090","nsp_minYear":"1090","nsp_maxYear":"1090"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["39 n. 6, 42, 71 n. 3, 236 n. 1","83, 81 ff., 251, 357, 375, 385","730"],"nsp_notes":["","Locates the monastery in Mili San Pietro and lists the date of the earliest document at 1092, 2 years later than White."]},"nsp_hasLink":{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/42","skos_prefLabel":"Saint Mary of Mili"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"42","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_43.json b/public/data/place-details/monastery_43.json
new file mode 100644
index 0000000..512ccda
--- /dev/null
+++ b/public/data/place-details/monastery_43.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/43","nsp_id":"43","labels":["en,Saint Mary of the Admiral","it,Santa Maria dell'Ammiraglio"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of the Admiral","nsp_hasLocation":{"rdfs_seeAlso":["http://www.geonames.org/2523920/palermo.html","https://earth.google.com/web/@38.11477,13.36287,10000d"],"wgs_lat":38.11477,"wgs_long":13.36287,"nsp_coordinateSource":"Google Earth","geo_hasGeometry":{"geo_asWKT":"Point(13.36287 38.11477)"},"nsp_modernComune":"Palermo","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"Yes","wgs_alt":14,"nsp_seismicCode":"2","skos_altLabel":["Bn.rm"," Balarm"," Balarmuh"," Bân.rm"," Panormus"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"White (Latin Monasticism, 42) suggests that this monastery may have also been known under the names of \"Santa Maria de Crisè\" and \"Santa Maria la Pinta.\" Scaduto, on the other hand, considers them as separate entities (160) as does Giunta (729).","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":["Santa Maria di Crisè"," Santa Maria la Pinta"],"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1140","nsp_minYear":"1140","nsp_maxYear":"1140"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/7QPHAVE8","http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["209-210","42, 127 n. 4, 161, 289","62, 159, 160, 245","729"],"nsp_notes":""},"nsp_hasLink":{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#87238128","skos_prefLabel":"George of Antioch"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/43","skos_prefLabel":"Saint Mary of the Admiral"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"42","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Female","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_44.json b/public/data/place-details/monastery_44.json
new file mode 100644
index 0000000..68b77a5
--- /dev/null
+++ b/public/data/place-details/monastery_44.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/44","nsp_id":"44","labels":["en,Saint Mary of Scala","it,Santa Maria di Scala"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of Scala","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.56171,14.92123,10000d","http://www.geonames.org/2523866/paterno.html"],"wgs_lat":37.56171,"wgs_long":14.92123,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(14.92123 37.56171)"},"nsp_modernComune":"Paternò","nsp_modernProvince":"Catania","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"Yes","wgs_alt":290,"nsp_seismicCode":"2","skos_altLabel":["Bâtarnû"," Paternio"," Castrum Paternionis"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-02","nsp_recordStatus":"Reviewed","nsp_notes":"The ruins are located in Contrada Giaconia. Visited the site in July 2016. It is behind a padlocked fence, apparently on private property. The images reflect how difficult it is to access.","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_fieldVisit":"2016-07-16","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/7QPHAVE8","http://zotero.org/groups/2199947/items/8D8GP7NX"],"nsp_pages":["124-126","42"],"nsp_notes":""},"nsp_hasLink":{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#27086422","skos_prefLabel":"Stephan"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/44","skos_prefLabel":"Saint Mary of Scala"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"42","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_45.json b/public/data/place-details/monastery_45.json
new file mode 100644
index 0000000..59d766c
--- /dev/null
+++ b/public/data/place-details/monastery_45.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/45","nsp_id":"45","labels":["en,Saint Mary of Vicari","it,Santa Maria di Vicari"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of Vicari","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.82371,13.56889,10000d","http://www.geonames.org/2522774/vicari.html"],"wgs_lat":37.82371,"wgs_long":13.56889,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(13.56889 37.82371)"},"nsp_modernComune":"Vicari","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"No","wgs_alt":700,"nsp_seismicCode":"2","skos_altLabel":["Biccari"," Bikû"," Boico"," Biccarum"," Castrum Biccari"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-03","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/7QPHAVE8","http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6","http://zotero.org/groups/2199947/items/V7MNSAU3"],"nsp_pages":["126-127","35, 39 n. 6, 42","122, 123, 124","729","4-6"],"nsp_notes":["","A Greek-language document records that Count Roger I allows the abbot of Santa Maria di Vicari to construct a water mill. The year is 1097."]},"nsp_hasLink":[{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/45","skos_prefLabel":"Saint Mary of Vicari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/V7MNSAU3","nsp_pages":"42","nsp_notes":""}},{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/45","skos_prefLabel":"Saint Mary of Vicari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/V7MNSAU3","nsp_pages":"4-6","nsp_notes":""}},{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/45","skos_prefLabel":"Saint Mary of Vicari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"42","nsp_notes":""}},{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/45","skos_prefLabel":"Saint Mary of Vicari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"4-6","nsp_notes":""}},{"nsp_role":"Secular Lord","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/45","skos_prefLabel":"Saint Mary of Vicari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/V7MNSAU3","nsp_pages":"42","nsp_notes":""}},{"nsp_role":"Secular Lord","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/45","skos_prefLabel":"Saint Mary of Vicari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/V7MNSAU3","nsp_pages":"4-6","nsp_notes":""}},{"nsp_role":"Secular Lord","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/45","skos_prefLabel":"Saint Mary of Vicari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"42","nsp_notes":""}},{"nsp_role":"Secular Lord","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/45","skos_prefLabel":"Saint Mary of Vicari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"4-6","nsp_notes":""}}],"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_46.json b/public/data/place-details/monastery_46.json
new file mode 100644
index 0000000..8d7e1fd
--- /dev/null
+++ b/public/data/place-details/monastery_46.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/46","nsp_id":"46","labels":["en,Saint Mercurius of Troina","it,San Mercurio di Troina"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mercurius of Troina","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.78437,14.59605,10000d","http://www.geonames.org/2522849/troina.html"],"wgs_lat":37.78437,"wgs_long":14.59605,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.59605 37.78437)"},"nsp_modernComune":"Troina","nsp_modernProvince":"Enna","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":1121,"nsp_seismicCode":"2","skos_altLabel":["Traina"," Targinis"," Trayna"," Castrum Troinae"," Castrum Trainae"," Draginat"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-03","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":"Saint Mercury","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1131","nsp_minYear":"1131","nsp_maxYear":"1131"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/QCQQZXJ9","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["42, 45","975","87, 186, 363, 375, 390","730"],"nsp_notes":["\"The foundation of the great abbey of St. Savior in Lingua Phari at Messina by Roger II in 1131-34, and the organization of most of the Greek houses of Sicily under its archimandrite into a sort of congregation, has generally been regarded as the climax of the Hellenic renaissance in the Norman realm. But it was actually a desperate effort to check the dissolution of Count Roger I's work of restoration.\" White (n. 5) says that he has not been able to explain why certain ones remained independent of the abbey. (45)","According to Pirri, this monastery was one of the communities that came under St. Savior's jurisdiction.",""]},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/46","skos_prefLabel":"Saint Mercurius of Troina"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/68","skos_prefLabel":"Christ the Savior in Lingua Phari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/QCQQZXJ9","nsp_pages":"975","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Mercurius","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_47.json b/public/data/place-details/monastery_47.json
new file mode 100644
index 0000000..a38d139
--- /dev/null
+++ b/public/data/place-details/monastery_47.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/47","nsp_id":"47","labels":["en,Saint Michael of Mazara","it,San Michele di Mazara"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Michael of Mazara","nsp_hasLocation":{"rdfs_seeAlso":["http://www.geonames.org/2524205/mazara-del-vallo.html","https://earth.google.com/web/@37.65348,12.59086,10000d"],"wgs_lat":37.65348,"wgs_long":12.59086,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(12.59086 37.65348)"},"nsp_modernComune":"Mazara del Vallo","nsp_modernProvince":"Trapani","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"Yes","wgs_alt":14,"nsp_seismicCode":"2","skos_altLabel":["Mâzar"," Castrum Maczarie"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-04","nsp_recordStatus":"Reviewed","nsp_notes":"Nothing from the Norman period seems to have survived, a confirmation in 2019 of the original observation done in 2016. The interior, as well as the exterior, have been completely redone in a Baroque style. A statue of St. Michael is still located in a privileged place at the top of the church's facade, and he is accompanied by other holy figures, made at a significantly later date. The church today is surrounded by numerous buildings in a farily densely-packed setting, including an attached Benedictine nunery, a parrochial guest house, a B&B and numerous residential buildings. The piazza in front of the church is used for parking. This usage - as well as bird droppings, plants growing on the facade and human vandalism - present significant challenges to the current structure. As of the summer of 2019, the church was regularly opened in the early morning for mass, though its hours were very limited.","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_fieldVisit":["2016-07-16","2019-07-19"],"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1124","nsp_minYear":"1124","nsp_maxYear":"1124"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["42, 59","405","729"],"nsp_notes":""},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Female","nsp_subjectOfDedication":"Saint Michael the Archangel","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_48.json b/public/data/place-details/monastery_48.json
new file mode 100644
index 0000000..cb0bd8d
--- /dev/null
+++ b/public/data/place-details/monastery_48.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/48","nsp_id":"48","labels":["en,Saint Michael of Ficarra","it,San Michele di Ficarra"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Michael of Ficarra","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.82541,15.16699,10000d","http://www.geonames.org/2524764/ficarra.html","http://www.medioevosicilia.eu/markIII/monastero-del-san-michele-al-fulgerino-presso-piedimonte-etneo/"],"wgs_lat":37.82541,"wgs_long":15.16699,"nsp_coordinateSource":"Google Earth","geo_hasGeometry":{"geo_asWKT":"Point(15.16699 37.82541)"},"nsp_modernComune":"Ficarra","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"Yes","wgs_alt":450,"nsp_seismicCode":"2","skos_altLabel":["Ficcara"," Fulgerino"," Filarino"," Ficarie"]},"nsp_updatedOn":"2019-12-09","nsp_createdOn":"2016-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"The location of this monastery has been taken from medioevosicilia.eu.","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":"San Michele di Fulgerino","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1131","nsp_minYear":"1131","nsp_maxYear":"1131"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6","http://zotero.org/groups/2199947/items/IGQPVPAG"],"nsp_pages":["42","80","730","col. 1201"],"nsp_notes":["","\"Questo monastero fa tutt'uno col S. Angelo di Ficarra di cui è questione nel diploma del 1130 dell'arcivescovo di Messina Ugo e non giàcon quello di Fulgerino o Filarino situato nei pressi di Linguaglossa e di cui non si hanno notizie prima del sec. XV.\"","Dates earliest record to 1099 and identifies the monastery's location as Massa Santa Lucia. Lists as a source Cyril Korolevskij, \"Basiliens italo-grecs et espagnoles,\" Dictionnaire d’histoire et de géographie ecclésiastiques, vol. VI (Paris: 1932), cols. 1180-1236 (at 1201). See White's discussion of the limitations of this source. (40)","See White, Latin Monasticism, for a discussion of the limitations of this source. (40)"]},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Michael the Archangel","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_49.json b/public/data/place-details/monastery_49.json
new file mode 100644
index 0000000..8edb7f6
--- /dev/null
+++ b/public/data/place-details/monastery_49.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/49","nsp_id":"49","labels":["en,Saint Michael of Troina","it,San Michele di Troina"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Michael of Troina","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.77347,14.60713,10000d","http://www.geonames.org/11821412/ruderi-del-monastero-di-s-michele-arcangelo.html","http://www.medioevosicilia.eu/markIII/san-michele-arcangelo-di-troina/"],"wgs_lat":37.77347,"wgs_long":14.60713,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(14.60713 37.77347)"},"nsp_modernComune":"Troina","nsp_modernProvince":"Enna","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"Yes","wgs_alt":855,"nsp_seismicCode":"2","skos_altLabel":["Traina"," Targinis"," Trayna"," Castrum Troinae"," Castrum Trainae"," Draginat"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-02","nsp_recordStatus":"Reviewed","nsp_notes":"Troina promotes an Arab-Norman itinerary, which includes Saint Michael. However, the monastery is accessed via private property (at the time of our visit, guarded by dogs). It is necessary to call the comune in advance so that contact can be made with the owner.","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_fieldVisit":"2016-07-16","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1081","nsp_minYear":"1081","nsp_maxYear":"1081"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6","http://zotero.org/groups/2199947/items/IGQPVPAG"],"nsp_pages":["42","88, 91, 92, 250, 392, 393, 452","730","col. 1202"],"nsp_notes":["","See White, Latin Monasticism, for a discussion of the limitations of this source. (40)"]},"nsp_hasLink":{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/49","skos_prefLabel":"Saint Michael of Troina"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"42","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Michael the Archangel","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_5.json b/public/data/place-details/monastery_5.json
new file mode 100644
index 0000000..978bb32
--- /dev/null
+++ b/public/data/place-details/monastery_5.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/5","nsp_id":"5","labels":["en,Saint John of Vizzini","it,San Giovanni di Vizzini"],"nsp_placeType":"monastery","skos_prefLabel":"Saint John of Vizzini","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.16188,14.75712,10000d","http://www.geonames.org/2522709/vizzini.html"],"wgs_lat":37.16188,"wgs_long":14.75712,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.75712 37.16188)"},"nsp_modernComune":"Vizzini","nsp_modernProvince":"Catania","nsp_historicalProvince":"Val di Noto","nsp_locationHighLoc":"No","wgs_alt":586,"nsp_seismicCode":"2","skos_altLabel":["Bizinus"," Bizino"," Bidis"," Bizînî"," Bizinas"," Turris Bizini"]},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2019-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1134","nsp_minYear":"1134","nsp_maxYear":"1134"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"94, 101","nsp_notes":""},"nsp_hasLink":[{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/5","skos_prefLabel":"Saint John of Vizzini"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/1","skos_prefLabel":"Saint Bartholomew of Lipari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"101","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/5","skos_prefLabel":"Saint John of Vizzini"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/2","skos_prefLabel":"Christ the Savior of Patti"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"101","nsp_notes":""}}],"nsp_probableStatus":"Priory","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint John (the Baptist?)","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_50.json b/public/data/place-details/monastery_50.json
new file mode 100644
index 0000000..87b0850
--- /dev/null
+++ b/public/data/place-details/monastery_50.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/50","nsp_id":"50","labels":["en,Saint Nicander of Messina","it,San Nicandro di Messina"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Nicander of Messina","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.19394,15.55256,10000d","http://www.geonames.org/2524170/messina.html"],"wgs_lat":38.19394,"wgs_long":15.55256,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(15.55256 38.19394)"},"nsp_modernComune":"Messina","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":3,"nsp_seismicCode":"1","skos_altLabel":"Massîni"},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-06","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1131","nsp_minYear":"1131","nsp_maxYear":"1131"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/QCQQZXJ9","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["42, 45","975","97, 98, 375 n. 69, 394, 398","729"],"nsp_notes":["\"The foundation of the great abbey of St. Savior in Lingua Phari at Messina by Roger II in 1131-34, and the organization of most of the Greek houses of Sicily under its archimandrite into a sort of congregation, has generally been regarded as the climax of the Hellenic renaissance in the Norman realm. But it was actually a desperate effort to check the dissolution of Count Roger I's work of restoration.\" White (n. 5) says that he has not been able to explain why certain ones remained independent of the abbey. (45)","According to Pirri, this monastery was not one of the communities that came under St. Savior's jurisdiction.","","Date of earliest documentation given is 1134."]},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Nicander","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_51.json b/public/data/place-details/monastery_51.json
new file mode 100644
index 0000000..8826d54
--- /dev/null
+++ b/public/data/place-details/monastery_51.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/51","nsp_id":"51","labels":["en,Saint Nicander of San Nicone","it,San Nicandro di San Nicone"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Nicander of San Nicone","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.02596,15.38099,10000d","http://www.geonames.org/2524745/fiumedinisi.html"],"wgs_lat":38.02596,"wgs_long":15.38099,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(15.38099 38.02596)"},"nsp_modernComune":"Fiumedinisi","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":200,"nsp_seismicCode":"1","skos_altLabel":["Flumen Dionysii"," Fiumenisi"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2019-06-29","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1093","nsp_minYear":"1093","nsp_maxYear":"1093"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/QCQQZXJ9","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6","http://zotero.org/groups/2199947/items/NZCQ4L83"],"nsp_pages":["42, 45-46","975","69, 92, 357, 394","730","150"],"nsp_notes":["\"The foundation of the great abbey of St. Savior in Lingua Phari at Messina by Roger II in 1131-34, and the organization of most of the Greek houses of Sicily under its archimandrite into a sort of congregation, has generally been regarded as the climax of the Hellenic renaissance in the Norman realm. But it was actually a desperate effort to check the dissolution of Count Roger I's work of restoration.\" White (n. 5) says that he has not been able to explain why certain ones remained independent of the abbey. (45)","According to Pirri, this monastery was one of the communities that came under St. Savior's jurisdiction.","Scaduto notes that in a later period, San Nicandro was also called \"Fluminis Dionisii.\" The toponym suggests its location may have been in Fiumedinisi. (92)","Giunta follows Scaduto's lead and locates this monastery in Fiumedinisi.","Santagati (s.v. \"San Nicono\") proposes that San Nicone was near Itala, which would be some distance (>10 miles) away."]},"nsp_hasLink":[{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/51","skos_prefLabel":"Saint Nicander of San Nicone"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"42","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/51","skos_prefLabel":"Saint Nicander of San Nicone"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/68","skos_prefLabel":"Christ the Savior in Lingua Phari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/QCQQZXJ9","nsp_pages":"975","nsp_notes":""}}],"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Nicander","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_52.json b/public/data/place-details/monastery_52.json
new file mode 100644
index 0000000..1accb02
--- /dev/null
+++ b/public/data/place-details/monastery_52.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/52","nsp_id":"52","labels":["en,Saint Nicholas of Canneto","it,San Nicola di Canneto"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Nicholas of Canneto","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.62336,14.74049,10000d","http://www.geonames.org/2525032/centuripe.html"],"wgs_lat":37.62336,"wgs_long":14.74049,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.74049 37.62336)"},"nsp_modernComune":"Centuripe","nsp_modernProvince":"Enna","nsp_historicalProvince":"Val di Noto","nsp_locationHighLoc":"No","wgs_alt":730,"nsp_seismicCode":"2","skos_altLabel":["Centuripae"," Centorbi"," Santurb"," Certumbium"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2019-06-29","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":["San Nicola di Calamachi"," San Nicola di Calamio"],"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1131","nsp_minYear":"1131","nsp_maxYear":"1131"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/QCQQZXJ9","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["42, 45, 122","975","100","729"],"nsp_notes":["\"The foundation of the great abbey of St. Savior in Lingua Phari at Messina by Roger II in 1131-34, and the organization of most of the Greek houses of Sicily under its archimandrite into a sort of congregation, has generally been regarded as the climax of the Hellenic renaissance in the Norman realm. But it was actually a desperate effort to check the dissolution of Count Roger I's work of restoration.\" White (n. 5) says that he has not been able to explain why certain ones remained independent of the abbey. (45) White notes that later, in 1143, Count Simon of Paternò and his wife, Countess Thomasia, made a generous donation to the Abbey of Licodia that included St. Nicholas of Canneto. (122)","According to Pirri, this monastery was one of the communities that came under St. Savior's jurisdiction.","Scaduto cites \"San Niccolò di Calamachi\" as an alias for this monastery. ","Giunta refers to this monastery as \"San Nicola di Calamio\" and lists the date of the earliest document as 1143."]},"nsp_hasLink":[{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/52","skos_prefLabel":"Saint Nicholas of Canneto"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/68","skos_prefLabel":"Christ the Savior in Lingua Phari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"122","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/52","skos_prefLabel":"Saint Nicholas of Canneto"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/82","skos_prefLabel":"Saint Mary of Licodia"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/QCQQZXJ9","nsp_pages":"975","nsp_notes":""}}],"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Nicholas","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_53.json b/public/data/place-details/monastery_53.json
new file mode 100644
index 0000000..b0117b2
--- /dev/null
+++ b/public/data/place-details/monastery_53.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/53","nsp_id":"53","labels":["en,Saint Nicholas of Fico","it,San Nicolò di Fico"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Nicholas of Fico","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.04602,14.91619,10000d","http://www.geonames.org/2523658/raccuja.html"],"wgs_lat":38.04602,"wgs_long":14.91619,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(14.91619 38.04602)"},"nsp_modernComune":"Raccuja","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"Yes","wgs_alt":654,"nsp_seismicCode":"2","skos_altLabel":["Racuja"," Raccuglia"," Rahl kudyah"," Racudia"," Raccudia"," Castrum Raccuiae"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-06-29","nsp_recordStatus":"Reviewed","nsp_notes":"In September 2019, Max Wilson (B.A., architecture, Yale University) performed the field survey, CSSI assessments, and photographed the site. Max was accompanied by Dr. Roberto Motta and a local priest, Father Adriano, who had access to the church. A flight of stairs leads from the main street of Raccuja down a terraced hill to the residential area where the church is located. There are no regular hours posted online or at the site. The church is oriented along a north-south axis, with the main facade and portal facing north. Directly in front of the church (to the north) lies a small clearing overgrown with weeds and bordered by a fence, which demarcates a neighboring agricultural plot. To the east of the church stands a private dwelling, which is connected to the church via a gated alley. To the west and directly abutting the church is an abandoned and dilapidated stone structure. Father Adriano did not know the history of the structure, but believed it could have been part of the monastery's original cloister. The church plan consists of a single nave and apse. The walls of the interior are finished with white plaster. A stone archway with baroque pilasters separates the nave from the apse, where the altar lies. A blind arcade filled with statuary and other works of art lines the interior walls of the nave. A series of clerestory windows in the walls of the nave, and a single window just above the portal of the north façade, allow light into the interior. The wooden rafters of the pitched roof are exposed. A stone hatch in the floor, located near the church entrance, leads to a crypt. Father Adriano had never been to the crypt and was unsure how to access it. The church's north facade has a central portal framed in stone, above which rests a clerestory window. The building's corners are articulated by masonry quoins. One of the church’s notable features is the Greek key design carved into the stone ledge leading to the portal. A recent study by Professor Carmelo La Mancusa, Il Monastero di San Nicolò del Fico di Raccuja (Brolo: Armenio, 2016), hypothesizes that the construction of the convent dates to the Byzantine period, and therefore the structure existed prior to Roger I's conquest of the island. According to the comune's website, the church structure was privately owned until 1982 when ownership was transferred to the comune. Father Adriano believes that a restoration of the church was completed sometime in the 1950s, but was not sure of the exact date. The church is located in a seismic zone and seismic activity may pose a significant risk. The building and its environs are poorly maintained, and the church itself is infrequently visited. The roof of the abandoned connected structure has collapsed in on itself, and further degradation could impact the adjacent facade of the church.","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":"San Nicolò de Ficu","nsp_fieldVisit":"2019-09-19","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["43","93, 357, 369, 395, 396","730"],"nsp_notes":["","Scaduto suggests 1091 as the date of earliest attestation.","Giunta concurs with Scaduto, dating the earliest document to 1091."]},"nsp_hasLink":{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/53","skos_prefLabel":"Saint Nicholas of Fico"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"42","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Nicholas","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":[{"iri":"http://www.normansicily.org/cssi/assessment/35","cssi_description":"Interior left pilaster in archway leading to apse","cssi_rockType":"sandstone","cssi_assessmentDate":"2019-09-19","cssi_rockCoatingNotationNotes":"Low traffic interior ","cssi_naturalProcessType":"?","cssi_siteSettingScore":5,"cssi_weaknessScore":5,"cssi_largeErosionScore":2,"cssi_smallErosionScore":18,"cssi_rockCoatingsScore":7,"cssi_totalAssessmentScore":37,"cssi_otherConcernsScore":2,"cssi_grandTotalAssessmentScore":39,"cssi_assessedBy":{"foaf_familyName":"Wilson","foaf_givenName":"Max"},"cssi_hasRockCoatingNotation":{"droppings":"N","dustCoatings":"Y","ironFilm":"?","lithobionts":"N","pollution":"Y","rockVarnish":"?"}},{"iri":"http://www.normansicily.org/cssi/assessment/36","cssi_description":"North facade portal pilaster right","cssi_rockType":"sandstone","cssi_assessmentDate":"2019-09-19","cssi_rockCoatingNotationNotes":"Overgrown with plants","cssi_naturalProcessType":"?","cssi_siteSettingScore":9,"cssi_weaknessScore":16,"cssi_largeErosionScore":2,"cssi_smallErosionScore":22,"cssi_rockCoatingsScore":5,"cssi_totalAssessmentScore":54,"cssi_otherConcernsScore":4,"cssi_grandTotalAssessmentScore":58,"cssi_assessedBy":{"foaf_familyName":"Wilson","foaf_givenName":"Max"},"cssi_hasRockCoatingNotation":{"droppings":"N","dustCoatings":"Y","ironFilm":"Y","lithobionts":"Y","pollution":"Y","rockVarnish":"?"}}]}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_54.json b/public/data/place-details/monastery_54.json
new file mode 100644
index 0000000..55b6f8b
--- /dev/null
+++ b/public/data/place-details/monastery_54.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/54","nsp_id":"54","labels":["en,Saint Nicholas of Gurguro","it,San Nicola lo Gurguro"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Nicholas of Gurguro","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.13205,13.33561,10000d","http://www.geonames.org/2523920/palermo.html"],"wgs_lat":38.13205,"wgs_long":13.33561,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(13.33561 38.13205)"},"nsp_modernComune":"Palermo","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"No","wgs_alt":14,"nsp_seismicCode":"2","skos_altLabel":["Churchuro"," Churkaru"," Ci'irchuro"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-07","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":["San Nicolò lo Gurguro"," San Nicolò del Gurguro"],"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["43, 140, 164-165","151, 410, 411","729"],"nsp_notes":""},"nsp_hasLink":{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#5573231","skos_prefLabel":"Theodore of Antioch"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/54","skos_prefLabel":"Saint Nicholas of Gurguro"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"43","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Nicholas","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_55.json b/public/data/place-details/monastery_55.json
new file mode 100644
index 0000000..d352ebb
--- /dev/null
+++ b/public/data/place-details/monastery_55.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/55","nsp_id":"55","labels":["en,Saint Nicholas of Paternò","it,San Nicolò di Paternò"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Nicholas of Paternò","nsp_hasLocation":{"rdfs_seeAlso":["http://www.geonames.org/2523866/paterno.html","https://earth.google.com/web/@37.56675,14.90254,10000d"],"wgs_lat":37.56675,"wgs_long":14.90254,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.90254 37.56675)"},"nsp_modernComune":"Paternò","nsp_modernProvince":"Catania","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":225,"nsp_seismicCode":"2","skos_altLabel":["Bâtarnû"," Paternio"," Castrum Paternionis"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-02","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":"Saint Nicholas de Lombardis","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"43, 60, 115, 135, 136","nsp_notes":"\"In 1124 Count Henry of Paternò gave to the abbey of La Cava near Salerno the church of St. Nicholas near Paternò. This became a priory, later called St. Nicholas de Lombardis, but whether the Lombards were brought there by the monks of Cava or by Count Henry himself we do not know.\" (60) In June 1173 . . . Basil, son of Michael the Admiral, gave [Robert, Bishop of Catania] some fields 'in agro Symbacara.' In May of the next year he confirmed to the Basilian abbot Sabba the church of St. Nicholas across the river from Paternò, which had been given to Sabba by Geoffrey Secretus. The abbots of the monastery were to owe obedience to Catania, and their election was to be approved by the bishop.\" (115)"},"nsp_hasLink":[{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#61571938","skos_prefLabel":"Geoffrey Secretus"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/55","skos_prefLabel":"Saint Nicholas of Paternò"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"43","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/55","skos_prefLabel":"Saint Nicholas of Paternò"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/218","skos_prefLabel":"Holy Trinity at La Cava"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"136","nsp_notes":""}}],"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Nicholas","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_56.json b/public/data/place-details/monastery_56.json
new file mode 100644
index 0000000..ef55af1
--- /dev/null
+++ b/public/data/place-details/monastery_56.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/56","nsp_id":"56","labels":["en,Saint Nicholas of Pellera","it,San Nicola di Pellera"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Nicholas of Pellera","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.19394,15.55256,10000d","http://www.geonames.org/2523594/roccella-valdemone.html"],"wgs_lat":38.19394,"wgs_long":15.55256,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(15.55256 38.19394)"},"nsp_modernComune":"Roccella Valdemone","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":3,"nsp_seismicCode":"2","skos_altLabel":["Castrum Aurichelle"," Castrum Roccellae"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-04","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/QCQQZXJ9","http://zotero.org/groups/2199947/items/CDFDD2GL"],"nsp_pages":["45","43, 60, 115, 135, 136","975","146, 363 n. 30, 401, 421"],"nsp_notes":["\"The foundation of the great abbey of St. Savior in Lingua Phari at Messina by Roger II in 1131-34, and the organization of most of the Greek houses of Sicily under its archimandrite into a sort of congregation, has generally been regarded as the climax of the Hellenic renaissance in the Norman realm. But it was actually a desperate effort to check the dissolution of Count Roger I's work of restoration.\" White (n. 5) says that he has not been able to explain why certain ones remained independent of the abbey.","According to Pirri, this monastery was one of the communities that came under St. Savior's jurisdiction.",""]},"nsp_hasLink":[{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#78508863","skos_prefLabel":"Adelasia"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/56","skos_prefLabel":"Saint Nicholas of Pellera"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"43","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/56","skos_prefLabel":"Saint Nicholas of Pellera"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/68","skos_prefLabel":"Christ the Savior in Lingua Phari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/QCQQZXJ9","nsp_pages":"975","nsp_notes":""}}],"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Nicholas","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_57.json b/public/data/place-details/monastery_57.json
new file mode 100644
index 0000000..f2db7da
--- /dev/null
+++ b/public/data/place-details/monastery_57.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/57","nsp_id":"57","labels":["en,Saint Nicholas Regale","it,San Nicolò Regale"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Nicholas Regale","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.65359,12.58740,10000d","http://www.geonames.org/10376094/saint-nicolo-regale.html"],"wgs_lat":37.65359,"wgs_long":12.5874,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(12.58740 37.65359)"},"nsp_modernComune":"Mazara del Vallo","nsp_modernProvince":"Trapani","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"Yes","wgs_alt":2,"nsp_seismicCode":"2","skos_altLabel":["Mâzar"," Castrum Maczarie"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":"Saint Nicholas de Regali","nsp_fieldVisit":["2015-08-01","2016-07-01"],"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"41, 43","nsp_notes":"White admits this community to his list of Basilian monasteries based on architectural, rather than documentary, grounds. (41)"},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Nicholas","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_58.json b/public/data/place-details/monastery_58.json
new file mode 100644
index 0000000..5505b5e
--- /dev/null
+++ b/public/data/place-details/monastery_58.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/58","nsp_id":"58","labels":["en,Saint Nicholas of Ysa","it,San Nicola di Ysa"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Nicholas of Ysa","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.58761,13.29048,10000d","http://www.geonames.org/2522762/villafranca-sicula.html"],"wgs_lat":37.58761,"wgs_long":13.29048,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(13.29048 37.58761)"},"nsp_modernComune":"Villafranca Sicula","nsp_modernProvince":"Agrigento","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"No","wgs_alt":330,"nsp_seismicCode":"2"},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2019-06-29","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1131","nsp_minYear":"1131","nsp_maxYear":"1131"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/QCQQZXJ9","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6","http://zotero.org/groups/2199947/items/NZCQ4L83"],"nsp_pages":["43, 45","975","99, 399","730","93"],"nsp_notes":["\"The foundation of the great abbey of St. Savior in Lingua Phari at Messina by Roger II in 1131-34, and the organization of most of the Greek houses of Sicily under its archimandrite into a sort of congregation, has generally been regarded as the climax of the Hellenic renaissance in the Norman realm. But it was actually a desperate effort to check the dissolution of Count Roger I's work of restoration.\" White (n. 5) says that he has not been able to explain why certain ones remained independent of the abbey. (45)","According to Pirri, this monastery was one of the communities that came under St. Savior's jurisdiction.","","Whereas White and Scaduto place the date of first attestation at 1131, Giunta lists it as 1191. The monastery's location in Villafranca Sicula is taken from Giunta; neither White nor Scaduto place in geographically. Scaduto writes: \"Di S. Nicolò di Ise non ci è possibile stabilire il sito. Il Pirri si limita riferire l'opinione di coloro che lo dicevano ora nel territorio di Gesso e ora in quello di Ucría.\" (399)","Santagati (s.v. \"Gesso\") places Ysa 9 kilometers (approximately 5.5 miles) northwest of Messina. This identification (and Pirri's comment) may give us some reason to reconsider the placement of this monastery in the province of Agrigento."]},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/58","skos_prefLabel":"Saint Nicholas of Ysa"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/68","skos_prefLabel":"Christ the Savior in Lingua Phari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/QCQQZXJ9","nsp_pages":"975","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Nicholas","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_59.json b/public/data/place-details/monastery_59.json
new file mode 100644
index 0000000..a7bbaf5
--- /dev/null
+++ b/public/data/place-details/monastery_59.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/59","nsp_id":"59","labels":["en,Saint Pancras of Saint Fratello","it,San Pancrazio di San Fratello"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Pancras of Saint Fratello","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.03318,14.59712,10000d","http://www.geonames.org/2523487/san-fratello.html"],"wgs_lat":38.03318,"wgs_long":14.59712,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(14.59712 38.03318)"},"nsp_modernComune":"San Fratello","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"Yes","wgs_alt":706,"nsp_seismicCode":"2","skos_altLabel":["San Filadelfo"," San Filadelfio"," Philadelphos"," Filad.nt"," Filadalf"," Filadelfus"," Castrum Sancti Filadelli"," Castrum Sancti Filodelli"," Philatellus"," Filadellus"," Fradellus"," Tre Santi"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2019-06-29","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_fieldVisit":"2016-07-16","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1131","nsp_minYear":"1131","nsp_maxYear":"1131"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["43, 45","75, 93","730"],"nsp_notes":["","Although White (43) and Scaduto (93) date the earliest record for this monastery to 1131, Giunta lists it as 1104."]},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Pancras","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_6.json b/public/data/place-details/monastery_6.json
new file mode 100644
index 0000000..0324517
--- /dev/null
+++ b/public/data/place-details/monastery_6.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/6","nsp_id":"6","labels":["en,Saint Sophia of Vicari","it,Santa Sophia di Vicari"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Sophia of Vicari","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.82371,13.56889,10000d","http://www.geonames.org/2522774/vicari.html"],"wgs_lat":37.82371,"wgs_long":13.56889,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(13.56889 37.82371)"},"nsp_modernComune":"Vicari","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"No","wgs_alt":700,"nsp_seismicCode":"2","skos_altLabel":["Biccari"," Bikû"," Boico"," Biccarum"," Castrum Biccari"]},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2019-07-02","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1120","nsp_minYear":"1120","nsp_maxYear":"1120"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/V7MNSAU3","http://zotero.org/groups/2199947/items/8D8GP7NX"],"nsp_pages":["4","88, 90, 94, 101-102, 250, 252, 277"],"nsp_notes":""},"nsp_hasLink":[{"nsp_role":"Secular Lord","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#40385734","skos_prefLabel":"Robert of Milia"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/6","skos_prefLabel":"Saint Sophia of Vicari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"88","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/6","skos_prefLabel":"Saint Sophia of Vicari"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/1","skos_prefLabel":"Saint Bartholomew of Lipari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"101-102","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/6","skos_prefLabel":"Saint Sophia of Vicari"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/2","skos_prefLabel":"Christ the Savior of Patti"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"101-102","nsp_notes":""}}],"nsp_probableStatus":"Priory","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Sophia","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_60.json b/public/data/place-details/monastery_60.json
new file mode 100644
index 0000000..801d43c
--- /dev/null
+++ b/public/data/place-details/monastery_60.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/60","nsp_id":"60","labels":["en,Saint Pantaleon of the Presbyter Scholarios","it,San Pantaleone del Presbitero Scholarios"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Pantaleon of the Presbyter Scholarios","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.19394,15.55256,10000d","http://www.geonames.org/2525529/bordonaro.html"],"wgs_lat":38.19394,"wgs_long":15.55256,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(15.55256 38.19394)"},"nsp_modernComune":"Messina","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":3,"nsp_seismicCode":"1","skos_altLabel":"Massîni"},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-07","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":"San Salvatore di Bordonaro","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/QCQQZXJ9","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6","http://zotero.org/groups/2199947/items/IGQPVPAG"],"nsp_pages":["43, 45, 70","975","116-122, 119, 121, 225 f., 301, 431","730","col. 1202"],"nsp_notes":["\"The foundation of the great abbey of St. Savior in Lingua Phari at Messina by Roger II in 1131-34, and the organization of most of the Greek houses of Sicily under its archimandrite into a sort of congregation, has generally been regarded as the climax of the Hellenic renaissance in the Norman realm. But it was actually a desperate effort to check the dissolution of Count Roger I's work of restoration.\" White (n. 5) says that he has not been able to explain why certain ones remained independent of the abbey. (45)","According to Pirri, this monastery was not one of the communities that came under St. Savior's jurisdiction.","","See White, Latin Monasticism, for a discussion of the limitations of this source. (40)"]},"nsp_hasLink":{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#63006682","skos_prefLabel":"Scholarios"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/60","skos_prefLabel":"Saint Pantaleon of the Presbyter Scholarios"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"43","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Pantaleon","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_61.json b/public/data/place-details/monastery_61.json
new file mode 100644
index 0000000..4c65523
--- /dev/null
+++ b/public/data/place-details/monastery_61.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/61","nsp_id":"61","labels":["en,Saint Peter of Deca","it,San Pietro di Deca"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Peter of Deca","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.08523,14.68684,10000d","http://www.geonames.org/2522900/torrenova.html","http://www.medioevosicilia.eu/markIII/monastero-di-san-pietro-di-deca/"],"wgs_lat":38.08523,"wgs_long":14.68684,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.68684 38.08523)"},"nsp_modernComune":"Torrenova","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"Yes","wgs_alt":88,"nsp_seismicCode":"2"},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2019-06-29","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":"San Pietro di Voca","nsp_fieldVisit":"2016-07-16","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1131","nsp_minYear":"1131","nsp_maxYear":"1131"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/QCQQZXJ9","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6","http://zotero.org/groups/2199947/items/IGQPVPAG"],"nsp_pages":["43, 45","975","105, 108, 363, 400","730","col. 1203"],"nsp_notes":["\"The foundation of the great abbey of St. Savior in Lingua Phari at Messina by Roger II in 1131-34, and the organization of most of the Greek houses of Sicily under its archimandrite into a sort of congregation, has generally been regarded as the climax of the Hellenic renaissance in the Norman realm. But it was actually a desperate effort to check the dissolution of Count Roger I's work of restoration.\" White (n. 5) says that he has not been able to explain why certain ones remained independent of the abbey. (45)","According to Pirri, this monastery was one of the communities that came under St. Savior's jurisdiction.","","Although Giunta locates this monastery in San Marco d'Alunzio (730), it is more accurately located in Torrenova.","See White, Latin Monasticism, for a discussion of the limitations of this source. (40)"]},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/61","skos_prefLabel":"Saint Peter of Deca"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/68","skos_prefLabel":"Christ the Savior in Lingua Phari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/QCQQZXJ9","nsp_pages":"975","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Peter","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_62.json b/public/data/place-details/monastery_62.json
new file mode 100644
index 0000000..26423b2
--- /dev/null
+++ b/public/data/place-details/monastery_62.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/62","nsp_id":"62","labels":["en,Saint Peter of Largo Flumine","it,San Pietro di Largo Fiumine"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Peter of Largo Flumine","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.19394,15.55256,10000d","http://www.geonames.org/2524170/messina.html"],"wgs_lat":38.19394,"wgs_long":15.55256,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(15.55256 38.19394)"},"nsp_modernComune":"Messina","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":3,"nsp_seismicCode":"1","skos_altLabel":"Massîni"},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-05","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":["San Pietro di Largoflumine"," San Pietro de Largo Flumine"],"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1131","nsp_minYear":"1131","nsp_maxYear":"1131"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/QCQQZXJ9","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["43, 45","975","186","729"],"nsp_notes":["\"The foundation of the great abbey of St. Savior in Lingua Phari at Messina by Roger II in 1131-34, and the organization of most of the Greek houses of Sicily under its archimandrite into a sort of congregation, has generally been regarded as the climax of the Hellenic renaissance in the Norman realm. But it was actually a desperate effort to check the dissolution of Count Roger I's work of restoration.\" White (n. 5) says that he has not been able to explain why certain ones remained independent of the abbey. (45)","According to Pirri, this monastery was one of the communities that came under St. Savior's jurisdiction.","","Giunta locates this house in Messina. His first date of attestation is 1134, three years later than White."]},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/62","skos_prefLabel":"Saint Peter of Largo Flumine"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/68","skos_prefLabel":"Christ the Savior in Lingua Phari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/QCQQZXJ9","nsp_pages":"975","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Peter","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_63.json b/public/data/place-details/monastery_63.json
new file mode 100644
index 0000000..87c1c30
--- /dev/null
+++ b/public/data/place-details/monastery_63.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/63","nsp_id":"63","labels":["en,Saints Peter and Paul of Agrò","it,Santi Pietro e Paolo d'Agrò"],"nsp_placeType":"monastery","skos_prefLabel":"Saints Peter and Paul of Agrò","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.94708,15.30841,10000d","http://www.geonames.org/2525251/casalvecchio-siculo.html","http://www.medioevosicilia.eu/markIII/monastero-dei-ss-pietro-e-paolo-presso-casalvecchio-siculo/"],"wgs_lat":37.94708,"wgs_long":15.30841,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(15.30841 37.94708)"},"nsp_modernComune":"Casalvecchio Siculo","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"Yes","wgs_alt":142,"nsp_seismicCode":"2","skos_altLabel":["Palachorion"," Calatabiet"," Calatabieth"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-06-29","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_fieldVisit":["2014-07-01","2017-07-13"],"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1115","nsp_minYear":"1115","nsp_maxYear":"1115"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/QCQQZXJ9","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["43, 44, 45, 72","975","75, 149-151, 188, 262, 274-275 n. 73, 335, 357, 365","730"],"nsp_notes":["\"The foundation of the great abbey of St. Savior in Lingua Phari at Messina by Roger II in 1131-34, and the organization of most of the Greek houses of Sicily under its archimandrite into a sort of congregation, has generally been regarded as the climax of the Hellenic renaissance in the Norman realm. But it was actually a desperate effort to check the dissolution of Count Roger I's work of restoration.\" White (n. 5) says that he has not been able to explain why certain ones remained independent of the abbey. (45)","According to Pirri, this monastery was not one of the communities that came under St. Savior's jurisdiction.","Scaduto dates the monastety's foundation to 1116. (75)","Giunta lists the date of earliest attestation at 1114 and locates the monastery in Forza d'Agrò even though it is more accurately located in Casalvecchio Siculo. (730) He lists as a source Cyril Korolevskij, Basiliens italo-grecs et espagnoles, Dictionnaire d’histoire et de géographie ecclésiastiques, vol. VI (Paris: 1932), cols. 1180-1236 (at 1203). See White's discussion of the limitations of this source. (40)"]},"nsp_hasLink":{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i97285789","skos_prefLabel":"Roger II of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/63","skos_prefLabel":"Saints Peter and Paul of Agrò"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"43","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Peter, Saint Paul","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":[{"iri":"http://www.normansicily.org/cssi/assessment/7","cssi_description":"Left exterior doorway portico","cssi_rockType":"granitic and volcanic","cssi_assessmentDate":"2017-07-13","cssi_rockCoatingNotationNotes":"N/A","cssi_naturalProcessType":"seismic, hillslope","cssi_siteSettingScore":7,"cssi_weaknessScore":3,"cssi_largeErosionScore":2,"cssi_smallErosionScore":4,"cssi_rockCoatingsScore":1,"cssi_totalAssessmentScore":17,"cssi_otherConcernsScore":2,"cssi_grandTotalAssessmentScore":19,"cssi_assessedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":"http://www.dawnmariehayes.org/"},"cssi_hasRockCoatingNotation":{"droppings":"N","dustCoatings":"N","ironFilm":"N","lithobionts":"Y","pollution":"N","rockVarnish":"N"}},{"iri":"http://www.normansicily.org/cssi/assessment/8","cssi_description":"Right exterior doorway portico","cssi_rockType":"granitic and volcanic","cssi_assessmentDate":"2017-07-13","cssi_rockCoatingNotationNotes":"N/A","cssi_naturalProcessType":"seismic, hillslope","cssi_siteSettingScore":4,"cssi_weaknessScore":5,"cssi_largeErosionScore":2,"cssi_smallErosionScore":11,"cssi_rockCoatingsScore":2,"cssi_totalAssessmentScore":24,"cssi_otherConcernsScore":3,"cssi_grandTotalAssessmentScore":27,"cssi_assessedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Joseph","foaf_mbox":"mailto:joephayes@gmail.com"},"cssi_hasRockCoatingNotation":{"droppings":"N","dustCoatings":"?","ironFilm":"N","lithobionts":"Y","pollution":"?","rockVarnish":"N"}},{"iri":"http://www.normansicily.org/cssi/assessment/9","cssi_description":"Left doorway arch","cssi_rockType":"granitic and volcanic","cssi_assessmentDate":"2017-07-13","cssi_rockCoatingNotationNotes":"sandstone blocks most weathered","cssi_naturalProcessType":"seismic, hillslope","cssi_siteSettingScore":8,"cssi_weaknessScore":7,"cssi_largeErosionScore":5,"cssi_smallErosionScore":17,"cssi_rockCoatingsScore":2,"cssi_totalAssessmentScore":39,"cssi_otherConcernsScore":3,"cssi_grandTotalAssessmentScore":42,"cssi_assessedBy":{"foaf_familyName":"Pope","foaf_givenName":"Greg"},"cssi_hasRockCoatingNotation":{"droppings":"N","dustCoatings":"N","ironFilm":"Y","lithobionts":"N","pollution":"?","rockVarnish":"Y"}},{"iri":"http://www.normansicily.org/cssi/assessment/10","cssi_description":"Inside 2nd granite column on left","cssi_rockType":"granitic","cssi_assessmentDate":"2017-07-13","cssi_rockCoatingNotationNotes":"granodiorite w/ sandstone and volcanic capitols","cssi_naturalProcessType":"seismic, hillslope","cssi_siteSettingScore":4,"cssi_weaknessScore":4,"cssi_largeErosionScore":2,"cssi_smallErosionScore":9,"cssi_rockCoatingsScore":1,"cssi_totalAssessmentScore":20,"cssi_otherConcernsScore":2,"cssi_grandTotalAssessmentScore":22,"cssi_assessedBy":{"foaf_familyName":"Pope","foaf_givenName":"Greg"},"cssi_hasRockCoatingNotation":{"droppings":"N","dustCoatings":"N","ironFilm":"N","lithobionts":"N","pollution":"?","rockVarnish":"N"}}]}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_64.json b/public/data/place-details/monastery_64.json
new file mode 100644
index 0000000..88e8894
--- /dev/null
+++ b/public/data/place-details/monastery_64.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/64","nsp_id":"64","labels":["en,Saints Peter and Paul of Italà","it,Santi Pietro e Paolo di Italà"],"nsp_placeType":"monastery","skos_prefLabel":"Saints Peter and Paul of Italà","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.04648,15.44042,10000d","http://www.geonames.org/2524492/itala.html","http://www.medioevosicilia.eu/markIII/monastero-dei-ss-pietro-e-paolo-di-itala/"],"wgs_lat":38.04648,"wgs_long":15.44042,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(15.44042 38.04648)"},"nsp_modernComune":"Itala","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"Yes","wgs_alt":240,"nsp_seismicCode":"1","skos_altLabel":"Gitala"},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-03","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_fieldVisit":"2014-07-01","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1092","nsp_minYear":"1092","nsp_maxYear":"1092"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/QCQQZXJ9","http://zotero.org/groups/2199947/items/CDFDD2GL"],"nsp_pages":["43, 45","975","85 f., 357, 388"],"nsp_notes":["\"The foundation of the great abbey of St. Savior in Lingua Phari at Messina by Roger II in 1131-34, and the organization of most of the Greek houses of Sicily under its archimandrite into a sort of congregation, has generally been regarded as the climax of the Hellenic renaissance in the Norman realm. But it was actually a desperate effort to check the dissolution of Count Roger I's work of restoration.\" White (n. 5) says that he has not been able to explain why certain ones remained independent of the abbey. ","According to Pirri, this monastery was not one of the communities that came under St. Savior's jurisdiction.",""]},"nsp_hasLink":{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/64","skos_prefLabel":"Saints Peter and Paul of Italà"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"43","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Peter, Saint Paul","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_65.json b/public/data/place-details/monastery_65.json
new file mode 100644
index 0000000..0da5cb5
--- /dev/null
+++ b/public/data/place-details/monastery_65.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/65","nsp_id":"65","labels":["en,Saint Philip of Fragalà","it,San Filippo di Fragalà"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Philip of Fragalà","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.05817,14.74469,10000d","http://www.geonames.org/2524698/frazzano.html","http://www.medioevosicilia.eu/markIII/monastero-di-san-filippo-di-demenna/"],"wgs_lat":38.05817,"wgs_long":14.74469,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(14.74469 38.05817)"},"nsp_modernComune":"Frazzanò","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"Yes","wgs_alt":732,"nsp_seismicCode":"2","skos_altLabel":["Frasano"," Flacianò"," Frasino"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-05","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":["San Filippo di Demenna"," San Filippo di Demena"],"nsp_fieldVisit":"2014-07-01","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1090","nsp_minYear":"1090","nsp_maxYear":"1090"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/QCQQZXJ9","http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6","http://zotero.org/groups/2199947/items/V7MNSAU3","http://zotero.org/groups/2199947/items/3V84RGWL","http://zotero.org/groups/2199947/items/IGQPVPAG"],"nsp_pages":["975","28, 35, 36, 43, 45, 145 n. 5, 148, 214 n. 4, 215","102, 103, 105 (including n. 133), 113, 297, 304, 357, 401","730","385-387, 389-390","191-196","col. 1198"],"nsp_notes":["According to Pirri, this monastery was not one of the communities that came under St. Savior's jurisdiction.","\"The foundation of the great abbey of St. Savior in Lingua Phari at Messina by Roger II in 1131-34, and the organization of most of the Greek houses of Sicily under its archimandrite into a sort of congregation, has generally been regarded as the climax of the Hellenic renaissance in the Norman realm. But it was actually a desperate effort to check the dissolution of Count Roger I's work of restoration.\" White (n. 5) says that he has not been able to explain why certain ones remained independent of the abbey. (45)","","A Greek-language document records that Count Roger I permits the monastery of San Filippo di Fragalà to reconstruct the church of San Talleleo in 1091. (385-387) A Greek-language document records (among other things) that Count Roger I gives permission to Abbot Gregory of San Filippo di Fragalà to cut wood from Mount Sant'Ippolito for the construction of houses. The year is 1094. (389-390)","A Greek-language document (Spata includes an Italian-language translation) records (among other things) that Countess Adelasia allows the monastery of San Filippo di Fragalà the right to build mills on the Panagia River. \"... al fiume di Panagia aver voi libertà di far molini per sostentamento e somministrazione del santo monastero.\" The year is 1101.","See White's discussion of the limitations of this source. (40)"]},"nsp_hasLink":[{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/65","skos_prefLabel":"Saint Philip of Fragalà"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/V7MNSAU3","nsp_pages":"43","nsp_notes":""}},{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/65","skos_prefLabel":"Saint Philip of Fragalà"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/V7MNSAU3","nsp_pages":"385","nsp_notes":""}},{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/65","skos_prefLabel":"Saint Philip of Fragalà"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/V7MNSAU3","nsp_pages":"389-390","nsp_notes":""}},{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/65","skos_prefLabel":"Saint Philip of Fragalà"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"43","nsp_notes":""}},{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/65","skos_prefLabel":"Saint Philip of Fragalà"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"385","nsp_notes":""}},{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/65","skos_prefLabel":"Saint Philip of Fragalà"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"389-390","nsp_notes":""}},{"nsp_role":"Secular Lord","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/65","skos_prefLabel":"Saint Philip of Fragalà"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/V7MNSAU3","nsp_pages":"43","nsp_notes":""}},{"nsp_role":"Secular Lord","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/65","skos_prefLabel":"Saint Philip of Fragalà"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/V7MNSAU3","nsp_pages":"385","nsp_notes":""}},{"nsp_role":"Secular Lord","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/65","skos_prefLabel":"Saint Philip of Fragalà"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/V7MNSAU3","nsp_pages":"389-390","nsp_notes":""}},{"nsp_role":"Secular Lord","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/65","skos_prefLabel":"Saint Philip of Fragalà"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"43","nsp_notes":""}},{"nsp_role":"Secular Lord","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/65","skos_prefLabel":"Saint Philip of Fragalà"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"385","nsp_notes":""}},{"nsp_role":"Secular Lord","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/65","skos_prefLabel":"Saint Philip of Fragalà"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"389-390","nsp_notes":""}},{"nsp_role":"Secular Lord","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i3215194","skos_prefLabel":"Adelasia del Vasto"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/65","skos_prefLabel":"Saint Philip of Fragalà"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/3V84RGWL","nsp_pages":"191-196","nsp_notes":""}}],"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Philip","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_66.json b/public/data/place-details/monastery_66.json
new file mode 100644
index 0000000..2158670
--- /dev/null
+++ b/public/data/place-details/monastery_66.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/66","nsp_id":"66","labels":["en,Saint Philip the Great","it,San Filippo Magno"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Philip the Great","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.16549,15.50075,10000d","http://www.geonames.org/2523492/san-filippo-superiore.html"],"wgs_lat":38.16549,"wgs_long":15.50075,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(15.50075 38.16549)"},"nsp_modernComune":"San Filippo Superiore?","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone?","nsp_locationHighLoc":"No","wgs_alt":240,"nsp_seismicCode":"1"},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-02","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":"San Filippo Superiore","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1100","nsp_minYear":"1100","nsp_maxYear":"1100"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6","http://zotero.org/groups/2199947/items/IGQPVPAG"],"nsp_pages":["43, 214 n. 4","95, 357, 366, 369, 377-78, 397","730","col. 1198"],"nsp_notes":["","See White's discussion of the limitations of this source. (40)"]},"nsp_hasLink":{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/66","skos_prefLabel":"Saint Philip the Great"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"43","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Philip","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_67.json b/public/data/place-details/monastery_67.json
new file mode 100644
index 0000000..c82e3a5
--- /dev/null
+++ b/public/data/place-details/monastery_67.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/67","nsp_id":"67","labels":["en,Saint Philip of Saint Lucy","it,San Filippo di Santa Lucia"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Philip of Saint Lucy","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.14408,15.28055,10000d","http://www.geonames.org/2523333/santa-lucia-del-mela.html"],"wgs_lat":38.14408,"wgs_long":15.28055,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(15.28055 38.14408)"},"nsp_modernComune":"Santa Lucia del Mela","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":215,"nsp_seismicCode":"2","skos_altLabel":["Santa Lucia del Mela"," Castrum Maccaruni"," Castrum Sanctae Luciae"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["43, 45, 98, 99, 214 n. 4, 246","93, 75, 356, 369","730"],"nsp_notes":["\"In 1180 St. Philip's of Santa Lucia was still inhabited, and ruled by an abbot; eight years later it was the living of Master Benedict, the royal chaplain.\" (45)","Scaduto places its date of earliest document at 1180 (93), much later than White (43).","Giunta repeats Scaduto's date of earliest document."]},"nsp_hasLink":{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/67","skos_prefLabel":"Saint Philip of Saint Lucy"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"43","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Philip","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_68.json b/public/data/place-details/monastery_68.json
new file mode 100644
index 0000000..523cbe0
--- /dev/null
+++ b/public/data/place-details/monastery_68.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/68","nsp_id":"68","labels":["en,Christ the Savior in Lingua Phari","it,Santissimo Salvatore in Lingua Phari"],"nsp_placeType":"monastery","skos_prefLabel":"Christ the Savior in Lingua Phari","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.19394,15.55256,10000d","http://www.geonames.org/2524170/messina.html","http://www.medioevosicilia.eu/markIII/fortezza-del-san-salvatore-di-messinafortezza-del-san-salvatore-di-messina/"],"wgs_lat":38.19394,"wgs_long":15.55256,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(15.55256 38.19394)"},"nsp_modernComune":"Messina","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":3,"nsp_seismicCode":"1","skos_altLabel":"Massîni"},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"The monastery had been converted into a fortress by Charles V in the 1540s. The twelfth-century monastery was completely destroyed by the explosion of a powder magazine. After some time, the monks were relocated to a new location in 1573, a complex in the Baroque style situated in the Charybdis neighborhood.","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":"Archimandritato del Santissimo Salvatore","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1131","nsp_minYear":"1131","nsp_maxYear":"1131"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6","http://zotero.org/groups/2199947/items/TAE6TTW4","http://zotero.org/groups/2199947/items/A5M8IAXB","http://zotero.org/groups/2199947/items/8D8GP7NX"],"nsp_pages":["175, 180, 301-302, 361, 362, 426, 428, 501 (see also \"Archimandria di Sicilia\" in index) ","729","470","144","33 n. 7, 40, 43, 45-46, 70-71, 112, 113, 139 n. 8, 187 n. 2, 259"],"nsp_notes":["Scaduto believes that this monastery and Santissimo Salvatore di Messina were one and the same. (501)","","\"The foundation of the great abbey of St. Savior in Lingua Phari at Messina by Roger II in 1131-34, and the organization of most of the Greek houses of Sicily under its archimandrite into a sort of congregation, has generally been regarded as the climax of the Hellenic renaissance in the Norman realm. But it was actually a desperate effort to check the dissolution of Count Roger I's work of restoration.\" White (n. 5) says that he has not been able to explain why certain ones remained independent of the abbey. (45)"]},"nsp_hasLink":[{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i97285789","skos_prefLabel":"Roger II of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/68","skos_prefLabel":"Christ the Savior in Lingua Phari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/TAE6TTW4","nsp_pages":"470","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/13","skos_prefLabel":"Saint Anne of Monforte"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/68","skos_prefLabel":"Christ the Savior in Lingua Phari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/QCQQZXJ9","nsp_pages":"975","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/15","skos_prefLabel":"Saint Barbarus of Dimenna"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/68","skos_prefLabel":"Christ the Savior in Lingua Phari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/QCQQZXJ9","nsp_pages":"975","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/21","skos_prefLabel":"Saint Elias of Scala Oliverii"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/68","skos_prefLabel":"Christ the Savior in Lingua Phari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/QCQQZXJ9","nsp_pages":"975","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/28","skos_prefLabel":"Saint James of Calò"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/68","skos_prefLabel":"Christ the Savior in Lingua Phari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/QCQQZXJ9","nsp_pages":"975","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/30","skos_prefLabel":"Saint John of Psichro"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/68","skos_prefLabel":"Christ the Savior in Lingua Phari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/QCQQZXJ9","nsp_pages":"975","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/31","skos_prefLabel":"Saint Leo of Messina"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/68","skos_prefLabel":"Christ the Savior in Lingua Phari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/QCQQZXJ9","nsp_pages":"975","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/38","skos_prefLabel":"Saint Mary of Mallimachi"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/68","skos_prefLabel":"Christ the Savior in Lingua Phari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/QCQQZXJ9","nsp_pages":"975","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/46","skos_prefLabel":"Saint Mercurius of Troina"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/68","skos_prefLabel":"Christ the Savior in Lingua Phari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/QCQQZXJ9","nsp_pages":"975","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/51","skos_prefLabel":"Saint Nicander of San Nicone"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/68","skos_prefLabel":"Christ the Savior in Lingua Phari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/QCQQZXJ9","nsp_pages":"975","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/52","skos_prefLabel":"Saint Nicholas of Canneto"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/68","skos_prefLabel":"Christ the Savior in Lingua Phari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"122","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/56","skos_prefLabel":"Saint Nicholas of Pellera"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/68","skos_prefLabel":"Christ the Savior in Lingua Phari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/QCQQZXJ9","nsp_pages":"975","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/58","skos_prefLabel":"Saint Nicholas of Ysa"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/68","skos_prefLabel":"Christ the Savior in Lingua Phari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/QCQQZXJ9","nsp_pages":"975","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/61","skos_prefLabel":"Saint Peter of Deca"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/68","skos_prefLabel":"Christ the Savior in Lingua Phari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/QCQQZXJ9","nsp_pages":"975","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/62","skos_prefLabel":"Saint Peter of Largo Flumine"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/68","skos_prefLabel":"Christ the Savior in Lingua Phari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/QCQQZXJ9","nsp_pages":"975","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/73","skos_prefLabel":"Saint Steven of Messina"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/68","skos_prefLabel":"Christ the Savior in Lingua Phari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/QCQQZXJ9","nsp_pages":"975","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/74","skos_prefLabel":"Saint Theodore of Milazzo"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/68","skos_prefLabel":"Christ the Savior in Lingua Phari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/QCQQZXJ9","nsp_pages":"975","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/77","skos_prefLabel":"Saint Venera of Vanella"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/68","skos_prefLabel":"Christ the Savior in Lingua Phari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/QCQQZXJ9","nsp_pages":"975","nsp_notes":""}}],"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Christ","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_7.json b/public/data/place-details/monastery_7.json
new file mode 100644
index 0000000..1096f3c
--- /dev/null
+++ b/public/data/place-details/monastery_7.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/7","nsp_id":"7","labels":["en,Saint Mary of Tusa","it,Santa Maria di Tusa"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of Tusa","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.98385,14.23606,10000d","http://www.geonames.org/2522839/tusa.html"],"wgs_lat":37.98385,"wgs_long":14.23606,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.23606 37.98385)"},"nsp_modernComune":"Tusa","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":614,"nsp_seismicCode":"2","skos_altLabel":["Tusia"," Tuz'ah"," Tosa"," Castrum Maritimae Tusae"]},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2016-07-07","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":["Santa Maria de Palatio"," Santa Maria Palatia"],"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1123","nsp_minYear":"1123","nsp_maxYear":"1123"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/QCQQZXJ9"],"nsp_pages":["94, 102-103, 250, 253","794, 837"],"nsp_notes":["White notes that Pirri suggests that this house was the same as Saint Mary \"de Palatio,\" located two miles from Tusa. (102 n. 8)",""]},"nsp_hasLink":[{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/7","skos_prefLabel":"Saint Mary of Tusa"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/1","skos_prefLabel":"Saint Bartholomew of Lipari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"102","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/7","skos_prefLabel":"Saint Mary of Tusa"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/2","skos_prefLabel":"Christ the Savior of Patti"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"102","nsp_notes":""}}],"nsp_probableStatus":"Priory","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_70.json b/public/data/place-details/monastery_70.json
new file mode 100644
index 0000000..75d69d7
--- /dev/null
+++ b/public/data/place-details/monastery_70.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/70","nsp_id":"70","labels":["en,Christ the Savior of Messina","it,Santissimo Salvatore di Messina"],"nsp_placeType":"monastery","skos_prefLabel":"Christ the Savior of Messina","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.19394,15.55256,10000d","http://www.geonames.org/2524170/messina.html"],"wgs_lat":38.19394,"wgs_long":15.55256,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(15.55256 38.19394)"},"nsp_modernComune":"Messina","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":3,"nsp_seismicCode":"1","skos_altLabel":"Massîni"},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2017-07-04","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":"San Salvatore Filantropo","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/7QPHAVE8","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6","http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/EYD3FKFC"],"nsp_pages":["168","156-157","729","43, 260-261","n. 594"],"nsp_notes":["","Date of earliest documentation given is 1308-1310.","Bishop Ivanus of Catania weighs in on a dispute between the Abbey of Santissimo Salvatore, Messina, and a church of Catania at Mascali. The abbey is allowed to build the mill so long as Catania's interests are not compromised. \". . . concessimus eis medietatem terre nostre quam iuxta molendinum nostrum habebamus pro descensu asinorum, et alia medietas terre ipsius remansit nobis, et ut habeant licentiam irrigare terram suam ab aqua desuper molendinum nostrum ita tamen ut molendinum nostrum non perdat suum molere, magis quam solet preterito tempore ante hanc concordiam. Hec omnia fuerunt facta inter nos, et illos tali conditione ut Ecclesia eorum de prefato molendino nostro nequaquam faciat nobis molestiam vel impedimentum.\" The year is 1144. (260-261) White suggests that this house may have existed before 1101. (43) "]},"nsp_hasLink":{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/70","skos_prefLabel":"Christ the Savior of Messina"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"43","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Female","nsp_subjectOfDedication":"Christ","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_71.json b/public/data/place-details/monastery_71.json
new file mode 100644
index 0000000..d8bc290
--- /dev/null
+++ b/public/data/place-details/monastery_71.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/71","nsp_id":"71","labels":["en,Christ the Savior of Palermo","it,Santissimo Salvatore di Palermo"],"nsp_placeType":"monastery","skos_prefLabel":"Christ the Savior of Palermo","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.11434,13.35885,10000d","http://www.geonames.org/10344717/chiesa-del-santissimo-salvatore.html"],"wgs_lat":38.11434,"wgs_long":13.35885,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(13.35885 38.11434)"},"nsp_modernComune":"Palermo","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"Yes","wgs_alt":18,"nsp_seismicCode":"2","skos_altLabel":["Bn.rm"," Balarm"," Balarmuh"," Bân.rm"," Panormus"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_fieldVisit":"2019-07-15","nsp_uncorroboratedInformation":{"nsp_content":"The guide given out at the church reads that the monastery was founded by Robert Guiscard in 1071, becoming one of the richest in Sicily. Nothing from the Norman structure survives, however, as a bombardment in 1943 destroyed whatever remained (which had been incorporated into a modern building which today hosts a school). It also reads that according to tradition, Empress Costanza, daughter of Roger II, may have been an abbess of this Basilian convent and that Santa Rosalia, Palermo's patron, may have also been a Basilian nun there; a bilingual inscription in Greek and Latin records the discovery of one of her books inside the church.","nsp_source":"Field Visit"},"nsp_earliestSurvivingRecord":{},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["41, 43, 125","161","729"],"nsp_notes":["White admits this to his list of Basilian monasteries based on architectural, rather than documentary, grounds. (41)","","Giunta lists the earliest record, which could also be the date of the monastery's foundation, as 1073."]},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Female","nsp_subjectOfDedication":"Christ","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_72.json b/public/data/place-details/monastery_72.json
new file mode 100644
index 0000000..0531ce9
--- /dev/null
+++ b/public/data/place-details/monastery_72.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/72","nsp_id":"72","labels":["en,Christ the Savior of Placa","it,Santissimo Salvatore della Placa"],"nsp_placeType":"monastery","skos_prefLabel":"Christ the Savior of Placa","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.91554,15.10063,10000d","http://www.geonames.org/2524707/francavilla-di-sicilia.html","http://www.medioevosicilia.eu/markIII/monastero-di-san-salvatore-della-placa-presso-francavilla-di-sicilia/"],"wgs_lat":37.91554,"wgs_long":15.10063,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(15.10063 37.91554)"},"nsp_modernComune":"Francavilla di Sicilia","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"Yes","wgs_alt":495,"nsp_seismicCode":"2"},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2019-06-28","nsp_recordStatus":"Reviewed","nsp_notes":"In September 2019, Max Wilson (B.A., architecture, Yale University) performed the field survey, CSSI assessments, and photographed the site. Max was accompanied by Dr. Roberto Motta and Carmelo Magaraci, who owns a hotel in the area and offered to guide the group. The remains of the monastery are located on a plateau in a rural area outside the town of Francavilla di Sicilia. One must park on the shoulder of the SS185 highway and walk west on an unmarked footpath that leads through private property to reach the plateau. The trip requires crossing over the San Paolo River, which at the time of the visit was dry, but which, according to Mr. Magaraci, can flood, rendering the site completely inaccessible. The site entrance is marked by a barbed wire fence with a makeshift gate that is difficult to open. There is a strenuous hike up and around the side of a hill through dense brush to the west side of the plateau. There are no regular hours posted online or at the site. One first approaches the western side of the facade where the remains of the two entrance portal structures stand. What remains of the south structure is a low wall. The north structure consists of a stone wall and the remnants of the four walls that would have made up an adjacent chamber. To the east of the west facade lie the remains of the palmento, which consist of several small stone archways that run north to south. To the east of the palmento, stands a stone wall with a regular pattern of pieces missing, which may indicate where windows once were, forming the outer wall of the monks' cells. Directly to the south of the cell structure stands the ruins of the chapel, which appear to have once been connected to the cells. To the west of the chapel, one finds a hollowed-out space in the ground with a stone bottom. The rough silhouette of a man is carved into the stone, indicating that the space may have once functioned as a tomb. On the southeast corner of the site, there is another large hole, which functioned as a cistern to capture and store rainwater. The site is located in a seismic zone and seismic activity may pose a significant risk to the structures. Droppings indicate animals are present at the site. There is no signage whatsoever, which may render the site vulnerable to trespassing and vandalism. A brief historical note: little is known about the community, which was abandoned in the 18th century.","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_fieldVisit":["2016-07-21","2019-09-10"],"nsp_uncorroboratedInformation":{"nsp_content":"The site of the former monastery consists of a series of stone ruins—remains of various freestanding buildings, some of which appear to have been connected at one point. It was difficult to verify the function of these structures, but Mr. Magaraci provided information on how he thought the various structures had been used. According to Mr. Magaraci, there are seven structures on the site: two portal structures on the western facade, a structure he referred to as a palmento—a space for storing and making wine, the monks' cells, a small chapel, a cistern, and a tomb.","nsp_source":"Field Visit"},"nsp_earliestSurvivingRecord":{"rdfs_label":"1092","nsp_minYear":"1092","nsp_maxYear":"1092"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/QCQQZXJ9","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6","http://zotero.org/groups/2199947/items/7QPHAVE8","http://zotero.org/groups/2199947/items/IGQPVPAG"],"nsp_pages":["43","975","83, 84 f., 357, 386","730","7-8","col. 1203"],"nsp_notes":["","According to Pirri, this monastery was not one of the communities that came under St. Savior's jurisdiction.","Count Roger I makes concessions to Abbot Chremete of Santissimo Salvatore della Placa for its support and construction as well as for arranging the monks' quarters. \"Cum istis omnibus examinatis per me prenominato Abbati Chremeti de Placa tibi tradidi ad Insulam istam talem in parvam vigesimam numerationem hominum Castrileonis, causa sublevandi templum Salvatoris ac ipsum reedificandi et ad monachorum residentiam ordinandi . . . .\" The year is 1092.","See White's discussion of the limitations of this source. (40)"]},"nsp_hasLink":{"nsp_role":"Secular Lord","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/72","skos_prefLabel":"Christ the Savior of Placa"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/7QPHAVE8","nsp_pages":"7-8","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Christ","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"iri":"http://www.normansicily.org/cssi/assessment/34","cssi_description":"Palemento, south facade","cssi_rockType":"?","cssi_assessmentDate":"2019-09-10","cssi_rockCoatingNotationNotes":"combiation of stone and brick with mortar ","cssi_naturalProcessType":"?","cssi_siteSettingScore":9,"cssi_weaknessScore":12,"cssi_largeErosionScore":7,"cssi_smallErosionScore":13,"cssi_rockCoatingsScore":10,"cssi_totalAssessmentScore":51,"cssi_otherConcernsScore":3,"cssi_grandTotalAssessmentScore":54,"cssi_assessedBy":{"foaf_familyName":"Wilson","foaf_givenName":"Max"},"cssi_hasRockCoatingNotation":{"droppings":"Y"}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_73.json b/public/data/place-details/monastery_73.json
new file mode 100644
index 0000000..e0058ef
--- /dev/null
+++ b/public/data/place-details/monastery_73.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/73","nsp_id":"73","labels":["en,Saint Steven of Messina","it,Santo Stefano di Messina"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Steven of Messina","nsp_hasLocation":{"rdfs_seeAlso":["http://www.geonames.org/2524170/messina.html","https://earth.google.com/web/@38.10082,15.47842,10000d","http://www.medioevosicilia.eu/markIII/monastero-di-santo-stefano-briga-o-briculo/"],"wgs_lat":38.10082,"wgs_long":15.47842,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(15.47842 38.10082)"},"nsp_modernComune":"Messina","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"Yes","wgs_alt":144,"nsp_seismicCode":"1","skos_altLabel":["Massîni"," Briga"," Briculo"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-03","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":"Santo Stefano di Briga","nsp_fieldVisit":"2016-07-16","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1134","nsp_minYear":"1134","nsp_maxYear":"1134"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/QCQQZXJ9","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["43, 45","975","99, 421","731"],"nsp_notes":["\"The foundation of the great abbey of St. Savior in Lingua Phari at Messina by Roger II in 1131-34, and the organization of most of the Greek houses of Sicily under its archimandrite into a sort of congregation, has generally been regarded as the climax of the Hellenic renaissance in the Norman realm. But it was actually a desperate effort to check the dissolution of Count Roger I's work of restoration.\" White (n. 5) says that he has not been able to explain why certain ones remained independent of the abbey. (45)","According to Pirri, this monastery was one of the communities that came under St. Savior's jurisdiction. It is not clear to us, though, what the relationship is between the \"S. Stephanus apud Messanam\" in this group and the \"S. Stephanus apud Mess.\" that is included in communities that remained independent.","Scaduto's date of earliest attestation is 1144, some 10 years later than White's. (99)","Giunta repeats 1144 as the date of earliest attestation."]},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/73","skos_prefLabel":"Saint Steven of Messina"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/68","skos_prefLabel":"Christ the Savior in Lingua Phari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/QCQQZXJ9","nsp_pages":"975","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Steven","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_74.json b/public/data/place-details/monastery_74.json
new file mode 100644
index 0000000..e8b84f4
--- /dev/null
+++ b/public/data/place-details/monastery_74.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/74","nsp_id":"74","labels":["en,Saint Theodore of Milazzo","it,San Teodoro di Milazzo"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Theodore of Milazzo","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.22008,15.24023,10000d","http://www.geonames.org/2524155/milazzo.html"],"wgs_lat":38.22008,"wgs_long":15.24023,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(15.24023 38.22008)"},"nsp_modernComune":"Milazzo","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":1,"nsp_seismicCode":"2","skos_altLabel":["Milâs"," Milatium"," Castrum Melacii"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1131","nsp_minYear":"1131","nsp_maxYear":"1131"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/QCQQZXJ9","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["43, 45","975","98, 102, 183, 186","731"],"nsp_notes":["\"The foundation of the great abbey of St. Savior in Lingua Phari at Messina by Roger II in 1131-34, and the organization of most of the Greek houses of Sicily under its archimandrite into a sort of congregation, has generally been regarded as the climax of the Hellenic renaissance in the Norman realm. But it was actually a desperate effort to check the dissolution of Count Roger I's work of restoration.\" White (n. 5) says that he has not been able to explain why certain ones remained independent of the abbey. (45)","According to Pirri, this monastery was one of the communities that came under St. Savior's jurisdiction.","Scaduto asserts that there is no documentation for this monastery until 1133 or later.","Giunta gives the date of earliest documentation as 1134, 3 years after the year provided by White."]},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/74","skos_prefLabel":"Saint Theodore of Milazzo"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/68","skos_prefLabel":"Christ the Savior in Lingua Phari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/QCQQZXJ9","nsp_pages":"975","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Theodore","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_75.json b/public/data/place-details/monastery_75.json
new file mode 100644
index 0000000..1a2f917
--- /dev/null
+++ b/public/data/place-details/monastery_75.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/75","nsp_id":"75","labels":["en,Saint Theodore of Mirto","it,San Teodoro di Mirto"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Theodore of Mirto","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.08439,14.74609,10000d","http://www.geonames.org/2524131/mirto.html"],"wgs_lat":38.08439,"wgs_long":14.74609,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.74609 38.08439)"},"nsp_modernComune":"Mirto","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":428,"nsp_seismicCode":"2","skos_altLabel":"Mertu"},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2019-07-02","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6","http://zotero.org/groups/2199947/items/GUIBPSBS"],"nsp_pages":["43","102, 110","731","166"],"nsp_notes":["","Scaduto locates the earliest record of this house at 1136, a bit later than White. (110)","Giunta concurs with Scaduto's 1136 date.","Reina concurs with Scaduto's 1136 date."]},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Theodore","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_76.json b/public/data/place-details/monastery_76.json
new file mode 100644
index 0000000..925a7c6
--- /dev/null
+++ b/public/data/place-details/monastery_76.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/76","nsp_id":"76","labels":["en,Holy Trinity of Delia","it,Santissima Trinità di Delia"],"nsp_placeType":"monastery","skos_prefLabel":"Holy Trinity of Delia","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.68589,12.75455,10000d","http://www.geonames.org/2525083/castelvetrano.html"],"wgs_lat":37.68589,"wgs_long":12.75455,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(12.75455 37.68589)"},"nsp_modernComune":"Castelvetrano","nsp_modernProvince":"Trapani","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"Yes","wgs_alt":150,"nsp_seismicCode":"2","skos_altLabel":["Qaṣr Ibn Mankud"," Bellumvidere Castle"," Palazzo Pignatelli"," Bellumvider Castle"," Castrum Vitranum"," Handag al daliyah"]},"nsp_updatedOn":"2019-12-06","nsp_createdOn":"2016-07-05","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_fieldVisit":"2015-08-15","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1392","nsp_minYear":"1392","nsp_maxYear":"1392"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/A5M8IAXB"],"nsp_pages":["36-37, 41, 43","59"],"nsp_notes":["White admits this to his list of Basilian monasteries based on architectural, rather than documentary, grounds. (41)","Di Stefano suggests a foundation between 1140 and 1160, leaning towards the earlier date."]},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Holy Trinity","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_77.json b/public/data/place-details/monastery_77.json
new file mode 100644
index 0000000..e166b5d
--- /dev/null
+++ b/public/data/place-details/monastery_77.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/77","nsp_id":"77","labels":["en,Saint Venera of Vanella","it,Santa Venera di Vanella"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Venera of Vanella","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.03090,15.21902,10000d","http://www.geonames.org/2525073/castro.html"],"wgs_lat":38.0309,"wgs_long":15.21902,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(15.21902 38.03090)"},"nsp_modernComune":"Castronovo di Sicilia","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"Yes","wgs_alt":401,"nsp_seismicCode":"2","skos_altLabel":["Baffia"," Vanellu"]},"nsp_updatedOn":"2021-01-25","nsp_createdOn":"2016-07-06","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":"Santa Parasceve di Vanella","nsp_fieldVisit":"2019-07-30","nsp_uncorroboratedInformation":{"nsp_content":"Having fallen victim to an earthquake, a flood and the post-Risorgimento sale of ecclesiastical lands that placed it in private hands to ultimately be used as farmland, little remains of the monastery of Santa Venera. Surrounded by hills and valleys and just a few feet away from the fiumara (seasonal river) of Santa Venera, Antonino Quattrocchi, a local historian who has done research on this foundation and has located the monastery near the modern town of Castroreale (see his Sui sentieri dei monaci di Vanella: i cenobiti italo-greci nella storia dei Peloritani (2017)), explained that the area was once heavily forested but that the trees were depleted in the fifteenth century to build houses for newly-formed comunes like Bafia. Not much of the structure remains visible. Continual heavy rains that lasted for over two weeks in January 1880 lead to landslides that left much of it buried. As of our July 2019 visit, only the upper windows remain aboveground. Unfortunately, lack of funding has prevented excavation to uncover what lies below the earth. It should also be noted that the site rests in private hands, located on a family estate. Mr. Quattrocchi argues that the visible structure is most likely a sixteenth-century refabrication of the Norman medieval building; indeed, a document from the 1500s describes the reconstruction of Santa Venera. The remains only became visible in 2009-2010, when another flood shifted the ground and laid the ruins bare. We would like to end with an expression of our deep gratitude to the current landowner for permitting us to visit the site as well as to Mr. Quattrocchi for his enthusiasm, knowledge and warm hospitality.","nsp_source":"Field Visit"},"nsp_earliestSurvivingRecord":{"rdfs_label":"1131","nsp_minYear":"1131","nsp_maxYear":"1131"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/QCQQZXJ9","http://zotero.org/groups/2199947/items/CDFDD2GL","http://zotero.org/groups/2199947/items/XN5REGM6","http://zotero.org/groups/2199947/items/IGQPVPAG","http://zotero.org/groups/2199947/items/6EHVAEBK"],"nsp_pages":["43, 45","975","100, 363","731","col. 1198","75-131"],"nsp_notes":["\"The foundation of the great abbey of St. Savior in Lingua Phari at Messina by Roger II in 1131-34, and the organization of most of the Greek houses of Sicily under its archimandrite into a sort of congregation, has generally been regarded as the climax of the Hellenic renaissance in the Norman realm. But it was actually a desperate effort to check the dissolution of Count Roger I's work of restoration.\" (45)","According to Pirri, this monastery was one of the communities that came under St. Savior's jurisdiction.","","See White's discussion of the limitations of this source. (40)"]},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/77","skos_prefLabel":"Saint Venera of Vanella"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/68","skos_prefLabel":"Christ the Savior in Lingua Phari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/QCQQZXJ9","nsp_pages":"975","nsp_notes":""}},"nsp_probableStatus":"UNKNOWN","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Venera","nsp_monasticIdentity":"Basilians","cssi_hasAssessment":[{"iri":"http://www.normansicily.org/cssi/assessment/42","cssi_description":"main entry portal","cssi_rockType":"schist","cssi_assessmentDate":"2019-07-30","cssi_rockCoatingNotationNotes":"Possibly rebuilt 1532-42. Reused terracotta tile in walls. ","cssi_naturalProcessType":"flood, landslide, seismic, fire","cssi_siteSettingScore":7,"cssi_weaknessScore":12,"cssi_largeErosionScore":6,"cssi_smallErosionScore":12,"cssi_rockCoatingsScore":0,"cssi_totalAssessmentScore":37,"cssi_otherConcernsScore":8,"cssi_grandTotalAssessmentScore":45,"cssi_assessedBy":{"foaf_familyName":"Pope","foaf_givenName":"Greg"},"cssi_hasRockCoatingNotation":{"droppings":"Y","dustCoatings":"N","ironFilm":"Y","lithobionts":"Y","pollution":"N","rockVarnish":"Y"}},{"iri":"http://www.normansicily.org/cssi/assessment/43","cssi_description":"Side wall door","cssi_rockType":"schist","cssi_assessmentDate":"2019-07-30","cssi_rockCoatingNotationNotes":"Possibly rebuilt 1532-42. Reused terracotta tile in walls. ","cssi_naturalProcessType":"flood, landslide, seismic, fire","cssi_siteSettingScore":7,"cssi_weaknessScore":11,"cssi_largeErosionScore":3,"cssi_smallErosionScore":11,"cssi_rockCoatingsScore":1,"cssi_totalAssessmentScore":33,"cssi_otherConcernsScore":8,"cssi_grandTotalAssessmentScore":41,"cssi_assessedBy":{"foaf_familyName":"Pope","foaf_givenName":"Greg"},"cssi_hasRockCoatingNotation":{"droppings":"N","dustCoatings":"N","ironFilm":"Y","lithobionts":"Y","pollution":"N","rockVarnish":"Y"}}]}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_78.json b/public/data/place-details/monastery_78.json
new file mode 100644
index 0000000..86d67e5
--- /dev/null
+++ b/public/data/place-details/monastery_78.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/78","nsp_id":"78","labels":["en,Saint Agatha of Catania","it,Sant'Agata di Catania"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Agatha of Catania","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.50700,15.08370,10000d","http://www.geonames.org/2525068/catania.html"],"wgs_lat":37.507,"wgs_long":15.0837,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(15.08370 37.50700)"},"nsp_modernComune":"Catania","nsp_modernProvince":"Catania","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"Yes","wgs_alt":63,"nsp_seismicCode":"2","skos_altLabel":["Cathania"," Qataniah"," Balad-al-Fil"," Qatâna"," Castello Ursino"]},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2019-06-28","nsp_recordStatus":"Reviewed","nsp_notes":"In September 2019, Max Wilson (B.A., architecture, Yale University) performed the field survey, CSSI assessments, and photographed the site. The church is located in the city center of Catania on a mixed residential and retail block named Via Santa Maddalena. The site stands on an incline, with views to the sea and the eastern expanse of Catania. In front of the church there is a small piazza named for the church, which functions as a parking lot. The church is accessible to visitors—locals and tourist alike—and keeps regular hours posted online and at the site. Guides stationed inside the church give tours for a small fee. The church is oriented along an east-west axis, with its main façade facing west towards Via Santa Maddalena. The church is surrounded on all sides by neighboring buildings. To the south stands a three-story building that may have originally functioned as the church’s cloister, but now appears to be a residential building. To the north stands a courtyard that connects to an adjoining building with residential and retail space. To the east, behind the apse, stands Chiesa Cattolica di Sant'Agata al Carcere. The building plan consists of a single nave with an apse. A small chapel is attached to the church's southern facade, which looks out onto a small walled-in courtyard. The church bell tower is located on top of the apse and is accessible with the permission of the guides. There is a large crypt with an ossuary and a room used for draining the blood of corpses called a colatoio. According to the guide, these rooms served the aristocratic men and women of Catania who wished to be laid to rest in the church. Adjacent to the crypt are the remains of a wall constructed during the Roman Empire, which have been excavated and conserved. The church's main feature is its façade of alternating light and dark stone—the hallmark of Catanese baroque architecture. The entry portal is articulated on either side by decorative pilasters in light stone, and above by a broken pediment. Pilasters also mark the corners of the facade and extend to the entablature, which is crowned by a triangular pediment also rendered in light stone. The baroque interior is relatively simple: white decorative molding frames the ornamental pilasters, clerestory windows, and arches. The barrel-vaulted ceiling is also painted white. The informational sign outside the central portal identifies the building as the former site of the monastery of Sant'Agata di Catania and its annexed abbey church, both of which were constructed in 1091. This original church was the first Norman cathedral in Sicily, though the bishopric was transferred three years later, in 1094, to its present location, the Catania Duomo, Cattedrale di Sant'Agata. The church was thus renamed La Vetere to distinguish it from the new Duomo.\nThe earthquake of 1693 destroyed the church, which was rebuilt in 1722. It was modified several times thereafter due to damage from subsequent earthquakes.\nThe informational sign suggests that the crypt was the only part of the building to survive the 1693 earthquake. This might indicate that there are Norman remains within the crypt, though the guide said there were none. In fact, when asked, the guide claimed erroneously that there had never been a Norman building on the site.\nThe church is located in a seismic zone and seismic activity still poses a significant risk. Pollution from cars parked in the piazza and traffic on the busy thoroughfare of Via Santa Maddalena may also pose a risk to the building's stone. Vandalism (which was present at the site), litter in and around the site, and generally poor maintenance also remain active threats.","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_fieldVisit":"2019-09-03","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1091","nsp_minYear":"1091","nsp_maxYear":"1091"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"43, 48, 53-55, 59-61, 63, 65-67, 69-71, 79, 89, 105-122, 142, 143","nsp_notes":""},"nsp_hasLink":[{"nsp_role":"Colonized By","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/78","skos_prefLabel":"Saint Agatha of Catania"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/180","skos_prefLabel":"Saint Euphemia"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"117","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/100","skos_prefLabel":"Saint Mary of Licodia (Summer Abbey)"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/78","skos_prefLabel":"Saint Agatha of Catania"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"121","nsp_notes":""}}],"nsp_probableStatus":"Abbey","nsp_probableGender":"Male","nsp_subjectOfDedication":"Christ, the Virgin Mary, Saint Agatha","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":[{"iri":"http://www.normansicily.org/cssi/assessment/31","cssi_description":"West facade, left pilaster of portal","cssi_rockType":"limestone","cssi_assessmentDate":"2019-09-05","cssi_rockCoatingNotationNotes":"high traffic area","cssi_naturalProcessType":"limestone weathering","cssi_siteSettingScore":9,"cssi_weaknessScore":16,"cssi_largeErosionScore":12,"cssi_smallErosionScore":28,"cssi_rockCoatingsScore":9,"cssi_totalAssessmentScore":74,"cssi_otherConcernsScore":8,"cssi_grandTotalAssessmentScore":82,"cssi_assessedBy":{"foaf_familyName":"Wilson","foaf_givenName":"Max"},"cssi_hasRockCoatingNotation":{"droppings":"Y","dustCoatings":"Y","ironFilm":"Y","lithobionts":"N","pollution":"Y","rockVarnish":"?"}},{"iri":"http://www.normansicily.org/cssi/assessment/32","cssi_description":"West facade, right pilaster of portal","cssi_rockType":"limestone","cssi_assessmentDate":"2019-09-05","cssi_rockCoatingNotationNotes":"high traffic area","cssi_naturalProcessType":"limestone weathering","cssi_siteSettingScore":12,"cssi_weaknessScore":15,"cssi_largeErosionScore":12,"cssi_smallErosionScore":30,"cssi_rockCoatingsScore":8,"cssi_totalAssessmentScore":77,"cssi_otherConcernsScore":9,"cssi_grandTotalAssessmentScore":86,"cssi_assessedBy":{"foaf_familyName":"Wilson","foaf_givenName":"Max"},"cssi_hasRockCoatingNotation":{"droppings":"Y","dustCoatings":"Y","ironFilm":"Y","lithobionts":"N","pollution":"Y","rockVarnish":"?"}},{"iri":"http://www.normansicily.org/cssi/assessment/33","cssi_description":"Roman crypt","cssi_rockType":"red brick","cssi_assessmentDate":"2019-09-05","cssi_rockCoatingNotationNotes":"enclosed space for conservation ","cssi_naturalProcessType":"granular disintegration","cssi_siteSettingScore":12,"cssi_weaknessScore":16,"cssi_largeErosionScore":9,"cssi_smallErosionScore":28,"cssi_rockCoatingsScore":2,"cssi_totalAssessmentScore":67,"cssi_otherConcernsScore":3,"cssi_grandTotalAssessmentScore":70,"cssi_assessedBy":{"foaf_familyName":"Wilson","foaf_givenName":"Max"},"cssi_hasRockCoatingNotation":{"droppings":"Y","dustCoatings":"N","ironFilm":"N","lithobionts":"Y","pollution":"Y","rockVarnish":"N"}}]}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_79.json b/public/data/place-details/monastery_79.json
new file mode 100644
index 0000000..8eaa894
--- /dev/null
+++ b/public/data/place-details/monastery_79.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/79","nsp_id":"79","labels":["en,Saint Leo of Pannachio","it,San Leone di Pannachio"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Leo of Pannachio","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.62148,15.02785,10000d","http://www.geonames.org/2524010/nicolosi.html"],"wgs_lat":37.62148,"wgs_long":15.02785,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(15.02785 37.62148)"},"nsp_modernComune":"Nicolosi","nsp_modernProvince":"Catania","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":700,"nsp_seismicCode":"2","skos_altLabel":"Pennachio"},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2016-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1137","nsp_minYear":"1137","nsp_maxYear":"1137"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"63, 116-121, 261, 276","nsp_notes":""},"nsp_hasLink":[{"nsp_role":"Secular Lord","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i93678559","skos_prefLabel":"Henry del Vasto"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/79","skos_prefLabel":"Saint Leo of Pannachio"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"118","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/79","skos_prefLabel":"Saint Leo of Pannachio"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/22","skos_prefLabel":"Saint Felix of San Marco"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"117","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/80","skos_prefLabel":"Saint Nicholas of Arena"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/79","skos_prefLabel":"Saint Leo of Pannachio"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"118","nsp_notes":""}}],"nsp_probableStatus":"Priory","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Leo","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_8.json b/public/data/place-details/monastery_8.json
new file mode 100644
index 0000000..0dba884
--- /dev/null
+++ b/public/data/place-details/monastery_8.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/8","nsp_id":"8","labels":["en,Saint Mary of Mazzarino","it,Santa Maria di Mazzarino"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of Mazzarino","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.30188,14.20959,10000d","http://www.geonames.org/2524200/mazzarino.html"],"wgs_lat":37.30188,"wgs_long":14.20959,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.20959 37.30188)"},"nsp_modernComune":"Mazzarino","nsp_modernProvince":"Caltanissetta","nsp_historicalProvince":"Val di Noto","nsp_locationHighLoc":"No","wgs_alt":553,"nsp_seismicCode":"3","skos_altLabel":["Mazaranu"," Mazareno"," Casale Mazarini"," Mazareni"]},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2016-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1134","nsp_minYear":"1134","nsp_maxYear":"1134"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"103-104","nsp_notes":""},"nsp_hasLink":[{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/8","skos_prefLabel":"Saint Mary of Mazzarino"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/1","skos_prefLabel":"Saint Bartholomew of Lipari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"103","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/8","skos_prefLabel":"Saint Mary of Mazzarino"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/2","skos_prefLabel":"Christ the Savior of Patti"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"103","nsp_notes":""}}],"nsp_probableStatus":"Priory","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_80.json b/public/data/place-details/monastery_80.json
new file mode 100644
index 0000000..9457b98
--- /dev/null
+++ b/public/data/place-details/monastery_80.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/80","nsp_id":"80","labels":["en,Saint Nicholas of Arena","it,San Nicolò l'Arena"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Nicholas of Arena","nsp_hasLocation":{"rdfs_seeAlso":["http://www.geonames.org/2525068/catania.html","https://earth.google.com/web/@37.50370,15.08000,10000d"],"wgs_lat":37.5037,"wgs_long":15.08,"nsp_coordinateSource":"Google Earth","geo_hasGeometry":{"geo_asWKT":"Point(15.08000 37.50370)"},"nsp_modernComune":"Catania","nsp_modernProvince":"Catania","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"Yes","wgs_alt":36,"nsp_seismicCode":"2","skos_altLabel":["Cathania"," Qataniah"," Balad-al-Fil"," Qatâna"," Castello Ursino"]},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2016-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1156","nsp_minYear":"1156","nsp_maxYear":"1156"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"117-120","nsp_notes":""},"nsp_hasLink":[{"nsp_role":"Secular Lord","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#88860961","skos_prefLabel":"Simon del Vasto"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/80","skos_prefLabel":"Saint Nicholas of Arena"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"118","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/80","skos_prefLabel":"Saint Nicholas of Arena"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/79","skos_prefLabel":"Saint Leo of Pannachio"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"118","nsp_notes":""}}],"nsp_probableStatus":"Grange","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Nicholas","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_81.json b/public/data/place-details/monastery_81.json
new file mode 100644
index 0000000..1cb3625
--- /dev/null
+++ b/public/data/place-details/monastery_81.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/81","nsp_id":"81","labels":["en,Saint Mary of Robore Grosso","it,Santa Maria di Robore Grosso"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of Robore Grosso","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.66358,14.83283,10000d","http://www.geonames.org/2525769/adrano.html"],"wgs_lat":37.66358,"wgs_long":14.83283,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.83283 37.66358)"},"nsp_modernComune":"Adrano","nsp_modernProvince":"Catania","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"No","wgs_alt":560,"nsp_seismicCode":"2","skos_altLabel":"Adernò"},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2016-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1134","nsp_minYear":"1134","nsp_maxYear":"1134"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"112, 118 n. 5, 120-121, 262","nsp_notes":"It is unclear when exactly this church became a priory. (121)"},"nsp_hasLink":{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/81","skos_prefLabel":"Saint Mary of Robore Grosso"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/22","skos_prefLabel":"Saint Felix of San Marco"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"121","nsp_notes":""}},"nsp_probableStatus":"Priory","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_82.json b/public/data/place-details/monastery_82.json
new file mode 100644
index 0000000..2f2e2f1
--- /dev/null
+++ b/public/data/place-details/monastery_82.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/82","nsp_id":"82","labels":["en,Saint Mary of Licodia","it,Santa Maria di Licodia"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of Licodia","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.61616,14.88779,10000d","http://www.geonames.org/2523320/santa-maria-di-licodia.html"],"wgs_lat":37.61616,"wgs_long":14.88779,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(14.88779 37.61616)"},"nsp_modernComune":"Santa Maria di Licodia","nsp_modernProvince":"Catania","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"Yes","wgs_alt":444,"nsp_seismicCode":"2"},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2016-07-03","nsp_recordStatus":"Reviewed","nsp_notes":"This is now the town hall as well as the Chiesa Madre Santissimo Crocifisso.","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_fieldVisit":"2016-07-16","nsp_uncorroboratedInformation":{"nsp_content":"Local tradition holds that there was a summer abbey, too, which is now a restaurant.","nsp_source":"Field Visit"},"nsp_earliestSurvivingRecord":{"rdfs_label":"1143","nsp_minYear":"1143","nsp_maxYear":"1143"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/V7MNSAU3","http://zotero.org/groups/2199947/items/8D8GP7NX"],"nsp_pages":["558","65, 101 n. 1, 116, 118 n. 5, 120-122"],"nsp_notes":["Count Simon allows the monastery of Santa Maria di Licodia to build a house. The year is 1143.",""]},"nsp_hasLink":[{"nsp_role":"Secular Lord","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#88860961","skos_prefLabel":"Simon del Vasto"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/82","skos_prefLabel":"Saint Mary of Licodia"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"121","nsp_notes":""}},{"nsp_role":"Secular Lord","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#86223256","skos_prefLabel":"Thomasia"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/82","skos_prefLabel":"Saint Mary of Licodia"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"121","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/82","skos_prefLabel":"Saint Mary of Licodia"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/22","skos_prefLabel":"Saint Felix of San Marco"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"121","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/52","skos_prefLabel":"Saint Nicholas of Canneto"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/82","skos_prefLabel":"Saint Mary of Licodia"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/QCQQZXJ9","nsp_pages":"975","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/145","skos_prefLabel":"Christ the Savior of Cerami"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/82","skos_prefLabel":"Saint Mary of Licodia"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"122","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/147","skos_prefLabel":"Saint Philip of Pantano"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/82","skos_prefLabel":"Saint Mary of Licodia"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"121-122","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/181","skos_prefLabel":"Saint Hippolytus"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/82","skos_prefLabel":"Saint Mary of Licodia"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"121","nsp_notes":""}}],"nsp_probableStatus":"Abbey","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_83.json b/public/data/place-details/monastery_83.json
new file mode 100644
index 0000000..3e0a4f5
--- /dev/null
+++ b/public/data/place-details/monastery_83.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/83","nsp_id":"83","labels":["en,Saint John of the Hermits","it,San Giovanni degli Eremiti"],"nsp_placeType":"monastery","skos_prefLabel":"Saint John of the Hermits","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.10953,13.35478,10000d","http://www.geonames.org/11822517/eglise-saint-jean-des-ermites.html"],"wgs_lat":38.10953,"wgs_long":13.35478,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(13.35478 38.10953)"},"nsp_modernComune":"Palermo","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"Yes","wgs_alt":25,"nsp_seismicCode":"2","skos_altLabel":["Bn.rm"," Balarm"," Balarmuh"," Bân.rm"," Panormus"]},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2016-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_fieldVisit":["2005-08-15","2013-07-15","2015-08-15"],"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1148","nsp_minYear":"1148","nsp_maxYear":"1148"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"12 n. 7, 46, 54, 56, 66 n. 2, 69, 71, 72, 116, 123-131, 173-175, 265","nsp_notes":""},"nsp_hasLink":[{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i97285789","skos_prefLabel":"Roger II of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/83","skos_prefLabel":"Saint John of the Hermits"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"126-127","nsp_notes":""}},{"nsp_role":"Colonized By","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/83","skos_prefLabel":"Saint John of the Hermits"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/182","skos_prefLabel":"Santa Maria of Montevergine"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"123","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/84","skos_prefLabel":"Saint Mary of Adriano"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/83","skos_prefLabel":"Saint John of the Hermits"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"131","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/85","skos_prefLabel":"Saint Mary Nuova"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/83","skos_prefLabel":"Saint John of the Hermits"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"133","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/99","skos_prefLabel":"Holy Trinity of Refesio"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/83","skos_prefLabel":"Saint John of the Hermits"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"173-174","nsp_notes":""}}],"nsp_probableStatus":"Abbey","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint John the Evangelist","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_84.json b/public/data/place-details/monastery_84.json
new file mode 100644
index 0000000..3fd31e1
--- /dev/null
+++ b/public/data/place-details/monastery_84.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/84","nsp_id":"84","labels":["en,Saint Mary of Adriano","it,Santa Maria di Adriano"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of Adriano","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.64433,13.32562,10000d","http://www.geonames.org/2523925/palazzo-adriano.html"],"wgs_lat":37.64433,"wgs_long":13.32562,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(13.32562 37.64433)"},"nsp_modernComune":"Palazzo Adriano","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"Yes","wgs_alt":583,"nsp_seismicCode":"2","skos_altLabel":["Adrianum"," Villa Adriana"," Palacium Triane"," Castrum Palacii Adriani"]},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2016-07-02","nsp_recordStatus":"Reviewed","nsp_notes":"The ruins of Santa Maria di Adriano are located high up in the mountains of the Sosio Valley Nature Reserve. The site is difficult to reach without an all-terrain vehicle and a local who is familiar with the landscape. In July 2019, the comune put us in touch with a resident who was willing to make the journey. It appears that until a few years ago, the path to the monastery and the immediately surrounding area was much easier to reach. Since that time, though, the territory has suffered from extensive overgrowth, as the images demonstrate. Once there, we were able to see the remaining walls of the monastery; traces of the paint suggest that the structure had been redone in a later style, though it is impossible to determine the extent of the reconstruction. As far as we can tell, two levels of the structure survive. The state of the building is incredibly poor and it is dangerous to enter its confines. With that said, it is clear that both animals and humans have sheltered there in the recent past and local lore has it that criminal elements have sought refuge in the ruin.","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_fieldVisit":"2019-07-20","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1157","nsp_minYear":"1157","nsp_maxYear":"1157"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"129-132, 272","nsp_notes":""},"nsp_hasLink":[{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i44796804","skos_prefLabel":"William I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/84","skos_prefLabel":"Saint Mary of Adriano"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"131","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/84","skos_prefLabel":"Saint Mary of Adriano"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/83","skos_prefLabel":"Saint John of the Hermits"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"131","nsp_notes":""}}],"nsp_probableStatus":"Priory","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_85.json b/public/data/place-details/monastery_85.json
new file mode 100644
index 0000000..576753e
--- /dev/null
+++ b/public/data/place-details/monastery_85.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/85","nsp_id":"85","labels":["en,Saint Mary Nuova","it,Santa Maria La Nuova"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary Nuova","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.08202,13.29215,10000d","http://www.geonames.org/10401310/cattedrale-di-mon.html"],"wgs_lat":38.08202,"wgs_long":13.29215,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(13.29215 38.08202)"},"nsp_modernComune":"Monreale","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"Yes","wgs_alt":299,"nsp_seismicCode":"2","skos_altLabel":"Munt Rival"},"nsp_updatedOn":"2019-12-09","nsp_createdOn":"2016-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_fieldVisit":"2014-07-23","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1174","nsp_minYear":"1174","nsp_maxYear":"1174"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/7QPHAVE8","http://zotero.org/groups/2199947/items/8D8GP7NX"],"nsp_pages":["169-170, 171-173, 175-183, 183-186, 192-194, 204-206, 210-213, 221-222, 223-224","37, 54, 55, 57, 59, 62, 64, 66, 71, 72, 87 n. 8, 115-117, 132-148, 158, 173 n. 2, 197"],"nsp_notes":["","This house was elevated to an archbishopric by Pope Lucius III on February 5, 1183. (142-143)"]},"nsp_hasLink":[{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i81016496","skos_prefLabel":"William II of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/85","skos_prefLabel":"Saint Mary Nuova"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"132","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/85","skos_prefLabel":"Saint Mary Nuova"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/83","skos_prefLabel":"Saint John of the Hermits"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"133","nsp_notes":""}},{"nsp_role":"Colonized by","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/85","skos_prefLabel":"Saint Mary Nuova"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/218","skos_prefLabel":"Holy Trinity at La Cava"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"144","nsp_notes":""}}],"nsp_probableStatus":"Abbey","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Cluniacs","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_86.json b/public/data/place-details/monastery_86.json
new file mode 100644
index 0000000..7df8535
--- /dev/null
+++ b/public/data/place-details/monastery_86.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/86","nsp_id":"86","labels":["en,Saint Mary of Maniace","it,Santa Maria di Maniace"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of Maniace","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.85857,14.81839,10000d","http://www.geonames.org/2525498/bronte.html","http://www.medioevosicilia.eu/markIII/monastero-di-santa-maria-di-maniace/"],"wgs_lat":37.85857,"wgs_long":14.81839,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(14.81839 37.85857)"},"nsp_modernComune":"Bronte","nsp_modernProvince":"Catania","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"Yes","wgs_alt":701,"nsp_seismicCode":"2","skos_altLabel":["Bronti"," Brontis"]},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2016-07-06","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_fieldVisit":"2015-08-15","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1105","nsp_minYear":"1105","nsp_maxYear":"1105"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"46, 54, 55, 133, 145-148, 196","nsp_notes":"White claims that \"[t]he abbot of Maniace was thus really the bishop of a diocese . . . .\" (147)"},"nsp_hasLink":[{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"145","nsp_notes":""}},{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i3215194","skos_prefLabel":"Adelasia del Vasto"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"145","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/198","skos_prefLabel":"Saint Mary the Newer"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"145","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/183","skos_prefLabel":"Saint Paul of the Hospital of Sciara"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/184","skos_prefLabel":"Saint Peter of Messuriachia"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/185","skos_prefLabel":"Saint John"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/186","skos_prefLabel":"Saint Nicholas of Sciara"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/187","skos_prefLabel":"Saint Leo"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/189","skos_prefLabel":"Saint Parasceve"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/190","skos_prefLabel":"Saint Julian of Roccella"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/191","skos_prefLabel":"Saint Mary in the Vineyards"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/192","skos_prefLabel":"Saint John Oliveri"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/193","skos_prefLabel":"Saint Leo"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/194","skos_prefLabel":"Saint Michael"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/195","skos_prefLabel":"Saint Nicholas of Alafico in Tortorici"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/196","skos_prefLabel":"Saint Catherine"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/197","skos_prefLabel":"Saint Nicholas of Castanea"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/198","skos_prefLabel":"Saint Mary the Newer"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/199","skos_prefLabel":"Saint Parasceve"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/200","skos_prefLabel":"Saint Constantine"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/201","skos_prefLabel":"Saint John"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/202","skos_prefLabel":"Saint Nicholas"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/203","skos_prefLabel":"Saint Mary"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/204","skos_prefLabel":"Saint Bartholomew"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/205","skos_prefLabel":"Saint Theodore"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/206","skos_prefLabel":"Saint James of the Hospital near the Sea"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/207","skos_prefLabel":"Saint Nicholas"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/208","skos_prefLabel":"Saint Mary"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/209","skos_prefLabel":"Saint Agatha of the Lighthouse"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/86","skos_prefLabel":"Saint Mary of Maniace"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"147","nsp_notes":""}}],"nsp_probableStatus":"Abbey","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_87.json b/public/data/place-details/monastery_87.json
new file mode 100644
index 0000000..75b205d
--- /dev/null
+++ b/public/data/place-details/monastery_87.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/87","nsp_id":"87","labels":["it,Santa Maria delle Giummare","en,Saint Mary of Jummarriis"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of Jummarriis","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.50727,13.08785,10000d","http://www.geonames.org/2523194/sciacca.html"],"wgs_lat":37.50727,"wgs_long":13.08785,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(13.08785 37.50727)"},"nsp_modernComune":"Sciacca","nsp_modernProvince":"Agrigento","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"Yes","wgs_alt":82,"nsp_seismicCode":"2","skos_altLabel":["Valverde"," Sacca"," 'As Saqqah"," Cronio"," Kronio"," Castrum Saccae"," Castrum Novum Saccae"," Xiaxia"]},"nsp_updatedOn":"2019-12-09","nsp_createdOn":"2016-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"This church was located next to the church of San Nicolò Latina.","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_fieldVisit":"2015-08-15","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1157","nsp_minYear":"1157","nsp_maxYear":"1157"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/YS36BDHS"],"nsp_pages":["54, 149-151, 195","144"],"nsp_notes":["This house was founded between 1100 and 1136, when Juliet was Countess of Sciacca. (149)",""]},"nsp_hasLink":{"nsp_role":"Founder ","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i47263504","skos_prefLabel":"Judith of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/87","skos_prefLabel":"Saint Mary of Jummarriis"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"149","nsp_notes":""}},"nsp_probableStatus":"Priory","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Cluniacs","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_88.json b/public/data/place-details/monastery_88.json
new file mode 100644
index 0000000..636d78a
--- /dev/null
+++ b/public/data/place-details/monastery_88.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/88","nsp_id":"88","labels":["en,Holy Spirit of Buscemi","it,Santo Spirito di Buscemi"],"nsp_placeType":"monastery","skos_prefLabel":"Holy Spirit of Buscemi","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.08604,14.88499,10000d","http://www.geonames.org/2525483/buscemi.html"],"wgs_lat":37.08604,"wgs_long":14.88499,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.88499 37.08604)"},"nsp_modernComune":"Buscemi","nsp_modernProvince":"Syracuse","nsp_historicalProvince":"Val di Noto","nsp_locationHighLoc":"No","wgs_alt":761,"nsp_seismicCode":"2","skos_altLabel":["Bussema"," Requisenz"," Buyssem"," Buxeme"]},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2016-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1192","nsp_minYear":"1192","nsp_maxYear":"1192"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"54, 152","nsp_notes":"White notes that there is no evidence of how this monastery was colonized. It appears to have been independent of any other monastery. (152)"},"nsp_hasLink":[{"nsp_role":"Founder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#22578944","skos_prefLabel":"Stephana"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/88","skos_prefLabel":"Holy Spirit of Buscemi"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"152","nsp_notes":""}},{"nsp_role":"Founder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#40699298","skos_prefLabel":"William"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/88","skos_prefLabel":"Holy Spirit of Buscemi"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"152","nsp_notes":""}}],"nsp_probableStatus":"Priory","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Holy Spirit","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_89.json b/public/data/place-details/monastery_89.json
new file mode 100644
index 0000000..6a172f6
--- /dev/null
+++ b/public/data/place-details/monastery_89.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/89","nsp_id":"89","labels":["en,Saint Mary of Ustica","it,Santa Maria di Ustica"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of Ustica","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@38.70985,13.19293,10000d","http://www.geonames.org/2522818/ustica.html"],"wgs_lat":38.70985,"wgs_long":13.19293,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(13.19293 38.70985)"},"nsp_modernComune":"Ustica","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"No","wgs_alt":49,"nsp_seismicCode":"2","skos_altLabel":["Ghazîrat-Osctika"," Hostica"]},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2016-07-04","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1194","nsp_minYear":"1194","nsp_maxYear":"1194"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/XN5REGM6"],"nsp_pages":["54, 152","731"],"nsp_notes":["White notes that this monastery appears to have been independent of any other. (54)",""]},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"Priory","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_9.json b/public/data/place-details/monastery_9.json
new file mode 100644
index 0000000..9592515
--- /dev/null
+++ b/public/data/place-details/monastery_9.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/9","nsp_id":"9","labels":["en,Saint Mary of Butera","it,Santa Maria di Butera"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of Butera","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.19100,14.18232,10000d","http://www.geonames.org/2525480/butera.html"],"wgs_lat":37.191,"wgs_long":14.18232,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(14.18232 37.19100)"},"nsp_modernComune":"Butera","nsp_modernProvince":"Caltanissetta","nsp_historicalProvince":"Val di Noto","nsp_locationHighLoc":"No","wgs_alt":402,"nsp_seismicCode":"3","skos_altLabel":["Butheria"," Buthìr"]},"nsp_updatedOn":"2019-12-07","nsp_createdOn":"2019-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1125","nsp_minYear":"1125","nsp_maxYear":"1125"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"88, 94, 101, 103, 251","nsp_notes":""},"nsp_hasLink":[{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/9","skos_prefLabel":"Saint Mary of Butera"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/1","skos_prefLabel":"Saint Bartholomew of Lipari"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"103","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/9","skos_prefLabel":"Saint Mary of Butera"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/2","skos_prefLabel":"Christ the Savior of Patti"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"103","nsp_notes":""}}],"nsp_probableStatus":"Priory","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_90.json b/public/data/place-details/monastery_90.json
new file mode 100644
index 0000000..59d92b0
--- /dev/null
+++ b/public/data/place-details/monastery_90.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/90","nsp_id":"90","labels":["en,Saint Mary delle Scale","it,Santa Maria delle Scale"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary delle Scale","nsp_hasLocation":{"rdfs_seeAlso":["http://www.geonames.org/2524170/messina.html","https://earth.google.com/web/@38.21295,15.51455,10000d"],"wgs_lat":38.21295,"wgs_long":15.51455,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(15.51455 38.21295)"},"nsp_modernComune":"Messina","nsp_modernProvince":"Messina","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"Yes","wgs_alt":270,"nsp_seismicCode":"1","skos_altLabel":"Massîni"},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2016-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":[" Santa Maria de Alto","Santa Maria della Valle"," La Badiazza"," Santa Maria de Scalis"],"nsp_fieldVisit":"2015-08-15","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1103","nsp_minYear":"1103","nsp_maxYear":"1103"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/7QPHAVE8","http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/CDFDD2GL"],"nsp_pages":["15-16, 101-102","43, 45, 57, 71, 153-157, 203, 282","396-397"],"nsp_notes":""},"nsp_hasLink":[{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i98936275","skos_prefLabel":"Roger I of Hauteville"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/90","skos_prefLabel":"Saint Mary delle Scale"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"153","nsp_notes":""}},{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#i3215194","skos_prefLabel":"Adelasia del Vasto"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/90","skos_prefLabel":"Saint Mary delle Scale"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"153","nsp_notes":""}}],"nsp_probableStatus":"Abbey","nsp_probableGender":"Female","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_91.json b/public/data/place-details/monastery_91.json
new file mode 100644
index 0000000..7075b81
--- /dev/null
+++ b/public/data/place-details/monastery_91.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/91","nsp_id":"91","labels":["en,Saint Mary of the Nuns","it,Santa Maria de Monialibus"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary of the Nuns","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.07542,15.28664,10000d","http://www.geonames.org/2523083/siracusa.html"],"wgs_lat":37.07542,"wgs_long":15.28664,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(15.28664 37.07542)"},"nsp_modernComune":"Syracuse","nsp_modernProvince":"Syracuse","nsp_historicalProvince":"Val di Noto","nsp_locationHighLoc":"No","wgs_alt":17,"nsp_seismicCode":"2","skos_altLabel":"Sarakûsa"},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2016-07-03","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1140","nsp_minYear":"1140","nsp_maxYear":"1140"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"157","nsp_notes":""},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"Priory?","nsp_probableGender":"Female","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_92.json b/public/data/place-details/monastery_92.json
new file mode 100644
index 0000000..3605f90
--- /dev/null
+++ b/public/data/place-details/monastery_92.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/92","nsp_id":"92","labels":["en,Saint Lucy of Adernò","it,Santa Lucia di Adernò"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Lucy of Adernò","nsp_hasLocation":{"rdfs_seeAlso":["http://www.geonames.org/2525769/adrano.html","https://earth.google.com/web/@37.66284,14.83369,10000d"],"wgs_lat":37.66284,"wgs_long":14.83369,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(14.83369 37.66284)"},"nsp_modernComune":"Adrano","nsp_modernProvince":"Catania","nsp_historicalProvince":"Val Demone","nsp_locationHighLoc":"Yes","wgs_alt":554,"nsp_seismicCode":"2","skos_altLabel":"Adernò"},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2019-06-28","nsp_recordStatus":"Reviewed","nsp_notes":"In October 2019, Max Wilson (B.A., architecture, Yale University) performed the field survey, CSSI assessments, and photographed the site. The church is located on Via Roma, one of the main streets of downtown Adrano, which forms the northern edge of Adrano's central public park, Giardino della Vittoria. There are no regular hours posted online or at the site, and Max was unable to gain access to the interior. The church is oriented along a north-south axis, with its main facade facing south towards Via Roma and the communal park. On either side of the church, and directly adjacent, stand the two wings (east and west) of the monastery complex, which span the entire length of Via Roma. The ground level of each wing is occupied by local restaurants and businesses. The east wing also houses the entrance to a secondary school. To the north of the church, behind the apse, stands a single story building housing a business. The church's main facade is rendered in the Catanese baroque style of alternating dark and light stone. According to the informational sign in front of the church, the dark stone is basaltic lava and the white stone is Comiso stone. The facade is divided horizontally into three sections—a central section housing the main portal, and two bell towers on either side, each capped with a four-sided cupola. Engaged pilasters with Corinthian capitals visually articulate the three divisions. The facade is also divided vertically into three sections by separate cornice lines. There is a street level, a middle tier with a single clerestory window over the portal and corresponding blind windows in the two towers, and a third level consisting of a loggia connecting the towers on either side to the central mass via a series of covered balconies. The central portal is articulated on either side by a pair of Corinthian columns, and above by a broken pediment with statuary on either side. The informational sign identifies the building as monastero di Santa Lucia, and explains that the monastery was originally built in 1158 CE in a location outside the city walls. According to the commune website, the original site lies near chiesa della Madonna della Consolazione in the neighborhood of Maria SS. delle Salette. The current building was constructed on in its current site in 1596, and finally completed in 1775. The church is located in a seismic zone and seismic activity still poses a significant risk to its structure. Pollution from cars on Via Roma may also pose a risk to the building's exterior stone.","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_fieldVisit":"2019-10-02","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1158","nsp_minYear":"1158","nsp_maxYear":"1158"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"114, 157-158","nsp_notes":""},"nsp_hasLink":{"nsp_role":"Founder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#78508863","skos_prefLabel":"Adelasia"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/92","skos_prefLabel":"Saint Lucy of Adernò"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"157","nsp_notes":""}},"nsp_probableStatus":"Abbey","nsp_probableGender":"Female","nsp_subjectOfDedication":"Saint Lucy","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":[{"iri":"http://www.normansicily.org/cssi/assessment/37","cssi_description":"South facade portal pedestal east","cssi_rockType":"?","cssi_assessmentDate":"2019-10-02","cssi_rockCoatingNotationNotes":"Lots of bird droppings","cssi_naturalProcessType":"granular disintegration ","cssi_siteSettingScore":10,"cssi_weaknessScore":10,"cssi_largeErosionScore":8,"cssi_smallErosionScore":28,"cssi_rockCoatingsScore":4,"cssi_totalAssessmentScore":60,"cssi_otherConcernsScore":3,"cssi_grandTotalAssessmentScore":63,"cssi_assessedBy":{"foaf_familyName":"Wilson","foaf_givenName":"Max"},"cssi_hasRockCoatingNotation":{"droppings":"Y","dustCoatings":"Y","ironFilm":"?","lithobionts":"N","pollution":"?","rockVarnish":"N"}},{"iri":"http://www.normansicily.org/cssi/assessment/38","cssi_description":"South facade portal pedestal west","cssi_rockType":"?","cssi_assessmentDate":"2019-10-02","cssi_rockCoatingNotationNotes":"N/A","cssi_naturalProcessType":"granular disintegration","cssi_siteSettingScore":9,"cssi_weaknessScore":12,"cssi_largeErosionScore":1,"cssi_smallErosionScore":28,"cssi_rockCoatingsScore":5,"cssi_totalAssessmentScore":55,"cssi_otherConcernsScore":3,"cssi_grandTotalAssessmentScore":58,"cssi_assessedBy":{"foaf_familyName":"Wilson","foaf_givenName":"Max"},"cssi_hasRockCoatingNotation":{"droppings":"Y","dustCoatings":"Y","ironFilm":"Y","lithobionts":"Y","pollution":"Y","rockVarnish":"N"}},{"iri":"http://www.normansicily.org/cssi/assessment/39","cssi_description":"South facade pilaster base east","cssi_rockType":"?","cssi_assessmentDate":"2019-10-02","cssi_rockCoatingNotationNotes":"N/A","cssi_naturalProcessType":"?","cssi_siteSettingScore":9,"cssi_weaknessScore":12,"cssi_largeErosionScore":4,"cssi_smallErosionScore":23,"cssi_rockCoatingsScore":6,"cssi_totalAssessmentScore":54,"cssi_otherConcernsScore":3,"cssi_grandTotalAssessmentScore":57,"cssi_assessedBy":{"foaf_familyName":"Wilson","foaf_givenName":"Max"},"cssi_hasRockCoatingNotation":{"droppings":"Y","dustCoatings":"Y","ironFilm":"Y","lithobionts":"?","pollution":"Y","rockVarnish":"?"}},{"iri":"http://www.normansicily.org/cssi/assessment/40","cssi_description":"South facade pilaster base west","cssi_rockType":"?","cssi_assessmentDate":"2019-10-02","cssi_rockCoatingNotationNotes":"N/A","cssi_naturalProcessType":"?","cssi_siteSettingScore":9,"cssi_weaknessScore":9,"cssi_largeErosionScore":6,"cssi_smallErosionScore":23,"cssi_rockCoatingsScore":5,"cssi_totalAssessmentScore":52,"cssi_otherConcernsScore":3,"cssi_grandTotalAssessmentScore":55,"cssi_assessedBy":{"foaf_familyName":"Wilson","foaf_givenName":"Max"},"cssi_hasRockCoatingNotation":{"droppings":"Y","dustCoatings":"Y","ironFilm":"Y","lithobionts":"?","pollution":"Y","rockVarnish":"?"}}]}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_93.json b/public/data/place-details/monastery_93.json
new file mode 100644
index 0000000..c8d38c5
--- /dev/null
+++ b/public/data/place-details/monastery_93.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/93","nsp_id":"93","labels":["en,Saint Mary Magdalene of Corleone","it,Santa Maria Maddalena di Corleone"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary Magdalene of Corleone","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.81338,13.30170,10000d","http://www.geonames.org/2524928/corleone.html"],"wgs_lat":37.81338,"wgs_long":13.3017,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(13.30170 37.81338)"},"nsp_modernComune":"Corleone","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"No","wgs_alt":550,"nsp_seismicCode":"2","skos_altLabel":["Qorliûn"," Coiroillionis"," Corilionis"," Coniglione"]},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2016-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":"Saint Mary Madeleine of Corleone","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1151","nsp_minYear":"1151","nsp_maxYear":"1151"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"138, 143 n. 6, 158-159","nsp_notes":""},"nsp_hasLink":{"nsp_hasSource":{},"nsp_hasTarget":{},"nsp_hasReference":{}},"nsp_probableStatus":"Abbey","nsp_probableGender":"Female","nsp_subjectOfDedication":"Saint Mary Magdalene","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_94.json b/public/data/place-details/monastery_94.json
new file mode 100644
index 0000000..be5ce2d
--- /dev/null
+++ b/public/data/place-details/monastery_94.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/94","nsp_id":"94","labels":["en,Holy Trinity of the Chancellor","it,Santissima Trinità del Cancelliere"],"nsp_placeType":"monastery","skos_prefLabel":"Holy Trinity of the Chancellor","nsp_hasLocation":{"rdfs_seeAlso":["http://www.geonames.org/2523920/palermo.html","https://earth.google.com/web/@38.11363,13.36887,10000d"],"wgs_lat":38.11363,"wgs_long":13.36887,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(13.36887 38.11363)"},"nsp_modernComune":"Palermo","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"Yes","wgs_alt":10,"nsp_seismicCode":"2","skos_altLabel":["Bn.rm"," Balarm"," Balarmuh"," Bân.rm"," Panormus"]},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2016-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"Part of this church was destroyed during a bombardment in 1943.","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"skos_altLabel":"La Magione","nsp_fieldVisit":["2007-08-15","2015-08-06"],"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1191","nsp_minYear":"1191","nsp_maxYear":"1191"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/ZTI6IKNV"],"nsp_pages":["71, 72, 133, 180-181","533"],"nsp_notes":["","Loud puts the Cistercian foundation at 1190/1191 and adds that the house was turned over to the Teutonic Knights in 1197."]},"nsp_hasLink":[{"nsp_role":"Founder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#70458661","skos_prefLabel":"Matthew of Ajello"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/94","skos_prefLabel":"Holy Trinity of the Chancellor"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"180","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/94","skos_prefLabel":"Holy Trinity of the Chancellor"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/98","skos_prefLabel":"Holy Spirit of Palermo"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"180","nsp_notes":""}}],"nsp_probableStatus":"Abbey","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Holy Trinity","nsp_monasticIdentity":"Cistercians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_95.json b/public/data/place-details/monastery_95.json
new file mode 100644
index 0000000..2127e7f
--- /dev/null
+++ b/public/data/place-details/monastery_95.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/95","nsp_id":"95","labels":["en,Saint Mary Martorana","it,Santa Maria Martorana"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Mary Martorana","nsp_hasLocation":{"rdfs_seeAlso":["http://www.geonames.org/2523920/palermo.html","https://earth.google.com/web/@38.11483,13.36202,10000d"],"wgs_lat":38.11483,"wgs_long":13.36202,"nsp_coordinateSource":"Google Earth","geo_hasGeometry":{"geo_asWKT":"Point(13.36202 38.11483)"},"nsp_modernComune":"Palermo","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"No","wgs_alt":14,"nsp_seismicCode":"2","skos_altLabel":["Bn.rm"," Balarm"," Balarmuh"," Bân.rm"," Panormus"]},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2016-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"White, Latin Monasticism, 161, n. 4, notes that part of this foundation (a section of the cortile), established in a house of Geoffrey of Martirano and his wife, Aloysa, survived as \"the only surviving bit of Norman domestic architecture.\" It was destroyed soon after, during World War II. It had at one time been owned by Countess Adelicia of Collesano.","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1193","nsp_minYear":"1193","nsp_maxYear":"1193"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"127 n. 4, 157 n. 6, 161-162, 289","nsp_notes":""},"nsp_hasLink":[{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#45600274","skos_prefLabel":"Aloysa"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/95","skos_prefLabel":"Saint Mary Martorana"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"161","nsp_notes":""}},{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#36410898","skos_prefLabel":"Geoffrey of Martirano"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/95","skos_prefLabel":"Saint Mary Martorana"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"161","nsp_notes":""}}],"nsp_probableStatus":"Abbey","nsp_probableGender":"Female","nsp_subjectOfDedication":"the Virgin Mary","nsp_monasticIdentity":"Benedictines","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_96.json b/public/data/place-details/monastery_96.json
new file mode 100644
index 0000000..59c32fc
--- /dev/null
+++ b/public/data/place-details/monastery_96.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/96","nsp_id":"96","labels":["en,Saint Angelo of Prizzi","it,Sant'Angelo di Prizzi"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Angelo of Prizzi","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.72088,13.43435,10000d","http://www.geonames.org/2523678/prizzi.html"],"wgs_lat":37.72088,"wgs_long":13.43435,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(13.43435 37.72088)"},"nsp_modernComune":"Prizzi","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"No","wgs_alt":966,"nsp_seismicCode":"2","skos_altLabel":["B.r.zzu"," Prizi"," Perizium"," Perici"," Castrum Piricii"]},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2016-07-02","nsp_recordStatus":"Reviewed","nsp_notes":"Parts of an arcade from the cloister may survive.","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1161","nsp_minYear":"1161","nsp_maxYear":"1161"},"nsp_hasReference":{"nsp_zoteroIri":["http://zotero.org/groups/2199947/items/8D8GP7NX","http://zotero.org/groups/2199947/items/ZTI6IKNV"],"nsp_pages":["55 n. 3, 166, 176, 177, 293","533"],"nsp_notes":["White (166) lists this as a priory and asserts that this was one and the same with St. Michael of Prizzi (176). ","This became a female community beginning around 1190."]},"nsp_hasLink":[{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#40963988","skos_prefLabel":"Matthew Bonell"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/96","skos_prefLabel":"Saint Angelo of Prizzi"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"166","nsp_notes":""}},{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#40963988","skos_prefLabel":"Matthew Bonell"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/96","skos_prefLabel":"Saint Angelo of Prizzi"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"533","nsp_notes":""}},{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#40963988","skos_prefLabel":"Matthew Bonell"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/96","skos_prefLabel":"Saint Angelo of Prizzi"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/ZTI6IKNV","nsp_pages":"166","nsp_notes":""}},{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#40963988","skos_prefLabel":"Matthew Bonell"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/96","skos_prefLabel":"Saint Angelo of Prizzi"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/ZTI6IKNV","nsp_pages":"533","nsp_notes":""}},{"nsp_role":"Colonized by","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/96","skos_prefLabel":"Saint Angelo of Prizzi"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/212","skos_prefLabel":"Saint Mary Magdalene"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"166","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/96","skos_prefLabel":"Saint Angelo of Prizzi"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/213","skos_prefLabel":"Fossanova"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"166","nsp_notes":""}}],"nsp_probableStatus":"Priory","nsp_probableGender":"Male then Female","nsp_subjectOfDedication":"Saint Michael the Archangel","nsp_monasticIdentity":"Cistercians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_97.json b/public/data/place-details/monastery_97.json
new file mode 100644
index 0000000..f5de3e4
--- /dev/null
+++ b/public/data/place-details/monastery_97.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/97","nsp_id":"97","labels":["en,Saint Christopher of Prizzi","it,San Cristoforo di Prizzi"],"nsp_placeType":"monastery","skos_prefLabel":"Saint Christopher of Prizzi","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.72088,13.43435,10000d","http://www.geonames.org/2523678/prizzi.html"],"wgs_lat":37.72088,"wgs_long":13.43435,"nsp_coordinateSource":"GeoNames","geo_hasGeometry":{"geo_asWKT":"Point(13.43435 37.72088)"},"nsp_modernComune":"Prizzi","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"No","wgs_alt":966,"nsp_seismicCode":"2","skos_altLabel":["B.r.zzu"," Prizi"," Perizium"," Perici"," Castrum Piricii"]},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2016-07-05","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":"documentary","nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"49, 167, 263, 272","nsp_notes":""},"nsp_hasLink":[{"nsp_role":"Secular Lord","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#40963988","skos_prefLabel":"Matthew Bonell"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/97","skos_prefLabel":"Saint Christopher of Prizzi"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"167","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/97","skos_prefLabel":"Saint Christopher of Prizzi"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/214","skos_prefLabel":"Saint Steven of the Forest"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"167","nsp_notes":""}}],"nsp_probableStatus":"Priory","nsp_probableGender":"Male","nsp_subjectOfDedication":"Saint Christopher","nsp_monasticIdentity":"Cistercians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_98.json b/public/data/place-details/monastery_98.json
new file mode 100644
index 0000000..8efbdb3
--- /dev/null
+++ b/public/data/place-details/monastery_98.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/98","nsp_id":"98","labels":["en,Holy Spirit of Palermo","it,Santo Spirito di Palermo"],"nsp_placeType":"monastery","skos_prefLabel":"Holy Spirit of Palermo","nsp_hasLocation":{"rdfs_seeAlso":["http://www.geonames.org/2523920/palermo.html","https://earth.google.com/web/@38.09982,13.36270,10000d"],"wgs_lat":38.09982,"wgs_long":13.3627,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(13.36270 38.09982)"},"nsp_modernComune":"Palermo","nsp_modernProvince":"Palermo","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"Yes","wgs_alt":32,"nsp_seismicCode":"2","skos_altLabel":["Bn.rm"," Balarm"," Balarmuh"," Bân.rm"," Panormus"]},"nsp_updatedOn":"2020-10-13","nsp_createdOn":"2016-07-01","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_fieldVisit":"2019-07-16","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1177","nsp_minYear":"1177","nsp_maxYear":"1177"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"66, 67 n. 5, 71, 72, 168-171, 180, 181, 196, 197","nsp_notes":""},"nsp_hasLink":[{"nsp_role":"Founder or rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#14105408","skos_prefLabel":"Walter Offamil"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/98","skos_prefLabel":"Holy Spirit of Palermo"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"168","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/94","skos_prefLabel":"Holy Trinity of the Chancellor"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/98","skos_prefLabel":"Holy Spirit of Palermo"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"180","nsp_notes":""}},{"nsp_role":"Colonized by","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/98","skos_prefLabel":"Holy Spirit of Palermo"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/215","skos_prefLabel":"Sambucina"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"169","nsp_notes":""}},{"nsp_role":"Colonized by","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/98","skos_prefLabel":"Holy Spirit of Palermo"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/215","skos_prefLabel":"Sambucina"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"549","nsp_notes":""}},{"nsp_role":"Colonized by","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/98","skos_prefLabel":"Holy Spirit of Palermo"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/215","skos_prefLabel":"Sambucina"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/UV39NII9","nsp_pages":"169","nsp_notes":""}},{"nsp_role":"Colonized by","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/98","skos_prefLabel":"Holy Spirit of Palermo"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/215","skos_prefLabel":"Sambucina"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/UV39NII9","nsp_pages":"549","nsp_notes":""}}],"nsp_probableStatus":"Abbey","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Holy Spirit","nsp_monasticIdentity":"Cistercians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/place-details/monastery_99.json b/public/data/place-details/monastery_99.json
new file mode 100644
index 0000000..bac6578
--- /dev/null
+++ b/public/data/place-details/monastery_99.json
@@ -0,0 +1 @@
+{"iri":"http://www.normansicily.org/nsp/place/monastery/99","nsp_id":"99","labels":["en,Holy Trinity of Refesio","it,Santissima Trinità di Refesio"],"nsp_placeType":"monastery","skos_prefLabel":"Holy Trinity of Refesio","nsp_hasLocation":{"rdfs_seeAlso":["https://earth.google.com/web/@37.60819,13.34385,10000d","http://www.geonames.org/2525485/burgio.html"],"wgs_lat":37.60819,"wgs_long":13.34385,"nsp_coordinateSource":"Handheld GPS","geo_hasGeometry":{"geo_asWKT":"Point(13.34385 37.60819)"},"nsp_modernComune":"Burgio","nsp_modernProvince":"Agrigento","nsp_historicalProvince":"Val di Mazara","nsp_locationHighLoc":"Yes","wgs_alt":739,"nsp_seismicCode":"2","skos_altLabel":["Villanova"," Burgimill"," Burgimillus"," Burgi de Cristiani"," Borgetto"]},"nsp_updatedOn":"2019-12-08","nsp_createdOn":"2016-07-02","nsp_recordStatus":"Reviewed","nsp_notes":"","nsp_attestationType":["documentary"," archaeological"],"nsp_updatedBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_createdBy":{"foaf_familyName":"Hayes","foaf_givenName":"Dawn","foaf_mbox":"mailto:hayesd@montclair.edu","foaf_website":["http://www.dawnmariehayes.org/","http://www.thehayesweb.org/dhayes"]},"nsp_fieldVisit":"2016-07-12","nsp_uncorroboratedInformation":{},"nsp_earliestSurvivingRecord":{"rdfs_label":"1170","nsp_minYear":"1170","nsp_maxYear":"1170"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"55 n. 3, 172-177, 268, 272, 289, 293","nsp_notes":"It appears that this had been a monastery dedicated to the Virgin Mary but then was rebuilt and/or expanded to become a monastery dedicated to the Holy Trinity with a church dedicted to the Virgin Mary. (172-177)"},"nsp_hasLink":[{"nsp_role":"Founder or Rebuilder","nsp_hasSource":{"iri":"http://www.example.com/genealogy.owl#19146076","skos_prefLabel":"Ansaldus"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/99","skos_prefLabel":"Holy Trinity of Refesio"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"172","nsp_notes":""}},{"nsp_role":"Dependent or Possession of","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/99","skos_prefLabel":"Holy Trinity of Refesio"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/83","skos_prefLabel":"Saint John of the Hermits"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"173-174","nsp_notes":""}},{"nsp_role":"Colonized by","nsp_hasSource":{"iri":"http://www.normansicily.org/nsp/place/monastery/99","skos_prefLabel":"Holy Trinity of Refesio"},"nsp_hasTarget":{"iri":"http://www.normansicily.org/nsp/place/monastery/217","skos_prefLabel":"Balamand"},"nsp_hasReference":{"nsp_zoteroIri":"http://zotero.org/groups/2199947/items/8D8GP7NX","nsp_pages":"176-177","nsp_notes":""}}],"nsp_probableStatus":"Abbey","nsp_probableGender":"Male","nsp_subjectOfDedication":"the Holy Trinity","nsp_monasticIdentity":"Cistercians","cssi_hasAssessment":{"cssi_assessedBy":{},"cssi_hasRockCoatingNotation":{}}}
\ No newline at end of file
diff --git a/public/data/places.json b/public/data/places.json
new file mode 100644
index 0000000..26226f7
--- /dev/null
+++ b/public/data/places.json
@@ -0,0 +1 @@
+[{"iri":"http://www.normansicily.org/nsp/place/monastery/38","nsp_id":"38","nsp_placeType":"monastery","wgs_lat":38.08626,"wgs_long":14.80686,"wgs_alt":660,"labels":["en,Saint Mary of Mallimachi","it,Santa Maria di Mallimachi"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/201","nsp_id":"201","nsp_placeType":"monastery","wgs_lat":38.06838,"wgs_long":14.636,"wgs_alt":30,"labels":["en,Saint John","it,San Giovanni"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/203","nsp_id":"203","nsp_placeType":"monastery","wgs_lat":38.06838,"wgs_long":14.636,"wgs_alt":30,"labels":["en,Saint Mary","it,Santa Maria"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/128","nsp_id":"128","nsp_placeType":"monastery","wgs_lat":36.92574,"wgs_long":14.72443,"wgs_alt":502,"labels":["en,Holy Cross of Rasacambri","it,Santa Croce di Rasacambri"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/36","nsp_id":"36","nsp_placeType":"monastery","wgs_lat":38.11314,"wgs_long":13.36105,"wgs_alt":13,"labels":["en,Saint Mary of the Crypt","it,Santa Maria de Crypta"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/40","nsp_id":"40","nsp_placeType":"monastery","wgs_lat":37.79919,"wgs_long":12.44246,"wgs_alt":17,"labels":["en,Saint Mary of the Grotto","it,Santa Maria della Grotta"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/48","nsp_id":"48","nsp_placeType":"monastery","wgs_lat":37.82541,"wgs_long":15.16699,"wgs_alt":450,"labels":["en,Saint Michael of Ficarra","it,San Michele di Ficarra"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/159","nsp_id":"159","nsp_placeType":"monastery","wgs_lat":38.13205,"wgs_long":13.33561,"wgs_alt":14,"labels":["en,Saint Matthew","it,San Matteo"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/175","nsp_id":"175","nsp_placeType":"monastery","wgs_lat":38.13205,"wgs_long":13.33561,"wgs_alt":14,"labels":["en,Monastery of John the Forerunner","it,Monastero del Precursore Giovanni"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/110","nsp_id":"110","nsp_placeType":"monastery","wgs_lat":37.82049,"wgs_long":15.23069,"wgs_alt":60,"labels":["en,Saint Eunufrius of Calatabiano","it,Sant'Eunufrio di Calatabiano"],"nsp_monasticIdentity":"Augustinian Canons"},{"iri":"http://www.normansicily.org/nsp/place/monastery/184","nsp_id":"184","nsp_placeType":"monastery","wgs_lat":37.88306,"wgs_long":14.79808,"wgs_alt":787,"labels":["en,Saint Peter of Messuriachia","it,San Pietro di Messuriachia"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/4","nsp_id":"4","nsp_placeType":"monastery","wgs_lat":37.12494,"wgs_long":14.85222,"wgs_alt":820,"labels":["en,Holy Cross of Buccheri","it,Santa Croce di Buccheri"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/205","nsp_id":"205","nsp_placeType":"monastery","wgs_lat":38.01556,"wgs_long":14.59818,"wgs_alt":675,"labels":["en,Saint Theodore","it,San Teodoro"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/101","nsp_id":"101","nsp_placeType":"monastery","wgs_lat":38.11687,"wgs_long":13.36065,"wgs_alt":11,"labels":["en,Saint Mary of the Chancellor or of the Latins","it,Santissima Maria del Cancelliere o dei Latini"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/211","nsp_id":"211","nsp_placeType":"monastery","wgs_lat":31.77786,"wgs_long":35.23032,"wgs_alt":705,"labels":["en,Saint Mary of the Latins","it,Santa Maria dei Latini"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/50","nsp_id":"50","nsp_placeType":"monastery","wgs_lat":38.19394,"wgs_long":15.55256,"wgs_alt":3,"labels":["en,Saint Nicander of Messina","it,San Nicandro di Messina"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/31","nsp_id":"31","nsp_placeType":"monastery","wgs_lat":38.19394,"wgs_long":15.55256,"wgs_alt":3,"labels":["en,Saint Leo of Messina","it,San Leone di Messina"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/12","nsp_id":"12","nsp_placeType":"monastery","wgs_lat":38.19394,"wgs_long":15.55256,"wgs_alt":3,"labels":["en,Saint Anne of Messina","it,Sant'Anna di Messina"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/198","nsp_id":"198","nsp_placeType":"monastery","wgs_lat":38.07261,"wgs_long":14.70093,"wgs_alt":540,"labels":["en,Saint Mary the Newer","it,Santa Maria Nuova"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/180","nsp_id":"180","nsp_placeType":"monastery","wgs_lat":38.93406,"wgs_long":16.23449,"wgs_alt":28,"labels":["en,Saint Euphemia","it,Sant'Eufemia"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/94","nsp_id":"94","nsp_placeType":"monastery","wgs_lat":38.11363,"wgs_long":13.36887,"wgs_alt":10,"labels":["en,Holy Trinity of the Chancellor","it,Santissima Trinità del Cancelliere"],"nsp_monasticIdentity":"Cistercians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/78","nsp_id":"78","nsp_placeType":"monastery","wgs_lat":37.507,"wgs_long":15.0837,"wgs_alt":63,"labels":["en,Saint Agatha of Catania","it,Sant'Agata di Catania"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/67","nsp_id":"67","nsp_placeType":"monastery","wgs_lat":38.14408,"wgs_long":15.28055,"wgs_alt":215,"labels":["en,Saint Philip of Saint Lucy","it,San Filippo di Santa Lucia"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/79","nsp_id":"79","nsp_placeType":"monastery","wgs_lat":37.62148,"wgs_long":15.02785,"wgs_alt":700,"labels":["en,Saint Leo of Pannachio","it,San Leone di Pannachio"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/55","nsp_id":"55","nsp_placeType":"monastery","wgs_lat":37.56675,"wgs_long":14.90254,"wgs_alt":225,"labels":["en,Saint Nicholas of Paternò","it,San Nicolò di Paternò"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/65","nsp_id":"65","nsp_placeType":"monastery","wgs_lat":38.05817,"wgs_long":14.74469,"wgs_alt":732,"labels":["en,Saint Philip of Fragalà","it,San Filippo di Fragalà"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/86","nsp_id":"86","nsp_placeType":"monastery","wgs_lat":37.85857,"wgs_long":14.81839,"wgs_alt":701,"labels":["en,Saint Mary of Maniace","it,Santa Maria di Maniace"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/114","nsp_id":"114","nsp_placeType":"monastery","wgs_lat":37.82175,"wgs_long":13.85476,"wgs_alt":755,"labels":["en,Saint Peter of Sclafani","it,San Pietro di Sclafani"],"nsp_monasticIdentity":"Augustinian Canons"},{"iri":"http://www.normansicily.org/nsp/place/monastery/13","nsp_id":"13","nsp_placeType":"monastery","wgs_lat":38.15733,"wgs_long":15.38132,"wgs_alt":287,"labels":["en,Saint Anne of Monforte","it,Sant'Anna di Monforte"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/107","nsp_id":"107","nsp_placeType":"monastery","wgs_lat":37.67894,"wgs_long":13.60346,"wgs_alt":677,"labels":["en,Saint Steven of Castronuovo","it,Santo Stefano di Castronuovo"],"nsp_monasticIdentity":"Augustinian Canons"},{"iri":"http://www.normansicily.org/nsp/place/monastery/83","nsp_id":"83","nsp_placeType":"monastery","wgs_lat":38.10953,"wgs_long":13.35478,"wgs_alt":25,"labels":["en,Saint John of the Hermits","it,San Giovanni degli Eremiti"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/212","nsp_id":"212","nsp_placeType":"monastery","wgs_lat":34.43352,"wgs_long":35.84415,"wgs_alt":51,"labels":["en,Saint Mary Magdalene","it,Santa Maria Maddalena"],"nsp_monasticIdentity":"Cistercians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/20","nsp_id":"20","nsp_placeType":"monastery","wgs_lat":37.7834,"wgs_long":14.60101,"wgs_alt":1005,"labels":["en,Saint Elias of Embula","it,Sant'Elia d'Embula"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/208","nsp_id":"208","nsp_placeType":"monastery","wgs_lat":38.02381,"wgs_long":14.44142,"wgs_alt":304,"labels":["en,Saint Mary","it,Santa Maria"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/178","nsp_id":"178","nsp_placeType":"monastery","wgs_lat":38.28778,"wgs_long":15.80591,"wgs_alt":50,"labels":["en,Priory of Saint Mary and the Twelve Apostles at Bagnara, Calabria","it,Priory of Saint Mary and the Twelve Apostles at Bagnara, Calabria"],"nsp_monasticIdentity":"Augustinian Canons"},{"iri":"http://www.normansicily.org/nsp/place/monastery/213","nsp_id":"213","nsp_placeType":"monastery","wgs_lat":41.4381,"wgs_long":13.1958,"wgs_alt":25,"labels":["en,Fossanova","it,Fossanova"],"nsp_monasticIdentity":"Cistercians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/126","nsp_id":"126","nsp_placeType":"monastery","wgs_lat":37.81159,"wgs_long":14.00268,"wgs_alt":920,"labels":["en,Saint Mary of the Latins of Polizzi","it,Santa Maria Latina di Polizzi"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/35","nsp_id":"35","nsp_placeType":"monastery","wgs_lat":38.03733,"wgs_long":13.56387,"wgs_alt":53,"labels":["en,Saint Mary of Campogrosso","it,Santa Maria di Campogrosso"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/149","nsp_id":"149","nsp_placeType":"monastery","wgs_lat":38.12215,"wgs_long":14.78702,"wgs_alt":490,"labels":["en,Saint Talleleo","it,San Talleleo"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/191","nsp_id":"191","nsp_placeType":"monastery","wgs_lat":37.88306,"wgs_long":14.79808,"wgs_alt":787,"labels":["en,Saint Mary in the Vineyards","it,Santa Maria nelle Vigne"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/192","nsp_id":"192","nsp_placeType":"monastery","wgs_lat":37.88306,"wgs_long":14.79808,"wgs_alt":787,"labels":["en,Saint John Oliveri","it,San Giovanni in Oliverio"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/196","nsp_id":"196","nsp_placeType":"monastery","wgs_lat":37.88306,"wgs_long":14.79808,"wgs_alt":787,"labels":["en,Saint Catherine","it,Santa Caterina"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/10","nsp_id":"10","nsp_placeType":"monastery","wgs_lat":37.92823,"wgs_long":14.3578,"wgs_alt":900,"labels":["en,Saint Anastasia of Mistretta","it,Sant'Anastasia di Mistretta"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/199","nsp_id":"199","nsp_placeType":"monastery","wgs_lat":37.07261,"wgs_long":14.70093,"wgs_alt":540,"labels":["en,Saint Parasceve","it,Santa Parasceve"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/62","nsp_id":"62","nsp_placeType":"monastery","wgs_lat":38.19394,"wgs_long":15.55256,"wgs_alt":3,"labels":["en,Saint Peter of Largo Flumine","it,San Pietro di Largo Fiumine"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/49","nsp_id":"49","nsp_placeType":"monastery","wgs_lat":37.77347,"wgs_long":14.60713,"wgs_alt":855,"labels":["en,Saint Michael of Troina","it,San Michele di Troina"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/63","nsp_id":"63","nsp_placeType":"monastery","wgs_lat":37.94708,"wgs_long":15.30841,"wgs_alt":142,"labels":["en,Saints Peter and Paul of Agrò","it,Santi Pietro e Paolo d'Agrò"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/133","nsp_id":"133","nsp_placeType":"monastery","wgs_lat":37.87736,"wgs_long":14.95012,"wgs_alt":765,"labels":["en,Saint Mary of Baratathe","it,Santa Maria di Baratathe"],"nsp_monasticIdentity":"Augustinian Canons"},{"iri":"http://www.normansicily.org/nsp/place/monastery/52","nsp_id":"52","nsp_placeType":"monastery","wgs_lat":37.62336,"wgs_long":14.74049,"wgs_alt":730,"labels":["en,Saint Nicholas of Canneto","it,San Nicola di Canneto"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/16","nsp_id":"16","nsp_placeType":"monastery","wgs_lat":38.12215,"wgs_long":14.78702,"wgs_alt":490,"labels":["en,Saint Basil of Naso","it,San Basilio di Naso"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/112","nsp_id":"112","nsp_placeType":"monastery","wgs_lat":36.89244,"wgs_long":15.06977,"wgs_alt":152,"labels":["en,Saint Lucy of Rahalbiato","it,Santa Lucia di Rahalbiato"],"nsp_monasticIdentity":"Augustinian Canons"},{"iri":"http://www.normansicily.org/nsp/place/monastery/24","nsp_id":"24","nsp_placeType":"monastery","wgs_lat":37.57543,"wgs_long":13.21632,"wgs_alt":949,"labels":["en,Saint George of Triocala","it,San Giorgio di Triocala"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/11","nsp_id":"11","nsp_placeType":"monastery","wgs_lat":38.13205,"wgs_long":13.33561,"wgs_alt":14,"labels":["en,Saint Andrew of Bebene","it,Sant'Andrea di Bebene"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/166","nsp_id":"166","nsp_placeType":"monastery","wgs_lat":38.07261,"wgs_long":14.70093,"wgs_alt":540,"labels":["en,Saint Mark in Valdemone","it,San Marco in Valdemone"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/45","nsp_id":"45","nsp_placeType":"monastery","wgs_lat":37.82371,"wgs_long":13.56889,"wgs_alt":700,"labels":["en,Saint Mary of Vicari","it,Santa Maria di Vicari"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/172","nsp_id":"172","nsp_placeType":"monastery","wgs_lat":38.02143,"wgs_long":14.70142,"wgs_alt":400,"labels":["en,Saint Mary of Rogato","it,Santa Maria di Rogato"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/64","nsp_id":"64","nsp_placeType":"monastery","wgs_lat":38.04648,"wgs_long":15.44042,"wgs_alt":240,"labels":["en,Saints Peter and Paul of Italà","it,Santi Pietro e Paolo di Italà"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/148","nsp_id":"148","nsp_placeType":"monastery","wgs_lat":38.07202,"wgs_long":14.74407,"wgs_alt":563,"labels":["en,Saint Mary of Frazzanò","it,Santa Maria di Frazzanò"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/61","nsp_id":"61","nsp_placeType":"monastery","wgs_lat":38.08523,"wgs_long":14.68684,"wgs_alt":88,"labels":["en,Saint Peter of Deca","it,San Pietro di Deca"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/200","nsp_id":"200","nsp_placeType":"monastery","wgs_lat":38.06838,"wgs_long":14.636,"wgs_alt":30,"labels":["en,Saint Constantine","it,San Costantino"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/37","nsp_id":"37","nsp_placeType":"monastery","wgs_lat":38.11992,"wgs_long":15.234,"wgs_alt":259,"labels":["en,Saint Mary of Gala","it,Santa Maria di Gala"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/120","nsp_id":"120","nsp_placeType":"monastery","wgs_lat":37.95286,"wgs_long":13.96384,"wgs_alt":662,"labels":["en,Saint George of Gratteri","it,San Giorgio di Gratteri"],"nsp_monasticIdentity":"Premonstratensian Canons"},{"iri":"http://www.normansicily.org/nsp/place/monastery/95","nsp_id":"95","nsp_placeType":"monastery","wgs_lat":38.11483,"wgs_long":13.36202,"wgs_alt":14,"labels":["en,Saint Mary Martorana","it,Santa Maria Martorana"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/163","nsp_id":"163","nsp_placeType":"monastery","wgs_lat":38.19394,"wgs_long":15.55256,"wgs_alt":3,"labels":["en,Saint Anne del Solario","it,Sant'Anna del Solario"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/220","nsp_id":"220","nsp_placeType":"monastery","wgs_lat":37.84645,"wgs_long":13.76126,"wgs_alt":537,"labels":["en,Saint Mary of Monte Maggiore","it,Santa Maria di Monte Maggiore"],"nsp_monasticIdentity":"Cluniacs"},{"iri":"http://www.normansicily.org/nsp/place/monastery/6","nsp_id":"6","nsp_placeType":"monastery","wgs_lat":37.82371,"wgs_long":13.56889,"wgs_alt":700,"labels":["en,Saint Sophia of Vicari","it,Santa Sophia di Vicari"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/170","nsp_id":"170","nsp_placeType":"monastery","wgs_lat":38.12215,"wgs_long":14.78702,"wgs_alt":490,"labels":["en,Saint Mary of Lacu","it,Santa Maria di Lacu"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/71","nsp_id":"71","nsp_placeType":"monastery","wgs_lat":38.11434,"wgs_long":13.35885,"wgs_alt":18,"labels":["en,Christ the Savior of Palermo","it,Santissimo Salvatore di Palermo"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/169","nsp_id":"169","nsp_placeType":"monastery","wgs_lat":38.02596,"wgs_long":15.38099,"wgs_alt":200,"labels":["en,Saint Mary of Fiumedinisi","it,Santa Maria di Fiumedinisi"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/204","nsp_id":"204","nsp_placeType":"monastery","wgs_lat":38.01556,"wgs_long":14.59818,"wgs_alt":675,"labels":["en,Saint Bartholomew","it,San Bartolomeo"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/70","nsp_id":"70","nsp_placeType":"monastery","wgs_lat":38.19394,"wgs_long":15.55256,"wgs_alt":3,"labels":["en,Christ the Savior of Messina","it,Santissimo Salvatore di Messina"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/74","nsp_id":"74","nsp_placeType":"monastery","wgs_lat":38.22008,"wgs_long":15.24023,"wgs_alt":1,"labels":["en,Saint Theodore of Milazzo","it,San Teodoro di Milazzo"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/29","nsp_id":"29","nsp_placeType":"monastery","wgs_lat":38.19394,"wgs_long":15.55256,"wgs_alt":3,"labels":["en,Saint John of the Greeks","it,San Giovanni dei Greci"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/32","nsp_id":"32","nsp_placeType":"monastery","wgs_lat":38.19394,"wgs_long":15.55256,"wgs_alt":3,"labels":["en,Saint Mary of Ambuto","it,Santa Maria di Ambuto"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/34","nsp_id":"34","nsp_placeType":"monastery","wgs_lat":38.19394,"wgs_long":15.55256,"wgs_alt":3,"labels":["en,Saint Mary of Bordonaro","it,Santa Maria di Bordonaro"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/209","nsp_id":"209","nsp_placeType":"monastery","wgs_lat":38.19394,"wgs_long":15.55256,"wgs_alt":3,"labels":["en,Saint Agatha of the Lighthouse","it,Sant'Agata de Faro"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/88","nsp_id":"88","nsp_placeType":"monastery","wgs_lat":37.08604,"wgs_long":14.88499,"wgs_alt":761,"labels":["en,Holy Spirit of Buscemi","it,Santo Spirito di Buscemi"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/137","nsp_id":"137","nsp_placeType":"monastery","wgs_lat":38.19394,"wgs_long":15.55256,"wgs_alt":3,"labels":["en,Hospital of Saint John of Jerusalem","it,L'ospedale di San Giovanni di Gerusalemme"],"nsp_monasticIdentity":"Knights of the Hospital of Saint John of Jerusalem"},{"iri":"http://www.normansicily.org/nsp/place/monastery/210","nsp_id":"210","nsp_placeType":"monastery","wgs_lat":31.78,"wgs_long":35.23972,"wgs_alt":705,"labels":["en,Saint Mary in the Valley of Jehosaphat","it,Santa Maria delle Valle di Giosafat"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/91","nsp_id":"91","nsp_placeType":"monastery","wgs_lat":37.07542,"wgs_long":15.28664,"wgs_alt":17,"labels":["en,Saint Mary of the Nuns","it,Santa Maria de Monialibus"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/5","nsp_id":"5","nsp_placeType":"monastery","wgs_lat":37.16188,"wgs_long":14.75712,"wgs_alt":586,"labels":["en,Saint John of Vizzini","it,San Giovanni di Vizzini"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/174","nsp_id":"174","nsp_placeType":"monastery","wgs_lat":38.07202,"wgs_long":14.74407,"wgs_alt":563,"labels":["en,Saint Michael the Archangel of Demenna","it,San Michele Arcangelo di Demenna"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/42","nsp_id":"42","nsp_placeType":"monastery","wgs_lat":38.12406,"wgs_long":15.49103,"wgs_alt":165,"labels":["en,Saint Mary of Mili","it,Santa Maria di Mili"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/99","nsp_id":"99","nsp_placeType":"monastery","wgs_lat":37.60819,"wgs_long":13.34385,"wgs_alt":739,"labels":["en,Holy Trinity of Refesio","it,Santissima Trinità di Refesio"],"nsp_monasticIdentity":"Cistercians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/103","nsp_id":"103","nsp_placeType":"monastery","wgs_lat":38.1406,"wgs_long":15.52323,"wgs_alt":27,"labels":["en,Saint Mary of Roccamadore","it,Santa Maria di Roccamadore"],"nsp_monasticIdentity":"Cistercians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/87","nsp_id":"87","nsp_placeType":"monastery","wgs_lat":37.50727,"wgs_long":13.08785,"wgs_alt":82,"labels":["it,Santa Maria delle Giummare","en,Saint Mary of Jummarriis"],"nsp_monasticIdentity":"Cluniacs"},{"iri":"http://www.normansicily.org/nsp/place/monastery/123","nsp_id":"123","nsp_placeType":"monastery","wgs_lat":38.19394,"wgs_long":15.55256,"wgs_alt":18,"labels":["en,Saint Mary Magdalene of Jehosaphat","it,Santa Maria Maddalena di Giosafat"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/207","nsp_id":"207","nsp_placeType":"monastery","wgs_lat":38.02381,"wgs_long":14.44142,"wgs_alt":304,"labels":["en,Saint Nicholas","it,San Nicola"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/8","nsp_id":"8","nsp_placeType":"monastery","wgs_lat":37.30188,"wgs_long":14.20959,"wgs_alt":553,"labels":["en,Saint Mary of Mazzarino","it,Santa Maria di Mazzarino"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/160","nsp_id":"160","nsp_placeType":"monastery","wgs_lat":38.13205,"wgs_long":13.33561,"wgs_alt":14,"labels":["en,Saint Theodore","it,San Teodoro"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/161","nsp_id":"161","nsp_placeType":"monastery","wgs_lat":37.93357,"wgs_long":13.66808,"wgs_alt":521,"labels":["en,Saint John of the Lepers","it,San Giovanni dei Lebbrosi"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/115","nsp_id":"115","nsp_placeType":"monastery","wgs_lat":37.81338,"wgs_long":13.3017,"wgs_alt":550,"labels":["en,Saint Nicholas of Corleone","it,San Nicola di Corleone"],"nsp_monasticIdentity":"Augustinian Canons"},{"iri":"http://www.normansicily.org/nsp/place/monastery/15","nsp_id":"15","nsp_placeType":"monastery","wgs_lat":38.07261,"wgs_long":14.70093,"wgs_alt":540,"labels":["en,Saint Barbarus of Dimenna","it,San Barbaro di Dimenna"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/116","nsp_id":"116","nsp_placeType":"monastery","wgs_lat":38.22008,"wgs_long":15.24023,"wgs_alt":1,"labels":["en,Saint Peter of Milazzo","it,San Pietro di Milazzo"],"nsp_monasticIdentity":"Augustinian Canons"},{"iri":"http://www.normansicily.org/nsp/place/monastery/134","nsp_id":"134","nsp_placeType":"monastery","wgs_lat":38.19394,"wgs_long":15.55256,"wgs_alt":3,"labels":["en,Saint Mary of Mount Sion","it,Santa Maria di Monte Sion"],"nsp_monasticIdentity":"Augustinian Canons"},{"iri":"http://www.normansicily.org/nsp/place/monastery/81","nsp_id":"81","nsp_placeType":"monastery","wgs_lat":37.66358,"wgs_long":14.83283,"wgs_alt":560,"labels":["en,Saint Mary of Robore Grosso","it,Santa Maria di Robore Grosso"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/14","nsp_id":"14","nsp_placeType":"monastery","wgs_lat":38.11039,"wgs_long":14.88749,"wgs_alt":398,"labels":["en,Saint Michael the Archangel of Brolo","it,San Michele Arcangelo di Brolo"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/182","nsp_id":"182","nsp_placeType":"monastery","wgs_lat":40.93572,"wgs_long":14.72824,"wgs_alt":1277,"labels":["en,Santa Maria of Montevergine","it,Santa Maria di Montevergine"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/26","nsp_id":"26","nsp_placeType":"monastery","wgs_lat":38.23531,"wgs_long":15.46865,"wgs_alt":265,"labels":["en,Saint Gregory of Gypso","it,San Gregorio di Gypso"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/216","nsp_id":"216","nsp_placeType":"monastery","wgs_lat":37.9927,"wgs_long":13.87648,"wgs_alt":2,"labels":["en,Saint John of Rocella","it,San Giovanni di Rocella"],"nsp_monasticIdentity":"UNKNOWN"},{"iri":"http://www.normansicily.org/nsp/place/monastery/143","nsp_id":"143","nsp_placeType":"monastery","wgs_lat":37.9726,"wgs_long":14.08476,"wgs_alt":442,"labels":["en,Saint Anastasia of Gratteri","it,Sant'Anastasia di Gratteri"],"nsp_monasticIdentity":"UNKNOWN"},{"iri":"http://www.normansicily.org/nsp/place/monastery/144","nsp_id":"144","nsp_placeType":"monastery","wgs_lat":37.88366,"wgs_long":14.12173,"wgs_alt":654,"labels":["en,Saint Mary of Cava","it,Santa Maria della Cava"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/106","nsp_id":"106","nsp_placeType":"monastery","wgs_lat":38.04657,"wgs_long":13.11785,"wgs_alt":175,"labels":["en,Saint James of Partinico","it,San Giacomo di Partinico"],"nsp_monasticIdentity":"Augustinian Canons"},{"iri":"http://www.normansicily.org/nsp/place/monastery/54","nsp_id":"54","nsp_placeType":"monastery","wgs_lat":38.13205,"wgs_long":13.33561,"wgs_alt":14,"labels":["en,Saint Nicholas of Gurguro","it,San Nicola lo Gurguro"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/18","nsp_id":"18","nsp_placeType":"monastery","wgs_lat":37.82914,"wgs_long":14.86403,"wgs_alt":960,"labels":["en,Saint Constantine of Malet","it,San Costantino di Malet"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/188","nsp_id":"188","nsp_placeType":"monastery","wgs_lat":38.6078,"wgs_long":16.06751,"wgs_alt":365,"labels":["en,Saint Euplus","it,Sant'Euplio"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/77","nsp_id":"77","nsp_placeType":"monastery","wgs_lat":38.0309,"wgs_long":15.21902,"wgs_alt":401,"labels":["en,Saint Venera of Vanella","it,Santa Venera di Vanella"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/179","nsp_id":"179","nsp_placeType":"monastery","wgs_lat":38.59216,"wgs_long":16.07918,"wgs_alt":272,"labels":["en,Holy Trinity and Saint Michael the Archangel of Mileto","it,Santissima Trinità di San Michele Arcangelo di Mileto"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/57","nsp_id":"57","nsp_placeType":"monastery","wgs_lat":37.65359,"wgs_long":12.5874,"wgs_alt":2,"labels":["en,Saint Nicholas Regale","it,San Nicolò Regale"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/218","nsp_id":"218","nsp_placeType":"monastery","wgs_lat":40.68194,"wgs_long":14.69111,"wgs_alt":347,"labels":["en,Holy Trinity at La Cava","it,Santissima Trinità della Cava"],"nsp_monasticIdentity":"Cluniacs"},{"iri":"http://www.normansicily.org/nsp/place/monastery/221","nsp_id":"221","nsp_placeType":"monastery","wgs_lat":31.76904,"wgs_long":35.21633,"wgs_alt":786,"labels":["en,Knights of the Hospital of Saint John at Jerusalem","it,Cavalieri Ospitalieri di San Giovanni in Gerusalemme"],"nsp_monasticIdentity":"Knights of the Hospital of Saint John of Jerusalem"},{"iri":"http://www.normansicily.org/nsp/place/monastery/59","nsp_id":"59","nsp_placeType":"monastery","wgs_lat":38.03318,"wgs_long":14.59712,"wgs_alt":706,"labels":["en,Saint Pancras of Saint Fratello","it,San Pancrazio di San Fratello"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/125","nsp_id":"125","nsp_placeType":"monastery","wgs_lat":37.65711,"wgs_long":14.51867,"wgs_alt":611,"labels":["en,Saint Philip of Agira","it,San Filippo d'Agira"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/131","nsp_id":"131","nsp_placeType":"monastery","wgs_lat":37.66358,"wgs_long":14.83283,"wgs_alt":560,"labels":["en,Saint Elias the Prophet","it,Sant'Elia Profeta"],"nsp_monasticIdentity":"Augustinian Canons"},{"iri":"http://www.normansicily.org/nsp/place/monastery/157","nsp_id":"157","nsp_placeType":"monastery","wgs_lat":38.13205,"wgs_long":13.33561,"wgs_alt":14,"labels":["en,Saint Christopher","it,San Cristoforo"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/158","nsp_id":"158","nsp_placeType":"monastery","wgs_lat":38.13205,"wgs_long":13.33561,"wgs_alt":14,"labels":["en,Saint Mary de Oreto","it,Santa Maria di Oreto"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/53","nsp_id":"53","nsp_placeType":"monastery","wgs_lat":38.04602,"wgs_long":14.91619,"wgs_alt":654,"labels":["en,Saint Nicholas of Fico","it,San Nicolò di Fico"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/22","nsp_id":"22","nsp_placeType":"monastery","wgs_lat":38.07261,"wgs_long":14.70093,"wgs_alt":540,"labels":["en,Saint Felix of San Marco","it,San Felice di San Marco"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/109","nsp_id":"109","nsp_placeType":"monastery","wgs_lat":38.19394,"wgs_long":15.55256,"wgs_alt":3,"labels":["en,Saint Matthew of Messina","it,San Matteo di Messina"],"nsp_monasticIdentity":"Augustinian Canons"},{"iri":"http://www.normansicily.org/nsp/place/monastery/186","nsp_id":"186","nsp_placeType":"monastery","wgs_lat":37.88306,"wgs_long":14.79808,"wgs_alt":787,"labels":["en,Saint Nicholas of Sciara","it,San Nicola di Sciara"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/135","nsp_id":"135","nsp_placeType":"monastery","wgs_lat":37.41468,"wgs_long":14.44542,"wgs_alt":800,"labels":["en,Saint Anne of Fesime","it,Sant'Anna di Fesime"],"nsp_monasticIdentity":"Augustinian Canons"},{"iri":"http://www.normansicily.org/nsp/place/monastery/9","nsp_id":"9","nsp_placeType":"monastery","wgs_lat":37.191,"wgs_long":14.18232,"wgs_alt":402,"labels":["en,Saint Mary of Butera","it,Santa Maria di Butera"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/136","nsp_id":"136","nsp_placeType":"monastery","wgs_lat":37.29548,"wgs_long":14.84058,"wgs_alt":150,"labels":["en,Unknown","it,Sconosciuto"],"nsp_monasticIdentity":"Knights Templar"},{"iri":"http://www.normansicily.org/nsp/place/monastery/56","nsp_id":"56","nsp_placeType":"monastery","wgs_lat":38.19394,"wgs_long":15.55256,"wgs_alt":3,"labels":["en,Saint Nicholas of Pellera","it,San Nicola di Pellera"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/25","nsp_id":"25","nsp_placeType":"monastery","wgs_lat":37.31065,"wgs_long":13.57661,"wgs_alt":230,"labels":["en,Saint George of Agrigento","it,San Giorgio di Agrigento"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/84","nsp_id":"84","nsp_placeType":"monastery","wgs_lat":37.64433,"wgs_long":13.32562,"wgs_alt":583,"labels":["en,Saint Mary of Adriano","it,Santa Maria di Adriano"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/122","nsp_id":"122","nsp_placeType":"monastery","wgs_lat":37.56578,"wgs_long":14.89489,"wgs_alt":253,"labels":["en,Saint Mary of Jehosaphat","it,Santa Maria di Giosafat"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/19","nsp_id":"19","nsp_placeType":"monastery","wgs_lat":37.88556,"wgs_long":14.08139,"wgs_alt":845,"labels":["en,Saint Cosmas at Gonata","it,San Cosma a Gonata"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/145","nsp_id":"145","nsp_placeType":"monastery","wgs_lat":37.80953,"wgs_long":14.5066,"wgs_alt":970,"labels":["en,Christ the Savior of Cerami","it,Santissimo Salvatore di Cerami"],"nsp_monasticIdentity":"UNKNOWN"},{"iri":"http://www.normansicily.org/nsp/place/monastery/177","nsp_id":"177","nsp_placeType":"monastery","wgs_lat":31.7717,"wgs_long":35.22904,"wgs_alt":773,"labels":["en,Our Lady of Mount Sion at Jerusalem","it,Our Lady of Mount Sion at Jerusalem"],"nsp_monasticIdentity":"Augustinian Canons"},{"iri":"http://www.normansicily.org/nsp/place/monastery/7","nsp_id":"7","nsp_placeType":"monastery","wgs_lat":37.98385,"wgs_long":14.23606,"wgs_alt":614,"labels":["en,Saint Mary of Tusa","it,Santa Maria di Tusa"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/66","nsp_id":"66","nsp_placeType":"monastery","wgs_lat":38.16549,"wgs_long":15.50075,"wgs_alt":240,"labels":["en,Saint Philip the Great","it,San Filippo Magno"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/100","nsp_id":"100","nsp_placeType":"monastery","wgs_lat":37.66175,"wgs_long":14.92333,"wgs_alt":933,"labels":["en,Saint Mary of Licodia (Summer Abbey)","it,*Santa Maria di Licodia (Abbazia Estiva)"],"nsp_monasticIdentity":"UNKNOWN"},{"iri":"http://www.normansicily.org/nsp/place/monastery/3","nsp_id":"3","nsp_placeType":"monastery","wgs_lat":37.93357,"wgs_long":13.66808,"wgs_alt":521,"labels":["en,Saint Mary of Caccamo","it,Santa Maria di Caccamo"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/58","nsp_id":"58","nsp_placeType":"monastery","wgs_lat":37.58761,"wgs_long":13.29048,"wgs_alt":330,"labels":["en,Saint Nicholas of Ysa","it,San Nicola di Ysa"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/190","nsp_id":"190","nsp_placeType":"monastery","wgs_lat":37.88306,"wgs_long":14.79808,"wgs_alt":787,"labels":["en,Saint Julian of Roccella","it,San Giuliano di Roccella"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/193","nsp_id":"193","nsp_placeType":"monastery","wgs_lat":37.88306,"wgs_long":14.79808,"wgs_alt":787,"labels":["en,Saint Leo","it,San Leone"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/194","nsp_id":"194","nsp_placeType":"monastery","wgs_lat":37.88306,"wgs_long":14.79808,"wgs_alt":787,"labels":["en,Saint Michael","it,San Michele"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/197","nsp_id":"197","nsp_placeType":"monastery","wgs_lat":37.88306,"wgs_long":14.79808,"wgs_alt":787,"labels":["en,Saint Nicholas of Castanea","it,San Nicola de Castanea"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/96","nsp_id":"96","nsp_placeType":"monastery","wgs_lat":37.72088,"wgs_long":13.43435,"wgs_alt":966,"labels":["en,Saint Angelo of Prizzi","it,Sant'Angelo di Prizzi"],"nsp_monasticIdentity":"Cistercians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/44","nsp_id":"44","nsp_placeType":"monastery","wgs_lat":37.56171,"wgs_long":14.92123,"wgs_alt":290,"labels":["en,Saint Mary of Scala","it,Santa Maria di Scala"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/167","nsp_id":"167","nsp_placeType":"monastery","wgs_lat":38.17007,"wgs_long":15.41429,"wgs_alt":560,"labels":["en,Saint Mary","it,Santa Maria"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/68","nsp_id":"68","nsp_placeType":"monastery","wgs_lat":38.19394,"wgs_long":15.55256,"wgs_alt":3,"labels":["en,Christ the Savior in Lingua Phari","it,Santissimo Salvatore in Lingua Phari"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/60","nsp_id":"60","nsp_placeType":"monastery","wgs_lat":38.19394,"wgs_long":15.55256,"wgs_alt":3,"labels":["en,Saint Pantaleon of the Presbyter Scholarios","it,San Pantaleone del Presbitero Scholarios"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/41","nsp_id":"41","nsp_placeType":"monastery","wgs_lat":38.19394,"wgs_long":15.55256,"wgs_alt":3,"labels":["en,Saint Mary of Massa","it,Santa Maria di Massa"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/142","nsp_id":"142","nsp_placeType":"monastery","wgs_lat":37.9421,"wgs_long":13.94185,"wgs_alt":562,"labels":["en,Saint Mary of Pedale","it,Santa Maria di Pedale"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/23","nsp_id":"23","nsp_placeType":"monastery","wgs_lat":38.10926,"wgs_long":13.35507,"wgs_alt":26,"labels":["en,Saint George of the Kemonia","it,San Giorgio in Kemonia"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/98","nsp_id":"98","nsp_placeType":"monastery","wgs_lat":38.09982,"wgs_long":13.3627,"wgs_alt":32,"labels":["en,Holy Spirit of Palermo","it,Santo Spirito di Palermo"],"nsp_monasticIdentity":"Cistercians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/164","nsp_id":"164","nsp_placeType":"monastery","wgs_lat":46.43432,"wgs_long":4.65926,"wgs_alt":240,"labels":["en,Cluny","it,Cluny"],"nsp_monasticIdentity":"Cluniacs"},{"iri":"http://www.normansicily.org/nsp/place/monastery/111","nsp_id":"111","nsp_placeType":"monastery","wgs_lat":37.28556,"wgs_long":14.99737,"wgs_alt":53,"labels":["en,Saint George of Lentini","it,San Giorgio di Lentini"],"nsp_monasticIdentity":"Augustinian Canons"},{"iri":"http://www.normansicily.org/nsp/place/monastery/138","nsp_id":"138","nsp_placeType":"monastery","wgs_lat":38.13205,"wgs_long":13.33561,"wgs_alt":14,"labels":["en,Hospital of All Saints of Palermo","it,L'ospedale di Tutti i Santi di Palermo"],"nsp_monasticIdentity":"Knights of the Hospital of Saint John of Jerusalem"},{"iri":"http://www.normansicily.org/nsp/place/monastery/127","nsp_id":"127","nsp_placeType":"monastery","wgs_lat":37.84788,"wgs_long":14.47976,"wgs_alt":1100,"labels":["en,Saint Philip of Capizzi","it,San Filippo di Capizzi"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/85","nsp_id":"85","nsp_placeType":"monastery","wgs_lat":38.08202,"wgs_long":13.29215,"wgs_alt":299,"labels":["en,Saint Mary Nuova","it,Santa Maria La Nuova"],"nsp_monasticIdentity":"Cluniacs"},{"iri":"http://www.normansicily.org/nsp/place/monastery/168","nsp_id":"168","nsp_placeType":"monastery","wgs_lat":37.92823,"wgs_long":14.3578,"wgs_alt":900,"labels":["en,Saint Mary of Bucanto","it,Santa Maria di Bucanto"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/151","nsp_id":"151","nsp_placeType":"monastery","wgs_lat":38.02143,"wgs_long":14.70142,"wgs_alt":400,"labels":["en,Saint Nicholas of Paleocastro","it,San Niccolò di Paleocastro"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/156","nsp_id":"156","nsp_placeType":"monastery","wgs_lat":37.28556,"wgs_long":14.99737,"wgs_alt":53,"labels":["en,Saint John of Murgo","it,San Giovanni di Murgo"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/89","nsp_id":"89","nsp_placeType":"monastery","wgs_lat":38.70985,"wgs_long":13.19293,"wgs_alt":49,"labels":["en,Saint Mary of Ustica","it,Santa Maria di Ustica"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/92","nsp_id":"92","nsp_placeType":"monastery","wgs_lat":37.66284,"wgs_long":14.83369,"wgs_alt":554,"labels":["en,Saint Lucy of Adernò","it,Santa Lucia di Adernò"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/76","nsp_id":"76","nsp_placeType":"monastery","wgs_lat":37.68589,"wgs_long":12.75455,"wgs_alt":150,"labels":["en,Holy Trinity of Delia","it,Santissima Trinità di Delia"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/224","nsp_id":"224","nsp_placeType":"monastery","wgs_lat":48.790558,"wgs_long":0.463889,"wgs_alt":264,"labels":["en,Saint Evroul-en-Ouche","it,Saint-Evroul-en-Ouche"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/150","nsp_id":"150","nsp_placeType":"monastery","wgs_lat":38.14736,"wgs_long":14.96409,"wgs_alt":157,"labels":["en,Saint Hippolytus","it,San Ippolito"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/124","nsp_id":"124","nsp_placeType":"monastery","wgs_lat":38.02653,"wgs_long":12.88183,"wgs_alt":26,"labels":["en,Saint Mary of Calatahameth","it,Santa Maria di Calatahameth"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/202","nsp_id":"202","nsp_placeType":"monastery","wgs_lat":38.06838,"wgs_long":14.636,"wgs_alt":30,"labels":["en,Saint Nicholas","it,San Nicola"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/215","nsp_id":"215","nsp_placeType":"monastery","wgs_lat":39.44539,"wgs_long":16.32054,"wgs_alt":854,"labels":["en,Sambucina","it,Sambucina"],"nsp_monasticIdentity":"Cistercians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/1","nsp_id":"1","nsp_placeType":"monastery","wgs_lat":38.46677,"wgs_long":14.95731,"wgs_alt":21,"labels":["en,Saint Bartholomew of Lipari","it,San Bartolomeo di Lipari"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/132","nsp_id":"132","nsp_placeType":"monastery","wgs_lat":37.50626,"wgs_long":14.07618,"wgs_alt":572,"labels":["en,Holy Spirit at Caltanissetta","it,Santo Spirito a Caltanissetta"],"nsp_monasticIdentity":"Augustinian Canons"},{"iri":"http://www.normansicily.org/nsp/place/monastery/30","nsp_id":"30","nsp_placeType":"monastery","wgs_lat":37.88905,"wgs_long":15.01443,"wgs_alt":590,"labels":["en,Saint John of Psichro","it,San Giovanni di Psichro"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/183","nsp_id":"183","nsp_placeType":"monastery","wgs_lat":37.88306,"wgs_long":14.79808,"wgs_alt":787,"labels":["en,Saint Paul of the Hospital of Sciara","it,San Paolo dell’Ospedale di Sciara"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/185","nsp_id":"185","nsp_placeType":"monastery","wgs_lat":37.88306,"wgs_long":14.79808,"wgs_alt":787,"labels":["en,Saint John","it,San Giovanni"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/187","nsp_id":"187","nsp_placeType":"monastery","wgs_lat":37.88306,"wgs_long":14.79808,"wgs_alt":787,"labels":["en,Saint Leo","it,San Leone"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/189","nsp_id":"189","nsp_placeType":"monastery","wgs_lat":37.88306,"wgs_long":14.79808,"wgs_alt":787,"labels":["en,Saint Parasceve","it,Santa Parasceve"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/80","nsp_id":"80","nsp_placeType":"monastery","wgs_lat":37.5037,"wgs_long":15.08,"wgs_alt":36,"labels":["en,Saint Nicholas of Arena","it,San Nicolò l'Arena"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/223","nsp_id":"223","nsp_placeType":"monastery","wgs_lat":31.77797,"wgs_long":35.2358,"wgs_alt":743,"labels":["en,Knights Templar","it,Cavalieri Templari"],"nsp_monasticIdentity":"Knights Templar"},{"iri":"http://www.normansicily.org/nsp/place/monastery/121","nsp_id":"121","nsp_placeType":"monastery","wgs_lat":38.14772,"wgs_long":15.21469,"wgs_alt":60,"labels":["en,Saint Anne of Gala","it,Sant'Anna di Gala"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/139","nsp_id":"139","nsp_placeType":"monastery","wgs_lat":37.69281,"wgs_long":13.01584,"wgs_alt":400,"labels":["en,Saint Catherine","it,Santa Caterina"],"nsp_monasticIdentity":"Knights of the Hospital of Saint Lazarus at Jerusalem"},{"iri":"http://www.normansicily.org/nsp/place/monastery/27","nsp_id":"27","nsp_placeType":"monastery","wgs_lat":37.82049,"wgs_long":15.23069,"wgs_alt":60,"labels":["en,Saint Onufrius of Calatabiet","it,Sant'Onofrio di Calatabiet"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/72","nsp_id":"72","nsp_placeType":"monastery","wgs_lat":37.91554,"wgs_long":15.10063,"wgs_alt":495,"labels":["en,Christ the Savior of Placa","it,Santissimo Salvatore della Placa"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/130","nsp_id":"130","nsp_placeType":"monastery","wgs_lat":37.39238,"wgs_long":14.36244,"wgs_alt":660,"labels":["en,Saint Andrew of Piazza Armerina","it,Sant'Andrea di Piazza Amerina"],"nsp_monasticIdentity":"Augustinian Canons"},{"iri":"http://www.normansicily.org/nsp/place/monastery/46","nsp_id":"46","nsp_placeType":"monastery","wgs_lat":37.78437,"wgs_long":14.59605,"wgs_alt":1121,"labels":["en,Saint Mercurius of Troina","it,San Mercurio di Troina"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/17","nsp_id":"17","nsp_placeType":"monastery","wgs_lat":37.78437,"wgs_long":14.59605,"wgs_alt":1121,"labels":["en,Saint Basil of Troina","it,San Basilio di Troina"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/119","nsp_id":"119","nsp_placeType":"monastery","wgs_lat":37.07542,"wgs_long":15.28664,"wgs_alt":17,"labels":["en,Saint Lucy","it,Santa Lucia"],"nsp_monasticIdentity":"Augustinian Canons"},{"iri":"http://www.normansicily.org/nsp/place/monastery/51","nsp_id":"51","nsp_placeType":"monastery","wgs_lat":38.02596,"wgs_long":15.38099,"wgs_alt":200,"labels":["en,Saint Nicander of San Nicone","it,San Nicandro di San Nicone"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/153","nsp_id":"153","nsp_placeType":"monastery","wgs_lat":38.03176,"wgs_long":14.77145,"wgs_alt":790,"labels":["en,Saint Peter of Mueli","it,San Pietro di Mueli"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/181","nsp_id":"181","nsp_placeType":"monastery","wgs_lat":37.191,"wgs_long":14.18232,"wgs_alt":402,"labels":["en,Saint Hippolytus","it,San Ippolito"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/214","nsp_id":"214","nsp_placeType":"monastery","wgs_lat":38.56604,"wgs_long":16.31813,"wgs_alt":816,"labels":["en,Saint Steven of the Forest","it,Santo Stefano del Bosco"],"nsp_monasticIdentity":"Cistercians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/118","nsp_id":"118","nsp_placeType":"monastery","wgs_lat":38.03997,"wgs_long":14.02338,"wgs_alt":24,"labels":["en,Christ the Savior and Saints Peter and Paul of Cefalù","it,Santissimo Salvatore e Santi Pietro e Paolo a Cefalù"],"nsp_monasticIdentity":"Augustinian Canons"},{"iri":"http://www.normansicily.org/nsp/place/monastery/152","nsp_id":"152","nsp_placeType":"monastery","wgs_lat":37.90197,"wgs_long":15.13821,"wgs_alt":330,"labels":["en,Saint Mary of Gullia","it,Santa Maria della Gullia"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/33","nsp_id":"33","nsp_placeType":"monastery","wgs_lat":37.6516,"wgs_long":12.61308,"wgs_alt":32,"labels":["en,Saint Mary of the Giummare","it,Santa Maria delle Giummare"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/43","nsp_id":"43","nsp_placeType":"monastery","wgs_lat":38.11477,"wgs_long":13.36287,"wgs_alt":14,"labels":["en,Saint Mary of the Admiral","it,Santa Maria dell'Ammiraglio"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/222","nsp_id":"222","nsp_placeType":"monastery","wgs_lat":31.76904,"wgs_long":35.21633,"wgs_alt":786,"labels":["en,Hospital of Saint Lazarus of Jerusalem","it,Ospitale di San Lazzaro di Gerusalemme"],"nsp_monasticIdentity":"Hospital of Saint Lazarus of Jerusalem"},{"iri":"http://www.normansicily.org/nsp/place/monastery/93","nsp_id":"93","nsp_placeType":"monastery","wgs_lat":37.81338,"wgs_long":13.3017,"wgs_alt":550,"labels":["en,Saint Mary Magdalene of Corleone","it,Santa Maria Maddalena di Corleone"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/108","nsp_id":"108","nsp_placeType":"monastery","wgs_lat":37.67894,"wgs_long":13.60346,"wgs_alt":677,"labels":["en,Saint Mary of Castronuovo","it,Santa Maria di Castronuovo"],"nsp_monasticIdentity":"Augustinian Canons"},{"iri":"http://www.normansicily.org/nsp/place/monastery/2","nsp_id":"2","nsp_placeType":"monastery","wgs_lat":38.14736,"wgs_long":14.96409,"wgs_alt":157,"labels":["en,Christ the Savior of Patti","it,Santissimo Salvatore di Patti"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/28","nsp_id":"28","nsp_placeType":"monastery","wgs_lat":38.01538,"wgs_long":15.13134,"wgs_alt":650,"labels":["en,Saint James of Calò","it,San Giacomo di Calò"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/75","nsp_id":"75","nsp_placeType":"monastery","wgs_lat":38.08439,"wgs_long":14.74609,"wgs_alt":428,"labels":["en,Saint Theodore of Mirto","it,San Teodoro di Mirto"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/154","nsp_id":"154","nsp_placeType":"monastery","wgs_lat":38.22008,"wgs_long":15.24023,"wgs_alt":1,"labels":["en,Saints Cosmas and Damian","it,Santi Cosma e Damiano"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/105","nsp_id":"105","nsp_placeType":"monastery","wgs_lat":38.13205,"wgs_long":13.33561,"wgs_alt":14,"labels":["en,Saint Peter of Palermo","it,San Pietro di Palermo"],"nsp_monasticIdentity":"Augustinian Canons"},{"iri":"http://www.normansicily.org/nsp/place/monastery/21","nsp_id":"21","nsp_placeType":"monastery","wgs_lat":38.12515,"wgs_long":15.06068,"wgs_alt":2,"labels":["en,Saint Elias of Scala Oliverii","it,Sant'Elia di Scala Oliveri"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/82","nsp_id":"82","nsp_placeType":"monastery","wgs_lat":37.61616,"wgs_long":14.88779,"wgs_alt":444,"labels":["en,Saint Mary of Licodia","it,Santa Maria di Licodia"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/217","nsp_id":"217","nsp_placeType":"monastery","wgs_lat":34.3683,"wgs_long":35.7794,"wgs_alt":297,"labels":["en,Balamand","it,Bellus Mons"],"nsp_monasticIdentity":"Cistercians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/171","nsp_id":"171","nsp_placeType":"monastery","wgs_lat":38.02596,"wgs_long":15.38099,"wgs_alt":200,"labels":["en,Saint Mary della Provvidenza","it,Santa Maria della Provvidenza"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/39","nsp_id":"39","nsp_placeType":"monastery","wgs_lat":37.99524,"wgs_long":15.33537,"wgs_alt":319,"labels":["en,Saint Mary of Mandanici","it,Santa Maria di Mandanici"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/73","nsp_id":"73","nsp_placeType":"monastery","wgs_lat":38.10082,"wgs_long":15.47842,"wgs_alt":144,"labels":["en,Saint Steven of Messina","it,Santo Stefano di Messina"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/97","nsp_id":"97","nsp_placeType":"monastery","wgs_lat":37.72088,"wgs_long":13.43435,"wgs_alt":966,"labels":["en,Saint Christopher of Prizzi","it,San Cristoforo di Prizzi"],"nsp_monasticIdentity":"Cistercians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/90","nsp_id":"90","nsp_placeType":"monastery","wgs_lat":38.21295,"wgs_long":15.51455,"wgs_alt":270,"labels":["en,Saint Mary delle Scale","it,Santa Maria delle Scale"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/147","nsp_id":"147","nsp_placeType":"monastery","wgs_lat":37.56675,"wgs_long":14.90254,"wgs_alt":225,"labels":["en,Saint Philip of Pantano","it,San Filippo di Pantano"],"nsp_monasticIdentity":"UNKNOWN"},{"iri":"http://www.normansicily.org/nsp/place/monastery/219","nsp_id":"219","nsp_placeType":"monastery","wgs_lat":37.80064,"wgs_long":14.10813,"wgs_alt":1147,"labels":["en,Saint Michael the Archangel","it,San Michele Arcangelo"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/129","nsp_id":"129","nsp_placeType":"monastery","wgs_lat":38.19394,"wgs_long":15.55256,"wgs_alt":3,"labels":["en,Saint Mary of the Latins","it,Santa Maria dei Latini"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/195","nsp_id":"195","nsp_placeType":"monastery","wgs_lat":38.02973,"wgs_long":14.82212,"wgs_alt":468,"labels":["en,Saint Nicholas of Alafico in Tortorici","it,San Nicola di Alafico in Tortorici"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/165","nsp_id":"165","nsp_placeType":"monastery","wgs_lat":38.03176,"wgs_long":14.77145,"wgs_alt":790,"labels":["en,Saint Basil del Tormento","it,San Basilio del Tormento"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/47","nsp_id":"47","nsp_placeType":"monastery","wgs_lat":37.65348,"wgs_long":12.59086,"wgs_alt":14,"labels":["en,Saint Michael of Mazara","it,San Michele di Mazara"],"nsp_monasticIdentity":"Basilians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/206","nsp_id":"206","nsp_placeType":"monastery","wgs_lat":38.01566,"wgs_long":14.59818,"wgs_alt":675,"labels":["en,Saint James of the Hospital near the Sea","it,San Giacomo dell’Ospedale Vicino al Mare"],"nsp_monasticIdentity":"Benedictines"},{"iri":"http://www.normansicily.org/nsp/place/monastery/102","nsp_id":"102","nsp_placeType":"monastery","wgs_lat":37.99977,"wgs_long":15.1041,"wgs_alt":533,"labels":["en,Saint Mary of Novara","it,Santa Maria di Novara"],"nsp_monasticIdentity":"Cistercians"},{"iri":"http://www.normansicily.org/nsp/place/monastery/173","nsp_id":"173","nsp_placeType":"monastery","wgs_lat":37.98096,"wgs_long":14.30337,"wgs_alt":660,"labels":["en,Saint Mary of Sparti","it,Santa Maria di Sparti"],"nsp_monasticIdentity":"Basilians"}]
\ No newline at end of file
diff --git a/public/data/testdata.js b/public/data/testdata.js
new file mode 100644
index 0000000..6aa6e86
--- /dev/null
+++ b/public/data/testdata.js
@@ -0,0 +1,61 @@
+/* eslint camelcase: 0 */
+const testdata = [
+ {
+ type: 'Feature',
+ properties: {
+ english_place_name: 'Palermo',
+ },
+ geometry: {
+ type: 'Point',
+ coordinates: [13.3648681640625, 38.095659755295614],
+ },
+ },
+ {
+ type: 'Feature',
+ properties: {
+ english_place_name: 'Catania',
+ },
+ geometry: {
+ type: 'Point',
+ coordinates: [15.0677490234375, 37.48793540168987],
+ },
+ },
+ {
+ type: 'Feature',
+ properties: {
+ english_place_name: 'Syracuse',
+ },
+ geometry: {
+ type: 'Point',
+ coordinates: [15.2764892578125, 37.046408899699564],
+ },
+ },
+ {
+ type: 'Feature',
+ properties: {
+ english_place_name: 'Ragusa',
+ },
+ geometry: {
+ type: 'Point',
+ coordinates: [14.738159179687502, 36.914764288955936],
+ },
+ },
+ {
+ type: 'Feature',
+ properties: {
+ english_place_name: "Forza d'Agrò",
+ },
+ geometry: {
+ type: 'Point',
+ coordinates: [15.33409, 37.91539],
+ },
+ },
+ {
+ type: 'Feature',
+ properties: {
+ english_place_name: 'Unknown',
+ },
+ },
+];
+
+export default testdata;
diff --git a/public/index.html b/public/index.html
index 01d9332..e1de456 100644
--- a/public/index.html
+++ b/public/index.html
@@ -5,6 +5,10 @@
Interactive Map
+
diff --git a/refresh-data.sh b/refresh-data.sh
new file mode 100755
index 0000000..0783ee8
--- /dev/null
+++ b/refresh-data.sh
@@ -0,0 +1,153 @@
+#!/bin/bash
+
+# Script to refresh places.json and individual place detail files from the Norman Sicily API
+# Usage: ./refresh-data.sh
+
+set -e # Exit on error, but we'll handle specific errors manually
+
+# Colors for output
+RED='\033[0;31m'
+GREEN='\033[0;32m'
+YELLOW='\033[1;33m'
+NC='\033[0m' # No Color
+
+# Configuration
+API_BASE_URL="https://api.normansicily.org"
+DATA_DIR="src/data"
+PLACE_DETAILS_DIR="$DATA_DIR/place-details"
+
+# HTTP headers as array for curl
+declare -a HEADERS=(
+ "-H" "accept: application/json, text/plain, */*"
+ "-H" "accept-language: en-US,en;q=0.8"
+ "-H" "cache-control: no-cache"
+ "-H" "dnt: 1"
+ "-H" "origin: https://normansicily.org"
+ "-H" "pragma: no-cache"
+ "-H" "priority: u=1, i"
+ "-H" "referer: https://normansicily.org/"
+ "-H" "sec-ch-ua: \"Chromium\";v=\"140\", \"Not=A?Brand\";v=\"24\", \"Brave\";v=\"140\""
+ "-H" "sec-ch-ua-mobile: ?0"
+ "-H" "sec-ch-ua-platform: \"macOS\""
+ "-H" "sec-fetch-dest: empty"
+ "-H" "sec-fetch-mode: cors"
+ "-H" "sec-fetch-site: same-site"
+ "-H" "sec-gpc: 1"
+ "-H" "user-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36"
+)
+
+# Function to make API call with retry logic
+make_api_call() {
+ local url="$1"
+ local output_file="$2"
+ local max_retries=1
+ local attempt=0
+
+ while [ $attempt -le $max_retries ]; do
+ echo "Attempting to fetch: $url (attempt $((attempt + 1)))"
+
+ if curl -s --fail "${HEADERS[@]}" "$url" > "$output_file.tmp"; then
+ # Validate JSON
+ if jq empty "$output_file.tmp" 2>/dev/null; then
+ mv "$output_file.tmp" "$output_file"
+ echo -e "${GREEN}✓ Successfully fetched: $url${NC}"
+ return 0
+ else
+ echo -e "${RED}✗ Invalid JSON received from: $url${NC}"
+ rm -f "$output_file.tmp"
+ fi
+ else
+ echo -e "${YELLOW}⚠ Failed to fetch: $url${NC}"
+ rm -f "$output_file.tmp"
+ fi
+
+ attempt=$((attempt + 1))
+ if [ $attempt -le $max_retries ]; then
+ echo "Retrying in 2 seconds..."
+ sleep 2
+ fi
+ done
+
+ echo -e "${RED}✗ Failed to fetch after $((max_retries + 1)) attempts: $url${NC}"
+ return 1
+}
+
+# Create directories if they don't exist
+mkdir -p "$DATA_DIR"
+mkdir -p "$PLACE_DETAILS_DIR"
+
+echo -e "${GREEN}Starting data refresh...${NC}"
+echo "Target directory: $DATA_DIR"
+echo "Place details directory: $PLACE_DETAILS_DIR"
+echo ""
+
+# Step 1: Fetch places.json
+echo -e "${GREEN}Step 1: Fetching places list...${NC}"
+if make_api_call "$API_BASE_URL/places" "$DATA_DIR/places.json"; then
+ place_count=$(jq length "$DATA_DIR/places.json")
+ echo -e "${GREEN}✓ places.json updated successfully ($place_count places)${NC}"
+else
+ echo -e "${RED}✗ Failed to update places.json${NC}"
+ exit 1
+fi
+
+echo ""
+
+# Step 2: Fetch individual place details
+echo -e "${GREEN}Step 2: Fetching individual place details...${NC}"
+
+# Counter for tracking progress
+total_places=$(jq length "$DATA_DIR/places.json")
+success_count=0
+failed_count=0
+failed_places=()
+
+# Process each place
+for i in $(seq 0 $((total_places - 1))); do
+ # Extract place info using jq
+ place_type=$(jq -r ".[$i].nsp_placeType" "$DATA_DIR/places.json")
+ place_id=$(jq -r ".[$i].nsp_id" "$DATA_DIR/places.json")
+ place_iri=$(jq -r ".[$i].iri" "$DATA_DIR/places.json")
+
+ if [ "$place_type" == "null" ] || [ "$place_id" == "null" ]; then
+ echo -e "${YELLOW}⚠ Skipping place with missing type or ID at index $i${NC}"
+ failed_count=$((failed_count + 1))
+ failed_places+=("Index $i: missing type or ID")
+ continue
+ fi
+
+ # Construct API URL and output filename
+ api_url="$API_BASE_URL/places/$place_type/$place_id"
+ output_file="$PLACE_DETAILS_DIR/${place_type}_${place_id}.json"
+
+ echo "[$((i + 1))/$total_places] Processing: $place_type/$place_id"
+
+ if make_api_call "$api_url" "$output_file"; then
+ success_count=$((success_count + 1))
+ else
+ failed_count=$((failed_count + 1))
+ failed_places+=("$place_type/$place_id")
+ fi
+
+ # Brief pause to be respectful to the API
+ sleep 0.1
+done
+
+echo ""
+echo -e "${GREEN}Data refresh completed!${NC}"
+echo -e "${GREEN}✓ Successfully fetched: $success_count places${NC}"
+
+if [ $failed_count -gt 0 ]; then
+ echo -e "${RED}✗ Failed to fetch: $failed_count places${NC}"
+ echo -e "${YELLOW}Failed places:${NC}"
+ printf '%s\n' "${failed_places[@]}"
+fi
+
+echo ""
+echo "Summary:"
+echo "- places.json: $(ls -lh "$DATA_DIR/places.json" | awk '{print $5}')"
+echo "- Place detail files: $(find "$PLACE_DETAILS_DIR" -name "*.json" | wc -l) files"
+echo "- Total directory size: $(du -sh "$DATA_DIR" | awk '{print $1}')"
+
+echo ""
+echo -e "${GREEN}Data refresh script completed!${NC}"
diff --git a/scripts/migrate-iris.js b/scripts/migrate-iris.js
new file mode 100755
index 0000000..6c4f233
--- /dev/null
+++ b/scripts/migrate-iris.js
@@ -0,0 +1,123 @@
+#!/usr/bin/env node
+
+/**
+ * Migration script to convert fragment-based IRIs to slash-based IRIs
+ *
+ * Old format: http://www.normansicily.org/nsp#monastery164
+ * New format: http://www.normansicily.org/nsp/place/monastery/164
+ *
+ * Also converts:
+ * - http://www.normansicily.org/cssi#assessment26 -> http://www.normansicily.org/cssi/assessment/26
+ * - Keeps external IRIs (zotero.org, example.com/genealogy.owl) unchanged
+ */
+
+const fs = require('fs');
+const path = require('path');
+const glob = require('glob');
+
+// IRI transformation rules
+const transformIRI = (iri) => {
+ if (!iri || typeof iri !== 'string') return iri;
+
+ // Norman Sicily Project places: nsp#monastery164 -> nsp/place/monastery/164
+ const nspPlaceMatch = iri.match(/^http:\/\/www\.normansicily\.org\/nsp#([a-z]+)(\d+)$/);
+ if (nspPlaceMatch) {
+ const [, placeType, id] = nspPlaceMatch;
+ return `http://www.normansicily.org/nsp/place/${placeType}/${id}`;
+ }
+
+ // CSSI assessments: cssi#assessment26 -> cssi/assessment/26
+ const cssiMatch = iri.match(/^http:\/\/www\.normansicily\.org\/cssi#([a-z]+)(\d+)$/);
+ if (cssiMatch) {
+ const [, entityType, id] = cssiMatch;
+ return `http://www.normansicily.org/cssi/${entityType}/${id}`;
+ }
+
+ // Keep external IRIs unchanged (zotero, example.com, geonames, etc.)
+ return iri;
+};
+
+// Recursively transform all IRI values in an object
+const transformObject = (obj) => {
+ if (obj === null || obj === undefined) return obj;
+
+ if (typeof obj === 'string') {
+ return transformIRI(obj);
+ }
+
+ if (Array.isArray(obj)) {
+ return obj.map(transformObject);
+ }
+
+ if (typeof obj === 'object') {
+ const transformed = {};
+ for (const [key, value] of Object.entries(obj)) {
+ // Special handling for 'iri' fields
+ if (key === 'iri') {
+ transformed[key] = transformIRI(value);
+ } else {
+ transformed[key] = transformObject(value);
+ }
+ }
+ return transformed;
+ }
+
+ return obj;
+};
+
+// Process a single JSON file
+const processFile = (filePath) => {
+ try {
+ const content = fs.readFileSync(filePath, 'utf8');
+ const data = JSON.parse(content);
+
+ const transformed = transformObject(data);
+
+ // Write back to file
+ fs.writeFileSync(filePath, JSON.stringify(transformed));
+
+ console.log(`✓ Processed: ${path.basename(filePath)}`);
+ return true;
+ } catch (error) {
+ console.error(`✗ Error processing ${filePath}:`, error.message);
+ return false;
+ }
+};
+
+// Main execution
+const main = () => {
+ const dataDir = path.join(__dirname, '../public/data');
+
+ console.log('Starting IRI migration...\n');
+
+ // Find all JSON files in data directory
+ const jsonFiles = glob.sync('**/*.json', {
+ cwd: dataDir,
+ absolute: true,
+ });
+
+ console.log(`Found ${jsonFiles.length} JSON files to process\n`);
+
+ let successCount = 0;
+ let failCount = 0;
+
+ jsonFiles.forEach((filePath) => {
+ if (processFile(filePath)) {
+ successCount++;
+ } else {
+ failCount++;
+ }
+ });
+
+ console.log('\n' + '='.repeat(50));
+ console.log(`Migration complete!`);
+ console.log(` Success: ${successCount} files`);
+ console.log(` Failed: ${failCount} files`);
+ console.log('='.repeat(50));
+
+ if (failCount > 0) {
+ process.exit(1);
+ }
+};
+
+main();
diff --git a/src/api.js b/src/api.js
index 213a1e4..250d6c3 100644
--- a/src/api.js
+++ b/src/api.js
@@ -1,9 +1,126 @@
-import axios from 'axios';
-import config from './config';
+// Enhanced error handling and performance optimizations
+const createApiError = (message, originalError, code) => {
+ const error = new Error(message);
+ error.originalError = originalError;
+ error.code = code;
+ error.timestamp = new Date().toISOString();
+ return error;
+};
+
+export const getAllPlaces = async (options = {}) => {
+ const { timeout = 10000, retries = 2 } = options;
+
+ for (let attempt = 1; attempt <= retries; attempt += 1) {
+ try {
+ const controller = new AbortController();
+ const timeoutId = setTimeout(() => controller.abort(), timeout);
+
+ // eslint-disable-next-line no-await-in-loop
+ const response = await fetch(`${process.env.PUBLIC_URL}/data/places.json`, {
+ signal: controller.signal,
+ cache: 'default', // Use browser cache when appropriate
+ });
+
+ clearTimeout(timeoutId);
+
+ if (!response.ok) {
+ throw createApiError(`HTTP ${response.status}: ${response.statusText}`, null, 'HTTP_ERROR');
+ }
-export const getAllPlaces = () => axios.get(`${config.apiProtocol}://${config.apiHost}:${config.apiPort}/places`);
+ // eslint-disable-next-line no-await-in-loop
+ const data = await response.json();
+ return { data };
+ } catch (error) {
+ if (attempt === retries) {
+ if (error.name === 'AbortError') {
+ throw createApiError('Request timed out while loading places data', error, 'TIMEOUT');
+ }
+ throw createApiError('Failed to load places data after multiple attempts', error, 'NETWORK_ERROR');
+ }
+ // Exponential backoff
+ // eslint-disable-next-line no-await-in-loop
+ await new Promise((resolve) => setTimeout(resolve, 1000 * attempt));
+ }
+ }
-export const getPlace = (place) => {
+ // This should never be reached due to the retry logic, but required for consistent-return
+ throw createApiError('Maximum retries exceeded', null, 'RETRY_EXCEEDED');
+};
+
+export const getPlace = async (place, options = {}) => {
const { placeId, placeType } = place;
- return axios.get(`${config.apiProtocol}://${config.apiHost}:${config.apiPort}/places/${placeType}/${placeId}`);
+ const { timeout = 8000, retries = 2 } = options;
+
+ if (!placeId || !placeType) {
+ throw createApiError('Invalid place parameters', null, 'INVALID_PARAMS');
+ }
+
+ for (let attempt = 1; attempt <= retries; attempt += 1) {
+ try {
+ const controller = new AbortController();
+ const timeoutId = setTimeout(() => controller.abort(), timeout);
+
+ // Try to fetch the specific place detail file first
+ // eslint-disable-next-line no-await-in-loop
+ const response = await fetch(`${process.env.PUBLIC_URL}/data/place-details/${placeType}_${placeId}.json`, {
+ signal: controller.signal,
+ cache: 'default',
+ });
+
+ clearTimeout(timeoutId);
+
+ if (response.ok) {
+ // eslint-disable-next-line no-await-in-loop
+ const data = await response.json();
+ return { data };
+ }
+
+ // If detail file doesn't exist (404), try fallback to basic places data
+ if (response.status === 404) {
+ const fallbackController = new AbortController();
+ const fallbackTimeoutId = setTimeout(() => fallbackController.abort(), timeout);
+
+ // eslint-disable-next-line no-await-in-loop
+ const placesResponse = await fetch(`${process.env.PUBLIC_URL}/data/places.json`, {
+ signal: fallbackController.signal,
+ cache: 'default',
+ });
+
+ clearTimeout(fallbackTimeoutId);
+
+ if (!placesResponse.ok) {
+ throw createApiError(`Failed to load fallback places data: ${placesResponse.status}`, null, 'HTTP_ERROR');
+ }
+
+ // eslint-disable-next-line no-await-in-loop
+ const placesData = await placesResponse.json();
+ const basicPlace = placesData.find((p) => p.nsp_id === placeId && p.nsp_placeType === placeType);
+
+ if (basicPlace) {
+ return { data: basicPlace };
+ }
+
+ throw createApiError(`Place not found: ${placeType}/${placeId}`, null, 'NOT_FOUND');
+ }
+
+ // Other HTTP errors
+ throw createApiError(`HTTP ${response.status}: ${response.statusText}`, null, 'HTTP_ERROR');
+ } catch (error) {
+ if (attempt === retries) {
+ if (error.name === 'AbortError') {
+ throw createApiError(`Request timed out while loading place: ${placeType}/${placeId}`, error, 'TIMEOUT');
+ }
+ if (error.code) {
+ throw error; // Re-throw our custom errors
+ }
+ throw createApiError(`Failed to load place: ${placeType}/${placeId}`, error, 'NETWORK_ERROR');
+ }
+ // Exponential backoff
+ // eslint-disable-next-line no-await-in-loop
+ await new Promise((resolve) => setTimeout(resolve, 1000 * attempt));
+ }
+ }
+
+ // This should never be reached due to the retry logic, but required for consistent-return
+ throw createApiError('Maximum retries exceeded', null, 'RETRY_EXCEEDED');
};
diff --git a/src/components/ErrorBoundary.jsx b/src/components/ErrorBoundary.jsx
new file mode 100644
index 0000000..5f20c6c
--- /dev/null
+++ b/src/components/ErrorBoundary.jsx
@@ -0,0 +1,145 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+
+class ErrorBoundary extends React.Component {
+ constructor(props) {
+ super(props);
+ this.state = {
+ hasError: false,
+ error: null,
+ errorInfo: null,
+ };
+ }
+
+ static getDerivedStateFromError(error) {
+ // Update state so the next render will show the fallback UI
+ return { hasError: true };
+ }
+
+ componentDidCatch(error, errorInfo) {
+ // Log error details for debugging
+ // eslint-disable-next-line no-console
+ console.error('ErrorBoundary caught an error:', error, errorInfo);
+
+ this.setState({
+ error,
+ errorInfo,
+ });
+
+ // Log to error reporting service in production
+ if (process.env.NODE_ENV === 'production') {
+ // Example: logErrorToService(error, errorInfo);
+ }
+ }
+
+ handleRetry = () => {
+ this.setState({
+ hasError: false,
+ error: null,
+ errorInfo: null,
+ });
+ };
+
+ render() {
+ const { hasError, error, errorInfo } = this.state;
+ const { fallback, title, message, showRetry } = this.props;
+
+ if (hasError) {
+ // Custom fallback UI
+ if (fallback) {
+ return fallback(error, this.handleRetry);
+ }
+
+ return (
+
- {labels.map((l) => {
const [lc, value] = l.split(',');
+
+ // Skip if we don't have both language code and value
+ if (!lc || !value) {
+ return null;
+ }
+
return (