arelle-release 2.17.1__py3-none-any.whl → 2.37.71__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- arelle/Aspect.py +6 -3
- arelle/BetaFeatures.py +3 -0
- arelle/Cntlr.py +117 -413
- arelle/CntlrCmdLine.py +364 -227
- arelle/CntlrQuickBooks.py +4 -2
- arelle/CntlrWebMain.py +179 -119
- arelle/CntlrWinMain.py +342 -124
- arelle/DialogAbout.py +1 -1
- arelle/DialogArcroleGroup.py +1 -1
- arelle/DialogFind.py +1 -1
- arelle/DialogFormulaParameters.py +2 -2
- arelle/DialogLanguage.py +45 -36
- arelle/DialogNewFactItem.py +1 -1
- arelle/DialogOpenArchive.py +30 -34
- arelle/DialogPackageManager.py +11 -8
- arelle/DialogPluginManager.py +43 -89
- arelle/DialogRssWatch.py +2 -2
- arelle/DialogURL.py +1 -1
- arelle/DialogUserPassword.py +1 -1
- arelle/DisclosureSystem.py +69 -1
- arelle/ErrorManager.py +321 -0
- arelle/FileSource.py +201 -99
- arelle/FunctionFn.py +44 -5
- arelle/FunctionIxt.py +16 -13
- arelle/FunctionUtil.py +1 -1
- arelle/FunctionXfi.py +68 -24
- arelle/FunctionXs.py +1 -1
- arelle/HtmlUtil.py +5 -4
- arelle/LeiUtil.py +63 -43
- arelle/LinkbaseType.py +94 -0
- arelle/LocalViewer.py +8 -2
- arelle/Locale.py +239 -79
- arelle/ModelDocument.py +180 -48
- arelle/ModelDtsObject.py +32 -27
- arelle/ModelFormulaObject.py +14 -6
- arelle/ModelInstanceObject.py +43 -14
- arelle/ModelManager.py +6 -1
- arelle/ModelObject.py +12 -8
- arelle/ModelObjectFactory.py +18 -2
- arelle/ModelRelationshipSet.py +46 -3
- arelle/ModelRenderingObject.py +899 -951
- arelle/ModelRssItem.py +2 -4
- arelle/ModelTestcaseObject.py +41 -4
- arelle/ModelValue.py +42 -14
- arelle/ModelVersReport.py +1 -1
- arelle/ModelXbrl.py +133 -273
- arelle/PackageManager.py +202 -176
- arelle/PluginManager.py +551 -239
- arelle/PluginUtils.py +54 -0
- arelle/PrototypeInstanceObject.py +53 -12
- arelle/PythonUtil.py +166 -25
- arelle/RuntimeOptions.py +32 -18
- arelle/SocketUtils.py +3 -0
- arelle/SystemInfo.py +1 -1
- arelle/TkTableWrapper.py +33 -5
- arelle/UITkTable.py +27 -21
- arelle/Updater.py +7 -3
- arelle/UrlUtil.py +6 -2
- arelle/Validate.py +596 -402
- arelle/ValidateDuplicateFacts.py +584 -0
- arelle/ValidateFileSource.py +38 -0
- arelle/ValidateFilingText.py +46 -29
- arelle/ValidateInfoset.py +104 -32
- arelle/ValidateUtr.py +31 -4
- arelle/ValidateXbrl.py +144 -120
- arelle/ValidateXbrlCalcs.py +51 -66
- arelle/ValidateXbrlDTS.py +98 -29
- arelle/Version.py +2 -7
- arelle/ViewFile.py +2 -0
- arelle/ViewFileDTS.py +7 -2
- arelle/ViewFileFactList.py +1 -1
- arelle/ViewFileFactTable.py +4 -4
- arelle/ViewFileRelationshipSet.py +36 -19
- arelle/ViewFileRenderedGrid.py +164 -753
- arelle/ViewFileRenderedLayout.py +174 -0
- arelle/ViewFileRenderedStructure.py +108 -0
- arelle/ViewWinDTS.py +4 -1
- arelle/ViewWinFactList.py +1 -1
- arelle/ViewWinFactTable.py +1 -1
- arelle/ViewWinRelationshipSet.py +14 -8
- arelle/ViewWinRenderedGrid.py +397 -287
- arelle/ViewWinRssFeed.py +4 -0
- arelle/ViewWinTree.py +15 -9
- arelle/ViewWinXml.py +1 -1
- arelle/WebCache.py +510 -272
- arelle/XbrlConst.py +202 -196
- arelle/XbrlUtil.py +2 -1
- arelle/XhtmlValidate.py +9 -23
- arelle/XmlUtil.py +24 -19
- arelle/XmlValidate.py +95 -67
- arelle/XmlValidateParticles.py +4 -4
- arelle/_version.py +33 -3
- arelle/api/Session.py +183 -0
- arelle/config/creationSoftwareNames.json +24 -10
- arelle/config/disclosuresystems.xml +1 -1
- arelle/config/disclosuresystems.xsd +3 -0
- arelle/config/sbr-text-formatting.xsd +737 -0
- arelle/conformance/CSVTestcaseLoader.py +102 -0
- arelle/formula/FactAspectsCache.py +10 -4
- arelle/formula/ValidateFormula.py +82 -194
- arelle/formula/XPathContext.py +42 -28
- arelle/formula/XPathParser.py +15 -9
- arelle/locale/ar_EG/LC_MESSAGES/ar_EG.po +3 -4
- arelle/locale/messages.pot +1 -2
- arelle/locale/ru/LC_MESSAGES/ru.po +2 -2
- arelle/logging/formatters/LogFormatter.py +47 -0
- arelle/logging/handlers/LogHandlerWithXml.py +94 -0
- arelle/logging/handlers/LogToBufferHandler.py +20 -0
- arelle/logging/handlers/LogToPrintHandler.py +41 -0
- arelle/logging/handlers/LogToXmlHandler.py +244 -0
- arelle/logging/handlers/StructuredMessageLogHandler.py +74 -0
- arelle/model/CommentBase.py +3 -0
- arelle/model/ElementBase.py +3 -0
- arelle/model/PIBase.py +3 -0
- arelle/model/__init__.py +3 -0
- arelle/oim/Load.py +2869 -0
- arelle/oim/Validate.py +155 -0
- arelle/oim/xml/Save.py +21 -0
- arelle/packages/PackageConst.py +7 -0
- arelle/packages/PackageType.py +13 -0
- arelle/packages/PackageUtils.py +22 -0
- arelle/packages/PackageValidation.py +200 -0
- arelle/packages/report/DetectReportPackage.py +13 -0
- arelle/packages/report/ReportPackage.py +265 -0
- arelle/packages/report/ReportPackageConst.py +79 -0
- arelle/packages/report/ReportPackageValidator.py +207 -0
- arelle/plugin/EdgarRendererAllReports.py +12 -12
- arelle/plugin/OimTaxonomy/ModelValueMore.py +15 -0
- arelle/plugin/OimTaxonomy/ValidateDTS.py +484 -0
- arelle/plugin/OimTaxonomy/ViewXbrlTxmyObj.py +239 -0
- arelle/plugin/OimTaxonomy/XbrlAbstract.py +16 -0
- arelle/plugin/OimTaxonomy/XbrlConcept.py +68 -0
- arelle/plugin/OimTaxonomy/XbrlConst.py +261 -0
- arelle/plugin/OimTaxonomy/XbrlCube.py +91 -0
- arelle/plugin/OimTaxonomy/XbrlDimension.py +38 -0
- arelle/plugin/OimTaxonomy/XbrlDts.py +152 -0
- arelle/plugin/OimTaxonomy/XbrlEntity.py +16 -0
- arelle/plugin/OimTaxonomy/XbrlGroup.py +22 -0
- arelle/plugin/OimTaxonomy/XbrlImportedTaxonomy.py +22 -0
- arelle/plugin/OimTaxonomy/XbrlLabel.py +31 -0
- arelle/plugin/OimTaxonomy/XbrlNetwork.py +100 -0
- arelle/plugin/OimTaxonomy/XbrlProperty.py +28 -0
- arelle/plugin/OimTaxonomy/XbrlReference.py +33 -0
- arelle/plugin/OimTaxonomy/XbrlReport.py +24 -0
- arelle/plugin/OimTaxonomy/XbrlTableTemplate.py +35 -0
- arelle/plugin/OimTaxonomy/XbrlTaxonomy.py +93 -0
- arelle/plugin/OimTaxonomy/XbrlTaxonomyObject.py +154 -0
- arelle/plugin/OimTaxonomy/XbrlTransform.py +17 -0
- arelle/plugin/OimTaxonomy/XbrlTypes.py +23 -0
- arelle/plugin/OimTaxonomy/XbrlUnit.py +17 -0
- arelle/plugin/OimTaxonomy/__init__.py +1037 -0
- arelle/plugin/OimTaxonomy/resources/iso4217.json +4479 -0
- arelle/plugin/OimTaxonomy/resources/oim-taxonomy-schema.json +935 -0
- arelle/plugin/OimTaxonomy/resources/ref.json +333 -0
- arelle/plugin/OimTaxonomy/resources/transform-types.json +2481 -0
- arelle/plugin/OimTaxonomy/resources/types.json +727 -0
- arelle/plugin/OimTaxonomy/resources/utr.json +3046 -0
- arelle/plugin/OimTaxonomy/resources/xbrlSpec.json +1082 -0
- arelle/plugin/formulaLoader.py +3 -3
- arelle/plugin/formulaSaver.py +4 -4
- arelle/plugin/inlineXbrlDocumentSet.py +331 -102
- arelle/plugin/internet/proxyNTLM/HTTPNtlmAuthHandler.py +1 -1
- arelle/plugin/loadFromExcel.py +13 -10
- arelle/plugin/loadFromOIM.py +16 -3096
- arelle/plugin/logging/saveMessages.py +1 -1
- arelle/plugin/saveHtmlEBAtables.py +293 -213
- arelle/plugin/saveLoadableOIM.py +652 -361
- arelle/plugin/saveOIMTaxonomy.py +311 -0
- arelle/plugin/streamingExtensions.py +1 -1
- arelle/plugin/systemInfo.py +46 -0
- arelle/plugin/transforms/tester.py +4 -4
- arelle/plugin/validate/CIPC/Const.py +18 -0
- arelle/plugin/validate/CIPC/__init__.py +34 -13
- arelle/plugin/validate/DBA/DisclosureSystems.py +12 -0
- arelle/plugin/validate/DBA/PluginValidationDataExtension.py +165 -0
- arelle/plugin/validate/DBA/ValidationPluginExtension.py +545 -0
- arelle/plugin/validate/DBA/__init__.py +49 -0
- arelle/plugin/validate/DBA/resources/config.xml +21 -0
- arelle/plugin/validate/DBA/rules/__init__.py +323 -0
- arelle/plugin/validate/DBA/rules/fr.py +1377 -0
- arelle/plugin/validate/DBA/rules/tc.py +45 -0
- arelle/plugin/validate/DBA/rules/th.py +172 -0
- arelle/plugin/validate/DBA/rules/tm.py +351 -0
- arelle/plugin/validate/DBA/rules/tr.py +373 -0
- arelle/plugin/validate/EBA/__init__.py +11 -12
- arelle/plugin/validate/EDINET/Constants.py +208 -0
- arelle/plugin/validate/EDINET/ContextRequirement.py +58 -0
- arelle/plugin/validate/EDINET/ControllerPluginData.py +298 -0
- arelle/plugin/validate/EDINET/CoverItemRequirements.py +42 -0
- arelle/plugin/validate/EDINET/DeiRequirements.py +118 -0
- arelle/plugin/validate/EDINET/DisclosureSystems.py +1 -0
- arelle/plugin/validate/EDINET/FilingFormat.py +275 -0
- arelle/plugin/validate/EDINET/FormType.py +134 -0
- arelle/plugin/validate/EDINET/ManifestInstance.py +236 -0
- arelle/plugin/validate/EDINET/PluginValidationDataExtension.py +640 -0
- arelle/plugin/validate/EDINET/ReportFolderType.py +162 -0
- arelle/plugin/validate/EDINET/Statement.py +139 -0
- arelle/plugin/validate/EDINET/TableOfContentsBuilder.py +493 -0
- arelle/plugin/validate/EDINET/UploadContents.py +48 -0
- arelle/plugin/validate/EDINET/ValidationPluginExtension.py +64 -0
- arelle/plugin/validate/EDINET/__init__.py +109 -0
- arelle/plugin/validate/EDINET/resources/config.xml +22 -0
- arelle/plugin/validate/EDINET/resources/cover-item-requirements.json +793 -0
- arelle/plugin/validate/EDINET/resources/dei-requirements.csv +27 -0
- arelle/plugin/validate/EDINET/resources/edinet-taxonomies.xml +62 -0
- arelle/plugin/validate/EDINET/rules/contexts.py +547 -0
- arelle/plugin/validate/EDINET/rules/edinet.py +1991 -0
- arelle/plugin/validate/EDINET/rules/frta.py +301 -0
- arelle/plugin/validate/EDINET/rules/gfm.py +2394 -0
- arelle/plugin/validate/EDINET/rules/manifests.py +88 -0
- arelle/plugin/validate/EDINET/rules/upload.py +1370 -0
- arelle/plugin/validate/ESEF/Const.py +16 -75
- arelle/plugin/validate/ESEF/Dimensions.py +2 -2
- arelle/plugin/validate/ESEF/ESEF_2021/DTS.py +6 -1
- arelle/plugin/validate/ESEF/ESEF_2021/Image.py +7 -4
- arelle/plugin/validate/ESEF/ESEF_2021/ValidateXbrlFinally.py +80 -57
- arelle/plugin/validate/ESEF/ESEF_Current/DTS.py +60 -22
- arelle/plugin/validate/ESEF/ESEF_Current/ValidateXbrlFinally.py +272 -133
- arelle/plugin/validate/ESEF/Util.py +5 -19
- arelle/plugin/validate/ESEF/__init__.py +61 -46
- arelle/plugin/validate/ESEF/resources/authority-validations.json +120 -10
- arelle/plugin/validate/ESEF/resources/config.xml +44 -3
- arelle/plugin/validate/FERC/__init__.py +31 -18
- arelle/plugin/validate/FERC/config.xml +18 -18
- arelle/plugin/validate/NL/DisclosureSystems.py +19 -3
- arelle/plugin/validate/NL/PluginValidationDataExtension.py +710 -7
- arelle/plugin/validate/NL/ValidationPluginExtension.py +117 -12
- arelle/plugin/validate/NL/__init__.py +21 -10
- arelle/plugin/validate/NL/resources/config.xml +27 -6
- arelle/plugin/validate/NL/rules/br_kvk.py +81 -21
- arelle/plugin/validate/NL/rules/fg_nl.py +292 -0
- arelle/plugin/validate/NL/rules/fr_kvk.py +60 -7
- arelle/plugin/validate/NL/rules/fr_nl.py +705 -24
- arelle/plugin/validate/NL/rules/nl_kvk.py +2182 -0
- arelle/plugin/validate/ROS/DisclosureSystems.py +1 -0
- arelle/plugin/validate/ROS/PluginValidationDataExtension.py +109 -0
- arelle/plugin/validate/ROS/ValidationPluginExtension.py +27 -0
- arelle/plugin/validate/ROS/__init__.py +28 -341
- arelle/plugin/validate/ROS/resources/config.xml +20 -0
- arelle/plugin/validate/ROS/rules/__init__.py +56 -0
- arelle/plugin/validate/ROS/rules/ros.py +393 -0
- arelle/plugin/validate/UK/ValidateUK.py +1372 -0
- arelle/plugin/validate/{HMRC → UK}/__init__.py +195 -189
- arelle/plugin/validate/{HMRC → UK}/config.xml +1 -1
- arelle/plugin/xbrlDB/SqlDb.py +1 -1
- arelle/plugin/xbrlDB/XbrlOpenSqlDB.py +5 -5
- arelle/plugin/xbrlDB/XbrlPublicPostgresDB.py +1 -1
- arelle/plugin/xbrlDB/XbrlSemanticJsonDB.py +1 -1
- arelle/plugin/xbrlDB/XbrlSemanticRdfDB.py +1 -1
- arelle/plugin/xbrlDB/__init__.py +4 -1
- arelle/{RenderingEvaluator.py → rendering/RenderingEvaluator.py} +120 -99
- arelle/rendering/RenderingLayout.py +476 -0
- arelle/rendering/RenderingResolution.py +814 -0
- arelle/resources/cache/http/www.eurofiling.info/eu/fr/xbrl/ext/filing-indicators.xsd +20 -0
- arelle/resources/cache/http/www.w3.org/2001/03/xml.xsd +117 -0
- arelle/resources/cache/http/www.w3.org/2001/XMLSchema.xsd +2534 -0
- arelle/resources/cache/http/www.w3.org/2001/xml.xsd +287 -0
- arelle/resources/cache/http/www.xbrl.org/2003/xbrl-instance-2003-12-31.xsd +779 -0
- arelle/resources/cache/http/www.xbrl.org/2003/xbrl-linkbase-2003-12-31.xsd +486 -0
- arelle/resources/cache/http/www.xbrl.org/2003/xl-2003-12-31.xsd +251 -0
- arelle/resources/cache/http/www.xbrl.org/2003/xlink-2003-12-31.xsd +121 -0
- arelle/resources/cache/http/www.xbrl.org/2004/ref-2004-08-10.xsd +129 -0
- arelle/resources/cache/http/www.xbrl.org/2005/xbrldt-2005.xsd +53 -0
- arelle/resources/cache/http/www.xbrl.org/2006/ref-2006-02-27.xsd +120 -0
- arelle/resources/cache/http/www.xbrl.org/2006/xbrldi-2006.xsd +41 -0
- arelle/resources/cache/http/www.xbrl.org/2008/boolean-filter.xsd +51 -0
- arelle/resources/cache/http/www.xbrl.org/2008/concept-filter.xsd +127 -0
- arelle/resources/cache/http/www.xbrl.org/2008/conformance.xsd +116 -0
- arelle/resources/cache/http/www.xbrl.org/2008/conformanceFunction.xsd +51 -0
- arelle/resources/cache/http/www.xbrl.org/2008/consistency-assertion.xsd +66 -0
- arelle/resources/cache/http/www.xbrl.org/2008/dimension-filter.xsd +86 -0
- arelle/resources/cache/http/www.xbrl.org/2008/entity-filter.xsd +92 -0
- arelle/resources/cache/http/www.xbrl.org/2008/existence-assertion.xsd +44 -0
- arelle/resources/cache/http/www.xbrl.org/2008/formula.xsd +261 -0
- arelle/resources/cache/http/www.xbrl.org/2008/function.xsd +90 -0
- arelle/resources/cache/http/www.xbrl.org/2008/general-filter.xsd +38 -0
- arelle/resources/cache/http/www.xbrl.org/2008/generic-label.xsd +80 -0
- arelle/resources/cache/http/www.xbrl.org/2008/generic-link.xsd +81 -0
- arelle/resources/cache/http/www.xbrl.org/2008/generic-reference.xsd +63 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xbrl/xbrl-instance-2003-12-31-ixmod.xsd +788 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xbrl/xbrl-linkbase-2003-12-31-ixmod.xsd +488 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xbrl/xl-2003-12-31.xsd +248 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xbrl/xlink-2003-12-31.xsd +117 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xframes-1.xsd +166 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-applet-1.xsd +66 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-attribs-1.xsd +72 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-base-1.xsd +36 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-basic-form-1.xsd +195 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-basic-table-1.xsd +169 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-basic10-model-1.xsd +376 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-basic10-module-redefines-1.xsd +61 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-basic10-modules-1.xsd +259 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-basic10.xsd +98 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-bdo-1.xsd +78 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-blkphras-1.xsd +161 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-blkpres-1.xsd +37 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-blkstruct-1.xsd +49 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-charent-1.xsd +38 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-copyright-1.xsd +29 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-csismap-1.xsd +96 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-datatypes-1.xsd +128 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-edit-1.xsd +39 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-events-1.xsd +130 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-form-1.xsd +326 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-frames-1.xsd +113 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-framework-1.xsd +66 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-hypertext-1.xsd +47 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-iframe-1.xsd +68 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-image-1.xsd +45 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-inlphras-1.xsd +163 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-inlpres-1.xsd +39 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-inlstruct-1.xsd +50 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-inlstyle-1.xsd +27 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-legacy-1.xsd +97 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-link-1.xsd +45 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-list-1.xsd +99 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-meta-1.xsd +42 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-misc-1.xsd +441 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-nameident-1.xsd +63 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-notations-1.xsd +69 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-object-1.xsd +76 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-param-1.xsd +51 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-pres-1.xsd +51 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-ruby-1.xsd +171 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-ruby-basic-1.xsd +89 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-script-1.xsd +70 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-ssismap-1.xsd +43 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-struct-1.xsd +112 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-style-1.xsd +52 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-table-1.xsd +272 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-target-1.xsd +53 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-text-1.xsd +67 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml11-model-1.xsd +677 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml11-module-redefines-1.xsd +335 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml11-modules-1.xsd +528 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml11.xsd +104 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml2.xsd +21 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-events-1.xsd +73 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-events-2.xsd +74 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-events-attribs-1.xsd +73 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-events-attribs-2.xsd +75 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-events-copyright-1.xsd +34 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-events-copyright-2.xsd +34 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-handlers-2.xsd +98 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml-inlinexbrl-1_0-definitions.xsd +225 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml-inlinexbrl-1_0-model.xsd +681 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml-inlinexbrl-1_0-modules.xsd +535 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml-inlinexbrl-1_0.xsd +40 -0
- arelle/resources/cache/http/www.xbrl.org/2008/match-filter.xsd +94 -0
- arelle/resources/cache/http/www.xbrl.org/2008/period-filter.xsd +86 -0
- arelle/resources/cache/http/www.xbrl.org/2008/registry.xsd +145 -0
- arelle/resources/cache/http/www.xbrl.org/2008/relative-filter.xsd +38 -0
- arelle/resources/cache/http/www.xbrl.org/2008/segment-scenario-filter.xsd +41 -0
- arelle/resources/cache/http/www.xbrl.org/2008/tuple-filter.xsd +83 -0
- arelle/resources/cache/http/www.xbrl.org/2008/unit-filter.xsd +58 -0
- arelle/resources/cache/http/www.xbrl.org/2008/validation.xsd +78 -0
- arelle/resources/cache/http/www.xbrl.org/2008/value-assertion.xsd +43 -0
- arelle/resources/cache/http/www.xbrl.org/2008/value-filter.xsd +43 -0
- arelle/resources/cache/http/www.xbrl.org/2008/variable.xsd +240 -0
- arelle/resources/cache/http/www.xbrl.org/2010/aspect-cover-filter.xsd +67 -0
- arelle/resources/cache/http/www.xbrl.org/2010/concept-relation-filter.xsd +108 -0
- arelle/resources/cache/http/www.xbrl.org/2010/custom-function-implementation.xsd +71 -0
- arelle/resources/cache/http/www.xbrl.org/2010/generic-message.xsd +68 -0
- arelle/resources/cache/http/www.xbrl.org/2010/validation-message.xsd +50 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xbrl/xbrl-instance-2003-12-31-ixmod.xsd +788 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xbrl/xbrl-linkbase-2003-12-31-ixmod.xsd +488 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xbrl/xl-2003-12-31.xsd +248 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xbrl/xlink-2003-12-31.xsd +117 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xframes-1.xsd +166 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-applet-1.xsd +66 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-attribs-1.xsd +72 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-base-1.xsd +36 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-basic-form-1.xsd +195 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-basic-table-1.xsd +169 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-basic10-model-1.xsd +376 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-basic10-module-redefines-1.xsd +61 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-basic10-modules-1.xsd +259 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-basic10.xsd +98 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-bdo-1.xsd +78 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-blkphras-1.xsd +161 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-blkpres-1.xsd +37 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-blkstruct-1.xsd +49 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-charent-1.xsd +38 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-copyright-1.xsd +29 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-csismap-1.xsd +96 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-datatypes-1.xsd +128 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-edit-1.xsd +39 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-events-1.xsd +130 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-form-1.xsd +326 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-frames-1.xsd +113 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-framework-1.xsd +66 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-hypertext-1.xsd +47 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-iframe-1.xsd +68 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-image-1.xsd +45 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-inlphras-1.xsd +163 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-inlpres-1.xsd +39 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-inlstruct-1.xsd +50 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-inlstyle-1.xsd +27 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-legacy-1.xsd +97 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-link-1.xsd +45 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-list-1.xsd +99 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-meta-1.xsd +42 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-misc-1.xsd +441 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-nameident-1.xsd +63 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-notations-1.xsd +69 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-object-1.xsd +76 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-param-1.xsd +51 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-pres-1.xsd +51 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-ruby-1.xsd +171 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-ruby-basic-1.xsd +89 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-script-1.xsd +70 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-ssismap-1.xsd +43 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-struct-1.xsd +112 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-style-1.xsd +52 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-table-1.xsd +272 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-target-1.xsd +53 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-text-1.xsd +67 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml11-model-1.xsd +677 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml11-module-redefines-1.xsd +335 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml11-modules-1.xsd +528 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml11.xsd +104 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml2.xsd +21 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-events-1.xsd +73 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-events-2.xsd +74 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-events-attribs-1.xsd +73 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-events-attribs-2.xsd +75 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-events-copyright-1.xsd +34 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-events-copyright-2.xsd +34 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-handlers-2.xsd +98 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml-inlinexbrl-1_1-definitions.xsd +252 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml-inlinexbrl-1_1-model.xsd +681 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml-inlinexbrl-1_1-modules.xsd +535 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml-inlinexbrl-1_1.xsd +40 -0
- arelle/resources/cache/http/www.xbrl.org/2013/match-filter.xsd +94 -0
- arelle/resources/cache/http/www.xbrl.org/2013/preferred-label.xsd +12 -0
- arelle/resources/cache/http/www.xbrl.org/2013/versioning-base.xsd +142 -0
- arelle/resources/cache/http/www.xbrl.org/2013/versioning-concept-details.xsd +143 -0
- arelle/resources/cache/http/www.xbrl.org/2013/versioning-concept-use.xsd +64 -0
- arelle/resources/cache/http/www.xbrl.org/2013/versioning-dimensions.xsd +162 -0
- arelle/resources/cache/http/www.xbrl.org/2014/extensible-enumerations.xsd +27 -0
- arelle/resources/cache/http/www.xbrl.org/2014/table.xsd +356 -0
- arelle/resources/cache/http/www.xbrl.org/2014/tablemodel.xsd +156 -0
- arelle/resources/cache/http/www.xbrl.org/2016/assertion-severity.xsd +29 -0
- arelle/resources/cache/http/www.xbrl.org/2016/severities.xml +21 -0
- arelle/resources/cache/http/www.xbrl.org/2016/taxonomy-package-catalog.xsd +38 -0
- arelle/resources/cache/http/www.xbrl.org/2016/taxonomy-package.xsd +154 -0
- arelle/resources/cache/http/www.xbrl.org/2022/assertion-severity.xsd +43 -0
- arelle/resources/cache/http/www.xbrl.org/2022/severities.xml +21 -0
- arelle/resources/cache/http/www.xbrl.org/dtr/type/nonNumeric-2009-12-16.xsd +76 -0
- arelle/resources/cache/http/www.xbrl.org/dtr/type/numeric-2009-12-16.xsd +78 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/arcrole/accounting-arcrole-2023-01-04.xsd +39 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/arcrole/deprecated-2009-12-16.xsd +29 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/arcrole/esma-arcrole-2018-11-21.xsd +14 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/arcrole/factExplanatory-2009-12-16.xsd +13 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/arcrole/jpfr-arcrole-2007-11-07.xsd +27 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/arcrole/parent-child-2013-09-19.xsd +12 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/role/deprecated-2009-12-16.xsd +17 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/role/jpfr-role-2007-11-07.xsd +47 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/role/negated-2008-03-31.xsd +30 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/role/negated-2009-12-16.xsd +33 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/role/negative-2009-12-16.xsd +25 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/role/net-2009-12-16.xsd +13 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/role/positive-2009-12-16.xsd +25 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/role/property-2022-09-28.xsd +15 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/role/reference-2009-12-16.xsd +21 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/role/restated-2006-02-21.xsd +19 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2012-01-30/utr.xml +4543 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2012-10-31/utr.xml +4510 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2012-11-30/utr.xml +4567 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2013-02-28/utr.xml +5180 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2013-05-17/utr.xml +5349 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2016-08-10/utr.xml +5363 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2017-07-12/utr.xml +6164 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2021-02-16/utr.xml +6370 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2021-12-08/utr.xml +6493 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2022-02-16/utr.xml +6551 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2022-07-20/utr.xml +6638 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2023-12-20/utr.xml +6680 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2024-01-31/utr.xml +6680 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2024-10-22/utr.xml +6693 -0
- arelle/resources/cache/http/www.xbrl.org/utr/utr.xml +6693 -0
- arelle/resources/cache/https/www.xbrl.org/2005/conformance.xsd +87 -0
- arelle/resources/cache/https/www.xbrl.org/2020/extensible-enumerations-2.0.xsd +51 -0
- arelle/resources/cache/https/www.xbrl.org/2023/calculation-1.1.xsd +27 -0
- arelle/resources/cache/https/www.xbrl.org/dtr/type/2020-01-21/types.xsd +812 -0
- arelle/resources/cache/https/www.xbrl.org/dtr/type/2022-03-31/types.xsd +847 -0
- arelle/resources/cache/https/www.xbrl.org/dtr/type/2024-01-31/types.xsd +897 -0
- arelle/resources/cache/https/www.xbrl.org/taxonomy/int/filing-indicators/REC/2021-02-03/filing-indicators-def.xml +68 -0
- arelle/resources/cache/https/www.xbrl.org/taxonomy/int/filing-indicators/REC/2021-02-03/filing-indicators-label.xml +84 -0
- arelle/resources/cache/https/www.xbrl.org/taxonomy/int/filing-indicators/REC/2021-02-03/filing-indicators.xsd +67 -0
- arelle/resources/libs/Tktable2.11/linux-x86_64/README.txt +149 -0
- arelle/resources/libs/Tktable2.11/linux-x86_64/html/tkTable.html +2039 -0
- arelle/resources/libs/Tktable2.11/linux-x86_64/libTktable2.11.so +0 -0
- arelle/resources/libs/Tktable2.11/linux-x86_64/license.txt +51 -0
- arelle/resources/libs/Tktable2.11/linux-x86_64/pkgIndex.tcl +3 -0
- arelle/resources/libs/Tktable2.11/linux-x86_64/tkTable.tcl +825 -0
- arelle/resources/libs/Tktable2.11/linux-x86_64/tktable.py +674 -0
- arelle/resources/libs/Tktable2.11/macos-arm64/README.txt +149 -0
- arelle/resources/libs/Tktable2.11/macos-arm64/html/tkTable.html +2039 -0
- arelle/resources/libs/Tktable2.11/macos-arm64/libTktable2.11.dylib +0 -0
- arelle/resources/libs/Tktable2.11/macos-arm64/license.txt +51 -0
- arelle/resources/libs/Tktable2.11/macos-arm64/pkgIndex.tcl +2 -0
- arelle/resources/libs/Tktable2.11/macos-arm64/tkTable.tcl +825 -0
- arelle/resources/libs/Tktable2.11/macos-arm64/tktable.py +674 -0
- arelle/resources/libs/Tktable2.11/macos-x86_64/README.txt +149 -0
- arelle/resources/libs/Tktable2.11/macos-x86_64/html/tkTable.html +2039 -0
- arelle/resources/libs/Tktable2.11/macos-x86_64/libTktable2.11.dylib +0 -0
- arelle/resources/libs/Tktable2.11/macos-x86_64/license.txt +51 -0
- arelle/resources/libs/Tktable2.11/macos-x86_64/pkgIndex.tcl +2 -0
- arelle/resources/libs/Tktable2.11/macos-x86_64/tkTable.tcl +825 -0
- arelle/resources/libs/Tktable2.11/macos-x86_64/tktable.py +674 -0
- arelle/resources/libs/Tktable2.11/win-x86_64/Tktable.dll +0 -0
- arelle/resources/libs/Tktable2.11/win-x86_64/pkgIndex.tcl +2 -0
- arelle/resources/libs/Tktable2.11/win-x86_64/tkTable.tcl +825 -0
- arelle/typing.py +9 -4
- arelle/utils/Contexts.py +38 -0
- arelle/utils/EntryPointDetection.py +139 -0
- arelle/utils/Equivalence.py +22 -0
- arelle/utils/{validate/PluginValidationData.py → PluginData.py} +5 -2
- arelle/utils/PluginHooks.py +256 -5
- arelle/utils/Units.py +36 -0
- arelle/utils/validate/Decorator.py +5 -3
- arelle/utils/validate/DetectScriptsInXhtml.py +99 -0
- arelle/utils/validate/ESEFImage.py +283 -0
- arelle/utils/validate/Validation.py +9 -1
- arelle/utils/validate/ValidationPlugin.py +74 -11
- arelle/utils/validate/ValidationUtil.py +55 -0
- arelle/webserver/bottle.py +5 -4424
- {arelle_release-2.17.1.dist-info → arelle_release-2.37.71.dist-info}/METADATA +51 -42
- arelle_release-2.37.71.dist-info/RECORD +697 -0
- {arelle_release-2.17.1.dist-info → arelle_release-2.37.71.dist-info}/WHEEL +1 -1
- {arelle_release-2.17.1.dist-info → arelle_release-2.37.71.dist-info/licenses}/LICENSE.md +1 -4
- {arelle_release-2.17.1.dist-info → arelle_release-2.37.71.dist-info}/top_level.txt +0 -1
- arelle/DialogOpenTaxonomyPackage.py +0 -1
- arelle/RenderingResolver.py +0 -624
- arelle/examples/.pydevproject +0 -5
- arelle/examples/CustomLogger.py +0 -43
- arelle/examples/LoadEFMvalidate.py +0 -32
- arelle/examples/LoadSavePreLbCsv.py +0 -26
- arelle/examples/LoadValidate.cs +0 -31
- arelle/examples/LoadValidate.py +0 -36
- arelle/examples/LoadValidateCmdLine.java +0 -69
- arelle/examples/LoadValidatePostedZip.java +0 -57
- arelle/examples/LoadValidateWebService.java +0 -34
- arelle/examples/SaveTableToExelle.py +0 -140
- arelle/examples/TR3toTR4.py +0 -88
- arelle/examples/plugin/bigInstance.py +0 -394
- arelle/examples/plugin/cmdWebServerExtension.py +0 -42
- arelle/examples/plugin/crashTest.py +0 -38
- arelle/examples/plugin/formulaSuiteConverter.py +0 -212
- arelle/examples/plugin/functionsCustom.py +0 -59
- arelle/examples/plugin/hello_dolly.py +0 -64
- arelle/examples/plugin/hello_i18n.pot +0 -26
- arelle/examples/plugin/hello_i18n.py +0 -32
- arelle/examples/plugin/importTestChild1.py +0 -21
- arelle/examples/plugin/importTestChild2.py +0 -22
- arelle/examples/plugin/importTestGrandchild1.py +0 -21
- arelle/examples/plugin/importTestGrandchild2.py +0 -21
- arelle/examples/plugin/importTestImported1.py +0 -23
- arelle/examples/plugin/importTestImported11.py +0 -22
- arelle/examples/plugin/importTestParent.py +0 -48
- arelle/examples/plugin/locale/fr/LC_MESSAGES/hello_i18n.po +0 -25
- arelle/examples/plugin/packagedImportTest/__init__.py +0 -47
- arelle/examples/plugin/packagedImportTest/importTestChild1.py +0 -21
- arelle/examples/plugin/packagedImportTest/importTestChild2.py +0 -22
- arelle/examples/plugin/packagedImportTest/importTestGrandchild1.py +0 -21
- arelle/examples/plugin/packagedImportTest/importTestGrandchild2.py +0 -21
- arelle/examples/plugin/packagedImportTest/importTestImported1.py +0 -24
- arelle/examples/plugin/packagedImportTest/importTestImported11.py +0 -21
- arelle/examples/plugin/packagedImportTest/subdir/importTestImported111.py +0 -21
- arelle/examples/plugin/packagedImportTest/subdir/subsubdir/importTestImported1111.py +0 -21
- arelle/examples/plugin/sakaCalendar.py +0 -215
- arelle/examples/plugin/saveInstanceInfoset.py +0 -121
- arelle/examples/plugin/streamingExtensions.py +0 -335
- arelle/examples/plugin/testcaseCalc11ValidateSetup.py +0 -32
- arelle/examples/plugin/testcaseIxExpectedHtmlFixup.py +0 -45
- arelle/examples/plugin/updateTableLB.py +0 -242
- arelle/examples/plugin/validate/XYZ/DisclosureSystems.py +0 -2
- arelle/examples/plugin/validate/XYZ/PluginValidationDataExtension.py +0 -10
- arelle/examples/plugin/validate/XYZ/ValidationPluginExtension.py +0 -49
- arelle/examples/plugin/validate/XYZ/__init__.py +0 -75
- arelle/examples/plugin/validate/XYZ/resources/config.xml +0 -16
- arelle/examples/plugin/validate/XYZ/rules/rules01.py +0 -109
- arelle/examples/plugin/validate/XYZ/rules/rules02.py +0 -58
- arelle/examples/plugin/validateSchemaLxml.py +0 -156
- arelle/examples/plugin/validateTableInfoset.py +0 -52
- arelle/examples/us-gaap-dei-docType-extraction-frm.xml +0 -90
- arelle/examples/us-gaap-dei-ratio-cash-frm.xml +0 -150
- arelle/plugin/functionsXmlCreation.py +0 -106
- arelle/plugin/instanceInfo.py +0 -306
- arelle/plugin/loadFromOIM-2018.py +0 -1282
- arelle/plugin/objectmaker.py +0 -285
- arelle/plugin/sphinx/FormulaGenerator.py +0 -823
- arelle/plugin/sphinx/SphinxContext.py +0 -404
- arelle/plugin/sphinx/SphinxEvaluator.py +0 -783
- arelle/plugin/sphinx/SphinxMethods.py +0 -1287
- arelle/plugin/sphinx/SphinxParser.py +0 -1093
- arelle/plugin/sphinx/SphinxValidator.py +0 -163
- arelle/plugin/sphinx/US-GAAP Ratios Example.xsr +0 -52
- arelle/plugin/sphinx/__init__.py +0 -285
- arelle/plugin/transforms/SEC/__init__.py +0 -308
- arelle/plugin/transforms/SEC/conf/README.md +0 -39
- arelle/plugin/transforms/SEC/conf/extractTestcase.sh +0 -2
- arelle/plugin/transforms/SEC/conf/extractTestcase.xsl +0 -109
- arelle/plugin/transforms/SEC/conf/runIxtSecTests.sh +0 -16
- arelle/plugin/transforms/SEC/conf/saxon9.jar +0 -0
- arelle/plugin/transforms/SEC/conf/testcase.xml +0 -7117
- arelle/plugin/transforms/SEC/conf/tests.xml +0 -848
- arelle/plugin/transforms/SEC/text2num.py +0 -110
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-boolballotbox.xml +0 -66
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-countrynameen.xml +0 -65
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-datequarterend.xml +0 -66
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-durday.xml +0 -61
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-durhour.xml +0 -69
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-durmonth.xml +0 -71
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-durweek.xml +0 -70
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-durwordsen.xml +0 -56
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-duryear.xml +0 -64
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-edgarprovcountryen.xml +0 -65
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-entityfilercategoryen.xml +0 -63
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-exchnameen.xml +0 -86
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-numwordsen.xml +0 -55
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-stateprovnameen.xml +0 -64
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-yesnoballotbox.xml +0 -66
- arelle/plugin/transforms/SEC/transformationRegistry/registry/transform-registry.xml +0 -314
- arelle/plugin/transforms/SEC/transformationRegistry/schema/inlinexbrl-sec-transformation.xsd +0 -418
- arelle/plugin/validate/EFM/Consts.py +0 -362
- arelle/plugin/validate/EFM/DTS.py +0 -569
- arelle/plugin/validate/EFM/Dimensions.py +0 -264
- arelle/plugin/validate/EFM/Document.py +0 -206
- arelle/plugin/validate/EFM/Filing.py +0 -4383
- arelle/plugin/validate/EFM/IsolateSeparateIXDSes.py +0 -19
- arelle/plugin/validate/EFM/MessageNumericId.py +0 -142
- arelle/plugin/validate/EFM/PreCalAlignment.py +0 -324
- arelle/plugin/validate/EFM/Util.py +0 -688
- arelle/plugin/validate/EFM/__init__.py +0 -843
- arelle/plugin/validate/EFM/config.xml +0 -333
- arelle/plugin/validate/EFM/resources/README.md +0 -57
- arelle/plugin/validate/EFM/resources/axiswarnings.json +0 -27
- arelle/plugin/validate/EFM/resources/cef-deprecated-concepts.json +0 -8
- arelle/plugin/validate/EFM/resources/country-deprecated-concepts.json +0 -19
- arelle/plugin/validate/EFM/resources/currency-deprecated-concepts.json +0 -7
- arelle/plugin/validate/EFM/resources/dei-deprecated-concepts.json +0 -8
- arelle/plugin/validate/EFM/resources/dei-validations.json +0 -2884
- arelle/plugin/validate/EFM/resources/dqc-us-rules.json +0 -1389
- arelle/plugin/validate/EFM/resources/ecd-deprecated-concepts.json +0 -1
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-16-4.xml +0 -115
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-17-0-4.xml +0 -300
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-17-1.xml +0 -304
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-17-2.xml +0 -290
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-17-3-1.xml +0 -294
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-18.1.xml +0 -549
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-18.2.xml +0 -506
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-18.3.xml +0 -496
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-19-1.xml +0 -662
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-19-2.xml +0 -3761
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-19-3.xml +0 -3577
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-20-1.xml +0 -4020
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-20-2.xml +0 -3320
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-20-3.xml +0 -2998
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-2012.xml +0 -957
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-2013.xml +0 -982
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-2014.xml +0 -1001
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-2015.xml +0 -1076
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-2016.xml +0 -120
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-21-1.xml +0 -3329
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-21-2.xml +0 -1230
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-21-3.xml +0 -1113
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-21-4.xml +0 -1321
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-22-1-preview.xml +0 -1721
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-22-1.xml +0 -1841
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-22-2-2.xml +0 -1450
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-22-2.xml +0 -1429
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-22-4.xml +0 -1527
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-23-1-1.xml +0 -2049
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-23-1.xml +0 -2065
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-23-2.xml +0 -1674
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-23-3.xml +0 -1715
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-all-years.xml +0 -10671
- arelle/plugin/validate/EFM/resources/edgartaxonomies/erxl.xsd +0 -69
- arelle/plugin/validate/EFM/resources/edgartaxonomies/extendedtaxonomies-all-years.xml +0 -18
- arelle/plugin/validate/EFM/resources/edgartaxonomies/ifrs-taxonomies.xml +0 -3126
- arelle/plugin/validate/EFM/resources/edgartaxonomies/ifrstaxonomies-all-years.xml +0 -22
- arelle/plugin/validate/EFM/resources/ex26-validations.json +0 -255
- arelle/plugin/validate/EFM/resources/exch-deprecated-concepts.json +0 -163
- arelle/plugin/validate/EFM/resources/ifrs-full-deprecated-concepts.json +0 -204
- arelle/plugin/validate/EFM/resources/invest-deprecated-concepts.json +0 -99
- arelle/plugin/validate/EFM/resources/ixbrl-transform-registries.json +0 -16
- arelle/plugin/validate/EFM/resources/naics-deprecated-concepts.json +0 -295
- arelle/plugin/validate/EFM/resources/oef-deprecated-concepts.json +0 -59
- arelle/plugin/validate/EFM/resources/other-standard-taxonomies.json +0 -12
- arelle/plugin/validate/EFM/resources/rr-deprecated-concepts.json +0 -14
- arelle/plugin/validate/EFM/resources/rxp-deprecated-concepts.json +0 -1
- arelle/plugin/validate/EFM/resources/shr-deprecated-concepts.json +0 -1
- arelle/plugin/validate/EFM/resources/sic-deprecated-concepts.json +0 -1
- arelle/plugin/validate/EFM/resources/signwarnings.json +0 -112
- arelle/plugin/validate/EFM/resources/srt-deprecated-concepts.json +0 -1
- arelle/plugin/validate/EFM/resources/stpr-deprecated-concepts.json +0 -1
- arelle/plugin/validate/EFM/resources/taxonomy-compatibility.json +0 -79
- arelle/plugin/validate/EFM/resources/us-gaap-deprecated-concepts.json +0 -2886
- arelle/plugin/validate/EFM/resources/us-gaap-rels-2020.json +0 -29068
- arelle/plugin/validate/EFM/resources/us-gaap-rels-2021.json +0 -29598
- arelle/plugin/validate/EFM/resources/us-gaap-rels-2022.json +0 -29141
- arelle/plugin/validate/EFM/resources/us-gaap-rels-2023.json +0 -29400
- arelle/plugin/validate/EFM/resources/vip-deprecated-concepts.json +0 -1
- arelle/plugin/validate/EFM/tools/CheckTxmyRefs.py +0 -180
- arelle/plugin/validate/EFM-htm/Const.py +0 -205
- arelle/plugin/validate/EFM-htm/__init__.py +0 -217
- arelle/plugin/validate/EFM-htm/config.xml +0 -17
- arelle/plugin/validate/EFM-htm/resources/efm-htm.dtd +0 -664
- arelle/plugin/validate/ESEF/ESEF_Current/Image.py +0 -199
- arelle/plugin/validate/ESEF_2022/__init__.py +0 -47
- arelle/plugin/validate/GFM/__init__.py +0 -59
- arelle/plugin/validate/GFM/config.xml +0 -82
- arelle/plugin/validate/SBRnl/CustomLoader.py +0 -19
- arelle/plugin/validate/SBRnl/DTS.py +0 -305
- arelle/plugin/validate/SBRnl/Dimensions.py +0 -357
- arelle/plugin/validate/SBRnl/Document.py +0 -799
- arelle/plugin/validate/SBRnl/Filing.py +0 -467
- arelle/plugin/validate/SBRnl/__init__.py +0 -75
- arelle/plugin/validate/SBRnl/config.xml +0 -26
- arelle/plugin/validate/SBRnl/sbr-nl-taxonomies.xml +0 -754
- arelle/plugin/validate/USBestPractices.py +0 -570
- arelle/plugin/validate/USCorpAction.py +0 -557
- arelle/plugin/validate/USSecTagging.py +0 -337
- arelle/plugin/validate/XDC/__init__.py +0 -77
- arelle/plugin/validate/XDC/config.xml +0 -20
- arelle/plugin/validate/XFsyntax/__init__.py +0 -64
- arelle/plugin/validate/XFsyntax/xf.py +0 -2227
- arelle/plugin/validate/__init__.py +0 -20
- arelle/plugin/validate/calc2.py +0 -536
- arelle/plugin/validateSBRnl.py +0 -530
- arelle/scripts-macOS/startWebServer.command +0 -3
- arelle/scripts-unix/startWebServer.sh +0 -1
- arelle/scripts-windows/startWebServer.bat +0 -5
- arelle_release-2.17.1.dist-info/RECORD +0 -676
- tests/__init__.py +0 -0
- tests/integration_tests/ui_tests/ArelleGUITest/ArelleGUITest/ArelleGUITest.csproj +0 -30
- tests/integration_tests/ui_tests/ArelleGUITest/ArelleGUITest/Tests.cs +0 -381
- tests/integration_tests/ui_tests/ArelleGUITest/ArelleGUITest/Usings.cs +0 -1
- tests/integration_tests/ui_tests/ArelleGUITest/ArelleGUITest.sln +0 -31
- tests/integration_tests/ui_tests/resources/workiva.zip +0 -0
- tests/integration_tests/validation/README.md +0 -50
- tests/integration_tests/validation/conformance_suite_config.py +0 -59
- tests/integration_tests/validation/conformance_suite_configs.py +0 -63
- tests/integration_tests/validation/conformance_suite_configurations/efm_current.py +0 -261
- tests/integration_tests/validation/conformance_suite_configurations/esef_ixbrl_2021.py +0 -85
- tests/integration_tests/validation/conformance_suite_configurations/esef_ixbrl_2022.py +0 -90
- tests/integration_tests/validation/conformance_suite_configurations/esef_xhtml_2021.py +0 -15
- tests/integration_tests/validation/conformance_suite_configurations/esef_xhtml_2022.py +0 -15
- tests/integration_tests/validation/conformance_suite_configurations/nl_nt16.py +0 -13
- tests/integration_tests/validation/conformance_suite_configurations/nl_nt17.py +0 -13
- tests/integration_tests/validation/conformance_suite_configurations/nl_nt18.py +0 -13
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_2_1.py +0 -34
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_calculations_1_1.py +0 -40
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_dimensions_1_0.py +0 -28
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_extensible_enumerations_1_0.py +0 -10
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_extensible_enumerations_2_0.py +0 -10
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_formula_1_0.py +0 -9
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_formula_1_0_assertion_severity_2_0.py +0 -9
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_formula_1_0_function_registry.py +0 -14
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_ixbrl_1_1.py +0 -22
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_link_role_registry_1_0.py +0 -11
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_oim_1_0.py +0 -19
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_table_linkbase_1_0.py +0 -296
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_taxonomy_packages_1_0.py +0 -13
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_transformation_registry_3.py +0 -13
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_transformation_registry_4.py +0 -13
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_transformation_registry_5.py +0 -13
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_utr_malformed_1_0.py +0 -31
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_utr_registry_1_0.py +0 -22
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_utr_structure_1_0.py +0 -18
- tests/integration_tests/validation/conftest.py +0 -24
- tests/integration_tests/validation/discover_tests.py +0 -22
- tests/integration_tests/validation/download_conformance_suites.py +0 -47
- tests/integration_tests/validation/run_conformance_suites.py +0 -175
- tests/integration_tests/validation/test_conformance_suites.py +0 -14
- tests/integration_tests/validation/validation_util.py +0 -271
- tests/resources/conformance_suites/nl_nt16/br_kvk/2-04-invalid-period.xbrl +0 -63
- tests/resources/conformance_suites/nl_nt16/br_kvk/2-04-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/br_kvk/3-01-missing.xbrl +0 -53
- tests/resources/conformance_suites/nl_nt16/br_kvk/3-01-multiple.xbrl +0 -60
- tests/resources/conformance_suites/nl_nt16/br_kvk/3-01-testcase.xml +0 -33
- tests/resources/conformance_suites/nl_nt16/br_kvk/4-07-invalid.xbrl +0 -57
- tests/resources/conformance_suites/nl_nt16/br_kvk/4-07-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/br_kvk/4-10-invalid.xbrl +0 -58
- tests/resources/conformance_suites/nl_nt16/br_kvk/4-10-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/br_kvk/4-12-invalid.xbrl +0 -63
- tests/resources/conformance_suites/nl_nt16/br_kvk/4-12-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/br_kvk/4-16-missing.xbrl +0 -61
- tests/resources/conformance_suites/nl_nt16/br_kvk/4-16-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/br_kvk/4-20-invalid-date.xbrl +0 -89
- tests/resources/conformance_suites/nl_nt16/br_kvk/4-20-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/fr_kvk/1-01-invalid-file-extension.xml +0 -56
- tests/resources/conformance_suites/nl_nt16/fr_kvk/1-01-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/fr_kvk/2-01-invalid-lang.xbrl +0 -56
- tests/resources/conformance_suites/nl_nt16/fr_kvk/2-01-missing-lang.xbrl +0 -55
- tests/resources/conformance_suites/nl_nt16/fr_kvk/2-01-testcase.xml +0 -33
- tests/resources/conformance_suites/nl_nt16/fr_kvk/2-03-entrypoint.xsd +0 -6
- tests/resources/conformance_suites/nl_nt16/fr_kvk/2-03-invalid-entrypoint.xbrl +0 -63
- tests/resources/conformance_suites/nl_nt16/fr_kvk/2-03-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/fr_kvk/5-01-invalid-decimals.xbrl +0 -49
- tests/resources/conformance_suites/nl_nt16/fr_kvk/5-01-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/fr_kvk/5-02-invalid-decimals.xbrl +0 -49
- tests/resources/conformance_suites/nl_nt16/fr_kvk/5-02-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/fr_nl/1-01-invalid-file.xbrl +0 -2
- tests/resources/conformance_suites/nl_nt16/fr_nl/1-01-invalid-zip.zip +0 -0
- tests/resources/conformance_suites/nl_nt16/fr_nl/1-01-testcase.xml +0 -33
- tests/resources/conformance_suites/nl_nt16/fr_nl/1-03-invalid-doctype.xbrl +0 -4
- tests/resources/conformance_suites/nl_nt16/fr_nl/1-03-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/fr_nl/1-05-invalid-encoding.xbrl +0 -0
- tests/resources/conformance_suites/nl_nt16/fr_nl/1-05-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/fr_nl/1-06-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/fr_nl/1-06.invalid.xbrl +0 -2
- tests/resources/conformance_suites/nl_nt16/fr_nl/2-06-invalid-file.xbrl +0 -8
- tests/resources/conformance_suites/nl_nt16/fr_nl/2-06-invalid-zip.zip +0 -0
- tests/resources/conformance_suites/nl_nt16/fr_nl/2-06-testcase.xml +0 -33
- tests/resources/conformance_suites/nl_nt16/index.xml +0 -20
- tests/resources/conformance_suites/nl_nt17/br_kvk/2-04-invalid-period.xbrl +0 -63
- tests/resources/conformance_suites/nl_nt17/br_kvk/2-04-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/br_kvk/3-01-missing.xbrl +0 -53
- tests/resources/conformance_suites/nl_nt17/br_kvk/3-01-multiple.xbrl +0 -60
- tests/resources/conformance_suites/nl_nt17/br_kvk/3-01-testcase.xml +0 -33
- tests/resources/conformance_suites/nl_nt17/br_kvk/4-07-invalid.xbrl +0 -57
- tests/resources/conformance_suites/nl_nt17/br_kvk/4-07-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/br_kvk/4-10-invalid.xbrl +0 -58
- tests/resources/conformance_suites/nl_nt17/br_kvk/4-10-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/br_kvk/4-12-invalid.xbrl +0 -63
- tests/resources/conformance_suites/nl_nt17/br_kvk/4-12-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/br_kvk/4-16-missing.xbrl +0 -61
- tests/resources/conformance_suites/nl_nt17/br_kvk/4-16-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/br_kvk/4-20-invalid-date.xbrl +0 -89
- tests/resources/conformance_suites/nl_nt17/br_kvk/4-20-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/fr_kvk/1-01-invalid-file-extension.xml +0 -56
- tests/resources/conformance_suites/nl_nt17/fr_kvk/1-01-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/fr_kvk/2-01-invalid-lang.xbrl +0 -56
- tests/resources/conformance_suites/nl_nt17/fr_kvk/2-01-missing-lang.xbrl +0 -55
- tests/resources/conformance_suites/nl_nt17/fr_kvk/2-01-testcase.xml +0 -33
- tests/resources/conformance_suites/nl_nt17/fr_kvk/2-03-entrypoint.xsd +0 -6
- tests/resources/conformance_suites/nl_nt17/fr_kvk/2-03-invalid-entrypoint.xbrl +0 -63
- tests/resources/conformance_suites/nl_nt17/fr_kvk/2-03-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/fr_kvk/5-01-invalid-decimals.xbrl +0 -49
- tests/resources/conformance_suites/nl_nt17/fr_kvk/5-01-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/fr_kvk/5-02-invalid-decimals.xbrl +0 -49
- tests/resources/conformance_suites/nl_nt17/fr_kvk/5-02-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/fr_nl/1-01-invalid-file.xbrl +0 -2
- tests/resources/conformance_suites/nl_nt17/fr_nl/1-01-invalid-zip.zip +0 -0
- tests/resources/conformance_suites/nl_nt17/fr_nl/1-01-testcase.xml +0 -33
- tests/resources/conformance_suites/nl_nt17/fr_nl/1-03-invalid-doctype.xbrl +0 -4
- tests/resources/conformance_suites/nl_nt17/fr_nl/1-03-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/fr_nl/1-05-invalid-encoding.xbrl +0 -0
- tests/resources/conformance_suites/nl_nt17/fr_nl/1-05-testcases.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/fr_nl/1-06-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/fr_nl/1-06.invalid.xbrl +0 -2
- tests/resources/conformance_suites/nl_nt17/fr_nl/2-06-invalid-file.xbrl +0 -8
- tests/resources/conformance_suites/nl_nt17/fr_nl/2-06-invalid-zip.zip +0 -0
- tests/resources/conformance_suites/nl_nt17/fr_nl/2-06-testcase.xml +0 -33
- tests/resources/conformance_suites/nl_nt17/index.xml +0 -20
- tests/resources/conformance_suites/nl_nt18/fr_nl/1-03-invalid-doctype.xbrl +0 -4
- tests/resources/conformance_suites/nl_nt18/fr_nl/1-03-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt18/fr_nl/1-05-invalid-encoding.xbrl +0 -0
- tests/resources/conformance_suites/nl_nt18/fr_nl/1-05-testcases.xml +0 -22
- tests/resources/conformance_suites/nl_nt18/fr_nl/1-06-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt18/fr_nl/1-06.invalid.xbrl +0 -2
- tests/resources/conformance_suites/nl_nt18/fr_nl/1.01-invalid-file.xbrl +0 -2
- tests/resources/conformance_suites/nl_nt18/fr_nl/1.01-invalid-zip.zip +0 -0
- tests/resources/conformance_suites/nl_nt18/fr_nl/1.01-testcase.xml +0 -33
- tests/resources/conformance_suites/nl_nt18/fr_nl/2-06-invalid-file.xbrl +0 -8
- tests/resources/conformance_suites/nl_nt18/fr_nl/2-06-invalid-zip.zip +0 -0
- tests/resources/conformance_suites/nl_nt18/fr_nl/2-06-testcase.xml +0 -33
- tests/resources/conformance_suites/nl_nt18/index.xml +0 -8
- tests/unit_tests/arelle/conftest.py +0 -16
- tests/unit_tests/arelle/formula/test_fact_aspects_cache.py +0 -170
- tests/unit_tests/arelle/plugin/test_loadfromoim.py +0 -40
- tests/unit_tests/arelle/plugin/test_plugin_imports.py +0 -27
- tests/unit_tests/arelle/test_betafeatures.py +0 -81
- tests/unit_tests/arelle/test_cntlr.py +0 -28
- tests/unit_tests/arelle/test_import.py +0 -40
- tests/unit_tests/arelle/test_locale.py +0 -73
- tests/unit_tests/arelle/test_modelmanager.py +0 -15
- tests/unit_tests/arelle/test_packagemanager.py +0 -65
- tests/unit_tests/arelle/test_pluginmanager.py +0 -176
- tests/unit_tests/arelle/test_qname.py +0 -140
- tests/unit_tests/arelle/test_runtimeoptions.py +0 -56
- tests/unit_tests/arelle/test_system_info.py +0 -26
- tests/unit_tests/arelle/test_updater.py +0 -507
- tests/unit_tests/arelle/test_urlutil.py +0 -49
- tests/unit_tests/arelle/test_version.py +0 -46
- tests/unit_tests/arelle/utils/validate/test_decorator.py +0 -59
- /arelle/{examples/plugin/validate/XYZ → plugin/validate/EDINET}/rules/__init__.py +0 -0
- /arelle/plugin/validate/{HMRC → UK}/consistencyChecksByName.json +0 -0
- /arelle/plugin/validate/{HMRC → UK}/hmrc-taxonomies.xml +0 -0
- {arelle_release-2.17.1.dist-info → arelle_release-2.37.71.dist-info}/entry_points.txt +0 -0
|
@@ -1,676 +0,0 @@
|
|
|
1
|
-
arelle/Aspect.py,sha256=gbg6VEvL9lBiaKSfyCKDBpqZCJgnLv87TvG-cvOHbBo,5432
|
|
2
|
-
arelle/BetaFeatures.py,sha256=wZZS7qiS1PSFDklyN9GkEchXJDg_XdNcUnr8wjLqGMc,806
|
|
3
|
-
arelle/Cntlr.py,sha256=Ugg1gd1pz-M6eTlVc_AS8HbC1_yWhOeV7N_CaKa5OAM,45485
|
|
4
|
-
arelle/CntlrCmdLine.py,sha256=NFd5jJI1z7eiynXt_V8W6rqvFoC_rAbc_dIKw5epSnU,81112
|
|
5
|
-
arelle/CntlrComServer.py,sha256=h1KPf31uMbErpxTZn_iklDqUMGFgQnjZkFkFjd8gtLQ,1888
|
|
6
|
-
arelle/CntlrProfiler.py,sha256=2VQJudiUhxryVypxjODx2ccP1-n60icTiWs5lSEokhQ,972
|
|
7
|
-
arelle/CntlrQuickBooks.py,sha256=tedlZferCa-9lgkfWlEUKem6Fb4dMiuG6cykSU1kCks,31445
|
|
8
|
-
arelle/CntlrWebMain.py,sha256=1CT5I6krUlQme0km35_v201K6ZdhWGH_gMO_HwRUdpA,49176
|
|
9
|
-
arelle/CntlrWinMain.py,sha256=jJ6zvRIviqya4PCI6gODp1n1fOC8JAl-EXxp0cT3rJw,88343
|
|
10
|
-
arelle/CntlrWinTooltip.py,sha256=6MzoAIfkYnNu_bl_je8n0adhwmKxAIcymkg9Tij9Z4M,7951
|
|
11
|
-
arelle/DialogAbout.py,sha256=fmZ2Bna6vaxbOtoNim0RipedyuUT1oQHaFb3zgCWH8k,1986
|
|
12
|
-
arelle/DialogArcroleGroup.py,sha256=bwCF9GBGi-bVnVLq_m2ysO-lpjcQ3fPrIYzmQpt6Ol8,7546
|
|
13
|
-
arelle/DialogFind.py,sha256=Bm5LXu1v_sEB-CRX4bdmHBWU7zjAvPP6h--WZS_-2v4,19419
|
|
14
|
-
arelle/DialogFormulaParameters.py,sha256=w2KZQbqA_RgT9V6R8wg6ao9Uou5smwmXrrSpdMT2Xxo,8617
|
|
15
|
-
arelle/DialogLanguage.py,sha256=gSwTNSrVDiIjEU_BNYZrCVhJFdGsdKkimZoHN2lPt_I,7014
|
|
16
|
-
arelle/DialogNewFactItem.py,sha256=1LwboSWP1BAYrdxV2sUEW2Adp0Maqz-MYudE8OSsnHw,8280
|
|
17
|
-
arelle/DialogOpenArchive.py,sha256=CoRPQhCNaJqf49PE2MvtX6Jm6n0XLieG2nOUQ9ouC40,24340
|
|
18
|
-
arelle/DialogOpenTaxonomyPackage.py,sha256=F3TAJCBA5Rl68EJv_DDpfrRM53Z9ma-Dh0_E9shPX70,40
|
|
19
|
-
arelle/DialogPackageManager.py,sha256=eFkSkBtVPQVs4-nQzH5VmICMt8jVZfsbOxIsD7oEVGc,30380
|
|
20
|
-
arelle/DialogPluginManager.py,sha256=6nbeLRBQ2MyDQgKZodFnjcB_9nk2wre-gyL52Nf593E,35649
|
|
21
|
-
arelle/DialogRssWatch.py,sha256=2C-CkuLZ6kp4W-FvfsS9suod2-eAcat4uMdvc_nPv40,13750
|
|
22
|
-
arelle/DialogURL.py,sha256=IF-q9Qz3mNJGclD1yr-tSCLSIO8QGp4wxjTNnlCO3kU,4353
|
|
23
|
-
arelle/DialogUserPassword.py,sha256=0pOeilvycCz-vfNX3VRWs8LVTMUZ8fm0naGUooa-RuM,13768
|
|
24
|
-
arelle/DisclosureSystem.py,sha256=qpbD6ca3iCMtwFddl2BSIGAbRpT1K5yDOICY3m-RWUQ,21422
|
|
25
|
-
arelle/FileSource.py,sha256=3zPSWJfPyRDturDCBNHtT4U0-E9Qn36O2Wv6br-zLaM,43769
|
|
26
|
-
arelle/FunctionCustom.py,sha256=d1FsBG14eykvpLpgaXpN8IdxnlG54dfGcsXPYfdpA9Q,5880
|
|
27
|
-
arelle/FunctionFn.py,sha256=6qtG3yJg6NQ6-6QJqfFRkpJfvw3VL4how-rwVY7LjmM,36524
|
|
28
|
-
arelle/FunctionIxt.py,sha256=WpwFZbdaDWzYf29-PoVcROLGEiEl5MmcjKbvtX6ahkA,80128
|
|
29
|
-
arelle/FunctionUtil.py,sha256=BCiiF1hBX8DzTZdGa9r8NYYq1w1ur5TX9B8CodAAgDY,4041
|
|
30
|
-
arelle/FunctionXfi.py,sha256=VpjyhbfC84czUnwxFhahN4F33Am3fhMNqwIPk2O-URQ,71369
|
|
31
|
-
arelle/FunctionXs.py,sha256=ANbRQ49IKm-3-6mcNzBjtVLR2yN4ZuU2n28Pm8zGc6M,13139
|
|
32
|
-
arelle/HashUtil.py,sha256=dS11q9UUUFzP7MgiuNdxFfvF3IpeyZUiOFxVFArEEWE,2963
|
|
33
|
-
arelle/HtmlUtil.py,sha256=eXa6yF5xBCOODCuBMY7g8ePZHPOSu6X0gDsW3z9N50A,761
|
|
34
|
-
arelle/InstanceAspectsEvaluator.py,sha256=TePNIs_m0vCIbN5N4PXEyJm529T2WBFi2zmv-72r3Zk,1805
|
|
35
|
-
arelle/LeiUtil.py,sha256=tSPrbQrXEeH5pXgGA_6MAdgMZp20NaW5izJglIXyEQk,5095
|
|
36
|
-
arelle/LocalViewer.py,sha256=26Y9T0H9vgqDBDNF7sIHTeFN1QgDbZwc4fcFPFn8a5A,3084
|
|
37
|
-
arelle/Locale.py,sha256=8H6e11VqfM63FUl6Ghzsxxv8rqXrhS_dZWsa-LvxaGk,28242
|
|
38
|
-
arelle/ModelDocument.py,sha256=LICBTRMzualukDmu_MrP8RDG__xnF_gSJarUQlpwzJw,123577
|
|
39
|
-
arelle/ModelDtsObject.py,sha256=-1dE1mr9F_NJ2c0W2zWlza7VFHQIgb2LIdnNPwHKRPM,88888
|
|
40
|
-
arelle/ModelFormulaObject.py,sha256=RKrLC-w56vsNeTNbHeDAYQ2_8f-hIaPNmMX8wWvj9Ic,122124
|
|
41
|
-
arelle/ModelInstanceObject.py,sha256=x1O5ZZDWZ38dvJmfP1WnGQUJYvHZFsypzrzpffCK40c,73101
|
|
42
|
-
arelle/ModelManager.py,sha256=FXmmS8ejAvzFct5yw8ntohvbbg-yNRmj8EhXEhOfH_c,10732
|
|
43
|
-
arelle/ModelObject.py,sha256=5hI7FNHDi5GxG_IJa4iIVbriuw6-rJ3SuUZyEbqq4uA,18485
|
|
44
|
-
arelle/ModelObjectFactory.py,sha256=XuNF4Re3p00tODCdyspfar_DNCXfARqCaLEkntgAZ0g,8750
|
|
45
|
-
arelle/ModelRelationshipSet.py,sha256=1cobfb59cIWhprESNdX5elcFGFHww0DwMqP7GrT22Uo,21904
|
|
46
|
-
arelle/ModelRenderingObject.py,sha256=9dGN31vF1sb7TEq-JIBDjv8BU3vUGVynCZEqPZBEFes,70336
|
|
47
|
-
arelle/ModelRssItem.py,sha256=kjKGnUTp06DrCuOUcUogsMQgMeuO8hK8Jy9hk7nhCoQ,7823
|
|
48
|
-
arelle/ModelRssObject.py,sha256=xjuwyJ8pU5sQmNPJFQakDEEnujZg2bMCTaj3zVezHL8,992
|
|
49
|
-
arelle/ModelTestcaseObject.py,sha256=l_Gfs08u4AHYFQI8Fh46iWlcWMva1SXS3sfwIpPn5JU,21204
|
|
50
|
-
arelle/ModelValue.py,sha256=tDlp90yiSkPDHeVtuKSYyyLlD-84vQO8dvGXMnD3aYA,38745
|
|
51
|
-
arelle/ModelVersObject.py,sha256=cPD1IzhkCfuV1eMgVFWes88DH_6WkUj5kj7sgGF2M0I,26062
|
|
52
|
-
arelle/ModelVersReport.py,sha256=ftZ9GE85OU3jXUCD02kcKeBFpQ9RdBMogDCmi74twBE,73327
|
|
53
|
-
arelle/ModelXbrl.py,sha256=glHXnOb5KxqR7Ad8u6rOXYrVSz5SZmFQT3NL0Y5BFLY,70604
|
|
54
|
-
arelle/PackageManager.py,sha256=N_KuOM4qWDbR1R5OIJKZWOmn3c-gYhY0gk4LUTkOxMc,32987
|
|
55
|
-
arelle/PluginManager.py,sha256=GYGZdU4ZeLE3WB9Zzw6UC7AiMN4qiXxpgqHUCA1K0b0,30977
|
|
56
|
-
arelle/PrototypeDtsObject.py,sha256=0lf60VcXR_isx57hBPrc7vEMkFpYkVuK4JVBSmopzkQ,7989
|
|
57
|
-
arelle/PrototypeInstanceObject.py,sha256=xRug5uAXIjRl1KmZVvg0iFo11lJnd2rD38DcV4uWHow,10700
|
|
58
|
-
arelle/PythonUtil.py,sha256=pP59gx2-z3dKLesUqiDVZmbhCOS1kpQzowsQ9ShJi-0,7947
|
|
59
|
-
arelle/RenderingEvaluator.py,sha256=5lStAbezMivz760vCL6Wlp7sYXNiq3tSISt__fQmILk,16693
|
|
60
|
-
arelle/RenderingResolver.py,sha256=-NOe3HL40zlqgG0X0KKPGdMgr74rQ22kyO4PxN71yQE,43733
|
|
61
|
-
arelle/RuntimeOptions.py,sha256=WLN-tEyGw2LO4ISfpJ12KI019HTpXE6LbnFMWLq7YTs,7816
|
|
62
|
-
arelle/SocketUtils.py,sha256=iczwwIm4Xv8EkJ_DJ0s0wG0iQVVVNpN4lhV5qkBUrMI,625
|
|
63
|
-
arelle/SystemInfo.py,sha256=BRtxFtasTnlD5MheDS3rGYU8MD-qhgpA520-vE0c9ak,2480
|
|
64
|
-
arelle/TableStructure.py,sha256=PABOHJiTa56cHyF9qRLD7TohmCHyDTrGEltW8toP_rk,29409
|
|
65
|
-
arelle/TkTableWrapper.py,sha256=OTS1ciK3tIgh7EqtlUlT4aRLL9z655-Im2x3-L_J5Os,32276
|
|
66
|
-
arelle/UITkTable.py,sha256=92HYCxTrJokVQrlf97Wk0XYIEQQFkzw5ZBnbNFTL1uY,39250
|
|
67
|
-
arelle/UiUtil.py,sha256=3G0xPclZI8xW_XQDbiFrmylB7Nd5muqi5n2x2oMkMZU,34218
|
|
68
|
-
arelle/Updater.py,sha256=ho8Z_9GOL39H1jHL3Gaw5uc6av7J8ZBB6dR_X-nF_e0,7124
|
|
69
|
-
arelle/UrlUtil.py,sha256=w9cjLSaRE1r2I-gDeaVg27hmX51E34lwOAB7X6GtpbE,32281
|
|
70
|
-
arelle/Validate.py,sha256=4tSS3qVJL7KgToPX_-jKNZxsEUgfKGovgaG-1p6wF3w,50352
|
|
71
|
-
arelle/ValidateFilingText.py,sha256=cONypC0xSb5h5oHXJV5D6VvZwpzJJ82KJbbctRrhzMQ,52620
|
|
72
|
-
arelle/ValidateInfoset.py,sha256=3IruV1k_g0V4ABrumLsEesg-WDiIvD4jmm6oo6W9jxE,15784
|
|
73
|
-
arelle/ValidateUtr.py,sha256=LVV7p2p_E_TzG_QfUGb_BQJ4MGbQW1e2P153KjSqikM,12682
|
|
74
|
-
arelle/ValidateVersReport.py,sha256=RMe7GlcyZV0HoVFHL0qOGrKm4et-6yPq5dmikkhnvoU,43196
|
|
75
|
-
arelle/ValidateXbrl.py,sha256=7-8SodS3yA6FjrfJBw2FwaRSYHJWItnWrxjFfIijmzA,76348
|
|
76
|
-
arelle/ValidateXbrlCalcs.py,sha256=E0N34N9D2NoKemlWx8n_RcwIuj1KNwS_5yHZk7vjZss,44082
|
|
77
|
-
arelle/ValidateXbrlDTS.py,sha256=Zc0MoUF7t7tcV3XFann6UnMbLP7RkDKvAx8hbDKSfDo,100186
|
|
78
|
-
arelle/ValidateXbrlDimensions.py,sha256=Qv7_CI65SiUcpgsnEc86XuMjKz81-170wE5dmZqnvHc,38373
|
|
79
|
-
arelle/Version.py,sha256=hMwbt7ZmulkmiUbwYdTsR0PhLBq-UOIIMC3zVmNT1XE,1051
|
|
80
|
-
arelle/ViewFile.py,sha256=desbHRGIh2ab3ofO9Ka2UP0xj1xbE4SDWhTcEWRI8dM,19168
|
|
81
|
-
arelle/ViewFileConcepts.py,sha256=ecIGNPhFelkpHSPzbV19w7ts8RZZsD657oYLQHtAzhk,4370
|
|
82
|
-
arelle/ViewFileDTS.py,sha256=AyeKj8OhvHPI6yQkqRgs28jHnWhUO5mXhrVELRKlHw8,1783
|
|
83
|
-
arelle/ViewFileFactList.py,sha256=vZrhfg1-XVX6d6z4HmdJZf0hnA1wFcZo2msNvdFyRAk,7202
|
|
84
|
-
arelle/ViewFileFactTable.py,sha256=xqZ1mS8Orwsv4Wp3_uozf8Iv38pl2UntOPXIEsx2yfk,17016
|
|
85
|
-
arelle/ViewFileFormulae.py,sha256=753p3pAZsoxx6-3b_xR_CDFReeMBgBZOCV_TIO0FuJE,4740
|
|
86
|
-
arelle/ViewFileRelationshipSet.py,sha256=hAns7HDZlCb0_uKhy02wdAodUBuhFx8TY955NVRac64,16227
|
|
87
|
-
arelle/ViewFileRenderedGrid.py,sha256=IhmdUDXeZck9MUUcf-1cDMk8jaEN40vxowyedZuTudk,58155
|
|
88
|
-
arelle/ViewFileRoleTypes.py,sha256=4rk7D0sd5TP6o_WNm2wkBxB2OeltUrk6InfJHPLwLDQ,2024
|
|
89
|
-
arelle/ViewFileRssFeed.py,sha256=7ATWTC42QrCPTZxTK8-MH0-mDOGg0GUms7AWdzJfPKc,2726
|
|
90
|
-
arelle/ViewFileTests.py,sha256=l5phDVBWYNd7xECgJOy9Tsjpjo0mzwP6AlmGbq8ufOU,7798
|
|
91
|
-
arelle/ViewUtil.py,sha256=A8SEWiQB9tyCPTMaxrQNMF8AI7Y2CxP5I9RuYeVkytU,2279
|
|
92
|
-
arelle/ViewUtilFormulae.py,sha256=AQ9sQ3e1giqI54YgNNiR7RAxeoXPvunUraqEoAitYak,1837
|
|
93
|
-
arelle/ViewWinConcepts.py,sha256=FVKJ607_aZrwjPMUdVEfPlA6s7oGqg3Vtf_MxlEEZts,6812
|
|
94
|
-
arelle/ViewWinDTS.py,sha256=iNQbEOqfFzwLKSuCdJ_Xi5hyU8uUAzSV3tOx7pCYnus,1726
|
|
95
|
-
arelle/ViewWinDiffs.py,sha256=Q8Yd-L3zKhgOab4UK01CPHyXyMd3G37DIaDQ00DAolA,4856
|
|
96
|
-
arelle/ViewWinFactGrid.py,sha256=tQk9MQ9aiTzJ2SsX8Y16V7qccf-Jl1FcBPEP4_Cxc0E,14349
|
|
97
|
-
arelle/ViewWinFactList.py,sha256=wB_iIEl2O55cywatlRu51qvyEP111xMdGkV_JrdyWls,8866
|
|
98
|
-
arelle/ViewWinFactTable.py,sha256=FbSa-TRf4fftmMtvdZtDrG8_jyWWWfcjMEnjVMe5rHY,15191
|
|
99
|
-
arelle/ViewWinFormulae.py,sha256=TAtBWTKQoupkuRKx0Y-IJM91I84lYfyNPz3BuG7eRio,6567
|
|
100
|
-
arelle/ViewWinGrid.py,sha256=v9Fog-NC5XGdiZchgNQa-bM7BPrBS4Hs8MUlF0PYLi0,2731
|
|
101
|
-
arelle/ViewWinList.py,sha256=dz7qip9DpvVi96j71MZQoQpaVguO4FRka-_TOnsJtaE,4318
|
|
102
|
-
arelle/ViewWinPane.py,sha256=ZTz1fL3-QXZLAIMjqAjGoe9IEMVG7s9AzFYamV2PTco,2783
|
|
103
|
-
arelle/ViewWinProperties.py,sha256=FutWixP6g-_riNsnCxef6dej_kNqH_E2F3anse60aV4,2403
|
|
104
|
-
arelle/ViewWinRelationshipSet.py,sha256=FdQCsbo_s9KYgEg7Gg3zW_a-cu5M5iGU9jB-2WO4zQ0,25170
|
|
105
|
-
arelle/ViewWinRenderedGrid.py,sha256=QPwyAqSvjBLMRR2eUSLzVsJ7_RZz-dJGSRHOSa86Q6s,78864
|
|
106
|
-
arelle/ViewWinRoleTypes.py,sha256=hc1pM5Q_LYOxDxMJTvG1O4_pQ0Uni9kpZ6hPuxKNs9w,4794
|
|
107
|
-
arelle/ViewWinRssFeed.py,sha256=ZNVPQhPYh-8pvH2ftPD03QTueb6d6CG9jqQMVoyzrss,5878
|
|
108
|
-
arelle/ViewWinTests.py,sha256=1RNerlovLzyvemNPFjraEVmpVWcWiw_DQ5LxVZm0R4M,9414
|
|
109
|
-
arelle/ViewWinTkTable.py,sha256=wtqy-ismBlGlcdfq9RoGbqU9dbwWgdTlO0tKYZRF0sw,1149
|
|
110
|
-
arelle/ViewWinTree.py,sha256=4DxuqXqp7XvP7Qog2NhTU7OHcQMaQ-AsW-4NwyyDeeQ,19434
|
|
111
|
-
arelle/ViewWinTupleGrid.py,sha256=Li21jmMSZP3xIkpg8eY8Sq7KTIuAgM57wHu7i7Nu3P0,8921
|
|
112
|
-
arelle/ViewWinVersReport.py,sha256=aYfsOgynVZpMzl6f2EzQCBLzdihYGycwb5SiTghkgMQ,9344
|
|
113
|
-
arelle/ViewWinXml.py,sha256=fhE1N_9NjRlGjtqP3G6Q3weMiOUEWKdyi9ioygyrbEQ,1249
|
|
114
|
-
arelle/WatchRss.py,sha256=5Ih4igH2MM4hpOuAXy9eO0QAyZ7jZR3S5bPzo2sdFpw,14097
|
|
115
|
-
arelle/WebCache.py,sha256=7GW6_jvI5fmBp6Z_n86SS7vpbHgU-p2AQwF_XYvoeJA,36665
|
|
116
|
-
arelle/XbrlConst.py,sha256=MfMjOgxf6rUfO5IjjFoBmCGWBmnG2L1mao_K_ffbMKg,62362
|
|
117
|
-
arelle/XbrlUtil.py,sha256=67UE2CskWjnVt0G6tsDs5iHIIANBC71-rhLuUiP9-k8,9185
|
|
118
|
-
arelle/XhtmlValidate.py,sha256=FWl-TaSa4Q59cMkDtrQitXuWVlcwpYluNhZfjs9-o-0,6462
|
|
119
|
-
arelle/XmlUtil.py,sha256=g8mMg2EsI0lvd3WStVmYfLv12PSWxw_Cti06CwB2KZI,58582
|
|
120
|
-
arelle/XmlValidate.py,sha256=fEy8UuCBUylUgBNhe_jFGmKA-mYRQf9Zq1-YWJoOU-w,44822
|
|
121
|
-
arelle/XmlValidateConst.py,sha256=U_wN0Q-nWKwf6dKJtcu_83FXPn9c6P8JjzGA5b0w7P0,338
|
|
122
|
-
arelle/XmlValidateParticles.py,sha256=av03DwNob6aKY-H0L7vFDpcnkA85n-0hORS4FsOw5do,9015
|
|
123
|
-
arelle/XmlValidateSchema.py,sha256=6frtZOc1Yrx_5yYF6V6oHbScnglWrVbWr6xW4EHtLQI,7428
|
|
124
|
-
arelle/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
125
|
-
arelle/_version.py,sha256=kvkpISQ4TVQadu9x3Fwrc8cdcNOtuRU2DwHExcL8ZZI,162
|
|
126
|
-
arelle/typing.py,sha256=2r5OdaCluuBD_EU4VzLdvlBS7TdgryDnwDkk1xDar-E,1094
|
|
127
|
-
arelle/config/creationSoftwareNames.json,sha256=EVPX9_cWV8YX8egUuElo94pyoi7qeWlNM4cr_nNP7zg,2584
|
|
128
|
-
arelle/config/disclosuresystems.xml,sha256=p67nRNzalfRSLNnWhyT3vLAjNKJm8pF93a9Qv26iYlc,16619
|
|
129
|
-
arelle/config/disclosuresystems.xsd,sha256=6Z3gOEkdQJ46vlqU3G4AWFolSpnkZ-5IKcSQe4arLzE,4148
|
|
130
|
-
arelle/config/edbody.dtd,sha256=ZGfnEvKbROUpV-aCWeAV3VBuY0QquDIiNzOU-ehgsGk,15557
|
|
131
|
-
arelle/config/empty-instance.xml,sha256=1wRlhlSErE_ro3noF30-WTM0WVOpyKUI9L9POrbt368,390
|
|
132
|
-
arelle/config/erxl.xsd,sha256=27GMbkisl6dA6ZOXZiOtBEwBQPb1fBUc4KOYNVsRo0o,2167
|
|
133
|
-
arelle/config/mappings.xml,sha256=gqqwWEe-rWbG9XdesUH3oi-xpruxX4lWN73juNxAy84,3227
|
|
134
|
-
arelle/config/mappings.xsd,sha256=Z5PTg2akjzNVfO2ys4MPZVUtjTAiFb2M8MMpCinKTk0,1077
|
|
135
|
-
arelle/config/xbrlschemafiles.xml,sha256=c8wNhe8Gwex45WnsCBj3eSLtr_xBlwAdcE6Gi7jHN3I,3283
|
|
136
|
-
arelle/config/xhtml-lat1.ent,sha256=PaHarQj5O4r_ejLVRH-UhT1RdWHZx9DHvD7lwALRKjg,11775
|
|
137
|
-
arelle/config/xhtml-special.ent,sha256=f5UYAmxZzO5HoC7XTkP4lG2SIH1Din9UCg88KPBfon4,4131
|
|
138
|
-
arelle/config/xhtml-symbol.ent,sha256=ps0PnFnkiLjI4t6AwxxoEfMWo5Gc2aByW1OQqPx4XWE,13848
|
|
139
|
-
arelle/config/xhtml1-strict-ix.dtd,sha256=aFKr6XExPXXqT7aTjcVClLVZEQy4V6kPcOPR6L83djc,26880
|
|
140
|
-
arelle/config/xhtml1_1-strict-ix.dtd,sha256=qcZAFkndssIBRDlu3DzoKODBi6WzPb82XAev40czZlQ,27449
|
|
141
|
-
arelle/doc/messagesCatalog.xml,sha256=7j66ZzmbPh_W6-t3aAvWYq5oUk6Xj2BtCyBL4o_qssM,335579
|
|
142
|
-
arelle/doc/messagesCatalog.xsd,sha256=bBILAsbw7x7ulIeycgLMFMrCpCXkyjA3Ny1qxuMAIls,1151
|
|
143
|
-
arelle/examples/.pydevproject,sha256=4E90kmDHBfhUwcml5ifdlyLoAIwuCyhir4GGXSGqlB4,302
|
|
144
|
-
arelle/examples/CustomLogger.py,sha256=v_JXOCQLDZcfaFWzxC9FRcEf9tQi4rCI4Sx7jCuAVQI,1231
|
|
145
|
-
arelle/examples/LoadEFMvalidate.py,sha256=HR1ZJmOvWGUlWEsWd0tGCa2TTtZSNzeL6tgN1TFfrl0,986
|
|
146
|
-
arelle/examples/LoadSavePreLbCsv.py,sha256=mekr1R6OE5d3xdUCZIVfSeolyet0HO8R6wsHnW4eyaA,767
|
|
147
|
-
arelle/examples/LoadValidate.cs,sha256=C5nIDlGcgGKMmMJQ8MQ1Mxy1bEVVHlsL3mhN84Qp5XI,850
|
|
148
|
-
arelle/examples/LoadValidate.py,sha256=WC8WneJY2bKbN1ALHdW7uQQ9_hnZH1Wqv7OPd8hJG2I,1235
|
|
149
|
-
arelle/examples/LoadValidateCmdLine.java,sha256=UwuqFsD59z0QMlBL5MQiGnNWY0gRIs6ZEcqWXdxLG8s,2027
|
|
150
|
-
arelle/examples/LoadValidatePostedZip.java,sha256=H4-uyJ24nrqwP4iYXzvoLBsG7_QYtbPExJhmEHGLSPU,1667
|
|
151
|
-
arelle/examples/LoadValidateWebService.java,sha256=KOaN5BGxdwELNJ4vhtAoXO3K1x7rR6cbSFC8IfGhevY,971
|
|
152
|
-
arelle/examples/SaveTableToExelle.py,sha256=fgaBQnY0yZj5-vzr00wpj1tglYKsB0xwwSB1Zhry6Zg,6590
|
|
153
|
-
arelle/examples/TR3toTR4.py,sha256=piSKeRoO_AJ7RTfAmiELd9gytycSLGt7FVCeutl9VQY,3683
|
|
154
|
-
arelle/examples/us-gaap-dei-docType-extraction-frm.xml,sha256=qvfWTxQF5d2WCmD4uGWkBT5t8ZilGt2tk8NIllNT-nQ,4887
|
|
155
|
-
arelle/examples/us-gaap-dei-ratio-cash-frm.xml,sha256=yqLvimVpRclSFK0JkZD36znQZt9jYebwGxQ3HgrtMwE,8375
|
|
156
|
-
arelle/examples/plugin/bigInstance.py,sha256=IFJkswAHZYDxKjc0nvx6OlDePYOmKVWZ3qRFJxJQuEQ,15905
|
|
157
|
-
arelle/examples/plugin/cmdWebServerExtension.py,sha256=WOR5VXpyOjf_wBwEqN0scU4rzcH71Ad8qIUY-wy8qvI,1411
|
|
158
|
-
arelle/examples/plugin/crashTest.py,sha256=HWq29cgnAOFg7B2KTFsRjdZ38MDOi2hRSOubLH5Gxio,1224
|
|
159
|
-
arelle/examples/plugin/formulaSuiteConverter.py,sha256=VA6w882XNZetayWGvUUeT6zzlmxjC0jtFcxEd1JGbvo,10089
|
|
160
|
-
arelle/examples/plugin/functionsCustom.py,sha256=-IroFcZJ9NLqe9qH1S-v25GXzTSUZQU0iNQPReWMnuY,2546
|
|
161
|
-
arelle/examples/plugin/hello_dolly.py,sha256=6mj85TlEt_C2y0vlfZ0_c3VeAcyog_lUz5dYLS9khe0,2458
|
|
162
|
-
arelle/examples/plugin/hello_i18n.pot,sha256=pRLe5Ge-bU81jVoTzzalMEWpD9GjGJ81hb70jejdcvU,665
|
|
163
|
-
arelle/examples/plugin/hello_i18n.py,sha256=lXKTogx6y48Ksm-pqkaWwsj6Ny_Setgp6UROXJ6VNMc,1018
|
|
164
|
-
arelle/examples/plugin/importTestChild1.py,sha256=SWouJCuEY5c5t9GHT69KdgMltjcVZc_bWA8rzNCXLVU,532
|
|
165
|
-
arelle/examples/plugin/importTestChild2.py,sha256=63h43Ppo8OjD22xbNbziRLyMfQuDTCWmr-PPOzYZevM,601
|
|
166
|
-
arelle/examples/plugin/importTestGrandchild1.py,sha256=C0Ps6QwNZyZ1ixBAq-yWFaAM0IGAnrN51AxmZVhzod4,564
|
|
167
|
-
arelle/examples/plugin/importTestGrandchild2.py,sha256=SJOcH9nj3af7B4JvYTJCJEnblOvawygZ0mxaUomxG3g,553
|
|
168
|
-
arelle/examples/plugin/importTestImported1.py,sha256=a3zUgQBvK5pD_-45Cu4LuQuM9ciOfdF4d5Sf3D4BMtI,660
|
|
169
|
-
arelle/examples/plugin/importTestImported11.py,sha256=f1sJIWT-7SPPjyVe24txadBhJ-QvTqNiAKMVu1OAjG4,640
|
|
170
|
-
arelle/examples/plugin/importTestParent.py,sha256=iqQNl_6FfxN8Cg6Jv6wolHDgvpRr_m3J_WDy7iRqW1o,1898
|
|
171
|
-
arelle/examples/plugin/sakaCalendar.py,sha256=xlTgl1jb9MMrwNBVMPE0tbye1A9INJrQHhBb1Io1yKc,9278
|
|
172
|
-
arelle/examples/plugin/saveInstanceInfoset.py,sha256=NU6Yiez1ZCo0jfxLNV_l6KXBAwXiIzcYoBhd1Msh9_s,5902
|
|
173
|
-
arelle/examples/plugin/streamingExtensions.py,sha256=8Z7KqOsYIZIrzvC5bE7NM8ZIQjvloP31oLHPo_cgf9k,16472
|
|
174
|
-
arelle/examples/plugin/testcaseCalc11ValidateSetup.py,sha256=aAGzNMMJO01UjOplYUKrc6BL3HMHaHygliBIQDOPY1Q,1320
|
|
175
|
-
arelle/examples/plugin/testcaseIxExpectedHtmlFixup.py,sha256=tT3c5rqMph0-d64oSblpBrQCw2loJAED-wBa0syhAb0,2116
|
|
176
|
-
arelle/examples/plugin/updateTableLB.py,sha256=C5n_iFNyoYSGjJTrvkux5qNkUGyLqSznnYveInAMK3Q,13067
|
|
177
|
-
arelle/examples/plugin/validateSchemaLxml.py,sha256=UzjwX-lVxn9sxHrb4NONOtezjvxO4drQI1WXOwh32Ug,8079
|
|
178
|
-
arelle/examples/plugin/validateTableInfoset.py,sha256=wFZzmK3pas2zAGo6KNQaOkocSJg7OXLjLcd0QLh4kJs,2719
|
|
179
|
-
arelle/examples/plugin/locale/fr/LC_MESSAGES/hello_i18n.po,sha256=85XCd5eIjEMyOKORCczSlG2KmJwdf5VoCHRrX_Wdz6Y,690
|
|
180
|
-
arelle/examples/plugin/packagedImportTest/__init__.py,sha256=N0asl5fTLvDtB4KOXcBNXu6osvh4CUquGJu0b8tz-ew,1726
|
|
181
|
-
arelle/examples/plugin/packagedImportTest/importTestChild1.py,sha256=aIobvy30zQsCkjMd1rXKYAqZO1Q-HxRJWI4Vwfpdvt0,523
|
|
182
|
-
arelle/examples/plugin/packagedImportTest/importTestChild2.py,sha256=Ae5XeMfl0U1qR6Pet9xxs7nSWvTIzmWHhRdhYAAGqsY,592
|
|
183
|
-
arelle/examples/plugin/packagedImportTest/importTestGrandchild1.py,sha256=lrE50e-Y1EpCsEmqx8CRtR2R1MW54p7lYct9S9aywOM,540
|
|
184
|
-
arelle/examples/plugin/packagedImportTest/importTestGrandchild2.py,sha256=94DJm7-EBsh1ckXfriVxCifxNpoRUMACU8d_qfDn5h4,540
|
|
185
|
-
arelle/examples/plugin/packagedImportTest/importTestImported1.py,sha256=hj7sa7zHbIWl5pVkKeXDpMr5MCzIMxcLZh2Aw9-qWmk,673
|
|
186
|
-
arelle/examples/plugin/packagedImportTest/importTestImported11.py,sha256=rUDYpJ8WxwTejHV1941B-OmKGaCqfW946Q6nsLMwQK0,547
|
|
187
|
-
arelle/examples/plugin/packagedImportTest/subdir/importTestImported111.py,sha256=qWnN63FsazbASD1j1ieDcRvgBZRadQvca88tB6o7QTo,565
|
|
188
|
-
arelle/examples/plugin/packagedImportTest/subdir/subsubdir/importTestImported1111.py,sha256=GCzaIDW2V0dzMcZARKtNWU2Ee-QEsN4f-WkJAJL5a4Y,572
|
|
189
|
-
arelle/examples/plugin/validate/XYZ/DisclosureSystems.py,sha256=6HxGoe6ioXoRg_0-iDlzckfN3RgS6fJRWivElH1gLFI,72
|
|
190
|
-
arelle/examples/plugin/validate/XYZ/PluginValidationDataExtension.py,sha256=vrvpf1as77gFk8FV7KEsy-tEZJ4C_C8-_3Dlabxhg7w,274
|
|
191
|
-
arelle/examples/plugin/validate/XYZ/ValidationPluginExtension.py,sha256=jXSkuRi7Q8vBadDRsbH2SZ50XItmKMXwwcMAI8JdQD4,1638
|
|
192
|
-
arelle/examples/plugin/validate/XYZ/__init__.py,sha256=uReCvbrDPUlLRLJckOc1DdJsncNukxHRXZ3O5W0ay_A,2493
|
|
193
|
-
arelle/examples/plugin/validate/XYZ/resources/config.xml,sha256=lcNWbfGMupREzaWRiuW49sCKmPL5llOtGQ5QZ_avQ0o,682
|
|
194
|
-
arelle/examples/plugin/validate/XYZ/rules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
195
|
-
arelle/examples/plugin/validate/XYZ/rules/rules01.py,sha256=brsQwxI59VF7KKVRe5arboO2WvMsUHFr4lfkt6GmPII,3280
|
|
196
|
-
arelle/examples/plugin/validate/XYZ/rules/rules02.py,sha256=Dq3QsNMCu5D0hHCVJ3lHpCAl-wLUo0E0EJdsoxSTH9c,1821
|
|
197
|
-
arelle/formula/FactAspectsCache.py,sha256=Fb069cytcS7hlIvDcG57GJrTdQXs3VtBGqhOeH_d884,2509
|
|
198
|
-
arelle/formula/FormulaConsisAsser.py,sha256=hO4GZwozM5cGl1xTU6OwoF3LlaMxAEB5Oy0rJh7uyG0,7567
|
|
199
|
-
arelle/formula/FormulaEvaluator.py,sha256=WKNyJz1Os9gsKedJXLNC9y9u11Ea4_JQ-RAI7gSFmPU,82600
|
|
200
|
-
arelle/formula/ValidateFormula.py,sha256=7-Hxe_VQqLu7QOyYTNHdTkWHCuYUKOLeWo6TE2OtUxw,98324
|
|
201
|
-
arelle/formula/XPathContext.py,sha256=Zr3ggiSSkPIxR5u67ZwXjpZhBiPShePpQ_YTXmU9HCY,48657
|
|
202
|
-
arelle/formula/XPathParser.py,sha256=jSxkHL0LWznMb3oNjzhlaqXYHQYUt9VqT1vL1NAn0C0,50383
|
|
203
|
-
arelle/formula/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
204
|
-
arelle/images/arelle-full-word.ico,sha256=jsAzyAJZTtVPafxhgFQtdWJj7r_r0YhX_iWvWnZ4QKg,2430
|
|
205
|
-
arelle/images/arelle-mac-icon-4.gif,sha256=jTXc1dBEgZuXuZVd1XOuLuXfpjNW_pusn0mPhHhkOtk,2619
|
|
206
|
-
arelle/images/arelle-rtd.png,sha256=5pbI8WOtWNVOpfsTXFW4xyzCZV7ubfwd5hFpyTBE8Zs,9915
|
|
207
|
-
arelle/images/arelle-word-only.ico,sha256=AaYqIzixpQaN5MsbgVdCrTccvUgSENt44VoLvIxkMiQ,1150
|
|
208
|
-
arelle/images/arelle.gif,sha256=HBnxLCCUMPJzVJtyzTsR06NSdlEmNTJSrwpHx693wbg,1458
|
|
209
|
-
arelle/images/arelle.icns,sha256=R1pLwcaf6Ucl5TTQY9gaurgObx27KW64T7jZLYU9izI,212911
|
|
210
|
-
arelle/images/arelle.icns.zip,sha256=2ad340N53EdCcLk9nDE31wFX29YC4H65QsqYJk_6TLw,392859
|
|
211
|
-
arelle/images/arelle.ico,sha256=3bwTcBmhcPyP6WQaSB3bgrcSK1ptCHlB7ptTuKDe1LQ,1406
|
|
212
|
-
arelle/images/arelle.xbm,sha256=xKFRPY2kM2qogzamsA8__KGq-7qfuBzvmDta3uEJEKA,282
|
|
213
|
-
arelle/images/arelle128.psd,sha256=UFmJcL3Gg2RdxdqV80jI6-OIYwZIXuHmC5SLB-EQ2UE,269858
|
|
214
|
-
arelle/images/arelle16.psd,sha256=sQif-8cnNVB7M4RA1C7-PnHJjHfu1OV6oBN4jCxiMT0,24028
|
|
215
|
-
arelle/images/arelle16x16and32x32.ico,sha256=k-at1gVauw58DDe0UX9FcS_bZSpRWwTxp53Gao1nE_k,3638
|
|
216
|
-
arelle/images/arelle32.gif,sha256=-5yday2UZas3Gn-VSPrhaEIGKaOKH2jThL4BPwPkQhU,1207
|
|
217
|
-
arelle/images/columnSortDown.gif,sha256=3K1Zh1MNt5lisYCHBQW07KqL4ewR8Joh6w04wZA9ZpE,60
|
|
218
|
-
arelle/images/columnSortUp.gif,sha256=L98YYxLHVtm_-Nt0mRt77Xi03t96ZO-2O8v7R4gaEOQ,60
|
|
219
|
-
arelle/images/dmg_background.png,sha256=lFqCqkxcu4azzjK24XEXwmwaiYohIwOfn9_mruiLq58,11799
|
|
220
|
-
arelle/images/favicon.ico,sha256=1MOpaHPdk-6O7c9Ou9Cl5AVpqM32C9N40bX4_kgOHe8,15406
|
|
221
|
-
arelle/images/octocat.png,sha256=RF_AjuWj9yOWEzEeduD-CUFQDRShYWheg56CcgruTgA,9613
|
|
222
|
-
arelle/images/python-clear.png,sha256=rzgSxw3MHIAEayNYoQm9c35Y_pfi7qd2iCTn0u2cZxg,23863
|
|
223
|
-
arelle/images/python-icon-pack-crystalxp.net-842.zip,sha256=EEAJvr0bkBsv1NqK2B_ZyWjaKjJQ0mGAAncvu_KB6M4,696358
|
|
224
|
-
arelle/images/toolbarClose.gif,sha256=xme66h1Aho7k4e9y73G7IpJYN2kaejiSRNwpgEIB2A0,1007
|
|
225
|
-
arelle/images/toolbarCompare.gif,sha256=nCcfwa5cjokO9UdmnG4BpiI6lRjZDC7ywfVuuP0HjMQ,977
|
|
226
|
-
arelle/images/toolbarDelete.gif,sha256=ORxH3XVm7W43_lY0IoBh8lR8i6LzRoNLV9tY4z9OQK0,195
|
|
227
|
-
arelle/images/toolbarFindMenu.gif,sha256=IwvDjBHfjCfsrsDUKY3dMQ6iMnI3piQ5OhJTtepRml4,951
|
|
228
|
-
arelle/images/toolbarLogClear - 1-piece-top.gif,sha256=dGmbqia0j9coYRgdyKivdJT1ZYMW09Jj-KfwwqdiPsU,1013
|
|
229
|
-
arelle/images/toolbarLogClear-orig.gif,sha256=xdamfoISNU_X53EKfHZysYKUnNkLBc5WBMaqyyEWd4g,920
|
|
230
|
-
arelle/images/toolbarLogClear.gif,sha256=tPa5uqbwXtgqfNLcPUJER2R23FjJeAE2c19vSUvFUTo,1012
|
|
231
|
-
arelle/images/toolbarNewFile.gif,sha256=Fr8XuQVkRBNw3Wu9VNbR2tXsrMTPz0FY_LEFRcqFPpU,587
|
|
232
|
-
arelle/images/toolbarOpenDatabase.gif,sha256=ie8suYLkA-csWyv2NLIvQNtsmh1yDgqzPePy5M6-jB4,146
|
|
233
|
-
arelle/images/toolbarOpenFile.gif,sha256=rjuyMP_T6K4XV3zEbu8lHaboeIcehQPiD89xM5YsUxc,1018
|
|
234
|
-
arelle/images/toolbarOpenWeb.gif,sha256=yLgzsL2lWzk_7OQacL6S4ABxA1WWeQAN47Hu17aPNPQ,1037
|
|
235
|
-
arelle/images/toolbarProperties.gif,sha256=qiHP6kJQtaEBqJtod2mj738wCG2pm9js_MCIBcX61jU,127
|
|
236
|
-
arelle/images/toolbarQuit.gif,sha256=Uk0kmYMDRtXNGldrYtXamIEfkNHV55fikOxDjfwvb8E,64
|
|
237
|
-
arelle/images/toolbarReopen.gif,sha256=KwfFqLLIi_AlbIN47PoIMDhm3gQ4z_M2EpMo0uk63MU,529
|
|
238
|
-
arelle/images/toolbarSaveFile.gif,sha256=K4BCqwAVhoF8aRauZPZiT63W1CiZUynkneSCPypmyl8,621
|
|
239
|
-
arelle/images/toolbarValidate.gif,sha256=L39C1XbiODOx5Jv-uzVsHe5HXw6DaoGF-CJEMYCxLKo,986
|
|
240
|
-
arelle/images/xbrl.gif,sha256=wb1K8SeKyYV63EUVYG0j7W6veY0moD8L8YrjAhnyRdI,927
|
|
241
|
-
arelle/images/xbrl.psd,sha256=S2OAOrDcDGWj4Q5Gycjg4TS5MFD3WrIkhnjIU8Xbr_0,201686
|
|
242
|
-
arelle/images/xbrl128-2.gif,sha256=njhkmIQyZY_vIhqsC_ZLtaVGW1ZRKUQVZWUVj19J_OQ,1598
|
|
243
|
-
arelle/images/xbrl128.gif,sha256=wb1K8SeKyYV63EUVYG0j7W6veY0moD8L8YrjAhnyRdI,927
|
|
244
|
-
arelle/images/xbrl16.ico,sha256=n4GcRLd-_sTpT0PML7rPSUd8lHCGNWYftrJ7WhhcMaQ,1150
|
|
245
|
-
arelle/images/xbrl32.ico,sha256=ubVPZKTkX7lsJhHz1vEKsIbWY7g0k1asxvwgT8Nbzxw,4286
|
|
246
|
-
arelle/locale/messages.mo,sha256=1fb0KAYAzYLGV0tuFvfzDHMj_fYtNYEpqS2rUkZSf3Y,398
|
|
247
|
-
arelle/locale/messages.pot,sha256=tO4mHem4QXX2YJHRScbetmx-nN1siSgz9UaVsNYyGRw,249762
|
|
248
|
-
arelle/locale/ar_EG/LC_MESSAGES/ar_EG.po,sha256=cffTCuTgVrckEA_Omyz6k2TmTqZhN4o3ykvXJO4qvAQ,341883
|
|
249
|
-
arelle/locale/ar_EG/LC_MESSAGES/arelle.mo,sha256=J_v2J5ED3FDhIpk4WxnWXo2THNTqfgAwd2NOa8erB8I,185904
|
|
250
|
-
arelle/locale/es/LC_MESSAGES/arelle.mo,sha256=iB8uYP_vhdqll3c8O08KBsaZ3hlf4YHwZFxc3-nC3k8,149331
|
|
251
|
-
arelle/locale/fr/LC_MESSAGES/arelle.mo,sha256=HsXvnKEsnhqJqH6H9SlGBy451fnQTaizbZCyCN_Qbwg,118897
|
|
252
|
-
arelle/locale/fr/LC_MESSAGES/fr.po,sha256=D2WHLI9NktcxgmGx91fRLNLoVjvO3Z0jjS9AJlroOCE,168077
|
|
253
|
-
arelle/locale/ru/LC_MESSAGES/arelle.mo,sha256=i004xdiJMpXus5DnSz2y708H5vPt78Pu5ApkrdC9Fqw,375378
|
|
254
|
-
arelle/locale/ru/LC_MESSAGES/ru.po,sha256=pPACN6dXlimkr2KJ5l-B0fv4PhlijWAz3fVYJ5h3SaM,449579
|
|
255
|
-
arelle/model/CommentBase.py,sha256=CXXPAdmVfcdit-Uz4RstK09RG_izZmfUWJzqMAIexjI,125
|
|
256
|
-
arelle/model/ElementBase.py,sha256=s6EAkHsB-uhZw07mtKKSt5gU8j-ItUm_VXErzthBG6c,352
|
|
257
|
-
arelle/model/PIBase.py,sha256=hPllMxOvFMWF2In2ptKuWLcfl95R4yOPGfUh206MCMs,205
|
|
258
|
-
arelle/model/__init__.py,sha256=sRrd6Xf3fy4MPeaY6gq3i7m_a2Cl_ThyYw--szKy6RU,543
|
|
259
|
-
arelle/plugin/CacheBuilder.py,sha256=-aDFD3rx83glOprQYO-8gsaIEXcdwB6PFfIq7jy20lo,4489
|
|
260
|
-
arelle/plugin/EdgarRendererAllReports.py,sha256=uj-Y0r3KHNmptTVosSpjT8CGOmUe2W4cSB0vApmMPjo,5092
|
|
261
|
-
arelle/plugin/SECCorrespondenceLoader.py,sha256=dX3k4uI5SOKR-8zpv1Xk4X34eDQMPaWFS8R2wf8WTNs,9561
|
|
262
|
-
arelle/plugin/TDnetLoader.py,sha256=iuvp5HsSbqJHoy3XBV2Zf1m2bow2ZR47obGw3QyH67Q,9208
|
|
263
|
-
arelle/plugin/UKCompaniesHouseLoader.py,sha256=XDqt5KM_uv2gZVn8d0Kw18wbzhZEkagKirnDz1fSBGg,4682
|
|
264
|
-
arelle/plugin/formulaLoader.py,sha256=xs1qd7-9PeJs4tClFQArmC7kE5Wa1AG72Hcz-d03oH8,101797
|
|
265
|
-
arelle/plugin/formulaSaver.py,sha256=-E9JD07bavdSGv-jfmcbIWscPcNKE0duStDPE_ypQ14,31396
|
|
266
|
-
arelle/plugin/formulaXPathChecker.py,sha256=sEEeLHx17XSj8eOgFdzYLBp9ZFk2UUYLOEKtaF_pq34,18795
|
|
267
|
-
arelle/plugin/functionsMath.py,sha256=Z8N7ok3w1aOusCQA9QvqYwQ8W1j80bb-_4lVclBnNQM,9037
|
|
268
|
-
arelle/plugin/functionsXmlCreation.py,sha256=OMyu4-nH7sW5H4AmqxZExFO6DAjqSeppWLr-wpkwUrk,4781
|
|
269
|
-
arelle/plugin/inlineXbrlDocumentSet.py,sha256=wnK4NV7-neI0qMbGiebpM4G74reTLHncoR0r5B6ewFk,47835
|
|
270
|
-
arelle/plugin/instanceInfo.py,sha256=IepzBZx7sg2oQu7o0qRmH2dm3c7g38bC-TMliYesUT0,16777
|
|
271
|
-
arelle/plugin/loadFromExcel.py,sha256=Sjzi8dHvQZAAyJnOeRvNhFWo15rEdF95B2hTkWML5i8,124382
|
|
272
|
-
arelle/plugin/loadFromOIM-2018.py,sha256=MwbZdHyC72DOIqjptiDeOCAMbUmvePvsOYW5XakLaOk,76473
|
|
273
|
-
arelle/plugin/loadFromOIM.py,sha256=Toe6BGpKvyhzT1JcQmxtZWbPkuJ6qSgO6MOfoZTqOJY,198246
|
|
274
|
-
arelle/plugin/objectmaker.py,sha256=79Zo8ZIZ-oksZgGyhADYUI9jrmh9RWVrRNof-IBiuO8,13883
|
|
275
|
-
arelle/plugin/profileCmdLine.py,sha256=uLL0fGshpiwtzyLKAtW0WuXAvcRtZgxQG6swM0e4BHA,2370
|
|
276
|
-
arelle/plugin/profileFormula.py,sha256=PK273bQpYO-87QMFpBVQmnqGKfjDElIXPhAwc8Nyp04,5548
|
|
277
|
-
arelle/plugin/saveCHComponentFile.py,sha256=phW-n96P0BWONLqX3wBcuNcDa_IQ8QVfFWKL9NRrh7k,7242
|
|
278
|
-
arelle/plugin/saveDTS.py,sha256=D8hfFiM9Gc9LE7ZV0-pDvOHeU7Y5ebOzZx_nXzoZrl8,3216
|
|
279
|
-
arelle/plugin/saveHtmlEBAtables.py,sha256=sLSSwbfwmq9wNLmBl6WBRABvKex5-1azEW24NRwmED0,11987
|
|
280
|
-
arelle/plugin/saveLoadableExcel.py,sha256=ZPYB6injFabav0dRzgS7adCFzfHkwtftjl3PfBjijuU,20539
|
|
281
|
-
arelle/plugin/saveLoadableOIM.py,sha256=RWDRDKH6tOTpCtPaypRTwaQsrnccRMejKlEhIA5wnzU,32261
|
|
282
|
-
arelle/plugin/saveSKOS.py,sha256=7Z1Qedf83zMo9EbigKkxNpiMjzkTYQvLEnwWMObLc1Y,12465
|
|
283
|
-
arelle/plugin/saveSampleInstance.py,sha256=w66Nd4He8yIK4Il_M9qnelpeUJ_6cBBe5q01DanOxEA,23823
|
|
284
|
-
arelle/plugin/streamingExtensions.py,sha256=gDt3TfkHcDHqnP8jnBWmC3j5i0u53lgUOSKxHJU8HnI,47646
|
|
285
|
-
arelle/plugin/unpackSecEisFile.py,sha256=TVdYUKhgAZ0145anRi6kBesOxPJEvC5YROO1j-hcuwU,2631
|
|
286
|
-
arelle/plugin/validateSBRnl.py,sha256=fQA3NueV7CNvnX1mFvTySbaFGD5gnNfHCvt1uFa-EvI,35332
|
|
287
|
-
arelle/plugin/xuleSaver.py,sha256=3eNZAxziFos0YrC5NWezFPsIxN7Ex8jb-CaOVTd8Gw4,30073
|
|
288
|
-
arelle/plugin/internet/proxyNTLM/HTTPNtlmAuthHandler.py,sha256=TuPtHRzfi6rKqHYHjVSI9DZZWt1C5IWjsLxHxtRMQSE,6683
|
|
289
|
-
arelle/plugin/internet/proxyNTLM/U32.py,sha256=ZxylUZkjUsY9JYD3cRoxOQE272lHd5AnIxQ5OOjSjdo,2920
|
|
290
|
-
arelle/plugin/internet/proxyNTLM/__init__.py,sha256=qaSHM1-RiitF-wbzbcFC83oWRhWt8b4KT9JmVZzTVts,1404
|
|
291
|
-
arelle/plugin/internet/proxyNTLM/des.py,sha256=PwroRH2KY_JYkM2W9sXBLcYxwPFj1DM121afYzLehZw,3177
|
|
292
|
-
arelle/plugin/internet/proxyNTLM/des_c.py,sha256=aOUXGPAFKAZuZaSlC_P0lMoUASB3mkqBVlhkSLAWiOg,9312
|
|
293
|
-
arelle/plugin/internet/proxyNTLM/des_data.py,sha256=WQcgMwwBQoT5U2TTTVV4JeOPe420yCgJFfC6dV0Vz2E,18676
|
|
294
|
-
arelle/plugin/internet/proxyNTLM/lgpl-3.0-standalone.html,sha256=_Mg2XLG4-VlhZSPZVYe8CjveJWcQ5R4HHFMg4JdgmD8,8640
|
|
295
|
-
arelle/plugin/internet/proxyNTLM/ntlm.py,sha256=cBQBPu7ljnhp8yyz_hl78HdvbjAAl_T991NQ5OW4v0M,22226
|
|
296
|
-
arelle/plugin/logging/dpmSignature.py,sha256=-mwceLsdMgXYcVvaQsITn8bshtZzNP4k2ERX5tpPiU0,2036
|
|
297
|
-
arelle/plugin/logging/dqcParameters.py,sha256=KSn3r7gGp02d7uRM_3GivTYZrRFEMtGDiVqWILY5McI,11292
|
|
298
|
-
arelle/plugin/logging/saveMessages.py,sha256=0A_JAod5ZUxkFZ8jrAGoiYMqhMHzskzNuDcN8xGUk_k,8245
|
|
299
|
-
arelle/plugin/security/cryptAES_CBC.py,sha256=S94AdMqu4jdLrprl0FLT2w7tG6IgxTGxRfRuYR9x43w,6078
|
|
300
|
-
arelle/plugin/security/cryptAES_EAX.py,sha256=TAL_kpu_2WMMpHOWrxA8Y7UuTAcbbTY6DK0VYQZGWF0,5952
|
|
301
|
-
arelle/plugin/sphinx/FormulaGenerator.py,sha256=ZodCD8aeRO-JtgT-3UmZudxgvqrNJanrpRmFgrWaLnM,38126
|
|
302
|
-
arelle/plugin/sphinx/SphinxContext.py,sha256=lQFo4ViAF4pvCOBXTseQ5HVfXVGUuDd2iBTodHkL1Ek,19516
|
|
303
|
-
arelle/plugin/sphinx/SphinxEvaluator.py,sha256=-LLiaOTjGp1sunRcZCTNqSU6eUrcdirjbQhpsbWRKFw,35742
|
|
304
|
-
arelle/plugin/sphinx/SphinxMethods.py,sha256=HeFlEZ28vpD_6IUt8Y39YrjGBTkOAC8NBHZ0sDhTHtk,49810
|
|
305
|
-
arelle/plugin/sphinx/SphinxParser.py,sha256=FM_MkCsYZO87KhdELq1zlyscwuLZwUTK_lVOBrRwSbU,48752
|
|
306
|
-
arelle/plugin/sphinx/SphinxValidator.py,sha256=-wg8QHKOHzs4DjQRSDRcAuKRGxWtsYStlrvIgi0Ud-w,8510
|
|
307
|
-
arelle/plugin/sphinx/US-GAAP Ratios Example.xsr,sha256=Xg8vvPGBVUzcegfzvfSolKy2b54WOc8oNs8uhcMtD74,1415
|
|
308
|
-
arelle/plugin/sphinx/__init__.py,sha256=1iBd3heR-tL2YhVltFkNZGSzdsoZ126TbkzzSZEAI3s,14425
|
|
309
|
-
arelle/plugin/transforms/tester.py,sha256=e8B0mvxaqcs00bjf8Z9tipel5sE5lo0if8NTeqsG4nw,12500
|
|
310
|
-
arelle/plugin/transforms/SEC/__init__.py,sha256=IpZYb5Rf_ZWrN9PUFHxORfQs5OXzl_YRQ-BTIIre-_E,41912
|
|
311
|
-
arelle/plugin/transforms/SEC/text2num.py,sha256=bJsmNUMgovs0_jgM3HH_f40cxxKBHmsQxmHlEvA4NAk,3660
|
|
312
|
-
arelle/plugin/transforms/SEC/conf/README.md,sha256=nwjpcnLISTjR7k3YYu3-RLz9JJvReTV1e_ys8I2ABTU,1667
|
|
313
|
-
arelle/plugin/transforms/SEC/conf/extractTestcase.sh,sha256=K3h8E7NWgwKrATxkLLzMiP0iPrJH9PV0Tdgt7omiru8,79
|
|
314
|
-
arelle/plugin/transforms/SEC/conf/extractTestcase.xsl,sha256=KsCp7D1OgbmXy63BYFylcJdMtfuf6rXRO1uzWNgO0cA,3825
|
|
315
|
-
arelle/plugin/transforms/SEC/conf/runIxtSecTests.sh,sha256=KYUCrZr7XmyMCJw_cdt3bylTGXuBPY0pc3H7JIMsLk8,533
|
|
316
|
-
arelle/plugin/transforms/SEC/conf/saxon9.jar,sha256=_W68CU4yDmeTd7uFkUswJlEPI6KxK0I0MaQiQ7dg4U4,4737705
|
|
317
|
-
arelle/plugin/transforms/SEC/conf/testcase.xml,sha256=iMELTlnowys9XuzNBYCp6xCnoWp5zC3QAV_Kv2SQuuk,226729
|
|
318
|
-
arelle/plugin/transforms/SEC/conf/tests.xml,sha256=9sXab87mFY03MMxP4i0vxuT723lsEJtyrvRAiH8aNmo,59940
|
|
319
|
-
arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-boolballotbox.xml,sha256=BXhqdN1AJf0kiHc0b90W5tlcKgg6xnOADaK8qbgBk6I,2425
|
|
320
|
-
arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-countrynameen.xml,sha256=LadvXuVn0O6J-N_DVoO5AGW1O1xCVhrGrUJLHR2xkXo,2602
|
|
321
|
-
arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-datequarterend.xml,sha256=b2Lj17Z3KywXf1X6tkShLNcfxkpDIpdxVzXKBS2XhVk,2452
|
|
322
|
-
arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-durday.xml,sha256=ssF8WLgCgkPVgV8YLb_fBMMXDTZ3KW5wWZhPd_YjOUo,1850
|
|
323
|
-
arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-durhour.xml,sha256=sCywo-zxpvMq8jCxVbWW3w2QD22RJvD7M0OF2fktMFo,2146
|
|
324
|
-
arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-durmonth.xml,sha256=sUtM0JYwGRXXqffwhcd686tJ2a8uY_uSYI7yjY6I5sE,2203
|
|
325
|
-
arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-durweek.xml,sha256=xEwWPp_ry7VocuOh-onYOkcW7groZI8DN2jFrtMxTd8,2143
|
|
326
|
-
arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-durwordsen.xml,sha256=sNgZPrfDjI1y6jALyXDKkKBXvaefvWI1mopaKCtzvqA,2411
|
|
327
|
-
arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-duryear.xml,sha256=75UFehZlP41qOGbBDLdk2JWxwzV7PFSgas-C6rtcceA,1906
|
|
328
|
-
arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-edgarprovcountryen.xml,sha256=TvdlWJ5j8Hnk3fE4ShSV5GHeVY9XjnRhwMvdhAJvjWY,2924
|
|
329
|
-
arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-entityfilercategoryen.xml,sha256=KT-uk9rxlbfjBgCATrJFmDyy-S5H-Ypb7pgFBWtt2-w,2470
|
|
330
|
-
arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-exchnameen.xml,sha256=sfdLKmMsaTTMedzWBMVo8j6zNjwsdzWguikaAYOMG9o,3339
|
|
331
|
-
arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-numwordsen.xml,sha256=r8NPzXx1xe2I33uhG-oCxIVquCjX9nbkIjFc13lOTSE,2445
|
|
332
|
-
arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-stateprovnameen.xml,sha256=lTzB2CNJwR--8fF6AKaFjm9bJ957pNuvfzHzMlaj3ug,2480
|
|
333
|
-
arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-yesnoballotbox.xml,sha256=qHI-CvmG3gZbhKUnupzKD3755MoJgJJ20k2_DVtBRI0,2481
|
|
334
|
-
arelle/plugin/transforms/SEC/transformationRegistry/registry/transform-registry.xml,sha256=WDgzC6a1UfOBrz5DyUr6cLfDS_1-nBYvPKwtBEd1qRI,8446
|
|
335
|
-
arelle/plugin/transforms/SEC/transformationRegistry/schema/inlinexbrl-sec-transformation.xsd,sha256=v_Oib5QgYAZOeq2peOkjtqKVanOKKpPtPCEBCiG_q20,55568
|
|
336
|
-
arelle/plugin/validate/USBestPractices.py,sha256=6aDbqZGzZpfJzSXTACaJ_ZlZrxiVh7CYFqKs2LM8z9s,37672
|
|
337
|
-
arelle/plugin/validate/USCorpAction.py,sha256=yrhOl6-oyxFlF53fwk5Eq3eWtkZy54U90DuXMAt_Ux4,31361
|
|
338
|
-
arelle/plugin/validate/USSecTagging.py,sha256=zESPIjABaiuX57cwhjp9XqG_pCvvP_hgesbzTRpHoMs,18558
|
|
339
|
-
arelle/plugin/validate/__init__.py,sha256=JOnB8OHq_2kxPJHC17ujIDLSRxFniA8eYnKhkdNa-2k,609
|
|
340
|
-
arelle/plugin/validate/calc2.py,sha256=Ar2Vb6mrIjeAEyIcTWsvFVT2iXMkfFYaON0--213dkk,31467
|
|
341
|
-
arelle/plugin/validate/CIPC/Const.py,sha256=c0cVhKKVUEGI76zXFSpXwVJR_maUqjDAGPBrLM_JOME,10711
|
|
342
|
-
arelle/plugin/validate/CIPC/__init__.py,sha256=lGI5U2JesI8fondj16FoQX_9BKm3iNuHqDJ81mfrdZg,13627
|
|
343
|
-
arelle/plugin/validate/CIPC/config.xml,sha256=4pyn40JAvQQeoRC8I046gZ4ZcmUnekX3TNfYpC5yonI,667
|
|
344
|
-
arelle/plugin/validate/EBA/__init__.py,sha256=POn0MeFQp3KDvbu1HGEV1Q88T8JpovAeHf6yFPtHtjA,45950
|
|
345
|
-
arelle/plugin/validate/EBA/config.xml,sha256=37wMVUAObK-XEqakqD8zPNog20emYt4a_yfL1AKubF8,2022
|
|
346
|
-
arelle/plugin/validate/EFM/Consts.py,sha256=YgDDOf1jdvufTUr4TyxlFDekXYHokXKw80Nw3OsTFiI,19709
|
|
347
|
-
arelle/plugin/validate/EFM/DTS.py,sha256=Ounw6wGL8EWWQuNm_8fbPemUdvfB9-b-u9AVtFI4oa4,41340
|
|
348
|
-
arelle/plugin/validate/EFM/Dimensions.py,sha256=yppX4aqWYYvv0xTmQ3kb4sTzdHSq82CWjEpgnhjBH7w,17393
|
|
349
|
-
arelle/plugin/validate/EFM/Document.py,sha256=-xI_dvmf3T7nhPTrYFMmmLBr5U02hA9ZAS8UwBwI85g,14646
|
|
350
|
-
arelle/plugin/validate/EFM/Filing.py,sha256=d6k9i0wUIsaDig6F3ygQsYfeEo2DYSyojN_OSWGz0kY,317298
|
|
351
|
-
arelle/plugin/validate/EFM/IsolateSeparateIXDSes.py,sha256=_5TRj5smdiWlefZks6ro_6fdL1qvv-SvnXoemHdt8yQ,811
|
|
352
|
-
arelle/plugin/validate/EFM/MessageNumericId.py,sha256=fdhA72RTKvQz0O5LOTY0IeIkg8DCg0DUhGWLC9iCyH4,8021
|
|
353
|
-
arelle/plugin/validate/EFM/PreCalAlignment.py,sha256=8Eo4MS7y0t0PV08qvVWl7UhoYKXIoYIn6_nzVW7_E2Y,19576
|
|
354
|
-
arelle/plugin/validate/EFM/Util.py,sha256=nU0xOsOi4YdtzfoIdqWRgD6K8jJeUN0iWYQEY5YneTM,40918
|
|
355
|
-
arelle/plugin/validate/EFM/__init__.py,sha256=c9OLxpSm7xyfkQpbI9vlZwSxHY9o_hTKYwF_2OfMfww,51212
|
|
356
|
-
arelle/plugin/validate/EFM/config.xml,sha256=59aoWexpph6n0_oL0fdLT0YhM3gqoj-NfrTOGyjTN1E,17161
|
|
357
|
-
arelle/plugin/validate/EFM/resources/README.md,sha256=_SG-BZ4ZNl8DM0gn41iN1xK__xZfEZd99i5QYtGZTc4,3439
|
|
358
|
-
arelle/plugin/validate/EFM/resources/axiswarnings.json,sha256=J9Tebs3c3pNbMikJl2-UwxyNnHa5790eVTcn_e1VI1o,1547
|
|
359
|
-
arelle/plugin/validate/EFM/resources/cef-deprecated-concepts.json,sha256=qxVauOOPZhAJhPz8IZLXcBrBktC2dXIpDpY8VSHy8R0,255
|
|
360
|
-
arelle/plugin/validate/EFM/resources/country-deprecated-concepts.json,sha256=YyjEZvHMUObSRKKyhzfk0odwOWuwRvvnxkedDpFjG94,342
|
|
361
|
-
arelle/plugin/validate/EFM/resources/currency-deprecated-concepts.json,sha256=dEr9rEbZGns0UMdSZ1n-f-XS-vnIAMgMqmM1VwP83PU,107
|
|
362
|
-
arelle/plugin/validate/EFM/resources/dei-deprecated-concepts.json,sha256=1HVp_WpVUzoMFxhGd14fJuQMM9jVXOOtbrur6xxjNcs,274
|
|
363
|
-
arelle/plugin/validate/EFM/resources/dei-validations.json,sha256=WktfrivRT6P3SLnUpi6eZV4oAaf4qiy05_Jc35Jjloo,120809
|
|
364
|
-
arelle/plugin/validate/EFM/resources/dqc-us-rules.json,sha256=Dzq2yxSYncsTgBAjhdh4Xj8KUJ1UEx7NpVJO7JKPDBQ,77577
|
|
365
|
-
arelle/plugin/validate/EFM/resources/ecd-deprecated-concepts.json,sha256=RBNvo1WzZ4oRRq0W9-hknpT7T8If536DEMBg9hyq_4o,2
|
|
366
|
-
arelle/plugin/validate/EFM/resources/ex26-validations.json,sha256=Sv8ACJCiq4_ZQzEDkUR7NyUerZMrdPn1NqsLK47t8Rs,11438
|
|
367
|
-
arelle/plugin/validate/EFM/resources/exch-deprecated-concepts.json,sha256=E9uPBJSHXr0OIPnQkOCmWD_ZxZJUgbUGzNdg-2dzo3w,3544
|
|
368
|
-
arelle/plugin/validate/EFM/resources/ifrs-full-deprecated-concepts.json,sha256=2zcDTajC85owjXili3-uWm4zi7dWZ1Np4TQp-qLB0RE,16322
|
|
369
|
-
arelle/plugin/validate/EFM/resources/invest-deprecated-concepts.json,sha256=ImVkciJzQtkR4LJ7HH1liAycDVt4jxRudrEA3czK8mg,4763
|
|
370
|
-
arelle/plugin/validate/EFM/resources/ixbrl-transform-registries.json,sha256=ZgPAw9gtklNt5olFibwKA7Y5jP1YE15Vn8_wMlyaGK4,757
|
|
371
|
-
arelle/plugin/validate/EFM/resources/naics-deprecated-concepts.json,sha256=wPWM37V6SQzNw5ALu6JR8ojxLeTDeEKZ3gDQ5Of28NI,7620
|
|
372
|
-
arelle/plugin/validate/EFM/resources/oef-deprecated-concepts.json,sha256=e0tHkfaz-cu3q3tzFLQPmMurnN120SKi4zZIF7LgY5A,2187
|
|
373
|
-
arelle/plugin/validate/EFM/resources/other-standard-taxonomies.json,sha256=f8aE2wbOrEVhYn3pg76YIrivdMujk9w917mNEazyldI,498
|
|
374
|
-
arelle/plugin/validate/EFM/resources/rr-deprecated-concepts.json,sha256=4oXUah-igPWIfKcdAQx45UkHKNnB3UQ2t3m0nLqMaXA,550
|
|
375
|
-
arelle/plugin/validate/EFM/resources/rxp-deprecated-concepts.json,sha256=RBNvo1WzZ4oRRq0W9-hknpT7T8If536DEMBg9hyq_4o,2
|
|
376
|
-
arelle/plugin/validate/EFM/resources/shr-deprecated-concepts.json,sha256=RBNvo1WzZ4oRRq0W9-hknpT7T8If536DEMBg9hyq_4o,2
|
|
377
|
-
arelle/plugin/validate/EFM/resources/sic-deprecated-concepts.json,sha256=RBNvo1WzZ4oRRq0W9-hknpT7T8If536DEMBg9hyq_4o,2
|
|
378
|
-
arelle/plugin/validate/EFM/resources/signwarnings.json,sha256=F-5JSS6sZmBxUf2RuNv98N6dRpygCc-4RP_YO5bRHek,5108
|
|
379
|
-
arelle/plugin/validate/EFM/resources/srt-deprecated-concepts.json,sha256=RBNvo1WzZ4oRRq0W9-hknpT7T8If536DEMBg9hyq_4o,2
|
|
380
|
-
arelle/plugin/validate/EFM/resources/stpr-deprecated-concepts.json,sha256=RBNvo1WzZ4oRRq0W9-hknpT7T8If536DEMBg9hyq_4o,2
|
|
381
|
-
arelle/plugin/validate/EFM/resources/taxonomy-compatibility.json,sha256=iY_i_psR5j0IamOTL0nMYR6Vyg8UD0S7gtTZpGaYFOM,5348
|
|
382
|
-
arelle/plugin/validate/EFM/resources/us-gaap-deprecated-concepts.json,sha256=1iCB29Pz5Mq7P9rvFnR5cdUNswzkFDbhC1-59IZDxH8,205448
|
|
383
|
-
arelle/plugin/validate/EFM/resources/us-gaap-rels-2020.json,sha256=iJi-1-TmumBnMJAJYLqpn1Z3Syiz0Gs72GTYHZyzVoA,1583747
|
|
384
|
-
arelle/plugin/validate/EFM/resources/us-gaap-rels-2021.json,sha256=Ivkee97-Xl-gVbYRojElMfl2O_u6H6Syp6Rc80g1kxo,1624986
|
|
385
|
-
arelle/plugin/validate/EFM/resources/us-gaap-rels-2022.json,sha256=MRGfVFd0WvUVd4xaYS96ssuiJnzlVgEKkzGwkrw0oYg,1592744
|
|
386
|
-
arelle/plugin/validate/EFM/resources/us-gaap-rels-2023.json,sha256=PoeTT7VzyMOslomCwfqFaIqfo0AD9juegcwYAuaYswM,1613560
|
|
387
|
-
arelle/plugin/validate/EFM/resources/vip-deprecated-concepts.json,sha256=RBNvo1WzZ4oRRq0W9-hknpT7T8If536DEMBg9hyq_4o,2
|
|
388
|
-
arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-16-4.xml,sha256=DbdgnDc66CDA3cB-QLt48iWL0iVCS5DDS6HU3p7B9cY,31435
|
|
389
|
-
arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-17-0-4.xml,sha256=nugwpCtipgEYSep1UE4-Vlo7r_5yaUp41k2CiXHe9XQ,76545
|
|
390
|
-
arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-17-1.xml,sha256=RGOA6YQxwBlB0LlUKpyA_OA1Bn-p1rPFWehBYtR4Y0Q,76785
|
|
391
|
-
arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-17-2.xml,sha256=1kINJ4GXwnaIyQzr6F6kTKV-bNUYOf6RldkPlky-tEc,73012
|
|
392
|
-
arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-17-3-1.xml,sha256=ZOhpJ00shmPnaHqz3WZzfTsXILJXtj021HhFdZxsmzk,80115
|
|
393
|
-
arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-18.1.xml,sha256=IX8SYfQKEfSwRKXbM1U1oV_nIXf1W2qJzkrngq1tpMY,150333
|
|
394
|
-
arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-18.2.xml,sha256=-4pXE47X5rnYNPrYuRZrxAfUOLtK_mKMlu-FezqYrGA,138364
|
|
395
|
-
arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-18.3.xml,sha256=qqC5IrBsPdlLcCImQVAA0TqN4Zz_Z13FTStg5GgBelg,135467
|
|
396
|
-
arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-19-1.xml,sha256=LccyNclSZYUsxFbkcbCJc612ZvSAWNNs9TupTcDu5Zw,180977
|
|
397
|
-
arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-19-2.xml,sha256=Yii5CvmENnQOAKCRHXITGcOdZu7kJtgUy1S6WNdQ9M0,125792
|
|
398
|
-
arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-19-3.xml,sha256=-5Am-T6k9bzM5EF93JsugHNGXdf_4HilDm3MaGlV6nU,119973
|
|
399
|
-
arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-20-1.xml,sha256=oQDkkZ8Rsu6xbk7D15A2N7ckV2ynfld_pg5fBigtw1c,134456
|
|
400
|
-
arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-20-2.xml,sha256=vsnJEMnjgs_KpCW2r8JXRIv-MZXXKCEkabGpqtcVyiE,109498
|
|
401
|
-
arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-20-3.xml,sha256=VMo82okf4UjVJqV1-mYvNx3FhpYGDTCquEYWtAdKlqA,99358
|
|
402
|
-
arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-2012.xml,sha256=AtS8innIlXeDGhRN24EJVTEakRD-HWK6gmtnP_4Gh9A,28394
|
|
403
|
-
arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-2013.xml,sha256=5S36LJRDcnMe7N9rmBd1wGNIEfqTuncg1aMZqBG0xXw,29132
|
|
404
|
-
arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-2014.xml,sha256=jvtcrPNIb7BjLI6UZ5HN3KhisYLfYaEyPhZtxKN6zWA,29744
|
|
405
|
-
arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-2015.xml,sha256=2mLJPb2JtJs5PHc9GDG6QM_qOh5ey_ro5FONmLwwnaM,32038
|
|
406
|
-
arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-2016.xml,sha256=QWCJQCUimfBu5IccrNRiG19jGJCUozTIfrfugqaPdZg,31676
|
|
407
|
-
arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-21-1.xml,sha256=I2EcgC09czypaFXVeVBRtkulySO7GFXVwisM8ZPEaOU,109944
|
|
408
|
-
arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-21-2.xml,sha256=OqEeTcQfd8eoZUo7GSsJwoLA0Y9IHzNB9XucUaL7p9U,39675
|
|
409
|
-
arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-21-3.xml,sha256=9AN5NRbBs0HFXy3RwmiE_KbCpox-fhWNJcUB9YPrKcI,35860
|
|
410
|
-
arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-21-4.xml,sha256=ru1J0iNf6oqkdMFwtPZ4L9nHe8ZT9wpV96FS0zucLfk,42433
|
|
411
|
-
arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-22-1-preview.xml,sha256=rxMP5zltEgCoayV3ltipiOl02SeE7tKWPcSVP0ioYlQ,58455
|
|
412
|
-
arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-22-1.xml,sha256=yOP64KUovvCc9z8HJjfDyUDO9E3IoNpPds73F3EZqx0,62455
|
|
413
|
-
arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-22-2-2.xml,sha256=bgsIMOLcoZlRCDN6TFW7dnQ6N25i-ty9tTyKzEVC5vA,49163
|
|
414
|
-
arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-22-2.xml,sha256=65jCJSLbvfYmiWUPC7_3OrEpqmIAFMQf5E7EM6iiiKQ,48412
|
|
415
|
-
arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-22-4.xml,sha256=jGKkFAY_ndS-oF9zZtcT-f-Xb2LvTKiqUmtYULftTCk,57294
|
|
416
|
-
arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-23-1-1.xml,sha256=id1jTea6wCZpemubAyP7g4ER-YlTsTgd3ovWhpYXj5k,69072
|
|
417
|
-
arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-23-1.xml,sha256=xzTOByxmSWkTW76StWFo7eM8LM6Mct3lYGoPlSytBIw,69638
|
|
418
|
-
arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-23-2.xml,sha256=bB63rXCJo-CsFe9d7qTebonWg4RfXaf1g-OKKss1my4,62365
|
|
419
|
-
arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-23-3.xml,sha256=Fo9gmiLfU9Jn1MaoyOLxEAm9wMm8MfN3a0p29UgLXJQ,63837
|
|
420
|
-
arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-all-years.xml,sha256=aq65T3C5Ss3Gsjzm8sxnmH2RYFw3Q5UCahBN1JrOvJc,374211
|
|
421
|
-
arelle/plugin/validate/EFM/resources/edgartaxonomies/erxl.xsd,sha256=I4lOcfDk4ClBk-pJHT7XXrY4ldwtck4jdgBibwMnhrM,1942
|
|
422
|
-
arelle/plugin/validate/EFM/resources/edgartaxonomies/extendedtaxonomies-all-years.xml,sha256=Ptyn89Z_9yRJ14a86vbKp9qzfGlGhkloFReYjxo3tOA,1023
|
|
423
|
-
arelle/plugin/validate/EFM/resources/edgartaxonomies/ifrs-taxonomies.xml,sha256=BEdtf1gX9f_8YqkweX7-0HUUTUiwsQ8jXiphNkvA8Qc,93735
|
|
424
|
-
arelle/plugin/validate/EFM/resources/edgartaxonomies/ifrstaxonomies-all-years.xml,sha256=_Xvqq7MWsVJpNr5hCO9-B4YpzU-j3AzQ8c1Nuxv5ZcM,2468
|
|
425
|
-
arelle/plugin/validate/EFM/tools/CheckTxmyRefs.py,sha256=28KbzNwME2YSMQ3OlOHf2MA6ZVdYgiqDjvbJpI9XeZk,9941
|
|
426
|
-
arelle/plugin/validate/EFM-htm/Const.py,sha256=Ky73M9j47LpxTaiw3G3DxjdZSZsXAFiYXjpmRvdxLyc,3362
|
|
427
|
-
arelle/plugin/validate/EFM-htm/__init__.py,sha256=7DXyZ04x_zToq1OLfmjxlUcgsb_YTzKxxQLvGnuoNuw,10483
|
|
428
|
-
arelle/plugin/validate/EFM-htm/config.xml,sha256=LvQWVjrsB6fceQyvAWj0xSm20aTOy9ak2Jn1LSt5K8I,773
|
|
429
|
-
arelle/plugin/validate/EFM-htm/resources/efm-htm.dtd,sha256=9bQi2iBydfSRf4TPZH3YQa7RQm3LWWpwqfl7zdzTr9U,16821
|
|
430
|
-
arelle/plugin/validate/ESEF/Const.py,sha256=23nB-HjHpfvUfYWokVBpNSIYswtaIgDGAKOc72kOo-A,23529
|
|
431
|
-
arelle/plugin/validate/ESEF/Dimensions.py,sha256=RhS35eRYpEZNO1mV9Wxjol5xz68Jwb-lAy_hMRSRWQs,10603
|
|
432
|
-
arelle/plugin/validate/ESEF/Util.py,sha256=cA6NmfFUiTKm9CF2RUA1nXSMMgQEgElcSnG5tbIjnso,8387
|
|
433
|
-
arelle/plugin/validate/ESEF/__init__.py,sha256=sLr1FNxF__I6prqx2bxw2FiiCIF3vhQ1W2cW8mio2II,19508
|
|
434
|
-
arelle/plugin/validate/ESEF/ESEF_2021/DTS.py,sha256=kL5CvNd8hOGh1k073EGaSPorobbknYPMLjUOuxE44Tk,26250
|
|
435
|
-
arelle/plugin/validate/ESEF/ESEF_2021/Image.py,sha256=ASTjVRa3wYb96HZJixjmV0eTAKeGf8I5drFPOFGohlc,4717
|
|
436
|
-
arelle/plugin/validate/ESEF/ESEF_2021/ValidateXbrlFinally.py,sha256=Fka8asdF0S8phNkiV-F_YmgUcfEa7BWL50FjCsfI1H0,62952
|
|
437
|
-
arelle/plugin/validate/ESEF/ESEF_2021/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
438
|
-
arelle/plugin/validate/ESEF/ESEF_Current/DTS.py,sha256=zR8QHCx1lXszbcExNkaC_vaqwGUXQCWbo6t6TLm7mAU,27123
|
|
439
|
-
arelle/plugin/validate/ESEF/ESEF_Current/Image.py,sha256=oZs7u-GU6pJ7708su-SBYxNU0r7NHbj60Hw1YOg9B4U,10548
|
|
440
|
-
arelle/plugin/validate/ESEF/ESEF_Current/ValidateXbrlFinally.py,sha256=zVXacf52x5eqHGkLWl58zcGeOJk3KNq2_kTkqw6dfrk,70287
|
|
441
|
-
arelle/plugin/validate/ESEF/ESEF_Current/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
442
|
-
arelle/plugin/validate/ESEF/resources/authority-validations.json,sha256=X2IUadR1js2xoXI0q_4n2iBRK4OROUAwmwZnebY8HSg,12940
|
|
443
|
-
arelle/plugin/validate/ESEF/resources/config.xml,sha256=Gv70NRUU3mHzLtMnczXQYoKnuadnbfNQ-ivwPgiL7nw,3022
|
|
444
|
-
arelle/plugin/validate/ESEF_2022/__init__.py,sha256=rbc2Lwuk_B3Gsp4XVOmZHYXVnT-aPVZn9toyXf198Uc,1624
|
|
445
|
-
arelle/plugin/validate/FERC/__init__.py,sha256=vNqBWFLSTzKv2P9wHRfu5S-94GUlehu3-AzoiNrzSKc,11486
|
|
446
|
-
arelle/plugin/validate/FERC/config.xml,sha256=nK11EQFxib1-2tEV1j8bHLbiHu30k2sajH_gvY34euQ,2003
|
|
447
|
-
arelle/plugin/validate/FERC/resources/ferc-utr.xml,sha256=OCRj9IUpdXATCBXKbB71apYx9kxcNtZW-Hq4s-avsRY,2663
|
|
448
|
-
arelle/plugin/validate/GFM/__init__.py,sha256=Zpv7GQugGBCzDpiBrHE1488Q0xnuXvkrHeCHyFNwCL8,1975
|
|
449
|
-
arelle/plugin/validate/GFM/config.xml,sha256=spWZF45b5xbiSSgt-yet2ByAjr2B0VmfBReBkTo6_w0,3279
|
|
450
|
-
arelle/plugin/validate/HMRC/__init__.py,sha256=NJFgxmP8QohWVhCnz1ItLeXtmYBdJ6fM6HREbL65q34,29378
|
|
451
|
-
arelle/plugin/validate/HMRC/config.xml,sha256=-52l3R-xuO_Z_zIwCzZfDAH06iY7-YHSLMQsugVtlso,1546
|
|
452
|
-
arelle/plugin/validate/HMRC/consistencyChecksByName.json,sha256=BgB9YAWzmcsX-_rU74RBkABwEsS75vrMlwBHsYCz2R0,25247
|
|
453
|
-
arelle/plugin/validate/HMRC/hmrc-taxonomies.xml,sha256=3lR-wb2sooAddQkVqqRzG_VqLuHq_MQ8kIaXAQs1KVk,9623
|
|
454
|
-
arelle/plugin/validate/NL/DisclosureSystems.py,sha256=24objexvFbGnq9vYfp4QHII4B-NLN506xd15R77Tlng,120
|
|
455
|
-
arelle/plugin/validate/NL/PluginValidationDataExtension.py,sha256=J1OmB54-fYKjyAS7OvaY-7JC8qD5MIJ3TS_j7Re3EwY,701
|
|
456
|
-
arelle/plugin/validate/NL/ValidationPluginExtension.py,sha256=WhH1Ag-LNq2ZOgeS6jPQ-uX9Z08Jek55CV35RsxsS_w,10325
|
|
457
|
-
arelle/plugin/validate/NL/__init__.py,sha256=CyH6XCg1-L4YLlahZuZ95zDBf4CRvLcUySa6DjyZJks,2124
|
|
458
|
-
arelle/plugin/validate/NL/resources/config.xml,sha256=U_YGsuXOSlvqpyY_Q-WQrq5Fg49CSAJxYwwQKz3MIo0,765
|
|
459
|
-
arelle/plugin/validate/NL/rules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
460
|
-
arelle/plugin/validate/NL/rules/br_kvk.py,sha256=_bCwV__qCzGoMVNk07c8UdRKP1rrX3Z_Je5m36U1zmQ,13601
|
|
461
|
-
arelle/plugin/validate/NL/rules/fr_kvk.py,sha256=PKBoXsvUHVbzN3KpoScvyC1uGK6trfDER_8kpZRHHY8,6195
|
|
462
|
-
arelle/plugin/validate/NL/rules/fr_nl.py,sha256=Bd0s56939AIB44p2ZXwADyjgjt0jDAyEfzdNsAdLwN0,6878
|
|
463
|
-
arelle/plugin/validate/ROS/__init__.py,sha256=tF4RODI3rnDdFG-Ndvjt_oBYlk3Yf55S0gtb37oxpmY,19318
|
|
464
|
-
arelle/plugin/validate/ROS/config.xml,sha256=ZCpCFgr1ZAjoUuhb1eRpDnmKrae-sXA9yl6SOWnrfm8,654
|
|
465
|
-
arelle/plugin/validate/SBRnl/CustomLoader.py,sha256=43JQDv3i4pMluKdlEQJJgOpKzH691b5KfYpLlvJgPAw,1165
|
|
466
|
-
arelle/plugin/validate/SBRnl/DTS.py,sha256=1AHWzlzM3vsxJWZ4x3Rhsbna_1fquDqdwi5Loe4x-oc,19781
|
|
467
|
-
arelle/plugin/validate/SBRnl/Dimensions.py,sha256=I1XwRkJz95KbWH7wiJlBWJCeCvsmYCnFDi7OJy0Ukt8,21682
|
|
468
|
-
arelle/plugin/validate/SBRnl/Document.py,sha256=ppjwK1IdGqg4mbEVr9sOJmKSIyvMhq2bwlbGANO2k0g,59358
|
|
469
|
-
arelle/plugin/validate/SBRnl/Filing.py,sha256=gWtofmqV6GQSn24xYdiTQEXZo4RGuaYdKtlLSqVnvLk,29571
|
|
470
|
-
arelle/plugin/validate/SBRnl/__init__.py,sha256=oP6BkOHkf-oEvu0gra6fW0pR3yDzvlm7yPnSkmfGHfc,2448
|
|
471
|
-
arelle/plugin/validate/SBRnl/config.xml,sha256=Ni4Y5unvQK382BZxuc9KdD3V5Bxp5t2QgZDkaP3dUek,940
|
|
472
|
-
arelle/plugin/validate/SBRnl/sbr-nl-taxonomies.xml,sha256=la4DliyRACGNGUXnjpVtoQxpf0jLpbyrvFKLYNqjw14,24212
|
|
473
|
-
arelle/plugin/validate/XDC/__init__.py,sha256=BgM5t9rxH_fuAvawF8PmTuLGc5Xd3AEPOcpHxxinn6E,3288
|
|
474
|
-
arelle/plugin/validate/XDC/config.xml,sha256=lU9f2BgDZb698zVfD_XjbS4xpOPxl1HUGOSCtqS-i70,637
|
|
475
|
-
arelle/plugin/validate/XFsyntax/__init__.py,sha256=f5D-jpD6iiJXM31PXQKXI-Y_ES4nyP_7W-8KQ99hLIE,2313
|
|
476
|
-
arelle/plugin/validate/XFsyntax/xf.py,sha256=WnhBqWKOYtl8LI-BzhU48uNCqgn4hkMfRwYtYFmxXkk,66728
|
|
477
|
-
arelle/plugin/xbrlDB/DialogRssWatchExtender.py,sha256=Y8IjFSPdzH9NckJSSK74b477K35MGtuIyVyhqLVZbMY,1894
|
|
478
|
-
arelle/plugin/xbrlDB/SqlDb.py,sha256=RTqCunv49BiLprIoTjIa5FRXjVkfjDbgUeJJeuLMR4U,56450
|
|
479
|
-
arelle/plugin/xbrlDB/XbrlDpmSqlDB.py,sha256=jtU-Bnm8n6x45L37w71pRHp7S_whWNObrtQNrhTXM54,78262
|
|
480
|
-
arelle/plugin/xbrlDB/XbrlOpenSqlDB.py,sha256=lA_FugR8UL_yvCIqoVVUT-muADVRtpcebMp7rvGVGLY,78348
|
|
481
|
-
arelle/plugin/xbrlDB/XbrlPublicPostgresDB.py,sha256=ZR94i0-fcvBZZLZezkW_jdGOG9ZYeKLAIsIrEKaVOFg,36203
|
|
482
|
-
arelle/plugin/xbrlDB/XbrlSemanticGraphDB.py,sha256=pRH0Mw2wtx90Q3dY9-RpB1uET1LA0MnnLDy8KHlaUG4,64539
|
|
483
|
-
arelle/plugin/xbrlDB/XbrlSemanticJsonDB.py,sha256=NgcLE2ftcF_DN-sOIpTyZXZXklVnD1d527-v56ngyeQ,48567
|
|
484
|
-
arelle/plugin/xbrlDB/XbrlSemanticRdfDB.py,sha256=WFJcDRQxzuOTu1UPmi05zVFrItMteSPgQocDhnTLpBU,55073
|
|
485
|
-
arelle/plugin/xbrlDB/XbrlSemanticSqlDB.py,sha256=uMb36tMkL2UnFeFEX_Yp1AWgGzAMgRvo7SfAS5BQgfg,67782
|
|
486
|
-
arelle/plugin/xbrlDB/__init__.py,sha256=4Fwx1GXxSghDbxBIm_8oyClROck_lk5xyCm-HT8eFMk,17075
|
|
487
|
-
arelle/plugin/xbrlDB/entityInformation.py,sha256=TFHHpCdSokQk37eLnmak8ju7YfoaArtCI3-Rtem8OM8,7853
|
|
488
|
-
arelle/plugin/xbrlDB/primaryDocumentFacts.py,sha256=eoUBCjhVdM5HFH9R8uKrx51mg0VbHV_09X25idnD8l8,8208
|
|
489
|
-
arelle/plugin/xbrlDB/tableFacts.py,sha256=i0t3ngBfGudc8QWbCOIad17lxi-fohPT1Mim6OzyK5o,2756
|
|
490
|
-
arelle/plugin/xbrlDB/ext/china.py,sha256=uiCicQZPKKXcQREb_daAUDdekXjEcO4tufLu2EsJrzk,4216
|
|
491
|
-
arelle/plugin/xbrlDB/ext/edgar.py,sha256=Pwcp5Jwor3JN2vIiC1EMxjCSgCTbO8FKsa2aX3wGfhM,12193
|
|
492
|
-
arelle/plugin/xbrlDB/ext/xdc.py,sha256=0qYWRf1rwk6WtNzQModl9MHRtBeRDrzsjmW8BRhnqSc,7482
|
|
493
|
-
arelle/plugin/xbrlDB/sql/open/xbrlOpenPostgresDB.ddl,sha256=cm15rXZwLyV9v5DCpV-njuH9Mcw5WVcj7Pe6EhOgo_E,15891
|
|
494
|
-
arelle/plugin/xbrlDB/sql/open/ext/chinaPostgresDB.ddl,sha256=5e4T2iH1bxFJfw7USWQY9lN4zVzhrVHjLzYMXrFUiIE,943
|
|
495
|
-
arelle/plugin/xbrlDB/sql/open/ext/edgarPostgresDB.ddl,sha256=76KomipBhHpKLYQSTRJMnaXli5GFbg1Kze2gi7A7TsA,714004
|
|
496
|
-
arelle/plugin/xbrlDB/sql/open/ext/xdcPostgresDB.ddl,sha256=V7GBAq08GhGSa4W64ek473A7TTlq6BlSKHBH6gdmjBo,7320
|
|
497
|
-
arelle/plugin/xbrlDB/sql/open2/xbrlOpen2PostgresDB.ddl,sha256=-kv-XIgtK3S9rxfRAOCFaJTFYfoNFp_dgJUp-wSt6sk,728541
|
|
498
|
-
arelle/plugin/xbrlDB/sql/public/xbrlPublicPostgresDB.ddl,sha256=mMFlpBNP2HLjAWmK9_ZSC2yrqU--Cm9flcJEJxKCGPk,963416
|
|
499
|
-
arelle/plugin/xbrlDB/sql/semantic/secDatabaseModelViews.sql,sha256=9wcug13VqVGm0XlzWFW2puQezydmdDEfQqJ-DSOeEMU,4209
|
|
500
|
-
arelle/plugin/xbrlDB/sql/semantic/xbrlSemanticColumnComments.ddl,sha256=BOXxBFOdwFiqKW01r64GbcOptO_QlJRuYOSIYLu1Arw,21988
|
|
501
|
-
arelle/plugin/xbrlDB/sql/semantic/xbrlSemanticMSSqlDB.sql,sha256=9ZqL6qjg3H0_W-zBQwrYkyTADB3mZK6fTYveSfCliF8,728214
|
|
502
|
-
arelle/plugin/xbrlDB/sql/semantic/xbrlSemanticMySqlDB.ddl,sha256=i4Nwv9-hc5ePDTH7bR41r_A38DeW48f9c_Ftc4rEAJg,729124
|
|
503
|
-
arelle/plugin/xbrlDB/sql/semantic/xbrlSemanticOracleDB.sql,sha256=4dtR-23PvsOHCCSuZknmQLLx1ld0MTk3ydxqtzRs09I,1056221
|
|
504
|
-
arelle/plugin/xbrlDB/sql/semantic/xbrlSemanticPostgresDB.ddl,sha256=DYBE4m2gSp-2ktziN__TIj_UtJVeLy1NxteYzotxxT4,727913
|
|
505
|
-
arelle/plugin/xbrlDB/sql/semantic/xbrlSemanticSQLiteDB.ddl,sha256=TRb4zLoXUGKkBU1ZR5KCpMLBpujtNiL_WDdnv4DfBL0,726301
|
|
506
|
-
arelle/scripts-macOS/startWebServer.command,sha256=KXLSwAwchDZBlL-k9PYXdf39RNBtte4vV076_kIz2Ow,91
|
|
507
|
-
arelle/scripts-unix/startWebServer.sh,sha256=_0puRzaGkdMZoFn3R7hDti9a3ryN6kTZAXwLweeZU1s,42
|
|
508
|
-
arelle/scripts-windows/startWebServer.bat,sha256=qmnF1yrjNo__bi4QodONWlN0qHShVLTKptJQYyZtgcY,122
|
|
509
|
-
arelle/utils/PluginHooks.py,sha256=7wXnd6bgKNF2SZm6fQwT3v0MIp4WW2bc5YQYMdw0-9g,25736
|
|
510
|
-
arelle/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
511
|
-
arelle/utils/validate/Decorator.py,sha256=xkHvWcLFp0rEKwGZBTAkEdCulTWZjyEFChgvOH72Gt8,3097
|
|
512
|
-
arelle/utils/validate/PluginValidationData.py,sha256=j3PTG9dydnUVKCcfURO_t7xrzv2IC1FYUIZNIlLbr1E,222
|
|
513
|
-
arelle/utils/validate/Validation.py,sha256=oMaB0XI8LNTs_GdfP2iH6uziLz3XvUYu10tRLatzuq8,833
|
|
514
|
-
arelle/utils/validate/ValidationPlugin.py,sha256=232iDc0ishOSxyunzIvG_puZH_oUejYq87BGUFLFE-I,11625
|
|
515
|
-
arelle/utils/validate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
516
|
-
arelle/webserver/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
517
|
-
arelle/webserver/bottle.py,sha256=5yN4lHqJL1hmtYx2JKZwytQsCL75XWENlHVZgvaGY58,171083
|
|
518
|
-
tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
519
|
-
tests/integration_tests/ui_tests/ArelleGUITest/ArelleGUITest.sln,sha256=uzzvHUtKpmBPpoxdfHd7cCmAkdvjs7mMehO6YHebdTY,1499
|
|
520
|
-
tests/integration_tests/ui_tests/ArelleGUITest/ArelleGUITest/ArelleGUITest.csproj,sha256=VQjsAREOYZ49oBUP_anemyvnGLbARX6AKRlZpdCR_x8,1259
|
|
521
|
-
tests/integration_tests/ui_tests/ArelleGUITest/ArelleGUITest/Tests.cs,sha256=_0TvabpERmrfaoDSazN-xQAH0qzO3cAnuFHLGLRJnGU,20334
|
|
522
|
-
tests/integration_tests/ui_tests/ArelleGUITest/ArelleGUITest/Usings.cs,sha256=0IC7tQ27uAqlt8ZGBrJPK7BPj3kjiodPcHWB3v_JT-o,29
|
|
523
|
-
tests/integration_tests/ui_tests/resources/workiva.zip,sha256=QtZzi1VcKkHhVa8J-I1wVpQFy-p6tsV95Z0HmI6XbXc,223544
|
|
524
|
-
tests/integration_tests/validation/README.md,sha256=T4l3_q3hQ-9GLIwYRjLdlgAAEJMTsCloDb-KWJtr5m0,2430
|
|
525
|
-
tests/integration_tests/validation/conformance_suite_config.py,sha256=ClYbNXBiNyVT2IoAqgVdiWsFwtpCcYHJnPoZ2d159wA,2534
|
|
526
|
-
tests/integration_tests/validation/conformance_suite_configs.py,sha256=dsaPhj4wGLN6uqYGjgA3fKFZDiPDDWNKhF-9tnDD_mo,4612
|
|
527
|
-
tests/integration_tests/validation/conftest.py,sha256=CQrBcG3fQBkpqcIulm4KT6i7eb4c5kuFmNT6nU93kNA,848
|
|
528
|
-
tests/integration_tests/validation/discover_tests.py,sha256=kn3R24Q_Akc4QbUjhHRJQNYqfweSJIvjcPTdK9jMnIs,532
|
|
529
|
-
tests/integration_tests/validation/download_conformance_suites.py,sha256=fEOZ3O1NGEk_TeM6l1POSTymWjajGydlNgFnFlrojE4,2147
|
|
530
|
-
tests/integration_tests/validation/run_conformance_suites.py,sha256=a5ypDEqZuSzHrsyhHvNWFSbUs3XO3L2Sw-jxrChXGg8,5988
|
|
531
|
-
tests/integration_tests/validation/test_conformance_suites.py,sha256=VdwY0QtV6g00M9bv1XNs4qBTwxPxCh5-z4XoDdEhgeM,711
|
|
532
|
-
tests/integration_tests/validation/validation_util.py,sha256=bv8oCPpzZTbDOp-2TWIx9aFwkQqSUkHXPklLEhpxGmY,14598
|
|
533
|
-
tests/integration_tests/validation/conformance_suite_configurations/efm_current.py,sha256=LSZs5fMuU_R9mv0pPZJpsJ7c4Iav9qMst1x64n9Uw8k,24653
|
|
534
|
-
tests/integration_tests/validation/conformance_suite_configurations/esef_ixbrl_2021.py,sha256=FTxdIF1hgqXA3VxZcfsjuWae3EselSfaorW_uPNg8tQ,3272
|
|
535
|
-
tests/integration_tests/validation/conformance_suite_configurations/esef_ixbrl_2022.py,sha256=JE6gZw7TIvuFfRU2G8F2s1AJJ7955-wiXD1o2-zU0_s,3631
|
|
536
|
-
tests/integration_tests/validation/conformance_suite_configurations/esef_xhtml_2021.py,sha256=ZJj5sn7nuaQbMvR6mWSV6tLsd1HjghVTZqYHVP0-4FM,673
|
|
537
|
-
tests/integration_tests/validation/conformance_suite_configurations/esef_xhtml_2022.py,sha256=Fxwav2v8eNYddzeeTrn8yEE1Js0QNdnNqkA8hIFPKBw,645
|
|
538
|
-
tests/integration_tests/validation/conformance_suite_configurations/nl_nt16.py,sha256=VmI4CLdygi6-jq2V-mmxEHVO6HsY1YxhJJPhVCn5Cx8,468
|
|
539
|
-
tests/integration_tests/validation/conformance_suite_configurations/nl_nt17.py,sha256=owuIYL6C807V7oVJ2ZVXBs1dNY7qxb6W5aBWf0NcSh8,468
|
|
540
|
-
tests/integration_tests/validation/conformance_suite_configurations/nl_nt18.py,sha256=WTZdBQFmhfdTkbuc2XTTnSvm9kHCg5Z86qyPj2xE_UM,467
|
|
541
|
-
tests/integration_tests/validation/conformance_suite_configurations/xbrl_2_1.py,sha256=R8XAFkEZNOzBiRC1JCa1g9sxTX5L8CUvw5hS7X153M8,2151
|
|
542
|
-
tests/integration_tests/validation/conformance_suite_configurations/xbrl_calculations_1_1.py,sha256=v57ZiWLAzpRcUfPXJBPHfJ9f3QK5jTA4w4C-NjFQlKU,2425
|
|
543
|
-
tests/integration_tests/validation/conformance_suite_configurations/xbrl_dimensions_1_0.py,sha256=dSfvZJtob942fanySxOKappAV83xMSUCBTO-N5hFjF0,1616
|
|
544
|
-
tests/integration_tests/validation/conformance_suite_configurations/xbrl_extensible_enumerations_1_0.py,sha256=ai9-AWa-wXMV1ggRS6Q29h8OVlyyxDmog-iQqRNxWlA,556
|
|
545
|
-
tests/integration_tests/validation/conformance_suite_configurations/xbrl_extensible_enumerations_2_0.py,sha256=kHNJ6zUpia4nQg0RsNP851lOGDHK-_UFTdBkXlmjTEU,505
|
|
546
|
-
tests/integration_tests/validation/conformance_suite_configurations/xbrl_formula_1_0.py,sha256=_HoICEclQEO-A8Vx7FQn_i32_yNsWGrysqTJm3oqZmM,358
|
|
547
|
-
tests/integration_tests/validation/conformance_suite_configurations/xbrl_formula_1_0_assertion_severity_2_0.py,sha256=YnznzpgXhbSHTacuHt_1q0y3g7bKy5TFWNNKHeGKtJw,448
|
|
548
|
-
tests/integration_tests/validation/conformance_suite_configurations/xbrl_formula_1_0_function_registry.py,sha256=YxHRppoKoZQ_JiH4I9JmcowiP0Eu905N1zL6qR0bBnY,536
|
|
549
|
-
tests/integration_tests/validation/conformance_suite_configurations/xbrl_ixbrl_1_1.py,sha256=Nj02BBpGJYfwhbF_kXsbVsOzh6GFvKtsrrg1RqrWS_E,1073
|
|
550
|
-
tests/integration_tests/validation/conformance_suite_configurations/xbrl_link_role_registry_1_0.py,sha256=qs45TG82kWCmZU2GLKH1pgKNztzEjKo45JHQtedxfmI,454
|
|
551
|
-
tests/integration_tests/validation/conformance_suite_configurations/xbrl_oim_1_0.py,sha256=Gn1FrDPO-lMtPj4Vfh7R8_d3BSut3S08sv85ZttktJk,758
|
|
552
|
-
tests/integration_tests/validation/conformance_suite_configurations/xbrl_table_linkbase_1_0.py,sha256=liWghVXTKANJyRGvMtBk2yicKKPCVi9ob2ae5J_Z1B8,35392
|
|
553
|
-
tests/integration_tests/validation/conformance_suite_configurations/xbrl_taxonomy_packages_1_0.py,sha256=1Nt5NLNdgnnbgz9do0KB5sQ52C0IVD_r5FO3VYUkJts,477
|
|
554
|
-
tests/integration_tests/validation/conformance_suite_configurations/xbrl_transformation_registry_3.py,sha256=m17_OTgLSWjmNfoctHMHdQR0q0fqPHBPcXJBgVV7t8Q,459
|
|
555
|
-
tests/integration_tests/validation/conformance_suite_configurations/xbrl_transformation_registry_4.py,sha256=T4fE_iEaOI0B8qIgzfn83znsq9fE26UvXWHArL-kXIs,457
|
|
556
|
-
tests/integration_tests/validation/conformance_suite_configurations/xbrl_transformation_registry_5.py,sha256=tbxUoMv2P81yDVBpMpXDMNe0a-KdbTqKoLQS9Rnkl8w,457
|
|
557
|
-
tests/integration_tests/validation/conformance_suite_configurations/xbrl_utr_malformed_1_0.py,sha256=LwoDRFuoW5BwvqV27WczmGCQ6wyuWvEvgg1puv89QaU,1711
|
|
558
|
-
tests/integration_tests/validation/conformance_suite_configurations/xbrl_utr_registry_1_0.py,sha256=bygBXJdK8S80VhmZXIoP1LH8S_CgTHIpv-uGNfJFwFE,773
|
|
559
|
-
tests/integration_tests/validation/conformance_suite_configurations/xbrl_utr_structure_1_0.py,sha256=s4N9viulSXE2Ugo1ATMMz23bQnVUxbJj0hjkgt4NLe0,740
|
|
560
|
-
tests/resources/conformance_suites/nl_nt16/index.xml,sha256=gJvJsyXK_Noh72lnLB6GQR7S3DjmE3uDrB1PM89ap1M,890
|
|
561
|
-
tests/resources/conformance_suites/nl_nt16/br_kvk/2-04-invalid-period.xbrl,sha256=WeUb_M6vNrLG9jjbNTDv7qiPnAYyfYXlZvDbVlHh11g,4127
|
|
562
|
-
tests/resources/conformance_suites/nl_nt16/br_kvk/2-04-testcase.xml,sha256=Z1PmlWa0RnKfhVpefz-IOLettRmjMJbu9u0gllxhuH8,949
|
|
563
|
-
tests/resources/conformance_suites/nl_nt16/br_kvk/3-01-missing.xbrl,sha256=WTI9cDhMThOTh6YIbvWOKg-efmuoTzjcObMGr6t4gcs,3349
|
|
564
|
-
tests/resources/conformance_suites/nl_nt16/br_kvk/3-01-multiple.xbrl,sha256=p07SGo187D67nN9s_c_EVY8ktptvjV_foYvKxwHgNNk,3689
|
|
565
|
-
tests/resources/conformance_suites/nl_nt16/br_kvk/3-01-testcase.xml,sha256=0rWTuSxTt9bURIxFtdakFwNAhXjuJywL48ngWtmOmSQ,1175
|
|
566
|
-
tests/resources/conformance_suites/nl_nt16/br_kvk/4-07-invalid.xbrl,sha256=ta6iX9aotaBNeEMscswr_jOGgoAWzQ20Z9z6x2LCv3w,3594
|
|
567
|
-
tests/resources/conformance_suites/nl_nt16/br_kvk/4-07-testcase.xml,sha256=GoVqAp9eMG5GNK6cRBIlsSg-HWfvnzRpdd6FcKZ7x8c,856
|
|
568
|
-
tests/resources/conformance_suites/nl_nt16/br_kvk/4-10-invalid.xbrl,sha256=rl_XrH7tRGWTC28e2OiUDFRC5gof8XWKYk_EP5KZpx8,3695
|
|
569
|
-
tests/resources/conformance_suites/nl_nt16/br_kvk/4-10-testcase.xml,sha256=urFrTgeU24fCLTLFdoLFILFzVycYnzYYE6RYrn4LW9Q,830
|
|
570
|
-
tests/resources/conformance_suites/nl_nt16/br_kvk/4-12-invalid.xbrl,sha256=DzZWSAqzeEku6zaIxdySpGrVdCFpuHzHqDCStWqW--E,4128
|
|
571
|
-
tests/resources/conformance_suites/nl_nt16/br_kvk/4-12-testcase.xml,sha256=c4lg9ys6SAH5Ip2Blwoemw7KbHQs2lEwFcxCWblbQQY,937
|
|
572
|
-
tests/resources/conformance_suites/nl_nt16/br_kvk/4-16-missing.xbrl,sha256=WVu9t5YXFhAugtWHD-rua_RSh4vM80Mp9QShLKP1q80,3929
|
|
573
|
-
tests/resources/conformance_suites/nl_nt16/br_kvk/4-16-testcase.xml,sha256=uhO_AJOAofW0k3SQyvgdfCgzrs5EMmMWRjYulL_Z_eM,809
|
|
574
|
-
tests/resources/conformance_suites/nl_nt16/br_kvk/4-20-invalid-date.xbrl,sha256=JI0iI_fSVlpctnKdMZLVGfA5Ht20vVBJ4pOGw6am6r4,5077
|
|
575
|
-
tests/resources/conformance_suites/nl_nt16/br_kvk/4-20-testcase.xml,sha256=waOrevpp6N_5ibDVXaBekdktobzRBG8SkoeaINS9cso,752
|
|
576
|
-
tests/resources/conformance_suites/nl_nt16/fr_kvk/1-01-invalid-file-extension.xml,sha256=VKErg30fC6gOpTPMbnZPgmf5IRvU_QUPCO9hRgV9WEU,3653
|
|
577
|
-
tests/resources/conformance_suites/nl_nt16/fr_kvk/1-01-testcase.xml,sha256=iqG4LAEh1fKoVSGDG4AKnIDK81I1GAaDee2Mpiek5dw,820
|
|
578
|
-
tests/resources/conformance_suites/nl_nt16/fr_kvk/2-01-invalid-lang.xbrl,sha256=OUppxgY5Yo4odfpFwLj9zPwnu1ysI4S4XtdBWq-n5i8,3653
|
|
579
|
-
tests/resources/conformance_suites/nl_nt16/fr_kvk/2-01-missing-lang.xbrl,sha256=HBFOFkRY8deyJYf5dER7p1rm8ZYE1vB3tTFXz47wyMU,3631
|
|
580
|
-
tests/resources/conformance_suites/nl_nt16/fr_kvk/2-01-testcase.xml,sha256=v7TqAWfFqUM89rDHvr5oRJ0nM-OP3l_coN626C8eInA,1158
|
|
581
|
-
tests/resources/conformance_suites/nl_nt16/fr_kvk/2-03-entrypoint.xsd,sha256=k6Cx_fbWb0QTWdOeVEoYPpo3qB1ILdbyHmWXKlElrOg,338
|
|
582
|
-
tests/resources/conformance_suites/nl_nt16/fr_kvk/2-03-invalid-entrypoint.xbrl,sha256=OeHCvDni_GxpfUNqB1Qy6IdmK7Dt8-7pQmpUd2cMkYE,4042
|
|
583
|
-
tests/resources/conformance_suites/nl_nt16/fr_kvk/2-03-testcase.xml,sha256=FoMuOn6z4svaPPMRZ5uaxqxzjM4Hp5puEdFmzjSnDqw,882
|
|
584
|
-
tests/resources/conformance_suites/nl_nt16/fr_kvk/5-01-invalid-decimals.xbrl,sha256=wdTUnu3PPCJG2a6hp32E_phOCt_wnED71bmijrDP_k8,2664
|
|
585
|
-
tests/resources/conformance_suites/nl_nt16/fr_kvk/5-01-testcase.xml,sha256=VUGPWMlbD_CEufaBAZ0c9FjuGqk7DIdfp9e_sKxZfA8,842
|
|
586
|
-
tests/resources/conformance_suites/nl_nt16/fr_kvk/5-02-invalid-decimals.xbrl,sha256=zTVRdHxkWD6LwhWWUlWvGi8SgLxZNOpnehgz5jLKDcE,2654
|
|
587
|
-
tests/resources/conformance_suites/nl_nt16/fr_kvk/5-02-testcase.xml,sha256=JDdvihps8kLVrPaHSC7uyBmfeVIHkp9OK2GrU3__kxk,853
|
|
588
|
-
tests/resources/conformance_suites/nl_nt16/fr_nl/1-01-invalid-file.xbrl,sha256=VeVCvQOcXNbsGntLwxTdcZvDZypNn9EchX2-3w7sqJc,60
|
|
589
|
-
tests/resources/conformance_suites/nl_nt16/fr_nl/1-01-invalid-zip.zip,sha256=a6FWMxtN0kVserny1AV3c9ksyh3j2RU6o8MtfgaGenE,586
|
|
590
|
-
tests/resources/conformance_suites/nl_nt16/fr_nl/1-01-testcase.xml,sha256=CnmeTAIKN2dvMod5FO1ilP-f9t6iIqJMJLxLxLiuArY,1122
|
|
591
|
-
tests/resources/conformance_suites/nl_nt16/fr_nl/1-03-invalid-doctype.xbrl,sha256=3Z3i7fLOjOFYj7tuX1w8lueek6bpQhj101Ephb6IVgE,129
|
|
592
|
-
tests/resources/conformance_suites/nl_nt16/fr_nl/1-03-testcase.xml,sha256=kmlnCY0ZtdEVrpKyU3oSC_6RM1kKlOoG81sxtwPECwY,926
|
|
593
|
-
tests/resources/conformance_suites/nl_nt16/fr_nl/1-05-invalid-encoding.xbrl,sha256=dmjvwRnAM3ZiMlF0sDWAxa_Qb19sNtQ369kYEpDG7wU,194
|
|
594
|
-
tests/resources/conformance_suites/nl_nt16/fr_nl/1-05-testcase.xml,sha256=dJi2elHTSN2wL3oTnFR3MbhWEmkl00EichkpP4wQLdg,936
|
|
595
|
-
tests/resources/conformance_suites/nl_nt16/fr_nl/1-06-testcase.xml,sha256=mIMy1xjR5IJaGPy4uScoG5aJsGkQtcRg3OHfWTm4-pY,854
|
|
596
|
-
tests/resources/conformance_suites/nl_nt16/fr_nl/1-06.invalid.xbrl,sha256=aufqsR8qcAyJFpXT5x6HeqExXExD6t5RYg_ut0CHLXA,57
|
|
597
|
-
tests/resources/conformance_suites/nl_nt16/fr_nl/2-06-invalid-file.xbrl,sha256=DlVyIcVW5xBkqq6eY5K8iltIWfVOQzBflMfTKDsH-T8,252
|
|
598
|
-
tests/resources/conformance_suites/nl_nt16/fr_nl/2-06-invalid-zip.zip,sha256=mKI5XwF7r4Dnx30SXCBL1F7rvmcKYqGmDYUkA0TBEas,696
|
|
599
|
-
tests/resources/conformance_suites/nl_nt16/fr_nl/2-06-testcase.xml,sha256=XFDvWCl_NChRBev4tavd5hTEiEe6k4GZGyMT_6BykmY,1126
|
|
600
|
-
tests/resources/conformance_suites/nl_nt17/index.xml,sha256=k2C7kuD7HXaHXSxR90uKoDIEsifnCnnRdw0yN8K_TII,890
|
|
601
|
-
tests/resources/conformance_suites/nl_nt17/br_kvk/2-04-invalid-period.xbrl,sha256=bDbxuLhyvnbGo2ADgPsJVZ7M4WK28kpjJnA8EXKbun8,4127
|
|
602
|
-
tests/resources/conformance_suites/nl_nt17/br_kvk/2-04-testcase.xml,sha256=Z1PmlWa0RnKfhVpefz-IOLettRmjMJbu9u0gllxhuH8,949
|
|
603
|
-
tests/resources/conformance_suites/nl_nt17/br_kvk/3-01-missing.xbrl,sha256=-AsdQUdVQXVNssNPJNFMH8vbQIXih-sOIJU_07qxbuA,3349
|
|
604
|
-
tests/resources/conformance_suites/nl_nt17/br_kvk/3-01-multiple.xbrl,sha256=WUGyvzrnWiw7t9EWNZH0BVYFH3yrA7_0lX_fn7JX198,3689
|
|
605
|
-
tests/resources/conformance_suites/nl_nt17/br_kvk/3-01-testcase.xml,sha256=0rWTuSxTt9bURIxFtdakFwNAhXjuJywL48ngWtmOmSQ,1175
|
|
606
|
-
tests/resources/conformance_suites/nl_nt17/br_kvk/4-07-invalid.xbrl,sha256=dbGYwpUg11Lhk7b2_-ScSQNQQ4rtutOPMEURd6TyeVQ,3594
|
|
607
|
-
tests/resources/conformance_suites/nl_nt17/br_kvk/4-07-testcase.xml,sha256=GoVqAp9eMG5GNK6cRBIlsSg-HWfvnzRpdd6FcKZ7x8c,856
|
|
608
|
-
tests/resources/conformance_suites/nl_nt17/br_kvk/4-10-invalid.xbrl,sha256=ht4NeCr8YzNlyCmezS_H6ipRUupE91LzK7NPKAtf1T8,3695
|
|
609
|
-
tests/resources/conformance_suites/nl_nt17/br_kvk/4-10-testcase.xml,sha256=urFrTgeU24fCLTLFdoLFILFzVycYnzYYE6RYrn4LW9Q,830
|
|
610
|
-
tests/resources/conformance_suites/nl_nt17/br_kvk/4-12-invalid.xbrl,sha256=KxUHozu3wWSMvPml992q3cWGUP1500QLAZhnJhscoN8,4128
|
|
611
|
-
tests/resources/conformance_suites/nl_nt17/br_kvk/4-12-testcase.xml,sha256=c4lg9ys6SAH5Ip2Blwoemw7KbHQs2lEwFcxCWblbQQY,937
|
|
612
|
-
tests/resources/conformance_suites/nl_nt17/br_kvk/4-16-missing.xbrl,sha256=ILgX7Xss3uOJevJcYC7CgyOTmnQZ9JjdZDEE4bel6b4,3929
|
|
613
|
-
tests/resources/conformance_suites/nl_nt17/br_kvk/4-16-testcase.xml,sha256=uhO_AJOAofW0k3SQyvgdfCgzrs5EMmMWRjYulL_Z_eM,809
|
|
614
|
-
tests/resources/conformance_suites/nl_nt17/br_kvk/4-20-invalid-date.xbrl,sha256=THwGCNGh_paYQ92fjE9p55S0VlxK7Lxw1RDJFwKr-40,5077
|
|
615
|
-
tests/resources/conformance_suites/nl_nt17/br_kvk/4-20-testcase.xml,sha256=waOrevpp6N_5ibDVXaBekdktobzRBG8SkoeaINS9cso,752
|
|
616
|
-
tests/resources/conformance_suites/nl_nt17/fr_kvk/1-01-invalid-file-extension.xml,sha256=EPCfcXIDOt8FTS2JpLc-iXIBl2S-98EiMlge0CmY_ME,3653
|
|
617
|
-
tests/resources/conformance_suites/nl_nt17/fr_kvk/1-01-testcase.xml,sha256=iqG4LAEh1fKoVSGDG4AKnIDK81I1GAaDee2Mpiek5dw,820
|
|
618
|
-
tests/resources/conformance_suites/nl_nt17/fr_kvk/2-01-invalid-lang.xbrl,sha256=fUF_r6QU8k5X2CFY47G-81MTVDUH5WitcHdd-fU6zlY,3653
|
|
619
|
-
tests/resources/conformance_suites/nl_nt17/fr_kvk/2-01-missing-lang.xbrl,sha256=3tbhPCIlJJzYZGlyY5sW_u5cZkdpJdg-2Zr7vBgZTY4,3631
|
|
620
|
-
tests/resources/conformance_suites/nl_nt17/fr_kvk/2-01-testcase.xml,sha256=v7TqAWfFqUM89rDHvr5oRJ0nM-OP3l_coN626C8eInA,1158
|
|
621
|
-
tests/resources/conformance_suites/nl_nt17/fr_kvk/2-03-entrypoint.xsd,sha256=UdoTewVUD-0Swj9cOxm-vp_bIQgFG43UsVpVasNXdqU,338
|
|
622
|
-
tests/resources/conformance_suites/nl_nt17/fr_kvk/2-03-invalid-entrypoint.xbrl,sha256=WdQVpqEmvQJCupDgQlpD_GAsqnIWArrCv7KHorP3I40,4042
|
|
623
|
-
tests/resources/conformance_suites/nl_nt17/fr_kvk/2-03-testcase.xml,sha256=FoMuOn6z4svaPPMRZ5uaxqxzjM4Hp5puEdFmzjSnDqw,882
|
|
624
|
-
tests/resources/conformance_suites/nl_nt17/fr_kvk/5-01-invalid-decimals.xbrl,sha256=HRA7WT-fVlDOm4ARG0MWKL39e7bhG62c7BCczog9RmU,2664
|
|
625
|
-
tests/resources/conformance_suites/nl_nt17/fr_kvk/5-01-testcase.xml,sha256=VUGPWMlbD_CEufaBAZ0c9FjuGqk7DIdfp9e_sKxZfA8,842
|
|
626
|
-
tests/resources/conformance_suites/nl_nt17/fr_kvk/5-02-invalid-decimals.xbrl,sha256=kiDcZNAfLexPigS-Lvi78jcPch_fKLRyzJYY3oIOHmE,2654
|
|
627
|
-
tests/resources/conformance_suites/nl_nt17/fr_kvk/5-02-testcase.xml,sha256=JDdvihps8kLVrPaHSC7uyBmfeVIHkp9OK2GrU3__kxk,853
|
|
628
|
-
tests/resources/conformance_suites/nl_nt17/fr_nl/1-01-invalid-file.xbrl,sha256=VeVCvQOcXNbsGntLwxTdcZvDZypNn9EchX2-3w7sqJc,60
|
|
629
|
-
tests/resources/conformance_suites/nl_nt17/fr_nl/1-01-invalid-zip.zip,sha256=a6FWMxtN0kVserny1AV3c9ksyh3j2RU6o8MtfgaGenE,586
|
|
630
|
-
tests/resources/conformance_suites/nl_nt17/fr_nl/1-01-testcase.xml,sha256=CnmeTAIKN2dvMod5FO1ilP-f9t6iIqJMJLxLxLiuArY,1122
|
|
631
|
-
tests/resources/conformance_suites/nl_nt17/fr_nl/1-03-invalid-doctype.xbrl,sha256=3Z3i7fLOjOFYj7tuX1w8lueek6bpQhj101Ephb6IVgE,129
|
|
632
|
-
tests/resources/conformance_suites/nl_nt17/fr_nl/1-03-testcase.xml,sha256=kmlnCY0ZtdEVrpKyU3oSC_6RM1kKlOoG81sxtwPECwY,926
|
|
633
|
-
tests/resources/conformance_suites/nl_nt17/fr_nl/1-05-invalid-encoding.xbrl,sha256=dmjvwRnAM3ZiMlF0sDWAxa_Qb19sNtQ369kYEpDG7wU,194
|
|
634
|
-
tests/resources/conformance_suites/nl_nt17/fr_nl/1-05-testcases.xml,sha256=dJi2elHTSN2wL3oTnFR3MbhWEmkl00EichkpP4wQLdg,936
|
|
635
|
-
tests/resources/conformance_suites/nl_nt17/fr_nl/1-06-testcase.xml,sha256=mIMy1xjR5IJaGPy4uScoG5aJsGkQtcRg3OHfWTm4-pY,854
|
|
636
|
-
tests/resources/conformance_suites/nl_nt17/fr_nl/1-06.invalid.xbrl,sha256=aufqsR8qcAyJFpXT5x6HeqExXExD6t5RYg_ut0CHLXA,57
|
|
637
|
-
tests/resources/conformance_suites/nl_nt17/fr_nl/2-06-invalid-file.xbrl,sha256=DlVyIcVW5xBkqq6eY5K8iltIWfVOQzBflMfTKDsH-T8,252
|
|
638
|
-
tests/resources/conformance_suites/nl_nt17/fr_nl/2-06-invalid-zip.zip,sha256=mKI5XwF7r4Dnx30SXCBL1F7rvmcKYqGmDYUkA0TBEas,696
|
|
639
|
-
tests/resources/conformance_suites/nl_nt17/fr_nl/2-06-testcase.xml,sha256=XFDvWCl_NChRBev4tavd5hTEiEe6k4GZGyMT_6BykmY,1126
|
|
640
|
-
tests/resources/conformance_suites/nl_nt18/index.xml,sha256=x47pQQzM2sZr9w4MJyv9rmBE1EiUM1jYzVxC-AIbMYU,314
|
|
641
|
-
tests/resources/conformance_suites/nl_nt18/fr_nl/1-03-invalid-doctype.xbrl,sha256=3Z3i7fLOjOFYj7tuX1w8lueek6bpQhj101Ephb6IVgE,129
|
|
642
|
-
tests/resources/conformance_suites/nl_nt18/fr_nl/1-03-testcase.xml,sha256=kmlnCY0ZtdEVrpKyU3oSC_6RM1kKlOoG81sxtwPECwY,926
|
|
643
|
-
tests/resources/conformance_suites/nl_nt18/fr_nl/1-05-invalid-encoding.xbrl,sha256=dmjvwRnAM3ZiMlF0sDWAxa_Qb19sNtQ369kYEpDG7wU,194
|
|
644
|
-
tests/resources/conformance_suites/nl_nt18/fr_nl/1-05-testcases.xml,sha256=dJi2elHTSN2wL3oTnFR3MbhWEmkl00EichkpP4wQLdg,936
|
|
645
|
-
tests/resources/conformance_suites/nl_nt18/fr_nl/1-06-testcase.xml,sha256=mIMy1xjR5IJaGPy4uScoG5aJsGkQtcRg3OHfWTm4-pY,854
|
|
646
|
-
tests/resources/conformance_suites/nl_nt18/fr_nl/1-06.invalid.xbrl,sha256=aufqsR8qcAyJFpXT5x6HeqExXExD6t5RYg_ut0CHLXA,57
|
|
647
|
-
tests/resources/conformance_suites/nl_nt18/fr_nl/1.01-invalid-file.xbrl,sha256=VeVCvQOcXNbsGntLwxTdcZvDZypNn9EchX2-3w7sqJc,60
|
|
648
|
-
tests/resources/conformance_suites/nl_nt18/fr_nl/1.01-invalid-zip.zip,sha256=F4i5mYxYf3lfUcG0gPMLMeWD8s4Aqcj3VEGHSWMO-h0,280
|
|
649
|
-
tests/resources/conformance_suites/nl_nt18/fr_nl/1.01-testcase.xml,sha256=guOWFOaMO9tcb819UvUVyYlOmwW1AaFK637w5N9YX8M,1122
|
|
650
|
-
tests/resources/conformance_suites/nl_nt18/fr_nl/2-06-invalid-file.xbrl,sha256=DlVyIcVW5xBkqq6eY5K8iltIWfVOQzBflMfTKDsH-T8,252
|
|
651
|
-
tests/resources/conformance_suites/nl_nt18/fr_nl/2-06-invalid-zip.zip,sha256=mKI5XwF7r4Dnx30SXCBL1F7rvmcKYqGmDYUkA0TBEas,696
|
|
652
|
-
tests/resources/conformance_suites/nl_nt18/fr_nl/2-06-testcase.xml,sha256=XFDvWCl_NChRBev4tavd5hTEiEe6k4GZGyMT_6BykmY,1126
|
|
653
|
-
tests/unit_tests/arelle/conftest.py,sha256=clfWoztB0XxQJyQzk0MWN-SP1WX72VEImuOBlyzNFYg,421
|
|
654
|
-
tests/unit_tests/arelle/test_betafeatures.py,sha256=8T2hMnNtOfMXm9TNWLYucwS-cJTv4m6non1_2mCajEQ,2366
|
|
655
|
-
tests/unit_tests/arelle/test_cntlr.py,sha256=PlxZzSJ5Sj7HtpFdd5kMQPb1cTH1FLulhV-t385sJ_U,951
|
|
656
|
-
tests/unit_tests/arelle/test_import.py,sha256=zhtJVsOz3qX2allRAYkOFNNcHD-pOGplPYNB-alNkUE,1234
|
|
657
|
-
tests/unit_tests/arelle/test_locale.py,sha256=u6NrZ6d26E3exHZqVzeDN8pOwoJi2Ryp_4sWkcnK5QY,1825
|
|
658
|
-
tests/unit_tests/arelle/test_modelmanager.py,sha256=U-SYe9dOyURAVP2a778VfMUiJ-2SSnHxu1vZkD5_SKM,496
|
|
659
|
-
tests/unit_tests/arelle/test_packagemanager.py,sha256=O3VVtuFsDp1h8JvRyR4Bt3vYYKJkCCTnR1YXTOciYJc,2557
|
|
660
|
-
tests/unit_tests/arelle/test_pluginmanager.py,sha256=cVHQbIZY4GrODy5bh0lwcCBThTtVOYntz4acm_VEHeo,5909
|
|
661
|
-
tests/unit_tests/arelle/test_qname.py,sha256=xMebmqTiYSkuQkZistkPCRpQ-8PAgKR7VrvNNHiZ1kI,5115
|
|
662
|
-
tests/unit_tests/arelle/test_runtimeoptions.py,sha256=WNr8mQc-dWrfatsBQGn4WfeZyYGjgXFIo-Tj8qF2xxc,1696
|
|
663
|
-
tests/unit_tests/arelle/test_system_info.py,sha256=G9VtKX9WCaas2D2s-Yw-4kcq6_zcY-LkjOveGvQNvZI,655
|
|
664
|
-
tests/unit_tests/arelle/test_updater.py,sha256=8DDHTpog8l9T8fHhHtrE9coPWTyFCgf-BCDm9nTtr6E,16163
|
|
665
|
-
tests/unit_tests/arelle/test_urlutil.py,sha256=3WTHxic3XiiOGZQxkHm9m97kFbLHOc27oXypU8fFt1w,914
|
|
666
|
-
tests/unit_tests/arelle/test_version.py,sha256=cGk4tX2BLUSKXzB4dOwV2anAxWzVutRJ3aNEvRioTd8,1712
|
|
667
|
-
tests/unit_tests/arelle/formula/test_fact_aspects_cache.py,sha256=KsfGlZYzoxmFBR0w8CCSNKg_uE6XKlZ7s6aSfsg7MFA,5194
|
|
668
|
-
tests/unit_tests/arelle/plugin/test_loadfromoim.py,sha256=_mlxsyTrbw5NWeS5hTEn5wXvT1Y6t1VFvphVyVO_1SE,1209
|
|
669
|
-
tests/unit_tests/arelle/plugin/test_plugin_imports.py,sha256=bdhIs9frAnFsdGU113yBk09_jis-z43dwUItMFYuSYM,1064
|
|
670
|
-
tests/unit_tests/arelle/utils/validate/test_decorator.py,sha256=ZS8FqIY1g-2FCbjF4UYm609dwViax6qBMRJSi0vfuhY,2482
|
|
671
|
-
arelle_release-2.17.1.dist-info/LICENSE.md,sha256=7a0YmayXqigC3S7-9QlSt4CjktcmDH2pmQMW-9k6HUk,4151
|
|
672
|
-
arelle_release-2.17.1.dist-info/METADATA,sha256=2nbm4jIKIbGdvaMqYkAaJq28T-5rsHcq9PSSg5sRYDo,8974
|
|
673
|
-
arelle_release-2.17.1.dist-info/WHEEL,sha256=Xo9-1PvkuimrydujYJAjF7pCkriuXBpUPEjma1nZyJ0,92
|
|
674
|
-
arelle_release-2.17.1.dist-info/entry_points.txt,sha256=Uj5niwfwVsx3vaQ3fYj8hrZ1xpfCJyTUA09tYKWbzpo,111
|
|
675
|
-
arelle_release-2.17.1.dist-info/top_level.txt,sha256=ZYmYGmhW5Jvo3vJ4iXBZPUI29LvYhntom04w90esJvU,13
|
|
676
|
-
arelle_release-2.17.1.dist-info/RECORD,,
|