arelle-release 2.37.28__tar.gz → 2.37.30__tar.gz
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.
Potentially problematic release.
This version of arelle-release might be problematic. Click here for more details.
- {arelle_release-2.37.28 → arelle_release-2.37.30}/.github/workflows/build-documentation.yml +1 -1
- {arelle_release-2.37.28 → arelle_release-2.37.30}/.github/workflows/build-linux.yml +2 -2
- {arelle_release-2.37.28 → arelle_release-2.37.30}/.github/workflows/build-macos.yml +2 -2
- {arelle_release-2.37.28 → arelle_release-2.37.30}/.github/workflows/build-windows.yml +2 -2
- {arelle_release-2.37.28 → arelle_release-2.37.30}/.github/workflows/conformance-suite.yml +1 -1
- {arelle_release-2.37.28 → arelle_release-2.37.30}/.github/workflows/python-package.yml +2 -2
- {arelle_release-2.37.28 → arelle_release-2.37.30}/.github/workflows/test-scripts-parallel.yml +2 -2
- {arelle_release-2.37.28 → arelle_release-2.37.30}/.github/workflows/test-scripts.yml +2 -2
- {arelle_release-2.37.28 → arelle_release-2.37.30}/.github/workflows/test-ui.yml +2 -2
- {arelle_release-2.37.28 → arelle_release-2.37.30}/.github/workflows/tests.yml +2 -2
- {arelle_release-2.37.28 → arelle_release-2.37.30}/.gitignore +1 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/CONTRIBUTING.md +2 -2
- {arelle_release-2.37.28/arelle_release.egg-info → arelle_release-2.37.30}/PKG-INFO +2 -1
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/Locale.py +3 -1
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ModelTestcaseObject.py +9 -3
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/Validate.py +29 -14
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/WebCache.py +10 -5
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/_version.py +2 -2
- arelle_release-2.37.30/arelle/plugin/validate/EDINET/DisclosureSystems.py +1 -0
- arelle_release-2.37.30/arelle/plugin/validate/EDINET/FormType.py +105 -0
- arelle_release-2.37.30/arelle/plugin/validate/EDINET/PluginValidationDataExtension.py +111 -0
- arelle_release-2.37.30/arelle/plugin/validate/EDINET/ValidationPluginExtension.py +29 -0
- arelle_release-2.37.30/arelle/plugin/validate/EDINET/__init__.py +119 -0
- arelle_release-2.37.30/arelle/plugin/validate/EDINET/resources/config.xml +12 -0
- arelle_release-2.37.30/arelle/plugin/validate/EDINET/rules/upload.py +321 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/NL/rules/nl_kvk.py +52 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/utils/EntryPointDetection.py +6 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30/arelle_release.egg-info}/PKG-INFO +2 -1
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle_release.egg-info/SOURCES.txt +44 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle_release.egg-info/requires.txt +3 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docker/Dockerfile +1 -1
- {arelle_release-2.37.28 → arelle_release-2.37.30}/pyproject.toml +1 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/requirements.txt +2 -1
- arelle_release-2.37.30/tests/__init__.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configs.py +2 -0
- arelle_release-2.37.30/tests/integration_tests/validation/conformance_suite_configurations/edinet.py +35 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/nl_inline_2024.py +13 -3
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/xbrl_formula_1_0_function_registry.py +4 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/discover_tests.py +3 -3
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/validation_util.py +9 -1
- arelle_release-2.37.30/tests/resources/conformance_suites/edinet/EC0121E/index.xml +23 -0
- arelle_release-2.37.30/tests/resources/conformance_suites/edinet/EC0121E/invalid01.zip +0 -0
- arelle_release-2.37.30/tests/resources/conformance_suites/edinet/EC0124E/index.xml +23 -0
- arelle_release-2.37.30/tests/resources/conformance_suites/edinet/EC0124E/invalid01.zip +0 -0
- arelle_release-2.37.30/tests/resources/conformance_suites/edinet/EC0129E/index.xml +23 -0
- arelle_release-2.37.30/tests/resources/conformance_suites/edinet/EC0129E/invalid01.zip +0 -0
- arelle_release-2.37.30/tests/resources/conformance_suites/edinet/EC0130E/index.xml +23 -0
- arelle_release-2.37.30/tests/resources/conformance_suites/edinet/EC0130E/invalid01.zip +0 -0
- arelle_release-2.37.30/tests/resources/conformance_suites/edinet/EC0132E/index.xml +23 -0
- arelle_release-2.37.30/tests/resources/conformance_suites/edinet/EC0132E/invalid01.zip +0 -0
- arelle_release-2.37.30/tests/resources/conformance_suites/edinet/EC0188E/index.xml +23 -0
- arelle_release-2.37.30/tests/resources/conformance_suites/edinet/EC0188E/invalid01.zip +0 -0
- arelle_release-2.37.30/tests/resources/conformance_suites/edinet/EC0198E/index.xml +23 -0
- arelle_release-2.37.30/tests/resources/conformance_suites/edinet/EC0198E/invalid01.zip +0 -0
- arelle_release-2.37.30/tests/resources/conformance_suites/edinet/README.md +4 -0
- arelle_release-2.37.30/tests/resources/conformance_suites/edinet/index.xml +11 -0
- arelle_release-2.37.30/tests/resources/conformance_suites/edinet/valid/index.xml +199 -0
- arelle_release-2.37.30/tests/resources/conformance_suites/edinet/valid/valid01.zip +0 -0
- arelle_release-2.37.30/tests/resources/conformance_suites/edinet/valid/valid02.zip +0 -0
- arelle_release-2.37.30/tests/resources/conformance_suites/edinet/valid/valid03.zip +0 -0
- arelle_release-2.37.30/tests/resources/conformance_suites/edinet/valid/valid04.zip +0 -0
- arelle_release-2.37.30/tests/resources/conformance_suites/edinet/valid/valid05.zip +0 -0
- arelle_release-2.37.30/tests/resources/conformance_suites/edinet/valid/valid06.zip +0 -0
- arelle_release-2.37.30/tests/resources/conformance_suites/edinet/valid/valid07.zip +0 -0
- arelle_release-2.37.30/tests/resources/conformance_suites/edinet/valid/valid08.zip +0 -0
- arelle_release-2.37.30/tests/resources/conformance_suites/edinet/valid/valid09.zip +0 -0
- arelle_release-2.37.30/tests/resources/conformance_suites/edinet/valid/valid10.zip +0 -0
- arelle_release-2.37.30/tests/resources/conformance_suites/edinet/valid/valid11.zip +0 -0
- arelle_release-2.37.30/tests/resources/conformance_suites/edinet/valid/valid12.zip +0 -0
- arelle_release-2.37.30/tests/resources/conformance_suites/edinet/valid/valid13.zip +0 -0
- arelle_release-2.37.30/tests/resources/conformance_suites/edinet/valid/valid14.zip +0 -0
- arelle_release-2.37.30/tests/resources/conformance_suites/edinet/valid/valid20.zip +0 -0
- arelle_release-2.37.30/tests/resources/conformance_suites/edinet/valid/valid21.zip +0 -0
- arelle_release-2.37.30/tests/resources/conformance_suites/edinet/valid/valid22.zip +0 -0
- arelle_release-2.37.30/tests/resources/conformance_suites_timing/edinet.json +27 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/.git-blame-ignore-revs +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/.github/ISSUE_TEMPLATE/bug.yml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/.github/ISSUE_TEMPLATE/change.yml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/.github/ISSUE_TEMPLATE/config.yml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/.github/actions/test_conformance_suite/action.yml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/.github/dependabot.yml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/.github/release-drafter.yml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/.github/workflows/conformance-suites.yml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/.github/workflows/project.yml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/.github/workflows/publish-documentation.yml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/.github/workflows/publish-frozen-build.yml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/.github/workflows/release-drafter.yml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/.github/workflows/release.yml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/.readthedocs.yaml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/COPYRIGHT.md +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/LICENSE.md +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/QuickBooks.qwc +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/README.md +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/Aspect.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/BetaFeatures.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/Cntlr.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/CntlrCmdLine.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/CntlrComServer.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/CntlrProfiler.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/CntlrQuickBooks.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/CntlrWebMain.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/CntlrWinMain.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/CntlrWinTooltip.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/DialogAbout.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/DialogArcroleGroup.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/DialogFind.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/DialogFormulaParameters.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/DialogLanguage.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/DialogNewFactItem.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/DialogOpenArchive.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/DialogPackageManager.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/DialogPluginManager.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/DialogRssWatch.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/DialogURL.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/DialogUserPassword.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/DisclosureSystem.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/FileSource.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/FunctionCustom.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/FunctionFn.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/FunctionIxt.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/FunctionUtil.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/FunctionXfi.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/FunctionXs.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/HashUtil.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/HtmlUtil.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/InstanceAspectsEvaluator.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/LeiUtil.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/LocalViewer.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ModelDocument.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ModelDtsObject.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ModelFormulaObject.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ModelInstanceObject.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ModelManager.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ModelObject.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ModelObjectFactory.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ModelRelationshipSet.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ModelRenderingObject.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ModelRssItem.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ModelRssObject.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ModelValue.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ModelVersObject.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ModelVersReport.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ModelXbrl.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/PackageManager.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/PluginManager.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/PluginUtils.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/PrototypeDtsObject.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/PrototypeInstanceObject.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/PythonUtil.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/RuntimeOptions.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/SocketUtils.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/SystemInfo.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/TableStructure.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/TkTableWrapper.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/UITkTable.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/UiUtil.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/Updater.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/UrlUtil.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ValidateDuplicateFacts.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ValidateFilingText.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ValidateInfoset.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ValidateUtr.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ValidateVersReport.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ValidateXbrl.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ValidateXbrlCalcs.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ValidateXbrlDTS.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ValidateXbrlDimensions.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/Version.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ViewFile.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ViewFileConcepts.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ViewFileDTS.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ViewFileFactList.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ViewFileFactTable.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ViewFileFormulae.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ViewFileRelationshipSet.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ViewFileRenderedGrid.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ViewFileRenderedLayout.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ViewFileRenderedStructure.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ViewFileRoleTypes.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ViewFileRssFeed.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ViewFileTests.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ViewUtil.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ViewUtilFormulae.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ViewWinConcepts.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ViewWinDTS.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ViewWinDiffs.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ViewWinFactGrid.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ViewWinFactList.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ViewWinFactTable.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ViewWinFormulae.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ViewWinGrid.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ViewWinList.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ViewWinPane.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ViewWinProperties.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ViewWinRelationshipSet.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ViewWinRenderedGrid.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ViewWinRoleTypes.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ViewWinRssFeed.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ViewWinTests.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ViewWinTkTable.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ViewWinTree.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ViewWinTupleGrid.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ViewWinVersReport.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/ViewWinXml.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/WatchRss.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/XbrlConst.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/XbrlUtil.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/XhtmlValidate.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/XmlUtil.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/XmlValidate.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/XmlValidateConst.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/XmlValidateParticles.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/XmlValidateSchema.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/__init__.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/api/Session.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/CustomLogger.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/LoadEFMvalidate.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/LoadSavePreLbCsv.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/LoadValidate.cs +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/LoadValidate.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/LoadValidateCmdLine.java +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/LoadValidatePostedZip.java +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/LoadValidateWebService.java +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/SaveTableToExelle.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/TR3toTR4.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/ESEF_2022/__init__.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/bigInstance.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/cmdWebServerExtension.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/crashTest.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/functionsXmlCreation.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/hello_i18n.pot +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/hello_i18n.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/importTestChild1.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/importTestChild2.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/importTestGrandchild1.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/importTestGrandchild2.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/importTestImported1.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/importTestImported11.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/importTestParent.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/instanceInfo.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/loadFromOIM-2018.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/locale/fr/LC_MESSAGES/hello_i18n.po +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/objectmaker.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/packagedImportTest/__init__.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/packagedImportTest/importTestChild1.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/packagedImportTest/importTestChild2.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/packagedImportTest/importTestGrandchild1.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/packagedImportTest/importTestGrandchild2.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/packagedImportTest/importTestImported1.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/packagedImportTest/importTestImported11.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/packagedImportTest/subdir/importTestImported111.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/packagedImportTest/subdir/subsubdir/importTestImported1111.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/sakaCalendar.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/saveInstanceInfoset.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/sphinx/FormulaGenerator.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/sphinx/SphinxContext.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/sphinx/SphinxEvaluator.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/sphinx/SphinxMethods.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/sphinx/SphinxParser.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/sphinx/SphinxValidator.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/sphinx/US-GAAP Ratios Example.xsr +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/sphinx/__init__.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/streamingExtensions.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/updateTableLB.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/validate/SBRnl/CustomLoader.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/validate/SBRnl/DTS.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/validate/SBRnl/Dimensions.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/validate/SBRnl/Document.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/validate/SBRnl/Filing.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/validate/SBRnl/__init__.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/validate/SBRnl/config.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/validate/SBRnl/sbr-nl-taxonomies.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/validate/USBestPractices.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/validate/USCorpAction.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/validate/USSecTagging.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/validate/XDC/__init__.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/validate/XDC/config.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/validate/XFsyntax/__init__.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/validate/XFsyntax/xf.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/validate/calc2.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/validateSchemaLxml.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/plugin/validateTableInfoset.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/us-gaap-dei-docType-extraction-frm.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/archive/us-gaap-dei-ratio-cash-frm.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/config/creationSoftwareNames.json +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/config/disclosuresystems.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/config/disclosuresystems.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/config/edbody.dtd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/config/empty-instance.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/config/erxl.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/config/mappings.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/config/mappings.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/config/sbr-text-formatting.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/config/xbrlschemafiles.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/config/xhtml-lat1.ent +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/config/xhtml-special.ent +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/config/xhtml-symbol.ent +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/config/xhtml1-strict-ix.dtd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/config/xhtml1_1-strict-ix.dtd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/conformance/CSVTestcaseLoader.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/doc/messagesCatalog.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/doc/messagesCatalog.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/examples/plugin/formulaSuiteConverter.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/examples/plugin/functionsCustom.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/examples/plugin/hello_dolly.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/examples/plugin/multi.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/examples/plugin/rssSaveOim.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/examples/plugin/validate/XYZ/DisclosureSystems.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/examples/plugin/validate/XYZ/PluginValidationDataExtension.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/examples/plugin/validate/XYZ/ValidationPluginExtension.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/examples/plugin/validate/XYZ/__init__.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/examples/plugin/validate/XYZ/resources/config.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/examples/plugin/validate/XYZ/rules/__init__.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/examples/plugin/validate/XYZ/rules/rules01.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/examples/plugin/validate/XYZ/rules/rules02.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/formula/FactAspectsCache.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/formula/FormulaConsisAsser.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/formula/FormulaEvaluator.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/formula/ValidateFormula.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/formula/XPathContext.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/formula/XPathParser.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/formula/__init__.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/arelle-full-word.ico +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/arelle-mac-icon-4.gif +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/arelle-rtd.png +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/arelle-word-only.ico +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/arelle.gif +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/arelle.icns +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/arelle.icns.zip +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/arelle.ico +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/arelle.xbm +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/arelle128.psd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/arelle16.psd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/arelle16x16and32x32.ico +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/arelle32.gif +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/columnSortDown.gif +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/columnSortUp.gif +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/dmg_background.png +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/favicon.ico +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/octocat.png +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/python-clear.png +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/python-icon-pack-crystalxp.net-842.zip +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/toolbarClose.gif +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/toolbarCompare.gif +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/toolbarDelete.gif +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/toolbarFindMenu.gif +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/toolbarLogClear - 1-piece-top.gif +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/toolbarLogClear-orig.gif +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/toolbarLogClear.gif +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/toolbarNewFile.gif +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/toolbarOpenDatabase.gif +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/toolbarOpenFile.gif +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/toolbarOpenWeb.gif +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/toolbarProperties.gif +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/toolbarQuit.gif +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/toolbarReopen.gif +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/toolbarSaveFile.gif +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/toolbarValidate.gif +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/xbrl.gif +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/xbrl.psd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/xbrl128-2.gif +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/xbrl128.gif +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/xbrl16.ico +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/images/xbrl32.ico +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/locale/ar_EG/LC_MESSAGES/ar_EG.po +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/locale/ar_EG/LC_MESSAGES/arelle.mo +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/locale/es/LC_MESSAGES/arelle.mo +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/locale/fr/LC_MESSAGES/arelle.mo +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/locale/fr/LC_MESSAGES/fr.po +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/locale/messages.mo +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/locale/messages.pot +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/locale/ru/LC_MESSAGES/arelle.mo +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/locale/ru/LC_MESSAGES/ru.po +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/logging/formatters/LogFormatter.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/logging/handlers/LogHandlerWithXml.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/logging/handlers/LogToBufferHandler.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/logging/handlers/LogToPrintHandler.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/logging/handlers/LogToXmlHandler.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/logging/handlers/StructuredMessageLogHandler.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/model/CommentBase.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/model/ElementBase.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/model/PIBase.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/model/__init__.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/oim/Load.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/oim/Validate.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/oim/xml/Save.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/packages/PackageConst.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/packages/PackageType.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/packages/PackageUtils.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/packages/PackageValidation.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/packages/report/DetectReportPackage.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/packages/report/ReportPackage.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/packages/report/ReportPackageConst.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/packages/report/ReportPackageValidator.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/CacheBuilder.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/EdgarRendererAllReports.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/OimTaxonomy/ModelValueMore.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/OimTaxonomy/ValidateDTS.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/OimTaxonomy/ViewXbrlTxmyObj.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/OimTaxonomy/XbrlAbstract.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/OimTaxonomy/XbrlConcept.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/OimTaxonomy/XbrlConst.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/OimTaxonomy/XbrlCube.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/OimTaxonomy/XbrlDimension.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/OimTaxonomy/XbrlDts.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/OimTaxonomy/XbrlEntity.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/OimTaxonomy/XbrlGroup.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/OimTaxonomy/XbrlImportedTaxonomy.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/OimTaxonomy/XbrlLabel.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/OimTaxonomy/XbrlNetwork.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/OimTaxonomy/XbrlProperty.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/OimTaxonomy/XbrlReference.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/OimTaxonomy/XbrlReport.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/OimTaxonomy/XbrlTableTemplate.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/OimTaxonomy/XbrlTaxonomy.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/OimTaxonomy/XbrlTaxonomyObject.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/OimTaxonomy/XbrlTransform.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/OimTaxonomy/XbrlTypes.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/OimTaxonomy/XbrlUnit.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/OimTaxonomy/__init__.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/OimTaxonomy/resources/iso4217.json +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/OimTaxonomy/resources/oim-taxonomy-schema.json +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/OimTaxonomy/resources/ref.json +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/OimTaxonomy/resources/transform-types.json +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/OimTaxonomy/resources/types.json +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/OimTaxonomy/resources/utr.json +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/OimTaxonomy/resources/xbrlSpec.json +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/SECCorrespondenceLoader.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/TDnetLoader.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/UKCompaniesHouseLoader.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/formulaLoader.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/formulaSaver.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/formulaXPathChecker.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/functionsMath.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/inlineXbrlDocumentSet.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/internet/proxyNTLM/HTTPNtlmAuthHandler.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/internet/proxyNTLM/U32.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/internet/proxyNTLM/__init__.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/internet/proxyNTLM/des.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/internet/proxyNTLM/des_c.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/internet/proxyNTLM/des_data.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/internet/proxyNTLM/lgpl-3.0-standalone.html +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/internet/proxyNTLM/ntlm.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/loadFromExcel.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/loadFromOIM.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/logging/dpmSignature.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/logging/dqcParameters.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/logging/saveMessages.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/profileCmdLine.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/profileFormula.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/saveCHComponentFile.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/saveDTS.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/saveHtmlEBAtables.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/saveLoadableExcel.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/saveLoadableOIM.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/saveOIMTaxonomy.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/saveSKOS.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/saveSampleInstance.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/security/cryptAES_CBC.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/security/cryptAES_EAX.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/streamingExtensions.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/systemInfo.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/transforms/tester.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/unpackSecEisFile.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/CIPC/Const.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/CIPC/__init__.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/CIPC/config.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/DBA/DisclosureSystems.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/DBA/PluginValidationDataExtension.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/DBA/ValidationPluginExtension.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/DBA/__init__.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/DBA/resources/config.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/DBA/rules/__init__.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/DBA/rules/fr.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/DBA/rules/tc.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/DBA/rules/th.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/DBA/rules/tm.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/DBA/rules/tr.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/EBA/__init__.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/EBA/config.xml +0 -0
- {arelle_release-2.37.28/arelle/plugin/validate/ESEF/ESEF_2021 → arelle_release-2.37.30/arelle/plugin/validate/EDINET/rules}/__init__.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/ESEF/Const.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/ESEF/Dimensions.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/ESEF/ESEF_2021/DTS.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/ESEF/ESEF_2021/Image.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/ESEF/ESEF_2021/ValidateXbrlFinally.py +0 -0
- {arelle_release-2.37.28/arelle/plugin/validate/ESEF/ESEF_Current → arelle_release-2.37.30/arelle/plugin/validate/ESEF/ESEF_2021}/__init__.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/ESEF/ESEF_Current/DTS.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/ESEF/ESEF_Current/ValidateXbrlFinally.py +0 -0
- {arelle_release-2.37.28/arelle/plugin/validate/NL/rules → arelle_release-2.37.30/arelle/plugin/validate/ESEF/ESEF_Current}/__init__.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/ESEF/Util.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/ESEF/__init__.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/ESEF/resources/authority-validations.json +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/ESEF/resources/config.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/FERC/__init__.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/FERC/config.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/FERC/resources/ferc-utr.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/NL/DisclosureSystems.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/NL/LinkbaseType.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/NL/PluginValidationDataExtension.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/NL/ValidationPluginExtension.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/NL/__init__.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/NL/resources/config.xml +0 -0
- {arelle_release-2.37.28/arelle/utils → arelle_release-2.37.30/arelle/plugin/validate/NL/rules}/__init__.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/NL/rules/br_kvk.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/NL/rules/fg_nl.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/NL/rules/fr_kvk.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/NL/rules/fr_nl.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/ROS/DisclosureSystems.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/ROS/PluginValidationDataExtension.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/ROS/ValidationPluginExtension.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/ROS/__init__.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/ROS/config.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/ROS/resources/config.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/ROS/rules/__init__.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/ROS/rules/ros.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/UK/ValidateUK.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/UK/__init__.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/UK/config.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/UK/consistencyChecksByName.json +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/validate/UK/hmrc-taxonomies.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/xbrlDB/DialogRssWatchExtender.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/xbrlDB/SqlDb.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/xbrlDB/XbrlDpmSqlDB.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/xbrlDB/XbrlOpenSqlDB.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/xbrlDB/XbrlPublicPostgresDB.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/xbrlDB/XbrlSemanticGraphDB.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/xbrlDB/XbrlSemanticJsonDB.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/xbrlDB/XbrlSemanticRdfDB.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/xbrlDB/XbrlSemanticSqlDB.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/xbrlDB/__init__.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/xbrlDB/entityInformation.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/xbrlDB/ext/china.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/xbrlDB/ext/edgar.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/xbrlDB/ext/xdc.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/xbrlDB/primaryDocumentFacts.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/xbrlDB/sql/open/ext/chinaPostgresDB.ddl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/xbrlDB/sql/open/ext/edgarPostgresDB.ddl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/xbrlDB/sql/open/ext/xdcPostgresDB.ddl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/xbrlDB/sql/open/xbrlOpenPostgresDB.ddl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/xbrlDB/sql/open2/xbrlOpen2PostgresDB.ddl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/xbrlDB/sql/public/xbrlPublicPostgresDB.ddl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/xbrlDB/sql/semantic/secDatabaseModelViews.sql +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/xbrlDB/sql/semantic/xbrlSemanticColumnComments.ddl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/xbrlDB/sql/semantic/xbrlSemanticMSSqlDB.sql +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/xbrlDB/sql/semantic/xbrlSemanticMySqlDB.ddl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/xbrlDB/sql/semantic/xbrlSemanticOracleDB.sql +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/xbrlDB/sql/semantic/xbrlSemanticPostgresDB.ddl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/xbrlDB/sql/semantic/xbrlSemanticSQLiteDB.ddl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/xbrlDB/tableFacts.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/plugin/xuleSaver.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/rendering/RenderingEvaluator.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/rendering/RenderingLayout.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/rendering/RenderingResolution.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.eurofiling.info/eu/fr/xbrl/ext/filing-indicators.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.w3.org/2001/03/xml.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.w3.org/2001/XMLSchema.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.w3.org/2001/xml.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2003/xbrl-instance-2003-12-31.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2003/xbrl-linkbase-2003-12-31.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2003/xl-2003-12-31.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2003/xlink-2003-12-31.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2004/ref-2004-08-10.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2005/xbrldt-2005.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2006/ref-2006-02-27.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2006/xbrldi-2006.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/boolean-filter.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/concept-filter.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/conformance.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/conformanceFunction.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/consistency-assertion.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/dimension-filter.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/entity-filter.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/existence-assertion.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/formula.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/function.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/general-filter.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/generic-label.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/generic-link.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/generic-reference.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xbrl/xbrl-instance-2003-12-31-ixmod.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xbrl/xbrl-linkbase-2003-12-31-ixmod.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xbrl/xl-2003-12-31.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xbrl/xlink-2003-12-31.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xframes-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-applet-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-attribs-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-base-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-basic-form-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-basic-table-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-basic10-model-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-basic10-module-redefines-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-basic10-modules-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-basic10.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-bdo-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-blkphras-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-blkpres-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-blkstruct-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-charent-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-copyright-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-csismap-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-datatypes-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-edit-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-events-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-form-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-frames-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-framework-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-hypertext-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-iframe-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-image-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-inlphras-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-inlpres-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-inlstruct-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-inlstyle-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-legacy-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-link-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-list-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-meta-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-misc-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-nameident-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-notations-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-object-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-param-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-pres-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-ruby-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-ruby-basic-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-script-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-ssismap-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-struct-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-style-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-table-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-target-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-text-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml11-model-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml11-module-redefines-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml11-modules-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml11.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml2.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-events-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-events-2.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-events-attribs-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-events-attribs-2.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-events-copyright-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-events-copyright-2.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-handlers-2.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml-inlinexbrl-1_0-definitions.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml-inlinexbrl-1_0-model.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml-inlinexbrl-1_0-modules.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml-inlinexbrl-1_0.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/match-filter.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/period-filter.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/registry.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/relative-filter.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/segment-scenario-filter.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/tuple-filter.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/unit-filter.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/validation.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/value-assertion.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/value-filter.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2008/variable.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2010/aspect-cover-filter.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2010/concept-relation-filter.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2010/custom-function-implementation.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2010/generic-message.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2010/validation-message.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xbrl/xbrl-instance-2003-12-31-ixmod.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xbrl/xbrl-linkbase-2003-12-31-ixmod.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xbrl/xl-2003-12-31.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xbrl/xlink-2003-12-31.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xframes-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-applet-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-attribs-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-base-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-basic-form-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-basic-table-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-basic10-model-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-basic10-module-redefines-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-basic10-modules-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-basic10.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-bdo-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-blkphras-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-blkpres-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-blkstruct-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-charent-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-copyright-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-csismap-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-datatypes-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-edit-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-events-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-form-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-frames-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-framework-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-hypertext-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-iframe-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-image-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-inlphras-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-inlpres-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-inlstruct-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-inlstyle-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-legacy-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-link-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-list-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-meta-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-misc-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-nameident-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-notations-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-object-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-param-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-pres-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-ruby-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-ruby-basic-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-script-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-ssismap-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-struct-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-style-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-table-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-target-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-text-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml11-model-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml11-module-redefines-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml11-modules-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml11.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml2.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-events-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-events-2.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-events-attribs-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-events-attribs-2.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-events-copyright-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-events-copyright-2.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-handlers-2.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml-inlinexbrl-1_1-definitions.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml-inlinexbrl-1_1-model.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml-inlinexbrl-1_1-modules.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml-inlinexbrl-1_1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/match-filter.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/preferred-label.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/versioning-base.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/versioning-concept-details.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/versioning-concept-use.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2013/versioning-dimensions.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2014/extensible-enumerations.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2014/table.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2014/tablemodel.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2016/assertion-severity.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2016/severities.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2016/taxonomy-package-catalog.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2016/taxonomy-package.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2022/assertion-severity.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/2022/severities.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/dtr/type/nonNumeric-2009-12-16.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/dtr/type/numeric-2009-12-16.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/lrr/arcrole/accounting-arcrole-2023-01-04.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/lrr/arcrole/deprecated-2009-12-16.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/lrr/arcrole/esma-arcrole-2018-11-21.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/lrr/arcrole/factExplanatory-2009-12-16.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/lrr/arcrole/jpfr-arcrole-2007-11-07.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/lrr/arcrole/parent-child-2013-09-19.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/lrr/role/deprecated-2009-12-16.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/lrr/role/jpfr-role-2007-11-07.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/lrr/role/negated-2008-03-31.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/lrr/role/negated-2009-12-16.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/lrr/role/negative-2009-12-16.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/lrr/role/net-2009-12-16.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/lrr/role/positive-2009-12-16.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/lrr/role/property-2022-09-28.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/lrr/role/reference-2009-12-16.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/lrr/role/restated-2006-02-21.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/utr/2012-01-30/utr.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/utr/2012-10-31/utr.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/utr/2012-11-30/utr.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/utr/2013-02-28/utr.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/utr/2013-05-17/utr.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/utr/2016-08-10/utr.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/utr/2017-07-12/utr.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/utr/2021-02-16/utr.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/utr/2021-12-08/utr.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/utr/2022-02-16/utr.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/utr/2022-07-20/utr.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/utr/2023-12-20/utr.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/utr/2024-01-31/utr.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/utr/2024-10-22/utr.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/http/www.xbrl.org/utr/utr.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/https/www.xbrl.org/2005/conformance.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/https/www.xbrl.org/2020/extensible-enumerations-2.0.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/https/www.xbrl.org/2023/calculation-1.1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/https/www.xbrl.org/dtr/type/2020-01-21/types.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/https/www.xbrl.org/dtr/type/2022-03-31/types.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/https/www.xbrl.org/dtr/type/2024-01-31/types.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/https/www.xbrl.org/taxonomy/int/filing-indicators/REC/2021-02-03/filing-indicators-def.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/https/www.xbrl.org/taxonomy/int/filing-indicators/REC/2021-02-03/filing-indicators-label.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/cache/https/www.xbrl.org/taxonomy/int/filing-indicators/REC/2021-02-03/filing-indicators.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/libs/Tktable2.11/linux-x86_64/README.txt +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/libs/Tktable2.11/linux-x86_64/html/tkTable.html +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/libs/Tktable2.11/linux-x86_64/libTktable2.11.so +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/libs/Tktable2.11/linux-x86_64/license.txt +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/libs/Tktable2.11/linux-x86_64/pkgIndex.tcl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/libs/Tktable2.11/linux-x86_64/tkTable.tcl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/libs/Tktable2.11/linux-x86_64/tktable.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/libs/Tktable2.11/macos-arm64/README.txt +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/libs/Tktable2.11/macos-arm64/html/tkTable.html +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/libs/Tktable2.11/macos-arm64/libTktable2.11.dylib +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/libs/Tktable2.11/macos-arm64/license.txt +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/libs/Tktable2.11/macos-arm64/pkgIndex.tcl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/libs/Tktable2.11/macos-arm64/tkTable.tcl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/libs/Tktable2.11/macos-arm64/tktable.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/libs/Tktable2.11/macos-x86_64/README.txt +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/libs/Tktable2.11/macos-x86_64/html/tkTable.html +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/libs/Tktable2.11/macos-x86_64/libTktable2.11.dylib +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/libs/Tktable2.11/macos-x86_64/license.txt +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/libs/Tktable2.11/macos-x86_64/pkgIndex.tcl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/libs/Tktable2.11/macos-x86_64/tkTable.tcl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/libs/Tktable2.11/macos-x86_64/tktable.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/libs/Tktable2.11/win-x86_64/Tktable.dll +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/libs/Tktable2.11/win-x86_64/pkgIndex.tcl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/resources/libs/Tktable2.11/win-x86_64/tkTable.tcl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/scripts-macOS/startWebServer.command +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/scripts-unix/startWebServer.sh +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/scripts-windows/startWebServer.bat +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/typing.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/utils/PluginData.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/utils/PluginHooks.py +0 -0
- {arelle_release-2.37.28/arelle/utils/validate → arelle_release-2.37.30/arelle/utils}/__init__.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/utils/validate/Decorator.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/utils/validate/DetectScriptsInXhtml.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/utils/validate/ESEFImage.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/utils/validate/Validation.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/utils/validate/ValidationPlugin.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/utils/validate/ValidationUtil.py +0 -0
- {arelle_release-2.37.28/arelle/webserver → arelle_release-2.37.30/arelle/utils/validate}/__init__.py +0 -0
- {arelle_release-2.37.28/tests → arelle_release-2.37.30/arelle/webserver}/__init__.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle/webserver/bottle.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle.pyw +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelleCmdLine.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelleGUI.pyw +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle_release.egg-info/dependency_links.txt +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle_release.egg-info/entry_points.txt +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/arelle_release.egg-info/top_level.txt +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/buildVersion.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/conftest.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/distro.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docker/docker-compose.yml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docker/ubuntu.Dockerfile +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/Makefile +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/make.bat +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/source/_static/css/extra.css +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/source/build_docs.md +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/source/command_line.md +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/source/conf.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/source/contributing.md +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/source/esef.md +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/source/faq.md +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/source/images/gui_manage_plugins.png +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/source/images/gui_plugin_manager.png +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/source/images/gui_plugin_manager_browse.png +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/source/images/gui_plugin_manager_browse_button.png +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/source/images/gui_plugin_manager_select.png +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/source/images/gui_plugin_manager_select_button.png +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/source/images/gui_plugin_manager_web.png +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/source/images/gui_plugin_manager_web_button.png +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/source/index.md +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/source/install.md +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/source/license.md +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/source/plugins/development/development.md +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/source/plugins/development/getting_started.md +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/source/plugins/development/hooks.md +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/source/plugins/development/publishing.md +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/source/plugins/development/validation.md +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/source/plugins/installation.md +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/source/plugins/plugins.md +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/source/plugins/popular/arelle_ixbrl_viewer.md +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/source/plugins/popular/edgar.md +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/source/plugins/popular/inline_xbrl_document_set.md +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/source/plugins/popular/popular_plugins.md +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/source/plugins/popular/save_loadable_oim.md +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/source/plugins/popular/transforms_sec.md +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/source/plugins/popular/validation.md +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/source/plugins/popular/xule.md +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/source/plugins/using_with_cli.md +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/source/plugins/using_with_gui.md +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/source/python_api/python_api.md +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/source/user_guides/fact_deduplication.md +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/source/user_guides/user_guides.md +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/vms/mac/README.md +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/docs/vms/mac/create-macos-bootable-for-virtualbox.sh +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/generateMessagesCatalog.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/installWin64.nsi +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/installWin86.nsi +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/messages.pot +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/msgfmt.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/pygettext.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/requirements-build.txt +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/requirements-dev.txt +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/requirements-docs.txt +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/requirements-plugins.txt +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/requirements-test.txt +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/runtime.txt +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/scripts/buildLinuxDist.sh +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/scripts/buildMacDist.sh +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/scripts/buildWinDist.bat +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/setup.cfg +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/download_cache.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/integration_test_util.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/scripts/README.md +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/scripts/conftest.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/scripts/run_scripts.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/scripts/script_util.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/scripts/test_scripts.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/scripts/tests/duplicate_facts_deduplication.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/scripts/tests/duplicate_facts_validate.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/scripts/tests/eba_tablesets.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/scripts/tests/entry_point_from_taxonomy_package.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/scripts/tests/ixbrl-viewer_cli.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/scripts/tests/ixbrl-viewer_webserver.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/scripts/tests/japan_ixds.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/scripts/tests/python_api_instance_extraction.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/scripts/tests/python_api_ixbrl-viewer.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/scripts/tests/python_api_query_model.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/scripts/tests/python_api_taxonomy_service.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/scripts/tests/python_api_validate_esef.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/ui_tests/ArelleGUITest/ArelleGUITest/ArelleGUITest.csproj +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/ui_tests/ArelleGUITest/ArelleGUITest/Tests.cs +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/ui_tests/ArelleGUITest/ArelleGUITest/Usings.cs +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/ui_tests/ArelleGUITest/ArelleGUITest.sln +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/ui_tests/resources/workiva.zip +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/README.md +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/assets.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_config.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/cipc_current.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/dba_current.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/dba_multi_current.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/efm_current.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/efm_reg_dqc.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/efm_reg_pragmatic.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/esef_ixbrl_2021.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/esef_ixbrl_2022.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/esef_ixbrl_2023.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/esef_ixbrl_2024.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/esef_xhtml_2021.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/esef_xhtml_2022.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/esef_xhtml_2023.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/esef_xhtml_2024.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/hmrc_current.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/kvk_nt16.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/kvk_nt17.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/kvk_nt18.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/kvk_nt19.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/nl_inline_2024_gaap_other.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/nl_nt16.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/nl_nt17.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/nl_nt18.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/nl_nt19.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/ros_current.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/xbrl_2_1.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/xbrl_calculations_1_1.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/xbrl_dimensions_1_0.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/xbrl_dtr_2024_01_31.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/xbrl_extensible_enumerations_1_0.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/xbrl_extensible_enumerations_2_0.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/xbrl_formula_1_0.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/xbrl_formula_1_0_assertion_severity_2_0.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/xbrl_ixbrl_1_1.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/xbrl_link_role_registry_1_0.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/xbrl_oim_1_0.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/xbrl_report_packages_1_0.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/xbrl_table_linkbase_1_0.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/xbrl_taxonomy_packages_1_0.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/xbrl_transformation_registry_3.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/xbrl_transformation_registry_4.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/xbrl_transformation_registry_5.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/xbrl_utr_malformed_1_0.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/xbrl_utr_registry_1_0.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conformance_suite_configurations/xbrl_utr_structure_1_0.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/conftest.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/download_assets.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/run_conformance_suites.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/integration_tests/validation/test_conformance_suites.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/plugin/testcaseCalc11ValidateSetup.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/plugin/testcaseIxExpectedHtmlFixup.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_abridged_LLP_accounts/invalid-lp-abrid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_abridged_LLP_accounts/invalid-lp-audit-date.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_abridged_LLP_accounts/invalid-lp-small.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_abridged_LLP_accounts/testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_abridged_LLP_accounts/valid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_company_abridged_accounts/invalid-co-abrid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_company_abridged_accounts/invalid-co-audit-date.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_company_abridged_accounts/invalid-co-audit-opinion.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_company_abridged_accounts/invalid-co-audit-senior.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_company_abridged_accounts/invalid-co-small.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_company_abridged_accounts/testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_company_abridged_accounts/valid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_medium_LLP/invalid-lp-audit-date.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_medium_LLP/invalid-lp-med.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_medium_LLP/testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_medium_LLP/valid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_medium_company/invalid-co-audit-opinion.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_medium_company/invalid-co-med.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_medium_company/testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_medium_company/valid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_micro_LLP/invalid-lp-micro.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_micro_LLP/invalid-lp-smlp-profloss.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_micro_LLP/testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_micro_LLP/valid-prof-loss.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_micro_LLP/valid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_micro_company/invalid-co-micro.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_micro_company/invalid-co-smco-profloss.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_micro_company/testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_micro_company/valid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_other_LLP/invalid-lp-audit-opinion.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_other_LLP/invalid-lp-prof-loss.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_other_LLP/invalid-lp-qual-audit.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_other_LLP/testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_other_LLP/valid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_other_charity/invalid-ch-audit-date.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_other_charity/invalid-ch-char-fund.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_other_charity/invalid-ch-dir-rep.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_other_charity/testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_other_charity/valid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_other_company/invalid-co-audit-opinion.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_other_company/invalid-co-dir-date.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_other_company/invalid-co-dir-dir.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_other_company/invalid-co-prof-loss.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_other_company/invalid-co-qual-audit.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_other_company/testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_other_company/valid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_small_LLP/invalid-lp-audit-date.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_small_LLP/invalid-lp-small.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_small_LLP/testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_small_LLP/valid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_small_charity/invalid-ch-audit-auditor.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_small_charity/invalid-ch-audit-date.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_small_charity/invalid-ch-audit-opinion.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_small_charity/invalid-co-small.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_small_charity/testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_small_charity/valid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_small_company/invalid-co-audit-opinion.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_small_company/invalid-co-small.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_small_company/testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/audited_small_company/valid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/index.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/jfcvc/3312-invalid-at-least-one.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/jfcvc/3312-invalid-mandatory.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/jfcvc/3312-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/jfcvc/3315-invalid-char.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/jfcvc/3315-invalid-common.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/jfcvc/3315-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_charity_group_accounts/invalid-ch-dir-resp.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_charity_group_accounts/invalid-co-audit-nr.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_charity_group_accounts/invalid-co-sec477.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_charity_group_accounts/invalid-co-small.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_charity_group_accounts/testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_charity_group_accounts/valid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_company_abbreviated_accounts/invalid-co-auditnr.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_company_abbreviated_accounts/invalid-co-dirresp.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_company_abbreviated_accounts/invalid-co-sec477.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_company_abbreviated_accounts/invalid-co-small.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_company_abbreviated_accounts/testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_company_abbreviated_accounts/valid-welsh.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_company_abbreviated_accounts/valid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_company_abridged_accounts/invalid-co-abrid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_company_abridged_accounts/invalid-co-auditnr.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_company_abridged_accounts/invalid-co-dirresp.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_company_abridged_accounts/invalid-co-sec477.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_company_abridged_accounts/invalid-co-small.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_company_abridged_accounts/testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_company_abridged_accounts/valid-welsh.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_company_abridged_accounts/valid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_company_group_accounts/invalid-co-auditnr.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_company_group_accounts/invalid-co-dirresp.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_company_group_accounts/invalid-co-sec477.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_company_group_accounts/invalid-co-small.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_company_group_accounts/testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_company_group_accounts/valid-welsh.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_company_group_accounts/valid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_dormant_charity/invalid-ch-dir-resp.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_dormant_charity/invalid-co-audit-nr.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_dormant_charity/invalid-co-sec480.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_dormant_charity/invalid-co-small-char-dir-report.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_dormant_charity/testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_dormant_charity/valid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_dormant_company/invalid-co-auditnr.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_dormant_company/invalid-co-dirresp.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_dormant_company/invalid-co-micro.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_dormant_company/invalid-co-sec480.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_dormant_company/invalid-missing.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_dormant_company/testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_dormant_company/valid-welsh.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_dormant_company/valid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_dormant_llp/invalid-lp-memresp.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_dormant_llp/invalid-lp-sec480.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_dormant_llp/invalid-lp-smlp.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_dormant_llp/testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_dormant_llp/valid-welsh.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_dormant_llp/valid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_llp_abbreviated_accounts/invalid-lp-memresp.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_llp_abbreviated_accounts/invalid-lp-sec477.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_llp_abbreviated_accounts/invalid-lp-smlp.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_llp_abbreviated_accounts/testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_llp_abbreviated_accounts/valid-welsh.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_llp_abbreviated_accounts/valid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_llp_abridged_accounts/invalid-lp-abrid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_llp_abridged_accounts/invalid-lp-memresp.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_llp_abridged_accounts/invalid-lp-sec477.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_llp_abridged_accounts/invalid-lp-smlp.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_llp_abridged_accounts/testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_llp_abridged_accounts/valid-welsh.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_llp_abridged_accounts/valid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_llp_full_accounts/invalid-lp-memresp.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_llp_full_accounts/invalid-lp-sec477.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_llp_full_accounts/invalid-lp-smlp.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_llp_full_accounts/testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_llp_full_accounts/valid-welsh.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_llp_full_accounts/valid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_llp_group_accounts/invalid-lp-memresp.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_llp_group_accounts/invalid-lp-sec477.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_llp_group_accounts/invalid-lp-smlp.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_llp_group_accounts/testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_llp_group_accounts/valid-welsh.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_llp_group_accounts/valid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_micro_company/invalid-co-auditnr.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_micro_company/invalid-co-dirresp.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_micro_company/invalid-co-micro.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_micro_company/invalid-co-sec477.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_micro_company/invalid-missing.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_micro_company/testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_micro_company/valid-welsh.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_micro_company/valid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_micro_llp/invalid-lp-memresp.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_micro_llp/invalid-lp-micro.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_micro_llp/invalid-lp-sec477.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_micro_llp/testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_micro_llp/valid-welsh.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_micro_llp/valid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_small_company_full_accounts/invalid-co-auditnr.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_small_company_full_accounts/invalid-co-dirresp.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_small_company_full_accounts/invalid-co-sec477.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_small_company_full_accounts/invalid-co-small.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_small_company_full_accounts/testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_small_company_full_accounts/valid-welsh.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/HMRC/unaudited_small_company_full_accounts/valid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/cipc/README.md +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/cipc/index.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/cipc/main/hidden-mandatory-fact.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/cipc/main/invalid - 1982-008520-07 - 2019.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/cipc/main/valid - 1982-008520-07 - 2019.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/cipc/main/valid-filing.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/README.md +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr1-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr1-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr20-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr20-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr24-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr24-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr25-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr25-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr33-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr33-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr34-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr34-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr35-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr35-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr36-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr36-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr37-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr37-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr41-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr41-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr48-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr48-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr52-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr52-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr53-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr53-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr56-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr56-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr57-equality.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr57-missing-current.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr57-missing-previous.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr57-negative-facts.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr57-no-current-period.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr57-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr58-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr58-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr58-valid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr59-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr59-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr63-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr63-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr7-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr7-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr71-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr71-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr72-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr72-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr73-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr73-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr74-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr74a-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr74b-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr75-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr75-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr77-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr77a-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr77b-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr81-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr81-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr83-invalid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr83-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr87-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr87-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr89-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr89-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr89-valid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr91-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr91-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr92-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/fr92-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/valid-ixbrl-001.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/fr/valid-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/index.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tc/tc02-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tc/tc02-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/th/th01-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/th/th01-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/th/th05-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/th/th05-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/th/th06-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/th/th06-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/th/th10-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/th/th10-linkbase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/th/th10-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/th/th14-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/th/th14-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tm/tm12-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tm/tm12-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tm/tm13-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tm/tm13-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tm/tm16-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tm/tm16-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tm/tm18-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tm/tm18-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tm/tm20-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tm/tm20-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tm/tm22-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tm/tm22-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tm/tm24-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tm/tm24-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tm/tm25-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tm/tm25-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tm/tm26-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tm/tm26-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tm/tm27-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tm/tm27-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tm/tm28-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tm/tm28-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tm/tm29-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tm/tm29-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tm/tm30-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tm/tm30-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tm/tm31-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tm/tm31-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tm/tm32-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tm/tm32-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tm/tm33-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tm/tm33-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tr/tr01-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tr/tr01-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tr/tr02-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tr/tr02-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tr/tr03-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tr/tr03-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tr/tr05-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tr/tr05-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tr/tr06-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tr/tr06-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tr/tr09-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tr/tr09-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tr/tr11-base-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tr/tr11-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tr/tr11-url-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tr/tr12-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tr/tr12-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tr/tr19-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba/tr/tr19-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba_multi/README.md +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba_multi/index.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba_multi/tr/tr15-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba_multi/tr/tr15-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba_multi/tr/tr16-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba_multi/tr/tr16-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba_multi/tr/tr17-invalid.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba_multi/tr/tr17-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba_multi/tr/valid-ixbrl-001.xhtml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/dba_multi/tr/valid-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/br_kvk/2-04-invalid-period.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/br_kvk/2-04-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/br_kvk/3-01-missing.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/br_kvk/3-01-multiple.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/br_kvk/3-01-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/br_kvk/4-07-invalid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/br_kvk/4-07-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/br_kvk/4-10-invalid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/br_kvk/4-10-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/br_kvk/4-12-invalid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/br_kvk/4-12-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/br_kvk/4-16-missing.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/br_kvk/4-16-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/br_kvk/4-17-invalid-period.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/br_kvk/4-17-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/br_kvk/4-20-invalid-date.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/br_kvk/4-20-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fg_nl/03-invalid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fg_nl/03-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fg_nl/04-invalid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fg_nl/04-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fg_nl/05-invalid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fg_nl/05-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fg_nl/09-invalid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fg_nl/09-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fg_nl/11-custom-unit.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fg_nl/11-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_kvk/1-01-invalid-file-extension.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_kvk/1-01-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_kvk/2-01-invalid-lang.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_kvk/2-01-missing-lang.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_kvk/2-01-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_kvk/2-02-multiple-lang-fact.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_kvk/2-02-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_kvk/2-03-entrypoint.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_kvk/2-03-invalid-entrypoint.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_kvk/2-03-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_kvk/5-01-invalid-decimals.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_kvk/5-01-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_kvk/5-02-invalid-decimals.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_kvk/5-02-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/1-01-invalid-file.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/1-01-invalid-zip.zip +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/1-01-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/1-02-invalid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/1-02-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/1-03-invalid-doctype.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/1-03-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/1-04-invalid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/1-04-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/1-05-invalid-encoding.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/1-05-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/1-06-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/1-06.invalid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/2-03-missing-lang.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/2-03-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/2-04-entrypoint-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/2-04-entrypoint-2.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/2-04-multiple-schemarefs.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/2-04-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/2-05-invalid-linkbaseref.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/2-05-linkbase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/2-05-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/2-06-invalid-file.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/2-06-invalid-zip.zip +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/2-06-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/2-07-invalid-xsi-nil-false.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/2-07-invalid-xsi-nil-true.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/2-07-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/3-01-invalid-period-date-with-time.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/3-01-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/3-02-invalid-forever-period.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/3-02-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/3-03-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/3-03-unused-context.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/3-04-duplicate-contexts-dimension.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/3-04-duplicate-contexts-instant.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/3-04-duplicate-contexts-period.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/3-04-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/4-01-duplicate-units-divide.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/4-01-duplicate-units-measure.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/4-01-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/4-02-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/4-02-unused-unit.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/5-01-duplicate-facts-no-unit.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/5-01-duplicate-facts-with-unit.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/5-01-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/5-03-null-fact.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/5-03-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/5-06-invalid-precision.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/5-06-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/5-11-invalid-content.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/5-11-invalid-type.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/5-11-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/6-01-invalid-footnote.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/fr_nl/6-01-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/index.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt16/mock-taxonomy.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/br_kvk/2-04-invalid-period.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/br_kvk/2-04-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/br_kvk/3-01-missing.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/br_kvk/3-01-multiple.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/br_kvk/3-01-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/br_kvk/4-07-invalid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/br_kvk/4-07-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/br_kvk/4-10-invalid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/br_kvk/4-10-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/br_kvk/4-12-invalid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/br_kvk/4-12-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/br_kvk/4-16-missing.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/br_kvk/4-16-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/br_kvk/4-17-invalid-period.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/br_kvk/4-17-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/br_kvk/4-20-invalid-date.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/br_kvk/4-20-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fg_nl/03-invalid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fg_nl/03-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fg_nl/04-invalid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fg_nl/04-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fg_nl/05-invalid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fg_nl/05-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fg_nl/09-invalid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fg_nl/09-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fg_nl/11-custom-unit.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fg_nl/11-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_kvk/1-01-invalid-file-extension.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_kvk/1-01-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_kvk/2-01-invalid-lang.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_kvk/2-01-missing-lang.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_kvk/2-01-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_kvk/2-02-multiple-lang-fact.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_kvk/2-02-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_kvk/2-03-entrypoint.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_kvk/2-03-invalid-entrypoint.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_kvk/2-03-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_kvk/5-01-invalid-decimals.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_kvk/5-01-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_kvk/5-02-invalid-decimals.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_kvk/5-02-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/1-01-invalid-file.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/1-01-invalid-zip.zip +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/1-01-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/1-02-invalid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/1-02-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/1-03-invalid-doctype.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/1-03-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/1-04-invalid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/1-04-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/1-05-invalid-encoding.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/1-05-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/1-06-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/1-06.invalid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/2-03-missing-lang.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/2-03-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/2-04-entrypoint-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/2-04-entrypoint-2.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/2-04-multiple-schemarefs.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/2-04-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/2-05-invalid-linkbaseref.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/2-05-linkbase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/2-05-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/2-06-invalid-file.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/2-06-invalid-zip.zip +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/2-06-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/2-07-invalid-xsi-nil-false.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/2-07-invalid-xsi-nil-true.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/2-07-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/3-01-invalid-period-date-with-time.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/3-01-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/3-02-invalid-forever-period.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/3-02-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/3-03-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/3-03-unused-context.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/3-04-duplicate-contexts-dimension.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/3-04-duplicate-contexts-instant.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/3-04-duplicate-contexts-period.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/3-04-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/4-01-duplicate-units-divide.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/4-01-duplicate-units-measure.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/4-01-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/4-02-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/4-02-unused-unit.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/5-01-duplicate-facts-no-unit.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/5-01-duplicate-facts-with-unit.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/5-01-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/5-03-null-fact.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/5-03-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/5-06-invalid-precision.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/5-06-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/5-11-invalid-content.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/5-11-invalid-type.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/5-11-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/6-01-invalid-footnote.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/fr_nl/6-01-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/index.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt17/mock-taxonomy.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/br_kvk/2-04-invalid-period.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/br_kvk/2-04-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/br_kvk/3-01-missing.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/br_kvk/3-01-multiple.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/br_kvk/3-01-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/br_kvk/4-07-invalid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/br_kvk/4-07-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/br_kvk/4-10-invalid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/br_kvk/4-10-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/br_kvk/4-12-invalid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/br_kvk/4-12-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/br_kvk/4-16-missing.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/br_kvk/4-16-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/br_kvk/4-17-invalid-period.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/br_kvk/4-17-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/br_kvk/4-20-invalid-date.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/br_kvk/4-20-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fg_nl/03-invalid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fg_nl/03-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fg_nl/04-invalid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fg_nl/04-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fg_nl/05-invalid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fg_nl/05-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fg_nl/09-invalid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fg_nl/09-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fg_nl/11-custom-unit.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fg_nl/11-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_kvk/1-01-invalid-file-extension.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_kvk/1-01-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_kvk/2-01-invalid-lang.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_kvk/2-01-missing-lang.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_kvk/2-01-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_kvk/2-02-multiple-lang-fact.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_kvk/2-02-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_kvk/2-03-entrypoint.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_kvk/2-03-invalid-entrypoint.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_kvk/2-03-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_kvk/5-01-invalid-decimals.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_kvk/5-01-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_kvk/5-02-invalid-decimals.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_kvk/5-02-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/1-01-invalid-file.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/1-01-invalid-zip.zip +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/1-01-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/1-02-invalid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/1-02-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/1-03-invalid-doctype.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/1-03-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/1-04-invalid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/1-04-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/1-05-invalid-encoding.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/1-05-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/1-06-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/1-06.invalid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/2-03-missing-lang.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/2-03-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/2-04-entrypoint-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/2-04-entrypoint-2.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/2-04-multiple-schemarefs.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/2-04-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/2-05-invalid-linkbaseref.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/2-05-linkbase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/2-05-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/2-06-invalid-file.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/2-06-invalid-zip.zip +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/2-06-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/2-07-invalid-xsi-nil-false.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/2-07-invalid-xsi-nil-true.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/2-07-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/3-01-invalid-period-date-with-time.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/3-01-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/3-02-invalid-forever-period.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/3-02-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/3-03-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/3-03-unused-context.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/3-04-duplicate-contexts-dimension.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/3-04-duplicate-contexts-instant.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/3-04-duplicate-contexts-period.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/3-04-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/4-01-duplicate-units-divide.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/4-01-duplicate-units-measure.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/4-01-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/4-02-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/4-02-unused-unit.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/5-01-duplicate-facts-no-unit.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/5-01-duplicate-facts-with-unit.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/5-01-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/5-03-null-fact.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/5-03-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/5-06-invalid-precision.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/5-06-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/5-11-invalid-content.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/5-11-invalid-type.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/5-11-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/6-01-invalid-footnote.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/fr_nl/6-01-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/index.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt18/mock-taxonomy.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/br_kvk/2-04-invalid-period.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/br_kvk/2-04-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/br_kvk/3-01-missing.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/br_kvk/3-01-multiple.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/br_kvk/3-01-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/br_kvk/4-07-invalid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/br_kvk/4-07-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/br_kvk/4-10-invalid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/br_kvk/4-10-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/br_kvk/4-12-invalid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/br_kvk/4-12-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/br_kvk/4-16-missing.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/br_kvk/4-16-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/br_kvk/4-17-invalid-period.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/br_kvk/4-17-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/br_kvk/4-20-invalid-date.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/br_kvk/4-20-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fg_nl/03-invalid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fg_nl/03-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fg_nl/04-invalid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fg_nl/04-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fg_nl/05-invalid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fg_nl/05-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fg_nl/09-invalid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fg_nl/09-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fg_nl/11-custom-unit.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fg_nl/11-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_kvk/1-01-invalid-file-extension.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_kvk/1-01-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_kvk/2-01-invalid-lang.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_kvk/2-01-missing-lang.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_kvk/2-01-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_kvk/2-02-multiple-lang-fact.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_kvk/2-02-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_kvk/2-03-entrypoint.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_kvk/2-03-invalid-entrypoint.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_kvk/2-03-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_kvk/5-01-invalid-decimals.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_kvk/5-01-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_kvk/5-02-invalid-decimals.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_kvk/5-02-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/1-01-invalid-file.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/1-01-invalid-zip.zip +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/1-01-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/1-02-invalid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/1-02-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/1-03-invalid-doctype.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/1-03-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/1-04-invalid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/1-04-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/1-05-invalid-encoding.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/1-05-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/1-06-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/1-06.invalid.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/2-03-missing-lang.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/2-03-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/2-04-entrypoint-1.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/2-04-entrypoint-2.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/2-04-multiple-schemarefs.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/2-04-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/2-05-invalid-linkbaseref.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/2-05-linkbase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/2-05-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/2-06-invalid-file.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/2-06-invalid-zip.zip +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/2-06-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/2-07-invalid-xsi-nil-false.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/2-07-invalid-xsi-nil-true.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/2-07-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/3-01-invalid-period-date-with-time.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/3-01-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/3-02-invalid-forever-period.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/3-02-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/3-03-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/3-03-unused-context.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/3-04-duplicate-contexts-dimension.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/3-04-duplicate-contexts-instant.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/3-04-duplicate-contexts-period.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/3-04-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/4-01-duplicate-units-divide.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/4-01-duplicate-units-measure.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/4-01-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/4-02-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/4-02-unused-unit.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/5-01-duplicate-facts-no-unit.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/5-01-duplicate-facts-with-unit.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/5-01-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/5-03-null-fact.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/5-03-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/5-06-invalid-precision.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/5-06-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/5-11-invalid-content.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/5-11-invalid-type.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/5-11-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/6-01-invalid-footnote.xbrl +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/fr_nl/6-01-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/index.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/nl_nt19/mock-taxonomy.xsd +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/ros/index.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/ros/main/ros18-invalid.htm +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/ros/main/ros18-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/ros/main/ros19-invalid-mismatch.htm +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/ros/main/ros19-invalid-missing.htm +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/ros/main/ros19-invalid-two.htm +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/ros/main/ros19-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/ros/main/ros6-invalid-101.htm +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/ros/main/ros6-invalid-ifrs.htm +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/ros/main/ros6-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/ros/main/valid-101.htm +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/ros/main/valid-ifrs.htm +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites/ros/main/valid-testcase.xml +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites_expected/efm_current.csv +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites_expected/efm_reg_dqc.csv +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites_expected/efm_reg_pragmatic.csv +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites_timing/dba_current.json +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites_timing/efm_current.json +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites_timing/efm_reg_dqc.json +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites_timing/esef_ixbrl_2021.json +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites_timing/esef_ixbrl_2022.json +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites_timing/esef_ixbrl_2023.json +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites_timing/esef_ixbrl_2024.json +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites_timing/hmrc_current.json +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites_timing/kvk_nt16.json +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites_timing/kvk_nt17.json +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites_timing/kvk_nt18.json +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites_timing/nl_nt16.json +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites_timing/nl_nt17.json +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites_timing/nl_nt18.json +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites_timing/xbrl_2_1.json +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites_timing/xbrl_formula_1_0.json +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites_timing/xbrl_ixbrl_1_1.json +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/resources/conformance_suites_timing/xbrl_table_linkbase_1_0.json +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/unit_tests/arelle/conformance/test_csv_testcase_loader.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/unit_tests/arelle/conftest.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/unit_tests/arelle/formula/test_fact_aspects_cache.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/unit_tests/arelle/oim/test_load.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/unit_tests/arelle/plugin/test_plugin_imports.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/unit_tests/arelle/plugin/validate/ESEF/ESEF_Current/test_validate_css_url.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/unit_tests/arelle/test_betafeatures.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/unit_tests/arelle/test_cntlr.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/unit_tests/arelle/test_frozen_dict.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/unit_tests/arelle/test_frozen_ordered_set.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/unit_tests/arelle/test_functionfn.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/unit_tests/arelle/test_import.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/unit_tests/arelle/test_locale.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/unit_tests/arelle/test_modelmanager.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/unit_tests/arelle/test_ordered_set.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/unit_tests/arelle/test_packagemanager.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/unit_tests/arelle/test_pluginmanager.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/unit_tests/arelle/test_qname.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/unit_tests/arelle/test_runtimeoptions.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/unit_tests/arelle/test_system_info.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/unit_tests/arelle/test_updater.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/unit_tests/arelle/test_urlutil.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/unit_tests/arelle/test_validatexbrlcalcs.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/unit_tests/arelle/test_version.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/unit_tests/arelle/test_xhtmlvalidate.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/unit_tests/arelle/test_xmlutil.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/unit_tests/arelle/test_xmlvalidate.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tests/unit_tests/arelle/utils/validate/test_decorator.py +0 -0
- {arelle_release-2.37.28 → arelle_release-2.37.30}/tox.ini +0 -0
|
@@ -13,7 +13,7 @@ on:
|
|
|
13
13
|
required: false
|
|
14
14
|
type: string
|
|
15
15
|
python_version:
|
|
16
|
-
default: '3.13.
|
|
16
|
+
default: '3.13.5'
|
|
17
17
|
description: 'Python version to use'
|
|
18
18
|
required: false
|
|
19
19
|
type: string
|
|
@@ -40,7 +40,7 @@ on:
|
|
|
40
40
|
required: true
|
|
41
41
|
type: string
|
|
42
42
|
python_version:
|
|
43
|
-
default: '3.13.
|
|
43
|
+
default: '3.13.5'
|
|
44
44
|
description: 'Python version to use'
|
|
45
45
|
required: true
|
|
46
46
|
type: string
|
|
@@ -18,7 +18,7 @@ on:
|
|
|
18
18
|
required: false
|
|
19
19
|
type: string
|
|
20
20
|
python_version:
|
|
21
|
-
default: '3.13.
|
|
21
|
+
default: '3.13.5'
|
|
22
22
|
description: 'Python version to use'
|
|
23
23
|
required: false
|
|
24
24
|
type: string
|
|
@@ -60,7 +60,7 @@ on:
|
|
|
60
60
|
required: true
|
|
61
61
|
type: string
|
|
62
62
|
python_version:
|
|
63
|
-
default: '3.13.
|
|
63
|
+
default: '3.13.5'
|
|
64
64
|
description: 'Python version to use'
|
|
65
65
|
required: true
|
|
66
66
|
type: string
|
|
@@ -8,7 +8,7 @@ on:
|
|
|
8
8
|
required: false
|
|
9
9
|
type: string
|
|
10
10
|
python_version:
|
|
11
|
-
default: '3.13.
|
|
11
|
+
default: '3.13.5'
|
|
12
12
|
description: 'Python version to use'
|
|
13
13
|
required: false
|
|
14
14
|
type: string
|
|
@@ -36,7 +36,7 @@ on:
|
|
|
36
36
|
required: false
|
|
37
37
|
type: string
|
|
38
38
|
python_version:
|
|
39
|
-
default: '3.13.
|
|
39
|
+
default: '3.13.5'
|
|
40
40
|
description: 'Python version to use'
|
|
41
41
|
required: true
|
|
42
42
|
type: string
|
|
@@ -4,14 +4,14 @@ on:
|
|
|
4
4
|
workflow_call:
|
|
5
5
|
inputs:
|
|
6
6
|
python_version:
|
|
7
|
-
default: '3.13.
|
|
7
|
+
default: '3.13.5'
|
|
8
8
|
description: 'Python version to use'
|
|
9
9
|
required: false
|
|
10
10
|
type: string
|
|
11
11
|
workflow_dispatch:
|
|
12
12
|
inputs:
|
|
13
13
|
python_version:
|
|
14
|
-
default: '3.13.
|
|
14
|
+
default: '3.13.5'
|
|
15
15
|
description: 'Python version to use'
|
|
16
16
|
required: true
|
|
17
17
|
type: string
|
{arelle_release-2.37.28 → arelle_release-2.37.30}/.github/workflows/test-scripts-parallel.yml
RENAMED
|
@@ -28,7 +28,7 @@ jobs:
|
|
|
28
28
|
matrix:
|
|
29
29
|
name: ${{ fromJson(needs.find-tests.outputs.names) }}
|
|
30
30
|
os:
|
|
31
|
-
- macos-
|
|
31
|
+
- macos-15
|
|
32
32
|
- ubuntu-24.04
|
|
33
33
|
- windows-2022
|
|
34
34
|
python-version:
|
|
@@ -36,7 +36,7 @@ jobs:
|
|
|
36
36
|
- '3.10'
|
|
37
37
|
- '3.11'
|
|
38
38
|
- '3.12'
|
|
39
|
-
- '3.13.
|
|
39
|
+
- '3.13.5'
|
|
40
40
|
steps:
|
|
41
41
|
- uses: actions/checkout@v4.2.2
|
|
42
42
|
with:
|
|
@@ -21,7 +21,7 @@ jobs:
|
|
|
21
21
|
fail-fast: false
|
|
22
22
|
matrix:
|
|
23
23
|
os:
|
|
24
|
-
- macos-
|
|
24
|
+
- macos-15
|
|
25
25
|
- ubuntu-24.04
|
|
26
26
|
- windows-2022
|
|
27
27
|
python-version:
|
|
@@ -29,7 +29,7 @@ jobs:
|
|
|
29
29
|
- '3.10'
|
|
30
30
|
- '3.11'
|
|
31
31
|
- '3.12'
|
|
32
|
-
- '3.13.
|
|
32
|
+
- '3.13.5'
|
|
33
33
|
steps:
|
|
34
34
|
- uses: actions/checkout@v4.2.2
|
|
35
35
|
- name: Install Python 3
|
|
@@ -8,7 +8,7 @@ on:
|
|
|
8
8
|
required: false
|
|
9
9
|
type: string
|
|
10
10
|
python_version:
|
|
11
|
-
default: '3.13.
|
|
11
|
+
default: '3.13.5'
|
|
12
12
|
description: 'Python version to use'
|
|
13
13
|
required: false
|
|
14
14
|
type: string
|
|
@@ -82,7 +82,7 @@ jobs:
|
|
|
82
82
|
with:
|
|
83
83
|
cache: 'pip'
|
|
84
84
|
check-latest: true
|
|
85
|
-
python-version: ${{ github.event_name == 'workflow_dispatch' && inputs.python_version || '3.13.
|
|
85
|
+
python-version: ${{ github.event_name == 'workflow_dispatch' && inputs.python_version || '3.13.5' }}
|
|
86
86
|
- name: Install Python dependencies
|
|
87
87
|
if: matrix.build-type == 'source'
|
|
88
88
|
run: |
|
|
@@ -15,7 +15,7 @@ jobs:
|
|
|
15
15
|
fail-fast: false
|
|
16
16
|
matrix:
|
|
17
17
|
os:
|
|
18
|
-
- macos-
|
|
18
|
+
- macos-15
|
|
19
19
|
- ubuntu-24.04
|
|
20
20
|
- windows-2022
|
|
21
21
|
python-version:
|
|
@@ -23,7 +23,7 @@ jobs:
|
|
|
23
23
|
- '3.10'
|
|
24
24
|
- '3.11'
|
|
25
25
|
- '3.12'
|
|
26
|
-
- '3.13.
|
|
26
|
+
- '3.13.5'
|
|
27
27
|
runs-on: ${{ matrix.os }}
|
|
28
28
|
steps:
|
|
29
29
|
- uses: actions/checkout@v4.2.2
|
|
@@ -47,6 +47,7 @@ obj/
|
|
|
47
47
|
tests/resources/conformance_suites/*
|
|
48
48
|
!tests/resources/conformance_suites/cipc/
|
|
49
49
|
!tests/resources/conformance_suites/dba/
|
|
50
|
+
!tests/resources/conformance_suites/edinet/
|
|
50
51
|
!tests/resources/conformance_suites/hmrc/
|
|
51
52
|
!tests/resources/conformance_suites/nl_*/
|
|
52
53
|
!tests/resources/conformance_suites/ros/
|
|
@@ -68,12 +68,12 @@ Here's how to set up your environment:
|
|
|
68
68
|
2. Install a supported version of Python.
|
|
69
69
|
For example,
|
|
70
70
|
|
|
71
|
-
pyenv install 3.13.
|
|
71
|
+
pyenv install 3.13.5
|
|
72
72
|
|
|
73
73
|
3. Create a virtual env using the Python version you just installed.
|
|
74
74
|
For example,
|
|
75
75
|
|
|
76
|
-
PYENV_VERSION=3.13.
|
|
76
|
+
PYENV_VERSION=3.13.5 pyenv exec python -m venv venv
|
|
77
77
|
4. Activate your environment:
|
|
78
78
|
|
|
79
79
|
source venv/bin/activate
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: arelle-release
|
|
3
|
-
Version: 2.37.
|
|
3
|
+
Version: 2.37.30
|
|
4
4
|
Summary: An open source XBRL platform.
|
|
5
5
|
Author-email: "arelle.org" <support@arelle.org>
|
|
6
6
|
License: Apache-2.0
|
|
@@ -41,6 +41,7 @@ Requires-Dist: pillow<12,>=10
|
|
|
41
41
|
Requires-Dist: pyparsing==3.*
|
|
42
42
|
Requires-Dist: python-dateutil==2.*
|
|
43
43
|
Requires-Dist: regex
|
|
44
|
+
Requires-Dist: truststore==0.*; python_version > "3.9"
|
|
44
45
|
Requires-Dist: typing-extensions==4.*
|
|
45
46
|
Provides-Extra: crypto
|
|
46
47
|
Requires-Dist: pycryptodome==3.*; extra == "crypto"
|
|
@@ -238,9 +238,11 @@ def getLocale() -> str | None:
|
|
|
238
238
|
systemLocale = tryRunCommand("pwsh", "-Command", "Get-Culture | Select -ExpandProperty IetfLanguageTag")
|
|
239
239
|
if pythonCompatibleLocale := findCompatibleLocale(systemLocale):
|
|
240
240
|
_locale = pythonCompatibleLocale
|
|
241
|
-
elif sys.version_info < (3, 12):
|
|
241
|
+
elif sys.version_info < (3, 12) or (3, 13, 3) <= sys.version_info[:3] <= (3, 13, 4):
|
|
242
242
|
# Using locale.setlocale(...) because getlocale() in Python versions prior to 3.12 incorrectly aliased C.UTF-8 to en_US.UTF-8.
|
|
243
243
|
# https://github.com/python/cpython/issues/74940
|
|
244
|
+
# Similar bug was reintroduced in Python 3.13.3 and fixed in 3.13.5.
|
|
245
|
+
# https://github.com/python/cpython/pull/135347
|
|
244
246
|
_locale = locale.setlocale(locale.LC_CTYPE).partition(POSIX_LOCALE_ENCODING_SEPARATOR)[0]
|
|
245
247
|
else:
|
|
246
248
|
_locale = locale.getlocale()[0]
|
|
@@ -319,9 +319,15 @@ class ModelTestcaseVariation(ModelObject):
|
|
|
319
319
|
errorElements = XmlUtil.descendants(self, None, "error")
|
|
320
320
|
resultElement = XmlUtil.descendant(self, None, "result")
|
|
321
321
|
if isinstance(errorElements,list) and len(errorElements) > 0:
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
322
|
+
errorCodes = []
|
|
323
|
+
for errorElement in errorElements:
|
|
324
|
+
if errorElement.get("nonStandardErrorCodes"):
|
|
325
|
+
errorCode = errorElement.stringValue
|
|
326
|
+
else:
|
|
327
|
+
errorCode = ModelValue.qname(errorElement, errorElement.stringValue)
|
|
328
|
+
num = int(errorElement.attr("num") or 1)
|
|
329
|
+
errorCodes.extend([errorCode] * num)
|
|
330
|
+
return errorCodes
|
|
325
331
|
#else:
|
|
326
332
|
# errorElement = errorElements[1]
|
|
327
333
|
# if errorElement is not None and not errorElement.get("nonStandardErrorCodes"):
|
|
@@ -338,17 +338,18 @@ class Validate:
|
|
|
338
338
|
loadedModels.append(modelXbrl)
|
|
339
339
|
PackageManager.packageInfo(self.modelXbrl.modelManager.cntlr, readMeFirstUri, reload=True, errors=modelXbrl.errors)
|
|
340
340
|
else: # not a multi-schemaRef versioning report
|
|
341
|
+
readMeFirstUriIsArchive = isReportPackageExtension(readMeFirstUri)
|
|
341
342
|
readMeFirstUriIsEmbeddedZipFile = False
|
|
342
343
|
if self.useFileSource.isArchive and not isLegacyAbs(readMeFirstUri):
|
|
343
|
-
if
|
|
344
|
+
if readMeFirstUriIsArchive:
|
|
344
345
|
readMeFirstUriIsEmbeddedZipFile = True
|
|
345
346
|
else:
|
|
346
347
|
normalizedReadMeFirstUri = self.modelXbrl.modelManager.cntlr.webCache.normalizeUrl(readMeFirstUri, baseForElement)
|
|
347
348
|
archivePath = FileSource.archiveFilenameParts(normalizedReadMeFirstUri)
|
|
348
349
|
if archivePath:
|
|
349
350
|
with self.useFileSource.fs.open(archivePath[1]) as embeddedFile:
|
|
350
|
-
readMeFirstUriIsEmbeddedZipFile = zipfile.is_zipfile(embeddedFile)
|
|
351
|
-
if not
|
|
351
|
+
readMeFirstUriIsArchive = readMeFirstUriIsEmbeddedZipFile = zipfile.is_zipfile(embeddedFile)
|
|
352
|
+
if not readMeFirstUriIsArchive:
|
|
352
353
|
modelXbrl = ModelXbrl.load(self.modelXbrl.modelManager,
|
|
353
354
|
readMeFirstUri,
|
|
354
355
|
_("validating"),
|
|
@@ -400,7 +401,16 @@ class Validate:
|
|
|
400
401
|
# resolve an IXDS in entrypoints
|
|
401
402
|
for pluginXbrlMethod in pluginClassMethods("ModelTestcaseVariation.ArchiveIxds"):
|
|
402
403
|
pluginXbrlMethod(self, filesource,entrypoints)
|
|
403
|
-
|
|
404
|
+
for entrypoint in entrypoints:
|
|
405
|
+
filesource.select(entrypoint.get("file", None))
|
|
406
|
+
modelXbrl = ModelXbrl.load(self.modelXbrl.modelManager,
|
|
407
|
+
filesource,
|
|
408
|
+
_("validating"),
|
|
409
|
+
base=filesource.basefile + "/",
|
|
410
|
+
errorCaptureLevel=errorCaptureLevel,
|
|
411
|
+
ixdsTarget=modelTestcaseVariation.ixdsTarget,
|
|
412
|
+
errors=preLoadingErrors)
|
|
413
|
+
loadedModels.append(modelXbrl)
|
|
404
414
|
except Exception as err:
|
|
405
415
|
self.modelXbrl.error("exception:" + type(err).__name__,
|
|
406
416
|
_("Testcase variation validation exception: %(error)s, entry URL: %(instance)s"),
|
|
@@ -427,15 +437,16 @@ class Validate:
|
|
|
427
437
|
# Legacy ESEF conformance suite logic.
|
|
428
438
|
for pluginXbrlMethod in pluginClassMethods("ModelTestcaseVariation.ReportPackageIxds"):
|
|
429
439
|
filesource.select(pluginXbrlMethod(filesource, **_rptPkgIxdsOptions))
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
440
|
+
if len(loadedModels) == 0:
|
|
441
|
+
modelXbrl = ModelXbrl.load(self.modelXbrl.modelManager,
|
|
442
|
+
filesource,
|
|
443
|
+
_("validating"),
|
|
444
|
+
base=baseForElement,
|
|
445
|
+
errorCaptureLevel=errorCaptureLevel,
|
|
446
|
+
ixdsTarget=modelTestcaseVariation.ixdsTarget,
|
|
447
|
+
isLoadable=modelTestcaseVariation.variationDiscoversDTS or filesource.url,
|
|
448
|
+
errors=preLoadingErrors)
|
|
449
|
+
loadedModels.append(modelXbrl)
|
|
439
450
|
|
|
440
451
|
for model in loadedModels:
|
|
441
452
|
modelXbrl.isTestcaseVariation = True
|
|
@@ -730,7 +741,11 @@ class Validate:
|
|
|
730
741
|
indexPath = indexPath[len(baseZipFile) + 1:]
|
|
731
742
|
indexPath = indexPath.replace("\\", "/")
|
|
732
743
|
variationIdPath = f'{indexPath}:{modelTestcaseVariation.id}'
|
|
733
|
-
|
|
744
|
+
userExpectedErrors = []
|
|
745
|
+
for userPattern, userErrors in testcaseExpectedErrors.items():
|
|
746
|
+
if fnmatch.fnmatch(variationIdPath, userPattern):
|
|
747
|
+
userExpectedErrors.extend(userErrors)
|
|
748
|
+
if userExpectedErrors:
|
|
734
749
|
if expected is None:
|
|
735
750
|
expected = []
|
|
736
751
|
if isinstance(expected, str):
|
|
@@ -27,6 +27,13 @@ try:
|
|
|
27
27
|
import ssl
|
|
28
28
|
except ImportError:
|
|
29
29
|
ssl = None
|
|
30
|
+
|
|
31
|
+
try:
|
|
32
|
+
import truststore
|
|
33
|
+
except ImportError:
|
|
34
|
+
# truststore requires Python > 3.9
|
|
35
|
+
truststore = None
|
|
36
|
+
|
|
30
37
|
from arelle.FileSource import SERVER_WEB_CACHE, archiveFilenameParts
|
|
31
38
|
from arelle.PluginManager import pluginClassMethods
|
|
32
39
|
from arelle.UrlUtil import isHttpUrl
|
|
@@ -267,12 +274,10 @@ class WebCache:
|
|
|
267
274
|
self.http_auth_handler = proxyhandlers.HTTPBasicAuthHandler()
|
|
268
275
|
proxyHandlers = [self.proxy_handler, self.proxy_auth_handler, self.http_auth_handler]
|
|
269
276
|
if ssl:
|
|
270
|
-
#
|
|
271
|
-
context = ssl.create_default_context()
|
|
277
|
+
# Attempt to load the default CA certificates from the OS using truststore if available, else fallback to OpenSSL's default context.
|
|
278
|
+
context = truststore.SSLContext(ssl.PROTOCOL_TLS_CLIENT) if truststore else ssl.create_default_context()
|
|
272
279
|
# Include certifi certificates (Mozilla’s carefully curated
|
|
273
|
-
# collection) for systems with outdated certs
|
|
274
|
-
# that we're unable to load certs from (macOS and some Linux
|
|
275
|
-
# distros.)
|
|
280
|
+
# collection) for systems with outdated certs.
|
|
276
281
|
context.load_verify_locations(cafile=certifi.where())
|
|
277
282
|
if self.noCertificateCheck: # this is required in some Akamai environments, such as sec.gov
|
|
278
283
|
context.check_hostname = False
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
DISCLOSURE_SYSTEM_EDINET = 'EDINET'
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
"""
|
|
2
|
+
See COPYRIGHT.md for copyright information.
|
|
3
|
+
"""
|
|
4
|
+
from __future__ import annotations
|
|
5
|
+
|
|
6
|
+
from enum import Enum
|
|
7
|
+
from functools import cached_property, lru_cache
|
|
8
|
+
from pathlib import Path
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class FormType(Enum):
|
|
12
|
+
ATTACH_DOC = "AttachDoc"
|
|
13
|
+
AUDIT_DOC = "AuditDoc"
|
|
14
|
+
ENGLISH_DOC = "EnglishDoc"
|
|
15
|
+
PRIVATE_ATTACH = "PrivateAttach"
|
|
16
|
+
PRIVATE_DOC = "PrivateDoc"
|
|
17
|
+
PUBLIC_DOC = "PublicDoc"
|
|
18
|
+
|
|
19
|
+
@classmethod
|
|
20
|
+
def parse(cls, value: str) -> FormType | None:
|
|
21
|
+
try:
|
|
22
|
+
return cls(value)
|
|
23
|
+
except ValueError:
|
|
24
|
+
return None
|
|
25
|
+
|
|
26
|
+
@cached_property
|
|
27
|
+
def extensionCategory(self) -> ExtensionCategory | None:
|
|
28
|
+
return FORM_TYPE_EXTENSION_CATEGORIES.get(self, None)
|
|
29
|
+
|
|
30
|
+
@cached_property
|
|
31
|
+
def manifestName(self) -> str:
|
|
32
|
+
return f'manifest_{self.value}.xml'
|
|
33
|
+
|
|
34
|
+
@cached_property
|
|
35
|
+
def manifestPath(self) -> Path:
|
|
36
|
+
return self.xbrlDirectory / self.manifestName
|
|
37
|
+
|
|
38
|
+
@cached_property
|
|
39
|
+
def xbrlDirectory(self) -> Path:
|
|
40
|
+
return Path('XBRL') / str(self.value)
|
|
41
|
+
|
|
42
|
+
@lru_cache(1)
|
|
43
|
+
def getValidExtensions(self, isAmendment: bool, isSubdirectory: bool) -> frozenset[str] | None:
|
|
44
|
+
if self.extensionCategory is None:
|
|
45
|
+
return None
|
|
46
|
+
return self.extensionCategory.getValidExtensions(isAmendment, isSubdirectory)
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
class ExtensionCategory(Enum):
|
|
50
|
+
ATTACH = 'ATTACH'
|
|
51
|
+
DOC = 'DOC'
|
|
52
|
+
ENGLISH_DOC = 'ENGLISH_DOC'
|
|
53
|
+
|
|
54
|
+
def getValidExtensions(self, isAmendment: bool, isSubdirectory: bool) -> frozenset[str] | None:
|
|
55
|
+
amendmentMap = VALID_EXTENSIONS[isAmendment]
|
|
56
|
+
categoryMap = amendmentMap.get(self, None)
|
|
57
|
+
if categoryMap is None:
|
|
58
|
+
return None
|
|
59
|
+
return categoryMap.get(isSubdirectory, None)
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
FORM_TYPE_EXTENSION_CATEGORIES = {
|
|
63
|
+
FormType.ATTACH_DOC: ExtensionCategory.ATTACH,
|
|
64
|
+
FormType.AUDIT_DOC: ExtensionCategory.DOC,
|
|
65
|
+
FormType.ENGLISH_DOC: ExtensionCategory.ENGLISH_DOC,
|
|
66
|
+
FormType.PRIVATE_ATTACH: ExtensionCategory.ATTACH,
|
|
67
|
+
FormType.PRIVATE_DOC: ExtensionCategory.DOC,
|
|
68
|
+
FormType.PUBLIC_DOC: ExtensionCategory.DOC,
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
HTML_EXTENSIONS = frozenset({'.htm', '.html', '.xhtml'})
|
|
73
|
+
IMAGE_EXTENSIONS = frozenset({'.jpeg', '.jpg', '.gif', '.png'})
|
|
74
|
+
ASSET_EXTENSIONS = frozenset(HTML_EXTENSIONS | IMAGE_EXTENSIONS)
|
|
75
|
+
XBRL_EXTENSIONS = frozenset(HTML_EXTENSIONS | {'.xml', '.xsd'})
|
|
76
|
+
ATTACH_EXTENSIONS = frozenset(HTML_EXTENSIONS | {'.pdf', })
|
|
77
|
+
ENGLISH_DOC_EXTENSIONS = frozenset(ASSET_EXTENSIONS | frozenset({'.pdf', '.xml', '.txt'}))
|
|
78
|
+
|
|
79
|
+
# Is Amendment -> Category -> Is Subdirectory
|
|
80
|
+
VALID_EXTENSIONS = {
|
|
81
|
+
False: {
|
|
82
|
+
ExtensionCategory.ATTACH: {
|
|
83
|
+
False: ATTACH_EXTENSIONS,
|
|
84
|
+
True: ASSET_EXTENSIONS,
|
|
85
|
+
},
|
|
86
|
+
ExtensionCategory.DOC: {
|
|
87
|
+
False: XBRL_EXTENSIONS,
|
|
88
|
+
True: ASSET_EXTENSIONS
|
|
89
|
+
},
|
|
90
|
+
},
|
|
91
|
+
True: {
|
|
92
|
+
ExtensionCategory.ATTACH: {
|
|
93
|
+
False: ATTACH_EXTENSIONS,
|
|
94
|
+
True: ASSET_EXTENSIONS,
|
|
95
|
+
},
|
|
96
|
+
ExtensionCategory.DOC: {
|
|
97
|
+
False: HTML_EXTENSIONS,
|
|
98
|
+
True: ASSET_EXTENSIONS,
|
|
99
|
+
},
|
|
100
|
+
ExtensionCategory.ENGLISH_DOC: {
|
|
101
|
+
False: ENGLISH_DOC_EXTENSIONS,
|
|
102
|
+
True: ENGLISH_DOC_EXTENSIONS,
|
|
103
|
+
},
|
|
104
|
+
},
|
|
105
|
+
}
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
"""
|
|
2
|
+
See COPYRIGHT.md for copyright information.
|
|
3
|
+
"""
|
|
4
|
+
from __future__ import annotations
|
|
5
|
+
|
|
6
|
+
import zipfile
|
|
7
|
+
from collections import defaultdict
|
|
8
|
+
from dataclasses import dataclass
|
|
9
|
+
from functools import lru_cache
|
|
10
|
+
from pathlib import Path
|
|
11
|
+
|
|
12
|
+
from arelle.ModelXbrl import ModelXbrl
|
|
13
|
+
from arelle.ValidateXbrl import ValidateXbrl
|
|
14
|
+
from arelle.typing import TypeGetText
|
|
15
|
+
from arelle.utils.PluginData import PluginData
|
|
16
|
+
from .FormType import FormType
|
|
17
|
+
|
|
18
|
+
_: TypeGetText
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
@dataclass(frozen=True)
|
|
22
|
+
class UploadContents:
|
|
23
|
+
amendmentPaths: dict[FormType, frozenset[Path]]
|
|
24
|
+
directories: frozenset[Path]
|
|
25
|
+
forms: dict[FormType, frozenset[Path]]
|
|
26
|
+
unknownPaths: frozenset[Path]
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
@dataclass
|
|
30
|
+
class PluginValidationDataExtension(PluginData):
|
|
31
|
+
_primaryModelXbrl: ModelXbrl | None = None
|
|
32
|
+
|
|
33
|
+
# Identity hash for caching.
|
|
34
|
+
def __hash__(self) -> int:
|
|
35
|
+
return id(self)
|
|
36
|
+
|
|
37
|
+
@lru_cache(1)
|
|
38
|
+
def shouldValidateUpload(self, val: ValidateXbrl) -> bool:
|
|
39
|
+
"""
|
|
40
|
+
Determine if the upload validation should be performed on this model.
|
|
41
|
+
|
|
42
|
+
Upload validation should not be performed if the target document is
|
|
43
|
+
not a zipfile.
|
|
44
|
+
|
|
45
|
+
Upload validation should only be performed once for the entire package,
|
|
46
|
+
not duplicated for each model. To facilitate this with Arelle's validation
|
|
47
|
+
system which largely prevents referencing other models, we can use `--keepOpen`
|
|
48
|
+
and check if the given model is the first to be loaded.
|
|
49
|
+
:param val: The ValidateXbrl instance with a model to check.
|
|
50
|
+
:return: True if upload validation should be performed, False otherwise.
|
|
51
|
+
"""
|
|
52
|
+
modelXbrl = val.modelXbrl
|
|
53
|
+
if modelXbrl == val.testModelXbrl:
|
|
54
|
+
# Not running within a testcase
|
|
55
|
+
if modelXbrl != modelXbrl.modelManager.loadedModelXbrls[0]:
|
|
56
|
+
return False
|
|
57
|
+
if not modelXbrl.fileSource.fs:
|
|
58
|
+
return False # No stream
|
|
59
|
+
if not isinstance(modelXbrl.fileSource.fs, zipfile.ZipFile):
|
|
60
|
+
return False # Not a zipfile
|
|
61
|
+
return True
|
|
62
|
+
|
|
63
|
+
@lru_cache(1)
|
|
64
|
+
def getUploadContents(self, modelXbrl: ModelXbrl) -> UploadContents:
|
|
65
|
+
uploadFilepaths = self.getUploadFilepaths(modelXbrl)
|
|
66
|
+
amendmentPaths = defaultdict(list)
|
|
67
|
+
unknownPaths = []
|
|
68
|
+
directories = []
|
|
69
|
+
forms = defaultdict(list)
|
|
70
|
+
for path in uploadFilepaths:
|
|
71
|
+
parents = list(reversed([p.name for p in path.parents if len(p.name) > 0]))
|
|
72
|
+
if len(parents) == 0:
|
|
73
|
+
continue
|
|
74
|
+
if parents[0] == 'XBRL':
|
|
75
|
+
if len(parents) > 1:
|
|
76
|
+
formName = parents[1]
|
|
77
|
+
formType = FormType.parse(formName)
|
|
78
|
+
if formType is not None:
|
|
79
|
+
forms[formType].append(path)
|
|
80
|
+
continue
|
|
81
|
+
formName = parents[0]
|
|
82
|
+
formType = FormType.parse(formName)
|
|
83
|
+
if formType is not None:
|
|
84
|
+
amendmentPaths[formType].append(path)
|
|
85
|
+
continue
|
|
86
|
+
if len(path.suffix) == 0:
|
|
87
|
+
directories.append(path)
|
|
88
|
+
continue
|
|
89
|
+
unknownPaths.append(path)
|
|
90
|
+
return UploadContents(
|
|
91
|
+
amendmentPaths={k: frozenset(v) for k, v in amendmentPaths.items() if len(v) > 0},
|
|
92
|
+
directories=frozenset(directories),
|
|
93
|
+
forms={k: frozenset(v) for k, v in forms.items() if len(v) > 0},
|
|
94
|
+
unknownPaths=frozenset(unknownPaths)
|
|
95
|
+
)
|
|
96
|
+
|
|
97
|
+
@lru_cache(1)
|
|
98
|
+
def getUploadFilepaths(self, modelXbrl: ModelXbrl) -> list[Path]:
|
|
99
|
+
if not modelXbrl.fileSource.fs or \
|
|
100
|
+
not isinstance(modelXbrl.fileSource.fs, zipfile.ZipFile):
|
|
101
|
+
modelXbrl.warning(
|
|
102
|
+
codes="EDINET.uploadNotValidated",
|
|
103
|
+
msg=_("The target file is not a zip file, so upload validation could not be performed.")
|
|
104
|
+
)
|
|
105
|
+
return []
|
|
106
|
+
paths = set()
|
|
107
|
+
for name in modelXbrl.fileSource.fs.namelist():
|
|
108
|
+
path = Path(name)
|
|
109
|
+
paths.add(path)
|
|
110
|
+
paths.update(path.parents)
|
|
111
|
+
return sorted(paths)
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"""
|
|
2
|
+
See COPYRIGHT.md for copyright information.
|
|
3
|
+
"""
|
|
4
|
+
from __future__ import annotations
|
|
5
|
+
|
|
6
|
+
from typing import Any
|
|
7
|
+
|
|
8
|
+
from arelle.ValidateXbrl import ValidateXbrl
|
|
9
|
+
from arelle.typing import TypeGetText
|
|
10
|
+
from arelle.utils.validate.ValidationPlugin import ValidationPlugin
|
|
11
|
+
from .DisclosureSystems import DISCLOSURE_SYSTEM_EDINET
|
|
12
|
+
from .PluginValidationDataExtension import PluginValidationDataExtension
|
|
13
|
+
|
|
14
|
+
_: TypeGetText
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
class ValidationPluginExtension(ValidationPlugin):
|
|
18
|
+
def newPluginData(self, validateXbrl: ValidateXbrl) -> PluginValidationDataExtension:
|
|
19
|
+
disclosureSystem = validateXbrl.disclosureSystem.name
|
|
20
|
+
if disclosureSystem == DISCLOSURE_SYSTEM_EDINET:
|
|
21
|
+
pass
|
|
22
|
+
else:
|
|
23
|
+
raise ValueError(f'Invalid EDINET disclosure system: {disclosureSystem}')
|
|
24
|
+
return PluginValidationDataExtension(
|
|
25
|
+
self.name,
|
|
26
|
+
)
|
|
27
|
+
|
|
28
|
+
def modelXbrlLoadComplete(self, *args: Any, **kwargs: Any) -> None:
|
|
29
|
+
return None
|