├── .bowerrc ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .jshintrc ├── .mvn ├── jvm.config └── wrapper │ ├── MavenWrapperDownloader.java │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── .prettierignore ├── .prettierrc ├── .yo-rc.json ├── Gruntfile.js ├── LICENSE ├── MAN002_NumaHOP_-_Manuel_Administrateur.pdf ├── MAN003_NumaHOP_-_Manuel_Utilisateur.pdf ├── MAN004_NumaHOP_-_Manuel_Prestataire.pdf ├── MAN005 NumaHop - Processus complet - V1.2.pdf ├── README.md ├── bower.json ├── eclipse-formatter-java-progilone.xml ├── eclipse-formatter-javascript-progilone.xml ├── index.html ├── mvnw ├── mvnw.cmd ├── package.json ├── po ├── en.po ├── fr.po └── template.pot ├── pom.xml ├── sonar-project.properties ├── src ├── main │ ├── docker │ │ ├── .env │ │ ├── elasticsearch.yml │ │ ├── kibana.yml │ │ └── mariadb.yml │ ├── java │ │ └── fr │ │ │ └── progilone │ │ │ └── pgcn │ │ │ ├── Application.java │ │ │ ├── ApplicationWebXml.java │ │ │ ├── aop │ │ │ └── logging │ │ │ │ └── LoggingAspect.java │ │ │ ├── async │ │ │ └── ExceptionHandlingAsyncTaskExecutor.java │ │ │ ├── config │ │ │ ├── AsyncConfiguration.java │ │ │ ├── BinaryStorageConfiguration.java │ │ │ ├── CacheConfiguration.java │ │ │ ├── Constants.java │ │ │ ├── DatabaseConfiguration.java │ │ │ ├── ElasticsearchConfiguration.java │ │ │ ├── ExifToolConfiguration.java │ │ │ ├── HttpServiceStartupValidator.java │ │ │ ├── ImageMagickConfiguration.java │ │ │ ├── JacksonConfiguration.java │ │ │ ├── JaxbConfiguration.java │ │ │ ├── LocaleConfiguration.java │ │ │ ├── LoggingAspectConfiguration.java │ │ │ ├── MetricsConfiguration.java │ │ │ ├── QuerydslConfiguration.java │ │ │ ├── ScriptEngineConfiguration.java │ │ │ ├── SecurityConfiguration.java │ │ │ ├── SshPortForwardingConfigurer.java │ │ │ ├── TesseractConfiguration.java │ │ │ ├── WebConfigurer.java │ │ │ ├── WebsocketConfiguration.java │ │ │ ├── WebsocketSecurityConfiguration.java │ │ │ └── locale │ │ │ │ └── AngularCookieLocaleResolver.java │ │ │ ├── domain │ │ │ ├── AbstractDomainObject.java │ │ │ ├── Lock.java │ │ │ ├── ObjectWithErrors.java │ │ │ ├── administration │ │ │ │ ├── CinesPAC.java │ │ │ │ ├── ExportFTPDeliveryFolder.java │ │ │ │ ├── InternetArchiveCollection.java │ │ │ │ ├── InternetArchiveConfiguration.java │ │ │ │ ├── MailboxConfiguration.java │ │ │ │ ├── Module.java │ │ │ │ ├── SftpConfiguration.java │ │ │ │ ├── Transliteration.java │ │ │ │ ├── digitallibrary │ │ │ │ │ └── DigitalLibraryConfiguration.java │ │ │ │ ├── exchange │ │ │ │ │ └── z3950 │ │ │ │ │ │ ├── DataFormat.java │ │ │ │ │ │ ├── RecordType.java │ │ │ │ │ │ └── Z3950Server.java │ │ │ │ ├── omeka │ │ │ │ │ ├── OmekaConfiguration.java │ │ │ │ │ └── OmekaList.java │ │ │ │ └── viewsformat │ │ │ │ │ └── ViewsFormatConfiguration.java │ │ │ ├── audit │ │ │ │ ├── AuditRevision.java │ │ │ │ └── AuditingRevisionListener.java │ │ │ ├── check │ │ │ │ ├── AutomaticCheckResult.java │ │ │ │ └── AutomaticCheckType.java │ │ │ ├── checkconfiguration │ │ │ │ ├── AutomaticCheckRule.java │ │ │ │ └── CheckConfiguration.java │ │ │ ├── delivery │ │ │ │ ├── DeliveredDocument.java │ │ │ │ ├── Delivery.java │ │ │ │ ├── DeliverySlip.java │ │ │ │ ├── DeliverySlipConfiguration.java │ │ │ │ └── DeliverySlipLine.java │ │ │ ├── document │ │ │ │ ├── ArchiveCollection.java │ │ │ │ ├── ArchiveContributor.java │ │ │ │ ├── ArchiveCoverage.java │ │ │ │ ├── ArchiveCreator.java │ │ │ │ ├── ArchiveHeader.java │ │ │ │ ├── ArchiveItem.java │ │ │ │ ├── ArchiveLanguage.java │ │ │ │ ├── ArchiveSubject.java │ │ │ │ ├── BibliographicRecord.java │ │ │ │ ├── Check.java │ │ │ │ ├── CheckSlip.java │ │ │ │ ├── CheckSlipConfiguration.java │ │ │ │ ├── CheckSlipLine.java │ │ │ │ ├── DigitalDocument.java │ │ │ │ ├── DocCheckHistory.java │ │ │ │ ├── DocPage.java │ │ │ │ ├── DocProperty.java │ │ │ │ ├── DocPropertyType.java │ │ │ │ ├── DocSibling.java │ │ │ │ ├── DocUnit.java │ │ │ │ ├── ExportData.java │ │ │ │ ├── ExportProperty.java │ │ │ │ ├── GlobalCheck.java │ │ │ │ ├── PhysicalDocument.java │ │ │ │ ├── common │ │ │ │ │ └── LanguageCode.java │ │ │ │ ├── conditionreport │ │ │ │ │ ├── ConditionReport.java │ │ │ │ │ ├── ConditionReportAttachment.java │ │ │ │ │ ├── ConditionReportDetail.java │ │ │ │ │ ├── ConditionReportSlipConfiguration.java │ │ │ │ │ ├── Description.java │ │ │ │ │ ├── DescriptionProperty.java │ │ │ │ │ ├── DescriptionValue.java │ │ │ │ │ └── PropertyConfiguration.java │ │ │ │ └── sample │ │ │ │ │ └── Sample.java │ │ │ ├── dto │ │ │ │ ├── AbstractDTO.java │ │ │ │ ├── AbstractVersionedDTO.java │ │ │ │ ├── administration │ │ │ │ │ ├── CinesPACDTO.java │ │ │ │ │ ├── InternetArchiveCollectionDTO.java │ │ │ │ │ ├── InternetArchiveConfigurationDTO.java │ │ │ │ │ ├── MailboxConfigurationDTO.java │ │ │ │ │ ├── SftpConfigurationDTO.java │ │ │ │ │ ├── digitallibrary │ │ │ │ │ │ └── DigitalLibraryConfigurationDTO.java │ │ │ │ │ ├── omeka │ │ │ │ │ │ ├── OmekaConfigurationDTO.java │ │ │ │ │ │ └── OmekaListDTO.java │ │ │ │ │ ├── viewsFormat │ │ │ │ │ │ ├── SimpleViewsFormatConfigurationDTO.java │ │ │ │ │ │ └── ViewsFormatConfigurationDTO.java │ │ │ │ │ └── z3950 │ │ │ │ │ │ └── Z3950ServerDTO.java │ │ │ │ ├── audit │ │ │ │ │ ├── AuditDeliveryRevisionDTO.java │ │ │ │ │ ├── AuditDocUnitRevisionDTO.java │ │ │ │ │ ├── AuditLotRevisionDTO.java │ │ │ │ │ ├── AuditProjectRevisionDTO.java │ │ │ │ │ └── AuditTrainRevisionDTO.java │ │ │ │ ├── check │ │ │ │ │ ├── AutomaticCheckResultDTO.java │ │ │ │ │ ├── AutomaticCheckTypeDTO.java │ │ │ │ │ └── SplitFilename.java │ │ │ │ ├── checkconfiguration │ │ │ │ │ ├── AutomaticCheckRuleDTO.java │ │ │ │ │ ├── CheckConfigurationDTO.java │ │ │ │ │ └── SimpleCheckConfigurationDTO.java │ │ │ │ ├── delivery │ │ │ │ │ ├── DeliveryDTO.java │ │ │ │ │ ├── ManualDeliveryDTO.java │ │ │ │ │ ├── PreDeliveryDTO.java │ │ │ │ │ ├── SimpleDeliveryDTO.java │ │ │ │ │ ├── SimpleDeliveryForViewerDTO.java │ │ │ │ │ └── SimpleDeliveryLotDTO.java │ │ │ │ ├── document │ │ │ │ │ ├── BibliographicRecordDTO.java │ │ │ │ │ ├── BibliographicRecordDcDTO.java │ │ │ │ │ ├── BibliographicRecordMassUpdateDTO.java │ │ │ │ │ ├── CheckDTO.java │ │ │ │ │ ├── DeliveredDigitalDocumentDTO.java │ │ │ │ │ ├── DigitalDocumentDTO.java │ │ │ │ │ ├── DocPageDTO.java │ │ │ │ │ ├── DocPageErrorsDTO.java │ │ │ │ │ ├── DocPropertyDTO.java │ │ │ │ │ ├── DocPropertyTypeDTO.java │ │ │ │ │ ├── DocUnitBibliographicRecordDTO.java │ │ │ │ │ ├── DocUnitDTO.java │ │ │ │ │ ├── DocUnitDeletedReportDTO.java │ │ │ │ │ ├── DocUnitMassUpdateDTO.java │ │ │ │ │ ├── DocUnitUpdateErrorDTO.java │ │ │ │ │ ├── GlobalCheckDTO.java │ │ │ │ │ ├── LightDeliveredDigitalDocDTO.java │ │ │ │ │ ├── ListPhysicalDocumentDTO.java │ │ │ │ │ ├── MinimalListDocUnitDTO.java │ │ │ │ │ ├── PhysicalDocumentDTO.java │ │ │ │ │ ├── PreDeliveryDocumentDTO.java │ │ │ │ │ ├── PreDeliveryDocumentFileDTO.java │ │ │ │ │ ├── PreDeliveryLockedDocsDTO.java │ │ │ │ │ ├── SimpleBibliographicRecordDTO.java │ │ │ │ │ ├── SimpleDeliveredDigitalDocDTO.java │ │ │ │ │ ├── SimpleDigitalDocumentDTO.java │ │ │ │ │ ├── SimpleDocPageDTO.java │ │ │ │ │ ├── SimpleDocUnitDTO.java │ │ │ │ │ ├── SimpleListBibliographicRecordDTO.java │ │ │ │ │ ├── SimpleListDigitalDocumentDTO.java │ │ │ │ │ ├── SimpleListDocUnitDTO.java │ │ │ │ │ ├── SimpleMetadatasDigitalDocumentDTO.java │ │ │ │ │ ├── SimplePhysicalDocumentDTO.java │ │ │ │ │ ├── StoredFileTocDTO.java │ │ │ │ │ ├── SummaryDocUnitDTO.java │ │ │ │ │ ├── SummaryDocUnitWithLotDTO.java │ │ │ │ │ ├── ValidatedDeliveredDocumentDTO.java │ │ │ │ │ └── conditionreport │ │ │ │ │ │ ├── ConditionReportAttachmentDTO.java │ │ │ │ │ │ ├── ConditionReportDTO.java │ │ │ │ │ │ ├── ConditionReportDetailDTO.java │ │ │ │ │ │ ├── ConditionReportDetailVelocityDTO.java │ │ │ │ │ │ ├── ConditionReportSearchDTO.java │ │ │ │ │ │ ├── ConditionReportValueDTO.java │ │ │ │ │ │ ├── ConditionReportValueVelocityDTO.java │ │ │ │ │ │ ├── LightCondReportDetailDTO.java │ │ │ │ │ │ └── PropertyConfigurationDTO.java │ │ │ │ ├── exchange │ │ │ │ │ ├── CSVMappingDTO.java │ │ │ │ │ ├── CinesReportDTO.java │ │ │ │ │ ├── InternetArchiveReportDTO.java │ │ │ │ │ ├── MappingDTO.java │ │ │ │ │ └── Z3950RecordDTO.java │ │ │ │ ├── exportftpconfiguration │ │ │ │ │ ├── ExportFTPConfigurationDTO.java │ │ │ │ │ ├── ExportFTPConfigurationDeliveryFolderDTO.java │ │ │ │ │ └── SimpleExportFTPConfDTO.java │ │ │ │ ├── filesgestion │ │ │ │ │ └── FilesGestionConfigDTO.java │ │ │ │ ├── ftpconfiguration │ │ │ │ │ ├── FTPConfigurationDTO.java │ │ │ │ │ └── SimpleFTPConfigurationDTO.java │ │ │ │ ├── help │ │ │ │ │ ├── HelpPageDto.java │ │ │ │ │ └── ModuleDto.java │ │ │ │ ├── imagemetadata │ │ │ │ │ └── ImageMetadataValuesDTO.java │ │ │ │ ├── library │ │ │ │ │ ├── AbstractLibraryParameterValueDTO.java │ │ │ │ │ ├── LibraryDTO.java │ │ │ │ │ ├── LibraryParameterDTO.java │ │ │ │ │ ├── LibraryParameterValueCinesDTO.java │ │ │ │ │ ├── LibraryParameterValuedDTO.java │ │ │ │ │ └── SimpleLibraryDTO.java │ │ │ │ ├── lot │ │ │ │ │ ├── LotDTO.java │ │ │ │ │ ├── LotListDTO.java │ │ │ │ │ ├── LotWithConfigRulesDTO.java │ │ │ │ │ ├── ResultAdminLotDTO.java │ │ │ │ │ ├── SimpleLotDTO.java │ │ │ │ │ └── SimpleLotForDeliveryDTO.java │ │ │ │ ├── multilotsdelivery │ │ │ │ │ └── MultiLotsDeliveryDTO.java │ │ │ │ ├── ocrlangconfiguration │ │ │ │ │ ├── ActivatedOcrLanguageDTO.java │ │ │ │ │ ├── OcrLangConfigurationDTO.java │ │ │ │ │ ├── OcrLanguageDTO.java │ │ │ │ │ └── SimpleOcrLangConfigDTO.java │ │ │ │ ├── project │ │ │ │ │ ├── ProjectDTO.java │ │ │ │ │ ├── ProjectSearchDTO.java │ │ │ │ │ └── SimpleProjectDTO.java │ │ │ │ ├── sample │ │ │ │ │ └── SampleDTO.java │ │ │ │ ├── statistics │ │ │ │ │ ├── StatisticsDocPublishedDTO.java │ │ │ │ │ ├── StatisticsDocRejectedDTO.java │ │ │ │ │ ├── StatisticsDocUnitAverageDTO.java │ │ │ │ │ ├── StatisticsDocUnitCheckDelayDTO.java │ │ │ │ │ ├── StatisticsDocUnitCountDTO.java │ │ │ │ │ ├── StatisticsDocUnitDTO.java │ │ │ │ │ ├── StatisticsDocUnitStatusRatioDTO.java │ │ │ │ │ ├── StatisticsProcessedDocUnitDTO.java │ │ │ │ │ ├── StatisticsProgressDTO.java │ │ │ │ │ ├── StatisticsProjectDTO.java │ │ │ │ │ ├── StatisticsProviderDeliveryDTO.java │ │ │ │ │ ├── StatisticsProviderTrainDTO.java │ │ │ │ │ ├── WorkflowDeliveryProgressDTO.java │ │ │ │ │ ├── WorkflowDocUnitInfoDTO.java │ │ │ │ │ ├── WorkflowDocUnitProgressDTO.java │ │ │ │ │ ├── WorkflowDocUnitProgressDTOPending.java │ │ │ │ │ ├── WorkflowProfileActivityDTO.java │ │ │ │ │ ├── WorkflowStateProgressDTO.java │ │ │ │ │ ├── WorkflowUserActivityDTO.java │ │ │ │ │ ├── WorkflowUserProgressDTO.java │ │ │ │ │ └── csv │ │ │ │ │ │ ├── WorkflowDeliveryProgressCsvDTO.java │ │ │ │ │ │ └── WorkflowDocUnitProgressCsvDTO.java │ │ │ │ ├── train │ │ │ │ │ ├── SimpleTrainDTO.java │ │ │ │ │ └── TrainDTO.java │ │ │ │ ├── user │ │ │ │ │ ├── AddressDTO.java │ │ │ │ │ ├── AuthorizationDTO.java │ │ │ │ │ ├── RoleDTO.java │ │ │ │ │ ├── SimpleUserAccountDTO.java │ │ │ │ │ ├── SimpleUserDTO.java │ │ │ │ │ ├── UserCreationDTO.java │ │ │ │ │ └── UserDTO.java │ │ │ │ └── workflow │ │ │ │ │ ├── BooleanValueDTO.java │ │ │ │ │ ├── DocUnitStateDTO.java │ │ │ │ │ ├── DocUnitWorkflowDTO.java │ │ │ │ │ ├── SimpleWorkflowGroupDTO.java │ │ │ │ │ ├── SimpleWorkflowModelDTO.java │ │ │ │ │ ├── SimpleWorkflowModelStateDTO.java │ │ │ │ │ ├── StateIsDoneDTO.java │ │ │ │ │ ├── WorkflowGroupDTO.java │ │ │ │ │ ├── WorkflowModelDTO.java │ │ │ │ │ └── WorkflowModelStateDTO.java │ │ │ ├── es │ │ │ │ ├── conditionreport │ │ │ │ │ ├── EsConditionReport.java │ │ │ │ │ ├── EsConditionReportDetail.java │ │ │ │ │ ├── EsDescription.java │ │ │ │ │ ├── EsDescriptionProperty.java │ │ │ │ │ └── EsDescriptionValue.java │ │ │ │ ├── delivery │ │ │ │ │ └── EsDelivery.java │ │ │ │ ├── document │ │ │ │ │ ├── EsBibliographicRecord.java │ │ │ │ │ ├── EsCinesPAC.java │ │ │ │ │ ├── EsCinesReport.java │ │ │ │ │ ├── EsDocProperty.java │ │ │ │ │ ├── EsDocPropertyType.java │ │ │ │ │ ├── EsDocUnit.java │ │ │ │ │ ├── EsDocUnitSimple.java │ │ │ │ │ ├── EsInternetArchiveCollection.java │ │ │ │ │ ├── EsInternetArchiveReport.java │ │ │ │ │ └── EsPhysicalDocument.java │ │ │ │ ├── library │ │ │ │ │ └── EsLibrary.java │ │ │ │ ├── lot │ │ │ │ │ └── EsLot.java │ │ │ │ ├── project │ │ │ │ │ └── EsProject.java │ │ │ │ ├── train │ │ │ │ │ └── EsTrain.java │ │ │ │ └── user │ │ │ │ │ └── EsUser.java │ │ │ ├── exchange │ │ │ │ ├── CSVMapping.java │ │ │ │ ├── CSVMappingRule.java │ │ │ │ ├── DataEncoding.java │ │ │ │ ├── FileFormat.java │ │ │ │ ├── ImportReport.java │ │ │ │ ├── ImportedDocUnit.java │ │ │ │ ├── Mapping.java │ │ │ │ ├── MappingRule.java │ │ │ │ ├── cines │ │ │ │ │ ├── CinesLanguageCode.java │ │ │ │ │ └── CinesReport.java │ │ │ │ ├── internetarchive │ │ │ │ │ └── InternetArchiveReport.java │ │ │ │ └── template │ │ │ │ │ ├── Engine.java │ │ │ │ │ ├── Name.java │ │ │ │ │ └── Template.java │ │ │ ├── exportftpconfiguration │ │ │ │ └── ExportFTPConfiguration.java │ │ │ ├── filesgestion │ │ │ │ └── FilesGestionConfig.java │ │ │ ├── ftpconfiguration │ │ │ │ └── FTPConfiguration.java │ │ │ ├── help │ │ │ │ ├── HelpPage.java │ │ │ │ └── HelpPageType.java │ │ │ ├── imagemetadata │ │ │ │ ├── ImageMetadataProperty.java │ │ │ │ └── ImageMetadataValue.java │ │ │ ├── jaxb │ │ │ │ ├── adapters │ │ │ │ │ └── LocalDateTimeXmlAdapter.java │ │ │ │ ├── aip │ │ │ │ │ ├── CodeType.java │ │ │ │ │ ├── CommunicabiliteType.java │ │ │ │ │ ├── DocDCType.java │ │ │ │ │ ├── DocMetaType.java │ │ │ │ │ ├── DocRelationType.java │ │ │ │ │ ├── EmpreinteType.java │ │ │ │ │ ├── EvaluationType.java │ │ │ │ │ ├── FichMetaType.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── PacType.java │ │ │ │ │ ├── StringNotNULLtext.java │ │ │ │ │ ├── StructureFichier.java │ │ │ │ │ ├── TraitementEnum.java │ │ │ │ │ ├── TraitementType.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── avis │ │ │ │ │ ├── CodeErreurType.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── PacAvisType.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── dc │ │ │ │ │ ├── ElementContainer.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── SimpleLiteral.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── ead │ │ │ │ │ ├── Abbr.java │ │ │ │ │ ├── Abstract.java │ │ │ │ │ ├── Accessrestrict.java │ │ │ │ │ ├── Accruals.java │ │ │ │ │ ├── Acqinfo.java │ │ │ │ │ ├── Address.java │ │ │ │ │ ├── Addressline.java │ │ │ │ │ ├── Altformavail.java │ │ │ │ │ ├── Appraisal.java │ │ │ │ │ ├── Arc.java │ │ │ │ │ ├── Archdesc.java │ │ │ │ │ ├── Archref.java │ │ │ │ │ ├── Arrangement.java │ │ │ │ │ ├── Author.java │ │ │ │ │ ├── AvLevel.java │ │ │ │ │ ├── AvRender.java │ │ │ │ │ ├── Bibliography.java │ │ │ │ │ ├── Bibref.java │ │ │ │ │ ├── Bibseries.java │ │ │ │ │ ├── Bioghist.java │ │ │ │ │ ├── Blockquote.java │ │ │ │ │ ├── C.java │ │ │ │ │ ├── C01.java │ │ │ │ │ ├── C02.java │ │ │ │ │ ├── C03.java │ │ │ │ │ ├── C04.java │ │ │ │ │ ├── C05.java │ │ │ │ │ ├── C06.java │ │ │ │ │ ├── C07.java │ │ │ │ │ ├── C08.java │ │ │ │ │ ├── C09.java │ │ │ │ │ ├── C10.java │ │ │ │ │ ├── C11.java │ │ │ │ │ ├── C12.java │ │ │ │ │ ├── Change.java │ │ │ │ │ ├── Chronitem.java │ │ │ │ │ ├── Chronlist.java │ │ │ │ │ ├── Colspec.java │ │ │ │ │ ├── Container.java │ │ │ │ │ ├── Controlaccess.java │ │ │ │ │ ├── Corpname.java │ │ │ │ │ ├── Creation.java │ │ │ │ │ ├── Custodhist.java │ │ │ │ │ ├── Dao.java │ │ │ │ │ ├── Daodesc.java │ │ │ │ │ ├── Daogrp.java │ │ │ │ │ ├── Daoloc.java │ │ │ │ │ ├── Date.java │ │ │ │ │ ├── Defitem.java │ │ │ │ │ ├── Descgrp.java │ │ │ │ │ ├── Descrules.java │ │ │ │ │ ├── Did.java │ │ │ │ │ ├── Dimensions.java │ │ │ │ │ ├── Div.java │ │ │ │ │ ├── Dsc.java │ │ │ │ │ ├── Ead.java │ │ │ │ │ ├── Eadheader.java │ │ │ │ │ ├── Eadid.java │ │ │ │ │ ├── Edition.java │ │ │ │ │ ├── Editionstmt.java │ │ │ │ │ ├── Emph.java │ │ │ │ │ ├── Entry.java │ │ │ │ │ ├── Event.java │ │ │ │ │ ├── Eventgrp.java │ │ │ │ │ ├── Expan.java │ │ │ │ │ ├── Extent.java │ │ │ │ │ ├── Extptr.java │ │ │ │ │ ├── Extptrloc.java │ │ │ │ │ ├── Extref.java │ │ │ │ │ ├── Extrefloc.java │ │ │ │ │ ├── Famname.java │ │ │ │ │ ├── Filedesc.java │ │ │ │ │ ├── Fileplan.java │ │ │ │ │ ├── Frontmatter.java │ │ │ │ │ ├── Function.java │ │ │ │ │ ├── Genreform.java │ │ │ │ │ ├── Geogname.java │ │ │ │ │ ├── Head.java │ │ │ │ │ ├── Head01.java │ │ │ │ │ ├── Head02.java │ │ │ │ │ ├── Imprint.java │ │ │ │ │ ├── Index.java │ │ │ │ │ ├── Indexentry.java │ │ │ │ │ ├── Item.java │ │ │ │ │ ├── Label.java │ │ │ │ │ ├── Langmaterial.java │ │ │ │ │ ├── Language.java │ │ │ │ │ ├── Langusage.java │ │ │ │ │ ├── Lb.java │ │ │ │ │ ├── Legalstatus.java │ │ │ │ │ ├── Linkgrp.java │ │ │ │ │ ├── List.java │ │ │ │ │ ├── Listhead.java │ │ │ │ │ ├── Materialspec.java │ │ │ │ │ ├── Name.java │ │ │ │ │ ├── Namegrp.java │ │ │ │ │ ├── Note.java │ │ │ │ │ ├── Notestmt.java │ │ │ │ │ ├── Num.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── Occupation.java │ │ │ │ │ ├── Odd.java │ │ │ │ │ ├── Originalsloc.java │ │ │ │ │ ├── Origination.java │ │ │ │ │ ├── Otherfindaid.java │ │ │ │ │ ├── P.java │ │ │ │ │ ├── Persname.java │ │ │ │ │ ├── Physdesc.java │ │ │ │ │ ├── Physfacet.java │ │ │ │ │ ├── Physloc.java │ │ │ │ │ ├── Phystech.java │ │ │ │ │ ├── Prefercite.java │ │ │ │ │ ├── Processinfo.java │ │ │ │ │ ├── Profiledesc.java │ │ │ │ │ ├── Ptr.java │ │ │ │ │ ├── Ptrgrp.java │ │ │ │ │ ├── Ptrloc.java │ │ │ │ │ ├── Publicationstmt.java │ │ │ │ │ ├── Publisher.java │ │ │ │ │ ├── Ref.java │ │ │ │ │ ├── Refloc.java │ │ │ │ │ ├── Relatedmaterial.java │ │ │ │ │ ├── Repository.java │ │ │ │ │ ├── Resource.java │ │ │ │ │ ├── Revisiondesc.java │ │ │ │ │ ├── Row.java │ │ │ │ │ ├── Runner.java │ │ │ │ │ ├── Scopecontent.java │ │ │ │ │ ├── Separatedmaterial.java │ │ │ │ │ ├── Seriesstmt.java │ │ │ │ │ ├── Sponsor.java │ │ │ │ │ ├── Subarea.java │ │ │ │ │ ├── Subject.java │ │ │ │ │ ├── Subtitle.java │ │ │ │ │ ├── Table.java │ │ │ │ │ ├── Tbody.java │ │ │ │ │ ├── Tgroup.java │ │ │ │ │ ├── Thead.java │ │ │ │ │ ├── Title.java │ │ │ │ │ ├── Titlepage.java │ │ │ │ │ ├── Titleproper.java │ │ │ │ │ ├── Titlestmt.java │ │ │ │ │ ├── Unitdate.java │ │ │ │ │ ├── Unitid.java │ │ │ │ │ ├── Unittitle.java │ │ │ │ │ ├── Userestrict.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── facile │ │ │ │ │ ├── FacileResponse.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── ValidatorType.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── mets │ │ │ │ │ ├── AmdSecType.java │ │ │ │ │ ├── AreaType.java │ │ │ │ │ ├── BehaviorSecType.java │ │ │ │ │ ├── BehaviorType.java │ │ │ │ │ ├── DivType.java │ │ │ │ │ ├── FileGrpType.java │ │ │ │ │ ├── FileType.java │ │ │ │ │ ├── MdSecType.java │ │ │ │ │ ├── Mets.java │ │ │ │ │ ├── MetsType.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── ObjectType.java │ │ │ │ │ ├── ParType.java │ │ │ │ │ ├── SeqType.java │ │ │ │ │ ├── StructLinkType.java │ │ │ │ │ ├── StructMapType.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── mix │ │ │ │ │ ├── AutoFocusType.java │ │ │ │ │ ├── BackLightType.java │ │ │ │ │ ├── Base64BinaryType.java │ │ │ │ │ ├── BasicDigitalObjectInformationType.java │ │ │ │ │ ├── BasicImageInformationType.java │ │ │ │ │ ├── BitsPerSampleUnit.java │ │ │ │ │ ├── ByteOrderType.java │ │ │ │ │ ├── CameraSensorType.java │ │ │ │ │ ├── CaptureDeviceType.java │ │ │ │ │ ├── ChangeHistoryType.java │ │ │ │ │ ├── ComponentPhotometricInterpretationType.java │ │ │ │ │ ├── ComponentUnitType.java │ │ │ │ │ ├── ComponentUseType.java │ │ │ │ │ ├── DateType.java │ │ │ │ │ ├── DecimalType.java │ │ │ │ │ ├── DjvuFormatType.java │ │ │ │ │ ├── EnumType.java │ │ │ │ │ ├── ExposureProgramType.java │ │ │ │ │ ├── ExtensionType.java │ │ │ │ │ ├── ExtraSamplesType.java │ │ │ │ │ ├── FlashType.java │ │ │ │ │ ├── GpsAltitudeRefType.java │ │ │ │ │ ├── GpsDestBearingRefType.java │ │ │ │ │ ├── GpsDestDistanceRefType.java │ │ │ │ │ ├── GpsDestLatitudeRefType.java │ │ │ │ │ ├── GpsDestLongitudeRefType.java │ │ │ │ │ ├── GpsDifferentialType.java │ │ │ │ │ ├── GpsImgDirectionRefType.java │ │ │ │ │ ├── GpsLatitudeRefType.java │ │ │ │ │ ├── GpsLongitudeRefType.java │ │ │ │ │ ├── GpsSpeedRefType.java │ │ │ │ │ ├── GpsStatusType.java │ │ │ │ │ ├── GpsTrackRefType.java │ │ │ │ │ ├── GrayResponseCurveType.java │ │ │ │ │ ├── GrayResponseUnitType.java │ │ │ │ │ ├── ImageAssessmentMetadataType.java │ │ │ │ │ ├── ImageCaptureMetadataType.java │ │ │ │ │ ├── IntegerType.java │ │ │ │ │ ├── LightSourceType.java │ │ │ │ │ ├── MessageDigestAlgorithmType.java │ │ │ │ │ ├── MeteringModeType.java │ │ │ │ │ ├── Mix.java │ │ │ │ │ ├── MixType.java │ │ │ │ │ ├── NonNegativeIntegerType.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── OpticalResolutionUnitType.java │ │ │ │ │ ├── OrientationType.java │ │ │ │ │ ├── PositiveIntegerType.java │ │ │ │ │ ├── RationalType.java │ │ │ │ │ ├── RealType.java │ │ │ │ │ ├── SamplingFrequencyPlaneType.java │ │ │ │ │ ├── SamplingFrequencyUnitType.java │ │ │ │ │ ├── ScannerSensorType.java │ │ │ │ │ ├── SensingMethodType.java │ │ │ │ │ ├── SourceDimensionUnitType.java │ │ │ │ │ ├── StringType.java │ │ │ │ │ ├── TargetTypeType.java │ │ │ │ │ ├── TypeOfAutoFocusType.java │ │ │ │ │ ├── TypeOfBackLightType.java │ │ │ │ │ ├── TypeOfBitsPerSampleUnitType.java │ │ │ │ │ ├── TypeOfByteOrderType.java │ │ │ │ │ ├── TypeOfCameraSensorType.java │ │ │ │ │ ├── TypeOfCaptureDeviceType.java │ │ │ │ │ ├── TypeOfComponentPhotometricInterpretationType.java │ │ │ │ │ ├── TypeOfComponentUnitType.java │ │ │ │ │ ├── TypeOfComponentUseType.java │ │ │ │ │ ├── TypeOfDateType.java │ │ │ │ │ ├── TypeOfDjvuFormatType.java │ │ │ │ │ ├── TypeOfEnumType.java │ │ │ │ │ ├── TypeOfExifVersionType.java │ │ │ │ │ ├── TypeOfExposureProgramType.java │ │ │ │ │ ├── TypeOfExtraSamplesType.java │ │ │ │ │ ├── TypeOfFlashType.java │ │ │ │ │ ├── TypeOfGrayResponseCurveType.java │ │ │ │ │ ├── TypeOfGrayResponseUnitType.java │ │ │ │ │ ├── TypeOfLightSourceType.java │ │ │ │ │ ├── TypeOfMessageDigestAlgorithmType.java │ │ │ │ │ ├── TypeOfMeteringModeType.java │ │ │ │ │ ├── TypeOfNonNegativeDecimalType.java │ │ │ │ │ ├── TypeOfNonNegativeRealType.java │ │ │ │ │ ├── TypeOfOpticalResolutionUnitType.java │ │ │ │ │ ├── TypeOfOrientationType.java │ │ │ │ │ ├── TypeOfPositiveRealType.java │ │ │ │ │ ├── TypeOfPreviousImageMetadataType.java │ │ │ │ │ ├── TypeOfSamplingFrequencyPlaneType.java │ │ │ │ │ ├── TypeOfSamplingFrequencyUnitType.java │ │ │ │ │ ├── TypeOfScannerSensorType.java │ │ │ │ │ ├── TypeOfSensingMethodType.java │ │ │ │ │ ├── TypeOfTargetTypeType.java │ │ │ │ │ ├── TypeOfYCbCrPositioningType.java │ │ │ │ │ ├── TypeOfYCbCrSubsampleHorizType.java │ │ │ │ │ ├── TypeOfYCbCrSubsampleVertType.java │ │ │ │ │ ├── TypeOfgpsAltitudeRefType.java │ │ │ │ │ ├── TypeOfgpsDestBearingRefType.java │ │ │ │ │ ├── TypeOfgpsDestDistanceRefType.java │ │ │ │ │ ├── TypeOfgpsDestLatitudeRefType.java │ │ │ │ │ ├── TypeOfgpsDestLongitudeRefType.java │ │ │ │ │ ├── TypeOfgpsDifferentialType.java │ │ │ │ │ ├── TypeOfgpsImgDirectionRefType.java │ │ │ │ │ ├── TypeOfgpsLatitudeRefType.java │ │ │ │ │ ├── TypeOfgpsLongitudeRefType.java │ │ │ │ │ ├── TypeOfgpsMeasureModeType.java │ │ │ │ │ ├── TypeOfgpsSpeedRefType.java │ │ │ │ │ ├── TypeOfgpsStatusType.java │ │ │ │ │ ├── TypeOfgpsTrackRefType.java │ │ │ │ │ ├── TypeOfsourceDimensionUnitType.java │ │ │ │ │ ├── URIType.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── oaidc │ │ │ │ │ ├── ElementType.java │ │ │ │ │ ├── OaiDcType.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── oaipmh │ │ │ │ │ ├── AboutType.java │ │ │ │ │ ├── DeletedRecordType.java │ │ │ │ │ ├── DescriptionType.java │ │ │ │ │ ├── GetRecordType.java │ │ │ │ │ ├── GranularityType.java │ │ │ │ │ ├── HeaderType.java │ │ │ │ │ ├── IdentifyType.java │ │ │ │ │ ├── ListIdentifiersType.java │ │ │ │ │ ├── ListMetadataFormatsType.java │ │ │ │ │ ├── ListRecordsType.java │ │ │ │ │ ├── ListSetsType.java │ │ │ │ │ ├── MetadataFormatType.java │ │ │ │ │ ├── MetadataType.java │ │ │ │ │ ├── OAIPMHerrorType.java │ │ │ │ │ ├── OAIPMHerrorcodeType.java │ │ │ │ │ ├── OAIPMHtype.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── RecordType.java │ │ │ │ │ ├── RequestType.java │ │ │ │ │ ├── ResumptionTokenType.java │ │ │ │ │ ├── SetType.java │ │ │ │ │ ├── StatusType.java │ │ │ │ │ ├── VerbType.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── ppdi │ │ │ │ │ ├── ArchivageType.java │ │ │ │ │ ├── CadreType.java │ │ │ │ │ ├── CaracteristiquesType.java │ │ │ │ │ ├── CircuitProductionType.java │ │ │ │ │ ├── CommunicabiliteType.java │ │ │ │ │ ├── ContexteType.java │ │ │ │ │ ├── DocDCDescriptionType.java │ │ │ │ │ ├── DocMetaDescriptionType.java │ │ │ │ │ ├── DocRelationType.java │ │ │ │ │ ├── DocumentsType.java │ │ │ │ │ ├── EvaluationType.java │ │ │ │ │ ├── FichMetaDescriptionType.java │ │ │ │ │ ├── FondsType.java │ │ │ │ │ ├── MdMetierType.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── PpdiType.java │ │ │ │ │ ├── ProducteurType.java │ │ │ │ │ ├── ServiceVersantType.java │ │ │ │ │ ├── SipDescriptionType.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── rdf │ │ │ │ │ ├── DescriptionType.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── RDF.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── sip │ │ │ │ │ ├── CodeType.java │ │ │ │ │ ├── CommunicabiliteType.java │ │ │ │ │ ├── DocDCType.java │ │ │ │ │ ├── DocMetaType.java │ │ │ │ │ ├── DocRelationType.java │ │ │ │ │ ├── EmpreinteOri.java │ │ │ │ │ ├── EvaluationType.java │ │ │ │ │ ├── FichMetaType.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── PacType.java │ │ │ │ │ ├── StringNotNULLtext.java │ │ │ │ │ ├── StructureFichier.java │ │ │ │ │ ├── TraitementEnum.java │ │ │ │ │ ├── TraitementType.java │ │ │ │ │ └── package-info.java │ │ │ │ └── urn │ │ │ │ │ ├── AccessRestrictionCodeType.java │ │ │ │ │ └── ObjectFactory.java │ │ │ ├── library │ │ │ │ ├── AbstractLibraryParameterValue.java │ │ │ │ ├── Library.java │ │ │ │ ├── LibraryParameter.java │ │ │ │ └── LibraryParameterValueCines.java │ │ │ ├── lot │ │ │ │ └── Lot.java │ │ │ ├── multilotsdelivery │ │ │ │ └── MultiLotsDelivery.java │ │ │ ├── ocrlangconfiguration │ │ │ │ ├── ActivatedOcrLanguage.java │ │ │ │ ├── OcrLangConfiguration.java │ │ │ │ └── OcrLanguage.java │ │ │ ├── platform │ │ │ │ └── Platform.java │ │ │ ├── project │ │ │ │ └── Project.java │ │ │ ├── security │ │ │ │ └── PersistentToken.java │ │ │ ├── storage │ │ │ │ ├── CheckSummedStoredFile.java │ │ │ │ └── StoredFile.java │ │ │ ├── train │ │ │ │ └── Train.java │ │ │ ├── user │ │ │ │ ├── Address.java │ │ │ │ ├── Authorization.java │ │ │ │ ├── Dashboard.java │ │ │ │ ├── Lang.java │ │ │ │ ├── Role.java │ │ │ │ └── User.java │ │ │ ├── util │ │ │ │ ├── CustomUUIDGenerator.java │ │ │ │ └── CustomUserDetails.java │ │ │ └── workflow │ │ │ │ ├── DocUnitState.java │ │ │ │ ├── DocUnitWorkflow.java │ │ │ │ ├── WorkflowGroup.java │ │ │ │ ├── WorkflowModel.java │ │ │ │ ├── WorkflowModelState.java │ │ │ │ ├── WorkflowModelStateType.java │ │ │ │ ├── WorkflowStateKey.java │ │ │ │ ├── WorkflowStateStatus.java │ │ │ │ └── state │ │ │ │ ├── ArchivageDocumentState.java │ │ │ │ ├── ClotureDocumentState.java │ │ │ │ ├── ConstatEtatApresNumerisationState.java │ │ │ │ ├── ConstatEtatAvantNumerisationState.java │ │ │ │ ├── ControlesAutomatiquesEnCoursState.java │ │ │ │ ├── ControlesQualiteState.java │ │ │ │ ├── DiffusionDocumentDigitalLibraryState.java │ │ │ │ ├── DiffusionDocumentLocaleState.java │ │ │ │ ├── DiffusionDocumentOmekaState.java │ │ │ │ ├── DiffusionDocumentState.java │ │ │ │ ├── GenerationBordereauState.java │ │ │ │ ├── InitialisationDocumentState.java │ │ │ │ ├── LivraisonDocumentEnCoursState.java │ │ │ │ ├── NumerisationEnAttenteState.java │ │ │ │ ├── PreRejetState.java │ │ │ │ ├── PreValidationState.java │ │ │ │ ├── RapportsControleState.java │ │ │ │ ├── ReLivraisonDocumentEnCoursState.java │ │ │ │ ├── ValidationBordereauConstatEtatState.java │ │ │ │ ├── ValidationConstatEtatState.java │ │ │ │ ├── ValidationDocumentState.java │ │ │ │ └── ValidationNoticesState.java │ │ │ ├── exception │ │ │ ├── ExportCinesException.java │ │ │ ├── PgcnBusinessException.java │ │ │ ├── PgcnException.java │ │ │ ├── PgcnExceptionLevel.java │ │ │ ├── PgcnListValidationException.java │ │ │ ├── PgcnLockException.java │ │ │ ├── PgcnTechnicalException.java │ │ │ ├── PgcnUnAuthorizedException.java │ │ │ ├── PgcnUncheckedException.java │ │ │ ├── PgcnValidationException.java │ │ │ ├── dto │ │ │ │ └── PgcnBusinessExceptionDTO.java │ │ │ └── message │ │ │ │ ├── PgcnError.java │ │ │ │ ├── PgcnErrorCode.java │ │ │ │ └── PgcnList.java │ │ │ ├── repository │ │ │ ├── LockRepository.java │ │ │ ├── administration │ │ │ │ ├── CinesPACRepository.java │ │ │ │ ├── InternetArchiveCollectionRepository.java │ │ │ │ ├── InternetArchiveConfigurationRepository.java │ │ │ │ ├── InternetArchiveConfigurationRepositoryCustom.java │ │ │ │ ├── InternetArchiveConfigurationRepositoryImpl.java │ │ │ │ ├── MailboxConfigurationRepository.java │ │ │ │ ├── MailboxConfigurationRepositoryCustom.java │ │ │ │ ├── MailboxConfigurationRepositoryImpl.java │ │ │ │ ├── SftpConfigurationRepository.java │ │ │ │ ├── SftpConfigurationRepositoryCustom.java │ │ │ │ ├── SftpConfigurationRepositoryImpl.java │ │ │ │ ├── TransliterationRepository.java │ │ │ │ ├── digitallibrary │ │ │ │ │ ├── DigitalLibraryConfigurationRepository.java │ │ │ │ │ ├── DigitalLibraryConfigurationRepositoryCustom.java │ │ │ │ │ └── DigitalLibraryConfigurationRepositoryImpl.java │ │ │ │ ├── omeka │ │ │ │ │ ├── OmekaConfigurationRepository.java │ │ │ │ │ ├── OmekaConfigurationRepositoryCustom.java │ │ │ │ │ ├── OmekaConfigurationRepositoryImpl.java │ │ │ │ │ └── OmekaListRepository.java │ │ │ │ ├── viewsformat │ │ │ │ │ ├── ViewsFormatConfigurationRepository.java │ │ │ │ │ ├── ViewsFormatConfigurationRepositoryCustom.java │ │ │ │ │ └── ViewsFormatConfigurationRepositoryImpl.java │ │ │ │ └── z3950 │ │ │ │ │ └── Z3950ServerRepository.java │ │ │ ├── audit │ │ │ │ ├── AbstractAuditRepository.java │ │ │ │ ├── AuditDeliveryRepository.java │ │ │ │ ├── AuditDocUnitRepository.java │ │ │ │ ├── AuditLotRepository.java │ │ │ │ ├── AuditMappingRepository.java │ │ │ │ ├── AuditProjectRepository.java │ │ │ │ └── AuditTrainRepository.java │ │ │ ├── check │ │ │ │ ├── AutomaticCheckResultRepository.java │ │ │ │ └── AutomaticCheckTypeRepository.java │ │ │ ├── checkconfiguration │ │ │ │ ├── AutomaticCheckRuleRepository.java │ │ │ │ ├── CheckConfigurationRepository.java │ │ │ │ ├── CheckConfigurationRepositoryCustom.java │ │ │ │ └── CheckConfigurationRepositoryImpl.java │ │ │ ├── delivery │ │ │ │ ├── DeliveryRepository.java │ │ │ │ ├── DeliveryRepositoryCustom.java │ │ │ │ ├── DeliveryRepositoryImpl.java │ │ │ │ └── helper │ │ │ │ │ └── DeliverySearchBuilder.java │ │ │ ├── document │ │ │ │ ├── BibliographicRecordRepository.java │ │ │ │ ├── BibliographicRecordRepositoryCustom.java │ │ │ │ ├── BibliographicRecordRepositoryImpl.java │ │ │ │ ├── CheckRepository.java │ │ │ │ ├── CheckSlipRepository.java │ │ │ │ ├── DigitalDocumentRepository.java │ │ │ │ ├── DigitalDocumentRepositoryCustom.java │ │ │ │ ├── DigitalDocumentRepositoryImpl.java │ │ │ │ ├── DocCheckHistoryRepository.java │ │ │ │ ├── DocCheckHistoryRepositoryCustom.java │ │ │ │ ├── DocCheckHistoryRepositoryImpl.java │ │ │ │ ├── DocPageRepository.java │ │ │ │ ├── DocPropertyRepository.java │ │ │ │ ├── DocPropertyTypeRepository.java │ │ │ │ ├── DocSiblingRepository.java │ │ │ │ ├── DocUnitRepository.java │ │ │ │ ├── DocUnitRepositoryCustom.java │ │ │ │ ├── DocUnitRepositoryImpl.java │ │ │ │ ├── GlobalCheckRepository.java │ │ │ │ ├── PhysicalDocumentRepository.java │ │ │ │ ├── common │ │ │ │ │ └── LanguageCodeRepository.java │ │ │ │ └── conditionreport │ │ │ │ │ ├── ConditionReportAttachmentRepository.java │ │ │ │ │ ├── ConditionReportDetailRepository.java │ │ │ │ │ ├── ConditionReportRepository.java │ │ │ │ │ ├── ConditionReportRepositoryCustom.java │ │ │ │ │ ├── ConditionReportRepositoryImpl.java │ │ │ │ │ ├── DescriptionPropertyRepository.java │ │ │ │ │ ├── DescriptionRepository.java │ │ │ │ │ ├── DescriptionValueRepository.java │ │ │ │ │ └── PropertyConfigurationRepository.java │ │ │ ├── es │ │ │ │ ├── AbstractEsRepository.java │ │ │ │ ├── EsConditionReportRepository.java │ │ │ │ ├── EsConditionReportRepositoryCustom.java │ │ │ │ ├── EsConditionReportRepositoryImpl.java │ │ │ │ ├── EsDeliveryRepository.java │ │ │ │ ├── EsDeliveryRepositoryCustom.java │ │ │ │ ├── EsDeliveryRepositoryImpl.java │ │ │ │ ├── EsDocUnitRepository.java │ │ │ │ ├── EsDocUnitRepositoryCustom.java │ │ │ │ ├── EsDocUnitRepositoryImpl.java │ │ │ │ ├── EsLotRepository.java │ │ │ │ ├── EsLotRepositoryCustom.java │ │ │ │ ├── EsLotRepositoryImpl.java │ │ │ │ ├── EsProjectRepository.java │ │ │ │ ├── EsProjectRepositoryCustom.java │ │ │ │ ├── EsProjectRepositoryImpl.java │ │ │ │ ├── EsTrainRepository.java │ │ │ │ ├── EsTrainRepositoryCustom.java │ │ │ │ ├── EsTrainRepositoryImpl.java │ │ │ │ └── helper │ │ │ │ │ ├── EsBoolOperator.java │ │ │ │ │ ├── EsQueryBuilder.java │ │ │ │ │ ├── EsQueryHelper.java │ │ │ │ │ ├── EsSearchOperation.java │ │ │ │ │ ├── EsSort.java │ │ │ │ │ └── SearchResultPage.java │ │ │ ├── exchange │ │ │ │ ├── CSVMappingRepository.java │ │ │ │ ├── ImportReportRepository.java │ │ │ │ ├── ImportReportRepositoryCustom.java │ │ │ │ ├── ImportReportRepositoryImpl.java │ │ │ │ ├── ImportedDocUnitRepository.java │ │ │ │ ├── ImportedDocUnitRepositoryCustom.java │ │ │ │ ├── ImportedDocUnitRepositoryImpl.java │ │ │ │ ├── MappingRepository.java │ │ │ │ ├── MappingRuleRepository.java │ │ │ │ ├── cines │ │ │ │ │ ├── CinesLanguageCodeRepository.java │ │ │ │ │ ├── CinesReportRepository.java │ │ │ │ │ ├── CinesReportRepositoryCustom.java │ │ │ │ │ └── CinesReportRepositoryImpl.java │ │ │ │ ├── internetarchive │ │ │ │ │ ├── InternetArchiveReportRepository.java │ │ │ │ │ ├── InternetArchiveReportRepositoryCustom.java │ │ │ │ │ └── InternetArchiveReportRepositoryImpl.java │ │ │ │ └── template │ │ │ │ │ └── TemplateRepository.java │ │ │ ├── exportftpconfiguration │ │ │ │ ├── ExportFTPConfigurationRepository.java │ │ │ │ ├── ExportFTPConfigurationRepositoryCustom.java │ │ │ │ └── ExportFTPConfigurationRepositoryImpl.java │ │ │ ├── filesgestion │ │ │ │ └── FilesGestionConfigRepository.java │ │ │ ├── ftpconfiguration │ │ │ │ ├── FTPConfigurationRepository.java │ │ │ │ ├── FTPConfigurationRepositoryCustom.java │ │ │ │ └── FTPConfigurationRepositoryImpl.java │ │ │ ├── help │ │ │ │ ├── HelpPageRepository.java │ │ │ │ ├── HelpPageRepositoryCustom.java │ │ │ │ └── HelpPageRepositoryImpl.java │ │ │ ├── imagemetadata │ │ │ │ ├── ImageMetadataRepository.java │ │ │ │ └── ImageMetadataValuesRepository.java │ │ │ ├── library │ │ │ │ ├── LibraryParameterCinesRepository.java │ │ │ │ ├── LibraryParameterRepository.java │ │ │ │ ├── LibraryRepository.java │ │ │ │ ├── LibraryRepositoryCustom.java │ │ │ │ └── LibraryRepositoryImpl.java │ │ │ ├── lot │ │ │ │ ├── LotRepository.java │ │ │ │ ├── LotRepositoryCustom.java │ │ │ │ ├── LotRepositoryImpl.java │ │ │ │ └── helper │ │ │ │ │ └── LotSearchBuilder.java │ │ │ ├── multilotsdelivery │ │ │ │ ├── MultiLotsDeliveryRepository.java │ │ │ │ ├── MultiLotsDeliveryRepositoryCustom.java │ │ │ │ └── MultiLotsDeliveryRepositoryImpl.java │ │ │ ├── ocrlangconfiguration │ │ │ │ ├── ActivatedOcrLanguageRepository.java │ │ │ │ ├── OcrLangConfigurationRepository.java │ │ │ │ ├── OcrLangConfigurationRepositoryCustom.java │ │ │ │ ├── OcrLangConfigurationRepositoryImpl.java │ │ │ │ └── OcrLanguageRepository.java │ │ │ ├── project │ │ │ │ ├── ProjectRepository.java │ │ │ │ ├── ProjectRepositoryCustom.java │ │ │ │ ├── ProjectRepositoryImpl.java │ │ │ │ └── helper │ │ │ │ │ └── ProjectSearchBuilder.java │ │ │ ├── sample │ │ │ │ └── SampleRepository.java │ │ │ ├── security │ │ │ │ └── PersistentTokenRepository.java │ │ │ ├── storage │ │ │ │ ├── BinaryRepository.java │ │ │ │ └── StoredFileRepository.java │ │ │ ├── train │ │ │ │ ├── TrainRepository.java │ │ │ │ ├── TrainRepositoryCustom.java │ │ │ │ └── TrainRepositoryImpl.java │ │ │ ├── user │ │ │ │ ├── AddressRepository.java │ │ │ │ ├── AuthorizationRepository.java │ │ │ │ ├── DashboardRepository.java │ │ │ │ ├── RoleRepository.java │ │ │ │ ├── RoleRepositoryCustom.java │ │ │ │ ├── RoleRepositoryImpl.java │ │ │ │ ├── UserRepository.java │ │ │ │ ├── UserRepositoryCustom.java │ │ │ │ └── UserRepositoryImpl.java │ │ │ ├── util │ │ │ │ ├── HibernateUtils.java │ │ │ │ └── QueryDSLBuilderUtils.java │ │ │ └── workflow │ │ │ │ ├── DocUnitStateRepository.java │ │ │ │ ├── DocUnitStateRepositoryCustom.java │ │ │ │ ├── DocUnitStateRepositoryImpl.java │ │ │ │ ├── DocUnitWorkflowRepository.java │ │ │ │ ├── DocUnitWorkflowRepositoryCustom.java │ │ │ │ ├── DocUnitWorkflowRepositoryImpl.java │ │ │ │ ├── WorkflowGroupRepository.java │ │ │ │ ├── WorkflowGroupRepositoryCustom.java │ │ │ │ ├── WorkflowGroupRepositoryImpl.java │ │ │ │ ├── WorkflowModelRepository.java │ │ │ │ ├── WorkflowModelRepositoryCustom.java │ │ │ │ ├── WorkflowModelRepositoryImpl.java │ │ │ │ ├── WorkflowModelStateRepository.java │ │ │ │ ├── WorkflowModelStateRepositoryCustom.java │ │ │ │ └── helper │ │ │ │ ├── DocUnitWorkflowHelper.java │ │ │ │ └── DocUnitWorkflowSearchBuilder.java │ │ │ ├── security │ │ │ ├── AjaxAuthenticationFailureHandler.java │ │ │ ├── AjaxAuthenticationSuccessHandler.java │ │ │ ├── AjaxLogoutSuccessHandler.java │ │ │ ├── CustomPersistentRememberMeServices.java │ │ │ ├── Http401UnauthorizedEntryPoint.java │ │ │ ├── PersistentTokenCache.java │ │ │ ├── SecurityUtils.java │ │ │ ├── SpringSecurityAuditorAware.java │ │ │ ├── UserDetailsService.java │ │ │ ├── UserNotActivatedException.java │ │ │ └── UserWithoutRoleException.java │ │ │ ├── service │ │ │ ├── JasperReportsService.java │ │ │ ├── LockService.java │ │ │ ├── MailService.java │ │ │ ├── administration │ │ │ │ ├── CinesPACService.java │ │ │ │ ├── InternetArchiveCollectionService.java │ │ │ │ ├── InternetArchiveConfigurationService.java │ │ │ │ ├── MailboxConfigurationService.java │ │ │ │ ├── SftpConfigurationService.java │ │ │ │ ├── TransliterationService.java │ │ │ │ ├── digitallibrary │ │ │ │ │ └── DigitalLibraryConfigurationService.java │ │ │ │ ├── logs │ │ │ │ │ └── AdminLogsService.java │ │ │ │ ├── mapper │ │ │ │ │ ├── CinesPACMapper.java │ │ │ │ │ ├── DigitalLibraryConfigurationMapper.java │ │ │ │ │ ├── InternetArchiveCollectionMapper.java │ │ │ │ │ ├── InternetArchiveConfigurationMapper.java │ │ │ │ │ ├── MailboxConfigurationMapper.java │ │ │ │ │ ├── OmekaConfigurationMapper.java │ │ │ │ │ ├── OmekaListMapper.java │ │ │ │ │ ├── SftpConfigurationMapper.java │ │ │ │ │ ├── SimpleViewsFormatConfigurationMapper.java │ │ │ │ │ ├── ViewsFormatConfigurationMapper.java │ │ │ │ │ └── Z3950ServerMapper.java │ │ │ │ ├── omeka │ │ │ │ │ ├── OmekaConfigurationService.java │ │ │ │ │ ├── OmekaListService.java │ │ │ │ │ └── UIOmekaConfigurationService.java │ │ │ │ ├── viewsformat │ │ │ │ │ ├── UIViewsFormatConfigurationService.java │ │ │ │ │ └── ViewsFormatConfigurationService.java │ │ │ │ └── z3950 │ │ │ │ │ └── Z3950ServerService.java │ │ │ ├── audit │ │ │ │ ├── AuditDeliveryService.java │ │ │ │ ├── AuditDocUnitService.java │ │ │ │ ├── AuditLotService.java │ │ │ │ ├── AuditMappingService.java │ │ │ │ ├── AuditProjectService.java │ │ │ │ └── AuditTrainService.java │ │ │ ├── check │ │ │ │ ├── AutomaticCheckService.java │ │ │ │ ├── FacileCinesService.java │ │ │ │ ├── MetaDatasCheckService.java │ │ │ │ └── mapper │ │ │ │ │ ├── AutomaticCheckResultMapper.java │ │ │ │ │ └── AutomaticCheckTypeMapper.java │ │ │ ├── checkconfiguration │ │ │ │ ├── AutomaticCheckRuleService.java │ │ │ │ ├── CheckConfigurationService.java │ │ │ │ ├── mapper │ │ │ │ │ ├── AutomaticCheckRuleMapper.java │ │ │ │ │ ├── CheckConfigurationMapper.java │ │ │ │ │ ├── SimpleCheckConfigurationMapper.java │ │ │ │ │ └── UICheckConfigurationMapper.java │ │ │ │ └── ui │ │ │ │ │ └── UICheckConfigurationService.java │ │ │ ├── delivery │ │ │ │ ├── DeliveryAsyncService.java │ │ │ │ ├── DeliveryConfigurationService.java │ │ │ │ ├── DeliveryProcessResults.java │ │ │ │ ├── DeliveryProcessService.java │ │ │ │ ├── DeliveryReportingService.java │ │ │ │ ├── DeliveryService.java │ │ │ │ ├── PrefixedDocuments.java │ │ │ │ ├── PrefixedDocumentsDTO.java │ │ │ │ ├── mapper │ │ │ │ │ ├── DeliveryMapper.java │ │ │ │ │ ├── PrefixedDocumentsMapper.java │ │ │ │ │ └── UIDeliveryMapper.java │ │ │ │ └── ui │ │ │ │ │ └── UIDeliveryService.java │ │ │ ├── document │ │ │ │ ├── BibliographicRecordService.java │ │ │ │ ├── CheckService.java │ │ │ │ ├── CheckSlipConfigurationService.java │ │ │ │ ├── CheckSlipService.java │ │ │ │ ├── DigitalDocumentService.java │ │ │ │ ├── DocCheckHistoryService.java │ │ │ │ ├── DocPageService.java │ │ │ │ ├── DocPropertyService.java │ │ │ │ ├── DocPropertyTypeService.java │ │ │ │ ├── DocUnitService.java │ │ │ │ ├── DocUnitValidationService.java │ │ │ │ ├── PhysicalDocumentService.java │ │ │ │ ├── SlipService.java │ │ │ │ ├── TableOfContentsService.java │ │ │ │ ├── ViewerService.java │ │ │ │ ├── common │ │ │ │ │ └── LanguageCodeService.java │ │ │ │ ├── conditionreport │ │ │ │ │ ├── ConditionReportAttachmentService.java │ │ │ │ │ ├── ConditionReportDetailService.java │ │ │ │ │ ├── ConditionReportExportService.java │ │ │ │ │ ├── ConditionReportImportService.java │ │ │ │ │ ├── ConditionReportService.java │ │ │ │ │ ├── ConditionReportSlipConfigurationService.java │ │ │ │ │ ├── DescriptionPropertyService.java │ │ │ │ │ ├── DescriptionValueService.java │ │ │ │ │ ├── PropertyConfigurationService.java │ │ │ │ │ └── ui │ │ │ │ │ │ └── UiPropertyConfigurationService.java │ │ │ │ ├── mapper │ │ │ │ │ ├── BibliographicRecordMapper.java │ │ │ │ │ ├── BibliographicRecordMapperDecorator.java │ │ │ │ │ ├── CheckMapper.java │ │ │ │ │ ├── ConditionReportAttachmentMapper.java │ │ │ │ │ ├── ConditionReportDetailMapper.java │ │ │ │ │ ├── ConditionReportMapper.java │ │ │ │ │ ├── ConditionReportValueMapper.java │ │ │ │ │ ├── DeliveredDocumentMapper.java │ │ │ │ │ ├── DigitalDocumentMapper.java │ │ │ │ │ ├── DocPageMapper.java │ │ │ │ │ ├── DocPropertyMapper.java │ │ │ │ │ ├── DocPropertyTypeMapper.java │ │ │ │ │ ├── DocUnitMapper.java │ │ │ │ │ ├── ImageMetadataValuesMapper.java │ │ │ │ │ ├── PhysicalDocumentMapper.java │ │ │ │ │ ├── PropertyConfigurationMapper.java │ │ │ │ │ ├── SimpleBibliographicRecordMapper.java │ │ │ │ │ ├── SimpleDocUnitMapper.java │ │ │ │ │ ├── UIBibliographicRecordMapper.java │ │ │ │ │ ├── UICheckMapper.java │ │ │ │ │ ├── UIDigitalDocumentMapper.java │ │ │ │ │ ├── UIDocPropertyMapper.java │ │ │ │ │ ├── UIDocPropertyTypeMapper.java │ │ │ │ │ ├── UIDocUnitMapper.java │ │ │ │ │ ├── UIExportDataMapper.java │ │ │ │ │ ├── UIInternetArchiveItemMapper.java │ │ │ │ │ └── UIPhysicalDocumentMapper.java │ │ │ │ └── ui │ │ │ │ │ ├── UIBibliographicRecordService.java │ │ │ │ │ ├── UICheckService.java │ │ │ │ │ ├── UIDigitalDocumentService.java │ │ │ │ │ ├── UIDocPropertyTypeService.java │ │ │ │ │ ├── UIDocUnitService.java │ │ │ │ │ └── UIPhysicalDocumentService.java │ │ │ ├── es │ │ │ │ ├── AbstractElasticsearchOperations.java │ │ │ │ ├── EsConditionReportService.java │ │ │ │ ├── EsConstant.java │ │ │ │ ├── EsDeliveryService.java │ │ │ │ ├── EsDocUnitService.java │ │ │ │ ├── EsLotService.java │ │ │ │ ├── EsProjectService.java │ │ │ │ ├── EsTrainService.java │ │ │ │ ├── IndexManagerService.java │ │ │ │ └── jackson │ │ │ │ │ ├── MappingJacksonMapper.java │ │ │ │ │ ├── MappingRuleDeserializer.java │ │ │ │ │ ├── MappingRuleSerializer.java │ │ │ │ │ └── MappingSerializer.java │ │ │ ├── exchange │ │ │ │ ├── AbstractImportConvertService.java │ │ │ │ ├── AbstractImportService.java │ │ │ │ ├── CSVMappingService.java │ │ │ │ ├── DeduplicationService.java │ │ │ │ ├── ExchangeHelper.java │ │ │ │ ├── ExchangeMappingService.java │ │ │ │ ├── ImportDocUnitService.java │ │ │ │ ├── ImportReportService.java │ │ │ │ ├── MappingService.java │ │ │ │ ├── cines │ │ │ │ │ ├── CinesLanguageCodeService.java │ │ │ │ │ ├── CinesReportService.java │ │ │ │ │ ├── CinesRequestHandlerService.java │ │ │ │ │ ├── ExportCinesService.java │ │ │ │ │ ├── ExportMetsService.java │ │ │ │ │ ├── ExportSipService.java │ │ │ │ │ ├── SipUtils.java │ │ │ │ │ ├── mapper │ │ │ │ │ │ └── CinesReportMapper.java │ │ │ │ │ └── ui │ │ │ │ │ │ └── UICinesReportService.java │ │ │ │ ├── csv │ │ │ │ │ ├── CSVToDocUnitConvertService.java │ │ │ │ │ ├── ExportCSVService.java │ │ │ │ │ └── ImportCSVService.java │ │ │ │ ├── dc │ │ │ │ │ ├── DcToDocUnitConvertService.java │ │ │ │ │ ├── DocUnitToCSVService.java │ │ │ │ │ ├── DocUnitToJenaService.java │ │ │ │ │ ├── ImportDcService.java │ │ │ │ │ ├── OAIDcEntityHandler.java │ │ │ │ │ └── RdfDcEntityHandler.java │ │ │ │ ├── digitallibrary │ │ │ │ │ ├── DigitalLibraryDiffusionRequestHandlerService.java │ │ │ │ │ └── DigitalLibraryDiffusionService.java │ │ │ │ ├── ead │ │ │ │ │ ├── EadCEntityHandler.java │ │ │ │ │ ├── EadCParser.java │ │ │ │ │ ├── EadMappingEvaluationService.java │ │ │ │ │ ├── EadToDocUnitConvertService.java │ │ │ │ │ ├── ExportEadService.java │ │ │ │ │ ├── ImportEadService.java │ │ │ │ │ ├── mapping │ │ │ │ │ │ ├── CompiledMapping.java │ │ │ │ │ │ ├── CompiledMappingRule.java │ │ │ │ │ │ ├── CompiledStatement.java │ │ │ │ │ │ └── RuleKey.java │ │ │ │ │ └── script │ │ │ │ │ │ ├── CustomScript.java │ │ │ │ │ │ └── format │ │ │ │ │ │ ├── NormalFormatter.java │ │ │ │ │ │ └── TextFormatter.java │ │ │ │ ├── exportftp │ │ │ │ │ └── ExportFtpService.java │ │ │ │ ├── iiif │ │ │ │ │ └── manifest │ │ │ │ │ │ ├── Attribution.java │ │ │ │ │ │ ├── Bytes.java │ │ │ │ │ │ ├── Canvases.java │ │ │ │ │ │ ├── Chars.java │ │ │ │ │ │ ├── Collections.java │ │ │ │ │ │ ├── ContentLayer.java │ │ │ │ │ │ ├── Context.java │ │ │ │ │ │ ├── Default.java │ │ │ │ │ │ ├── Description.java │ │ │ │ │ │ ├── Encoding.java │ │ │ │ │ │ ├── First.java │ │ │ │ │ │ ├── Format.java │ │ │ │ │ │ ├── Full.java │ │ │ │ │ │ ├── Height.java │ │ │ │ │ │ ├── Images.java │ │ │ │ │ │ ├── Item.java │ │ │ │ │ │ ├── Label.java │ │ │ │ │ │ ├── Language.java │ │ │ │ │ │ ├── Last.java │ │ │ │ │ │ ├── License.java │ │ │ │ │ │ ├── Logo.java │ │ │ │ │ │ ├── Manifest.java │ │ │ │ │ │ ├── Manifests.java │ │ │ │ │ │ ├── Members.java │ │ │ │ │ │ ├── Metadata.java │ │ │ │ │ │ ├── Motivation.java │ │ │ │ │ │ ├── NavDate.java │ │ │ │ │ │ ├── Next.java │ │ │ │ │ │ ├── On.java │ │ │ │ │ │ ├── OtherContent.java │ │ │ │ │ │ ├── Prev.java │ │ │ │ │ │ ├── Profile.java │ │ │ │ │ │ ├── Ranges.java │ │ │ │ │ │ ├── Related.java │ │ │ │ │ │ ├── Rendering.java │ │ │ │ │ │ ├── Resource.java │ │ │ │ │ │ ├── Resources.java │ │ │ │ │ │ ├── SeeAlso.java │ │ │ │ │ │ ├── Selector.java │ │ │ │ │ │ ├── Sequences.java │ │ │ │ │ │ ├── Service.java │ │ │ │ │ │ ├── StartCanvas.java │ │ │ │ │ │ ├── StartIndex.java │ │ │ │ │ │ ├── Structures.java │ │ │ │ │ │ ├── Style.java │ │ │ │ │ │ ├── Stylesheet.java │ │ │ │ │ │ ├── Thumbnail.java │ │ │ │ │ │ ├── Total.java │ │ │ │ │ │ ├── Value.java │ │ │ │ │ │ ├── ViewingDirection.java │ │ │ │ │ │ ├── ViewingHint.java │ │ │ │ │ │ ├── Width.java │ │ │ │ │ │ └── Within.java │ │ │ │ ├── internetarchive │ │ │ │ │ ├── InternetArchiveItemDTO.java │ │ │ │ │ ├── InternetArchiveReportService.java │ │ │ │ │ ├── InternetArchiveService.java │ │ │ │ │ ├── InternetArchiveServiceAsync.java │ │ │ │ │ ├── mapper │ │ │ │ │ │ ├── ArchiveItemMapper.java │ │ │ │ │ │ └── InternetArchiveReportMapper.java │ │ │ │ │ └── ui │ │ │ │ │ │ └── UIInternetArchiveReportService.java │ │ │ │ ├── mail │ │ │ │ │ └── MailboxService.java │ │ │ │ ├── mapper │ │ │ │ │ ├── CSVMappingMapper.java │ │ │ │ │ └── MappingMapper.java │ │ │ │ ├── marc │ │ │ │ │ ├── DocUnitWrapper.java │ │ │ │ │ ├── ImportMarcService.java │ │ │ │ │ ├── MarcMappingEvaluationService.java │ │ │ │ │ ├── MarcRecordIterator.java │ │ │ │ │ ├── MarcToDocUnitConvertService.java │ │ │ │ │ ├── MarcUtils.java │ │ │ │ │ ├── mapping │ │ │ │ │ │ ├── CompiledMapping.java │ │ │ │ │ │ ├── CompiledMappingRule.java │ │ │ │ │ │ ├── CompiledStatement.java │ │ │ │ │ │ └── MarcKey.java │ │ │ │ │ └── script │ │ │ │ │ │ ├── CustomScript.java │ │ │ │ │ │ ├── format │ │ │ │ │ │ ├── CollectionFieldFormatter.java │ │ │ │ │ │ ├── ConcatWithSepFormatter.java │ │ │ │ │ │ ├── CorporateFieldFormatter.java │ │ │ │ │ │ ├── DatePublicationFormatter.java │ │ │ │ │ │ ├── PersonFieldFormatter.java │ │ │ │ │ │ ├── SubfieldsFormatter.java │ │ │ │ │ │ └── TitleFieldFormatter.java │ │ │ │ │ │ └── test │ │ │ │ │ │ └── ExistsCondition.java │ │ │ │ ├── oaipmh │ │ │ │ │ ├── ImportOaiPmhService.java │ │ │ │ │ ├── OaiPmhRecordIterator.java │ │ │ │ │ ├── OaiPmhRequest.java │ │ │ │ │ └── OaiPmhService.java │ │ │ │ ├── omeka │ │ │ │ │ ├── OmekaRequestHandlerService.java │ │ │ │ │ └── OmekaService.java │ │ │ │ ├── ssh │ │ │ │ │ ├── FTPClientService.java │ │ │ │ │ └── SftpService.java │ │ │ │ ├── template │ │ │ │ │ ├── MessageService.java │ │ │ │ │ ├── OdtEngineService.java │ │ │ │ │ ├── TemplateService.java │ │ │ │ │ ├── VelocityEngineService.java │ │ │ │ │ ├── loader │ │ │ │ │ │ ├── DefaultResourceLoader.java │ │ │ │ │ │ ├── ResourceLoader.java │ │ │ │ │ │ ├── ResourceName.java │ │ │ │ │ │ └── TemplateResourceLoader.java │ │ │ │ │ └── velocity │ │ │ │ │ │ ├── DefaultResourceLoader.java │ │ │ │ │ │ └── TemplateResourceLoader.java │ │ │ │ └── z3950 │ │ │ │ │ └── Z3950Service.java │ │ │ ├── exportftpconfiguration │ │ │ │ ├── ExportFTPConfigurationService.java │ │ │ │ ├── UIExportFTPConfigurationService.java │ │ │ │ └── mapper │ │ │ │ │ └── ExportFTPConfigurationMapper.java │ │ │ ├── filesgestion │ │ │ │ ├── FilesGestionConfigMapper.java │ │ │ │ └── FilesGestionConfigService.java │ │ │ ├── ftpconfiguration │ │ │ │ ├── FTPConfigurationService.java │ │ │ │ ├── mapper │ │ │ │ │ ├── FTPConfigurationMapper.java │ │ │ │ │ ├── SimpleFTPConfigurationMapper.java │ │ │ │ │ └── UIFTPConfigurationMapper.java │ │ │ │ └── ui │ │ │ │ │ └── UIFTPConfigurationService.java │ │ │ ├── help │ │ │ │ └── HelpPageService.java │ │ │ ├── imagemetadata │ │ │ │ ├── ImageMetadataService.java │ │ │ │ └── ImageMetadataValuesService.java │ │ │ ├── library │ │ │ │ ├── LibraryParameterService.java │ │ │ │ ├── LibraryService.java │ │ │ │ ├── mapper │ │ │ │ │ ├── LibraryMapper.java │ │ │ │ │ ├── LibraryParameterMapper.java │ │ │ │ │ ├── SimpleLibraryMapper.java │ │ │ │ │ ├── UILibraryMapper.java │ │ │ │ │ └── UILibraryParameterMapper.java │ │ │ │ └── ui │ │ │ │ │ ├── UILibraryParameterService.java │ │ │ │ │ └── UILibraryService.java │ │ │ ├── lot │ │ │ │ ├── LotService.java │ │ │ │ ├── LotValidationService.java │ │ │ │ ├── mapper │ │ │ │ │ ├── LotMapper.java │ │ │ │ │ ├── LotWithConfigRulesMapper.java │ │ │ │ │ ├── SimpleLotMapper.java │ │ │ │ │ └── UILotMapper.java │ │ │ │ └── ui │ │ │ │ │ └── UILotService.java │ │ │ ├── multilotsdelivery │ │ │ │ ├── MultiLotsDeliveryService.java │ │ │ │ ├── mapper │ │ │ │ │ ├── MultiLotsDeliveryMapper.java │ │ │ │ │ └── UIMultiLotsDeliveryMapper.java │ │ │ │ └── ui │ │ │ │ │ └── UIMultiLotsDeliveryService.java │ │ │ ├── ocrlangconfiguration │ │ │ │ ├── OcrLangConfigurationService.java │ │ │ │ ├── OcrLanguageService.java │ │ │ │ ├── mapper │ │ │ │ │ ├── OcrLangConfigurationMapper.java │ │ │ │ │ └── OcrLanguageMapper.java │ │ │ │ └── ui │ │ │ │ │ ├── UIOcrLangConfigMapper.java │ │ │ │ │ └── UIOcrLangConfigurationService.java │ │ │ ├── project │ │ │ │ ├── ProjectService.java │ │ │ │ ├── mapper │ │ │ │ │ ├── ProjectMapper.java │ │ │ │ │ ├── SimpleProjectMapper.java │ │ │ │ │ └── UIProjectMapper.java │ │ │ │ └── ui │ │ │ │ │ └── UIProjectService.java │ │ │ ├── sample │ │ │ │ ├── SampleService.java │ │ │ │ └── mapper │ │ │ │ │ └── SampleMapper.java │ │ │ ├── statistics │ │ │ │ ├── StatisticsDocumentService.java │ │ │ │ ├── StatisticsProgressService.java │ │ │ │ ├── StatisticsService.java │ │ │ │ ├── StatisticsWorkflowService.java │ │ │ │ └── mapper │ │ │ │ │ ├── StatisticsMapper.java │ │ │ │ │ └── StatisticsWorkflowMapper.java │ │ │ ├── storage │ │ │ │ ├── AltoService.java │ │ │ │ ├── Binary.java │ │ │ │ ├── BinaryScrambler.java │ │ │ │ ├── BinaryStorageManager.java │ │ │ │ ├── ExifToolService.java │ │ │ │ ├── FileCleaningManager.java │ │ │ │ ├── FileStorageManager.java │ │ │ │ ├── ImageDispatcherService.java │ │ │ │ ├── ImageMagickService.java │ │ │ │ └── TesseractService.java │ │ │ ├── train │ │ │ │ ├── TrainService.java │ │ │ │ ├── mapper │ │ │ │ │ ├── SimpleTrainMapper.java │ │ │ │ │ ├── TrainMapper.java │ │ │ │ │ └── UITrainMapper.java │ │ │ │ └── ui │ │ │ │ │ └── UITrainService.java │ │ │ ├── user │ │ │ │ ├── AuthorizationService.java │ │ │ │ ├── RoleService.java │ │ │ │ ├── UserService.java │ │ │ │ ├── UserValidationService.java │ │ │ │ ├── mapper │ │ │ │ │ ├── AddressMapper.java │ │ │ │ │ ├── RoleMapper.java │ │ │ │ │ ├── UIUserMapper.java │ │ │ │ │ ├── UserMapper.java │ │ │ │ │ └── UserMapperDecorator.java │ │ │ │ └── ui │ │ │ │ │ └── UIUserService.java │ │ │ ├── util │ │ │ │ ├── AutomaticCheckResultConvertUtil.java │ │ │ │ ├── CryptoService.java │ │ │ │ ├── DateIso8601Util.java │ │ │ │ ├── DateUtils.java │ │ │ │ ├── DefaultFileFormats.java │ │ │ │ ├── DeliveryProgressService.java │ │ │ │ ├── ErrorThrowerService.java │ │ │ │ ├── FileUtils.java │ │ │ │ ├── ImageUtils.java │ │ │ │ ├── JobRunner.java │ │ │ │ ├── NumahopCollectors.java │ │ │ │ ├── RandomUtil.java │ │ │ │ ├── SortUtils.java │ │ │ │ ├── TarUtils.java │ │ │ │ └── transaction │ │ │ │ │ ├── TransactionService.java │ │ │ │ │ ├── TransactionalJobRunner.java │ │ │ │ │ └── VersionValidationService.java │ │ │ └── workflow │ │ │ │ ├── DocUnitWorkflowService.java │ │ │ │ ├── WorkflowGroupService.java │ │ │ │ ├── WorkflowGroupValidationService.java │ │ │ │ ├── WorkflowModelService.java │ │ │ │ ├── WorkflowModelStateService.java │ │ │ │ ├── WorkflowService.java │ │ │ │ ├── mapper │ │ │ │ ├── SimpleWorkflowMapper.java │ │ │ │ ├── UIWorkflowGroupMapper.java │ │ │ │ ├── UIWorkflowModelMapper.java │ │ │ │ └── WorkflowMapper.java │ │ │ │ └── ui │ │ │ │ ├── UIWorkflowGroupService.java │ │ │ │ ├── UIWorkflowModelService.java │ │ │ │ └── UIWorkflowService.java │ │ │ └── web │ │ │ ├── error │ │ │ └── RestResponseEntityExceptionHandler.java │ │ │ ├── filter │ │ │ ├── CachingHttpHeadersFilter.java │ │ │ ├── CsrfCookieGeneratorFilter.java │ │ │ ├── StaticResourcesProductionFilter.java │ │ │ └── gzip │ │ │ │ ├── GZipResponseUtil.java │ │ │ │ ├── GZipServletFilter.java │ │ │ │ ├── GZipServletOutputStream.java │ │ │ │ ├── GZipServletResponseWrapper.java │ │ │ │ └── GzipResponseHeadersNotModifiableException.java │ │ │ ├── rest │ │ │ ├── AbstractRestController.java │ │ │ ├── AccountResource.java │ │ │ ├── NumahopController.java │ │ │ ├── administration │ │ │ │ ├── HealthController.java │ │ │ │ ├── InternetArchiveConfigurationController.java │ │ │ │ ├── MailboxConfigurationController.java │ │ │ │ ├── SftpConfigurationController.java │ │ │ │ ├── digitallibrary │ │ │ │ │ └── DigitalLibraryConfigurationController.java │ │ │ │ ├── logs │ │ │ │ │ └── AdminLogsController.java │ │ │ │ ├── omeka │ │ │ │ │ └── OmekaConfigurationController.java │ │ │ │ ├── security │ │ │ │ │ └── AuthorizationConstants.java │ │ │ │ ├── utils │ │ │ │ │ └── FileCleaningController.java │ │ │ │ ├── viewsformat │ │ │ │ │ └── ViewsFormatConfigurationController.java │ │ │ │ └── z3950 │ │ │ │ │ └── Z3950ServerController.java │ │ │ ├── audit │ │ │ │ ├── AuditDeliveryController.java │ │ │ │ ├── AuditDocUnitController.java │ │ │ │ ├── AuditLotController.java │ │ │ │ ├── AuditMappingController.java │ │ │ │ ├── AuditProjectController.java │ │ │ │ └── AuditTrainController.java │ │ │ ├── check │ │ │ │ └── AutomaticCheckController.java │ │ │ ├── checkconfiguration │ │ │ │ ├── CheckConfigurationController.java │ │ │ │ └── security │ │ │ │ │ └── AuthorizationConstants.java │ │ │ ├── delivery │ │ │ │ ├── DeliveryConfigurationController.java │ │ │ │ ├── DeliveryController.java │ │ │ │ └── security │ │ │ │ │ └── AuthorizationConstants.java │ │ │ ├── document │ │ │ │ ├── BibliographicRecordController.java │ │ │ │ ├── CheckController.java │ │ │ │ ├── CheckSlipConfigurationController.java │ │ │ │ ├── DigitalDocumentController.java │ │ │ │ ├── DocPropertyTypeController.java │ │ │ │ ├── DocUnitController.java │ │ │ │ ├── PhysicalDocumentController.java │ │ │ │ ├── SearchController.java │ │ │ │ ├── ViewerController.java │ │ │ │ ├── conditionreport │ │ │ │ │ ├── ConditionReportAttachmentController.java │ │ │ │ │ ├── ConditionReportController.java │ │ │ │ │ ├── ConditionReportDetailController.java │ │ │ │ │ ├── ConditionReportSlipConfigurationController.java │ │ │ │ │ ├── DescriptionPropertyController.java │ │ │ │ │ ├── DescriptionValueController.java │ │ │ │ │ └── PropertyConfigurationController.java │ │ │ │ └── security │ │ │ │ │ └── AuthorizationConstants.java │ │ │ ├── dto │ │ │ │ └── LoggerDTO.java │ │ │ ├── exchange │ │ │ │ ├── CSVMappingController.java │ │ │ │ ├── CinesLanguageCodeController.java │ │ │ │ ├── ExportCinesController.java │ │ │ │ ├── ExportController.java │ │ │ │ ├── ExportInternetArchiveController.java │ │ │ │ ├── ImportController.java │ │ │ │ ├── ImportReportController.java │ │ │ │ ├── ImportedDocUnitController.java │ │ │ │ ├── MappingController.java │ │ │ │ ├── digitallibrary │ │ │ │ │ └── DigitalLibraryDiffusionController.java │ │ │ │ ├── oaipmh │ │ │ │ │ └── OaiPmhController.java │ │ │ │ ├── omeka │ │ │ │ │ └── ExportOmekaController.java │ │ │ │ ├── security │ │ │ │ │ └── AuthorizationConstants.java │ │ │ │ ├── template │ │ │ │ │ └── TemplateController.java │ │ │ │ └── z3950 │ │ │ │ │ └── Z3950Controller.java │ │ │ ├── exportftpconfiguration │ │ │ │ └── ExportFTPConfigurationController.java │ │ │ ├── filesgestion │ │ │ │ └── FilesGestionConfigController.java │ │ │ ├── ftpconfiguration │ │ │ │ └── FTPConfigurationController.java │ │ │ ├── help │ │ │ │ └── HelpPageController.java │ │ │ ├── imagemetadata │ │ │ │ └── ImageMetadataController.java │ │ │ ├── library │ │ │ │ ├── LibraryController.java │ │ │ │ ├── LibraryParameterController.java │ │ │ │ └── security │ │ │ │ │ └── AuthorizationConstants.java │ │ │ ├── lot │ │ │ │ ├── LotController.java │ │ │ │ └── security │ │ │ │ │ └── AuthorizationConstants.java │ │ │ ├── multilotsdelivery │ │ │ │ ├── MultiLotsDeliveryController.java │ │ │ │ └── MultiLotsDeliveryRequestWrapper.java │ │ │ ├── ocrlangconfiguration │ │ │ │ ├── OcrLangConfigurationController.java │ │ │ │ ├── OcrLanguageController.java │ │ │ │ └── security │ │ │ │ │ └── AuthorizationConstants.java │ │ │ ├── project │ │ │ │ ├── ProjectController.java │ │ │ │ └── security │ │ │ │ │ └── AuthorizationConstants.java │ │ │ ├── sample │ │ │ │ └── SampleController.java │ │ │ ├── statistics │ │ │ │ ├── StatisticsController.java │ │ │ │ ├── StatisticsDeliveryController.java │ │ │ │ ├── StatisticsDocUnitController.java │ │ │ │ ├── StatisticsWorkflowController.java │ │ │ │ └── csv │ │ │ │ │ ├── StatisticsCsvController.java │ │ │ │ │ ├── StatisticsDeliveryCsvController.java │ │ │ │ │ ├── StatisticsDocUnitCsvController.java │ │ │ │ │ └── StatisticsWorkflowCsvController.java │ │ │ ├── train │ │ │ │ ├── TrainController.java │ │ │ │ └── security │ │ │ │ │ └── AuthorizationConstants.java │ │ │ ├── user │ │ │ │ ├── AuthorizationController.java │ │ │ │ ├── RoleController.java │ │ │ │ ├── UserController.java │ │ │ │ └── security │ │ │ │ │ └── AuthorizationConstants.java │ │ │ └── workflow │ │ │ │ ├── WorkflowController.java │ │ │ │ ├── WorkflowGroupController.java │ │ │ │ ├── WorkflowModelController.java │ │ │ │ └── security │ │ │ │ └── AuthorizationConstants.java │ │ │ ├── rest_int │ │ │ ├── InternalAccountResource.java │ │ │ ├── LogsResource.java │ │ │ └── dto │ │ │ │ └── UserAccountDTO.java │ │ │ ├── util │ │ │ ├── AccessHelper.java │ │ │ ├── AuthorizationManager.java │ │ │ ├── ControllerUtils.java │ │ │ ├── LibraryAccesssHelper.java │ │ │ ├── WorkflowAccessHelper.java │ │ │ └── WorkflowUserAccessHelper.java │ │ │ └── websocket │ │ │ ├── WebsocketService.java │ │ │ └── dto │ │ │ ├── ActivityDTO.java │ │ │ └── NotificationDTO.java │ ├── resources │ │ ├── banner.txt │ │ ├── config │ │ │ ├── app │ │ │ │ └── known_hosts-dev │ │ │ ├── application-prod.yml │ │ │ ├── application.yml │ │ │ ├── elasticsearch │ │ │ │ └── settings_pgcn.json │ │ │ ├── liquibase │ │ │ │ ├── changelog │ │ │ │ │ ├── db-changelog-add-libResp-library-project.xml │ │ │ │ │ ├── db-changelog-administration-001.xml │ │ │ │ │ ├── db-changelog-administration-002.xml │ │ │ │ │ ├── db-changelog-administration-003.xml │ │ │ │ │ ├── db-changelog-administration-004.xml │ │ │ │ │ ├── db-changelog-administration-005.xml │ │ │ │ │ ├── db-changelog-administration-006.xml │ │ │ │ │ ├── db-changelog-administration-007.xml │ │ │ │ │ ├── db-changelog-administration-008.xml │ │ │ │ │ ├── db-changelog-administration-009.xml │ │ │ │ │ ├── db-changelog-administration-010.xml │ │ │ │ │ ├── db-changelog-administration-011.xml │ │ │ │ │ ├── db-changelog-audit-001.xml │ │ │ │ │ ├── db-changelog-audit-002.xml │ │ │ │ │ ├── db-changelog-audit-003.xml │ │ │ │ │ ├── db-changelog-change-datetypes.xml │ │ │ │ │ ├── db-changelog-check-001.xml │ │ │ │ │ ├── db-changelog-check-0014.xml │ │ │ │ │ ├── db-changelog-check-002.xml │ │ │ │ │ ├── db-changelog-check-003.xml │ │ │ │ │ ├── db-changelog-check-004.xml │ │ │ │ │ ├── db-changelog-check-005.xml │ │ │ │ │ ├── db-changelog-check-006.xml │ │ │ │ │ ├── db-changelog-check-007.xml │ │ │ │ │ ├── db-changelog-check-008.xml │ │ │ │ │ ├── db-changelog-check-009.xml │ │ │ │ │ ├── db-changelog-check-010.xml │ │ │ │ │ ├── db-changelog-check-011.xml │ │ │ │ │ ├── db-changelog-check-012.xml │ │ │ │ │ ├── db-changelog-check-013.xml │ │ │ │ │ ├── db-changelog-check-015.xml │ │ │ │ │ ├── db-changelog-check-016.xml │ │ │ │ │ ├── db-changelog-check-017.xml │ │ │ │ │ ├── db-changelog-check-018.xml │ │ │ │ │ ├── db-changelog-check-data-001.xml │ │ │ │ │ ├── db-changelog-check-data-002.xml │ │ │ │ │ ├── db-changelog-check-data-003.xml │ │ │ │ │ ├── db-changelog-check-data-004.xml │ │ │ │ │ ├── db-changelog-check-data-005.xml │ │ │ │ │ ├── db-changelog-check-data-006.xml │ │ │ │ │ ├── db-changelog-clean-all-datas-001.xml │ │ │ │ │ ├── db-changelog-common-language-code.xml │ │ │ │ │ ├── db-changelog-condreport-001.xml │ │ │ │ │ ├── db-changelog-condreport-002.xml │ │ │ │ │ ├── db-changelog-condreport-003.xml │ │ │ │ │ ├── db-changelog-condreport-004.xml │ │ │ │ │ ├── db-changelog-condreport-005.xml │ │ │ │ │ ├── db-changelog-condreport-006.xml │ │ │ │ │ ├── db-changelog-condreport-007.xml │ │ │ │ │ ├── db-changelog-condreport-008.xml │ │ │ │ │ ├── db-changelog-condreport-009.xml │ │ │ │ │ ├── db-changelog-condreport-010.xml │ │ │ │ │ ├── db-changelog-condreport-011.xml │ │ │ │ │ ├── db-changelog-conf-cines-language-codes-02.xml │ │ │ │ │ ├── db-changelog-conf-cines-language-codes.xml │ │ │ │ │ ├── db-changelog-conf-digital-library-01.xml │ │ │ │ │ ├── db-changelog-conf-digital-library-02.xml │ │ │ │ │ ├── db-changelog-conf-digital-library-03.xml │ │ │ │ │ ├── db-changelog-conf-digital-library-04.xml │ │ │ │ │ ├── db-changelog-conf-digital-library.xml │ │ │ │ │ ├── db-changelog-conf-export-ftp-002.xml │ │ │ │ │ ├── db-changelog-conf-export_ftp-003.xml │ │ │ │ │ ├── db-changelog-conf-export_ftp.xml │ │ │ │ │ ├── db-changelog-conf-internet-archive-data.xml │ │ │ │ │ ├── db-changelog-conf-internet-archive.xml │ │ │ │ │ ├── db-changelog-conf-ocr-language-001.xml │ │ │ │ │ ├── db-changelog-conf-ocr-language-002.xml │ │ │ │ │ ├── db-changelog-conf-omeka-002.xml │ │ │ │ │ ├── db-changelog-conf-omeka-003.xml │ │ │ │ │ ├── db-changelog-conf-omeka-004.xml │ │ │ │ │ ├── db-changelog-conf-omeka-005.xml │ │ │ │ │ ├── db-changelog-conf-omeka-006.xml │ │ │ │ │ ├── db-changelog-conf-omeka-007.xml │ │ │ │ │ ├── db-changelog-conf-omeka-008.xml │ │ │ │ │ ├── db-changelog-conf-omeka.xml │ │ │ │ │ ├── db-changelog-csv-mapping-add-column.xml │ │ │ │ │ ├── db-changelog-csv-mapping-add-metadata-column.xml │ │ │ │ │ ├── db-changelog-csv-mapping-import-report.xml │ │ │ │ │ ├── db-changelog-csv-mapping.xml │ │ │ │ │ ├── db-changelog-dc-mapping.xml │ │ │ │ │ ├── db-changelog-default-role.xml │ │ │ │ │ ├── db-changelog-delivery-001.xml │ │ │ │ │ ├── db-changelog-digital-document-delivery-date.xml │ │ │ │ │ ├── db-changelog-digital_doc_checks.xml │ │ │ │ │ ├── db-changelog-digital_doc_notes.xml │ │ │ │ │ ├── db-changelog-doc-digital-size-check-notes.xml │ │ │ │ │ ├── db-changelog-document-001.xml │ │ │ │ │ ├── db-changelog-document-002.xml │ │ │ │ │ ├── db-changelog-document-003.xml │ │ │ │ │ ├── db-changelog-document-004.xml │ │ │ │ │ ├── db-changelog-document-005.xml │ │ │ │ │ ├── db-changelog-document-006.xml │ │ │ │ │ ├── db-changelog-document-007.xml │ │ │ │ │ ├── db-changelog-document-008.xml │ │ │ │ │ ├── db-changelog-document-009.xml │ │ │ │ │ ├── db-changelog-document-010.xml │ │ │ │ │ ├── db-changelog-document-011.xml │ │ │ │ │ ├── db-changelog-document-012.xml │ │ │ │ │ ├── db-changelog-document-013.xml │ │ │ │ │ ├── db-changelog-document-014.xml │ │ │ │ │ ├── db-changelog-document-015.xml │ │ │ │ │ ├── db-changelog-document-016.xml │ │ │ │ │ ├── db-changelog-document-017.xml │ │ │ │ │ ├── db-changelog-document-018.xml │ │ │ │ │ ├── db-changelog-document-019.xml │ │ │ │ │ ├── db-changelog-document-020.xml │ │ │ │ │ ├── db-changelog-document-021.xml │ │ │ │ │ ├── db-changelog-document-022.xml │ │ │ │ │ ├── db-changelog-document-023.xml │ │ │ │ │ ├── db-changelog-document-024.xml │ │ │ │ │ ├── db-changelog-document-025.xml │ │ │ │ │ ├── db-changelog-document-026.xml │ │ │ │ │ ├── db-changelog-document-027.xml │ │ │ │ │ ├── db-changelog-document-028.xml │ │ │ │ │ ├── db-changelog-document-029.xml │ │ │ │ │ ├── db-changelog-document-030.xml │ │ │ │ │ ├── db-changelog-document-031.xml │ │ │ │ │ ├── db-changelog-document-032.xml │ │ │ │ │ ├── db-changelog-document-033.xml │ │ │ │ │ ├── db-changelog-document-034.xml │ │ │ │ │ ├── db-changelog-document-035.xml │ │ │ │ │ ├── db-changelog-document-036.xml │ │ │ │ │ ├── db-changelog-document-037.xml │ │ │ │ │ ├── db-changelog-document-038.xml │ │ │ │ │ ├── db-changelog-document-039.xml │ │ │ │ │ ├── db-changelog-document-data-001.xml │ │ │ │ │ ├── db-changelog-document-data-002.xml │ │ │ │ │ ├── db-changelog-document-data-003.xml │ │ │ │ │ ├── db-changelog-document-data-004.xml │ │ │ │ │ ├── db-changelog-document-data-005.xml │ │ │ │ │ ├── db-changelog-exchange-001.xml │ │ │ │ │ ├── db-changelog-exchange-002.xml │ │ │ │ │ ├── db-changelog-exchange-003.xml │ │ │ │ │ ├── db-changelog-exchange-004.xml │ │ │ │ │ ├── db-changelog-exchange-005.xml │ │ │ │ │ ├── db-changelog-exchange-006.xml │ │ │ │ │ ├── db-changelog-exchange-007.xml │ │ │ │ │ ├── db-changelog-exchange-008.xml │ │ │ │ │ ├── db-changelog-exchange-009.xml │ │ │ │ │ ├── db-changelog-exchange-010.xml │ │ │ │ │ ├── db-changelog-exchange-011.xml │ │ │ │ │ ├── db-changelog-exchange-012.xml │ │ │ │ │ ├── db-changelog-exchange-013.xml │ │ │ │ │ ├── db-changelog-exchange-014.xml │ │ │ │ │ ├── db-changelog-exchange-015.xml │ │ │ │ │ ├── db-changelog-exchange-data-002.xml │ │ │ │ │ ├── db-changelog-file-format-001.xml │ │ │ │ │ ├── db-changelog-file-format-002.xml │ │ │ │ │ ├── db-changelog-file-format-003.xml │ │ │ │ │ ├── db-changelog-fix-001.xml │ │ │ │ │ ├── db-changelog-fk_missing-001.xml │ │ │ │ │ ├── db-changelog-help-001.xml │ │ │ │ │ ├── db-changelog-imagemetadata-001.xml │ │ │ │ │ ├── db-changelog-library-001.xml │ │ │ │ │ ├── db-changelog-library-002.xml │ │ │ │ │ ├── db-changelog-library-003.xml │ │ │ │ │ ├── db-changelog-library-004.xml │ │ │ │ │ ├── db-changelog-library-005.xml │ │ │ │ │ ├── db-changelog-library-data-001.xml │ │ │ │ │ ├── db-changelog-library-parameters-001.xml │ │ │ │ │ ├── db-changelog-library-parameters-002.xml │ │ │ │ │ ├── db-changelog-lot-provider.xml │ │ │ │ │ ├── db-changelog-mapping-nullable.xml │ │ │ │ │ ├── db-changelog-pac-ia.xml │ │ │ │ │ ├── db-changelog-pgcn-id-state-unique.xml │ │ │ │ │ ├── db-changelog-project-001.xml │ │ │ │ │ ├── db-changelog-project-002.xml │ │ │ │ │ ├── db-changelog-project-003.xml │ │ │ │ │ ├── db-changelog-project-004.xml │ │ │ │ │ ├── db-changelog-project-005.xml │ │ │ │ │ ├── db-changelog-project-006.xml │ │ │ │ │ ├── db-changelog-project-007.xml │ │ │ │ │ ├── db-changelog-project-008.xml │ │ │ │ │ ├── db-changelog-project-009.xml │ │ │ │ │ ├── db-changelog-project-010.xml │ │ │ │ │ ├── db-changelog-project-011.xml │ │ │ │ │ ├── db-changelog-project-012.xml │ │ │ │ │ ├── db-changelog-project-013.xml │ │ │ │ │ ├── db-changelog-project-014.xml │ │ │ │ │ ├── db-changelog-project-015.xml │ │ │ │ │ ├── db-changelog-project-016.xml │ │ │ │ │ ├── db-changelog-project-017.xml │ │ │ │ │ ├── db-changelog-project-2020-06-19-11-50.xml │ │ │ │ │ ├── db-changelog-project-provider.xml │ │ │ │ │ ├── db-changelog-storage-001.xml │ │ │ │ │ ├── db-changelog-storage-002.xml │ │ │ │ │ ├── db-changelog-storage-003.xml │ │ │ │ │ ├── db-changelog-storage-004.xml │ │ │ │ │ ├── db-changelog-storage-005.xml │ │ │ │ │ ├── db-changelog-storage-006.xml │ │ │ │ │ ├── db-changelog-storage-007.xml │ │ │ │ │ ├── db-changelog-storage-008.xml │ │ │ │ │ ├── db-changelog-superuser-2.xml │ │ │ │ │ ├── db-changelog-superuser-3.xml │ │ │ │ │ ├── db-changelog-superuser.xml │ │ │ │ │ ├── db-changelog-update-parameter-cines-values.xml │ │ │ │ │ ├── db-changelog-user-001.xml │ │ │ │ │ ├── db-changelog-user-002.xml │ │ │ │ │ ├── db-changelog-user-003.xml │ │ │ │ │ ├── db-changelog-user-004.xml │ │ │ │ │ ├── db-changelog-user-005.xml │ │ │ │ │ ├── db-changelog-user-006.xml │ │ │ │ │ ├── db-changelog-user-007.xml │ │ │ │ │ ├── db-changelog-user-008.xml │ │ │ │ │ ├── db-changelog-user-009.xml │ │ │ │ │ ├── db-changelog-user-010.xml │ │ │ │ │ ├── db-changelog-user-011.xml │ │ │ │ │ ├── db-changelog-user-012.xml │ │ │ │ │ ├── db-changelog-user-data-001.xml │ │ │ │ │ ├── db-changelog-workflow-001.xml │ │ │ │ │ ├── db-changelog-workflow-002.xml │ │ │ │ │ ├── db-changelog-workflow-003.xml │ │ │ │ │ ├── db-changelog-workflow-004.xml │ │ │ │ │ ├── db-changelog-workflow-005.xml │ │ │ │ │ ├── db-changelog-workflow-006.xml │ │ │ │ │ ├── db-changelog-workflow-007.xml │ │ │ │ │ └── db-changelog-workflow-authorizations.xml │ │ │ │ ├── master.xml │ │ │ │ └── numahop │ │ │ │ │ ├── administration │ │ │ │ │ └── conf_transliteration.csv │ │ │ │ │ ├── check │ │ │ │ │ ├── automaticCheckType.csv │ │ │ │ │ ├── automaticCheckType_002.csv │ │ │ │ │ ├── automaticCheckType_003.csv │ │ │ │ │ ├── automaticCheckType_004.csv │ │ │ │ │ ├── automaticCheckType_005.csv │ │ │ │ │ └── automaticCheckType_006.csv │ │ │ │ │ ├── document │ │ │ │ │ ├── common │ │ │ │ │ │ └── languageCode.csv │ │ │ │ │ ├── doc_condreport_binding_property.csv │ │ │ │ │ ├── doc_condreport_binding_value.csv │ │ │ │ │ ├── doc_condreport_desc_value.csv │ │ │ │ │ ├── propertyType.csv │ │ │ │ │ ├── propertyType2.csv │ │ │ │ │ ├── propertyType3.csv │ │ │ │ │ ├── propertyType4.csv │ │ │ │ │ └── propertyType5.csv │ │ │ │ │ ├── exchange │ │ │ │ │ └── exc_mapping_dc.csv │ │ │ │ │ ├── file │ │ │ │ │ └── fileFormat.csv │ │ │ │ │ ├── library │ │ │ │ │ ├── library.csv │ │ │ │ │ └── superlib.csv │ │ │ │ │ ├── ocrlang │ │ │ │ │ └── ocr_languages.csv │ │ │ │ │ └── user │ │ │ │ │ ├── authorization-002.csv │ │ │ │ │ ├── authorization-condreport.csv │ │ │ │ │ ├── authorization-export-ftp.csv │ │ │ │ │ ├── authorization-ia.csv │ │ │ │ │ ├── authorization-omeka.csv │ │ │ │ │ ├── authorization-workflow-001.csv │ │ │ │ │ ├── authorization.csv │ │ │ │ │ ├── superauth.csv │ │ │ │ │ ├── superauth2.csv │ │ │ │ │ ├── superrole.csv │ │ │ │ │ └── superuser.csv │ │ │ ├── xsd │ │ │ │ ├── mets.xsd │ │ │ │ ├── seda_v1-0_accessrestriction_code.xsd │ │ │ │ ├── seda_v1-0_language_code.xsd │ │ │ │ ├── sip.xsd │ │ │ │ └── xlink.xsd │ │ │ └── xsl │ │ │ │ ├── codes_lookup.xml │ │ │ │ ├── hocr2alto2.1.xsl │ │ │ │ └── hocr2text.1.xsl │ │ ├── i18n │ │ │ └── messages_fr.properties │ │ ├── images │ │ │ ├── empty.png │ │ │ └── file.png │ │ ├── logback.xml │ │ ├── reporting │ │ │ ├── checkSlip.jasper │ │ │ ├── condReportSlip.jasper │ │ │ ├── deliverySlip.jasper │ │ │ ├── sources │ │ │ │ ├── checkSlip.jrxml │ │ │ │ ├── condReportSlip.jrxml │ │ │ │ ├── deliverySlip.jrxml │ │ │ │ └── test.jrxml │ │ │ └── test.jasper │ │ └── templates │ │ │ ├── ConditionReport │ │ │ ├── ConditionReportSlip │ │ │ ├── ControlSlip │ │ │ ├── DeliverySlip │ │ │ ├── ReinitPassword │ │ │ └── UserCreation │ ├── scss │ │ ├── _angular-bootstrap-switch.scss │ │ ├── _animate.scss │ │ ├── _bootstrap.scss │ │ ├── _calendar.scss │ │ ├── _canvas.scss │ │ ├── _carousel.scss │ │ ├── _cataloging.scss │ │ ├── _circleStatus.scss │ │ ├── _communication-rules.scss │ │ ├── _directive.scss │ │ ├── _font-awesome.scss │ │ ├── _font-glyphicons.scss │ │ ├── _font-syrtis.scss │ │ ├── _fonts.scss │ │ ├── _form-component.scss │ │ ├── _graphe.scss │ │ ├── _layout-columns.scss │ │ ├── _menu-top.scss │ │ ├── _modal.scss │ │ ├── _notification.scss │ │ ├── _numahop.scss │ │ ├── _pagination.scss │ │ ├── _panel.scss │ │ ├── _pdf.scss │ │ ├── _print.scss │ │ ├── _search.scss │ │ ├── _select2.scss │ │ ├── _sid-mobile-menu.scss │ │ ├── _subscription-alert.scss │ │ ├── _syrtis.scss │ │ ├── _tab.scss │ │ ├── _table.scss │ │ ├── _timeline.scss │ │ ├── _tree.scss │ │ ├── _utils.scss │ │ ├── _widgets.scss │ │ ├── _xeditable.scss │ │ └── main.scss │ └── webapp │ │ ├── .htaccess │ │ ├── assets │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── NotoSans-Bold.ttf │ │ │ ├── NotoSans-BoldItalic.ttf │ │ │ ├── NotoSans-Italic.ttf │ │ │ ├── NotoSans-Regular.ttf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── fontawesome-webfont.woff2 │ │ │ ├── glyphicons-filetypes-regular.woff │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ ├── glyphicons-halflings-regular.woff2 │ │ │ ├── glyphicons-regular.woff │ │ │ ├── glyphicons-social-regular.woff │ │ │ ├── syrtis-usagers.eot │ │ │ ├── syrtis-usagers.svg │ │ │ ├── syrtis-usagers.ttf │ │ │ └── syrtis-usagers.woff │ │ ├── images │ │ │ ├── AjaxLoader.gif │ │ │ ├── accessDenied.png │ │ │ ├── development_ribbon.png │ │ │ ├── hipster.png │ │ │ ├── hipster2x.png │ │ │ ├── logos │ │ │ │ └── numahop.png │ │ │ ├── numahop-180.png │ │ │ ├── numahop-180_old.png │ │ │ └── select2 │ │ │ │ ├── select2-spinner.gif │ │ │ │ ├── select2.png │ │ │ │ └── select2x2.png │ │ └── styles │ │ │ ├── documentation.css │ │ │ └── main_old.css │ │ ├── build-date.json │ │ ├── hop_favicon.png │ │ ├── i18n │ │ ├── angular-i18n │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── aa-dj.js │ │ │ ├── aa-er.js │ │ │ ├── aa-et.js │ │ │ ├── aa.js │ │ │ ├── af-na.js │ │ │ ├── af-za.js │ │ │ ├── af.js │ │ │ ├── agq-cm.js │ │ │ ├── agq.js │ │ │ ├── ak-gh.js │ │ │ ├── ak.js │ │ │ ├── am-et.js │ │ │ ├── am.js │ │ │ ├── angular-locale_aa-dj.js │ │ │ ├── angular-locale_aa-er.js │ │ │ ├── angular-locale_aa-et.js │ │ │ ├── angular-locale_aa.js │ │ │ ├── angular-locale_af-na.js │ │ │ ├── angular-locale_af-za.js │ │ │ ├── angular-locale_af.js │ │ │ ├── angular-locale_agq-cm.js │ │ │ ├── angular-locale_agq.js │ │ │ ├── angular-locale_ak-gh.js │ │ │ ├── angular-locale_ak.js │ │ │ ├── angular-locale_am-et.js │ │ │ ├── angular-locale_am.js │ │ │ ├── angular-locale_ar-001.js │ │ │ ├── angular-locale_ar-ae.js │ │ │ ├── angular-locale_ar-bh.js │ │ │ ├── angular-locale_ar-dj.js │ │ │ ├── angular-locale_ar-dz.js │ │ │ ├── angular-locale_ar-eg.js │ │ │ ├── angular-locale_ar-eh.js │ │ │ ├── angular-locale_ar-er.js │ │ │ ├── angular-locale_ar-il.js │ │ │ ├── angular-locale_ar-iq.js │ │ │ ├── angular-locale_ar-jo.js │ │ │ ├── angular-locale_ar-km.js │ │ │ ├── angular-locale_ar-kw.js │ │ │ ├── angular-locale_ar-lb.js │ │ │ ├── angular-locale_ar-ly.js │ │ │ ├── angular-locale_ar-ma.js │ │ │ ├── angular-locale_ar-mr.js │ │ │ ├── angular-locale_ar-om.js │ │ │ ├── angular-locale_ar-ps.js │ │ │ ├── angular-locale_ar-qa.js │ │ │ ├── angular-locale_ar-sa.js │ │ │ ├── angular-locale_ar-sd.js │ │ │ ├── angular-locale_ar-so.js │ │ │ ├── angular-locale_ar-ss.js │ │ │ ├── angular-locale_ar-sy.js │ │ │ ├── angular-locale_ar-td.js │ │ │ ├── angular-locale_ar-tn.js │ │ │ ├── angular-locale_ar-xb.js │ │ │ ├── angular-locale_ar-ye.js │ │ │ ├── angular-locale_ar.js │ │ │ ├── angular-locale_as-in.js │ │ │ ├── angular-locale_as.js │ │ │ ├── angular-locale_asa-tz.js │ │ │ ├── angular-locale_asa.js │ │ │ ├── angular-locale_ast-es.js │ │ │ ├── angular-locale_ast.js │ │ │ ├── angular-locale_az-cyrl-az.js │ │ │ ├── angular-locale_az-cyrl.js │ │ │ ├── angular-locale_az-latn-az.js │ │ │ ├── angular-locale_az-latn.js │ │ │ ├── angular-locale_az.js │ │ │ ├── angular-locale_bas-cm.js │ │ │ ├── angular-locale_bas.js │ │ │ ├── angular-locale_be-by.js │ │ │ ├── angular-locale_be.js │ │ │ ├── angular-locale_bem-zm.js │ │ │ ├── angular-locale_bem.js │ │ │ ├── angular-locale_bez-tz.js │ │ │ ├── angular-locale_bez.js │ │ │ ├── angular-locale_bg-bg.js │ │ │ ├── angular-locale_bg.js │ │ │ ├── angular-locale_bm-latn-ml.js │ │ │ ├── angular-locale_bm-latn.js │ │ │ ├── angular-locale_bm-ml.js │ │ │ ├── angular-locale_bm.js │ │ │ ├── angular-locale_bn-bd.js │ │ │ ├── angular-locale_bn-in.js │ │ │ ├── angular-locale_bn.js │ │ │ ├── angular-locale_bo-cn.js │ │ │ ├── angular-locale_bo-in.js │ │ │ ├── angular-locale_bo.js │ │ │ ├── angular-locale_br-fr.js │ │ │ ├── angular-locale_br.js │ │ │ ├── angular-locale_brx-in.js │ │ │ ├── angular-locale_brx.js │ │ │ ├── angular-locale_bs-cyrl-ba.js │ │ │ ├── angular-locale_bs-cyrl.js │ │ │ ├── angular-locale_bs-latn-ba.js │ │ │ ├── angular-locale_bs-latn.js │ │ │ ├── angular-locale_bs.js │ │ │ ├── angular-locale_byn-er.js │ │ │ ├── angular-locale_byn.js │ │ │ ├── angular-locale_ca-ad.js │ │ │ ├── angular-locale_ca-es-valencia.js │ │ │ ├── angular-locale_ca-es.js │ │ │ ├── angular-locale_ca-fr.js │ │ │ ├── angular-locale_ca-it.js │ │ │ ├── angular-locale_ca.js │ │ │ ├── angular-locale_ce-ru.js │ │ │ ├── angular-locale_ce.js │ │ │ ├── angular-locale_cgg-ug.js │ │ │ ├── angular-locale_cgg.js │ │ │ ├── angular-locale_chr-us.js │ │ │ ├── angular-locale_chr.js │ │ │ ├── angular-locale_ckb-arab-iq.js │ │ │ ├── angular-locale_ckb-arab-ir.js │ │ │ ├── angular-locale_ckb-arab.js │ │ │ ├── angular-locale_ckb-iq.js │ │ │ ├── angular-locale_ckb-ir.js │ │ │ ├── angular-locale_ckb-latn-iq.js │ │ │ ├── angular-locale_ckb-latn.js │ │ │ ├── angular-locale_ckb.js │ │ │ ├── angular-locale_cs-cz.js │ │ │ ├── angular-locale_cs.js │ │ │ ├── angular-locale_cu-ru.js │ │ │ ├── angular-locale_cu.js │ │ │ ├── angular-locale_cy-gb.js │ │ │ ├── angular-locale_cy.js │ │ │ ├── angular-locale_da-dk.js │ │ │ ├── angular-locale_da-gl.js │ │ │ ├── angular-locale_da.js │ │ │ ├── angular-locale_dav-ke.js │ │ │ ├── angular-locale_dav.js │ │ │ ├── angular-locale_de-at.js │ │ │ ├── angular-locale_de-be.js │ │ │ ├── angular-locale_de-ch.js │ │ │ ├── angular-locale_de-de.js │ │ │ ├── angular-locale_de-li.js │ │ │ ├── angular-locale_de-lu.js │ │ │ ├── angular-locale_de.js │ │ │ ├── angular-locale_dje-ne.js │ │ │ ├── angular-locale_dje.js │ │ │ ├── angular-locale_dsb-de.js │ │ │ ├── angular-locale_dsb.js │ │ │ ├── angular-locale_dua-cm.js │ │ │ ├── angular-locale_dua.js │ │ │ ├── angular-locale_dyo-sn.js │ │ │ ├── angular-locale_dyo.js │ │ │ ├── angular-locale_dz-bt.js │ │ │ ├── angular-locale_dz.js │ │ │ ├── angular-locale_ebu-ke.js │ │ │ ├── angular-locale_ebu.js │ │ │ ├── angular-locale_ee-gh.js │ │ │ ├── angular-locale_ee-tg.js │ │ │ ├── angular-locale_ee.js │ │ │ ├── angular-locale_el-cy.js │ │ │ ├── angular-locale_el-gr.js │ │ │ ├── angular-locale_el.js │ │ │ ├── angular-locale_en-001.js │ │ │ ├── angular-locale_en-150.js │ │ │ ├── angular-locale_en-ag.js │ │ │ ├── angular-locale_en-ai.js │ │ │ ├── angular-locale_en-as.js │ │ │ ├── angular-locale_en-at.js │ │ │ ├── angular-locale_en-au.js │ │ │ ├── angular-locale_en-bb.js │ │ │ ├── angular-locale_en-be.js │ │ │ ├── angular-locale_en-bi.js │ │ │ ├── angular-locale_en-bm.js │ │ │ ├── angular-locale_en-bs.js │ │ │ ├── angular-locale_en-bw.js │ │ │ ├── angular-locale_en-bz.js │ │ │ ├── angular-locale_en-ca.js │ │ │ ├── angular-locale_en-cc.js │ │ │ ├── angular-locale_en-ch.js │ │ │ ├── angular-locale_en-ck.js │ │ │ ├── angular-locale_en-cm.js │ │ │ ├── angular-locale_en-cx.js │ │ │ ├── angular-locale_en-cy.js │ │ │ ├── angular-locale_en-de.js │ │ │ ├── angular-locale_en-dg.js │ │ │ ├── angular-locale_en-dk.js │ │ │ ├── angular-locale_en-dm.js │ │ │ ├── angular-locale_en-dsrt-us.js │ │ │ ├── angular-locale_en-dsrt.js │ │ │ ├── angular-locale_en-er.js │ │ │ ├── angular-locale_en-fi.js │ │ │ ├── angular-locale_en-fj.js │ │ │ ├── angular-locale_en-fk.js │ │ │ ├── angular-locale_en-fm.js │ │ │ ├── angular-locale_en-gb.js │ │ │ ├── angular-locale_en-gd.js │ │ │ ├── angular-locale_en-gg.js │ │ │ ├── angular-locale_en-gh.js │ │ │ ├── angular-locale_en-gi.js │ │ │ ├── angular-locale_en-gm.js │ │ │ ├── angular-locale_en-gu.js │ │ │ ├── angular-locale_en-gy.js │ │ │ ├── angular-locale_en-hk.js │ │ │ ├── angular-locale_en-ie.js │ │ │ ├── angular-locale_en-il.js │ │ │ ├── angular-locale_en-im.js │ │ │ ├── angular-locale_en-in.js │ │ │ ├── angular-locale_en-io.js │ │ │ ├── angular-locale_en-iso.js │ │ │ ├── angular-locale_en-je.js │ │ │ ├── angular-locale_en-jm.js │ │ │ ├── angular-locale_en-ke.js │ │ │ ├── angular-locale_en-ki.js │ │ │ ├── angular-locale_en-kn.js │ │ │ ├── angular-locale_en-ky.js │ │ │ ├── angular-locale_en-lc.js │ │ │ ├── angular-locale_en-lr.js │ │ │ ├── angular-locale_en-ls.js │ │ │ ├── angular-locale_en-mg.js │ │ │ ├── angular-locale_en-mh.js │ │ │ ├── angular-locale_en-mo.js │ │ │ ├── angular-locale_en-mp.js │ │ │ ├── angular-locale_en-ms.js │ │ │ ├── angular-locale_en-mt.js │ │ │ ├── angular-locale_en-mu.js │ │ │ ├── angular-locale_en-mw.js │ │ │ ├── angular-locale_en-my.js │ │ │ ├── angular-locale_en-na.js │ │ │ ├── angular-locale_en-nf.js │ │ │ ├── angular-locale_en-ng.js │ │ │ ├── angular-locale_en-nl.js │ │ │ ├── angular-locale_en-nr.js │ │ │ ├── angular-locale_en-nu.js │ │ │ ├── angular-locale_en-nz.js │ │ │ ├── angular-locale_en-pg.js │ │ │ ├── angular-locale_en-ph.js │ │ │ ├── angular-locale_en-pk.js │ │ │ ├── angular-locale_en-pn.js │ │ │ ├── angular-locale_en-pr.js │ │ │ ├── angular-locale_en-pw.js │ │ │ ├── angular-locale_en-rw.js │ │ │ ├── angular-locale_en-sb.js │ │ │ ├── angular-locale_en-sc.js │ │ │ ├── angular-locale_en-sd.js │ │ │ ├── angular-locale_en-se.js │ │ │ ├── angular-locale_en-sg.js │ │ │ ├── angular-locale_en-sh.js │ │ │ ├── angular-locale_en-si.js │ │ │ ├── angular-locale_en-sl.js │ │ │ ├── angular-locale_en-ss.js │ │ │ ├── angular-locale_en-sx.js │ │ │ ├── angular-locale_en-sz.js │ │ │ ├── angular-locale_en-tc.js │ │ │ ├── angular-locale_en-tk.js │ │ │ ├── angular-locale_en-to.js │ │ │ ├── angular-locale_en-tt.js │ │ │ ├── angular-locale_en-tv.js │ │ │ ├── angular-locale_en-tz.js │ │ │ ├── angular-locale_en-ug.js │ │ │ ├── angular-locale_en-um.js │ │ │ ├── angular-locale_en-us.js │ │ │ ├── angular-locale_en-vc.js │ │ │ ├── angular-locale_en-vg.js │ │ │ ├── angular-locale_en-vi.js │ │ │ ├── angular-locale_en-vu.js │ │ │ ├── angular-locale_en-ws.js │ │ │ ├── angular-locale_en-xa.js │ │ │ ├── angular-locale_en-za.js │ │ │ ├── angular-locale_en-zm.js │ │ │ ├── angular-locale_en-zw.js │ │ │ ├── angular-locale_en.js │ │ │ ├── angular-locale_eo-001.js │ │ │ ├── angular-locale_eo.js │ │ │ ├── angular-locale_es-419.js │ │ │ ├── angular-locale_es-ar.js │ │ │ ├── angular-locale_es-bo.js │ │ │ ├── angular-locale_es-br.js │ │ │ ├── angular-locale_es-cl.js │ │ │ ├── angular-locale_es-co.js │ │ │ ├── angular-locale_es-cr.js │ │ │ ├── angular-locale_es-cu.js │ │ │ ├── angular-locale_es-do.js │ │ │ ├── angular-locale_es-ea.js │ │ │ ├── angular-locale_es-ec.js │ │ │ ├── angular-locale_es-es.js │ │ │ ├── angular-locale_es-gq.js │ │ │ ├── angular-locale_es-gt.js │ │ │ ├── angular-locale_es-hn.js │ │ │ ├── angular-locale_es-ic.js │ │ │ ├── angular-locale_es-mx.js │ │ │ ├── angular-locale_es-ni.js │ │ │ ├── angular-locale_es-pa.js │ │ │ ├── angular-locale_es-pe.js │ │ │ ├── angular-locale_es-ph.js │ │ │ ├── angular-locale_es-pr.js │ │ │ ├── angular-locale_es-py.js │ │ │ ├── angular-locale_es-sv.js │ │ │ ├── angular-locale_es-us.js │ │ │ ├── angular-locale_es-uy.js │ │ │ ├── angular-locale_es-ve.js │ │ │ ├── angular-locale_es.js │ │ │ ├── angular-locale_et-ee.js │ │ │ ├── angular-locale_et.js │ │ │ ├── angular-locale_eu-es.js │ │ │ ├── angular-locale_eu.js │ │ │ ├── angular-locale_ewo-cm.js │ │ │ ├── angular-locale_ewo.js │ │ │ ├── angular-locale_fa-af.js │ │ │ ├── angular-locale_fa-ir.js │ │ │ ├── angular-locale_fa.js │ │ │ ├── angular-locale_ff-cm.js │ │ │ ├── angular-locale_ff-gn.js │ │ │ ├── angular-locale_ff-mr.js │ │ │ ├── angular-locale_ff-sn.js │ │ │ ├── angular-locale_ff.js │ │ │ ├── angular-locale_fi-fi.js │ │ │ ├── angular-locale_fi.js │ │ │ ├── angular-locale_fil-ph.js │ │ │ ├── angular-locale_fil.js │ │ │ ├── angular-locale_fo-dk.js │ │ │ ├── angular-locale_fo-fo.js │ │ │ ├── angular-locale_fo.js │ │ │ ├── angular-locale_fr-be.js │ │ │ ├── angular-locale_fr-bf.js │ │ │ ├── angular-locale_fr-bi.js │ │ │ ├── angular-locale_fr-bj.js │ │ │ ├── angular-locale_fr-bl.js │ │ │ ├── angular-locale_fr-ca.js │ │ │ ├── angular-locale_fr-cd.js │ │ │ ├── angular-locale_fr-cf.js │ │ │ ├── angular-locale_fr-cg.js │ │ │ ├── angular-locale_fr-ch.js │ │ │ ├── angular-locale_fr-ci.js │ │ │ ├── angular-locale_fr-cm.js │ │ │ ├── angular-locale_fr-dj.js │ │ │ ├── angular-locale_fr-dz.js │ │ │ ├── angular-locale_fr-fr.js │ │ │ ├── angular-locale_fr-ga.js │ │ │ ├── angular-locale_fr-gf.js │ │ │ ├── angular-locale_fr-gn.js │ │ │ ├── angular-locale_fr-gp.js │ │ │ ├── angular-locale_fr-gq.js │ │ │ ├── angular-locale_fr-ht.js │ │ │ ├── angular-locale_fr-km.js │ │ │ ├── angular-locale_fr-lu.js │ │ │ ├── angular-locale_fr-ma.js │ │ │ ├── angular-locale_fr-mc.js │ │ │ ├── angular-locale_fr-mf.js │ │ │ ├── angular-locale_fr-mg.js │ │ │ ├── angular-locale_fr-ml.js │ │ │ ├── angular-locale_fr-mq.js │ │ │ ├── angular-locale_fr-mr.js │ │ │ ├── angular-locale_fr-mu.js │ │ │ ├── angular-locale_fr-nc.js │ │ │ ├── angular-locale_fr-ne.js │ │ │ ├── angular-locale_fr-pf.js │ │ │ ├── angular-locale_fr-pm.js │ │ │ ├── angular-locale_fr-re.js │ │ │ ├── angular-locale_fr-rw.js │ │ │ ├── angular-locale_fr-sc.js │ │ │ ├── angular-locale_fr-sn.js │ │ │ ├── angular-locale_fr-sy.js │ │ │ ├── angular-locale_fr-td.js │ │ │ ├── angular-locale_fr-tg.js │ │ │ ├── angular-locale_fr-tn.js │ │ │ ├── angular-locale_fr-vu.js │ │ │ ├── angular-locale_fr-wf.js │ │ │ ├── angular-locale_fr-yt.js │ │ │ ├── angular-locale_fr.js │ │ │ ├── angular-locale_fur-it.js │ │ │ ├── angular-locale_fur.js │ │ │ ├── angular-locale_fy-nl.js │ │ │ ├── angular-locale_fy.js │ │ │ ├── angular-locale_ga-ie.js │ │ │ ├── angular-locale_ga.js │ │ │ ├── angular-locale_gd-gb.js │ │ │ ├── angular-locale_gd.js │ │ │ ├── angular-locale_gl-es.js │ │ │ ├── angular-locale_gl.js │ │ │ ├── angular-locale_gsw-ch.js │ │ │ ├── angular-locale_gsw-fr.js │ │ │ ├── angular-locale_gsw-li.js │ │ │ ├── angular-locale_gsw.js │ │ │ ├── angular-locale_gu-in.js │ │ │ ├── angular-locale_gu.js │ │ │ ├── angular-locale_guz-ke.js │ │ │ ├── angular-locale_guz.js │ │ │ ├── angular-locale_gv-im.js │ │ │ ├── angular-locale_gv.js │ │ │ ├── angular-locale_ha-gh.js │ │ │ ├── angular-locale_ha-latn-gh.js │ │ │ ├── angular-locale_ha-latn-ne.js │ │ │ ├── angular-locale_ha-latn-ng.js │ │ │ ├── angular-locale_ha-latn.js │ │ │ ├── angular-locale_ha-ne.js │ │ │ ├── angular-locale_ha-ng.js │ │ │ ├── angular-locale_ha.js │ │ │ ├── angular-locale_haw-us.js │ │ │ ├── angular-locale_haw.js │ │ │ ├── angular-locale_he-il.js │ │ │ ├── angular-locale_he.js │ │ │ ├── angular-locale_hi-in.js │ │ │ ├── angular-locale_hi.js │ │ │ ├── angular-locale_hr-ba.js │ │ │ ├── angular-locale_hr-hr.js │ │ │ ├── angular-locale_hr.js │ │ │ ├── angular-locale_hsb-de.js │ │ │ ├── angular-locale_hsb.js │ │ │ ├── angular-locale_hu-hu.js │ │ │ ├── angular-locale_hu.js │ │ │ ├── angular-locale_hy-am.js │ │ │ ├── angular-locale_hy.js │ │ │ ├── angular-locale_ia-fr.js │ │ │ ├── angular-locale_ia.js │ │ │ ├── angular-locale_id-id.js │ │ │ ├── angular-locale_id.js │ │ │ ├── angular-locale_ig-ng.js │ │ │ ├── angular-locale_ig.js │ │ │ ├── angular-locale_ii-cn.js │ │ │ ├── angular-locale_ii.js │ │ │ ├── angular-locale_in.js │ │ │ ├── angular-locale_is-is.js │ │ │ ├── angular-locale_is.js │ │ │ ├── angular-locale_it-ch.js │ │ │ ├── angular-locale_it-it.js │ │ │ ├── angular-locale_it-sm.js │ │ │ ├── angular-locale_it.js │ │ │ ├── angular-locale_iw.js │ │ │ ├── angular-locale_ja-jp.js │ │ │ ├── angular-locale_ja.js │ │ │ ├── angular-locale_jgo-cm.js │ │ │ ├── angular-locale_jgo.js │ │ │ ├── angular-locale_jmc-tz.js │ │ │ ├── angular-locale_jmc.js │ │ │ ├── angular-locale_ka-ge.js │ │ │ ├── angular-locale_ka.js │ │ │ ├── angular-locale_kab-dz.js │ │ │ ├── angular-locale_kab.js │ │ │ ├── angular-locale_kam-ke.js │ │ │ ├── angular-locale_kam.js │ │ │ ├── angular-locale_kde-tz.js │ │ │ ├── angular-locale_kde.js │ │ │ ├── angular-locale_kea-cv.js │ │ │ ├── angular-locale_kea.js │ │ │ ├── angular-locale_khq-ml.js │ │ │ ├── angular-locale_khq.js │ │ │ ├── angular-locale_ki-ke.js │ │ │ ├── angular-locale_ki.js │ │ │ ├── angular-locale_kk-cyrl-kz.js │ │ │ ├── angular-locale_kk-cyrl.js │ │ │ ├── angular-locale_kk-kz.js │ │ │ ├── angular-locale_kk.js │ │ │ ├── angular-locale_kkj-cm.js │ │ │ ├── angular-locale_kkj.js │ │ │ ├── angular-locale_kl-gl.js │ │ │ ├── angular-locale_kl.js │ │ │ ├── angular-locale_kln-ke.js │ │ │ ├── angular-locale_kln.js │ │ │ ├── angular-locale_km-kh.js │ │ │ ├── angular-locale_km.js │ │ │ ├── angular-locale_kn-in.js │ │ │ ├── angular-locale_kn.js │ │ │ ├── angular-locale_ko-kp.js │ │ │ ├── angular-locale_ko-kr.js │ │ │ ├── angular-locale_ko.js │ │ │ ├── angular-locale_kok-in.js │ │ │ ├── angular-locale_kok.js │ │ │ ├── angular-locale_ks-arab-in.js │ │ │ ├── angular-locale_ks-arab.js │ │ │ ├── angular-locale_ks-in.js │ │ │ ├── angular-locale_ks.js │ │ │ ├── angular-locale_ksb-tz.js │ │ │ ├── angular-locale_ksb.js │ │ │ ├── angular-locale_ksf-cm.js │ │ │ ├── angular-locale_ksf.js │ │ │ ├── angular-locale_ksh-de.js │ │ │ ├── angular-locale_ksh.js │ │ │ ├── angular-locale_kw-gb.js │ │ │ ├── angular-locale_kw.js │ │ │ ├── angular-locale_ky-cyrl-kg.js │ │ │ ├── angular-locale_ky-cyrl.js │ │ │ ├── angular-locale_ky-kg.js │ │ │ ├── angular-locale_ky.js │ │ │ ├── angular-locale_lag-tz.js │ │ │ ├── angular-locale_lag.js │ │ │ ├── angular-locale_lb-lu.js │ │ │ ├── angular-locale_lb.js │ │ │ ├── angular-locale_lg-ug.js │ │ │ ├── angular-locale_lg.js │ │ │ ├── angular-locale_lkt-us.js │ │ │ ├── angular-locale_lkt.js │ │ │ ├── angular-locale_ln-ao.js │ │ │ ├── angular-locale_ln-cd.js │ │ │ ├── angular-locale_ln-cf.js │ │ │ ├── angular-locale_ln-cg.js │ │ │ ├── angular-locale_ln.js │ │ │ ├── angular-locale_lo-la.js │ │ │ ├── angular-locale_lo.js │ │ │ ├── angular-locale_lrc-iq.js │ │ │ ├── angular-locale_lrc-ir.js │ │ │ ├── angular-locale_lrc.js │ │ │ ├── angular-locale_lt-lt.js │ │ │ ├── angular-locale_lt.js │ │ │ ├── angular-locale_lu-cd.js │ │ │ ├── angular-locale_lu.js │ │ │ ├── angular-locale_luo-ke.js │ │ │ ├── angular-locale_luo.js │ │ │ ├── angular-locale_luy-ke.js │ │ │ ├── angular-locale_luy.js │ │ │ ├── angular-locale_lv-lv.js │ │ │ ├── angular-locale_lv.js │ │ │ ├── angular-locale_mas-ke.js │ │ │ ├── angular-locale_mas-tz.js │ │ │ ├── angular-locale_mas.js │ │ │ ├── angular-locale_mer-ke.js │ │ │ ├── angular-locale_mer.js │ │ │ ├── angular-locale_mfe-mu.js │ │ │ ├── angular-locale_mfe.js │ │ │ ├── angular-locale_mg-mg.js │ │ │ ├── angular-locale_mg.js │ │ │ ├── angular-locale_mgh-mz.js │ │ │ ├── angular-locale_mgh.js │ │ │ ├── angular-locale_mgo-cm.js │ │ │ ├── angular-locale_mgo.js │ │ │ ├── angular-locale_mk-mk.js │ │ │ ├── angular-locale_mk.js │ │ │ ├── angular-locale_ml-in.js │ │ │ ├── angular-locale_ml.js │ │ │ ├── angular-locale_mn-cyrl-mn.js │ │ │ ├── angular-locale_mn-cyrl.js │ │ │ ├── angular-locale_mn-mn.js │ │ │ ├── angular-locale_mn.js │ │ │ ├── angular-locale_mr-in.js │ │ │ ├── angular-locale_mr.js │ │ │ ├── angular-locale_ms-bn.js │ │ │ ├── angular-locale_ms-latn-bn.js │ │ │ ├── angular-locale_ms-latn-my.js │ │ │ ├── angular-locale_ms-latn-sg.js │ │ │ ├── angular-locale_ms-latn.js │ │ │ ├── angular-locale_ms-my.js │ │ │ ├── angular-locale_ms-sg.js │ │ │ ├── angular-locale_ms.js │ │ │ ├── angular-locale_mt-mt.js │ │ │ ├── angular-locale_mt.js │ │ │ ├── angular-locale_mua-cm.js │ │ │ ├── angular-locale_mua.js │ │ │ ├── angular-locale_my-mm.js │ │ │ ├── angular-locale_my.js │ │ │ ├── angular-locale_mzn-ir.js │ │ │ ├── angular-locale_mzn.js │ │ │ ├── angular-locale_naq-na.js │ │ │ ├── angular-locale_naq.js │ │ │ ├── angular-locale_nb-no.js │ │ │ ├── angular-locale_nb-sj.js │ │ │ ├── angular-locale_nb.js │ │ │ ├── angular-locale_nd-zw.js │ │ │ ├── angular-locale_nd.js │ │ │ ├── angular-locale_ne-in.js │ │ │ ├── angular-locale_ne-np.js │ │ │ ├── angular-locale_ne.js │ │ │ ├── angular-locale_nl-aw.js │ │ │ ├── angular-locale_nl-be.js │ │ │ ├── angular-locale_nl-bq.js │ │ │ ├── angular-locale_nl-cw.js │ │ │ ├── angular-locale_nl-nl.js │ │ │ ├── angular-locale_nl-sr.js │ │ │ ├── angular-locale_nl-sx.js │ │ │ ├── angular-locale_nl.js │ │ │ ├── angular-locale_nmg-cm.js │ │ │ ├── angular-locale_nmg.js │ │ │ ├── angular-locale_nn-no.js │ │ │ ├── angular-locale_nn.js │ │ │ ├── angular-locale_nnh-cm.js │ │ │ ├── angular-locale_nnh.js │ │ │ ├── angular-locale_no-no.js │ │ │ ├── angular-locale_no.js │ │ │ ├── angular-locale_nr-za.js │ │ │ ├── angular-locale_nr.js │ │ │ ├── angular-locale_nso-za.js │ │ │ ├── angular-locale_nso.js │ │ │ ├── angular-locale_nus-sd.js │ │ │ ├── angular-locale_nus-ss.js │ │ │ ├── angular-locale_nus.js │ │ │ ├── angular-locale_nyn-ug.js │ │ │ ├── angular-locale_nyn.js │ │ │ ├── angular-locale_om-et.js │ │ │ ├── angular-locale_om-ke.js │ │ │ ├── angular-locale_om.js │ │ │ ├── angular-locale_or-in.js │ │ │ ├── angular-locale_or.js │ │ │ ├── angular-locale_os-ge.js │ │ │ ├── angular-locale_os-ru.js │ │ │ ├── angular-locale_os.js │ │ │ ├── angular-locale_pa-arab-pk.js │ │ │ ├── angular-locale_pa-arab.js │ │ │ ├── angular-locale_pa-guru-in.js │ │ │ ├── angular-locale_pa-guru.js │ │ │ ├── angular-locale_pa.js │ │ │ ├── angular-locale_pl-pl.js │ │ │ ├── angular-locale_pl.js │ │ │ ├── angular-locale_prg-001.js │ │ │ ├── angular-locale_prg.js │ │ │ ├── angular-locale_ps-af.js │ │ │ ├── angular-locale_ps.js │ │ │ ├── angular-locale_pt-ao.js │ │ │ ├── angular-locale_pt-br.js │ │ │ ├── angular-locale_pt-ch.js │ │ │ ├── angular-locale_pt-cv.js │ │ │ ├── angular-locale_pt-gq.js │ │ │ ├── angular-locale_pt-gw.js │ │ │ ├── angular-locale_pt-lu.js │ │ │ ├── angular-locale_pt-mo.js │ │ │ ├── angular-locale_pt-mz.js │ │ │ ├── angular-locale_pt-pt.js │ │ │ ├── angular-locale_pt-st.js │ │ │ ├── angular-locale_pt-tl.js │ │ │ ├── angular-locale_pt.js │ │ │ ├── angular-locale_qu-bo.js │ │ │ ├── angular-locale_qu-ec.js │ │ │ ├── angular-locale_qu-pe.js │ │ │ ├── angular-locale_qu.js │ │ │ ├── angular-locale_rm-ch.js │ │ │ ├── angular-locale_rm.js │ │ │ ├── angular-locale_rn-bi.js │ │ │ ├── angular-locale_rn.js │ │ │ ├── angular-locale_ro-md.js │ │ │ ├── angular-locale_ro-ro.js │ │ │ ├── angular-locale_ro.js │ │ │ ├── angular-locale_rof-tz.js │ │ │ ├── angular-locale_rof.js │ │ │ ├── angular-locale_ru-by.js │ │ │ ├── angular-locale_ru-kg.js │ │ │ ├── angular-locale_ru-kz.js │ │ │ ├── angular-locale_ru-md.js │ │ │ ├── angular-locale_ru-ru.js │ │ │ ├── angular-locale_ru-ua.js │ │ │ ├── angular-locale_ru.js │ │ │ ├── angular-locale_rw-rw.js │ │ │ ├── angular-locale_rw.js │ │ │ ├── angular-locale_rwk-tz.js │ │ │ ├── angular-locale_rwk.js │ │ │ ├── angular-locale_sah-ru.js │ │ │ ├── angular-locale_sah.js │ │ │ ├── angular-locale_saq-ke.js │ │ │ ├── angular-locale_saq.js │ │ │ ├── angular-locale_sbp-tz.js │ │ │ ├── angular-locale_sbp.js │ │ │ ├── angular-locale_se-fi.js │ │ │ ├── angular-locale_se-no.js │ │ │ ├── angular-locale_se-se.js │ │ │ ├── angular-locale_se.js │ │ │ ├── angular-locale_seh-mz.js │ │ │ ├── angular-locale_seh.js │ │ │ ├── angular-locale_ses-ml.js │ │ │ ├── angular-locale_ses.js │ │ │ ├── angular-locale_sg-cf.js │ │ │ ├── angular-locale_sg.js │ │ │ ├── angular-locale_shi-latn-ma.js │ │ │ ├── angular-locale_shi-latn.js │ │ │ ├── angular-locale_shi-tfng-ma.js │ │ │ ├── angular-locale_shi-tfng.js │ │ │ ├── angular-locale_shi.js │ │ │ ├── angular-locale_si-lk.js │ │ │ ├── angular-locale_si.js │ │ │ ├── angular-locale_sk-sk.js │ │ │ ├── angular-locale_sk.js │ │ │ ├── angular-locale_sl-si.js │ │ │ ├── angular-locale_sl.js │ │ │ ├── angular-locale_smn-fi.js │ │ │ ├── angular-locale_smn.js │ │ │ ├── angular-locale_sn-zw.js │ │ │ ├── angular-locale_sn.js │ │ │ ├── angular-locale_so-dj.js │ │ │ ├── angular-locale_so-et.js │ │ │ ├── angular-locale_so-ke.js │ │ │ ├── angular-locale_so-so.js │ │ │ ├── angular-locale_so.js │ │ │ ├── angular-locale_sq-al.js │ │ │ ├── angular-locale_sq-mk.js │ │ │ ├── angular-locale_sq-xk.js │ │ │ ├── angular-locale_sq.js │ │ │ ├── angular-locale_sr-cyrl-ba.js │ │ │ ├── angular-locale_sr-cyrl-me.js │ │ │ ├── angular-locale_sr-cyrl-rs.js │ │ │ ├── angular-locale_sr-cyrl-xk.js │ │ │ ├── angular-locale_sr-cyrl.js │ │ │ ├── angular-locale_sr-latn-ba.js │ │ │ ├── angular-locale_sr-latn-me.js │ │ │ ├── angular-locale_sr-latn-rs.js │ │ │ ├── angular-locale_sr-latn-xk.js │ │ │ ├── angular-locale_sr-latn.js │ │ │ ├── angular-locale_sr.js │ │ │ ├── angular-locale_ss-sz.js │ │ │ ├── angular-locale_ss-za.js │ │ │ ├── angular-locale_ss.js │ │ │ ├── angular-locale_ssy-er.js │ │ │ ├── angular-locale_ssy.js │ │ │ ├── angular-locale_st-ls.js │ │ │ ├── angular-locale_st-za.js │ │ │ ├── angular-locale_st.js │ │ │ ├── angular-locale_sv-ax.js │ │ │ ├── angular-locale_sv-fi.js │ │ │ ├── angular-locale_sv-se.js │ │ │ ├── angular-locale_sv.js │ │ │ ├── angular-locale_sw-cd.js │ │ │ ├── angular-locale_sw-ke.js │ │ │ ├── angular-locale_sw-tz.js │ │ │ ├── angular-locale_sw-ug.js │ │ │ ├── angular-locale_sw.js │ │ │ ├── angular-locale_swc-cd.js │ │ │ ├── angular-locale_swc.js │ │ │ ├── angular-locale_ta-in.js │ │ │ ├── angular-locale_ta-lk.js │ │ │ ├── angular-locale_ta-my.js │ │ │ ├── angular-locale_ta-sg.js │ │ │ ├── angular-locale_ta.js │ │ │ ├── angular-locale_te-in.js │ │ │ ├── angular-locale_te.js │ │ │ ├── angular-locale_teo-ke.js │ │ │ ├── angular-locale_teo-ug.js │ │ │ ├── angular-locale_teo.js │ │ │ ├── angular-locale_tg-cyrl-tj.js │ │ │ ├── angular-locale_tg-cyrl.js │ │ │ ├── angular-locale_tg.js │ │ │ ├── angular-locale_th-th.js │ │ │ ├── angular-locale_th.js │ │ │ ├── angular-locale_ti-er.js │ │ │ ├── angular-locale_ti-et.js │ │ │ ├── angular-locale_ti.js │ │ │ ├── angular-locale_tig-er.js │ │ │ ├── angular-locale_tig.js │ │ │ ├── angular-locale_tk-tm.js │ │ │ ├── angular-locale_tk.js │ │ │ ├── angular-locale_tl.js │ │ │ ├── angular-locale_tn-bw.js │ │ │ ├── angular-locale_tn-za.js │ │ │ ├── angular-locale_tn.js │ │ │ ├── angular-locale_to-to.js │ │ │ ├── angular-locale_to.js │ │ │ ├── angular-locale_tr-cy.js │ │ │ ├── angular-locale_tr-tr.js │ │ │ ├── angular-locale_tr.js │ │ │ ├── angular-locale_ts-za.js │ │ │ ├── angular-locale_ts.js │ │ │ ├── angular-locale_twq-ne.js │ │ │ ├── angular-locale_twq.js │ │ │ ├── angular-locale_tzm-latn-ma.js │ │ │ ├── angular-locale_tzm-latn.js │ │ │ ├── angular-locale_tzm-ma.js │ │ │ ├── angular-locale_tzm.js │ │ │ ├── angular-locale_ug-arab-cn.js │ │ │ ├── angular-locale_ug-arab.js │ │ │ ├── angular-locale_ug-cn.js │ │ │ ├── angular-locale_ug.js │ │ │ ├── angular-locale_uk-ua.js │ │ │ ├── angular-locale_uk.js │ │ │ ├── angular-locale_ur-in.js │ │ │ ├── angular-locale_ur-pk.js │ │ │ ├── angular-locale_ur.js │ │ │ ├── angular-locale_uz-arab-af.js │ │ │ ├── angular-locale_uz-arab.js │ │ │ ├── angular-locale_uz-cyrl-uz.js │ │ │ ├── angular-locale_uz-cyrl.js │ │ │ ├── angular-locale_uz-latn-uz.js │ │ │ ├── angular-locale_uz-latn.js │ │ │ ├── angular-locale_uz.js │ │ │ ├── angular-locale_vai-latn-lr.js │ │ │ ├── angular-locale_vai-latn.js │ │ │ ├── angular-locale_vai-vaii-lr.js │ │ │ ├── angular-locale_vai-vaii.js │ │ │ ├── angular-locale_vai.js │ │ │ ├── angular-locale_ve-za.js │ │ │ ├── angular-locale_ve.js │ │ │ ├── angular-locale_vi-vn.js │ │ │ ├── angular-locale_vi.js │ │ │ ├── angular-locale_vo-001.js │ │ │ ├── angular-locale_vo.js │ │ │ ├── angular-locale_vun-tz.js │ │ │ ├── angular-locale_vun.js │ │ │ ├── angular-locale_wae-ch.js │ │ │ ├── angular-locale_wae.js │ │ │ ├── angular-locale_wal-et.js │ │ │ ├── angular-locale_wal.js │ │ │ ├── angular-locale_xh-za.js │ │ │ ├── angular-locale_xh.js │ │ │ ├── angular-locale_xog-ug.js │ │ │ ├── angular-locale_xog.js │ │ │ ├── angular-locale_yav-cm.js │ │ │ ├── angular-locale_yav.js │ │ │ ├── angular-locale_yi-001.js │ │ │ ├── angular-locale_yi.js │ │ │ ├── angular-locale_yo-bj.js │ │ │ ├── angular-locale_yo-ng.js │ │ │ ├── angular-locale_yo.js │ │ │ ├── angular-locale_yue-hk.js │ │ │ ├── angular-locale_yue.js │ │ │ ├── angular-locale_zgh-ma.js │ │ │ ├── angular-locale_zgh.js │ │ │ ├── angular-locale_zh-cn.js │ │ │ ├── angular-locale_zh-hans-cn.js │ │ │ ├── angular-locale_zh-hans-hk.js │ │ │ ├── angular-locale_zh-hans-mo.js │ │ │ ├── angular-locale_zh-hans-sg.js │ │ │ ├── angular-locale_zh-hans.js │ │ │ ├── angular-locale_zh-hant-hk.js │ │ │ ├── angular-locale_zh-hant-mo.js │ │ │ ├── angular-locale_zh-hant-tw.js │ │ │ ├── angular-locale_zh-hant.js │ │ │ ├── angular-locale_zh-hk.js │ │ │ ├── angular-locale_zh-tw.js │ │ │ ├── angular-locale_zh.js │ │ │ ├── angular-locale_zu-za.js │ │ │ ├── angular-locale_zu.js │ │ │ ├── ar-001.js │ │ │ ├── ar-ae.js │ │ │ ├── ar-bh.js │ │ │ ├── ar-dj.js │ │ │ ├── ar-dz.js │ │ │ ├── ar-eg.js │ │ │ ├── ar-eh.js │ │ │ ├── ar-er.js │ │ │ ├── ar-il.js │ │ │ ├── ar-iq.js │ │ │ ├── ar-jo.js │ │ │ ├── ar-km.js │ │ │ ├── ar-kw.js │ │ │ ├── ar-lb.js │ │ │ ├── ar-ly.js │ │ │ ├── ar-ma.js │ │ │ ├── ar-mr.js │ │ │ ├── ar-om.js │ │ │ ├── ar-ps.js │ │ │ ├── ar-qa.js │ │ │ ├── ar-sa.js │ │ │ ├── ar-sd.js │ │ │ ├── ar-so.js │ │ │ ├── ar-ss.js │ │ │ ├── ar-sy.js │ │ │ ├── ar-td.js │ │ │ ├── ar-tn.js │ │ │ ├── ar-xb.js │ │ │ ├── ar-ye.js │ │ │ ├── ar.js │ │ │ ├── as-in.js │ │ │ ├── as.js │ │ │ ├── asa-tz.js │ │ │ ├── asa.js │ │ │ ├── ast-es.js │ │ │ ├── ast.js │ │ │ ├── az-cyrl-az.js │ │ │ ├── az-cyrl.js │ │ │ ├── az-latn-az.js │ │ │ ├── az-latn.js │ │ │ ├── az.js │ │ │ ├── bas-cm.js │ │ │ ├── bas.js │ │ │ ├── be-by.js │ │ │ ├── be.js │ │ │ ├── bem-zm.js │ │ │ ├── bem.js │ │ │ ├── bez-tz.js │ │ │ ├── bez.js │ │ │ ├── bg-bg.js │ │ │ ├── bg.js │ │ │ ├── bm-latn-ml.js │ │ │ ├── bm-latn.js │ │ │ ├── bm-ml.js │ │ │ ├── bm.js │ │ │ ├── bn-bd.js │ │ │ ├── bn-in.js │ │ │ ├── bn.js │ │ │ ├── bo-cn.js │ │ │ ├── bo-in.js │ │ │ ├── bo.js │ │ │ ├── bower.json │ │ │ ├── br-fr.js │ │ │ ├── br.js │ │ │ ├── brx-in.js │ │ │ ├── brx.js │ │ │ ├── bs-cyrl-ba.js │ │ │ ├── bs-cyrl.js │ │ │ ├── bs-latn-ba.js │ │ │ ├── bs-latn.js │ │ │ ├── bs.js │ │ │ ├── byn-er.js │ │ │ ├── byn.js │ │ │ ├── ca-ad.js │ │ │ ├── ca-es-valencia.js │ │ │ ├── ca-es.js │ │ │ ├── ca-fr.js │ │ │ ├── ca-it.js │ │ │ ├── ca.js │ │ │ ├── ce-ru.js │ │ │ ├── ce.js │ │ │ ├── cgg-ug.js │ │ │ ├── cgg.js │ │ │ ├── chr-us.js │ │ │ ├── chr.js │ │ │ ├── ckb-arab-iq.js │ │ │ ├── ckb-arab-ir.js │ │ │ ├── ckb-arab.js │ │ │ ├── ckb-iq.js │ │ │ ├── ckb-ir.js │ │ │ ├── ckb-latn-iq.js │ │ │ ├── ckb-latn.js │ │ │ ├── ckb.js │ │ │ ├── cs-cz.js │ │ │ ├── cs.js │ │ │ ├── cu-ru.js │ │ │ ├── cu.js │ │ │ ├── cy-gb.js │ │ │ ├── cy.js │ │ │ ├── da-dk.js │ │ │ ├── da-gl.js │ │ │ ├── da.js │ │ │ ├── dav-ke.js │ │ │ ├── dav.js │ │ │ ├── de-at.js │ │ │ ├── de-be.js │ │ │ ├── de-ch.js │ │ │ ├── de-de.js │ │ │ ├── de-li.js │ │ │ ├── de-lu.js │ │ │ ├── de.js │ │ │ ├── dje-ne.js │ │ │ ├── dje.js │ │ │ ├── dsb-de.js │ │ │ ├── dsb.js │ │ │ ├── dua-cm.js │ │ │ ├── dua.js │ │ │ ├── dyo-sn.js │ │ │ ├── dyo.js │ │ │ ├── dz-bt.js │ │ │ ├── dz.js │ │ │ ├── ebu-ke.js │ │ │ ├── ebu.js │ │ │ ├── ee-gh.js │ │ │ ├── ee-tg.js │ │ │ ├── ee.js │ │ │ ├── el-cy.js │ │ │ ├── el-gr.js │ │ │ ├── el.js │ │ │ ├── en-001.js │ │ │ ├── en-150.js │ │ │ ├── en-ag.js │ │ │ ├── en-ai.js │ │ │ ├── en-as.js │ │ │ ├── en-at.js │ │ │ ├── en-au.js │ │ │ ├── en-bb.js │ │ │ ├── en-be.js │ │ │ ├── en-bi.js │ │ │ ├── en-bm.js │ │ │ ├── en-bs.js │ │ │ ├── en-bw.js │ │ │ ├── en-bz.js │ │ │ ├── en-ca.js │ │ │ ├── en-cc.js │ │ │ ├── en-ch.js │ │ │ ├── en-ck.js │ │ │ ├── en-cm.js │ │ │ ├── en-cx.js │ │ │ ├── en-cy.js │ │ │ ├── en-de.js │ │ │ ├── en-dg.js │ │ │ ├── en-dk.js │ │ │ ├── en-dm.js │ │ │ ├── en-dsrt-us.js │ │ │ ├── en-dsrt.js │ │ │ ├── en-er.js │ │ │ ├── en-fi.js │ │ │ ├── en-fj.js │ │ │ ├── en-fk.js │ │ │ ├── en-fm.js │ │ │ ├── en-gb.js │ │ │ ├── en-gd.js │ │ │ ├── en-gg.js │ │ │ ├── en-gh.js │ │ │ ├── en-gi.js │ │ │ ├── en-gm.js │ │ │ ├── en-gu.js │ │ │ ├── en-gy.js │ │ │ ├── en-hk.js │ │ │ ├── en-ie.js │ │ │ ├── en-il.js │ │ │ ├── en-im.js │ │ │ ├── en-in.js │ │ │ ├── en-io.js │ │ │ ├── en-iso.js │ │ │ ├── en-je.js │ │ │ ├── en-jm.js │ │ │ ├── en-ke.js │ │ │ ├── en-ki.js │ │ │ ├── en-kn.js │ │ │ ├── en-ky.js │ │ │ ├── en-lc.js │ │ │ ├── en-lr.js │ │ │ ├── en-ls.js │ │ │ ├── en-mg.js │ │ │ ├── en-mh.js │ │ │ ├── en-mo.js │ │ │ ├── en-mp.js │ │ │ ├── en-ms.js │ │ │ ├── en-mt.js │ │ │ ├── en-mu.js │ │ │ ├── en-mw.js │ │ │ ├── en-my.js │ │ │ ├── en-na.js │ │ │ ├── en-nf.js │ │ │ ├── en-ng.js │ │ │ ├── en-nl.js │ │ │ ├── en-nr.js │ │ │ ├── en-nu.js │ │ │ ├── en-nz.js │ │ │ ├── en-pg.js │ │ │ ├── en-ph.js │ │ │ ├── en-pk.js │ │ │ ├── en-pn.js │ │ │ ├── en-pr.js │ │ │ ├── en-pw.js │ │ │ ├── en-rw.js │ │ │ ├── en-sb.js │ │ │ ├── en-sc.js │ │ │ ├── en-sd.js │ │ │ ├── en-se.js │ │ │ ├── en-sg.js │ │ │ ├── en-sh.js │ │ │ ├── en-si.js │ │ │ ├── en-sl.js │ │ │ ├── en-ss.js │ │ │ ├── en-sx.js │ │ │ ├── en-sz.js │ │ │ ├── en-tc.js │ │ │ ├── en-tk.js │ │ │ ├── en-to.js │ │ │ ├── en-tt.js │ │ │ ├── en-tv.js │ │ │ ├── en-tz.js │ │ │ ├── en-ug.js │ │ │ ├── en-um.js │ │ │ ├── en-us.js │ │ │ ├── en-vc.js │ │ │ ├── en-vg.js │ │ │ ├── en-vi.js │ │ │ ├── en-vu.js │ │ │ ├── en-ws.js │ │ │ ├── en-xa.js │ │ │ ├── en-za.js │ │ │ ├── en-zm.js │ │ │ ├── en-zw.js │ │ │ ├── en.js │ │ │ ├── eo-001.js │ │ │ ├── eo.js │ │ │ ├── es-419.js │ │ │ ├── es-ar.js │ │ │ ├── es-bo.js │ │ │ ├── es-br.js │ │ │ ├── es-cl.js │ │ │ ├── es-co.js │ │ │ ├── es-cr.js │ │ │ ├── es-cu.js │ │ │ ├── es-do.js │ │ │ ├── es-ea.js │ │ │ ├── es-ec.js │ │ │ ├── es-es.js │ │ │ ├── es-gq.js │ │ │ ├── es-gt.js │ │ │ ├── es-hn.js │ │ │ ├── es-ic.js │ │ │ ├── es-mx.js │ │ │ ├── es-ni.js │ │ │ ├── es-pa.js │ │ │ ├── es-pe.js │ │ │ ├── es-ph.js │ │ │ ├── es-pr.js │ │ │ ├── es-py.js │ │ │ ├── es-sv.js │ │ │ ├── es-us.js │ │ │ ├── es-uy.js │ │ │ ├── es-ve.js │ │ │ ├── es.js │ │ │ ├── et-ee.js │ │ │ ├── et.js │ │ │ ├── eu-es.js │ │ │ ├── eu.js │ │ │ ├── ewo-cm.js │ │ │ ├── ewo.js │ │ │ ├── fa-af.js │ │ │ ├── fa-ir.js │ │ │ ├── fa.js │ │ │ ├── ff-cm.js │ │ │ ├── ff-gn.js │ │ │ ├── ff-mr.js │ │ │ ├── ff-sn.js │ │ │ ├── ff.js │ │ │ ├── fi-fi.js │ │ │ ├── fi.js │ │ │ ├── fil-ph.js │ │ │ ├── fil.js │ │ │ ├── fo-dk.js │ │ │ ├── fo-fo.js │ │ │ ├── fo.js │ │ │ ├── fr-be.js │ │ │ ├── fr-bf.js │ │ │ ├── fr-bi.js │ │ │ ├── fr-bj.js │ │ │ ├── fr-bl.js │ │ │ ├── fr-ca.js │ │ │ ├── fr-cd.js │ │ │ ├── fr-cf.js │ │ │ ├── fr-cg.js │ │ │ ├── fr-ch.js │ │ │ ├── fr-ci.js │ │ │ ├── fr-cm.js │ │ │ ├── fr-dj.js │ │ │ ├── fr-dz.js │ │ │ ├── fr-fr.js │ │ │ ├── fr-ga.js │ │ │ ├── fr-gf.js │ │ │ ├── fr-gn.js │ │ │ ├── fr-gp.js │ │ │ ├── fr-gq.js │ │ │ ├── fr-ht.js │ │ │ ├── fr-km.js │ │ │ ├── fr-lu.js │ │ │ ├── fr-ma.js │ │ │ ├── fr-mc.js │ │ │ ├── fr-mf.js │ │ │ ├── fr-mg.js │ │ │ ├── fr-ml.js │ │ │ ├── fr-mq.js │ │ │ ├── fr-mr.js │ │ │ ├── fr-mu.js │ │ │ ├── fr-nc.js │ │ │ ├── fr-ne.js │ │ │ ├── fr-pf.js │ │ │ ├── fr-pm.js │ │ │ ├── fr-re.js │ │ │ ├── fr-rw.js │ │ │ ├── fr-sc.js │ │ │ ├── fr-sn.js │ │ │ ├── fr-sy.js │ │ │ ├── fr-td.js │ │ │ ├── fr-tg.js │ │ │ ├── fr-tn.js │ │ │ ├── fr-vu.js │ │ │ ├── fr-wf.js │ │ │ ├── fr-yt.js │ │ │ ├── fr.js │ │ │ ├── fur-it.js │ │ │ ├── fur.js │ │ │ ├── fy-nl.js │ │ │ ├── fy.js │ │ │ ├── ga-ie.js │ │ │ ├── ga.js │ │ │ ├── gd-gb.js │ │ │ ├── gd.js │ │ │ ├── gl-es.js │ │ │ ├── gl.js │ │ │ ├── gsw-ch.js │ │ │ ├── gsw-fr.js │ │ │ ├── gsw-li.js │ │ │ ├── gsw.js │ │ │ ├── gu-in.js │ │ │ ├── gu.js │ │ │ ├── guz-ke.js │ │ │ ├── guz.js │ │ │ ├── gv-im.js │ │ │ ├── gv.js │ │ │ ├── ha-gh.js │ │ │ ├── ha-latn-gh.js │ │ │ ├── ha-latn-ne.js │ │ │ ├── ha-latn-ng.js │ │ │ ├── ha-latn.js │ │ │ ├── ha-ne.js │ │ │ ├── ha-ng.js │ │ │ ├── ha.js │ │ │ ├── haw-us.js │ │ │ ├── haw.js │ │ │ ├── he-il.js │ │ │ ├── he.js │ │ │ ├── hi-in.js │ │ │ ├── hi.js │ │ │ ├── hr-ba.js │ │ │ ├── hr-hr.js │ │ │ ├── hr.js │ │ │ ├── hsb-de.js │ │ │ ├── hsb.js │ │ │ ├── hu-hu.js │ │ │ ├── hu.js │ │ │ ├── hy-am.js │ │ │ ├── hy.js │ │ │ ├── ia-fr.js │ │ │ ├── ia.js │ │ │ ├── id-id.js │ │ │ ├── id.js │ │ │ ├── ig-ng.js │ │ │ ├── ig.js │ │ │ ├── ii-cn.js │ │ │ ├── ii.js │ │ │ ├── in.js │ │ │ ├── is-is.js │ │ │ ├── is.js │ │ │ ├── it-ch.js │ │ │ ├── it-it.js │ │ │ ├── it-sm.js │ │ │ ├── it.js │ │ │ ├── iw.js │ │ │ ├── ja-jp.js │ │ │ ├── ja.js │ │ │ ├── jgo-cm.js │ │ │ ├── jgo.js │ │ │ ├── jmc-tz.js │ │ │ ├── jmc.js │ │ │ ├── ka-ge.js │ │ │ ├── ka.js │ │ │ ├── kab-dz.js │ │ │ ├── kab.js │ │ │ ├── kam-ke.js │ │ │ ├── kam.js │ │ │ ├── kde-tz.js │ │ │ ├── kde.js │ │ │ ├── kea-cv.js │ │ │ ├── kea.js │ │ │ ├── khq-ml.js │ │ │ ├── khq.js │ │ │ ├── ki-ke.js │ │ │ ├── ki.js │ │ │ ├── kk-cyrl-kz.js │ │ │ ├── kk-cyrl.js │ │ │ ├── kk-kz.js │ │ │ ├── kk.js │ │ │ ├── kkj-cm.js │ │ │ ├── kkj.js │ │ │ ├── kl-gl.js │ │ │ ├── kl.js │ │ │ ├── kln-ke.js │ │ │ ├── kln.js │ │ │ ├── km-kh.js │ │ │ ├── km.js │ │ │ ├── kn-in.js │ │ │ ├── kn.js │ │ │ ├── ko-kp.js │ │ │ ├── ko-kr.js │ │ │ ├── ko.js │ │ │ ├── kok-in.js │ │ │ ├── kok.js │ │ │ ├── ks-arab-in.js │ │ │ ├── ks-arab.js │ │ │ ├── ks-in.js │ │ │ ├── ks.js │ │ │ ├── ksb-tz.js │ │ │ ├── ksb.js │ │ │ ├── ksf-cm.js │ │ │ ├── ksf.js │ │ │ ├── ksh-de.js │ │ │ ├── ksh.js │ │ │ ├── kw-gb.js │ │ │ ├── kw.js │ │ │ ├── ky-cyrl-kg.js │ │ │ ├── ky-cyrl.js │ │ │ ├── ky-kg.js │ │ │ ├── ky.js │ │ │ ├── lag-tz.js │ │ │ ├── lag.js │ │ │ ├── lb-lu.js │ │ │ ├── lb.js │ │ │ ├── lg-ug.js │ │ │ ├── lg.js │ │ │ ├── lkt-us.js │ │ │ ├── lkt.js │ │ │ ├── ln-ao.js │ │ │ ├── ln-cd.js │ │ │ ├── ln-cf.js │ │ │ ├── ln-cg.js │ │ │ ├── ln.js │ │ │ ├── lo-la.js │ │ │ ├── lo.js │ │ │ ├── lrc-iq.js │ │ │ ├── lrc-ir.js │ │ │ ├── lrc.js │ │ │ ├── lt-lt.js │ │ │ ├── lt.js │ │ │ ├── lu-cd.js │ │ │ ├── lu.js │ │ │ ├── luo-ke.js │ │ │ ├── luo.js │ │ │ ├── luy-ke.js │ │ │ ├── luy.js │ │ │ ├── lv-lv.js │ │ │ ├── lv.js │ │ │ ├── mas-ke.js │ │ │ ├── mas-tz.js │ │ │ ├── mas.js │ │ │ ├── mer-ke.js │ │ │ ├── mer.js │ │ │ ├── mfe-mu.js │ │ │ ├── mfe.js │ │ │ ├── mg-mg.js │ │ │ ├── mg.js │ │ │ ├── mgh-mz.js │ │ │ ├── mgh.js │ │ │ ├── mgo-cm.js │ │ │ ├── mgo.js │ │ │ ├── mk-mk.js │ │ │ ├── mk.js │ │ │ ├── ml-in.js │ │ │ ├── ml.js │ │ │ ├── mn-cyrl-mn.js │ │ │ ├── mn-cyrl.js │ │ │ ├── mn-mn.js │ │ │ ├── mn.js │ │ │ ├── mr-in.js │ │ │ ├── mr.js │ │ │ ├── ms-bn.js │ │ │ ├── ms-latn-bn.js │ │ │ ├── ms-latn-my.js │ │ │ ├── ms-latn-sg.js │ │ │ ├── ms-latn.js │ │ │ ├── ms-my.js │ │ │ ├── ms-sg.js │ │ │ ├── ms.js │ │ │ ├── mt-mt.js │ │ │ ├── mt.js │ │ │ ├── mua-cm.js │ │ │ ├── mua.js │ │ │ ├── my-mm.js │ │ │ ├── my.js │ │ │ ├── mzn-ir.js │ │ │ ├── mzn.js │ │ │ ├── naq-na.js │ │ │ ├── naq.js │ │ │ ├── nb-no.js │ │ │ ├── nb-sj.js │ │ │ ├── nb.js │ │ │ ├── nd-zw.js │ │ │ ├── nd.js │ │ │ ├── ne-in.js │ │ │ ├── ne-np.js │ │ │ ├── ne.js │ │ │ ├── nl-aw.js │ │ │ ├── nl-be.js │ │ │ ├── nl-bq.js │ │ │ ├── nl-cw.js │ │ │ ├── nl-nl.js │ │ │ ├── nl-sr.js │ │ │ ├── nl-sx.js │ │ │ ├── nl.js │ │ │ ├── nmg-cm.js │ │ │ ├── nmg.js │ │ │ ├── nn-no.js │ │ │ ├── nn.js │ │ │ ├── nnh-cm.js │ │ │ ├── nnh.js │ │ │ ├── no-no.js │ │ │ ├── no.js │ │ │ ├── nr-za.js │ │ │ ├── nr.js │ │ │ ├── nso-za.js │ │ │ ├── nso.js │ │ │ ├── nus-sd.js │ │ │ ├── nus-ss.js │ │ │ ├── nus.js │ │ │ ├── nyn-ug.js │ │ │ ├── nyn.js │ │ │ ├── om-et.js │ │ │ ├── om-ke.js │ │ │ ├── om.js │ │ │ ├── or-in.js │ │ │ ├── or.js │ │ │ ├── os-ge.js │ │ │ ├── os-ru.js │ │ │ ├── os.js │ │ │ ├── pa-arab-pk.js │ │ │ ├── pa-arab.js │ │ │ ├── pa-guru-in.js │ │ │ ├── pa-guru.js │ │ │ ├── pa.js │ │ │ ├── package.json │ │ │ ├── pl-pl.js │ │ │ ├── pl.js │ │ │ ├── prg-001.js │ │ │ ├── prg.js │ │ │ ├── ps-af.js │ │ │ ├── ps.js │ │ │ ├── pt-ao.js │ │ │ ├── pt-br.js │ │ │ ├── pt-ch.js │ │ │ ├── pt-cv.js │ │ │ ├── pt-gq.js │ │ │ ├── pt-gw.js │ │ │ ├── pt-lu.js │ │ │ ├── pt-mo.js │ │ │ ├── pt-mz.js │ │ │ ├── pt-pt.js │ │ │ ├── pt-st.js │ │ │ ├── pt-tl.js │ │ │ ├── pt.js │ │ │ ├── qu-bo.js │ │ │ ├── qu-ec.js │ │ │ ├── qu-pe.js │ │ │ ├── qu.js │ │ │ ├── rm-ch.js │ │ │ ├── rm.js │ │ │ ├── rn-bi.js │ │ │ ├── rn.js │ │ │ ├── ro-md.js │ │ │ ├── ro-ro.js │ │ │ ├── ro.js │ │ │ ├── rof-tz.js │ │ │ ├── rof.js │ │ │ ├── ru-by.js │ │ │ ├── ru-kg.js │ │ │ ├── ru-kz.js │ │ │ ├── ru-md.js │ │ │ ├── ru-ru.js │ │ │ ├── ru-ua.js │ │ │ ├── ru.js │ │ │ ├── rw-rw.js │ │ │ ├── rw.js │ │ │ ├── rwk-tz.js │ │ │ ├── rwk.js │ │ │ ├── sah-ru.js │ │ │ ├── sah.js │ │ │ ├── saq-ke.js │ │ │ ├── saq.js │ │ │ ├── sbp-tz.js │ │ │ ├── sbp.js │ │ │ ├── se-fi.js │ │ │ ├── se-no.js │ │ │ ├── se-se.js │ │ │ ├── se.js │ │ │ ├── seh-mz.js │ │ │ ├── seh.js │ │ │ ├── ses-ml.js │ │ │ ├── ses.js │ │ │ ├── sg-cf.js │ │ │ ├── sg.js │ │ │ ├── shi-latn-ma.js │ │ │ ├── shi-latn.js │ │ │ ├── shi-tfng-ma.js │ │ │ ├── shi-tfng.js │ │ │ ├── shi.js │ │ │ ├── si-lk.js │ │ │ ├── si.js │ │ │ ├── sk-sk.js │ │ │ ├── sk.js │ │ │ ├── sl-si.js │ │ │ ├── sl.js │ │ │ ├── smn-fi.js │ │ │ ├── smn.js │ │ │ ├── sn-zw.js │ │ │ ├── sn.js │ │ │ ├── so-dj.js │ │ │ ├── so-et.js │ │ │ ├── so-ke.js │ │ │ ├── so-so.js │ │ │ ├── so.js │ │ │ ├── sq-al.js │ │ │ ├── sq-mk.js │ │ │ ├── sq-xk.js │ │ │ ├── sq.js │ │ │ ├── sr-cyrl-ba.js │ │ │ ├── sr-cyrl-me.js │ │ │ ├── sr-cyrl-rs.js │ │ │ ├── sr-cyrl-xk.js │ │ │ ├── sr-cyrl.js │ │ │ ├── sr-latn-ba.js │ │ │ ├── sr-latn-me.js │ │ │ ├── sr-latn-rs.js │ │ │ ├── sr-latn-xk.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── ss-sz.js │ │ │ ├── ss-za.js │ │ │ ├── ss.js │ │ │ ├── ssy-er.js │ │ │ ├── ssy.js │ │ │ ├── st-ls.js │ │ │ ├── st-za.js │ │ │ ├── st.js │ │ │ ├── sv-ax.js │ │ │ ├── sv-fi.js │ │ │ ├── sv-se.js │ │ │ ├── sv.js │ │ │ ├── sw-cd.js │ │ │ ├── sw-ke.js │ │ │ ├── sw-tz.js │ │ │ ├── sw-ug.js │ │ │ ├── sw.js │ │ │ ├── swc-cd.js │ │ │ ├── swc.js │ │ │ ├── ta-in.js │ │ │ ├── ta-lk.js │ │ │ ├── ta-my.js │ │ │ ├── ta-sg.js │ │ │ ├── ta.js │ │ │ ├── te-in.js │ │ │ ├── te.js │ │ │ ├── teo-ke.js │ │ │ ├── teo-ug.js │ │ │ ├── teo.js │ │ │ ├── tg-cyrl-tj.js │ │ │ ├── tg-cyrl.js │ │ │ ├── tg.js │ │ │ ├── th-th.js │ │ │ ├── th.js │ │ │ ├── ti-er.js │ │ │ ├── ti-et.js │ │ │ ├── ti.js │ │ │ ├── tig-er.js │ │ │ ├── tig.js │ │ │ ├── tk-tm.js │ │ │ ├── tk.js │ │ │ ├── tl.js │ │ │ ├── tn-bw.js │ │ │ ├── tn-za.js │ │ │ ├── tn.js │ │ │ ├── to-to.js │ │ │ ├── to.js │ │ │ ├── tr-cy.js │ │ │ ├── tr-tr.js │ │ │ ├── tr.js │ │ │ ├── ts-za.js │ │ │ ├── ts.js │ │ │ ├── twq-ne.js │ │ │ ├── twq.js │ │ │ ├── tzm-latn-ma.js │ │ │ ├── tzm-latn.js │ │ │ ├── tzm-ma.js │ │ │ ├── tzm.js │ │ │ ├── ug-arab-cn.js │ │ │ ├── ug-arab.js │ │ │ ├── ug-cn.js │ │ │ ├── ug.js │ │ │ ├── uk-ua.js │ │ │ ├── uk.js │ │ │ ├── ur-in.js │ │ │ ├── ur-pk.js │ │ │ ├── ur.js │ │ │ ├── uz-arab-af.js │ │ │ ├── uz-arab.js │ │ │ ├── uz-cyrl-uz.js │ │ │ ├── uz-cyrl.js │ │ │ ├── uz-latn-uz.js │ │ │ ├── uz-latn.js │ │ │ ├── uz.js │ │ │ ├── vai-latn-lr.js │ │ │ ├── vai-latn.js │ │ │ ├── vai-vaii-lr.js │ │ │ ├── vai-vaii.js │ │ │ ├── vai.js │ │ │ ├── ve-za.js │ │ │ ├── ve.js │ │ │ ├── vi-vn.js │ │ │ ├── vi.js │ │ │ ├── vo-001.js │ │ │ ├── vo.js │ │ │ ├── vun-tz.js │ │ │ ├── vun.js │ │ │ ├── wae-ch.js │ │ │ ├── wae.js │ │ │ ├── wal-et.js │ │ │ ├── wal.js │ │ │ ├── xh-za.js │ │ │ ├── xh.js │ │ │ ├── xog-ug.js │ │ │ ├── xog.js │ │ │ ├── yav-cm.js │ │ │ ├── yav.js │ │ │ ├── yi-001.js │ │ │ ├── yi.js │ │ │ ├── yo-bj.js │ │ │ ├── yo-ng.js │ │ │ ├── yo.js │ │ │ ├── yue-hk.js │ │ │ ├── yue.js │ │ │ ├── zgh-ma.js │ │ │ ├── zgh.js │ │ │ ├── zh-cn.js │ │ │ ├── zh-hans-cn.js │ │ │ ├── zh-hans-hk.js │ │ │ ├── zh-hans-mo.js │ │ │ ├── zh-hans-sg.js │ │ │ ├── zh-hans.js │ │ │ ├── zh-hant-hk.js │ │ │ ├── zh-hant-mo.js │ │ │ ├── zh-hant-tw.js │ │ │ ├── zh-hant.js │ │ │ ├── zh-hk.js │ │ │ ├── zh-tw.js │ │ │ ├── zh.js │ │ │ ├── zu-za.js │ │ │ └── zu.js │ │ └── fr.json │ │ ├── index.html │ │ ├── libs │ │ └── mirador │ │ │ ├── ZeroClipboard.swf │ │ │ ├── css │ │ │ └── mirador-combined.css │ │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── MaterialIcons-Regular.eot │ │ │ ├── MaterialIcons-Regular.ijmap │ │ │ ├── MaterialIcons-Regular.svg │ │ │ ├── MaterialIcons-Regular.ttf │ │ │ ├── MaterialIcons-Regular.woff │ │ │ ├── MaterialIcons-Regular.woff2 │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── images │ │ │ ├── border_type_1.png │ │ │ ├── border_type_2.png │ │ │ ├── border_type_3.png │ │ │ ├── border_type_4.png │ │ │ ├── border_type_5.png │ │ │ └── debut_dark.png │ │ │ ├── locales │ │ │ ├── ar │ │ │ │ └── translation.json │ │ │ ├── de │ │ │ │ └── translation.json │ │ │ ├── en │ │ │ │ └── translation.json │ │ │ ├── es │ │ │ │ └── translation.json │ │ │ ├── fr │ │ │ │ └── translation.json │ │ │ ├── ga │ │ │ │ └── translation.json │ │ │ ├── ja │ │ │ │ └── translation.json │ │ │ ├── ko │ │ │ │ └── translation.json │ │ │ ├── nl │ │ │ │ └── translation.json │ │ │ ├── zh-CN │ │ │ │ └── translation.json │ │ │ ├── zh-TW │ │ │ │ └── translation.json │ │ │ └── zh │ │ │ │ └── translation.json │ │ │ ├── mirador.js │ │ │ ├── plugins │ │ │ ├── advlist │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── anchor │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── autolink │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── autoresize │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── autosave │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── bbcode │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── charmap │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── code │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── codesample │ │ │ │ ├── css │ │ │ │ │ └── prism.css │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── colorpicker │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── contextmenu │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── directionality │ │ │ │ ├── index.js │ │ │ │ ├── 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 │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── fullpage │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── fullscreen │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── help │ │ │ │ ├── img │ │ │ │ │ └── logo.png │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── hr │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── image │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── imagetools │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── importcss │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── insertdatetime │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── keyboardNavigation │ │ │ │ └── keyboardNavigation.js │ │ │ ├── legacyoutput │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── link │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── lists │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── media │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── nonbreaking │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── noneditable │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── pagebreak │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── paste │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── preview │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── print │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── save │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── searchreplace │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── spellchecker │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── tabfocus │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── table │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── template │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── textcolor │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── textpattern │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── toc │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── visualblocks │ │ │ │ ├── css │ │ │ │ │ └── visualblocks.css │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── visualchars │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ └── wordcount │ │ │ │ ├── index.js │ │ │ │ ├── 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.min.css │ │ │ └── themes │ │ │ ├── inlite │ │ │ ├── index.js │ │ │ ├── theme.js │ │ │ └── theme.min.js │ │ │ └── modern │ │ │ ├── index.js │ │ │ ├── theme.js │ │ │ └── theme.min.js │ │ ├── robots.txt │ │ └── scripts │ │ ├── app │ │ ├── account │ │ │ ├── account.js │ │ │ ├── activate │ │ │ │ ├── activate.controller.js │ │ │ │ └── activate.js │ │ │ ├── login │ │ │ │ ├── adminLogin.js │ │ │ │ └── login.html │ │ │ ├── password │ │ │ │ └── password.html │ │ │ ├── sessions │ │ │ │ ├── sessions.controller.js │ │ │ │ ├── sessions.html │ │ │ │ └── sessions.js │ │ │ └── settings │ │ │ │ ├── settings.controller.js │ │ │ │ └── settings.js │ │ ├── admin │ │ │ ├── admin.js │ │ │ ├── configuration │ │ │ │ ├── configuration.controller.js │ │ │ │ ├── configuration.html │ │ │ │ └── configuration.js │ │ │ ├── health │ │ │ │ ├── health.controller.js │ │ │ │ ├── health.html │ │ │ │ └── health.js │ │ │ ├── logs │ │ │ │ ├── logs.controller.js │ │ │ │ ├── logs.html │ │ │ │ └── logs.js │ │ │ ├── metrics │ │ │ │ ├── metrics.controller.js │ │ │ │ ├── metrics.html │ │ │ │ └── metrics.js │ │ │ ├── utilsprojectlot │ │ │ │ ├── utilsProjectLot.html │ │ │ │ ├── utilsProjectLot.js │ │ │ │ └── utilsProjectLotCtrl.js │ │ │ └── utilsworkflow │ │ │ │ ├── utilsWorkflow.html │ │ │ │ ├── utilsWorkflow.js │ │ │ │ └── utilsWorkflowCtrl.js │ │ ├── app.constants.js │ │ ├── app.js │ │ ├── checkconfiguration │ │ │ ├── configuration.js │ │ │ ├── configurationCtrl.js │ │ │ ├── configurationEdit.html │ │ │ ├── configurationEditCtrl.js │ │ │ ├── configurationSrvc.js │ │ │ ├── configurations.html │ │ │ └── pctFilter.js │ │ ├── checks │ │ │ ├── check.js │ │ │ ├── checkCtrl.js │ │ │ └── checks.html │ │ ├── configuration │ │ │ ├── appconfiguration.html │ │ │ ├── appconfiguration.js │ │ │ ├── auditSrvc.js │ │ │ ├── checkSlip │ │ │ │ ├── checkSlipConfEdit.html │ │ │ │ ├── checkSlipConfEditCtrl.js │ │ │ │ └── checkSlipConfSrvc.js │ │ │ ├── condreport │ │ │ │ ├── condreport.js │ │ │ │ ├── condreportDesc.html │ │ │ │ ├── condreportDescCtrl.js │ │ │ │ ├── condreportDescEdit.html │ │ │ │ ├── condreportDescEditCtrl.js │ │ │ │ └── condreportSrvc.js │ │ │ ├── condreportSlip │ │ │ │ ├── condReportSlipConfEdit.html │ │ │ │ ├── condReportSlipConfEditCtrl.js │ │ │ │ └── condReportSlipConfSrvc.js │ │ │ ├── csvMapping │ │ │ │ ├── csvMapping.html │ │ │ │ ├── csvMapping.js │ │ │ │ ├── csvMappingCtrl.js │ │ │ │ ├── csvMappingSrvc.js │ │ │ │ ├── csvModalEditRule.html │ │ │ │ └── csvModalEditRuleCtrl.js │ │ │ ├── deliverySlip │ │ │ │ ├── deliveryConf.html │ │ │ │ ├── deliveryConf.js │ │ │ │ ├── deliveryConfCtrl.js │ │ │ │ ├── deliveryConfEdit.html │ │ │ │ ├── deliveryConfEditCtrl.js │ │ │ │ └── deliveryConfSrvc.js │ │ │ ├── docPropertyType │ │ │ │ ├── docPropertyType.html │ │ │ │ ├── docPropertyType.js │ │ │ │ ├── docPropertyTypeCtrl.js │ │ │ │ └── docPropertyTypeSrvc.js │ │ │ ├── imagesmetadata │ │ │ │ ├── editMetadataModal.html │ │ │ │ ├── editMetadataModalCtrl.js │ │ │ │ ├── imagesMetadataSrvc.js │ │ │ │ ├── imagesmetadata.html │ │ │ │ ├── imagesmetadata.js │ │ │ │ └── imagesmetadataCtrl.js │ │ │ ├── mailbox │ │ │ │ ├── mailbox.html │ │ │ │ ├── mailbox.js │ │ │ │ ├── mailboxCtrl.js │ │ │ │ ├── mailboxEdit.html │ │ │ │ ├── mailboxEditCtrl.js │ │ │ │ └── mailboxSrvc.js │ │ │ ├── mapping │ │ │ │ ├── confirmCancel.html │ │ │ │ ├── mapping.html │ │ │ │ ├── mapping.js │ │ │ │ ├── mappingCtrl.js │ │ │ │ ├── mappingRuleCtxMenuSrvc.js │ │ │ │ ├── mappingRuleEadSrvc.js │ │ │ │ ├── mappingRuleMarcSrvc.js │ │ │ │ ├── mappingSrvc.js │ │ │ │ ├── modalEditRule.html │ │ │ │ └── modalEditRuleCtrl.js │ │ │ ├── template │ │ │ │ ├── template.html │ │ │ │ ├── template.js │ │ │ │ ├── templateCtrl.js │ │ │ │ ├── templateEdit.html │ │ │ │ ├── templateEditCtrl.js │ │ │ │ └── templateSrvc.js │ │ │ ├── viewsFormat │ │ │ │ ├── viewsFormat.html │ │ │ │ ├── viewsFormat.js │ │ │ │ ├── viewsFormatCtrl.js │ │ │ │ ├── viewsFormatEdit.html │ │ │ │ ├── viewsFormatEditCtrl.js │ │ │ │ └── viewsFormatSrvc.js │ │ │ └── z3950 │ │ │ │ ├── z3950Server.html │ │ │ │ ├── z3950Server.js │ │ │ │ ├── z3950ServerCtrl.js │ │ │ │ ├── z3950ServerEdit.html │ │ │ │ ├── z3950ServerEditCtrl.js │ │ │ │ └── z3950ServerSrvc.js │ │ ├── dashboard │ │ │ ├── actions │ │ │ │ ├── actionList.html │ │ │ │ └── actionListCtrl.js │ │ │ ├── alerts │ │ │ │ ├── alertList.html │ │ │ │ └── alertListCtrl.js │ │ │ ├── dashboard.html │ │ │ ├── dashboard.js │ │ │ ├── dashboardCtrl.js │ │ │ ├── dashboardSrvc.js │ │ │ ├── templates │ │ │ │ ├── dashboard-column.html │ │ │ │ ├── dashboard-edit.html │ │ │ │ ├── dashboard-row.html │ │ │ │ ├── dashboard-title.html │ │ │ │ ├── dashboard.html │ │ │ │ ├── widget-add.html │ │ │ │ ├── widget-delete.html │ │ │ │ ├── widget-edit.html │ │ │ │ ├── widget-fullscreen.html │ │ │ │ ├── widget-title.html │ │ │ │ └── widget.html │ │ │ └── widgets │ │ │ │ ├── checkDelay │ │ │ │ ├── checkDelayEditWidget.html │ │ │ │ ├── checkDelayEditWidgetCtrl.js │ │ │ │ ├── checkDelayWidget.html │ │ │ │ └── checkDelayWidget.js │ │ │ │ ├── clock │ │ │ │ ├── clockWidget.html │ │ │ │ └── clockWidget.js │ │ │ │ ├── controlState │ │ │ │ ├── controlStateEditWidget.html │ │ │ │ ├── controlStateEditWidgetCtrl.js │ │ │ │ ├── controlStateWidget.html │ │ │ │ └── controlStateWidget.js │ │ │ │ ├── deliveryState │ │ │ │ ├── deliveryStateEditWidget.html │ │ │ │ ├── deliveryStateEditWidgetCtrl.js │ │ │ │ ├── deliveryStateWidget.html │ │ │ │ └── deliveryStateWidget.js │ │ │ │ ├── diskSpace │ │ │ │ ├── spaceChartEditWidget.html │ │ │ │ ├── spaceChartEditWidgetCtrl.js │ │ │ │ ├── spaceChartWidget.html │ │ │ │ └── spaceChartWidget.js │ │ │ │ ├── docStateRatioChart │ │ │ │ ├── docStateRatioChartEditWidget.html │ │ │ │ ├── docStateRatioChartEditWidgetCtrl.js │ │ │ │ ├── docStateRatioChartWidget.html │ │ │ │ └── docStateRatioChartWidget.js │ │ │ │ ├── docUnitList │ │ │ │ ├── docUnitListEditWidget.html │ │ │ │ ├── docUnitListEditWidgetCtrl.js │ │ │ │ ├── docUnitListWidget.html │ │ │ │ └── docUnitListWidget.js │ │ │ │ ├── docUnitProcessed │ │ │ │ ├── docUnitProcessedEditWidget.html │ │ │ │ ├── docUnitProcessedEditWidgetCtrl.js │ │ │ │ ├── docUnitProcessedWidget.html │ │ │ │ └── docUnitProcessedWidget.js │ │ │ │ ├── docUnitState │ │ │ │ ├── docUnitStateEditWidget.html │ │ │ │ ├── docUnitStateEditWidgetCtrl.js │ │ │ │ ├── docUnitStateWidget.html │ │ │ │ └── docUnitStateWidget.js │ │ │ │ ├── lotState │ │ │ │ ├── lotStateEditWidget.html │ │ │ │ ├── lotStateEditWidgetCtrl.js │ │ │ │ ├── lotStateWidget.html │ │ │ │ └── lotStateWidget.js │ │ │ │ ├── projectDetails │ │ │ │ ├── projectDetailsEditWidget.html │ │ │ │ ├── projectDetailsEditWidgetCtrl.js │ │ │ │ ├── projectDetailsWidget.html │ │ │ │ └── projectDetailsWidget.js │ │ │ │ ├── projectState │ │ │ │ ├── projectStateEditWidget.html │ │ │ │ ├── projectStateEditWidgetCtrl.js │ │ │ │ ├── projectStateWidget.html │ │ │ │ └── projectStateWidget.js │ │ │ │ ├── sampleState │ │ │ │ ├── sampleStateEditWidget.html │ │ │ │ ├── sampleStateEditWidgetCtrl.js │ │ │ │ ├── sampleStateWidget.html │ │ │ │ └── sampleStateWidget.js │ │ │ │ ├── statusChart │ │ │ │ ├── statusChartEditWidget.html │ │ │ │ ├── statusChartEditWidgetCtrl.js │ │ │ │ ├── statusChartWidget.html │ │ │ │ └── statusChartWidget.js │ │ │ │ ├── trainState │ │ │ │ ├── trainStateEditWidget.html │ │ │ │ ├── trainStateEditWidgetCtrl.js │ │ │ │ ├── trainStateWidget.html │ │ │ │ └── trainStateWidget.js │ │ │ │ └── userChart │ │ │ │ ├── userChartEditWidget.html │ │ │ │ ├── userChartEditWidgetCtrl.js │ │ │ │ ├── userChartWidget.html │ │ │ │ └── userChartWidget.js │ │ ├── delivery │ │ │ ├── deliveries.html │ │ │ ├── delivery.js │ │ │ ├── deliveryCtrl.js │ │ │ ├── deliveryEdit.html │ │ │ ├── deliveryEditCtrl.js │ │ │ ├── deliveryPrevalidate.html │ │ │ ├── deliveryPrevalidateCtrl.js │ │ │ └── deliverySrvc.js │ │ ├── document │ │ │ ├── allOperations │ │ │ │ ├── all_operations.html │ │ │ │ ├── archive.html │ │ │ │ ├── check.html │ │ │ │ ├── condreport.html │ │ │ │ ├── condreportCtrl.js │ │ │ │ ├── digitalDocumentAllOperationsCtrl.js │ │ │ │ ├── docAllOperationsCtrl.js │ │ │ │ ├── docUnit.html │ │ │ │ ├── docUnitAllOperationsCtrl.js │ │ │ │ ├── export.html │ │ │ │ ├── exportAllOperationsCtrl.js │ │ │ │ ├── metadata.html │ │ │ │ ├── metadataCtrl.js │ │ │ │ ├── record.html │ │ │ │ ├── recordAllOperationsCtrl.js │ │ │ │ ├── relations.html │ │ │ │ ├── relationsAllOperationsCtrl.js │ │ │ │ ├── workflow.html │ │ │ │ └── workflowAllOperationsCtrl.js │ │ │ ├── check │ │ │ │ └── autoCheckSrvc.js │ │ │ ├── condreportList.html │ │ │ ├── condreportListCtrl.js │ │ │ ├── condreportSrvc.js │ │ │ ├── digitalDocument.html │ │ │ ├── digitalDocumentCtrl.js │ │ │ ├── docUnitCtrl.js │ │ │ ├── docUnitEdit.html │ │ │ ├── docUnitEditCtrl.js │ │ │ ├── docUnitListCtrl.js │ │ │ ├── docUnits.html │ │ │ ├── docUnitsList.html │ │ │ ├── document.js │ │ │ ├── documentSrvc.js │ │ │ ├── export │ │ │ │ ├── exportHandlerSrvc.js │ │ │ │ └── exportSrvc.js │ │ │ ├── import │ │ │ │ ├── import.html │ │ │ │ ├── import.js │ │ │ │ ├── importCtrl.js │ │ │ │ ├── importEdit.html │ │ │ │ ├── importEditCtrl.js │ │ │ │ └── importSrvc.js │ │ │ ├── modals │ │ │ │ ├── createItemInternetArchive.html │ │ │ │ ├── deleteDocUnitResults.html │ │ │ │ ├── exportCines.html │ │ │ │ ├── fileDisplay.html │ │ │ │ ├── modalCreateItemInternetArchiveCtrl.js │ │ │ │ ├── modalDeleteDocUnitResultsCtrl.js │ │ │ │ ├── modalExportCinesCtrl.js │ │ │ │ ├── modalSelectBibRecord.js │ │ │ │ ├── modalSelectDocUnit.js │ │ │ │ ├── modalUnlinkDocUnitResultsCtrl.js │ │ │ │ ├── modalUpdateDocUnitResultsCtrl.js │ │ │ │ ├── modalUpdateRecordsCtrl.js │ │ │ │ ├── selectBibRecord.html │ │ │ │ ├── selectDocUnit.html │ │ │ │ ├── unlinkDocUnitResults.html │ │ │ │ ├── updateDocUnitResults.html │ │ │ │ └── updateRecords.html │ │ │ ├── pageCheck.html │ │ │ ├── pageCheckCtrl.js │ │ │ ├── pageCheckSrvc.js │ │ │ ├── recordCtrl.js │ │ │ ├── recordEdit.html │ │ │ ├── recordEditCtrl.js │ │ │ ├── recordList.html │ │ │ ├── recordListCtrl.js │ │ │ ├── records.html │ │ │ ├── selectionSrvc.js │ │ │ ├── util │ │ │ │ └── docUnitBaseService.js │ │ │ └── z3950 │ │ │ │ ├── modalZ3950Search.html │ │ │ │ ├── modalZ3950SearchCtrl.js │ │ │ │ └── z3950Srvc.js │ │ ├── error │ │ │ ├── accessdenied.html │ │ │ ├── error.html │ │ │ └── error.js │ │ ├── filesgestion │ │ │ ├── filesGestion.js │ │ │ ├── filesGestionConfig.html │ │ │ ├── filesGestionConfigCtrl.js │ │ │ ├── filesGestionConfigEdit.html │ │ │ ├── filesGestionConfigEditCtrl.js │ │ │ └── filesGestionConfigSrvc.js │ │ ├── help │ │ │ ├── help.js │ │ │ ├── helpPageCtrl.js │ │ │ ├── helpPageEdit.html │ │ │ ├── helpPageEditCtrl.js │ │ │ ├── helpPageSrvc.js │ │ │ └── helpPages.html │ │ ├── library │ │ │ ├── libraries.html │ │ │ ├── library.js │ │ │ ├── libraryCtrl.js │ │ │ ├── libraryEdit.html │ │ │ ├── libraryEditCtrl.js │ │ │ └── librarySrvc.js │ │ ├── lot │ │ │ ├── allOperations.html │ │ │ ├── allOperationsCtrl.js │ │ │ ├── deliveries.html │ │ │ ├── deliveryCtrl.js │ │ │ ├── docs.html │ │ │ ├── docsCtrl.js │ │ │ ├── lot.js │ │ │ ├── lotCtrl.js │ │ │ ├── lotEdit.html │ │ │ ├── lotEditCtrl.js │ │ │ ├── lotList.html │ │ │ ├── lotListCtrl.js │ │ │ ├── lotSrvc.js │ │ │ └── lots.html │ │ ├── main │ │ │ ├── error.html │ │ │ ├── informationsRight.html │ │ │ ├── main.html │ │ │ ├── menuLeft.html │ │ │ ├── menuTop.html │ │ │ └── password.html │ │ ├── multilotsdelivery │ │ │ ├── multiDeliveries.html │ │ │ ├── multiDeliveryCtrl.js │ │ │ ├── multiDeliveryEdit.html │ │ │ ├── multiDeliveryEditCtrl.js │ │ │ ├── multiDeliveryPrevalidate.html │ │ │ ├── multiDeliveryPrevalidateCtrl.js │ │ │ ├── multiDeliverySrvc.js │ │ │ └── multiLotsDelivery.js │ │ ├── numahop.constants.js │ │ ├── numahop │ │ │ ├── common │ │ │ │ ├── initialFilterCtrl.js │ │ │ │ ├── lockSrvc.js │ │ │ │ ├── semToggleFilters.js │ │ │ │ ├── semToggleInformations.js │ │ │ │ └── validationSrvc.js │ │ │ └── history │ │ │ │ ├── historyCtrl.js │ │ │ │ └── historySrvc.js │ │ ├── ocrlangconfiguration │ │ │ ├── configuration.js │ │ │ ├── configurationCtrl.js │ │ │ ├── configurationEdit.html │ │ │ ├── configurationEditCtrl.js │ │ │ ├── configurationSrvc.js │ │ │ └── configurations.html │ │ ├── platformconfiguration │ │ │ ├── cinesLanguageCodeSrvc.js │ │ │ ├── configuration.js │ │ │ ├── configurationSrvc.js │ │ │ ├── digitallibraryconfiguration │ │ │ │ ├── digitalLibraryConfiguration.html │ │ │ │ ├── digitalLibraryConfigurationCtrl.js │ │ │ │ ├── digitalLibraryConfigurationEdit.html │ │ │ │ └── digitalLibraryConfigurationEditCtrl.js │ │ │ ├── exportftpconfiguration.html │ │ │ ├── exportftpconfigurationCtrl.js │ │ │ ├── exportftpconfigurationEdit.html │ │ │ ├── exportftpconfigurationEditCtrl.js │ │ │ ├── ftpconfigurationCtrl.js │ │ │ ├── ftpconfigurationEdit.html │ │ │ ├── ftpconfigurationEditCtrl.js │ │ │ ├── ftpconfigurations.html │ │ │ ├── iaconfigurationCtrl.js │ │ │ ├── iaconfigurationEdit.html │ │ │ ├── iaconfigurationEditCtrl.js │ │ │ ├── iaconfigurations.html │ │ │ ├── omekaconfiguration.html │ │ │ ├── omekaconfigurationCtrl.js │ │ │ ├── omekaconfigurationEdit.html │ │ │ ├── omekaconfigurationEditCtrl.js │ │ │ ├── sftpconfigurationCtrl.js │ │ │ ├── sftpconfigurationEdit.html │ │ │ ├── sftpconfigurationEditCtrl.js │ │ │ └── sftpconfigurations.html │ │ ├── project │ │ │ ├── allOperations.html │ │ │ ├── allOperationsCtrl.js │ │ │ ├── docs.html │ │ │ ├── docsCtrl.js │ │ │ ├── lots.html │ │ │ ├── lotsCtrl.js │ │ │ ├── project.js │ │ │ ├── projectCtrl.js │ │ │ ├── projectEdit.html │ │ │ ├── projectEditCtrl.js │ │ │ ├── projectSrvc.js │ │ │ ├── projects.html │ │ │ ├── trains.html │ │ │ └── trainsCtrl.js │ │ ├── search │ │ │ ├── advSearch.html │ │ │ ├── advSearchCtrl.js │ │ │ ├── search.js │ │ │ ├── searchResults.html │ │ │ ├── searchResultsCtrl.js │ │ │ └── searchSrvc.js │ │ ├── statistics │ │ │ ├── dashboard │ │ │ │ ├── profileActivity.html │ │ │ │ ├── projectProgress.html │ │ │ │ ├── statisticsDashboard.js │ │ │ │ ├── statisticsDashboardProfileActivityCtrl.js │ │ │ │ ├── statisticsDashboardProjectProgressCtrl.js │ │ │ │ ├── statisticsDashboardTrainProviderCtrl.js │ │ │ │ ├── statisticsDashboardUserActivityCtrl.js │ │ │ │ ├── trainProvider.html │ │ │ │ └── userActivity.html │ │ │ ├── doc_published.html │ │ │ ├── doc_rejected.html │ │ │ ├── projects.html │ │ │ ├── statisticsDocPublishedCtrl.js │ │ │ ├── statisticsDocRejectedCtrl.js │ │ │ ├── statisticsProjectCtrl.js │ │ │ ├── statisticsSrvc.js │ │ │ └── workflow │ │ │ │ ├── statisticsWorkflow.js │ │ │ │ ├── statisticsWorkflowAvgCtrl.js │ │ │ │ ├── statisticsWorkflowDlvCtrl.js │ │ │ │ ├── statisticsWorkflowDocCtrl.js │ │ │ │ ├── statisticsWorkflowProviderCtrl.js │ │ │ │ ├── statisticsWorkflowStateCtrl.js │ │ │ │ ├── statisticsWorkflowUserCtrl.js │ │ │ │ ├── workflowAvg.html │ │ │ │ ├── workflowDlv.html │ │ │ │ ├── workflowDoc.html │ │ │ │ ├── workflowProvider.html │ │ │ │ ├── workflowState.html │ │ │ │ └── workflowUser.html │ │ ├── train │ │ │ ├── allOperations.html │ │ │ ├── allOperationsCtrl.js │ │ │ ├── docCtrl.js │ │ │ ├── docs.html │ │ │ ├── train.js │ │ │ ├── trainCtrl.js │ │ │ ├── trainEdit.html │ │ │ ├── trainEditCtrl.js │ │ │ ├── trainSrvc.js │ │ │ └── trains.html │ │ ├── user │ │ │ ├── account.html │ │ │ ├── accountCtrl.js │ │ │ ├── roleEdit.html │ │ │ ├── roles.html │ │ │ ├── user.js │ │ │ ├── userAuthorizationCtrl.js │ │ │ ├── userCtrl.js │ │ │ ├── userEdit.html │ │ │ ├── userEditCtrl.js │ │ │ ├── userRoleCtrl.js │ │ │ ├── userRoleEditCtrl.js │ │ │ ├── userSrvc.js │ │ │ └── users.html │ │ ├── viewer │ │ │ ├── mirador.html │ │ │ ├── viewer.html │ │ │ ├── viewer.js │ │ │ ├── viewerCtrl.js │ │ │ └── vision.html │ │ └── workflow │ │ │ ├── groupEdit.html │ │ │ ├── groups.html │ │ │ ├── modals │ │ │ ├── editModelState.html │ │ │ └── modalEditModelStateCtrl.js │ │ │ ├── modelEdit.html │ │ │ ├── models.html │ │ │ ├── workflow.js │ │ │ ├── workflowGroupCtrl.js │ │ │ ├── workflowGroupEditCtrl.js │ │ │ ├── workflowModelCtrl.js │ │ │ ├── workflowModelEditCtrl.js │ │ │ └── workflowSrvc.js │ │ ├── components │ │ ├── admin │ │ │ ├── audits.service.js │ │ │ ├── configuration.service.js │ │ │ ├── logs.service.js │ │ │ └── monitoring.service.js │ │ ├── auth │ │ │ ├── auth.service.js │ │ │ ├── authority.directive.js │ │ │ ├── provider │ │ │ │ └── auth.session.service.js │ │ │ └── services │ │ │ │ ├── account.service.js │ │ │ │ ├── activate.service.js │ │ │ │ ├── password.service.js │ │ │ │ ├── register.service.js │ │ │ │ └── sessions.service.js │ │ ├── components │ │ │ ├── headerBar │ │ │ │ ├── headerBar.html │ │ │ │ ├── headerBar.js │ │ │ │ └── headerBarCtrl.js │ │ │ ├── numaAlertAuditEntity │ │ │ │ ├── numaAlertAuditEntity.html │ │ │ │ ├── numaAlertAuditEntityComponent.js │ │ │ │ └── numaAlertAuditEntityCtrl.js │ │ │ ├── numaAlertWorkflowTodo │ │ │ │ ├── numaAlertWorkflowTodo.html │ │ │ │ ├── numaAlertWorkflowTodoComponent.js │ │ │ │ ├── numaAlertWorkflowTodoCtrl.js │ │ │ │ └── todoTable │ │ │ │ │ ├── todoTable.html │ │ │ │ │ ├── todoTableComponent.js │ │ │ │ │ └── todoTableCtrl.js │ │ │ ├── numaCustomLink │ │ │ │ ├── numaCustomLinkComponent.js │ │ │ │ └── template.html │ │ │ ├── numaEditableField │ │ │ │ ├── numaEditableField.html │ │ │ │ ├── numaEditableFieldComponent.js │ │ │ │ └── numaEditableFieldCtrl.js │ │ │ ├── numaFilter │ │ │ │ ├── numaFilter.html │ │ │ │ ├── numaFilterComponent.js │ │ │ │ ├── numaFilterField.html │ │ │ │ └── numaFilterFieldComponent.js │ │ │ ├── numaResultFacet │ │ │ │ ├── numaResultFacet.html │ │ │ │ ├── numaResultFacetComponent.js │ │ │ │ └── numaResultFacetCtrl.js │ │ │ ├── numaResultList │ │ │ │ ├── numaResultCondreport.html │ │ │ │ ├── numaResultCondreportComponent.js │ │ │ │ ├── numaResultDelivery.html │ │ │ │ ├── numaResultDeliveryComponent.js │ │ │ │ ├── numaResultDocunit.html │ │ │ │ ├── numaResultDocunitComponent.js │ │ │ │ ├── numaResultList.html │ │ │ │ ├── numaResultListComponent.js │ │ │ │ ├── numaResultListSelection.html │ │ │ │ ├── numaResultListSelectionComponent.js │ │ │ │ ├── numaResultLot.html │ │ │ │ ├── numaResultLotComponent.js │ │ │ │ ├── numaResultProject.html │ │ │ │ ├── numaResultProjectComponent.js │ │ │ │ ├── numaResultRecord.html │ │ │ │ ├── numaResultRecordComponent.js │ │ │ │ ├── numaResultTrain.html │ │ │ │ └── numaResultTrainComponent.js │ │ │ ├── numaSearchControl │ │ │ │ ├── numaSearchControl.html │ │ │ │ ├── numaSearchControlComponent.js │ │ │ │ ├── numaSearchControlCtrl.js │ │ │ │ ├── numaSearchControlSrvc.js │ │ │ │ ├── numaSearchControls.html │ │ │ │ ├── numaSearchControlsComponent.js │ │ │ │ └── numaSearchControlsCtrl.js │ │ │ └── numaWorkflowLink │ │ │ │ ├── numaWorkflowLinkComponent.js │ │ │ │ └── template.html │ │ ├── directives │ │ │ ├── accordion │ │ │ │ └── accordion-group.html │ │ │ ├── datepicker │ │ │ │ ├── day.html │ │ │ │ ├── month.html │ │ │ │ └── year.html │ │ │ ├── directives.js │ │ │ ├── editableDatepicker │ │ │ │ └── editableDatepickerDirective.js │ │ │ ├── editableRadiolist │ │ │ │ └── editableRadiolistDirective.js │ │ │ ├── editableSelect2 │ │ │ │ └── editableSelect2Directive.js │ │ │ ├── editableSemnumber │ │ │ │ └── editableSemnumberDirective.js │ │ │ ├── editableSempercent │ │ │ │ └── directive.js │ │ │ ├── editableUiselect │ │ │ │ └── editableUiselectDirective.js │ │ │ ├── inputSemnumber │ │ │ │ └── inputSemnumberDirective.js │ │ │ ├── inputSempercent │ │ │ │ └── inputSempercentDirective.js │ │ │ ├── semDatepicker │ │ │ │ └── semDatepickerDirective.js │ │ │ ├── semEditableBlock │ │ │ │ ├── semEditableBlockCtrl.js │ │ │ │ └── semEditableBlockDirective.js │ │ │ ├── semEditableBlockHeader │ │ │ │ ├── semEditableBlockHeaderDirective.js │ │ │ │ └── template.html │ │ │ ├── semEditableField │ │ │ │ ├── semEditableFieldCtrl.js │ │ │ │ ├── semEditableFieldDirective.js │ │ │ │ ├── template-checkbox.html │ │ │ │ ├── template-default.html │ │ │ │ ├── template-select.html │ │ │ │ ├── template-select2.html │ │ │ │ └── template-uiselect.html │ │ │ ├── semEditableForm │ │ │ │ ├── semEditableFormCtrl.js │ │ │ │ └── semEditableFormDirective.js │ │ │ ├── semEnterKey │ │ │ │ └── semEnterKeyDirective.js │ │ │ ├── semField │ │ │ │ ├── semFieldCtrl.js │ │ │ │ ├── semFieldDirective.js │ │ │ │ ├── template-checkbox.html │ │ │ │ ├── template-datepicker.html │ │ │ │ ├── template-default.html │ │ │ │ ├── template-select.html │ │ │ │ ├── template-select2.html │ │ │ │ ├── template-textarea.html │ │ │ │ └── template-uiselect.html │ │ │ ├── semRolesAllowed │ │ │ │ └── semRolesAllowedDirective.js │ │ │ └── semTable │ │ │ │ ├── semTableCtrl.js │ │ │ │ └── semTableDirective.js │ │ ├── document │ │ │ └── numahopAutoCheckService.js │ │ ├── filters │ │ │ ├── boolean.js │ │ │ ├── duration.js │ │ │ ├── filesize.js │ │ │ ├── filtersCtrl.js │ │ │ ├── initial.js │ │ │ ├── moment.js │ │ │ └── percent.js │ │ ├── form │ │ │ ├── form.directive.js │ │ │ ├── pager.directive.js │ │ │ ├── pager.html │ │ │ ├── pagination.directive.js │ │ │ └── pagination.html │ │ ├── library │ │ │ └── library.service.js │ │ ├── lot │ │ │ └── lot.service.js │ │ ├── message │ │ │ ├── codeSrvc.js │ │ │ ├── erreurSrvc.js │ │ │ ├── messageInterceptor.js │ │ │ └── messageSrvc.js │ │ ├── modal │ │ │ ├── common │ │ │ │ ├── addWarning.html │ │ │ │ ├── cancelWithComment.html │ │ │ │ ├── checkTextOcr.html │ │ │ │ ├── configureCsvExport.html │ │ │ │ ├── configureDeliverySlip.html │ │ │ │ ├── confirmAction.html │ │ │ │ ├── confirmCancel.html │ │ │ │ ├── confirmCheckTerminated.html │ │ │ │ ├── confirmModSub.html │ │ │ │ ├── confirmNotFound.html │ │ │ │ ├── createProject.html │ │ │ │ ├── currentSessionWarning.html │ │ │ │ ├── definitiveRejectWarning.html │ │ │ │ ├── deleteWarning.html │ │ │ │ ├── displayData.html │ │ │ │ ├── getRevisions.html │ │ │ │ ├── getValueTextarea.html │ │ │ │ ├── integrateToProject.html │ │ │ │ ├── integrateToTrain.html │ │ │ │ ├── newClosingDate.html │ │ │ │ ├── newOpeningDate.html │ │ │ │ ├── selectExportTypes.html │ │ │ │ └── selectFile.html │ │ │ ├── modalCheckTextOcrCtrl.js │ │ │ ├── modalConfigureCsvExportCtrl.js │ │ │ ├── modalConfigureDeliverySlipCtrl.js │ │ │ ├── modalConfirmCheckTerminatedCtrl.js │ │ │ ├── modalCreateProjectCtrl.js │ │ │ ├── modalCtrl.js │ │ │ ├── modalGetRevisionsCtrl.js │ │ │ ├── modalIntegrateToProjectCtrl.js │ │ │ ├── modalIntegrateToTrainCtrl.js │ │ │ ├── modalSelectExportTypesCtrl.js │ │ │ ├── modalSelectFileCtrl.js │ │ │ ├── modalSrvc.js │ │ │ └── modalWithValidationCtrl.js │ │ ├── navbar │ │ │ ├── navbar.controller.js │ │ │ ├── navbar.directive.js │ │ │ └── navbar.html │ │ ├── numahop │ │ │ └── principal.service.js │ │ ├── project │ │ │ └── project.service.js │ │ ├── templates │ │ │ └── common │ │ │ │ ├── docUnitListFilters.html │ │ │ │ ├── filters.html │ │ │ │ ├── history.html │ │ │ │ ├── initialFilter.html │ │ │ │ └── navigation.html │ │ ├── user │ │ │ └── user.service.js │ │ ├── util │ │ │ ├── canvasUtil.js │ │ │ ├── dateutil.service.js │ │ │ ├── dtoService.js │ │ │ ├── listTools.js │ │ │ ├── numahopEditService.js │ │ │ ├── numahopInitializationSrvc.js │ │ │ ├── numahopStatusService.js │ │ │ ├── numahopStorageService.js │ │ │ ├── numahopUrlService.js │ │ │ ├── objectTools.js │ │ │ ├── parse-links.service.js │ │ │ ├── stringTools.js │ │ │ └── truncate.filter.js │ │ ├── websocket │ │ │ └── websocketSrvc.js │ │ └── workflow │ │ │ ├── workflowHandleSrvc.js │ │ │ └── workflowLotHandleSrvc.js │ │ ├── configuration.js │ │ ├── controllers.js │ │ ├── directives.js │ │ ├── http-auth-interceptor.js │ │ ├── lib │ │ ├── JSOG.js │ │ └── stPaginationScroll.js │ │ ├── libTemplates.js │ │ ├── services.js │ │ ├── truncate.js │ │ └── utils.js └── test │ ├── java │ └── fr │ │ └── progilone │ │ └── pgcn │ │ ├── ApplicationSecurityTest.java │ │ ├── ApplicationTest.java │ │ ├── JasperCompile.java │ │ ├── service │ │ ├── JasperReportsServiceTest.java │ │ ├── LockServiceTest.java │ │ ├── administration │ │ │ ├── MailboxConfigurationServiceTest.java │ │ │ ├── SftpConfigurationServiceTest.java │ │ │ ├── TransliterationServiceTest.java │ │ │ ├── mapper │ │ │ │ ├── MapperConfigurationMapperTest.java │ │ │ │ ├── SftpConfigurationMapperTest.java │ │ │ │ └── Z3950ServerMapperTest.java │ │ │ └── z3950 │ │ │ │ └── Z3950ServerServiceTest.java │ │ ├── check │ │ │ └── AutomaticCheckServiceTest.java │ │ ├── delivery │ │ │ └── DeliveryAsyncServiceTest.java │ │ ├── document │ │ │ ├── BibliographicRecordServiceTest.java │ │ │ ├── DocPropertyTypeServiceTest.java │ │ │ ├── conditionreport │ │ │ │ ├── ConditionReportAttachmentServiceTest.java │ │ │ │ ├── ConditionReportDetailServiceTest.java │ │ │ │ ├── ConditionReportExportServiceTest.java │ │ │ │ ├── ConditionReportServiceTest.java │ │ │ │ ├── DescriptionPropertyServiceTest.java │ │ │ │ ├── DescriptionValueServiceTest.java │ │ │ │ └── PropertyConfigurationServiceTest.java │ │ │ ├── mapper │ │ │ │ └── ConditionReportDetailMapperTest.java │ │ │ └── ui │ │ │ │ └── UIDocUnitServiceTest.java │ │ ├── es │ │ │ └── jackson │ │ │ │ └── MappingJacksonMapperTest.java │ │ ├── exchange │ │ │ ├── DeduplicationServiceTest.java │ │ │ ├── ExchangeHelperTest.java │ │ │ ├── ImportDocUnitServiceTest.java │ │ │ ├── ImportReportServiceTest.java │ │ │ ├── MappingServiceTest.java │ │ │ ├── cines │ │ │ │ ├── CinesReportServiceTest.java │ │ │ │ ├── CinesRequestHandlerServiceTest.java │ │ │ │ ├── ExportCinesServiceTest.java │ │ │ │ ├── ExportMetsServiceTest.java │ │ │ │ ├── ExportSipServiceTest.java │ │ │ │ ├── FacileCinesServiceTest.java │ │ │ │ └── GenerateDocUnitUtil.java │ │ │ ├── csv │ │ │ │ └── ExportCSVServiceTest.java │ │ │ ├── dc │ │ │ │ ├── DcToDocUnitConvertServiceTest.java │ │ │ │ ├── DocUnitToCSVServiceTest.java │ │ │ │ ├── DocUnitToJenaServiceTest.java │ │ │ │ ├── OAIDcEntityHandlerTest.java │ │ │ │ └── RdfDcEntityHandlerTest.java │ │ │ ├── digitallibrary │ │ │ │ └── DigitalLibraryDiffusionServiceTest.java │ │ │ ├── ead │ │ │ │ ├── EadCEntityHandlerTest.java │ │ │ │ ├── EadCParserTest.java │ │ │ │ ├── EadMappingEvaluationServiceTest.java │ │ │ │ ├── EadTestUtils.java │ │ │ │ ├── EadToDocUnitConvertServiceTest.java │ │ │ │ ├── ExportEadServiceTest.java │ │ │ │ └── script │ │ │ │ │ ├── AbstractScriptTest.java │ │ │ │ │ └── format │ │ │ │ │ ├── NormalFormatterTest.java │ │ │ │ │ └── TextFormatterTest.java │ │ │ ├── mail │ │ │ │ └── MailboxServiceTest.java │ │ │ ├── mapper │ │ │ │ └── MappingMapperTest.java │ │ │ ├── marc │ │ │ │ ├── MarcMappingEvaluationServiceTest.java │ │ │ │ ├── MarcRecordIteratorTest.java │ │ │ │ ├── MarcToDocUnitConvertServiceTest.java │ │ │ │ ├── MarcUtilsTest.java │ │ │ │ ├── TestScriptEngine.java │ │ │ │ ├── mapping │ │ │ │ │ └── CompiledMappingRuleTest.java │ │ │ │ └── script │ │ │ │ │ ├── AbstractScriptTest.java │ │ │ │ │ ├── format │ │ │ │ │ ├── CollectionFieldFormatterTest.java │ │ │ │ │ ├── ConcatWithSepFormatterTest.java │ │ │ │ │ ├── CorporateFieldFormatterTest.java │ │ │ │ │ ├── DatePublicationFormatterTest.java │ │ │ │ │ ├── PersonFieldFormatterTest.java │ │ │ │ │ ├── SubfieldsFormatterTest.java │ │ │ │ │ └── TitleFieldFormatterTest.java │ │ │ │ │ └── test │ │ │ │ │ └── ExistsConditionTest.java │ │ │ ├── ssh │ │ │ │ ├── FtpClientServiceTest.java │ │ │ │ └── SftpServiceTest.java │ │ │ └── template │ │ │ │ ├── OdtEngineServiceTest.java │ │ │ │ ├── TemplateServiceTest.java │ │ │ │ └── VelocityEngineServiceTest.java │ │ ├── helper │ │ │ └── TransactionalJobRunnerTest.java │ │ ├── storage │ │ │ ├── BinaryManagerTest.java │ │ │ ├── FileStorageManagerTest.java │ │ │ ├── ImageMagickServiceTest.java │ │ │ └── TesseractServiceTest.java │ │ ├── user │ │ │ ├── AuthorizationServiceTest.java │ │ │ └── RoleServiceTest.java │ │ ├── util │ │ │ ├── CryptoServiceTest.java │ │ │ └── DateIso8601UtilTest.java │ │ └── workflow │ │ │ └── WorkflowServiceTest.java │ │ ├── util │ │ ├── CatchAndReturnArgumentAt.java │ │ ├── SecurityRequestPostProcessors.java │ │ ├── SetIdAndReturnsArgumentAt.java │ │ ├── TestConverterFactory.java │ │ └── TestUtil.java │ │ └── web │ │ ├── rest │ │ ├── administration │ │ │ ├── MailboxConfigurationControllerTest.java │ │ │ ├── SftpConfigurationControllerTest.java │ │ │ └── z3950 │ │ │ │ └── Z3950ServerControllerTest.java │ │ ├── delivery │ │ │ └── DeliveryControllerTest.java │ │ ├── document │ │ │ ├── DocPropertyTypeControllerTest.java │ │ │ └── conditionreport │ │ │ │ ├── ConditionReportAttachmentControllerTest.java │ │ │ │ ├── ConditionReportControllerTest.java │ │ │ │ ├── ConditionReportDetailControllerTest.java │ │ │ │ ├── DescriptionPropertyControllerTest.java │ │ │ │ └── DescriptionValueControllerTest.java │ │ ├── exchange │ │ │ ├── ImportDocUnitControllerTest.java │ │ │ ├── ImportReportControllerTest.java │ │ │ ├── MappingControllerTest.java │ │ │ └── template │ │ │ │ └── TemplateControllerTest.java │ │ └── user │ │ │ └── UserControllerTest.java │ │ └── util │ │ ├── AccessHelperTest.java │ │ ├── LibraryAccesssHelperTest.java │ │ └── WorkflowAccessHelperTest.java │ ├── javascript │ ├── karma.conf.js │ └── spec │ │ ├── app │ │ ├── account │ │ │ ├── health │ │ │ │ └── health.controller.spec.js │ │ │ ├── login │ │ │ │ └── login.controller.spec.js │ │ │ ├── sessions │ │ │ │ └── sessions.controller.spec.js │ │ │ └── settings │ │ │ │ └── settings.controller.spec.js │ │ └── fakeTest.spec.js │ │ └── components │ │ └── auth │ │ └── auth.services.spec.js │ └── resources │ ├── config │ └── application-dev.yml │ ├── delivery │ ├── format │ │ ├── IHE140010001.tiff │ │ ├── IHE140010002.TIFF │ │ ├── IHE140010003.png │ │ └── IHE140010004.pdf │ ├── isestampe │ │ ├── BSG_120587445.pdf │ │ └── BSG_120587445.tiff │ ├── notestampe │ │ ├── BSG_120587445_001.tiff │ │ ├── BSG_120587445_002.TIFF │ │ ├── BSG_120587445_003.png │ │ └── BSG_120587445_004.pdf │ └── prefix │ │ ├── BSG_120587445_001.tiff │ │ ├── BSG_120587445_002.TIFF │ │ ├── BSG_120587445_003.png │ │ └── BSG_120587445_004.pdf │ ├── facile │ ├── BSG_DELTA_0001.png │ ├── BSG_DELTA_0002.png │ ├── BSG_DELTA_0003.png │ ├── BSG_DELTA_0004.png │ └── BSG_DELTA_0005.png │ ├── logback-test.xml │ ├── storage │ ├── test.jpg │ ├── test2.jpg │ ├── test3.png │ └── test3pagesPdf.txt │ ├── tessdata │ ├── fra.traineddata │ └── pdf.ttf │ └── xsd │ ├── seda_v1-0_accessrestriction_code.xsd │ ├── seda_v1-0_language_code.xsd │ └── sip.xsd └── yaz4.md /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "src/main/webapp/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/.jshintrc -------------------------------------------------------------------------------- /.mvn/jvm.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/.mvn/jvm.config -------------------------------------------------------------------------------- /.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/.prettierrc -------------------------------------------------------------------------------- /.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/.yo-rc.json -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/LICENSE -------------------------------------------------------------------------------- /MAN002_NumaHOP_-_Manuel_Administrateur.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/MAN002_NumaHOP_-_Manuel_Administrateur.pdf -------------------------------------------------------------------------------- /MAN003_NumaHOP_-_Manuel_Utilisateur.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/MAN003_NumaHOP_-_Manuel_Utilisateur.pdf -------------------------------------------------------------------------------- /MAN004_NumaHOP_-_Manuel_Prestataire.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/MAN004_NumaHOP_-_Manuel_Prestataire.pdf -------------------------------------------------------------------------------- /MAN005 NumaHop - Processus complet - V1.2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/MAN005 NumaHop - Processus complet - V1.2.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/bower.json -------------------------------------------------------------------------------- /eclipse-formatter-java-progilone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/eclipse-formatter-java-progilone.xml -------------------------------------------------------------------------------- /eclipse-formatter-javascript-progilone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/eclipse-formatter-javascript-progilone.xml -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/index.html -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/package.json -------------------------------------------------------------------------------- /po/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/po/en.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/template.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/po/template.pot -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/pom.xml -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /src/main/docker/.env: -------------------------------------------------------------------------------- 1 | COMPOSE_PROJECT_NAME=numahop -------------------------------------------------------------------------------- /src/main/docker/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/docker/elasticsearch.yml -------------------------------------------------------------------------------- /src/main/docker/kibana.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/docker/kibana.yml -------------------------------------------------------------------------------- /src/main/docker/mariadb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/docker/mariadb.yml -------------------------------------------------------------------------------- /src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/resources/banner.txt -------------------------------------------------------------------------------- /src/main/resources/config/app/known_hosts-dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/resources/config/app/known_hosts-dev -------------------------------------------------------------------------------- /src/main/resources/config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/resources/config/application.yml -------------------------------------------------------------------------------- /src/main/resources/config/xsd/mets.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/resources/config/xsd/mets.xsd -------------------------------------------------------------------------------- /src/main/resources/config/xsd/sip.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/resources/config/xsd/sip.xsd -------------------------------------------------------------------------------- /src/main/resources/config/xsd/xlink.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/resources/config/xsd/xlink.xsd -------------------------------------------------------------------------------- /src/main/resources/config/xsl/hocr2text.1.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/resources/config/xsl/hocr2text.1.xsl -------------------------------------------------------------------------------- /src/main/resources/images/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/resources/images/empty.png -------------------------------------------------------------------------------- /src/main/resources/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/resources/images/file.png -------------------------------------------------------------------------------- /src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/resources/logback.xml -------------------------------------------------------------------------------- /src/main/resources/reporting/checkSlip.jasper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/resources/reporting/checkSlip.jasper -------------------------------------------------------------------------------- /src/main/resources/reporting/test.jasper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/resources/reporting/test.jasper -------------------------------------------------------------------------------- /src/main/resources/templates/ConditionReport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/resources/templates/ConditionReport -------------------------------------------------------------------------------- /src/main/resources/templates/ControlSlip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/resources/templates/ControlSlip -------------------------------------------------------------------------------- /src/main/resources/templates/DeliverySlip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/resources/templates/DeliverySlip -------------------------------------------------------------------------------- /src/main/resources/templates/ReinitPassword: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/resources/templates/ReinitPassword -------------------------------------------------------------------------------- /src/main/resources/templates/UserCreation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/resources/templates/UserCreation -------------------------------------------------------------------------------- /src/main/scss/_angular-bootstrap-switch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/scss/_angular-bootstrap-switch.scss -------------------------------------------------------------------------------- /src/main/scss/_animate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/scss/_animate.scss -------------------------------------------------------------------------------- /src/main/scss/_bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/scss/_bootstrap.scss -------------------------------------------------------------------------------- /src/main/scss/_calendar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/scss/_calendar.scss -------------------------------------------------------------------------------- /src/main/scss/_canvas.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/scss/_canvas.scss -------------------------------------------------------------------------------- /src/main/scss/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/scss/_carousel.scss -------------------------------------------------------------------------------- /src/main/scss/_cataloging.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/scss/_cataloging.scss -------------------------------------------------------------------------------- /src/main/scss/_circleStatus.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/scss/_circleStatus.scss -------------------------------------------------------------------------------- /src/main/scss/_communication-rules.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/scss/_communication-rules.scss -------------------------------------------------------------------------------- /src/main/scss/_directive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/scss/_directive.scss -------------------------------------------------------------------------------- /src/main/scss/_font-awesome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/scss/_font-awesome.scss -------------------------------------------------------------------------------- /src/main/scss/_font-glyphicons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/scss/_font-glyphicons.scss -------------------------------------------------------------------------------- /src/main/scss/_font-syrtis.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/scss/_font-syrtis.scss -------------------------------------------------------------------------------- /src/main/scss/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/scss/_fonts.scss -------------------------------------------------------------------------------- /src/main/scss/_form-component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/scss/_form-component.scss -------------------------------------------------------------------------------- /src/main/scss/_graphe.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/scss/_graphe.scss -------------------------------------------------------------------------------- /src/main/scss/_layout-columns.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/scss/_layout-columns.scss -------------------------------------------------------------------------------- /src/main/scss/_menu-top.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/scss/_menu-top.scss -------------------------------------------------------------------------------- /src/main/scss/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/scss/_modal.scss -------------------------------------------------------------------------------- /src/main/scss/_notification.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/scss/_notification.scss -------------------------------------------------------------------------------- /src/main/scss/_numahop.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/scss/_numahop.scss -------------------------------------------------------------------------------- /src/main/scss/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/scss/_pagination.scss -------------------------------------------------------------------------------- /src/main/scss/_panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/scss/_panel.scss -------------------------------------------------------------------------------- /src/main/scss/_pdf.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/scss/_pdf.scss -------------------------------------------------------------------------------- /src/main/scss/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/scss/_print.scss -------------------------------------------------------------------------------- /src/main/scss/_search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/scss/_search.scss -------------------------------------------------------------------------------- /src/main/scss/_select2.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/scss/_select2.scss -------------------------------------------------------------------------------- /src/main/scss/_sid-mobile-menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/scss/_sid-mobile-menu.scss -------------------------------------------------------------------------------- /src/main/scss/_subscription-alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/scss/_subscription-alert.scss -------------------------------------------------------------------------------- /src/main/scss/_syrtis.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/scss/_syrtis.scss -------------------------------------------------------------------------------- /src/main/scss/_tab.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/scss/_tab.scss -------------------------------------------------------------------------------- /src/main/scss/_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/scss/_table.scss -------------------------------------------------------------------------------- /src/main/scss/_timeline.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/scss/_timeline.scss -------------------------------------------------------------------------------- /src/main/scss/_tree.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/scss/_tree.scss -------------------------------------------------------------------------------- /src/main/scss/_utils.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/scss/_utils.scss -------------------------------------------------------------------------------- /src/main/scss/_widgets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/scss/_widgets.scss -------------------------------------------------------------------------------- /src/main/scss/_xeditable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/scss/_xeditable.scss -------------------------------------------------------------------------------- /src/main/scss/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/scss/main.scss -------------------------------------------------------------------------------- /src/main/webapp/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/.htaccess -------------------------------------------------------------------------------- /src/main/webapp/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /src/main/webapp/assets/images/AjaxLoader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/assets/images/AjaxLoader.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/images/hipster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/assets/images/hipster.png -------------------------------------------------------------------------------- /src/main/webapp/assets/images/hipster2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/assets/images/hipster2x.png -------------------------------------------------------------------------------- /src/main/webapp/assets/images/numahop-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/assets/images/numahop-180.png -------------------------------------------------------------------------------- /src/main/webapp/assets/styles/main_old.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/assets/styles/main_old.css -------------------------------------------------------------------------------- /src/main/webapp/build-date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/build-date.json -------------------------------------------------------------------------------- /src/main/webapp/hop_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/hop_favicon.png -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/LICENSE.md -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/README.md -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/aa-dj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/aa-dj.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/aa-er.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/aa-er.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/aa-et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/aa-et.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/aa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/aa.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/af-na.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/af-na.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/af-za.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/af-za.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/af.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/agq-cm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/agq-cm.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/agq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/agq.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ak-gh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ak-gh.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ak.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ak.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/am-et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/am-et.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/am.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/am.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ar-001.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ar-001.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ar-ae.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ar-ae.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ar-bh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ar-bh.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ar-dj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ar-dj.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ar-dz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ar-dz.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ar-eg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ar-eg.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ar-eh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ar-eh.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ar-er.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ar-er.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ar-il.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ar-il.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ar-iq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ar-iq.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ar-jo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ar-jo.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ar-km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ar-km.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ar-kw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ar-kw.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ar-lb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ar-lb.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ar-ly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ar-ly.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ar-ma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ar-ma.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ar-mr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ar-mr.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ar-om.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ar-om.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ar-ps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ar-ps.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ar-qa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ar-qa.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ar-sa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ar-sa.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ar-sd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ar-sd.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ar-so.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ar-so.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ar-ss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ar-ss.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ar-sy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ar-sy.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ar-td.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ar-td.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ar-tn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ar-tn.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ar-xb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ar-xb.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ar-ye.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ar-ye.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ar.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/as-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/as-in.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/as.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/as.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/asa-tz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/asa-tz.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/asa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/asa.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ast-es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ast-es.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ast.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/az-cyrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/az-cyrl.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/az-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/az-latn.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/az.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/bas-cm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/bas-cm.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/bas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/bas.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/be-by.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/be-by.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/be.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/bem-zm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/bem-zm.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/bem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/bem.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/bez-tz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/bez-tz.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/bez.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/bez.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/bg-bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/bg-bg.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/bg.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/bm-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/bm-latn.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/bm-ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/bm-ml.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/bm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/bm.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/bn-bd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/bn-bd.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/bn-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/bn-in.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/bn.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/bo-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/bo-cn.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/bo-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/bo-in.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/bo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/bo.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/bower.json -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/br-fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/br-fr.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/br.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/brx-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/brx-in.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/brx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/brx.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/bs-cyrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/bs-cyrl.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/bs-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/bs-latn.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/bs.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/byn-er.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/byn-er.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/byn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/byn.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ca-ad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ca-ad.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ca-es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ca-es.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ca-fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ca-fr.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ca-it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ca-it.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ca.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ce-ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ce-ru.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ce.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/cgg-ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/cgg-ug.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/cgg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/cgg.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/chr-us.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/chr-us.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/chr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/chr.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ckb-arab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ckb-arab.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ckb-iq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ckb-iq.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ckb-ir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ckb-ir.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ckb-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ckb-latn.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ckb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ckb.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/cs-cz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/cs-cz.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/cs.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/cu-ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/cu-ru.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/cu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/cu.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/cy-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/cy-gb.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/cy.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/da-dk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/da-dk.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/da-gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/da-gl.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/da.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/dav-ke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/dav-ke.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/dav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/dav.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/de-at.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/de-at.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/de-be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/de-be.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/de-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/de-ch.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/de-de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/de-de.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/de-li.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/de-li.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/de-lu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/de-lu.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/de.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/dje-ne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/dje-ne.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/dje.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/dje.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/dsb-de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/dsb-de.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/dsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/dsb.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/dua-cm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/dua-cm.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/dua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/dua.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/dyo-sn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/dyo-sn.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/dyo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/dyo.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/dz-bt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/dz-bt.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/dz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/dz.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ebu-ke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ebu-ke.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ebu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ebu.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ee-gh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ee-gh.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ee-tg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ee-tg.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ee.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/el-cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/el-cy.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/el-gr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/el-gr.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/el.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-001.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-001.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-150.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-150.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-ag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-ag.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-ai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-ai.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-as.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-as.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-at.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-at.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-au.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-bb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-bb.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-be.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-bi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-bi.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-bm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-bm.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-bs.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-bw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-bw.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-bz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-bz.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-ca.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-cc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-cc.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-ch.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-ck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-ck.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-cm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-cm.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-cx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-cx.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-cy.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-de.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-dg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-dg.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-dk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-dk.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-dm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-dm.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-dsrt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-dsrt.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-er.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-er.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-fi.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-fj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-fj.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-fk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-fk.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-fm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-fm.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-gb.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-gd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-gd.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-gg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-gg.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-gh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-gh.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-gi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-gi.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-gm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-gm.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-gu.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-gy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-gy.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-hk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-hk.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-ie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-ie.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-il.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-il.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-im.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-im.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-in.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-io.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-iso.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-iso.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-je.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-je.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-jm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-jm.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-ke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-ke.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-ki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-ki.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-kn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-kn.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-ky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-ky.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-lc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-lc.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-lr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-lr.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-ls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-ls.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-mg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-mg.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-mh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-mh.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-mo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-mo.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-mp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-mp.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-ms.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-mt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-mt.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-mu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-mu.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-mw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-mw.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-my.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-na.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-na.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-nf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-nf.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-ng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-ng.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-nl.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-nr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-nr.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-nu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-nu.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-nz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-nz.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-pg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-pg.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-ph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-ph.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-pk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-pk.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-pn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-pn.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-pr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-pr.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-pw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-pw.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-rw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-rw.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-sb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-sb.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-sc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-sc.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-sd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-sd.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-se.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-se.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-sg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-sg.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-sh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-sh.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-si.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-sl.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-ss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-ss.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-sx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-sx.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-sz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-sz.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-tc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-tc.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-tk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-tk.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-to.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-to.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-tt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-tt.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-tv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-tv.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-tz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-tz.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-ug.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-um.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-um.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-us.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-us.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-vc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-vc.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-vg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-vg.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-vi.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-vu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-vu.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-ws.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-ws.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-xa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-xa.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-za.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-za.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-zm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-zm.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en-zw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en-zw.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/en.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/eo-001.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/eo-001.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/eo.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/es-419.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/es-419.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/es-ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/es-ar.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/es-bo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/es-bo.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/es-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/es-br.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/es-cl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/es-cl.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/es-co.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/es-co.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/es-cr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/es-cr.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/es-cu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/es-cu.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/es-do.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/es-do.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/es-ea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/es-ea.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/es-ec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/es-ec.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/es-es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/es-es.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/es-gq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/es-gq.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/es-gt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/es-gt.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/es-hn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/es-hn.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/es-ic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/es-ic.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/es-mx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/es-mx.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/es-ni.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/es-ni.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/es-pa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/es-pa.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/es-pe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/es-pe.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/es-ph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/es-ph.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/es-pr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/es-pr.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/es-py.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/es-py.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/es-sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/es-sv.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/es-us.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/es-us.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/es-uy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/es-uy.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/es-ve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/es-ve.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/es.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/et-ee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/et-ee.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/et.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/eu-es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/eu-es.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/eu.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ewo-cm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ewo-cm.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ewo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ewo.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fa-af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fa-af.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fa-ir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fa-ir.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fa.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ff-cm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ff-cm.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ff-gn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ff-gn.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ff-mr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ff-mr.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ff-sn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ff-sn.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ff.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fi-fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fi-fi.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fi.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fil-ph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fil-ph.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fil.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fo-dk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fo-dk.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fo-fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fo-fo.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fo.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-be.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-bf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-bf.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-bi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-bi.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-bj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-bj.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-bl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-bl.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-ca.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-cd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-cd.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-cf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-cf.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-cg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-cg.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-ch.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-ci.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-ci.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-cm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-cm.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-dj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-dj.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-dz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-dz.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-fr.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-ga.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-gf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-gf.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-gn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-gn.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-gp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-gp.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-gq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-gq.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-ht.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-ht.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-km.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-lu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-lu.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-ma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-ma.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-mc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-mc.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-mf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-mf.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-mg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-mg.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-ml.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-mq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-mq.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-mr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-mr.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-mu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-mu.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-nc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-nc.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-ne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-ne.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-pf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-pf.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-pm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-pm.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-re.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-re.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-rw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-rw.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-sc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-sc.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-sn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-sn.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-sy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-sy.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-td.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-td.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-tg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-tg.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-tn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-tn.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-vu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-vu.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-wf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-wf.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr-yt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr-yt.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fr.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fur-it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fur-it.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fur.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fy-nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fy-nl.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/fy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/fy.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ga-ie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ga-ie.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ga.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/gd-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/gd-gb.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/gd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/gd.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/gl-es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/gl-es.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/gl.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/gsw-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/gsw-ch.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/gsw-fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/gsw-fr.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/gsw-li.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/gsw-li.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/gsw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/gsw.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/gu-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/gu-in.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/gu.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/guz-ke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/guz-ke.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/guz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/guz.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/gv-im.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/gv-im.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/gv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/gv.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ha-gh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ha-gh.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ha-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ha-latn.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ha-ne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ha-ne.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ha-ng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ha-ng.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ha.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/haw-us.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/haw-us.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/haw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/haw.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/he-il.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/he-il.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/he.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/hi-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/hi-in.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/hi.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/hr-ba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/hr-ba.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/hr-hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/hr-hr.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/hr.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/hsb-de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/hsb-de.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/hsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/hsb.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/hu-hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/hu-hu.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/hu.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/hy-am.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/hy-am.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/hy.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ia-fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ia-fr.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ia.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/id-id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/id-id.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/id.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ig-ng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ig-ng.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ig.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ii-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ii-cn.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ii.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ii.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/in.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/is-is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/is-is.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/is.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/it-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/it-ch.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/it-it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/it-it.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/it-sm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/it-sm.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/it.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/iw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/iw.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ja-jp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ja-jp.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ja.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/jgo-cm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/jgo-cm.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/jgo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/jgo.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/jmc-tz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/jmc-tz.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/jmc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/jmc.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ka-ge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ka-ge.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ka.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/kab-dz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/kab-dz.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/kab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/kab.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/kam-ke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/kam-ke.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/kam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/kam.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/kde-tz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/kde-tz.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/kde.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/kde.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/kea-cv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/kea-cv.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/kea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/kea.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/khq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/khq.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ki-ke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ki-ke.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ki.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/kk-kz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/kk-kz.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/kk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/kk.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/kkj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/kkj.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/kl-gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/kl-gl.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/kl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/kl.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/kln.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/kln.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/km-kh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/km-kh.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/km.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/kn-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/kn-in.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/kn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/kn.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ko-kp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ko-kp.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ko-kr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ko-kr.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ko.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/kok.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/kok.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ks-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ks-in.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ks.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ksb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ksb.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ksf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ksf.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ksh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ksh.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/kw-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/kw-gb.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/kw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/kw.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ky-kg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ky-kg.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ky.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/lag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/lag.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/lb-lu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/lb-lu.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/lb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/lb.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/lg-ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/lg-ug.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/lg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/lg.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/lkt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/lkt.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ln-ao.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ln-ao.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ln-cd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ln-cd.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ln-cf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ln-cf.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ln-cg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ln-cg.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ln.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ln.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/lo-la.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/lo-la.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/lo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/lo.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/lrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/lrc.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/lt-lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/lt-lt.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/lt.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/lu-cd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/lu-cd.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/lu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/lu.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/luo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/luo.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/luy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/luy.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/lv-lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/lv-lv.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/lv.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/mas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/mas.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/mer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/mer.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/mfe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/mfe.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/mg-mg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/mg-mg.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/mg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/mg.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/mgh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/mgh.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/mgo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/mgo.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/mk-mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/mk-mk.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/mk.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ml-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ml-in.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ml.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/mn-mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/mn-mn.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/mn.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/mr-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/mr-in.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/mr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/mr.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ms-bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ms-bn.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ms-my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ms-my.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ms-sg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ms-sg.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ms.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/mt-mt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/mt-mt.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/mt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/mt.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/mua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/mua.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/my-mm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/my-mm.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/my.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/mzn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/mzn.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/naq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/naq.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/nb-no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/nb-no.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/nb-sj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/nb-sj.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/nb.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/nd-zw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/nd-zw.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/nd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/nd.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ne-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ne-in.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ne-np.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ne-np.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ne.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/nl-aw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/nl-aw.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/nl-be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/nl-be.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/nl-bq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/nl-bq.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/nl-cw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/nl-cw.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/nl-nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/nl-nl.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/nl-sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/nl-sr.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/nl-sx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/nl-sx.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/nl.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/nmg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/nmg.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/nn-no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/nn-no.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/nn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/nn.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/nnh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/nnh.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/no-no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/no-no.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/no.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/nr-za.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/nr-za.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/nr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/nr.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/nso.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/nso.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/nus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/nus.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/nyn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/nyn.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/om-et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/om-et.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/om-ke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/om-ke.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/om.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/om.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/or-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/or-in.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/or.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/or.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/os-ge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/os-ge.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/os-ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/os-ru.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/os.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/os.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/pa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/pa.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/pl-pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/pl-pl.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/pl.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/prg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/prg.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ps-af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ps-af.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ps.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/pt-ao.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/pt-ao.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/pt-br.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/pt-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/pt-ch.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/pt-cv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/pt-cv.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/pt-gq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/pt-gq.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/pt-gw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/pt-gw.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/pt-lu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/pt-lu.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/pt-mo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/pt-mo.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/pt-mz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/pt-mz.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/pt-pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/pt-pt.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/pt-st.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/pt-st.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/pt-tl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/pt-tl.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/pt.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/qu-bo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/qu-bo.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/qu-ec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/qu-ec.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/qu-pe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/qu-pe.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/qu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/qu.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/rm-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/rm-ch.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/rm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/rm.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/rn-bi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/rn-bi.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/rn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/rn.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ro-md.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ro-md.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ro-ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ro-ro.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ro.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/rof.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/rof.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ru-by.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ru-by.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ru-kg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ru-kg.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ru-kz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ru-kz.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ru-md.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ru-md.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ru-ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ru-ru.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ru-ua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ru-ua.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ru.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/rw-rw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/rw-rw.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/rw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/rw.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/rwk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/rwk.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/sah.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/sah.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/saq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/saq.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/sbp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/sbp.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/se-fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/se-fi.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/se-no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/se-no.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/se-se.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/se-se.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/se.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/se.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/seh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/seh.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ses.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/sg-cf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/sg-cf.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/sg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/sg.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/shi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/shi.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/si-lk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/si-lk.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/si.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/sk-sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/sk-sk.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/sk.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/sl-si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/sl-si.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/sl.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/smn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/smn.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/sn-zw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/sn-zw.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/sn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/sn.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/so-dj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/so-dj.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/so-et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/so-et.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/so-ke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/so-ke.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/so-so.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/so-so.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/so.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/so.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/sq-al.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/sq-al.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/sq-mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/sq-mk.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/sq-xk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/sq-xk.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/sq.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/sr.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ss-sz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ss-sz.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ss-za.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ss-za.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ss.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ssy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ssy.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/st-ls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/st-ls.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/st-za.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/st-za.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/st.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/st.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/sv-ax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/sv-ax.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/sv-fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/sv-fi.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/sv-se.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/sv-se.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/sv.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/sw-cd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/sw-cd.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/sw-ke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/sw-ke.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/sw-tz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/sw-tz.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/sw-ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/sw-ug.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/sw.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/swc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/swc.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ta-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ta-in.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ta-lk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ta-lk.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ta-my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ta-my.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ta-sg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ta-sg.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ta.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/te-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/te-in.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/te.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/te.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/teo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/teo.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/tg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/tg.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/th-th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/th-th.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/th.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ti-er.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ti-er.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ti-et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ti-et.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ti.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ti.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/tig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/tig.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/tk-tm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/tk-tm.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/tk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/tk.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/tl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/tl.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/tn-bw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/tn-bw.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/tn-za.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/tn-za.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/tn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/tn.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/to-to.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/to-to.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/to.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/to.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/tr-cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/tr-cy.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/tr-tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/tr-tr.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/tr.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ts-za.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ts-za.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ts.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/twq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/twq.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/tzm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/tzm.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ug-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ug-cn.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ug.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/uk-ua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/uk-ua.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/uk.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ur-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ur-in.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ur-pk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ur-pk.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ur.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/uz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/uz.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/vai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/vai.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ve-za.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ve-za.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/ve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/ve.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/vi-vn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/vi-vn.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/vi.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/vo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/vo.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/vun.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/vun.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/wae.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/wae.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/wal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/wal.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/xh-za.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/xh-za.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/xh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/xh.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/xog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/xog.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/yav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/yav.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/yi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/yi.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/yo-bj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/yo-bj.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/yo-ng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/yo-ng.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/yo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/yo.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/yue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/yue.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/zgh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/zgh.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/zh-cn.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/zh-hk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/zh-hk.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/zh-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/zh-tw.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/zh.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/zu-za.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/zu-za.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/angular-i18n/zu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/angular-i18n/zu.js -------------------------------------------------------------------------------- /src/main/webapp/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/i18n/fr.json -------------------------------------------------------------------------------- /src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/index.html -------------------------------------------------------------------------------- /src/main/webapp/libs/mirador/mirador.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/libs/mirador/mirador.js -------------------------------------------------------------------------------- /src/main/webapp/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org/ 2 | 3 | User-agent: * 4 | -------------------------------------------------------------------------------- /src/main/webapp/scripts/app/admin/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/scripts/app/admin/admin.js -------------------------------------------------------------------------------- /src/main/webapp/scripts/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/scripts/app/app.js -------------------------------------------------------------------------------- /src/main/webapp/scripts/app/error/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/scripts/app/error/error.js -------------------------------------------------------------------------------- /src/main/webapp/scripts/app/help/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/scripts/app/help/help.js -------------------------------------------------------------------------------- /src/main/webapp/scripts/app/lot/docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/scripts/app/lot/docs.html -------------------------------------------------------------------------------- /src/main/webapp/scripts/app/lot/lot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/scripts/app/lot/lot.js -------------------------------------------------------------------------------- /src/main/webapp/scripts/app/lot/lotCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/scripts/app/lot/lotCtrl.js -------------------------------------------------------------------------------- /src/main/webapp/scripts/app/lot/lotSrvc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/scripts/app/lot/lotSrvc.js -------------------------------------------------------------------------------- /src/main/webapp/scripts/app/lot/lots.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/scripts/app/lot/lots.html -------------------------------------------------------------------------------- /src/main/webapp/scripts/app/main/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/scripts/app/main/main.html -------------------------------------------------------------------------------- /src/main/webapp/scripts/app/train/train.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/scripts/app/train/train.js -------------------------------------------------------------------------------- /src/main/webapp/scripts/app/user/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/scripts/app/user/user.js -------------------------------------------------------------------------------- /src/main/webapp/scripts/configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/scripts/configuration.js -------------------------------------------------------------------------------- /src/main/webapp/scripts/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/scripts/controllers.js -------------------------------------------------------------------------------- /src/main/webapp/scripts/directives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/scripts/directives.js -------------------------------------------------------------------------------- /src/main/webapp/scripts/lib/JSOG.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/scripts/lib/JSOG.js -------------------------------------------------------------------------------- /src/main/webapp/scripts/libTemplates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/scripts/libTemplates.js -------------------------------------------------------------------------------- /src/main/webapp/scripts/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/scripts/services.js -------------------------------------------------------------------------------- /src/main/webapp/scripts/truncate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/scripts/truncate.js -------------------------------------------------------------------------------- /src/main/webapp/scripts/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/main/webapp/scripts/utils.js -------------------------------------------------------------------------------- /src/test/javascript/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/test/javascript/karma.conf.js -------------------------------------------------------------------------------- /src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /src/test/resources/storage/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/test/resources/storage/test.jpg -------------------------------------------------------------------------------- /src/test/resources/storage/test2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/test/resources/storage/test2.jpg -------------------------------------------------------------------------------- /src/test/resources/storage/test3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/test/resources/storage/test3.png -------------------------------------------------------------------------------- /src/test/resources/tessdata/pdf.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/test/resources/tessdata/pdf.ttf -------------------------------------------------------------------------------- /src/test/resources/xsd/sip.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/src/test/resources/xsd/sip.xsd -------------------------------------------------------------------------------- /yaz4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-advantage/numahop/HEAD/yaz4.md --------------------------------------------------------------------------------