├── .dockerignore ├── .editorconfig ├── .github └── workflows │ └── composer.yml ├── .gitignore ├── .gitlab-ci.yml ├── .htaccess ├── Dockerfile ├── License.txt ├── README.md ├── Warranty.txt ├── app ├── conf │ ├── .htaccess │ ├── annotation_types.conf │ ├── app.conf │ ├── assets.conf │ ├── attribute_types.conf │ ├── authentication.conf │ ├── ban_hammer.conf │ ├── browse.conf │ ├── content_caching.conf │ ├── cookies.conf │ ├── datamodel.conf │ ├── datetime.conf │ ├── default_media_icons.conf │ ├── dimensions.conf │ ├── external_applications.conf │ ├── file_volumes.conf │ ├── find_navigation.conf │ ├── global.conf │ ├── headers.conf │ ├── library_services.conf │ ├── linked_data.conf │ ├── media_display.conf │ ├── media_metadata.conf │ ├── media_processing.conf │ ├── media_volumes.conf │ ├── multipart_id_numbering.conf │ ├── search.conf │ ├── search_indexing.conf │ ├── search_query_builder.conf │ ├── translations.conf │ ├── user_actions.conf │ └── user_pref_defs.conf ├── controllers │ ├── BanController.php │ ├── BrowseController.php │ ├── ClassroomController.php │ ├── CollectionsController.php │ ├── CompareController.php │ ├── ContactController.php │ ├── ContributeController.php │ ├── CookiesController.php │ ├── DefaultController.php │ ├── DetailController.php │ ├── FindController.php │ ├── FrontController.php │ ├── GalleryController.php │ ├── Library │ │ ├── CheckInController.php │ │ └── CheckOutController.php │ ├── LightboxController.php │ ├── ListingController.php │ ├── LoginRegController.php │ ├── MultiSearchController.php │ ├── SearchController.php │ ├── lookup │ │ ├── AttributeValueController.php │ │ ├── CollectionController.php │ │ ├── EntityController.php │ │ ├── InformationServiceController.php │ │ ├── ListItemController.php │ │ ├── ObjectCheckoutController.php │ │ ├── ObjectController.php │ │ ├── ObjectLibraryServicesController.php │ │ ├── OccurrenceController.php │ │ ├── PlaceController.php │ │ ├── VocabularyController.php │ │ └── ajax_object_list_html.php │ └── system │ │ ├── AuthController.php │ │ ├── ErrorController.php │ │ └── PreferencesController.php ├── fonts │ ├── DejaVuSans-Bold.ttf │ ├── DejaVuSans-BoldOblique.ttf │ ├── DejaVuSans-ExtraLight.ttf │ ├── DejaVuSans-Oblique.ttf │ ├── DejaVuSans.ttf │ ├── DejaVuSansCondensed-Bold.ttf │ ├── DejaVuSansCondensed-BoldOblique.ttf │ ├── DejaVuSansCondensed-Oblique.ttf │ ├── DejaVuSansCondensed.ttf │ ├── DejaVuSansMono-Bold.ttf │ ├── DejaVuSansMono-BoldOblique.ttf │ ├── DejaVuSansMono-Oblique.ttf │ ├── DejaVuSansMono.ttf │ ├── DejaVuSerif-Bold.ttf │ ├── DejaVuSerif-BoldItalic.ttf │ ├── DejaVuSerif-Italic.ttf │ ├── DejaVuSerif.ttf │ ├── DejaVuSerifCondensed-Bold.ttf │ ├── DejaVuSerifCondensed-BoldItalic.ttf │ ├── DejaVuSerifCondensed-Italic.ttf │ ├── DejaVuSerifCondensed.ttf │ ├── arial.ttf │ ├── arialbd.ttf │ ├── arialit.ttf │ └── dejavu │ │ ├── AUTHORS │ │ ├── BUGS │ │ ├── LICENSE │ │ ├── NEWS │ │ ├── README │ │ ├── fontconfig │ │ ├── 20-unhint-small-dejavu-sans-mono.conf │ │ ├── 20-unhint-small-dejavu-sans.conf │ │ ├── 20-unhint-small-dejavu-serif.conf │ │ ├── 57-dejavu-sans-mono.conf │ │ ├── 57-dejavu-sans.conf │ │ └── 57-dejavu-serif.conf │ │ ├── langcover.txt │ │ ├── status.txt │ │ └── unicover.txt ├── helpers │ ├── .htaccess │ ├── CLIHelpers.php │ ├── accessHelpers.php │ ├── avHelpers.php │ ├── batchHelpers.php │ ├── browseHelpers.php │ ├── configurationHelpers.php │ ├── contributeHelpers.php │ ├── displayHelpers.php │ ├── errorHelpers.php │ ├── exportHelpers.php │ ├── expressionHelpers.php │ ├── externalMediaHelpers.php │ ├── gisHelpers.php │ ├── guidHelpers.php │ ├── htmlFormHelpers.php │ ├── importHelpers.php │ ├── initializeLocale.php │ ├── libraryServicesHelpers.php │ ├── listHelpers.php │ ├── listingHelpers.php │ ├── logHelpers.php │ ├── mailHelpers.php │ ├── mediaPluginHelpers.php │ ├── navigationHelpers.php │ ├── post-setup.php │ ├── preload.php │ ├── printHelpers.php │ ├── requestHelpers.php │ ├── searchHelpers.php │ ├── supportHelpers.php │ ├── systemHelpers.php │ ├── themeHelpers.php │ ├── tourHelpers.php │ └── utilityHelpers.php ├── lib │ ├── .htaccess │ ├── AccessRestrictions.php │ ├── AdvancedSearchView.php │ ├── AjaxFooter.php │ ├── AppNavigation.php │ ├── ApplicationChangeLog.php │ ├── ApplicationError.php │ ├── ApplicationPluginManager.php │ ├── ApplicationVars.php │ ├── AssetLoadManager.php │ ├── Attributes │ │ ├── Attribute.php │ │ └── Values │ │ │ ├── AttributeValue.php │ │ │ ├── AuthorityAttributeValue.php │ │ │ ├── CollectionsAttributeValue.php │ │ │ ├── ColorAttributeValue.php │ │ │ ├── ContainerAttributeValue.php │ │ │ ├── CurrencyAttributeValue.php │ │ │ ├── DateRangeAttributeValue.php │ │ │ ├── EntitiesAttributeValue.php │ │ │ ├── ExternalMediaAttributeValue.php │ │ │ ├── FileAttributeValue.php │ │ │ ├── FilesizeAttributeValue.php │ │ │ ├── FloorplanAttributeValue.php │ │ │ ├── GeoNamesAttributeValue.php │ │ │ ├── GeocodeAttributeValue.php │ │ │ ├── IAttributeValue.php │ │ │ ├── InformationServiceAttributeValue.php │ │ │ ├── IntegerAttributeValue.php │ │ │ ├── LCSHAttributeValue.php │ │ │ ├── LengthAttributeValue.php │ │ │ ├── ListAttributeValue.php │ │ │ ├── LoansAttributeValue.php │ │ │ ├── MediaAttributeValue.php │ │ │ ├── MovementsAttributeValue.php │ │ │ ├── NumericAttributeValue.php │ │ │ ├── ObjectLotsAttributeValue.php │ │ │ ├── ObjectRepresentationsAttributeValue.php │ │ │ ├── ObjectsAttributeValue.php │ │ │ ├── OccurrencesAttributeValue.php │ │ │ ├── PlacesAttributeValue.php │ │ │ ├── StorageLocationsAttributeValue.php │ │ │ ├── TextAttributeValue.php │ │ │ ├── TimeCodeAttributeValue.php │ │ │ ├── UrlAttributeValue.php │ │ │ └── WeightAttributeValue.php │ ├── Auth │ │ ├── AbstractLDAPAuthAdapter.php │ │ ├── Adapters │ │ │ ├── ActiveDirectory.php │ │ │ ├── CaUsers.php │ │ │ ├── ExternalDB.php │ │ │ ├── HTTPHeaders.php │ │ │ ├── Okta.php │ │ │ ├── OpenLDAP.php │ │ │ └── Shibboleth.php │ │ ├── AuthenticationManager.php │ │ ├── BaseAuthAdapter.php │ │ ├── IAuthAdapter.php │ │ └── PasswordHash.php │ ├── BanHammer.php │ ├── BaseAdvancedSearchController.php │ ├── BaseApplicationPlugin.php │ ├── BaseBrowseController.php │ ├── BaseDetailController.php │ ├── BaseEditorController.php │ ├── BaseFeedController.php │ ├── BaseFindController.php │ ├── BaseFindEngine.php │ ├── BaseInterstitialController.php │ ├── BaseLabel.php │ ├── BaseLookupController.php │ ├── BaseModel.php │ ├── BaseModelWithAttributes.php │ ├── BaseObject.php │ ├── BasePluginController.php │ ├── BaseQuickAddController.php │ ├── BaseRefineableSearchController.php │ ├── BaseRelationshipModel.php │ ├── BaseRepresentationAnnotationModel.php │ ├── BaseRepresentationRelationship.php │ ├── BaseSearchBuilderController.php │ ├── BaseSearchController.php │ ├── BaseSettings.php │ ├── BaseToolsPlugin.php │ ├── BaseVersionUpdater.php │ ├── BaseWidget.php │ ├── BatchEditorProgress.php │ ├── BatchMediaImportProgress.php │ ├── BatchMetadataExportProgress.php │ ├── BatchMetadataImportProgress.php │ ├── BatchProcessor.php │ ├── Browse │ │ ├── BaseBrowse.php │ │ ├── BrowseCache.php │ │ ├── BrowseEngine.php │ │ ├── BrowseResult.php │ │ ├── CollectionBrowse.php │ │ ├── CollectionBrowseResult.php │ │ ├── EntityBrowse.php │ │ ├── EntityBrowseResult.php │ │ ├── InterstitialBrowse.php │ │ ├── InterstitialBrowseResult.php │ │ ├── ListBrowse.php │ │ ├── ListBrowseResult.php │ │ ├── ListItemBrowse.php │ │ ├── ListItemBrowseResult.php │ │ ├── LoanBrowse.php │ │ ├── LoanBrowseResult.php │ │ ├── MovementBrowse.php │ │ ├── MovementBrowseResult.php │ │ ├── ObjectBrowse.php │ │ ├── ObjectBrowseResult.php │ │ ├── ObjectLotBrowse.php │ │ ├── ObjectLotBrowseResult.php │ │ ├── ObjectRepresentationBrowse.php │ │ ├── ObjectRepresentationBrowseResult.php │ │ ├── OccurrenceBrowse.php │ │ ├── OccurrenceBrowseResult.php │ │ ├── PlaceBrowse.php │ │ ├── PlaceBrowseResult.php │ │ ├── StorageLocationBrowse.php │ │ ├── StorageLocationBrowseResult.php │ │ ├── TourBrowse.php │ │ ├── TourBrowseResult.php │ │ ├── TourStopBrowse.php │ │ └── TourStopBrowseResult.php │ ├── BundlableLabelableBaseModelWithAttributes.php │ ├── Cache │ │ ├── CAFileSystemCache.php │ │ ├── CompositeCache.php │ │ ├── ExternalCache.php │ │ ├── JSONEncoder.php │ │ ├── MemoryCache.php │ │ └── PersistentCache.php │ ├── Configuration.php │ ├── Configuration │ │ ├── Pawtucket │ │ │ └── schemas │ │ │ │ ├── app.conf.schema.json │ │ │ │ └── external_applications.conf.schema.json │ │ └── Providence │ │ │ └── schemas │ │ │ ├── app.conf.schema.json │ │ │ ├── datetime.conf.schema.json │ │ │ ├── external_applications.conf.schema.json │ │ │ └── search.conf.schema.json │ ├── ConfigurationCheck.php │ ├── ConfigurationExporter.php │ ├── ContentCaching.php │ ├── Controller │ │ ├── ActionController.php │ │ ├── AppController.php │ │ ├── AppController │ │ │ └── AppControllerPlugin.php │ │ ├── Request.php │ │ ├── Request │ │ │ ├── NotificationManager.php │ │ │ ├── RequestHTTP.php │ │ │ └── Session.php │ │ ├── RequestDispatcher.php │ │ ├── Response.php │ │ └── Response │ │ │ └── ResponseHTTP.php │ ├── CookieOptionsManager.php │ ├── DashboardManager.php │ ├── Datamodel.php │ ├── Db.php │ ├── Db │ │ ├── DbBase.php │ │ ├── DbDriverBase.php │ │ ├── DbResult.php │ │ ├── DbStatement.php │ │ ├── Transaction.php │ │ ├── mysqli.php │ │ └── pdo_mysql.php │ ├── DeaccessionTrait.php │ ├── DeduplicateBaseModel.php │ ├── Error │ │ ├── IErrorSetter.php │ │ └── errors.en_us │ ├── Exceptions │ │ ├── AccessException.php │ │ ├── ApplicationException.php │ │ ├── CaptchaException.php │ │ ├── DatabaseException.php │ │ ├── ExternalCacheInvalidParameterException.php │ │ ├── IIIFAccessException.php │ │ ├── ItemNotFoundException.php │ │ ├── MediaExistsException.php │ │ ├── MediaUploadManageSessionException.php │ │ ├── MediaUploadSessionDoesNotExistException.php │ │ ├── MergeException.php │ │ ├── MetadataAlertExpressionException.php │ │ ├── SearchException.php │ │ ├── ServiceException.php │ │ └── UrlFetchException.php │ ├── Export │ │ ├── BaseExportFormat.php │ │ ├── BaseExportRefinery.php │ │ ├── ExportFormats │ │ │ ├── ExportCSV.php │ │ │ ├── ExportCTDA.php │ │ │ ├── ExportExifTool.php │ │ │ ├── ExportJSON.php │ │ │ ├── ExportMARC.php │ │ │ └── ExportXML.php │ │ ├── ExportRefineryManager.php │ │ ├── OAIPMH │ │ │ └── OaiIdentifier.php │ │ └── Schema │ │ │ └── ExporterItemOptions.json │ ├── ExternalExportManager.php │ ├── File.php │ ├── File │ │ ├── FileInfoCoder.php │ │ ├── FileMimeTypes.php │ │ └── FileVolumes.php │ ├── FooterManager.php │ ├── GarbageCollection.php │ ├── GenericVersionUpdater.php │ ├── GeographicMap.php │ ├── GeographicMapItem.php │ ├── HTTPMultiClient.php │ ├── HTTPMultiClientResult.php │ ├── HierarchicalReindexingProgress.php │ ├── HistoryTrackingCurrentValueTrait.php │ ├── IApplicationPlugin.php │ ├── IBundleProvider.php │ ├── IDNumbering.php │ ├── IDNumbering │ │ ├── IDNumber.php │ │ ├── IIDNumbering.php │ │ ├── MultipartIDNumber.php │ │ └── UUIDNumber.php │ ├── IHierarchy.php │ ├── ILabelable.php │ ├── IRelationshipModel.php │ ├── ITakesAttributes.php │ ├── ITakesSettings.php │ ├── IWidget.php │ ├── Import │ │ ├── BaseDataImporter.php │ │ ├── BaseDataReader.php │ │ ├── BaseRefinery.php │ │ ├── CSVDataImporter.php │ │ ├── DataReaderManager.php │ │ ├── DataReaders │ │ │ ├── BaseDelimitedDataReader.php │ │ │ ├── BaseXMLDataReader.php │ │ │ ├── CSVDelimitedDataReader.php │ │ │ ├── CollectiveAccessDataReader.php │ │ │ ├── DublinCoreXMLReader.php │ │ │ ├── EADReader.php │ │ │ ├── EHiveDataReader.php │ │ │ ├── ExcelDataReader.php │ │ │ ├── ExifDataReader.php │ │ │ ├── FMPDSOResultReader.php │ │ │ ├── FMPXMLResultReader.php │ │ │ ├── InmagicReader.php │ │ │ ├── MARCDataReader.php │ │ │ ├── MARCXMLReader.php │ │ │ ├── METSReader.php │ │ │ ├── MODSReader.php │ │ │ ├── MediaBinReader.php │ │ │ ├── MediaInfoDataReader.php │ │ │ ├── MusearchDataReader.php │ │ │ ├── MySQLDataReader.php │ │ │ ├── OmekaReader.php │ │ │ ├── PBCoreInstDataReader.php │ │ │ ├── PastPerfectXMLReader.php │ │ │ ├── PortfolioDataReader.php │ │ │ ├── RDFReader.php │ │ │ ├── ResourceSpaceDataReader.php │ │ │ ├── SimpleXMLReader.php │ │ │ ├── SqliteDataReader.php │ │ │ ├── TEIReader.php │ │ │ ├── TabDelimitedDataReader.php │ │ │ ├── ULANDataReader.php │ │ │ ├── VernonDataReader.php │ │ │ ├── WordpressRSSReader.php │ │ │ ├── WorldCatDataReader.php │ │ │ └── iDigBioDataReader.php │ │ └── RefineryManager.php │ ├── InformationServiceManager.php │ ├── LabelableBaseModelWithAttributes.php │ ├── LanguageTranslationManager.php │ ├── LocationRelationshipBaseModel.php │ ├── Logging │ │ ├── AccessLogger.php │ │ ├── BaseLogger.php │ │ ├── Batchlog.php │ │ ├── Downloadlog.php │ │ ├── Eventlog.php │ │ ├── KLogger │ │ │ ├── .gitignore │ │ │ ├── KLogger.php │ │ │ ├── README.markdown │ │ │ └── example │ │ │ │ └── example.php │ │ ├── Logger.php │ │ └── Searchlog.php │ ├── Media.php │ ├── Media │ │ ├── BaseMediaViewer.php │ │ ├── IIIFManifests │ │ │ ├── BaseIIIFManifest.php │ │ │ ├── Document.php │ │ │ ├── MixedMedia.php │ │ │ └── Newspaper.php │ │ ├── IIIFResponses │ │ │ ├── BaseIIIFResponse.php │ │ │ ├── Clips.php │ │ │ └── Search.php │ │ ├── IMediaViewer.php │ │ ├── MediaInfoCoder.php │ │ ├── MediaProcessingSettings.php │ │ ├── MediaViewerManager.php │ │ ├── MediaViewers │ │ │ ├── Diva.php │ │ │ ├── MediaElement.php │ │ │ ├── Mirador.php │ │ │ ├── QTVR.php │ │ │ ├── ThreeJS.php │ │ │ ├── TileViewer.php │ │ │ ├── UniversalViewer.php │ │ │ ├── VideoJS.php │ │ │ └── pdfjs.php │ │ └── MediaVolumes.php │ ├── MediaContentLocationIndexer.php │ ├── MediaUploadManager.php │ ├── MediaUploaderHandler.php │ ├── MediaUrl.php │ ├── MetaTagManager.php │ ├── MetadataAlerts │ │ └── TriggerTypes │ │ │ ├── Base.php │ │ │ ├── Date.php │ │ │ ├── Expression.php │ │ │ ├── Modification.php │ │ │ ├── Submission.php │ │ │ ├── SubmissionError.php │ │ │ └── SubmissionWarning.php │ ├── ModelSettings.php │ ├── ObjectRelationshipBaseModel.php │ ├── PageFormat.php │ ├── Parsers │ │ ├── DelimitedDataParser.php │ │ ├── DisplayTemplateParser.php │ │ ├── ExpressionParser.php │ │ ├── ExpressionParser │ │ │ ├── ExpressionGrammar.pp │ │ │ └── ExpressionVisitor.php │ │ ├── IDataParser.php │ │ ├── KmlParser.php │ │ ├── MediaMetadata │ │ │ ├── BaseMediaMetadataParser.php │ │ │ └── XMPParser.php │ │ ├── PlyToStl.php │ │ ├── Tar.php │ │ ├── TilepicParser.php │ │ ├── TimeExpressionParser.php │ │ ├── TimeExpressionParser │ │ │ ├── ar_LB.lang │ │ │ ├── ar_MA.lang │ │ │ ├── az_AZ.lang │ │ │ ├── ca_ES.lang │ │ │ ├── cs_CZ.lang │ │ │ ├── de_AT.lang │ │ │ ├── de_DE.lang │ │ │ ├── el_GR.lang │ │ │ ├── en_AU.lang │ │ │ ├── en_CA.lang │ │ │ ├── en_GB.lang │ │ │ ├── en_US.lang │ │ │ ├── es_ES.lang │ │ │ ├── es_MX.lang │ │ │ ├── eu_EU.lang │ │ │ ├── fr_CA.lang │ │ │ ├── fr_FR.lang │ │ │ ├── he_IL.lang │ │ │ ├── hu_HU.lang │ │ │ ├── it_IT.lang │ │ │ ├── nl_BE.lang │ │ │ ├── nl_NL.lang │ │ │ ├── pl_PL.lang │ │ │ ├── pt_BR.lang │ │ │ ├── pt_PT.lang │ │ │ ├── sr_RS.lang │ │ │ ├── sv_SE.lang │ │ │ └── uk_UA.lang │ │ ├── TimecodeParser.php │ │ ├── UnZipFile.php │ │ ├── XMLFormatter.php │ │ ├── ZipFile.php │ │ ├── ZipStream.php │ │ ├── gPoint.php │ │ ├── ganon.php │ │ ├── hoa │ │ │ ├── compiler │ │ │ │ ├── .Mime │ │ │ │ ├── .State │ │ │ │ ├── .gitignore │ │ │ │ ├── Bin │ │ │ │ │ └── Pp.php │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── Documentation │ │ │ │ │ ├── En │ │ │ │ │ │ └── Index.xyl │ │ │ │ │ └── Fr │ │ │ │ │ │ └── Index.xyl │ │ │ │ ├── Exception │ │ │ │ │ ├── Exception.php │ │ │ │ │ ├── FinalStateHasNotBeenReached.php │ │ │ │ │ ├── IllegalToken.php │ │ │ │ │ ├── Lexer.php │ │ │ │ │ ├── Rule.php │ │ │ │ │ ├── UnexpectedToken.php │ │ │ │ │ └── UnrecognizedToken.php │ │ │ │ ├── Ll1.php │ │ │ │ ├── Llk │ │ │ │ │ ├── Lexer.php │ │ │ │ │ ├── Llk.php │ │ │ │ │ ├── Llk.pp │ │ │ │ │ ├── Parser.php │ │ │ │ │ ├── Rule │ │ │ │ │ │ ├── Analyzer.php │ │ │ │ │ │ ├── Choice.php │ │ │ │ │ │ ├── Concatenation.php │ │ │ │ │ │ ├── Ekzit.php │ │ │ │ │ │ ├── Entry.php │ │ │ │ │ │ ├── Invocation.php │ │ │ │ │ │ ├── Repetition.php │ │ │ │ │ │ ├── Rule.php │ │ │ │ │ │ └── Token.php │ │ │ │ │ ├── Sampler │ │ │ │ │ │ ├── BoundedExhaustive.php │ │ │ │ │ │ ├── Coverage.php │ │ │ │ │ │ ├── Exception.php │ │ │ │ │ │ ├── Sampler.php │ │ │ │ │ │ └── Uniform.php │ │ │ │ │ └── TreeNode.php │ │ │ │ ├── README.md │ │ │ │ ├── Test │ │ │ │ │ ├── Integration │ │ │ │ │ │ ├── Documentation.php │ │ │ │ │ │ └── Llk │ │ │ │ │ │ │ ├── Documentation.php │ │ │ │ │ │ │ ├── Rule │ │ │ │ │ │ │ └── Analyzer.php │ │ │ │ │ │ │ └── Soundness.php │ │ │ │ │ └── Unit │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── Exception.php │ │ │ │ │ │ ├── FinalStateHasNotBeenReached.php │ │ │ │ │ │ ├── IllegalToken.php │ │ │ │ │ │ ├── Lexer.php │ │ │ │ │ │ ├── Rule.php │ │ │ │ │ │ ├── UnexpectedToken.php │ │ │ │ │ │ └── UnrecognizedToken.php │ │ │ │ │ │ └── Llk │ │ │ │ │ │ ├── Lexer.php │ │ │ │ │ │ ├── Llk.php │ │ │ │ │ │ ├── Rule │ │ │ │ │ │ ├── Choice.php │ │ │ │ │ │ ├── Concatenation.php │ │ │ │ │ │ ├── Ekzit.php │ │ │ │ │ │ ├── Entry.php │ │ │ │ │ │ ├── Invocation.php │ │ │ │ │ │ ├── Repetition.php │ │ │ │ │ │ ├── Rule.php │ │ │ │ │ │ └── Token.php │ │ │ │ │ │ ├── Sampler │ │ │ │ │ │ └── Exception.php │ │ │ │ │ │ └── TreeNode.php │ │ │ │ ├── Visitor │ │ │ │ │ └── Dump.php │ │ │ │ └── composer.json │ │ │ ├── consistency │ │ │ │ ├── .State │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── Autoloader.php │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── Consistency.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Prelude.php │ │ │ │ ├── README.md │ │ │ │ ├── Test │ │ │ │ │ └── Unit │ │ │ │ │ │ ├── Autoloader.php │ │ │ │ │ │ ├── Consistency.php │ │ │ │ │ │ ├── Exception.php │ │ │ │ │ │ └── Xcallable.php │ │ │ │ ├── Xcallable.php │ │ │ │ └── composer.json │ │ │ ├── event │ │ │ │ ├── .State │ │ │ │ ├── .gitignore │ │ │ │ ├── Bucket.php │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── Event.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Listenable.php │ │ │ │ ├── Listener.php │ │ │ │ ├── Listens.php │ │ │ │ ├── README.md │ │ │ │ ├── Source.php │ │ │ │ ├── Test │ │ │ │ │ └── Unit │ │ │ │ │ │ ├── Bucket.php │ │ │ │ │ │ ├── Event.php │ │ │ │ │ │ ├── Exception.php │ │ │ │ │ │ ├── Listenable.php │ │ │ │ │ │ ├── Listener.php │ │ │ │ │ │ ├── Listens.php │ │ │ │ │ │ └── Source.php │ │ │ │ └── composer.json │ │ │ ├── exception │ │ │ │ ├── .State │ │ │ │ ├── .gitignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── Error.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Group.php │ │ │ │ ├── Idle.php │ │ │ │ ├── README.md │ │ │ │ ├── Test │ │ │ │ │ └── Unit │ │ │ │ │ │ ├── Error.php │ │ │ │ │ │ ├── Exception.php │ │ │ │ │ │ ├── Group.php │ │ │ │ │ │ └── Idle.php │ │ │ │ └── composer.json │ │ │ ├── file │ │ │ │ ├── .gitignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── Directory.php │ │ │ │ ├── Exception │ │ │ │ │ ├── Exception.php │ │ │ │ │ └── FileDoesNotExist.php │ │ │ │ ├── File.php │ │ │ │ ├── Finder.php │ │ │ │ ├── Generic.php │ │ │ │ ├── Link │ │ │ │ │ ├── Link.php │ │ │ │ │ ├── Read.php │ │ │ │ │ ├── ReadWrite.php │ │ │ │ │ └── Write.php │ │ │ │ ├── Read.php │ │ │ │ ├── ReadWrite.php │ │ │ │ ├── SplFileInfo.php │ │ │ │ ├── Temporary │ │ │ │ │ ├── Read.php │ │ │ │ │ ├── ReadWrite.php │ │ │ │ │ ├── Temporary.php │ │ │ │ │ └── Write.php │ │ │ │ ├── Watcher.php │ │ │ │ ├── Write.php │ │ │ │ └── composer.json │ │ │ ├── iterator │ │ │ │ ├── .State │ │ │ │ ├── .gitignore │ │ │ │ ├── Aggregate.php │ │ │ │ ├── Append.php │ │ │ │ ├── Buffer.php │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── CallbackFilter.php │ │ │ │ ├── CallbackGenerator.php │ │ │ │ ├── Counter.php │ │ │ │ ├── Demultiplexer.php │ │ │ │ ├── Directory.php │ │ │ │ ├── Exception.php │ │ │ │ ├── FileSystem.php │ │ │ │ ├── Filter.php │ │ │ │ ├── Glob.php │ │ │ │ ├── Infinite.php │ │ │ │ ├── Iterator.php │ │ │ │ ├── IteratorIterator.php │ │ │ │ ├── Limit.php │ │ │ │ ├── Lookahead.php │ │ │ │ ├── Lookbehind.php │ │ │ │ ├── Map.php │ │ │ │ ├── Mock.php │ │ │ │ ├── Multiple.php │ │ │ │ ├── NoRewind.php │ │ │ │ ├── Outer.php │ │ │ │ ├── README.md │ │ │ │ ├── Recursive │ │ │ │ │ ├── CallbackFilter.php │ │ │ │ │ ├── Directory.php │ │ │ │ │ ├── Filter.php │ │ │ │ │ ├── Iterator.php │ │ │ │ │ ├── Map.php │ │ │ │ │ ├── Mock.php │ │ │ │ │ ├── Recursive.php │ │ │ │ │ └── RegularExpression.php │ │ │ │ ├── RegularExpression.php │ │ │ │ ├── Repeater.php │ │ │ │ ├── Seekable.php │ │ │ │ ├── SplFileInfo.php │ │ │ │ ├── Test │ │ │ │ │ └── Unit │ │ │ │ │ │ ├── Append.php │ │ │ │ │ │ ├── Buffer.php │ │ │ │ │ │ ├── CallbackFilter.php │ │ │ │ │ │ ├── CallbackGenerator.php │ │ │ │ │ │ ├── Counter.php │ │ │ │ │ │ ├── Demultiplexer.php │ │ │ │ │ │ ├── Directory.php │ │ │ │ │ │ ├── FileSystem.php │ │ │ │ │ │ ├── Filter.php │ │ │ │ │ │ ├── Infinite.php │ │ │ │ │ │ ├── IteratorIterator.php │ │ │ │ │ │ ├── Limit.php │ │ │ │ │ │ ├── Lookahead.php │ │ │ │ │ │ ├── Lookbehind.php │ │ │ │ │ │ ├── Map.php │ │ │ │ │ │ ├── Mock.php │ │ │ │ │ │ ├── Multiple.php │ │ │ │ │ │ ├── NoRewind.php │ │ │ │ │ │ ├── RegularExpression.php │ │ │ │ │ │ ├── Repeater.php │ │ │ │ │ │ └── SplFileInfo.php │ │ │ │ └── composer.json │ │ │ ├── math │ │ │ │ ├── .State │ │ │ │ ├── .gitignore │ │ │ │ ├── Arithmetic.pp │ │ │ │ ├── Bin │ │ │ │ │ └── Calc.php │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── Combinatorics │ │ │ │ │ ├── Arrangement.php │ │ │ │ │ ├── Combination │ │ │ │ │ │ ├── CartesianProduct.php │ │ │ │ │ │ ├── Combination.php │ │ │ │ │ │ └── Gamma.php │ │ │ │ │ ├── Counting.php │ │ │ │ │ ├── FiniteSet.php │ │ │ │ │ └── Permutation.php │ │ │ │ ├── Context.php │ │ │ │ ├── Exception │ │ │ │ │ ├── AlreadyDefinedConstant.php │ │ │ │ │ ├── Exception.php │ │ │ │ │ ├── UnknownConstant.php │ │ │ │ │ ├── UnknownFunction.php │ │ │ │ │ └── UnknownVariable.php │ │ │ │ ├── README.md │ │ │ │ ├── Sampler │ │ │ │ │ ├── Random.php │ │ │ │ │ └── Sampler.php │ │ │ │ ├── Test │ │ │ │ │ └── Unit │ │ │ │ │ │ ├── Arithmetic.pp │ │ │ │ │ │ ├── Combinatorics │ │ │ │ │ │ └── Combination │ │ │ │ │ │ │ ├── CartesianProduct.php │ │ │ │ │ │ │ ├── Combination.php │ │ │ │ │ │ │ └── Gamma.php │ │ │ │ │ │ ├── Context.php │ │ │ │ │ │ ├── Issue.php │ │ │ │ │ │ ├── Sampler │ │ │ │ │ │ └── Random.php │ │ │ │ │ │ └── Visitor │ │ │ │ │ │ └── Arithmetic.php │ │ │ │ ├── Util.php │ │ │ │ ├── Visitor │ │ │ │ │ └── Arithmetic.php │ │ │ │ └── composer.json │ │ │ ├── protocol │ │ │ │ ├── .State │ │ │ │ ├── .gitignore │ │ │ │ ├── Bin │ │ │ │ │ └── Resolve.php │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── Exception.php │ │ │ │ ├── Node │ │ │ │ │ ├── Library.php │ │ │ │ │ └── Node.php │ │ │ │ ├── Protocol.php │ │ │ │ ├── README.md │ │ │ │ ├── Test │ │ │ │ │ └── Unit │ │ │ │ │ │ ├── Exception.php │ │ │ │ │ │ ├── Node │ │ │ │ │ │ ├── Library.php │ │ │ │ │ │ └── Node.php │ │ │ │ │ │ ├── Protocol.php │ │ │ │ │ │ └── Wrapper.php │ │ │ │ ├── Wrapper.php │ │ │ │ └── composer.json │ │ │ ├── regex │ │ │ │ ├── .State │ │ │ │ ├── .gitignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── Exception.php │ │ │ │ ├── Grammar.pp │ │ │ │ ├── README.md │ │ │ │ ├── Visitor │ │ │ │ │ └── Isotropic.php │ │ │ │ └── composer.json │ │ │ ├── stream │ │ │ │ ├── .gitignore │ │ │ │ ├── Bucket.php │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── Composite.php │ │ │ │ ├── Context.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Filter │ │ │ │ │ ├── Basic.php │ │ │ │ │ ├── Exception.php │ │ │ │ │ ├── Filter.php │ │ │ │ │ └── LateComputed.php │ │ │ │ ├── IStream │ │ │ │ │ ├── Bufferable.php │ │ │ │ │ ├── In.php │ │ │ │ │ ├── Lockable.php │ │ │ │ │ ├── Out.php │ │ │ │ │ ├── Pathable.php │ │ │ │ │ ├── Pointable.php │ │ │ │ │ ├── Statable.php │ │ │ │ │ ├── Stream.php │ │ │ │ │ ├── Structural.php │ │ │ │ │ └── Touchable.php │ │ │ │ ├── README.md │ │ │ │ ├── Stream.php │ │ │ │ ├── Test │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── Integration │ │ │ │ │ │ ├── Filter │ │ │ │ │ │ │ ├── Filter.php │ │ │ │ │ │ │ └── LateComputed.php │ │ │ │ │ │ └── Stream.php │ │ │ │ │ └── Unit │ │ │ │ │ │ ├── Bucket.php │ │ │ │ │ │ ├── Composite.php │ │ │ │ │ │ ├── Context.php │ │ │ │ │ │ ├── Exception.php │ │ │ │ │ │ ├── Filter │ │ │ │ │ │ ├── Basic.php │ │ │ │ │ │ ├── Exception.php │ │ │ │ │ │ └── Filter.php │ │ │ │ │ │ ├── IStream │ │ │ │ │ │ ├── Bufferable.php │ │ │ │ │ │ ├── In.php │ │ │ │ │ │ ├── Lockable.php │ │ │ │ │ │ ├── Out.php │ │ │ │ │ │ ├── Pathable.php │ │ │ │ │ │ ├── Pointable.php │ │ │ │ │ │ ├── Statable.php │ │ │ │ │ │ ├── Stream.php │ │ │ │ │ │ ├── Structural.php │ │ │ │ │ │ └── Touchable.php │ │ │ │ │ │ ├── Stream.php │ │ │ │ │ │ └── Wrapper │ │ │ │ │ │ ├── Exception.php │ │ │ │ │ │ ├── IWrapper │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ ├── IWrapper.php │ │ │ │ │ │ └── Stream.php │ │ │ │ │ │ └── Wrapper.php │ │ │ │ ├── Wrapper │ │ │ │ │ ├── Exception.php │ │ │ │ │ ├── IWrapper │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ ├── IWrapper.php │ │ │ │ │ │ └── Stream.php │ │ │ │ │ └── Wrapper.php │ │ │ │ └── composer.json │ │ │ ├── ustring │ │ │ │ ├── .State │ │ │ │ ├── .gitignore │ │ │ │ ├── Bin │ │ │ │ │ ├── Fromcode.php │ │ │ │ │ └── Tocode.php │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── Documentation │ │ │ │ │ ├── En │ │ │ │ │ │ └── Index.xyl │ │ │ │ │ └── Fr │ │ │ │ │ │ └── Index.xyl │ │ │ │ ├── Exception.php │ │ │ │ ├── README.md │ │ │ │ ├── Search.php │ │ │ │ ├── Test │ │ │ │ │ └── Unit │ │ │ │ │ │ ├── Issue.php │ │ │ │ │ │ ├── Search.php │ │ │ │ │ │ └── Ustring.php │ │ │ │ ├── Ustring.php │ │ │ │ └── composer.json │ │ │ ├── visitor │ │ │ │ ├── .State │ │ │ │ ├── .gitignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── Element.php │ │ │ │ ├── README.md │ │ │ │ ├── Test │ │ │ │ │ └── Unit │ │ │ │ │ │ ├── Element.php │ │ │ │ │ │ └── Visit.php │ │ │ │ ├── Visit.php │ │ │ │ └── composer.json │ │ │ └── zformat │ │ │ │ ├── .State │ │ │ │ ├── .gitignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── Exception.php │ │ │ │ ├── Parameter.php │ │ │ │ ├── Parameterizable.php │ │ │ │ ├── README.md │ │ │ │ └── composer.json │ │ └── jsmin-1.1.1.php │ ├── Plugins │ │ ├── BanHammer │ │ │ ├── BaseBanHammerPlugin.php │ │ │ ├── ExportFrequency.php │ │ │ ├── IPAddress.php │ │ │ ├── RequestFrequency.php │ │ │ └── UserAgent.php │ │ ├── CurrencyConversion │ │ │ ├── BaseCurrencyConversionPlugin.php │ │ │ └── EuroBank.php │ │ ├── ExternalExport │ │ │ ├── BaseExternalExportFormatPlugin.php │ │ │ ├── BaseExternalExportTransportPlugin.php │ │ │ ├── Output │ │ │ │ ├── BagIt.php │ │ │ │ ├── Files.php │ │ │ │ └── SimpleZip.php │ │ │ └── Transport │ │ │ │ └── sFTP.php │ │ ├── File │ │ │ ├── Image.php │ │ │ ├── SWF.php │ │ │ └── ZFileExtension.php │ │ ├── GeographicMap │ │ │ ├── BaseGeographicMapPlugin.php │ │ │ ├── GoogleMaps.php │ │ │ └── Leaflet.php │ │ ├── IWLPlugCurrencyConversion.php │ │ ├── IWLPlugExternalExportFormat.php │ │ ├── IWLPlugExternalExportTransport.php │ │ ├── IWLPlugFileFormat.php │ │ ├── IWLPlugGeographicMap.php │ │ ├── IWLPlugInformationService.php │ │ ├── IWLPlugLanguageTranslation.php │ │ ├── IWLPlugMedia.php │ │ ├── IWLPlugPDFRenderer.php │ │ ├── IWLPlugSMS.php │ │ ├── IWLPlugSearchEngine.php │ │ ├── IWLPlugSearchEngineResult.php │ │ ├── IWLPlugTaskQueueHandler.php │ │ ├── IWLPlugVisualizer.php │ │ ├── InformationService │ │ │ ├── AAT.php │ │ │ ├── ALANSL.php │ │ │ ├── BaseGettyLODServicePlugin.php │ │ │ ├── BaseInformationServicePlugin.php │ │ │ ├── BaseNomismaLODServicePlugin.php │ │ │ ├── CollectiveAccess.php │ │ │ ├── EOL.php │ │ │ ├── GlobalNames.php │ │ │ ├── Iconclass.php │ │ │ ├── Nomenclature.php │ │ │ ├── Nomisma.php │ │ │ ├── Numishare.php │ │ │ ├── Pella.php │ │ │ ├── Ptolemaic.php │ │ │ ├── ResourceSpace.php │ │ │ ├── Seleucid.php │ │ │ ├── SparqlEndpoint.php │ │ │ ├── TGN.php │ │ │ ├── ULAN.php │ │ │ ├── VIAF.php │ │ │ ├── Wikipedia.php │ │ │ ├── WorldCat.php │ │ │ └── WorldCat │ │ │ │ ├── MARC21slim2English.xml │ │ │ │ └── MARC21slim2HTML.xml │ │ ├── LanguageTranslation │ │ │ ├── BaseLanguageTranslationManagerPlugin.php │ │ │ ├── DeeplAPI.php │ │ │ └── GoogleTranslate.php │ │ ├── Media │ │ │ ├── Audio.php │ │ │ ├── BaseMediaPlugin.php │ │ │ ├── BinaryFile.php │ │ │ ├── GD.php │ │ │ ├── Gmagick.php │ │ │ ├── GraphicsMagick.php │ │ │ ├── ImageMagick.php │ │ │ ├── Imagick.php │ │ │ ├── Mesh.php │ │ │ ├── Office.php │ │ │ ├── PDFWand.php │ │ │ └── Video.php │ │ ├── MediaUrl │ │ │ ├── BaseMediaUrlPlugin.php │ │ │ ├── Elevator.php │ │ │ ├── GoogleDrive.php │ │ │ ├── InternetArchive.php │ │ │ ├── YouTubeDL.php │ │ │ └── _File.php │ │ ├── PDFRenderer │ │ │ ├── BasePDFRendererPlugin.php │ │ │ ├── domPDF.php │ │ │ └── wkhtmltopdf.php │ │ ├── PluginConsumer.php │ │ ├── SMS │ │ │ ├── BaseSMSPlugin.php │ │ │ └── SendHub.php │ │ ├── SearchEngine │ │ │ ├── BaseSearchPlugin.php │ │ │ ├── CachedResult.php │ │ │ ├── ElasticSearch.php │ │ │ ├── ElasticSearch │ │ │ │ ├── Field.php │ │ │ │ ├── FieldTypes │ │ │ │ │ ├── Currency.php │ │ │ │ │ ├── DateRange.php │ │ │ │ │ ├── FieldType.php │ │ │ │ │ ├── GenericElement.php │ │ │ │ │ ├── Geocode.php │ │ │ │ │ ├── Integer.php │ │ │ │ │ ├── Intrinsic.php │ │ │ │ │ ├── Length.php │ │ │ │ │ ├── Numeric.php │ │ │ │ │ ├── Timecode.php │ │ │ │ │ ├── Timestamp.php │ │ │ │ │ └── Weight.php │ │ │ │ ├── Mapping.php │ │ │ │ └── Query.php │ │ │ ├── ElasticSearchConfigurationSettings.php │ │ │ ├── ElasticSearchResult.php │ │ │ ├── SqlSearch2.php │ │ │ ├── SqlSearch2ConfigurationSettings.php │ │ │ └── SqlSearchResult.php │ │ ├── TaskQueueHandlers │ │ │ ├── batchEditor.php │ │ │ ├── bulkLogger.php │ │ │ ├── dataExport.php │ │ │ ├── ftpmirror.php │ │ │ ├── mediaImport.php │ │ │ ├── mediaTranscription.php │ │ │ ├── mediaproc.php │ │ │ └── metadataImport.php │ │ ├── Visualizer │ │ │ ├── BaseVisualizerPlugin.php │ │ │ ├── Calendar.php │ │ │ ├── Map.php │ │ │ ├── StoryMapJS.php │ │ │ └── TimelineJS.php │ │ └── WLPlug.php │ ├── PrimaryRepresentationTrait.php │ ├── Print │ │ └── PDFRenderer.php │ ├── Process │ │ ├── Background.php │ │ ├── CLI.php │ │ └── Socket.php │ ├── ProgressBar.php │ ├── RecordSelection.php │ ├── RepresentableBaseModel.php │ ├── RepresentationAnnotationPropertyCoders │ │ ├── BaseRepresentationAnnotationCoder.php │ │ ├── DocumentRepresentationAnnotationCoder.php │ │ ├── IRepresentationAnnotationPropertyCoder.php │ │ ├── ImageRepresentationAnnotationCoder.php │ │ ├── TimeBasedAudioRepresentationAnnotationCoder.php │ │ ├── TimeBasedRepresentationAnnotationCoder.php │ │ └── TimeBasedVideoRepresentationAnnotationCoder.php │ ├── ResultContext.php │ ├── ResultDescTrait.php │ ├── SMS.php │ ├── Search │ │ ├── ASearchConfigurationSettings.php │ │ ├── BaseRepresentationAnnotationSearchResult.php │ │ ├── BaseSearch.php │ │ ├── BaseSearchResult.php │ │ ├── CollectionSearch.php │ │ ├── CollectionSearchResult.php │ │ ├── Common │ │ │ ├── Language │ │ │ │ ├── LanguageDetection.php │ │ │ │ ├── fingerprints │ │ │ │ │ ├── da.lm │ │ │ │ │ ├── de.lm │ │ │ │ │ ├── disabled │ │ │ │ │ │ ├── afrikaans.lm │ │ │ │ │ │ ├── albanian.lm │ │ │ │ │ │ ├── alemannic.lm │ │ │ │ │ │ ├── amharic-utf8.lm │ │ │ │ │ │ ├── arabic-iso8859_6.lm │ │ │ │ │ │ ├── arabic-utf8.lm │ │ │ │ │ │ ├── arabic-windows1256.lm │ │ │ │ │ │ ├── armenian-utf8.lm │ │ │ │ │ │ ├── armenian.lm │ │ │ │ │ │ ├── basque.lm │ │ │ │ │ │ ├── belarusian-utf8.lm │ │ │ │ │ │ ├── belarusian-windows1251.lm │ │ │ │ │ │ ├── bosnian.lm │ │ │ │ │ │ ├── breton.lm │ │ │ │ │ │ ├── bulgarian-iso8859_5.lm │ │ │ │ │ │ ├── bulgarian-utf8.lm │ │ │ │ │ │ ├── catalan.lm │ │ │ │ │ │ ├── chinese-big5.lm │ │ │ │ │ │ ├── chinese-gb2312.lm │ │ │ │ │ │ ├── chinese-utf8.lm │ │ │ │ │ │ ├── croatian-ascii.lm │ │ │ │ │ │ ├── czech-iso8859_2.lm │ │ │ │ │ │ ├── czech-utf8.lm │ │ │ │ │ │ ├── esperanto.lm │ │ │ │ │ │ ├── estonian.lm │ │ │ │ │ │ ├── frisian.lm │ │ │ │ │ │ ├── georgian-utf8.lm │ │ │ │ │ │ ├── georgian.lm │ │ │ │ │ │ ├── greek-iso8859_7.lm │ │ │ │ │ │ ├── greek-utf8.lm │ │ │ │ │ │ ├── hawaian.lm │ │ │ │ │ │ ├── hebrew-iso8859_8.lm │ │ │ │ │ │ ├── hebrew-utf8.lm │ │ │ │ │ │ ├── hindi-utf8.lm │ │ │ │ │ │ ├── hindi.lm │ │ │ │ │ │ ├── hungarian.lm │ │ │ │ │ │ ├── icelandic.lm │ │ │ │ │ │ ├── indonesian.lm │ │ │ │ │ │ ├── irish_gaelic.lm │ │ │ │ │ │ ├── japanese-euc_jp.lm │ │ │ │ │ │ ├── japanese-shift_jis.lm │ │ │ │ │ │ ├── japanese-utf8.lm │ │ │ │ │ │ ├── korean-utf8.lm │ │ │ │ │ │ ├── korean.lm │ │ │ │ │ │ ├── latin.lm │ │ │ │ │ │ ├── latvian.lm │ │ │ │ │ │ ├── lithuanian.lm │ │ │ │ │ │ ├── malay.lm │ │ │ │ │ │ ├── manx.lm │ │ │ │ │ │ ├── marathi-utf8.lm │ │ │ │ │ │ ├── marathi.lm │ │ │ │ │ │ ├── middlefrisian.lm │ │ │ │ │ │ ├── mingo_iroquois.lm │ │ │ │ │ │ ├── nepali-utf8.lm │ │ │ │ │ │ ├── nepali.lm │ │ │ │ │ │ ├── no.lm │ │ │ │ │ │ ├── persian.lm │ │ │ │ │ │ ├── persian_farsi-utf8.lm │ │ │ │ │ │ ├── persian_farsi-windows1256.lm │ │ │ │ │ │ ├── polish-iso8859_2.lm │ │ │ │ │ │ ├── polish-utf8.lm │ │ │ │ │ │ ├── portuguese_brazil.lm │ │ │ │ │ │ ├── quechua.lm │ │ │ │ │ │ ├── romanian.lm │ │ │ │ │ │ ├── rumantsch.lm │ │ │ │ │ │ ├── russian-iso8859_5.lm │ │ │ │ │ │ ├── russian-koi8_r.lm │ │ │ │ │ │ ├── russian-windows1251.lm │ │ │ │ │ │ ├── sanskrit.lm │ │ │ │ │ │ ├── scots.lm │ │ │ │ │ │ ├── scots_gaelic.lm │ │ │ │ │ │ ├── serbian-ascii.lm │ │ │ │ │ │ ├── serbian_cyrillic-utf8.lm │ │ │ │ │ │ ├── slovak-ascii.lm │ │ │ │ │ │ ├── slovak-utf8.lm │ │ │ │ │ │ ├── slovak-windows1250.lm │ │ │ │ │ │ ├── slovenian-ascii.lm │ │ │ │ │ │ ├── slovenian-iso8859_2.lm │ │ │ │ │ │ ├── sv.lm │ │ │ │ │ │ ├── swahili.lm │ │ │ │ │ │ ├── tagalog.lm │ │ │ │ │ │ ├── tamil-utf8.lm │ │ │ │ │ │ ├── tamil.lm │ │ │ │ │ │ ├── thai-utf8.lm │ │ │ │ │ │ ├── thai.lm │ │ │ │ │ │ ├── turkish-utf8.lm │ │ │ │ │ │ ├── turkish.lm │ │ │ │ │ │ ├── ukrainian-koi8_u.lm │ │ │ │ │ │ ├── ukrainian-utf8.lm │ │ │ │ │ │ ├── vietnamese.lm │ │ │ │ │ │ ├── welsh.lm │ │ │ │ │ │ └── yiddish-utf8.lm │ │ │ │ │ ├── en.lm │ │ │ │ │ ├── es.lm │ │ │ │ │ ├── fi.lm │ │ │ │ │ ├── fr.lm │ │ │ │ │ ├── it.lm │ │ │ │ │ ├── nl.lm │ │ │ │ │ ├── pt.lm │ │ │ │ │ ├── ru.lm │ │ │ │ │ └── sp.lm │ │ │ │ └── stopwords │ │ │ │ │ ├── da.inc │ │ │ │ │ ├── de.inc │ │ │ │ │ ├── en.inc │ │ │ │ │ ├── es.inc │ │ │ │ │ ├── fi.inc │ │ │ │ │ ├── fr.inc │ │ │ │ │ ├── it.inc │ │ │ │ │ ├── mkstopwords.php │ │ │ │ │ ├── nl.inc │ │ │ │ │ ├── no.inc │ │ │ │ │ ├── pt.inc │ │ │ │ │ ├── ru.inc │ │ │ │ │ └── sv.inc │ │ │ ├── Parsers │ │ │ │ ├── LuceneSyntaxLexer.php │ │ │ │ ├── LuceneSyntaxParser.php │ │ │ │ ├── LuceneSyntaxParserContext.php │ │ │ │ ├── QueryEntry │ │ │ │ │ ├── PhraseQueryEntry.php │ │ │ │ │ └── TermQueryEntry.php │ │ │ │ ├── Search │ │ │ │ │ ├── Exception.php │ │ │ │ │ ├── Lucene.php │ │ │ │ │ └── Lucene │ │ │ │ │ │ ├── Analysis │ │ │ │ │ │ ├── Analyzer.php │ │ │ │ │ │ ├── Analyzer │ │ │ │ │ │ │ ├── Common.php │ │ │ │ │ │ │ └── Common │ │ │ │ │ │ │ │ ├── Text.php │ │ │ │ │ │ │ │ ├── Text │ │ │ │ │ │ │ │ └── CaseInsensitive.php │ │ │ │ │ │ │ │ ├── TextNum.php │ │ │ │ │ │ │ │ ├── TextNum │ │ │ │ │ │ │ │ └── CaseInsensitive.php │ │ │ │ │ │ │ │ ├── Utf8.php │ │ │ │ │ │ │ │ ├── Utf8 │ │ │ │ │ │ │ │ └── CaseInsensitive.php │ │ │ │ │ │ │ │ ├── Utf8Num.php │ │ │ │ │ │ │ │ └── Utf8Num │ │ │ │ │ │ │ │ └── CaseInsensitive.php │ │ │ │ │ │ ├── Token.php │ │ │ │ │ │ ├── TokenFilter.php │ │ │ │ │ │ └── TokenFilter │ │ │ │ │ │ │ ├── LowerCase.php │ │ │ │ │ │ │ ├── LowerCaseUtf8.php │ │ │ │ │ │ │ ├── ShortWords.php │ │ │ │ │ │ │ └── StopWords.php │ │ │ │ │ │ ├── Document.php │ │ │ │ │ │ ├── Document │ │ │ │ │ │ ├── Docx.php │ │ │ │ │ │ ├── Exception.php │ │ │ │ │ │ ├── Html.php │ │ │ │ │ │ ├── OpenXml.php │ │ │ │ │ │ ├── Pptx.php │ │ │ │ │ │ └── Xlsx.php │ │ │ │ │ │ ├── Exception.php │ │ │ │ │ │ ├── FSM.php │ │ │ │ │ │ ├── FSMAction.php │ │ │ │ │ │ ├── Field.php │ │ │ │ │ │ ├── Index │ │ │ │ │ │ ├── DictionaryLoader.php │ │ │ │ │ │ ├── DocsFilter.php │ │ │ │ │ │ ├── FieldInfo.php │ │ │ │ │ │ ├── SegmentInfo.php │ │ │ │ │ │ ├── SegmentMerger.php │ │ │ │ │ │ ├── SegmentWriter.php │ │ │ │ │ │ ├── SegmentWriter │ │ │ │ │ │ │ ├── DocumentWriter.php │ │ │ │ │ │ │ └── StreamWriter.php │ │ │ │ │ │ ├── Term.php │ │ │ │ │ │ ├── TermInfo.php │ │ │ │ │ │ ├── TermsPriorityQueue.php │ │ │ │ │ │ ├── TermsStream │ │ │ │ │ │ │ └── Interface.php │ │ │ │ │ │ └── Writer.php │ │ │ │ │ │ ├── Interface.php │ │ │ │ │ │ ├── Interface │ │ │ │ │ │ └── MultiSearcher.php │ │ │ │ │ │ ├── LockManager.php │ │ │ │ │ │ ├── MultiSearcher.php │ │ │ │ │ │ ├── PriorityQueue.php │ │ │ │ │ │ ├── Proxy.php │ │ │ │ │ │ ├── Search │ │ │ │ │ │ ├── BooleanExpressionRecognizer.php │ │ │ │ │ │ ├── Highlighter │ │ │ │ │ │ │ ├── Default.php │ │ │ │ │ │ │ └── Interface.php │ │ │ │ │ │ ├── Query.php │ │ │ │ │ │ ├── Query │ │ │ │ │ │ │ ├── Boolean.php │ │ │ │ │ │ │ ├── Empty.php │ │ │ │ │ │ │ ├── Fuzzy.php │ │ │ │ │ │ │ ├── Insignificant.php │ │ │ │ │ │ │ ├── MultiTerm.php │ │ │ │ │ │ │ ├── Phrase.php │ │ │ │ │ │ │ ├── Preprocessing.php │ │ │ │ │ │ │ ├── Preprocessing │ │ │ │ │ │ │ │ ├── Fuzzy.php │ │ │ │ │ │ │ │ ├── Phrase.php │ │ │ │ │ │ │ │ └── Term.php │ │ │ │ │ │ │ ├── Range.php │ │ │ │ │ │ │ ├── Term.php │ │ │ │ │ │ │ └── Wildcard.php │ │ │ │ │ │ ├── QueryEntry.php │ │ │ │ │ │ ├── QueryEntry │ │ │ │ │ │ │ ├── Phrase.php │ │ │ │ │ │ │ ├── Subquery.php │ │ │ │ │ │ │ └── Term.php │ │ │ │ │ │ ├── QueryHit.php │ │ │ │ │ │ ├── QueryLexer.php │ │ │ │ │ │ ├── QueryParser.php │ │ │ │ │ │ ├── QueryParserContext.php │ │ │ │ │ │ ├── QueryParserException.php │ │ │ │ │ │ ├── QueryToken.php │ │ │ │ │ │ ├── Similarity.php │ │ │ │ │ │ ├── Similarity │ │ │ │ │ │ │ └── Default.php │ │ │ │ │ │ ├── Weight.php │ │ │ │ │ │ └── Weight │ │ │ │ │ │ │ ├── Boolean.php │ │ │ │ │ │ │ ├── Empty.php │ │ │ │ │ │ │ ├── MultiTerm.php │ │ │ │ │ │ │ ├── Phrase.php │ │ │ │ │ │ │ └── Term.php │ │ │ │ │ │ ├── Storage │ │ │ │ │ │ ├── Directory.php │ │ │ │ │ │ ├── Directory │ │ │ │ │ │ │ └── Filesystem.php │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ └── File │ │ │ │ │ │ │ ├── Filesystem.php │ │ │ │ │ │ │ └── Memory.php │ │ │ │ │ │ └── TermStreamsPriorityQueue.php │ │ │ │ └── test_parser.php │ │ │ └── Stemmer │ │ │ │ └── SnoballStemmer.php │ │ ├── EditorUISearch.php │ │ ├── EditorUISearchResult.php │ │ ├── EntitySearch.php │ │ ├── EntitySearchResult.php │ │ ├── InterstitialSearch.php │ │ ├── InterstitialSearchResult.php │ │ ├── ItemCommentSearch.php │ │ ├── ItemCommentSearchResult.php │ │ ├── ItemTagSearch.php │ │ ├── ItemTagSearchResult.php │ │ ├── ListItemSearch.php │ │ ├── ListItemSearchResult.php │ │ ├── ListSearch.php │ │ ├── ListSearchResult.php │ │ ├── LoanSearch.php │ │ ├── LoanSearchResult.php │ │ ├── Lucene │ │ │ ├── Analysis │ │ │ │ └── Utf8Num_Coords_CaseInsensitive.php │ │ │ └── TokenFilter │ │ │ │ └── StemmingFilter.php │ │ ├── MediaUploadSessionSearchResult.php │ │ ├── MovementSearch.php │ │ ├── MovementSearchResult.php │ │ ├── ObjectCheckoutSearch.php │ │ ├── ObjectCheckoutSearchResult.php │ │ ├── ObjectLotSearch.php │ │ ├── ObjectLotSearchResult.php │ │ ├── ObjectRepresentationCaptionSearch.php │ │ ├── ObjectRepresentationCaptionSearchResult.php │ │ ├── ObjectRepresentationSearch.php │ │ ├── ObjectRepresentationSearchResult.php │ │ ├── ObjectSearch.php │ │ ├── ObjectSearchResult.php │ │ ├── OccurrenceSearch.php │ │ ├── OccurrenceSearchResult.php │ │ ├── PlaceSearch.php │ │ ├── PlaceSearchResult.php │ │ ├── QuickSearch.php │ │ ├── RelationshipTypeSearch.php │ │ ├── RelationshipTypeSearchResult.php │ │ ├── RepresentationAnnotationSearch.php │ │ ├── RepresentationAnnotationSearchResult.php │ │ ├── SearchBase.php │ │ ├── SearchCache.php │ │ ├── SearchEngine.php │ │ ├── SearchIndexer.php │ │ ├── SearchResult.php │ │ ├── SetItemSearch.php │ │ ├── SetItemSearchResult.php │ │ ├── SetSearch.php │ │ ├── SetSearchResult.php │ │ ├── SitePageMediaSearch.php │ │ ├── SitePageMediaSearchResults.php │ │ ├── SitePageSearch.php │ │ ├── SitePageSearchResult.php │ │ ├── StorageLocationSearch.php │ │ ├── StorageLocationSearchResult.php │ │ ├── TourSearch.php │ │ ├── TourSearchResult.php │ │ ├── TourStopSearch.php │ │ ├── TourStopSearchResult.php │ │ ├── UserGroupSearch.php │ │ ├── UserGroupSearchResult.php │ │ ├── UserRepresentationAnnotationSearch.php │ │ ├── UserRepresentationAnnotationSearchResult.php │ │ ├── UserSearch.php │ │ └── UserSearchResult.php │ ├── SearchReindexingProgress.php │ ├── SearchResultsRepresentableTrait.php │ ├── Service │ │ ├── BaseJSONService.php │ │ ├── BaseService.php │ │ ├── BaseServiceController.php │ │ ├── BrowseService.php │ │ ├── Exceptions │ │ │ ├── InvalidListException.php │ │ │ └── ServiceException.php │ │ ├── GraphQLSchema.php │ │ ├── GraphQLServiceController.php │ │ ├── IIIFService.php │ │ ├── ItemService.php │ │ ├── ModelService.php │ │ ├── OAIPMHService.php │ │ ├── ReplicationService.php │ │ ├── RestClient.php │ │ ├── SearchJSONService.php │ │ ├── SimpleService.php │ │ ├── StatisticsService.php │ │ └── deprecated │ │ │ ├── AccessControlService.php │ │ │ ├── CataloguingService.php │ │ │ ├── ItemInfoService.php │ │ │ ├── SearchService.php │ │ │ ├── TourService.php │ │ │ └── UserContentService.php │ ├── SetUniqueIdnoTrait.php │ ├── SiteComments.php │ ├── SitePageTemplateManager.php │ ├── SortValueReloadingProgress.php │ ├── Statistics │ │ ├── StatisticsAggregator.php │ │ └── StatisticsDashboard.php │ ├── Sync │ │ ├── LogEntry │ │ │ ├── Attribute.php │ │ │ ├── AttributeValue.php │ │ │ ├── Base.php │ │ │ ├── Bundlable.php │ │ │ ├── Label.php │ │ │ ├── Relationship.php │ │ │ └── Representation.php │ │ └── Replicator.php │ ├── SyncableBaseModel.php │ ├── System │ │ ├── Installer.php │ │ └── Updater.php │ ├── TaskQueue.php │ ├── ToolsManager.php │ ├── TooltipManager.php │ ├── TusConfig.php │ ├── Utils │ │ ├── ApplicationToolSettings.php │ │ ├── BaseApplicationTool.php │ │ ├── CLIBaseUtils.php │ │ ├── CLIProgressBar.php │ │ ├── CLITools.php │ │ ├── CLIUtils.php │ │ ├── CLIUtils │ │ │ ├── AccessControl.php │ │ │ ├── BanHammer.php │ │ │ ├── Configuration.php │ │ │ ├── ContentManagement.php │ │ │ ├── Cron.php │ │ │ ├── Developer.php │ │ │ ├── ImportExport.php │ │ │ ├── Localization.php │ │ │ ├── Maintenance.php │ │ │ ├── Media.php │ │ │ ├── Migration.php │ │ │ ├── Performance.php │ │ │ ├── Replication.php │ │ │ ├── Search.php │ │ │ ├── Statistics.php │ │ │ ├── TaskQueue.php │ │ │ └── Test.php │ │ ├── DataMigrationUtils.php │ │ ├── DataMigrationUtils │ │ │ ├── en_AU.lang │ │ │ ├── en_CA.lang │ │ │ └── en_US.lang │ │ ├── Debug.php │ │ ├── Encoding.php │ │ ├── Graph.php │ │ ├── IApplicationTool.php │ │ ├── LockingTrait.php │ │ ├── ProcessStatus.php │ │ └── Timer.php │ ├── View.php │ ├── Vimeo │ │ └── vimeo.php │ ├── Visualizer.php │ ├── WidgetManager.php │ └── pawtucket │ │ ├── AjaxFooter.php │ │ ├── BaseDetailController.php │ │ ├── BaseLookupController.php │ │ ├── BaseMultiSearchController.php │ │ ├── BasePawtucketController.php │ │ ├── ConfigurationCheck.php │ │ └── PageFormat.php ├── locale │ ├── en_GB │ │ ├── messages.mo │ │ └── messages.po │ ├── en_US │ │ ├── messages.mo │ │ └── messages.po │ ├── es_ES │ │ ├── messages.mo │ │ └── messages.po │ ├── fr_FR │ │ ├── messages.mo │ │ └── messages.po │ └── pt_PT │ │ ├── messages.mo │ │ └── messages.po ├── log │ └── .htaccess ├── models │ ├── .htaccess │ ├── ca_acl.php │ ├── ca_application_vars.php │ ├── ca_attribute_value_multifiles.php │ ├── ca_attribute_values.php │ ├── ca_attributes.php │ ├── ca_bookmark_folders.php │ ├── ca_bookmarks.php │ ├── ca_bundle_display_labels.php │ ├── ca_bundle_display_placements.php │ ├── ca_bundle_display_type_restrictions.php │ ├── ca_bundle_displays.php │ ├── ca_bundle_displays_x_user_groups.php │ ├── ca_bundle_displays_x_users.php │ ├── ca_change_log.php │ ├── ca_change_log_subjects.php │ ├── ca_collection_labels.php │ ├── ca_collections.php │ ├── ca_collections_x_collections.php │ ├── ca_collections_x_storage_locations.php │ ├── ca_collections_x_vocabulary_terms.php │ ├── ca_data_exporter_items.php │ ├── ca_data_exporter_labels.php │ ├── ca_data_exporters.php │ ├── ca_data_import_event_log.php │ ├── ca_data_import_events.php │ ├── ca_data_import_items.php │ ├── ca_data_importer_groups.php │ ├── ca_data_importer_items.php │ ├── ca_data_importer_labels.php │ ├── ca_data_importer_log.php │ ├── ca_data_importer_log_items.php │ ├── ca_data_importers.php │ ├── ca_editor_ui_bundle_placements.php │ ├── ca_editor_ui_labels.php │ ├── ca_editor_ui_screen_labels.php │ ├── ca_editor_ui_screen_type_restrictions.php │ ├── ca_editor_ui_screens.php │ ├── ca_editor_ui_screens_x_roles.php │ ├── ca_editor_ui_screens_x_user_groups.php │ ├── ca_editor_ui_screens_x_users.php │ ├── ca_editor_ui_type_restrictions.php │ ├── ca_editor_uis.php │ ├── ca_editor_uis_x_roles.php │ ├── ca_editor_uis_x_user_groups.php │ ├── ca_editor_uis_x_users.php │ ├── ca_entities.php │ ├── ca_entities_x_collections.php │ ├── ca_entities_x_entities.php │ ├── ca_entities_x_occurrences.php │ ├── ca_entities_x_places.php │ ├── ca_entities_x_storage_locations.php │ ├── ca_entities_x_vocabulary_terms.php │ ├── ca_entity_labels.php │ ├── ca_groups_x_roles.php │ ├── ca_guids.php │ ├── ca_history_tracking_current_value_labels.php │ ├── ca_history_tracking_current_values.php │ ├── ca_ip_bans.php │ ├── ca_ip_whitelist.php │ ├── ca_ips.php │ ├── ca_item_comments.php │ ├── ca_item_tags.php │ ├── ca_items_x_tags.php │ ├── ca_list_item_labels.php │ ├── ca_list_items.php │ ├── ca_list_items_x_list_items.php │ ├── ca_list_labels.php │ ├── ca_lists.php │ ├── ca_loan_labels.php │ ├── ca_loans.php │ ├── ca_loans_x_collections.php │ ├── ca_loans_x_entities.php │ ├── ca_loans_x_loans.php │ ├── ca_loans_x_movements.php │ ├── ca_loans_x_object_lots.php │ ├── ca_loans_x_object_representations.php │ ├── ca_loans_x_objects.php │ ├── ca_loans_x_occurrences.php │ ├── ca_loans_x_places.php │ ├── ca_loans_x_storage_locations.php │ ├── ca_loans_x_vocabulary_terms.php │ ├── ca_locales.php │ ├── ca_media_upload_session_files.php │ ├── ca_media_upload_sessions.php │ ├── ca_metadata_alert_rule_labels.php │ ├── ca_metadata_alert_rule_type_restrictions.php │ ├── ca_metadata_alert_rules.php │ ├── ca_metadata_alert_rules_x_user_groups.php │ ├── ca_metadata_alert_rules_x_users.php │ ├── ca_metadata_alert_triggers.php │ ├── ca_metadata_dictionary_entries.php │ ├── ca_metadata_dictionary_entry_labels.php │ ├── ca_metadata_dictionary_rule_violations.php │ ├── ca_metadata_dictionary_rules.php │ ├── ca_metadata_element_labels.php │ ├── ca_metadata_elements.php │ ├── ca_metadata_type_restrictions.php │ ├── ca_movement_labels.php │ ├── ca_movements.php │ ├── ca_movements_x_collections.php │ ├── ca_movements_x_entities.php │ ├── ca_movements_x_movements.php │ ├── ca_movements_x_object_lots.php │ ├── ca_movements_x_object_representations.php │ ├── ca_movements_x_objects.php │ ├── ca_movements_x_occurrences.php │ ├── ca_movements_x_places.php │ ├── ca_movements_x_storage_locations.php │ ├── ca_movements_x_vocabulary_terms.php │ ├── ca_multipart_idno_sequences.php │ ├── ca_notification_subjects.php │ ├── ca_notifications.php │ ├── ca_object_checkouts.php │ ├── ca_object_labels.php │ ├── ca_object_lot_labels.php │ ├── ca_object_lots.php │ ├── ca_object_lots_x_collections.php │ ├── ca_object_lots_x_entities.php │ ├── ca_object_lots_x_object_lots.php │ ├── ca_object_lots_x_object_representations.php │ ├── ca_object_lots_x_occurrences.php │ ├── ca_object_lots_x_places.php │ ├── ca_object_lots_x_storage_locations.php │ ├── ca_object_lots_x_vocabulary_terms.php │ ├── ca_object_representation_captions.php │ ├── ca_object_representation_labels.php │ ├── ca_object_representation_multifiles.php │ ├── ca_object_representation_sidecars.php │ ├── ca_object_representations.php │ ├── ca_object_representations_x_collections.php │ ├── ca_object_representations_x_entities.php │ ├── ca_object_representations_x_object_representations.php │ ├── ca_object_representations_x_occurrences.php │ ├── ca_object_representations_x_places.php │ ├── ca_object_representations_x_storage_locations.php │ ├── ca_object_representations_x_vocabulary_terms.php │ ├── ca_objects.php │ ├── ca_objects_x_collections.php │ ├── ca_objects_x_entities.php │ ├── ca_objects_x_object_representations.php │ ├── ca_objects_x_objects.php │ ├── ca_objects_x_occurrences.php │ ├── ca_objects_x_places.php │ ├── ca_objects_x_storage_locations.php │ ├── ca_objects_x_vocabulary_terms.php │ ├── ca_occurrence_labels.php │ ├── ca_occurrences.php │ ├── ca_occurrences_x_collections.php │ ├── ca_occurrences_x_occurrences.php │ ├── ca_occurrences_x_storage_locations.php │ ├── ca_occurrences_x_vocabulary_terms.php │ ├── ca_place_labels.php │ ├── ca_places.php │ ├── ca_places_x_collections.php │ ├── ca_places_x_occurrences.php │ ├── ca_places_x_places.php │ ├── ca_places_x_storage_locations.php │ ├── ca_places_x_vocabulary_terms.php │ ├── ca_relationship_relationships.php │ ├── ca_relationship_type_labels.php │ ├── ca_relationship_types.php │ ├── ca_replication_log.php │ ├── ca_representation_annotation_labels.php │ ├── ca_representation_annotations.php │ ├── ca_representation_annotations_x_entities.php │ ├── ca_representation_annotations_x_objects.php │ ├── ca_representation_annotations_x_occurrences.php │ ├── ca_representation_annotations_x_places.php │ ├── ca_representation_annotations_x_vocabulary_terms.php │ ├── ca_representation_transcriptions.php │ ├── ca_search_form_labels.php │ ├── ca_search_form_placements.php │ ├── ca_search_form_type_restrictions.php │ ├── ca_search_forms.php │ ├── ca_search_forms_x_user_groups.php │ ├── ca_search_forms_x_users.php │ ├── ca_search_indexing_queue.php │ ├── ca_set_item_labels.php │ ├── ca_set_items.php │ ├── ca_set_labels.php │ ├── ca_sets.php │ ├── ca_sets_x_anonymous_access.php │ ├── ca_sets_x_user_groups.php │ ├── ca_sets_x_users.php │ ├── ca_site_page_media.php │ ├── ca_site_pages.php │ ├── ca_site_templates.php │ ├── ca_storage_location_labels.php │ ├── ca_storage_locations.php │ ├── ca_storage_locations_x_storage_locations.php │ ├── ca_storage_locations_x_vocabulary_terms.php │ ├── ca_task_queue.php │ ├── ca_tour_labels.php │ ├── ca_tour_stop_labels.php │ ├── ca_tour_stops.php │ ├── ca_tour_stops_x_collections.php │ ├── ca_tour_stops_x_entities.php │ ├── ca_tour_stops_x_objects.php │ ├── ca_tour_stops_x_occurrences.php │ ├── ca_tour_stops_x_places.php │ ├── ca_tour_stops_x_tour_stops.php │ ├── ca_tour_stops_x_vocabulary_terms.php │ ├── ca_tours.php │ ├── ca_user_export_downloads.php │ ├── ca_user_groups.php │ ├── ca_user_notes.php │ ├── ca_user_representation_annotation_labels.php │ ├── ca_user_representation_annotations.php │ ├── ca_user_representation_annotations_x_entities.php │ ├── ca_user_representation_annotations_x_objects.php │ ├── ca_user_representation_annotations_x_occurrences.php │ ├── ca_user_representation_annotations_x_places.php │ ├── ca_user_representation_annotations_x_vocabulary_terms.php │ ├── ca_user_roles.php │ ├── ca_user_sort_items.php │ ├── ca_user_sorts.php │ ├── ca_users.php │ ├── ca_users_x_groups.php │ ├── ca_users_x_roles.php │ └── ca_watch_list.php ├── plugins │ ├── FindingAid │ │ ├── FindingAidPlugin.php │ │ ├── conf │ │ │ └── FindingAid.conf │ │ ├── controllers │ │ │ └── CollectionController.php │ │ ├── printTemplates │ │ │ ├── body.php │ │ │ ├── footer.php │ │ │ ├── header.php │ │ │ ├── local │ │ │ │ └── README.md │ │ │ ├── pdf.css │ │ │ ├── pdfEnd.php │ │ │ └── pdfStart.php │ │ └── themes │ │ │ ├── bam2015 │ │ │ └── views │ │ │ │ └── index_html.php │ │ │ ├── default │ │ │ └── views │ │ │ │ └── index_html.php │ │ │ ├── glenstone │ │ │ └── views │ │ │ │ └── index_html.php │ │ │ ├── morton │ │ │ └── views │ │ │ │ └── index_html.php │ │ │ ├── nysoc │ │ │ └── views │ │ │ │ ├── index_html.php │ │ │ │ └── index_html_bak.php │ │ │ ├── pillow │ │ │ └── views │ │ │ │ └── index_html.php │ │ │ ├── sva │ │ │ └── views │ │ │ │ ├── index_html.php │ │ │ │ ├── index_html.php_pre_seth │ │ │ │ └── index_html_bak.php │ │ │ └── vhec │ │ │ └── views │ │ │ └── index_html.php │ └── README.txt ├── printTemplates │ ├── labels │ │ ├── avery_8164.php │ │ ├── avery_8167.php │ │ ├── local │ │ │ └── README.md │ │ ├── pdf.css │ │ ├── pdfEnd.php │ │ └── pdfStart.php │ ├── results │ │ ├── checklist.php │ │ ├── display.php │ │ ├── footer.php │ │ ├── header.php │ │ ├── local │ │ │ └── README.md │ │ ├── pdf.css │ │ ├── pdfEnd.php │ │ ├── pdfStart.php │ │ └── thumbnails.php │ └── summary │ │ ├── ca_collections_summary.php │ │ ├── ca_objects_summary.php │ │ ├── folder.jpg │ │ ├── footer.php │ │ ├── header.php │ │ ├── local │ │ ├── README │ │ └── README.md │ │ ├── pdf.css │ │ ├── pdfEnd.php │ │ ├── pdfStart.php │ │ └── summary.php ├── service │ ├── controllers │ │ └── IIIFController.php │ └── views │ │ ├── json.php │ │ └── json_error.php ├── tmp │ └── .htaccess └── version.php ├── assets ├── aeon │ ├── aeonRequestsDialog.css │ └── aeonRequestsDialog.min.js ├── bootstrap │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── ico │ │ ├── apple-touch-icon-114-precomposed.png │ │ ├── apple-touch-icon-144-precomposed.png │ │ ├── apple-touch-icon-57-precomposed.png │ │ ├── apple-touch-icon-72-precomposed.png │ │ └── favicon.png │ ├── js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js │ └── src │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CNAME │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _config.yml │ │ ├── _includes │ │ ├── ads.html │ │ ├── footer.html │ │ ├── header.html │ │ ├── nav-components.html │ │ ├── nav-css.html │ │ ├── nav-customize.html │ │ ├── nav-getting-started.html │ │ ├── nav-javascript.html │ │ ├── nav-main.html │ │ ├── old-bs-docs.html │ │ └── social-buttons.html │ │ ├── _layouts │ │ ├── default.html │ │ └── home.html │ │ ├── assets │ │ ├── css │ │ │ ├── docs.css │ │ │ └── pygments-manni.css │ │ ├── ico │ │ │ ├── apple-touch-icon-114-precomposed.png │ │ │ ├── apple-touch-icon-144-precomposed.png │ │ │ ├── apple-touch-icon-57-precomposed.png │ │ │ ├── apple-touch-icon-72-precomposed.png │ │ │ └── favicon.png │ │ └── js │ │ │ ├── application.js │ │ │ ├── customizer.js │ │ │ ├── filesaver.js │ │ │ ├── holder.js │ │ │ ├── html5shiv.js │ │ │ ├── jquery.js │ │ │ ├── jszip.js │ │ │ ├── less.js │ │ │ ├── raw-files.js │ │ │ ├── respond.min.js │ │ │ └── uglify.js │ │ ├── bower.json │ │ ├── browserstack.json │ │ ├── components.html │ │ ├── composer.json │ │ ├── css.html │ │ ├── customize.html │ │ ├── dist │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ └── js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ │ ├── examples │ │ ├── carousel │ │ │ ├── carousel.css │ │ │ └── index.html │ │ ├── grid │ │ │ ├── grid.css │ │ │ └── index.html │ │ ├── jumbotron-narrow │ │ │ ├── index.html │ │ │ └── jumbotron-narrow.css │ │ ├── jumbotron │ │ │ ├── index.html │ │ │ └── jumbotron.css │ │ ├── justified-nav │ │ │ ├── index.html │ │ │ └── justified-nav.css │ │ ├── navbar-fixed-top │ │ │ ├── index.html │ │ │ └── navbar-fixed-top.css │ │ ├── navbar-static-top │ │ │ ├── index.html │ │ │ └── navbar-static-top.css │ │ ├── navbar │ │ │ ├── index.html │ │ │ └── navbar.css │ │ ├── non-responsive │ │ │ ├── index.html │ │ │ └── non-responsive.css │ │ ├── offcanvas │ │ │ ├── index.html │ │ │ ├── offcanvas.css │ │ │ └── offcanvas.js │ │ ├── screenshots │ │ │ ├── carousel.jpg │ │ │ ├── grid.jpg │ │ │ ├── jumbotron-narrow.jpg │ │ │ ├── jumbotron.jpg │ │ │ ├── justified-nav.jpg │ │ │ ├── navbar-fixed.jpg │ │ │ ├── navbar-static.jpg │ │ │ ├── navbar.jpg │ │ │ ├── non-responsive.jpg │ │ │ ├── offcanvas.jpg │ │ │ ├── sign-in.jpg │ │ │ ├── starter-template.jpg │ │ │ ├── sticky-footer-navbar.jpg │ │ │ ├── sticky-footer.jpg │ │ │ └── theme.jpg │ │ ├── signin │ │ │ ├── index.html │ │ │ └── signin.css │ │ ├── starter-template │ │ │ ├── index.html │ │ │ └── starter-template.css │ │ ├── sticky-footer-navbar │ │ │ ├── index.html │ │ │ └── sticky-footer-navbar.css │ │ ├── sticky-footer │ │ │ ├── index.html │ │ │ └── sticky-footer.css │ │ └── theme │ │ │ ├── index.html │ │ │ └── theme.css │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ │ ├── getting-started.html │ │ ├── index.html │ │ ├── javascript.html │ │ ├── js │ │ ├── .jshintrc │ │ ├── affix.js │ │ ├── alert.js │ │ ├── button.js │ │ ├── carousel.js │ │ ├── collapse.js │ │ ├── dropdown.js │ │ ├── modal.js │ │ ├── popover.js │ │ ├── scrollspy.js │ │ ├── tab.js │ │ ├── tests │ │ │ ├── index.html │ │ │ ├── phantom.js │ │ │ ├── server.js │ │ │ ├── unit │ │ │ │ ├── affix.js │ │ │ │ ├── alert.js │ │ │ │ ├── button.js │ │ │ │ ├── carousel.js │ │ │ │ ├── collapse.js │ │ │ │ ├── dropdown.js │ │ │ │ ├── modal.js │ │ │ │ ├── phantom.js │ │ │ │ ├── popover.js │ │ │ │ ├── scrollspy.js │ │ │ │ ├── tab.js │ │ │ │ ├── tooltip.js │ │ │ │ └── transition.js │ │ │ └── vendor │ │ │ │ ├── jquery.js │ │ │ │ ├── qunit.css │ │ │ │ └── qunit.js │ │ ├── tooltip.js │ │ └── transition.js │ │ ├── less │ │ ├── alerts.less │ │ ├── badges.less │ │ ├── bootstrap.less │ │ ├── breadcrumbs.less │ │ ├── button-groups.less │ │ ├── buttons.less │ │ ├── carousel.less │ │ ├── close.less │ │ ├── code.less │ │ ├── component-animations.less │ │ ├── dropdowns.less │ │ ├── forms.less │ │ ├── glyphicons.less │ │ ├── grid.less │ │ ├── input-groups.less │ │ ├── jumbotron.less │ │ ├── labels.less │ │ ├── list-group.less │ │ ├── media.less │ │ ├── mixins.less │ │ ├── modals.less │ │ ├── navbar.less │ │ ├── navs.less │ │ ├── normalize.less │ │ ├── pager.less │ │ ├── pagination.less │ │ ├── panels.less │ │ ├── popovers.less │ │ ├── print.less │ │ ├── progress-bars.less │ │ ├── responsive-utilities.less │ │ ├── scaffolding.less │ │ ├── tables.less │ │ ├── theme.less │ │ ├── thumbnails.less │ │ ├── tooltip.less │ │ ├── type.less │ │ ├── utilities.less │ │ ├── variables.less │ │ └── wells.less │ │ └── package.json ├── ca │ ├── ca.querytranslator.js │ ├── ca.slideshow.js │ └── js │ │ ├── ca.genericbundle.js │ │ ├── ca.genericpanel.js │ │ ├── ca.googlemaps.js │ │ ├── ca.hierbrowser.js │ │ ├── ca.mediaplayer.js │ │ ├── ca.objectcheckin.js │ │ ├── ca.objectcheckout.js │ │ ├── ca.utils.js │ │ └── mcs_marker.png ├── chartist │ ├── .bowerrc │ ├── .editorconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .jshintrc │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── CODINGSTYLE.md │ ├── CONTRIBUTING.md │ ├── Gruntfile.js │ ├── LICENSE │ ├── README.md │ ├── bower.json │ ├── dist │ │ ├── LICENSE │ │ ├── chartist.js │ │ ├── chartist.min.css │ │ ├── chartist.min.js │ │ ├── chartist.min.js.map │ │ └── scss │ │ │ ├── chartist.scss │ │ │ └── settings │ │ │ └── _chartist-settings.scss │ ├── package.json │ ├── site │ │ ├── .buildignore │ │ ├── 404.html │ │ ├── code-snippets │ │ │ ├── 1-dimension-values.js │ │ │ ├── 2-dimensions-values.js │ │ │ ├── aspect-ratio-container.html │ │ │ ├── colour-override-line-chart.css │ │ │ ├── custom-include.scss │ │ │ ├── custom-style-bar-chart.css │ │ │ ├── custom-style-donut-chart.css │ │ │ ├── custom-style-line-chart.css │ │ │ ├── custom-style-pie-chart.css │ │ │ ├── plugin-example.js │ │ │ ├── plugin-include.js │ │ │ ├── plugin-signature.js │ │ │ ├── simple-start-aspect-ratio-chart.js │ │ │ ├── simple-start-cdn.html │ │ │ ├── simple-start-fixed-chart.js │ │ │ ├── simple-start.html │ │ │ └── two-charts.html │ │ ├── data │ │ │ └── pages │ │ │ │ ├── examples.yml │ │ │ │ ├── getting-started.yml │ │ │ │ ├── index.yml │ │ │ │ └── plugins.yml │ │ ├── examples │ │ │ ├── bi-polar-bar-interpolated.js │ │ │ ├── example-axis-auto.js │ │ │ ├── example-axis-fixed-and-auto.js │ │ │ ├── example-bar-distributed-series.js │ │ │ ├── example-bar-extreme-responsive.js │ │ │ ├── example-bar-horizontal.js │ │ │ ├── example-bar-label-position.js │ │ │ ├── example-bar-with-circle-modify-drawing.js │ │ │ ├── example-bipolar-line-area.js │ │ │ ├── example-donut-animation.js │ │ │ ├── example-dynamic-colours.js │ │ │ ├── example-gallery-four.js │ │ │ ├── example-gallery-one.js │ │ │ ├── example-gallery-three.js │ │ │ ├── example-gallery-two.js │ │ │ ├── example-line-area.js │ │ │ ├── example-line-data-fill-holes.js │ │ │ ├── example-line-data-holes.js │ │ │ ├── example-line-modify-drawing.js │ │ │ ├── example-line-months-interpolation.js │ │ │ ├── example-line-only-integer.js │ │ │ ├── example-line-path-animation.js │ │ │ ├── example-line-series-override.js │ │ │ ├── example-line-simple-responsive.js │ │ │ ├── example-line-simple-smoothing.js │ │ │ ├── example-line-svg-animation.js │ │ │ ├── example-multiline-bar.js │ │ │ ├── example-plugin-accessibility.js │ │ │ ├── example-plugin-axistitle.js │ │ │ ├── example-plugin-fill-donut.js │ │ │ ├── example-plugin-pointlabel.js │ │ │ ├── example-plugin-sketchy.js │ │ │ ├── example-plugin-threshold.js │ │ │ ├── example-plugin-tooltip.js │ │ │ ├── example-plugin-zoom.js │ │ │ ├── example-simple-bar.js │ │ │ ├── example-simple-svg-animation.js │ │ │ ├── line-scatter-random.js │ │ │ ├── overlapping-bars.js │ │ │ ├── pie-with-custom-labels.js │ │ │ ├── simple-configuration-chart.js │ │ │ ├── simple-gauge-chart.js │ │ │ ├── simple-line-chart.js │ │ │ ├── simple-pie-chart.js │ │ │ └── stacked-bar.js │ │ ├── favicon.ico │ │ ├── helpers │ │ │ ├── chartist-helpers.js │ │ │ ├── common-helpers.js │ │ │ ├── dox-helpers.js │ │ │ └── lorem-helper.js │ │ ├── images │ │ │ ├── chartist-guy.gif │ │ │ ├── chartist-guy.svg │ │ │ └── chartist-icon.svg │ │ ├── layouts │ │ │ ├── content.hbs │ │ │ ├── default.hbs │ │ │ └── landing.hbs │ │ ├── partials │ │ │ ├── api-side-navigation.hbs │ │ │ ├── browser-support-table.hbs │ │ │ ├── code-snippet.hbs │ │ │ ├── code.hbs │ │ │ ├── dox │ │ │ │ ├── dox-member.hbs │ │ │ │ ├── dox-module.hbs │ │ │ │ └── dox-section.hbs │ │ │ ├── example-chart.hbs │ │ │ ├── heading.hbs │ │ │ ├── hint.hbs │ │ │ ├── live-example.hbs │ │ │ ├── navigation.hbs │ │ │ ├── section.hbs │ │ │ ├── side-navigation.hbs │ │ │ ├── sub-section.hbs │ │ │ ├── table.hbs │ │ │ └── text.hbs │ │ ├── robots.txt │ │ ├── scripts │ │ │ ├── chartist-guy.js │ │ │ └── main.js │ │ ├── styles │ │ │ ├── _api-doc.scss │ │ │ ├── _base.scss │ │ │ ├── _code-mirror-theme.scss │ │ │ ├── _example-charts.scss │ │ │ ├── _highlight.scss │ │ │ ├── _landing.scss │ │ │ ├── _live-example.scss │ │ │ ├── _modules.scss │ │ │ ├── main.scss │ │ │ ├── modules │ │ │ │ ├── _animation.scss │ │ │ │ ├── _common.scss │ │ │ │ ├── _font.scss │ │ │ │ ├── _icon.scss │ │ │ │ └── _scale.scss │ │ │ └── settings │ │ │ │ ├── _chartist-docs.scss │ │ │ │ ├── _font-awesome-variables.scss │ │ │ │ └── _foundation.scss │ │ └── templates │ │ │ ├── api-documentation.hbs │ │ │ ├── examples.hbs │ │ │ ├── getting-started.hbs │ │ │ ├── index.hbs │ │ │ └── plugins.hbs │ ├── src │ │ ├── scripts │ │ │ ├── axes │ │ │ │ ├── auto-scale-axis.js │ │ │ │ ├── axis.js │ │ │ │ ├── fixed-scale-axis.js │ │ │ │ └── step-axis.js │ │ │ ├── base.js │ │ │ ├── charts │ │ │ │ ├── bar.js │ │ │ │ ├── line.js │ │ │ │ └── pie.js │ │ │ ├── class.js │ │ │ ├── core.js │ │ │ ├── event.js │ │ │ ├── interpolation.js │ │ │ ├── svg-path.js │ │ │ └── svg.js │ │ └── styles │ │ │ ├── chartist.scss │ │ │ └── settings │ │ │ └── _chartist-settings.scss │ ├── tasks │ │ ├── aliases.yml │ │ ├── assemble.js │ │ ├── clean.js │ │ ├── concat.js │ │ ├── concurrent.js │ │ ├── connect.js │ │ ├── copy.js │ │ ├── critical.js │ │ ├── cssmin.js │ │ ├── htmlmin.js │ │ ├── imagemin.js │ │ ├── jasmine.js │ │ ├── jshint.js │ │ ├── sass.js │ │ ├── svgmin.js │ │ ├── template.js │ │ ├── uglify.js │ │ ├── umd.js │ │ ├── usemin.js │ │ ├── useminPrepare.js │ │ └── watch.js │ └── test │ │ ├── .jshintrc │ │ ├── runner.html │ │ └── spec │ │ ├── spec-axes.js │ │ ├── spec-bar-chart.js │ │ ├── spec-base-chart.js │ │ ├── spec-core.js │ │ ├── spec-line-chart.js │ │ ├── spec-pie-chart.js │ │ └── spec-svg.js ├── ck │ ├── CHANGES.md │ ├── LICENSE.md │ ├── README.md │ ├── adapters │ │ └── jquery.js │ ├── build-config.js │ ├── ckeditor.js │ ├── config.js │ ├── contents.css │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ ├── plugins │ │ ├── a11yhelp │ │ │ └── dialogs │ │ │ │ ├── a11yhelp.js │ │ │ │ └── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de-ch.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es-mx.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── mn.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── oc.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── tt.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ ├── about │ │ │ └── dialogs │ │ │ │ ├── about.js │ │ │ │ ├── hidpi │ │ │ │ └── logo_ckeditor.png │ │ │ │ └── logo_ckeditor.png │ │ ├── calinks │ │ │ ├── dialogs │ │ │ │ └── addCALink.js │ │ │ ├── icons │ │ │ │ └── CAlink.png │ │ │ └── plugin.js │ │ ├── camediacontent │ │ │ ├── dialogs │ │ │ │ └── addMediaDialog.js │ │ │ ├── icons │ │ │ │ ├── link.png │ │ │ │ └── media.png │ │ │ └── plugin.js │ │ ├── clipboard │ │ │ └── dialogs │ │ │ │ └── paste.js │ │ ├── colordialog │ │ │ └── dialogs │ │ │ │ ├── colordialog.css │ │ │ │ └── colordialog.js │ │ ├── copyformatting │ │ │ ├── cursors │ │ │ │ ├── cursor-disabled.svg │ │ │ │ └── cursor.svg │ │ │ └── styles │ │ │ │ └── copyformatting.css │ │ ├── dialog │ │ │ └── dialogDefinition.js │ │ ├── div │ │ │ └── dialogs │ │ │ │ └── div.js │ │ ├── divarea │ │ │ └── plugin.js │ │ ├── find │ │ │ └── dialogs │ │ │ │ └── find.js │ │ ├── flash │ │ │ ├── dialogs │ │ │ │ └── flash.js │ │ │ └── images │ │ │ │ └── placeholder.png │ │ ├── forms │ │ │ ├── dialogs │ │ │ │ ├── button.js │ │ │ │ ├── checkbox.js │ │ │ │ ├── form.js │ │ │ │ ├── hiddenfield.js │ │ │ │ ├── radio.js │ │ │ │ ├── select.js │ │ │ │ ├── textarea.js │ │ │ │ └── textfield.js │ │ │ └── images │ │ │ │ └── hiddenfield.gif │ │ ├── icons.png │ │ ├── icons_hidpi.png │ │ ├── iframe │ │ │ ├── dialogs │ │ │ │ └── iframe.js │ │ │ └── images │ │ │ │ └── placeholder.png │ │ ├── image │ │ │ ├── dialogs │ │ │ │ └── image.js │ │ │ └── images │ │ │ │ └── noimage.png │ │ ├── link │ │ │ ├── dialogs │ │ │ │ ├── anchor.js │ │ │ │ └── link.js │ │ │ └── images │ │ │ │ ├── anchor.png │ │ │ │ └── hidpi │ │ │ │ └── anchor.png │ │ ├── liststyle │ │ │ └── dialogs │ │ │ │ └── liststyle.js │ │ ├── magicline │ │ │ └── images │ │ │ │ ├── hidpi │ │ │ │ ├── icon-rtl.png │ │ │ │ └── icon.png │ │ │ │ ├── icon-rtl.png │ │ │ │ └── icon.png │ │ ├── pagebreak │ │ │ └── images │ │ │ │ └── pagebreak.gif │ │ ├── pastefromword │ │ │ └── filter │ │ │ │ └── default.js │ │ ├── preview │ │ │ └── preview.html │ │ ├── scayt │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── dialogs │ │ │ │ ├── dialog.css │ │ │ │ ├── options.js │ │ │ │ └── toolbar.css │ │ │ └── skins │ │ │ │ └── moono-lisa │ │ │ │ └── scayt.css │ │ ├── showblocks │ │ │ └── images │ │ │ │ ├── block_address.png │ │ │ │ ├── block_blockquote.png │ │ │ │ ├── block_div.png │ │ │ │ ├── block_h1.png │ │ │ │ ├── block_h2.png │ │ │ │ ├── block_h3.png │ │ │ │ ├── block_h4.png │ │ │ │ ├── block_h5.png │ │ │ │ ├── block_h6.png │ │ │ │ ├── block_p.png │ │ │ │ └── block_pre.png │ │ ├── smiley │ │ │ ├── dialogs │ │ │ │ └── smiley.js │ │ │ └── images │ │ │ │ ├── angel_smile.gif │ │ │ │ ├── angel_smile.png │ │ │ │ ├── angry_smile.gif │ │ │ │ ├── angry_smile.png │ │ │ │ ├── broken_heart.gif │ │ │ │ ├── broken_heart.png │ │ │ │ ├── confused_smile.gif │ │ │ │ ├── confused_smile.png │ │ │ │ ├── cry_smile.gif │ │ │ │ ├── cry_smile.png │ │ │ │ ├── devil_smile.gif │ │ │ │ ├── devil_smile.png │ │ │ │ ├── embaressed_smile.gif │ │ │ │ ├── embarrassed_smile.gif │ │ │ │ ├── embarrassed_smile.png │ │ │ │ ├── envelope.gif │ │ │ │ ├── envelope.png │ │ │ │ ├── heart.gif │ │ │ │ ├── heart.png │ │ │ │ ├── kiss.gif │ │ │ │ ├── kiss.png │ │ │ │ ├── lightbulb.gif │ │ │ │ ├── lightbulb.png │ │ │ │ ├── omg_smile.gif │ │ │ │ ├── omg_smile.png │ │ │ │ ├── regular_smile.gif │ │ │ │ ├── regular_smile.png │ │ │ │ ├── sad_smile.gif │ │ │ │ ├── sad_smile.png │ │ │ │ ├── shades_smile.gif │ │ │ │ ├── shades_smile.png │ │ │ │ ├── teeth_smile.gif │ │ │ │ ├── teeth_smile.png │ │ │ │ ├── thumbs_down.gif │ │ │ │ ├── thumbs_down.png │ │ │ │ ├── thumbs_up.gif │ │ │ │ ├── thumbs_up.png │ │ │ │ ├── tongue_smile.gif │ │ │ │ ├── tongue_smile.png │ │ │ │ ├── tounge_smile.gif │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ ├── whatchutalkingabout_smile.png │ │ │ │ ├── wink_smile.gif │ │ │ │ └── wink_smile.png │ │ ├── specialchar │ │ │ └── dialogs │ │ │ │ ├── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de-ch.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es-mx.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── oc.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── tt.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ │ └── specialchar.js │ │ ├── table │ │ │ └── dialogs │ │ │ │ └── table.js │ │ ├── tableselection │ │ │ └── styles │ │ │ │ └── tableselection.css │ │ ├── tabletools │ │ │ └── dialogs │ │ │ │ └── tableCell.js │ │ ├── templates │ │ │ ├── dialogs │ │ │ │ ├── templates.css │ │ │ │ └── templates.js │ │ │ └── templates │ │ │ │ ├── default.js │ │ │ │ └── images │ │ │ │ ├── template1.gif │ │ │ │ ├── template2.gif │ │ │ │ └── template3.gif │ │ ├── widget │ │ │ └── images │ │ │ │ └── handle.png │ │ └── wsc │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── dialogs │ │ │ ├── ciframe.html │ │ │ ├── tmpFrameset.html │ │ │ ├── wsc.css │ │ │ ├── wsc.js │ │ │ └── wsc_ie.js │ │ │ └── skins │ │ │ └── moono-lisa │ │ │ └── wsc.css │ ├── samples │ │ ├── css │ │ │ └── samples.css │ │ ├── img │ │ │ ├── github-top.png │ │ │ ├── header-bg.png │ │ │ ├── header-separator.png │ │ │ ├── logo.png │ │ │ ├── logo.svg │ │ │ └── navigation-tip.png │ │ ├── index.html │ │ ├── js │ │ │ ├── sample.js │ │ │ └── sf.js │ │ ├── old │ │ │ ├── ajax.html │ │ │ ├── api.html │ │ │ ├── appendto.html │ │ │ ├── assets │ │ │ │ ├── inlineall │ │ │ │ │ └── logo.png │ │ │ │ ├── outputxhtml │ │ │ │ │ └── outputxhtml.css │ │ │ │ ├── posteddata.php │ │ │ │ ├── sample.jpg │ │ │ │ └── uilanguages │ │ │ │ │ └── languages.js │ │ │ ├── datafiltering.html │ │ │ ├── dialog │ │ │ │ ├── assets │ │ │ │ │ └── my_dialog.js │ │ │ │ └── dialog.html │ │ │ ├── divreplace.html │ │ │ ├── enterkey │ │ │ │ └── enterkey.html │ │ │ ├── htmlwriter │ │ │ │ ├── assets │ │ │ │ │ └── outputforflash │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ └── swfobject.js │ │ │ │ ├── outputforflash.html │ │ │ │ └── outputhtml.html │ │ │ ├── index.html │ │ │ ├── inlineall.html │ │ │ ├── inlinebycode.html │ │ │ ├── inlinetextarea.html │ │ │ ├── jquery.html │ │ │ ├── magicline │ │ │ │ └── magicline.html │ │ │ ├── readonly.html │ │ │ ├── replacebyclass.html │ │ │ ├── replacebycode.html │ │ │ ├── sample.css │ │ │ ├── sample.js │ │ │ ├── sample_posteddata.php │ │ │ ├── tabindex.html │ │ │ ├── toolbar │ │ │ │ └── toolbar.html │ │ │ ├── uicolor.html │ │ │ ├── uilanguages.html │ │ │ ├── wysiwygarea │ │ │ │ └── fullpage.html │ │ │ └── xhtmlstyle.html │ │ └── toolbarconfigurator │ │ │ ├── css │ │ │ └── fontello.css │ │ │ ├── font │ │ │ ├── LICENSE.txt │ │ │ ├── config.json │ │ │ ├── fontello.eot │ │ │ ├── fontello.svg │ │ │ ├── fontello.ttf │ │ │ └── fontello.woff │ │ │ ├── index.html │ │ │ ├── js │ │ │ ├── abstracttoolbarmodifier.js │ │ │ ├── fulltoolbareditor.js │ │ │ ├── toolbarmodifier.js │ │ │ └── toolbartextmodifier.js │ │ │ └── lib │ │ │ └── codemirror │ │ │ ├── LICENSE │ │ │ ├── codemirror.css │ │ │ ├── codemirror.js │ │ │ ├── javascript.js │ │ │ ├── neo.css │ │ │ ├── show-hint.css │ │ │ └── show-hint.js │ ├── skins │ │ └── moono-lisa │ │ │ ├── dialog.css │ │ │ ├── dialog_ie.css │ │ │ ├── dialog_ie8.css │ │ │ ├── dialog_iequirks.css │ │ │ ├── editor.css │ │ │ ├── editor_gecko.css │ │ │ ├── editor_ie.css │ │ │ ├── editor_ie8.css │ │ │ ├── editor_iequirks.css │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── images │ │ │ ├── arrow.png │ │ │ ├── close.png │ │ │ ├── hidpi │ │ │ │ ├── close.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ └── refresh.png │ │ │ ├── lock-open.png │ │ │ ├── lock.png │ │ │ ├── refresh.png │ │ │ └── spinner.gif │ │ │ └── readme.md │ └── styles.js ├── d3 │ ├── .npmignore │ ├── .spmignore │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── d3.js │ └── d3.min.js ├── diva │ ├── diva-v6.0.0.zip │ ├── diva.css │ ├── diva.css.map │ ├── diva.js │ ├── diva.js.map │ └── plugins │ │ ├── download.js │ │ ├── download.js.map │ │ ├── manipulation.js │ │ ├── manipulation.js.map │ │ ├── metadata.js │ │ └── metadata.js.map ├── fontawesome │ ├── LICENSE.txt │ ├── attribution.js │ ├── css │ │ ├── all.css │ │ ├── all.min.css │ │ ├── brands.css │ │ ├── brands.min.css │ │ ├── font-awesome.css │ │ ├── font-awesome.min.css │ │ ├── fontawesome.css │ │ ├── fontawesome.min.css │ │ ├── regular.css │ │ ├── regular.min.css │ │ ├── solid.css │ │ ├── solid.min.css │ │ ├── svg-with-js.css │ │ ├── svg-with-js.min.css │ │ ├── v4-shims.css │ │ └── v4-shims.min.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── js │ │ ├── all.js │ │ ├── all.min.js │ │ ├── brands.js │ │ ├── brands.min.js │ │ ├── conflict-detection.js │ │ ├── conflict-detection.min.js │ │ ├── fontawesome.js │ │ ├── fontawesome.min.js │ │ ├── regular.js │ │ ├── regular.min.js │ │ ├── solid.js │ │ ├── solid.min.js │ │ ├── v4-shims.js │ │ └── v4-shims.min.js │ ├── less │ │ ├── _animated.less │ │ ├── _bordered-pulled.less │ │ ├── _core.less │ │ ├── _fixed-width.less │ │ ├── _icons.less │ │ ├── _larger.less │ │ ├── _list.less │ │ ├── _mixins.less │ │ ├── _rotated-flipped.less │ │ ├── _screen-reader.less │ │ ├── _shims.less │ │ ├── _stacked.less │ │ ├── _variables.less │ │ ├── brands.less │ │ ├── fontawesome.less │ │ ├── regular.less │ │ ├── solid.less │ │ └── v4-shims.less │ ├── metadata │ │ ├── categories.yml │ │ ├── icons.json │ │ ├── icons.yml │ │ ├── shims.json │ │ ├── shims.yml │ │ └── sponsors.yml │ ├── scss │ │ ├── _animated.scss │ │ ├── _bordered-pulled.scss │ │ ├── _core.scss │ │ ├── _fixed-width.scss │ │ ├── _icons.scss │ │ ├── _larger.scss │ │ ├── _list.scss │ │ ├── _mixins.scss │ │ ├── _rotated-flipped.scss │ │ ├── _screen-reader.scss │ │ ├── _shims.scss │ │ ├── _stacked.scss │ │ ├── _variables.scss │ │ ├── brands.scss │ │ ├── fontawesome.scss │ │ ├── regular.scss │ │ ├── solid.scss │ │ └── v4-shims.scss │ ├── sprites │ │ ├── brands.svg │ │ ├── regular.svg │ │ └── solid.svg │ ├── svgs │ │ ├── brands │ │ │ ├── 500px.svg │ │ │ ├── accessible-icon.svg │ │ │ ├── accusoft.svg │ │ │ ├── acquisitions-incorporated.svg │ │ │ ├── adn.svg │ │ │ ├── adversal.svg │ │ │ ├── affiliatetheme.svg │ │ │ ├── airbnb.svg │ │ │ ├── algolia.svg │ │ │ ├── alipay.svg │ │ │ ├── amazon-pay.svg │ │ │ ├── amazon.svg │ │ │ ├── amilia.svg │ │ │ ├── android.svg │ │ │ ├── angellist.svg │ │ │ ├── angrycreative.svg │ │ │ ├── angular.svg │ │ │ ├── app-store-ios.svg │ │ │ ├── app-store.svg │ │ │ ├── apper.svg │ │ │ ├── apple-pay.svg │ │ │ ├── apple.svg │ │ │ ├── artstation.svg │ │ │ ├── asymmetrik.svg │ │ │ ├── atlassian.svg │ │ │ ├── audible.svg │ │ │ ├── autoprefixer.svg │ │ │ ├── avianex.svg │ │ │ ├── aviato.svg │ │ │ ├── aws.svg │ │ │ ├── bandcamp.svg │ │ │ ├── battle-net.svg │ │ │ ├── behance-square.svg │ │ │ ├── behance.svg │ │ │ ├── bimobject.svg │ │ │ ├── bitbucket.svg │ │ │ ├── bitcoin.svg │ │ │ ├── bity.svg │ │ │ ├── black-tie.svg │ │ │ ├── blackberry.svg │ │ │ ├── blogger-b.svg │ │ │ ├── blogger.svg │ │ │ ├── bluetooth-b.svg │ │ │ ├── bluetooth.svg │ │ │ ├── bootstrap.svg │ │ │ ├── btc.svg │ │ │ ├── buffer.svg │ │ │ ├── buromobelexperte.svg │ │ │ ├── buy-n-large.svg │ │ │ ├── buysellads.svg │ │ │ ├── canadian-maple-leaf.svg │ │ │ ├── cc-amazon-pay.svg │ │ │ ├── cc-amex.svg │ │ │ ├── cc-apple-pay.svg │ │ │ ├── cc-diners-club.svg │ │ │ ├── cc-discover.svg │ │ │ ├── cc-jcb.svg │ │ │ ├── cc-mastercard.svg │ │ │ ├── cc-paypal.svg │ │ │ ├── cc-stripe.svg │ │ │ ├── cc-visa.svg │ │ │ ├── centercode.svg │ │ │ ├── centos.svg │ │ │ ├── chrome.svg │ │ │ ├── chromecast.svg │ │ │ ├── cloudflare.svg │ │ │ ├── cloudscale.svg │ │ │ ├── cloudsmith.svg │ │ │ ├── cloudversify.svg │ │ │ ├── codepen.svg │ │ │ ├── codiepie.svg │ │ │ ├── confluence.svg │ │ │ ├── connectdevelop.svg │ │ │ ├── contao.svg │ │ │ ├── cotton-bureau.svg │ │ │ ├── cpanel.svg │ │ │ ├── creative-commons-by.svg │ │ │ ├── creative-commons-nc-eu.svg │ │ │ ├── creative-commons-nc-jp.svg │ │ │ ├── creative-commons-nc.svg │ │ │ ├── creative-commons-nd.svg │ │ │ ├── creative-commons-pd-alt.svg │ │ │ ├── creative-commons-pd.svg │ │ │ ├── creative-commons-remix.svg │ │ │ ├── creative-commons-sa.svg │ │ │ ├── creative-commons-sampling-plus.svg │ │ │ ├── creative-commons-sampling.svg │ │ │ ├── creative-commons-share.svg │ │ │ ├── creative-commons-zero.svg │ │ │ ├── creative-commons.svg │ │ │ ├── critical-role.svg │ │ │ ├── css3-alt.svg │ │ │ ├── css3.svg │ │ │ ├── cuttlefish.svg │ │ │ ├── d-and-d-beyond.svg │ │ │ ├── d-and-d.svg │ │ │ ├── dailymotion.svg │ │ │ ├── dashcube.svg │ │ │ ├── deezer.svg │ │ │ ├── delicious.svg │ │ │ ├── deploydog.svg │ │ │ ├── deskpro.svg │ │ │ ├── dev.svg │ │ │ ├── deviantart.svg │ │ │ ├── dhl.svg │ │ │ ├── diaspora.svg │ │ │ ├── digg.svg │ │ │ ├── digital-ocean.svg │ │ │ ├── discord.svg │ │ │ ├── discourse.svg │ │ │ ├── dochub.svg │ │ │ ├── docker.svg │ │ │ ├── draft2digital.svg │ │ │ ├── dribbble-square.svg │ │ │ ├── dribbble.svg │ │ │ ├── dropbox.svg │ │ │ ├── drupal.svg │ │ │ ├── dyalog.svg │ │ │ ├── earlybirds.svg │ │ │ ├── ebay.svg │ │ │ ├── edge-legacy.svg │ │ │ ├── edge.svg │ │ │ ├── elementor.svg │ │ │ ├── ello.svg │ │ │ ├── ember.svg │ │ │ ├── empire.svg │ │ │ ├── envira.svg │ │ │ ├── erlang.svg │ │ │ ├── ethereum.svg │ │ │ ├── etsy.svg │ │ │ ├── evernote.svg │ │ │ ├── expeditedssl.svg │ │ │ ├── facebook-f.svg │ │ │ ├── facebook-messenger.svg │ │ │ ├── facebook-square.svg │ │ │ ├── facebook.svg │ │ │ ├── fantasy-flight-games.svg │ │ │ ├── fedex.svg │ │ │ ├── fedora.svg │ │ │ ├── figma.svg │ │ │ ├── firefox-browser.svg │ │ │ ├── firefox.svg │ │ │ ├── first-order-alt.svg │ │ │ ├── first-order.svg │ │ │ ├── firstdraft.svg │ │ │ ├── flickr.svg │ │ │ ├── flipboard.svg │ │ │ ├── fly.svg │ │ │ ├── font-awesome-alt.svg │ │ │ ├── font-awesome-flag.svg │ │ │ ├── font-awesome-logo-full.svg │ │ │ ├── font-awesome.svg │ │ │ ├── fonticons-fi.svg │ │ │ ├── fonticons.svg │ │ │ ├── fort-awesome-alt.svg │ │ │ ├── fort-awesome.svg │ │ │ ├── forumbee.svg │ │ │ ├── foursquare.svg │ │ │ ├── free-code-camp.svg │ │ │ ├── freebsd.svg │ │ │ ├── fulcrum.svg │ │ │ ├── galactic-republic.svg │ │ │ ├── galactic-senate.svg │ │ │ ├── get-pocket.svg │ │ │ ├── gg-circle.svg │ │ │ ├── gg.svg │ │ │ ├── git-alt.svg │ │ │ ├── git-square.svg │ │ │ ├── git.svg │ │ │ ├── github-alt.svg │ │ │ ├── github-square.svg │ │ │ ├── github.svg │ │ │ ├── gitkraken.svg │ │ │ ├── gitlab.svg │ │ │ ├── gitter.svg │ │ │ ├── glide-g.svg │ │ │ ├── glide.svg │ │ │ ├── gofore.svg │ │ │ ├── goodreads-g.svg │ │ │ ├── goodreads.svg │ │ │ ├── google-drive.svg │ │ │ ├── google-pay.svg │ │ │ ├── google-play.svg │ │ │ ├── google-plus-g.svg │ │ │ ├── google-plus-square.svg │ │ │ ├── google-plus.svg │ │ │ ├── google-wallet.svg │ │ │ ├── google.svg │ │ │ ├── gratipay.svg │ │ │ ├── grav.svg │ │ │ ├── gripfire.svg │ │ │ ├── grunt.svg │ │ │ ├── guilded.svg │ │ │ ├── gulp.svg │ │ │ ├── hacker-news-square.svg │ │ │ ├── hacker-news.svg │ │ │ ├── hackerrank.svg │ │ │ ├── hips.svg │ │ │ ├── hire-a-helper.svg │ │ │ ├── hive.svg │ │ │ ├── hooli.svg │ │ │ ├── hornbill.svg │ │ │ ├── hotjar.svg │ │ │ ├── houzz.svg │ │ │ ├── html5.svg │ │ │ ├── hubspot.svg │ │ │ ├── ideal.svg │ │ │ ├── imdb.svg │ │ │ ├── innosoft.svg │ │ │ ├── instagram-square.svg │ │ │ ├── instagram.svg │ │ │ ├── instalod.svg │ │ │ ├── intercom.svg │ │ │ ├── internet-explorer.svg │ │ │ ├── invision.svg │ │ │ ├── ioxhost.svg │ │ │ ├── itch-io.svg │ │ │ ├── itunes-note.svg │ │ │ ├── itunes.svg │ │ │ ├── java.svg │ │ │ ├── jedi-order.svg │ │ │ ├── jenkins.svg │ │ │ ├── jira.svg │ │ │ ├── joget.svg │ │ │ ├── joomla.svg │ │ │ ├── js-square.svg │ │ │ ├── js.svg │ │ │ ├── jsfiddle.svg │ │ │ ├── kaggle.svg │ │ │ ├── keybase.svg │ │ │ ├── keycdn.svg │ │ │ ├── kickstarter-k.svg │ │ │ ├── kickstarter.svg │ │ │ ├── korvue.svg │ │ │ ├── laravel.svg │ │ │ ├── lastfm-square.svg │ │ │ ├── lastfm.svg │ │ │ ├── leanpub.svg │ │ │ ├── less.svg │ │ │ ├── line.svg │ │ │ ├── linkedin-in.svg │ │ │ ├── linkedin.svg │ │ │ ├── linode.svg │ │ │ ├── linux.svg │ │ │ ├── lyft.svg │ │ │ ├── magento.svg │ │ │ ├── mailchimp.svg │ │ │ ├── mandalorian.svg │ │ │ ├── markdown.svg │ │ │ ├── mastodon.svg │ │ │ ├── maxcdn.svg │ │ │ ├── mdb.svg │ │ │ ├── medapps.svg │ │ │ ├── medium-m.svg │ │ │ ├── medium.svg │ │ │ ├── medrt.svg │ │ │ ├── meetup.svg │ │ │ ├── megaport.svg │ │ │ ├── mendeley.svg │ │ │ ├── microblog.svg │ │ │ ├── microsoft.svg │ │ │ ├── mix.svg │ │ │ ├── mixcloud.svg │ │ │ ├── mixer.svg │ │ │ ├── mizuni.svg │ │ │ ├── modx.svg │ │ │ ├── monero.svg │ │ │ ├── napster.svg │ │ │ ├── neos.svg │ │ │ ├── nimblr.svg │ │ │ ├── node-js.svg │ │ │ ├── node.svg │ │ │ ├── npm.svg │ │ │ ├── ns8.svg │ │ │ ├── nutritionix.svg │ │ │ ├── octopus-deploy.svg │ │ │ ├── odnoklassniki-square.svg │ │ │ ├── odnoklassniki.svg │ │ │ ├── old-republic.svg │ │ │ ├── opencart.svg │ │ │ ├── openid.svg │ │ │ ├── opera.svg │ │ │ ├── optin-monster.svg │ │ │ ├── orcid.svg │ │ │ ├── osi.svg │ │ │ ├── page4.svg │ │ │ ├── pagelines.svg │ │ │ ├── palfed.svg │ │ │ ├── patreon.svg │ │ │ ├── paypal.svg │ │ │ ├── penny-arcade.svg │ │ │ ├── perbyte.svg │ │ │ ├── periscope.svg │ │ │ ├── phabricator.svg │ │ │ ├── phoenix-framework.svg │ │ │ ├── phoenix-squadron.svg │ │ │ ├── php.svg │ │ │ ├── pied-piper-alt.svg │ │ │ ├── pied-piper-hat.svg │ │ │ ├── pied-piper-pp.svg │ │ │ ├── pied-piper-square.svg │ │ │ ├── pied-piper.svg │ │ │ ├── pinterest-p.svg │ │ │ ├── pinterest-square.svg │ │ │ ├── pinterest.svg │ │ │ ├── playstation.svg │ │ │ ├── product-hunt.svg │ │ │ ├── pushed.svg │ │ │ ├── python.svg │ │ │ ├── qq.svg │ │ │ ├── quinscape.svg │ │ │ ├── quora.svg │ │ │ ├── r-project.svg │ │ │ ├── raspberry-pi.svg │ │ │ ├── ravelry.svg │ │ │ ├── react.svg │ │ │ ├── reacteurope.svg │ │ │ ├── readme.svg │ │ │ ├── rebel.svg │ │ │ ├── red-river.svg │ │ │ ├── reddit-alien.svg │ │ │ ├── reddit-square.svg │ │ │ ├── reddit.svg │ │ │ ├── redhat.svg │ │ │ ├── renren.svg │ │ │ ├── replyd.svg │ │ │ ├── researchgate.svg │ │ │ ├── resolving.svg │ │ │ ├── rev.svg │ │ │ ├── rocketchat.svg │ │ │ ├── rockrms.svg │ │ │ ├── rust.svg │ │ │ ├── safari.svg │ │ │ ├── salesforce.svg │ │ │ ├── sass.svg │ │ │ ├── schlix.svg │ │ │ ├── scribd.svg │ │ │ ├── searchengin.svg │ │ │ ├── sellcast.svg │ │ │ ├── sellsy.svg │ │ │ ├── servicestack.svg │ │ │ ├── shirtsinbulk.svg │ │ │ ├── shopify.svg │ │ │ ├── shopware.svg │ │ │ ├── simplybuilt.svg │ │ │ ├── sistrix.svg │ │ │ ├── sith.svg │ │ │ ├── sketch.svg │ │ │ ├── skyatlas.svg │ │ │ ├── skype.svg │ │ │ ├── slack-hash.svg │ │ │ ├── slack.svg │ │ │ ├── slideshare.svg │ │ │ ├── snapchat-ghost.svg │ │ │ ├── snapchat-square.svg │ │ │ ├── snapchat.svg │ │ │ ├── soundcloud.svg │ │ │ ├── sourcetree.svg │ │ │ ├── speakap.svg │ │ │ ├── speaker-deck.svg │ │ │ ├── spotify.svg │ │ │ ├── squarespace.svg │ │ │ ├── stack-exchange.svg │ │ │ ├── stack-overflow.svg │ │ │ ├── stackpath.svg │ │ │ ├── staylinked.svg │ │ │ ├── steam-square.svg │ │ │ ├── steam-symbol.svg │ │ │ ├── steam.svg │ │ │ ├── sticker-mule.svg │ │ │ ├── strava.svg │ │ │ ├── stripe-s.svg │ │ │ ├── stripe.svg │ │ │ ├── studiovinari.svg │ │ │ ├── stumbleupon-circle.svg │ │ │ ├── stumbleupon.svg │ │ │ ├── superpowers.svg │ │ │ ├── supple.svg │ │ │ ├── suse.svg │ │ │ ├── swift.svg │ │ │ ├── symfony.svg │ │ │ ├── teamspeak.svg │ │ │ ├── telegram-plane.svg │ │ │ ├── telegram.svg │ │ │ ├── tencent-weibo.svg │ │ │ ├── the-red-yeti.svg │ │ │ ├── themeco.svg │ │ │ ├── themeisle.svg │ │ │ ├── think-peaks.svg │ │ │ ├── tiktok.svg │ │ │ ├── trade-federation.svg │ │ │ ├── trello.svg │ │ │ ├── tripadvisor.svg │ │ │ ├── tumblr-square.svg │ │ │ ├── tumblr.svg │ │ │ ├── twitch.svg │ │ │ ├── twitter-square.svg │ │ │ ├── twitter.svg │ │ │ ├── typo3.svg │ │ │ ├── uber.svg │ │ │ ├── ubuntu.svg │ │ │ ├── uikit.svg │ │ │ ├── umbraco.svg │ │ │ ├── uncharted.svg │ │ │ ├── uniregistry.svg │ │ │ ├── unity.svg │ │ │ ├── unsplash.svg │ │ │ ├── untappd.svg │ │ │ ├── ups.svg │ │ │ ├── usb.svg │ │ │ ├── usps.svg │ │ │ ├── ussunnah.svg │ │ │ ├── vaadin.svg │ │ │ ├── viacoin.svg │ │ │ ├── viadeo-square.svg │ │ │ ├── viadeo.svg │ │ │ ├── viber.svg │ │ │ ├── vimeo-square.svg │ │ │ ├── vimeo-v.svg │ │ │ ├── vimeo.svg │ │ │ ├── vine.svg │ │ │ ├── vk.svg │ │ │ ├── vnv.svg │ │ │ ├── vuejs.svg │ │ │ ├── watchman-monitoring.svg │ │ │ ├── waze.svg │ │ │ ├── weebly.svg │ │ │ ├── weibo.svg │ │ │ ├── weixin.svg │ │ │ ├── whatsapp-square.svg │ │ │ ├── whatsapp.svg │ │ │ ├── whmcs.svg │ │ │ ├── wikipedia-w.svg │ │ │ ├── windows.svg │ │ │ ├── wix.svg │ │ │ ├── wizards-of-the-coast.svg │ │ │ ├── wodu.svg │ │ │ ├── wolf-pack-battalion.svg │ │ │ ├── wordpress-simple.svg │ │ │ ├── wordpress.svg │ │ │ ├── wpbeginner.svg │ │ │ ├── wpexplorer.svg │ │ │ ├── wpforms.svg │ │ │ ├── wpressr.svg │ │ │ ├── xbox.svg │ │ │ ├── xing-square.svg │ │ │ ├── xing.svg │ │ │ ├── y-combinator.svg │ │ │ ├── yahoo.svg │ │ │ ├── yammer.svg │ │ │ ├── yandex-international.svg │ │ │ ├── yandex.svg │ │ │ ├── yarn.svg │ │ │ ├── yelp.svg │ │ │ ├── yoast.svg │ │ │ ├── youtube-square.svg │ │ │ ├── youtube.svg │ │ │ └── zhihu.svg │ │ ├── regular │ │ │ ├── address-book.svg │ │ │ ├── address-card.svg │ │ │ ├── angry.svg │ │ │ ├── arrow-alt-circle-down.svg │ │ │ ├── arrow-alt-circle-left.svg │ │ │ ├── arrow-alt-circle-right.svg │ │ │ ├── arrow-alt-circle-up.svg │ │ │ ├── bell-slash.svg │ │ │ ├── bell.svg │ │ │ ├── bookmark.svg │ │ │ ├── building.svg │ │ │ ├── calendar-alt.svg │ │ │ ├── calendar-check.svg │ │ │ ├── calendar-minus.svg │ │ │ ├── calendar-plus.svg │ │ │ ├── calendar-times.svg │ │ │ ├── calendar.svg │ │ │ ├── caret-square-down.svg │ │ │ ├── caret-square-left.svg │ │ │ ├── caret-square-right.svg │ │ │ ├── caret-square-up.svg │ │ │ ├── chart-bar.svg │ │ │ ├── check-circle.svg │ │ │ ├── check-square.svg │ │ │ ├── circle.svg │ │ │ ├── clipboard.svg │ │ │ ├── clock.svg │ │ │ ├── clone.svg │ │ │ ├── closed-captioning.svg │ │ │ ├── comment-alt.svg │ │ │ ├── comment-dots.svg │ │ │ ├── comment.svg │ │ │ ├── comments.svg │ │ │ ├── compass.svg │ │ │ ├── copy.svg │ │ │ ├── copyright.svg │ │ │ ├── credit-card.svg │ │ │ ├── dizzy.svg │ │ │ ├── dot-circle.svg │ │ │ ├── edit.svg │ │ │ ├── envelope-open.svg │ │ │ ├── envelope.svg │ │ │ ├── eye-slash.svg │ │ │ ├── eye.svg │ │ │ ├── file-alt.svg │ │ │ ├── file-archive.svg │ │ │ ├── file-audio.svg │ │ │ ├── file-code.svg │ │ │ ├── file-excel.svg │ │ │ ├── file-image.svg │ │ │ ├── file-pdf.svg │ │ │ ├── file-powerpoint.svg │ │ │ ├── file-video.svg │ │ │ ├── file-word.svg │ │ │ ├── file.svg │ │ │ ├── flag.svg │ │ │ ├── flushed.svg │ │ │ ├── folder-open.svg │ │ │ ├── folder.svg │ │ │ ├── font-awesome-logo-full.svg │ │ │ ├── frown-open.svg │ │ │ ├── frown.svg │ │ │ ├── futbol.svg │ │ │ ├── gem.svg │ │ │ ├── grimace.svg │ │ │ ├── grin-alt.svg │ │ │ ├── grin-beam-sweat.svg │ │ │ ├── grin-beam.svg │ │ │ ├── grin-hearts.svg │ │ │ ├── grin-squint-tears.svg │ │ │ ├── grin-squint.svg │ │ │ ├── grin-stars.svg │ │ │ ├── grin-tears.svg │ │ │ ├── grin-tongue-squint.svg │ │ │ ├── grin-tongue-wink.svg │ │ │ ├── grin-tongue.svg │ │ │ ├── grin-wink.svg │ │ │ ├── grin.svg │ │ │ ├── hand-lizard.svg │ │ │ ├── hand-paper.svg │ │ │ ├── hand-peace.svg │ │ │ ├── hand-point-down.svg │ │ │ ├── hand-point-left.svg │ │ │ ├── hand-point-right.svg │ │ │ ├── hand-point-up.svg │ │ │ ├── hand-pointer.svg │ │ │ ├── hand-rock.svg │ │ │ ├── hand-scissors.svg │ │ │ ├── hand-spock.svg │ │ │ ├── handshake.svg │ │ │ ├── hdd.svg │ │ │ ├── heart.svg │ │ │ ├── hospital.svg │ │ │ ├── hourglass.svg │ │ │ ├── id-badge.svg │ │ │ ├── id-card.svg │ │ │ ├── image.svg │ │ │ ├── images.svg │ │ │ ├── keyboard.svg │ │ │ ├── kiss-beam.svg │ │ │ ├── kiss-wink-heart.svg │ │ │ ├── kiss.svg │ │ │ ├── laugh-beam.svg │ │ │ ├── laugh-squint.svg │ │ │ ├── laugh-wink.svg │ │ │ ├── laugh.svg │ │ │ ├── lemon.svg │ │ │ ├── life-ring.svg │ │ │ ├── lightbulb.svg │ │ │ ├── list-alt.svg │ │ │ ├── map.svg │ │ │ ├── meh-blank.svg │ │ │ ├── meh-rolling-eyes.svg │ │ │ ├── meh.svg │ │ │ ├── minus-square.svg │ │ │ ├── money-bill-alt.svg │ │ │ ├── moon.svg │ │ │ ├── newspaper.svg │ │ │ ├── object-group.svg │ │ │ ├── object-ungroup.svg │ │ │ ├── paper-plane.svg │ │ │ ├── pause-circle.svg │ │ │ ├── play-circle.svg │ │ │ ├── plus-square.svg │ │ │ ├── question-circle.svg │ │ │ ├── registered.svg │ │ │ ├── sad-cry.svg │ │ │ ├── sad-tear.svg │ │ │ ├── save.svg │ │ │ ├── share-square.svg │ │ │ ├── smile-beam.svg │ │ │ ├── smile-wink.svg │ │ │ ├── smile.svg │ │ │ ├── snowflake.svg │ │ │ ├── square.svg │ │ │ ├── star-half.svg │ │ │ ├── star.svg │ │ │ ├── sticky-note.svg │ │ │ ├── stop-circle.svg │ │ │ ├── sun.svg │ │ │ ├── surprise.svg │ │ │ ├── thumbs-down.svg │ │ │ ├── thumbs-up.svg │ │ │ ├── times-circle.svg │ │ │ ├── tired.svg │ │ │ ├── trash-alt.svg │ │ │ ├── user-circle.svg │ │ │ ├── user.svg │ │ │ ├── window-close.svg │ │ │ ├── window-maximize.svg │ │ │ ├── window-minimize.svg │ │ │ └── window-restore.svg │ │ └── solid │ │ │ ├── ad.svg │ │ │ ├── address-book.svg │ │ │ ├── address-card.svg │ │ │ ├── adjust.svg │ │ │ ├── air-freshener.svg │ │ │ ├── align-center.svg │ │ │ ├── align-justify.svg │ │ │ ├── align-left.svg │ │ │ ├── align-right.svg │ │ │ ├── allergies.svg │ │ │ ├── ambulance.svg │ │ │ ├── american-sign-language-interpreting.svg │ │ │ ├── anchor.svg │ │ │ ├── angle-double-down.svg │ │ │ ├── angle-double-left.svg │ │ │ ├── angle-double-right.svg │ │ │ ├── angle-double-up.svg │ │ │ ├── angle-down.svg │ │ │ ├── angle-left.svg │ │ │ ├── angle-right.svg │ │ │ ├── angle-up.svg │ │ │ ├── angry.svg │ │ │ ├── ankh.svg │ │ │ ├── apple-alt.svg │ │ │ ├── archive.svg │ │ │ ├── archway.svg │ │ │ ├── arrow-alt-circle-down.svg │ │ │ ├── arrow-alt-circle-left.svg │ │ │ ├── arrow-alt-circle-right.svg │ │ │ ├── arrow-alt-circle-up.svg │ │ │ ├── arrow-circle-down.svg │ │ │ ├── arrow-circle-left.svg │ │ │ ├── arrow-circle-right.svg │ │ │ ├── arrow-circle-up.svg │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-right.svg │ │ │ ├── arrow-up.svg │ │ │ ├── arrows-alt-h.svg │ │ │ ├── arrows-alt-v.svg │ │ │ ├── arrows-alt.svg │ │ │ ├── assistive-listening-systems.svg │ │ │ ├── asterisk.svg │ │ │ ├── at.svg │ │ │ ├── atlas.svg │ │ │ ├── atom.svg │ │ │ ├── audio-description.svg │ │ │ ├── award.svg │ │ │ ├── baby-carriage.svg │ │ │ ├── baby.svg │ │ │ ├── backspace.svg │ │ │ ├── backward.svg │ │ │ ├── bacon.svg │ │ │ ├── bacteria.svg │ │ │ ├── bacterium.svg │ │ │ ├── bahai.svg │ │ │ ├── balance-scale-left.svg │ │ │ ├── balance-scale-right.svg │ │ │ ├── balance-scale.svg │ │ │ ├── ban.svg │ │ │ ├── band-aid.svg │ │ │ ├── barcode.svg │ │ │ ├── bars.svg │ │ │ ├── baseball-ball.svg │ │ │ ├── basketball-ball.svg │ │ │ ├── bath.svg │ │ │ ├── battery-empty.svg │ │ │ ├── battery-full.svg │ │ │ ├── battery-half.svg │ │ │ ├── battery-quarter.svg │ │ │ ├── battery-three-quarters.svg │ │ │ ├── bed.svg │ │ │ ├── beer.svg │ │ │ ├── bell-slash.svg │ │ │ ├── bell.svg │ │ │ ├── bezier-curve.svg │ │ │ ├── bible.svg │ │ │ ├── bicycle.svg │ │ │ ├── biking.svg │ │ │ ├── binoculars.svg │ │ │ ├── biohazard.svg │ │ │ ├── birthday-cake.svg │ │ │ ├── blender-phone.svg │ │ │ ├── blender.svg │ │ │ ├── blind.svg │ │ │ ├── blog.svg │ │ │ ├── bold.svg │ │ │ ├── bolt.svg │ │ │ ├── bomb.svg │ │ │ ├── bone.svg │ │ │ ├── bong.svg │ │ │ ├── book-dead.svg │ │ │ ├── book-medical.svg │ │ │ ├── book-open.svg │ │ │ ├── book-reader.svg │ │ │ ├── book.svg │ │ │ ├── bookmark.svg │ │ │ ├── border-all.svg │ │ │ ├── border-none.svg │ │ │ ├── border-style.svg │ │ │ ├── bowling-ball.svg │ │ │ ├── box-open.svg │ │ │ ├── box-tissue.svg │ │ │ ├── box.svg │ │ │ ├── boxes.svg │ │ │ ├── braille.svg │ │ │ ├── brain.svg │ │ │ ├── bread-slice.svg │ │ │ ├── briefcase-medical.svg │ │ │ ├── briefcase.svg │ │ │ ├── broadcast-tower.svg │ │ │ ├── broom.svg │ │ │ ├── brush.svg │ │ │ ├── bug.svg │ │ │ ├── building.svg │ │ │ ├── bullhorn.svg │ │ │ ├── bullseye.svg │ │ │ ├── burn.svg │ │ │ ├── bus-alt.svg │ │ │ ├── bus.svg │ │ │ ├── business-time.svg │ │ │ ├── calculator.svg │ │ │ ├── calendar-alt.svg │ │ │ ├── calendar-check.svg │ │ │ ├── calendar-day.svg │ │ │ ├── calendar-minus.svg │ │ │ ├── calendar-plus.svg │ │ │ ├── calendar-times.svg │ │ │ ├── calendar-week.svg │ │ │ ├── calendar.svg │ │ │ ├── camera-retro.svg │ │ │ ├── camera.svg │ │ │ ├── campground.svg │ │ │ ├── candy-cane.svg │ │ │ ├── cannabis.svg │ │ │ ├── capsules.svg │ │ │ ├── car-alt.svg │ │ │ ├── car-battery.svg │ │ │ ├── car-crash.svg │ │ │ ├── car-side.svg │ │ │ ├── car.svg │ │ │ ├── caravan.svg │ │ │ ├── caret-down.svg │ │ │ ├── caret-left.svg │ │ │ ├── caret-right.svg │ │ │ ├── caret-square-down.svg │ │ │ ├── caret-square-left.svg │ │ │ ├── caret-square-right.svg │ │ │ ├── caret-square-up.svg │ │ │ ├── caret-up.svg │ │ │ ├── carrot.svg │ │ │ ├── cart-arrow-down.svg │ │ │ ├── cart-plus.svg │ │ │ ├── cash-register.svg │ │ │ ├── cat.svg │ │ │ ├── certificate.svg │ │ │ ├── chair.svg │ │ │ ├── chalkboard-teacher.svg │ │ │ ├── chalkboard.svg │ │ │ ├── charging-station.svg │ │ │ ├── chart-area.svg │ │ │ ├── chart-bar.svg │ │ │ ├── chart-line.svg │ │ │ ├── chart-pie.svg │ │ │ ├── check-circle.svg │ │ │ ├── check-double.svg │ │ │ ├── check-square.svg │ │ │ ├── check.svg │ │ │ ├── cheese.svg │ │ │ ├── chess-bishop.svg │ │ │ ├── chess-board.svg │ │ │ ├── chess-king.svg │ │ │ ├── chess-knight.svg │ │ │ ├── chess-pawn.svg │ │ │ ├── chess-queen.svg │ │ │ ├── chess-rook.svg │ │ │ ├── chess.svg │ │ │ ├── chevron-circle-down.svg │ │ │ ├── chevron-circle-left.svg │ │ │ ├── chevron-circle-right.svg │ │ │ ├── chevron-circle-up.svg │ │ │ ├── chevron-down.svg │ │ │ ├── chevron-left.svg │ │ │ ├── chevron-right.svg │ │ │ ├── chevron-up.svg │ │ │ ├── child.svg │ │ │ ├── church.svg │ │ │ ├── circle-notch.svg │ │ │ ├── circle.svg │ │ │ ├── city.svg │ │ │ ├── clinic-medical.svg │ │ │ ├── clipboard-check.svg │ │ │ ├── clipboard-list.svg │ │ │ ├── clipboard.svg │ │ │ ├── clock.svg │ │ │ ├── clone.svg │ │ │ ├── closed-captioning.svg │ │ │ ├── cloud-download-alt.svg │ │ │ ├── cloud-meatball.svg │ │ │ ├── cloud-moon-rain.svg │ │ │ ├── cloud-moon.svg │ │ │ ├── cloud-rain.svg │ │ │ ├── cloud-showers-heavy.svg │ │ │ ├── cloud-sun-rain.svg │ │ │ ├── cloud-sun.svg │ │ │ ├── cloud-upload-alt.svg │ │ │ ├── cloud.svg │ │ │ ├── cocktail.svg │ │ │ ├── code-branch.svg │ │ │ ├── code.svg │ │ │ ├── coffee.svg │ │ │ ├── cog.svg │ │ │ ├── cogs.svg │ │ │ ├── coins.svg │ │ │ ├── columns.svg │ │ │ ├── comment-alt.svg │ │ │ ├── comment-dollar.svg │ │ │ ├── comment-dots.svg │ │ │ ├── comment-medical.svg │ │ │ ├── comment-slash.svg │ │ │ ├── comment.svg │ │ │ ├── comments-dollar.svg │ │ │ ├── comments.svg │ │ │ ├── compact-disc.svg │ │ │ ├── compass.svg │ │ │ ├── compress-alt.svg │ │ │ ├── compress-arrows-alt.svg │ │ │ ├── compress.svg │ │ │ ├── concierge-bell.svg │ │ │ ├── cookie-bite.svg │ │ │ ├── cookie.svg │ │ │ ├── copy.svg │ │ │ ├── copyright.svg │ │ │ ├── couch.svg │ │ │ ├── credit-card.svg │ │ │ ├── crop-alt.svg │ │ │ ├── crop.svg │ │ │ ├── cross.svg │ │ │ ├── crosshairs.svg │ │ │ ├── crow.svg │ │ │ ├── crown.svg │ │ │ ├── crutch.svg │ │ │ ├── cube.svg │ │ │ ├── cubes.svg │ │ │ ├── cut.svg │ │ │ ├── database.svg │ │ │ ├── deaf.svg │ │ │ ├── democrat.svg │ │ │ ├── desktop.svg │ │ │ ├── dharmachakra.svg │ │ │ ├── diagnoses.svg │ │ │ ├── dice-d20.svg │ │ │ ├── dice-d6.svg │ │ │ ├── dice-five.svg │ │ │ ├── dice-four.svg │ │ │ ├── dice-one.svg │ │ │ ├── dice-six.svg │ │ │ ├── dice-three.svg │ │ │ ├── dice-two.svg │ │ │ ├── dice.svg │ │ │ ├── digital-tachograph.svg │ │ │ ├── directions.svg │ │ │ ├── disease.svg │ │ │ ├── divide.svg │ │ │ ├── dizzy.svg │ │ │ ├── dna.svg │ │ │ ├── dog.svg │ │ │ ├── dollar-sign.svg │ │ │ ├── dolly-flatbed.svg │ │ │ ├── dolly.svg │ │ │ ├── donate.svg │ │ │ ├── door-closed.svg │ │ │ ├── door-open.svg │ │ │ ├── dot-circle.svg │ │ │ ├── dove.svg │ │ │ ├── download.svg │ │ │ ├── drafting-compass.svg │ │ │ ├── dragon.svg │ │ │ ├── draw-polygon.svg │ │ │ ├── drum-steelpan.svg │ │ │ ├── drum.svg │ │ │ ├── drumstick-bite.svg │ │ │ ├── dumbbell.svg │ │ │ ├── dumpster-fire.svg │ │ │ ├── dumpster.svg │ │ │ ├── dungeon.svg │ │ │ ├── edit.svg │ │ │ ├── egg.svg │ │ │ ├── eject.svg │ │ │ ├── ellipsis-h.svg │ │ │ ├── ellipsis-v.svg │ │ │ ├── envelope-open-text.svg │ │ │ ├── envelope-open.svg │ │ │ ├── envelope-square.svg │ │ │ ├── envelope.svg │ │ │ ├── equals.svg │ │ │ ├── eraser.svg │ │ │ ├── ethernet.svg │ │ │ ├── euro-sign.svg │ │ │ ├── exchange-alt.svg │ │ │ ├── exclamation-circle.svg │ │ │ ├── exclamation-triangle.svg │ │ │ ├── exclamation.svg │ │ │ ├── expand-alt.svg │ │ │ ├── expand-arrows-alt.svg │ │ │ ├── expand.svg │ │ │ ├── external-link-alt.svg │ │ │ ├── external-link-square-alt.svg │ │ │ ├── eye-dropper.svg │ │ │ ├── eye-slash.svg │ │ │ ├── eye.svg │ │ │ ├── fan.svg │ │ │ ├── fast-backward.svg │ │ │ ├── fast-forward.svg │ │ │ ├── faucet.svg │ │ │ ├── fax.svg │ │ │ ├── feather-alt.svg │ │ │ ├── feather.svg │ │ │ ├── female.svg │ │ │ ├── fighter-jet.svg │ │ │ ├── file-alt.svg │ │ │ ├── file-archive.svg │ │ │ ├── file-audio.svg │ │ │ ├── file-code.svg │ │ │ ├── file-contract.svg │ │ │ ├── file-csv.svg │ │ │ ├── file-download.svg │ │ │ ├── file-excel.svg │ │ │ ├── file-export.svg │ │ │ ├── file-image.svg │ │ │ ├── file-import.svg │ │ │ ├── file-invoice-dollar.svg │ │ │ ├── file-invoice.svg │ │ │ ├── file-medical-alt.svg │ │ │ ├── file-medical.svg │ │ │ ├── file-pdf.svg │ │ │ ├── file-powerpoint.svg │ │ │ ├── file-prescription.svg │ │ │ ├── file-signature.svg │ │ │ ├── file-upload.svg │ │ │ ├── file-video.svg │ │ │ ├── file-word.svg │ │ │ ├── file.svg │ │ │ ├── fill-drip.svg │ │ │ ├── fill.svg │ │ │ ├── film.svg │ │ │ ├── filter.svg │ │ │ ├── fingerprint.svg │ │ │ ├── fire-alt.svg │ │ │ ├── fire-extinguisher.svg │ │ │ ├── fire.svg │ │ │ ├── first-aid.svg │ │ │ ├── fish.svg │ │ │ ├── fist-raised.svg │ │ │ ├── flag-checkered.svg │ │ │ ├── flag-usa.svg │ │ │ ├── flag.svg │ │ │ ├── flask.svg │ │ │ ├── flushed.svg │ │ │ ├── folder-minus.svg │ │ │ ├── folder-open.svg │ │ │ ├── folder-plus.svg │ │ │ ├── folder.svg │ │ │ ├── font-awesome-logo-full.svg │ │ │ ├── font.svg │ │ │ ├── football-ball.svg │ │ │ ├── forward.svg │ │ │ ├── frog.svg │ │ │ ├── frown-open.svg │ │ │ ├── frown.svg │ │ │ ├── funnel-dollar.svg │ │ │ ├── futbol.svg │ │ │ ├── gamepad.svg │ │ │ ├── gas-pump.svg │ │ │ ├── gavel.svg │ │ │ ├── gem.svg │ │ │ ├── genderless.svg │ │ │ ├── ghost.svg │ │ │ ├── gift.svg │ │ │ ├── gifts.svg │ │ │ ├── glass-cheers.svg │ │ │ ├── glass-martini-alt.svg │ │ │ ├── glass-martini.svg │ │ │ ├── glass-whiskey.svg │ │ │ ├── glasses.svg │ │ │ ├── globe-africa.svg │ │ │ ├── globe-americas.svg │ │ │ ├── globe-asia.svg │ │ │ ├── globe-europe.svg │ │ │ ├── globe.svg │ │ │ ├── golf-ball.svg │ │ │ ├── gopuram.svg │ │ │ ├── graduation-cap.svg │ │ │ ├── greater-than-equal.svg │ │ │ ├── greater-than.svg │ │ │ ├── grimace.svg │ │ │ ├── grin-alt.svg │ │ │ ├── grin-beam-sweat.svg │ │ │ ├── grin-beam.svg │ │ │ ├── grin-hearts.svg │ │ │ ├── grin-squint-tears.svg │ │ │ ├── grin-squint.svg │ │ │ ├── grin-stars.svg │ │ │ ├── grin-tears.svg │ │ │ ├── grin-tongue-squint.svg │ │ │ ├── grin-tongue-wink.svg │ │ │ ├── grin-tongue.svg │ │ │ ├── grin-wink.svg │ │ │ ├── grin.svg │ │ │ ├── grip-horizontal.svg │ │ │ ├── grip-lines-vertical.svg │ │ │ ├── grip-lines.svg │ │ │ ├── grip-vertical.svg │ │ │ ├── guitar.svg │ │ │ ├── h-square.svg │ │ │ ├── hamburger.svg │ │ │ ├── hammer.svg │ │ │ ├── hamsa.svg │ │ │ ├── hand-holding-heart.svg │ │ │ ├── hand-holding-medical.svg │ │ │ ├── hand-holding-usd.svg │ │ │ ├── hand-holding-water.svg │ │ │ ├── hand-holding.svg │ │ │ ├── hand-lizard.svg │ │ │ ├── hand-middle-finger.svg │ │ │ ├── hand-paper.svg │ │ │ ├── hand-peace.svg │ │ │ ├── hand-point-down.svg │ │ │ ├── hand-point-left.svg │ │ │ ├── hand-point-right.svg │ │ │ ├── hand-point-up.svg │ │ │ ├── hand-pointer.svg │ │ │ ├── hand-rock.svg │ │ │ ├── hand-scissors.svg │ │ │ ├── hand-sparkles.svg │ │ │ ├── hand-spock.svg │ │ │ ├── hands-helping.svg │ │ │ ├── hands-wash.svg │ │ │ ├── hands.svg │ │ │ ├── handshake-alt-slash.svg │ │ │ ├── handshake-slash.svg │ │ │ ├── handshake.svg │ │ │ ├── hanukiah.svg │ │ │ ├── hard-hat.svg │ │ │ ├── hashtag.svg │ │ │ ├── hat-cowboy-side.svg │ │ │ ├── hat-cowboy.svg │ │ │ ├── hat-wizard.svg │ │ │ ├── hdd.svg │ │ │ ├── head-side-cough-slash.svg │ │ │ ├── head-side-cough.svg │ │ │ ├── head-side-mask.svg │ │ │ ├── head-side-virus.svg │ │ │ ├── heading.svg │ │ │ ├── headphones-alt.svg │ │ │ ├── headphones.svg │ │ │ ├── headset.svg │ │ │ ├── heart-broken.svg │ │ │ ├── heart.svg │ │ │ ├── heartbeat.svg │ │ │ ├── helicopter.svg │ │ │ ├── highlighter.svg │ │ │ ├── hiking.svg │ │ │ ├── hippo.svg │ │ │ ├── history.svg │ │ │ ├── hockey-puck.svg │ │ │ ├── holly-berry.svg │ │ │ ├── home.svg │ │ │ ├── horse-head.svg │ │ │ ├── horse.svg │ │ │ ├── hospital-alt.svg │ │ │ ├── hospital-symbol.svg │ │ │ ├── hospital-user.svg │ │ │ ├── hospital.svg │ │ │ ├── hot-tub.svg │ │ │ ├── hotdog.svg │ │ │ ├── hotel.svg │ │ │ ├── hourglass-end.svg │ │ │ ├── hourglass-half.svg │ │ │ ├── hourglass-start.svg │ │ │ ├── hourglass.svg │ │ │ ├── house-damage.svg │ │ │ ├── house-user.svg │ │ │ ├── hryvnia.svg │ │ │ ├── i-cursor.svg │ │ │ ├── ice-cream.svg │ │ │ ├── icicles.svg │ │ │ ├── icons.svg │ │ │ ├── id-badge.svg │ │ │ ├── id-card-alt.svg │ │ │ ├── id-card.svg │ │ │ ├── igloo.svg │ │ │ ├── image.svg │ │ │ ├── images.svg │ │ │ ├── inbox.svg │ │ │ ├── indent.svg │ │ │ ├── industry.svg │ │ │ ├── infinity.svg │ │ │ ├── info-circle.svg │ │ │ ├── info.svg │ │ │ ├── italic.svg │ │ │ ├── jedi.svg │ │ │ ├── joint.svg │ │ │ ├── journal-whills.svg │ │ │ ├── kaaba.svg │ │ │ ├── key.svg │ │ │ ├── keyboard.svg │ │ │ ├── khanda.svg │ │ │ ├── kiss-beam.svg │ │ │ ├── kiss-wink-heart.svg │ │ │ ├── kiss.svg │ │ │ ├── kiwi-bird.svg │ │ │ ├── landmark.svg │ │ │ ├── language.svg │ │ │ ├── laptop-code.svg │ │ │ ├── laptop-house.svg │ │ │ ├── laptop-medical.svg │ │ │ ├── laptop.svg │ │ │ ├── laugh-beam.svg │ │ │ ├── laugh-squint.svg │ │ │ ├── laugh-wink.svg │ │ │ ├── laugh.svg │ │ │ ├── layer-group.svg │ │ │ ├── leaf.svg │ │ │ ├── lemon.svg │ │ │ ├── less-than-equal.svg │ │ │ ├── less-than.svg │ │ │ ├── level-down-alt.svg │ │ │ ├── level-up-alt.svg │ │ │ ├── life-ring.svg │ │ │ ├── lightbulb.svg │ │ │ ├── link.svg │ │ │ ├── lira-sign.svg │ │ │ ├── list-alt.svg │ │ │ ├── list-ol.svg │ │ │ ├── list-ul.svg │ │ │ ├── list.svg │ │ │ ├── location-arrow.svg │ │ │ ├── lock-open.svg │ │ │ ├── lock.svg │ │ │ ├── long-arrow-alt-down.svg │ │ │ ├── long-arrow-alt-left.svg │ │ │ ├── long-arrow-alt-right.svg │ │ │ ├── long-arrow-alt-up.svg │ │ │ ├── low-vision.svg │ │ │ ├── luggage-cart.svg │ │ │ ├── lungs-virus.svg │ │ │ ├── lungs.svg │ │ │ ├── magic.svg │ │ │ ├── magnet.svg │ │ │ ├── mail-bulk.svg │ │ │ ├── male.svg │ │ │ ├── map-marked-alt.svg │ │ │ ├── map-marked.svg │ │ │ ├── map-marker-alt.svg │ │ │ ├── map-marker.svg │ │ │ ├── map-pin.svg │ │ │ ├── map-signs.svg │ │ │ ├── map.svg │ │ │ ├── marker.svg │ │ │ ├── mars-double.svg │ │ │ ├── mars-stroke-h.svg │ │ │ ├── mars-stroke-v.svg │ │ │ ├── mars-stroke.svg │ │ │ ├── mars.svg │ │ │ ├── mask.svg │ │ │ ├── medal.svg │ │ │ ├── medkit.svg │ │ │ ├── meh-blank.svg │ │ │ ├── meh-rolling-eyes.svg │ │ │ ├── meh.svg │ │ │ ├── memory.svg │ │ │ ├── menorah.svg │ │ │ ├── mercury.svg │ │ │ ├── meteor.svg │ │ │ ├── microchip.svg │ │ │ ├── microphone-alt-slash.svg │ │ │ ├── microphone-alt.svg │ │ │ ├── microphone-slash.svg │ │ │ ├── microphone.svg │ │ │ ├── microscope.svg │ │ │ ├── minus-circle.svg │ │ │ ├── minus-square.svg │ │ │ ├── minus.svg │ │ │ ├── mitten.svg │ │ │ ├── mobile-alt.svg │ │ │ ├── mobile.svg │ │ │ ├── money-bill-alt.svg │ │ │ ├── money-bill-wave-alt.svg │ │ │ ├── money-bill-wave.svg │ │ │ ├── money-bill.svg │ │ │ ├── money-check-alt.svg │ │ │ ├── money-check.svg │ │ │ ├── monument.svg │ │ │ ├── moon.svg │ │ │ ├── mortar-pestle.svg │ │ │ ├── mosque.svg │ │ │ ├── motorcycle.svg │ │ │ ├── mountain.svg │ │ │ ├── mouse-pointer.svg │ │ │ ├── mouse.svg │ │ │ ├── mug-hot.svg │ │ │ ├── music.svg │ │ │ ├── network-wired.svg │ │ │ ├── neuter.svg │ │ │ ├── newspaper.svg │ │ │ ├── not-equal.svg │ │ │ ├── notes-medical.svg │ │ │ ├── object-group.svg │ │ │ ├── object-ungroup.svg │ │ │ ├── oil-can.svg │ │ │ ├── om.svg │ │ │ ├── otter.svg │ │ │ ├── outdent.svg │ │ │ ├── pager.svg │ │ │ ├── paint-brush.svg │ │ │ ├── paint-roller.svg │ │ │ ├── palette.svg │ │ │ ├── pallet.svg │ │ │ ├── paper-plane.svg │ │ │ ├── paperclip.svg │ │ │ ├── parachute-box.svg │ │ │ ├── paragraph.svg │ │ │ ├── parking.svg │ │ │ ├── passport.svg │ │ │ ├── pastafarianism.svg │ │ │ ├── paste.svg │ │ │ ├── pause-circle.svg │ │ │ ├── pause.svg │ │ │ ├── paw.svg │ │ │ ├── peace.svg │ │ │ ├── pen-alt.svg │ │ │ ├── pen-fancy.svg │ │ │ ├── pen-nib.svg │ │ │ ├── pen-square.svg │ │ │ ├── pen.svg │ │ │ ├── pencil-alt.svg │ │ │ ├── pencil-ruler.svg │ │ │ ├── people-arrows.svg │ │ │ ├── people-carry.svg │ │ │ ├── pepper-hot.svg │ │ │ ├── percent.svg │ │ │ ├── percentage.svg │ │ │ ├── person-booth.svg │ │ │ ├── phone-alt.svg │ │ │ ├── phone-slash.svg │ │ │ ├── phone-square-alt.svg │ │ │ ├── phone-square.svg │ │ │ ├── phone-volume.svg │ │ │ ├── phone.svg │ │ │ ├── photo-video.svg │ │ │ ├── piggy-bank.svg │ │ │ ├── pills.svg │ │ │ ├── pizza-slice.svg │ │ │ ├── place-of-worship.svg │ │ │ ├── plane-arrival.svg │ │ │ ├── plane-departure.svg │ │ │ ├── plane-slash.svg │ │ │ ├── plane.svg │ │ │ ├── play-circle.svg │ │ │ ├── play.svg │ │ │ ├── plug.svg │ │ │ ├── plus-circle.svg │ │ │ ├── plus-square.svg │ │ │ ├── plus.svg │ │ │ ├── podcast.svg │ │ │ ├── poll-h.svg │ │ │ ├── poll.svg │ │ │ ├── poo-storm.svg │ │ │ ├── poo.svg │ │ │ ├── poop.svg │ │ │ ├── portrait.svg │ │ │ ├── pound-sign.svg │ │ │ ├── power-off.svg │ │ │ ├── pray.svg │ │ │ ├── praying-hands.svg │ │ │ ├── prescription-bottle-alt.svg │ │ │ ├── prescription-bottle.svg │ │ │ ├── prescription.svg │ │ │ ├── print.svg │ │ │ ├── procedures.svg │ │ │ ├── project-diagram.svg │ │ │ ├── pump-medical.svg │ │ │ ├── pump-soap.svg │ │ │ ├── puzzle-piece.svg │ │ │ ├── qrcode.svg │ │ │ ├── question-circle.svg │ │ │ ├── question.svg │ │ │ ├── quidditch.svg │ │ │ ├── quote-left.svg │ │ │ ├── quote-right.svg │ │ │ ├── quran.svg │ │ │ ├── radiation-alt.svg │ │ │ ├── radiation.svg │ │ │ ├── rainbow.svg │ │ │ ├── random.svg │ │ │ ├── receipt.svg │ │ │ ├── record-vinyl.svg │ │ │ ├── recycle.svg │ │ │ ├── redo-alt.svg │ │ │ ├── redo.svg │ │ │ ├── registered.svg │ │ │ ├── remove-format.svg │ │ │ ├── reply-all.svg │ │ │ ├── reply.svg │ │ │ ├── republican.svg │ │ │ ├── restroom.svg │ │ │ ├── retweet.svg │ │ │ ├── ribbon.svg │ │ │ ├── ring.svg │ │ │ ├── road.svg │ │ │ ├── robot.svg │ │ │ ├── rocket.svg │ │ │ ├── route.svg │ │ │ ├── rss-square.svg │ │ │ ├── rss.svg │ │ │ ├── ruble-sign.svg │ │ │ ├── ruler-combined.svg │ │ │ ├── ruler-horizontal.svg │ │ │ ├── ruler-vertical.svg │ │ │ ├── ruler.svg │ │ │ ├── running.svg │ │ │ ├── rupee-sign.svg │ │ │ ├── sad-cry.svg │ │ │ ├── sad-tear.svg │ │ │ ├── satellite-dish.svg │ │ │ ├── satellite.svg │ │ │ ├── save.svg │ │ │ ├── school.svg │ │ │ ├── screwdriver.svg │ │ │ ├── scroll.svg │ │ │ ├── sd-card.svg │ │ │ ├── search-dollar.svg │ │ │ ├── search-location.svg │ │ │ ├── search-minus.svg │ │ │ ├── search-plus.svg │ │ │ ├── search.svg │ │ │ ├── seedling.svg │ │ │ ├── server.svg │ │ │ ├── shapes.svg │ │ │ ├── share-alt-square.svg │ │ │ ├── share-alt.svg │ │ │ ├── share-square.svg │ │ │ ├── share.svg │ │ │ ├── shekel-sign.svg │ │ │ ├── shield-alt.svg │ │ │ ├── shield-virus.svg │ │ │ ├── ship.svg │ │ │ ├── shipping-fast.svg │ │ │ ├── shoe-prints.svg │ │ │ ├── shopping-bag.svg │ │ │ ├── shopping-basket.svg │ │ │ ├── shopping-cart.svg │ │ │ ├── shower.svg │ │ │ ├── shuttle-van.svg │ │ │ ├── sign-in-alt.svg │ │ │ ├── sign-language.svg │ │ │ ├── sign-out-alt.svg │ │ │ ├── sign.svg │ │ │ ├── signal.svg │ │ │ ├── signature.svg │ │ │ ├── sim-card.svg │ │ │ ├── sink.svg │ │ │ ├── sitemap.svg │ │ │ ├── skating.svg │ │ │ ├── skiing-nordic.svg │ │ │ ├── skiing.svg │ │ │ ├── skull-crossbones.svg │ │ │ ├── skull.svg │ │ │ ├── slash.svg │ │ │ ├── sleigh.svg │ │ │ ├── sliders-h.svg │ │ │ ├── smile-beam.svg │ │ │ ├── smile-wink.svg │ │ │ ├── smile.svg │ │ │ ├── smog.svg │ │ │ ├── smoking-ban.svg │ │ │ ├── smoking.svg │ │ │ ├── sms.svg │ │ │ ├── snowboarding.svg │ │ │ ├── snowflake.svg │ │ │ ├── snowman.svg │ │ │ ├── snowplow.svg │ │ │ ├── soap.svg │ │ │ ├── socks.svg │ │ │ ├── solar-panel.svg │ │ │ ├── sort-alpha-down-alt.svg │ │ │ ├── sort-alpha-down.svg │ │ │ ├── sort-alpha-up-alt.svg │ │ │ ├── sort-alpha-up.svg │ │ │ ├── sort-amount-down-alt.svg │ │ │ ├── sort-amount-down.svg │ │ │ ├── sort-amount-up-alt.svg │ │ │ ├── sort-amount-up.svg │ │ │ ├── sort-down.svg │ │ │ ├── sort-numeric-down-alt.svg │ │ │ ├── sort-numeric-down.svg │ │ │ ├── sort-numeric-up-alt.svg │ │ │ ├── sort-numeric-up.svg │ │ │ ├── sort-up.svg │ │ │ ├── sort.svg │ │ │ ├── spa.svg │ │ │ ├── space-shuttle.svg │ │ │ ├── spell-check.svg │ │ │ ├── spider.svg │ │ │ ├── spinner.svg │ │ │ ├── splotch.svg │ │ │ ├── spray-can.svg │ │ │ ├── square-full.svg │ │ │ ├── square-root-alt.svg │ │ │ ├── square.svg │ │ │ ├── stamp.svg │ │ │ ├── star-and-crescent.svg │ │ │ ├── star-half-alt.svg │ │ │ ├── star-half.svg │ │ │ ├── star-of-david.svg │ │ │ ├── star-of-life.svg │ │ │ ├── star.svg │ │ │ ├── step-backward.svg │ │ │ ├── step-forward.svg │ │ │ ├── stethoscope.svg │ │ │ ├── sticky-note.svg │ │ │ ├── stop-circle.svg │ │ │ ├── stop.svg │ │ │ ├── stopwatch-20.svg │ │ │ ├── stopwatch.svg │ │ │ ├── store-alt-slash.svg │ │ │ ├── store-alt.svg │ │ │ ├── store-slash.svg │ │ │ ├── store.svg │ │ │ ├── stream.svg │ │ │ ├── street-view.svg │ │ │ ├── strikethrough.svg │ │ │ ├── stroopwafel.svg │ │ │ ├── subscript.svg │ │ │ ├── subway.svg │ │ │ ├── suitcase-rolling.svg │ │ │ ├── suitcase.svg │ │ │ ├── sun.svg │ │ │ ├── superscript.svg │ │ │ ├── surprise.svg │ │ │ ├── swatchbook.svg │ │ │ ├── swimmer.svg │ │ │ ├── swimming-pool.svg │ │ │ ├── synagogue.svg │ │ │ ├── sync-alt.svg │ │ │ ├── sync.svg │ │ │ ├── syringe.svg │ │ │ ├── table-tennis.svg │ │ │ ├── table.svg │ │ │ ├── tablet-alt.svg │ │ │ ├── tablet.svg │ │ │ ├── tablets.svg │ │ │ ├── tachometer-alt.svg │ │ │ ├── tag.svg │ │ │ ├── tags.svg │ │ │ ├── tape.svg │ │ │ ├── tasks.svg │ │ │ ├── taxi.svg │ │ │ ├── teeth-open.svg │ │ │ ├── teeth.svg │ │ │ ├── temperature-high.svg │ │ │ ├── temperature-low.svg │ │ │ ├── tenge.svg │ │ │ ├── terminal.svg │ │ │ ├── text-height.svg │ │ │ ├── text-width.svg │ │ │ ├── th-large.svg │ │ │ ├── th-list.svg │ │ │ ├── th.svg │ │ │ ├── theater-masks.svg │ │ │ ├── thermometer-empty.svg │ │ │ ├── thermometer-full.svg │ │ │ ├── thermometer-half.svg │ │ │ ├── thermometer-quarter.svg │ │ │ ├── thermometer-three-quarters.svg │ │ │ ├── thermometer.svg │ │ │ ├── thumbs-down.svg │ │ │ ├── thumbs-up.svg │ │ │ ├── thumbtack.svg │ │ │ ├── ticket-alt.svg │ │ │ ├── times-circle.svg │ │ │ ├── times.svg │ │ │ ├── tint-slash.svg │ │ │ ├── tint.svg │ │ │ ├── tired.svg │ │ │ ├── toggle-off.svg │ │ │ ├── toggle-on.svg │ │ │ ├── toilet-paper-slash.svg │ │ │ ├── toilet-paper.svg │ │ │ ├── toilet.svg │ │ │ ├── toolbox.svg │ │ │ ├── tools.svg │ │ │ ├── tooth.svg │ │ │ ├── torah.svg │ │ │ ├── torii-gate.svg │ │ │ ├── tractor.svg │ │ │ ├── trademark.svg │ │ │ ├── traffic-light.svg │ │ │ ├── trailer.svg │ │ │ ├── train.svg │ │ │ ├── tram.svg │ │ │ ├── transgender-alt.svg │ │ │ ├── transgender.svg │ │ │ ├── trash-alt.svg │ │ │ ├── trash-restore-alt.svg │ │ │ ├── trash-restore.svg │ │ │ ├── trash.svg │ │ │ ├── tree.svg │ │ │ ├── trophy.svg │ │ │ ├── truck-loading.svg │ │ │ ├── truck-monster.svg │ │ │ ├── truck-moving.svg │ │ │ ├── truck-pickup.svg │ │ │ ├── truck.svg │ │ │ ├── tshirt.svg │ │ │ ├── tty.svg │ │ │ ├── tv.svg │ │ │ ├── umbrella-beach.svg │ │ │ ├── umbrella.svg │ │ │ ├── underline.svg │ │ │ ├── undo-alt.svg │ │ │ ├── undo.svg │ │ │ ├── universal-access.svg │ │ │ ├── university.svg │ │ │ ├── unlink.svg │ │ │ ├── unlock-alt.svg │ │ │ ├── unlock.svg │ │ │ ├── upload.svg │ │ │ ├── user-alt-slash.svg │ │ │ ├── user-alt.svg │ │ │ ├── user-astronaut.svg │ │ │ ├── user-check.svg │ │ │ ├── user-circle.svg │ │ │ ├── user-clock.svg │ │ │ ├── user-cog.svg │ │ │ ├── user-edit.svg │ │ │ ├── user-friends.svg │ │ │ ├── user-graduate.svg │ │ │ ├── user-injured.svg │ │ │ ├── user-lock.svg │ │ │ ├── user-md.svg │ │ │ ├── user-minus.svg │ │ │ ├── user-ninja.svg │ │ │ ├── user-nurse.svg │ │ │ ├── user-plus.svg │ │ │ ├── user-secret.svg │ │ │ ├── user-shield.svg │ │ │ ├── user-slash.svg │ │ │ ├── user-tag.svg │ │ │ ├── user-tie.svg │ │ │ ├── user-times.svg │ │ │ ├── user.svg │ │ │ ├── users-cog.svg │ │ │ ├── users-slash.svg │ │ │ ├── users.svg │ │ │ ├── utensil-spoon.svg │ │ │ ├── utensils.svg │ │ │ ├── vector-square.svg │ │ │ ├── venus-double.svg │ │ │ ├── venus-mars.svg │ │ │ ├── venus.svg │ │ │ ├── vest-patches.svg │ │ │ ├── vest.svg │ │ │ ├── vial.svg │ │ │ ├── vials.svg │ │ │ ├── video-slash.svg │ │ │ ├── video.svg │ │ │ ├── vihara.svg │ │ │ ├── virus-slash.svg │ │ │ ├── virus.svg │ │ │ ├── viruses.svg │ │ │ ├── voicemail.svg │ │ │ ├── volleyball-ball.svg │ │ │ ├── volume-down.svg │ │ │ ├── volume-mute.svg │ │ │ ├── volume-off.svg │ │ │ ├── volume-up.svg │ │ │ ├── vote-yea.svg │ │ │ ├── vr-cardboard.svg │ │ │ ├── walking.svg │ │ │ ├── wallet.svg │ │ │ ├── warehouse.svg │ │ │ ├── water.svg │ │ │ ├── wave-square.svg │ │ │ ├── weight-hanging.svg │ │ │ ├── weight.svg │ │ │ ├── wheelchair.svg │ │ │ ├── wifi.svg │ │ │ ├── wind.svg │ │ │ ├── window-close.svg │ │ │ ├── window-maximize.svg │ │ │ ├── window-minimize.svg │ │ │ ├── window-restore.svg │ │ │ ├── wine-bottle.svg │ │ │ ├── wine-glass-alt.svg │ │ │ ├── wine-glass.svg │ │ │ ├── won-sign.svg │ │ │ ├── wrench.svg │ │ │ ├── x-ray.svg │ │ │ ├── yen-sign.svg │ │ │ └── yin-yang.svg │ └── webfonts │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ └── fa-solid-900.woff2 ├── google │ ├── geolocationmarker.js │ └── markerclusterer.js ├── jqote2 │ └── jquery.jqote2.min.js ├── jquery │ ├── circular-slider │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── circular-slider.css │ │ ├── circular-slider.js │ │ ├── circular-slider.min.css │ │ └── circular-slider.min.js │ ├── doT.js │ ├── jquery-querybuilder │ │ ├── css │ │ │ ├── query-builder.dark.css │ │ │ ├── query-builder.dark.min.css │ │ │ ├── query-builder.default.css │ │ │ └── query-builder.default.min.css │ │ ├── i18n │ │ │ ├── query-builder.ar.js │ │ │ ├── query-builder.az.js │ │ │ ├── query-builder.bg.js │ │ │ ├── query-builder.cs.js │ │ │ ├── query-builder.da.js │ │ │ ├── query-builder.de.js │ │ │ ├── query-builder.el.js │ │ │ ├── query-builder.en.js │ │ │ ├── query-builder.es.js │ │ │ ├── query-builder.fa-IR.js │ │ │ ├── query-builder.fr.js │ │ │ ├── query-builder.he.js │ │ │ ├── query-builder.it.js │ │ │ ├── query-builder.nl.js │ │ │ ├── query-builder.no.js │ │ │ ├── query-builder.pl.js │ │ │ ├── query-builder.pt-BR.js │ │ │ ├── query-builder.pt-PT.js │ │ │ ├── query-builder.ro.js │ │ │ ├── query-builder.ru.js │ │ │ ├── query-builder.sq.js │ │ │ ├── query-builder.tr.js │ │ │ ├── query-builder.ua.js │ │ │ └── query-builder.zh-CN.js │ │ ├── js │ │ │ ├── query-builder.js │ │ │ ├── query-builder.min.js │ │ │ ├── query-builder.standalone.js │ │ │ └── query-builder.standalone.min.js │ │ └── scss │ │ │ ├── dark.scss │ │ │ ├── default.scss │ │ │ └── plugins │ │ │ ├── _bt-checkbox.scss │ │ │ ├── _bt-tooltip-errors.scss │ │ │ ├── _filter-description.scss │ │ │ ├── _invert.scss │ │ │ ├── _sortable.scss │ │ │ ├── bt-tooltip-errors.scss │ │ │ ├── filter-description.scss │ │ │ ├── invert.scss │ │ │ └── sortable.scss │ ├── jquery-tileviewer │ │ ├── jquery.tileviewer.css │ │ └── jquery.tileviewer.js │ ├── jquery-ui │ │ ├── AUTHORS.txt │ │ ├── LICENSE.txt │ │ ├── images │ │ │ ├── ui-icons_444444_256x240.png │ │ │ ├── ui-icons_555555_256x240.png │ │ │ ├── ui-icons_777620_256x240.png │ │ │ ├── ui-icons_777777_256x240.png │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ ├── index.html │ │ ├── jquery-ui.css │ │ ├── jquery-ui.js │ │ ├── jquery-ui.min.css │ │ ├── jquery-ui.min.js │ │ ├── jquery-ui.structure.css │ │ ├── jquery-ui.structure.min.css │ │ ├── jquery-ui.theme.css │ │ └── jquery-ui.theme.min.css │ ├── jquery.extendext.js │ └── js │ │ ├── jquery-3.7.1.js │ │ ├── jquery-3.7.1.min.js │ │ ├── jquery-migrate-1.4.1.min.js │ │ ├── jquery-migrate-3.0.1.js │ │ ├── jquery-migrate-3.0.1.min.js │ │ ├── jquery-migrate-3.4.0.js │ │ ├── jquery-migrate-3.4.0.min.js │ │ ├── jquery.caui.js │ │ ├── jquery.cookie.js │ │ ├── jquery.cookiejar.js │ │ ├── jquery.hotkeys.js │ │ ├── jquery.hscroll.js │ │ ├── jquery.jCarousel.css │ │ ├── jquery.jCarousel.js │ │ ├── jquery.jCarousel.min.js │ │ ├── jquery.jgrowl.css │ │ ├── jquery.jgrowl.min.js │ │ ├── jquery.js │ │ ├── jquery.jscroll.js │ │ ├── jquery.jscroll.min.js │ │ ├── jquery.jscrollpane.css │ │ ├── jquery.jscrollpane.min.js │ │ ├── jquery.min.js │ │ ├── jquery.mousewheel.js │ │ ├── jquery.scrollTo.min.js │ │ ├── jquery.tools.min.js │ │ ├── readmore.js │ │ ├── readmore.min.js │ │ └── threesixty.min.js ├── leaflet │ ├── draw │ │ ├── images │ │ │ ├── layers-2x.png │ │ │ ├── layers.png │ │ │ ├── marker-icon-2x.png │ │ │ ├── marker-icon.png │ │ │ ├── marker-shadow.png │ │ │ ├── spritesheet-2x.png │ │ │ ├── spritesheet.png │ │ │ └── spritesheet.svg │ │ ├── leaflet.draw-custom-src.js │ │ ├── leaflet.draw-custom-src.map │ │ ├── leaflet.draw-custom.js │ │ ├── leaflet.draw-src.css │ │ └── leaflet.draw.css │ ├── geocoder │ │ ├── geocoder.css │ │ ├── geocoder.js │ │ └── geocoder.min.js │ ├── images │ │ ├── arrow-icon-2x.png │ │ ├── arrow-icon.png │ │ ├── layers-2x.png │ │ ├── layers.png │ │ ├── marker-icon-2x.png │ │ ├── marker-icon.png │ │ └── marker-shadow.png │ ├── leaflet-src.js │ ├── leaflet-src.js.map │ ├── leaflet.css │ ├── leaflet.js │ ├── leaflet.js.map │ ├── leaflet.rotatedMarker.js │ └── markercluster │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── ISSUE_TEMPLATE.md │ │ ├── Jakefile.js │ │ ├── MIT-LICENCE.txt │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ ├── MarkerCluster.Default.css │ │ ├── MarkerCluster.css │ │ ├── WhereAreTheJavascriptFiles.txt │ │ ├── leaflet.markercluster-src.js │ │ ├── leaflet.markercluster-src.js.map │ │ ├── leaflet.markercluster.js │ │ └── leaflet.markercluster.js.map │ │ ├── package.json │ │ └── src │ │ ├── DistanceGrid.js │ │ ├── MarkerCluster.QuickHull.js │ │ ├── MarkerCluster.Spiderfier.js │ │ ├── MarkerCluster.js │ │ ├── MarkerClusterGroup.Refresh.js │ │ ├── MarkerClusterGroup.js │ │ ├── MarkerOpacity.js │ │ └── index.js ├── mediaelement │ ├── background.png │ ├── bigplay.fw.png │ ├── bigplay.png │ ├── bigplay.svg │ ├── controls-ted.png │ ├── controls-wmp-bg.png │ ├── controls-wmp.png │ ├── controls.fw.png │ ├── controls.png │ ├── controls.svg │ ├── jumpforward.png │ ├── loading.gif │ ├── mediaelement-and-player.js │ ├── mediaelement-and-player.min.js │ ├── mediaelement.js │ ├── mediaelement.min.js │ ├── mediaelementplayer.css │ ├── mediaelementplayer.js │ ├── mediaelementplayer.min.css │ ├── mediaelementplayer.min.js │ ├── mejs-skins.css │ ├── silverlightmediaelement.xap │ └── skipback.png ├── mirador │ ├── ZeroClipboard.swf │ ├── css │ │ ├── mirador-combined.css │ │ └── mirador-combined.min.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── MaterialIcons-Regular.eot │ │ ├── MaterialIcons-Regular.ttf │ │ ├── MaterialIcons-Regular.woff │ │ ├── MaterialIcons-Regular.woff2 │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── images │ │ ├── debut_dark.png │ │ ├── loading.gif │ │ └── logos │ │ │ └── iiif_logo.png │ ├── locales │ │ ├── ar │ │ │ └── translation.json │ │ ├── de │ │ │ └── translation.json │ │ ├── en │ │ │ └── translation.json │ │ ├── es │ │ │ └── translation.json │ │ ├── fr │ │ │ └── translation.json │ │ ├── ga │ │ │ └── translation.json │ │ ├── ja │ │ │ └── translation.json │ │ ├── kr │ │ │ └── translation.json │ │ ├── nl │ │ │ └── translation.json │ │ ├── zh-CN │ │ │ └── translation.json │ │ ├── zh-TW │ │ │ └── translation.json │ │ └── zh │ │ │ └── translation.json │ ├── mirador.js │ ├── plugins │ │ ├── advlist │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── anchor │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── autolink │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── autoresize │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── autosave │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── bbcode │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── charmap │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── code │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── colorpicker │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── compat3x │ │ │ ├── css │ │ │ │ └── dialog.css │ │ │ ├── img │ │ │ │ ├── buttons.png │ │ │ │ ├── icons.gif │ │ │ │ ├── items.gif │ │ │ │ ├── menu_arrow.gif │ │ │ │ ├── menu_check.gif │ │ │ │ ├── progress.gif │ │ │ │ └── tabs.gif │ │ │ ├── plugin.js │ │ │ ├── plugin.min.js │ │ │ ├── tiny_mce_popup.js │ │ │ └── utils │ │ │ │ ├── editable_selects.js │ │ │ │ ├── form_utils.js │ │ │ │ ├── mctabs.js │ │ │ │ └── validate.js │ │ ├── contextmenu │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── directionality │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── emoticons │ │ │ ├── img │ │ │ │ ├── smiley-cool.gif │ │ │ │ ├── smiley-cry.gif │ │ │ │ ├── smiley-embarassed.gif │ │ │ │ ├── smiley-foot-in-mouth.gif │ │ │ │ ├── smiley-frown.gif │ │ │ │ ├── smiley-innocent.gif │ │ │ │ ├── smiley-kiss.gif │ │ │ │ ├── smiley-laughing.gif │ │ │ │ ├── smiley-money-mouth.gif │ │ │ │ ├── smiley-sealed.gif │ │ │ │ ├── smiley-smile.gif │ │ │ │ ├── smiley-surprised.gif │ │ │ │ ├── smiley-tongue-out.gif │ │ │ │ ├── smiley-undecided.gif │ │ │ │ ├── smiley-wink.gif │ │ │ │ └── smiley-yell.gif │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── example │ │ │ ├── dialog.html │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── example_dependency │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── fullpage │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── fullscreen │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── hr │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── image │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── importcss │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── insertdatetime │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── layer │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── legacyoutput │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── link │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── lists │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── media │ │ │ ├── moxieplayer.swf │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── nonbreaking │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── noneditable │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── pagebreak │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── paste │ │ │ ├── classes │ │ │ │ ├── Clipboard.js │ │ │ │ ├── Plugin.js │ │ │ │ ├── Quirks.js │ │ │ │ ├── Utils.js │ │ │ │ └── WordFilter.js │ │ │ ├── plugin.dev.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── preview │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── print │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── save │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── searchreplace │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── spellchecker │ │ │ ├── classes │ │ │ │ ├── DomTextMatcher.js │ │ │ │ └── Plugin.js │ │ │ ├── plugin.dev.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── tabfocus │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── table │ │ │ ├── classes │ │ │ │ ├── CellSelection.js │ │ │ │ ├── Dialogs.js │ │ │ │ ├── Plugin.js │ │ │ │ ├── Quirks.js │ │ │ │ └── TableGrid.js │ │ │ ├── plugin.dev.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── template │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── textcolor │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── textpattern │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── visualblocks │ │ │ ├── css │ │ │ │ └── visualblocks.css │ │ │ ├── img │ │ │ │ ├── address.gif │ │ │ │ ├── article.gif │ │ │ │ ├── aside.gif │ │ │ │ ├── blockquote.gif │ │ │ │ ├── div.gif │ │ │ │ ├── dl.gif │ │ │ │ ├── figure.gif │ │ │ │ ├── h1.gif │ │ │ │ ├── h2.gif │ │ │ │ ├── h3.gif │ │ │ │ ├── h4.gif │ │ │ │ ├── h5.gif │ │ │ │ ├── h6.gif │ │ │ │ ├── hgroup.gif │ │ │ │ ├── ol.gif │ │ │ │ ├── p.gif │ │ │ │ ├── pre.gif │ │ │ │ ├── section.gif │ │ │ │ └── ul.gif │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── visualchars │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ └── wordcount │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ ├── skins │ │ └── lightgray │ │ │ ├── content.inline.min.css │ │ │ ├── content.min.css │ │ │ ├── fonts │ │ │ ├── tinymce-small.eot │ │ │ ├── tinymce-small.svg │ │ │ ├── tinymce-small.ttf │ │ │ ├── tinymce-small.woff │ │ │ ├── tinymce.eot │ │ │ ├── tinymce.svg │ │ │ ├── tinymce.ttf │ │ │ └── tinymce.woff │ │ │ ├── img │ │ │ ├── anchor.gif │ │ │ ├── loader.gif │ │ │ ├── object.gif │ │ │ └── trans.gif │ │ │ ├── skin.ie7.min.css │ │ │ └── skin.min.css │ └── themes │ │ └── modern │ │ ├── theme.js │ │ └── theme.min.js ├── o3dv │ ├── .htaccess │ ├── libs │ │ ├── draco.license.md │ │ ├── draco_decoder.js │ │ ├── draco_decoder.wasm │ │ ├── rhino3dm.license.md │ │ ├── rhino3dm.min.js │ │ └── rhino3dm.wasm │ ├── o3dv.license.md │ ├── o3dv.min-0.7.18.js │ ├── three.license.md │ └── three.min-129.js ├── pdfjs │ ├── pdf.js │ ├── pdf.js.map │ ├── pdf.worker.js │ ├── pdf.worker.js.map │ └── viewer │ │ ├── cmaps │ │ ├── 78-EUC-H.bcmap │ │ ├── 78-EUC-V.bcmap │ │ ├── 78-H.bcmap │ │ ├── 78-RKSJ-H.bcmap │ │ ├── 78-RKSJ-V.bcmap │ │ ├── 78-V.bcmap │ │ ├── 78ms-RKSJ-H.bcmap │ │ ├── 78ms-RKSJ-V.bcmap │ │ ├── 83pv-RKSJ-H.bcmap │ │ ├── 90ms-RKSJ-H.bcmap │ │ ├── 90ms-RKSJ-V.bcmap │ │ ├── 90msp-RKSJ-H.bcmap │ │ ├── 90msp-RKSJ-V.bcmap │ │ ├── 90pv-RKSJ-H.bcmap │ │ ├── 90pv-RKSJ-V.bcmap │ │ ├── Add-H.bcmap │ │ ├── Add-RKSJ-H.bcmap │ │ ├── Add-RKSJ-V.bcmap │ │ ├── Add-V.bcmap │ │ ├── Adobe-CNS1-0.bcmap │ │ ├── Adobe-CNS1-1.bcmap │ │ ├── Adobe-CNS1-2.bcmap │ │ ├── Adobe-CNS1-3.bcmap │ │ ├── Adobe-CNS1-4.bcmap │ │ ├── Adobe-CNS1-5.bcmap │ │ ├── Adobe-CNS1-6.bcmap │ │ ├── Adobe-CNS1-UCS2.bcmap │ │ ├── Adobe-GB1-0.bcmap │ │ ├── Adobe-GB1-1.bcmap │ │ ├── Adobe-GB1-2.bcmap │ │ ├── Adobe-GB1-3.bcmap │ │ ├── Adobe-GB1-4.bcmap │ │ ├── Adobe-GB1-5.bcmap │ │ ├── Adobe-GB1-UCS2.bcmap │ │ ├── Adobe-Japan1-0.bcmap │ │ ├── Adobe-Japan1-1.bcmap │ │ ├── Adobe-Japan1-2.bcmap │ │ ├── Adobe-Japan1-3.bcmap │ │ ├── Adobe-Japan1-4.bcmap │ │ ├── Adobe-Japan1-5.bcmap │ │ ├── Adobe-Japan1-6.bcmap │ │ ├── Adobe-Japan1-UCS2.bcmap │ │ ├── Adobe-Korea1-0.bcmap │ │ ├── Adobe-Korea1-1.bcmap │ │ ├── Adobe-Korea1-2.bcmap │ │ ├── Adobe-Korea1-UCS2.bcmap │ │ ├── B5-H.bcmap │ │ ├── B5-V.bcmap │ │ ├── B5pc-H.bcmap │ │ ├── B5pc-V.bcmap │ │ ├── CNS-EUC-H.bcmap │ │ ├── CNS-EUC-V.bcmap │ │ ├── CNS1-H.bcmap │ │ ├── CNS1-V.bcmap │ │ ├── CNS2-H.bcmap │ │ ├── CNS2-V.bcmap │ │ ├── ETHK-B5-H.bcmap │ │ ├── ETHK-B5-V.bcmap │ │ ├── ETen-B5-H.bcmap │ │ ├── ETen-B5-V.bcmap │ │ ├── ETenms-B5-H.bcmap │ │ ├── ETenms-B5-V.bcmap │ │ ├── EUC-H.bcmap │ │ ├── EUC-V.bcmap │ │ ├── Ext-H.bcmap │ │ ├── Ext-RKSJ-H.bcmap │ │ ├── Ext-RKSJ-V.bcmap │ │ ├── Ext-V.bcmap │ │ ├── GB-EUC-H.bcmap │ │ ├── GB-EUC-V.bcmap │ │ ├── GB-H.bcmap │ │ ├── GB-V.bcmap │ │ ├── GBK-EUC-H.bcmap │ │ ├── GBK-EUC-V.bcmap │ │ ├── GBK2K-H.bcmap │ │ ├── GBK2K-V.bcmap │ │ ├── GBKp-EUC-H.bcmap │ │ ├── GBKp-EUC-V.bcmap │ │ ├── GBT-EUC-H.bcmap │ │ ├── GBT-EUC-V.bcmap │ │ ├── GBT-H.bcmap │ │ ├── GBT-V.bcmap │ │ ├── GBTpc-EUC-H.bcmap │ │ ├── GBTpc-EUC-V.bcmap │ │ ├── GBpc-EUC-H.bcmap │ │ ├── GBpc-EUC-V.bcmap │ │ ├── H.bcmap │ │ ├── HKdla-B5-H.bcmap │ │ ├── HKdla-B5-V.bcmap │ │ ├── HKdlb-B5-H.bcmap │ │ ├── HKdlb-B5-V.bcmap │ │ ├── HKgccs-B5-H.bcmap │ │ ├── HKgccs-B5-V.bcmap │ │ ├── HKm314-B5-H.bcmap │ │ ├── HKm314-B5-V.bcmap │ │ ├── HKm471-B5-H.bcmap │ │ ├── HKm471-B5-V.bcmap │ │ ├── HKscs-B5-H.bcmap │ │ ├── HKscs-B5-V.bcmap │ │ ├── Hankaku.bcmap │ │ ├── Hiragana.bcmap │ │ ├── KSC-EUC-H.bcmap │ │ ├── KSC-EUC-V.bcmap │ │ ├── KSC-H.bcmap │ │ ├── KSC-Johab-H.bcmap │ │ ├── KSC-Johab-V.bcmap │ │ ├── KSC-V.bcmap │ │ ├── KSCms-UHC-H.bcmap │ │ ├── KSCms-UHC-HW-H.bcmap │ │ ├── KSCms-UHC-HW-V.bcmap │ │ ├── KSCms-UHC-V.bcmap │ │ ├── KSCpc-EUC-H.bcmap │ │ ├── KSCpc-EUC-V.bcmap │ │ ├── Katakana.bcmap │ │ ├── LICENSE │ │ ├── NWP-H.bcmap │ │ ├── NWP-V.bcmap │ │ ├── RKSJ-H.bcmap │ │ ├── RKSJ-V.bcmap │ │ ├── Roman.bcmap │ │ ├── UniCNS-UCS2-H.bcmap │ │ ├── UniCNS-UCS2-V.bcmap │ │ ├── UniCNS-UTF16-H.bcmap │ │ ├── UniCNS-UTF16-V.bcmap │ │ ├── UniCNS-UTF32-H.bcmap │ │ ├── UniCNS-UTF32-V.bcmap │ │ ├── UniCNS-UTF8-H.bcmap │ │ ├── UniCNS-UTF8-V.bcmap │ │ ├── UniGB-UCS2-H.bcmap │ │ ├── UniGB-UCS2-V.bcmap │ │ ├── UniGB-UTF16-H.bcmap │ │ ├── UniGB-UTF16-V.bcmap │ │ ├── UniGB-UTF32-H.bcmap │ │ ├── UniGB-UTF32-V.bcmap │ │ ├── UniGB-UTF8-H.bcmap │ │ ├── UniGB-UTF8-V.bcmap │ │ ├── UniJIS-UCS2-H.bcmap │ │ ├── UniJIS-UCS2-HW-H.bcmap │ │ ├── UniJIS-UCS2-HW-V.bcmap │ │ ├── UniJIS-UCS2-V.bcmap │ │ ├── UniJIS-UTF16-H.bcmap │ │ ├── UniJIS-UTF16-V.bcmap │ │ ├── UniJIS-UTF32-H.bcmap │ │ ├── UniJIS-UTF32-V.bcmap │ │ ├── UniJIS-UTF8-H.bcmap │ │ ├── UniJIS-UTF8-V.bcmap │ │ ├── UniJIS2004-UTF16-H.bcmap │ │ ├── UniJIS2004-UTF16-V.bcmap │ │ ├── UniJIS2004-UTF32-H.bcmap │ │ ├── UniJIS2004-UTF32-V.bcmap │ │ ├── UniJIS2004-UTF8-H.bcmap │ │ ├── UniJIS2004-UTF8-V.bcmap │ │ ├── UniJISPro-UCS2-HW-V.bcmap │ │ ├── UniJISPro-UCS2-V.bcmap │ │ ├── UniJISPro-UTF8-V.bcmap │ │ ├── UniJISX0213-UTF32-H.bcmap │ │ ├── UniJISX0213-UTF32-V.bcmap │ │ ├── UniJISX02132004-UTF32-H.bcmap │ │ ├── UniJISX02132004-UTF32-V.bcmap │ │ ├── UniKS-UCS2-H.bcmap │ │ ├── UniKS-UCS2-V.bcmap │ │ ├── UniKS-UTF16-H.bcmap │ │ ├── UniKS-UTF16-V.bcmap │ │ ├── UniKS-UTF32-H.bcmap │ │ ├── UniKS-UTF32-V.bcmap │ │ ├── UniKS-UTF8-H.bcmap │ │ ├── UniKS-UTF8-V.bcmap │ │ ├── V.bcmap │ │ └── WP-Symbol.bcmap │ │ ├── debugger.js │ │ ├── images │ │ ├── annotation-check.svg │ │ ├── annotation-comment.svg │ │ ├── annotation-help.svg │ │ ├── annotation-insert.svg │ │ ├── annotation-key.svg │ │ ├── annotation-newparagraph.svg │ │ ├── annotation-noicon.svg │ │ ├── annotation-note.svg │ │ ├── annotation-paragraph.svg │ │ ├── findbarButton-next-rtl.png │ │ ├── findbarButton-next-rtl@2x.png │ │ ├── findbarButton-next.png │ │ ├── findbarButton-next@2x.png │ │ ├── findbarButton-previous-rtl.png │ │ ├── findbarButton-previous-rtl@2x.png │ │ ├── findbarButton-previous.png │ │ ├── findbarButton-previous@2x.png │ │ ├── grab.cur │ │ ├── grabbing.cur │ │ ├── loading-icon.gif │ │ ├── loading-small.png │ │ ├── loading-small@2x.png │ │ ├── secondaryToolbarButton-documentProperties.png │ │ ├── secondaryToolbarButton-documentProperties@2x.png │ │ ├── secondaryToolbarButton-firstPage.png │ │ ├── secondaryToolbarButton-firstPage@2x.png │ │ ├── secondaryToolbarButton-handTool.png │ │ ├── secondaryToolbarButton-handTool@2x.png │ │ ├── secondaryToolbarButton-lastPage.png │ │ ├── secondaryToolbarButton-lastPage@2x.png │ │ ├── secondaryToolbarButton-rotateCcw.png │ │ ├── secondaryToolbarButton-rotateCcw@2x.png │ │ ├── secondaryToolbarButton-rotateCw.png │ │ ├── secondaryToolbarButton-rotateCw@2x.png │ │ ├── secondaryToolbarButton-scrollHorizontal.png │ │ ├── secondaryToolbarButton-scrollHorizontal@2x.png │ │ ├── secondaryToolbarButton-scrollVertical.png │ │ ├── secondaryToolbarButton-scrollVertical@2x.png │ │ ├── secondaryToolbarButton-scrollWrapped.png │ │ ├── secondaryToolbarButton-scrollWrapped@2x.png │ │ ├── secondaryToolbarButton-selectTool.png │ │ ├── secondaryToolbarButton-selectTool@2x.png │ │ ├── secondaryToolbarButton-spreadEven.png │ │ ├── secondaryToolbarButton-spreadEven@2x.png │ │ ├── secondaryToolbarButton-spreadNone.png │ │ ├── secondaryToolbarButton-spreadNone@2x.png │ │ ├── secondaryToolbarButton-spreadOdd.png │ │ ├── secondaryToolbarButton-spreadOdd@2x.png │ │ ├── shadow.png │ │ ├── texture.png │ │ ├── toolbarButton-bookmark.png │ │ ├── toolbarButton-bookmark@2x.png │ │ ├── toolbarButton-download.png │ │ ├── toolbarButton-download@2x.png │ │ ├── toolbarButton-menuArrows.png │ │ ├── toolbarButton-menuArrows@2x.png │ │ ├── toolbarButton-openFile.png │ │ ├── toolbarButton-openFile@2x.png │ │ ├── toolbarButton-pageDown-rtl.png │ │ ├── toolbarButton-pageDown-rtl@2x.png │ │ ├── toolbarButton-pageDown.png │ │ ├── toolbarButton-pageDown@2x.png │ │ ├── toolbarButton-pageUp-rtl.png │ │ ├── toolbarButton-pageUp-rtl@2x.png │ │ ├── toolbarButton-pageUp.png │ │ ├── toolbarButton-pageUp@2x.png │ │ ├── toolbarButton-presentationMode.png │ │ ├── toolbarButton-presentationMode@2x.png │ │ ├── toolbarButton-print.png │ │ ├── toolbarButton-print@2x.png │ │ ├── toolbarButton-search.png │ │ ├── toolbarButton-search@2x.png │ │ ├── toolbarButton-secondaryToolbarToggle-rtl.png │ │ ├── toolbarButton-secondaryToolbarToggle-rtl@2x.png │ │ ├── toolbarButton-secondaryToolbarToggle.png │ │ ├── toolbarButton-secondaryToolbarToggle@2x.png │ │ ├── toolbarButton-sidebarToggle-rtl.png │ │ ├── toolbarButton-sidebarToggle-rtl@2x.png │ │ ├── toolbarButton-sidebarToggle.png │ │ ├── toolbarButton-sidebarToggle@2x.png │ │ ├── toolbarButton-viewAttachments.png │ │ ├── toolbarButton-viewAttachments@2x.png │ │ ├── toolbarButton-viewOutline-rtl.png │ │ ├── toolbarButton-viewOutline-rtl@2x.png │ │ ├── toolbarButton-viewOutline.png │ │ ├── toolbarButton-viewOutline@2x.png │ │ ├── toolbarButton-viewThumbnail.png │ │ ├── toolbarButton-viewThumbnail@2x.png │ │ ├── toolbarButton-zoomIn.png │ │ ├── toolbarButton-zoomIn@2x.png │ │ ├── toolbarButton-zoomOut.png │ │ ├── toolbarButton-zoomOut@2x.png │ │ ├── treeitem-collapsed-rtl.png │ │ ├── treeitem-collapsed-rtl@2x.png │ │ ├── treeitem-collapsed.png │ │ ├── treeitem-collapsed@2x.png │ │ ├── treeitem-expanded.png │ │ └── treeitem-expanded@2x.png │ │ ├── locale │ │ ├── ach │ │ │ └── viewer.properties │ │ ├── af │ │ │ └── viewer.properties │ │ ├── an │ │ │ └── viewer.properties │ │ ├── ar │ │ │ └── viewer.properties │ │ ├── ast │ │ │ └── viewer.properties │ │ ├── az │ │ │ └── viewer.properties │ │ ├── be │ │ │ └── viewer.properties │ │ ├── bg │ │ │ └── viewer.properties │ │ ├── bn │ │ │ └── viewer.properties │ │ ├── bo │ │ │ └── viewer.properties │ │ ├── br │ │ │ └── viewer.properties │ │ ├── brx │ │ │ └── viewer.properties │ │ ├── bs │ │ │ └── viewer.properties │ │ ├── ca │ │ │ └── viewer.properties │ │ ├── cak │ │ │ └── viewer.properties │ │ ├── cs │ │ │ └── viewer.properties │ │ ├── cy │ │ │ └── viewer.properties │ │ ├── da │ │ │ └── viewer.properties │ │ ├── de │ │ │ └── viewer.properties │ │ ├── dsb │ │ │ └── viewer.properties │ │ ├── el │ │ │ └── viewer.properties │ │ ├── en-CA │ │ │ └── viewer.properties │ │ ├── en-GB │ │ │ └── viewer.properties │ │ ├── en-US │ │ │ └── viewer.properties │ │ ├── eo │ │ │ └── viewer.properties │ │ ├── es-AR │ │ │ └── viewer.properties │ │ ├── es-CL │ │ │ └── viewer.properties │ │ ├── es-ES │ │ │ └── viewer.properties │ │ ├── es-MX │ │ │ └── viewer.properties │ │ ├── et │ │ │ └── viewer.properties │ │ ├── eu │ │ │ └── viewer.properties │ │ ├── fa │ │ │ └── viewer.properties │ │ ├── ff │ │ │ └── viewer.properties │ │ ├── fi │ │ │ └── viewer.properties │ │ ├── fr │ │ │ └── viewer.properties │ │ ├── fy-NL │ │ │ └── viewer.properties │ │ ├── ga-IE │ │ │ └── viewer.properties │ │ ├── gd │ │ │ └── viewer.properties │ │ ├── gl │ │ │ └── viewer.properties │ │ ├── gn │ │ │ └── viewer.properties │ │ ├── gu-IN │ │ │ └── viewer.properties │ │ ├── he │ │ │ └── viewer.properties │ │ ├── hi-IN │ │ │ └── viewer.properties │ │ ├── hr │ │ │ └── viewer.properties │ │ ├── hsb │ │ │ └── viewer.properties │ │ ├── hu │ │ │ └── viewer.properties │ │ ├── hy-AM │ │ │ └── viewer.properties │ │ ├── ia │ │ │ └── viewer.properties │ │ ├── id │ │ │ └── viewer.properties │ │ ├── is │ │ │ └── viewer.properties │ │ ├── it │ │ │ └── viewer.properties │ │ ├── ja │ │ │ └── viewer.properties │ │ ├── ka │ │ │ └── viewer.properties │ │ ├── kab │ │ │ └── viewer.properties │ │ ├── kk │ │ │ └── viewer.properties │ │ ├── km │ │ │ └── viewer.properties │ │ ├── kn │ │ │ └── viewer.properties │ │ ├── ko │ │ │ └── viewer.properties │ │ ├── lij │ │ │ └── viewer.properties │ │ ├── lo │ │ │ └── viewer.properties │ │ ├── locale.properties │ │ ├── lt │ │ │ └── viewer.properties │ │ ├── ltg │ │ │ └── viewer.properties │ │ ├── lv │ │ │ └── viewer.properties │ │ ├── mk │ │ │ └── viewer.properties │ │ ├── mr │ │ │ └── viewer.properties │ │ ├── ms │ │ │ └── viewer.properties │ │ ├── my │ │ │ └── viewer.properties │ │ ├── nb-NO │ │ │ └── viewer.properties │ │ ├── ne-NP │ │ │ └── viewer.properties │ │ ├── nl │ │ │ └── viewer.properties │ │ ├── nn-NO │ │ │ └── viewer.properties │ │ ├── oc │ │ │ └── viewer.properties │ │ ├── pa-IN │ │ │ └── viewer.properties │ │ ├── pl │ │ │ └── viewer.properties │ │ ├── pt-BR │ │ │ └── viewer.properties │ │ ├── pt-PT │ │ │ └── viewer.properties │ │ ├── rm │ │ │ └── viewer.properties │ │ ├── ro │ │ │ └── viewer.properties │ │ ├── ru │ │ │ └── viewer.properties │ │ ├── scn │ │ │ └── viewer.properties │ │ ├── si │ │ │ └── viewer.properties │ │ ├── sk │ │ │ └── viewer.properties │ │ ├── sl │ │ │ └── viewer.properties │ │ ├── son │ │ │ └── viewer.properties │ │ ├── sq │ │ │ └── viewer.properties │ │ ├── sr │ │ │ └── viewer.properties │ │ ├── sv-SE │ │ │ └── viewer.properties │ │ ├── ta │ │ │ └── viewer.properties │ │ ├── te │ │ │ └── viewer.properties │ │ ├── th │ │ │ └── viewer.properties │ │ ├── tl │ │ │ └── viewer.properties │ │ ├── tr │ │ │ └── viewer.properties │ │ ├── trs │ │ │ └── viewer.properties │ │ ├── uk │ │ │ └── viewer.properties │ │ ├── ur │ │ │ └── viewer.properties │ │ ├── uz │ │ │ └── viewer.properties │ │ ├── vi │ │ │ └── viewer.properties │ │ ├── wo │ │ │ └── viewer.properties │ │ ├── xh │ │ │ └── viewer.properties │ │ ├── zh-CN │ │ │ └── viewer.properties │ │ └── zh-TW │ │ │ └── viewer.properties │ │ ├── viewer.css │ │ ├── viewer.js │ │ └── viewer.js.map ├── plyr │ ├── plyr.css │ ├── plyr.js │ ├── plyr.min.js │ ├── plyr.min.js.map │ ├── plyr.min.mjs │ ├── plyr.min.mjs.map │ ├── plyr.mjs │ ├── plyr.polyfilled.js │ ├── plyr.polyfilled.min.js │ ├── plyr.polyfilled.min.js.map │ ├── plyr.polyfilled.min.mjs │ ├── plyr.polyfilled.min.mjs.map │ ├── plyr.polyfilled.mjs │ └── plyr.svg ├── reveal.js │ ├── LICENSE │ ├── README.md │ ├── css │ │ ├── print │ │ │ ├── paper.css │ │ │ └── pdf.css │ │ ├── reveal.css │ │ ├── reveal.min.css │ │ └── theme │ │ │ ├── README.md │ │ │ ├── beige.css │ │ │ ├── default.css │ │ │ ├── moon.css │ │ │ ├── night.css │ │ │ ├── serif.css │ │ │ ├── simple.css │ │ │ ├── sky.css │ │ │ ├── solarized.css │ │ │ ├── source │ │ │ ├── beige.scss │ │ │ ├── default.scss │ │ │ ├── moon.scss │ │ │ ├── night.scss │ │ │ ├── serif.scss │ │ │ ├── simple.scss │ │ │ ├── sky.scss │ │ │ └── solarized.scss │ │ │ └── template │ │ │ ├── mixins.scss │ │ │ ├── settings.scss │ │ │ └── theme.scss │ ├── js │ │ ├── reveal.js │ │ └── reveal.min.js │ ├── lib │ │ ├── css │ │ │ └── zenburn.css │ │ ├── font │ │ │ ├── league_gothic-webfont.eot │ │ │ ├── league_gothic-webfont.svg │ │ │ ├── league_gothic-webfont.ttf │ │ │ ├── league_gothic-webfont.woff │ │ │ └── league_gothic_license │ │ └── js │ │ │ ├── classList.js │ │ │ ├── head.min.js │ │ │ └── html5shiv.js │ └── plugin │ │ ├── highlight │ │ └── highlight.js │ │ ├── leap │ │ └── leap.js │ │ ├── markdown │ │ ├── example.html │ │ ├── example.md │ │ ├── markdown.js │ │ └── marked.js │ │ ├── math │ │ └── math.js │ │ ├── multiplex │ │ ├── client.js │ │ ├── index.js │ │ └── master.js │ │ ├── notes-server │ │ ├── client.js │ │ ├── index.js │ │ └── notes.html │ │ ├── notes │ │ ├── notes.html │ │ └── notes.js │ │ ├── postmessage │ │ ├── example.html │ │ └── postmessage.js │ │ ├── print-pdf │ │ └── print-pdf.js │ │ ├── remotes │ │ └── remotes.js │ │ ├── search │ │ └── search.js │ │ └── zoom-js │ │ └── zoom.js ├── slider │ ├── .npmignore │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── Gruntfile.js │ ├── LICENSE.md │ ├── README.md │ ├── bower.json │ ├── composer.json │ ├── css │ │ └── bootstrap-slider.css │ ├── dependencies │ │ ├── css │ │ │ └── bootstrap.min.css │ │ └── js │ │ │ ├── jquery.min.js │ │ │ └── modernizr.js │ ├── dist │ │ ├── bootstrap-slider.min.js │ │ └── css │ │ │ ├── bootstrap-slider.css │ │ │ └── bootstrap-slider.min.css │ ├── index.html │ ├── js │ │ └── bootstrap-slider.js │ ├── less │ │ ├── bootstrap-slider.less │ │ ├── rules.less │ │ └── variables.less │ ├── package.json │ ├── sass │ │ └── slider.scss │ ├── scripts │ │ └── postpublish.sh │ ├── temp │ │ ├── bootstrap-slider.css │ │ └── bootstrap-slider.min.css │ ├── test │ │ ├── phantom_bind_polyfill.js │ │ └── specs │ │ │ ├── ConflictingOptionsSpec.js │ │ │ ├── DraggingHandlesSpec.js │ │ │ ├── ElementDataAttributesSpec.js │ │ │ ├── EventsSpec.js │ │ │ ├── FocusOptionSpec.js │ │ │ ├── KeyboardSupportSpec.js │ │ │ ├── LogarithmicScaleSpec.js │ │ │ ├── LowAndHighTrackSpec.js │ │ │ ├── NamespaceSpec.js │ │ │ ├── OrientationSpec.js │ │ │ ├── PublicMethodsSpec.js │ │ │ ├── RefreshMethodSpec.js │ │ │ ├── TickMarksSpec.js │ │ │ ├── TooltipPositionOptionSpec.js │ │ │ ├── TooltipSplitOptionSpec.js │ │ │ └── offMethodSpec.js │ └── tpl │ │ ├── SpecRunner.tpl │ │ └── index.tpl ├── timelinejs │ ├── css │ │ ├── fonts │ │ │ ├── font.abril-droidsans.css │ │ │ ├── font.amatic-andika.css │ │ │ ├── font.bevan-pontanosans.css │ │ │ ├── font.bitter-raleway.css │ │ │ ├── font.clicker-garamond.css │ │ │ ├── font.dancing-ledger.css │ │ │ ├── font.default.css │ │ │ ├── font.fjalla-average.css │ │ │ ├── font.georgia-helvetica.css │ │ │ ├── font.knightlab.css │ │ │ ├── font.lustria-lato.css │ │ │ ├── font.medula-lato.css │ │ │ ├── font.oldstandard.css │ │ │ ├── font.opensans-gentiumbook.css │ │ │ ├── font.playfair-faunaone.css │ │ │ ├── font.playfair.css │ │ │ ├── font.pt.css │ │ │ ├── font.roboto-megrim.css │ │ │ ├── font.rufina-sintony.css │ │ │ ├── font.ubuntu.css │ │ │ └── font.unicaone-vollkorn.css │ │ ├── icons │ │ │ ├── icons.html │ │ │ ├── tl-icons.eot │ │ │ ├── tl-icons.svg │ │ │ ├── tl-icons.ttf │ │ │ └── tl-icons.woff │ │ ├── themes │ │ │ └── timeline.theme.dark.css │ │ └── timeline.css │ └── js │ │ ├── library │ │ └── moment.js │ │ ├── locale │ │ ├── af.json │ │ ├── ar.json │ │ ├── be.json │ │ ├── bg.json │ │ ├── ca.json │ │ ├── cz.json │ │ ├── da.json │ │ ├── de.json │ │ ├── el.json │ │ ├── en-24hr.json │ │ ├── en-week.json │ │ ├── en.json │ │ ├── eo.json │ │ ├── es.json │ │ ├── et.json │ │ ├── eu.json │ │ ├── fa.json │ │ ├── fi.json │ │ ├── fo.json │ │ ├── fr.json │ │ ├── fy.json │ │ ├── ga.json │ │ ├── gl.json │ │ ├── he.json │ │ ├── hi.json │ │ ├── hr.json │ │ ├── hu.json │ │ ├── hy.json │ │ ├── id.json │ │ ├── is.json │ │ ├── it.json │ │ ├── iw.json │ │ ├── ja.json │ │ ├── ka.json │ │ ├── ko.json │ │ ├── lb.json │ │ ├── lt.json │ │ ├── lv.json │ │ ├── ms.json │ │ ├── ne.json │ │ ├── nl.json │ │ ├── no.json │ │ ├── pl.json │ │ ├── pt-br.json │ │ ├── pt.json │ │ ├── rm.json │ │ ├── ro.json │ │ ├── ru.json │ │ ├── si.json │ │ ├── sk.json │ │ ├── sl.json │ │ ├── sr-cy.json │ │ ├── sr.json │ │ ├── sv.json │ │ ├── ta.json │ │ ├── te.json │ │ ├── th.json │ │ ├── tl.json │ │ ├── tr.json │ │ ├── uk.json │ │ ├── ur.json │ │ ├── zh-cn.json │ │ └── zh-tw.json │ │ ├── timeline-embed-cdn.js │ │ ├── timeline-embed.js │ │ ├── timeline-min.js │ │ └── timeline.js └── universalviewer │ ├── .bowerrc │ ├── .gitattributes │ ├── .gitignore │ ├── .gitmodules │ ├── .npmignore │ ├── .travis.yml │ ├── Gruntfile.js │ ├── LICENSE.txt │ ├── README.md │ ├── VersionTemplate.ts │ ├── bower.json │ ├── config.js │ ├── config.json │ ├── dist │ └── uv │ │ ├── app.html │ │ ├── html │ │ └── uv-pdfcenterpanel-module │ │ │ └── viewer.html │ │ ├── l10n │ │ ├── ach │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── af │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── ak │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── an │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── ar │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── as │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── ast │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── az │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── be │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── bg │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── bn-BD │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── bn-IN │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── br │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── bs │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── ca │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── cs │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── csb │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── cy │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── da │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── de │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── el │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── en-GB │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── en-US │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── en-ZA │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── eo │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── es-AR │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── es-CL │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── es-ES │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── es-MX │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── et │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── eu │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── fa │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── ff │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── fi │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── fr │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── fy-NL │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── ga-IE │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── gd │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── gl │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── gu-IN │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── he │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── hi-IN │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── hr │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── hu │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── hy-AM │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── id │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── is │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── it │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── ja │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── ka │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── kk │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── km │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── kn │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── ko │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── ku │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── lg │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── lij │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── locale.properties │ │ ├── lt │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── lv │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── mai │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── mk │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── ml │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── mn │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── mr │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── ms │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── my │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── nb-NO │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── nl │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── nn-NO │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── nso │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── oc │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── or │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── pa-IN │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── pl │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── pt-BR │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── pt-PT │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── rm │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── ro │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── ru │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── rw │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── sah │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── si │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── sk │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── sl │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── son │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── sq │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── sr │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── sv-SE │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── sw │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── ta-LK │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── ta │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── te │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── th │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── tl │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── tn │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── tr │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── uk │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── ur │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── vi │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── wo │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── xh │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── zh-CN │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── zh-TW │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ └── zu │ │ │ ├── chrome.properties │ │ │ └── viewer.properties │ │ ├── lib │ │ ├── Detector.js │ │ ├── README.md │ │ ├── app.js │ │ ├── base64.min.js │ │ ├── compatibility.js │ │ ├── easyXDM.min.js │ │ ├── easyxdm.swf │ │ ├── embed.js │ │ ├── flashmediaelement.swf │ │ ├── imageunavailable.json │ │ ├── imageunavailable.png │ │ ├── json2.min.js │ │ ├── l10n.js │ │ ├── mediaelement-and-player.js │ │ ├── openseadragon.js │ │ ├── pdf.js │ │ ├── pdf.min.js │ │ ├── pdf.worker.js │ │ ├── pdf.worker.min.js │ │ ├── pdf_combined.js │ │ ├── pdfobject.js │ │ ├── require.js │ │ ├── stats.min.js │ │ ├── three.min.js │ │ ├── uv-mediaelement-extension-dependencies.js │ │ ├── uv-mediaelement-extension.cy-GB.config.json │ │ ├── uv-mediaelement-extension.en-GB.config.json │ │ ├── uv-pdf-extension-dependencies.js │ │ ├── uv-pdf-extension.cy-GB.config.json │ │ ├── uv-pdf-extension.en-GB.config.json │ │ ├── uv-seadragon-extension-dependencies.js │ │ ├── uv-seadragon-extension.cy-GB.config.json │ │ ├── uv-seadragon-extension.en-GB.config.json │ │ ├── uv-virtex-extension-dependencies.js │ │ ├── uv-virtex-extension.cy-GB.config.json │ │ ├── uv-virtex-extension.en-GB.config.json │ │ ├── viewer.js │ │ ├── viewer.min.js │ │ └── virtex.js │ │ ├── schema │ │ ├── uv-mediaelement-extension.cy-GB.schema.json │ │ ├── uv-mediaelement-extension.en-GB.schema.json │ │ ├── uv-pdf-extension.cy-GB.schema.json │ │ ├── uv-pdf-extension.en-GB.schema.json │ │ ├── uv-seadragon-extension.cy-GB.schema.json │ │ ├── uv-seadragon-extension.en-GB.schema.json │ │ ├── uv-virtex-extension.cy-GB.schema.json │ │ └── uv-virtex-extension.en-GB.schema.json │ │ └── themes │ │ ├── uv-cy-GB-theme │ │ ├── css │ │ │ ├── uv-mediaelement-extension │ │ │ │ └── theme.css │ │ │ ├── uv-pdf-extension │ │ │ │ └── theme.css │ │ │ ├── uv-seadragon-extension │ │ │ │ └── theme.css │ │ │ └── uv-virtex-extension │ │ │ │ └── theme.css │ │ └── img │ │ │ ├── uv-contentleftpanel-module │ │ │ ├── error.png │ │ │ ├── hidden_thumb.png │ │ │ ├── minus.png │ │ │ ├── padlock.png │ │ │ ├── plus.png │ │ │ ├── thumb_placeholder.png │ │ │ └── unavailable.png │ │ │ ├── uv-mediaelementcenterpanel-module │ │ │ ├── bigplay.png │ │ │ ├── controls-wellcome-bg.png │ │ │ ├── controls-wellcome.png │ │ │ └── loading.gif │ │ │ ├── uv-pagingheaderpanel-module │ │ │ ├── first.png │ │ │ ├── last.png │ │ │ ├── next.png │ │ │ ├── one_up.png │ │ │ ├── prev.png │ │ │ ├── settings.png │ │ │ └── two_up.png │ │ │ ├── uv-pdfcenterpanel-module │ │ │ ├── annotation-check.svg │ │ │ ├── annotation-comment.svg │ │ │ ├── annotation-help.svg │ │ │ ├── annotation-insert.svg │ │ │ ├── annotation-key.svg │ │ │ ├── annotation-newparagraph.svg │ │ │ ├── annotation-noicon.svg │ │ │ ├── annotation-note.svg │ │ │ ├── annotation-paragraph.svg │ │ │ ├── findbarButton-next-rtl.png │ │ │ ├── findbarButton-next-rtl@2x.png │ │ │ ├── findbarButton-next.png │ │ │ ├── findbarButton-next@2x.png │ │ │ ├── findbarButton-previous-rtl.png │ │ │ ├── findbarButton-previous-rtl@2x.png │ │ │ ├── findbarButton-previous.png │ │ │ ├── findbarButton-previous@2x.png │ │ │ ├── grab.cur │ │ │ ├── grabbing.cur │ │ │ ├── loading-icon.gif │ │ │ ├── loading-small.png │ │ │ ├── secondaryToolbarButton-documentProperties.png │ │ │ ├── secondaryToolbarButton-documentProperties@2x.png │ │ │ ├── secondaryToolbarButton-firstPage.png │ │ │ ├── secondaryToolbarButton-firstPage@2x.png │ │ │ ├── secondaryToolbarButton-handTool.png │ │ │ ├── secondaryToolbarButton-handTool@2x.png │ │ │ ├── secondaryToolbarButton-lastPage.png │ │ │ ├── secondaryToolbarButton-lastPage@2x.png │ │ │ ├── secondaryToolbarButton-rotateCcw.png │ │ │ ├── secondaryToolbarButton-rotateCcw@2x.png │ │ │ ├── secondaryToolbarButton-rotateCw.png │ │ │ ├── secondaryToolbarButton-rotateCw@2x.png │ │ │ ├── shadow.png │ │ │ ├── texture.png │ │ │ ├── toolbarButton-bookmark.png │ │ │ ├── toolbarButton-bookmark@2x.png │ │ │ ├── toolbarButton-download.png │ │ │ ├── toolbarButton-download@2x.png │ │ │ ├── toolbarButton-menuArrows.png │ │ │ ├── toolbarButton-menuArrows@2x.png │ │ │ ├── toolbarButton-openFile.png │ │ │ ├── toolbarButton-openFile@2x.png │ │ │ ├── toolbarButton-pageDown-rtl.png │ │ │ ├── toolbarButton-pageDown-rtl@2x.png │ │ │ ├── toolbarButton-pageDown.png │ │ │ ├── toolbarButton-pageDown@2x.png │ │ │ ├── toolbarButton-pageUp-rtl.png │ │ │ ├── toolbarButton-pageUp-rtl@2x.png │ │ │ ├── toolbarButton-pageUp.png │ │ │ ├── toolbarButton-pageUp@2x.png │ │ │ ├── toolbarButton-presentationMode.png │ │ │ ├── toolbarButton-presentationMode@2x.png │ │ │ ├── toolbarButton-print.png │ │ │ ├── toolbarButton-print@2x.png │ │ │ ├── toolbarButton-search.png │ │ │ ├── toolbarButton-search@2x.png │ │ │ ├── toolbarButton-secondaryToolbarToggle-rtl.png │ │ │ ├── toolbarButton-secondaryToolbarToggle-rtl@2x.png │ │ │ ├── toolbarButton-secondaryToolbarToggle.png │ │ │ ├── toolbarButton-secondaryToolbarToggle@2x.png │ │ │ ├── toolbarButton-sidebarToggle-rtl.png │ │ │ ├── toolbarButton-sidebarToggle-rtl@2x.png │ │ │ ├── toolbarButton-sidebarToggle.png │ │ │ ├── toolbarButton-sidebarToggle@2x.png │ │ │ ├── toolbarButton-viewAttachments.png │ │ │ ├── toolbarButton-viewOutline-rtl.png │ │ │ ├── toolbarButton-viewOutline-rtl@2x.png │ │ │ ├── toolbarButton-viewOutline.png │ │ │ ├── toolbarButton-viewOutline@2x.png │ │ │ ├── toolbarButton-viewThumbnail.png │ │ │ ├── toolbarButton-viewThumbnail@2x.png │ │ │ ├── toolbarButton-zoomIn.png │ │ │ ├── toolbarButton-zoomIn@2x.png │ │ │ ├── toolbarButton-zoomOut.png │ │ │ └── toolbarButton-zoomOut@2x.png │ │ │ ├── uv-seadragoncenterpanel-module │ │ │ ├── home.png │ │ │ ├── next_page.png │ │ │ ├── next_page_disabled.png │ │ │ ├── pixel.gif │ │ │ ├── prev_page.png │ │ │ ├── prev_page_disabled.png │ │ │ ├── rotate_right.png │ │ │ ├── zoom_in.png │ │ │ └── zoom_out.png │ │ │ ├── uv-searchfooterpanel-module │ │ │ ├── next.png │ │ │ ├── placemarker_down.png │ │ │ ├── placemarker_down_hover.png │ │ │ ├── placemarker_up.png │ │ │ ├── prev.png │ │ │ └── search.png │ │ │ ├── uv-shared-module │ │ │ ├── arrows_left.png │ │ │ ├── arrows_right.png │ │ │ ├── bookmark.png │ │ │ ├── close.png │ │ │ ├── close_acknowledgements.png │ │ │ ├── close_information_box.png │ │ │ ├── close_message_box.png │ │ │ ├── dialogue_arrow.png │ │ │ ├── download.png │ │ │ ├── embed.png │ │ │ ├── exit_fullscreen.png │ │ │ ├── feedback.png │ │ │ ├── fullscreen.png │ │ │ ├── modal_bg.gif │ │ │ ├── open.png │ │ │ ├── settings.png │ │ │ ├── share.png │ │ │ └── sprite.png │ │ │ └── uv-virtexcenterpanel-module │ │ │ ├── zoom_in.png │ │ │ └── zoom_out.png │ │ └── uv-en-GB-theme │ │ ├── css │ │ ├── uv-mediaelement-extension │ │ │ └── theme.css │ │ ├── uv-pdf-extension │ │ │ └── theme.css │ │ ├── uv-seadragon-extension │ │ │ └── theme.css │ │ └── uv-virtex-extension │ │ │ └── theme.css │ │ └── img │ │ ├── hamburger.png │ │ ├── uv-contentleftpanel-module │ │ ├── error.png │ │ ├── hidden_thumb.png │ │ ├── minus.png │ │ ├── padlock.png │ │ ├── plus.png │ │ ├── thumb_placeholder.png │ │ └── unavailable.png │ │ ├── uv-mediaelementcenterpanel-module │ │ ├── bigplay.png │ │ ├── controls-wellcome-bg.png │ │ ├── controls-wellcome.png │ │ └── loading.gif │ │ ├── uv-pagingheaderpanel-module │ │ ├── first.png │ │ ├── last.png │ │ ├── next.png │ │ ├── one_up.png │ │ ├── prev.png │ │ ├── settings.png │ │ └── two_up.png │ │ ├── uv-pdfcenterpanel-module │ │ ├── annotation-check.svg │ │ ├── annotation-comment.svg │ │ ├── annotation-help.svg │ │ ├── annotation-insert.svg │ │ ├── annotation-key.svg │ │ ├── annotation-newparagraph.svg │ │ ├── annotation-noicon.svg │ │ ├── annotation-note.svg │ │ ├── annotation-paragraph.svg │ │ ├── findbarButton-next-rtl.png │ │ ├── findbarButton-next-rtl@2x.png │ │ ├── findbarButton-next.png │ │ ├── findbarButton-next@2x.png │ │ ├── findbarButton-previous-rtl.png │ │ ├── findbarButton-previous-rtl@2x.png │ │ ├── findbarButton-previous.png │ │ ├── findbarButton-previous@2x.png │ │ ├── grab.cur │ │ ├── grabbing.cur │ │ ├── loading-icon.gif │ │ ├── loading-small.png │ │ ├── secondaryToolbarButton-documentProperties.png │ │ ├── secondaryToolbarButton-documentProperties@2x.png │ │ ├── secondaryToolbarButton-firstPage.png │ │ ├── secondaryToolbarButton-firstPage@2x.png │ │ ├── secondaryToolbarButton-handTool.png │ │ ├── secondaryToolbarButton-handTool@2x.png │ │ ├── secondaryToolbarButton-lastPage.png │ │ ├── secondaryToolbarButton-lastPage@2x.png │ │ ├── secondaryToolbarButton-rotateCcw.png │ │ ├── secondaryToolbarButton-rotateCcw@2x.png │ │ ├── secondaryToolbarButton-rotateCw.png │ │ ├── secondaryToolbarButton-rotateCw@2x.png │ │ ├── shadow.png │ │ ├── texture.png │ │ ├── toolbarButton-bookmark.png │ │ ├── toolbarButton-bookmark@2x.png │ │ ├── toolbarButton-download.png │ │ ├── toolbarButton-download@2x.png │ │ ├── toolbarButton-menuArrows.png │ │ ├── toolbarButton-menuArrows@2x.png │ │ ├── toolbarButton-openFile.png │ │ ├── toolbarButton-openFile@2x.png │ │ ├── toolbarButton-pageDown-rtl.png │ │ ├── toolbarButton-pageDown-rtl@2x.png │ │ ├── toolbarButton-pageDown.png │ │ ├── toolbarButton-pageDown@2x.png │ │ ├── toolbarButton-pageUp-rtl.png │ │ ├── toolbarButton-pageUp-rtl@2x.png │ │ ├── toolbarButton-pageUp.png │ │ ├── toolbarButton-pageUp@2x.png │ │ ├── toolbarButton-presentationMode.png │ │ ├── toolbarButton-presentationMode@2x.png │ │ ├── toolbarButton-print.png │ │ ├── toolbarButton-print@2x.png │ │ ├── toolbarButton-search.png │ │ ├── toolbarButton-search@2x.png │ │ ├── toolbarButton-secondaryToolbarToggle-rtl.png │ │ ├── toolbarButton-secondaryToolbarToggle-rtl@2x.png │ │ ├── toolbarButton-secondaryToolbarToggle.png │ │ ├── toolbarButton-secondaryToolbarToggle@2x.png │ │ ├── toolbarButton-sidebarToggle-rtl.png │ │ ├── toolbarButton-sidebarToggle-rtl@2x.png │ │ ├── toolbarButton-sidebarToggle.png │ │ ├── toolbarButton-sidebarToggle@2x.png │ │ ├── toolbarButton-viewAttachments.png │ │ ├── toolbarButton-viewOutline-rtl.png │ │ ├── toolbarButton-viewOutline-rtl@2x.png │ │ ├── toolbarButton-viewOutline.png │ │ ├── toolbarButton-viewOutline@2x.png │ │ ├── toolbarButton-viewThumbnail.png │ │ ├── toolbarButton-viewThumbnail@2x.png │ │ ├── toolbarButton-zoomIn.png │ │ ├── toolbarButton-zoomIn@2x.png │ │ ├── toolbarButton-zoomOut.png │ │ └── toolbarButton-zoomOut@2x.png │ │ ├── uv-seadragoncenterpanel-module │ │ ├── home.png │ │ ├── next_page.png │ │ ├── next_page_disabled.png │ │ ├── pixel.gif │ │ ├── prev_page.png │ │ ├── prev_page_disabled.png │ │ ├── rotate_right.png │ │ ├── zoom_in.png │ │ └── zoom_out.png │ │ ├── uv-searchfooterpanel-module │ │ ├── next.png │ │ ├── placemarker_down.png │ │ ├── placemarker_down_hover.png │ │ ├── placemarker_up.png │ │ ├── prev.png │ │ └── search.png │ │ ├── uv-shared-module │ │ ├── arrows_left.png │ │ ├── arrows_right.png │ │ ├── bookmark.png │ │ ├── close.png │ │ ├── close_acknowledgements.png │ │ ├── close_information_box.png │ │ ├── close_message_box.png │ │ ├── dialogue_arrow.png │ │ ├── download.png │ │ ├── embed.png │ │ ├── exit_fullscreen.png │ │ ├── feedback.png │ │ ├── fullscreen.png │ │ ├── modal_bg.gif │ │ ├── open.png │ │ ├── settings.png │ │ ├── share.png │ │ └── sprite.png │ │ └── uv-virtexcenterpanel-module │ │ ├── zoom_in.png │ │ └── zoom_out.png │ ├── favicon.ico │ ├── gulpfile.js │ ├── package.json │ ├── src │ ├── BootstrapParams.ts │ ├── Bootstrapper.ts │ ├── Params.ts │ ├── _Version.ts │ ├── app.html │ ├── app.ts │ ├── extensions │ │ ├── uv-mediaelement-extension │ │ │ ├── Commands.ts │ │ │ ├── DownloadDialogue.ts │ │ │ ├── EmbedDialogue.ts │ │ │ ├── Extension.ts │ │ │ ├── IMediaElementExtension.ts │ │ │ ├── IMediaElementProvider.ts │ │ │ ├── Provider.ts │ │ │ ├── SettingsDialogue.ts │ │ │ ├── config │ │ │ │ └── en-GB.json │ │ │ ├── dependencies.js │ │ │ ├── l10n │ │ │ │ ├── cy-GB.json │ │ │ │ └── en-GB.json │ │ │ ├── lib │ │ │ │ ├── flashmediaelement.swf │ │ │ │ └── mediaelement-and-player.js │ │ │ └── theme │ │ │ │ └── theme.less │ │ ├── uv-pdf-extension │ │ │ ├── Commands.ts │ │ │ ├── DownloadDialogue.ts │ │ │ ├── EmbedDialogue.ts │ │ │ ├── Extension.ts │ │ │ ├── IPDFExtension.ts │ │ │ ├── IPDFProvider.ts │ │ │ ├── Provider.ts │ │ │ ├── SettingsDialogue.ts │ │ │ ├── config │ │ │ │ └── en-GB.json │ │ │ ├── dependencies.js │ │ │ ├── l10n │ │ │ │ ├── cy-GB.json │ │ │ │ └── en-GB.json │ │ │ ├── lib │ │ │ │ ├── README.md │ │ │ │ ├── compatibility.js │ │ │ │ ├── pdf.js │ │ │ │ ├── pdf.min.js │ │ │ │ ├── pdf.worker.js │ │ │ │ ├── pdf.worker.min.js │ │ │ │ ├── pdf_combined.js │ │ │ │ ├── pdfobject.js │ │ │ │ ├── viewer.js │ │ │ │ └── viewer.min.js │ │ │ └── theme │ │ │ │ ├── theme.less │ │ │ │ └── treeviewleftpanel.less │ │ ├── uv-seadragon-extension │ │ │ ├── Commands.ts │ │ │ ├── CroppedImageDimensions.ts │ │ │ ├── DownloadDialogue.ts │ │ │ ├── EmbedDialogue.ts │ │ │ ├── Extension.ts │ │ │ ├── ISeadragonExtension.ts │ │ │ ├── ISeadragonProvider.ts │ │ │ ├── ISettings.d.ts │ │ │ ├── Mode.ts │ │ │ ├── Provider.ts │ │ │ ├── SearchResult.ts │ │ │ ├── SearchResultRect.ts │ │ │ ├── SettingsDialogue.ts │ │ │ ├── TreeSortType.ts │ │ │ ├── config │ │ │ │ ├── cy-GB.json │ │ │ │ └── en-GB.json │ │ │ ├── dependencies.js │ │ │ ├── l10n │ │ │ │ ├── cy-GB.json │ │ │ │ ├── en-GB.json │ │ │ │ └── xx-XX.json │ │ │ ├── lib │ │ │ │ ├── imageunavailable.json │ │ │ │ ├── imageunavailable.png │ │ │ │ └── openseadragon.js │ │ │ └── theme │ │ │ │ └── theme.less │ │ └── uv-virtex-extension │ │ │ ├── Commands.ts │ │ │ ├── DownloadDialogue.ts │ │ │ ├── EmbedDialogue.ts │ │ │ ├── Extension.ts │ │ │ ├── IVirtexExtension.ts │ │ │ ├── IVirtexProvider.ts │ │ │ ├── Provider.ts │ │ │ ├── SettingsDialogue.ts │ │ │ ├── config │ │ │ ├── cy-GB.json │ │ │ └── en-GB.json │ │ │ ├── dependencies.js │ │ │ ├── l10n │ │ │ ├── cy-GB.json │ │ │ └── en-GB.json │ │ │ ├── lib │ │ │ ├── Detector.js │ │ │ ├── stats.min.js │ │ │ ├── three.min.js │ │ │ └── virtex.js │ │ │ └── theme │ │ │ └── theme.less │ ├── lib │ │ ├── Length.min.js │ │ ├── base64.min.js │ │ ├── browserdetect.js │ │ ├── easyXDM.js │ │ ├── easyXDM.min.js │ │ ├── easyxdm.swf │ │ ├── embed.js │ │ ├── ex.es3.min.js │ │ ├── extensions.js │ │ ├── http-status-codes.js │ │ ├── jquery-1.10.2.min.js │ │ ├── jquery-plugins.js │ │ ├── jquery.xdomainrequest.js │ │ ├── json2.min.js │ │ ├── jsviews.min.js │ │ ├── key-codes.js │ │ ├── l10n.js │ │ ├── lodash.min.js │ │ ├── manifesto.js │ │ ├── modernizr.js │ │ ├── promise.min.js │ │ ├── pubsub.js │ │ ├── require.js │ │ ├── sanitize.js │ │ ├── storage.js │ │ ├── utils.js │ │ ├── yepnope.1.5.4-min.js │ │ └── yepnope.css.js │ ├── modules │ │ ├── uv-contentleftpanel-module │ │ │ ├── ContentLeftPanel.ts │ │ │ ├── GalleryView.ts │ │ │ ├── ThumbsView.ts │ │ │ ├── TreeView.ts │ │ │ ├── css │ │ │ │ └── styles.less │ │ │ └── img │ │ │ │ ├── error.png │ │ │ │ ├── hidden_thumb.png │ │ │ │ ├── minus.png │ │ │ │ ├── padlock.png │ │ │ │ ├── plus.png │ │ │ │ ├── thumb_placeholder.png │ │ │ │ └── unavailable.png │ │ ├── uv-dialogues-module │ │ │ ├── ClickThroughDialogue.ts │ │ │ ├── DownloadDialogue.ts │ │ │ ├── EmbedDialogue.ts │ │ │ ├── ExternalContentDialogue.ts │ │ │ ├── HelpDialogue.ts │ │ │ ├── LoginDialogue.ts │ │ │ ├── RestrictedDialogue.ts │ │ │ ├── SettingsDialogue.ts │ │ │ └── css │ │ │ │ └── styles.less │ │ ├── uv-mediaelementcenterpanel-module │ │ │ ├── MediaElementCenterPanel.ts │ │ │ ├── css │ │ │ │ ├── mediaelementplayer.less │ │ │ │ ├── mejs-skins.less │ │ │ │ └── styles.less │ │ │ └── img │ │ │ │ ├── bigplay.png │ │ │ │ ├── controls-wellcome-bg.png │ │ │ │ ├── controls-wellcome.png │ │ │ │ └── loading.gif │ │ ├── uv-moreinforightpanel-module │ │ │ ├── MoreInfoRightPanel.ts │ │ │ └── css │ │ │ │ └── styles.less │ │ ├── uv-pagingheaderpanel-module │ │ │ ├── PagingHeaderPanel.ts │ │ │ ├── css │ │ │ │ └── styles.less │ │ │ └── img │ │ │ │ ├── first.png │ │ │ │ ├── last.png │ │ │ │ ├── next.png │ │ │ │ ├── one_up.png │ │ │ │ ├── prev.png │ │ │ │ ├── settings.png │ │ │ │ └── two_up.png │ │ ├── uv-pdfcenterpanel-module │ │ │ ├── PDFCenterPanel.ts │ │ │ ├── css │ │ │ │ ├── styles.less │ │ │ │ └── viewer.less │ │ │ ├── html │ │ │ │ └── viewer.html │ │ │ ├── img │ │ │ │ ├── annotation-check.svg │ │ │ │ ├── annotation-comment.svg │ │ │ │ ├── annotation-help.svg │ │ │ │ ├── annotation-insert.svg │ │ │ │ ├── annotation-key.svg │ │ │ │ ├── annotation-newparagraph.svg │ │ │ │ ├── annotation-noicon.svg │ │ │ │ ├── annotation-note.svg │ │ │ │ ├── annotation-paragraph.svg │ │ │ │ ├── findbarButton-next-rtl.png │ │ │ │ ├── findbarButton-next-rtl@2x.png │ │ │ │ ├── findbarButton-next.png │ │ │ │ ├── findbarButton-next@2x.png │ │ │ │ ├── findbarButton-previous-rtl.png │ │ │ │ ├── findbarButton-previous-rtl@2x.png │ │ │ │ ├── findbarButton-previous.png │ │ │ │ ├── findbarButton-previous@2x.png │ │ │ │ ├── grab.cur │ │ │ │ ├── grabbing.cur │ │ │ │ ├── loading-icon.gif │ │ │ │ ├── loading-small.png │ │ │ │ ├── secondaryToolbarButton-documentProperties.png │ │ │ │ ├── secondaryToolbarButton-documentProperties@2x.png │ │ │ │ ├── secondaryToolbarButton-firstPage.png │ │ │ │ ├── secondaryToolbarButton-firstPage@2x.png │ │ │ │ ├── secondaryToolbarButton-handTool.png │ │ │ │ ├── secondaryToolbarButton-handTool@2x.png │ │ │ │ ├── secondaryToolbarButton-lastPage.png │ │ │ │ ├── secondaryToolbarButton-lastPage@2x.png │ │ │ │ ├── secondaryToolbarButton-rotateCcw.png │ │ │ │ ├── secondaryToolbarButton-rotateCcw@2x.png │ │ │ │ ├── secondaryToolbarButton-rotateCw.png │ │ │ │ ├── secondaryToolbarButton-rotateCw@2x.png │ │ │ │ ├── shadow.png │ │ │ │ ├── texture.png │ │ │ │ ├── toolbarButton-bookmark.png │ │ │ │ ├── toolbarButton-bookmark@2x.png │ │ │ │ ├── toolbarButton-download.png │ │ │ │ ├── toolbarButton-download@2x.png │ │ │ │ ├── toolbarButton-menuArrows.png │ │ │ │ ├── toolbarButton-menuArrows@2x.png │ │ │ │ ├── toolbarButton-openFile.png │ │ │ │ ├── toolbarButton-openFile@2x.png │ │ │ │ ├── toolbarButton-pageDown-rtl.png │ │ │ │ ├── toolbarButton-pageDown-rtl@2x.png │ │ │ │ ├── toolbarButton-pageDown.png │ │ │ │ ├── toolbarButton-pageDown@2x.png │ │ │ │ ├── toolbarButton-pageUp-rtl.png │ │ │ │ ├── toolbarButton-pageUp-rtl@2x.png │ │ │ │ ├── toolbarButton-pageUp.png │ │ │ │ ├── toolbarButton-pageUp@2x.png │ │ │ │ ├── toolbarButton-presentationMode.png │ │ │ │ ├── toolbarButton-presentationMode@2x.png │ │ │ │ ├── toolbarButton-print.png │ │ │ │ ├── toolbarButton-print@2x.png │ │ │ │ ├── toolbarButton-search.png │ │ │ │ ├── toolbarButton-search@2x.png │ │ │ │ ├── toolbarButton-secondaryToolbarToggle-rtl.png │ │ │ │ ├── toolbarButton-secondaryToolbarToggle-rtl@2x.png │ │ │ │ ├── toolbarButton-secondaryToolbarToggle.png │ │ │ │ ├── toolbarButton-secondaryToolbarToggle@2x.png │ │ │ │ ├── toolbarButton-sidebarToggle-rtl.png │ │ │ │ ├── toolbarButton-sidebarToggle-rtl@2x.png │ │ │ │ ├── toolbarButton-sidebarToggle.png │ │ │ │ ├── toolbarButton-sidebarToggle@2x.png │ │ │ │ ├── toolbarButton-viewAttachments.png │ │ │ │ ├── toolbarButton-viewOutline-rtl.png │ │ │ │ ├── toolbarButton-viewOutline-rtl@2x.png │ │ │ │ ├── toolbarButton-viewOutline.png │ │ │ │ ├── toolbarButton-viewOutline@2x.png │ │ │ │ ├── toolbarButton-viewThumbnail.png │ │ │ │ ├── toolbarButton-viewThumbnail@2x.png │ │ │ │ ├── toolbarButton-zoomIn.png │ │ │ │ ├── toolbarButton-zoomIn@2x.png │ │ │ │ ├── toolbarButton-zoomOut.png │ │ │ │ └── toolbarButton-zoomOut@2x.png │ │ │ └── l10n │ │ │ │ ├── README.md │ │ │ │ ├── ach │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── af │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── ak │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── an │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── ar │ │ │ │ ├── chrome.properties │ │ │ │ ├── metadata.inc │ │ │ │ └── viewer.properties │ │ │ │ ├── as │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── ast │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── az │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── be │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── bg │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── bn-BD │ │ │ │ ├── chrome.properties │ │ │ │ ├── metadata.inc │ │ │ │ └── viewer.properties │ │ │ │ ├── bn-IN │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── br │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── bs │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── ca │ │ │ │ ├── chrome.properties │ │ │ │ ├── metadata.inc │ │ │ │ └── viewer.properties │ │ │ │ ├── cs │ │ │ │ ├── chrome.properties │ │ │ │ ├── metadata.inc │ │ │ │ └── viewer.properties │ │ │ │ ├── csb │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── cy │ │ │ │ ├── chrome.properties │ │ │ │ ├── metadata.inc │ │ │ │ └── viewer.properties │ │ │ │ ├── da │ │ │ │ ├── chrome.properties │ │ │ │ ├── metadata.inc │ │ │ │ └── viewer.properties │ │ │ │ ├── de │ │ │ │ ├── chrome.properties │ │ │ │ ├── metadata.inc │ │ │ │ └── viewer.properties │ │ │ │ ├── el │ │ │ │ ├── chrome.properties │ │ │ │ ├── metadata.inc │ │ │ │ └── viewer.properties │ │ │ │ ├── en-GB │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── en-US │ │ │ │ ├── chrome.properties │ │ │ │ ├── metadata.inc │ │ │ │ └── viewer.properties │ │ │ │ ├── en-ZA │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── eo │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── es-AR │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── es-CL │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── es-ES │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── es-MX │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── et │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── eu │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── fa │ │ │ │ ├── chrome.properties │ │ │ │ ├── metadata.inc │ │ │ │ └── viewer.properties │ │ │ │ ├── ff │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── fi │ │ │ │ ├── chrome.properties │ │ │ │ ├── metadata.inc │ │ │ │ └── viewer.properties │ │ │ │ ├── fr │ │ │ │ ├── chrome.properties │ │ │ │ ├── metadata.inc │ │ │ │ └── viewer.properties │ │ │ │ ├── fy-NL │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── ga-IE │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── gd │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── gl │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── gu-IN │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── he │ │ │ │ ├── chrome.properties │ │ │ │ ├── metadata.inc │ │ │ │ └── viewer.properties │ │ │ │ ├── hi-IN │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── hr │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── hu │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── hy-AM │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── id │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── is │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── it │ │ │ │ ├── chrome.properties │ │ │ │ ├── metadata.inc │ │ │ │ └── viewer.properties │ │ │ │ ├── ja │ │ │ │ ├── chrome.properties │ │ │ │ ├── metadata.inc │ │ │ │ └── viewer.properties │ │ │ │ ├── ka │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── kk │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── km │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── kn │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── ko │ │ │ │ ├── chrome.properties │ │ │ │ ├── metadata.inc │ │ │ │ └── viewer.properties │ │ │ │ ├── ku │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── lg │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── lij │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── locale.properties │ │ │ │ ├── lt │ │ │ │ ├── chrome.properties │ │ │ │ ├── metadata.inc │ │ │ │ └── viewer.properties │ │ │ │ ├── lv │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── mai │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── mk │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── ml │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── mn │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── mr │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── ms │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── my │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── nb-NO │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── nl │ │ │ │ ├── chrome.properties │ │ │ │ ├── metadata.inc │ │ │ │ └── viewer.properties │ │ │ │ ├── nn-NO │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── nso │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── oc │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── or │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── pa-IN │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── pl │ │ │ │ ├── chrome.properties │ │ │ │ ├── metadata.inc │ │ │ │ └── viewer.properties │ │ │ │ ├── pt-BR │ │ │ │ ├── chrome.properties │ │ │ │ ├── metadata.inc │ │ │ │ └── viewer.properties │ │ │ │ ├── pt-PT │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── rm │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── ro │ │ │ │ ├── chrome.properties │ │ │ │ ├── metadata.inc │ │ │ │ └── viewer.properties │ │ │ │ ├── ru │ │ │ │ ├── chrome.properties │ │ │ │ ├── metadata.inc │ │ │ │ └── viewer.properties │ │ │ │ ├── rw │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── sah │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── si │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── sk │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── sl │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── son │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── sq │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── sr │ │ │ │ ├── chrome.properties │ │ │ │ ├── metadata.inc │ │ │ │ └── viewer.properties │ │ │ │ ├── sv-SE │ │ │ │ ├── chrome.properties │ │ │ │ ├── metadata.inc │ │ │ │ └── viewer.properties │ │ │ │ ├── sw │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── ta-LK │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── ta │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── te │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── th │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── tl │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── tn │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── tr │ │ │ │ ├── chrome.properties │ │ │ │ ├── metadata.inc │ │ │ │ └── viewer.properties │ │ │ │ ├── uk │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── ur │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── vi │ │ │ │ ├── chrome.properties │ │ │ │ ├── metadata.inc │ │ │ │ └── viewer.properties │ │ │ │ ├── wo │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── xh │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ │ │ ├── zh-CN │ │ │ │ ├── chrome.properties │ │ │ │ ├── metadata.inc │ │ │ │ └── viewer.properties │ │ │ │ ├── zh-TW │ │ │ │ ├── chrome.properties │ │ │ │ ├── metadata.inc │ │ │ │ └── viewer.properties │ │ │ │ └── zu │ │ │ │ ├── chrome.properties │ │ │ │ └── viewer.properties │ │ ├── uv-seadragoncenterpanel-module │ │ │ ├── SeadragonCenterPanel.ts │ │ │ ├── css │ │ │ │ └── styles.less │ │ │ └── img │ │ │ │ ├── home.png │ │ │ │ ├── next_page.png │ │ │ │ ├── next_page_disabled.png │ │ │ │ ├── pixel.gif │ │ │ │ ├── prev_page.png │ │ │ │ ├── prev_page_disabled.png │ │ │ │ ├── rotate_right.png │ │ │ │ ├── zoom_in.png │ │ │ │ └── zoom_out.png │ │ ├── uv-searchfooterpanel-module │ │ │ ├── FooterPanel.ts │ │ │ ├── css │ │ │ │ └── styles.less │ │ │ └── img │ │ │ │ ├── next.png │ │ │ │ ├── placemarker_down.png │ │ │ │ ├── placemarker_down_hover.png │ │ │ │ ├── placemarker_up.png │ │ │ │ ├── prev.png │ │ │ │ └── search.png │ │ ├── uv-shared-module │ │ │ ├── AutoComplete.ts │ │ │ ├── BaseCommands.ts │ │ │ ├── BaseExpandPanel.ts │ │ │ ├── BaseExtension.ts │ │ │ ├── BaseProvider.ts │ │ │ ├── BaseView.ts │ │ │ ├── Bookmark.ts │ │ │ ├── CenterPanel.ts │ │ │ ├── Dialogue.ts │ │ │ ├── DownloadOption.ts │ │ │ ├── ExternalResource.ts │ │ │ ├── FooterPanel.ts │ │ │ ├── GenericDialogue.ts │ │ │ ├── HeaderPanel.ts │ │ │ ├── ICanvas.ts │ │ │ ├── IExtension.ts │ │ │ ├── ILoginDialogueOptions.ts │ │ │ ├── IMetadataItem.ts │ │ │ ├── IProvider.ts │ │ │ ├── IRange.ts │ │ │ ├── ISettings.d.ts │ │ │ ├── IThumb.ts │ │ │ ├── ITreeNode.ts │ │ │ ├── Information.ts │ │ │ ├── InformationAction.ts │ │ │ ├── InformationArgs.ts │ │ │ ├── InformationFactory.ts │ │ │ ├── InformationType.ts │ │ │ ├── LeftPanel.ts │ │ │ ├── LoginWarningMessages.ts │ │ │ ├── MultiSelectState.ts │ │ │ ├── Panel.ts │ │ │ ├── RightPanel.ts │ │ │ ├── Settings.ts │ │ │ ├── Shell.ts │ │ │ ├── UriLabeller.ts │ │ │ ├── css │ │ │ │ ├── button-groups.less │ │ │ │ ├── buttons.less │ │ │ │ ├── center-panel.less │ │ │ │ ├── footer-panel.less │ │ │ │ ├── header-panel.less │ │ │ │ ├── left-panel.less │ │ │ │ ├── mixins-extended.less │ │ │ │ ├── mixins.less │ │ │ │ ├── overlays.less │ │ │ │ ├── range.less │ │ │ │ ├── right-panel.less │ │ │ │ ├── scaffolding.less │ │ │ │ ├── styles.less │ │ │ │ └── variables.less │ │ │ └── img │ │ │ │ ├── arrows_left.png │ │ │ │ ├── arrows_right.png │ │ │ │ ├── bookmark.png │ │ │ │ ├── close.png │ │ │ │ ├── close_acknowledgements.png │ │ │ │ ├── close_information_box.png │ │ │ │ ├── close_message_box.png │ │ │ │ ├── dialogue_arrow.png │ │ │ │ ├── download.png │ │ │ │ ├── embed.png │ │ │ │ ├── exit_fullscreen.png │ │ │ │ ├── feedback.png │ │ │ │ ├── fullscreen.png │ │ │ │ ├── modal_bg.gif │ │ │ │ ├── open.png │ │ │ │ ├── settings.png │ │ │ │ ├── share.png │ │ │ │ └── sprite.png │ │ └── uv-virtexcenterpanel-module │ │ │ ├── VirtexCenterPanel.ts │ │ │ ├── css │ │ │ ├── styles.less │ │ │ └── virtex.less │ │ │ └── img │ │ │ ├── zoom_in.png │ │ │ └── zoom_out.png │ └── typings │ │ ├── es6-promise.d.ts │ │ ├── ex.d.ts │ │ ├── extensions.d.ts │ │ ├── http-status-codes.d.ts │ │ ├── jquery-plugins.d.ts │ │ ├── jquery.d.ts │ │ ├── key-codes.d.ts │ │ ├── lodash.d.ts │ │ ├── manifesto.d.ts │ │ ├── modernizr.d.ts │ │ ├── require.d.ts │ │ ├── storage.d.ts │ │ ├── three.d.ts │ │ ├── universalviewer.d.ts │ │ ├── utils.d.ts │ │ └── virtex.d.ts │ └── tasks │ ├── configure.js │ ├── copyFiles.js │ ├── theme.js │ └── version.js ├── composer.json ├── docker-compose.yml ├── docker_templates ├── gitlab-runner ├── httpd.conf └── setup.php.docker ├── export └── .keep ├── index.php ├── robots.txt ├── service.php ├── service └── index.php ├── setup.php-dist ├── support ├── .htaccess ├── bin │ └── caUtils ├── error │ ├── css │ │ └── site.css │ └── graphics │ │ ├── ca.png │ │ ├── vorsicht.gif │ │ └── warning.gif ├── icons │ ├── .htaccess │ ├── 3dIcon.ai │ ├── 3dIcon120.jpg │ ├── 3dIcon160.jpg │ ├── 3dIcon170.jpg │ ├── 3dIcon180.jpg │ ├── 3dIcon190.jpg │ ├── 3dIcon240.jpg │ ├── 3dIcon32.jpg │ ├── 3dIcon400.jpg │ ├── 3dIcon580.jpg │ ├── 3dIcon700.jpg │ ├── 3dIcon72.jpg │ ├── audioIcon.ai │ ├── audioIcon.png │ ├── audioIcon110x75.jpg │ ├── audioIcon120.jpg │ ├── audioIcon142x72.jpg │ ├── audioIcon160.jpg │ ├── audioIcon170.jpg │ ├── audioIcon170x113.jpg │ ├── audioIcon172x142.jpg │ ├── audioIcon180.jpg │ ├── audioIcon180blank.jpg │ ├── audioIcon230x150.jpg │ ├── audioIcon240.jpg │ ├── audioIcon240blank.jpg │ ├── audioIcon32.jpg │ ├── audioIcon400.jpg │ ├── audioIcon580.jpg │ ├── audioIcon700.jpg │ ├── audioIcon72.jpg │ ├── documentIcon.ai │ ├── documentIcon.png │ ├── documentIcon110x75.jpg │ ├── documentIcon120.jpg │ ├── documentIcon142x72.jpg │ ├── documentIcon160.jpg │ ├── documentIcon170.jpg │ ├── documentIcon172x133.jpg │ ├── documentIcon180.jpg │ ├── documentIcon230x150.jpg │ ├── documentIcon240.jpg │ ├── documentIcon32.jpg │ ├── documentIcon400.jpg │ ├── documentIcon580.jpg │ ├── documentIcon700.jpg │ ├── documentIcon72.jpg │ ├── videoIcon.ai │ ├── videoIcon.png │ ├── videoIcon110x75.jpg │ ├── videoIcon120.jpg │ ├── videoIcon142x72.jpg │ ├── videoIcon160.jpg │ ├── videoIcon170.jpg │ ├── videoIcon170x113.jpg │ ├── videoIcon180.jpg │ ├── videoIcon180blank.jpg │ ├── videoIcon230x150.jpg │ ├── videoIcon240.jpg │ ├── videoIcon240blank.jpg │ ├── videoIcon32.jpg │ ├── videoIcon400.jpg │ ├── videoIcon580.jpg │ ├── videoIcon700.jpg │ └── videoIcon72.jpg └── scripts │ ├── extract_conf_strings.php │ └── install_composer.sh.txt ├── themes ├── copyme │ ├── assets │ │ └── pawtucket │ │ │ ├── css │ │ │ └── theme.css │ │ │ └── graphics │ │ │ └── readme.txt │ ├── conf │ │ └── readme.txt │ ├── templates │ │ └── readme.txt │ └── views │ │ ├── About │ │ └── readme.txt │ │ ├── Browse │ │ └── readme.txt │ │ ├── Contact │ │ └── readme.txt │ │ ├── Contribute │ │ └── readme.txt │ │ ├── Details │ │ └── readme.txt │ │ ├── Form │ │ └── readme.txt │ │ ├── Front │ │ └── readme.txt │ │ ├── Gallery │ │ └── readme.txt │ │ ├── Lightbox │ │ └── readme.txt │ │ ├── Listing │ │ └── readme.txt │ │ ├── LoginReg │ │ └── readme.txt │ │ ├── Search │ │ └── readme.txt │ │ ├── pageFormat │ │ └── readme.txt │ │ └── system │ │ ├── configuration_error_html.php │ │ ├── configuration_error_install_html.php │ │ ├── error_html.php │ │ └── fatal_error_html.php └── default │ ├── assets │ └── pawtucket │ │ ├── css │ │ ├── Lato │ │ │ ├── Lato-Bold.eot │ │ │ ├── Lato-Bold.woff │ │ │ ├── Lato-Bold.woff2 │ │ │ ├── Lato-BoldItalic.eot │ │ │ ├── Lato-BoldItalic.woff │ │ │ ├── Lato-BoldItalic.woff2 │ │ │ ├── Lato-Italic.eot │ │ │ ├── Lato-Italic.woff │ │ │ ├── Lato-Italic.woff2 │ │ │ ├── Lato-Light.eot │ │ │ ├── Lato-Light.woff │ │ │ ├── Lato-Light.woff2 │ │ │ ├── Lato-LightItalic.eot │ │ │ ├── Lato-LightItalic.woff │ │ │ ├── Lato-LightItalic.woff2 │ │ │ ├── Lato-Regular.eot │ │ │ ├── Lato-Regular.woff │ │ │ └── Lato-Regular.woff2 │ │ ├── din │ │ │ ├── 28EC2C_0_0.eot │ │ │ ├── 28EC2C_0_0.ttf │ │ │ └── 28EC2C_0_0.woff │ │ ├── error.css │ │ ├── fonts.css │ │ ├── franklingothic │ │ │ ├── frankgotmed-webfont.eot │ │ │ ├── frankgotmed-webfont.svg │ │ │ ├── frankgotmed-webfont.ttf │ │ │ └── frankgotmed-webfont.woff │ │ ├── main.css │ │ └── proximanova │ │ │ ├── proximanova-bold-webfont.eot │ │ │ ├── proximanova-bold-webfont.svg │ │ │ ├── proximanova-bold-webfont.ttf │ │ │ ├── proximanova-bold-webfont.woff │ │ │ ├── proximanova-boldit-webfont.eot │ │ │ ├── proximanova-boldit-webfont.svg │ │ │ ├── proximanova-boldit-webfont.ttf │ │ │ ├── proximanova-boldit-webfont.woff │ │ │ ├── proximanova-reg-webfont.eot │ │ │ ├── proximanova-reg-webfont.svg │ │ │ ├── proximanova-reg-webfont.ttf │ │ │ └── proximanova-reg-webfont.woff │ │ └── graphics │ │ ├── buttons │ │ ├── arrow_grey_right.gif │ │ ├── bookmark_mainnav.png │ │ ├── bookmark_off.png │ │ ├── bookmark_on.png │ │ ├── docview_controls.png │ │ ├── download.png │ │ ├── downloadWhite.png │ │ ├── expand.png │ │ ├── expand_on.png │ │ ├── eye.png │ │ ├── eye_on.png │ │ ├── key.png │ │ ├── key_on.png │ │ ├── list.png │ │ ├── list_on.png │ │ ├── locked.png │ │ ├── locked_on.png │ │ ├── measure.png │ │ ├── measure_on.png │ │ ├── navigator.png │ │ ├── navigator_on.png │ │ ├── pan.png │ │ ├── pan_on.png │ │ ├── point.png │ │ ├── point_on.png │ │ ├── polygon.png │ │ ├── polygon_on.png │ │ ├── rect.png │ │ ├── rect_on.png │ │ ├── rectnote.png │ │ ├── rotate.png │ │ ├── rotate_on.png │ │ ├── viewer_media_download.png │ │ ├── viewer_media_download_on.png │ │ ├── viewerhelp.png │ │ ├── viewerhelp_on.png │ │ ├── x.png │ │ ├── x_white.png │ │ ├── zoom_in.png │ │ └── zoom_out.png │ │ ├── close.png │ │ ├── facebook.png │ │ ├── flickr.png │ │ ├── floorplan.png │ │ ├── glyphicons_078_warning_sign.png │ │ ├── glyphicons_195_circle_info.png │ │ ├── indicator.gif │ │ ├── instagram.png │ │ ├── logos │ │ └── logo.svg │ │ ├── m │ │ ├── m1.png │ │ ├── m2.png │ │ ├── m3.png │ │ ├── m4.png │ │ └── m5.png │ │ ├── mcs-header.fw_.png │ │ ├── search-button.png │ │ ├── spacer.png │ │ ├── threesixty │ │ ├── 360.png │ │ ├── 360_icon.png │ │ └── sprites.png │ │ ├── twitter.png │ │ ├── vorsicht.gif │ │ └── youtube.png │ ├── conf │ ├── app.conf │ ├── assets.conf │ ├── ban_hammer.conf │ ├── browse.conf │ ├── classroom.conf │ ├── collections.conf │ ├── contact.conf │ ├── contribute.conf │ ├── cookies.conf │ ├── detail.conf │ ├── front.conf │ ├── gallery.conf │ ├── global.conf │ ├── icons.conf │ ├── iiif.conf │ ├── library_services.conf │ ├── lightbox.conf │ ├── listing.conf │ ├── media_display.conf │ ├── search.conf │ ├── search_query_builder.conf │ └── templates.conf │ ├── locale │ ├── en_US │ │ ├── messages.mo │ │ └── messages.po │ ├── es_ES │ │ ├── messages.mo │ │ └── messages.po │ ├── fr_FR │ │ ├── messages.mo │ │ └── messages.po │ └── messages.pot │ ├── templates │ ├── about.tmpl │ └── staffpage.tmpl │ └── views │ ├── About │ └── Index.php │ ├── Ban │ └── verify_html.php │ ├── Browse │ ├── ajax_map_item_html.php │ ├── browse_panel_subview_html.php │ ├── browse_refine_subview_html.php │ ├── browse_results_html.php │ ├── browse_results_images_html.php │ ├── browse_results_list_html.php │ ├── browse_results_map_html.php │ ├── browse_results_timelineData_json.php │ ├── browse_results_timeline_html.php │ ├── facet_hierarchy_ancestors_html.php │ ├── facet_hierarchy_ancestors_json.php │ ├── facet_hierarchy_level_html.php │ ├── facet_hierarchy_level_json.php │ ├── hierarchy_facet_html.php │ └── list_facet_html.php │ ├── Classroom │ ├── form_set_info_html.php │ ├── list_html.php │ ├── set_access_html.php │ └── set_detail_html.php │ ├── Collections │ ├── child_list_html.php │ ├── collection_hierarchy_html.php │ └── index_html.php │ ├── Compare │ ├── add_to_list_result_json.php │ ├── manifest_json.php │ └── view_html.php │ ├── Contact │ ├── form_html.php │ └── success_html.php │ ├── Contribute │ ├── form_html.php │ ├── list_html.php │ ├── result_json.php │ ├── spam_check_html.php │ └── terms_and_conditions_check_html.php │ ├── Cookies │ ├── banner_html.php │ └── form_manage_html.php │ ├── Details │ ├── ajax_representation_annotations_json.php │ ├── annotations_html.php │ ├── ca_collections_default_html.php │ ├── ca_entities_default_html.php │ ├── ca_objects_default_html.php │ ├── ca_occurrences_default_html.php │ ├── ca_places_default_html.php │ ├── ca_representation_annotations_default_html.php │ ├── download_file_binary.php │ ├── form_comments_html.php │ ├── form_share_html.php │ ├── list_facet_html.php │ ├── object_representation_download_binary.php │ ├── object_representation_page_list_json.php │ ├── object_representation_within_media_search_results_json.php │ └── viewer_help_html.php │ ├── Form │ ├── close_html.php │ └── reload_html.php │ ├── Front │ ├── featured_set_grid_html.php │ ├── featured_set_slideshow_html.php │ ├── front_page_html.php │ ├── front_page_html.php_ns │ ├── front_page_html_temp.php │ ├── gallery_set_links_html.php │ └── gallery_slideshow_html.php │ ├── Gallery │ ├── detail_html.php │ ├── index_html.php │ ├── set_detail_map_html.php │ ├── set_detail_timeline_html.php │ ├── set_detail_timeline_json.php │ ├── set_info_html.php │ ├── set_item_info_html.php │ └── set_item_rep_html.php │ ├── Library │ ├── checkin │ │ ├── ajax_data_json.php │ │ ├── items_html.php │ │ └── widget_checkin_html.php │ └── checkout │ │ ├── ajax_data_json.php │ │ ├── find_user_html.php │ │ ├── items_html.php │ │ ├── my_loans_html.php │ │ └── widget_checkout_html.php │ ├── Lightbox │ ├── ajax_add_comment_json.php │ ├── ajax_comments.php │ ├── ajax_delete_comment_json.php │ ├── ajax_delete_item_json.php │ ├── ajax_delete_set_json.php │ ├── ajax_map_item_html.php │ ├── ajax_reorder_items_json.php │ ├── ajax_save_set_info_json.php │ ├── exportTemplates │ │ └── ca_objects_sets_pdf_html.php │ ├── form_add_set_item_html.php │ ├── form_set_info_html.php │ ├── form_share_set_html.php │ ├── form_user_group_html.php │ ├── present_html.php │ ├── set_access_html.php │ ├── set_comment_html.php │ ├── set_detail_html.php │ ├── set_detail_item_html.php │ ├── set_detail_timelineData_json.php │ ├── set_detail_timeline_html.php │ ├── set_list_html.php │ ├── set_list_item_placeholder_html.php │ └── user_group_list_html.php │ ├── Listing │ ├── ca_collections_listing_subview_html.php │ └── listing_html.php │ ├── LoginReg │ ├── form_login_html.php │ ├── form_profile_html.php │ ├── form_register_html.php │ └── form_reset_html.php │ ├── README.txt │ ├── Search │ ├── ajax_map_item_html.php │ ├── ca_collections_search_subview_html.php │ ├── ca_collections_search_subview_list_html.php │ ├── ca_entities_search_subview_html.php │ ├── ca_objects_advanced_search_objects_html.php │ ├── ca_objects_search_subview_cascading_html.php │ ├── ca_objects_search_subview_html.php │ ├── ca_objects_searchbuilder_html.php │ ├── ca_occurrences_search_subview_html.php │ ├── ca_places_search_subview_html.php │ ├── multisearch_results_html.php │ └── search_builder_controls_html.php │ ├── ajaxFooter │ └── ajaxFooter.php │ ├── bundles │ ├── authority_attribute.php │ ├── ca_search_form_attributes.php │ ├── ca_simple_form_attributes.php │ ├── download_file_binary.php │ ├── representation_viewer_html.php │ └── site_page_html.php │ ├── lookup │ ├── ajax_attribute_value_exists_json.php │ ├── ajax_attribute_value_list_json.php │ ├── ajax_collection_list_html.php │ ├── ajax_entity_list_html.php │ ├── ajax_information_service_detail_html.php │ ├── ajax_information_service_list_html.php │ ├── ajax_list_item_list_html.php │ ├── ajax_object_checkout_list_html.php │ ├── ajax_object_list_html.php │ ├── ajax_occurrence_list_html.php │ ├── ajax_place_list_html.php │ └── ajax_vocabulary_list_html.php │ ├── mailTemplates │ ├── admin_comment_notification.tpl │ ├── admin_comment_notification_html.tpl │ ├── admin_comment_notification_subject.tpl │ ├── admin_contribute_notification.tpl │ ├── admin_contribute_notification_html.tpl │ ├── admin_contribute_notification_subject.tpl │ ├── contact.tpl │ ├── contact_html.tpl │ ├── contact_subject.tpl │ ├── instructions.tpl │ ├── instructions_html.tpl │ ├── instructions_subject.tpl │ ├── library_checkin_receipt.tpl │ ├── library_checkout_receipt.tpl │ ├── library_coming_due.tpl │ ├── library_overdue.tpl │ ├── library_reservation_available.tpl │ ├── notification.tpl │ ├── notification_html.tpl │ ├── notification_subject.tpl │ ├── reg_admin_notification.tpl │ ├── reg_admin_notification_html.tpl │ ├── reg_admin_notification_subject.tpl │ ├── reg_conf.tpl │ ├── reg_conf_html.tpl │ ├── reg_conf_subject.tpl │ ├── share_email_html.tpl │ ├── share_email_text.tpl │ ├── share_object_email_html.tpl │ ├── share_object_email_text.tpl │ ├── share_set_notification_html.tpl │ ├── share_set_notification_subject.tpl │ └── share_set_notification_text.tpl │ ├── mediaViewers │ ├── Diva.php │ ├── DivaManifest.php │ ├── MediaElement.php │ ├── Mirador.php │ ├── MiradorManifest.php │ ├── QTVR.php │ ├── Spin360.php │ ├── ThreeJS.php │ ├── TileViewer.php │ ├── UniversalViewer.php │ ├── UniversalViewerAutocomplete.php │ ├── UniversalViewerManifest.php │ ├── UniversalViewerSearchManifest.php │ ├── VideoJS.php │ ├── pdfjs.php │ ├── universalviewer.config.json │ ├── viewerInline.php │ └── viewerWrapper.php │ ├── pageFormat │ ├── browseMenu.php │ ├── browseMenuFacets.php │ ├── notifications.php │ ├── pageFooter.php │ └── pageHeader.php │ └── system │ ├── configuration_error_html.php │ ├── configuration_error_install_html.php │ ├── error_html.php │ └── fatal_error_html.php ├── vendor └── .keep └── viewers └── apps └── tilepic.php /.dockerignore: -------------------------------------------------------------------------------- 1 | ./app/tmp 2 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/composer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/.github/workflows/composer.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/.htaccess -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/Dockerfile -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/README.md -------------------------------------------------------------------------------- /Warranty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/Warranty.txt -------------------------------------------------------------------------------- /app/conf/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/conf/.htaccess -------------------------------------------------------------------------------- /app/conf/annotation_types.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/conf/annotation_types.conf -------------------------------------------------------------------------------- /app/conf/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/conf/app.conf -------------------------------------------------------------------------------- /app/conf/assets.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/conf/assets.conf -------------------------------------------------------------------------------- /app/conf/attribute_types.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/conf/attribute_types.conf -------------------------------------------------------------------------------- /app/conf/authentication.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/conf/authentication.conf -------------------------------------------------------------------------------- /app/conf/ban_hammer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/conf/ban_hammer.conf -------------------------------------------------------------------------------- /app/conf/browse.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/conf/browse.conf -------------------------------------------------------------------------------- /app/conf/content_caching.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/conf/content_caching.conf -------------------------------------------------------------------------------- /app/conf/cookies.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/conf/datamodel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/conf/datamodel.conf -------------------------------------------------------------------------------- /app/conf/datetime.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/conf/datetime.conf -------------------------------------------------------------------------------- /app/conf/default_media_icons.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/conf/default_media_icons.conf -------------------------------------------------------------------------------- /app/conf/dimensions.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/conf/dimensions.conf -------------------------------------------------------------------------------- /app/conf/external_applications.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/conf/external_applications.conf -------------------------------------------------------------------------------- /app/conf/file_volumes.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/conf/file_volumes.conf -------------------------------------------------------------------------------- /app/conf/find_navigation.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/conf/find_navigation.conf -------------------------------------------------------------------------------- /app/conf/global.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/conf/global.conf -------------------------------------------------------------------------------- /app/conf/headers.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/conf/headers.conf -------------------------------------------------------------------------------- /app/conf/library_services.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/conf/library_services.conf -------------------------------------------------------------------------------- /app/conf/linked_data.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/conf/linked_data.conf -------------------------------------------------------------------------------- /app/conf/media_display.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/conf/media_display.conf -------------------------------------------------------------------------------- /app/conf/media_metadata.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/conf/media_metadata.conf -------------------------------------------------------------------------------- /app/conf/media_processing.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/conf/media_processing.conf -------------------------------------------------------------------------------- /app/conf/media_volumes.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/conf/media_volumes.conf -------------------------------------------------------------------------------- /app/conf/search.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/conf/search.conf -------------------------------------------------------------------------------- /app/conf/search_indexing.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/conf/search_indexing.conf -------------------------------------------------------------------------------- /app/conf/search_query_builder.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/conf/search_query_builder.conf -------------------------------------------------------------------------------- /app/conf/translations.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/conf/translations.conf -------------------------------------------------------------------------------- /app/conf/user_actions.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/conf/user_actions.conf -------------------------------------------------------------------------------- /app/conf/user_pref_defs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/conf/user_pref_defs.conf -------------------------------------------------------------------------------- /app/controllers/BanController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/controllers/BanController.php -------------------------------------------------------------------------------- /app/controllers/FindController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/controllers/FindController.php -------------------------------------------------------------------------------- /app/controllers/FrontController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/controllers/FrontController.php -------------------------------------------------------------------------------- /app/fonts/DejaVuSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/fonts/DejaVuSans-Bold.ttf -------------------------------------------------------------------------------- /app/fonts/DejaVuSans-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/fonts/DejaVuSans-ExtraLight.ttf -------------------------------------------------------------------------------- /app/fonts/DejaVuSans-Oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/fonts/DejaVuSans-Oblique.ttf -------------------------------------------------------------------------------- /app/fonts/DejaVuSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/fonts/DejaVuSans.ttf -------------------------------------------------------------------------------- /app/fonts/DejaVuSansCondensed.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/fonts/DejaVuSansCondensed.ttf -------------------------------------------------------------------------------- /app/fonts/DejaVuSansMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/fonts/DejaVuSansMono-Bold.ttf -------------------------------------------------------------------------------- /app/fonts/DejaVuSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/fonts/DejaVuSansMono.ttf -------------------------------------------------------------------------------- /app/fonts/DejaVuSerif-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/fonts/DejaVuSerif-Bold.ttf -------------------------------------------------------------------------------- /app/fonts/DejaVuSerif-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/fonts/DejaVuSerif-Italic.ttf -------------------------------------------------------------------------------- /app/fonts/DejaVuSerif.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/fonts/DejaVuSerif.ttf -------------------------------------------------------------------------------- /app/fonts/DejaVuSerifCondensed.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/fonts/DejaVuSerifCondensed.ttf -------------------------------------------------------------------------------- /app/fonts/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/fonts/arial.ttf -------------------------------------------------------------------------------- /app/fonts/arialbd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/fonts/arialbd.ttf -------------------------------------------------------------------------------- /app/fonts/arialit.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/fonts/arialit.ttf -------------------------------------------------------------------------------- /app/fonts/dejavu/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/fonts/dejavu/AUTHORS -------------------------------------------------------------------------------- /app/fonts/dejavu/BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/fonts/dejavu/BUGS -------------------------------------------------------------------------------- /app/fonts/dejavu/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/fonts/dejavu/LICENSE -------------------------------------------------------------------------------- /app/fonts/dejavu/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/fonts/dejavu/NEWS -------------------------------------------------------------------------------- /app/fonts/dejavu/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/fonts/dejavu/README -------------------------------------------------------------------------------- /app/fonts/dejavu/langcover.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/fonts/dejavu/langcover.txt -------------------------------------------------------------------------------- /app/fonts/dejavu/status.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/fonts/dejavu/status.txt -------------------------------------------------------------------------------- /app/fonts/dejavu/unicover.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/fonts/dejavu/unicover.txt -------------------------------------------------------------------------------- /app/helpers/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/helpers/.htaccess -------------------------------------------------------------------------------- /app/helpers/CLIHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/helpers/CLIHelpers.php -------------------------------------------------------------------------------- /app/helpers/accessHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/helpers/accessHelpers.php -------------------------------------------------------------------------------- /app/helpers/avHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/helpers/avHelpers.php -------------------------------------------------------------------------------- /app/helpers/batchHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/helpers/batchHelpers.php -------------------------------------------------------------------------------- /app/helpers/browseHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/helpers/browseHelpers.php -------------------------------------------------------------------------------- /app/helpers/contributeHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/helpers/contributeHelpers.php -------------------------------------------------------------------------------- /app/helpers/displayHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/helpers/displayHelpers.php -------------------------------------------------------------------------------- /app/helpers/errorHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/helpers/errorHelpers.php -------------------------------------------------------------------------------- /app/helpers/exportHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/helpers/exportHelpers.php -------------------------------------------------------------------------------- /app/helpers/expressionHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/helpers/expressionHelpers.php -------------------------------------------------------------------------------- /app/helpers/gisHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/helpers/gisHelpers.php -------------------------------------------------------------------------------- /app/helpers/guidHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/helpers/guidHelpers.php -------------------------------------------------------------------------------- /app/helpers/htmlFormHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/helpers/htmlFormHelpers.php -------------------------------------------------------------------------------- /app/helpers/importHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/helpers/importHelpers.php -------------------------------------------------------------------------------- /app/helpers/initializeLocale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/helpers/initializeLocale.php -------------------------------------------------------------------------------- /app/helpers/listHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/helpers/listHelpers.php -------------------------------------------------------------------------------- /app/helpers/listingHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/helpers/listingHelpers.php -------------------------------------------------------------------------------- /app/helpers/logHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/helpers/logHelpers.php -------------------------------------------------------------------------------- /app/helpers/mailHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/helpers/mailHelpers.php -------------------------------------------------------------------------------- /app/helpers/mediaPluginHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/helpers/mediaPluginHelpers.php -------------------------------------------------------------------------------- /app/helpers/navigationHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/helpers/navigationHelpers.php -------------------------------------------------------------------------------- /app/helpers/post-setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/helpers/post-setup.php -------------------------------------------------------------------------------- /app/helpers/preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/helpers/preload.php -------------------------------------------------------------------------------- /app/helpers/printHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/helpers/printHelpers.php -------------------------------------------------------------------------------- /app/helpers/requestHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/helpers/requestHelpers.php -------------------------------------------------------------------------------- /app/helpers/searchHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/helpers/searchHelpers.php -------------------------------------------------------------------------------- /app/helpers/supportHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/helpers/supportHelpers.php -------------------------------------------------------------------------------- /app/helpers/systemHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/helpers/systemHelpers.php -------------------------------------------------------------------------------- /app/helpers/themeHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/helpers/themeHelpers.php -------------------------------------------------------------------------------- /app/helpers/tourHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/helpers/tourHelpers.php -------------------------------------------------------------------------------- /app/helpers/utilityHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/helpers/utilityHelpers.php -------------------------------------------------------------------------------- /app/lib/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/.htaccess -------------------------------------------------------------------------------- /app/lib/AccessRestrictions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/AccessRestrictions.php -------------------------------------------------------------------------------- /app/lib/AdvancedSearchView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/AdvancedSearchView.php -------------------------------------------------------------------------------- /app/lib/AjaxFooter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/AjaxFooter.php -------------------------------------------------------------------------------- /app/lib/AppNavigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/AppNavigation.php -------------------------------------------------------------------------------- /app/lib/ApplicationChangeLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/ApplicationChangeLog.php -------------------------------------------------------------------------------- /app/lib/ApplicationError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/ApplicationError.php -------------------------------------------------------------------------------- /app/lib/ApplicationVars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/ApplicationVars.php -------------------------------------------------------------------------------- /app/lib/AssetLoadManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/AssetLoadManager.php -------------------------------------------------------------------------------- /app/lib/Attributes/Attribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Attributes/Attribute.php -------------------------------------------------------------------------------- /app/lib/Auth/Adapters/CaUsers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Auth/Adapters/CaUsers.php -------------------------------------------------------------------------------- /app/lib/Auth/Adapters/Okta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Auth/Adapters/Okta.php -------------------------------------------------------------------------------- /app/lib/Auth/Adapters/OpenLDAP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Auth/Adapters/OpenLDAP.php -------------------------------------------------------------------------------- /app/lib/Auth/BaseAuthAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Auth/BaseAuthAdapter.php -------------------------------------------------------------------------------- /app/lib/Auth/IAuthAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Auth/IAuthAdapter.php -------------------------------------------------------------------------------- /app/lib/Auth/PasswordHash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Auth/PasswordHash.php -------------------------------------------------------------------------------- /app/lib/BanHammer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/BanHammer.php -------------------------------------------------------------------------------- /app/lib/BaseApplicationPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/BaseApplicationPlugin.php -------------------------------------------------------------------------------- /app/lib/BaseBrowseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/BaseBrowseController.php -------------------------------------------------------------------------------- /app/lib/BaseDetailController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/BaseDetailController.php -------------------------------------------------------------------------------- /app/lib/BaseEditorController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/BaseEditorController.php -------------------------------------------------------------------------------- /app/lib/BaseFeedController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/BaseFeedController.php -------------------------------------------------------------------------------- /app/lib/BaseFindController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/BaseFindController.php -------------------------------------------------------------------------------- /app/lib/BaseFindEngine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/BaseFindEngine.php -------------------------------------------------------------------------------- /app/lib/BaseLabel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/BaseLabel.php -------------------------------------------------------------------------------- /app/lib/BaseLookupController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/BaseLookupController.php -------------------------------------------------------------------------------- /app/lib/BaseModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/BaseModel.php -------------------------------------------------------------------------------- /app/lib/BaseModelWithAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/BaseModelWithAttributes.php -------------------------------------------------------------------------------- /app/lib/BaseObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/BaseObject.php -------------------------------------------------------------------------------- /app/lib/BasePluginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/BasePluginController.php -------------------------------------------------------------------------------- /app/lib/BaseQuickAddController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/BaseQuickAddController.php -------------------------------------------------------------------------------- /app/lib/BaseRelationshipModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/BaseRelationshipModel.php -------------------------------------------------------------------------------- /app/lib/BaseSearchController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/BaseSearchController.php -------------------------------------------------------------------------------- /app/lib/BaseSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/BaseSettings.php -------------------------------------------------------------------------------- /app/lib/BaseToolsPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/BaseToolsPlugin.php -------------------------------------------------------------------------------- /app/lib/BaseVersionUpdater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/BaseVersionUpdater.php -------------------------------------------------------------------------------- /app/lib/BaseWidget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/BaseWidget.php -------------------------------------------------------------------------------- /app/lib/BatchEditorProgress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/BatchEditorProgress.php -------------------------------------------------------------------------------- /app/lib/BatchProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/BatchProcessor.php -------------------------------------------------------------------------------- /app/lib/Browse/BaseBrowse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Browse/BaseBrowse.php -------------------------------------------------------------------------------- /app/lib/Browse/BrowseCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Browse/BrowseCache.php -------------------------------------------------------------------------------- /app/lib/Browse/BrowseEngine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Browse/BrowseEngine.php -------------------------------------------------------------------------------- /app/lib/Browse/BrowseResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Browse/BrowseResult.php -------------------------------------------------------------------------------- /app/lib/Browse/CollectionBrowse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Browse/CollectionBrowse.php -------------------------------------------------------------------------------- /app/lib/Browse/EntityBrowse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Browse/EntityBrowse.php -------------------------------------------------------------------------------- /app/lib/Browse/ListBrowse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Browse/ListBrowse.php -------------------------------------------------------------------------------- /app/lib/Browse/ListBrowseResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Browse/ListBrowseResult.php -------------------------------------------------------------------------------- /app/lib/Browse/ListItemBrowse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Browse/ListItemBrowse.php -------------------------------------------------------------------------------- /app/lib/Browse/LoanBrowse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Browse/LoanBrowse.php -------------------------------------------------------------------------------- /app/lib/Browse/LoanBrowseResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Browse/LoanBrowseResult.php -------------------------------------------------------------------------------- /app/lib/Browse/MovementBrowse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Browse/MovementBrowse.php -------------------------------------------------------------------------------- /app/lib/Browse/ObjectBrowse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Browse/ObjectBrowse.php -------------------------------------------------------------------------------- /app/lib/Browse/ObjectLotBrowse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Browse/ObjectLotBrowse.php -------------------------------------------------------------------------------- /app/lib/Browse/OccurrenceBrowse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Browse/OccurrenceBrowse.php -------------------------------------------------------------------------------- /app/lib/Browse/PlaceBrowse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Browse/PlaceBrowse.php -------------------------------------------------------------------------------- /app/lib/Browse/TourBrowse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Browse/TourBrowse.php -------------------------------------------------------------------------------- /app/lib/Browse/TourBrowseResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Browse/TourBrowseResult.php -------------------------------------------------------------------------------- /app/lib/Browse/TourStopBrowse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Browse/TourStopBrowse.php -------------------------------------------------------------------------------- /app/lib/Cache/CAFileSystemCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Cache/CAFileSystemCache.php -------------------------------------------------------------------------------- /app/lib/Cache/CompositeCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Cache/CompositeCache.php -------------------------------------------------------------------------------- /app/lib/Cache/ExternalCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Cache/ExternalCache.php -------------------------------------------------------------------------------- /app/lib/Cache/JSONEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Cache/JSONEncoder.php -------------------------------------------------------------------------------- /app/lib/Cache/MemoryCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Cache/MemoryCache.php -------------------------------------------------------------------------------- /app/lib/Cache/PersistentCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Cache/PersistentCache.php -------------------------------------------------------------------------------- /app/lib/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Configuration.php -------------------------------------------------------------------------------- /app/lib/ConfigurationCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/ConfigurationCheck.php -------------------------------------------------------------------------------- /app/lib/ConfigurationExporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/ConfigurationExporter.php -------------------------------------------------------------------------------- /app/lib/ContentCaching.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/ContentCaching.php -------------------------------------------------------------------------------- /app/lib/Controller/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Controller/Request.php -------------------------------------------------------------------------------- /app/lib/Controller/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Controller/Response.php -------------------------------------------------------------------------------- /app/lib/CookieOptionsManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/CookieOptionsManager.php -------------------------------------------------------------------------------- /app/lib/DashboardManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/DashboardManager.php -------------------------------------------------------------------------------- /app/lib/Datamodel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Datamodel.php -------------------------------------------------------------------------------- /app/lib/Db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Db.php -------------------------------------------------------------------------------- /app/lib/Db/DbBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Db/DbBase.php -------------------------------------------------------------------------------- /app/lib/Db/DbDriverBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Db/DbDriverBase.php -------------------------------------------------------------------------------- /app/lib/Db/DbResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Db/DbResult.php -------------------------------------------------------------------------------- /app/lib/Db/DbStatement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Db/DbStatement.php -------------------------------------------------------------------------------- /app/lib/Db/Transaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Db/Transaction.php -------------------------------------------------------------------------------- /app/lib/Db/mysqli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Db/mysqli.php -------------------------------------------------------------------------------- /app/lib/Db/pdo_mysql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Db/pdo_mysql.php -------------------------------------------------------------------------------- /app/lib/DeaccessionTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/DeaccessionTrait.php -------------------------------------------------------------------------------- /app/lib/DeduplicateBaseModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/DeduplicateBaseModel.php -------------------------------------------------------------------------------- /app/lib/Error/IErrorSetter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Error/IErrorSetter.php -------------------------------------------------------------------------------- /app/lib/Error/errors.en_us: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Error/errors.en_us -------------------------------------------------------------------------------- /app/lib/Export/BaseExportFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Export/BaseExportFormat.php -------------------------------------------------------------------------------- /app/lib/ExternalExportManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/ExternalExportManager.php -------------------------------------------------------------------------------- /app/lib/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/File.php -------------------------------------------------------------------------------- /app/lib/File/FileInfoCoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/File/FileInfoCoder.php -------------------------------------------------------------------------------- /app/lib/File/FileMimeTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/File/FileMimeTypes.php -------------------------------------------------------------------------------- /app/lib/File/FileVolumes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/File/FileVolumes.php -------------------------------------------------------------------------------- /app/lib/FooterManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/FooterManager.php -------------------------------------------------------------------------------- /app/lib/GarbageCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/GarbageCollection.php -------------------------------------------------------------------------------- /app/lib/GenericVersionUpdater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/GenericVersionUpdater.php -------------------------------------------------------------------------------- /app/lib/GeographicMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/GeographicMap.php -------------------------------------------------------------------------------- /app/lib/GeographicMapItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/GeographicMapItem.php -------------------------------------------------------------------------------- /app/lib/HTTPMultiClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/HTTPMultiClient.php -------------------------------------------------------------------------------- /app/lib/HTTPMultiClientResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/HTTPMultiClientResult.php -------------------------------------------------------------------------------- /app/lib/IApplicationPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/IApplicationPlugin.php -------------------------------------------------------------------------------- /app/lib/IBundleProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/IBundleProvider.php -------------------------------------------------------------------------------- /app/lib/IDNumbering.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/IDNumbering.php -------------------------------------------------------------------------------- /app/lib/IDNumbering/IDNumber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/IDNumbering/IDNumber.php -------------------------------------------------------------------------------- /app/lib/IDNumbering/UUIDNumber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/IDNumbering/UUIDNumber.php -------------------------------------------------------------------------------- /app/lib/IHierarchy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/IHierarchy.php -------------------------------------------------------------------------------- /app/lib/ILabelable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/ILabelable.php -------------------------------------------------------------------------------- /app/lib/IRelationshipModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/IRelationshipModel.php -------------------------------------------------------------------------------- /app/lib/ITakesAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/ITakesAttributes.php -------------------------------------------------------------------------------- /app/lib/ITakesSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/ITakesSettings.php -------------------------------------------------------------------------------- /app/lib/IWidget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/IWidget.php -------------------------------------------------------------------------------- /app/lib/Import/BaseDataImporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Import/BaseDataImporter.php -------------------------------------------------------------------------------- /app/lib/Import/BaseDataReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Import/BaseDataReader.php -------------------------------------------------------------------------------- /app/lib/Import/BaseRefinery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Import/BaseRefinery.php -------------------------------------------------------------------------------- /app/lib/Import/CSVDataImporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Import/CSVDataImporter.php -------------------------------------------------------------------------------- /app/lib/Import/RefineryManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Import/RefineryManager.php -------------------------------------------------------------------------------- /app/lib/Logging/AccessLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Logging/AccessLogger.php -------------------------------------------------------------------------------- /app/lib/Logging/BaseLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Logging/BaseLogger.php -------------------------------------------------------------------------------- /app/lib/Logging/Batchlog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Logging/Batchlog.php -------------------------------------------------------------------------------- /app/lib/Logging/Downloadlog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Logging/Downloadlog.php -------------------------------------------------------------------------------- /app/lib/Logging/Eventlog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Logging/Eventlog.php -------------------------------------------------------------------------------- /app/lib/Logging/KLogger/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Logging/KLogger/.gitignore -------------------------------------------------------------------------------- /app/lib/Logging/KLogger/KLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Logging/KLogger/KLogger.php -------------------------------------------------------------------------------- /app/lib/Logging/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Logging/Logger.php -------------------------------------------------------------------------------- /app/lib/Logging/Searchlog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Logging/Searchlog.php -------------------------------------------------------------------------------- /app/lib/Media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Media.php -------------------------------------------------------------------------------- /app/lib/Media/BaseMediaViewer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Media/BaseMediaViewer.php -------------------------------------------------------------------------------- /app/lib/Media/IMediaViewer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Media/IMediaViewer.php -------------------------------------------------------------------------------- /app/lib/Media/MediaInfoCoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Media/MediaInfoCoder.php -------------------------------------------------------------------------------- /app/lib/Media/MediaViewers/Diva.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Media/MediaViewers/Diva.php -------------------------------------------------------------------------------- /app/lib/Media/MediaViewers/QTVR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Media/MediaViewers/QTVR.php -------------------------------------------------------------------------------- /app/lib/Media/MediaVolumes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Media/MediaVolumes.php -------------------------------------------------------------------------------- /app/lib/MediaUploadManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/MediaUploadManager.php -------------------------------------------------------------------------------- /app/lib/MediaUploaderHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/MediaUploaderHandler.php -------------------------------------------------------------------------------- /app/lib/MediaUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/MediaUrl.php -------------------------------------------------------------------------------- /app/lib/MetaTagManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/MetaTagManager.php -------------------------------------------------------------------------------- /app/lib/ModelSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/ModelSettings.php -------------------------------------------------------------------------------- /app/lib/PageFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/PageFormat.php -------------------------------------------------------------------------------- /app/lib/Parsers/IDataParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Parsers/IDataParser.php -------------------------------------------------------------------------------- /app/lib/Parsers/KmlParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Parsers/KmlParser.php -------------------------------------------------------------------------------- /app/lib/Parsers/PlyToStl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Parsers/PlyToStl.php -------------------------------------------------------------------------------- /app/lib/Parsers/Tar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Parsers/Tar.php -------------------------------------------------------------------------------- /app/lib/Parsers/TilepicParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Parsers/TilepicParser.php -------------------------------------------------------------------------------- /app/lib/Parsers/TimecodeParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Parsers/TimecodeParser.php -------------------------------------------------------------------------------- /app/lib/Parsers/UnZipFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Parsers/UnZipFile.php -------------------------------------------------------------------------------- /app/lib/Parsers/XMLFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Parsers/XMLFormatter.php -------------------------------------------------------------------------------- /app/lib/Parsers/ZipFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Parsers/ZipFile.php -------------------------------------------------------------------------------- /app/lib/Parsers/ZipStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Parsers/ZipStream.php -------------------------------------------------------------------------------- /app/lib/Parsers/gPoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Parsers/gPoint.php -------------------------------------------------------------------------------- /app/lib/Parsers/ganon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Parsers/ganon.php -------------------------------------------------------------------------------- /app/lib/Parsers/hoa/compiler/.Mime: -------------------------------------------------------------------------------- 1 | text/vnd.hoa.compiler pp 2 | -------------------------------------------------------------------------------- /app/lib/Parsers/hoa/compiler/.State: -------------------------------------------------------------------------------- 1 | finalized 2 | -------------------------------------------------------------------------------- /app/lib/Parsers/hoa/compiler/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /composer.lock 3 | -------------------------------------------------------------------------------- /app/lib/Parsers/hoa/consistency/.State: -------------------------------------------------------------------------------- 1 | finalized 2 | -------------------------------------------------------------------------------- /app/lib/Parsers/hoa/consistency/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /composer.lock 3 | -------------------------------------------------------------------------------- /app/lib/Parsers/hoa/event/.State: -------------------------------------------------------------------------------- 1 | finalized 2 | -------------------------------------------------------------------------------- /app/lib/Parsers/hoa/event/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /composer.lock 3 | -------------------------------------------------------------------------------- /app/lib/Parsers/hoa/event/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Parsers/hoa/event/Event.php -------------------------------------------------------------------------------- /app/lib/Parsers/hoa/event/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Parsers/hoa/event/README.md -------------------------------------------------------------------------------- /app/lib/Parsers/hoa/exception/.State: -------------------------------------------------------------------------------- 1 | finalized 2 | -------------------------------------------------------------------------------- /app/lib/Parsers/hoa/exception/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /composer.lock 3 | -------------------------------------------------------------------------------- /app/lib/Parsers/hoa/file/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /composer.lock 3 | -------------------------------------------------------------------------------- /app/lib/Parsers/hoa/file/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Parsers/hoa/file/File.php -------------------------------------------------------------------------------- /app/lib/Parsers/hoa/file/Finder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Parsers/hoa/file/Finder.php -------------------------------------------------------------------------------- /app/lib/Parsers/hoa/file/Read.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Parsers/hoa/file/Read.php -------------------------------------------------------------------------------- /app/lib/Parsers/hoa/file/Write.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Parsers/hoa/file/Write.php -------------------------------------------------------------------------------- /app/lib/Parsers/hoa/iterator/.State: -------------------------------------------------------------------------------- 1 | finalized 2 | -------------------------------------------------------------------------------- /app/lib/Parsers/hoa/iterator/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /composer.lock 3 | -------------------------------------------------------------------------------- /app/lib/Parsers/hoa/math/.State: -------------------------------------------------------------------------------- 1 | rc 2 | -------------------------------------------------------------------------------- /app/lib/Parsers/hoa/math/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /composer.lock 3 | -------------------------------------------------------------------------------- /app/lib/Parsers/hoa/math/Combinatorics/Arrangement.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/lib/Parsers/hoa/math/Combinatorics/Counting.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/lib/Parsers/hoa/math/Combinatorics/FiniteSet.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/lib/Parsers/hoa/math/Combinatorics/Permutation.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/lib/Parsers/hoa/math/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Parsers/hoa/math/README.md -------------------------------------------------------------------------------- /app/lib/Parsers/hoa/math/Util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Parsers/hoa/math/Util.php -------------------------------------------------------------------------------- /app/lib/Parsers/hoa/protocol/.State: -------------------------------------------------------------------------------- 1 | finalized 2 | -------------------------------------------------------------------------------- /app/lib/Parsers/hoa/protocol/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /composer.lock 3 | -------------------------------------------------------------------------------- /app/lib/Parsers/hoa/regex/.State: -------------------------------------------------------------------------------- 1 | beta 2 | -------------------------------------------------------------------------------- /app/lib/Parsers/hoa/regex/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /composer.lock 3 | -------------------------------------------------------------------------------- /app/lib/Parsers/hoa/regex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Parsers/hoa/regex/README.md -------------------------------------------------------------------------------- /app/lib/Parsers/hoa/stream/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /composer.lock 3 | -------------------------------------------------------------------------------- /app/lib/Parsers/hoa/stream/Test/Fixtures/index.html: -------------------------------------------------------------------------------- 1 | Hello, World! 2 | -------------------------------------------------------------------------------- /app/lib/Parsers/hoa/ustring/.State: -------------------------------------------------------------------------------- 1 | finalized 2 | -------------------------------------------------------------------------------- /app/lib/Parsers/hoa/ustring/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /composer.lock 3 | -------------------------------------------------------------------------------- /app/lib/Parsers/hoa/visitor/.State: -------------------------------------------------------------------------------- 1 | finalized 2 | -------------------------------------------------------------------------------- /app/lib/Parsers/hoa/visitor/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /composer.lock 3 | -------------------------------------------------------------------------------- /app/lib/Parsers/hoa/zformat/.State: -------------------------------------------------------------------------------- 1 | beta 2 | -------------------------------------------------------------------------------- /app/lib/Parsers/hoa/zformat/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /composer.lock 3 | -------------------------------------------------------------------------------- /app/lib/Parsers/jsmin-1.1.1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Parsers/jsmin-1.1.1.php -------------------------------------------------------------------------------- /app/lib/Plugins/File/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Plugins/File/Image.php -------------------------------------------------------------------------------- /app/lib/Plugins/File/SWF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Plugins/File/SWF.php -------------------------------------------------------------------------------- /app/lib/Plugins/IWLPlugMedia.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Plugins/IWLPlugMedia.php -------------------------------------------------------------------------------- /app/lib/Plugins/IWLPlugSMS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Plugins/IWLPlugSMS.php -------------------------------------------------------------------------------- /app/lib/Plugins/Media/Audio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Plugins/Media/Audio.php -------------------------------------------------------------------------------- /app/lib/Plugins/Media/GD.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Plugins/Media/GD.php -------------------------------------------------------------------------------- /app/lib/Plugins/Media/Gmagick.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Plugins/Media/Gmagick.php -------------------------------------------------------------------------------- /app/lib/Plugins/Media/Imagick.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Plugins/Media/Imagick.php -------------------------------------------------------------------------------- /app/lib/Plugins/Media/Mesh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Plugins/Media/Mesh.php -------------------------------------------------------------------------------- /app/lib/Plugins/Media/Office.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Plugins/Media/Office.php -------------------------------------------------------------------------------- /app/lib/Plugins/Media/PDFWand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Plugins/Media/PDFWand.php -------------------------------------------------------------------------------- /app/lib/Plugins/Media/Video.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Plugins/Media/Video.php -------------------------------------------------------------------------------- /app/lib/Plugins/MediaUrl/_File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Plugins/MediaUrl/_File.php -------------------------------------------------------------------------------- /app/lib/Plugins/PluginConsumer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Plugins/PluginConsumer.php -------------------------------------------------------------------------------- /app/lib/Plugins/SMS/SendHub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Plugins/SMS/SendHub.php -------------------------------------------------------------------------------- /app/lib/Plugins/Visualizer/Map.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Plugins/Visualizer/Map.php -------------------------------------------------------------------------------- /app/lib/Plugins/WLPlug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Plugins/WLPlug.php -------------------------------------------------------------------------------- /app/lib/Print/PDFRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Print/PDFRenderer.php -------------------------------------------------------------------------------- /app/lib/Process/Background.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Process/Background.php -------------------------------------------------------------------------------- /app/lib/Process/CLI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Process/CLI.php -------------------------------------------------------------------------------- /app/lib/Process/Socket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Process/Socket.php -------------------------------------------------------------------------------- /app/lib/ProgressBar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/ProgressBar.php -------------------------------------------------------------------------------- /app/lib/RecordSelection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/RecordSelection.php -------------------------------------------------------------------------------- /app/lib/RepresentableBaseModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/RepresentableBaseModel.php -------------------------------------------------------------------------------- /app/lib/ResultContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/ResultContext.php -------------------------------------------------------------------------------- /app/lib/ResultDescTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/ResultDescTrait.php -------------------------------------------------------------------------------- /app/lib/SMS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/SMS.php -------------------------------------------------------------------------------- /app/lib/Search/BaseSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Search/BaseSearch.php -------------------------------------------------------------------------------- /app/lib/Search/BaseSearchResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Search/BaseSearchResult.php -------------------------------------------------------------------------------- /app/lib/Search/CollectionSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Search/CollectionSearch.php -------------------------------------------------------------------------------- /app/lib/Search/EditorUISearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Search/EditorUISearch.php -------------------------------------------------------------------------------- /app/lib/Search/EntitySearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Search/EntitySearch.php -------------------------------------------------------------------------------- /app/lib/Search/ItemTagSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Search/ItemTagSearch.php -------------------------------------------------------------------------------- /app/lib/Search/ListItemSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Search/ListItemSearch.php -------------------------------------------------------------------------------- /app/lib/Search/ListSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Search/ListSearch.php -------------------------------------------------------------------------------- /app/lib/Search/ListSearchResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Search/ListSearchResult.php -------------------------------------------------------------------------------- /app/lib/Search/LoanSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Search/LoanSearch.php -------------------------------------------------------------------------------- /app/lib/Search/LoanSearchResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Search/LoanSearchResult.php -------------------------------------------------------------------------------- /app/lib/Search/MovementSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Search/MovementSearch.php -------------------------------------------------------------------------------- /app/lib/Search/ObjectLotSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Search/ObjectLotSearch.php -------------------------------------------------------------------------------- /app/lib/Search/ObjectSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Search/ObjectSearch.php -------------------------------------------------------------------------------- /app/lib/Search/OccurrenceSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Search/OccurrenceSearch.php -------------------------------------------------------------------------------- /app/lib/Search/PlaceSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Search/PlaceSearch.php -------------------------------------------------------------------------------- /app/lib/Search/QuickSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Search/QuickSearch.php -------------------------------------------------------------------------------- /app/lib/Search/SearchBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Search/SearchBase.php -------------------------------------------------------------------------------- /app/lib/Search/SearchCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Search/SearchCache.php -------------------------------------------------------------------------------- /app/lib/Search/SearchEngine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Search/SearchEngine.php -------------------------------------------------------------------------------- /app/lib/Search/SearchIndexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Search/SearchIndexer.php -------------------------------------------------------------------------------- /app/lib/Search/SearchResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Search/SearchResult.php -------------------------------------------------------------------------------- /app/lib/Search/SetItemSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Search/SetItemSearch.php -------------------------------------------------------------------------------- /app/lib/Search/SetSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Search/SetSearch.php -------------------------------------------------------------------------------- /app/lib/Search/SetSearchResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Search/SetSearchResult.php -------------------------------------------------------------------------------- /app/lib/Search/SitePageSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Search/SitePageSearch.php -------------------------------------------------------------------------------- /app/lib/Search/TourSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Search/TourSearch.php -------------------------------------------------------------------------------- /app/lib/Search/TourSearchResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Search/TourSearchResult.php -------------------------------------------------------------------------------- /app/lib/Search/TourStopSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Search/TourStopSearch.php -------------------------------------------------------------------------------- /app/lib/Search/UserGroupSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Search/UserGroupSearch.php -------------------------------------------------------------------------------- /app/lib/Search/UserSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Search/UserSearch.php -------------------------------------------------------------------------------- /app/lib/Search/UserSearchResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Search/UserSearchResult.php -------------------------------------------------------------------------------- /app/lib/Service/BaseJSONService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Service/BaseJSONService.php -------------------------------------------------------------------------------- /app/lib/Service/BaseService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Service/BaseService.php -------------------------------------------------------------------------------- /app/lib/Service/BrowseService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Service/BrowseService.php -------------------------------------------------------------------------------- /app/lib/Service/GraphQLSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Service/GraphQLSchema.php -------------------------------------------------------------------------------- /app/lib/Service/IIIFService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Service/IIIFService.php -------------------------------------------------------------------------------- /app/lib/Service/ItemService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Service/ItemService.php -------------------------------------------------------------------------------- /app/lib/Service/ModelService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Service/ModelService.php -------------------------------------------------------------------------------- /app/lib/Service/OAIPMHService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Service/OAIPMHService.php -------------------------------------------------------------------------------- /app/lib/Service/RestClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Service/RestClient.php -------------------------------------------------------------------------------- /app/lib/Service/SimpleService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Service/SimpleService.php -------------------------------------------------------------------------------- /app/lib/SetUniqueIdnoTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/SetUniqueIdnoTrait.php -------------------------------------------------------------------------------- /app/lib/SiteComments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/SiteComments.php -------------------------------------------------------------------------------- /app/lib/SitePageTemplateManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/SitePageTemplateManager.php -------------------------------------------------------------------------------- /app/lib/Sync/LogEntry/Attribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Sync/LogEntry/Attribute.php -------------------------------------------------------------------------------- /app/lib/Sync/LogEntry/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Sync/LogEntry/Base.php -------------------------------------------------------------------------------- /app/lib/Sync/LogEntry/Bundlable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Sync/LogEntry/Bundlable.php -------------------------------------------------------------------------------- /app/lib/Sync/LogEntry/Label.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Sync/LogEntry/Label.php -------------------------------------------------------------------------------- /app/lib/Sync/Replicator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Sync/Replicator.php -------------------------------------------------------------------------------- /app/lib/SyncableBaseModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/SyncableBaseModel.php -------------------------------------------------------------------------------- /app/lib/System/Installer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/System/Installer.php -------------------------------------------------------------------------------- /app/lib/System/Updater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/System/Updater.php -------------------------------------------------------------------------------- /app/lib/TaskQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/TaskQueue.php -------------------------------------------------------------------------------- /app/lib/ToolsManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/ToolsManager.php -------------------------------------------------------------------------------- /app/lib/TooltipManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/TooltipManager.php -------------------------------------------------------------------------------- /app/lib/TusConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/TusConfig.php -------------------------------------------------------------------------------- /app/lib/Utils/CLIBaseUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Utils/CLIBaseUtils.php -------------------------------------------------------------------------------- /app/lib/Utils/CLIProgressBar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Utils/CLIProgressBar.php -------------------------------------------------------------------------------- /app/lib/Utils/CLITools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Utils/CLITools.php -------------------------------------------------------------------------------- /app/lib/Utils/CLIUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Utils/CLIUtils.php -------------------------------------------------------------------------------- /app/lib/Utils/CLIUtils/Cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Utils/CLIUtils/Cron.php -------------------------------------------------------------------------------- /app/lib/Utils/CLIUtils/Media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Utils/CLIUtils/Media.php -------------------------------------------------------------------------------- /app/lib/Utils/CLIUtils/Search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Utils/CLIUtils/Search.php -------------------------------------------------------------------------------- /app/lib/Utils/CLIUtils/Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Utils/CLIUtils/Test.php -------------------------------------------------------------------------------- /app/lib/Utils/Debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Utils/Debug.php -------------------------------------------------------------------------------- /app/lib/Utils/Encoding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Utils/Encoding.php -------------------------------------------------------------------------------- /app/lib/Utils/Graph.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Utils/Graph.php -------------------------------------------------------------------------------- /app/lib/Utils/IApplicationTool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Utils/IApplicationTool.php -------------------------------------------------------------------------------- /app/lib/Utils/LockingTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Utils/LockingTrait.php -------------------------------------------------------------------------------- /app/lib/Utils/ProcessStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Utils/ProcessStatus.php -------------------------------------------------------------------------------- /app/lib/Utils/Timer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Utils/Timer.php -------------------------------------------------------------------------------- /app/lib/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/View.php -------------------------------------------------------------------------------- /app/lib/Vimeo/vimeo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Vimeo/vimeo.php -------------------------------------------------------------------------------- /app/lib/Visualizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/Visualizer.php -------------------------------------------------------------------------------- /app/lib/WidgetManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/WidgetManager.php -------------------------------------------------------------------------------- /app/lib/pawtucket/AjaxFooter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/pawtucket/AjaxFooter.php -------------------------------------------------------------------------------- /app/lib/pawtucket/PageFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/lib/pawtucket/PageFormat.php -------------------------------------------------------------------------------- /app/locale/en_GB/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/locale/en_GB/messages.mo -------------------------------------------------------------------------------- /app/locale/en_GB/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/locale/en_GB/messages.po -------------------------------------------------------------------------------- /app/locale/en_US/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/locale/en_US/messages.mo -------------------------------------------------------------------------------- /app/locale/en_US/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/locale/en_US/messages.po -------------------------------------------------------------------------------- /app/locale/es_ES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/locale/es_ES/messages.mo -------------------------------------------------------------------------------- /app/locale/es_ES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/locale/es_ES/messages.po -------------------------------------------------------------------------------- /app/locale/fr_FR/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/locale/fr_FR/messages.mo -------------------------------------------------------------------------------- /app/locale/fr_FR/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/locale/fr_FR/messages.po -------------------------------------------------------------------------------- /app/locale/pt_PT/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/locale/pt_PT/messages.mo -------------------------------------------------------------------------------- /app/locale/pt_PT/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/locale/pt_PT/messages.po -------------------------------------------------------------------------------- /app/log/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/log/.htaccess -------------------------------------------------------------------------------- /app/models/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/.htaccess -------------------------------------------------------------------------------- /app/models/ca_acl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_acl.php -------------------------------------------------------------------------------- /app/models/ca_application_vars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_application_vars.php -------------------------------------------------------------------------------- /app/models/ca_attribute_values.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_attribute_values.php -------------------------------------------------------------------------------- /app/models/ca_attributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_attributes.php -------------------------------------------------------------------------------- /app/models/ca_bookmark_folders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_bookmark_folders.php -------------------------------------------------------------------------------- /app/models/ca_bookmarks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_bookmarks.php -------------------------------------------------------------------------------- /app/models/ca_bundle_displays.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_bundle_displays.php -------------------------------------------------------------------------------- /app/models/ca_change_log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_change_log.php -------------------------------------------------------------------------------- /app/models/ca_collection_labels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_collection_labels.php -------------------------------------------------------------------------------- /app/models/ca_collections.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_collections.php -------------------------------------------------------------------------------- /app/models/ca_data_exporters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_data_exporters.php -------------------------------------------------------------------------------- /app/models/ca_data_import_items.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_data_import_items.php -------------------------------------------------------------------------------- /app/models/ca_data_importer_log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_data_importer_log.php -------------------------------------------------------------------------------- /app/models/ca_data_importers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_data_importers.php -------------------------------------------------------------------------------- /app/models/ca_editor_ui_labels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_editor_ui_labels.php -------------------------------------------------------------------------------- /app/models/ca_editor_ui_screens.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_editor_ui_screens.php -------------------------------------------------------------------------------- /app/models/ca_editor_uis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_editor_uis.php -------------------------------------------------------------------------------- /app/models/ca_entities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_entities.php -------------------------------------------------------------------------------- /app/models/ca_entities_x_places.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_entities_x_places.php -------------------------------------------------------------------------------- /app/models/ca_entity_labels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_entity_labels.php -------------------------------------------------------------------------------- /app/models/ca_groups_x_roles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_groups_x_roles.php -------------------------------------------------------------------------------- /app/models/ca_guids.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_guids.php -------------------------------------------------------------------------------- /app/models/ca_ip_bans.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_ip_bans.php -------------------------------------------------------------------------------- /app/models/ca_ip_whitelist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_ip_whitelist.php -------------------------------------------------------------------------------- /app/models/ca_ips.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_ips.php -------------------------------------------------------------------------------- /app/models/ca_item_comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_item_comments.php -------------------------------------------------------------------------------- /app/models/ca_item_tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_item_tags.php -------------------------------------------------------------------------------- /app/models/ca_items_x_tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_items_x_tags.php -------------------------------------------------------------------------------- /app/models/ca_list_item_labels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_list_item_labels.php -------------------------------------------------------------------------------- /app/models/ca_list_items.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_list_items.php -------------------------------------------------------------------------------- /app/models/ca_list_labels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_list_labels.php -------------------------------------------------------------------------------- /app/models/ca_lists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_lists.php -------------------------------------------------------------------------------- /app/models/ca_loan_labels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_loan_labels.php -------------------------------------------------------------------------------- /app/models/ca_loans.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_loans.php -------------------------------------------------------------------------------- /app/models/ca_loans_x_entities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_loans_x_entities.php -------------------------------------------------------------------------------- /app/models/ca_loans_x_loans.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_loans_x_loans.php -------------------------------------------------------------------------------- /app/models/ca_loans_x_movements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_loans_x_movements.php -------------------------------------------------------------------------------- /app/models/ca_loans_x_objects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_loans_x_objects.php -------------------------------------------------------------------------------- /app/models/ca_loans_x_places.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_loans_x_places.php -------------------------------------------------------------------------------- /app/models/ca_locales.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_locales.php -------------------------------------------------------------------------------- /app/models/ca_metadata_elements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_metadata_elements.php -------------------------------------------------------------------------------- /app/models/ca_movement_labels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_movement_labels.php -------------------------------------------------------------------------------- /app/models/ca_movements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_movements.php -------------------------------------------------------------------------------- /app/models/ca_notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_notifications.php -------------------------------------------------------------------------------- /app/models/ca_object_checkouts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_object_checkouts.php -------------------------------------------------------------------------------- /app/models/ca_object_labels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_object_labels.php -------------------------------------------------------------------------------- /app/models/ca_object_lot_labels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_object_lot_labels.php -------------------------------------------------------------------------------- /app/models/ca_object_lots.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_object_lots.php -------------------------------------------------------------------------------- /app/models/ca_objects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_objects.php -------------------------------------------------------------------------------- /app/models/ca_objects_x_objects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_objects_x_objects.php -------------------------------------------------------------------------------- /app/models/ca_objects_x_places.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_objects_x_places.php -------------------------------------------------------------------------------- /app/models/ca_occurrence_labels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_occurrence_labels.php -------------------------------------------------------------------------------- /app/models/ca_occurrences.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_occurrences.php -------------------------------------------------------------------------------- /app/models/ca_place_labels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_place_labels.php -------------------------------------------------------------------------------- /app/models/ca_places.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_places.php -------------------------------------------------------------------------------- /app/models/ca_places_x_places.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_places_x_places.php -------------------------------------------------------------------------------- /app/models/ca_replication_log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_replication_log.php -------------------------------------------------------------------------------- /app/models/ca_search_forms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_search_forms.php -------------------------------------------------------------------------------- /app/models/ca_set_item_labels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_set_item_labels.php -------------------------------------------------------------------------------- /app/models/ca_set_items.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_set_items.php -------------------------------------------------------------------------------- /app/models/ca_set_labels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_set_labels.php -------------------------------------------------------------------------------- /app/models/ca_sets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_sets.php -------------------------------------------------------------------------------- /app/models/ca_sets_x_users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_sets_x_users.php -------------------------------------------------------------------------------- /app/models/ca_site_page_media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_site_page_media.php -------------------------------------------------------------------------------- /app/models/ca_site_pages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_site_pages.php -------------------------------------------------------------------------------- /app/models/ca_site_templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_site_templates.php -------------------------------------------------------------------------------- /app/models/ca_storage_locations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_storage_locations.php -------------------------------------------------------------------------------- /app/models/ca_task_queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_task_queue.php -------------------------------------------------------------------------------- /app/models/ca_tour_labels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_tour_labels.php -------------------------------------------------------------------------------- /app/models/ca_tour_stop_labels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_tour_stop_labels.php -------------------------------------------------------------------------------- /app/models/ca_tour_stops.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_tour_stops.php -------------------------------------------------------------------------------- /app/models/ca_tours.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_tours.php -------------------------------------------------------------------------------- /app/models/ca_user_groups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_user_groups.php -------------------------------------------------------------------------------- /app/models/ca_user_notes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_user_notes.php -------------------------------------------------------------------------------- /app/models/ca_user_roles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_user_roles.php -------------------------------------------------------------------------------- /app/models/ca_user_sort_items.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_user_sort_items.php -------------------------------------------------------------------------------- /app/models/ca_user_sorts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_user_sorts.php -------------------------------------------------------------------------------- /app/models/ca_users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_users.php -------------------------------------------------------------------------------- /app/models/ca_users_x_groups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_users_x_groups.php -------------------------------------------------------------------------------- /app/models/ca_users_x_roles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_users_x_roles.php -------------------------------------------------------------------------------- /app/models/ca_watch_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/models/ca_watch_list.php -------------------------------------------------------------------------------- /app/plugins/README.txt: -------------------------------------------------------------------------------- 1 | README 2 | -------------------------------------------------------------------------------- /app/printTemplates/labels/pdf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/printTemplates/labels/pdf.css -------------------------------------------------------------------------------- /app/printTemplates/results/pdf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/printTemplates/results/pdf.css -------------------------------------------------------------------------------- /app/printTemplates/summary/local/README: -------------------------------------------------------------------------------- 1 | README 2 | -------------------------------------------------------------------------------- /app/printTemplates/summary/pdf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/printTemplates/summary/pdf.css -------------------------------------------------------------------------------- /app/service/views/json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/service/views/json.php -------------------------------------------------------------------------------- /app/service/views/json_error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/service/views/json_error.php -------------------------------------------------------------------------------- /app/tmp/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/tmp/.htaccess -------------------------------------------------------------------------------- /app/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/app/version.php -------------------------------------------------------------------------------- /assets/aeon/aeonRequestsDialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/aeon/aeonRequestsDialog.css -------------------------------------------------------------------------------- /assets/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /assets/bootstrap/ico/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/bootstrap/ico/favicon.png -------------------------------------------------------------------------------- /assets/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /assets/bootstrap/src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/bootstrap/src/.editorconfig -------------------------------------------------------------------------------- /assets/bootstrap/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/bootstrap/src/.gitignore -------------------------------------------------------------------------------- /assets/bootstrap/src/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/bootstrap/src/.travis.yml -------------------------------------------------------------------------------- /assets/bootstrap/src/CNAME: -------------------------------------------------------------------------------- 1 | getbootstrap.com 2 | -------------------------------------------------------------------------------- /assets/bootstrap/src/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/bootstrap/src/Gruntfile.js -------------------------------------------------------------------------------- /assets/bootstrap/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/bootstrap/src/LICENSE -------------------------------------------------------------------------------- /assets/bootstrap/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/bootstrap/src/README.md -------------------------------------------------------------------------------- /assets/bootstrap/src/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/bootstrap/src/_config.yml -------------------------------------------------------------------------------- /assets/bootstrap/src/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/bootstrap/src/bower.json -------------------------------------------------------------------------------- /assets/bootstrap/src/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/bootstrap/src/composer.json -------------------------------------------------------------------------------- /assets/bootstrap/src/css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/bootstrap/src/css.html -------------------------------------------------------------------------------- /assets/bootstrap/src/customize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/bootstrap/src/customize.html -------------------------------------------------------------------------------- /assets/bootstrap/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/bootstrap/src/index.html -------------------------------------------------------------------------------- /assets/bootstrap/src/js/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/bootstrap/src/js/.jshintrc -------------------------------------------------------------------------------- /assets/bootstrap/src/js/affix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/bootstrap/src/js/affix.js -------------------------------------------------------------------------------- /assets/bootstrap/src/js/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/bootstrap/src/js/alert.js -------------------------------------------------------------------------------- /assets/bootstrap/src/js/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/bootstrap/src/js/button.js -------------------------------------------------------------------------------- /assets/bootstrap/src/js/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/bootstrap/src/js/carousel.js -------------------------------------------------------------------------------- /assets/bootstrap/src/js/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/bootstrap/src/js/collapse.js -------------------------------------------------------------------------------- /assets/bootstrap/src/js/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/bootstrap/src/js/dropdown.js -------------------------------------------------------------------------------- /assets/bootstrap/src/js/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/bootstrap/src/js/modal.js -------------------------------------------------------------------------------- /assets/bootstrap/src/js/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/bootstrap/src/js/popover.js -------------------------------------------------------------------------------- /assets/bootstrap/src/js/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/bootstrap/src/js/tab.js -------------------------------------------------------------------------------- /assets/bootstrap/src/js/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/bootstrap/src/js/tooltip.js -------------------------------------------------------------------------------- /assets/bootstrap/src/less/code.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/bootstrap/src/less/code.less -------------------------------------------------------------------------------- /assets/bootstrap/src/less/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/bootstrap/src/less/grid.less -------------------------------------------------------------------------------- /assets/bootstrap/src/less/navs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/bootstrap/src/less/navs.less -------------------------------------------------------------------------------- /assets/bootstrap/src/less/type.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/bootstrap/src/less/type.less -------------------------------------------------------------------------------- /assets/bootstrap/src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/bootstrap/src/package.json -------------------------------------------------------------------------------- /assets/ca/ca.querytranslator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ca/ca.querytranslator.js -------------------------------------------------------------------------------- /assets/ca/ca.slideshow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ca/ca.slideshow.js -------------------------------------------------------------------------------- /assets/ca/js/ca.genericbundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ca/js/ca.genericbundle.js -------------------------------------------------------------------------------- /assets/ca/js/ca.genericpanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ca/js/ca.genericpanel.js -------------------------------------------------------------------------------- /assets/ca/js/ca.googlemaps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ca/js/ca.googlemaps.js -------------------------------------------------------------------------------- /assets/ca/js/ca.hierbrowser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ca/js/ca.hierbrowser.js -------------------------------------------------------------------------------- /assets/ca/js/ca.mediaplayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ca/js/ca.mediaplayer.js -------------------------------------------------------------------------------- /assets/ca/js/ca.objectcheckin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ca/js/ca.objectcheckin.js -------------------------------------------------------------------------------- /assets/ca/js/ca.objectcheckout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ca/js/ca.objectcheckout.js -------------------------------------------------------------------------------- /assets/ca/js/ca.utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ca/js/ca.utils.js -------------------------------------------------------------------------------- /assets/ca/js/mcs_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ca/js/mcs_marker.png -------------------------------------------------------------------------------- /assets/chartist/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "site/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /assets/chartist/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/chartist/.editorconfig -------------------------------------------------------------------------------- /assets/chartist/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /assets/chartist/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/chartist/.gitignore -------------------------------------------------------------------------------- /assets/chartist/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/chartist/.jshintrc -------------------------------------------------------------------------------- /assets/chartist/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/chartist/.travis.yml -------------------------------------------------------------------------------- /assets/chartist/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/chartist/CHANGELOG.md -------------------------------------------------------------------------------- /assets/chartist/CODINGSTYLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/chartist/CODINGSTYLE.md -------------------------------------------------------------------------------- /assets/chartist/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/chartist/CONTRIBUTING.md -------------------------------------------------------------------------------- /assets/chartist/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/chartist/Gruntfile.js -------------------------------------------------------------------------------- /assets/chartist/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/chartist/LICENSE -------------------------------------------------------------------------------- /assets/chartist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/chartist/README.md -------------------------------------------------------------------------------- /assets/chartist/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/chartist/bower.json -------------------------------------------------------------------------------- /assets/chartist/dist/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/chartist/dist/LICENSE -------------------------------------------------------------------------------- /assets/chartist/dist/chartist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/chartist/dist/chartist.js -------------------------------------------------------------------------------- /assets/chartist/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/chartist/package.json -------------------------------------------------------------------------------- /assets/chartist/site/.buildignore: -------------------------------------------------------------------------------- 1 | *.coffee -------------------------------------------------------------------------------- /assets/chartist/site/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/chartist/site/404.html -------------------------------------------------------------------------------- /assets/chartist/site/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/chartist/site/favicon.ico -------------------------------------------------------------------------------- /assets/chartist/site/partials/text.hbs: -------------------------------------------------------------------------------- 1 |

{{{text}}}

-------------------------------------------------------------------------------- /assets/chartist/site/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org 2 | 3 | User-agent: * 4 | -------------------------------------------------------------------------------- /assets/chartist/src/scripts/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/chartist/src/scripts/base.js -------------------------------------------------------------------------------- /assets/chartist/src/scripts/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/chartist/src/scripts/core.js -------------------------------------------------------------------------------- /assets/chartist/src/scripts/svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/chartist/src/scripts/svg.js -------------------------------------------------------------------------------- /assets/chartist/tasks/aliases.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/chartist/tasks/aliases.yml -------------------------------------------------------------------------------- /assets/chartist/tasks/assemble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/chartist/tasks/assemble.js -------------------------------------------------------------------------------- /assets/chartist/tasks/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/chartist/tasks/clean.js -------------------------------------------------------------------------------- /assets/chartist/tasks/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/chartist/tasks/concat.js -------------------------------------------------------------------------------- /assets/chartist/tasks/concurrent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/chartist/tasks/concurrent.js -------------------------------------------------------------------------------- /assets/chartist/tasks/connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/chartist/tasks/connect.js -------------------------------------------------------------------------------- /assets/chartist/tasks/copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/chartist/tasks/copy.js -------------------------------------------------------------------------------- /assets/chartist/tasks/critical.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/chartist/tasks/critical.js -------------------------------------------------------------------------------- /assets/chartist/tasks/cssmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/chartist/tasks/cssmin.js -------------------------------------------------------------------------------- /assets/chartist/tasks/htmlmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/chartist/tasks/htmlmin.js -------------------------------------------------------------------------------- /assets/chartist/tasks/imagemin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/chartist/tasks/imagemin.js -------------------------------------------------------------------------------- /assets/chartist/tasks/jasmine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/chartist/tasks/jasmine.js -------------------------------------------------------------------------------- /assets/chartist/tasks/jshint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/chartist/tasks/jshint.js -------------------------------------------------------------------------------- /assets/chartist/tasks/sass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/chartist/tasks/sass.js -------------------------------------------------------------------------------- /assets/chartist/tasks/svgmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/chartist/tasks/svgmin.js -------------------------------------------------------------------------------- /assets/chartist/tasks/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/chartist/tasks/template.js -------------------------------------------------------------------------------- /assets/chartist/tasks/uglify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/chartist/tasks/uglify.js -------------------------------------------------------------------------------- /assets/chartist/tasks/umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/chartist/tasks/umd.js -------------------------------------------------------------------------------- /assets/chartist/tasks/usemin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/chartist/tasks/usemin.js -------------------------------------------------------------------------------- /assets/chartist/tasks/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/chartist/tasks/watch.js -------------------------------------------------------------------------------- /assets/chartist/test/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/chartist/test/.jshintrc -------------------------------------------------------------------------------- /assets/chartist/test/runner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/chartist/test/runner.html -------------------------------------------------------------------------------- /assets/ck/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/CHANGES.md -------------------------------------------------------------------------------- /assets/ck/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/LICENSE.md -------------------------------------------------------------------------------- /assets/ck/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/README.md -------------------------------------------------------------------------------- /assets/ck/adapters/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/adapters/jquery.js -------------------------------------------------------------------------------- /assets/ck/build-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/build-config.js -------------------------------------------------------------------------------- /assets/ck/ckeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/ckeditor.js -------------------------------------------------------------------------------- /assets/ck/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/config.js -------------------------------------------------------------------------------- /assets/ck/contents.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/contents.css -------------------------------------------------------------------------------- /assets/ck/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/af.js -------------------------------------------------------------------------------- /assets/ck/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/ar.js -------------------------------------------------------------------------------- /assets/ck/lang/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/az.js -------------------------------------------------------------------------------- /assets/ck/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/bg.js -------------------------------------------------------------------------------- /assets/ck/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/bn.js -------------------------------------------------------------------------------- /assets/ck/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/bs.js -------------------------------------------------------------------------------- /assets/ck/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/ca.js -------------------------------------------------------------------------------- /assets/ck/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/cs.js -------------------------------------------------------------------------------- /assets/ck/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/cy.js -------------------------------------------------------------------------------- /assets/ck/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/da.js -------------------------------------------------------------------------------- /assets/ck/lang/de-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/de-ch.js -------------------------------------------------------------------------------- /assets/ck/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/de.js -------------------------------------------------------------------------------- /assets/ck/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/el.js -------------------------------------------------------------------------------- /assets/ck/lang/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/en-au.js -------------------------------------------------------------------------------- /assets/ck/lang/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/en-ca.js -------------------------------------------------------------------------------- /assets/ck/lang/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/en-gb.js -------------------------------------------------------------------------------- /assets/ck/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/en.js -------------------------------------------------------------------------------- /assets/ck/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/eo.js -------------------------------------------------------------------------------- /assets/ck/lang/es-mx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/es-mx.js -------------------------------------------------------------------------------- /assets/ck/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/es.js -------------------------------------------------------------------------------- /assets/ck/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/et.js -------------------------------------------------------------------------------- /assets/ck/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/eu.js -------------------------------------------------------------------------------- /assets/ck/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/fa.js -------------------------------------------------------------------------------- /assets/ck/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/fi.js -------------------------------------------------------------------------------- /assets/ck/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/fo.js -------------------------------------------------------------------------------- /assets/ck/lang/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/fr-ca.js -------------------------------------------------------------------------------- /assets/ck/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/fr.js -------------------------------------------------------------------------------- /assets/ck/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/gl.js -------------------------------------------------------------------------------- /assets/ck/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/gu.js -------------------------------------------------------------------------------- /assets/ck/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/he.js -------------------------------------------------------------------------------- /assets/ck/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/hi.js -------------------------------------------------------------------------------- /assets/ck/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/hr.js -------------------------------------------------------------------------------- /assets/ck/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/hu.js -------------------------------------------------------------------------------- /assets/ck/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/id.js -------------------------------------------------------------------------------- /assets/ck/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/is.js -------------------------------------------------------------------------------- /assets/ck/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/it.js -------------------------------------------------------------------------------- /assets/ck/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/ja.js -------------------------------------------------------------------------------- /assets/ck/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/ka.js -------------------------------------------------------------------------------- /assets/ck/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/km.js -------------------------------------------------------------------------------- /assets/ck/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/ko.js -------------------------------------------------------------------------------- /assets/ck/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/ku.js -------------------------------------------------------------------------------- /assets/ck/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/lt.js -------------------------------------------------------------------------------- /assets/ck/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/lv.js -------------------------------------------------------------------------------- /assets/ck/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/mk.js -------------------------------------------------------------------------------- /assets/ck/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/mn.js -------------------------------------------------------------------------------- /assets/ck/lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/ms.js -------------------------------------------------------------------------------- /assets/ck/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/nb.js -------------------------------------------------------------------------------- /assets/ck/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/nl.js -------------------------------------------------------------------------------- /assets/ck/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/no.js -------------------------------------------------------------------------------- /assets/ck/lang/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/oc.js -------------------------------------------------------------------------------- /assets/ck/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/pl.js -------------------------------------------------------------------------------- /assets/ck/lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/pt-br.js -------------------------------------------------------------------------------- /assets/ck/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/pt.js -------------------------------------------------------------------------------- /assets/ck/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/ro.js -------------------------------------------------------------------------------- /assets/ck/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/ru.js -------------------------------------------------------------------------------- /assets/ck/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/si.js -------------------------------------------------------------------------------- /assets/ck/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/sk.js -------------------------------------------------------------------------------- /assets/ck/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/sl.js -------------------------------------------------------------------------------- /assets/ck/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/sq.js -------------------------------------------------------------------------------- /assets/ck/lang/sr-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/sr-latn.js -------------------------------------------------------------------------------- /assets/ck/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/sr.js -------------------------------------------------------------------------------- /assets/ck/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/sv.js -------------------------------------------------------------------------------- /assets/ck/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/th.js -------------------------------------------------------------------------------- /assets/ck/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/tr.js -------------------------------------------------------------------------------- /assets/ck/lang/tt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/tt.js -------------------------------------------------------------------------------- /assets/ck/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/ug.js -------------------------------------------------------------------------------- /assets/ck/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/uk.js -------------------------------------------------------------------------------- /assets/ck/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/vi.js -------------------------------------------------------------------------------- /assets/ck/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/zh-cn.js -------------------------------------------------------------------------------- /assets/ck/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/lang/zh.js -------------------------------------------------------------------------------- /assets/ck/plugins/calinks/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/plugins/calinks/plugin.js -------------------------------------------------------------------------------- /assets/ck/plugins/divarea/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/plugins/divarea/plugin.js -------------------------------------------------------------------------------- /assets/ck/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/plugins/icons.png -------------------------------------------------------------------------------- /assets/ck/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /assets/ck/plugins/scayt/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/plugins/scayt/LICENSE.md -------------------------------------------------------------------------------- /assets/ck/plugins/scayt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/plugins/scayt/README.md -------------------------------------------------------------------------------- /assets/ck/plugins/wsc/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/plugins/wsc/LICENSE.md -------------------------------------------------------------------------------- /assets/ck/plugins/wsc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/plugins/wsc/README.md -------------------------------------------------------------------------------- /assets/ck/samples/css/samples.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/samples/css/samples.css -------------------------------------------------------------------------------- /assets/ck/samples/img/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/samples/img/header-bg.png -------------------------------------------------------------------------------- /assets/ck/samples/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/samples/img/logo.png -------------------------------------------------------------------------------- /assets/ck/samples/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/samples/img/logo.svg -------------------------------------------------------------------------------- /assets/ck/samples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/samples/index.html -------------------------------------------------------------------------------- /assets/ck/samples/js/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/samples/js/sample.js -------------------------------------------------------------------------------- /assets/ck/samples/js/sf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/samples/js/sf.js -------------------------------------------------------------------------------- /assets/ck/samples/old/ajax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/samples/old/ajax.html -------------------------------------------------------------------------------- /assets/ck/samples/old/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/samples/old/api.html -------------------------------------------------------------------------------- /assets/ck/samples/old/appendto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/samples/old/appendto.html -------------------------------------------------------------------------------- /assets/ck/samples/old/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/samples/old/index.html -------------------------------------------------------------------------------- /assets/ck/samples/old/jquery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/samples/old/jquery.html -------------------------------------------------------------------------------- /assets/ck/samples/old/readonly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/samples/old/readonly.html -------------------------------------------------------------------------------- /assets/ck/samples/old/sample.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/samples/old/sample.css -------------------------------------------------------------------------------- /assets/ck/samples/old/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/samples/old/sample.js -------------------------------------------------------------------------------- /assets/ck/samples/old/tabindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/samples/old/tabindex.html -------------------------------------------------------------------------------- /assets/ck/samples/old/uicolor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/samples/old/uicolor.html -------------------------------------------------------------------------------- /assets/ck/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/ck/styles.js -------------------------------------------------------------------------------- /assets/d3/.npmignore: -------------------------------------------------------------------------------- 1 | examples/ 2 | test/ 3 | lib/ 4 | .DS_Store 5 | _site 6 | -------------------------------------------------------------------------------- /assets/d3/.spmignore: -------------------------------------------------------------------------------- 1 | bin 2 | lib 3 | src 4 | test 5 | -------------------------------------------------------------------------------- /assets/d3/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/d3/CONTRIBUTING.md -------------------------------------------------------------------------------- /assets/d3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/d3/LICENSE -------------------------------------------------------------------------------- /assets/d3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/d3/README.md -------------------------------------------------------------------------------- /assets/d3/d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/d3/d3.js -------------------------------------------------------------------------------- /assets/d3/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/d3/d3.min.js -------------------------------------------------------------------------------- /assets/diva/diva-v6.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/diva/diva-v6.0.0.zip -------------------------------------------------------------------------------- /assets/diva/diva.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/diva/diva.css -------------------------------------------------------------------------------- /assets/diva/diva.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/diva/diva.css.map -------------------------------------------------------------------------------- /assets/diva/diva.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/diva/diva.js -------------------------------------------------------------------------------- /assets/diva/diva.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/diva/diva.js.map -------------------------------------------------------------------------------- /assets/diva/plugins/download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/diva/plugins/download.js -------------------------------------------------------------------------------- /assets/diva/plugins/download.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/diva/plugins/download.js.map -------------------------------------------------------------------------------- /assets/diva/plugins/manipulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/diva/plugins/manipulation.js -------------------------------------------------------------------------------- /assets/diva/plugins/metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/diva/plugins/metadata.js -------------------------------------------------------------------------------- /assets/diva/plugins/metadata.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/diva/plugins/metadata.js.map -------------------------------------------------------------------------------- /assets/fontawesome/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/fontawesome/LICENSE.txt -------------------------------------------------------------------------------- /assets/fontawesome/attribution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/fontawesome/attribution.js -------------------------------------------------------------------------------- /assets/fontawesome/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/fontawesome/css/all.css -------------------------------------------------------------------------------- /assets/fontawesome/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/fontawesome/css/all.min.css -------------------------------------------------------------------------------- /assets/fontawesome/css/brands.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/fontawesome/css/brands.css -------------------------------------------------------------------------------- /assets/fontawesome/css/regular.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/fontawesome/css/regular.css -------------------------------------------------------------------------------- /assets/fontawesome/css/solid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/fontawesome/css/solid.css -------------------------------------------------------------------------------- /assets/fontawesome/css/v4-shims.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/fontawesome/css/v4-shims.css -------------------------------------------------------------------------------- /assets/fontawesome/js/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/fontawesome/js/all.js -------------------------------------------------------------------------------- /assets/fontawesome/js/all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/fontawesome/js/all.min.js -------------------------------------------------------------------------------- /assets/fontawesome/js/brands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/fontawesome/js/brands.js -------------------------------------------------------------------------------- /assets/fontawesome/js/brands.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/fontawesome/js/brands.min.js -------------------------------------------------------------------------------- /assets/fontawesome/js/regular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/fontawesome/js/regular.js -------------------------------------------------------------------------------- /assets/fontawesome/js/solid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/fontawesome/js/solid.js -------------------------------------------------------------------------------- /assets/google/markerclusterer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/google/markerclusterer.js -------------------------------------------------------------------------------- /assets/jquery/circular-slider/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | bower_components 3 | 4 | 5 | -------------------------------------------------------------------------------- /assets/jquery/doT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/jquery/doT.js -------------------------------------------------------------------------------- /assets/jquery/js/jquery-3.7.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/jquery/js/jquery-3.7.1.js -------------------------------------------------------------------------------- /assets/jquery/js/jquery.caui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/jquery/js/jquery.caui.js -------------------------------------------------------------------------------- /assets/jquery/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/jquery/js/jquery.js -------------------------------------------------------------------------------- /assets/jquery/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/jquery/js/jquery.min.js -------------------------------------------------------------------------------- /assets/jquery/js/readmore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/jquery/js/readmore.js -------------------------------------------------------------------------------- /assets/jquery/js/readmore.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/jquery/js/readmore.min.js -------------------------------------------------------------------------------- /assets/leaflet/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/leaflet/images/layers.png -------------------------------------------------------------------------------- /assets/leaflet/leaflet-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/leaflet/leaflet-src.js -------------------------------------------------------------------------------- /assets/leaflet/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/leaflet/leaflet.css -------------------------------------------------------------------------------- /assets/leaflet/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/leaflet/leaflet.js -------------------------------------------------------------------------------- /assets/leaflet/leaflet.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/leaflet/leaflet.js.map -------------------------------------------------------------------------------- /assets/mediaelement/bigplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/mediaelement/bigplay.png -------------------------------------------------------------------------------- /assets/mediaelement/bigplay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/mediaelement/bigplay.svg -------------------------------------------------------------------------------- /assets/mediaelement/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/mediaelement/controls.png -------------------------------------------------------------------------------- /assets/mediaelement/controls.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/mediaelement/controls.svg -------------------------------------------------------------------------------- /assets/mediaelement/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/mediaelement/loading.gif -------------------------------------------------------------------------------- /assets/mediaelement/skipback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/mediaelement/skipback.png -------------------------------------------------------------------------------- /assets/mirador/ZeroClipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/mirador/ZeroClipboard.swf -------------------------------------------------------------------------------- /assets/mirador/mirador.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/mirador/mirador.js -------------------------------------------------------------------------------- /assets/o3dv/.htaccess: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/o3dv/libs/rhino3dm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/o3dv/libs/rhino3dm.min.js -------------------------------------------------------------------------------- /assets/o3dv/libs/rhino3dm.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/o3dv/libs/rhino3dm.wasm -------------------------------------------------------------------------------- /assets/o3dv/o3dv.license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/o3dv/o3dv.license.md -------------------------------------------------------------------------------- /assets/o3dv/o3dv.min-0.7.18.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/o3dv/o3dv.min-0.7.18.js -------------------------------------------------------------------------------- /assets/o3dv/three.license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/o3dv/three.license.md -------------------------------------------------------------------------------- /assets/o3dv/three.min-129.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/o3dv/three.min-129.js -------------------------------------------------------------------------------- /assets/pdfjs/pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/pdfjs/pdf.js -------------------------------------------------------------------------------- /assets/pdfjs/pdf.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/pdfjs/pdf.js.map -------------------------------------------------------------------------------- /assets/pdfjs/pdf.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/pdfjs/pdf.worker.js -------------------------------------------------------------------------------- /assets/pdfjs/pdf.worker.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/pdfjs/pdf.worker.js.map -------------------------------------------------------------------------------- /assets/pdfjs/viewer/debugger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/pdfjs/viewer/debugger.js -------------------------------------------------------------------------------- /assets/pdfjs/viewer/viewer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/pdfjs/viewer/viewer.css -------------------------------------------------------------------------------- /assets/pdfjs/viewer/viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/pdfjs/viewer/viewer.js -------------------------------------------------------------------------------- /assets/plyr/plyr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/plyr/plyr.css -------------------------------------------------------------------------------- /assets/plyr/plyr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/plyr/plyr.js -------------------------------------------------------------------------------- /assets/plyr/plyr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/plyr/plyr.min.js -------------------------------------------------------------------------------- /assets/plyr/plyr.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/plyr/plyr.min.js.map -------------------------------------------------------------------------------- /assets/plyr/plyr.min.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/plyr/plyr.min.mjs -------------------------------------------------------------------------------- /assets/plyr/plyr.min.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/plyr/plyr.min.mjs.map -------------------------------------------------------------------------------- /assets/plyr/plyr.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/plyr/plyr.mjs -------------------------------------------------------------------------------- /assets/plyr/plyr.polyfilled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/plyr/plyr.polyfilled.js -------------------------------------------------------------------------------- /assets/plyr/plyr.polyfilled.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/plyr/plyr.polyfilled.mjs -------------------------------------------------------------------------------- /assets/plyr/plyr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/plyr/plyr.svg -------------------------------------------------------------------------------- /assets/reveal.js/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/reveal.js/LICENSE -------------------------------------------------------------------------------- /assets/reveal.js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/reveal.js/README.md -------------------------------------------------------------------------------- /assets/reveal.js/css/reveal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/reveal.js/css/reveal.css -------------------------------------------------------------------------------- /assets/reveal.js/js/reveal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/reveal.js/js/reveal.js -------------------------------------------------------------------------------- /assets/slider/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/slider/.npmignore -------------------------------------------------------------------------------- /assets/slider/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/slider/.travis.yml -------------------------------------------------------------------------------- /assets/slider/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/slider/CONTRIBUTING.md -------------------------------------------------------------------------------- /assets/slider/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/slider/Gruntfile.js -------------------------------------------------------------------------------- /assets/slider/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/slider/LICENSE.md -------------------------------------------------------------------------------- /assets/slider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/slider/README.md -------------------------------------------------------------------------------- /assets/slider/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/slider/bower.json -------------------------------------------------------------------------------- /assets/slider/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/slider/composer.json -------------------------------------------------------------------------------- /assets/slider/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/slider/index.html -------------------------------------------------------------------------------- /assets/slider/less/rules.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/slider/less/rules.less -------------------------------------------------------------------------------- /assets/slider/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/slider/package.json -------------------------------------------------------------------------------- /assets/slider/sass/slider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/slider/sass/slider.scss -------------------------------------------------------------------------------- /assets/slider/tpl/SpecRunner.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/slider/tpl/SpecRunner.tpl -------------------------------------------------------------------------------- /assets/slider/tpl/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/slider/tpl/index.tpl -------------------------------------------------------------------------------- /assets/timelinejs/js/timeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/timelinejs/js/timeline.js -------------------------------------------------------------------------------- /assets/universalviewer/.bowerrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/universalviewer/.bowerrc -------------------------------------------------------------------------------- /assets/universalviewer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/universalviewer/README.md -------------------------------------------------------------------------------- /assets/universalviewer/VersionTemplate.ts: -------------------------------------------------------------------------------- 1 | export var Version = '%VERSION%'; -------------------------------------------------------------------------------- /assets/universalviewer/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/assets/universalviewer/config.js -------------------------------------------------------------------------------- /assets/universalviewer/src/_Version.ts: -------------------------------------------------------------------------------- 1 | export var Version = '1.7.11'; -------------------------------------------------------------------------------- /assets/universalviewer/src/modules/uv-shared-module/ISettings.d.ts: -------------------------------------------------------------------------------- 1 | 2 | interface ISettings { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/composer.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker_templates/gitlab-runner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/docker_templates/gitlab-runner -------------------------------------------------------------------------------- /docker_templates/httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/docker_templates/httpd.conf -------------------------------------------------------------------------------- /export/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/export/.keep -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/index.php -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/robots.txt -------------------------------------------------------------------------------- /service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/service.php -------------------------------------------------------------------------------- /service/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/service/index.php -------------------------------------------------------------------------------- /setup.php-dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/setup.php-dist -------------------------------------------------------------------------------- /support/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/.htaccess -------------------------------------------------------------------------------- /support/bin/caUtils: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/bin/caUtils -------------------------------------------------------------------------------- /support/error/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/error/css/site.css -------------------------------------------------------------------------------- /support/error/graphics/ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/error/graphics/ca.png -------------------------------------------------------------------------------- /support/icons/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/icons/.htaccess -------------------------------------------------------------------------------- /support/icons/3dIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/icons/3dIcon.ai -------------------------------------------------------------------------------- /support/icons/3dIcon120.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/icons/3dIcon120.jpg -------------------------------------------------------------------------------- /support/icons/3dIcon160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/icons/3dIcon160.jpg -------------------------------------------------------------------------------- /support/icons/3dIcon170.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/icons/3dIcon170.jpg -------------------------------------------------------------------------------- /support/icons/3dIcon180.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/icons/3dIcon180.jpg -------------------------------------------------------------------------------- /support/icons/3dIcon190.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/icons/3dIcon190.jpg -------------------------------------------------------------------------------- /support/icons/3dIcon240.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/icons/3dIcon240.jpg -------------------------------------------------------------------------------- /support/icons/3dIcon32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/icons/3dIcon32.jpg -------------------------------------------------------------------------------- /support/icons/3dIcon400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/icons/3dIcon400.jpg -------------------------------------------------------------------------------- /support/icons/3dIcon580.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/icons/3dIcon580.jpg -------------------------------------------------------------------------------- /support/icons/3dIcon700.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/icons/3dIcon700.jpg -------------------------------------------------------------------------------- /support/icons/3dIcon72.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/icons/3dIcon72.jpg -------------------------------------------------------------------------------- /support/icons/audioIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/icons/audioIcon.ai -------------------------------------------------------------------------------- /support/icons/audioIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/icons/audioIcon.png -------------------------------------------------------------------------------- /support/icons/audioIcon120.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/icons/audioIcon120.jpg -------------------------------------------------------------------------------- /support/icons/audioIcon160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/icons/audioIcon160.jpg -------------------------------------------------------------------------------- /support/icons/audioIcon170.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/icons/audioIcon170.jpg -------------------------------------------------------------------------------- /support/icons/audioIcon180.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/icons/audioIcon180.jpg -------------------------------------------------------------------------------- /support/icons/audioIcon240.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/icons/audioIcon240.jpg -------------------------------------------------------------------------------- /support/icons/audioIcon32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/icons/audioIcon32.jpg -------------------------------------------------------------------------------- /support/icons/audioIcon400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/icons/audioIcon400.jpg -------------------------------------------------------------------------------- /support/icons/audioIcon580.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/icons/audioIcon580.jpg -------------------------------------------------------------------------------- /support/icons/audioIcon700.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/icons/audioIcon700.jpg -------------------------------------------------------------------------------- /support/icons/audioIcon72.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/icons/audioIcon72.jpg -------------------------------------------------------------------------------- /support/icons/documentIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/icons/documentIcon.ai -------------------------------------------------------------------------------- /support/icons/documentIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/icons/documentIcon.png -------------------------------------------------------------------------------- /support/icons/documentIcon32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/icons/documentIcon32.jpg -------------------------------------------------------------------------------- /support/icons/documentIcon72.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/icons/documentIcon72.jpg -------------------------------------------------------------------------------- /support/icons/videoIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/icons/videoIcon.ai -------------------------------------------------------------------------------- /support/icons/videoIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/icons/videoIcon.png -------------------------------------------------------------------------------- /support/icons/videoIcon120.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/icons/videoIcon120.jpg -------------------------------------------------------------------------------- /support/icons/videoIcon160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/icons/videoIcon160.jpg -------------------------------------------------------------------------------- /support/icons/videoIcon170.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/icons/videoIcon170.jpg -------------------------------------------------------------------------------- /support/icons/videoIcon180.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/icons/videoIcon180.jpg -------------------------------------------------------------------------------- /support/icons/videoIcon240.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/icons/videoIcon240.jpg -------------------------------------------------------------------------------- /support/icons/videoIcon32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/icons/videoIcon32.jpg -------------------------------------------------------------------------------- /support/icons/videoIcon400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/icons/videoIcon400.jpg -------------------------------------------------------------------------------- /support/icons/videoIcon580.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/icons/videoIcon580.jpg -------------------------------------------------------------------------------- /support/icons/videoIcon700.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/icons/videoIcon700.jpg -------------------------------------------------------------------------------- /support/icons/videoIcon72.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/support/icons/videoIcon72.jpg -------------------------------------------------------------------------------- /themes/copyme/assets/pawtucket/css/theme.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/copyme/conf/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/themes/copyme/conf/readme.txt -------------------------------------------------------------------------------- /themes/default/conf/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/themes/default/conf/app.conf -------------------------------------------------------------------------------- /themes/default/conf/assets.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/themes/default/conf/assets.conf -------------------------------------------------------------------------------- /themes/default/conf/browse.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/themes/default/conf/browse.conf -------------------------------------------------------------------------------- /themes/default/conf/contact.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/themes/default/conf/contact.conf -------------------------------------------------------------------------------- /themes/default/conf/cookies.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/themes/default/conf/cookies.conf -------------------------------------------------------------------------------- /themes/default/conf/detail.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/themes/default/conf/detail.conf -------------------------------------------------------------------------------- /themes/default/conf/front.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/themes/default/conf/front.conf -------------------------------------------------------------------------------- /themes/default/conf/gallery.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/themes/default/conf/gallery.conf -------------------------------------------------------------------------------- /themes/default/conf/global.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/themes/default/conf/global.conf -------------------------------------------------------------------------------- /themes/default/conf/icons.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/themes/default/conf/icons.conf -------------------------------------------------------------------------------- /themes/default/conf/iiif.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/themes/default/conf/iiif.conf -------------------------------------------------------------------------------- /themes/default/conf/listing.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/themes/default/conf/listing.conf -------------------------------------------------------------------------------- /themes/default/conf/search.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/themes/default/conf/search.conf -------------------------------------------------------------------------------- /themes/default/views/Contribute/result_json.php: -------------------------------------------------------------------------------- 1 | getVar('response')); 3 | ?> -------------------------------------------------------------------------------- /themes/default/views/Lightbox/ajax_map_item_html.php: -------------------------------------------------------------------------------- 1 | getVar('contentTemplate'); -------------------------------------------------------------------------------- /themes/default/views/README.txt: -------------------------------------------------------------------------------- 1 | README 2 | -------------------------------------------------------------------------------- /vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewers/apps/tilepic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectiveaccess/pawtucket2/HEAD/viewers/apps/tilepic.php --------------------------------------------------------------------------------