arelle-release 2.17.1__py3-none-any.whl → 2.37.71__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- arelle/Aspect.py +6 -3
- arelle/BetaFeatures.py +3 -0
- arelle/Cntlr.py +117 -413
- arelle/CntlrCmdLine.py +364 -227
- arelle/CntlrQuickBooks.py +4 -2
- arelle/CntlrWebMain.py +179 -119
- arelle/CntlrWinMain.py +342 -124
- arelle/DialogAbout.py +1 -1
- arelle/DialogArcroleGroup.py +1 -1
- arelle/DialogFind.py +1 -1
- arelle/DialogFormulaParameters.py +2 -2
- arelle/DialogLanguage.py +45 -36
- arelle/DialogNewFactItem.py +1 -1
- arelle/DialogOpenArchive.py +30 -34
- arelle/DialogPackageManager.py +11 -8
- arelle/DialogPluginManager.py +43 -89
- arelle/DialogRssWatch.py +2 -2
- arelle/DialogURL.py +1 -1
- arelle/DialogUserPassword.py +1 -1
- arelle/DisclosureSystem.py +69 -1
- arelle/ErrorManager.py +321 -0
- arelle/FileSource.py +201 -99
- arelle/FunctionFn.py +44 -5
- arelle/FunctionIxt.py +16 -13
- arelle/FunctionUtil.py +1 -1
- arelle/FunctionXfi.py +68 -24
- arelle/FunctionXs.py +1 -1
- arelle/HtmlUtil.py +5 -4
- arelle/LeiUtil.py +63 -43
- arelle/LinkbaseType.py +94 -0
- arelle/LocalViewer.py +8 -2
- arelle/Locale.py +239 -79
- arelle/ModelDocument.py +180 -48
- arelle/ModelDtsObject.py +32 -27
- arelle/ModelFormulaObject.py +14 -6
- arelle/ModelInstanceObject.py +43 -14
- arelle/ModelManager.py +6 -1
- arelle/ModelObject.py +12 -8
- arelle/ModelObjectFactory.py +18 -2
- arelle/ModelRelationshipSet.py +46 -3
- arelle/ModelRenderingObject.py +899 -951
- arelle/ModelRssItem.py +2 -4
- arelle/ModelTestcaseObject.py +41 -4
- arelle/ModelValue.py +42 -14
- arelle/ModelVersReport.py +1 -1
- arelle/ModelXbrl.py +133 -273
- arelle/PackageManager.py +202 -176
- arelle/PluginManager.py +551 -239
- arelle/PluginUtils.py +54 -0
- arelle/PrototypeInstanceObject.py +53 -12
- arelle/PythonUtil.py +166 -25
- arelle/RuntimeOptions.py +32 -18
- arelle/SocketUtils.py +3 -0
- arelle/SystemInfo.py +1 -1
- arelle/TkTableWrapper.py +33 -5
- arelle/UITkTable.py +27 -21
- arelle/Updater.py +7 -3
- arelle/UrlUtil.py +6 -2
- arelle/Validate.py +596 -402
- arelle/ValidateDuplicateFacts.py +584 -0
- arelle/ValidateFileSource.py +38 -0
- arelle/ValidateFilingText.py +46 -29
- arelle/ValidateInfoset.py +104 -32
- arelle/ValidateUtr.py +31 -4
- arelle/ValidateXbrl.py +144 -120
- arelle/ValidateXbrlCalcs.py +51 -66
- arelle/ValidateXbrlDTS.py +98 -29
- arelle/Version.py +2 -7
- arelle/ViewFile.py +2 -0
- arelle/ViewFileDTS.py +7 -2
- arelle/ViewFileFactList.py +1 -1
- arelle/ViewFileFactTable.py +4 -4
- arelle/ViewFileRelationshipSet.py +36 -19
- arelle/ViewFileRenderedGrid.py +164 -753
- arelle/ViewFileRenderedLayout.py +174 -0
- arelle/ViewFileRenderedStructure.py +108 -0
- arelle/ViewWinDTS.py +4 -1
- arelle/ViewWinFactList.py +1 -1
- arelle/ViewWinFactTable.py +1 -1
- arelle/ViewWinRelationshipSet.py +14 -8
- arelle/ViewWinRenderedGrid.py +397 -287
- arelle/ViewWinRssFeed.py +4 -0
- arelle/ViewWinTree.py +15 -9
- arelle/ViewWinXml.py +1 -1
- arelle/WebCache.py +510 -272
- arelle/XbrlConst.py +202 -196
- arelle/XbrlUtil.py +2 -1
- arelle/XhtmlValidate.py +9 -23
- arelle/XmlUtil.py +24 -19
- arelle/XmlValidate.py +95 -67
- arelle/XmlValidateParticles.py +4 -4
- arelle/_version.py +33 -3
- arelle/api/Session.py +183 -0
- arelle/config/creationSoftwareNames.json +24 -10
- arelle/config/disclosuresystems.xml +1 -1
- arelle/config/disclosuresystems.xsd +3 -0
- arelle/config/sbr-text-formatting.xsd +737 -0
- arelle/conformance/CSVTestcaseLoader.py +102 -0
- arelle/formula/FactAspectsCache.py +10 -4
- arelle/formula/ValidateFormula.py +82 -194
- arelle/formula/XPathContext.py +42 -28
- arelle/formula/XPathParser.py +15 -9
- arelle/locale/ar_EG/LC_MESSAGES/ar_EG.po +3 -4
- arelle/locale/messages.pot +1 -2
- arelle/locale/ru/LC_MESSAGES/ru.po +2 -2
- arelle/logging/formatters/LogFormatter.py +47 -0
- arelle/logging/handlers/LogHandlerWithXml.py +94 -0
- arelle/logging/handlers/LogToBufferHandler.py +20 -0
- arelle/logging/handlers/LogToPrintHandler.py +41 -0
- arelle/logging/handlers/LogToXmlHandler.py +244 -0
- arelle/logging/handlers/StructuredMessageLogHandler.py +74 -0
- arelle/model/CommentBase.py +3 -0
- arelle/model/ElementBase.py +3 -0
- arelle/model/PIBase.py +3 -0
- arelle/model/__init__.py +3 -0
- arelle/oim/Load.py +2869 -0
- arelle/oim/Validate.py +155 -0
- arelle/oim/xml/Save.py +21 -0
- arelle/packages/PackageConst.py +7 -0
- arelle/packages/PackageType.py +13 -0
- arelle/packages/PackageUtils.py +22 -0
- arelle/packages/PackageValidation.py +200 -0
- arelle/packages/report/DetectReportPackage.py +13 -0
- arelle/packages/report/ReportPackage.py +265 -0
- arelle/packages/report/ReportPackageConst.py +79 -0
- arelle/packages/report/ReportPackageValidator.py +207 -0
- arelle/plugin/EdgarRendererAllReports.py +12 -12
- arelle/plugin/OimTaxonomy/ModelValueMore.py +15 -0
- arelle/plugin/OimTaxonomy/ValidateDTS.py +484 -0
- arelle/plugin/OimTaxonomy/ViewXbrlTxmyObj.py +239 -0
- arelle/plugin/OimTaxonomy/XbrlAbstract.py +16 -0
- arelle/plugin/OimTaxonomy/XbrlConcept.py +68 -0
- arelle/plugin/OimTaxonomy/XbrlConst.py +261 -0
- arelle/plugin/OimTaxonomy/XbrlCube.py +91 -0
- arelle/plugin/OimTaxonomy/XbrlDimension.py +38 -0
- arelle/plugin/OimTaxonomy/XbrlDts.py +152 -0
- arelle/plugin/OimTaxonomy/XbrlEntity.py +16 -0
- arelle/plugin/OimTaxonomy/XbrlGroup.py +22 -0
- arelle/plugin/OimTaxonomy/XbrlImportedTaxonomy.py +22 -0
- arelle/plugin/OimTaxonomy/XbrlLabel.py +31 -0
- arelle/plugin/OimTaxonomy/XbrlNetwork.py +100 -0
- arelle/plugin/OimTaxonomy/XbrlProperty.py +28 -0
- arelle/plugin/OimTaxonomy/XbrlReference.py +33 -0
- arelle/plugin/OimTaxonomy/XbrlReport.py +24 -0
- arelle/plugin/OimTaxonomy/XbrlTableTemplate.py +35 -0
- arelle/plugin/OimTaxonomy/XbrlTaxonomy.py +93 -0
- arelle/plugin/OimTaxonomy/XbrlTaxonomyObject.py +154 -0
- arelle/plugin/OimTaxonomy/XbrlTransform.py +17 -0
- arelle/plugin/OimTaxonomy/XbrlTypes.py +23 -0
- arelle/plugin/OimTaxonomy/XbrlUnit.py +17 -0
- arelle/plugin/OimTaxonomy/__init__.py +1037 -0
- arelle/plugin/OimTaxonomy/resources/iso4217.json +4479 -0
- arelle/plugin/OimTaxonomy/resources/oim-taxonomy-schema.json +935 -0
- arelle/plugin/OimTaxonomy/resources/ref.json +333 -0
- arelle/plugin/OimTaxonomy/resources/transform-types.json +2481 -0
- arelle/plugin/OimTaxonomy/resources/types.json +727 -0
- arelle/plugin/OimTaxonomy/resources/utr.json +3046 -0
- arelle/plugin/OimTaxonomy/resources/xbrlSpec.json +1082 -0
- arelle/plugin/formulaLoader.py +3 -3
- arelle/plugin/formulaSaver.py +4 -4
- arelle/plugin/inlineXbrlDocumentSet.py +331 -102
- arelle/plugin/internet/proxyNTLM/HTTPNtlmAuthHandler.py +1 -1
- arelle/plugin/loadFromExcel.py +13 -10
- arelle/plugin/loadFromOIM.py +16 -3096
- arelle/plugin/logging/saveMessages.py +1 -1
- arelle/plugin/saveHtmlEBAtables.py +293 -213
- arelle/plugin/saveLoadableOIM.py +652 -361
- arelle/plugin/saveOIMTaxonomy.py +311 -0
- arelle/plugin/streamingExtensions.py +1 -1
- arelle/plugin/systemInfo.py +46 -0
- arelle/plugin/transforms/tester.py +4 -4
- arelle/plugin/validate/CIPC/Const.py +18 -0
- arelle/plugin/validate/CIPC/__init__.py +34 -13
- arelle/plugin/validate/DBA/DisclosureSystems.py +12 -0
- arelle/plugin/validate/DBA/PluginValidationDataExtension.py +165 -0
- arelle/plugin/validate/DBA/ValidationPluginExtension.py +545 -0
- arelle/plugin/validate/DBA/__init__.py +49 -0
- arelle/plugin/validate/DBA/resources/config.xml +21 -0
- arelle/plugin/validate/DBA/rules/__init__.py +323 -0
- arelle/plugin/validate/DBA/rules/fr.py +1377 -0
- arelle/plugin/validate/DBA/rules/tc.py +45 -0
- arelle/plugin/validate/DBA/rules/th.py +172 -0
- arelle/plugin/validate/DBA/rules/tm.py +351 -0
- arelle/plugin/validate/DBA/rules/tr.py +373 -0
- arelle/plugin/validate/EBA/__init__.py +11 -12
- arelle/plugin/validate/EDINET/Constants.py +208 -0
- arelle/plugin/validate/EDINET/ContextRequirement.py +58 -0
- arelle/plugin/validate/EDINET/ControllerPluginData.py +298 -0
- arelle/plugin/validate/EDINET/CoverItemRequirements.py +42 -0
- arelle/plugin/validate/EDINET/DeiRequirements.py +118 -0
- arelle/plugin/validate/EDINET/DisclosureSystems.py +1 -0
- arelle/plugin/validate/EDINET/FilingFormat.py +275 -0
- arelle/plugin/validate/EDINET/FormType.py +134 -0
- arelle/plugin/validate/EDINET/ManifestInstance.py +236 -0
- arelle/plugin/validate/EDINET/PluginValidationDataExtension.py +640 -0
- arelle/plugin/validate/EDINET/ReportFolderType.py +162 -0
- arelle/plugin/validate/EDINET/Statement.py +139 -0
- arelle/plugin/validate/EDINET/TableOfContentsBuilder.py +493 -0
- arelle/plugin/validate/EDINET/UploadContents.py +48 -0
- arelle/plugin/validate/EDINET/ValidationPluginExtension.py +64 -0
- arelle/plugin/validate/EDINET/__init__.py +109 -0
- arelle/plugin/validate/EDINET/resources/config.xml +22 -0
- arelle/plugin/validate/EDINET/resources/cover-item-requirements.json +793 -0
- arelle/plugin/validate/EDINET/resources/dei-requirements.csv +27 -0
- arelle/plugin/validate/EDINET/resources/edinet-taxonomies.xml +62 -0
- arelle/plugin/validate/EDINET/rules/contexts.py +547 -0
- arelle/plugin/validate/EDINET/rules/edinet.py +1991 -0
- arelle/plugin/validate/EDINET/rules/frta.py +301 -0
- arelle/plugin/validate/EDINET/rules/gfm.py +2394 -0
- arelle/plugin/validate/EDINET/rules/manifests.py +88 -0
- arelle/plugin/validate/EDINET/rules/upload.py +1370 -0
- arelle/plugin/validate/ESEF/Const.py +16 -75
- arelle/plugin/validate/ESEF/Dimensions.py +2 -2
- arelle/plugin/validate/ESEF/ESEF_2021/DTS.py +6 -1
- arelle/plugin/validate/ESEF/ESEF_2021/Image.py +7 -4
- arelle/plugin/validate/ESEF/ESEF_2021/ValidateXbrlFinally.py +80 -57
- arelle/plugin/validate/ESEF/ESEF_Current/DTS.py +60 -22
- arelle/plugin/validate/ESEF/ESEF_Current/ValidateXbrlFinally.py +272 -133
- arelle/plugin/validate/ESEF/Util.py +5 -19
- arelle/plugin/validate/ESEF/__init__.py +61 -46
- arelle/plugin/validate/ESEF/resources/authority-validations.json +120 -10
- arelle/plugin/validate/ESEF/resources/config.xml +44 -3
- arelle/plugin/validate/FERC/__init__.py +31 -18
- arelle/plugin/validate/FERC/config.xml +18 -18
- arelle/plugin/validate/NL/DisclosureSystems.py +19 -3
- arelle/plugin/validate/NL/PluginValidationDataExtension.py +710 -7
- arelle/plugin/validate/NL/ValidationPluginExtension.py +117 -12
- arelle/plugin/validate/NL/__init__.py +21 -10
- arelle/plugin/validate/NL/resources/config.xml +27 -6
- arelle/plugin/validate/NL/rules/br_kvk.py +81 -21
- arelle/plugin/validate/NL/rules/fg_nl.py +292 -0
- arelle/plugin/validate/NL/rules/fr_kvk.py +60 -7
- arelle/plugin/validate/NL/rules/fr_nl.py +705 -24
- arelle/plugin/validate/NL/rules/nl_kvk.py +2182 -0
- arelle/plugin/validate/ROS/DisclosureSystems.py +1 -0
- arelle/plugin/validate/ROS/PluginValidationDataExtension.py +109 -0
- arelle/plugin/validate/ROS/ValidationPluginExtension.py +27 -0
- arelle/plugin/validate/ROS/__init__.py +28 -341
- arelle/plugin/validate/ROS/resources/config.xml +20 -0
- arelle/plugin/validate/ROS/rules/__init__.py +56 -0
- arelle/plugin/validate/ROS/rules/ros.py +393 -0
- arelle/plugin/validate/UK/ValidateUK.py +1372 -0
- arelle/plugin/validate/{HMRC → UK}/__init__.py +195 -189
- arelle/plugin/validate/{HMRC → UK}/config.xml +1 -1
- arelle/plugin/xbrlDB/SqlDb.py +1 -1
- arelle/plugin/xbrlDB/XbrlOpenSqlDB.py +5 -5
- arelle/plugin/xbrlDB/XbrlPublicPostgresDB.py +1 -1
- arelle/plugin/xbrlDB/XbrlSemanticJsonDB.py +1 -1
- arelle/plugin/xbrlDB/XbrlSemanticRdfDB.py +1 -1
- arelle/plugin/xbrlDB/__init__.py +4 -1
- arelle/{RenderingEvaluator.py → rendering/RenderingEvaluator.py} +120 -99
- arelle/rendering/RenderingLayout.py +476 -0
- arelle/rendering/RenderingResolution.py +814 -0
- arelle/resources/cache/http/www.eurofiling.info/eu/fr/xbrl/ext/filing-indicators.xsd +20 -0
- arelle/resources/cache/http/www.w3.org/2001/03/xml.xsd +117 -0
- arelle/resources/cache/http/www.w3.org/2001/XMLSchema.xsd +2534 -0
- arelle/resources/cache/http/www.w3.org/2001/xml.xsd +287 -0
- arelle/resources/cache/http/www.xbrl.org/2003/xbrl-instance-2003-12-31.xsd +779 -0
- arelle/resources/cache/http/www.xbrl.org/2003/xbrl-linkbase-2003-12-31.xsd +486 -0
- arelle/resources/cache/http/www.xbrl.org/2003/xl-2003-12-31.xsd +251 -0
- arelle/resources/cache/http/www.xbrl.org/2003/xlink-2003-12-31.xsd +121 -0
- arelle/resources/cache/http/www.xbrl.org/2004/ref-2004-08-10.xsd +129 -0
- arelle/resources/cache/http/www.xbrl.org/2005/xbrldt-2005.xsd +53 -0
- arelle/resources/cache/http/www.xbrl.org/2006/ref-2006-02-27.xsd +120 -0
- arelle/resources/cache/http/www.xbrl.org/2006/xbrldi-2006.xsd +41 -0
- arelle/resources/cache/http/www.xbrl.org/2008/boolean-filter.xsd +51 -0
- arelle/resources/cache/http/www.xbrl.org/2008/concept-filter.xsd +127 -0
- arelle/resources/cache/http/www.xbrl.org/2008/conformance.xsd +116 -0
- arelle/resources/cache/http/www.xbrl.org/2008/conformanceFunction.xsd +51 -0
- arelle/resources/cache/http/www.xbrl.org/2008/consistency-assertion.xsd +66 -0
- arelle/resources/cache/http/www.xbrl.org/2008/dimension-filter.xsd +86 -0
- arelle/resources/cache/http/www.xbrl.org/2008/entity-filter.xsd +92 -0
- arelle/resources/cache/http/www.xbrl.org/2008/existence-assertion.xsd +44 -0
- arelle/resources/cache/http/www.xbrl.org/2008/formula.xsd +261 -0
- arelle/resources/cache/http/www.xbrl.org/2008/function.xsd +90 -0
- arelle/resources/cache/http/www.xbrl.org/2008/general-filter.xsd +38 -0
- arelle/resources/cache/http/www.xbrl.org/2008/generic-label.xsd +80 -0
- arelle/resources/cache/http/www.xbrl.org/2008/generic-link.xsd +81 -0
- arelle/resources/cache/http/www.xbrl.org/2008/generic-reference.xsd +63 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xbrl/xbrl-instance-2003-12-31-ixmod.xsd +788 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xbrl/xbrl-linkbase-2003-12-31-ixmod.xsd +488 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xbrl/xl-2003-12-31.xsd +248 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xbrl/xlink-2003-12-31.xsd +117 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xframes-1.xsd +166 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-applet-1.xsd +66 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-attribs-1.xsd +72 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-base-1.xsd +36 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-basic-form-1.xsd +195 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-basic-table-1.xsd +169 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-basic10-model-1.xsd +376 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-basic10-module-redefines-1.xsd +61 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-basic10-modules-1.xsd +259 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-basic10.xsd +98 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-bdo-1.xsd +78 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-blkphras-1.xsd +161 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-blkpres-1.xsd +37 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-blkstruct-1.xsd +49 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-charent-1.xsd +38 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-copyright-1.xsd +29 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-csismap-1.xsd +96 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-datatypes-1.xsd +128 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-edit-1.xsd +39 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-events-1.xsd +130 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-form-1.xsd +326 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-frames-1.xsd +113 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-framework-1.xsd +66 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-hypertext-1.xsd +47 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-iframe-1.xsd +68 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-image-1.xsd +45 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-inlphras-1.xsd +163 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-inlpres-1.xsd +39 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-inlstruct-1.xsd +50 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-inlstyle-1.xsd +27 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-legacy-1.xsd +97 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-link-1.xsd +45 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-list-1.xsd +99 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-meta-1.xsd +42 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-misc-1.xsd +441 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-nameident-1.xsd +63 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-notations-1.xsd +69 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-object-1.xsd +76 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-param-1.xsd +51 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-pres-1.xsd +51 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-ruby-1.xsd +171 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-ruby-basic-1.xsd +89 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-script-1.xsd +70 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-ssismap-1.xsd +43 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-struct-1.xsd +112 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-style-1.xsd +52 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-table-1.xsd +272 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-target-1.xsd +53 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-text-1.xsd +67 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml11-model-1.xsd +677 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml11-module-redefines-1.xsd +335 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml11-modules-1.xsd +528 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml11.xsd +104 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml2.xsd +21 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-events-1.xsd +73 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-events-2.xsd +74 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-events-attribs-1.xsd +73 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-events-attribs-2.xsd +75 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-events-copyright-1.xsd +34 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-events-copyright-2.xsd +34 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-handlers-2.xsd +98 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml-inlinexbrl-1_0-definitions.xsd +225 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml-inlinexbrl-1_0-model.xsd +681 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml-inlinexbrl-1_0-modules.xsd +535 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml-inlinexbrl-1_0.xsd +40 -0
- arelle/resources/cache/http/www.xbrl.org/2008/match-filter.xsd +94 -0
- arelle/resources/cache/http/www.xbrl.org/2008/period-filter.xsd +86 -0
- arelle/resources/cache/http/www.xbrl.org/2008/registry.xsd +145 -0
- arelle/resources/cache/http/www.xbrl.org/2008/relative-filter.xsd +38 -0
- arelle/resources/cache/http/www.xbrl.org/2008/segment-scenario-filter.xsd +41 -0
- arelle/resources/cache/http/www.xbrl.org/2008/tuple-filter.xsd +83 -0
- arelle/resources/cache/http/www.xbrl.org/2008/unit-filter.xsd +58 -0
- arelle/resources/cache/http/www.xbrl.org/2008/validation.xsd +78 -0
- arelle/resources/cache/http/www.xbrl.org/2008/value-assertion.xsd +43 -0
- arelle/resources/cache/http/www.xbrl.org/2008/value-filter.xsd +43 -0
- arelle/resources/cache/http/www.xbrl.org/2008/variable.xsd +240 -0
- arelle/resources/cache/http/www.xbrl.org/2010/aspect-cover-filter.xsd +67 -0
- arelle/resources/cache/http/www.xbrl.org/2010/concept-relation-filter.xsd +108 -0
- arelle/resources/cache/http/www.xbrl.org/2010/custom-function-implementation.xsd +71 -0
- arelle/resources/cache/http/www.xbrl.org/2010/generic-message.xsd +68 -0
- arelle/resources/cache/http/www.xbrl.org/2010/validation-message.xsd +50 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xbrl/xbrl-instance-2003-12-31-ixmod.xsd +788 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xbrl/xbrl-linkbase-2003-12-31-ixmod.xsd +488 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xbrl/xl-2003-12-31.xsd +248 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xbrl/xlink-2003-12-31.xsd +117 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xframes-1.xsd +166 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-applet-1.xsd +66 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-attribs-1.xsd +72 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-base-1.xsd +36 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-basic-form-1.xsd +195 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-basic-table-1.xsd +169 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-basic10-model-1.xsd +376 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-basic10-module-redefines-1.xsd +61 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-basic10-modules-1.xsd +259 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-basic10.xsd +98 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-bdo-1.xsd +78 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-blkphras-1.xsd +161 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-blkpres-1.xsd +37 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-blkstruct-1.xsd +49 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-charent-1.xsd +38 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-copyright-1.xsd +29 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-csismap-1.xsd +96 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-datatypes-1.xsd +128 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-edit-1.xsd +39 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-events-1.xsd +130 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-form-1.xsd +326 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-frames-1.xsd +113 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-framework-1.xsd +66 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-hypertext-1.xsd +47 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-iframe-1.xsd +68 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-image-1.xsd +45 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-inlphras-1.xsd +163 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-inlpres-1.xsd +39 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-inlstruct-1.xsd +50 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-inlstyle-1.xsd +27 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-legacy-1.xsd +97 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-link-1.xsd +45 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-list-1.xsd +99 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-meta-1.xsd +42 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-misc-1.xsd +441 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-nameident-1.xsd +63 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-notations-1.xsd +69 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-object-1.xsd +76 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-param-1.xsd +51 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-pres-1.xsd +51 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-ruby-1.xsd +171 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-ruby-basic-1.xsd +89 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-script-1.xsd +70 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-ssismap-1.xsd +43 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-struct-1.xsd +112 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-style-1.xsd +52 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-table-1.xsd +272 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-target-1.xsd +53 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-text-1.xsd +67 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml11-model-1.xsd +677 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml11-module-redefines-1.xsd +335 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml11-modules-1.xsd +528 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml11.xsd +104 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml2.xsd +21 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-events-1.xsd +73 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-events-2.xsd +74 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-events-attribs-1.xsd +73 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-events-attribs-2.xsd +75 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-events-copyright-1.xsd +34 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-events-copyright-2.xsd +34 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-handlers-2.xsd +98 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml-inlinexbrl-1_1-definitions.xsd +252 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml-inlinexbrl-1_1-model.xsd +681 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml-inlinexbrl-1_1-modules.xsd +535 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml-inlinexbrl-1_1.xsd +40 -0
- arelle/resources/cache/http/www.xbrl.org/2013/match-filter.xsd +94 -0
- arelle/resources/cache/http/www.xbrl.org/2013/preferred-label.xsd +12 -0
- arelle/resources/cache/http/www.xbrl.org/2013/versioning-base.xsd +142 -0
- arelle/resources/cache/http/www.xbrl.org/2013/versioning-concept-details.xsd +143 -0
- arelle/resources/cache/http/www.xbrl.org/2013/versioning-concept-use.xsd +64 -0
- arelle/resources/cache/http/www.xbrl.org/2013/versioning-dimensions.xsd +162 -0
- arelle/resources/cache/http/www.xbrl.org/2014/extensible-enumerations.xsd +27 -0
- arelle/resources/cache/http/www.xbrl.org/2014/table.xsd +356 -0
- arelle/resources/cache/http/www.xbrl.org/2014/tablemodel.xsd +156 -0
- arelle/resources/cache/http/www.xbrl.org/2016/assertion-severity.xsd +29 -0
- arelle/resources/cache/http/www.xbrl.org/2016/severities.xml +21 -0
- arelle/resources/cache/http/www.xbrl.org/2016/taxonomy-package-catalog.xsd +38 -0
- arelle/resources/cache/http/www.xbrl.org/2016/taxonomy-package.xsd +154 -0
- arelle/resources/cache/http/www.xbrl.org/2022/assertion-severity.xsd +43 -0
- arelle/resources/cache/http/www.xbrl.org/2022/severities.xml +21 -0
- arelle/resources/cache/http/www.xbrl.org/dtr/type/nonNumeric-2009-12-16.xsd +76 -0
- arelle/resources/cache/http/www.xbrl.org/dtr/type/numeric-2009-12-16.xsd +78 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/arcrole/accounting-arcrole-2023-01-04.xsd +39 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/arcrole/deprecated-2009-12-16.xsd +29 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/arcrole/esma-arcrole-2018-11-21.xsd +14 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/arcrole/factExplanatory-2009-12-16.xsd +13 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/arcrole/jpfr-arcrole-2007-11-07.xsd +27 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/arcrole/parent-child-2013-09-19.xsd +12 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/role/deprecated-2009-12-16.xsd +17 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/role/jpfr-role-2007-11-07.xsd +47 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/role/negated-2008-03-31.xsd +30 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/role/negated-2009-12-16.xsd +33 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/role/negative-2009-12-16.xsd +25 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/role/net-2009-12-16.xsd +13 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/role/positive-2009-12-16.xsd +25 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/role/property-2022-09-28.xsd +15 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/role/reference-2009-12-16.xsd +21 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/role/restated-2006-02-21.xsd +19 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2012-01-30/utr.xml +4543 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2012-10-31/utr.xml +4510 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2012-11-30/utr.xml +4567 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2013-02-28/utr.xml +5180 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2013-05-17/utr.xml +5349 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2016-08-10/utr.xml +5363 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2017-07-12/utr.xml +6164 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2021-02-16/utr.xml +6370 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2021-12-08/utr.xml +6493 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2022-02-16/utr.xml +6551 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2022-07-20/utr.xml +6638 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2023-12-20/utr.xml +6680 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2024-01-31/utr.xml +6680 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2024-10-22/utr.xml +6693 -0
- arelle/resources/cache/http/www.xbrl.org/utr/utr.xml +6693 -0
- arelle/resources/cache/https/www.xbrl.org/2005/conformance.xsd +87 -0
- arelle/resources/cache/https/www.xbrl.org/2020/extensible-enumerations-2.0.xsd +51 -0
- arelle/resources/cache/https/www.xbrl.org/2023/calculation-1.1.xsd +27 -0
- arelle/resources/cache/https/www.xbrl.org/dtr/type/2020-01-21/types.xsd +812 -0
- arelle/resources/cache/https/www.xbrl.org/dtr/type/2022-03-31/types.xsd +847 -0
- arelle/resources/cache/https/www.xbrl.org/dtr/type/2024-01-31/types.xsd +897 -0
- arelle/resources/cache/https/www.xbrl.org/taxonomy/int/filing-indicators/REC/2021-02-03/filing-indicators-def.xml +68 -0
- arelle/resources/cache/https/www.xbrl.org/taxonomy/int/filing-indicators/REC/2021-02-03/filing-indicators-label.xml +84 -0
- arelle/resources/cache/https/www.xbrl.org/taxonomy/int/filing-indicators/REC/2021-02-03/filing-indicators.xsd +67 -0
- arelle/resources/libs/Tktable2.11/linux-x86_64/README.txt +149 -0
- arelle/resources/libs/Tktable2.11/linux-x86_64/html/tkTable.html +2039 -0
- arelle/resources/libs/Tktable2.11/linux-x86_64/libTktable2.11.so +0 -0
- arelle/resources/libs/Tktable2.11/linux-x86_64/license.txt +51 -0
- arelle/resources/libs/Tktable2.11/linux-x86_64/pkgIndex.tcl +3 -0
- arelle/resources/libs/Tktable2.11/linux-x86_64/tkTable.tcl +825 -0
- arelle/resources/libs/Tktable2.11/linux-x86_64/tktable.py +674 -0
- arelle/resources/libs/Tktable2.11/macos-arm64/README.txt +149 -0
- arelle/resources/libs/Tktable2.11/macos-arm64/html/tkTable.html +2039 -0
- arelle/resources/libs/Tktable2.11/macos-arm64/libTktable2.11.dylib +0 -0
- arelle/resources/libs/Tktable2.11/macos-arm64/license.txt +51 -0
- arelle/resources/libs/Tktable2.11/macos-arm64/pkgIndex.tcl +2 -0
- arelle/resources/libs/Tktable2.11/macos-arm64/tkTable.tcl +825 -0
- arelle/resources/libs/Tktable2.11/macos-arm64/tktable.py +674 -0
- arelle/resources/libs/Tktable2.11/macos-x86_64/README.txt +149 -0
- arelle/resources/libs/Tktable2.11/macos-x86_64/html/tkTable.html +2039 -0
- arelle/resources/libs/Tktable2.11/macos-x86_64/libTktable2.11.dylib +0 -0
- arelle/resources/libs/Tktable2.11/macos-x86_64/license.txt +51 -0
- arelle/resources/libs/Tktable2.11/macos-x86_64/pkgIndex.tcl +2 -0
- arelle/resources/libs/Tktable2.11/macos-x86_64/tkTable.tcl +825 -0
- arelle/resources/libs/Tktable2.11/macos-x86_64/tktable.py +674 -0
- arelle/resources/libs/Tktable2.11/win-x86_64/Tktable.dll +0 -0
- arelle/resources/libs/Tktable2.11/win-x86_64/pkgIndex.tcl +2 -0
- arelle/resources/libs/Tktable2.11/win-x86_64/tkTable.tcl +825 -0
- arelle/typing.py +9 -4
- arelle/utils/Contexts.py +38 -0
- arelle/utils/EntryPointDetection.py +139 -0
- arelle/utils/Equivalence.py +22 -0
- arelle/utils/{validate/PluginValidationData.py → PluginData.py} +5 -2
- arelle/utils/PluginHooks.py +256 -5
- arelle/utils/Units.py +36 -0
- arelle/utils/validate/Decorator.py +5 -3
- arelle/utils/validate/DetectScriptsInXhtml.py +99 -0
- arelle/utils/validate/ESEFImage.py +283 -0
- arelle/utils/validate/Validation.py +9 -1
- arelle/utils/validate/ValidationPlugin.py +74 -11
- arelle/utils/validate/ValidationUtil.py +55 -0
- arelle/webserver/bottle.py +5 -4424
- {arelle_release-2.17.1.dist-info → arelle_release-2.37.71.dist-info}/METADATA +51 -42
- arelle_release-2.37.71.dist-info/RECORD +697 -0
- {arelle_release-2.17.1.dist-info → arelle_release-2.37.71.dist-info}/WHEEL +1 -1
- {arelle_release-2.17.1.dist-info → arelle_release-2.37.71.dist-info/licenses}/LICENSE.md +1 -4
- {arelle_release-2.17.1.dist-info → arelle_release-2.37.71.dist-info}/top_level.txt +0 -1
- arelle/DialogOpenTaxonomyPackage.py +0 -1
- arelle/RenderingResolver.py +0 -624
- arelle/examples/.pydevproject +0 -5
- arelle/examples/CustomLogger.py +0 -43
- arelle/examples/LoadEFMvalidate.py +0 -32
- arelle/examples/LoadSavePreLbCsv.py +0 -26
- arelle/examples/LoadValidate.cs +0 -31
- arelle/examples/LoadValidate.py +0 -36
- arelle/examples/LoadValidateCmdLine.java +0 -69
- arelle/examples/LoadValidatePostedZip.java +0 -57
- arelle/examples/LoadValidateWebService.java +0 -34
- arelle/examples/SaveTableToExelle.py +0 -140
- arelle/examples/TR3toTR4.py +0 -88
- arelle/examples/plugin/bigInstance.py +0 -394
- arelle/examples/plugin/cmdWebServerExtension.py +0 -42
- arelle/examples/plugin/crashTest.py +0 -38
- arelle/examples/plugin/formulaSuiteConverter.py +0 -212
- arelle/examples/plugin/functionsCustom.py +0 -59
- arelle/examples/plugin/hello_dolly.py +0 -64
- arelle/examples/plugin/hello_i18n.pot +0 -26
- arelle/examples/plugin/hello_i18n.py +0 -32
- arelle/examples/plugin/importTestChild1.py +0 -21
- arelle/examples/plugin/importTestChild2.py +0 -22
- arelle/examples/plugin/importTestGrandchild1.py +0 -21
- arelle/examples/plugin/importTestGrandchild2.py +0 -21
- arelle/examples/plugin/importTestImported1.py +0 -23
- arelle/examples/plugin/importTestImported11.py +0 -22
- arelle/examples/plugin/importTestParent.py +0 -48
- arelle/examples/plugin/locale/fr/LC_MESSAGES/hello_i18n.po +0 -25
- arelle/examples/plugin/packagedImportTest/__init__.py +0 -47
- arelle/examples/plugin/packagedImportTest/importTestChild1.py +0 -21
- arelle/examples/plugin/packagedImportTest/importTestChild2.py +0 -22
- arelle/examples/plugin/packagedImportTest/importTestGrandchild1.py +0 -21
- arelle/examples/plugin/packagedImportTest/importTestGrandchild2.py +0 -21
- arelle/examples/plugin/packagedImportTest/importTestImported1.py +0 -24
- arelle/examples/plugin/packagedImportTest/importTestImported11.py +0 -21
- arelle/examples/plugin/packagedImportTest/subdir/importTestImported111.py +0 -21
- arelle/examples/plugin/packagedImportTest/subdir/subsubdir/importTestImported1111.py +0 -21
- arelle/examples/plugin/sakaCalendar.py +0 -215
- arelle/examples/plugin/saveInstanceInfoset.py +0 -121
- arelle/examples/plugin/streamingExtensions.py +0 -335
- arelle/examples/plugin/testcaseCalc11ValidateSetup.py +0 -32
- arelle/examples/plugin/testcaseIxExpectedHtmlFixup.py +0 -45
- arelle/examples/plugin/updateTableLB.py +0 -242
- arelle/examples/plugin/validate/XYZ/DisclosureSystems.py +0 -2
- arelle/examples/plugin/validate/XYZ/PluginValidationDataExtension.py +0 -10
- arelle/examples/plugin/validate/XYZ/ValidationPluginExtension.py +0 -49
- arelle/examples/plugin/validate/XYZ/__init__.py +0 -75
- arelle/examples/plugin/validate/XYZ/resources/config.xml +0 -16
- arelle/examples/plugin/validate/XYZ/rules/rules01.py +0 -109
- arelle/examples/plugin/validate/XYZ/rules/rules02.py +0 -58
- arelle/examples/plugin/validateSchemaLxml.py +0 -156
- arelle/examples/plugin/validateTableInfoset.py +0 -52
- arelle/examples/us-gaap-dei-docType-extraction-frm.xml +0 -90
- arelle/examples/us-gaap-dei-ratio-cash-frm.xml +0 -150
- arelle/plugin/functionsXmlCreation.py +0 -106
- arelle/plugin/instanceInfo.py +0 -306
- arelle/plugin/loadFromOIM-2018.py +0 -1282
- arelle/plugin/objectmaker.py +0 -285
- arelle/plugin/sphinx/FormulaGenerator.py +0 -823
- arelle/plugin/sphinx/SphinxContext.py +0 -404
- arelle/plugin/sphinx/SphinxEvaluator.py +0 -783
- arelle/plugin/sphinx/SphinxMethods.py +0 -1287
- arelle/plugin/sphinx/SphinxParser.py +0 -1093
- arelle/plugin/sphinx/SphinxValidator.py +0 -163
- arelle/plugin/sphinx/US-GAAP Ratios Example.xsr +0 -52
- arelle/plugin/sphinx/__init__.py +0 -285
- arelle/plugin/transforms/SEC/__init__.py +0 -308
- arelle/plugin/transforms/SEC/conf/README.md +0 -39
- arelle/plugin/transforms/SEC/conf/extractTestcase.sh +0 -2
- arelle/plugin/transforms/SEC/conf/extractTestcase.xsl +0 -109
- arelle/plugin/transforms/SEC/conf/runIxtSecTests.sh +0 -16
- arelle/plugin/transforms/SEC/conf/saxon9.jar +0 -0
- arelle/plugin/transforms/SEC/conf/testcase.xml +0 -7117
- arelle/plugin/transforms/SEC/conf/tests.xml +0 -848
- arelle/plugin/transforms/SEC/text2num.py +0 -110
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-boolballotbox.xml +0 -66
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-countrynameen.xml +0 -65
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-datequarterend.xml +0 -66
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-durday.xml +0 -61
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-durhour.xml +0 -69
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-durmonth.xml +0 -71
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-durweek.xml +0 -70
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-durwordsen.xml +0 -56
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-duryear.xml +0 -64
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-edgarprovcountryen.xml +0 -65
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-entityfilercategoryen.xml +0 -63
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-exchnameen.xml +0 -86
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-numwordsen.xml +0 -55
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-stateprovnameen.xml +0 -64
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-yesnoballotbox.xml +0 -66
- arelle/plugin/transforms/SEC/transformationRegistry/registry/transform-registry.xml +0 -314
- arelle/plugin/transforms/SEC/transformationRegistry/schema/inlinexbrl-sec-transformation.xsd +0 -418
- arelle/plugin/validate/EFM/Consts.py +0 -362
- arelle/plugin/validate/EFM/DTS.py +0 -569
- arelle/plugin/validate/EFM/Dimensions.py +0 -264
- arelle/plugin/validate/EFM/Document.py +0 -206
- arelle/plugin/validate/EFM/Filing.py +0 -4383
- arelle/plugin/validate/EFM/IsolateSeparateIXDSes.py +0 -19
- arelle/plugin/validate/EFM/MessageNumericId.py +0 -142
- arelle/plugin/validate/EFM/PreCalAlignment.py +0 -324
- arelle/plugin/validate/EFM/Util.py +0 -688
- arelle/plugin/validate/EFM/__init__.py +0 -843
- arelle/plugin/validate/EFM/config.xml +0 -333
- arelle/plugin/validate/EFM/resources/README.md +0 -57
- arelle/plugin/validate/EFM/resources/axiswarnings.json +0 -27
- arelle/plugin/validate/EFM/resources/cef-deprecated-concepts.json +0 -8
- arelle/plugin/validate/EFM/resources/country-deprecated-concepts.json +0 -19
- arelle/plugin/validate/EFM/resources/currency-deprecated-concepts.json +0 -7
- arelle/plugin/validate/EFM/resources/dei-deprecated-concepts.json +0 -8
- arelle/plugin/validate/EFM/resources/dei-validations.json +0 -2884
- arelle/plugin/validate/EFM/resources/dqc-us-rules.json +0 -1389
- arelle/plugin/validate/EFM/resources/ecd-deprecated-concepts.json +0 -1
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-16-4.xml +0 -115
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-17-0-4.xml +0 -300
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-17-1.xml +0 -304
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-17-2.xml +0 -290
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-17-3-1.xml +0 -294
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-18.1.xml +0 -549
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-18.2.xml +0 -506
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-18.3.xml +0 -496
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-19-1.xml +0 -662
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-19-2.xml +0 -3761
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-19-3.xml +0 -3577
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-20-1.xml +0 -4020
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-20-2.xml +0 -3320
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-20-3.xml +0 -2998
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-2012.xml +0 -957
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-2013.xml +0 -982
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-2014.xml +0 -1001
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-2015.xml +0 -1076
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-2016.xml +0 -120
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-21-1.xml +0 -3329
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-21-2.xml +0 -1230
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-21-3.xml +0 -1113
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-21-4.xml +0 -1321
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-22-1-preview.xml +0 -1721
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-22-1.xml +0 -1841
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-22-2-2.xml +0 -1450
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-22-2.xml +0 -1429
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-22-4.xml +0 -1527
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-23-1-1.xml +0 -2049
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-23-1.xml +0 -2065
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-23-2.xml +0 -1674
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-23-3.xml +0 -1715
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-all-years.xml +0 -10671
- arelle/plugin/validate/EFM/resources/edgartaxonomies/erxl.xsd +0 -69
- arelle/plugin/validate/EFM/resources/edgartaxonomies/extendedtaxonomies-all-years.xml +0 -18
- arelle/plugin/validate/EFM/resources/edgartaxonomies/ifrs-taxonomies.xml +0 -3126
- arelle/plugin/validate/EFM/resources/edgartaxonomies/ifrstaxonomies-all-years.xml +0 -22
- arelle/plugin/validate/EFM/resources/ex26-validations.json +0 -255
- arelle/plugin/validate/EFM/resources/exch-deprecated-concepts.json +0 -163
- arelle/plugin/validate/EFM/resources/ifrs-full-deprecated-concepts.json +0 -204
- arelle/plugin/validate/EFM/resources/invest-deprecated-concepts.json +0 -99
- arelle/plugin/validate/EFM/resources/ixbrl-transform-registries.json +0 -16
- arelle/plugin/validate/EFM/resources/naics-deprecated-concepts.json +0 -295
- arelle/plugin/validate/EFM/resources/oef-deprecated-concepts.json +0 -59
- arelle/plugin/validate/EFM/resources/other-standard-taxonomies.json +0 -12
- arelle/plugin/validate/EFM/resources/rr-deprecated-concepts.json +0 -14
- arelle/plugin/validate/EFM/resources/rxp-deprecated-concepts.json +0 -1
- arelle/plugin/validate/EFM/resources/shr-deprecated-concepts.json +0 -1
- arelle/plugin/validate/EFM/resources/sic-deprecated-concepts.json +0 -1
- arelle/plugin/validate/EFM/resources/signwarnings.json +0 -112
- arelle/plugin/validate/EFM/resources/srt-deprecated-concepts.json +0 -1
- arelle/plugin/validate/EFM/resources/stpr-deprecated-concepts.json +0 -1
- arelle/plugin/validate/EFM/resources/taxonomy-compatibility.json +0 -79
- arelle/plugin/validate/EFM/resources/us-gaap-deprecated-concepts.json +0 -2886
- arelle/plugin/validate/EFM/resources/us-gaap-rels-2020.json +0 -29068
- arelle/plugin/validate/EFM/resources/us-gaap-rels-2021.json +0 -29598
- arelle/plugin/validate/EFM/resources/us-gaap-rels-2022.json +0 -29141
- arelle/plugin/validate/EFM/resources/us-gaap-rels-2023.json +0 -29400
- arelle/plugin/validate/EFM/resources/vip-deprecated-concepts.json +0 -1
- arelle/plugin/validate/EFM/tools/CheckTxmyRefs.py +0 -180
- arelle/plugin/validate/EFM-htm/Const.py +0 -205
- arelle/plugin/validate/EFM-htm/__init__.py +0 -217
- arelle/plugin/validate/EFM-htm/config.xml +0 -17
- arelle/plugin/validate/EFM-htm/resources/efm-htm.dtd +0 -664
- arelle/plugin/validate/ESEF/ESEF_Current/Image.py +0 -199
- arelle/plugin/validate/ESEF_2022/__init__.py +0 -47
- arelle/plugin/validate/GFM/__init__.py +0 -59
- arelle/plugin/validate/GFM/config.xml +0 -82
- arelle/plugin/validate/SBRnl/CustomLoader.py +0 -19
- arelle/plugin/validate/SBRnl/DTS.py +0 -305
- arelle/plugin/validate/SBRnl/Dimensions.py +0 -357
- arelle/plugin/validate/SBRnl/Document.py +0 -799
- arelle/plugin/validate/SBRnl/Filing.py +0 -467
- arelle/plugin/validate/SBRnl/__init__.py +0 -75
- arelle/plugin/validate/SBRnl/config.xml +0 -26
- arelle/plugin/validate/SBRnl/sbr-nl-taxonomies.xml +0 -754
- arelle/plugin/validate/USBestPractices.py +0 -570
- arelle/plugin/validate/USCorpAction.py +0 -557
- arelle/plugin/validate/USSecTagging.py +0 -337
- arelle/plugin/validate/XDC/__init__.py +0 -77
- arelle/plugin/validate/XDC/config.xml +0 -20
- arelle/plugin/validate/XFsyntax/__init__.py +0 -64
- arelle/plugin/validate/XFsyntax/xf.py +0 -2227
- arelle/plugin/validate/__init__.py +0 -20
- arelle/plugin/validate/calc2.py +0 -536
- arelle/plugin/validateSBRnl.py +0 -530
- arelle/scripts-macOS/startWebServer.command +0 -3
- arelle/scripts-unix/startWebServer.sh +0 -1
- arelle/scripts-windows/startWebServer.bat +0 -5
- arelle_release-2.17.1.dist-info/RECORD +0 -676
- tests/__init__.py +0 -0
- tests/integration_tests/ui_tests/ArelleGUITest/ArelleGUITest/ArelleGUITest.csproj +0 -30
- tests/integration_tests/ui_tests/ArelleGUITest/ArelleGUITest/Tests.cs +0 -381
- tests/integration_tests/ui_tests/ArelleGUITest/ArelleGUITest/Usings.cs +0 -1
- tests/integration_tests/ui_tests/ArelleGUITest/ArelleGUITest.sln +0 -31
- tests/integration_tests/ui_tests/resources/workiva.zip +0 -0
- tests/integration_tests/validation/README.md +0 -50
- tests/integration_tests/validation/conformance_suite_config.py +0 -59
- tests/integration_tests/validation/conformance_suite_configs.py +0 -63
- tests/integration_tests/validation/conformance_suite_configurations/efm_current.py +0 -261
- tests/integration_tests/validation/conformance_suite_configurations/esef_ixbrl_2021.py +0 -85
- tests/integration_tests/validation/conformance_suite_configurations/esef_ixbrl_2022.py +0 -90
- tests/integration_tests/validation/conformance_suite_configurations/esef_xhtml_2021.py +0 -15
- tests/integration_tests/validation/conformance_suite_configurations/esef_xhtml_2022.py +0 -15
- tests/integration_tests/validation/conformance_suite_configurations/nl_nt16.py +0 -13
- tests/integration_tests/validation/conformance_suite_configurations/nl_nt17.py +0 -13
- tests/integration_tests/validation/conformance_suite_configurations/nl_nt18.py +0 -13
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_2_1.py +0 -34
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_calculations_1_1.py +0 -40
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_dimensions_1_0.py +0 -28
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_extensible_enumerations_1_0.py +0 -10
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_extensible_enumerations_2_0.py +0 -10
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_formula_1_0.py +0 -9
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_formula_1_0_assertion_severity_2_0.py +0 -9
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_formula_1_0_function_registry.py +0 -14
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_ixbrl_1_1.py +0 -22
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_link_role_registry_1_0.py +0 -11
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_oim_1_0.py +0 -19
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_table_linkbase_1_0.py +0 -296
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_taxonomy_packages_1_0.py +0 -13
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_transformation_registry_3.py +0 -13
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_transformation_registry_4.py +0 -13
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_transformation_registry_5.py +0 -13
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_utr_malformed_1_0.py +0 -31
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_utr_registry_1_0.py +0 -22
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_utr_structure_1_0.py +0 -18
- tests/integration_tests/validation/conftest.py +0 -24
- tests/integration_tests/validation/discover_tests.py +0 -22
- tests/integration_tests/validation/download_conformance_suites.py +0 -47
- tests/integration_tests/validation/run_conformance_suites.py +0 -175
- tests/integration_tests/validation/test_conformance_suites.py +0 -14
- tests/integration_tests/validation/validation_util.py +0 -271
- tests/resources/conformance_suites/nl_nt16/br_kvk/2-04-invalid-period.xbrl +0 -63
- tests/resources/conformance_suites/nl_nt16/br_kvk/2-04-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/br_kvk/3-01-missing.xbrl +0 -53
- tests/resources/conformance_suites/nl_nt16/br_kvk/3-01-multiple.xbrl +0 -60
- tests/resources/conformance_suites/nl_nt16/br_kvk/3-01-testcase.xml +0 -33
- tests/resources/conformance_suites/nl_nt16/br_kvk/4-07-invalid.xbrl +0 -57
- tests/resources/conformance_suites/nl_nt16/br_kvk/4-07-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/br_kvk/4-10-invalid.xbrl +0 -58
- tests/resources/conformance_suites/nl_nt16/br_kvk/4-10-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/br_kvk/4-12-invalid.xbrl +0 -63
- tests/resources/conformance_suites/nl_nt16/br_kvk/4-12-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/br_kvk/4-16-missing.xbrl +0 -61
- tests/resources/conformance_suites/nl_nt16/br_kvk/4-16-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/br_kvk/4-20-invalid-date.xbrl +0 -89
- tests/resources/conformance_suites/nl_nt16/br_kvk/4-20-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/fr_kvk/1-01-invalid-file-extension.xml +0 -56
- tests/resources/conformance_suites/nl_nt16/fr_kvk/1-01-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/fr_kvk/2-01-invalid-lang.xbrl +0 -56
- tests/resources/conformance_suites/nl_nt16/fr_kvk/2-01-missing-lang.xbrl +0 -55
- tests/resources/conformance_suites/nl_nt16/fr_kvk/2-01-testcase.xml +0 -33
- tests/resources/conformance_suites/nl_nt16/fr_kvk/2-03-entrypoint.xsd +0 -6
- tests/resources/conformance_suites/nl_nt16/fr_kvk/2-03-invalid-entrypoint.xbrl +0 -63
- tests/resources/conformance_suites/nl_nt16/fr_kvk/2-03-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/fr_kvk/5-01-invalid-decimals.xbrl +0 -49
- tests/resources/conformance_suites/nl_nt16/fr_kvk/5-01-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/fr_kvk/5-02-invalid-decimals.xbrl +0 -49
- tests/resources/conformance_suites/nl_nt16/fr_kvk/5-02-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/fr_nl/1-01-invalid-file.xbrl +0 -2
- tests/resources/conformance_suites/nl_nt16/fr_nl/1-01-invalid-zip.zip +0 -0
- tests/resources/conformance_suites/nl_nt16/fr_nl/1-01-testcase.xml +0 -33
- tests/resources/conformance_suites/nl_nt16/fr_nl/1-03-invalid-doctype.xbrl +0 -4
- tests/resources/conformance_suites/nl_nt16/fr_nl/1-03-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/fr_nl/1-05-invalid-encoding.xbrl +0 -0
- tests/resources/conformance_suites/nl_nt16/fr_nl/1-05-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/fr_nl/1-06-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/fr_nl/1-06.invalid.xbrl +0 -2
- tests/resources/conformance_suites/nl_nt16/fr_nl/2-06-invalid-file.xbrl +0 -8
- tests/resources/conformance_suites/nl_nt16/fr_nl/2-06-invalid-zip.zip +0 -0
- tests/resources/conformance_suites/nl_nt16/fr_nl/2-06-testcase.xml +0 -33
- tests/resources/conformance_suites/nl_nt16/index.xml +0 -20
- tests/resources/conformance_suites/nl_nt17/br_kvk/2-04-invalid-period.xbrl +0 -63
- tests/resources/conformance_suites/nl_nt17/br_kvk/2-04-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/br_kvk/3-01-missing.xbrl +0 -53
- tests/resources/conformance_suites/nl_nt17/br_kvk/3-01-multiple.xbrl +0 -60
- tests/resources/conformance_suites/nl_nt17/br_kvk/3-01-testcase.xml +0 -33
- tests/resources/conformance_suites/nl_nt17/br_kvk/4-07-invalid.xbrl +0 -57
- tests/resources/conformance_suites/nl_nt17/br_kvk/4-07-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/br_kvk/4-10-invalid.xbrl +0 -58
- tests/resources/conformance_suites/nl_nt17/br_kvk/4-10-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/br_kvk/4-12-invalid.xbrl +0 -63
- tests/resources/conformance_suites/nl_nt17/br_kvk/4-12-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/br_kvk/4-16-missing.xbrl +0 -61
- tests/resources/conformance_suites/nl_nt17/br_kvk/4-16-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/br_kvk/4-20-invalid-date.xbrl +0 -89
- tests/resources/conformance_suites/nl_nt17/br_kvk/4-20-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/fr_kvk/1-01-invalid-file-extension.xml +0 -56
- tests/resources/conformance_suites/nl_nt17/fr_kvk/1-01-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/fr_kvk/2-01-invalid-lang.xbrl +0 -56
- tests/resources/conformance_suites/nl_nt17/fr_kvk/2-01-missing-lang.xbrl +0 -55
- tests/resources/conformance_suites/nl_nt17/fr_kvk/2-01-testcase.xml +0 -33
- tests/resources/conformance_suites/nl_nt17/fr_kvk/2-03-entrypoint.xsd +0 -6
- tests/resources/conformance_suites/nl_nt17/fr_kvk/2-03-invalid-entrypoint.xbrl +0 -63
- tests/resources/conformance_suites/nl_nt17/fr_kvk/2-03-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/fr_kvk/5-01-invalid-decimals.xbrl +0 -49
- tests/resources/conformance_suites/nl_nt17/fr_kvk/5-01-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/fr_kvk/5-02-invalid-decimals.xbrl +0 -49
- tests/resources/conformance_suites/nl_nt17/fr_kvk/5-02-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/fr_nl/1-01-invalid-file.xbrl +0 -2
- tests/resources/conformance_suites/nl_nt17/fr_nl/1-01-invalid-zip.zip +0 -0
- tests/resources/conformance_suites/nl_nt17/fr_nl/1-01-testcase.xml +0 -33
- tests/resources/conformance_suites/nl_nt17/fr_nl/1-03-invalid-doctype.xbrl +0 -4
- tests/resources/conformance_suites/nl_nt17/fr_nl/1-03-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/fr_nl/1-05-invalid-encoding.xbrl +0 -0
- tests/resources/conformance_suites/nl_nt17/fr_nl/1-05-testcases.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/fr_nl/1-06-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/fr_nl/1-06.invalid.xbrl +0 -2
- tests/resources/conformance_suites/nl_nt17/fr_nl/2-06-invalid-file.xbrl +0 -8
- tests/resources/conformance_suites/nl_nt17/fr_nl/2-06-invalid-zip.zip +0 -0
- tests/resources/conformance_suites/nl_nt17/fr_nl/2-06-testcase.xml +0 -33
- tests/resources/conformance_suites/nl_nt17/index.xml +0 -20
- tests/resources/conformance_suites/nl_nt18/fr_nl/1-03-invalid-doctype.xbrl +0 -4
- tests/resources/conformance_suites/nl_nt18/fr_nl/1-03-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt18/fr_nl/1-05-invalid-encoding.xbrl +0 -0
- tests/resources/conformance_suites/nl_nt18/fr_nl/1-05-testcases.xml +0 -22
- tests/resources/conformance_suites/nl_nt18/fr_nl/1-06-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt18/fr_nl/1-06.invalid.xbrl +0 -2
- tests/resources/conformance_suites/nl_nt18/fr_nl/1.01-invalid-file.xbrl +0 -2
- tests/resources/conformance_suites/nl_nt18/fr_nl/1.01-invalid-zip.zip +0 -0
- tests/resources/conformance_suites/nl_nt18/fr_nl/1.01-testcase.xml +0 -33
- tests/resources/conformance_suites/nl_nt18/fr_nl/2-06-invalid-file.xbrl +0 -8
- tests/resources/conformance_suites/nl_nt18/fr_nl/2-06-invalid-zip.zip +0 -0
- tests/resources/conformance_suites/nl_nt18/fr_nl/2-06-testcase.xml +0 -33
- tests/resources/conformance_suites/nl_nt18/index.xml +0 -8
- tests/unit_tests/arelle/conftest.py +0 -16
- tests/unit_tests/arelle/formula/test_fact_aspects_cache.py +0 -170
- tests/unit_tests/arelle/plugin/test_loadfromoim.py +0 -40
- tests/unit_tests/arelle/plugin/test_plugin_imports.py +0 -27
- tests/unit_tests/arelle/test_betafeatures.py +0 -81
- tests/unit_tests/arelle/test_cntlr.py +0 -28
- tests/unit_tests/arelle/test_import.py +0 -40
- tests/unit_tests/arelle/test_locale.py +0 -73
- tests/unit_tests/arelle/test_modelmanager.py +0 -15
- tests/unit_tests/arelle/test_packagemanager.py +0 -65
- tests/unit_tests/arelle/test_pluginmanager.py +0 -176
- tests/unit_tests/arelle/test_qname.py +0 -140
- tests/unit_tests/arelle/test_runtimeoptions.py +0 -56
- tests/unit_tests/arelle/test_system_info.py +0 -26
- tests/unit_tests/arelle/test_updater.py +0 -507
- tests/unit_tests/arelle/test_urlutil.py +0 -49
- tests/unit_tests/arelle/test_version.py +0 -46
- tests/unit_tests/arelle/utils/validate/test_decorator.py +0 -59
- /arelle/{examples/plugin/validate/XYZ → plugin/validate/EDINET}/rules/__init__.py +0 -0
- /arelle/plugin/validate/{HMRC → UK}/consistencyChecksByName.json +0 -0
- /arelle/plugin/validate/{HMRC → UK}/hmrc-taxonomies.xml +0 -0
- {arelle_release-2.17.1.dist-info → arelle_release-2.37.71.dist-info}/entry_points.txt +0 -0
|
@@ -0,0 +1,4510 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
2
|
+
<?xml-stylesheet type="text/xsl" href="render.xsl"?>
|
|
3
|
+
<utr xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.xbrl.org/2009/utr utr.xsd"
|
|
4
|
+
xmlns="http://www.xbrl.org/2009/utr">
|
|
5
|
+
<units>
|
|
6
|
+
<unit id="u00001">
|
|
7
|
+
<unitId>acre</unitId>
|
|
8
|
+
<unitName>Acre</unitName>
|
|
9
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
10
|
+
<itemType>areaItemType</itemType>
|
|
11
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
12
|
+
<symbol>a</symbol>
|
|
13
|
+
<definition>Acre</definition>
|
|
14
|
+
<baseStandard>Customary</baseStandard>
|
|
15
|
+
<conversionPresentation>
|
|
16
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
17
|
+
<mrow>
|
|
18
|
+
<mn>4046.86</mn>
|
|
19
|
+
<mo>*</mo>
|
|
20
|
+
<msup>
|
|
21
|
+
<mi>m</mi>
|
|
22
|
+
<mn>2</mn>
|
|
23
|
+
</msup>
|
|
24
|
+
</mrow>
|
|
25
|
+
</math>
|
|
26
|
+
</conversionPresentation>
|
|
27
|
+
<conversionContent>
|
|
28
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
29
|
+
<apply>
|
|
30
|
+
<times/>
|
|
31
|
+
<cn>4046.86</cn>
|
|
32
|
+
<apply>
|
|
33
|
+
<power/>
|
|
34
|
+
<ci>m</ci>
|
|
35
|
+
<cn>2</cn>
|
|
36
|
+
</apply>
|
|
37
|
+
</apply>
|
|
38
|
+
</math>
|
|
39
|
+
</conversionContent>
|
|
40
|
+
<status>REC</status>
|
|
41
|
+
<versionDate>2012-10-31</versionDate>
|
|
42
|
+
</unit>
|
|
43
|
+
<unit id="u00004">
|
|
44
|
+
<unitId>sqft</unitId>
|
|
45
|
+
<unitName>Square Foot</unitName>
|
|
46
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
47
|
+
<itemType>areaItemType</itemType>
|
|
48
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
49
|
+
<symbol>ft²</symbol>
|
|
50
|
+
<definition>Square Foot</definition>
|
|
51
|
+
<baseStandard>Customary</baseStandard>
|
|
52
|
+
<conversionPresentation>
|
|
53
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
54
|
+
<mrow>
|
|
55
|
+
<mn>0.09290304</mn>
|
|
56
|
+
<mo>*</mo>
|
|
57
|
+
<msup>
|
|
58
|
+
<mi>m</mi>
|
|
59
|
+
<mn>2</mn>
|
|
60
|
+
</msup>
|
|
61
|
+
</mrow>
|
|
62
|
+
</math>
|
|
63
|
+
</conversionPresentation>
|
|
64
|
+
<conversionContent>
|
|
65
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
66
|
+
<apply>
|
|
67
|
+
<times/>
|
|
68
|
+
<cn>0.09290304</cn>
|
|
69
|
+
<apply>
|
|
70
|
+
<power/>
|
|
71
|
+
<ci>m</ci>
|
|
72
|
+
<cn>2</cn>
|
|
73
|
+
</apply>
|
|
74
|
+
</apply>
|
|
75
|
+
</math>
|
|
76
|
+
</conversionContent>
|
|
77
|
+
<status>REC</status>
|
|
78
|
+
<versionDate>2012-10-31</versionDate>
|
|
79
|
+
</unit>
|
|
80
|
+
<unit id="u00007">
|
|
81
|
+
<unitId>sqmi</unitId>
|
|
82
|
+
<unitName>Square Mile</unitName>
|
|
83
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
84
|
+
<itemType>areaItemType</itemType>
|
|
85
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
86
|
+
<symbol>mi²</symbol>
|
|
87
|
+
<definition>Square Miles</definition>
|
|
88
|
+
<baseStandard>Customary</baseStandard>
|
|
89
|
+
<conversionPresentation>
|
|
90
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
91
|
+
<mrow>
|
|
92
|
+
<mn>2589988.110336</mn>
|
|
93
|
+
<mo>*</mo>
|
|
94
|
+
<msup>
|
|
95
|
+
<mi>m</mi>
|
|
96
|
+
<mn>2</mn>
|
|
97
|
+
</msup>
|
|
98
|
+
</mrow>
|
|
99
|
+
</math>
|
|
100
|
+
</conversionPresentation>
|
|
101
|
+
<conversionContent>
|
|
102
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
103
|
+
<apply>
|
|
104
|
+
<times/>
|
|
105
|
+
<cn>2589988.110336</cn>
|
|
106
|
+
<apply>
|
|
107
|
+
<power/>
|
|
108
|
+
<ci>m</ci>
|
|
109
|
+
<cn>2</cn>
|
|
110
|
+
</apply>
|
|
111
|
+
</apply>
|
|
112
|
+
</math>
|
|
113
|
+
</conversionContent>
|
|
114
|
+
<status>REC</status>
|
|
115
|
+
<versionDate>2012-10-31</versionDate>
|
|
116
|
+
</unit>
|
|
117
|
+
<unit id="u00008">
|
|
118
|
+
<unitId>sqyd</unitId>
|
|
119
|
+
<unitName>Square Yard</unitName>
|
|
120
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
121
|
+
<itemType>areaItemType</itemType>
|
|
122
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
123
|
+
<symbol>yd²</symbol>
|
|
124
|
+
<definition>Square Yard</definition>
|
|
125
|
+
<baseStandard>Customary</baseStandard>
|
|
126
|
+
<conversionPresentation>
|
|
127
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
128
|
+
<mrow>
|
|
129
|
+
<mn>0.83612736</mn>
|
|
130
|
+
<mo>*</mo>
|
|
131
|
+
<msup>
|
|
132
|
+
<mi>m</mi>
|
|
133
|
+
<mn>2</mn>
|
|
134
|
+
</msup>
|
|
135
|
+
</mrow>
|
|
136
|
+
</math>
|
|
137
|
+
</conversionPresentation>
|
|
138
|
+
<conversionContent>
|
|
139
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
140
|
+
<apply>
|
|
141
|
+
<times/>
|
|
142
|
+
<cn>0.83612736</cn>
|
|
143
|
+
<apply>
|
|
144
|
+
<power/>
|
|
145
|
+
<ci>m</ci>
|
|
146
|
+
<cn>2</cn>
|
|
147
|
+
</apply>
|
|
148
|
+
</apply>
|
|
149
|
+
</math>
|
|
150
|
+
</conversionContent>
|
|
151
|
+
<status>REC</status>
|
|
152
|
+
<versionDate>2012-10-31</versionDate>
|
|
153
|
+
</unit>
|
|
154
|
+
<unit id="u00010">
|
|
155
|
+
<unitId>Boe</unitId>
|
|
156
|
+
<unitName>Barrel of Oil Equivalent</unitName>
|
|
157
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
158
|
+
<itemType>energyItemType</itemType>
|
|
159
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
160
|
+
<symbol>Boe</symbol>
|
|
161
|
+
<definition>Barrel of Oil Equivalent</definition>
|
|
162
|
+
<baseStandard>Customary</baseStandard>
|
|
163
|
+
<conversionPresentation>
|
|
164
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
165
|
+
<mrow>
|
|
166
|
+
<mn>6117863200</mn>
|
|
167
|
+
<mo>*</mo>
|
|
168
|
+
<mi>J</mi>
|
|
169
|
+
</mrow>
|
|
170
|
+
</math>
|
|
171
|
+
</conversionPresentation>
|
|
172
|
+
<conversionContent>
|
|
173
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
174
|
+
<apply>
|
|
175
|
+
<times/>
|
|
176
|
+
<cn>6117863200</cn>
|
|
177
|
+
<ci>J</ci>
|
|
178
|
+
</apply>
|
|
179
|
+
</math>
|
|
180
|
+
</conversionContent>
|
|
181
|
+
<status>REC</status>
|
|
182
|
+
<versionDate>2012-10-31</versionDate>
|
|
183
|
+
</unit>
|
|
184
|
+
<unit id="u00011">
|
|
185
|
+
<unitId>Btu</unitId>
|
|
186
|
+
<unitName>British Thermal Unit</unitName>
|
|
187
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
188
|
+
<itemType>energyItemType</itemType>
|
|
189
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
190
|
+
<symbol>BTU</symbol>
|
|
191
|
+
<definition>British Thermal Unit</definition>
|
|
192
|
+
<baseStandard>Customary</baseStandard>
|
|
193
|
+
<conversionPresentation>
|
|
194
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
195
|
+
<mrow>
|
|
196
|
+
<mn>1.0545</mn>
|
|
197
|
+
<mo>*</mo>
|
|
198
|
+
<msup>
|
|
199
|
+
<mn>10</mn>
|
|
200
|
+
<mn>3</mn>
|
|
201
|
+
</msup>
|
|
202
|
+
<mo>*</mo>
|
|
203
|
+
<mi>J</mi>
|
|
204
|
+
</mrow>
|
|
205
|
+
</math>
|
|
206
|
+
</conversionPresentation>
|
|
207
|
+
<conversionContent>
|
|
208
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
209
|
+
<apply>
|
|
210
|
+
<times/>
|
|
211
|
+
<cn>1.0545</cn>
|
|
212
|
+
<apply>
|
|
213
|
+
<power/>
|
|
214
|
+
<cn>10</cn>
|
|
215
|
+
<cn>3</cn>
|
|
216
|
+
</apply>
|
|
217
|
+
<cn>J</cn>
|
|
218
|
+
</apply>
|
|
219
|
+
</math>
|
|
220
|
+
</conversionContent>
|
|
221
|
+
<status>REC</status>
|
|
222
|
+
<versionDate>2012-10-31</versionDate>
|
|
223
|
+
</unit>
|
|
224
|
+
<unit id="u00013">
|
|
225
|
+
<unitId>ft_lb</unitId>
|
|
226
|
+
<unitName>Foot-Pound</unitName>
|
|
227
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
228
|
+
<itemType>energyItemType</itemType>
|
|
229
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
230
|
+
<symbol>ft-lb</symbol>
|
|
231
|
+
<definition>Foot-Pound Force</definition>
|
|
232
|
+
<baseStandard>Customary</baseStandard>
|
|
233
|
+
<conversionPresentation>
|
|
234
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
235
|
+
<mrow>
|
|
236
|
+
<mn>1.3558179483314</mn>
|
|
237
|
+
<mo>*</mo>
|
|
238
|
+
<mi>J</mi>
|
|
239
|
+
</mrow>
|
|
240
|
+
</math>
|
|
241
|
+
</conversionPresentation>
|
|
242
|
+
<conversionContent>
|
|
243
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
244
|
+
<apply>
|
|
245
|
+
<times/>
|
|
246
|
+
<cn>1.3558179483314</cn>
|
|
247
|
+
<ci>J</ci>
|
|
248
|
+
</apply>
|
|
249
|
+
</math>
|
|
250
|
+
</conversionContent>
|
|
251
|
+
<status>REC</status>
|
|
252
|
+
<versionDate>2012-10-31</versionDate>
|
|
253
|
+
</unit>
|
|
254
|
+
<unit id="u00017">
|
|
255
|
+
<unitId>MBoe</unitId>
|
|
256
|
+
<unitName>Thousand Barrels of Oil Equivalent</unitName>
|
|
257
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
258
|
+
<itemType>energyItemType</itemType>
|
|
259
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
260
|
+
<symbol>MBoe</symbol>
|
|
261
|
+
<definition>Thousand Barrels of Oil Equivalent</definition>
|
|
262
|
+
<baseStandard>Customary</baseStandard>
|
|
263
|
+
<conversionPresentation>
|
|
264
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
265
|
+
<mrow>
|
|
266
|
+
<mn>6.1178632</mn>
|
|
267
|
+
<mo>*</mo>
|
|
268
|
+
<msup>
|
|
269
|
+
<mn>10</mn>
|
|
270
|
+
<mn>12</mn>
|
|
271
|
+
</msup>
|
|
272
|
+
<mo>*</mo>
|
|
273
|
+
<mi>J</mi>
|
|
274
|
+
</mrow>
|
|
275
|
+
</math>
|
|
276
|
+
</conversionPresentation>
|
|
277
|
+
<conversionContent>
|
|
278
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
279
|
+
<apply>
|
|
280
|
+
<times/>
|
|
281
|
+
<cn>6.1178632</cn>
|
|
282
|
+
<apply>
|
|
283
|
+
<power/>
|
|
284
|
+
<cn>10</cn>
|
|
285
|
+
<cn>12</cn>
|
|
286
|
+
</apply>
|
|
287
|
+
<ci>J</ci>
|
|
288
|
+
</apply>
|
|
289
|
+
</math>
|
|
290
|
+
</conversionContent>
|
|
291
|
+
<status>REC</status>
|
|
292
|
+
<versionDate>2012-10-31</versionDate>
|
|
293
|
+
</unit>
|
|
294
|
+
<unit id="u00018">
|
|
295
|
+
<unitId>Mcfe</unitId>
|
|
296
|
+
<unitName>Thousand Cubic Foot Equivalent</unitName>
|
|
297
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
298
|
+
<itemType>energyItemType</itemType>
|
|
299
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
300
|
+
<symbol>Mcfe</symbol>
|
|
301
|
+
<definition>Thousand Cubic Foot Equivalent</definition>
|
|
302
|
+
<baseStandard>Customary</baseStandard>
|
|
303
|
+
<conversionPresentation>
|
|
304
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
305
|
+
<mrow>
|
|
306
|
+
<mn>1087200000</mn>
|
|
307
|
+
<mo>*</mo>
|
|
308
|
+
<mi>J</mi>
|
|
309
|
+
</mrow>
|
|
310
|
+
</math>
|
|
311
|
+
</conversionPresentation>
|
|
312
|
+
<conversionContent>
|
|
313
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
314
|
+
<apply>
|
|
315
|
+
<times/>
|
|
316
|
+
<cn>1087200000</cn>
|
|
317
|
+
<ci>J</ci>
|
|
318
|
+
</apply>
|
|
319
|
+
</math>
|
|
320
|
+
</conversionContent>
|
|
321
|
+
<status>REC</status>
|
|
322
|
+
<versionDate>2012-10-31</versionDate>
|
|
323
|
+
</unit>
|
|
324
|
+
<unit id="u00020">
|
|
325
|
+
<unitId>MMBoe</unitId>
|
|
326
|
+
<unitName>Millions of Barrels of Oil Equivalent</unitName>
|
|
327
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
328
|
+
<itemType>energyItemType</itemType>
|
|
329
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
330
|
+
<symbol>MMBoe</symbol>
|
|
331
|
+
<definition>Millions of Barrels of Oil Equivalent</definition>
|
|
332
|
+
<baseStandard>Customary</baseStandard>
|
|
333
|
+
<conversionPresentation>
|
|
334
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
335
|
+
<mrow>
|
|
336
|
+
<mn>1355.8179483314003</mn>
|
|
337
|
+
<mo>*</mo>
|
|
338
|
+
<mi>J</mi>
|
|
339
|
+
</mrow>
|
|
340
|
+
</math>
|
|
341
|
+
</conversionPresentation>
|
|
342
|
+
<conversionContent>
|
|
343
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
344
|
+
<apply>
|
|
345
|
+
<times/>
|
|
346
|
+
<cn>1355.8179483314003</cn>
|
|
347
|
+
<ci>J</ci>
|
|
348
|
+
</apply>
|
|
349
|
+
</math>
|
|
350
|
+
</conversionContent>
|
|
351
|
+
<status>REC</status>
|
|
352
|
+
<versionDate>2012-10-31</versionDate>
|
|
353
|
+
</unit>
|
|
354
|
+
<unit id="u00021">
|
|
355
|
+
<unitId>MMBTU</unitId>
|
|
356
|
+
<unitName>Millions of BTU</unitName>
|
|
357
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
358
|
+
<itemType>energyItemType</itemType>
|
|
359
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
360
|
+
<symbol>MMBTU</symbol>
|
|
361
|
+
<definition>Millions of BTU</definition>
|
|
362
|
+
<baseStandard>Customary</baseStandard>
|
|
363
|
+
<conversionPresentation>
|
|
364
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
365
|
+
<mrow>
|
|
366
|
+
<mn>1.0545</mn>
|
|
367
|
+
<mo>*</mo>
|
|
368
|
+
<msup>
|
|
369
|
+
<mn>10</mn>
|
|
370
|
+
<mn>9</mn>
|
|
371
|
+
</msup>
|
|
372
|
+
<mo>*</mo>
|
|
373
|
+
<mi>J</mi>
|
|
374
|
+
</mrow>
|
|
375
|
+
</math>
|
|
376
|
+
</conversionPresentation>
|
|
377
|
+
<conversionContent>
|
|
378
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
379
|
+
<apply>
|
|
380
|
+
<times/>
|
|
381
|
+
<cn>1.0545</cn>
|
|
382
|
+
<apply>
|
|
383
|
+
<power/>
|
|
384
|
+
<cn>10</cn>
|
|
385
|
+
<cn>9</cn>
|
|
386
|
+
</apply>
|
|
387
|
+
<ci>J</ci>
|
|
388
|
+
</apply>
|
|
389
|
+
</math>
|
|
390
|
+
</conversionContent>
|
|
391
|
+
<status>REC</status>
|
|
392
|
+
<versionDate>2012-10-31</versionDate>
|
|
393
|
+
</unit>
|
|
394
|
+
<unit id="u00029">
|
|
395
|
+
<unitId>ft</unitId>
|
|
396
|
+
<unitName>Foot</unitName>
|
|
397
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
398
|
+
<itemType>lengthItemType</itemType>
|
|
399
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
400
|
+
<symbol>ft</symbol>
|
|
401
|
+
<definition>Twelve Inches</definition>
|
|
402
|
+
<baseStandard>Customary</baseStandard>
|
|
403
|
+
<conversionPresentation>
|
|
404
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
405
|
+
<mrow>
|
|
406
|
+
<mn>0.3048</mn>
|
|
407
|
+
<mo>*</mo>
|
|
408
|
+
<mi>m</mi>
|
|
409
|
+
</mrow>
|
|
410
|
+
</math>
|
|
411
|
+
</conversionPresentation>
|
|
412
|
+
<conversionContent>
|
|
413
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
414
|
+
<apply>
|
|
415
|
+
<times/>
|
|
416
|
+
<cn>0.3048</cn>
|
|
417
|
+
<ci>m</ci>
|
|
418
|
+
</apply>
|
|
419
|
+
</math>
|
|
420
|
+
</conversionContent>
|
|
421
|
+
<status>REC</status>
|
|
422
|
+
<versionDate>2012-10-31</versionDate>
|
|
423
|
+
</unit>
|
|
424
|
+
<unit id="u00030">
|
|
425
|
+
<unitId>in</unitId>
|
|
426
|
+
<unitName>Inch</unitName>
|
|
427
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
428
|
+
<itemType>lengthItemType</itemType>
|
|
429
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
430
|
+
<symbol>in</symbol>
|
|
431
|
+
<definition>Inch</definition>
|
|
432
|
+
<baseStandard>Customary</baseStandard>
|
|
433
|
+
<conversionPresentation>
|
|
434
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
435
|
+
<mrow>
|
|
436
|
+
<mn>25.4</mn>
|
|
437
|
+
<mo>*</mo>
|
|
438
|
+
<msup>
|
|
439
|
+
<mn>10</mn>
|
|
440
|
+
<mn>-3</mn>
|
|
441
|
+
</msup>
|
|
442
|
+
<mo>*</mo>
|
|
443
|
+
<mi>m</mi>
|
|
444
|
+
</mrow>
|
|
445
|
+
</math>
|
|
446
|
+
</conversionPresentation>
|
|
447
|
+
<conversionContent>
|
|
448
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
449
|
+
<apply>
|
|
450
|
+
<times/>
|
|
451
|
+
<cn>25.4</cn>
|
|
452
|
+
<apply>
|
|
453
|
+
<power/>
|
|
454
|
+
<cn>10</cn>
|
|
455
|
+
<cn>-3</cn>
|
|
456
|
+
</apply>
|
|
457
|
+
<ci>m</ci>
|
|
458
|
+
</apply>
|
|
459
|
+
</math>
|
|
460
|
+
</conversionContent>
|
|
461
|
+
<status>REC</status>
|
|
462
|
+
<versionDate>2012-10-31</versionDate>
|
|
463
|
+
</unit>
|
|
464
|
+
<unit id="u00033">
|
|
465
|
+
<unitId>mi</unitId>
|
|
466
|
+
<unitName>Mile</unitName>
|
|
467
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
468
|
+
<itemType>lengthItemType</itemType>
|
|
469
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
470
|
+
<symbol>mi</symbol>
|
|
471
|
+
<definition>5280 Feet</definition>
|
|
472
|
+
<baseStandard>Customary</baseStandard>
|
|
473
|
+
<conversionPresentation>
|
|
474
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
475
|
+
<mrow>
|
|
476
|
+
<mn>1609.344</mn>
|
|
477
|
+
<mo>*</mo>
|
|
478
|
+
<mi>m</mi>
|
|
479
|
+
</mrow>
|
|
480
|
+
</math>
|
|
481
|
+
</conversionPresentation>
|
|
482
|
+
<conversionContent>
|
|
483
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
484
|
+
<apply>
|
|
485
|
+
<times/>
|
|
486
|
+
<cn>1609.344</cn>
|
|
487
|
+
<ci>m</ci>
|
|
488
|
+
</apply>
|
|
489
|
+
</math>
|
|
490
|
+
</conversionContent>
|
|
491
|
+
<status>REC</status>
|
|
492
|
+
<versionDate>2012-10-31</versionDate>
|
|
493
|
+
</unit>
|
|
494
|
+
<unit id="u00035">
|
|
495
|
+
<unitId>nmi</unitId>
|
|
496
|
+
<unitName>Nautical Mile</unitName>
|
|
497
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
498
|
+
<itemType>lengthItemType</itemType>
|
|
499
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
500
|
+
<symbol>nmi</symbol>
|
|
501
|
+
<definition>1.15078 Miles (One Minute of Arc Latitude)</definition>
|
|
502
|
+
<baseStandard>Customary</baseStandard>
|
|
503
|
+
<conversionPresentation>
|
|
504
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
505
|
+
<mrow>
|
|
506
|
+
<mn>1852</mn>
|
|
507
|
+
<mo>*</mo>
|
|
508
|
+
<mi>m</mi>
|
|
509
|
+
</mrow>
|
|
510
|
+
</math>
|
|
511
|
+
</conversionPresentation>
|
|
512
|
+
<conversionContent>
|
|
513
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
514
|
+
<apply>
|
|
515
|
+
<times/>
|
|
516
|
+
<cn>1852</cn>
|
|
517
|
+
<ci>m</ci>
|
|
518
|
+
</apply>
|
|
519
|
+
</math>
|
|
520
|
+
</conversionContent>
|
|
521
|
+
<status>REC</status>
|
|
522
|
+
<versionDate>2012-10-31</versionDate>
|
|
523
|
+
</unit>
|
|
524
|
+
<unit id="u00036">
|
|
525
|
+
<unitId>yd</unitId>
|
|
526
|
+
<unitName>Yard</unitName>
|
|
527
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
528
|
+
<itemType>lengthItemType</itemType>
|
|
529
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
530
|
+
<symbol>yd</symbol>
|
|
531
|
+
<definition>Three Feet</definition>
|
|
532
|
+
<baseStandard>Customary</baseStandard>
|
|
533
|
+
<conversionPresentation>
|
|
534
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
535
|
+
<mrow>
|
|
536
|
+
<mn>0.914400000</mn>
|
|
537
|
+
<mo>*</mo>
|
|
538
|
+
<mi>m</mi>
|
|
539
|
+
</mrow>
|
|
540
|
+
</math>
|
|
541
|
+
</conversionPresentation>
|
|
542
|
+
<conversionContent>
|
|
543
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
544
|
+
<apply>
|
|
545
|
+
<times/>
|
|
546
|
+
<cn>0.914400000</cn>
|
|
547
|
+
<ci>m</ci>
|
|
548
|
+
</apply>
|
|
549
|
+
</math>
|
|
550
|
+
</conversionContent>
|
|
551
|
+
<status>REC</status>
|
|
552
|
+
<versionDate>2012-10-31</versionDate>
|
|
553
|
+
</unit>
|
|
554
|
+
<unit id="u00039">
|
|
555
|
+
<unitId>lb</unitId>
|
|
556
|
+
<unitName>Pound</unitName>
|
|
557
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
558
|
+
<itemType>massItemType</itemType>
|
|
559
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
560
|
+
<symbol>lb</symbol>
|
|
561
|
+
<definition>Pound of Mass, as Used in Commerce
|
|
562
|
+
(http://en.wikipedia.org/wiki/Pound_(mass)#Use_in_Commerce))</definition>
|
|
563
|
+
<baseStandard>Customary</baseStandard>
|
|
564
|
+
<conversionPresentation>
|
|
565
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
566
|
+
<mrow>
|
|
567
|
+
<mn>0.45359237</mn>
|
|
568
|
+
<mo>*</mo>
|
|
569
|
+
<mi>kg</mi>
|
|
570
|
+
</mrow>
|
|
571
|
+
</math>
|
|
572
|
+
</conversionPresentation>
|
|
573
|
+
<conversionContent>
|
|
574
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
575
|
+
<apply>
|
|
576
|
+
<times/>
|
|
577
|
+
<cn>.45359237</cn>
|
|
578
|
+
<ci>kg</ci>
|
|
579
|
+
</apply>
|
|
580
|
+
</math>
|
|
581
|
+
</conversionContent>
|
|
582
|
+
<status>REC</status>
|
|
583
|
+
<versionDate>2012-10-31</versionDate>
|
|
584
|
+
</unit>
|
|
585
|
+
<unit id="u00041">
|
|
586
|
+
<unitId>oz</unitId>
|
|
587
|
+
<unitName>Ounce</unitName>
|
|
588
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
589
|
+
<itemType>massItemType</itemType>
|
|
590
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
591
|
+
<symbol>oz</symbol>
|
|
592
|
+
<definition>US Ounce</definition>
|
|
593
|
+
<baseStandard>Customary</baseStandard>
|
|
594
|
+
<conversionPresentation>
|
|
595
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
596
|
+
<mrow>
|
|
597
|
+
<mn>0.028</mn>
|
|
598
|
+
<mo>*</mo>
|
|
599
|
+
<mi>kg</mi>
|
|
600
|
+
</mrow>
|
|
601
|
+
</math>
|
|
602
|
+
</conversionPresentation>
|
|
603
|
+
<conversionContent>
|
|
604
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
605
|
+
<apply>
|
|
606
|
+
<times/>
|
|
607
|
+
<cn>0.028</cn>
|
|
608
|
+
<ci>kg</ci>
|
|
609
|
+
</apply>
|
|
610
|
+
</math>
|
|
611
|
+
</conversionContent>
|
|
612
|
+
<status>REC</status>
|
|
613
|
+
<versionDate>2012-10-31</versionDate>
|
|
614
|
+
</unit>
|
|
615
|
+
<unit id="u00042">
|
|
616
|
+
<unitId>ozt</unitId>
|
|
617
|
+
<unitName>Troy Ounce</unitName>
|
|
618
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
619
|
+
<itemType>massItemType</itemType>
|
|
620
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
621
|
+
<symbol>ozt</symbol>
|
|
622
|
+
<definition>Troy Ounce</definition>
|
|
623
|
+
<baseStandard>Customary</baseStandard>
|
|
624
|
+
<conversionPresentation>
|
|
625
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
626
|
+
<mrow>
|
|
627
|
+
<mn>0.0311034768</mn>
|
|
628
|
+
<mo>*</mo>
|
|
629
|
+
<mi>kg</mi>
|
|
630
|
+
</mrow>
|
|
631
|
+
</math>
|
|
632
|
+
</conversionPresentation>
|
|
633
|
+
<conversionContent>
|
|
634
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
635
|
+
<apply>
|
|
636
|
+
<times/>
|
|
637
|
+
<cn>0.0311034768</cn>
|
|
638
|
+
<ci>kg</ci>
|
|
639
|
+
</apply>
|
|
640
|
+
</math>
|
|
641
|
+
</conversionContent>
|
|
642
|
+
<status>REC</status>
|
|
643
|
+
<versionDate>2012-10-31</versionDate>
|
|
644
|
+
</unit>
|
|
645
|
+
<unit id="u00043">
|
|
646
|
+
<unitId>T</unitId>
|
|
647
|
+
<unitName>Ton</unitName>
|
|
648
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
649
|
+
<itemType>massItemType</itemType>
|
|
650
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
651
|
+
<symbol>T</symbol>
|
|
652
|
+
<definition>Ton</definition>
|
|
653
|
+
<baseStandard>Customary</baseStandard>
|
|
654
|
+
<conversionPresentation>
|
|
655
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
656
|
+
<mrow>
|
|
657
|
+
<mn>907.18474</mn>
|
|
658
|
+
<mo>*</mo>
|
|
659
|
+
<mi>kg</mi>
|
|
660
|
+
</mrow>
|
|
661
|
+
</math>
|
|
662
|
+
</conversionPresentation>
|
|
663
|
+
<conversionContent>
|
|
664
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
665
|
+
<apply>
|
|
666
|
+
<times/>
|
|
667
|
+
<cn>907.18474</cn>
|
|
668
|
+
<ci>kg</ci>
|
|
669
|
+
</apply>
|
|
670
|
+
</math>
|
|
671
|
+
</conversionContent>
|
|
672
|
+
<status>REC</status>
|
|
673
|
+
<versionDate>2012-10-31</versionDate>
|
|
674
|
+
</unit>
|
|
675
|
+
<unit id="u00230">
|
|
676
|
+
<unitId>hp</unitId>
|
|
677
|
+
<unitName>Horsepower</unitName>
|
|
678
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
679
|
+
<itemType>powerItemType</itemType>
|
|
680
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
681
|
+
<symbol>hp</symbol>
|
|
682
|
+
<definition>Horsepower (Foot-pound per Second)</definition>
|
|
683
|
+
<baseStandard>Customary</baseStandard>
|
|
684
|
+
<conversionPresentation>
|
|
685
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
686
|
+
<mrow>
|
|
687
|
+
<mn>745.7</mn>
|
|
688
|
+
<mo>*</mo>
|
|
689
|
+
<mi>W</mi>
|
|
690
|
+
</mrow>
|
|
691
|
+
</math>
|
|
692
|
+
</conversionPresentation>
|
|
693
|
+
<conversionContent>
|
|
694
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
695
|
+
<apply>
|
|
696
|
+
<times/>
|
|
697
|
+
<cn>745.7</cn>
|
|
698
|
+
<ci>W</ci>
|
|
699
|
+
</apply>
|
|
700
|
+
</math>
|
|
701
|
+
</conversionContent>
|
|
702
|
+
<status>REC</status>
|
|
703
|
+
<versionDate>2012-10-31</versionDate>
|
|
704
|
+
</unit>
|
|
705
|
+
<unit id="u00240">
|
|
706
|
+
<unitId>bbl</unitId>
|
|
707
|
+
<unitName>Barrel</unitName>
|
|
708
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
709
|
+
<itemType>volumeItemType</itemType>
|
|
710
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
711
|
+
<symbol>bbl</symbol>
|
|
712
|
+
<definition>Barrel (of Oil)</definition>
|
|
713
|
+
<baseStandard>Customary</baseStandard>
|
|
714
|
+
<conversionPresentation>
|
|
715
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
716
|
+
<mrow>
|
|
717
|
+
<mn>0.1589873</mn>
|
|
718
|
+
<mo>*</mo>
|
|
719
|
+
<msup>
|
|
720
|
+
<mi>m</mi>
|
|
721
|
+
<mn>3</mn>
|
|
722
|
+
</msup>
|
|
723
|
+
</mrow>
|
|
724
|
+
</math>
|
|
725
|
+
</conversionPresentation>
|
|
726
|
+
<conversionContent>
|
|
727
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
728
|
+
<apply>
|
|
729
|
+
<times/>
|
|
730
|
+
<cn>0.1589873</cn>
|
|
731
|
+
<apply>
|
|
732
|
+
<power/>
|
|
733
|
+
<ci>m</ci>
|
|
734
|
+
<cn>3</cn>
|
|
735
|
+
</apply>
|
|
736
|
+
</apply>
|
|
737
|
+
</math>
|
|
738
|
+
</conversionContent>
|
|
739
|
+
<status>REC</status>
|
|
740
|
+
<versionDate>2012-10-31</versionDate>
|
|
741
|
+
</unit>
|
|
742
|
+
<unit id="u00241">
|
|
743
|
+
<unitId>ft3</unitId>
|
|
744
|
+
<unitName>Cubic Foot</unitName>
|
|
745
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
746
|
+
<itemType>volumeItemType</itemType>
|
|
747
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
748
|
+
<symbol>ft³</symbol>
|
|
749
|
+
<definition>Cubic Foot</definition>
|
|
750
|
+
<baseStandard>Customary</baseStandard>
|
|
751
|
+
<conversionPresentation>
|
|
752
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
753
|
+
<mrow>
|
|
754
|
+
<mn>0.028316846592</mn>
|
|
755
|
+
<mo>*</mo>
|
|
756
|
+
<msup>
|
|
757
|
+
<mi>m</mi>
|
|
758
|
+
<mn>3</mn>
|
|
759
|
+
</msup>
|
|
760
|
+
</mrow>
|
|
761
|
+
</math>
|
|
762
|
+
</conversionPresentation>
|
|
763
|
+
<conversionContent>
|
|
764
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
765
|
+
<apply>
|
|
766
|
+
<times/>
|
|
767
|
+
<cn>0.028316846592</cn>
|
|
768
|
+
<apply>
|
|
769
|
+
<power/>
|
|
770
|
+
<ci>m</ci>
|
|
771
|
+
<cn>3</cn>
|
|
772
|
+
</apply>
|
|
773
|
+
</apply>
|
|
774
|
+
</math>
|
|
775
|
+
</conversionContent>
|
|
776
|
+
<status>REC</status>
|
|
777
|
+
<versionDate>2012-10-31</versionDate>
|
|
778
|
+
</unit>
|
|
779
|
+
<unit id="u00242">
|
|
780
|
+
<unitId>gal</unitId>
|
|
781
|
+
<unitName>Gallon</unitName>
|
|
782
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
783
|
+
<itemType>volumeItemType</itemType>
|
|
784
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
785
|
+
<symbol>gal</symbol>
|
|
786
|
+
<definition>US Gallon</definition>
|
|
787
|
+
<baseStandard>Customary</baseStandard>
|
|
788
|
+
<conversionPresentation>
|
|
789
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
790
|
+
<mrow>
|
|
791
|
+
<mn>0.003785412</mn>
|
|
792
|
+
<mo>*</mo>
|
|
793
|
+
<msup>
|
|
794
|
+
<mi>m</mi>
|
|
795
|
+
<mn>3</mn>
|
|
796
|
+
</msup>
|
|
797
|
+
</mrow>
|
|
798
|
+
</math>
|
|
799
|
+
</conversionPresentation>
|
|
800
|
+
<conversionContent>
|
|
801
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
802
|
+
<apply>
|
|
803
|
+
<times/>
|
|
804
|
+
<cn>0.003785412</cn>
|
|
805
|
+
<apply>
|
|
806
|
+
<power/>
|
|
807
|
+
<ci>m</ci>
|
|
808
|
+
<cn>3</cn>
|
|
809
|
+
</apply>
|
|
810
|
+
</apply>
|
|
811
|
+
</math>
|
|
812
|
+
</conversionContent>
|
|
813
|
+
<status>REC</status>
|
|
814
|
+
<versionDate>2012-10-31</versionDate>
|
|
815
|
+
</unit>
|
|
816
|
+
<unit id="u00245">
|
|
817
|
+
<unitId>MBbls</unitId>
|
|
818
|
+
<unitName>Thousand Barrels</unitName>
|
|
819
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
820
|
+
<itemType>volumeItemType</itemType>
|
|
821
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
822
|
+
<symbol>MBbls</symbol>
|
|
823
|
+
<definition>Thousands of Barrels (of Oil)</definition>
|
|
824
|
+
<baseStandard>Customary</baseStandard>
|
|
825
|
+
<conversionPresentation>
|
|
826
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
827
|
+
<mrow>
|
|
828
|
+
<mn>158.98729493</mn>
|
|
829
|
+
<mo>*</mo>
|
|
830
|
+
<msup>
|
|
831
|
+
<mi>m</mi>
|
|
832
|
+
<mn>3</mn>
|
|
833
|
+
</msup>
|
|
834
|
+
</mrow>
|
|
835
|
+
</math>
|
|
836
|
+
</conversionPresentation>
|
|
837
|
+
<conversionContent>
|
|
838
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
839
|
+
<apply>
|
|
840
|
+
<times/>
|
|
841
|
+
<cn>158.98729493</cn>
|
|
842
|
+
<apply>
|
|
843
|
+
<power/>
|
|
844
|
+
<ci>m</ci>
|
|
845
|
+
<cn>6</cn>
|
|
846
|
+
</apply>
|
|
847
|
+
</apply>
|
|
848
|
+
</math>
|
|
849
|
+
</conversionContent>
|
|
850
|
+
<status>REC</status>
|
|
851
|
+
<versionDate>2012-10-31</versionDate>
|
|
852
|
+
</unit>
|
|
853
|
+
<unit id="u00246">
|
|
854
|
+
<unitId>Mcf</unitId>
|
|
855
|
+
<unitName>Thousands Cubic Feet</unitName>
|
|
856
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
857
|
+
<itemType>volumeItemType</itemType>
|
|
858
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
859
|
+
<symbol>Mcf</symbol>
|
|
860
|
+
<definition>Thousands of Cubic Feet</definition>
|
|
861
|
+
<baseStandard>Customary</baseStandard>
|
|
862
|
+
<conversionPresentation>
|
|
863
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
864
|
+
<mrow>
|
|
865
|
+
<mn>28316.846592</mn>
|
|
866
|
+
<mo>*</mo>
|
|
867
|
+
<msup>
|
|
868
|
+
<mi>m</mi>
|
|
869
|
+
<mn>3</mn>
|
|
870
|
+
</msup>
|
|
871
|
+
</mrow>
|
|
872
|
+
</math>
|
|
873
|
+
</conversionPresentation>
|
|
874
|
+
<conversionContent>
|
|
875
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
876
|
+
<apply>
|
|
877
|
+
<times/>
|
|
878
|
+
<cn>28316.846592</cn>
|
|
879
|
+
<apply>
|
|
880
|
+
<power/>
|
|
881
|
+
<ci>m</ci>
|
|
882
|
+
<cn>3</cn>
|
|
883
|
+
</apply>
|
|
884
|
+
</apply>
|
|
885
|
+
</math>
|
|
886
|
+
</conversionContent>
|
|
887
|
+
<status>REC</status>
|
|
888
|
+
<versionDate>2012-10-31</versionDate>
|
|
889
|
+
</unit>
|
|
890
|
+
<unit id="u00247">
|
|
891
|
+
<unitId>MMBbls</unitId>
|
|
892
|
+
<unitName>Million Barrels</unitName>
|
|
893
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
894
|
+
<itemType>volumeItemType</itemType>
|
|
895
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
896
|
+
<symbol>MMBbls</symbol>
|
|
897
|
+
<definition>Millions of Barrels (of Oil)</definition>
|
|
898
|
+
<baseStandard>Customary</baseStandard>
|
|
899
|
+
<conversionPresentation>
|
|
900
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
901
|
+
<mrow>
|
|
902
|
+
<mn>158987.294933</mn>
|
|
903
|
+
<mo>*</mo>
|
|
904
|
+
<msup>
|
|
905
|
+
<mi>m</mi>
|
|
906
|
+
<mn>3</mn>
|
|
907
|
+
</msup>
|
|
908
|
+
</mrow>
|
|
909
|
+
</math>
|
|
910
|
+
</conversionPresentation>
|
|
911
|
+
<conversionContent>
|
|
912
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
913
|
+
<apply>
|
|
914
|
+
<times/>
|
|
915
|
+
<cn>158987.294933</cn>
|
|
916
|
+
<apply>
|
|
917
|
+
<power/>
|
|
918
|
+
<ci>m</ci>
|
|
919
|
+
<cn>3</cn>
|
|
920
|
+
</apply>
|
|
921
|
+
</apply>
|
|
922
|
+
</math>
|
|
923
|
+
</conversionContent>
|
|
924
|
+
<status>REC</status>
|
|
925
|
+
<versionDate>2012-10-31</versionDate>
|
|
926
|
+
</unit>
|
|
927
|
+
<unit id="u00248">
|
|
928
|
+
<unitId>MMcf</unitId>
|
|
929
|
+
<unitName>Millions Cubic Feet</unitName>
|
|
930
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
931
|
+
<itemType>volumeItemType</itemType>
|
|
932
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
933
|
+
<symbol>MMcf</symbol>
|
|
934
|
+
<definition>Millions of Cubic Feet</definition>
|
|
935
|
+
<baseStandard>Customary</baseStandard>
|
|
936
|
+
<conversionPresentation>
|
|
937
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
938
|
+
<mrow>
|
|
939
|
+
<mn>28316.846592</mn>
|
|
940
|
+
<mo>*</mo>
|
|
941
|
+
<msup>
|
|
942
|
+
<mi>m</mi>
|
|
943
|
+
<mn>3</mn>
|
|
944
|
+
</msup>
|
|
945
|
+
</mrow>
|
|
946
|
+
</math>
|
|
947
|
+
</conversionPresentation>
|
|
948
|
+
<conversionContent>
|
|
949
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
950
|
+
<apply>
|
|
951
|
+
<times/>
|
|
952
|
+
<cn>28316.846592</cn>
|
|
953
|
+
<apply>
|
|
954
|
+
<power/>
|
|
955
|
+
<ci>m</ci>
|
|
956
|
+
<cn>3</cn>
|
|
957
|
+
</apply>
|
|
958
|
+
</apply>
|
|
959
|
+
</math>
|
|
960
|
+
</conversionContent>
|
|
961
|
+
<status>REC</status>
|
|
962
|
+
<versionDate>2012-10-31</versionDate>
|
|
963
|
+
</unit>
|
|
964
|
+
<unit id="u00050">
|
|
965
|
+
<unitId>AED</unitId>
|
|
966
|
+
<unitName>U.A.E. dirham</unitName>
|
|
967
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
968
|
+
<itemType>monetaryItemType</itemType>
|
|
969
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
970
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
971
|
+
<definition>United Arab Emirates dirham</definition>
|
|
972
|
+
<baseStandard>ISO4217</baseStandard>
|
|
973
|
+
<status>REC</status>
|
|
974
|
+
<versionDate>2012-10-31</versionDate>
|
|
975
|
+
</unit>
|
|
976
|
+
<unit id="u00051">
|
|
977
|
+
<unitId>AFN</unitId>
|
|
978
|
+
<unitName>Afghan afghani</unitName>
|
|
979
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
980
|
+
<itemType>monetaryItemType</itemType>
|
|
981
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
982
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
983
|
+
<definition>Afghan afghani</definition>
|
|
984
|
+
<baseStandard>ISO4217</baseStandard>
|
|
985
|
+
<status>REC</status>
|
|
986
|
+
<versionDate>2012-10-31</versionDate>
|
|
987
|
+
</unit>
|
|
988
|
+
<unit id="u00052">
|
|
989
|
+
<unitId>ALL</unitId>
|
|
990
|
+
<unitName>Albanian lek</unitName>
|
|
991
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
992
|
+
<itemType>monetaryItemType</itemType>
|
|
993
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
994
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
995
|
+
<definition>Albanian lek</definition>
|
|
996
|
+
<baseStandard>ISO4217</baseStandard>
|
|
997
|
+
<status>REC</status>
|
|
998
|
+
<versionDate>2012-10-31</versionDate>
|
|
999
|
+
</unit>
|
|
1000
|
+
<unit id="u00053">
|
|
1001
|
+
<unitId>AMD</unitId>
|
|
1002
|
+
<unitName>Armenian dram</unitName>
|
|
1003
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1004
|
+
<itemType>monetaryItemType</itemType>
|
|
1005
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1006
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1007
|
+
<definition>Armenian dram</definition>
|
|
1008
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1009
|
+
<status>REC</status>
|
|
1010
|
+
<versionDate>2012-10-31</versionDate>
|
|
1011
|
+
</unit>
|
|
1012
|
+
<unit id="u00054">
|
|
1013
|
+
<unitId>ANG</unitId>
|
|
1014
|
+
<unitName>Netherlands Antillean guilder</unitName>
|
|
1015
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1016
|
+
<itemType>monetaryItemType</itemType>
|
|
1017
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1018
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1019
|
+
<definition>Netherlands Antillean guilder</definition>
|
|
1020
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1021
|
+
<status>REC</status>
|
|
1022
|
+
<versionDate>2012-10-31</versionDate>
|
|
1023
|
+
</unit>
|
|
1024
|
+
<unit id="u00055">
|
|
1025
|
+
<unitId>AOA</unitId>
|
|
1026
|
+
<unitName>Angolan kwanza</unitName>
|
|
1027
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1028
|
+
<itemType>monetaryItemType</itemType>
|
|
1029
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1030
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1031
|
+
<definition>Angolan kwanza</definition>
|
|
1032
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1033
|
+
<status>REC</status>
|
|
1034
|
+
<versionDate>2012-10-31</versionDate>
|
|
1035
|
+
</unit>
|
|
1036
|
+
<unit id="u00056">
|
|
1037
|
+
<unitId>ARS</unitId>
|
|
1038
|
+
<unitName>Argentine peso</unitName>
|
|
1039
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1040
|
+
<itemType>monetaryItemType</itemType>
|
|
1041
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1042
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1043
|
+
<definition>Argentine peso</definition>
|
|
1044
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1045
|
+
<status>REC</status>
|
|
1046
|
+
<versionDate>2012-10-31</versionDate>
|
|
1047
|
+
</unit>
|
|
1048
|
+
<unit id="u00057">
|
|
1049
|
+
<unitId>AUD</unitId>
|
|
1050
|
+
<unitName>Australian dollar</unitName>
|
|
1051
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1052
|
+
<itemType>monetaryItemType</itemType>
|
|
1053
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1054
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1055
|
+
<definition>Australian dollar</definition>
|
|
1056
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1057
|
+
<status>REC</status>
|
|
1058
|
+
<versionDate>2012-10-31</versionDate>
|
|
1059
|
+
</unit>
|
|
1060
|
+
<unit id="u00058">
|
|
1061
|
+
<unitId>AWG</unitId>
|
|
1062
|
+
<unitName>Aruban florin</unitName>
|
|
1063
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1064
|
+
<itemType>monetaryItemType</itemType>
|
|
1065
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1066
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1067
|
+
<definition>Aruban florin</definition>
|
|
1068
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1069
|
+
<status>REC</status>
|
|
1070
|
+
<versionDate>2012-10-31</versionDate>
|
|
1071
|
+
</unit>
|
|
1072
|
+
<unit id="u00059">
|
|
1073
|
+
<unitId>AZN</unitId>
|
|
1074
|
+
<unitName>Azerbaijani manat</unitName>
|
|
1075
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1076
|
+
<itemType>monetaryItemType</itemType>
|
|
1077
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1078
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1079
|
+
<definition>Azerbaijani manat</definition>
|
|
1080
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1081
|
+
<status>REC</status>
|
|
1082
|
+
<versionDate>2012-10-31</versionDate>
|
|
1083
|
+
</unit>
|
|
1084
|
+
<unit id="u00060">
|
|
1085
|
+
<unitId>BAM</unitId>
|
|
1086
|
+
<unitName>Bosnia and Herzegovina convertible mark</unitName>
|
|
1087
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1088
|
+
<itemType>monetaryItemType</itemType>
|
|
1089
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1090
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1091
|
+
<definition>Bosnia and Herzegovina convertible mark</definition>
|
|
1092
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1093
|
+
<status>REC</status>
|
|
1094
|
+
<versionDate>2012-10-31</versionDate>
|
|
1095
|
+
</unit>
|
|
1096
|
+
<unit id="u00061">
|
|
1097
|
+
<unitId>BBD</unitId>
|
|
1098
|
+
<unitName>Barbados dollar</unitName>
|
|
1099
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1100
|
+
<itemType>monetaryItemType</itemType>
|
|
1101
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1102
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1103
|
+
<definition>Barbados dollar</definition>
|
|
1104
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1105
|
+
<status>REC</status>
|
|
1106
|
+
<versionDate>2012-10-31</versionDate>
|
|
1107
|
+
</unit>
|
|
1108
|
+
<unit id="u00062">
|
|
1109
|
+
<unitId>BDT</unitId>
|
|
1110
|
+
<unitName>Bangladeshi taka</unitName>
|
|
1111
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1112
|
+
<itemType>monetaryItemType</itemType>
|
|
1113
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1114
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1115
|
+
<definition>Bangladeshi taka</definition>
|
|
1116
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1117
|
+
<status>REC</status>
|
|
1118
|
+
<versionDate>2012-10-31</versionDate>
|
|
1119
|
+
</unit>
|
|
1120
|
+
<unit id="u00063">
|
|
1121
|
+
<unitId>BGN</unitId>
|
|
1122
|
+
<unitName>Bulgarian lev</unitName>
|
|
1123
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1124
|
+
<itemType>monetaryItemType</itemType>
|
|
1125
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1126
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1127
|
+
<definition>Bulgarian lev</definition>
|
|
1128
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1129
|
+
<status>REC</status>
|
|
1130
|
+
<versionDate>2012-10-31</versionDate>
|
|
1131
|
+
</unit>
|
|
1132
|
+
<unit id="u00064">
|
|
1133
|
+
<unitId>BHD</unitId>
|
|
1134
|
+
<unitName>Bahraini dinar</unitName>
|
|
1135
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1136
|
+
<itemType>monetaryItemType</itemType>
|
|
1137
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1138
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1139
|
+
<definition>Bahraini dinar</definition>
|
|
1140
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1141
|
+
<status>REC</status>
|
|
1142
|
+
<versionDate>2012-10-31</versionDate>
|
|
1143
|
+
</unit>
|
|
1144
|
+
<unit id="u00065">
|
|
1145
|
+
<unitId>BIF</unitId>
|
|
1146
|
+
<unitName>Burundian franc</unitName>
|
|
1147
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1148
|
+
<itemType>monetaryItemType</itemType>
|
|
1149
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1150
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1151
|
+
<definition>Burundian franc</definition>
|
|
1152
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1153
|
+
<status>REC</status>
|
|
1154
|
+
<versionDate>2012-10-31</versionDate>
|
|
1155
|
+
</unit>
|
|
1156
|
+
<unit id="u00066">
|
|
1157
|
+
<unitId>BMD</unitId>
|
|
1158
|
+
<unitName>Bermuda Dollar</unitName>
|
|
1159
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1160
|
+
<itemType>monetaryItemType</itemType>
|
|
1161
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1162
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1163
|
+
<definition>Bermudian dollar (customarily known as Bermuda dollar)</definition>
|
|
1164
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1165
|
+
<status>REC</status>
|
|
1166
|
+
<versionDate>2012-10-31</versionDate>
|
|
1167
|
+
</unit>
|
|
1168
|
+
<unit id="u00067">
|
|
1169
|
+
<unitId>BND</unitId>
|
|
1170
|
+
<unitName>Brunei dollar</unitName>
|
|
1171
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1172
|
+
<itemType>monetaryItemType</itemType>
|
|
1173
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1174
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1175
|
+
<definition>Brunei dollar</definition>
|
|
1176
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1177
|
+
<status>REC</status>
|
|
1178
|
+
<versionDate>2012-10-31</versionDate>
|
|
1179
|
+
</unit>
|
|
1180
|
+
<unit id="u00068">
|
|
1181
|
+
<unitId>BOB</unitId>
|
|
1182
|
+
<unitName>Boliviano</unitName>
|
|
1183
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1184
|
+
<itemType>monetaryItemType</itemType>
|
|
1185
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1186
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1187
|
+
<definition>Boliviano</definition>
|
|
1188
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1189
|
+
<status>REC</status>
|
|
1190
|
+
<versionDate>2012-10-31</versionDate>
|
|
1191
|
+
</unit>
|
|
1192
|
+
<unit id="u00069">
|
|
1193
|
+
<unitId>BOV</unitId>
|
|
1194
|
+
<unitName>Bolivian Mvdol</unitName>
|
|
1195
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1196
|
+
<itemType>monetaryItemType</itemType>
|
|
1197
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1198
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1199
|
+
<definition>Bolivian Mvdol (funds code)</definition>
|
|
1200
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1201
|
+
<status>REC</status>
|
|
1202
|
+
<versionDate>2012-10-31</versionDate>
|
|
1203
|
+
</unit>
|
|
1204
|
+
<unit id="u00070">
|
|
1205
|
+
<unitId>BRL</unitId>
|
|
1206
|
+
<unitName>Brazilian real</unitName>
|
|
1207
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1208
|
+
<itemType>monetaryItemType</itemType>
|
|
1209
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1210
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1211
|
+
<definition>Brazilian real</definition>
|
|
1212
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1213
|
+
<status>REC</status>
|
|
1214
|
+
<versionDate>2012-10-31</versionDate>
|
|
1215
|
+
</unit>
|
|
1216
|
+
<unit id="u00071">
|
|
1217
|
+
<unitId>BSD</unitId>
|
|
1218
|
+
<unitName>Bahamian dollar</unitName>
|
|
1219
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1220
|
+
<itemType>monetaryItemType</itemType>
|
|
1221
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1222
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1223
|
+
<definition>Bahamian dollar</definition>
|
|
1224
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1225
|
+
<status>REC</status>
|
|
1226
|
+
<versionDate>2012-10-31</versionDate>
|
|
1227
|
+
</unit>
|
|
1228
|
+
<unit id="u00072">
|
|
1229
|
+
<unitId>BTN</unitId>
|
|
1230
|
+
<unitName>Bhutanese ngultrum</unitName>
|
|
1231
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1232
|
+
<itemType>monetaryItemType</itemType>
|
|
1233
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1234
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1235
|
+
<definition>Bhutanese ngultrum</definition>
|
|
1236
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1237
|
+
<status>REC</status>
|
|
1238
|
+
<versionDate>2012-10-31</versionDate>
|
|
1239
|
+
</unit>
|
|
1240
|
+
<unit id="u00073">
|
|
1241
|
+
<unitId>BWP</unitId>
|
|
1242
|
+
<unitName>Botswana pula</unitName>
|
|
1243
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1244
|
+
<itemType>monetaryItemType</itemType>
|
|
1245
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1246
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1247
|
+
<definition>Botswana pula</definition>
|
|
1248
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1249
|
+
<status>REC</status>
|
|
1250
|
+
<versionDate>2012-10-31</versionDate>
|
|
1251
|
+
</unit>
|
|
1252
|
+
<unit id="u00074">
|
|
1253
|
+
<unitId>BYR</unitId>
|
|
1254
|
+
<unitName>Belarusian ruble</unitName>
|
|
1255
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1256
|
+
<itemType>monetaryItemType</itemType>
|
|
1257
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1258
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1259
|
+
<definition>Belarusian ruble</definition>
|
|
1260
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1261
|
+
<status>REC</status>
|
|
1262
|
+
<versionDate>2012-10-31</versionDate>
|
|
1263
|
+
</unit>
|
|
1264
|
+
<unit id="u00075">
|
|
1265
|
+
<unitId>BZD</unitId>
|
|
1266
|
+
<unitName>Belize dollar</unitName>
|
|
1267
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1268
|
+
<itemType>monetaryItemType</itemType>
|
|
1269
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1270
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1271
|
+
<definition>Belize dollar</definition>
|
|
1272
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1273
|
+
<status>REC</status>
|
|
1274
|
+
<versionDate>2012-10-31</versionDate>
|
|
1275
|
+
</unit>
|
|
1276
|
+
<unit id="u00076">
|
|
1277
|
+
<unitId>CAD</unitId>
|
|
1278
|
+
<unitName>Canadian dollar</unitName>
|
|
1279
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1280
|
+
<itemType>monetaryItemType</itemType>
|
|
1281
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1282
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1283
|
+
<definition>Canadian dollar</definition>
|
|
1284
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1285
|
+
<status>REC</status>
|
|
1286
|
+
<versionDate>2012-10-31</versionDate>
|
|
1287
|
+
</unit>
|
|
1288
|
+
<unit id="u00077">
|
|
1289
|
+
<unitId>CDF</unitId>
|
|
1290
|
+
<unitName>Congolese franc</unitName>
|
|
1291
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1292
|
+
<itemType>monetaryItemType</itemType>
|
|
1293
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1294
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1295
|
+
<definition>Congolese franc</definition>
|
|
1296
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1297
|
+
<status>REC</status>
|
|
1298
|
+
<versionDate>2012-10-31</versionDate>
|
|
1299
|
+
</unit>
|
|
1300
|
+
<unit id="u00078">
|
|
1301
|
+
<unitId>CHE</unitId>
|
|
1302
|
+
<unitName>WIR Bank</unitName>
|
|
1303
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1304
|
+
<itemType>monetaryItemType</itemType>
|
|
1305
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1306
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1307
|
+
<definition>WIR Bank (complementary currency)</definition>
|
|
1308
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1309
|
+
<status>REC</status>
|
|
1310
|
+
<versionDate>2012-10-31</versionDate>
|
|
1311
|
+
</unit>
|
|
1312
|
+
<unit id="u00079">
|
|
1313
|
+
<unitId>CHF</unitId>
|
|
1314
|
+
<unitName>Swiss franc</unitName>
|
|
1315
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1316
|
+
<itemType>monetaryItemType</itemType>
|
|
1317
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1318
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1319
|
+
<symbol>SFr</symbol>
|
|
1320
|
+
<definition>Swiss franc</definition>
|
|
1321
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1322
|
+
<status>REC</status>
|
|
1323
|
+
<versionDate>2012-10-31</versionDate>
|
|
1324
|
+
</unit>
|
|
1325
|
+
<unit id="u00080">
|
|
1326
|
+
<unitId>CHW</unitId>
|
|
1327
|
+
<unitName>WIR Bank</unitName>
|
|
1328
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1329
|
+
<itemType>monetaryItemType</itemType>
|
|
1330
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1331
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1332
|
+
<definition>WIR Bank (complementary currency)</definition>
|
|
1333
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1334
|
+
<status>REC</status>
|
|
1335
|
+
<versionDate>2012-10-31</versionDate>
|
|
1336
|
+
</unit>
|
|
1337
|
+
<unit id="u00081">
|
|
1338
|
+
<unitId>CLF</unitId>
|
|
1339
|
+
<unitName>Unidad de Fomento</unitName>
|
|
1340
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1341
|
+
<itemType>monetaryItemType</itemType>
|
|
1342
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1343
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1344
|
+
<definition>Unidad de Fomento (funds code)</definition>
|
|
1345
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1346
|
+
<status>REC</status>
|
|
1347
|
+
<versionDate>2012-10-31</versionDate>
|
|
1348
|
+
</unit>
|
|
1349
|
+
<unit id="u00082">
|
|
1350
|
+
<unitId>CLP</unitId>
|
|
1351
|
+
<unitName>Chilean peso</unitName>
|
|
1352
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1353
|
+
<itemType>monetaryItemType</itemType>
|
|
1354
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1355
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1356
|
+
<definition>Chilean peso</definition>
|
|
1357
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1358
|
+
<status>REC</status>
|
|
1359
|
+
<versionDate>2012-10-31</versionDate>
|
|
1360
|
+
</unit>
|
|
1361
|
+
<unit id="u00083">
|
|
1362
|
+
<unitId>CNY</unitId>
|
|
1363
|
+
<unitName>Chinese yuan</unitName>
|
|
1364
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1365
|
+
<itemType>monetaryItemType</itemType>
|
|
1366
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1367
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1368
|
+
<symbol>¥</symbol>
|
|
1369
|
+
<definition>Chinese yuan (renmibi)</definition>
|
|
1370
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1371
|
+
<status>REC</status>
|
|
1372
|
+
<versionDate>2012-10-31</versionDate>
|
|
1373
|
+
</unit>
|
|
1374
|
+
<unit id="u00084">
|
|
1375
|
+
<unitId>COP</unitId>
|
|
1376
|
+
<unitName>Colombian peso</unitName>
|
|
1377
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1378
|
+
<itemType>monetaryItemType</itemType>
|
|
1379
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1380
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1381
|
+
<definition>Colombian peso</definition>
|
|
1382
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1383
|
+
<status>REC</status>
|
|
1384
|
+
<versionDate>2012-10-31</versionDate>
|
|
1385
|
+
</unit>
|
|
1386
|
+
<unit id="u00085">
|
|
1387
|
+
<unitId>COU</unitId>
|
|
1388
|
+
<unitName>Unidad de Valor Real</unitName>
|
|
1389
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1390
|
+
<itemType>monetaryItemType</itemType>
|
|
1391
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1392
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1393
|
+
<definition>Unidad de Valor Real</definition>
|
|
1394
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1395
|
+
<status>REC</status>
|
|
1396
|
+
<versionDate>2012-10-31</versionDate>
|
|
1397
|
+
</unit>
|
|
1398
|
+
<unit id="u00086">
|
|
1399
|
+
<unitId>CRC</unitId>
|
|
1400
|
+
<unitName>Costa Rican colon</unitName>
|
|
1401
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1402
|
+
<itemType>monetaryItemType</itemType>
|
|
1403
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1404
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1405
|
+
<definition>Costa Rican colon</definition>
|
|
1406
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1407
|
+
<status>REC</status>
|
|
1408
|
+
<versionDate>2012-10-31</versionDate>
|
|
1409
|
+
</unit>
|
|
1410
|
+
<unit id="u00087">
|
|
1411
|
+
<unitId>CUC</unitId>
|
|
1412
|
+
<unitName>Cuban convertible peso</unitName>
|
|
1413
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1414
|
+
<itemType>monetaryItemType</itemType>
|
|
1415
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1416
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1417
|
+
<definition>Cuban convertible peso</definition>
|
|
1418
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1419
|
+
<status>REC</status>
|
|
1420
|
+
<versionDate>2012-10-31</versionDate>
|
|
1421
|
+
</unit>
|
|
1422
|
+
<unit id="u00088">
|
|
1423
|
+
<unitId>CUP</unitId>
|
|
1424
|
+
<unitName>Cuban peso</unitName>
|
|
1425
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1426
|
+
<itemType>monetaryItemType</itemType>
|
|
1427
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1428
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1429
|
+
<definition>Cuban peso</definition>
|
|
1430
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1431
|
+
<status>REC</status>
|
|
1432
|
+
<versionDate>2012-10-31</versionDate>
|
|
1433
|
+
</unit>
|
|
1434
|
+
<unit id="u00089">
|
|
1435
|
+
<unitId>CVE</unitId>
|
|
1436
|
+
<unitName>Cape Verde escudo</unitName>
|
|
1437
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1438
|
+
<itemType>monetaryItemType</itemType>
|
|
1439
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1440
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1441
|
+
<definition>Cape Verde escudo</definition>
|
|
1442
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1443
|
+
<status>REC</status>
|
|
1444
|
+
<versionDate>2012-10-31</versionDate>
|
|
1445
|
+
</unit>
|
|
1446
|
+
<unit id="u00090">
|
|
1447
|
+
<unitId>CZK</unitId>
|
|
1448
|
+
<unitName>Czech koruna</unitName>
|
|
1449
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1450
|
+
<itemType>monetaryItemType</itemType>
|
|
1451
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1452
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1453
|
+
<definition>Czech koruna</definition>
|
|
1454
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1455
|
+
<status>REC</status>
|
|
1456
|
+
<versionDate>2012-10-31</versionDate>
|
|
1457
|
+
</unit>
|
|
1458
|
+
<unit id="u00091">
|
|
1459
|
+
<unitId>DJF</unitId>
|
|
1460
|
+
<unitName>Djiboutian franc</unitName>
|
|
1461
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1462
|
+
<itemType>monetaryItemType</itemType>
|
|
1463
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1464
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1465
|
+
<definition>Djiboutian franc</definition>
|
|
1466
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1467
|
+
<status>REC</status>
|
|
1468
|
+
<versionDate>2012-10-31</versionDate>
|
|
1469
|
+
</unit>
|
|
1470
|
+
<unit id="u00092">
|
|
1471
|
+
<unitId>DKK</unitId>
|
|
1472
|
+
<unitName>Danish krone</unitName>
|
|
1473
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1474
|
+
<itemType>monetaryItemType</itemType>
|
|
1475
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1476
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1477
|
+
<definition>Danish krone</definition>
|
|
1478
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1479
|
+
<status>REC</status>
|
|
1480
|
+
<versionDate>2012-10-31</versionDate>
|
|
1481
|
+
</unit>
|
|
1482
|
+
<unit id="u00093">
|
|
1483
|
+
<unitId>DOP</unitId>
|
|
1484
|
+
<unitName>Dominican peso</unitName>
|
|
1485
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1486
|
+
<itemType>monetaryItemType</itemType>
|
|
1487
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1488
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1489
|
+
<definition>Dominican peso</definition>
|
|
1490
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1491
|
+
<status>REC</status>
|
|
1492
|
+
<versionDate>2012-10-31</versionDate>
|
|
1493
|
+
</unit>
|
|
1494
|
+
<unit id="u00094">
|
|
1495
|
+
<unitId>DZD</unitId>
|
|
1496
|
+
<unitName>Algerian dinar</unitName>
|
|
1497
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1498
|
+
<itemType>monetaryItemType</itemType>
|
|
1499
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1500
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1501
|
+
<definition>Algerian dinar</definition>
|
|
1502
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1503
|
+
<status>REC</status>
|
|
1504
|
+
<versionDate>2012-10-31</versionDate>
|
|
1505
|
+
</unit>
|
|
1506
|
+
<unit id="u00095">
|
|
1507
|
+
<unitId>EEK</unitId>
|
|
1508
|
+
<unitName>Estonian kroon</unitName>
|
|
1509
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1510
|
+
<itemType>monetaryItemType</itemType>
|
|
1511
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1512
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1513
|
+
<definition>Estonian kroon</definition>
|
|
1514
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1515
|
+
<status>REC</status>
|
|
1516
|
+
<versionDate>2012-10-31</versionDate>
|
|
1517
|
+
</unit>
|
|
1518
|
+
<unit id="u00096">
|
|
1519
|
+
<unitId>EGP</unitId>
|
|
1520
|
+
<unitName>Egyptian pound</unitName>
|
|
1521
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1522
|
+
<itemType>monetaryItemType</itemType>
|
|
1523
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1524
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1525
|
+
<definition>Egyptian pound</definition>
|
|
1526
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1527
|
+
<status>REC</status>
|
|
1528
|
+
<versionDate>2012-10-31</versionDate>
|
|
1529
|
+
</unit>
|
|
1530
|
+
<unit id="u00097">
|
|
1531
|
+
<unitId>ERN</unitId>
|
|
1532
|
+
<unitName>Eritrean nakfa</unitName>
|
|
1533
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1534
|
+
<itemType>monetaryItemType</itemType>
|
|
1535
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1536
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1537
|
+
<definition>Eritrean nakfa</definition>
|
|
1538
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1539
|
+
<status>REC</status>
|
|
1540
|
+
<versionDate>2012-10-31</versionDate>
|
|
1541
|
+
</unit>
|
|
1542
|
+
<unit id="u00098">
|
|
1543
|
+
<unitId>ETB</unitId>
|
|
1544
|
+
<unitName>Ethiopian birr</unitName>
|
|
1545
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1546
|
+
<itemType>monetaryItemType</itemType>
|
|
1547
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1548
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1549
|
+
<definition>Ethiopian birr</definition>
|
|
1550
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1551
|
+
<status>REC</status>
|
|
1552
|
+
<versionDate>2012-10-31</versionDate>
|
|
1553
|
+
</unit>
|
|
1554
|
+
<unit id="u00099">
|
|
1555
|
+
<unitId>EUR</unitId>
|
|
1556
|
+
<unitName>Euro</unitName>
|
|
1557
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1558
|
+
<itemType>monetaryItemType</itemType>
|
|
1559
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1560
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1561
|
+
<symbol>€</symbol>
|
|
1562
|
+
<definition>Euro</definition>
|
|
1563
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1564
|
+
<status>REC</status>
|
|
1565
|
+
<versionDate>2012-10-31</versionDate>
|
|
1566
|
+
</unit>
|
|
1567
|
+
<unit id="u00100">
|
|
1568
|
+
<unitId>FJD</unitId>
|
|
1569
|
+
<unitName>Fiji dollar</unitName>
|
|
1570
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1571
|
+
<itemType>monetaryItemType</itemType>
|
|
1572
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1573
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1574
|
+
<definition>Fiji dollar</definition>
|
|
1575
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1576
|
+
<status>REC</status>
|
|
1577
|
+
<versionDate>2012-10-31</versionDate>
|
|
1578
|
+
</unit>
|
|
1579
|
+
<unit id="u00101">
|
|
1580
|
+
<unitId>FKP</unitId>
|
|
1581
|
+
<unitName>Falkland Islands pound</unitName>
|
|
1582
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1583
|
+
<itemType>monetaryItemType</itemType>
|
|
1584
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1585
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1586
|
+
<definition>Falkland Islands pound</definition>
|
|
1587
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1588
|
+
<status>REC</status>
|
|
1589
|
+
<versionDate>2012-10-31</versionDate>
|
|
1590
|
+
</unit>
|
|
1591
|
+
<unit id="u00102">
|
|
1592
|
+
<unitId>GBP</unitId>
|
|
1593
|
+
<unitName>Pound sterling</unitName>
|
|
1594
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1595
|
+
<itemType>monetaryItemType</itemType>
|
|
1596
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1597
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1598
|
+
<symbol>£</symbol>
|
|
1599
|
+
<definition>Great Britain Pound sterling</definition>
|
|
1600
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1601
|
+
<status>REC</status>
|
|
1602
|
+
<versionDate>2012-10-31</versionDate>
|
|
1603
|
+
</unit>
|
|
1604
|
+
<unit id="u00103">
|
|
1605
|
+
<unitId>GEL</unitId>
|
|
1606
|
+
<unitName>Georgian lari</unitName>
|
|
1607
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1608
|
+
<itemType>monetaryItemType</itemType>
|
|
1609
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1610
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1611
|
+
<definition>Georgian lari</definition>
|
|
1612
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1613
|
+
<status>REC</status>
|
|
1614
|
+
<versionDate>2012-10-31</versionDate>
|
|
1615
|
+
</unit>
|
|
1616
|
+
<unit id="u00104">
|
|
1617
|
+
<unitId>GHS</unitId>
|
|
1618
|
+
<unitName>Ghanaian cedi</unitName>
|
|
1619
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1620
|
+
<itemType>monetaryItemType</itemType>
|
|
1621
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1622
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1623
|
+
<definition>Ghanaian cedi</definition>
|
|
1624
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1625
|
+
<status>REC</status>
|
|
1626
|
+
<versionDate>2012-10-31</versionDate>
|
|
1627
|
+
</unit>
|
|
1628
|
+
<unit id="u00105">
|
|
1629
|
+
<unitId>GIP</unitId>
|
|
1630
|
+
<unitName>Gibraltar pound</unitName>
|
|
1631
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1632
|
+
<itemType>monetaryItemType</itemType>
|
|
1633
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1634
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1635
|
+
<definition>Gibraltar pound</definition>
|
|
1636
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1637
|
+
<status>REC</status>
|
|
1638
|
+
<versionDate>2012-10-31</versionDate>
|
|
1639
|
+
</unit>
|
|
1640
|
+
<unit id="u00106">
|
|
1641
|
+
<unitId>GMD</unitId>
|
|
1642
|
+
<unitName>Gambian dalasi</unitName>
|
|
1643
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1644
|
+
<itemType>monetaryItemType</itemType>
|
|
1645
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1646
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1647
|
+
<definition>Gambian dalasi</definition>
|
|
1648
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1649
|
+
<status>REC</status>
|
|
1650
|
+
<versionDate>2012-10-31</versionDate>
|
|
1651
|
+
</unit>
|
|
1652
|
+
<unit id="u00107">
|
|
1653
|
+
<unitId>GNF</unitId>
|
|
1654
|
+
<unitName>Guinean franc</unitName>
|
|
1655
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1656
|
+
<itemType>monetaryItemType</itemType>
|
|
1657
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1658
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1659
|
+
<definition>Guinean franc</definition>
|
|
1660
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1661
|
+
<status>REC</status>
|
|
1662
|
+
<versionDate>2012-10-31</versionDate>
|
|
1663
|
+
</unit>
|
|
1664
|
+
<unit id="u00108">
|
|
1665
|
+
<unitId>GTQ</unitId>
|
|
1666
|
+
<unitName>Guatemalan quetzal</unitName>
|
|
1667
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1668
|
+
<itemType>monetaryItemType</itemType>
|
|
1669
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1670
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1671
|
+
<definition>Guatemalan quetzal</definition>
|
|
1672
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1673
|
+
<status>REC</status>
|
|
1674
|
+
<versionDate>2012-10-31</versionDate>
|
|
1675
|
+
</unit>
|
|
1676
|
+
<unit id="u00109">
|
|
1677
|
+
<unitId>GYD</unitId>
|
|
1678
|
+
<unitName>Guyanese dollar</unitName>
|
|
1679
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1680
|
+
<itemType>monetaryItemType</itemType>
|
|
1681
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1682
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1683
|
+
<definition>Guyanese dollar</definition>
|
|
1684
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1685
|
+
<status>REC</status>
|
|
1686
|
+
<versionDate>2012-10-31</versionDate>
|
|
1687
|
+
</unit>
|
|
1688
|
+
<unit id="u00110">
|
|
1689
|
+
<unitId>HKD</unitId>
|
|
1690
|
+
<unitName>Hong Kong dollar</unitName>
|
|
1691
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1692
|
+
<itemType>monetaryItemType</itemType>
|
|
1693
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1694
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1695
|
+
<definition>Hong Kong dollar</definition>
|
|
1696
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1697
|
+
<status>REC</status>
|
|
1698
|
+
<versionDate>2012-10-31</versionDate>
|
|
1699
|
+
</unit>
|
|
1700
|
+
<unit id="u00111">
|
|
1701
|
+
<unitId>HNL</unitId>
|
|
1702
|
+
<unitName>Honduran lempira</unitName>
|
|
1703
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1704
|
+
<itemType>monetaryItemType</itemType>
|
|
1705
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1706
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1707
|
+
<definition>Honduran lempira</definition>
|
|
1708
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1709
|
+
<status>REC</status>
|
|
1710
|
+
<versionDate>2012-10-31</versionDate>
|
|
1711
|
+
</unit>
|
|
1712
|
+
<unit id="u00112">
|
|
1713
|
+
<unitId>HRK</unitId>
|
|
1714
|
+
<unitName>Croatian kuna</unitName>
|
|
1715
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1716
|
+
<itemType>monetaryItemType</itemType>
|
|
1717
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1718
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1719
|
+
<definition>Croatian kuna</definition>
|
|
1720
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1721
|
+
<status>REC</status>
|
|
1722
|
+
<versionDate>2012-10-31</versionDate>
|
|
1723
|
+
</unit>
|
|
1724
|
+
<unit id="u00113">
|
|
1725
|
+
<unitId>HTG</unitId>
|
|
1726
|
+
<unitName>Haitian gourde</unitName>
|
|
1727
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1728
|
+
<itemType>monetaryItemType</itemType>
|
|
1729
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1730
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1731
|
+
<definition>Haitian gourde</definition>
|
|
1732
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1733
|
+
<status>REC</status>
|
|
1734
|
+
<versionDate>2012-10-31</versionDate>
|
|
1735
|
+
</unit>
|
|
1736
|
+
<unit id="u00114">
|
|
1737
|
+
<unitId>HUF</unitId>
|
|
1738
|
+
<unitName>Hungarian forint</unitName>
|
|
1739
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1740
|
+
<itemType>monetaryItemType</itemType>
|
|
1741
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1742
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1743
|
+
<definition>Hungarian forint</definition>
|
|
1744
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1745
|
+
<status>REC</status>
|
|
1746
|
+
<versionDate>2012-10-31</versionDate>
|
|
1747
|
+
</unit>
|
|
1748
|
+
<unit id="u00115">
|
|
1749
|
+
<unitId>IDR</unitId>
|
|
1750
|
+
<unitName>Indonesian rupiah</unitName>
|
|
1751
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1752
|
+
<itemType>monetaryItemType</itemType>
|
|
1753
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1754
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1755
|
+
<definition>Indonesian rupiah</definition>
|
|
1756
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1757
|
+
<status>REC</status>
|
|
1758
|
+
<versionDate>2012-10-31</versionDate>
|
|
1759
|
+
</unit>
|
|
1760
|
+
<unit id="u00116">
|
|
1761
|
+
<unitId>ILS</unitId>
|
|
1762
|
+
<unitName>Israeli new sheqel</unitName>
|
|
1763
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1764
|
+
<itemType>monetaryItemType</itemType>
|
|
1765
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1766
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1767
|
+
<symbol>₪</symbol>
|
|
1768
|
+
<definition>Israeli new sheqel</definition>
|
|
1769
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1770
|
+
<status>REC</status>
|
|
1771
|
+
<versionDate>2012-10-31</versionDate>
|
|
1772
|
+
</unit>
|
|
1773
|
+
<unit id="u00117">
|
|
1774
|
+
<unitId>INR</unitId>
|
|
1775
|
+
<unitName>Indian rupee</unitName>
|
|
1776
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1777
|
+
<itemType>monetaryItemType</itemType>
|
|
1778
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1779
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1780
|
+
<symbol>₨</symbol>
|
|
1781
|
+
<definition>Indian rupee</definition>
|
|
1782
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1783
|
+
<status>REC</status>
|
|
1784
|
+
<versionDate>2012-10-31</versionDate>
|
|
1785
|
+
</unit>
|
|
1786
|
+
<unit id="u00118">
|
|
1787
|
+
<unitId>IQD</unitId>
|
|
1788
|
+
<unitName>Iraqi dinar</unitName>
|
|
1789
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1790
|
+
<itemType>monetaryItemType</itemType>
|
|
1791
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1792
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1793
|
+
<definition>Iraqi dinar</definition>
|
|
1794
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1795
|
+
<status>REC</status>
|
|
1796
|
+
<versionDate>2012-10-31</versionDate>
|
|
1797
|
+
</unit>
|
|
1798
|
+
<unit id="u00119">
|
|
1799
|
+
<unitId>IRR</unitId>
|
|
1800
|
+
<unitName>Iranian rial</unitName>
|
|
1801
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1802
|
+
<itemType>monetaryItemType</itemType>
|
|
1803
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1804
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1805
|
+
<definition>Iranian rial</definition>
|
|
1806
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1807
|
+
<status>REC</status>
|
|
1808
|
+
<versionDate>2012-10-31</versionDate>
|
|
1809
|
+
</unit>
|
|
1810
|
+
<unit id="u00120">
|
|
1811
|
+
<unitId>ISK</unitId>
|
|
1812
|
+
<unitName>Icelandic króna</unitName>
|
|
1813
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1814
|
+
<itemType>monetaryItemType</itemType>
|
|
1815
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1816
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1817
|
+
<definition>Icelandic króna</definition>
|
|
1818
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1819
|
+
<status>REC</status>
|
|
1820
|
+
<versionDate>2012-10-31</versionDate>
|
|
1821
|
+
</unit>
|
|
1822
|
+
<unit id="u00121">
|
|
1823
|
+
<unitId>JMD</unitId>
|
|
1824
|
+
<unitName>Jamaican dollar</unitName>
|
|
1825
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1826
|
+
<itemType>monetaryItemType</itemType>
|
|
1827
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1828
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1829
|
+
<definition>Jamaican dollar</definition>
|
|
1830
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1831
|
+
<status>REC</status>
|
|
1832
|
+
<versionDate>2012-10-31</versionDate>
|
|
1833
|
+
</unit>
|
|
1834
|
+
<unit id="u00122">
|
|
1835
|
+
<unitId>JOD</unitId>
|
|
1836
|
+
<unitName>Jordanian dinar</unitName>
|
|
1837
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1838
|
+
<itemType>monetaryItemType</itemType>
|
|
1839
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1840
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1841
|
+
<definition>Jordanian dinar</definition>
|
|
1842
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1843
|
+
<status>REC</status>
|
|
1844
|
+
<versionDate>2012-10-31</versionDate>
|
|
1845
|
+
</unit>
|
|
1846
|
+
<unit id="u00123">
|
|
1847
|
+
<unitId>JPY</unitId>
|
|
1848
|
+
<unitName>Japanese yen</unitName>
|
|
1849
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1850
|
+
<itemType>monetaryItemType</itemType>
|
|
1851
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1852
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1853
|
+
<symbol>¥</symbol>
|
|
1854
|
+
<definition>Japanese yen</definition>
|
|
1855
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1856
|
+
<status>REC</status>
|
|
1857
|
+
<versionDate>2012-10-31</versionDate>
|
|
1858
|
+
</unit>
|
|
1859
|
+
<unit id="u00124">
|
|
1860
|
+
<unitId>KES</unitId>
|
|
1861
|
+
<unitName>Kenyan shilling</unitName>
|
|
1862
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1863
|
+
<itemType>monetaryItemType</itemType>
|
|
1864
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1865
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1866
|
+
<definition>Kenyan shilling</definition>
|
|
1867
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1868
|
+
<status>REC</status>
|
|
1869
|
+
<versionDate>2012-10-31</versionDate>
|
|
1870
|
+
</unit>
|
|
1871
|
+
<unit id="u00125">
|
|
1872
|
+
<unitId>KGS</unitId>
|
|
1873
|
+
<unitName>Kyrgyzstani som</unitName>
|
|
1874
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1875
|
+
<itemType>monetaryItemType</itemType>
|
|
1876
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1877
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1878
|
+
<definition>Kyrgyzstani som</definition>
|
|
1879
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1880
|
+
<status>REC</status>
|
|
1881
|
+
<versionDate>2012-10-31</versionDate>
|
|
1882
|
+
</unit>
|
|
1883
|
+
<unit id="u00126">
|
|
1884
|
+
<unitId>KHR</unitId>
|
|
1885
|
+
<unitName>Cambodian riel</unitName>
|
|
1886
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1887
|
+
<itemType>monetaryItemType</itemType>
|
|
1888
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1889
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1890
|
+
<definition>Cambodian riel</definition>
|
|
1891
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1892
|
+
<status>REC</status>
|
|
1893
|
+
<versionDate>2012-10-31</versionDate>
|
|
1894
|
+
</unit>
|
|
1895
|
+
<unit id="u00127">
|
|
1896
|
+
<unitId>KMF</unitId>
|
|
1897
|
+
<unitName>Comoro franc</unitName>
|
|
1898
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1899
|
+
<itemType>monetaryItemType</itemType>
|
|
1900
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1901
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1902
|
+
<symbol>₣</symbol>
|
|
1903
|
+
<definition>Comoro franc</definition>
|
|
1904
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1905
|
+
<status>REC</status>
|
|
1906
|
+
<versionDate>2012-10-31</versionDate>
|
|
1907
|
+
</unit>
|
|
1908
|
+
<unit id="u00128">
|
|
1909
|
+
<unitId>KPW</unitId>
|
|
1910
|
+
<unitName>North Korean won</unitName>
|
|
1911
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1912
|
+
<itemType>monetaryItemType</itemType>
|
|
1913
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1914
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1915
|
+
<definition>North Korean won</definition>
|
|
1916
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1917
|
+
<status>REC</status>
|
|
1918
|
+
<versionDate>2012-10-31</versionDate>
|
|
1919
|
+
</unit>
|
|
1920
|
+
<unit id="u00129">
|
|
1921
|
+
<unitId>KRW</unitId>
|
|
1922
|
+
<unitName>South Korean won</unitName>
|
|
1923
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1924
|
+
<itemType>monetaryItemType</itemType>
|
|
1925
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1926
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1927
|
+
<symbol>₩</symbol>
|
|
1928
|
+
<definition>South Korean won</definition>
|
|
1929
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1930
|
+
<status>REC</status>
|
|
1931
|
+
<versionDate>2012-10-31</versionDate>
|
|
1932
|
+
</unit>
|
|
1933
|
+
<unit id="u00130">
|
|
1934
|
+
<unitId>KWD</unitId>
|
|
1935
|
+
<unitName>Kuwaiti dinar</unitName>
|
|
1936
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1937
|
+
<itemType>monetaryItemType</itemType>
|
|
1938
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1939
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1940
|
+
<definition>Kuwaiti dinar</definition>
|
|
1941
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1942
|
+
<status>REC</status>
|
|
1943
|
+
<versionDate>2012-10-31</versionDate>
|
|
1944
|
+
</unit>
|
|
1945
|
+
<unit id="u00131">
|
|
1946
|
+
<unitId>KYD</unitId>
|
|
1947
|
+
<unitName>Cayman Islands dollar</unitName>
|
|
1948
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1949
|
+
<itemType>monetaryItemType</itemType>
|
|
1950
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1951
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1952
|
+
<definition>Cayman Islands dollar</definition>
|
|
1953
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1954
|
+
<status>REC</status>
|
|
1955
|
+
<versionDate>2012-10-31</versionDate>
|
|
1956
|
+
</unit>
|
|
1957
|
+
<unit id="u00132">
|
|
1958
|
+
<unitId>KZT</unitId>
|
|
1959
|
+
<unitName>Kazakhstani tenge</unitName>
|
|
1960
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1961
|
+
<itemType>monetaryItemType</itemType>
|
|
1962
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1963
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1964
|
+
<definition>Kazakhstani tenge</definition>
|
|
1965
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1966
|
+
<status>REC</status>
|
|
1967
|
+
<versionDate>2012-10-31</versionDate>
|
|
1968
|
+
</unit>
|
|
1969
|
+
<unit id="u00133">
|
|
1970
|
+
<unitId>LAK</unitId>
|
|
1971
|
+
<unitName>Lao kip</unitName>
|
|
1972
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1973
|
+
<itemType>monetaryItemType</itemType>
|
|
1974
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1975
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1976
|
+
<symbol>₭</symbol>
|
|
1977
|
+
<definition>Lao kip</definition>
|
|
1978
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1979
|
+
<status>REC</status>
|
|
1980
|
+
<versionDate>2012-10-31</versionDate>
|
|
1981
|
+
</unit>
|
|
1982
|
+
<unit id="u00134">
|
|
1983
|
+
<unitId>LBP</unitId>
|
|
1984
|
+
<unitName>Lebanese pound</unitName>
|
|
1985
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1986
|
+
<itemType>monetaryItemType</itemType>
|
|
1987
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
1988
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
1989
|
+
<definition>Lebanese pound</definition>
|
|
1990
|
+
<baseStandard>ISO4217</baseStandard>
|
|
1991
|
+
<status>REC</status>
|
|
1992
|
+
<versionDate>2012-10-31</versionDate>
|
|
1993
|
+
</unit>
|
|
1994
|
+
<unit id="u00135">
|
|
1995
|
+
<unitId>LKR</unitId>
|
|
1996
|
+
<unitName>Sri Lanka rupee</unitName>
|
|
1997
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
1998
|
+
<itemType>monetaryItemType</itemType>
|
|
1999
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2000
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2001
|
+
<definition>Sri Lanka rupee</definition>
|
|
2002
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2003
|
+
<status>REC</status>
|
|
2004
|
+
<versionDate>2012-10-31</versionDate>
|
|
2005
|
+
</unit>
|
|
2006
|
+
<unit id="u00136">
|
|
2007
|
+
<unitId>LRD</unitId>
|
|
2008
|
+
<unitName>Liberian dollar</unitName>
|
|
2009
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2010
|
+
<itemType>monetaryItemType</itemType>
|
|
2011
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2012
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2013
|
+
<definition>Liberian dollar</definition>
|
|
2014
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2015
|
+
<status>REC</status>
|
|
2016
|
+
<versionDate>2012-10-31</versionDate>
|
|
2017
|
+
</unit>
|
|
2018
|
+
<unit id="u00137">
|
|
2019
|
+
<unitId>LSL</unitId>
|
|
2020
|
+
<unitName>Lesotho loti</unitName>
|
|
2021
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2022
|
+
<itemType>monetaryItemType</itemType>
|
|
2023
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2024
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2025
|
+
<definition>Lesotho loti</definition>
|
|
2026
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2027
|
+
<status>REC</status>
|
|
2028
|
+
<versionDate>2012-10-31</versionDate>
|
|
2029
|
+
</unit>
|
|
2030
|
+
<unit id="u00138">
|
|
2031
|
+
<unitId>LTL</unitId>
|
|
2032
|
+
<unitName>Lithuanian litas</unitName>
|
|
2033
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2034
|
+
<itemType>monetaryItemType</itemType>
|
|
2035
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2036
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2037
|
+
<definition>Lithuanian litas</definition>
|
|
2038
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2039
|
+
<status>REC</status>
|
|
2040
|
+
<versionDate>2012-10-31</versionDate>
|
|
2041
|
+
</unit>
|
|
2042
|
+
<unit id="u00139">
|
|
2043
|
+
<unitId>LVL</unitId>
|
|
2044
|
+
<unitName>Latvian lats</unitName>
|
|
2045
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2046
|
+
<itemType>monetaryItemType</itemType>
|
|
2047
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2048
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2049
|
+
<definition>Latvian lats</definition>
|
|
2050
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2051
|
+
<status>REC</status>
|
|
2052
|
+
<versionDate>2012-10-31</versionDate>
|
|
2053
|
+
</unit>
|
|
2054
|
+
<unit id="u00140">
|
|
2055
|
+
<unitId>LYD</unitId>
|
|
2056
|
+
<unitName>Libyan dinar</unitName>
|
|
2057
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2058
|
+
<itemType>monetaryItemType</itemType>
|
|
2059
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2060
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2061
|
+
<definition>Libyan dinar</definition>
|
|
2062
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2063
|
+
<status>REC</status>
|
|
2064
|
+
<versionDate>2012-10-31</versionDate>
|
|
2065
|
+
</unit>
|
|
2066
|
+
<unit id="u00141">
|
|
2067
|
+
<unitId>MAD</unitId>
|
|
2068
|
+
<unitName>Moroccan dirham</unitName>
|
|
2069
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2070
|
+
<itemType>monetaryItemType</itemType>
|
|
2071
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2072
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2073
|
+
<definition>Moroccan dirham</definition>
|
|
2074
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2075
|
+
<status>REC</status>
|
|
2076
|
+
<versionDate>2012-10-31</versionDate>
|
|
2077
|
+
</unit>
|
|
2078
|
+
<unit id="u00142">
|
|
2079
|
+
<unitId>MDL</unitId>
|
|
2080
|
+
<unitName>Moldovan leu</unitName>
|
|
2081
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2082
|
+
<itemType>monetaryItemType</itemType>
|
|
2083
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2084
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2085
|
+
<definition>Moldovan leu</definition>
|
|
2086
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2087
|
+
<status>REC</status>
|
|
2088
|
+
<versionDate>2012-10-31</versionDate>
|
|
2089
|
+
</unit>
|
|
2090
|
+
<unit id="u00143">
|
|
2091
|
+
<unitId>MGA</unitId>
|
|
2092
|
+
<unitName>Malagasy ariary</unitName>
|
|
2093
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2094
|
+
<itemType>monetaryItemType</itemType>
|
|
2095
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2096
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2097
|
+
<definition>Malagasy ariary</definition>
|
|
2098
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2099
|
+
<status>REC</status>
|
|
2100
|
+
<versionDate>2012-10-31</versionDate>
|
|
2101
|
+
</unit>
|
|
2102
|
+
<unit id="u00144">
|
|
2103
|
+
<unitId>MKD</unitId>
|
|
2104
|
+
<unitName>Macedonian denar</unitName>
|
|
2105
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2106
|
+
<itemType>monetaryItemType</itemType>
|
|
2107
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2108
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2109
|
+
<definition>Macedonian denar</definition>
|
|
2110
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2111
|
+
<status>REC</status>
|
|
2112
|
+
<versionDate>2012-10-31</versionDate>
|
|
2113
|
+
</unit>
|
|
2114
|
+
<unit id="u00145">
|
|
2115
|
+
<unitId>MMK</unitId>
|
|
2116
|
+
<unitName>Myanma kyat</unitName>
|
|
2117
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2118
|
+
<itemType>monetaryItemType</itemType>
|
|
2119
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2120
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2121
|
+
<definition>Myanma kyat</definition>
|
|
2122
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2123
|
+
<status>REC</status>
|
|
2124
|
+
<versionDate>2012-10-31</versionDate>
|
|
2125
|
+
</unit>
|
|
2126
|
+
<unit id="u00146">
|
|
2127
|
+
<unitId>MNT</unitId>
|
|
2128
|
+
<unitName>Mongolian tugrik</unitName>
|
|
2129
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2130
|
+
<itemType>monetaryItemType</itemType>
|
|
2131
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2132
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2133
|
+
<symbol>₮</symbol>
|
|
2134
|
+
<definition>Mongolian tugrik</definition>
|
|
2135
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2136
|
+
<status>REC</status>
|
|
2137
|
+
<versionDate>2012-10-31</versionDate>
|
|
2138
|
+
</unit>
|
|
2139
|
+
<unit id="u00147">
|
|
2140
|
+
<unitId>MOP</unitId>
|
|
2141
|
+
<unitName>Macanese pataca</unitName>
|
|
2142
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2143
|
+
<itemType>monetaryItemType</itemType>
|
|
2144
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2145
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2146
|
+
<definition>Macanese pataca</definition>
|
|
2147
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2148
|
+
<status>REC</status>
|
|
2149
|
+
<versionDate>2012-10-31</versionDate>
|
|
2150
|
+
</unit>
|
|
2151
|
+
<unit id="u00148">
|
|
2152
|
+
<unitId>MRO</unitId>
|
|
2153
|
+
<unitName>Mauritanian ouguiya</unitName>
|
|
2154
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2155
|
+
<itemType>monetaryItemType</itemType>
|
|
2156
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2157
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2158
|
+
<definition>Mauritanian ouguiya</definition>
|
|
2159
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2160
|
+
<status>REC</status>
|
|
2161
|
+
<versionDate>2012-10-31</versionDate>
|
|
2162
|
+
</unit>
|
|
2163
|
+
<unit id="u00149">
|
|
2164
|
+
<unitId>MUR</unitId>
|
|
2165
|
+
<unitName>Mauritian rupee</unitName>
|
|
2166
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2167
|
+
<itemType>monetaryItemType</itemType>
|
|
2168
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2169
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2170
|
+
<definition>Mauritian rupee</definition>
|
|
2171
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2172
|
+
<status>REC</status>
|
|
2173
|
+
<versionDate>2012-10-31</versionDate>
|
|
2174
|
+
</unit>
|
|
2175
|
+
<unit id="u00150">
|
|
2176
|
+
<unitId>MVR</unitId>
|
|
2177
|
+
<unitName>Maldivian rufiyaa</unitName>
|
|
2178
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2179
|
+
<itemType>monetaryItemType</itemType>
|
|
2180
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2181
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2182
|
+
<definition>Maldivian rufiyaa</definition>
|
|
2183
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2184
|
+
<status>REC</status>
|
|
2185
|
+
<versionDate>2012-10-31</versionDate>
|
|
2186
|
+
</unit>
|
|
2187
|
+
<unit id="u00151">
|
|
2188
|
+
<unitId>MWK</unitId>
|
|
2189
|
+
<unitName>Malawian kwacha</unitName>
|
|
2190
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2191
|
+
<itemType>monetaryItemType</itemType>
|
|
2192
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2193
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2194
|
+
<definition>Malawian kwacha</definition>
|
|
2195
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2196
|
+
<status>REC</status>
|
|
2197
|
+
<versionDate>2012-10-31</versionDate>
|
|
2198
|
+
</unit>
|
|
2199
|
+
<unit id="u00152">
|
|
2200
|
+
<unitId>MXN</unitId>
|
|
2201
|
+
<unitName>Mexican peso</unitName>
|
|
2202
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2203
|
+
<itemType>monetaryItemType</itemType>
|
|
2204
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2205
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2206
|
+
<definition>Mexican peso</definition>
|
|
2207
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2208
|
+
<status>REC</status>
|
|
2209
|
+
<versionDate>2012-10-31</versionDate>
|
|
2210
|
+
</unit>
|
|
2211
|
+
<unit id="u00153">
|
|
2212
|
+
<unitId>MXV</unitId>
|
|
2213
|
+
<unitName>Mexican UDI</unitName>
|
|
2214
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2215
|
+
<itemType>monetaryItemType</itemType>
|
|
2216
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2217
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2218
|
+
<definition>Mexican Unidad de Inversion (UDI) (funds code)</definition>
|
|
2219
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2220
|
+
<status>REC</status>
|
|
2221
|
+
<versionDate>2012-10-31</versionDate>
|
|
2222
|
+
</unit>
|
|
2223
|
+
<unit id="u00154">
|
|
2224
|
+
<unitId>MYR</unitId>
|
|
2225
|
+
<unitName>Malaysian ringgit</unitName>
|
|
2226
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2227
|
+
<itemType>monetaryItemType</itemType>
|
|
2228
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2229
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2230
|
+
<definition>Malaysian ringgit</definition>
|
|
2231
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2232
|
+
<status>REC</status>
|
|
2233
|
+
<versionDate>2012-10-31</versionDate>
|
|
2234
|
+
</unit>
|
|
2235
|
+
<unit id="u00155">
|
|
2236
|
+
<unitId>MZN</unitId>
|
|
2237
|
+
<unitName>Mozambican metical</unitName>
|
|
2238
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2239
|
+
<itemType>monetaryItemType</itemType>
|
|
2240
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2241
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2242
|
+
<definition>Mozambican metical</definition>
|
|
2243
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2244
|
+
<status>REC</status>
|
|
2245
|
+
<versionDate>2012-10-31</versionDate>
|
|
2246
|
+
</unit>
|
|
2247
|
+
<unit id="u00156">
|
|
2248
|
+
<unitId>NAD</unitId>
|
|
2249
|
+
<unitName>Namibian dollar</unitName>
|
|
2250
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2251
|
+
<itemType>monetaryItemType</itemType>
|
|
2252
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2253
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2254
|
+
<definition>Namibian dollar</definition>
|
|
2255
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2256
|
+
<status>REC</status>
|
|
2257
|
+
<versionDate>2012-10-31</versionDate>
|
|
2258
|
+
</unit>
|
|
2259
|
+
<unit id="u00157">
|
|
2260
|
+
<unitId>NGN</unitId>
|
|
2261
|
+
<unitName>Nigerian naira</unitName>
|
|
2262
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2263
|
+
<itemType>monetaryItemType</itemType>
|
|
2264
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2265
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2266
|
+
<definition>Nigerian naira</definition>
|
|
2267
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2268
|
+
<status>REC</status>
|
|
2269
|
+
<versionDate>2012-10-31</versionDate>
|
|
2270
|
+
</unit>
|
|
2271
|
+
<unit id="u00158">
|
|
2272
|
+
<unitId>NIO</unitId>
|
|
2273
|
+
<unitName>Cordoba oro</unitName>
|
|
2274
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2275
|
+
<itemType>monetaryItemType</itemType>
|
|
2276
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2277
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2278
|
+
<definition>Cordoba oro</definition>
|
|
2279
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2280
|
+
<status>REC</status>
|
|
2281
|
+
<versionDate>2012-10-31</versionDate>
|
|
2282
|
+
</unit>
|
|
2283
|
+
<unit id="u00159">
|
|
2284
|
+
<unitId>NOK</unitId>
|
|
2285
|
+
<unitName>Norwegian krone</unitName>
|
|
2286
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2287
|
+
<itemType>monetaryItemType</itemType>
|
|
2288
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2289
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2290
|
+
<definition>Norwegian krone</definition>
|
|
2291
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2292
|
+
<status>REC</status>
|
|
2293
|
+
<versionDate>2012-10-31</versionDate>
|
|
2294
|
+
</unit>
|
|
2295
|
+
<unit id="u00160">
|
|
2296
|
+
<unitId>NPR</unitId>
|
|
2297
|
+
<unitName>Nepalese rupee</unitName>
|
|
2298
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2299
|
+
<itemType>monetaryItemType</itemType>
|
|
2300
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2301
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2302
|
+
<definition>Nepalese rupee</definition>
|
|
2303
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2304
|
+
<status>REC</status>
|
|
2305
|
+
<versionDate>2012-10-31</versionDate>
|
|
2306
|
+
</unit>
|
|
2307
|
+
<unit id="u00161">
|
|
2308
|
+
<unitId>NZD</unitId>
|
|
2309
|
+
<unitName>New Zealand dollar</unitName>
|
|
2310
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2311
|
+
<itemType>monetaryItemType</itemType>
|
|
2312
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2313
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2314
|
+
<definition>New Zealand dollar</definition>
|
|
2315
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2316
|
+
<status>REC</status>
|
|
2317
|
+
<versionDate>2012-10-31</versionDate>
|
|
2318
|
+
</unit>
|
|
2319
|
+
<unit id="u00162">
|
|
2320
|
+
<unitId>OMR</unitId>
|
|
2321
|
+
<unitName>Omani rial</unitName>
|
|
2322
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2323
|
+
<itemType>monetaryItemType</itemType>
|
|
2324
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2325
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2326
|
+
<definition>Omani rial</definition>
|
|
2327
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2328
|
+
<status>REC</status>
|
|
2329
|
+
<versionDate>2012-10-31</versionDate>
|
|
2330
|
+
</unit>
|
|
2331
|
+
<unit id="u00163">
|
|
2332
|
+
<unitId>PAB</unitId>
|
|
2333
|
+
<unitName>Panamanian balboa</unitName>
|
|
2334
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2335
|
+
<itemType>monetaryItemType</itemType>
|
|
2336
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2337
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2338
|
+
<definition>Panamanian balboa</definition>
|
|
2339
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2340
|
+
<status>REC</status>
|
|
2341
|
+
<versionDate>2012-10-31</versionDate>
|
|
2342
|
+
</unit>
|
|
2343
|
+
<unit id="u00164">
|
|
2344
|
+
<unitId>PEN</unitId>
|
|
2345
|
+
<unitName>Peruvian nuevo sol</unitName>
|
|
2346
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2347
|
+
<itemType>monetaryItemType</itemType>
|
|
2348
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2349
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2350
|
+
<definition>Peruvian nuevo sol</definition>
|
|
2351
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2352
|
+
<status>REC</status>
|
|
2353
|
+
<versionDate>2012-10-31</versionDate>
|
|
2354
|
+
</unit>
|
|
2355
|
+
<unit id="u00165">
|
|
2356
|
+
<unitId>PGK</unitId>
|
|
2357
|
+
<unitName>Papua New Guinean kina</unitName>
|
|
2358
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2359
|
+
<itemType>monetaryItemType</itemType>
|
|
2360
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2361
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2362
|
+
<definition>Papua New Guinean kina</definition>
|
|
2363
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2364
|
+
<status>REC</status>
|
|
2365
|
+
<versionDate>2012-10-31</versionDate>
|
|
2366
|
+
</unit>
|
|
2367
|
+
<unit id="u00166">
|
|
2368
|
+
<unitId>PHP</unitId>
|
|
2369
|
+
<unitName>Philippine peso</unitName>
|
|
2370
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2371
|
+
<itemType>monetaryItemType</itemType>
|
|
2372
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2373
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2374
|
+
<definition>Philippine peso</definition>
|
|
2375
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2376
|
+
<status>REC</status>
|
|
2377
|
+
<versionDate>2012-10-31</versionDate>
|
|
2378
|
+
</unit>
|
|
2379
|
+
<unit id="u00167">
|
|
2380
|
+
<unitId>PKR</unitId>
|
|
2381
|
+
<unitName>Pakistani rupee</unitName>
|
|
2382
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2383
|
+
<itemType>monetaryItemType</itemType>
|
|
2384
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2385
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2386
|
+
<definition>Pakistani rupee</definition>
|
|
2387
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2388
|
+
<status>REC</status>
|
|
2389
|
+
<versionDate>2012-10-31</versionDate>
|
|
2390
|
+
</unit>
|
|
2391
|
+
<unit id="u00168">
|
|
2392
|
+
<unitId>PLN</unitId>
|
|
2393
|
+
<unitName>Polish złoty</unitName>
|
|
2394
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2395
|
+
<itemType>monetaryItemType</itemType>
|
|
2396
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2397
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2398
|
+
<definition>Polish złoty</definition>
|
|
2399
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2400
|
+
<status>REC</status>
|
|
2401
|
+
<versionDate>2012-10-31</versionDate>
|
|
2402
|
+
</unit>
|
|
2403
|
+
<unit id="u00169">
|
|
2404
|
+
<unitId>PYG</unitId>
|
|
2405
|
+
<unitName>Paraguayan guaraní</unitName>
|
|
2406
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2407
|
+
<itemType>monetaryItemType</itemType>
|
|
2408
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2409
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2410
|
+
<definition>Paraguayan guaraní</definition>
|
|
2411
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2412
|
+
<status>REC</status>
|
|
2413
|
+
<versionDate>2012-10-31</versionDate>
|
|
2414
|
+
</unit>
|
|
2415
|
+
<unit id="u00170">
|
|
2416
|
+
<unitId>QAR</unitId>
|
|
2417
|
+
<unitName>Qatari rial</unitName>
|
|
2418
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2419
|
+
<itemType>monetaryItemType</itemType>
|
|
2420
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2421
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2422
|
+
<definition>Qatari rial</definition>
|
|
2423
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2424
|
+
<status>REC</status>
|
|
2425
|
+
<versionDate>2012-10-31</versionDate>
|
|
2426
|
+
</unit>
|
|
2427
|
+
<unit id="u00171">
|
|
2428
|
+
<unitId>RON</unitId>
|
|
2429
|
+
<unitName>Romanian new leu</unitName>
|
|
2430
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2431
|
+
<itemType>monetaryItemType</itemType>
|
|
2432
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2433
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2434
|
+
<definition>Romanian new leu</definition>
|
|
2435
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2436
|
+
<status>REC</status>
|
|
2437
|
+
<versionDate>2012-10-31</versionDate>
|
|
2438
|
+
</unit>
|
|
2439
|
+
<unit id="u00172">
|
|
2440
|
+
<unitId>RSD</unitId>
|
|
2441
|
+
<unitName>Serbian dinar</unitName>
|
|
2442
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2443
|
+
<itemType>monetaryItemType</itemType>
|
|
2444
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2445
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2446
|
+
<definition>Serbian dinar</definition>
|
|
2447
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2448
|
+
<status>REC</status>
|
|
2449
|
+
<versionDate>2012-10-31</versionDate>
|
|
2450
|
+
</unit>
|
|
2451
|
+
<unit id="u00173">
|
|
2452
|
+
<unitId>RUB</unitId>
|
|
2453
|
+
<unitName>Rouble</unitName>
|
|
2454
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2455
|
+
<itemType>monetaryItemType</itemType>
|
|
2456
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2457
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2458
|
+
<definition>Russian rouble</definition>
|
|
2459
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2460
|
+
<status>REC</status>
|
|
2461
|
+
<versionDate>2012-10-31</versionDate>
|
|
2462
|
+
</unit>
|
|
2463
|
+
<unit id="u00174">
|
|
2464
|
+
<unitId>RWF</unitId>
|
|
2465
|
+
<unitName>Rwandan franc</unitName>
|
|
2466
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2467
|
+
<itemType>monetaryItemType</itemType>
|
|
2468
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2469
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2470
|
+
<definition>Rwandan franc</definition>
|
|
2471
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2472
|
+
<status>REC</status>
|
|
2473
|
+
<versionDate>2012-10-31</versionDate>
|
|
2474
|
+
</unit>
|
|
2475
|
+
<unit id="u00175">
|
|
2476
|
+
<unitId>SAR</unitId>
|
|
2477
|
+
<unitName>Riyal</unitName>
|
|
2478
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2479
|
+
<itemType>monetaryItemType</itemType>
|
|
2480
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2481
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2482
|
+
<definition>Saudi riyal</definition>
|
|
2483
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2484
|
+
<status>REC</status>
|
|
2485
|
+
<versionDate>2012-10-31</versionDate>
|
|
2486
|
+
</unit>
|
|
2487
|
+
<unit id="u00176">
|
|
2488
|
+
<unitId>SBD</unitId>
|
|
2489
|
+
<unitName>Solomon Islands dollar</unitName>
|
|
2490
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2491
|
+
<itemType>monetaryItemType</itemType>
|
|
2492
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2493
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2494
|
+
<definition>Solomon Islands dollar</definition>
|
|
2495
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2496
|
+
<status>REC</status>
|
|
2497
|
+
<versionDate>2012-10-31</versionDate>
|
|
2498
|
+
</unit>
|
|
2499
|
+
<unit id="u00177">
|
|
2500
|
+
<unitId>SCR</unitId>
|
|
2501
|
+
<unitName>Seychelles rupee</unitName>
|
|
2502
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2503
|
+
<itemType>monetaryItemType</itemType>
|
|
2504
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2505
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2506
|
+
<definition>Seychelles rupee</definition>
|
|
2507
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2508
|
+
<status>REC</status>
|
|
2509
|
+
<versionDate>2012-10-31</versionDate>
|
|
2510
|
+
</unit>
|
|
2511
|
+
<unit id="u00178">
|
|
2512
|
+
<unitId>SDG</unitId>
|
|
2513
|
+
<unitName>Sudanese pound</unitName>
|
|
2514
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2515
|
+
<itemType>monetaryItemType</itemType>
|
|
2516
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2517
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2518
|
+
<definition>Sudanese pound</definition>
|
|
2519
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2520
|
+
<status>REC</status>
|
|
2521
|
+
<versionDate>2012-10-31</versionDate>
|
|
2522
|
+
</unit>
|
|
2523
|
+
<unit id="u00179">
|
|
2524
|
+
<unitId>SEK</unitId>
|
|
2525
|
+
<unitName>Swedish krona</unitName>
|
|
2526
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2527
|
+
<itemType>monetaryItemType</itemType>
|
|
2528
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2529
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2530
|
+
<definition>Swedish krona/kronor</definition>
|
|
2531
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2532
|
+
<status>REC</status>
|
|
2533
|
+
<versionDate>2012-10-31</versionDate>
|
|
2534
|
+
</unit>
|
|
2535
|
+
<unit id="u00180">
|
|
2536
|
+
<unitId>SGD</unitId>
|
|
2537
|
+
<unitName>Singapore dollar</unitName>
|
|
2538
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2539
|
+
<itemType>monetaryItemType</itemType>
|
|
2540
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2541
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2542
|
+
<definition>Singapore dollar</definition>
|
|
2543
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2544
|
+
<status>REC</status>
|
|
2545
|
+
<versionDate>2012-10-31</versionDate>
|
|
2546
|
+
</unit>
|
|
2547
|
+
<unit id="u00181">
|
|
2548
|
+
<unitId>SHP</unitId>
|
|
2549
|
+
<unitName>Saint Helena pound</unitName>
|
|
2550
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2551
|
+
<itemType>monetaryItemType</itemType>
|
|
2552
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2553
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2554
|
+
<definition>Saint Helena pound</definition>
|
|
2555
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2556
|
+
<status>REC</status>
|
|
2557
|
+
<versionDate>2012-10-31</versionDate>
|
|
2558
|
+
</unit>
|
|
2559
|
+
<unit id="u00182">
|
|
2560
|
+
<unitId>SLL</unitId>
|
|
2561
|
+
<unitName>Leone</unitName>
|
|
2562
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2563
|
+
<itemType>monetaryItemType</itemType>
|
|
2564
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2565
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2566
|
+
<definition>Sierra Leonean leone</definition>
|
|
2567
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2568
|
+
<status>REC</status>
|
|
2569
|
+
<versionDate>2012-10-31</versionDate>
|
|
2570
|
+
</unit>
|
|
2571
|
+
<unit id="u00183">
|
|
2572
|
+
<unitId>SOS</unitId>
|
|
2573
|
+
<unitName>Somali shilling</unitName>
|
|
2574
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2575
|
+
<itemType>monetaryItemType</itemType>
|
|
2576
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2577
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2578
|
+
<definition>Somali shilling</definition>
|
|
2579
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2580
|
+
<status>REC</status>
|
|
2581
|
+
<versionDate>2012-10-31</versionDate>
|
|
2582
|
+
</unit>
|
|
2583
|
+
<unit id="u00184">
|
|
2584
|
+
<unitId>SRD</unitId>
|
|
2585
|
+
<unitName>Surinamese dollar</unitName>
|
|
2586
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2587
|
+
<itemType>monetaryItemType</itemType>
|
|
2588
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2589
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2590
|
+
<definition>Surinamese dollar</definition>
|
|
2591
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2592
|
+
<status>REC</status>
|
|
2593
|
+
<versionDate>2012-10-31</versionDate>
|
|
2594
|
+
</unit>
|
|
2595
|
+
<unit id="u00185">
|
|
2596
|
+
<unitId>STD</unitId>
|
|
2597
|
+
<unitName>São Tomé and Príncipe dobra</unitName>
|
|
2598
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2599
|
+
<itemType>monetaryItemType</itemType>
|
|
2600
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2601
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2602
|
+
<definition>São Tomé and Príncipe dobra</definition>
|
|
2603
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2604
|
+
<status>REC</status>
|
|
2605
|
+
<versionDate>2012-10-31</versionDate>
|
|
2606
|
+
</unit>
|
|
2607
|
+
<unit id="u00186">
|
|
2608
|
+
<unitId>SYP</unitId>
|
|
2609
|
+
<unitName>Syrian pound</unitName>
|
|
2610
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2611
|
+
<itemType>monetaryItemType</itemType>
|
|
2612
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2613
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2614
|
+
<definition>Syrian pound</definition>
|
|
2615
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2616
|
+
<status>REC</status>
|
|
2617
|
+
<versionDate>2012-10-31</versionDate>
|
|
2618
|
+
</unit>
|
|
2619
|
+
<unit id="u00187">
|
|
2620
|
+
<unitId>SZL</unitId>
|
|
2621
|
+
<unitName>Lilangeni</unitName>
|
|
2622
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2623
|
+
<itemType>monetaryItemType</itemType>
|
|
2624
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2625
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2626
|
+
<definition>Swaziland Lilangeni</definition>
|
|
2627
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2628
|
+
<status>REC</status>
|
|
2629
|
+
<versionDate>2012-10-31</versionDate>
|
|
2630
|
+
</unit>
|
|
2631
|
+
<unit id="u00188">
|
|
2632
|
+
<unitId>THB</unitId>
|
|
2633
|
+
<unitName>Baht</unitName>
|
|
2634
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2635
|
+
<itemType>monetaryItemType</itemType>
|
|
2636
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2637
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2638
|
+
<definition>Thai baht</definition>
|
|
2639
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2640
|
+
<status>REC</status>
|
|
2641
|
+
<versionDate>2012-10-31</versionDate>
|
|
2642
|
+
</unit>
|
|
2643
|
+
<unit id="u00189">
|
|
2644
|
+
<unitId>TJS</unitId>
|
|
2645
|
+
<unitName>Tajikistani somoni</unitName>
|
|
2646
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2647
|
+
<itemType>monetaryItemType</itemType>
|
|
2648
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2649
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2650
|
+
<definition>Tajikistani somoni</definition>
|
|
2651
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2652
|
+
<status>REC</status>
|
|
2653
|
+
<versionDate>2012-10-31</versionDate>
|
|
2654
|
+
</unit>
|
|
2655
|
+
<unit id="u00190">
|
|
2656
|
+
<unitId>TMT</unitId>
|
|
2657
|
+
<unitName>Turkmenistani manat</unitName>
|
|
2658
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2659
|
+
<itemType>monetaryItemType</itemType>
|
|
2660
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2661
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2662
|
+
<definition>Turkmenistani manat</definition>
|
|
2663
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2664
|
+
<status>REC</status>
|
|
2665
|
+
<versionDate>2012-10-31</versionDate>
|
|
2666
|
+
</unit>
|
|
2667
|
+
<unit id="u00191">
|
|
2668
|
+
<unitId>TND</unitId>
|
|
2669
|
+
<unitName>Tunisian dinar</unitName>
|
|
2670
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2671
|
+
<itemType>monetaryItemType</itemType>
|
|
2672
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2673
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2674
|
+
<definition>Tunisian dinar</definition>
|
|
2675
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2676
|
+
<status>REC</status>
|
|
2677
|
+
<versionDate>2012-10-31</versionDate>
|
|
2678
|
+
</unit>
|
|
2679
|
+
<unit id="u00192">
|
|
2680
|
+
<unitId>TOP</unitId>
|
|
2681
|
+
<unitName>Pa'anga</unitName>
|
|
2682
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2683
|
+
<itemType>monetaryItemType</itemType>
|
|
2684
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2685
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2686
|
+
<definition>Tongan pa'anga</definition>
|
|
2687
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2688
|
+
<status>REC</status>
|
|
2689
|
+
<versionDate>2012-10-31</versionDate>
|
|
2690
|
+
</unit>
|
|
2691
|
+
<unit id="u00193">
|
|
2692
|
+
<unitId>TRY</unitId>
|
|
2693
|
+
<unitName>Turkish lira</unitName>
|
|
2694
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2695
|
+
<itemType>monetaryItemType</itemType>
|
|
2696
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2697
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2698
|
+
<definition>Turkish lira</definition>
|
|
2699
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2700
|
+
<status>REC</status>
|
|
2701
|
+
<versionDate>2012-10-31</versionDate>
|
|
2702
|
+
</unit>
|
|
2703
|
+
<unit id="u00194">
|
|
2704
|
+
<unitId>TTD</unitId>
|
|
2705
|
+
<unitName>Trinidad and Tobago dollar</unitName>
|
|
2706
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2707
|
+
<itemType>monetaryItemType</itemType>
|
|
2708
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2709
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2710
|
+
<definition>Trinidad and Tobago dollar</definition>
|
|
2711
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2712
|
+
<status>REC</status>
|
|
2713
|
+
<versionDate>2012-10-31</versionDate>
|
|
2714
|
+
</unit>
|
|
2715
|
+
<unit id="u00195">
|
|
2716
|
+
<unitId>TWD</unitId>
|
|
2717
|
+
<unitName>New Taiwan dollar</unitName>
|
|
2718
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2719
|
+
<itemType>monetaryItemType</itemType>
|
|
2720
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2721
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2722
|
+
<definition>New Taiwan dollar</definition>
|
|
2723
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2724
|
+
<status>REC</status>
|
|
2725
|
+
<versionDate>2012-10-31</versionDate>
|
|
2726
|
+
</unit>
|
|
2727
|
+
<unit id="u00196">
|
|
2728
|
+
<unitId>TZS</unitId>
|
|
2729
|
+
<unitName>Tanzanian shilling</unitName>
|
|
2730
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2731
|
+
<itemType>monetaryItemType</itemType>
|
|
2732
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2733
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2734
|
+
<definition>Tanzanian shilling</definition>
|
|
2735
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2736
|
+
<status>REC</status>
|
|
2737
|
+
<versionDate>2012-10-31</versionDate>
|
|
2738
|
+
</unit>
|
|
2739
|
+
<unit id="u00197">
|
|
2740
|
+
<unitId>UAH</unitId>
|
|
2741
|
+
<unitName>Hryvinia</unitName>
|
|
2742
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2743
|
+
<itemType>monetaryItemType</itemType>
|
|
2744
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2745
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2746
|
+
<definition>Ukrainian hryvnia</definition>
|
|
2747
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2748
|
+
<status>REC</status>
|
|
2749
|
+
<versionDate>2012-10-31</versionDate>
|
|
2750
|
+
</unit>
|
|
2751
|
+
<unit id="u00198">
|
|
2752
|
+
<unitId>UGX</unitId>
|
|
2753
|
+
<unitName>Ugandan shilling</unitName>
|
|
2754
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2755
|
+
<itemType>monetaryItemType</itemType>
|
|
2756
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2757
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2758
|
+
<definition>Ugandan shilling</definition>
|
|
2759
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2760
|
+
<status>REC</status>
|
|
2761
|
+
<versionDate>2012-10-31</versionDate>
|
|
2762
|
+
</unit>
|
|
2763
|
+
<unit id="u00199">
|
|
2764
|
+
<unitId>USD</unitId>
|
|
2765
|
+
<unitName>US Dollar</unitName>
|
|
2766
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2767
|
+
<itemType>monetaryItemType</itemType>
|
|
2768
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2769
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2770
|
+
<symbol>$</symbol>
|
|
2771
|
+
<definition>United States dollar</definition>
|
|
2772
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2773
|
+
<status>REC</status>
|
|
2774
|
+
<versionDate>2012-10-31</versionDate>
|
|
2775
|
+
</unit>
|
|
2776
|
+
<unit id="u00200">
|
|
2777
|
+
<unitId>USN</unitId>
|
|
2778
|
+
<unitName>Next Day US Dollar</unitName>
|
|
2779
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2780
|
+
<itemType>monetaryItemType</itemType>
|
|
2781
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2782
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2783
|
+
<symbol>$</symbol>
|
|
2784
|
+
<definition>United States dollar (next day) (funds code)</definition>
|
|
2785
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2786
|
+
<status>REC</status>
|
|
2787
|
+
<versionDate>2012-10-31</versionDate>
|
|
2788
|
+
</unit>
|
|
2789
|
+
<unit id="u00201">
|
|
2790
|
+
<unitId>USS</unitId>
|
|
2791
|
+
<unitName>Same Day US Dollar</unitName>
|
|
2792
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2793
|
+
<itemType>monetaryItemType</itemType>
|
|
2794
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2795
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2796
|
+
<symbol>$</symbol>
|
|
2797
|
+
<definition>United States dollar (same day) (funds code)</definition>
|
|
2798
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2799
|
+
<status>REC</status>
|
|
2800
|
+
<versionDate>2012-10-31</versionDate>
|
|
2801
|
+
</unit>
|
|
2802
|
+
<unit id="u00202">
|
|
2803
|
+
<unitId>UYU</unitId>
|
|
2804
|
+
<unitName>Uruguayan peso</unitName>
|
|
2805
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2806
|
+
<itemType>monetaryItemType</itemType>
|
|
2807
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2808
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2809
|
+
<definition>Uruguayan peso</definition>
|
|
2810
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2811
|
+
<status>REC</status>
|
|
2812
|
+
<versionDate>2012-10-31</versionDate>
|
|
2813
|
+
</unit>
|
|
2814
|
+
<unit id="u00203">
|
|
2815
|
+
<unitId>UZS</unitId>
|
|
2816
|
+
<unitName>Som</unitName>
|
|
2817
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2818
|
+
<itemType>monetaryItemType</itemType>
|
|
2819
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2820
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2821
|
+
<definition>Uzbekistan som</definition>
|
|
2822
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2823
|
+
<status>REC</status>
|
|
2824
|
+
<versionDate>2012-10-31</versionDate>
|
|
2825
|
+
</unit>
|
|
2826
|
+
<unit id="u00204">
|
|
2827
|
+
<unitId>VEB</unitId>
|
|
2828
|
+
<unitName>Venezualan Bolivar</unitName>
|
|
2829
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2830
|
+
<itemType>monetaryItemType</itemType>
|
|
2831
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2832
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2833
|
+
<definition>Venezuelan bolívar</definition>
|
|
2834
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2835
|
+
<status>REC</status>
|
|
2836
|
+
<versionDate>2012-10-31</versionDate>
|
|
2837
|
+
</unit>
|
|
2838
|
+
<unit id="u00205">
|
|
2839
|
+
<unitId>VEF</unitId>
|
|
2840
|
+
<unitName>Venezuelan Bolivar Fuerte</unitName>
|
|
2841
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2842
|
+
<itemType>monetaryItemType</itemType>
|
|
2843
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2844
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2845
|
+
<definition>Venezuelan bolívar fuerte (equals 1000 VEB)</definition>
|
|
2846
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2847
|
+
<status>REC</status>
|
|
2848
|
+
<versionDate>2012-10-31</versionDate>
|
|
2849
|
+
</unit>
|
|
2850
|
+
<unit id="u00206">
|
|
2851
|
+
<unitId>VND</unitId>
|
|
2852
|
+
<unitName>đồng</unitName>
|
|
2853
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2854
|
+
<itemType>monetaryItemType</itemType>
|
|
2855
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2856
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2857
|
+
<symbol>₫</symbol>
|
|
2858
|
+
<definition>Vietnamese đồng</definition>
|
|
2859
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2860
|
+
<status>REC</status>
|
|
2861
|
+
<versionDate>2012-10-31</versionDate>
|
|
2862
|
+
</unit>
|
|
2863
|
+
<unit id="u00207">
|
|
2864
|
+
<unitId>VUV</unitId>
|
|
2865
|
+
<unitName>Vanuatu vatu</unitName>
|
|
2866
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2867
|
+
<itemType>monetaryItemType</itemType>
|
|
2868
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2869
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2870
|
+
<definition>Vanuatu vatu</definition>
|
|
2871
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2872
|
+
<status>REC</status>
|
|
2873
|
+
<versionDate>2012-10-31</versionDate>
|
|
2874
|
+
</unit>
|
|
2875
|
+
<unit id="u00208">
|
|
2876
|
+
<unitId>WST</unitId>
|
|
2877
|
+
<unitName>Samoan tala</unitName>
|
|
2878
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2879
|
+
<itemType>monetaryItemType</itemType>
|
|
2880
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2881
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2882
|
+
<definition>Samoan tala</definition>
|
|
2883
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2884
|
+
<status>REC</status>
|
|
2885
|
+
<versionDate>2012-10-31</versionDate>
|
|
2886
|
+
</unit>
|
|
2887
|
+
<unit id="u00209">
|
|
2888
|
+
<unitId>XAF</unitId>
|
|
2889
|
+
<unitName>CFA Franc BEAC</unitName>
|
|
2890
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2891
|
+
<itemType>monetaryItemType</itemType>
|
|
2892
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2893
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2894
|
+
<definition>CFA franc BEAC</definition>
|
|
2895
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2896
|
+
<status>REC</status>
|
|
2897
|
+
<versionDate>2012-10-31</versionDate>
|
|
2898
|
+
</unit>
|
|
2899
|
+
<unit id="u00210">
|
|
2900
|
+
<unitId>XAG</unitId>
|
|
2901
|
+
<unitName>Silver</unitName>
|
|
2902
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2903
|
+
<itemType>monetaryItemType</itemType>
|
|
2904
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2905
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2906
|
+
<definition>Silver (one troy ounce)</definition>
|
|
2907
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2908
|
+
<status>REC</status>
|
|
2909
|
+
<versionDate>2012-10-31</versionDate>
|
|
2910
|
+
</unit>
|
|
2911
|
+
<unit id="u00211">
|
|
2912
|
+
<unitId>XAU</unitId>
|
|
2913
|
+
<unitName>Gold</unitName>
|
|
2914
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2915
|
+
<itemType>monetaryItemType</itemType>
|
|
2916
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2917
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2918
|
+
<definition>Gold (one troy ounce)</definition>
|
|
2919
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2920
|
+
<status>REC</status>
|
|
2921
|
+
<versionDate>2012-10-31</versionDate>
|
|
2922
|
+
</unit>
|
|
2923
|
+
<unit id="u00212">
|
|
2924
|
+
<unitId>XBA</unitId>
|
|
2925
|
+
<unitName>EURCO</unitName>
|
|
2926
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2927
|
+
<itemType>monetaryItemType</itemType>
|
|
2928
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2929
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2930
|
+
<definition>European Composite Unit (EURCO) (bond market unit)</definition>
|
|
2931
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2932
|
+
<status>REC</status>
|
|
2933
|
+
<versionDate>2012-10-31</versionDate>
|
|
2934
|
+
</unit>
|
|
2935
|
+
<unit id="u00213">
|
|
2936
|
+
<unitId>XBB</unitId>
|
|
2937
|
+
<unitName>E.M.U.-6</unitName>
|
|
2938
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2939
|
+
<itemType>monetaryItemType</itemType>
|
|
2940
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2941
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2942
|
+
<definition>European Monetary Unit (E.M.U.-6) (bond market unit)</definition>
|
|
2943
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2944
|
+
<status>REC</status>
|
|
2945
|
+
<versionDate>2012-10-31</versionDate>
|
|
2946
|
+
</unit>
|
|
2947
|
+
<unit id="u00214">
|
|
2948
|
+
<unitId>XBC</unitId>
|
|
2949
|
+
<unitName>E.U.A.-9</unitName>
|
|
2950
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2951
|
+
<itemType>monetaryItemType</itemType>
|
|
2952
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2953
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2954
|
+
<definition>European Unit of Account 9 (E.U.A.-9) (bond market unit)</definition>
|
|
2955
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2956
|
+
<status>REC</status>
|
|
2957
|
+
<versionDate>2012-10-31</versionDate>
|
|
2958
|
+
</unit>
|
|
2959
|
+
<unit id="u00215">
|
|
2960
|
+
<unitId>XBD</unitId>
|
|
2961
|
+
<unitName>E.U.A.-17</unitName>
|
|
2962
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2963
|
+
<itemType>monetaryItemType</itemType>
|
|
2964
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2965
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2966
|
+
<definition>European Unit of Account 17 (E.U.A.-17) (bond market unit)</definition>
|
|
2967
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2968
|
+
<status>REC</status>
|
|
2969
|
+
<versionDate>2012-10-31</versionDate>
|
|
2970
|
+
</unit>
|
|
2971
|
+
<unit id="u00216">
|
|
2972
|
+
<unitId>XCD</unitId>
|
|
2973
|
+
<unitName>East Caribbean dollar</unitName>
|
|
2974
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2975
|
+
<itemType>monetaryItemType</itemType>
|
|
2976
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2977
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2978
|
+
<definition>East Caribbean dollar</definition>
|
|
2979
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2980
|
+
<status>REC</status>
|
|
2981
|
+
<versionDate>2012-10-31</versionDate>
|
|
2982
|
+
</unit>
|
|
2983
|
+
<unit id="u00217">
|
|
2984
|
+
<unitId>XDR</unitId>
|
|
2985
|
+
<unitName>Special Drawing Rights</unitName>
|
|
2986
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2987
|
+
<itemType>monetaryItemType</itemType>
|
|
2988
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
2989
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
2990
|
+
<definition>Special Drawing Rights</definition>
|
|
2991
|
+
<baseStandard>ISO4217</baseStandard>
|
|
2992
|
+
<status>REC</status>
|
|
2993
|
+
<versionDate>2012-10-31</versionDate>
|
|
2994
|
+
</unit>
|
|
2995
|
+
<unit id="u00218">
|
|
2996
|
+
<unitId>XFU</unitId>
|
|
2997
|
+
<unitName>UIC Franc</unitName>
|
|
2998
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
2999
|
+
<itemType>monetaryItemType</itemType>
|
|
3000
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
3001
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
3002
|
+
<definition>UIC franc (special settlement currency)</definition>
|
|
3003
|
+
<baseStandard>ISO4217</baseStandard>
|
|
3004
|
+
<status>REC</status>
|
|
3005
|
+
<versionDate>2012-10-31</versionDate>
|
|
3006
|
+
</unit>
|
|
3007
|
+
<unit id="u00219">
|
|
3008
|
+
<unitId>XOF</unitId>
|
|
3009
|
+
<unitName>CFA Franc BCEAO</unitName>
|
|
3010
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
3011
|
+
<itemType>monetaryItemType</itemType>
|
|
3012
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
3013
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
3014
|
+
<definition>CFA Franc BCEAO</definition>
|
|
3015
|
+
<baseStandard>ISO4217</baseStandard>
|
|
3016
|
+
<status>REC</status>
|
|
3017
|
+
<versionDate>2012-10-31</versionDate>
|
|
3018
|
+
</unit>
|
|
3019
|
+
<unit id="u00220">
|
|
3020
|
+
<unitId>XPD</unitId>
|
|
3021
|
+
<unitName>Palladium</unitName>
|
|
3022
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
3023
|
+
<itemType>monetaryItemType</itemType>
|
|
3024
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
3025
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
3026
|
+
<definition>Palladium (one troy ounce)</definition>
|
|
3027
|
+
<baseStandard>ISO4217</baseStandard>
|
|
3028
|
+
<status>REC</status>
|
|
3029
|
+
<versionDate>2012-10-31</versionDate>
|
|
3030
|
+
</unit>
|
|
3031
|
+
<unit id="u00221">
|
|
3032
|
+
<unitId>XPF</unitId>
|
|
3033
|
+
<unitName>CFP Franc</unitName>
|
|
3034
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
3035
|
+
<itemType>monetaryItemType</itemType>
|
|
3036
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
3037
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
3038
|
+
<definition>CFP franc</definition>
|
|
3039
|
+
<baseStandard>ISO4217</baseStandard>
|
|
3040
|
+
<status>REC</status>
|
|
3041
|
+
<versionDate>2012-10-31</versionDate>
|
|
3042
|
+
</unit>
|
|
3043
|
+
<unit id="u00222">
|
|
3044
|
+
<unitId>XPT</unitId>
|
|
3045
|
+
<unitName>Platinum</unitName>
|
|
3046
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
3047
|
+
<itemType>monetaryItemType</itemType>
|
|
3048
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
3049
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
3050
|
+
<definition>Platinum (one troy ounce)</definition>
|
|
3051
|
+
<baseStandard>ISO4217</baseStandard>
|
|
3052
|
+
<status>REC</status>
|
|
3053
|
+
<versionDate>2012-10-31</versionDate>
|
|
3054
|
+
</unit>
|
|
3055
|
+
<unit id="u00223">
|
|
3056
|
+
<unitId>YER</unitId>
|
|
3057
|
+
<unitName>Yemeni rial</unitName>
|
|
3058
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
3059
|
+
<itemType>monetaryItemType</itemType>
|
|
3060
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
3061
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
3062
|
+
<definition>Yemeni rial</definition>
|
|
3063
|
+
<baseStandard>ISO4217</baseStandard>
|
|
3064
|
+
<status>REC</status>
|
|
3065
|
+
<versionDate>2012-10-31</versionDate>
|
|
3066
|
+
</unit>
|
|
3067
|
+
<unit id="u00224">
|
|
3068
|
+
<unitId>ZAR</unitId>
|
|
3069
|
+
<unitName>South African rand</unitName>
|
|
3070
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
3071
|
+
<itemType>monetaryItemType</itemType>
|
|
3072
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
3073
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
3074
|
+
<definition>South African rand</definition>
|
|
3075
|
+
<baseStandard>ISO4217</baseStandard>
|
|
3076
|
+
<status>REC</status>
|
|
3077
|
+
<versionDate>2012-10-31</versionDate>
|
|
3078
|
+
</unit>
|
|
3079
|
+
<unit id="u00225">
|
|
3080
|
+
<unitId>ZMK</unitId>
|
|
3081
|
+
<unitName>Zambian kwacha</unitName>
|
|
3082
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
3083
|
+
<itemType>monetaryItemType</itemType>
|
|
3084
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
3085
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
3086
|
+
<definition>Zambian kwacha</definition>
|
|
3087
|
+
<baseStandard>ISO4217</baseStandard>
|
|
3088
|
+
<status>REC</status>
|
|
3089
|
+
<versionDate>2012-10-31</versionDate>
|
|
3090
|
+
</unit>
|
|
3091
|
+
<unit id="u00226">
|
|
3092
|
+
<unitId>ZWL</unitId>
|
|
3093
|
+
<unitName>Zimbabwe dollar</unitName>
|
|
3094
|
+
<nsUnit>http://www.xbrl.org/2003/iso4217</nsUnit>
|
|
3095
|
+
<itemType>monetaryItemType</itemType>
|
|
3096
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
3097
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
3098
|
+
<definition>Zimbabwe dollar</definition>
|
|
3099
|
+
<baseStandard>ISO4217</baseStandard>
|
|
3100
|
+
<status>REC</status>
|
|
3101
|
+
<versionDate>2012-10-31</versionDate>
|
|
3102
|
+
</unit>
|
|
3103
|
+
<unit id="u00012">
|
|
3104
|
+
<unitId>Cal</unitId>
|
|
3105
|
+
<unitName>Calorie</unitName>
|
|
3106
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
3107
|
+
<itemType>energyItemType</itemType>
|
|
3108
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
3109
|
+
<symbol>Cal</symbol>
|
|
3110
|
+
<definition>Calorie</definition>
|
|
3111
|
+
<baseStandard>Non-SI</baseStandard>
|
|
3112
|
+
<conversionPresentation>
|
|
3113
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3114
|
+
<mrow>
|
|
3115
|
+
<mn>4.184</mn>
|
|
3116
|
+
<mo>*</mo>
|
|
3117
|
+
<mi>J</mi>
|
|
3118
|
+
</mrow>
|
|
3119
|
+
</math>
|
|
3120
|
+
</conversionPresentation>
|
|
3121
|
+
<conversionContent>
|
|
3122
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3123
|
+
<apply>
|
|
3124
|
+
<times/>
|
|
3125
|
+
<cn>4.184</cn>
|
|
3126
|
+
<ci>J</ci>
|
|
3127
|
+
</apply>
|
|
3128
|
+
</math>
|
|
3129
|
+
</conversionContent>
|
|
3130
|
+
<status>REC</status>
|
|
3131
|
+
<versionDate>2012-10-31</versionDate>
|
|
3132
|
+
</unit>
|
|
3133
|
+
<unit id="u00044">
|
|
3134
|
+
<unitId>t</unitId>
|
|
3135
|
+
<unitName>Tonne</unitName>
|
|
3136
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
3137
|
+
<itemType>massItemType</itemType>
|
|
3138
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
3139
|
+
<symbol>t</symbol>
|
|
3140
|
+
<definition>Tonne (Metric Tonne, Metric Ton)</definition>
|
|
3141
|
+
<baseStandard>Non-SI</baseStandard>
|
|
3142
|
+
<conversionPresentation>
|
|
3143
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3144
|
+
<mrow>
|
|
3145
|
+
<msup>
|
|
3146
|
+
<mn>10</mn>
|
|
3147
|
+
<mn>3</mn>
|
|
3148
|
+
</msup>
|
|
3149
|
+
<mo>*</mo>
|
|
3150
|
+
<mi>kg</mi>
|
|
3151
|
+
</mrow>
|
|
3152
|
+
</math>
|
|
3153
|
+
</conversionPresentation>
|
|
3154
|
+
<conversionContent>
|
|
3155
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3156
|
+
<apply>
|
|
3157
|
+
<times/>
|
|
3158
|
+
<apply>
|
|
3159
|
+
<power/>
|
|
3160
|
+
<cn>10</cn>
|
|
3161
|
+
<cn>3</cn>
|
|
3162
|
+
</apply>
|
|
3163
|
+
<ci>kg</ci>
|
|
3164
|
+
</apply>
|
|
3165
|
+
</math>
|
|
3166
|
+
</conversionContent>
|
|
3167
|
+
<status>REC</status>
|
|
3168
|
+
<versionDate>2012-10-31</versionDate>
|
|
3169
|
+
</unit>
|
|
3170
|
+
<unit id="u00045">
|
|
3171
|
+
<unitId>B</unitId>
|
|
3172
|
+
<unitName>Byte</unitName>
|
|
3173
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
3174
|
+
<itemType>memoryItemType</itemType>
|
|
3175
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
3176
|
+
<symbol>B</symbol>
|
|
3177
|
+
<definition>8 adjacent bits of Memory per IEEE 1541-2002</definition>
|
|
3178
|
+
<baseStandard>Non-SI</baseStandard>
|
|
3179
|
+
<conversionPresentation>
|
|
3180
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3181
|
+
<mrow>
|
|
3182
|
+
<msup>
|
|
3183
|
+
<mn>2</mn>
|
|
3184
|
+
<mn>3</mn>
|
|
3185
|
+
</msup>
|
|
3186
|
+
<mo>*</mo>
|
|
3187
|
+
<mi>bit</mi>
|
|
3188
|
+
</mrow>
|
|
3189
|
+
</math>
|
|
3190
|
+
</conversionPresentation>
|
|
3191
|
+
<conversionContent>
|
|
3192
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3193
|
+
<apply>
|
|
3194
|
+
<times/>
|
|
3195
|
+
<apply>
|
|
3196
|
+
<power/>
|
|
3197
|
+
<cn>2</cn>
|
|
3198
|
+
<cn>3</cn>
|
|
3199
|
+
</apply>
|
|
3200
|
+
<ci>bit</ci>
|
|
3201
|
+
</apply>
|
|
3202
|
+
</math>
|
|
3203
|
+
</conversionContent>
|
|
3204
|
+
<status>REC</status>
|
|
3205
|
+
<versionDate>2012-10-31</versionDate>
|
|
3206
|
+
</unit>
|
|
3207
|
+
<unit id="u00046">
|
|
3208
|
+
<unitId>GB</unitId>
|
|
3209
|
+
<unitName>Gigabyte</unitName>
|
|
3210
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
3211
|
+
<itemType>memoryItemType</itemType>
|
|
3212
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
3213
|
+
<symbol>GB</symbol>
|
|
3214
|
+
<definition>Gigabytes of Memory per IEEE 1541-2002</definition>
|
|
3215
|
+
<baseStandard>Non-SI</baseStandard>
|
|
3216
|
+
<conversionPresentation>
|
|
3217
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3218
|
+
<mrow>
|
|
3219
|
+
<msup>
|
|
3220
|
+
<mn>10</mn>
|
|
3221
|
+
<mn>9</mn>
|
|
3222
|
+
</msup>
|
|
3223
|
+
<mo>*</mo>
|
|
3224
|
+
<mi>B</mi>
|
|
3225
|
+
</mrow>
|
|
3226
|
+
</math>
|
|
3227
|
+
</conversionPresentation>
|
|
3228
|
+
<conversionContent>
|
|
3229
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3230
|
+
<apply>
|
|
3231
|
+
<times/>
|
|
3232
|
+
<apply>
|
|
3233
|
+
<power/>
|
|
3234
|
+
<cn>2</cn>
|
|
3235
|
+
<cn>30</cn>
|
|
3236
|
+
</apply>
|
|
3237
|
+
<ci>B</ci>
|
|
3238
|
+
</apply>
|
|
3239
|
+
</math>
|
|
3240
|
+
</conversionContent>
|
|
3241
|
+
<status>REC</status>
|
|
3242
|
+
<versionDate>2012-10-31</versionDate>
|
|
3243
|
+
</unit>
|
|
3244
|
+
<unit id="u00047">
|
|
3245
|
+
<unitId>kB</unitId>
|
|
3246
|
+
<unitName>Kilobyte</unitName>
|
|
3247
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
3248
|
+
<itemType>memoryItemType</itemType>
|
|
3249
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
3250
|
+
<symbol>kB</symbol>
|
|
3251
|
+
<definition>Kilobytes of Memory per IEEE 1541-2002</definition>
|
|
3252
|
+
<baseStandard>Non-SI</baseStandard>
|
|
3253
|
+
<conversionPresentation>
|
|
3254
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3255
|
+
<mrow>
|
|
3256
|
+
<msup>
|
|
3257
|
+
<mn>10</mn>
|
|
3258
|
+
<mn>3</mn>
|
|
3259
|
+
</msup>
|
|
3260
|
+
<mo>*</mo>
|
|
3261
|
+
<mi>B</mi>
|
|
3262
|
+
</mrow>
|
|
3263
|
+
</math>
|
|
3264
|
+
</conversionPresentation>
|
|
3265
|
+
<conversionContent>
|
|
3266
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3267
|
+
<apply>
|
|
3268
|
+
<times/>
|
|
3269
|
+
<apply>
|
|
3270
|
+
<power/>
|
|
3271
|
+
<cn>10</cn>
|
|
3272
|
+
<cn>3</cn>
|
|
3273
|
+
</apply>
|
|
3274
|
+
<ci>B</ci>
|
|
3275
|
+
</apply>
|
|
3276
|
+
</math>
|
|
3277
|
+
</conversionContent>
|
|
3278
|
+
<status>REC</status>
|
|
3279
|
+
<versionDate>2012-10-31</versionDate>
|
|
3280
|
+
</unit>
|
|
3281
|
+
<unit id="u00048">
|
|
3282
|
+
<unitId>MB</unitId>
|
|
3283
|
+
<unitName>Megabyte</unitName>
|
|
3284
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
3285
|
+
<itemType>memoryItemType</itemType>
|
|
3286
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
3287
|
+
<symbol>MB</symbol>
|
|
3288
|
+
<definition>Megabytes of Memory per IEEE 1541-2002</definition>
|
|
3289
|
+
<baseStandard>Non-SI</baseStandard>
|
|
3290
|
+
<conversionPresentation>
|
|
3291
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3292
|
+
<mrow>
|
|
3293
|
+
<msup>
|
|
3294
|
+
<mn>10</mn>
|
|
3295
|
+
<mn>6</mn>
|
|
3296
|
+
</msup>
|
|
3297
|
+
<mo>*</mo>
|
|
3298
|
+
<mi>B</mi>
|
|
3299
|
+
</mrow>
|
|
3300
|
+
</math>
|
|
3301
|
+
</conversionPresentation>
|
|
3302
|
+
<conversionContent>
|
|
3303
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3304
|
+
<apply>
|
|
3305
|
+
<times/>
|
|
3306
|
+
<apply>
|
|
3307
|
+
<power/>
|
|
3308
|
+
<cn>10</cn>
|
|
3309
|
+
<cn>6</cn>
|
|
3310
|
+
</apply>
|
|
3311
|
+
<ci>B</ci>
|
|
3312
|
+
</apply>
|
|
3313
|
+
</math>
|
|
3314
|
+
</conversionContent>
|
|
3315
|
+
<status>REC</status>
|
|
3316
|
+
<versionDate>2012-10-31</versionDate>
|
|
3317
|
+
</unit>
|
|
3318
|
+
<unit id="u00049">
|
|
3319
|
+
<unitId>TB</unitId>
|
|
3320
|
+
<unitName>Terabyte</unitName>
|
|
3321
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
3322
|
+
<itemType>memoryItemType</itemType>
|
|
3323
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
3324
|
+
<symbol>TB</symbol>
|
|
3325
|
+
<definition>Terabytes of Memory per IEEE 1541-2002</definition>
|
|
3326
|
+
<baseStandard>Non-SI</baseStandard>
|
|
3327
|
+
<conversionPresentation>
|
|
3328
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3329
|
+
<mrow>
|
|
3330
|
+
<msup>
|
|
3331
|
+
<mn>10</mn>
|
|
3332
|
+
<mn>12</mn>
|
|
3333
|
+
</msup>
|
|
3334
|
+
<mo>*</mo>
|
|
3335
|
+
<mi>B</mi>
|
|
3336
|
+
</mrow>
|
|
3337
|
+
</math>
|
|
3338
|
+
</conversionPresentation>
|
|
3339
|
+
<conversionContent>
|
|
3340
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3341
|
+
<apply>
|
|
3342
|
+
<times/>
|
|
3343
|
+
<apply>
|
|
3344
|
+
<power/>
|
|
3345
|
+
<cn>10</cn>
|
|
3346
|
+
<cn>12</cn>
|
|
3347
|
+
</apply>
|
|
3348
|
+
<ci>B</ci>
|
|
3349
|
+
</apply>
|
|
3350
|
+
</math>
|
|
3351
|
+
</conversionContent>
|
|
3352
|
+
<status>REC</status>
|
|
3353
|
+
<versionDate>2012-10-31</versionDate>
|
|
3354
|
+
</unit>
|
|
3355
|
+
<unit id="u00002">
|
|
3356
|
+
<unitId>ha</unitId>
|
|
3357
|
+
<unitName>Hectare</unitName>
|
|
3358
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
3359
|
+
<itemType>areaItemType</itemType>
|
|
3360
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
3361
|
+
<symbol>ha</symbol>
|
|
3362
|
+
<definition>Hectare</definition>
|
|
3363
|
+
<baseStandard>SI</baseStandard>
|
|
3364
|
+
<conversionPresentation>
|
|
3365
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3366
|
+
<mrow>
|
|
3367
|
+
<mn>1000</mn>
|
|
3368
|
+
<mo>*</mo>
|
|
3369
|
+
<msup>
|
|
3370
|
+
<mi>m</mi>
|
|
3371
|
+
<mn>2</mn>
|
|
3372
|
+
</msup>
|
|
3373
|
+
</mrow>
|
|
3374
|
+
</math>
|
|
3375
|
+
</conversionPresentation>
|
|
3376
|
+
<conversionContent>
|
|
3377
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3378
|
+
<apply>
|
|
3379
|
+
<times/>
|
|
3380
|
+
<cn>1000</cn>
|
|
3381
|
+
<apply>
|
|
3382
|
+
<power/>
|
|
3383
|
+
<ci>m</ci>
|
|
3384
|
+
<cn>2</cn>
|
|
3385
|
+
</apply>
|
|
3386
|
+
</apply>
|
|
3387
|
+
</math>
|
|
3388
|
+
</conversionContent>
|
|
3389
|
+
<status>REC</status>
|
|
3390
|
+
<versionDate>2012-10-31</versionDate>
|
|
3391
|
+
</unit>
|
|
3392
|
+
<unit id="u00005">
|
|
3393
|
+
<unitId>sqkm</unitId>
|
|
3394
|
+
<unitName>Square km</unitName>
|
|
3395
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
3396
|
+
<itemType>areaItemType</itemType>
|
|
3397
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
3398
|
+
<symbol>km²</symbol>
|
|
3399
|
+
<definition>Square Kilometer</definition>
|
|
3400
|
+
<baseStandard>SI</baseStandard>
|
|
3401
|
+
<conversionPresentation>
|
|
3402
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3403
|
+
<mrow>
|
|
3404
|
+
<mn>1000000</mn>
|
|
3405
|
+
<mo>*</mo>
|
|
3406
|
+
<msup>
|
|
3407
|
+
<mi>m</mi>
|
|
3408
|
+
<mn>2</mn>
|
|
3409
|
+
</msup>
|
|
3410
|
+
</mrow>
|
|
3411
|
+
</math>
|
|
3412
|
+
</conversionPresentation>
|
|
3413
|
+
<conversionContent>
|
|
3414
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3415
|
+
<apply>
|
|
3416
|
+
<times/>
|
|
3417
|
+
<cn>1000000</cn>
|
|
3418
|
+
<apply>
|
|
3419
|
+
<power/>
|
|
3420
|
+
<ci>m</ci>
|
|
3421
|
+
<cn>2</cn>
|
|
3422
|
+
</apply>
|
|
3423
|
+
</apply>
|
|
3424
|
+
</math>
|
|
3425
|
+
</conversionContent>
|
|
3426
|
+
<status>REC</status>
|
|
3427
|
+
<versionDate>2012-10-31</versionDate>
|
|
3428
|
+
</unit>
|
|
3429
|
+
<unit id="u00006">
|
|
3430
|
+
<unitId>sqm</unitId>
|
|
3431
|
+
<unitName>Square metre</unitName>
|
|
3432
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
3433
|
+
<itemType>areaItemType</itemType>
|
|
3434
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
3435
|
+
<symbol>m²</symbol>
|
|
3436
|
+
<definition>Square Metre</definition>
|
|
3437
|
+
<baseStandard>SI</baseStandard>
|
|
3438
|
+
<conversionPresentation>
|
|
3439
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3440
|
+
<msup>
|
|
3441
|
+
<mi>m</mi>
|
|
3442
|
+
<mn>2</mn>
|
|
3443
|
+
</msup>
|
|
3444
|
+
</math>
|
|
3445
|
+
</conversionPresentation>
|
|
3446
|
+
<conversionContent>
|
|
3447
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3448
|
+
<apply>
|
|
3449
|
+
<power/>
|
|
3450
|
+
<ci>m</ci>
|
|
3451
|
+
<cn>2</cn>
|
|
3452
|
+
</apply>
|
|
3453
|
+
</math>
|
|
3454
|
+
</conversionContent>
|
|
3455
|
+
<status>REC</status>
|
|
3456
|
+
<versionDate>2012-10-31</versionDate>
|
|
3457
|
+
</unit>
|
|
3458
|
+
<unit id="u00009">
|
|
3459
|
+
<unitId>A</unitId>
|
|
3460
|
+
<unitName>Ampere</unitName>
|
|
3461
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
3462
|
+
<itemType>electricCurrentItemType</itemType>
|
|
3463
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
3464
|
+
<symbol>A</symbol>
|
|
3465
|
+
<definition>Ampere</definition>
|
|
3466
|
+
<baseStandard>SI</baseStandard>
|
|
3467
|
+
<conversionPresentation>
|
|
3468
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3469
|
+
<mrow>
|
|
3470
|
+
<mn>1</mn>
|
|
3471
|
+
<mo>*</mo>
|
|
3472
|
+
<mi>A</mi>
|
|
3473
|
+
</mrow>
|
|
3474
|
+
</math>
|
|
3475
|
+
</conversionPresentation>
|
|
3476
|
+
<conversionContent>
|
|
3477
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3478
|
+
<apply>
|
|
3479
|
+
<times/>
|
|
3480
|
+
<cn>1</cn>
|
|
3481
|
+
<ci>A</ci>
|
|
3482
|
+
</apply>
|
|
3483
|
+
</math>
|
|
3484
|
+
</conversionContent>
|
|
3485
|
+
<status>REC</status>
|
|
3486
|
+
<versionDate>2012-10-31</versionDate>
|
|
3487
|
+
</unit>
|
|
3488
|
+
<unit id="u00014">
|
|
3489
|
+
<unitId>J</unitId>
|
|
3490
|
+
<unitName>Joule</unitName>
|
|
3491
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
3492
|
+
<itemType>energyItemType</itemType>
|
|
3493
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
3494
|
+
<symbol>J</symbol>
|
|
3495
|
+
<definition>Joule</definition>
|
|
3496
|
+
<baseStandard>SI</baseStandard>
|
|
3497
|
+
<conversionPresentation>
|
|
3498
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3499
|
+
<mfrac>
|
|
3500
|
+
<mrow>
|
|
3501
|
+
<mn>1</mn>
|
|
3502
|
+
<mo>*</mo>
|
|
3503
|
+
<mi>kg</mi>
|
|
3504
|
+
<mo>*</mo>
|
|
3505
|
+
<msup>
|
|
3506
|
+
<mi>m</mi>
|
|
3507
|
+
<mn>2</mn>
|
|
3508
|
+
</msup>
|
|
3509
|
+
</mrow>
|
|
3510
|
+
<msup>
|
|
3511
|
+
<mi>s</mi>
|
|
3512
|
+
<mn>-2</mn>
|
|
3513
|
+
</msup>
|
|
3514
|
+
</mfrac>
|
|
3515
|
+
</math>
|
|
3516
|
+
</conversionPresentation>
|
|
3517
|
+
<conversionContent>
|
|
3518
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3519
|
+
<apply>
|
|
3520
|
+
<times/>
|
|
3521
|
+
<ci>kg</ci>
|
|
3522
|
+
<apply>
|
|
3523
|
+
<power/>
|
|
3524
|
+
<ci>m</ci>
|
|
3525
|
+
<cn>2</cn>
|
|
3526
|
+
</apply>
|
|
3527
|
+
<apply>
|
|
3528
|
+
<power/>
|
|
3529
|
+
<ci>s</ci>
|
|
3530
|
+
<cn>-2</cn>
|
|
3531
|
+
</apply>
|
|
3532
|
+
</apply>
|
|
3533
|
+
</math>
|
|
3534
|
+
</conversionContent>
|
|
3535
|
+
<status>REC</status>
|
|
3536
|
+
<versionDate>2012-10-31</versionDate>
|
|
3537
|
+
</unit>
|
|
3538
|
+
<unit id="u00015">
|
|
3539
|
+
<unitId>kJ</unitId>
|
|
3540
|
+
<unitName>Kilojoule</unitName>
|
|
3541
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
3542
|
+
<itemType>energyItemType</itemType>
|
|
3543
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
3544
|
+
<symbol>kJ</symbol>
|
|
3545
|
+
<definition>Thousand Joules</definition>
|
|
3546
|
+
<baseStandard>SI</baseStandard>
|
|
3547
|
+
<conversionPresentation>
|
|
3548
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3549
|
+
<mrow>
|
|
3550
|
+
<msup>
|
|
3551
|
+
<mn>10</mn>
|
|
3552
|
+
<mn>3</mn>
|
|
3553
|
+
</msup>
|
|
3554
|
+
<mo>*</mo>
|
|
3555
|
+
<mi>J</mi>
|
|
3556
|
+
</mrow>
|
|
3557
|
+
</math>
|
|
3558
|
+
</conversionPresentation>
|
|
3559
|
+
<conversionContent>
|
|
3560
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3561
|
+
<apply>
|
|
3562
|
+
<times/>
|
|
3563
|
+
<apply>
|
|
3564
|
+
<power/>
|
|
3565
|
+
<cn>10</cn>
|
|
3566
|
+
<cn>3</cn>
|
|
3567
|
+
</apply>
|
|
3568
|
+
<ci>J</ci>
|
|
3569
|
+
</apply>
|
|
3570
|
+
</math>
|
|
3571
|
+
</conversionContent>
|
|
3572
|
+
<status>REC</status>
|
|
3573
|
+
<versionDate>2012-10-31</versionDate>
|
|
3574
|
+
</unit>
|
|
3575
|
+
<unit id="u00016">
|
|
3576
|
+
<unitId>kWh</unitId>
|
|
3577
|
+
<unitName>Kilowatt-Hours</unitName>
|
|
3578
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
3579
|
+
<itemType>energyItemType</itemType>
|
|
3580
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
3581
|
+
<symbol>kWh</symbol>
|
|
3582
|
+
<definition>Kilowatt-Hours of Energy</definition>
|
|
3583
|
+
<baseStandard>SI</baseStandard>
|
|
3584
|
+
<conversionPresentation>
|
|
3585
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3586
|
+
<mrow>
|
|
3587
|
+
<mn>3.6</mn>
|
|
3588
|
+
<mo>*</mo>
|
|
3589
|
+
<msup>
|
|
3590
|
+
<mn>10</mn>
|
|
3591
|
+
<mn>6</mn>
|
|
3592
|
+
</msup>
|
|
3593
|
+
<mo>*</mo>
|
|
3594
|
+
<mi>J</mi>
|
|
3595
|
+
</mrow>
|
|
3596
|
+
</math>
|
|
3597
|
+
</conversionPresentation>
|
|
3598
|
+
<conversionContent>
|
|
3599
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3600
|
+
<apply>
|
|
3601
|
+
<times/>
|
|
3602
|
+
<cn>3.6</cn>
|
|
3603
|
+
<apply>
|
|
3604
|
+
<power/>
|
|
3605
|
+
<cn>10</cn>
|
|
3606
|
+
<cn>6</cn>
|
|
3607
|
+
</apply>
|
|
3608
|
+
<ci>J</ci>
|
|
3609
|
+
</apply>
|
|
3610
|
+
</math>
|
|
3611
|
+
</conversionContent>
|
|
3612
|
+
<status>REC</status>
|
|
3613
|
+
<versionDate>2012-10-31</versionDate>
|
|
3614
|
+
</unit>
|
|
3615
|
+
<unit id="u00019">
|
|
3616
|
+
<unitId>mJ</unitId>
|
|
3617
|
+
<unitName>mJ</unitName>
|
|
3618
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
3619
|
+
<itemType>energyItemType</itemType>
|
|
3620
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
3621
|
+
<symbol>mJ</symbol>
|
|
3622
|
+
<definition>Millijoules</definition>
|
|
3623
|
+
<baseStandard>SI</baseStandard>
|
|
3624
|
+
<conversionPresentation>
|
|
3625
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3626
|
+
<mrow>
|
|
3627
|
+
<msup>
|
|
3628
|
+
<mn>10</mn>
|
|
3629
|
+
<mn>-3</mn>
|
|
3630
|
+
</msup>
|
|
3631
|
+
<mo>*</mo>
|
|
3632
|
+
<mi>J</mi>
|
|
3633
|
+
</mrow>
|
|
3634
|
+
</math>
|
|
3635
|
+
</conversionPresentation>
|
|
3636
|
+
<conversionContent>
|
|
3637
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3638
|
+
<apply>
|
|
3639
|
+
<times/>
|
|
3640
|
+
<apply>
|
|
3641
|
+
<power/>
|
|
3642
|
+
<cn>10</cn>
|
|
3643
|
+
<cn>-3</cn>
|
|
3644
|
+
</apply>
|
|
3645
|
+
<ci>J</ci>
|
|
3646
|
+
</apply>
|
|
3647
|
+
</math>
|
|
3648
|
+
</conversionContent>
|
|
3649
|
+
<status>REC</status>
|
|
3650
|
+
<versionDate>2012-10-31</versionDate>
|
|
3651
|
+
</unit>
|
|
3652
|
+
<unit id="u00022">
|
|
3653
|
+
<unitId>MWh</unitId>
|
|
3654
|
+
<unitName>Megawatt-Hour</unitName>
|
|
3655
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
3656
|
+
<itemType>energyItemType</itemType>
|
|
3657
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
3658
|
+
<symbol>MWh</symbol>
|
|
3659
|
+
<definition>Megawatt-Hour</definition>
|
|
3660
|
+
<baseStandard>SI</baseStandard>
|
|
3661
|
+
<conversionPresentation>
|
|
3662
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3663
|
+
<mrow>
|
|
3664
|
+
<mn>3.6</mn>
|
|
3665
|
+
<mo>*</mo>
|
|
3666
|
+
<msup>
|
|
3667
|
+
<mn>10</mn>
|
|
3668
|
+
<mn>9</mn>
|
|
3669
|
+
</msup>
|
|
3670
|
+
<mo>*</mo>
|
|
3671
|
+
<mi>J</mi>
|
|
3672
|
+
</mrow>
|
|
3673
|
+
</math>
|
|
3674
|
+
</conversionPresentation>
|
|
3675
|
+
<conversionContent>
|
|
3676
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3677
|
+
<apply>
|
|
3678
|
+
<times/>
|
|
3679
|
+
<cn>3.6</cn>
|
|
3680
|
+
<apply>
|
|
3681
|
+
<power/>
|
|
3682
|
+
<cn>10</cn>
|
|
3683
|
+
<cn>9</cn>
|
|
3684
|
+
</apply>
|
|
3685
|
+
<ci>J</ci>
|
|
3686
|
+
</apply>
|
|
3687
|
+
</math>
|
|
3688
|
+
</conversionContent>
|
|
3689
|
+
<status>REC</status>
|
|
3690
|
+
<versionDate>2012-10-31</versionDate>
|
|
3691
|
+
</unit>
|
|
3692
|
+
<unit id="u00025">
|
|
3693
|
+
<unitId>V</unitId>
|
|
3694
|
+
<unitName>Volt</unitName>
|
|
3695
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
3696
|
+
<itemType>voltageItemType</itemType>
|
|
3697
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
3698
|
+
<symbol>V</symbol>
|
|
3699
|
+
<definition>Electromotive Force</definition>
|
|
3700
|
+
<baseStandard>SI</baseStandard>
|
|
3701
|
+
<conversionPresentation>
|
|
3702
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3703
|
+
<mfrac>
|
|
3704
|
+
<mrow>
|
|
3705
|
+
<mi>kg</mi>
|
|
3706
|
+
<mo>*</mo>
|
|
3707
|
+
<msup>
|
|
3708
|
+
<mi>m</mi>
|
|
3709
|
+
<mn>2</mn>
|
|
3710
|
+
</msup>
|
|
3711
|
+
</mrow>
|
|
3712
|
+
<mrow>
|
|
3713
|
+
<msup>
|
|
3714
|
+
<mi>s</mi>
|
|
3715
|
+
<mn>3</mn>
|
|
3716
|
+
</msup>
|
|
3717
|
+
<mo>*</mo>
|
|
3718
|
+
<mi>a</mi>
|
|
3719
|
+
</mrow>
|
|
3720
|
+
</mfrac>
|
|
3721
|
+
</math>
|
|
3722
|
+
</conversionPresentation>
|
|
3723
|
+
<conversionContent>
|
|
3724
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3725
|
+
<apply>
|
|
3726
|
+
<divide/>
|
|
3727
|
+
<apply>
|
|
3728
|
+
<times/>
|
|
3729
|
+
<ci>kg</ci>
|
|
3730
|
+
<apply>
|
|
3731
|
+
<power/>
|
|
3732
|
+
<ci>m</ci>
|
|
3733
|
+
<cn>2</cn>
|
|
3734
|
+
</apply>
|
|
3735
|
+
</apply>
|
|
3736
|
+
<apply>
|
|
3737
|
+
<times/>
|
|
3738
|
+
<ci>a</ci>
|
|
3739
|
+
<apply>
|
|
3740
|
+
<power/>
|
|
3741
|
+
<ci>s</ci>
|
|
3742
|
+
<cn>3</cn>
|
|
3743
|
+
</apply>
|
|
3744
|
+
</apply>
|
|
3745
|
+
</apply>
|
|
3746
|
+
</math>
|
|
3747
|
+
</conversionContent>
|
|
3748
|
+
<status>REC</status>
|
|
3749
|
+
<versionDate>2012-10-31</versionDate>
|
|
3750
|
+
</unit>
|
|
3751
|
+
<unit id="u00026">
|
|
3752
|
+
<unitId>Hz</unitId>
|
|
3753
|
+
<unitName>Hertz</unitName>
|
|
3754
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
3755
|
+
<itemType>frequencyItemType</itemType>
|
|
3756
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
3757
|
+
<symbol>Hz</symbol>
|
|
3758
|
+
<definition>Frequency or Number of Cycles per Second</definition>
|
|
3759
|
+
<baseStandard>SI</baseStandard>
|
|
3760
|
+
<conversionPresentation>
|
|
3761
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3762
|
+
<mfrac>
|
|
3763
|
+
<mn>1</mn>
|
|
3764
|
+
<mi>s</mi>
|
|
3765
|
+
</mfrac>
|
|
3766
|
+
</math>
|
|
3767
|
+
</conversionPresentation>
|
|
3768
|
+
<conversionContent>
|
|
3769
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3770
|
+
<apply>
|
|
3771
|
+
<power/>
|
|
3772
|
+
<cn>s</cn>
|
|
3773
|
+
<ci>-1</ci>
|
|
3774
|
+
</apply>
|
|
3775
|
+
</math>
|
|
3776
|
+
</conversionContent>
|
|
3777
|
+
<status>REC</status>
|
|
3778
|
+
<versionDate>2012-10-31</versionDate>
|
|
3779
|
+
</unit>
|
|
3780
|
+
<unit id="u00027">
|
|
3781
|
+
<unitId>cm</unitId>
|
|
3782
|
+
<unitName>Centimetre</unitName>
|
|
3783
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
3784
|
+
<itemType>lengthItemType</itemType>
|
|
3785
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
3786
|
+
<symbol>cm</symbol>
|
|
3787
|
+
<definition>One-hundreth of Metre</definition>
|
|
3788
|
+
<baseStandard>SI</baseStandard>
|
|
3789
|
+
<conversionPresentation>
|
|
3790
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3791
|
+
<mrow>
|
|
3792
|
+
<msup>
|
|
3793
|
+
<mn>10</mn>
|
|
3794
|
+
<mn>-2</mn>
|
|
3795
|
+
</msup>
|
|
3796
|
+
<mo>*</mo>
|
|
3797
|
+
<mi>m</mi>
|
|
3798
|
+
</mrow>
|
|
3799
|
+
</math>
|
|
3800
|
+
</conversionPresentation>
|
|
3801
|
+
<conversionContent>
|
|
3802
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3803
|
+
<apply>
|
|
3804
|
+
<times/>
|
|
3805
|
+
<apply>
|
|
3806
|
+
<power/>
|
|
3807
|
+
<cn>10</cn>
|
|
3808
|
+
<ci>-2</ci>
|
|
3809
|
+
</apply>
|
|
3810
|
+
<cn>m</cn>
|
|
3811
|
+
</apply>
|
|
3812
|
+
</math>
|
|
3813
|
+
</conversionContent>
|
|
3814
|
+
<status>REC</status>
|
|
3815
|
+
<versionDate>2012-10-31</versionDate>
|
|
3816
|
+
</unit>
|
|
3817
|
+
<unit id="u00028">
|
|
3818
|
+
<unitId>dm</unitId>
|
|
3819
|
+
<unitName>Decimetre</unitName>
|
|
3820
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
3821
|
+
<itemType>lengthItemType</itemType>
|
|
3822
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
3823
|
+
<symbol>dm</symbol>
|
|
3824
|
+
<definition>Decimetre</definition>
|
|
3825
|
+
<baseStandard>SI</baseStandard>
|
|
3826
|
+
<conversionPresentation>
|
|
3827
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3828
|
+
<mrow>
|
|
3829
|
+
<msup>
|
|
3830
|
+
<mn>10</mn>
|
|
3831
|
+
<mn>-1</mn>
|
|
3832
|
+
</msup>
|
|
3833
|
+
<mi>m</mi>
|
|
3834
|
+
</mrow>
|
|
3835
|
+
</math>
|
|
3836
|
+
</conversionPresentation>
|
|
3837
|
+
<conversionContent>
|
|
3838
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3839
|
+
<apply>
|
|
3840
|
+
<times/>
|
|
3841
|
+
<apply>
|
|
3842
|
+
<power/>
|
|
3843
|
+
<cn>10</cn>
|
|
3844
|
+
<ci>-1</ci>
|
|
3845
|
+
</apply>
|
|
3846
|
+
<cn>m</cn>
|
|
3847
|
+
</apply>
|
|
3848
|
+
</math>
|
|
3849
|
+
</conversionContent>
|
|
3850
|
+
<status>REC</status>
|
|
3851
|
+
<versionDate>2012-10-31</versionDate>
|
|
3852
|
+
</unit>
|
|
3853
|
+
<unit id="u00031">
|
|
3854
|
+
<unitId>km</unitId>
|
|
3855
|
+
<unitName>Kilometre</unitName>
|
|
3856
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
3857
|
+
<itemType>lengthItemType</itemType>
|
|
3858
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
3859
|
+
<symbol>km</symbol>
|
|
3860
|
+
<definition>Thousand Metres</definition>
|
|
3861
|
+
<baseStandard>SI</baseStandard>
|
|
3862
|
+
<conversionPresentation>
|
|
3863
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3864
|
+
<mrow>
|
|
3865
|
+
<msup>
|
|
3866
|
+
<mn>10</mn>
|
|
3867
|
+
<mn>3</mn>
|
|
3868
|
+
</msup>
|
|
3869
|
+
<mo>*</mo>
|
|
3870
|
+
<mi>m</mi>
|
|
3871
|
+
</mrow>
|
|
3872
|
+
</math>
|
|
3873
|
+
</conversionPresentation>
|
|
3874
|
+
<conversionContent>
|
|
3875
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3876
|
+
<apply>
|
|
3877
|
+
<times/>
|
|
3878
|
+
<cn>m</cn>
|
|
3879
|
+
<apply>
|
|
3880
|
+
<power/>
|
|
3881
|
+
<cn>10</cn>
|
|
3882
|
+
<ci>3</ci>
|
|
3883
|
+
</apply>
|
|
3884
|
+
</apply>
|
|
3885
|
+
</math>
|
|
3886
|
+
</conversionContent>
|
|
3887
|
+
<status>REC</status>
|
|
3888
|
+
<versionDate>2012-10-31</versionDate>
|
|
3889
|
+
</unit>
|
|
3890
|
+
<unit id="u00032">
|
|
3891
|
+
<unitId>m</unitId>
|
|
3892
|
+
<unitName>Metre</unitName>
|
|
3893
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
3894
|
+
<itemType>lengthItemType</itemType>
|
|
3895
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
3896
|
+
<symbol>m</symbol>
|
|
3897
|
+
<definition>Metre</definition>
|
|
3898
|
+
<baseStandard>SI</baseStandard>
|
|
3899
|
+
<conversionPresentation>
|
|
3900
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3901
|
+
<mrow>
|
|
3902
|
+
<mn>1</mn>
|
|
3903
|
+
<mo>*</mo>
|
|
3904
|
+
<mi>m</mi>
|
|
3905
|
+
</mrow>
|
|
3906
|
+
</math>
|
|
3907
|
+
</conversionPresentation>
|
|
3908
|
+
<conversionContent>
|
|
3909
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3910
|
+
<apply>
|
|
3911
|
+
<times/>
|
|
3912
|
+
<ci>1</ci>
|
|
3913
|
+
<cn>m</cn>
|
|
3914
|
+
</apply>
|
|
3915
|
+
</math>
|
|
3916
|
+
</conversionContent>
|
|
3917
|
+
<status>REC</status>
|
|
3918
|
+
<versionDate>2012-10-31</versionDate>
|
|
3919
|
+
</unit>
|
|
3920
|
+
<unit id="u00034">
|
|
3921
|
+
<unitId>mm</unitId>
|
|
3922
|
+
<unitName>Millimetre</unitName>
|
|
3923
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
3924
|
+
<itemType>lengthItemType</itemType>
|
|
3925
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
3926
|
+
<symbol>mm</symbol>
|
|
3927
|
+
<definition>One-thousandth of Metre</definition>
|
|
3928
|
+
<baseStandard>SI</baseStandard>
|
|
3929
|
+
<conversionPresentation>
|
|
3930
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3931
|
+
<mrow>
|
|
3932
|
+
<msup>
|
|
3933
|
+
<mn>10</mn>
|
|
3934
|
+
<mn>-3</mn>
|
|
3935
|
+
</msup>
|
|
3936
|
+
<mo>*</mo>
|
|
3937
|
+
<mi>m</mi>
|
|
3938
|
+
</mrow>
|
|
3939
|
+
</math>
|
|
3940
|
+
</conversionPresentation>
|
|
3941
|
+
<conversionContent>
|
|
3942
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3943
|
+
<apply>
|
|
3944
|
+
<times/>
|
|
3945
|
+
<apply>
|
|
3946
|
+
<power/>
|
|
3947
|
+
<cn>10</cn>
|
|
3948
|
+
<ci>-3</ci>
|
|
3949
|
+
</apply>
|
|
3950
|
+
<cn>m</cn>
|
|
3951
|
+
</apply>
|
|
3952
|
+
</math>
|
|
3953
|
+
</conversionContent>
|
|
3954
|
+
<status>REC</status>
|
|
3955
|
+
<versionDate>2012-10-31</versionDate>
|
|
3956
|
+
</unit>
|
|
3957
|
+
<unit id="u00037">
|
|
3958
|
+
<unitId>g</unitId>
|
|
3959
|
+
<unitName>Gram</unitName>
|
|
3960
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
3961
|
+
<itemType>massItemType</itemType>
|
|
3962
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
3963
|
+
<symbol>g</symbol>
|
|
3964
|
+
<definition>Gram</definition>
|
|
3965
|
+
<baseStandard>SI</baseStandard>
|
|
3966
|
+
<conversionPresentation>
|
|
3967
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3968
|
+
<mrow>
|
|
3969
|
+
<msup>
|
|
3970
|
+
<mn>10</mn>
|
|
3971
|
+
<mn>-3</mn>
|
|
3972
|
+
</msup>
|
|
3973
|
+
<mo>*</mo>
|
|
3974
|
+
<mi>kg</mi>
|
|
3975
|
+
</mrow>
|
|
3976
|
+
</math>
|
|
3977
|
+
</conversionPresentation>
|
|
3978
|
+
<conversionContent>
|
|
3979
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
3980
|
+
<apply>
|
|
3981
|
+
<times/>
|
|
3982
|
+
<apply>
|
|
3983
|
+
<power/>
|
|
3984
|
+
<cn>10</cn>
|
|
3985
|
+
<ci>-3</ci>
|
|
3986
|
+
</apply>
|
|
3987
|
+
<cn>kg</cn>
|
|
3988
|
+
</apply>
|
|
3989
|
+
</math>
|
|
3990
|
+
</conversionContent>
|
|
3991
|
+
<status>REC</status>
|
|
3992
|
+
<versionDate>2012-10-31</versionDate>
|
|
3993
|
+
</unit>
|
|
3994
|
+
<unit id="u00038">
|
|
3995
|
+
<unitId>kg</unitId>
|
|
3996
|
+
<unitName>Kilogram</unitName>
|
|
3997
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
3998
|
+
<itemType>massItemType</itemType>
|
|
3999
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
4000
|
+
<symbol>kg</symbol>
|
|
4001
|
+
<definition>Kilogram</definition>
|
|
4002
|
+
<baseStandard>SI</baseStandard>
|
|
4003
|
+
<conversionPresentation>
|
|
4004
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
4005
|
+
<mrow>
|
|
4006
|
+
<mn>1</mn>
|
|
4007
|
+
<mo>*</mo>
|
|
4008
|
+
<mi>kg</mi>
|
|
4009
|
+
</mrow>
|
|
4010
|
+
</math>
|
|
4011
|
+
</conversionPresentation>
|
|
4012
|
+
<conversionContent>
|
|
4013
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
4014
|
+
<apply>
|
|
4015
|
+
<times/>
|
|
4016
|
+
<cn>1</cn>
|
|
4017
|
+
<cn>kg</cn>
|
|
4018
|
+
</apply>
|
|
4019
|
+
</math>
|
|
4020
|
+
</conversionContent>
|
|
4021
|
+
<status>REC</status>
|
|
4022
|
+
<versionDate>2012-10-31</versionDate>
|
|
4023
|
+
</unit>
|
|
4024
|
+
<unit id="u00229">
|
|
4025
|
+
<unitId>GW</unitId>
|
|
4026
|
+
<unitName>Gigawatt</unitName>
|
|
4027
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
4028
|
+
<itemType>powerItemType</itemType>
|
|
4029
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
4030
|
+
<symbol>GW</symbol>
|
|
4031
|
+
<definition>Thousand Million Watts</definition>
|
|
4032
|
+
<baseStandard>SI</baseStandard>
|
|
4033
|
+
<conversionPresentation>
|
|
4034
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
4035
|
+
<mrow>
|
|
4036
|
+
<msup>
|
|
4037
|
+
<mn>10</mn>
|
|
4038
|
+
<mn>9</mn>
|
|
4039
|
+
</msup>
|
|
4040
|
+
<mo>*</mo>
|
|
4041
|
+
<mi>W</mi>
|
|
4042
|
+
</mrow>
|
|
4043
|
+
</math>
|
|
4044
|
+
</conversionPresentation>
|
|
4045
|
+
<conversionContent>
|
|
4046
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
4047
|
+
<apply>
|
|
4048
|
+
<times/>
|
|
4049
|
+
<apply>
|
|
4050
|
+
<power/>
|
|
4051
|
+
<cn>10</cn>
|
|
4052
|
+
<ci>9</ci>
|
|
4053
|
+
</apply>
|
|
4054
|
+
<cn>W</cn>
|
|
4055
|
+
</apply>
|
|
4056
|
+
</math>
|
|
4057
|
+
</conversionContent>
|
|
4058
|
+
<status>REC</status>
|
|
4059
|
+
<versionDate>2012-10-31</versionDate>
|
|
4060
|
+
</unit>
|
|
4061
|
+
<unit id="u00231">
|
|
4062
|
+
<unitId>kW</unitId>
|
|
4063
|
+
<unitName>Kilowatt</unitName>
|
|
4064
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
4065
|
+
<itemType>powerItemType</itemType>
|
|
4066
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
4067
|
+
<symbol>kW</symbol>
|
|
4068
|
+
<definition>Thousand Watts</definition>
|
|
4069
|
+
<baseStandard>SI</baseStandard>
|
|
4070
|
+
<conversionPresentation>
|
|
4071
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
4072
|
+
<mrow>
|
|
4073
|
+
<msup>
|
|
4074
|
+
<mn>10</mn>
|
|
4075
|
+
<mn>3</mn>
|
|
4076
|
+
</msup>
|
|
4077
|
+
<mo>*</mo>
|
|
4078
|
+
<mi>W</mi>
|
|
4079
|
+
</mrow>
|
|
4080
|
+
</math>
|
|
4081
|
+
</conversionPresentation>
|
|
4082
|
+
<conversionContent>
|
|
4083
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
4084
|
+
<apply>
|
|
4085
|
+
<times/>
|
|
4086
|
+
<apply>
|
|
4087
|
+
<power/>
|
|
4088
|
+
<cn>10</cn>
|
|
4089
|
+
<ci>3</ci>
|
|
4090
|
+
</apply>
|
|
4091
|
+
<cn>W</cn>
|
|
4092
|
+
</apply>
|
|
4093
|
+
</math>
|
|
4094
|
+
</conversionContent>
|
|
4095
|
+
<status>REC</status>
|
|
4096
|
+
<versionDate>2012-10-31</versionDate>
|
|
4097
|
+
</unit>
|
|
4098
|
+
<unit id="u00232">
|
|
4099
|
+
<unitId>MW</unitId>
|
|
4100
|
+
<unitName>Megawatt</unitName>
|
|
4101
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
4102
|
+
<itemType>powerItemType</itemType>
|
|
4103
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
4104
|
+
<symbol>MW</symbol>
|
|
4105
|
+
<definition>Million Watts</definition>
|
|
4106
|
+
<baseStandard>SI</baseStandard>
|
|
4107
|
+
<conversionPresentation>
|
|
4108
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
4109
|
+
<mrow>
|
|
4110
|
+
<msup>
|
|
4111
|
+
<mn>10</mn>
|
|
4112
|
+
<mn>6</mn>
|
|
4113
|
+
</msup>
|
|
4114
|
+
<mo>*</mo>
|
|
4115
|
+
<mi>W</mi>
|
|
4116
|
+
</mrow>
|
|
4117
|
+
</math>
|
|
4118
|
+
</conversionPresentation>
|
|
4119
|
+
<conversionContent>
|
|
4120
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
4121
|
+
<apply>
|
|
4122
|
+
<times/>
|
|
4123
|
+
<apply>
|
|
4124
|
+
<power/>
|
|
4125
|
+
<cn>10</cn>
|
|
4126
|
+
<ci>6</ci>
|
|
4127
|
+
</apply>
|
|
4128
|
+
<cn>W</cn>
|
|
4129
|
+
</apply>
|
|
4130
|
+
</math>
|
|
4131
|
+
</conversionContent>
|
|
4132
|
+
<status>REC</status>
|
|
4133
|
+
<versionDate>2012-10-31</versionDate>
|
|
4134
|
+
</unit>
|
|
4135
|
+
<unit id="u00233">
|
|
4136
|
+
<unitId>TW</unitId>
|
|
4137
|
+
<unitName>Terawatt</unitName>
|
|
4138
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
4139
|
+
<itemType>powerItemType</itemType>
|
|
4140
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
4141
|
+
<symbol>TW</symbol>
|
|
4142
|
+
<definition>Million Million Watts</definition>
|
|
4143
|
+
<baseStandard>SI</baseStandard>
|
|
4144
|
+
<conversionPresentation>
|
|
4145
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
4146
|
+
<mrow>
|
|
4147
|
+
<msup>
|
|
4148
|
+
<mn>10</mn>
|
|
4149
|
+
<mn>12</mn>
|
|
4150
|
+
</msup>
|
|
4151
|
+
<mo>*</mo>
|
|
4152
|
+
<mi>W</mi>
|
|
4153
|
+
</mrow>
|
|
4154
|
+
</math>
|
|
4155
|
+
</conversionPresentation>
|
|
4156
|
+
<conversionContent>
|
|
4157
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
4158
|
+
<apply>
|
|
4159
|
+
<times/>
|
|
4160
|
+
<apply>
|
|
4161
|
+
<power/>
|
|
4162
|
+
<cn>10</cn>
|
|
4163
|
+
<cn>12</cn>
|
|
4164
|
+
</apply>
|
|
4165
|
+
<cn>W</cn>
|
|
4166
|
+
</apply>
|
|
4167
|
+
</math>
|
|
4168
|
+
</conversionContent>
|
|
4169
|
+
<status>REC</status>
|
|
4170
|
+
<versionDate>2012-10-31</versionDate>
|
|
4171
|
+
</unit>
|
|
4172
|
+
<unit id="u00234">
|
|
4173
|
+
<unitId>W</unitId>
|
|
4174
|
+
<unitName>Watt</unitName>
|
|
4175
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
4176
|
+
<itemType>powerItemType</itemType>
|
|
4177
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
4178
|
+
<symbol>W</symbol>
|
|
4179
|
+
<definition>Watt</definition>
|
|
4180
|
+
<baseStandard>SI</baseStandard>
|
|
4181
|
+
<conversionPresentation>
|
|
4182
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
4183
|
+
<mfrac>
|
|
4184
|
+
<mrow>
|
|
4185
|
+
<mn>1</mn>
|
|
4186
|
+
<mo>*</mo>
|
|
4187
|
+
<mi>J</mi>
|
|
4188
|
+
</mrow>
|
|
4189
|
+
<mi>s</mi>
|
|
4190
|
+
</mfrac>
|
|
4191
|
+
</math>
|
|
4192
|
+
</conversionPresentation>
|
|
4193
|
+
<conversionContent>
|
|
4194
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
4195
|
+
<apply>
|
|
4196
|
+
<divide/>
|
|
4197
|
+
<apply>
|
|
4198
|
+
<times/>
|
|
4199
|
+
<cn>1</cn>
|
|
4200
|
+
<ci>J</ci>
|
|
4201
|
+
</apply>
|
|
4202
|
+
<ci>s</ci>
|
|
4203
|
+
</apply>
|
|
4204
|
+
</math>
|
|
4205
|
+
</conversionContent>
|
|
4206
|
+
<status>REC</status>
|
|
4207
|
+
<versionDate>2012-10-31</versionDate>
|
|
4208
|
+
</unit>
|
|
4209
|
+
<unit id="u00239">
|
|
4210
|
+
<unitId>kV</unitId>
|
|
4211
|
+
<unitName>Kilovolt</unitName>
|
|
4212
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
4213
|
+
<itemType>voltageItemType</itemType>
|
|
4214
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
4215
|
+
<symbol>kV</symbol>
|
|
4216
|
+
<definition>Thousand Volts of Electromotive Force</definition>
|
|
4217
|
+
<baseStandard>SI</baseStandard>
|
|
4218
|
+
<conversionPresentation>
|
|
4219
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
4220
|
+
<mrow>
|
|
4221
|
+
<msup>
|
|
4222
|
+
<mn>10</mn>
|
|
4223
|
+
<mn>3</mn>
|
|
4224
|
+
</msup>
|
|
4225
|
+
<mo>*</mo>
|
|
4226
|
+
<mi>V</mi>
|
|
4227
|
+
</mrow>
|
|
4228
|
+
</math>
|
|
4229
|
+
</conversionPresentation>
|
|
4230
|
+
<conversionContent>
|
|
4231
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
4232
|
+
<apply>
|
|
4233
|
+
<times/>
|
|
4234
|
+
<apply>
|
|
4235
|
+
<power/>
|
|
4236
|
+
<cn>10</cn>
|
|
4237
|
+
<cn>3</cn>
|
|
4238
|
+
</apply>
|
|
4239
|
+
<ci>V</ci>
|
|
4240
|
+
</apply>
|
|
4241
|
+
</math>
|
|
4242
|
+
</conversionContent>
|
|
4243
|
+
<status>REC</status>
|
|
4244
|
+
<versionDate>2012-10-31</versionDate>
|
|
4245
|
+
</unit>
|
|
4246
|
+
<unit id="u00243">
|
|
4247
|
+
<unitId>l</unitId>
|
|
4248
|
+
<unitName>Litre</unitName>
|
|
4249
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
4250
|
+
<itemType>volumeItemType</itemType>
|
|
4251
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
4252
|
+
<symbol>l</symbol>
|
|
4253
|
+
<definition>Litre</definition>
|
|
4254
|
+
<baseStandard>SI</baseStandard>
|
|
4255
|
+
<conversionPresentation>
|
|
4256
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
4257
|
+
<mrow>
|
|
4258
|
+
<mn>1</mn>
|
|
4259
|
+
<mo>*</mo>
|
|
4260
|
+
<msup>
|
|
4261
|
+
<mi>dm</mi>
|
|
4262
|
+
<mn>3</mn>
|
|
4263
|
+
</msup>
|
|
4264
|
+
</mrow>
|
|
4265
|
+
</math>
|
|
4266
|
+
</conversionPresentation>
|
|
4267
|
+
<conversionContent>
|
|
4268
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
4269
|
+
<apply>
|
|
4270
|
+
<times/>
|
|
4271
|
+
<cn>1</cn>
|
|
4272
|
+
<apply>
|
|
4273
|
+
<power/>
|
|
4274
|
+
<ci>dm</ci>
|
|
4275
|
+
<cn>3</cn>
|
|
4276
|
+
</apply>
|
|
4277
|
+
</apply>
|
|
4278
|
+
</math>
|
|
4279
|
+
</conversionContent>
|
|
4280
|
+
<status>REC</status>
|
|
4281
|
+
<versionDate>2012-10-31</versionDate>
|
|
4282
|
+
</unit>
|
|
4283
|
+
<unit id="u00244">
|
|
4284
|
+
<unitId>m3</unitId>
|
|
4285
|
+
<unitName>Cubic Metre</unitName>
|
|
4286
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
4287
|
+
<itemType>volumeItemType</itemType>
|
|
4288
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
4289
|
+
<symbol>m³</symbol>
|
|
4290
|
+
<definition>Cubic Metre</definition>
|
|
4291
|
+
<baseStandard>SI</baseStandard>
|
|
4292
|
+
<conversionPresentation>
|
|
4293
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
4294
|
+
<mrow>
|
|
4295
|
+
<mn>1</mn>
|
|
4296
|
+
<mo>*</mo>
|
|
4297
|
+
<msup>
|
|
4298
|
+
<mi>m</mi>
|
|
4299
|
+
<mn>3</mn>
|
|
4300
|
+
</msup>
|
|
4301
|
+
</mrow>
|
|
4302
|
+
</math>
|
|
4303
|
+
</conversionPresentation>
|
|
4304
|
+
<conversionContent>
|
|
4305
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
4306
|
+
<apply>
|
|
4307
|
+
<times/>
|
|
4308
|
+
<cn>1</cn>
|
|
4309
|
+
<apply>
|
|
4310
|
+
<power/>
|
|
4311
|
+
<ci>m</ci>
|
|
4312
|
+
<cn>3</cn>
|
|
4313
|
+
</apply>
|
|
4314
|
+
</apply>
|
|
4315
|
+
</math>
|
|
4316
|
+
</conversionContent>
|
|
4317
|
+
<status>REC</status>
|
|
4318
|
+
<versionDate>2012-10-31</versionDate>
|
|
4319
|
+
</unit>
|
|
4320
|
+
<unit id="u00250">
|
|
4321
|
+
<unitId>bu</unitId>
|
|
4322
|
+
<unitName>Bushel</unitName>
|
|
4323
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
4324
|
+
<itemType>volumeItemType</itemType>
|
|
4325
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
4326
|
+
<symbol>bu</symbol>
|
|
4327
|
+
<definition>US Bushel</definition>
|
|
4328
|
+
<baseStandard>Customary</baseStandard>
|
|
4329
|
+
<conversionPresentation>
|
|
4330
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
4331
|
+
<mrow>
|
|
4332
|
+
<mn>35.2391</mn>
|
|
4333
|
+
<mo>*</mo>
|
|
4334
|
+
<mi>l</mi>
|
|
4335
|
+
</mrow>
|
|
4336
|
+
</math>
|
|
4337
|
+
</conversionPresentation>
|
|
4338
|
+
<conversionContent>
|
|
4339
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
4340
|
+
<apply>
|
|
4341
|
+
<times/>
|
|
4342
|
+
<cn>35.2391</cn>
|
|
4343
|
+
<ci>l</ci>
|
|
4344
|
+
</apply>
|
|
4345
|
+
</math>
|
|
4346
|
+
</conversionContent>
|
|
4347
|
+
<status>REC</status>
|
|
4348
|
+
<versionDate>2012-10-31</versionDate>
|
|
4349
|
+
</unit>
|
|
4350
|
+
<unit id="u00227">
|
|
4351
|
+
<unitId>Monetary_per_Share</unitId>
|
|
4352
|
+
<unitName>Monetary/share</unitName>
|
|
4353
|
+
<itemType>perShareItemType</itemType>
|
|
4354
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
4355
|
+
<numeratorItemType>monetaryItemType</numeratorItemType>
|
|
4356
|
+
<nsNumeratorItemType>http://www.xbrl.org/2003/instance</nsNumeratorItemType>
|
|
4357
|
+
<denominatorItemType>sharesItemType</denominatorItemType>
|
|
4358
|
+
<nsDenominatorItemType>http://www.xbrl.org/2003/instance</nsDenominatorItemType>
|
|
4359
|
+
<definition>Monetary Unit / Share</definition>
|
|
4360
|
+
<baseStandard>XBRL</baseStandard>
|
|
4361
|
+
<status>REC</status>
|
|
4362
|
+
<versionDate>2012-10-31</versionDate>
|
|
4363
|
+
</unit>
|
|
4364
|
+
<unit id="u00228">
|
|
4365
|
+
<unitId>Monetary_per_Decimal</unitId>
|
|
4366
|
+
<unitName>Monetary/Decimal</unitName>
|
|
4367
|
+
<itemType>perUnitItemType</itemType>
|
|
4368
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
4369
|
+
<numeratorItemType>monetaryItemType</numeratorItemType>
|
|
4370
|
+
<nsNumeratorItemType>http://www.xbrl.org/2003/instance</nsNumeratorItemType>
|
|
4371
|
+
<denominatorItemType>decimalItemType</denominatorItemType>
|
|
4372
|
+
<nsDenominatorItemType>http://www.xbrl.org/2003/instance</nsDenominatorItemType>
|
|
4373
|
+
<definition>Monetary Unit / Anything but Pure, Share, or Monetary Unit</definition>
|
|
4374
|
+
<baseStandard>XBRL</baseStandard>
|
|
4375
|
+
<status>REC</status>
|
|
4376
|
+
<versionDate>2012-10-31</versionDate>
|
|
4377
|
+
</unit>
|
|
4378
|
+
<unit id="u00235">
|
|
4379
|
+
<unitId>Monetary_per_Monetary</unitId>
|
|
4380
|
+
<unitName>Monetary/Monetary</unitName>
|
|
4381
|
+
<itemType>pureItemType</itemType>
|
|
4382
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
4383
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
4384
|
+
<numeratorItemType>monetaryItemType</numeratorItemType>
|
|
4385
|
+
<nsNumeratorItemType>http://www.xbrl.org/2003/instance</nsNumeratorItemType>
|
|
4386
|
+
<denominatorItemType>monetaryItemType</denominatorItemType>
|
|
4387
|
+
<nsDenominatorItemType>http://www.xbrl.org/2003/instance</nsDenominatorItemType>
|
|
4388
|
+
<definition>Exchange Rate Expressed as: Monetary Unit / Monetary Unit</definition>
|
|
4389
|
+
<baseStandard>XBRL</baseStandard>
|
|
4390
|
+
<status>REC</status>
|
|
4391
|
+
<versionDate>2012-10-31</versionDate>
|
|
4392
|
+
</unit>
|
|
4393
|
+
<unit id="u00236">
|
|
4394
|
+
<unitId>pure</unitId>
|
|
4395
|
+
<unitName>pure</unitName>
|
|
4396
|
+
<nsUnit>http://www.xbrl.org/2003/instance</nsUnit>
|
|
4397
|
+
<itemType>pureItemType</itemType>
|
|
4398
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
4399
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
4400
|
+
<definition>Dimensionless (Pure) Number</definition>
|
|
4401
|
+
<baseStandard>XBRL</baseStandard>
|
|
4402
|
+
<status>REC</status>
|
|
4403
|
+
<versionDate>2012-10-31</versionDate>
|
|
4404
|
+
</unit>
|
|
4405
|
+
<unit id="u00237">
|
|
4406
|
+
<unitId>Rate</unitId>
|
|
4407
|
+
<unitName>Rate</unitName>
|
|
4408
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
4409
|
+
<itemType>pureItemType</itemType>
|
|
4410
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
4411
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
4412
|
+
<definition>Rate</definition>
|
|
4413
|
+
<baseStandard>XBRL</baseStandard>
|
|
4414
|
+
<status>REC</status>
|
|
4415
|
+
<versionDate>2012-10-31</versionDate>
|
|
4416
|
+
</unit>
|
|
4417
|
+
<unit id="u00238">
|
|
4418
|
+
<unitId>shares</unitId>
|
|
4419
|
+
<unitName>Share</unitName>
|
|
4420
|
+
<nsUnit>http://www.xbrl.org/2003/instance</nsUnit>
|
|
4421
|
+
<itemType>sharesItemType</itemType>
|
|
4422
|
+
<nsItemType>http://www.xbrl.org/2003/instance</nsItemType>
|
|
4423
|
+
<itemTypeDate>2003-12-31</itemTypeDate>
|
|
4424
|
+
<definition>Share of Ownership (Stock)</definition>
|
|
4425
|
+
<baseStandard>XBRL</baseStandard>
|
|
4426
|
+
<status>REC</status>
|
|
4427
|
+
<versionDate>2012-10-31</versionDate>
|
|
4428
|
+
</unit>
|
|
4429
|
+
<unit id="u00252">
|
|
4430
|
+
<unitId>Y</unitId>
|
|
4431
|
+
<unitName>Year</unitName>
|
|
4432
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
4433
|
+
<itemType>durationItemType</itemType>
|
|
4434
|
+
<symbol>yr</symbol>
|
|
4435
|
+
<definition>Year</definition>
|
|
4436
|
+
<baseStandard>Customary</baseStandard>
|
|
4437
|
+
<status>REC</status>
|
|
4438
|
+
<versionDate>2012-10-31</versionDate>
|
|
4439
|
+
</unit>
|
|
4440
|
+
<unit id="u00253">
|
|
4441
|
+
<unitId>M</unitId>
|
|
4442
|
+
<unitName>Month</unitName>
|
|
4443
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
4444
|
+
<itemType>durationItemType</itemType>
|
|
4445
|
+
<symbol>mo</symbol>
|
|
4446
|
+
<definition>Month</definition>
|
|
4447
|
+
<baseStandard>Customary</baseStandard>
|
|
4448
|
+
<status>REC</status>
|
|
4449
|
+
<versionDate>2012-10-31</versionDate>
|
|
4450
|
+
</unit>
|
|
4451
|
+
<unit id="u00254">
|
|
4452
|
+
<unitId>D</unitId>
|
|
4453
|
+
<unitName>Day</unitName>
|
|
4454
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
4455
|
+
<itemType>durationItemType</itemType>
|
|
4456
|
+
<symbol>d</symbol>
|
|
4457
|
+
<definition>Day</definition>
|
|
4458
|
+
<baseStandard>Customary</baseStandard>
|
|
4459
|
+
<status>REC</status>
|
|
4460
|
+
<versionDate>2012-10-31</versionDate>
|
|
4461
|
+
</unit>
|
|
4462
|
+
<unit id="u00258">
|
|
4463
|
+
<unitId>H</unitId>
|
|
4464
|
+
<unitName>Hour</unitName>
|
|
4465
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
4466
|
+
<itemType>durationItemType</itemType>
|
|
4467
|
+
<symbol>h</symbol>
|
|
4468
|
+
<definition>Hour</definition>
|
|
4469
|
+
<baseStandard>Customary</baseStandard>
|
|
4470
|
+
<status>REC</status>
|
|
4471
|
+
<versionDate>2012-10-31</versionDate>
|
|
4472
|
+
</unit>
|
|
4473
|
+
<unit id="u00255">
|
|
4474
|
+
<unitId>MM</unitId>
|
|
4475
|
+
<unitName>Minute</unitName>
|
|
4476
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
4477
|
+
<itemType>durationItemType</itemType>
|
|
4478
|
+
<symbol>m</symbol>
|
|
4479
|
+
<definition>Minute</definition>
|
|
4480
|
+
<baseStandard>Customary</baseStandard>
|
|
4481
|
+
<status>REC</status>
|
|
4482
|
+
<versionDate>2012-10-31</versionDate>
|
|
4483
|
+
</unit>
|
|
4484
|
+
<unit id="u00256">
|
|
4485
|
+
<unitId>S</unitId>
|
|
4486
|
+
<unitName>Second</unitName>
|
|
4487
|
+
<nsUnit>http://www.xbrl.org/2009/utr</nsUnit>
|
|
4488
|
+
<itemType>durationItemType</itemType>
|
|
4489
|
+
<symbol>s</symbol>
|
|
4490
|
+
<definition>Second</definition>
|
|
4491
|
+
<baseStandard>SI</baseStandard>
|
|
4492
|
+
<status>REC</status>
|
|
4493
|
+
<versionDate>2012-10-31</versionDate>
|
|
4494
|
+
</unit>
|
|
4495
|
+
<unit id="u00257">
|
|
4496
|
+
<unitId>Volume_per_Duration</unitId>
|
|
4497
|
+
<unitName>Volume/Duration</unitName>
|
|
4498
|
+
<itemType>flowItemType</itemType>
|
|
4499
|
+
<itemTypeDate>2009-12-16</itemTypeDate>
|
|
4500
|
+
<numeratorItemType>volumeItemType</numeratorItemType>
|
|
4501
|
+
<nsNumeratorItemType>http://www.xbrl.org/2009/utr</nsNumeratorItemType>
|
|
4502
|
+
<denominatorItemType>durationItemType</denominatorItemType>
|
|
4503
|
+
<nsDenominatorItemType>http://www.xbrl.org/2003/instance</nsDenominatorItemType>
|
|
4504
|
+
<definition>Flow rate, as Volume per Duration</definition>
|
|
4505
|
+
<baseStandard>Customary</baseStandard>
|
|
4506
|
+
<status>REC</status>
|
|
4507
|
+
<versionDate>2012-10-31</versionDate>
|
|
4508
|
+
</unit>
|
|
4509
|
+
</units>
|
|
4510
|
+
</utr>
|