From 042935cd73fde70f66af71aa085cacdba0a1be10 Mon Sep 17 00:00:00 2001 From: Bryce Willey Date: Wed, 5 Aug 2026 16:53:09 -0400 Subject: [PATCH] A working example of calling TrueFiling Makes some changes to how WSDLs are generated: * uses the cxf-codegen-plugin to actually generate the XSD / WSDL Java objects. Runs automatically on `mvn compile` and can run individually with `mvn generate-sources`. * Doesn't have a prefixed namespace, since the codegen plugin can't handle that. At least it shouldn't confluct with the Tyler generated objects, with doe have the prefixed namespace. This doesn't include the several attempts to improve this situation that didn't work at all. * Make all Niem related schemas a separate package, and just include them * ECF is often substituted / extended by implementors, but Niem isn't as much. * There's another plugin, called https://github.com/highsource/jaxb-tools that can generate 'episode' files, essentially binding files that when included in a build, will stop xjc from re-generating those files. This works with Niem in a separate package making the episode files, and then TrueFiling's ECF implementation using those episode files. However, it doesn't prevent codegen from re-generating ObjectFactories that override the Niem-generated ObjectFactories and have significantly fewer methods. That's annoying, but work-aroundable, but... * There are actually substitutions in Niem, and even if an ObjectFactory method is generated, it might return the wrong value (i.e. something JAXBElement wrapped instead of just the value) * https://github.com/ciscoo/cxf-codegen-gradle/issues/40#issuecomment-1184710670 is the best summary I've seen of this general issue. It comes down to the fact that this proxy server is made to call multiple WSDL endpoints (both with the same types but slightly different versions, or completely different implementations), and JAXB is not built to handle that, as it'll generate "invalid XML according to the schema". This in general caused me to give up most of my efforts to make this code generation sane. --- .github/workflows/build_and_test.yml | 1 + .gitignore | 6 +- Dockerfile | 1 + EfspCommons/pom.xml | 1 - .../edu/suffolk/litlab/efsp/Jurisdiction.java | 6 +- README.md | 6 +- TrueFilingEcf4/pom.xml | 151 + .../litlab/efsp/truefiling/PrintVersions.java | 59 + .../efsp/truefiling/SoapClientChooser.java | 90 + .../efsp/truefiling/TrueFilingDomain.java | 9 + .../litlab/efsp/truefiling/TrueFilingEnv.java | 35 + .../Schema/casetype/ECF-4.0-AppellateCase.xsd | 194 + .../casetype/ECF-4.0-BankruptcyCase.xsd | 141 + .../Schema/casetype/ECF-4.0-CitationCase.xsd | 189 + .../Schema/casetype/ECF-4.0-CivilCase.xsd | 169 + .../Schema/casetype/ECF-4.0-CriminalCase.xsd | 205 + .../Schema/casetype/ECF-4.0-DomesticCase.xsd | 263 + .../Schema/casetype/ECF-4.0-JuvenileCase.xsd | 268 + .../wsdl/Schema/common/ECF-4.0-AppInfo.xsd | 29 + .../Schema/common/ECF-4.0-CommonTypes.xsd | 935 + .../wsdl/Schema/common/genericode.xsd | 1037 + .../Schema/common/xmldsig-core-schema.xsd | 326 + .../niem/ansi-nist/2.0/ansi-nist.xsd | 126 + .../2.0/constraint-schema-transform.xsl | 166 + .../constraint/niem/ansi_d20/2.0/ansi_d20.xsd | 180 + .../2.0/constraint-schema-transform.xsl | 181 + .../constraint/niem/appinfo/2.0/appinfo.xsd | 95 + .../jxdm/4.0/constraint-schema-transform.xsl | 708 + .../constraint/niem/domains/jxdm/4.0/jxdm.xsd | 1056 + .../2.0/constraint-schema-transform.xsl | 118 + .../niem/domains/screening/2.0/screening.xsd | 46 + .../fbi/2.0/constraint-schema-transform.xsl | 25090 +++ .../Schema/constraint/niem/fbi/2.0/fbi.xsd | 41801 +++++ .../2.0/constraint-schema-transform.xsl | 904 + .../niem/fips_10-4/2.0/fips_10-4.xsd | 1352 + .../2.0/constraint-schema-transform.xsl | 1171 + .../constraint/niem/fips_6-4/2.0/fips_6-4.xsd | 1797 + .../2.0/constraint-schema-transform.xsl | 709 + .../constraint/niem/iso_4217/2.0/iso_4217.xsd | 1020 + .../2.0/constraint-schema-transform.xsl | 22873 +++ .../niem/iso_639-3/2.0/iso_639-3.xsd | 37967 ++++ .../2.0/constraint-schema-transform.xsl | 1360 + .../niem/niem-core/2.0/niem-core.xsd | 2593 + .../2.0/constraint-schema-transform.xsl | 130 + .../2.0/nonauthoritative-code.xsd | 41 + .../constraint/niem/proxy/xsd/2.0/xsd.xsd | 139 + .../niem/structures/2.0/structures.xsd | 145 + .../2.0/constraint-schema-transform.xsl | 244 + .../unece_rec20-misc/2.0/unece_rec20-misc.xsd | 263 + .../2.0/constraint-schema-transform.xsl | 292 + .../niem/usps_states/2.0/usps_states.xsd | 332 + .../message/CCTS_CCT_SchemaModule-2.1.xsd | 731 + .../message/ECF-4.0-CaseListQueryMessage.xsd | 86 + .../ECF-4.0-CaseListResponseMessage.xsd | 49 + .../message/ECF-4.0-CaseQueryMessage.xsd | 108 + .../message/ECF-4.0-CaseResponseMessage.xsd | 48 + .../message/ECF-4.0-CoreFilingMessage.xsd | 66 + .../ECF-4.0-CourtPolicyQueryMessage.xsd | 45 + .../ECF-4.0-CourtPolicyResponseMessage.xsd | 446 + .../message/ECF-4.0-DocumentQueryMessage.xsd | 50 + .../ECF-4.0-DocumentResponseMessage.xsd | 49 + .../ECF-4.0-FeesCalculationQueryMessage.xsd | 49 + ...ECF-4.0-FeesCalculationResponseMessage.xsd | 55 + .../ECF-4.0-FilingListQueryMessage.xsd | 51 + .../ECF-4.0-FilingListResponseMessage.xsd | 67 + .../ECF-4.0-FilingStatusQueryMessage.xsd | 49 + .../ECF-4.0-FilingStatusResponseMessage.xsd | 51 + .../message/ECF-4.0-MessageReceiptMessage.xsd | 50 + .../Schema/message/ECF-4.0-PaymentMessage.xsd | 59 + .../message/ECF-4.0-PaymentReceiptMessage.xsd | 28 + ...ECF-4.0-RecordDocketingCallbackMessage.xsd | 45 + .../ECF-4.0-RecordDocketingMessage.xsd | 64 + .../ECF-4.0-ReviewFilingCallbackMessage.xsd | 45 + ...ECF-4.0-ServiceInformationQueryMessage.xsd | 49 + ...-4.0-ServiceInformationResponseMessage.xsd | 55 + .../message/ECF-4.0-ServiceReceiptMessage.xsd | 77 + .../UBL-CommonAggregateComponents-2.1.xsd | 36247 ++++ .../message/UBL-CommonBasicComponents-2.1.xsd | 5151 + .../message/UBL-QualifiedDataTypes-2.1.xsd | 69 + .../message/UBL-UnqualifiedDataTypes-2.1.xsd | 435 + .../wsdl/Schema/substitution/ImageSoft.xsd | 22 + ...ofile-v2-1-DOC-LIT-WRAP-soapui-project.xml | 138576 ++++++++++++++ ...WebServicesProfile-v2-1-soapui-project.xml | 138673 +++++++++++++++ ...0-FilingReviewMDEService-DOC-LIT-WRAP.wsdl | 15 + ...4.0-WebServicesProfile-Definitions-4.0.xsd | 89 + ...Profile-Definitions-v2.1-DOC-LIT-WRAP.wsdl | 332 + ...sProfile-Definitions-v2.1-DOC-LIT-WRAP.xsd | 476 + ...vicesProfile-Definitions-v2.1-RPC-LIT.wsdl | 473 + ...0-WebServicesProfile-Definitions-v2.1.wsdl | 477 + .../resources/wsdl/WebServices/_readme.txt | 17 + .../dev/ECF-4.0-CourtRecordMDEService.wsdl | 15 + .../dev/ECF-4.0-FilingAssemblyMDEService.wsdl | 15 + .../dev/ECF-4.0-FilingReviewMDEService.wsdl | 15 + .../ecf-v4.0-webservices-spec-v2.01-csd02.pdf | Bin 0 -> 427444 bytes .../xsd/casetype/ECF-4.0-AppellateCase.xsd | 194 + .../xsd/casetype/ECF-4.0-BankruptcyCase.xsd | 141 + .../xsd/casetype/ECF-4.0-CitationCase.xsd | 189 + .../wsdl/xsd/casetype/ECF-4.0-CivilCase.xsd | 169 + .../xsd/casetype/ECF-4.0-CriminalCase.xsd | 205 + .../xsd/casetype/ECF-4.0-DomesticCase.xsd | 263 + .../xsd/casetype/ECF-4.0-JuvenileCase.xsd | 268 + .../wsdl/xsd/common/ECF-4.0-AppInfo.xsd | 29 + .../wsdl/xsd/common/ECF-4.0-CommonTypes.xsd | 935 + .../resources/wsdl/xsd/common/genericode.xsd | 1037 + .../wsdl/xsd/common/xmldsig-core-schema.xsd | 326 + .../niem/ansi-nist/2.0/ansi-nist.xsd | 126 + .../2.0/constraint-schema-transform.xsl | 166 + .../constraint/niem/ansi_d20/2.0/ansi_d20.xsd | 180 + .../2.0/constraint-schema-transform.xsl | 181 + .../constraint/niem/appinfo/2.0/appinfo.xsd | 94 + .../jxdm/4.0/constraint-schema-transform.xsl | 708 + .../constraint/niem/domains/jxdm/4.0/jxdm.xsd | 1056 + .../2.0/constraint-schema-transform.xsl | 118 + .../niem/domains/screening/2.0/screening.xsd | 46 + .../fbi/2.0/constraint-schema-transform.xsl | 25090 +++ .../wsdl/xsd/constraint/niem/fbi/2.0/fbi.xsd | 41801 +++++ .../2.0/constraint-schema-transform.xsl | 904 + .../niem/fips_10-4/2.0/fips_10-4.xsd | 1352 + .../2.0/constraint-schema-transform.xsl | 1171 + .../constraint/niem/fips_6-4/2.0/fips_6-4.xsd | 1797 + .../2.0/constraint-schema-transform.xsl | 709 + .../constraint/niem/iso_4217/2.0/iso_4217.xsd | 1020 + .../2.0/constraint-schema-transform.xsl | 22873 +++ .../niem/iso_639-3/2.0/iso_639-3.xsd | 37967 ++++ .../2.0/constraint-schema-transform.xsl | 1360 + .../niem/niem-core/2.0/niem-core.xsd | 2593 + .../2.0/constraint-schema-transform.xsl | 130 + .../2.0/nonauthoritative-code.xsd | 41 + .../xsd/constraint/niem/proxy/xsd/2.0/xsd.xsd | 139 + .../niem/structures/2.0/structures.xsd | 145 + .../2.0/constraint-schema-transform.xsl | 244 + .../unece_rec20-misc/2.0/unece_rec20-misc.xsd | 263 + .../2.0/constraint-schema-transform.xsl | 292 + .../niem/usps_states/2.0/usps_states.xsd | 332 + .../xsd/message/CCTS_CCT_SchemaModule-2.1.xsd | 731 + .../message/ECF-4.0-CaseListQueryMessage.xsd | 86 + .../ECF-4.0-CaseListResponseMessage.xsd | 49 + .../xsd/message/ECF-4.0-CaseQueryMessage.xsd | 108 + .../message/ECF-4.0-CaseResponseMessage.xsd | 48 + .../xsd/message/ECF-4.0-CoreFilingMessage.xsd | 66 + .../ECF-4.0-CourtPolicyQueryMessage.xsd | 45 + .../ECF-4.0-CourtPolicyResponseMessage.xsd | 446 + .../message/ECF-4.0-DocumentQueryMessage.xsd | 50 + .../ECF-4.0-DocumentResponseMessage.xsd | 49 + .../ECF-4.0-FeesCalculationQueryMessage.xsd | 49 + ...ECF-4.0-FeesCalculationResponseMessage.xsd | 55 + .../ECF-4.0-FilingListQueryMessage.xsd | 51 + .../ECF-4.0-FilingListResponseMessage.xsd | 67 + .../ECF-4.0-FilingStatusQueryMessage.xsd | 49 + .../ECF-4.0-FilingStatusResponseMessage.xsd | 51 + .../message/ECF-4.0-MessageReceiptMessage.xsd | 50 + .../xsd/message/ECF-4.0-PaymentMessage.xsd | 59 + .../message/ECF-4.0-PaymentReceiptMessage.xsd | 28 + ...ECF-4.0-RecordDocketingCallbackMessage.xsd | 45 + .../ECF-4.0-RecordDocketingMessage.xsd | 64 + .../ECF-4.0-ReviewFilingCallbackMessage.xsd | 45 + ...ECF-4.0-ServiceInformationQueryMessage.xsd | 49 + ...-4.0-ServiceInformationResponseMessage.xsd | 55 + .../message/ECF-4.0-ServiceReceiptMessage.xsd | 77 + .../UBL-CommonAggregateComponents-2.1.xsd | 36247 ++++ .../message/UBL-CommonBasicComponents-2.1.xsd | 5151 + .../message/UBL-QualifiedDataTypes-2.1.xsd | 69 + .../message/UBL-UnqualifiedDataTypes-2.1.xsd | 435 + docs/architecture.md | 2 +- env.example | 3 + .../efsp/tyler/ecfcodes/CodeUpdater.java | 1 + 166 files changed, 661615 insertions(+), 8 deletions(-) create mode 100644 TrueFilingEcf4/pom.xml create mode 100644 TrueFilingEcf4/src/main/java/edu/suffolk/litlab/efsp/truefiling/PrintVersions.java create mode 100644 TrueFilingEcf4/src/main/java/edu/suffolk/litlab/efsp/truefiling/SoapClientChooser.java create mode 100644 TrueFilingEcf4/src/main/java/edu/suffolk/litlab/efsp/truefiling/TrueFilingDomain.java create mode 100644 TrueFilingEcf4/src/main/java/edu/suffolk/litlab/efsp/truefiling/TrueFilingEnv.java create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/casetype/ECF-4.0-AppellateCase.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/casetype/ECF-4.0-BankruptcyCase.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/casetype/ECF-4.0-CitationCase.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/casetype/ECF-4.0-CivilCase.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/casetype/ECF-4.0-CriminalCase.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/casetype/ECF-4.0-DomesticCase.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/casetype/ECF-4.0-JuvenileCase.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/common/ECF-4.0-AppInfo.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/common/ECF-4.0-CommonTypes.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/common/genericode.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/common/xmldsig-core-schema.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/ansi-nist/2.0/ansi-nist.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/ansi-nist/2.0/constraint-schema-transform.xsl create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/ansi_d20/2.0/ansi_d20.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/ansi_d20/2.0/constraint-schema-transform.xsl create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/appinfo/2.0/appinfo.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/domains/jxdm/4.0/constraint-schema-transform.xsl create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/domains/jxdm/4.0/jxdm.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/domains/screening/2.0/constraint-schema-transform.xsl create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/domains/screening/2.0/screening.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/fbi/2.0/constraint-schema-transform.xsl create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/fbi/2.0/fbi.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/fips_10-4/2.0/constraint-schema-transform.xsl create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/fips_10-4/2.0/fips_10-4.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/fips_6-4/2.0/constraint-schema-transform.xsl create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/fips_6-4/2.0/fips_6-4.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/iso_4217/2.0/constraint-schema-transform.xsl create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/iso_4217/2.0/iso_4217.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/iso_639-3/2.0/constraint-schema-transform.xsl create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/iso_639-3/2.0/iso_639-3.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/niem-core/2.0/constraint-schema-transform.xsl create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/niem-core/2.0/niem-core.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/nonauthoritative-code/2.0/constraint-schema-transform.xsl create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/nonauthoritative-code/2.0/nonauthoritative-code.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/proxy/xsd/2.0/xsd.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/structures/2.0/structures.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/unece_rec20-misc/2.0/constraint-schema-transform.xsl create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/unece_rec20-misc/2.0/unece_rec20-misc.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/usps_states/2.0/constraint-schema-transform.xsl create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/usps_states/2.0/usps_states.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/message/CCTS_CCT_SchemaModule-2.1.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-CaseListQueryMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-CaseListResponseMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-CaseQueryMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-CaseResponseMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-CoreFilingMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-CourtPolicyQueryMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-CourtPolicyResponseMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-DocumentQueryMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-DocumentResponseMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-FeesCalculationQueryMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-FeesCalculationResponseMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-FilingListQueryMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-FilingListResponseMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-FilingStatusQueryMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-FilingStatusResponseMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-MessageReceiptMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-PaymentMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-PaymentReceiptMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-RecordDocketingCallbackMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-RecordDocketingMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-ReviewFilingCallbackMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-ServiceInformationQueryMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-ServiceInformationResponseMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-ServiceReceiptMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/message/UBL-CommonAggregateComponents-2.1.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/message/UBL-CommonBasicComponents-2.1.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/message/UBL-QualifiedDataTypes-2.1.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/message/UBL-UnqualifiedDataTypes-2.1.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/Schema/substitution/ImageSoft.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/WebServices/ECF-4-0-WebServicesProfile-v2-1-DOC-LIT-WRAP-soapui-project.xml create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/WebServices/ECF-4-0-WebServicesProfile-v2-1-soapui-project.xml create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/WebServices/ECF-4.0-FilingReviewMDEService-DOC-LIT-WRAP.wsdl create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/WebServices/ECF-4.0-WebServicesProfile-Definitions-4.0.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/WebServices/ECF-4.0-WebServicesProfile-Definitions-v2.1-DOC-LIT-WRAP.wsdl create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/WebServices/ECF-4.0-WebServicesProfile-Definitions-v2.1-DOC-LIT-WRAP.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/WebServices/ECF-4.0-WebServicesProfile-Definitions-v2.1-RPC-LIT.wsdl create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/WebServices/ECF-4.0-WebServicesProfile-Definitions-v2.1.wsdl create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/WebServices/_readme.txt create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/WebServices/dev/ECF-4.0-CourtRecordMDEService.wsdl create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/WebServices/dev/ECF-4.0-FilingAssemblyMDEService.wsdl create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/WebServices/dev/ECF-4.0-FilingReviewMDEService.wsdl create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/WebServices/ecf-v4.0-webservices-spec-v2.01-csd02.pdf create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/casetype/ECF-4.0-AppellateCase.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/casetype/ECF-4.0-BankruptcyCase.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/casetype/ECF-4.0-CitationCase.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/casetype/ECF-4.0-CivilCase.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/casetype/ECF-4.0-CriminalCase.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/casetype/ECF-4.0-DomesticCase.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/casetype/ECF-4.0-JuvenileCase.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/common/ECF-4.0-AppInfo.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/common/ECF-4.0-CommonTypes.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/common/genericode.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/common/xmldsig-core-schema.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/ansi-nist/2.0/ansi-nist.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/ansi-nist/2.0/constraint-schema-transform.xsl create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/ansi_d20/2.0/ansi_d20.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/ansi_d20/2.0/constraint-schema-transform.xsl create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/appinfo/2.0/appinfo.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/domains/jxdm/4.0/constraint-schema-transform.xsl create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/domains/jxdm/4.0/jxdm.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/domains/screening/2.0/constraint-schema-transform.xsl create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/domains/screening/2.0/screening.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/fbi/2.0/constraint-schema-transform.xsl create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/fbi/2.0/fbi.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/fips_10-4/2.0/constraint-schema-transform.xsl create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/fips_10-4/2.0/fips_10-4.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/fips_6-4/2.0/constraint-schema-transform.xsl create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/fips_6-4/2.0/fips_6-4.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/iso_4217/2.0/constraint-schema-transform.xsl create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/iso_4217/2.0/iso_4217.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/iso_639-3/2.0/constraint-schema-transform.xsl create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/iso_639-3/2.0/iso_639-3.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/niem-core/2.0/constraint-schema-transform.xsl create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/niem-core/2.0/niem-core.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/nonauthoritative-code/2.0/constraint-schema-transform.xsl create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/nonauthoritative-code/2.0/nonauthoritative-code.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/proxy/xsd/2.0/xsd.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/structures/2.0/structures.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/unece_rec20-misc/2.0/constraint-schema-transform.xsl create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/unece_rec20-misc/2.0/unece_rec20-misc.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/usps_states/2.0/constraint-schema-transform.xsl create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/usps_states/2.0/usps_states.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/message/CCTS_CCT_SchemaModule-2.1.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-CaseListQueryMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-CaseListResponseMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-CaseQueryMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-CaseResponseMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-CoreFilingMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-CourtPolicyQueryMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-CourtPolicyResponseMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-DocumentQueryMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-DocumentResponseMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-FeesCalculationQueryMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-FeesCalculationResponseMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-FilingListQueryMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-FilingListResponseMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-FilingStatusQueryMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-FilingStatusResponseMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-MessageReceiptMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-PaymentMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-PaymentReceiptMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-RecordDocketingCallbackMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-RecordDocketingMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-ReviewFilingCallbackMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-ServiceInformationQueryMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-ServiceInformationResponseMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-ServiceReceiptMessage.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/message/UBL-CommonAggregateComponents-2.1.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/message/UBL-CommonBasicComponents-2.1.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/message/UBL-QualifiedDataTypes-2.1.xsd create mode 100644 TrueFilingEcf4/src/main/resources/wsdl/xsd/message/UBL-UnqualifiedDataTypes-2.1.xsd diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index f2e65acf1..c0ee2aabe 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -17,6 +17,7 @@ jobs: cache-dependency-path: | EfspCommons/pom.xml TylerEfmClient/pom.xml + TrueFilingEcf4/pom.xml TylerEcf4/pom.xml TylerEcf5/pom.xml proxyserver/pom.xml diff --git a/.gitignore b/.gitignore index 7da9e3827..3848554c5 100644 --- a/.gitignore +++ b/.gitignore @@ -90,4 +90,8 @@ google-java-format_* # MKDocs Output site -.jqwik-database \ No newline at end of file +.jqwik-database + +# Eclipse + +.factorypath diff --git a/Dockerfile b/Dockerfile index 637ce24c1..789521d62 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,7 @@ ARG CI_COMMIT_SHA LABEL git-commit=$CI_COMMIT_SHA COPY pom.xml /app/ COPY EfspCommons /app/EfspCommons/ +COPY TrueFilingEcf4 /app/TrueFilingEcf4/ COPY TylerEcf4 /app/TylerEcf4/ COPY TylerEcf5 /app/TylerEcf5/ COPY TylerEfmClient /app/TylerEfmClient/ diff --git a/EfspCommons/pom.xml b/EfspCommons/pom.xml index 1b546034b..a7ce310c9 100644 --- a/EfspCommons/pom.xml +++ b/EfspCommons/pom.xml @@ -7,7 +7,6 @@ efspserver-parent 1.4.0 - edu.suffolk.litlab efsp-commons EFSP Common code Code that is used in all other modules of this Efile proxy server project. diff --git a/EfspCommons/src/main/java/edu/suffolk/litlab/efsp/Jurisdiction.java b/EfspCommons/src/main/java/edu/suffolk/litlab/efsp/Jurisdiction.java index 95878bb5b..49e772169 100644 --- a/EfspCommons/src/main/java/edu/suffolk/litlab/efsp/Jurisdiction.java +++ b/EfspCommons/src/main/java/edu/suffolk/litlab/efsp/Jurisdiction.java @@ -15,7 +15,8 @@ public enum Jurisdiction { ILLINOIS("illinois", Api.ECF_4_Schedule, Vendor.TYLER), MASSACHUSETTS("massachusetts", Api.ECF_4, Vendor.TYLER), TEXAS("texas", Api.ECF_4, Vendor.TYLER), - VERMONT("vermont", Api.ECF_4, Vendor.TYLER); + VERMONT("vermont", Api.ECF_4, Vendor.TYLER), + ALASKA("alaska", Api.ECF_4, Vendor.TRUE_FILING); public enum Api { ECF_4, @@ -25,7 +26,8 @@ public enum Api { } public enum Vendor { - TYLER; + TYLER, + TRUE_FILING; } private String name; diff --git a/README.md b/README.md index e5ec3e795..81455cdc3 100644 --- a/README.md +++ b/README.md @@ -71,6 +71,6 @@ This project is written in Java, using Maven as a build system. The Java code is different modules for better defined interfaces. Those modules include: * [TylerEfmClient](TylerEfmClient/README.md) -* [Ecf4](Ecf4/README.md) -* [Ecf5](Ecf5/README.md) -* [TylerEcf4](TylerEcf4/README.md) \ No newline at end of file +* [TylerEcf4](TylerEcf4/README.md) +* [TylerEcf5](TylerEcf5/README.md) +* [TrueFilingEcf4](TrueFilingEcf4/README.md) \ No newline at end of file diff --git a/TrueFilingEcf4/pom.xml b/TrueFilingEcf4/pom.xml new file mode 100644 index 000000000..f141fa070 --- /dev/null +++ b/TrueFilingEcf4/pom.xml @@ -0,0 +1,151 @@ + + + 4.0.0 + + + edu.suffolk.litlab + efspserver-parent + 1.4.0 + + truefiling-ecf4 + TrueFiling ECF 4 + Generated Java files for TrueFiling's ECF 4 Schemas + + + + edu.suffolk.litlab + efsp-commons + + + org.apache.commons + commons-lang3 + + + jakarta.xml.bind + jakarta.xml.bind-api + + + jakarta.jws + jakarta.jws-api + + + org.apache.cxf.xjc-utils + cxf-xjc-runtime + + + + org.apache.cxf + cxf-rt-frontend-jaxws + ${cxf.version} + + + org.apache.cxf + cxf-rt-frontend-jaxrs + ${cxf.version} + + + org.apache.cxf + cxf-rt-transports-http + ${cxf.version} + + + org.apache.cxf + cxf-rt-transports-http-jetty + ${cxf.version} + + + org.apache.cxf + cxf-rt-ws-security + ${cxf.version} + + + org.apache.cxf + cxf-rt-rs-client + ${cxf.version} + + + org.apache.cxf + cxf-rt-features-logging + ${cxf.version} + + + org.glassfish.jaxb + jaxb-runtime + 4.0.2 + + + + jakarta.ws.rs + jakarta.ws.rs-api + 3.1.0 + + + + + + + + + org.apache.maven.plugins + maven-resources-plugin + + + + copy-wsdl + + copy-resources + + generate-sources + + target/classes/wsdl/xsd + true + + + ../Niem/src/main/resources/xsd + + **/*.xsd + **/**/*.xsd + + + + + + + + + org.apache.cxf + cxf-codegen-plugin + 4.1.3 + + + + generate-sources + + wsdl2java + + generate-sources + + ${project.build.directory}/generated-sources/cxf + + + target/classes/wsdl/WebServices/dev/ECF-4.0-FilingReviewMDEService.wsdl + + + target/classes/wsdl/WebServices/dev/ECF-4.0-CourtRecordMDEService.wsdl + + + target/classes/wsdl/WebServices/dev/ECF-4.0-ServiceMDEService.wsdl + + + target/classes/wsdl/WebServices/dev/ECF-4.0-FilingAssemblyMDEService.wsdl + + + -Djavax.xml.accessExternalDTD=all + + + + + + + + diff --git a/TrueFilingEcf4/src/main/java/edu/suffolk/litlab/efsp/truefiling/PrintVersions.java b/TrueFilingEcf4/src/main/java/edu/suffolk/litlab/efsp/truefiling/PrintVersions.java new file mode 100644 index 000000000..d172cd6f5 --- /dev/null +++ b/TrueFilingEcf4/src/main/java/edu/suffolk/litlab/efsp/truefiling/PrintVersions.java @@ -0,0 +1,59 @@ +package edu.suffolk.litlab.efsp.truefiling; + +import edu.suffolk.litlab.efsp.Jurisdiction; +import gov.niem.niem.domains.jxdm._4.CourtType; +import gov.niem.niem.niem_core._2.EntityType; +import gov.niem.niem.niem_core._2.IdentificationType; +import gov.niem.niem.niem_core._2.TextType; +import jakarta.xml.bind.JAXBElement; +import jakarta.xml.ws.BindingProvider; +import oasis.names.tc.legalxml_courtfiling.schema.xsd.commontypes_4.ObjectFactory; +import oasis.names.tc.legalxml_courtfiling.schema.xsd.commontypes_4.PersonType; +import oasis.names.tc.legalxml_courtfiling.schema.xsd.courtpolicyquerymessage_4.CourtPolicyQueryMessageType; +import org.apache.cxf.ext.logging.LoggingFeature; + +public class PrintVersions { + + public static void main(String args[]) { + LoggingFeature loggingFeature = new LoggingFeature(); + loggingFeature.setPrettyLogging(true); + // TODO(brycew): add easy checks to look for client-sign.properties, Suffolk.pfx, and + // X509_PASSWORD in env. + System.out.println("Getting versions for all truefile servers"); + try { + var review = + SoapClientChooser.getFilingReviewFactory(Jurisdiction.ALASKA).getFilingReviewMDEPort(); + SoapClientChooser.setupServicePort((BindingProvider) review); + // ClientProxy.getClient(review).getInInterceptors().add(test); + + var query = new CourtPolicyQueryMessageType(); + var court = new CourtType(); + var niemCoreObjFac = new gov.niem.niem.niem_core._2.ObjectFactory(); + var adamsId = niemCoreObjFac.createIdentificationType(); + var adamsStr = new gov.niem.niem.proxy.xsd._2.String(); + adamsStr.setValue("55da5b11-2bc4-4881-abd1-b0dfdb506bb1"); + adamsId.setIdentificationID(adamsStr); + court.setOrganizationIdentification(adamsId); + var text = new TextType(); + text.setValue("55da5b11-2bc4-4881-abd1-b0dfdb506bb1"); + court.setCourtName(text); + query.setCaseCourt(court); + var id = new IdentificationType(); + EntityType typ = new EntityType(); + var commonObjFac = new ObjectFactory(); + JAXBElement elem2 = commonObjFac.createEntityPerson(new PersonType()); + typ.setEntityRepresentation(elem2); + query.setQuerySubmitter(typ); + var string = new gov.niem.niem.proxy.xsd._2.String(); + string.setValue("http://localhost"); + id.setIdentificationID(string); + query.setSendingMDELocationID(id); + query.setSendingMDEProfileCode( + "urn:oasis:names:tc:legalxml-courtfiling:schema:xsd:WebServicesMessaging-2.0"); + review.getPolicy(query); + } catch (Exception ex) { + System.err.println("Error making call: " + ex.getLocalizedMessage() + ", " + ex.toString()); + // continue + } + } +} diff --git a/TrueFilingEcf4/src/main/java/edu/suffolk/litlab/efsp/truefiling/SoapClientChooser.java b/TrueFilingEcf4/src/main/java/edu/suffolk/litlab/efsp/truefiling/SoapClientChooser.java new file mode 100644 index 000000000..b6f95862a --- /dev/null +++ b/TrueFilingEcf4/src/main/java/edu/suffolk/litlab/efsp/truefiling/SoapClientChooser.java @@ -0,0 +1,90 @@ +package edu.suffolk.litlab.efsp.truefiling; + +import edu.suffolk.litlab.efsp.ConfigurationLoader; +import edu.suffolk.litlab.efsp.Jurisdiction; +import edu.suffolk.litlab.efsp.ServerEnv; +import edu.suffolk.litlab.efsp.stdlib.StdLib; +import imagesoft.ecf.wsdl.webservicesprofile_implementation_4_0.CourtRecordMDEService; +import imagesoft.ecf.wsdl.webservicesprofile_implementation_4_0.FilingReviewMDEService; +import jakarta.xml.ws.BindingProvider; +import java.net.URL; +import java.util.List; +import java.util.Map; +import java.util.Optional; +import org.apache.cxf.ext.logging.LoggingFeature; +import org.apache.cxf.message.Message; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +/** The TrueFiling version of the Tyler class */ +public class SoapClientChooser { + + private static final Logger log = LoggerFactory.getLogger(SoapClientChooser.class); + + private static final String REVIEW_SUFFIX = "-ECF-4.0-FilingReviewMDEService.wsdl"; + private static final String RECORD_SUFFIX = "-ECF-4.0-CourtRecordMDEService.wsdl"; + + private static Optional shouldLogRequests; + + private static URL getRes(TrueFilingDomain domain, String suffix) { + String wsdlPath = + "wsdl/WebServices" + + "/" + + domain.env().getName() + + "/" + + domain.jurisdiction().getName() + + suffix; + URL url = SoapClientChooser.class.getClassLoader().getResource(wsdlPath); + if (url == null) { + log.error("Can not initialize the default wsdl from pclass path: {}", wsdlPath); + throw new RuntimeException("Can't load Bad WSDL Path: " + wsdlPath); + } + return url; + } + + public static final TrueFilingEnv getTrueFilingEnv() { + return TrueFilingEnv.from(ServerEnv.fromEnvVar()); + } + + public static boolean shouldLogRequests() { + if (shouldLogRequests.isEmpty()) { + shouldLogRequests = Optional.of(ConfigurationLoader.shouldLogRequests()); + } + return shouldLogRequests.orElse(false); + } + + public static FilingReviewMDEService getFilingReviewFactory(Jurisdiction jurisdiction) { + var domain = new TrueFilingDomain(jurisdiction, getTrueFilingEnv()); + URL url = getRes(domain, REVIEW_SUFFIX); + if (shouldLogRequests()) { + LoggingFeature loggingFeature = new LoggingFeature(); + loggingFeature.setPrettyLogging(true); + return new FilingReviewMDEService(url, loggingFeature); + } + return new FilingReviewMDEService(url); + } + + public static CourtRecordMDEService getCourtRecordFactory(Jurisdiction jurisdiction) { + var domain = new TrueFilingDomain(jurisdiction, getTrueFilingEnv()); + URL url = getRes(domain, RECORD_SUFFIX); + if (shouldLogRequests()) { + LoggingFeature loggingFeature = new LoggingFeature(); + loggingFeature.setPrettyLogging(true); + return new CourtRecordMDEService(url, loggingFeature); + } + return new CourtRecordMDEService(url); + } + + /** Should be called on the "Port" objects made from the services. */ + public static void setupServicePort(BindingProvider bp) { + Map ctx = bp.getRequestContext(); + var integratorId = StdLib.GetEnv("TRUEFILING_INTEGRATOR_ID"); + if (integratorId.isPresent()) { + ctx.put(Message.PROTOCOL_HEADERS, Map.of("IntegratorId", integratorId.get())); + } else { + log.error("True filing integrator id not an environment var, calls will fail"); + ctx.put(Message.PROTOCOL_HEADERS, Map.of("IntegratorId", List.of())); + } + ctx.put("set-jaxb-validation-event-handler", "false"); + } +} diff --git a/TrueFilingEcf4/src/main/java/edu/suffolk/litlab/efsp/truefiling/TrueFilingDomain.java b/TrueFilingEcf4/src/main/java/edu/suffolk/litlab/efsp/truefiling/TrueFilingDomain.java new file mode 100644 index 000000000..dd3fa444b --- /dev/null +++ b/TrueFilingEcf4/src/main/java/edu/suffolk/litlab/efsp/truefiling/TrueFilingDomain.java @@ -0,0 +1,9 @@ +package edu.suffolk.litlab.efsp.truefiling; + +import edu.suffolk.litlab.efsp.Jurisdiction; + +public record TrueFilingDomain(Jurisdiction jurisdiction, TrueFilingEnv env) { + public String getName() { + return jurisdiction.getName() + "-" + env.getName(); + } +} diff --git a/TrueFilingEcf4/src/main/java/edu/suffolk/litlab/efsp/truefiling/TrueFilingEnv.java b/TrueFilingEcf4/src/main/java/edu/suffolk/litlab/efsp/truefiling/TrueFilingEnv.java new file mode 100644 index 000000000..42852b8d0 --- /dev/null +++ b/TrueFilingEcf4/src/main/java/edu/suffolk/litlab/efsp/truefiling/TrueFilingEnv.java @@ -0,0 +1,35 @@ +package edu.suffolk.litlab.efsp.truefiling; + +import edu.suffolk.litlab.efsp.ServerEnv; + +public enum TrueFilingEnv { + DEV("dev"), + TEST("test"), + PROD("prod"); + + private String name; + + private TrueFilingEnv(String name) { + this.name = name; + } + + public String getName() { + return name; + } + + public static TrueFilingEnv parse(String value) { + for (var env : TrueFilingEnv.values()) { + if (value.equalsIgnoreCase(env.getName())) { + return env; + } + } + throw new IllegalArgumentException("Can't make a `TylerEnv` from: `" + value + "`"); + } + + public static TrueFilingEnv from(ServerEnv env) { + return switch (env) { + case ServerEnv.PROD -> PROD; + case ServerEnv.TEST -> DEV; + }; + } +} diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/casetype/ECF-4.0-AppellateCase.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/casetype/ECF-4.0-AppellateCase.xsd new file mode 100644 index 000000000..5db09624d --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/casetype/ECF-4.0-AppellateCase.xsd @@ -0,0 +1,194 @@ + + + + + + AppellateCase + + true + + + + + + + + + + + + Party added to the appeal that was not a party in the original case. For instance, the attorney in the original case may appeal sanctions against the attorney by the court. + + + + + + + + + + + + + Party to the original case that is not party to the appeal. + + + + + + + + + + + + + Information required to initiate a new case in an appellate court. + + + + + + + + + + + + + + + + + + + + + + Additional information specific to civil appellate cases. + + + + + + + + + + + + Additional information specific to court rule appellate cases. + + + + + + + + + + + + + Information required to initiate a new case in an appellate court. + + + + + + + + Party added to the appeal that was not a party in the original case. For instance, the attorney in the original case may appeal sanctions against the attorney by the court. + + + + + The basis for the jurisdiction of the appellate court in the case. + + true + + + + + + A party being added or removed an appeal.. + + + + + The reason a party is being added to the appeal. + + true + + + + + + The reason a party is being removed from the appeal. + + true + + + + + + Party to the original case that is not party to the appeal. + + + + + A request for diversion to a settlement program in the appellate court. + + true + + + + + + Additional information specific to civil appellate cases. + + + + + Additional information specific to court rule appellate cases. + + + + + Indicator that the appellant is currently in custody. + + + + + Indicator that filing fees were waived or deferred in the case in the lower court. + + + + + An organized set or book of rules of the court that include the rule(s) in question. + + true + + + + + + A rule number (including rule subsection) in question. Each rule number must refer to a specific rule within the rule collection. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/casetype/ECF-4.0-BankruptcyCase.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/casetype/ECF-4.0-BankruptcyCase.xsd new file mode 100644 index 000000000..f38725d1d --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/casetype/ECF-4.0-BankruptcyCase.xsd @@ -0,0 +1,141 @@ + + + + + + BankruptcyCase + + true + + + + + + + + + + + + Additional information specific to bankruptcy cases. + + + + + + + + + + + + + + + + + + + + + + + + + Whether assets are available for distribution to creditors. + + + + + Additional information specific to bankruptcy cases. + + + + + + + + Section 11 of the United States Code pertaining to bankruptcy. + + + + + "Form of Origin" indicator from the Bankruptcy Petition Form. Allowable values defined in ECF-4.0-DebtorTypeCode.gc. + + + + + + + + A person or organization on whose behalf, or against whom, a bankruptcy petition is filed. + + + + + A coded set of ranges of dollar values for assets. Generally used for statistical reporting, not case management. Allowable values defined in ECF-4.0-ValueLevelCode.gc. + + + + + + + + A coded set of ranges of dollar values for debts. Generally used for statistical reporting, not case management. Allowable values defined in ECF-4.0-ValueLevelCode.gc. + + + + + + + + Whether or not spouses are filing as joint debtors + + + + + Whether the debts involved in the case are "business" or "consumer". Allowable values defined in ECF-4.0-NatureOfDebtCode.gc. + + + + + + + + A coded set of ranges of numbers of creditors involved in the case. Allowable values defined in ECF-4.0-NumberOfCreditorsValueLevelCode.gc. + + + + + + + + The debtor has elected to proceed under Section 1121 (e) of the bankruptcy code. + + + + + Whether the initiating party is a small business, as defined in bankruptcy code. + + + + + Whether the debtor has initiated bankruptcy (true, corresponding to Federal code "V") or a creditor has initiated bankruptcy (false, corresponding to Federal code "I") + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/casetype/ECF-4.0-CitationCase.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/casetype/ECF-4.0-CitationCase.xsd new file mode 100644 index 000000000..5174ed149 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/casetype/ECF-4.0-CitationCase.xsd @@ -0,0 +1,189 @@ + + + + + + CitationCase + + true + + + + + + + + + + + Additional information about a person alleged to have violated a statute or ordinance. + + + + + + + + + + + + A charge issued by a law enforcement officer for a "violation" requiring the person charged to plead guilty to the charge or to appear in court to contest the charge. A citation is issued in lieu of an arrest and booking. "Violations" are a subset of "charges" for which a law enforcement officer is authorized to issue a citation in lieu of arrest and booking. Examples: traffic ticket, parking ticket or ticket issued for some other ordinance violation such as barking dog or illegal dumping. + + + + + + + + + + + + + + + + + + + + + A charge issued by a law enforcement officer for a "violation" requiring the person charged to plead guilty to the charge or to appear in court to contest the charge. A citation is issued in lieu of an arrest and booking. "Violations" are a subset of "charges" for which a law enforcement officer is authorized to issue a citation in lieu of arrest and booking. Examples: traffic ticket, parking ticket or ticket issued for some other ordinance violation such as barking dog or illegal dumping. + + + + + + + + + + + + + + The incident from which a traffic ticket arose.. + + + + + + + + + + + + + + Information about a parking violation. + + + + + + + + + + + + + + + Information describing a motor vehicle. + + + + + + + + + + + + + A charge issued by a law enforcement officer for a "violation" requiring the person charged to plead guilty to the charge or to appear in court to contest the charge. A citation is issued in lieu of an arrest and booking. "Violations" are a subset of "charges" for which a law enforcement officer is authorized to issue a citation in lieu of arrest and booking. Examples: traffic ticket, parking ticket or ticket issued for some other ordinance violation such as barking dog or illegal dumping. + + + + + A charge issued by a law enforcement officer for a "violation" requiring the person charged to plead guilty to the charge or to appear in court to contest the charge. A citation is issued in lieu of an arrest and booking. "Violations" are a subset of "charges" for which a law enforcement officer is authorized to issue a citation in lieu of arrest and booking. Examples: traffic ticket, parking ticket or ticket issued for some other ordinance violation such as barking dog or illegal dumping. + + + + + + + + + + + + + A person named in a citation alleged to have violated a statute or ordinance + + + + + Information describing a motor vehicle. + + + + + The incident from which this traffic ticket arose. + + + + + A blood-alcohol percentage reading from a Blood Alcohol Test (BAC Test). A blank value represents not tested. + + + + + The name of a parking facility/lot.. + + + + + An identifier for a parking space or meter. + + + + + An identifier for a parking space or meter. + + + + + An indicator that a automated camera was used to detect traffic signal violations. + + + + + Information concerning whether an owner of a motor vehicle possesses proof of insurance coverage required by law. + + + + + Information concerning whether a driver of a motor vehicle possesses proof of insurance coverage required by law. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/casetype/ECF-4.0-CivilCase.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/casetype/ECF-4.0-CivilCase.xsd new file mode 100644 index 000000000..d9c27ccde --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/casetype/ECF-4.0-CivilCase.xsd @@ -0,0 +1,169 @@ + + + + + + CivilCase + + true + + + + + + + + + + + + + Information required to initiate a new civil case in a court. "Civil" includes conservatorships, guardianships, mental health and probate. + + + + + + + + + + + + + + + + + + + + + + + Information about a case administering and distributing the assets of a testate or intestate decedent. + + + + + + + + + + + + + + Information about a guardianship, conservatorship, trust, or mental health case. + + + + + + + + + + + + + Description of a person's relationship to the fiduciary (e.g., the initiating party). + + + + + + + + + + + + The amount set forth in an ad damnum clause in a complaint, counter claim, or cross complaint. + + + + + Whether the filer is requesting that this case proceed as a class action. + + + + + Information required to initiate a new civil case in a court. "Civil" includes conservatorships, guardianships, mental health and probate. + + + + + + + + Information about a case administering and distributing the assets of a testate or intestate decedent. + + + + + Information about a guardianship, conservatorship, trust, or mental health case. + + + + + Legal description of the role of the fiduciary. This is needed in addition to the Case Role Code (in the Review Filing message structure) because that code only defines the roles of other actors and other parties; the fiduciary per the specification is the initiating party. Examples: guardian, trustee, conservator of the person, conservator of the estate. + + true + + + + + + + The grounds for invoking the jurisdiction of a limited jurisdiction court. Allowed values set forth in Court policy. Not used in general jurisdiction courts. + + true + + + + + + Whether filer invokes the right to trial by jury. + + + + + Description of this person's relationship to the fiduciary (i.e., the initiating party). + + + + + Description of this person's relationship to the fiduciary (i.e., the initiating party). + + + + + Indicator of the type of relief requested in the case, e.g., damages, equitable relief (injunction). Allowable values defined in Court Policy. + + true + + + + + + Date on which the deceased person's will was filed in the court. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/casetype/ECF-4.0-CriminalCase.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/casetype/ECF-4.0-CriminalCase.xsd new file mode 100644 index 000000000..cf87a2b50 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/casetype/ECF-4.0-CriminalCase.xsd @@ -0,0 +1,205 @@ + + + + + + CriminalCase + + true + + + + + + + + + + + + + The crime or violation a defendant is alleged or found to have committed. + + + + + + + + + + + + + + Information required to initiate a new criminal case in a court. "Criminal" includes felonies and misdemeanors. + + + + + + + + + + + + + + + + + + + A representation or an encoding of the identifying characteristics of a person's fingerprint. + + + + + + + + + + + + A sentence associated with a specific charge in a case. A sentence may have multiple components (prison, probation, post-incarceration supervision/probation fine, etc.). + + + + + + + + + + + + + + Additional information about a defendant. + + + + + + + + + + + + + + + An agency which employs the arresting official. + + + + + + + + The act of taking physical control over the person of another by a law enforcement officer or other person acting under color of law. + + + + + The crime or violation a defendant is alleged or found to have committed. + + + + + An indicator that the charge submitted amends an earlier submitted charge. + + + + + An identifier of a section or category within a code book that promulgates jurisdiction for the charging agency. + + + + + The offense or incident which resulted in the charge. + + + + + Information required to initiate a new criminal case in a court. "Criminal" includes felonies and misdemeanors. + + + + + + + + Details about a representation of an image encoded for XML. + + + + + + + + Details about a representation of an image encoded for XML. + + + + + An indicator of whether or not a defendant or juvenile is held in a jail, prison, lock up or other facility. + + + + + The prosecutor's estimate of the time that will be required to conduct a preliminary hearing. + + + + + The bail amount recommended by the prosecutor. + + + + + A sentence associated with a specific charge in a case. A sentence may have multiple components (prison, probation, post-incarceration supervision/probation fine, etc.).. + + + + + Reference to another sentence which is to be served concurrent with this sentence. In the case of multiple sentences without references to concurrent sentences, they are assumed to be served consecutively. + + + + + The currency amount of a fine assigned to the defendant by the court. + + + + + The bail amount recommended by the prosecutor. + + + + + + + + Indicates whether an arrest warrant has been issued against the defendant. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/casetype/ECF-4.0-DomesticCase.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/casetype/ECF-4.0-DomesticCase.xsd new file mode 100644 index 000000000..51484e03d --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/casetype/ECF-4.0-DomesticCase.xsd @@ -0,0 +1,263 @@ + + + + + + DomesticCase + + true + + + + + + + + + + + + + Information required to initiate a new domestic case in a court. "Domestic" includes divorces, legal separations, annulment, child custody and visitation, paternity, child support, and domestic violence cases. + + + + + + + + + + + + + + + + + + + + + Information concerning a petition for child support. + + + + + + + + + + + + + A responsibility of a party in a case ordered by a court. + + + + + + + + + + + + Information concerning a court order in a domestic case. + + + + + + + + + + + + + + Information concerning a petition for domestic violence restraining or protective order. + + + + + + + + + + + + + + + + + + A financial responsibility of a party in a case ordered by a court. + + + + + + + + + + + + + + Information about a marriage, civil domestic union, or other domestic relationship defined by law. + + + + + + + + + + + + Whether a divorce is contested. + + + + + Description of temporary child support award that the court is being asked to order. + + + + + A description of the findings of the court. + + + + + Description of temporary custody award that court is being asked to include in the order. + + + + + Indicates if there is an ongoing divorce case. + + + + + Information concerning a petition for child support. + + + + + Information concerning a court order in a domestic case. + + + + + Category of order, including Establish, Modify, Enforce, Modify and Enforce, and Vacate. + + + + + Information required to initiate a new domestic case in a court. "Domestic" includes divorces, legal separations, annulment, child custody and visitation, paternity, child support, and domestic violence cases. + + + + + + + + Information about persons in a domestic case. + + + + + Information concerning a petition for domestic violence restraining or protective order + + + + + A responsibility of a party in a case ordered by a court. + + + + + A financial responsibility of a party in a case ordered by a court. + + + + + Text that extablishes jurisdiction to award custody in a case (e.g. addresses of petitioner and child for the last five years, identification of related and ongoing cases, the home state of the child, and who has current custody). + + + + + Information about a marriage, civil domestic union, or other domestic relationship defined by law. + + + + + Means of communication with initiating party that the court is being asked to prohibit. Allowed values to be set forth in Court Policy. + + true + + + + + + + Indicates whether the responsible party's income should be attached. + + + + + An amount owed each payment period. + + + + + Indicates whether the obligation will be collected and disbursed by a state agency. + + + + + Designation of place that abuser will be ordered to vacate. Allowable values to be set forth in Court Policy. + + true + + + + + + Open text designation of place that abuser will be ordered to vacate. This should contain a description of the place, and its location. + + + + + Whether the person against whom a proposed order would be entered should be considered a danger to others, including law enforcement officers responding to a domestic disturbance call. + + + + + Description of the distance abuser must maintain from abused person(s). + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/casetype/ECF-4.0-JuvenileCase.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/casetype/ECF-4.0-JuvenileCase.xsd new file mode 100644 index 000000000..e4a63aa71 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/casetype/ECF-4.0-JuvenileCase.xsd @@ -0,0 +1,268 @@ + + + + + + JuvenileCase + + true + + + + + + + + + + + + The statutory or ordinance section, the violation of which would constitute a crime if committed by an adult. May include a probation violation. + + + + + + + + + + + + + + + + The grounds for declaring a minor child to be a ward of the state because of the neglect or abuse of the minor child's parents or guardians. + + + + + + + + + + + + + Information about the juvenile's parent(s) or guardian(s). + + + + + + + + + + + + A delinquency or dependency case. + + + + + + + + + + + + + + + + + + + + A minor who is the subject of a delinquency or dependency case. + + + + + + + + + + + + + + + + Information about the person or organization orther than parent or guardian with whom the juvenile lives. Examples: Foster home, foster parents, state institution, hospital, shelter. + + + + + + + + + + + + + + An act or behavior that would not constitute a crime if committed by an adult, which will subject a juvenile to adjudication as a delinquent by a court. Examples include truancy and refusal to abide by a parent's orders or direction. + + + + + + + + + + + + Arrest of a minor for commission of an act subjecting the minor to adjudication as a delinquent. + + + + + An action or behavior of a juvenile that makes the juvenile potentially subject to adjudication by the juvenile court as a delinquent. The statutory or ordinance section, the violation of which would constitute a crime if committed by an adult. May include a probation violation. + + + + + Code designating the statutory or ordinance section, the violation of which would constitute a crime if committed by an adult. May include a probation violation. + + + + + Code identifying the level of the offense as defined in state law. Allowable values set forth in Court Policy. Example: Felony, Misdemeanor, Infraction, Ordinance Violation. + + true + + + + + + Code indicating the degree of an offense as defined in state law. Allowable values set forth in Court Policy. Examples: First Degree Murder, Felony Type A/B/C. + + true + + + + + + Code indicating the general category of the offense as set forth in state law. Allowable values set forth in Court Policy. Examples: Attempt, Conspiracy, Accessory before the fact, Accessory after the fact. + + true + + + + + + Code indicating the existence of a factor that, under state law, heightens the seriousness of the charge and would subject an adult to increase punishment. Allowable values set forth in Court Policy. Examples: Use of deadly weapon, use of gun. + + true + + + + + + The grounds for declaring a minor child to be a ward of the state because of the neglect or abuse of the minor child's parents or guardians. + + + + + A code identifying a specific ground sufficient in law for declaring the minor child a ward of the state. Allowable values set forth in Court Policy. + + true + + + + + + Legal term used to describe the ground on which the minor child can be declared a ward of the state. + + + + + Information about the juvenile's parent(s) or guardian(s). + + + + + A code describing the parent or guardian's relationship to the juvenile. Allowable values are set forth in court filing policy. Examples: Father, Mother, Guardian + + true + + + + + + + A delinquency or dependency case. + + + + + The minor who is the subject of this delinquency or dependency case. + + + + + Indicator whether a minor has been adjudicated an emancipated person by a court. + + + + + Information about the person or organization with whom the juvenile lives. + + + + + Information about the person or organization with whom the juvenile lives. + + + + + Code indicating the type of placement. Allowable values set forth in Court Policy. + + true + + + + + + Date on which the placement commenced. + + + + + An action or behavior of a juvenile that makes the juvenile potentially subject to adjudication by the juvenile court as a delinquent. but would not constitute a crime if committed by an adult. Examples include truancy and refusal to abide by a parent's orders or direction. + + + + + Code designating the statutory or ordinance section, the violation of which would not constitute a crime if committed by an adult (only if a juvenile). + + + + + Identifier assigned by the Immigration and Customs Enforcement Bureau of the U.S. Department of Homeland Security. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/common/ECF-4.0-AppInfo.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/common/ECF-4.0-AppInfo.xsd new file mode 100644 index 000000000..5b35ca67a --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/common/ECF-4.0-AppInfo.xsd @@ -0,0 +1,29 @@ + + + + + + ECF AppInfo + + + + References a genericode code list of acceptable values for an element. + + + + + + + + + + Indicates a code list to be defined in court policy. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/common/ECF-4.0-CommonTypes.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/common/ECF-4.0-CommonTypes.xsd new file mode 100644 index 000000000..aba9ce236 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/common/ECF-4.0-CommonTypes.xsd @@ -0,0 +1,935 @@ + + + + + + CommonTypes + + true + + + + + + + + + + + A name other than an official name used by a person or organization. + + + + + + + + + + + + + + + + A document or other piece of information filed by someone or something involved in a case. + + + + + + + + + + + + + The role played by an attorney in this case. + + + + + + + A reference to a person organization or property represented by an attorney. + + + + + + + + + Information about a case participant. + + + + + + + + + + + + + Additional information needed to initiate a court case. + + + + + + + + + + + + + + + + + + + + + The actor who performed the action as set forth in the docket entry. E.g. the person who filed the document. Does not include the name of the court clerk composing the docket entry. + + + + + + + + + + + + The actor on whose behalf the filing was submitted to the court as set forth in the docket entry.. + + + + + + + + + + + + Document descriptors (title, type description, etc.) for the Document. This is meant to include all the information about the document that is needed to index it into the Case Management System and enter it into the Document Management System. + + + + + + + + + + + + Details about an event on the court calendar. + + + + + + + + + + + + + + + + + + + + Information describing an attachment included within an ECF 4.0 base message. An attachment can be a binary file representing the document to be filed, an XML document, a digital signature, or other MIME file. + + + + + + + + + + + + Descriptors for a rendition of a Document. This is meant to include all the information about the document that is needed to enter it into the Document Management System. + + + + + + + + + + + + + + A rendition or version of a Document. + + + + + + + + + + + + + Information describing or constituting the signature on a document submitted to a court for filing. + + + + + + + + + + + + + Document descriptors (title, type description, etc.) for the Document. This is meant to include all the information about the document that is needed to index it into the Case Management System and enter it into the Document Management System. + + + + + + + + + + + + + + + + + + A Lead document that is the pleading, motion or order that is the main document in a Filing or a Connected Document. A Lead Document may have Connected Documents, which are "appendices" or "exhibits" that are intended for filing only in the context of the Lead Document. + + + + + + + + + + + + + The asynchronous message returned by the Filing Review MDE to the filing assembly MDE conveying information on the court's actions on the documents submitted for filing in the FilingReviewMessage. + + + + + + + + + + + + + + + + The base message for an electronic filing using ECF 4.0. + + + + + + + + + + + + The structure for the information needed to electronically serve other parties to the case. + + + + + + + + + + + + + + Representation of an error that occured when synchronously processing the message. + + + + + + + + + + + + + Status of the filing as determined by the system sending the callback. + + + + + + + + + + + + Details about a coverage by contract whereby one party agrees to indemnify or guarantee another against loss by a specified contingent event or peril. + + + + + + + + + + + + The relationship between two organizations. Example: subsidiary corporation. + + + + + + + + + + + + Additional information about an organization. + + + + + + + + + + + + + + Additional information about an organization. + + + + + + + + + + + + + A code for the type of relationship between two persons, between two organizations, or between a person and an organization in a case. Allowable values are set forth in Court Policy. Examples include parent/child, subsidiary corporation, and chief executive officer. + + + + + + + + + + + + Additional information about a person. + + + + + + + + + + + + + + + + A code for the type of relationship between two persons, between two organizations, or between a person and an organization in a case. Allowable values are set forth in Court Policy. Examples include parent/child, subsidiary corporation, and chief executive officer. + + + + + + + + + + + + Additional information about a person. + + + + + + + + + + + + A message returned synchronously as a response to a query. + + + + + + + + + + + + + + + A message returned synchronously as a response to a query. + + + + + + + + + + + + + + + Case or cases sharing characteristics, such as common parties or events, with this case. + + + + + + + + + + + + A document that has been reviewed through the clerk review process, and that potentially has been or will be reocrded in the court record system. + + + + + + + + + + + + + + A container for the data or information representating a signature. + + + + + + + + + + + + Additional information about a subject. + + + + + + + + + + + + + A name other than an official name used by a person or organization in this case. + + + + + An alternative name by which this person or organization is known. + + + + + A description of the type of the alternate name. Allowable values set forth in Court Policy. Examples: doing business as, formerly known as, also known as. + + true + + + + + + + An identifier that determines the attachment order in a set of related attachments. + + + + + Nature of the relationship between the current case and the related case. Allowable values to be set forth in Court Policy. + + true + + + + + + + Additional information needed to initiate a court case. + + + + + + + + An entry in the docket or register of actions for this case. + + + + + The abbreviated name of a case. + + + + + The classification used by a court to denote the type of case for purposes of statistical categorization, court record keeping, or case assignment. Allowable values set forth in Court Policy. + + true + + + + + + The role played by an attorney in this case. + + + + + Attorney representing a "other party" in this case. + + + + + Information about a case participant. + + + + + A code that describes the role played by a person or organization in a case. Allowed values are set forth in Court Policy. Examples: Lead attorney, guardian ad litem, friend of court, court appointed special advocate (CASA), caseworker, probation officer, bail bondsman, interested person, interested party, intervenor, heir, trustee or beneficiary (e.g., of a trust). + + true + + + + + + + A reference to a person or organization represented by an attorney. + + + + + + + + The legal ground on which the request for relief is based. Allowed values set forth in court policy. Example: the basis(es) for relief in a civil case; the grounds for divorce in a state that does not recognize no-fault divorce; grounds for entry of an order of protection in a domestic violence case. + + true + + + + + + A reference to an entry on the docket or register of actions that is a child of the current docket entry. + + + + + Indicates whether color is or is not relevant for the presentation of the document. + + + + + A document included in a Filing that supports the lead Document. This document is not separately entered on the docket or register of actions. + + + + + The actor who performed the action as set forth in the docket entry. E.g. the person who filed the document. Does not include the name of the court clerk composing the docket entry. + + + + + The pleading, motion or order that is the subject of this docket entry. + + + + + A reference to a pleading, motion or order that is the subject of this docket entry. + + + + + + + + Date of entry into the court record. + + + + + A code referring to the location in a court of the calendar event. Allowable values set forth in court policy. + + true + + + + + + A textual description of the location in a court of the calendar event. + + + + + The actor on whose behalf the filing was submitted to the court as set forth in the docket entry. + + + + + Code to categorize the docket entry. E.g. motion, hearing, complaint. Allowable values set forth in court policy. + + true + + + + + + A Lead document that is the pleading, motion or order that is the main document in a Filing or a Connected Document + + + + + Information describing an attachment included within an ECF 4.0 base message. An attachment can be a binary file representing the document to be filed, an XML document, a digital signature, or other MIME file. + + + + + The identifier from the court record system used to identify the document. This attribute is populated by the MDE/process that is authorized to create docket identifiers; the attribute will not be present before that creation takes place. For example, if the clerk review process creates docket identifiers, then this attribute will be present in the RecordDocketingMessage that goes to the court record MDE. However, if the court record process creates docket identifiers, then this attribute will not be present in the RecordDocketingMessage, but will be present in subsequent callbacks. This attribute will be absent in callbacks when the ReviewedDocument was rejected, either by clerk review or the court record system. + + + + + A hash of the document as it appears in the court record. This attribute will be populated by either the clerk review process or the court record system. If the latter, then it will be absent in the RecordDocketingMessage. It will also be absent in callbacks for rejected documents. + + + + + Document descriptors (title, type description, etc.) for the Document. This is meant to include all the information about the document that is needed to index it into the Case Management System and enter it into the Document Management System. + + + + + Descriptors for a rendition of a Document. This is meant to include all the information about the document that is needed to enter it into the Document Management System. + + + + + A rendition or version of a document. + + + + + Information describing or constituting the signature on a document submitted to a court for filing. + + + + + Information provided by the filing assembly MDE to the court identifying a person or organization for purposes of being served electronically with a copy of a document. + + + + + A code for the type of relationship between two persons, between two organizations, or between a person and an organization in a case. Allowable values are set forth in Court Policy. Examples include parent/child, subsidiary corporation, and chief executive officer. + + true + + + + + + + + + A property capable of bearing legal rights and responsibilities. + + + + + A property capable of bearing legal rights and responsibilities. + + + + + + + + + + + + An organization capable of bearing legal rights and responsibilities. + + + + + + + + A person capable of bearing legal rights and responsibilities. + + + + + Representation of an error that occured when synchronously processing the message. + + + + + A code that uniquely identifies an error. A value of '0' indicates no error. Other allowable values set forth in court policy. + + true + + + + + + + A more "user friendly" description of the error. + + + + + ID recognized by the court as being unique within this case,and used to identify the attorney who is filing this document. Not present for pro se litigants. + + + + + The date and time on which the Court Record MDE filing process was completed following the acceptance by the Filing Review MDE + + + + + ID recognized by the court as being unique within this case,and used to identify the party on whose behalf this document is being filed. + + + + + Status of the filing as determined by the system sending the callback. + + + + + Status of the filing as determined by the system sending the callback. Allowable values defined in ECF-4.0-FilingStatusCode.gc. + + + + + + + + Indicates whether the respondent has demonstrated a proof of insurance. + + + + + The relationship between two organizations. Example: subsidiary corporation. + + + + + Additional information about an organization. + + + + + Only present for supporting documents; indicates the identifier of the corresponding lead document. + + + + + + + + The relationship of a person to another person in a case. Allowable values set forth in Court Policy.. + + + + + Additional information about a person. + + + + + Information about a license issued by a state or federal entity authorizing operation of a motor vehicle on public streets and highways. + + + + + Details about a coverage by contract whereby one party agrees to indemnify or guarantee another against loss by a specified contingent event or peril. + + + + + The relationship between two organizations. Example: subsidiary corporation. + + + + + Person's organizational position or title. + + + + + An identifier of a related document that was previously filed in this case. For instance, the document to which this document is a response. + + + + + An entity that submits a query. + + + + + Indicator by the filer that the document must be redacted by the court. + + + + + An indicator that sensitive information has been removed from this rendition of the document. + + + + + Case or cases sharing characteristics, such as common parties or events, with this case. + + + + + Location for the MDE to which service messages can be sent. + + + + + Code identifying the service interaction profile being used by the MDE receiving service. + + + + + This association will be present for a lead document that is reviewed by clerk review. For documents that were rejected by the clerk review process or the court record system, only the documentStatusCode, originalDocumentID, and (optionally) the documentStatusReasonDescription will be present. For documents that were accepted and recorded, all attributes will be present, except for documentStatusReasonDescription, which may or may not be present. + + + + + This association will be present for each connected document that is reviewed by clerk review. For documents that were rejected by the clerk review process or the court record system, only the documentStatusCode, originalDocumentID, and (optionally) the documentStatusReasonDescription will be present. For documents that were accepted and recorded, all attributes will be present, except for documentStatusReasonDescription, which may or may not be present. + + + + + Clerk's instruction to court record system to seal this document. + + + + + Location for the MDE to which asynchronous and service messages can be sent. This unique location is self-assigned by the MDE. + + + + + Code identifying the service interaction profile being used by the sending filing assembly MDE. This list should be extensible to accommodate future messaging profiles. Each code value is specified within the message profile approved for use with ECF 4.0. + + + + + A unique identifier assigned by the filing assembly MDE for the person who is managing the interface between the filer and the filing assembly MDE. This person will receive secondary service on behalf of the filer. This is also the submitterID for filings in this case, and asynchronous responses to filings. + + + + + The data or information representing this signature. It must be valid according to the profile identified by the associated signatureProfileID. + + + + + An identifier from the Court Filing specification that indicates the Signature Profile governing the structure of this signature. + + + + + Any additional instructions for printing of a document (such as printing on front and back of the same page or printing on a particular color paper). + + + + + ID assigned by the Immigration and Customs Enforcement Bureau of the U.S. Department of Homeland Security. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/common/genericode.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/common/genericode.xsd new file mode 100644 index 000000000..04d58a4bf --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/common/genericode.xsd @@ -0,0 +1,1037 @@ + + + + + + + + Details of an agency which produces code lists or related artifacts. + + + + + Short name (without whitespace) for the agency. + + + + + Human-readable name for the agency. + + + + + Identifier for the agency. + + + + + + + User annotation information. + + + + + Human-readable information. + + + + + Machine-readable information. + + + + + + + Container for any XML content which is in a different namespace to the Schema's target namespace. + + + + + + + + Container for any human-readable XML content which is in a different namespace to the Schema's target namespace. + + + + + + Language for the human-readable XML content. + + + + + + + + Top-level (root) element for a genericode code list definition. +A code list definition defines the details of a particular (version of a) code list. + + + + + Document type for genericode code list definitions. + A code list must have at least one key, unless it is a metadata-only definition without a 'SimpleCodeList' element. + + + + + General information (metadata) for the code list. + + + + + A choice between a column set definition and a column set reference. + + + + + The only choice is a simple (explicit) code list definition. +Not used if the code list definition contains code list metadata only. + + + + + + Base URL which applies to relative location URIs. + xml:base does not apply to canonical URIs. + + + + + + Reference to a code list, possibly defined in an external document. + The code list reference must be valid. +An application may use the CanonicalVersionUri to select a local copy of the code list. +If there is no CanonicalVersionUri, the CanonicalUri may be used to select a local copy of the code list. +Otherwise the LocationUri value(s) may be tried in order, until a valid code list document is retrieved. +An application must signal an error to the user if it is not able to retrieve a code list document to match the code list reference. + + + + + User annotation for the referenced code list. + + + + + Canonical URI which uniquely identifies all versions (collectively) of the referenced code list. + Must be an absolute URI, must not be relative. + Must not be used as a de facto location URI. + + + + + Canonical URI which uniquely identifies a specific version of the referenced code list. + Must be an absolute URI, must not be relative. + Must not be used as a de facto location URI. + + + + + Suggested retrieval location for this code list, in genericode format. + + If the CanonicalVersionUri has been defined, the LocationUri must reference a genericode CodeList document. +If the CanonicalVersionUri is undefined, the LocationUri must reference a genericode CodeList Metadata document. +An application must signal an error to the user if a LocationUri does not reference the appropriate type of genericode document. + + An application must signal an error to the user if a document retrieved using a LocationUri is not in genericode format. + + + + + + Base URL which applies to relative location URIs. + xml:base does not apply to canonical URIs. + + + + + + Top-level element for the definition of a code list set. + + + + + Document type for the definition of a set of code lists. + + + + + General document information for the code list set. + + + + + Contents of the code list set. If the code list set does not have any contents, it is a CodeListSet Metadata definition. + + + + + + Base URL which applies to relative location URIs. + xml:base does not apply to canonical URIs. + + + + + + A choice between a code list reference, an inline code list set, or a code list set reference. + + + + + + + + + + Reference to a code list set, possibly defined in an external document. + The code list set reference must be valid. +An application may use the CanonicalVersionUri to select a local copy of the code list set. +If there is no CanonicalVersionUri, the CanonicalUri may be used to select a local copy of the code list set. +Otherwise the LocationUri value(s) may be tried in order, until a valid code list set document is retrieved. +An application must signal an error to the user if it is not able to retrieve a code list set document to match the code list set reference. + + + + + User annotation for the referenced code list set. + + + + + Canonical URI which uniquely identifies all versions (collectively) of the referenced code list set. + Must be an absolute URI, must not be relative. + Must not be used as a de facto location URI. + + + + + Canonical URI which uniquely identifies a specific version of the referenced code list set. + Must be an absolute URI, must not be relative. + Must not be used as a de facto location URI. + + + + + Suggested retrieval location for this code list set, in genericode format. + + If the CanonicalVersionUri has been defined, the LocationUri must reference a genericode CodeListSet document. +If the CanonicalVersionUri is undefined, the LocationUri must reference a genericode CodeListSet Metadata document. +An application must signal an error to the user if a LocationUri does not reference the appropriate type of genericode document. + + An application must signal an error to the user if a document retrieved using a LocationUri is not in genericode format. + + + + + + Base URL which applies to relative location URIs. + xml:base does not apply to canonical URIs. + + + + + + Definition of a column. + Each column of a code list defines a piece of metadata that can be specified for each item in the code list. + + + + + User information about the column. + + + + + Name(s) of the column. + + + + + URIs used to identify the column and/or the version of the column. + + + + + Data type of the column. + + + + + + ID which identifies the column within the document. + + + + + Whether the column is required or optional. + + + + + + A choice between a column definition and a column reference. + + + + + Definition of a column. + + + + + Reference to a column defined in an external column set or code list. + + + + + + + Reference to a column defined in an external column set or code list. + The column reference must be valid. +An application may use the CanonicalVersionUri to select a local copy of the code list or column set which contains the column definition. +Otherwise the LocationUri value(s) may be tried in order, until a valid code list or column set document (containing the necessary column definition) is retrieved. +An application must signal an error to the user if it is not able to retrieve a code list or column set document which contains the necessary column definition. + + + + + User annotation for the referenced column. + + + + + Identification of the external column set or code list document which contains the column set definition. + + + + + Restrictions to the data type of the referenced column. + + + + + + ID which identifies the column within this document. + + + + + ID which identifies which identifies the column within the external column set or code list. + + + + + Whether the column is required or optional. + If specified, this overrides the usage specified in the external column set or code list document. + + + + + Base URL which applies to relative location URIs. + xml:base does not apply to canonical URIs. + + + + + + Attribute set for referring to a column definition. + + + + Reference to a column ID in the document. + + + + + + Top-level element for the definition of a column set. + + + + + Definition of a column set (columns and keys for a code list). + + + + Column set definitions. + + + + + Identification of the default datatype library for the column set. + + + + + Base URL which applies to relative location URIs. + xml:base does not apply to canonical URIs. + + + + + + A choice between a column set definition and a column set reference. + + + + + Definition of a column set (columns and keys for the code list). + + + + + Reference to a column set defined in an external column set or code list document. + + + + + + + Specific details of a column set. + + + + + A choice between a column definition and a column reference. + + + + + A choice between a key definition and a key reference. + + + + + + + Document type for the definition of a column set, which is a set of code list columns and/or keys. + + + + + General document information for the column set. + + + + + Details of the column set. + + + + + + Identification of the default datatype library for the column set. + + + + + Base URL which applies to relative location URIs. + xml:base does not apply to canonical URIs. + + + + + + Reference to a column set defined in an external column set or code list document. + The column set reference must be valid. +An application may use the CanonicalVersionUri to select a local copy of the column set or code list. +Otherwise the LocationUri value(s) may be tried in order, until a valid column set or code list document is retrieved. +An application must signal an error to the user if it is not able to retrieve a column set or code list document to match the column set reference. + + + + + User annotation for the referenced column set. + + + + + Identification of the external column set or code list document which contains the column set definition. + + + + + + Base URL which applies to relative location URIs. + xml:base does not apply to canonical URIs. + + + + + + Data type definition. + + + + + User annotation for the datatype. + + + + + Facet parameter which refines the datatype. + + + + + + Unique ID for the datatype within its datatype library. + The datatype ID must not include a namespace prefix. +For the W3C XML Schema datatypes, possible datatype IDs are 'string', 'token', 'boolean', 'decimal', etc. + If the data is complex (i.e. XML), this value is set to the root element name for the XML value, or '*' if the root element name is not restricted. + + + + + URI which uniquely identifies the datatype library. + If this URI not explicitly provided, the datatype library for the enclosing column set is used. + If the data is complex (i.e. XML), this value is set to the namespace URI for the XML, or '*' if the namespace URI is not restricted. + + + + + Language from which the data is taken or derived. + + + + + + Restrictions to a data type. + The 'gc:lang' attribute may be specified only if no language is already set for the data type that is being restricted. + + + + + Facet parameter which refines the datatype. + + + + + + Language from which the data is taken or derived. + + + + + + Facet information for refining a datatype. + + + + + + Short name (token) for the datatype facet. + + + + + Long name for the datatype facet. + + + + + + + + Identification of the default datatype library for a column set. + + + + URI which uniquely identifies the default datatype library for the column set. If not provided, defaults to the URI for W3C XML Schema datatypes. + + + + + + General document information (metadata). + + + + + User annotation information. + + + + + Identification and location information (metadata). + + + + + + + Attribute set used to identify a definition within an external document. + + + + Unique ID within the external document. + The external reference must not be prefixed with a '#' symbol. + + + + + + An identifier value. Typically not a long or short name. + + + + + + + + + + Attribute set used to identify a definition within the document. + + + + Unique ID within the document. + + + + + + Identification and location information (metadata). + + + + + Various names. + + + + + Version identifier. + + + + + Canonical URI which uniquely identifies all versions (collectively). + Must be an absolute URI, must not be relative. + Must not be used as a de facto location URI. + + + + + Identification and location URIs for the version. + + + + + Agency that is responsible for publication and/or maintenance of the information. + + + + + + + Identification and location URIs. + + + + + Canonical URI which serves as a unique identifier for this version. + Must be an absolute URI, must not be relative. + Must not be used as a de facto location URI. + + + + + Suggested retrieval location for this version, in genericode format. + An application must signal an error to the user if a document retrieved using a LocationUri is not in genericode format. + + + + + + + URIs used as unique identifiers. + + + + + Canonical URI which uniquely identifies all versions collectively. + Must be an absolute URI, must not be relative. + Must not be used as a de facto location URI. + + + + + Canonical URI which uniquely identifies this version. + Must be an absolute URI, must not be relative. + Must not be used as a de facto location URI. + + + + + + + Definition of a key. +A key is a set of one or more columns whose values together provide a unique identification of each item in a code list. + Only required columns can be used for keys. + + + + + User annotation for the key. + + + + + Name(s) of the key. + + + + + URIs used to identify the key and/or the version of the key. + + + + + Reference to the document ID of a column in the key. + + + + + + ID which identifies the key within the document. + + + + + + A choice between a key definition and a key reference. + + + + + Definition of a key. + + + + + Reference to a key defined in an external column set or code list. + + + + + + + Reference to a column which forms part of a key. + + + + + User annotation for the column. + + + + + + Reference to the ID of the column within the document. + + + + + + Reference to a key defined in an external column set or code list. + The key reference must be valid. +An application may use the CanonicalVersionUri to select a local copy of the code list or column set which contains the key definition. +Otherwise the LocationUri value(s) may be tried in order, until a valid code list or column set document (containing the necessary key definition) is retrieved. +An application must signal an error to the user if it is not able to retrieve a code list or column set document which contains the necessary key definition. + + + + + User annotation for the referenced key. + + + + + Identification of the external column set or code list which contains the key definition. + + + + + + ID which identifies the key within this document. + + + + + ID which identifies which identifies the key within the external column set or code list. + + + + + Base URL which applies to relative location URIs. + xml:base does not apply to canonical URIs. + + + + + + Attributes which describe the language of a piece of text. + + + + Language code which accepts the same values as 'xml:lang'. +Unlike 'xml:lang', the scope of the language definition is not restricted to the XML content within the element where the 'lang' attribute appears. + + + + + + A human-readable name. + + + + + + Information used to identify a particular long name where multiple long names exist. + + + + + + + + URI for a resource, with support for specifying the MIME type. + + + + + + MIME type of the resource which can be retrieved from the URI. + + + + + + + + Various names. + + + + + Short name (without whitespace). + + + + + Human-readable name. + + + + + + + Attribute set which defines the usage (optional attribute). + + + + Whether the usage is required or optional. + + + + + + A choice which currently only allows a simple (explicit) code list definition. + + + + + Details of a simple code list definition. + + + + + + + Attribute set which defines the usage (required attribute). + + + + Whether the usage is required or optional. + + + + + + Row which represents an individual item in a code list. + + + + + User annotation for the row. + + + + + Column value for the row. + A value must be provided for each required column. +A value does not need to be provided for a column if the column is optional. + If a value does not have an explicit column reference, the column is taken to be the column following the column of the preceding value in the row, or the first column if the value is the first value of the row. + + + + + + + A short name without whitespace that is suitable for use in generating names for software artifacts. + Must not contain whitespace characters. + + + + + + The language from which the short name is taken or derived. + + + + + + + + Simple (explicit) code list definition. + Applications must not have any dependency on the ordering of the rows. + + + + + User annotation for the code list. + + + + + Row which represents an individual item in the code list. + + + + + + + Details of a simple code list definition. + + + + + Simple (explicit) code list definition. + + + + + + + Simple textual value. + + + + + + + + Indicates whether the usage is required or optional. + + + + + + + + + An individual code list metadata value. + + + + + User annotation for the value. + + + + + A choice between a simple textual value and a complex (structured) XML value. If the value is undefined, then neither choice is used. + + + + + + Reference to the column with which this value is associated. + + + + + + A choice between a simple textual value and a complex (structured) XML value. + + + + + Simple textual value. + The value must be valid with respect to the datatype and restrictions of the matching column. + + + + + Complex (structured) XML value. + The names of all direct child elements of the 'ComplexValue' element must match the datatype ID for the matching column, unless that ID is set to '*'. + The namespace URIs of all direct child elements of the 'ComplexValue' element must match the datatype library URI for the matching column, unless that URI is set to '*'. + + + + + + + Information which identifies one of a set of alternate values. + + + + A string which identifies one of a set of alternate values. + + + + + The language from which the value is taken or derived. + + + + + + Identification and location URIs for a version. + + + + + Canonical URI which uniquely identifies this version. + Must be an absolute URI, must not be relative. + Must not be used as a de facto location URI. + + + + + Suggested retrieval location for this version, in genericode format. + An application must signal an error to the user if a document retrieved using a LocationUri is not in genericode format. + + + + + Suggested retrieval location for this version, in a non-genericode format. +Such alternative formats are intended only as additional renditions of the code list information, not as a replacements nor as alternatives for use in application processing. + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/common/xmldsig-core-schema.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/common/xmldsig-core-schema.xsd new file mode 100644 index 000000000..8fc354bac --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/common/xmldsig-core-schema.xsd @@ -0,0 +1,326 @@ + + + + + + + + ]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/ansi-nist/2.0/ansi-nist.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/ansi-nist/2.0/ansi-nist.xsd new file mode 100644 index 000000000..2807de3ac --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/ansi-nist/2.0/ansi-nist.xsd @@ -0,0 +1,126 @@ + + + + ANSI/NIST Fingerprint and Biometric standard. + + true + + + + + + + + + Plain left thumb + + + + + Left little + + + + + Right thumb + + + + + Unused field value in record types 3-6 + + + + + Plain right four + + + + + Right middle + + + + + Left and right thumbs + + + + + Right index + + + + + Left ring + + + + + Left middle + + + + + Right little + + + + + Complete friction ridge exemplars + + + + + Left index + + + + + Plain right thumb + + + + + Plain left four + + + + + Unknown, or every finger 1-10 + + + + + Left thumb + + + + + Right ring + + + + + + + + + + + + + + + + + + + + + + + Set of possible finger position codes, most probable position first. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/ansi-nist/2.0/constraint-schema-transform.xsl b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/ansi-nist/2.0/constraint-schema-transform.xsl new file mode 100644 index 000000000..e7d714a92 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/ansi-nist/2.0/constraint-schema-transform.xsl @@ -0,0 +1,166 @@ + + + + +0 +1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/ansi_d20/2.0/ansi_d20.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/ansi_d20/2.0/ansi_d20.xsd new file mode 100644 index 000000000..956132333 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/ansi_d20/2.0/ansi_d20.xsd @@ -0,0 +1,180 @@ + + + + Motor vehicle administration codes from ANSI D20, the Data Dictionary for Traffic Record Systems, maintained by AAMVA, the American Association of Motor Vehicle Administrators. + + true + + + + + + + + + Non-incapacitating Evident Injury + + + + + Incapacitating Injury Accident + + + + + Unknown + + + + + Non-injury Accident + + + + + Possible Injury Accident + + + + + Fatal Accident + + + + + + + + + + + + + + + + Class "M" vehicles - Motorcycles, Mopeds, Motor-driven Cycles. + + + + + Class "B" vehicles - any single vehicle with a GVWR of 26,001 or more pounds, or any such vehicle towing a vehicle not in excess of 10,000 pounds GVWR [49 CFR 383.91(a)(2)]. (Holders of a Class B license may, with the appropriate endorsement, operate all Class C vehicles). + + + + + Class "C" vehicles - any single vehicle, or combination of vehicles, that meets neither the definition of Group A nor that of Group B, but that either is designed to transport 16 or more passengers including the driver, or is used in the transportation of materials found to be hazardous for the purposes of the Hazardous Materials Transportation Act and which require the motor vehicle to be placarded under the Hazardous Materials Regulations (49 CFR part 172, subpart F) [49 CFR 383.91(a)(3)]. + + + + + Class "A" vehicles - any combination of vehicles with a GCWR of 26,001 or more pounds, provided the GVWR of the vehicle(s) being towed is in excess of 10,000 pounds [49 CFR 383.91(a)(1)]. (Holders of a Class A license may, with the appropriate endorsement, operate all Class B & C vehicles). + + + + + + + + + + + + + + + + Other + + + + + Limited - other + + + + + Farm Waiver + + + + + Vehicles without Air Brakes + + + + + Mechanical Aid + + + + + Except Tractor-Trailer + + + + + Corrective lenses must be worn + + + + + CDL Intrastate Only + + + + + Outside Mirror + + + + + Automatic Transmission + + + + + Prosthetic Aid + + + + + Limit to Daylight Only + + + + + + + + + + + + + + + + Hazardous Materials + + + + + Unknown + + + + + No Hazardous Materials + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/ansi_d20/2.0/constraint-schema-transform.xsl b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/ansi_d20/2.0/constraint-schema-transform.xsl new file mode 100644 index 000000000..7bfe2b84f --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/ansi_d20/2.0/constraint-schema-transform.xsl @@ -0,0 +1,181 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/appinfo/2.0/appinfo.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/appinfo/2.0/appinfo.xsd new file mode 100644 index 000000000..f77641454 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/appinfo/2.0/appinfo.xsd @@ -0,0 +1,95 @@ + + + + + The appinfo schema provides support for high level + data model concepts and additional syntax to support the NIEM + conceptual model and validation of NIEM-conformant + instances. + + + + The Resource element provides a method for + application information to define a name within a schema, without the + name being bound to a schema component. This is used by the + structures schema to define names for structures:Object and + structures:Association. + + + + + + + + The Deprecated element provides a method for + identifying components as being deprecated. A deprecated component is + one which is provided, but whose use is not + recommended. + + + + + + + + + + + + + + The Base element provides a mechanism for + indicating base types and base elements in schema, for the cases in + which XML Schema mechanisms are insufficient. For example, it is used + to indicate Object or Association bases. + + + + + + + + + The ReferenceTarget element indicates a NIEM type + which may be a target (that is, a destination) of a NIEM reference + element. It may be used in combinations to indicate a set of valid + types. + + + + + + + + + The AppliesTo element is used in two ways. First, + it indicates the set of types to which a metadata type may be + applied. Second, it indicates the set of types to which an + augmentation element may be applied. + + + + + + + + + The ConformantIndicator element may be used in two + ways. First, it is included as application information for a schema + document element to indicate that the schema is NIEM-conformant. + Second, it is used as application information of a namespace import + to indicate that the schema is not + NIEM-conformant. + + + + + The ExternalAdapterTypeIndicator element indicates + that a complex type is an external adapter type. Such a type is one + that is composed of elements and attributes from non-NIEM-conformant + schemas. The indicator allows schema processors to switch to + alternative processing modes when processing NIEM-conformant versus + non-NIEM-conformant content. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/domains/jxdm/4.0/constraint-schema-transform.xsl b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/domains/jxdm/4.0/constraint-schema-transform.xsl new file mode 100644 index 000000000..2a6796773 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/domains/jxdm/4.0/constraint-schema-transform.xsl @@ -0,0 +1,708 @@ + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + unbounded + + + + + 0 + 1 + + + + + 0 + unbounded + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + unbounded + + + + + 1 + 1 + + + + + 0 + unbounded + + + + + 0 + unbounded + + + + + 0 + unbounded + + + + + 0 + unbounded + + + + + 0 + 1 + + + + + 0 + unbounded + + + + + 0 + unbounded + + + + + 0 + unbounded + + + + + 0 + unbounded + + + + + 0 + unbounded + + + + + 0 + unbounded + + + + + 0 + unbounded + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + unbounded + + + + + 0 + unbounded + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 1 + 1 + + + + + 1 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 1 + unbounded + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + unbounded + + + + + 0 + 1 + + + + + 0 + unbounded + + + + + 0 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/domains/jxdm/4.0/jxdm.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/domains/jxdm/4.0/jxdm.xsd new file mode 100644 index 000000000..894247e3c --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/domains/jxdm/4.0/jxdm.xsd @@ -0,0 +1,1056 @@ + + + + Justice + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + An association between an activity and a location. + + + + + Details about a single case heard by the Court of Appeals (Intermediate Court of Appeal) or Supreme Court (The Court of Last Resort). This case does not retry the original case but determines whether the original case was tried properly and the defendant received a fair trial. + + + + + A request filed with an appellate court to start an appellate case. + + + + + A statement explaining the reason for an appeal. + + + + + An original case that is being retried in an appellate court. + + + + + Details about the apprehension of a subject by a peace official based on an observed or a reported violation of a law or ordinance, an outstanding arrest warrant, or probable cause information. + + + + + An agency which employs the arresting official. + + + + + A records management system number of the originating case agency for an arrest. + + + + + A bail amount on a schedule recommended according to the offense(s). + + + + + A blood-alcohol percentage reading from a Blood Alcohol Test (BAC Test). + + + + + A formal allegation of a violation of a statute and/or ordinance in association with an arrest. + + + + + A location where a subject was arrested. + + + + + A peace official who makes an arrest. + + + + + A person who is arrested. + + + + + A court authorized order which commands a peace official to arrest a subject and bring that subject before the court. + + + + + Details about an administrative step taken after an arrested subject is brought to a police station or detention facility, which involves entry of the subject's name and other relevant facts on the police "blotter", and which may also include photographing, fingerprinting, and the like. + + + + + A booking identifier of the originating case agency. + + + + + Additional information about a case. + + + + + + + + A charge or accusation a person is being tried for in a court of law. + + + + + A court of law in which the case is being tried. + + + + + A court occurrence. + + + + + An entity being charged or sued in a court of law. + + + + + An attorney who defends a case. + + + + + The attorney in a court case representing the party that filed a petition for a court order or writ requiring the respondent to take some action, halt an activity or obey a courts direction. Representative of the party seeking action from the court. In such matters the moving party (the one filing the petition) is often called the "petitioner." The attorney representing a person requesting for filing a Request or Petition for Protection filed by a petitioner. + + + + + An entity that brings charges or a suit against another in a court of law. Can be either a victim in a criminal case or a plaintiff in a civil case. + + + + + A judicial official assigned to a case. + + + + + A description of a case at a previous stage. + + + + + Details about a justice official's involvement in a court case. + + + + + A unique identifier a justice official uses to identify a case. + + + + + A role a justice official played in a court case. + + + + + A miscellaneous entity involved in a court case. + + + + + An attorney who prosecutes a case. + + + + + The attorney in a court case representing the party that is required to answer a petition for a court order or writ requiring the respondent to take some action, halt an activity or obey a courts direction. In such matters the moving party (the one filing the petition) is often called the "petitioner." Thus, the respondent is equivalent to a defendant in a lawsuit. On an appeal, the party who must respond to an appeal by the losing party in the trial court (called "appellant") in the appeals court. The accused in a domestic violence case or civil action; a person responding to a Request or Petition for Protection filed by a petitioner. + + + + + An entity in a court case that is required to answer a petition for a court order or writ requiring the respondent to take some action, halt an activity or obey a courts direction. In such matters the moving party (the one filing the petition) is usually called the petitioner. Thus, the respondent is equivalent to a defendant in a lawsuit. On an appeal, the party who must respond to an appeal by the losing party in the trial court (called appellant) in the appeals court. The accused in a domestic violence case or civil action; a person responding to a Request or Petition for Protection filed by a petitioner. + + + + + Details about a formal allegation that a specific person has committed a specific offense. + + + + + + + + Details about a formal allegation that a specific person has committed a specific offense. + + + + + A degree of involvement a person is being charged with committing in an offense. + + + + + A degree of a charge. + + + + + A plain language description of a charge. + + + + + Details about the results or processing of a charge. + + + + + A formal allegation, contained in at least one charging instrument, that a defendant has violated a statute and/or ordinance in association with an incident. + + + + + An offense within the National Crime Information Center (NCIC) system. + + + + + Additional information that clarifies a charge. + + + + + A sequentially assigned number for charge tracking purposes.. + + + + + A severity level of a charge. + + + + + A factor that has enhanced a charge, making it a more serious offense. + + + + + A unique identifier of a law, rule, or ordinance within a jurisdiction that a person is accused of violating. + + + + + Details about an official summons to appear in court or pay a fine given to a subject from a peace official due to a subjects violation or infraction of a law. + + + + + An organization for whom the citation issuing official is employed. + + + + + True if a citation can be dismissed if certain conditions are met; false otherwise. + + + + + A peace official who gives a citation to a subject. + + + + + A person who violates a law and receives a citation. + + + + + An activity that is a violation of a law or ordinance that results in a subject being given a citation. + + + + + Details about a court or a unit of a court responsible for trying justice proceedings. + + + + + + + + Details about an appearance required of a party in a court of law on a certain date. + + + + + A date on which a party must appear in court. + + + + + Details about a court occurrence. + + + + + A judge associated with a court event. + + + + + Details about the days for which a court event is scheduled. + + + + + A unique identifier for a court case event record. + + + + + A name of a unit of a court. + + + + + Details about a direction of a judge not included in a judgement, which determines some point or directs some step in proceedings. + + + + + A state of a court order. + + + + + An association between a document and a court. + + + + + A severity level of an accident, based on the most intense injury to any person or, if none were injured, so designating. + + + + + A severity level of an accident, based on the most intense injury to any person or, if none were injured, so designating. + + + + + + + + Details about an incident involving a vehicle. + + + + + A determination of whether the incident occurred while the driver was operating a commercial vehicle that was carrying hazardous materials (that required a placard). + + + + + A determination of whether the incident occurred while the driver was operating a commercial vehicle that was carrying hazardous materials (that required a placard). + + + + + + + + True if a laser was involved in the detection of an incident; false otherwise. + + + + + A legally designated speed limit in the area where an incident occurred. + + + + + A number of people in a vehicle excluding the driver when an incident occurred. + + + + + True if radar was involved in the detection of an incident; false otherwise. + + + + + A speed a vehicle was moving at when an incident occurred. + + + + + A federal or state organization with jurisdiction over a person's driving privileges. + + + + + + + + An identifier used to refer to an enforcement official. + + + + + Dates and times an enforcement official is unavailable for scheduling. + + + + + An enforcement unit to which an enforcement officer is assigned. + + + + + A name of an enforcement unit. + + + + + An area, region, or unit in which a unique identification is issued. + + + + + + + + Additional information about an incident. + + + + + + + + A property item that was damaged in an incident. + + + + + + + + True if an official was present when an incident occurred; false otherwise. + + + + + True if an incident involved a traffic accident; false otherwise. + + + + + An identifier assigned to a judicial official after meeting the requirement to practice law in a region. + + + + + Details about a legal capacity in which a judicial official is able to practice law. + + + + + An act or a course of action which may constitute a violation of a criminal statute, ordinance or rule that occurred during an incident. + + + + + Additional information about an organization. + + + + + + + + A unique identifier assigned to a justice-related organization by the federal government. + + + + + A number issued by an agency's automatic fingerprint system based on submitted fingerprints other than PersonFBIID and PersonSSID. + + + + + Additional information about a person. + + + + + + + + An association between a person and a charge issued to that person. + + + + + An association between a person and a driver license. + + + + + A number issued by the FBI's Automated Fingerprint Identification System (AFIS) based on submitted fingerprints. + + + + + A representation or an encoding of the identifying characteristics of a person's palm print. + + + + + A number issued by a state Automated Fingerprint Identification System (AFIS) based on submitted fingerprints. + + + + + Additional information about a property item. + + + + + + + + A monetary value or worth of damage that occurred to a property item. + + + + + A description of something that happened in a case in a register of actions entry. + + + + + Identification information identifying a person as a certain kind of registered offender. + + + + + A person who is required to register as a sexual offender. + + + + + Details about a punishment resulting from conviction of charges in a court case. + + + + + A specific charge in a court case resulting in a sentence. + + + + + A description of the sentence being imposed. + + + + + A duration of a sentence. Specified as either a specific term in days-months-years or as a minimum - maximum range. + + + + + A narrative account of a severity level assigned to a charge. + + + + + A unique identifier of a Severity Level. + + + + + Details about a unique identifier of a law, rule, or ordinance within a jurisdiction. + + + + + + + + Details about a unique identifier of a law, rule, or ordinance within a jurisdiction. + + + + + An identifier of a set of laws for a particular jurisdiction. + + + + + An identifier of a section or category within a code book. + + + + + A description of a statute. + + + + + Details about an area in which a statute applies. + + + + + A level of crime a statute applies to. + + + + + An identification of a criminal offense within a code book. + + + + + A person who is involved or suspected of being involved in an incident or criminal activity. + + + + + + + + A person who is involved or suspected of being involved in an incident or criminal activity. + + + + + An assigned number or string that identifies a subject. + + + + + An incarceration, detention, or other form of supervision a subject is currently undergoing. + + + + + Details about a duration length specified as either a specific term in days-months-years or as a minimum - maximum range. + + + + + A specific range or duration of a term. + + + + + Details about a person, organization, or other entity who suffers injury, loss, or death as a result of an incident. + + + + + + + + Details about a statute that has been violated and associated information. + + + + + A limitation placed on the extradition of a subject from an area outside the immediate jurisdiction of the issuing court. + + + + + A kind of limitation placed on the extradition of a subject from an area outside the immediate jurisdiction of the issuing court. + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/domains/screening/2.0/constraint-schema-transform.xsl b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/domains/screening/2.0/constraint-schema-transform.xsl new file mode 100644 index 000000000..5c57beff6 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/domains/screening/2.0/constraint-schema-transform.xsl @@ -0,0 +1,118 @@ + + + + +0 +unbounded + + + + +0 +unbounded + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/domains/screening/2.0/screening.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/domains/screening/2.0/screening.xsd new file mode 100644 index 000000000..1cc298d7a --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/domains/screening/2.0/screening.xsd @@ -0,0 +1,46 @@ + + + + The People Screening domain provides harmonized information sharing content within the Screening Portfolio of DHS. The Screening namespace is initially being populated with person screening information for immigrant and non-immigrant person types who have been encountered and identified by the Screening Portfolio Components. Screening expands on encounter-related NIEM elements currently included in the Immigration and Intelligence domains. + + true + + + + + + + + + + + + + + + + + + + An indicator indicating whether the Notice of Divorce of MARRIAGE has been received by the Department of Homeland Security + + + + + The date on which the PERSON ALERT is no loner effective. + + + + + Additional information about a marriage. + + + + + + + + The name of the city where the MARRIAGE occurred. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/fbi/2.0/constraint-schema-transform.xsl b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/fbi/2.0/constraint-schema-transform.xsl new file mode 100644 index 000000000..fdb58969f --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/fbi/2.0/constraint-schema-transform.xsl @@ -0,0 +1,25090 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/fbi/2.0/fbi.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/fbi/2.0/fbi.xsd new file mode 100644 index 000000000..5d426f8df --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/fbi/2.0/fbi.xsd @@ -0,0 +1,41801 @@ + + + + FBI code lists for National Crime and Information Center (NCIC-2000), National Incident-Based Reporting System (NIBRS), and National Law Enforcement Data Exchange (N-DEx). + + true + + + + + + + + + FULL EXTRADITION UNLESS OTHERWISE NOTED IN THE MIS FIELD + + + + + FULL EXTRADITION UNLESS OTHERWISE NOTED IN THE MIS FIELD (default value) + + + + + EXTRADITION - SURROUNDING STATES ONLY + + + + + EXTRADITION - SURROUNDING STATES ONLY + + + + + NO EXTRADITION + + + + + PENDING EXTRADITION - SEE MIS FIELD + + + + + LIMITED EXTRADITION - SEE MIS FIELD + + + + + FULL EXTRADITION + + + + + EXTRADITION - SURROUNDING STATES ONLY + + + + + NO EXTRADITION + + + + + LIMITED EXTRADITION SEE MIS FIELD (requires data in the MIS Field) + + + + + LIMITED EXTRADITION SEE MIS FIELD (requires data in the MIS Field) + + + + + NO EXTRADITION + + + + + PENDING EXTRADITION SEE MIS FIELD (requires data in the MIS Field) + + + + + PENDING EXTRADITION SEE MIS FIELD (requires data in the MIS Field) + + + + + + + + + + + + + + + + MULTICOLORED + + + + + GRAY + + + + + BLACK + + + + + MAROON + + + + + GREEN + + + + + BLUE + + + + + HAZEL + + + + + BROWN + + + + + UNKNOWN + + + + + PINK + + + + + + + + + + + + + + + + unknown + + + + + Hispanic + + + + + non Hispanic + + + + + + + + + + + + + + + + Orange + + + + + Pink + + + + + Blond or Strawberry + + + + + Gray or Partially Gray + + + + + UNKNOWN OR COMPLETELY BALD + + + + + Sandy + + + + + Brown + + + + + Blue + + + + + Black + + + + + Red or Auburn + + + + + White + + + + + Green + + + + + Purple + + + + + + + + + + + + + + + + British Virgin Islands + + + + + West Bank + + + + + Lithuania + + + + + Bassas Da India (French possession) + + + + + CITIZEN BAND POTTAWATOMIE TRIBE + + + + + Morelos + + + + + Bonaire (Netherlands Antilles) + + + + + Guam + + + + + Libya + + + + + Guatemala + + + + + Ukraine + + + + + California + + + + + Tajikistan + + + + + New Zealand + + + + + Slovenia + + + + + French Guiana + + + + + Saudi Arabia + + + + + Howland Island + + + + + Iran + + + + + Bolivia + + + + + North Carolina + + + + + Martinique + + + + + Wisconsin + + + + + Kingman Reef + + + + + French Southern and Antartic Lands + + + + + Indonesia (now includes Portuguese Timor) + + + + + Sonora + + + + + Midway Islands + + + + + Alaska + + + + + New Brunswick + + + + + Mauritius + + + + + Mariana Islands + + + + + Armenia + + + + + Maryland + + + + + Macao (now spelled Macau) + + + + + South Africa + + + + + Prince Edward Island + + + + + Guyana + + + + + Liberia + + + + + Mayotte + + + + + Uganda + + + + + Chile + + + + + Hong Kong + + + + + Queretaro + + + + + District of Columbia + + + + + Manahiki Island + + + + + Ireland (does not include NorthernIreland, see Northern Ireland) + + + + + Japan + + + + + Seychelles + + + + + Cape Verde Islands + + + + + Luxembourg + + + + + Republic of Congo, Brazzaville + + + + + Costa Rica + + + + + India + + + + + Fiji + + + + + Tonga + + + + + Svalbard + + + + + Tamaulipas + + + + + Ellice Islands (now Tuvalu) + + + + + Saint Helena + + + + + Parcel Islands + + + + + Brunei + + + + + Tunisia + + + + + Nicaragua + + + + + Devil's Lake Sioux Tribe + + + + + South Dakota + + + + + Liechtenstein + + + + + Niue + + + + + Gabon + + + + + Russia + + + + + Northern Ireland + + + + + Dominican Republic + + + + + New Guinea (now Papua New Guinea) + + + + + Arkansas + + + + + Slovakia + + + + + CHEYENNE & ARAPAHO TRIBES + + + + + Coral Sea Islands (Australian territory) + + + + + Qatar + + + + + Saint Vincent and the Grenadines + + + + + Israel + + + + + Equatorial Guinea + + + + + Sweden + + + + + Chihuahua + + + + + Philippines + + + + + Jordan + + + + + Gambia, The + + + + + WYANDOTTE TRIBE + + + + + Hungary + + + + + SEMINOLE NATION + + + + + Pennsylvania + + + + + Maldives + + + + + U.S. Virgin Islands + + + + + Spain + + + + + Kenya + + + + + Utah + + + + + Tromelin Island (French possession) + + + + + Nayarit + + + + + Rhodesia (now Zimbabwe) + + + + + Cyprus + + + + + Belgium + + + + + Nevada + + + + + PAWNEE TRIBE + + + + + Alberta + + + + + Togo + + + + + Michoacan + + + + + Madagascar (included in Malagasy Republic) + + + + + Nepal + + + + + Socialist Republic of Vietnam + + + + + Europa Island (French possession) + + + + + Czech Republic + + + + + Mexico (State) + + + + + Ontario + + + + + Okinawa + + + + + Clipperton Island (French possession) + + + + + APACHE TRIBE + + + + + Eretria + + + + + Caroline Islands + + + + + Taiwan, Republic of China + + + + + Baker Island + + + + + Puebla + + + + + Leech Lake Band of Chippewa + + + + + Colombia + + + + + Idaho + + + + + Palmyra Atoll + + + + + Sinaloa + + + + + Palau, Republic of + + + + + West Virginia + + + + + Benin (formerly Dahomey) + + + + + Aruba (now independent of NetherlandsAntilles) + + + + + Iraq + + + + + French Polynesia + + + + + Western Samoa + + + + + Djibouti + + + + + New Caledonia + + + + + Louisiana + + + + + Monaco + + + + + New Hampshire + + + + + Quintana Roo + + + + + Syria + + + + + Sac & Fox + + + + + Iowa + + + + + Central African Republic + + + + + Burma + + + + + Guinea + + + + + Pitcairn,Henderson, Ducie, and OenoIslands + + + + + Nevis and Saint Christopher "Kitts" + + + + + Norway + + + + + Kuwait + + + + + Trucial States (now United Arab Emirates) + + + + + Egypt (formerly United Arab Republic) + + + + + Jersey + + + + + Bahrain/Bahrein + + + + + Reunion + + + + + Dominica + + + + + Maine + + + + + North Dakota + + + + + Yukon (Territory) + + + + + Gilbert Islands (now Kiribati) + + + + + Honduras + + + + + Namibia (South-West Africa) + + + + + OTOE-MISSOURIA TRIBE + + + + + PONCA TRIBE + + + + + Rhode Island + + + + + Ceylon (Now Sri Lanka) + + + + + Botswana + + + + + Marshall Islands + + + + + MIAMI TRIBE + + + + + Poland + + + + + Gibraltar + + + + + Burkina Faso (known as Burkina,formerly Upper Volta) + + + + + Kiowa + + + + + OSAGE NATION + + + + + Tennessee + + + + + Greenland + + + + + Falkland Islands + + + + + North Korea + + + + + Red Lake + + + + + Guernsey + + + + + San Marino + + + + + England + + + + + Argentina + + + + + Malta + + + + + New York + + + + + Croatia + + + + + Cayman Islands + + + + + Absentee Shawnee + + + + + Oregon + + + + + South Carolina + + + + + Jan Mayen + + + + + Swaziland + + + + + New Mexico + + + + + Kentucky + + + + + Cook Islands + + + + + British Solomon Islands (now SolomonIslands) + + + + + Baja California (Northern Section) + + + + + Vermont + + + + + Bahamas, The + + + + + Panama + + + + + Cameroon + + + + + Bermuda + + + + + Portugal + + + + + Chad + + + + + Iceland + + + + + Colorado + + + + + Navassa Island + + + + + Cuba + + + + + Federated States of Micronesia + + + + + Rwanda + + + + + San Luis Potosi + + + + + Sao Tome and Principe + + + + + Bhutan + + + + + Congo Kinshasa, now Zaire + + + + + Macedonia + + + + + Comoros (or Comoros Islands) + + + + + Morocco + + + + + Nigeria + + + + + Senegal + + + + + Guadeloupe + + + + + Shakopee + + + + + Georgia + + + + + Ethiopia + + + + + Pakistan + + + + + United States of America (USA) (Should beused in the following circumstances:1. To indicate the LIS + + + + + Delaware + + + + + Jalisco + + + + + Washington + + + + + Switzerland + + + + + Yucatan + + + + + Menominee + + + + + Thailand + + + + + Lesotho + + + + + Manitoba + + + + + Russian Federation + + + + + Georgia + + + + + Algeria + + + + + Chiapas + + + + + Spratly Islands + + + + + Connecticut + + + + + Faroe Islands + + + + + Surinam + + + + + Andorra + + + + + Baja California (Southern Section) + + + + + Uzbekistan + + + + + Missouri + + + + + Balearic Islands + + + + + Florida + + + + + Bosnia and Hercegovenia + + + + + Ashmore and Cartier Islands + + + + + Republic of Yemen + + + + + El Salvador + + + + + France + + + + + Albania + + + + + Michigan + + + + + Hawaii + + + + + Antigua and Barbuda (formerly Antigua) + + + + + Mexico (See separate list of MexicanStates; use code MM only when state isunknown) + + + + + Hidalgo + + + + + Angola + + + + + Tanzania, United Republic of + + + + + LATVIA + + + + + Austria + + + + + Kansas + + + + + Tuamotu Archipelago + + + + + Sierre Leone (Sierra Leone) + + + + + Malawi + + + + + Cote d'Ivoire (Ivory Coast) + + + + + Peru + + + + + Haiti + + + + + Oglala Sioux + + + + + Burundi + + + + + Laos + + + + + Bulgaria + + + + + Indiana + + + + + Oaxaca + + + + + Byelarus + + + + + Oklahoma + + + + + West Indies (for West Indies Islands notfound separately listed) + + + + + Azores Islands + + + + + Mozambique + + + + + Glorioso Islands (French possession) + + + + + South Korea + + + + + Johnston Island + + + + + Ohio + + + + + Turtle Mtn. Band of Chipewa + + + + + Newfoundland (includes Labrador) + + + + + South Georgia and the South SandwichIslands + + + + + Scotland + + + + + Niger + + + + + Guerrero + + + + + Christmas Island + + + + + Saint Lucia + + + + + Singapore + + + + + Colima + + + + + Distrito Federal (Mexico, D. F.) + + + + + Jamaica + + + + + Australia + + + + + Kyrgyzstan + + + + + IOWA TRIBE + + + + + Isle of Man + + + + + Venezuela + + + + + Juan de Nova Island + + + + + Nauru + + + + + WICHITA TRIBE + + + + + All others (Any foreign country/dependency/territory not included inthe above abbreviation list is t + + + + + Nova Scotia + + + + + Canal Zone + + + + + Veracruz + + + + + Somalia + + + + + MUSCOGEE (CREEK) TRIBE + + + + + Illinois + + + + + Canada(See separate list of CanadianProvinces; use code CD only whenprovince is unknown.) + + + + + Germany (East Germany: 1945-1989,for reference only)(West Germany: 1945-1989, for referenceonly) + + + + + Grenada + + + + + Italy (includes Sicily and Sardinia) + + + + + Azerbaijan + + + + + Coahuila + + + + + Uruguay + + + + + Malaysia + + + + + COMANCHE NATION + + + + + Cambodia (formerly Khmer Republic& Kampuchea) + + + + + KICKAPOO TRIBE + + + + + Belize (formerly British Honduras) + + + + + Norfolk Island + + + + + Guinea-Bissau (formerly Portuguese Guinea) + + + + + Canary Islands + + + + + Mille Lacs + + + + + Saint Pierre and Miquelon + + + + + Lac du Flambeau Band of Lake SuperiorChippewa + + + + + Madeira Islands + + + + + Tlaxcala + + + + + New Hebrides (now Vanuatu) + + + + + SENECA-CAYUGA TRIBES + + + + + Denmark + + + + + Sudan + + + + + Greece + + + + + Zambia + + + + + Romania/Rumania + + + + + Massachusetts + + + + + Wyoming + + + + + Holland (Netherlands) + + + + + Bangladesh + + + + + Lebanon + + + + + Nebraska + + + + + Virginia + + + + + British Indian Ocean Territory + + + + + Afghanistan + + + + + Wake Island + + + + + Alabama + + + + + Oman + + + + + New Jersey + + + + + Turkmenistan + + + + + Anguilla + + + + + Spanish Sahara (now Western Sahara) + + + + + Saskatchewan + + + + + Brazil + + + + + Puerto Rico + + + + + Kazakhstan + + + + + Tabasco + + + + + Turkey + + + + + Arizona + + + + + White Earth + + + + + Heard Island and McDonald Island + + + + + Nuevo Leon + + + + + Oneida Tribe of Indians of Wisconsin + + + + + Ecuador + + + + + Vatican City + + + + + Durango + + + + + Zacatecas + + + + + Trinidad and Tobago + + + + + Unknown Place of Birth (for use in IIIrecords only) + + + + + Mali + + + + + Estonia + + + + + Campeche + + + + + Texas + + + + + Trust Territory of the Pacific Islands + + + + + Mauritania + + + + + Guanajuato + + + + + Aguascalientes + + + + + Moldova + + + + + British Columbia + + + + + Turks and Calcos Islands + + + + + Barbados + + + + + Yugoslavia + + + + + Wallis and Futuna (French territory) + + + + + Tokelau + + + + + Montana + + + + + Montserrat + + + + + Fond du Lac + + + + + Mississippi + + + + + Northwest Territories + + + + + People's Republic of China + + + + + Jarvis Island + + + + + Paraquay + + + + + Ghana + + + + + Finland + + + + + Gaza + + + + + American Samoa (Islands) + + + + + Mongolia + + + + + Wales + + + + + Quebec + + + + + Bouvet Island (Norwegian territory) + + + + + Cocos (Keeling) Islands (Australiandependency) + + + + + Minnesota + + + + + + + + + + + + + + + + NORTH DAKOTA + + + + + VERMONT + + + + + BRITISH COLUMBIA + + + + + NEVADA + + + + + ITALY + + + + + ILLINOIS + + + + + MEXICO CITY + + + + + PUERTO RICO + + + + + MASSACHUSETTS + + + + + OKLAHOMA + + + + + PENNSYLVANIA + + + + + MONTANA + + + + + SOUTH CAROLINA + + + + + IOWA + + + + + HAWAII + + + + + FLORIDA + + + + + MISSOURI + + + + + NEW YORK + + + + + CALIFORNIA + + + + + WEST VIRGINIA + + + + + COLORADO + + + + + UTAH + + + + + TENNESSEE + + + + + MICHIGAN + + + + + VIRGINIA + + + + + ALABAMA + + + + + ROYAL CANADIAN MP + + + + + NEW BRUNSWICK + + + + + ALASKA + + + + + SOUTH DAKOTA + + + + + IDAHO + + + + + TEXAS + + + + + ARIZONA + + + + + ALBERTA + + + + + SASKATCHEWAN + + + + + NEW HAMPSHIRE + + + + + LOUISIANA + + + + + GEORGIA + + + + + MINNESOTA + + + + + MAINE + + + + + NEW MEXICO + + + + + QUEBEC + + + + + WASHINGTON + + + + + NORTH CAROLINA + + + + + ARKANSAS + + + + + OTHER CANADA + + + + + KENTUCKY + + + + + GUAM + + + + + WYOMING + + + + + MISSISSIPPI + + + + + VIRGIN ISLANDS + + + + + NORTHWEST TERRITORIES + + + + + MARYLAND + + + + + YUKON + + + + + OREGON + + + + + DELAWARE + + + + + NEW JERSEY + + + + + PRINCE EDWARD ISLAND + + + + + CONNECTICUT + + + + + WASHINGTON D.C. + + + + + NEWFOUNDLAND + + + + + MANITOBA + + + + + UNITED STATES + + + + + KANSAS + + + + + RHODE ISLAND + + + + + NEBRASKA + + + + + ONTARIO + + + + + INDIANA + + + + + OHIO + + + + + WISCONSIN + + + + + ENGLAND + + + + + NOVA SCOTIA + + + + + + + + + + + + + + + + SEX ASSLT - SODOMY-GIRL-STGARM + + + + + DRIVING UNDER INFLUENCE ALCOHOL + + + + + EXPLOITATION/ENTICEMENT + + + + + KICKBACK - GIVING + + + + + SPORTS TAMPERING + + + + + OBSCENE MATERIAL - MFR + + + + + HOMICIDE - WILLFUL KILL-PUB OFF-WEAPON + + + + + DRUGS - MISBRANDED + + + + + ESTABLISH GAMBLING PLACE + + + + + MARIJUANA - POSSESS + + + + + KIDNAP ADULT TO SEXUALLY ASSLT + + + + + SEX ASSAULT-ELDERLY + + + + + EMBEZZLE - PUBLIC PROP + + + + + NEGLECT ELDERLY + + + + + MARIJUANA - PRODUCING + + + + + PERJURY - SUBORNATION OF + + + + + SEX OFFENSE + + + + + THEFT OF US GOVT PROP + + + + + THEFT VEH BY BAILEE + + + + + FRAUD - FALSE STATEMENT + + + + + EXPLOSIVES - POSSESSING + + + + + KIDNAP MINOR + + + + + RAPE WITH WEAPON + + + + + HOMICIDE - WILLFUL KILL-FAMILY-GUN + + + + + CARD GAME + + + + + COMPOUNDING CRIME + + + + + AGGRAV ASSLT - PUB OFF-STGARM + + + + + COSMETICS - ADULTERATED + + + + + LIQUOR TAX + + + + + FORGERY + + + + + CONDIT RELEASE VIOLATION + + + + + ROBBERY - BUSINESS-STGARM + + + + + PROSTITUTION + + + + + LIQUOR - TRANSPORT + + + + + HALLUCINOGEN - POSSESS + + + + + THREAT - FEDERAL PROTECTEES + + + + + RIOT - ENGAGING IN + + + + + MANDATORY RELEASE VIOLATION + + + + + HOMICIDE - NEGLIG MANSL-WEAPON + + + + + INCEST WITH MINOR + + + + + OPIUM OR DERIV - POSSESS + + + + + SEXUAL EXPLOITATION OF MINOR-EXHIBITION OF MINOR + + + + + DAMAGE PROPERTY + + + + + KIDNAP ADULT + + + + + LOTTERY - OPERATING + + + + + HOMOSEXUAL ACT WITH WOMAN + + + + + WITNESS - DECEIVING + + + + + SEX ASSLT - SODOMY-MAN-WEAPON + + + + + TRANSPORT TOOLS FOR FORGERY/COUNTERFEITING + + + + + SEXUAL EXPLOITATION OF MINOR-VIA TELECOMMUNICATIONS + + + + + VEHICLE THEFT + + + + + PUBLIC ORDER CRIMES SEE MIS + + + + + SMUGGLE CONTRABAND INTO PRISON + + + + + RESISTING OFFICER + + + + + DIVULGE MESSAGE CONTENTS + + + + + OPIUM OR DERIV - SELL + + + + + BESTIALITY + + + + + FORCIBLE PURSE SNATCHING + + + + + MISCONDUCT - JUDIC OFFICER + + + + + MILITARY + + + + + RAPE - GUN + + + + + AGGRAV ASSLT - FAMILY-STGARM + + + + + DAMAGE PROP - PRIVATE + + + + + MILITARY DESERTION + + + + + SEXUAL EXPLOITATION OF MINOR-MATERIAL-PHOTOGRAPH + + + + + ROBBERY - RESID-GUN + + + + + RIOT - INCITING + + + + + EXTORT - THREAT DAMAGE PROP + + + + + SALES TAX + + + + + PASS FORGED + + + + + LIQUOR - MFR + + + + + LARC - FROM AUTO + + + + + OBSCENE MATERIAL - DISTRIB + + + + + ARSON - BUSINESS-DEFRAUD INSURER + + + + + LICENSING - REGISTRATION WEAPON + + + + + ARSON - PUB-BLDG + + + + + SABOTAGE + + + + + ENTICEMENT OF MINOR FOR INDECENT PURPOSES-VIA TELECOMMUNICATIONS + + + + + CARRYING CONCEALED WEAPON + + + + + DISORD CONDUCT + + + + + GAMBLING DEVICE + + + + + SYNTH NARCOTIC - SMUGGL + + + + + FORGERY OF CHECKS + + + + + FREQUENT HOUSE ILL FAME + + + + + DIVULGE EAVESDROP INFO + + + + + POSSESS TOOLS FOR FORGERY/COUNTERFEITING + + + + + CRUELTY TOWARD DISABLED + + + + + RECEIV STOLEN VEH + + + + + AGGRAV ASSLT - POL OFF-WEAPON + + + + + AGGRAV ASSLT - NONFAMILY-GUN + + + + + SYNTH NARCOTIC + + + + + RAPE - STRONGARM + + + + + COMMERCIAL SEX - HOMOSEXUAL PROSTITUTION + + + + + HIT AND RUN + + + + + AGGRAV ASSLT - POL OFF-GUN + + + + + BURGL TOOLS - POSSESS + + + + + ABORTIFACIENT + + + + + OBSTRUCT POLICE + + + + + EXTORTION + + + + + CONSERVATION - BIRDS + + + + + ESCAPE SEE MIS + + + + + LARC - PARTS FROM VEH + + + + + RECEIVE STOLEN PROP + + + + + SEX ASSAULT-DISABLED + + + + + TRANSPORT INTERSTATE FOR COMMERCIALIZED SEX + + + + + COCAINE - SELL + + + + + OBSCENE MATERIAL + + + + + CONSERVATION - LICENSE-STAMP + + + + + POSSESS STOLEN PROP + + + + + COUNTERFEITING + + + + + AIDING PRISONER ESCAPE SEE MIS + + + + + HOMICIDE - WILLFUL KILL-WEAPON + + + + + ARSON - RESID-DEFRAUD INSURER + + + + + HALLUCINOGEN - MFR + + + + + CONSERVATION - ANIMALS + + + + + NEGLECT FAMILY + + + + + SMUGGLE CONTRABAND + + + + + BURNING OF-SEE MIS + + + + + KIDNAP MINOR-PARENTAL + + + + + STOLEN PROPERTY + + + + + INTIMIDATION (INCLUDES STALKING) + + + + + HOMOSEXUAL ACT WITH MAN + + + + + INDECENT EXPOSURE TO MINOR + + + + + DICE GAME - OPERATING + + + + + ABSCOND WHILE ON PROBATION + + + + + SOUGHT FOR VIOLATION OF NATIONAL SECURITY REGISTRATION + + + + + FRAUD - ILLEG USE CREDIT CARDS + + + + + ABORTION + + + + + ALTERING IDENTIFICATION ON WEAPON + + + + + UNAUTH USE OF VEH + + + + + BARBITURATE - POSSESS + + + + + INDECENT EXPOSURE TO ADULT + + + + + HOMICIDE - WILLFUL KILL-POL OFF-WEAPON + + + + + CONSERVATION + + + + + HOMICIDE - WILLFUL KILL-POL OFF-GUN + + + + + DRUGS - HEALTH OR SAFETY + + + + + ESCAPE FROM CUSTODY + + + + + SEX ASSLT - SODOMY-GIRL-GUN + + + + + DAMAGE PROP - BUSINESS-WITH EXPLOSIVE + + + + + PROCURE FOR PROSTITUTE WHO IS AN ADULT + + + + + FAMILY OFFENSE + + + + + BURGL - FORCED ENTRY-NONRESID + + + + + NONPAYMENT OF ALIMONY + + + + + THREAT TO BURN + + + + + OBSTRUCT SEE MIS + + + + + SYNTH NARCOTIC - SELL + + + + + BARBITURATE - MFR + + + + + LIQUOR + + + + + OBSCENITY + + + + + BURGL - BANKING-TYPE INST + + + + + AGGRAV ASSLT - GUN + + + + + TRANSPORT FORGED - SEE MIS + + + + + TRANSMIT WAGER INFORMATION + + + + + KICKBACK - RECEIVING + + + + + ABORTIONAL ACT ON OTHER + + + + + SEX ASSLT - SODOMY-WOMAN-STGARM + + + + + KICKBACK - OFFERING + + + + + FALSE IMPRISONMENT-MINOR-NONPARENTAL + + + + + NEGLECT DISABLED + + + + + SMUGGLING ALIENS + + + + + MARIJUANA + + + + + SEX OFFENSE-ELDERLY + + + + + AGGRAV ASSLT - FAMILY-WEAPON + + + + + THEFT AND SALE VEH + + + + + KIDNAP MINOR FOR RANSOM + + + + + CARJACKING - ARMED + + + + + HEROIN - SELL + + + + + GRATUITY - RECEIVING + + + + + CIVIL RIGHTS + + + + + FRAUD + + + + + BURGLARY + + + + + AGGRAV ASSLT - POL OFF-STGARM + + + + + SEDITION + + + + + GAMBLING DEVICE - NOT REGISTERED + + + + + ROBBERY - BUSINESS-GUN + + + + + TAX REVENUE + + + + + RAPE-DRUG-INDUCED + + + + + PROPERTY CRIMES SEE MIS + + + + + CRUELTY TOWARD CHILD + + + + + FAILURE TO MOVE ON + + + + + DRUGS - ADULTERATED + + + + + LARC - FROM SHIPMENT + + + + + BRIBE + + + + + EVIDENCE - DESTROYING + + + + + INCENDIARY DEVICE - TEACHING USE + + + + + SEX ASSLT - SODOMY-MAN-STGARM + + + + + BURGL - FORCED ENTRY-RESID + + + + + RIOT - INTERFERE FIREMAN + + + + + WEAPON OFFENSE + + + + + HALLUCINOGEN + + + + + EXPLOSIVES - TRANSPORTING + + + + + GRATUITY - GIVING + + + + + AGGRAV ASSLT - FAMILY-GUN + + + + + LARC - FROM BANKING-TYPE INST + + + + + SUBMISSION TO ABORTIONAL ACT + + + + + STAT RAPE - NO FORCE + + + + + BRIBE - GIVING + + + + + ROBBERY - RESID-WEAPON + + + + + SEXUAL EXPLOITATION OF MINOR-MATERIAL-FILM + + + + + CRIMES AGAINST PERSON SEE MIS + + + + + EXPLOSIVES - USING + + + + + THEFT AND STRIP VEH + + + + + EXTORT - THREAT INJURE PERSON + + + + + SMUGGLING + + + + + COSMETICS - MISBRANDED + + + + + HOMICIDE - WILLFUL KILL-GUN + + + + + LARCENY + + + + + WEAPON TRAFFICKING + + + + + KIDNAP MINOR-NONPARENTAL + + + + + ARSON - BUSINESS + + + + + EMBEZZLE - BUSINESS PROP + + + + + ABSCOND WHILE ON PAROLE + + + + + FALSE IMPRISONMENT-MINOR-PARENTAL + + + + + OBSTRUCTING JUSTICE + + + + + PEEPING TOM + + + + + COCAINE + + + + + OBSCENE MATERIAL - TRANSPORT + + + + + AMPHETAMINE - MFR + + + + + CONTEMPT OF CONGRESS + + + + + MARIJUANA - SELL + + + + + ASSEMBLY - UNLAWFUL + + + + + EMBEZZLE - POSTAL + + + + + IMMIGRATION + + + + + CROSSING POLICE LINES + + + + + STATE/LOCAL - MATERIAL WITNESS + + + + + SELECTIVE SERVICE + + + + + ARSON + + + + + LARC - FROM BLDG + + + + + SALE OF STOLEN PROP + + + + + NARCOTIC EQUIP - POSSESS + + + + + BRIBERY + + + + + RIOT - INTERFERE OFFICER + + + + + SEX ASSLT - SODOMY-BOY-WEAPON + + + + + DRIVING UNDER INFLUENCE DRUGS + + + + + ROBBERY - STREET-GUN + + + + + FRAUD - IMPERSON + + + + + CONTEMPT OF COURT - SEE MIS + + + + + FLIGHT-ESCAPE + + + + + INCENDIARY DEVICE - USING + + + + + SEX OFFENDER REGISTRATION VIOLATION(SEE MIS) + + + + + EXTORT - THREAT OF INFORMING OF VIO + + + + + OBSCENE MATERIAL - SELL + + + + + INCEST WITH ADULT + + + + + HOMICIDE - WILLFUL KILL-PUB OFF-GUN + + + + + BRIBE - OFFERING + + + + + PAROLE VIOLATION - SEE MIS + + + + + INCENDIARY DEVICE - POSSESS + + + + + ASSAULT + + + + + SEX ASSLT - CARNAL ABUSE + + + + + NEGLECT CHILD + + + + + ROBBERY - STREET-STGARM + + + + + COMMERCIAL SEX + + + + + EMBEZZLE + + + + + BURGL - NO FORCED ENTRY-RESID + + + + + ILLEGAL ENTRY + + + + + FOOD - MISBRANDED + + + + + GAMBLING GOODS + + + + + SEX OFFENSE-DISABLED + + + + + PASS COUNTERFEITED + + + + + GRATUITY - OFFERING + + + + + DAMAGE PROP - PUBLIC-WITH EXPLOSIVE + + + + + AGGRAV ASSLT - PUB OFF-WEAPON + + + + + SEXUAL EXPLOITATION OF MINOR-PROSTITUTION + + + + + THREAT - TERRORISTIC - STATE OFFENSES + + + + + HARASSING COMMUNICATION + + + + + LARC - FROM YARDS + + + + + SEX ASSLT - SODOMY-WOMAN-GUN + + + + + SEX ASSLT - SODOMY-BOY-GUN + + + + + OPIUM OR DERIV - SMUGGL + + + + + DAMAGE PROP - BUSINESS + + + + + GAMBLING DEVICE - TRANSPORT + + + + + SEXUAL EXPLOITATION OF MINOR-MATERIAL-TRANSPORT + + + + + COSMETICS - HEALTH OR SAFETY + + + + + GRATUITY + + + + + VOYEURISM + + + + + ROBBERY - RESID-STGARM + + + + + AGGRAV ASSLT - WEAPON + + + + + POSSESS STOLEN VEHICLE + + + + + KIDNAP MINOR TO SEXUALLY ASSLT + + + + + GAMBLING + + + + + PROB VIOLATION - SEE MIS + + + + + CONCEAL STOLEN PROP + + + + + AMPHETAMINE + + + + + GAMBLING GOODS - TRANSPORT + + + + + AGGRAV ASSLT - NONFAMILY-STGARM + + + + + DIVULGE EAVESDROP ORDER + + + + + HOMOSEXUAL ACT WITH GIRL + + + + + FAILURE TO REGISTER AS A SEX OFFENDER + + + + + BOOKMAKING + + + + + ANTITRUST + + + + + FRAUD - SWINDLE + + + + + CONTRIB DELINQ MINOR + + + + + ALIEN UNLAWFULLY PRESENT DUE TO ORDER OF REMOVAL OR EXCLUSION FROM THE USA + + + + + AIRCRAFT THEFT + + + + + RAPE-ELDERLY + + + + + ABDUCT - NO RANSOM OR ASSLT + + + + + THREAT TO BOMB + + + + + HOMOSEXUAL ACT WITH BOY + + + + + TREASON MISPRISION + + + + + DANGEROUS DRUGS + + + + + STOLEN VEHICLE + + + + + EMBEZZLE - INTERSTATE SHIPMENT + + + + + FOOD - ADULTERATED + + + + + DESECRATING FLAG + + + + + SEXUAL ASSAULT-DRUG-INDUCED + + + + + FEDERAL - MATERIAL WITNESS + + + + + HOMICIDE - JOHN OR JANE DOE - NO WARRANT + + + + + MAIL FRAUD + + + + + PROCURE FOR PROSTITUTE WHO IS A MINOR + + + + + ELECTION LAWS + + + + + MARIJUANA - SMUGGL + + + + + SEXUAL EXPLOITATION OF MINOR-SEX PERFORMANCE + + + + + FALSE CITIZENSHIP + + + + + LARC ON US GOVT RESERV + + + + + BAIL - PERSONAL RECOG + + + + + WIRETAP - FAILURE TO REPORT + + + + + AMPHETAMINE - POSSESS + + + + + INCOME TAX + + + + + HEROIN - SMUGGL + + + + + OBSTRUCT CRIMINAL INVEST + + + + + COCAINE - POSSESS + + + + + FAILURE REPORT CRIME + + + + + LARC - FROM MAILS + + + + + BIGAMY + + + + + TRANSPORT INTERSTATE STOLEN PROP + + + + + KIDNAP ADULT FOR RANSOM + + + + + AGGRAV ASSLT - PUB OFF-GUN + + + + + GAMBLING GOODS - POSSESS + + + + + UNAUTH COMMUNICATION WITH PRISONER + + + + + KIDNAPPING + + + + + TRANSPORT COUNTERFEITED - SEE MIS + + + + + LIQUOR - SELL + + + + + ENTICEMENT OF MINOR FOR PROSTITUTION + + + + + OBSTRUCTING COURT ORDER + + + + + MORALS - DECENCY CRIMES SEE MIS + + + + + RIOT + + + + + CONTEMPT OF LEGISLATURE + + + + + TRANSP DANGEROUS MATERIAL + + + + + ABORTIONAL ACT ON SELF + + + + + EMBEZZLE - BANKING-TYPE INST + + + + + FRAUD - INSUFF FUNDS CHECK + + + + + TRAFFIC OFFENSE + + + + + LARC - FROM COIN MACHINE + + + + + ROBBERY - BANKING-TYPE INST + + + + + LIQUOR - POSSESS + + + + + WITNESS - DISSUADING + + + + + ARSON - RESID-ENDANGERED LIFE + + + + + SEX ASSAULT + + + + + BURGL - NO FORCED ENTRY-NONRESID + + + + + DAMAGE PROP - PUBLIC + + + + + SUBJECT IS A DEPORTED CRIMINAL/AGGRAVATED FELON + + + + + FOOD - HEALTH OR SAFETY + + + + + TRESPASSING + + + + + SYNTH NARCOTIC - POSSESS + + + + + FLIGHT TO AVOID SEE MIS + + + + + ROBBERY - BUSINESS-WEAPON + + + + + HEROIN + + + + + PROCURE FOR PROSTITUTE (PIMPING) + + + + + LARC - POSTAL + + + + + EXPLOSIVES - TEACHING USE + + + + + HOMICIDE - NEGLIG MANSL-VEH + + + + + HEROIN - POSSESS + + + + + LOTTERY + + + + + EAVESDROP EQUIP + + + + + PURSE SNATCHING - NO FORCE + + + + + BRIBE - RECEIVING + + + + + BARBITURATE - SELL + + + + + FORGERY OF + + + + + KIDNAP HOSTAGE FOR ESCAPE + + + + + ILLEGAL ARREST + + + + + RAPE-DISABLED + + + + + MONEY LAUNDERING + + + + + SEDUCTION OF ADULT + + + + + ESPIONAGE + + + + + FRAUD AND ABUSE, COMPUTER + + + + + OPENING SEALED COMMUNICATION + + + + + HALLUCINOGEN - SELL + + + + + POCKETPICKING + + + + + BURGL - SAFE-VAULT + + + + + PUBLIC PEACE + + + + + HOMICIDE + + + + + GAMBLING DEVICE - POSSESS + + + + + CONFLICT OF INTEREST + + + + + FAILURE TO APPEAR - SEE MIS + + + + + AMPHETAMINE - SELL + + + + + CARD GAME - OPERATING + + + + + CARRYING PROHIBITED WEAPON + + + + + HALLUCINOGEN - DISTRIB + + + + + SELLING WEAPON + + + + + ENTICEMENT OF MINOR FOR INDECENT PURPOSES + + + + + STRIP STOLEN VEH + + + + + VIOLATION OF A COURT ORDER + + + + + SMUGGLE TO AVOID PAYING DUTY + + + + + FRAUD - CONFIDENCE GAME + + + + + HOMICIDE - WILLFUL KILL-NONFAMILY-GUN + + + + + SEXUALLY VIOLATE HUMAN REMAINS/NECROPHILIA + + + + + EAVESDROPPING + + + + + HOMICIDE - WILLFUL KILL-FAMILY-WEAPON + + + + + BARBITURATE + + + + + CRUELTY TOWARD ELDERLY + + + + + ARSON - PUB-BLDG-ENDANGERED LIFE + + + + + OBSCENE COMMUNICATION + + + + + ROBBERY + + + + + SEX OFFENSE - AGAINST CHILD-FONDLING + + + + + DICE GAME + + + + + ARSON - BUSINESS-ENDANGERED LIFE + + + + + TRANSPORT INTERSTATE FOR SEXUAL ACTIVITY + + + + + SEX ASSLT - SODOMY-MAN-GUN + + + + + LARC - FROM INTERSTATE SHIPMENT + + + + + CONSERVATION - ENVIRONMENT + + + + + KICKBACK + + + + + HOMICIDE - WILLFUL KILL-NONFAMILY-WEAPON + + + + + CONSERVATION - FISH + + + + + OPIUM OR DERIV + + + + + OBSCENE MATERIAL - POSSESS + + + + + TREASON + + + + + INTERSTATE TRANSP STOLEN VEH + + + + + ARSON - RESID + + + + + ANARCHISM + + + + + NONSUPPORT OF PARENT + + + + + SHOPLIFTING + + + + + EXTORT - THREAT ACCUSE PERSON OF CRIME + + + + + SEX ASSLT - SODOMY-GIRL-WEAPON + + + + + COUNTERFEITING OF + + + + + POSSESS COUNTERFEITED - SEE MIS + + + + + INVADE PRIVACY + + + + + POSSESS FORGED - SEE MIS + + + + + MOLESTATION OF MINOR + + + + + LOTTERY - RUNNER + + + + + BAIL - SECURED BOND + + + + + FRAUD - BY WIRE + + + + + KIDNAP - HIJACK AIRCRAFT + + + + + POSSESSION OF WEAPON + + + + + EXTORT - THREAT INJURE REPUTATION + + + + + PERJURY + + + + + CRUELTY TOWARD WIFE + + + + + REFUSING TO AID OFFICER + + + + + SEX ASSLT - SODOMY-BOY-STGARM + + + + + FIRING WEAPON + + + + + DAMAGE PROP - PRIVATE-WITH EXPLOSIVE + + + + + LEWD OR LASCIVIOUS ACTS WITH MINOR + + + + + ROBBERY - STREET-WEAPON + + + + + INDECENT EXPOSURE (TO MINORS AND ADULTS) + + + + + HARBORING ESCAPE/FUGITIVE + + + + + OBSCENE MATERIAL - MAILING + + + + + KEEPING HOUSE ILL FAME + + + + + RAPE + + + + + OBSTRUCT CORRESPONDENCE + + + + + MAKING FALSE REPORT + + + + + SUBJECT IS A THREAT TO A U.S. SECRET SERVICE PROTECTEE + + + + + SIMPLE ASSLT + + + + + COCAINE - SMUGGL + + + + + AGGRAV ASSLT - NONFAMILY-WEAPON + + + + + SEX ASSLT - SODOMY-WOMAN-WEAPON + + + + + HEALTH - SAFETY + + + + + THEFT AND USE VEH OTHER CRIME + + + + + SOVEREIGNTY + + + + + TRNSP FEMALE INTERSTATE FOR IMMORAL PURP + + + + + + + + + + + + + + + + BLACK + + + + + AMERICAN INDIAN + + + + + UNKNOWN + + + + + WHITE + + + + + ASIAN + + + + + + + + + + + + + + + + UNKNOWN - FOR UNIDENTIFIED ONLY + + + + + FEMALE + + + + + MALE + + + + + + + + + + + + + + + + Toe(s), nonspecific, tattoo + + + + + Amphetamines (includes stimulants,speed, etc.) + + + + + Artificial hip joint + + + + + Ear, right + + + + + Foot, nonspecific + + + + + Breast, left + + + + + Forearm, nonspecific, discolored + + + + + Hand, right + + + + + Stomach + + + + + Buttocks, nonspecific + + + + + Extra toe(s), left + + + + + Buttocks, nonspecific + + + + + Toe(s), nonspecific, scar + + + + + Crippled finger(s), right hand(includes webbed fingers) + + + + + Elbow, nonspecific, needle mark + + + + + Leg, nonspecific, artificial + + + + + Hand, nonspecific, artificial + + + + + Brace, right arm + + + + + Head, nonspecific (Use the MIS fieldo further describe location) + + + + + Toe(s), nonspecific + + + + + Ankle, nonspecific, needle mark + + + + + Missing Penis + + + + + Pierced abdomen + + + + + Breast, nonspecific + + + + + Extra nipple, right + + + + + Cleft chin + + + + + Knee, left + + + + + Ankle, left + + + + + Orthopedic plate + + + + + Left Toe, remove tattoo + + + + + Arm, left + + + + + Skin Disorders(includes psoriasis and eczema) + + + + + Finger(s), nonspecific, extra + + + + + Thigh, nonspecific + + + + + Tube in left ear + + + + + Knee, right + + + + + Ear, left, artificial + + + + + Foot, left, artificial + + + + + Arm, left, nonspecific + + + + + Ear, nonspecific + + + + + Penis + + + + + Ankle, right + + + + + Pierced left eyebrow + + + + + Arm, right upper + + + + + Spine + + + + + Groin area + + + + + Toe(s), left foot + + + + + Buttock, right + + + + + Groin area + + + + + Groin, nonspecific, discolored + + + + + Protruding lower jaw + + + + + Right Shoulder, artificial + + + + + Wrist, nonspecific, needle mark + + + + + Testis, left + + + + + Buttocks, nonspecific + + + + + Eye, left + + + + + Right forearm, mole + + + + + Lip, nonspecific + + + + + Hand, left + + + + + Finger joint(s), right hand + + + + + Nose + + + + + Hand, right + + + + + Buttocks + + + + + Wrist, nonspecific + + + + + Arm, lower left + + + + + Calf, nonspecific, needle mark + + + + + Breast, left + + + + + Knee, nonspecific + + + + + Hand, nonspecific + + + + + Ritalin + + + + + Leg, left + + + + + Elbow, nonspecific, discolored + + + + + Right Hip, fractured + + + + + Forearm, nonspecific + + + + + Glaucoma + + + + + Finger, nonspecific + + + + + Ear, nonspecific, missing + + + + + Right Forearm, discolored + + + + + Foot, right + + + + + Nose + + + + + Ankle, left + + + + + Rohypnol(Brand name for Flunitrazepam.Also referred to as "rophies","roofies", "ruffies", and "roche + + + + + Rib(s), right + + + + + Eyebrow, right/right eye area + + + + + Foot, left + + + + + Foot, left + + + + + Knee, nonspecific + + + + + Hand, right + + + + + Foot, nonspecific + + + + + Foot, right + + + + + Finger(s), left hand + + + + + Crippled hand, left + + + + + Pelvis + + + + + Pierced left ear + + + + + Marijuana + + + + + Ear, nonspecific + + + + + Right Elbow, artificial + + + + + Pierced right eyebrow + + + + + Upper Left Arm, discolored + + + + + Wire sutures + + + + + Finger(s), right + + + + + Ear, left + + + + + Forehead + + + + + Hand, left, artificial + + + + + Brace, one arm, nonspecific + + + + + Upper Left Arm, needle mark + + + + + Buttock, left + + + + + Thigh, nonspecific + + + + + Ear, right + + + + + Elbow, right + + + + + Spine + + + + + Hand, nonspecific + + + + + Thyroid Conditions or Diseases + + + + + Crippled toe(s), right(includes webbed toes) + + + + + Foot, nonspecific, missing + + + + + Drug Abuse + + + + + Brace, left and right arms + + + + + Leg, right, nonspecific + + + + + Back + + + + + Foot, nonspecific + + + + + Elbow, nonspecific, fractured + + + + + Leg, nonspecific + + + + + Leg, nonspecific + + + + + Cheek, nonspecific, dimple + + + + + Buttocks, right + + + + + Neck + + + + + Thigh, left + + + + + Breast, left + + + + + Lip, lower + + + + + Extra finger(s), left hand + + + + + Cocaine (includes crack) + + + + + Foot, right + + + + + Shoulder, left + + + + + Cauliflower ear, left + + + + + Elbow, right + + + + + Forehead + + + + + Left Toe, scar + + + + + Hip, left + + + + + Arm, right + + + + + Hip, left + + + + + Knee, right + + + + + Lip, lower + + + + + Wrist, left + + + + + Cataract, (nonspecified) + + + + + Skull plate + + + + + Clavicle, right + + + + + Hip, left + + + + + Leg, lower right + + + + + Ritalin + + + + + Right Toe, discolored + + + + + Cauliflower Ear + + + + + Thigh, nonspecific + + + + + Ankle, nonspecific + + + + + Shoulder, nonspecific + + + + + Ankle, left + + + + + Ear, nonspecific + + + + + Finger(s), nonspecific, needle mark + + + + + Jaw, upper right + + + + + Pierced nipple, left + + + + + Extra toe(s), right + + + + + Deviated septum + + + + + Buttocks, right + + + + + Hand, left + + + + + Leg, right + + + + + Knee, left + + + + + Hand, right + + + + + Right Toe, needle mark + + + + + Blind, both eyes + + + + + Left Toe, needle mark + + + + + Toe(s), nonspecific, remove tattoo + + + + + Shunt, cerebral ventricule + + + + + Ankle, left + + + + + Right Elbow, discolored + + + + + Penis + + + + + Foot, nonspecific, crippled + + + + + Ankle, nonspecific + + + + + Buttocks, nonspecific + + + + + Arm, left upper + + + + + Antibiotics + + + + + Hand, right + + + + + Shoulder, right + + + + + Humpbacked + + + + + Ear, left + + + + + Back + + + + + Knee, right + + + + + Calf, left + + + + + Wrist, left + + + + + Forearm, right + + + + + Nose + + + + + Alcoholism + + + + + Extra breast, nonspecific + + + + + Leg, nonspecific, crippled + + + + + Foot, right + + + + + Thigh, left + + + + + Finger(s), left hand + + + + + Hair implants + + + + + Eye, nonspecific, mole + + + + + Right Calf, discolored + + + + + Face, mole + + + + + Lip, upper + + + + + Eye, nonspecific, remove tattoo + + + + + Wrist, left + + + + + Wrist, right + + + + + Leg, left + + + + + Calf, nonspecific + + + + + Elbow, right + + + + + Lung, nonspecific, missing + + + + + Left Calf, needle mark + + + + + Arm, left + + + + + Breast, left + + + + + Cancer + + + + + Shoulder, right + + + + + Left Knee, needle mark + + + + + Crosseyed + + + + + Leg, upper left + + + + + Deaf, one ear (nonspecific) + + + + + Shoulder, nonspecific + + + + + Arm, left, artificial + + + + + Finger joint(s), left hand + + + + + Abdomen + + + + + Ear, left + + + + + Groin, nonspecific, needle mark + + + + + Antidepressants (mood-lifters -(Mood lifters - includes: Amitriptylene, Elavil, Norpramine, Prozac,T + + + + + Ear, right + + + + + Leg, right + + + + + Finger(s), right hand + + + + + Finger, nonspecific + + + + + Leg, right + + + + + Nose + + + + + Finger(s), right hand + + + + + Ankle, right + + + + + Extra nipple, center + + + + + Hip, nonspecific + + + + + Skull + + + + + Hip, nonspecific, healed fractured + + + + + Hip, right + + + + + Finger(s), right hand + + + + + Brace, teeth + + + + + Ear, right + + + + + Calf, right + + + + + Lip, upper + + + + + Leg, left, nonspecific + + + + + Eyebrow, left/left eye area + + + + + Thigh, right + + + + + Missing Cervical Vertebra(e) + + + + + Right Ankle, needle mark + + + + + Toe(s), nonspecific + + + + + Leg, nonspecific + + + + + Right Hip, artificial + + + + + Right Leg, fractured + + + + + Toe(s), nonspecific, discolored + + + + + Wrist, right + + + + + Calf, nonspecific, mole + + + + + Hematological Diseases (disease ofthe blood - includes: anemia,hemophilia, leukemia, and sicklecell + + + + + Leg, nonspecific, short + + + + + Hip, right + + + + + Leg, nonspecific + + + + + Ear, left + + + + + Toe(s), nonspecific, mole + + + + + Eating Disorders(Includes Anorexia Nervosa andBulimia) + + + + + Breast, nonspecific + + + + + Toe(s), nonspecific, missing + + + + + Left Leg, fractured + + + + + Toe(s), nonspecific, extra + + + + + Extra breast, left + + + + + Ovary, left + + + + + Left Elbow, needle mark + + + + + Leg, left + + + + + Leg, left, artificial + + + + + Wrist, nonspecific + + + + + Chest + + + + + Ankle, nonspecific + + + + + Pulmonary (Lung) Diseases(includes Emphesyma, CysticFibrosis) + + + + + Upper Right Arm, mole + + + + + Paraplegic + + + + + Leg, lower right + + + + + Arm, nonspecific, crippled + + + + + Ear, right + + + + + Buttocks, left + + + + + Jaw, nonspecific, protruding + + + + + Hand, left + + + + + Buttock, right + + + + + Finger(s), right hand + + + + + Finger(s), nonspecific, missing + + + + + Breast implant, left and right + + + + + Arm, upper left + + + + + Arm, nonspecific + + + + + Face, nonspecific(use MIS field to further describelocation) + + + + + Leg, left + + + + + Kidney, right + + + + + Neck + + + + + Intestines + + + + + Right Leg, healed fractured + + + + + Lip, upper + + + + + Ankle, right + + + + + Artificial knee joint + + + + + Elbow, nonspecific, mole + + + + + Pierced nipple, right + + + + + Cheek (face), nonspecific + + + + + Right Elbow, fractured + + + + + Cleft Lip + + + + + Buttock, left + + + + + Artificial elbow joint + + + + + Wrist, left + + + + + Ear, right + + + + + Penis + + + + + Leg, left + + + + + Hand, left + + + + + Wrist, nonspecific + + + + + Arm, nonspecific + + + + + Eye, left, artificial + + + + + Wrist, right + + + + + Leg, nonspecific + + + + + Nose + + + + + Extra vertebrae, lumbar + + + + + Diabetic + + + + + Foot, left + + + + + Left Shoulder, needle mark + + + + + Right Toe, scar + + + + + Shoulder, right + + + + + Right Arm, healed fractured + + + + + Left Arm, fractured + + + + + Breast implant, left + + + + + Hand, right + + + + + Forearm, nonspecific, mole + + + + + Eye, nonspecific, missing + + + + + Foot, left + + + + + Skull + + + + + Calf, nonspecific + + + + + Clavicle, right + + + + + Arm, right upper + + + + + Shoulder, left + + + + + Protruding upper jaw + + + + + Left Forearm, discolored + + + + + Anticonvulsants (seizuremedicines - includes: DilantinMysoline, Phenobarbital, etc.) + + + + + Intrauterine device + + + + + Nervous conditions including:seizures, stroke, senility, andmental retardation + + + + + Denture, upper only + + + + + Thigh, right + + + + + Pierced eyebrow, nonspecific + + + + + Extra breast, center + + + + + Penis, needle mark + + + + + Jaw, lower left + + + + + Arm, lower left + + + + + Knee, left + + + + + Right Knee, artificial + + + + + Arm, upper right + + + + + Foot, left + + + + + Hand, left + + + + + Arm, nonspecific + + + + + Silver tooth + + + + + Wheelchair + + + + + Adenoids + + + + + Knee, nonspecific + + + + + Shoulder, right + + + + + Crippled leg, left + + + + + Finger, nonspecific + + + + + Left Leg, healed fractured + + + + + Left Knee, artificial + + + + + Right Calf, mole + + + + + Insulin + + + + + Ankle, nonspecific + + + + + Pancreas + + + + + Chin + + + + + Foot, left + + + + + Breast implant, right + + + + + Hip, left + + + + + Breast, left + + + + + Finger Joint, nonspecific, missing + + + + + Hearing Aid + + + + + Foot, nonspecific, needle mark + + + + + Finger(s), right hand + + + + + Neck + + + + + Angle, right + + + + + Brace, back + + + + + Quadriplegic + + + + + Left Calf, mole + + + + + Penile implant + + + + + Hand, nonspecific, missing + + + + + Lip, nonspecific + + + + + Chest + + + + + Knee, nonspecific + + + + + Freckles + + + + + Thigh, left + + + + + Hand, nonspecific, crippled + + + + + Ovary, nonspecific, missing + + + + + Arm, right + + + + + Finger, nonspecific + + + + + Leg, left + + + + + Calf, right + + + + + Lip, nonspecific + + + + + Shoulder, nonspecific, needle mark + + + + + Hypnotics (sleeping aides -includes: Barbiturates,Chloral Hydrate, Glutethemide,etc.) + + + + + Cheek (face), right + + + + + Hand, left + + + + + Full Body(Use only when the entire body - arms, legs, chest, and back are covered with tattoos.) + + + + + Hip, right + + + + + Spleen + + + + + Groin area + + + + + Foot, nonspecific + + + + + Arm, upper right + + + + + Right Hip, healed fractured + + + + + Buttock, nonspecific, needle mark + + + + + Finger(s), left + + + + + Tooth/Teeth, nonspecific, extra + + + + + Hip, nonspecific + + + + + Jaw, lower left + + + + + Pierced genitalia + + + + + Denture, lower only + + + + + Arm, left + + + + + EXTRA TOOTH/TEETH (LOWER JAW) + + + + + Narcotics (includes Heroin,Morphine, Dilaudid, Methadone,etc.) + + + + + Leg, right (Use the MIS field tourther describe location) + + + + + Buttocks, left + + + + + Chest + + + + + Thigh, right + + + + + Gallbladder + + + + + Left Hip, fractured + + + + + Arm, nonspecific, artificial + + + + + Buttock, right + + + + + Brace, left and right legs + + + + + Right Eye, tattoo + + + + + Left Toe, tattoo + + + + + Denture, upper and lower + + + + + Lip, lower + + + + + Artificial shoulder joint + + + + + Calf, left + + + + + Arthritis + + + + + Cardiac (heart medications -includes: Digitalis,Digoxin, etc.) + + + + + Abdomen + + + + + Right Calf, needle mark + + + + + Brace, left leg + + + + + Leg, right, artificial + + + + + Arm, lower right + + + + + Cheek (face), left + + + + + Cardiac pacemaker + + + + + Missing Vertebra(e),nonspecific + + + + + Extra vertebrae, nonspecific + + + + + Arm, left upper + + + + + Thigh, right + + + + + Blind, right eye + + + + + Hip, nonspecific + + + + + Chin + + + + + Full body + + + + + Buttock, left + + + + + Ankle, nonspecific + + + + + Arm, lower left + + + + + Thigh, right + + + + + Eyebrow, left/left eye area + + + + + Wrist, nonspecific + + + + + Calf, left + + + + + Breasts + + + + + Thigh, left + + + + + Deaf, left and right ears + + + + + Toe(s), right foot + + + + + Eye, right, artificial + + + + + Foot, right + + + + + Crippled leg, right + + + + + Pierced ear, one nonspecific + + + + + Leg, upper left + + + + + Hand, nonspecific + + + + + Hip, right + + + + + Breast + + + + + Neck + + + + + Head, nonspecific(use MIS field to further describelocation) + + + + + Cheek (face), left + + + + + Arm, upper left + + + + + Eyebrow, nonspecific + + + + + Staples + + + + + Cleft palate + + + + + Neck + + + + + Stutters + + + + + Back + + + + + Forearm, left + + + + + Cauliflower ear, right + + + + + Rib(s), nonspecific + + + + + Foot, right + + + + + Shoulder, nonspecific + + + + + Tuberculosis + + + + + Breast, right + + + + + Ear, nonspecific + + + + + Wrist, right + + + + + Knee, right + + + + + Breast, right + + + + + Uterus + + + + + Shoulder, left + + + + + Thigh, right + + + + + Shoulder, right + + + + + Nose + + + + + Liver Disease(Including cirrhosis andhepatitis) + + + + + Intramedullary rod + + + + + Clavicle, nonspecific + + + + + Jaw, upper left + + + + + Hand, left + + + + + Pierced right ear + + + + + Pierced tongue + + + + + Forearm, left + + + + + Knee, left + + + + + Back + + + + + Right Hip, needle mark + + + + + Mute (To be used if person is mutebut not deaf.) + + + + + Left Elbow, artificial + + + + + Leg, lower left + + + + + Foot, nonspecific + + + + + Finger(s), nonspecific, crippled + + + + + Back + + + + + Left Hip, needle mark + + + + + Down's Syndrome + + + + + Eyebrow, right/right eye area + + + + + Leg, nonspecific + + + + + Finger(s), nonspecific + + + + + Crippled foot, right(includes clubfoot) + + + + + Appendix + + + + + Chin + + + + + Left Elbow, mole + + + + + Extra vertebrae, cervical + + + + + Ear, right, artificial + + + + + Lip, lower + + + + + Neurological Conditions or Diseases(includes Cerebral Palsy, Epilepsy, Multiple Sclerosis, Parkinson + + + + + Jaw, nonspecific + + + + + Left Elbow, discolored + + + + + Pierced nose + + + + + Hip, right + + + + + Foot, right + + + + + Wrist, left + + + + + Behavior Disorder(includes Autism, Depression,Schizophrenia, Suicidal Tendencies(past and present) + + + + + Face, nonspecific(use MIS field to further describelocation) + + + + + Hand, nonspecific, discolored + + + + + Testis, right + + + + + Toe(s), nonspecific, needle mark + + + + + Shunt, arterial vascular + + + + + Pelvis bone, left + + + + + Breast, nonspecific + + + + + Breast, right + + + + + Arm, lower right + + + + + Lower Right Arm, needle mark + + + + + Gold tooth + + + + + Kidney, left + + + + + Leg, upper right + + + + + Pierced nipple, nonspecific + + + + + Breast, right + + + + + Crippled arm, right + + + + + Crippled foot, left(includes clubfoot) + + + + + Dimples, left cheek (face) + + + + + Jaw, nonspecific + + + + + Calf, right + + + + + Arm, right, nonspecific + + + + + Larynx + + + + + Abdomen + + + + + Ear, left + + + + + Arm, nonspecific, missing + + + + + Sternum + + + + + Barbiturates + + + + + Arm, left + + + + + Finger(s), left hand + + + + + Pierced ears + + + + + Knee, left + + + + + Arm, right, artificial + + + + + Knee, nonspecific + + + + + Cane + + + + + Finger(s), left hand + + + + + Right Arm, fractured + + + + + Heart or circulatory diseasesincluding: high blood pressure,heart failure, heart attack,hardening o + + + + + Deaf-mute + + + + + Artificial larynx + + + + + Arm, nonspecific + + + + + Finger(s), right hand + + + + + Forearm, left + + + + + Arm, left + + + + + Leg, lower left + + + + + Leg, lower left + + + + + Leg, nonspecific, missing + + + + + Ankle, right + + + + + Ear, nonspecific + + + + + Lip, lower + + + + + Shorter left leg + + + + + Contact lenses + + + + + Dimples, right cheek (face) + + + + + Arm, right upper + + + + + Penis + + + + + Chest + + + + + Anti-Inflammatory Medication + + + + + Shoulder, left + + + + + Clavicle, left + + + + + Finger(s), left hand + + + + + Bronchial Dilators(Includes inhalers) + + + + + Abdomen + + + + + Hip, nonspecific + + + + + Left Hip, healed fractured + + + + + Hand, nonspecific, needle mark + + + + + Hand, nonspecific + + + + + Prostate Gland + + + + + Foot, nonspecific + + + + + Elbow, nonspecific + + + + + Pelvis + + + + + Hand + + + + + Toes(s), right foot + + + + + Ear, nonspecific, artificial + + + + + Left forearm, mole + + + + + Tube in right ear + + + + + Extra finger(s), right hand + + + + + Hallucinogens + + + + + Deaf, left ear + + + + + Eyebrow, nonspecific + + + + + Finger, nonspecific + + + + + Right Eye, remove tattoo + + + + + Ankle, left + + + + + Cheek (face), nonspecific + + + + + Thyroid + + + + + Dimples, chin + + + + + Hand, right + + + + + Elbow, nonspecific, healed fractured + + + + + Hip, nonspecific, needle mark + + + + + Left Toe, discolored + + + + + Cheek (face), left + + + + + Knee, left + + + + + Rib(s), right + + + + + Hip, left + + + + + Leg, nonspecific, needle mark + + + + + Arm, right (Use the MIS field tofurther describe location) + + + + + Leg, right + + + + + Leg, right + + + + + Chin + + + + + Breast, right + + + + + Arm, right + + + + + Arm, nonspecific, needle mark + + + + + Extra nipple, nonspecific + + + + + Calf, nonspecific, discolored + + + + + Clavicle, nonspecific + + + + + Cheek (face), right + + + + + Tourette's Syndrome + + + + + Tranquilizers (includes:Valium, Thorazine, Stellazine,etc.) + + + + + Kidney, nonspecific, missing + + + + + Cheek, right + + + + + Elbow, left + + + + + Head + + + + + Shoulder, nonspecific + + + + + Forearm, right + + + + + Wrist, nonspecific + + + + + Brace, right leg + + + + + Arm, right + + + + + Jaw, upper right + + + + + Ankle, nonspecific + + + + + Leg, upper right + + + + + Toe(s), nonspecific, crippled + + + + + Breast, left + + + + + Shoulder, left + + + + + Left Hip, artificial + + + + + Back + + + + + Shoulder, nonspecific + + + + + Pierced back + + + + + Elbow, left + + + + + Pierced lip, lower + + + + + Tongue + + + + + Sternum + + + + + Brace, one leg, nonspecific + + + + + Left Eye, tattoo + + + + + Colostomy appliances + + + + + Finger(s), right + + + + + Right Toe, tattoo + + + + + Kidney Conditions or Diseases + + + + + Breast, nonspecific + + + + + Knee, right + + + + + Left Toe, mole + + + + + Buttock, left + + + + + Lip, upper + + + + + Arm, nonspecific + + + + + Penis + + + + + Left Elbow, healed fractured + + + + + Buttock, right + + + + + Wrist, left + + + + + Right Knee, needle mark + + + + + Finger(s), right hand + + + + + Left Calf, discolored + + + + + Eyebrow, right/right eye area + + + + + Paint (includes thinner) + + + + + Groin Area + + + + + Extra nipple, left + + + + + Face, dimple + + + + + Leg, lower right + + + + + Ear, left + + + + + Vascular prosthesis + + + + + Nose + + + + + Cheek (face), right + + + + + Attention Deficit Disorder + + + + + Breast, nonspecific, missing + + + + + Rib(s), left + + + + + Head, nonspecific + + + + + Arm, left upper + + + + + Elbow, nonspecific + + + + + Lower Left Arm, needle mark + + + + + Allergies including asthma + + + + + Deaf, right ear + + + + + Thigh, left + + + + + Hip, nonspecific, fractured + + + + + Ovary, right + + + + + Crutches + + + + + Forehead + + + + + Lip, right + + + + + Thigh, left + + + + + Forearm, nonspecific + + + + + Jaw, lower left + + + + + Crippled toe(s), left(includes webbed toes) + + + + + Neck + + + + + Analgesics (pain relievers -includes: Darvon, Acetominophen,Aspirin, etc.) + + + + + Elbow, left + + + + + Leg, nonspecific + + + + + Face, nonspecific (Use the MIS fieldo further describe location) + + + + + Pelvis bone, right + + + + + Arm, lower right + + + + + Orthopedic nail or pin + + + + + Upper Right Arm, needle mark + + + + + Crippled arm, left + + + + + Left Elbow, fractured + + + + + Cheek, left + + + + + Upper Left Arm, mole + + + + + Pelvis bone, right + + + + + Wrist, right + + + + + Blind, left eye + + + + + Transsexual(Miscellaneous field should indicate what the individual was at birth and what they are a + + + + + Pockmarks + + + + + Shoulder, right + + + + + Foot, left + + + + + Right Toe, mole + + + + + Foot, right, artificial + + + + + Left Arm, healed fractured + + + + + Foot, left + + + + + Ankle, right + + + + + Lung, left + + + + + Calf, nonspecific + + + + + Wrist, right + + + + + Shoulder, nonspecific + + + + + Shoulder, left + + + + + Crippled finger(s), left hand(includes webbed fingers) + + + + + Transvestite + + + + + Nose + + + + + Knee, right + + + + + Glue + + + + + Right Elbow, mole + + + + + Finger(s), left hand + + + + + Arm, right + + + + + Shoulder, right + + + + + Toe(s), left foot + + + + + Jaw, upper left + + + + + Crippled hand, right + + + + + Alzheimer's Disease + + + + + Toes(s), left foot + + + + + Knee, nonspecific + + + + + Left Eye, remove tattoo + + + + + Cheek (face), left + + + + + Breast, right + + + + + Pierced lip, nonspecific + + + + + Other therapeutic medicationsnot listed above, identify inthe MIS Field. + + + + + Alcohol + + + + + Ankle, nonspecific + + + + + Thigh, nonspecific, needle mark + + + + + Forearm, nonspecific + + + + + Left Ankle, needle mark + + + + + Bald/Balding + + + + + Knee, nonspecific, needle mark + + + + + Pregnancy - Present + + + + + Shoulder, nonspecific + + + + + Foot, nonspecific, artificial + + + + + Toe(s), right foot + + + + + Finger(s), left + + + + + Eyebrow, left/left eye area + + + + + Cheek (face), right + + + + + Knee, nonspecific + + + + + Foot, right + + + + + Hand, left + + + + + Eye, nonspecific, artificial + + + + + Tubes in ears, left and right + + + + + EXTRA TOOTH/TEETH (UPPER JAW) + + + + + Ankle, right + + + + + Hand, nonspecific + + + + + Arm, left + + + + + Rib(s), left + + + + + Chin + + + + + Right Elbow, needle mark + + + + + Wrist, nonspecific + + + + + Wrist, nonspecific, mole + + + + + Glasses (prescription) + + + + + Pierced lip, upper + + + + + Finger(s), left hand + + + + + Hip, nonspecific + + + + + Jaw, lower left + + + + + Forehead + + + + + Thigh, nonspecific + + + + + Cataract, right eye + + + + + Wrist, left + + + + + Eye, right + + + + + Elbow, nonspecific + + + + + Eye, nonspecific, tattoo + + + + + Wrist, right + + + + + Lung, right + + + + + Cataract, left eye + + + + + Blind, one eye, nonspecific + + + + + Abdomen + + + + + Wrist, left + + + + + Extra breast, right + + + + + Shoulder, left + + + + + Upper Right Arm, discolored + + + + + Right Shoulder, needle mark + + + + + Hand, right + + + + + Finger(s), nonspecific + + + + + Thigh, nonspecific + + + + + Arm, nonspecific + + + + + Missing Lumbar Vertebra(e) + + + + + Cheek, nonspecific + + + + + Lip, nonspecific + + + + + Knee, right + + + + + Hand, right + + + + + Face, nonspecific + + + + + Testical, nonspecific, missing + + + + + Ovaries + + + + + Chest + + + + + Forearm, right + + + + + Breast, nonspecific, artificial + + + + + Back + + + + + Clavicle, left + + + + + Other drugs of abuse not listedabove, identify in themiscellaneous (MIS) field + + + + + Cheek (face), nonspecific + + + + + Left Shoulder, artificial + + + + + Foot, left + + + + + Right Elbow, healed fractured + + + + + Knee, left + + + + + Head, nonspecific(use MIS field to further describelocation) + + + + + Rib(s), nonspecific + + + + + Hand, right, artificial + + + + + Forehead + + + + + Right Toe, remove tattoo + + + + + Lip, nonspecific + + + + + Cheek (face), nonspecific + + + + + Brace, left arm + + + + + Pelvis bone, left + + + + + Foot, nonspecific + + + + + Ankle, left + + + + + Arm, nonspecific, mole + + + + + Foot, right + + + + + Acne + + + + + Hand, left + + + + + Pregnancy - Past + + + + + Wrist, right + + + + + Neck + + + + + Ankle, left + + + + + Tonsils + + + + + Orthopedic screw + + + + + Other medical disorders/conditionsnot listed above, identify in theMiscellaneous (MIS) Field + + + + + Brace, neck + + + + + Shorter right leg + + + + + + + + + + + + + + + + CHROME, STAINLESS STEEL + + + + + BRONZE + + + + + MAUVE + + + + + GREEN, DARK + + + + + COPPER + + + + + BLACK + + + + + TURQUOISE (BLUE) + + + + + MAROON, BURGUNDY (PURPLE) + + + + + BLUE, DARK + + + + + BROWN + + + + + GOLD + + + + + SILVER + + + + + TAUPE + + + + + RED + + + + + CREAM, IVORY + + + + + CAMOUFLAGE + + + + + AMETHYST + + + + + BLUE + + + + + GRAY + + + + + ORANGE + + + + + PINK + + + + + TAN + + + + + TEAL + + + + + YELLOW + + + + + MULTICOLORED + + + + + GREEN + + + + + PURPLE + + + + + WHITE + + + + + GREEN, LIGHT + + + + + BLUE, LIGHT + + + + + LAVENDER (PURPLE) + + + + + BEIGE + + + + + + + + + + + + + + + + Friendship Mobile Homes + + + + + Augustana + + + + + Taylor Mfg. Co., Inc. + + + + + Evanston Coach Co. + + + + + Rover + + + + + Lee + + + + + Dave Hicks Co., Inc. + + + + + Rolite, Inc. + + + + + Capacity of Texas, Inc.Longview, Texas + + + + + American Steel Works + + + + + Harvest Motor Home + + + + + Imperial(for model years 1955-1983, useVMA/IMPE; for models prior to 1955and model years 1990-1993, + + + + + Caldweld Div., Smith International,Inc. + + + + + Kings Highway + + + + + Active Homes Corp. + + + + + Mobilemanor, Inc. + + + + + ShipmateSemek Mfg., Inc. + + + + + Holly Industries (or Coach Co.) + + + + + Craftsman (also see make Sears,Roebuck & Co.) + + + + + Top Kat + + + + + Panoz Auto Development Co. + + + + + Rockwell + + + + + Hairgrove Industries, Inc.Longview, Texas + + + + + Milwaukee Motorcycle Co. + + + + + Mustang Trailer Mfg., Inc.Quitman, Arkansas + + + + + S & M Trailer Co. + + + + + Bombardier Inc.Valcourt, Quebec; Ski-Doo/Moto Ski + + + + + Chaparral + + + + + Zollinger Trailer Co. + + + + + Wallstrong Boat Trailer + + + + + Aurora + + + + + CHEROKEE MANUFACTURING COMPANY; SWEETWATER, TN + + + + + Bowen Mobile Homes, Inc.Mfd. by Bowen Mobile Homes, Inc. + + + + + Onan Corp.Minneapolis, Minnesota + + + + + Sportmasters of Tennessee, Inc. + + + + + Corsair Div.Div. Divco-Wayne Industries + + + + + Amphicar + + + + + Colt + + + + + Goldenvale, Inc. + + + + + Quality Trailer + + + + + Cox Trailers + + + + + Asplundh Manufacturing Div.,Asplundh Tree Expert Co. + + + + + Ferrari + + + + + Scamper Coach Trailer + + + + + Aircap Manufacturers, Inc.Tupelo, Mississippi--mfrs. power mowers + + + + + Trojan + + + + + Scotsman Industries, Inc. + + + + + Galbreath, Inc.Mfrs. refuse containers and trailers--Winimac, Indiana + + + + + Jaclen Mfg. Co. + + + + + Bellamy's Mfr. & Research ProductsHiltons, Virginia + + + + + Chrysler Outboard CorporationHartford, WI + + + + + A & M Boat Trailer + + + + + Drive On Trailer Mfg.Mishawaka, Indiana + + + + + Hahn Motors, Inc. + + + + + Challenge-Cook Brothers, Inc.Industry, California + + + + + Butterfield Musketeer + + + + + World Trailers, Inc.Ocala, Florida + + + + + Peterson + + + + + Hollywood Mobile Homes + + + + + Fostron's Factory Outlet Trailers + + + + + Cruiser RV, LLC + + + + + Horseman Camper + + + + + Franklin Equipment Co. + + + + + GRM + + + + + Sachs + + + + + Nissan + + + + + Caravan Industries + + + + + Blackwell Burner Co.San Antonio, Texas . + + + + + Bricklin + + + + + B.FOSTER & COMPANY, INC.; WAYNESBORO,PA + + + + + Birmingham Mfg. Co., Inc.Springfield, Alabama + + + + + Lyncoach & Truck Co. + + + + + Bass Trail Trailer Co., Inc.Mfrs. boat trailers--Midway, Arkansas + + + + + Empress Industries + + + + + Schevelle Homes Sales Corp. of Alabama + + + + + RAYCO MANUFACTURING,INC.; WOOSTER, OH ; EQUIPMENT & TRAILERS + + + + + Puzey Bros., Inc.Fairmont, Illinois + + + + + Brentwood Mobile HomesSubsidiary DeRose Industries, Inc. + + + + + Vertex + + + + + Saturn Corporation + + + + + Roofmaster + + + + + Trail Aire, Inc. + + + + + New Idea Electric Lawn Garden Tractor + + + + + Prebuilt Mfg. + + + + + Classic Aluminum Trailer Corp. + + + + + Funliner Mfg. Co. + + + + + Biot Camping Trailer + + + + + Manitou Mobile HomesMfd. by Rochester Homes, Inc. + + + + + Victorian Homes, Inc.Middlebury, Indiana + + + + + Ajax Trailer Co. + + + + + Neckover Trailer Mfg. Co.Troup, Texas + + + + + U-HaulPhoenix, AZ; utility trailers + + + + + MCIsee Motor Coach Industries, Inc. + + + + + Alloy Machine Products Corp. + + + + + Automatic Drilling Machines, Inc. + + + + + Santa Fe Trailer Co. + + + + + Schantz & Sons, Inc.Marine, Illinois + + + + + Franklin Coach Co. + + + + + Tow Mor ProductsCanon, Georgia + + + + + Gardner, Inc.Mfrs. travel trailers--Bristol, Indiana + + + + + Silver Streak Trailer Co. + + + + + Mercury Coach Corp. + + + + + Buick + + + + + Trail-Easy Travel Trailer + + + + + FN + + + + + Fat City Choppers + + + + + Advanced Vehicle SystemChattanooga, TN; electric shuttle bus + + + + + Racmac Trailer + + + + + Original Equipment Manufacturing, LTD.Sudbury, Ontario + + + + + Dandy Mobile HomesMfd. by Dan's Trailer Supply, Inc. + + + + + Barcraft Homes, Inc. + + + + + Delta Homes Corp. + + + + + Bo-Mar Mfg. Co. + + + + + Chem-Farm, Inc. + + + + + B & J Enterprises, Inc.Sikeston, Mo; mfg. utility trailers + + + + + Big Valley Trailers, Inc.Wynne, Arkansas + + + + + Foremost (also see make J.C.Penney) + + + + + Oasis Travel Trailer + + + + + California Mobile Homes + + + + + Speed + + + + + Pinifarina + + + + + Vespa + + + + + Pierce Arrow + + + + + Trail Horse + + + + + Hitching Rail Trailer + + + + + COACH HOUSE,INC.; NOKOMIS,FL;CLASS B MOTORHOME + + + + + Blanco (model of Intramotor) + + + + + Skycraft Trailer + + + + + R & G + + + + + Sportsman's Dream Mfg. Co. + + + + + Leisure Home TrailerManufacturer-Leisure Time + + + + + Stoughton Trailers, Inc.Stoughton, Wisconsin + + + + + Cruisaire Motor Corp. + + + + + Black Knight (model of Vincent) + + + + + Poclain Div., J. I. Case + + + + + Skipper B Trailer Co., Inc.Div. of Anderson Ind., Inc., Burleson,(formerly Brown Ind.)Texas + + + + + Country EstateMfd. by Redman Homes, Inc. + + + + + TOMOS/TOMAS; BULLET, SPRINT & OTHER MODELS + + + + + WELDTITE TRAILERS; HUNTERSVILLE, NC + + + + + Jerry's Welding Service (JWS)Freeport, Illinois + + + + + Kanzol Enterprises, Inc. + + + + + Twilite Mobile Home Mfg. + + + + + R & H Horse Trailer + + + + + KMG INTERNATIONAL; TANGO TRADE NAME + + + + + Wrangler Recreational ProductsFlorence, Alabama + + + + + EXPEDITION MOTORHOMES; MANUFACTURED BY FLEETWOOD + + + + + Gin Ray Mfg. Co.Nicollet, Minnesota + + + + + LONE STAR MANUFACTURING; VALLEY VIEW , TEXAS + + + + + Warrenville Trailer Mfg., Inc.Warrenville, Illinois + + + + + Single Tilt Trailer + + + + + Superformance International (Maker of replica vehicles) + + + + + B & B Trailer Mfg., Inc.Wapanuck, Oklahoma + + + + + Quality Steel & Aluminum Products + + + + + Cony Truck (Japan) + + + + + Horizon Motor Home + + + + + Snapper + + + + + Aztec Mobile Homes + + + + + Herter + + + + + Raes Utility Trailer + + + + + Syrena + + + + + Nuttall Trailers + + + + + Clapper Camper + + + + + International Trailer Corp. + + + + + Junior Camping Trailer + + + + + Hiawatha Mobile Homes + + + + + Haban/Agri-Fab or Agri-Fab/Haban + + + + + JINSCENG MOTORCYCLES/MINIBIKES, CHINA + + + + + Wonder Land Camper + + + + + Safeway Mobile Homes Div.Div. Commodore Corporation + + + + + Crown + + + + + Goodyear Camper Mfg., Inc.Lincoln, Nebraska + + + + + American Aluminum Co. + + + + + Parkwood Mobile Homes of Florida + + + + + Nissan Diesel Motor Co. (for reference + + + + + Rutt + + + + + Travelmaster, Inc. + + + + + Peddlers Choice + + + + + Easy Rider Trailer + + + + + BERING TRUCK DISTRIBUTION, LLC FRONT ROYAL, VA + + + + + Circle J Stock TrailerMfd. by Western World Inc., previouslyknown as Western Trailers Works, Inc. + + + + + Wildcat + + + + + Motel Mobile Corporation of America + + + + + OZBIKE; CYCLE IMPORTS; MIAMI,FL + + + + + Powell + + + + + Demco + + + + + Steelco, Inc.Alto Loma, Texas + + + + + OCI MANUFACTURING CO.; OREGON, IL + + + + + L & D TRAILERS INCORPORATED; SIKESTON,MO + + + + + Teton Travel Trailer + + + + + McClenny Machine Co. of Virginia, Inc.Suffolk, Virginia + + + + + CONTRACT MANUFACTURERS INC ALSO KNOWN AS :CM TRAILERS; MADILL, OK + + + + + Shasta Industries + + + + + HEARTLAND TRAILER MANUFACTURING & SALES, INC.; SIKESTON, MO BARLOW TRAILERS + + + + + AAA Mobile Home Mfg. Co. + + + + + Mid States Camping Trailer + + + + + Cloud Electric Vehicles + + + + + Hycaloader Co., Inc. + + + + + L & L Trailers + + + + + Travco Corp. + + + + + Stockland + + + + + Brantley Mfg. Co.Fredrick, Oklahoma + + + + + Hill Country Homes, Inc. + + + + + Emmert Mfg. Co., Inc. + + + + + All Star Coach, Inc. + + + + + Hall, R.D. Mfg., Inc. + + + + + Graco, Inc. + + + + + Silverline + + + + + Southern Classic Trailer Mfg., Inc. + + + + + Ada Horse Trailer + + + + + Melvin Manufacturing Corp.See Whip It Snowmobiles + + + + + Rea Trailer Co.Elgin, Illinois + + + + + Coach Craft, Inc. + + + + + Luv-It Mfg. + + + + + Edsel + + + + + KENNY BOYCE MOTORCYCLES + + + + + U.S. AIRFORCE VEHICLE; MAKE IS UNKNOWN + + + + + Trailblazer Trailer + + + + + Envirotech Corp., EIMCO ProcessMachinery Div. + + + + + Vought Industries + + + + + Theurer Atlantic, Inc.Newark, New Jersey + + + + + Wolseley + + + + + CCM/Clews + + + + + Custom Craft Mfg. Co. + + + + + Mobile Office, Inc. + + + + + Electric Vehicle Systems, Inc. + + + + + Graciela + + + + + Allied + + + + + K & O MANUFACTURING CO., INC.;HULL, IA + + + + + Bell's Custom Coaches + + + + + Clark-Wilcox + + + + + Autobieu + + + + + Passport + + + + + UTILITY TOOL & BODY CO., INC. CLINTONVILLE, WI + + + + + Laconia Custom Cycles + + + + + Carson Trailer IncCarson, CA; utility trailers + + + + + All States Trailer Co. + + + + + Marco + + + + + Double Shuffle Mobile Home + + + + + Commander Motor Home + + + + + Kargo TrailersIvyland, Pennsylvania + + + + + Encore + + + + + Foxi + + + + + Palace Corp. + + + + + Norse Trailer + + + + + DuAl Mfg. Co. + + + + + Golden State Mobile Homes + + + + + Daytona + + + + + Florida Trailer Co. + + + + + Waverly StructuresNorth Carolina + + + + + North Country + + + + + Swan Industries + + + + + United Motors + + + + + HIGH-LITE RIDES, INC.; GREER, SC + + + + + Allied Steel and Tractor Products,Inc. + + + + + Luxury Homes, Inc. + + + + + Dickirson Equipment Corp.Salem, Illinois + + + + + HAWN FREEWAY TRAILER SALES (HAWN TRAILERS); DALLAS, TEXAS + + + + + Bolinger Flatbed Trailer + + + + + Corey Enterprises + + + + + ABC Coach Co.From 1960 on, see Vought Industries + + + + + Cadet Coach Corp. + + + + + Orbit Industries, Inc. + + + + + Appleton Trailer + + + + + Kampers Kabin + + + + + ISHIKAWAJIMA-HARIMA HEAVY INDURSTRIES CO, LTD.; JAPAN + + + + + Fiesta (imported by Ford) + + + + + Travel Mate Trailer + + + + + Bullet Trailers, Inc.Boat Trailers, Glen Burnie, Maryland + + + + + AMERICAN YARD PRODUCTS, RIDING MOWERS, MOWERS;WEEDEATER & ELECTOLUX BRAND PRODUCTS + + + + + Osterlund, Inc.Harrisburg, Pennsylvania + + + + + National Mobile Homes + + + + + Ascort + + + + + Windjammer Motorcoach + + + + + Gary Carolina Co. + + + + + Tri-Rod + + + + + Layton Mfg. Co., Inc.Salem, Oregon + + + + + Henderson Mfg. Co. + + + + + Gemtop + + + + + Born Free + + + + + White GMC + + + + + Bell Mfg. Corp. + + + + + Lorak, Inc. + + + + + Williams Craft, Inc. + + + + + Hy-line Enterprises, Inc.Elkhart, Indiana + + + + + Mitsubishi + + + + + Waymatic Welding & Fabricating Co.Fulton, Kentucky + + + + + Martco Waste System Equipment + + + + + Harris Honker Camper Mfg. + + + + + Felburn Flatbed Trailer + + + + + Camelot Camper Trailer + + + + + Marathon Homes Corp.Elkhart, Indiana + + + + + JAMIE'S WELDING; OKLAHOMA + + + + + Carl A. Johnson & Sons + + + + + Kden-Craft Products, Inc. + + + + + FIAT KOBELCO; CONSTRUCTION EQUIPMENT/MACHINERY + + + + + Royal Cargo Trailers, Inc. + + + + + Vacation Homes + + + + + STANLEY YARD & GARDEN TRACTOR/MOWER ETC. + + + + + Blaine's Custom Mfg. ServiceJackson, Mississippi + + + + + Felber + + + + + Sho-Me Campers Co. + + + + + Vogue Motor Home + + + + + Pathfinder Mobile Homes + + + + + Alabama Trailer Co.Birmingham, Alabama + + + + + Low Boy Trailer + + + + + F & H Mfg. Co. + + + + + Italtelai Mfg. Co. (Italy) + + + + + Rycsa + + + + + Allied Mfg. Co. + + + + + WTM, INC.; HALEYVILLE, AL + + + + + Tuk-A-Way-Trailer + + + + + Zeta + + + + + Dan Dee Industries, Inc. + + + + + Blue Gator Boat Trailer + + + + + Star + + + + + Pleasuremate Industries + + + + + FWD Corp. + + + + + Owatonna Manufacturing Co., Inc. + + + + + Crawler Trailer + + + + + Rokon + + + + + I.D.E.C.O. + + + + + Park Estates Homes + + + + + Carter Trailer Co., Inc.Newport, Arkansas + + + + + Sabra + + + + + Maxim Ind., Inc.Mfr. of Maxim Fire Trucks, Middleboro,Massachusetts + + + + + Scenic Campers Co. + + + + + SIMPSON WELDING & CUSTOM TRAILERS / HOWBOY TRAILERS; HUGO, OK + + + + + Telsmith Div., Subsidiary of Barber-Greene Co. + + + + + Comanche Mobile Homes + + + + + Langley Mfg. Div., M.D. Knowlton Co. + + + + + Squire Travel Trailer + + + + + HAWK TRAILERS, LLC; MANAWA, WI + + + + + UAZ (Ulianovsk Automobile Zavod) + + + + + Glasride Trailer + + + + + Essix + + + + + Allmand, Inc.Holdrege, Nebraska + + + + + Rootes + + + + + Apex Travelers, Inc.Elkhart, Indiana + + + + + Western Dynamics Corp. + + + + + Glastron, Inc.New Braunfels, Texas + + + + + Richland Homes Mfg. Co.Subsidiary Magnolia Mobile Home + + + + + Lichty's Blacksmithing, Inc.Silverton, Oregon + + + + + Vac-Con + + + + + Ontario Bus Industries, Inc.Mississauga, Ontario, Canada; bus. + + + + + Massey-Ferguson, Inc.Des Moines, IA + + + + + DeSoto + + + + + Flasko Mfg. Co. + + + + + Tennant Co. + + + + + Sun Devil Trailers, Inc.Boat trailers--Tulsa, Oklahoma + + + + + Beechcraft Mobile Home + + + + + BantamDiv. of Koehring Co., Waverly, Iowa + + + + + LES MACHINERIES PRONOVOST, INC; CANADA + + + + + Feldman Engineering & Mfg., Co. + + + + + Flamingo Trailer Mfg. + + + + + General Trailer Co., Inc.Springfield, Oregon + + + + + Holsclaw Brothers, Inc.Evansville, Indiana + + + + + Barnes Pump Drain Unit + + + + + Frost Trailer Co.West Monroe, Louisiana + + + + + VM Boat Trailer + + + + + Thomas Conveyor Co. + + + + + Boatel Trailer + + + + + GENIE CONSTRUCTION EQUIPMENT; AERIAL,SCISSOR LIFTS ETC. + + + + + Trans Canada Rent-A-Trailer System + + + + + Giddings Machine Co., Inc.Fort Collins, Colorado + + + + + Monroe Tractor + + + + + Highway Trailer of Wisconsin &California + + + + + Prairie Trailer Sales & Service + + + + + Hackney & Sons, Inc. + + + + + Bebe + + + + + Pilgrim Mfg. Co. + + + + + CHEROKEE MOTORCYCLE COMPANY; OKLAHOMA FORMERLY KNOWN AS ''FAST TRAC MANUFACTURING '' OUT OF CALIFORN + + + + + Victoria + + + + + Ditch Witch Div.Div. of Charles Machine Works, DIWTfor reference only + + + + + Orthman Mfg., Inc. + + + + + Chippewa Mobile Homes Corp. + + + + + Dutec Trailer + + + + + Taylor Machine Works, Inc. + + + + + RED HORSE MOTORWORKS; LENEXA, KS + + + + + Draglite Trailer + + + + + HME, INCORPORATED; WYOMING, MI + + + + + Wylie Manufacturing Co.Subsidiary E. D. Etynre & Co.--Oregon,Illinois + + + + + Mack Trucks, Inc. + + + + + DAWSON ENTERPRISES; ELKHART, IN + + + + + Falcon Coach Co. + + + + + Miller & Smith + + + + + U.S. COAST GUARD; MAKE IS UNKNOWN + + + + + Clark-Gravely Corp.Gravely tractors + + + + + MJM Enterprises, Inc. + + + + + Randolph Coach + + + + + Checker + + + + + Marine Camper Trailer + + + + + AquaforgeWentzville, Missouri + + + + + Cliff Hall, Inc. + + + + + Skylark Industries, Inc.Bristol, Indiana + + + + + PW Trailer + + + + + Eastern-Bilt, Inc. + + + + + Curbmaster of America, Inc. + + + + + Kiefer Built, Inc.Kanawha, Iowa + + + + + Empire Plow Co. + + + + + SMPMfd. by Sweetwater Metal Products Co.,Inc. + + + + + Bizzarrini + + + + + Dynacruiser Mount Trailer + + + + + Brandt Trailers, Inc. + + + + + Russco Lowboy Trailer + + + + + Sunshine HomesRed Bay, Alabama + + + + + Piqua Engineering, Inc. + + + + + Trans-Sport + + + + + Highway IndustriesEdgerton, Wisconsin + + + + + Independent Products Co. + + + + + Tote Co.Lenox, Iowa + + + + + Super Flea + + + + + Pre-Built Structures + + + + + FINN CORPORATION; FAIRFIELD, OH + + + + + Artcraft Mobile Homes Mfg. Co. + + + + + Azalea Homes + + + + + Robinhood Motor Homes, Inc.Redondo Beach, California + + + + + TRAILS WEST MANUFACTURING OF IDAHO, INC.; PRESTON, ID + + + + + Travis + + + + + Cycle-MateMfd. by T & T Industries + + + + + Burnup and Sims, Inc.West Palm Beach, Florida + + + + + Degelman Industries, Ltd. (Canada) + + + + + Ultra, Inc. + + + + + Fleming Equipment Co.Ashdown, Arkansas + + + + + Over-Lowe Co. + + + + + Willys-Overland + + + + + Travel Industries + + + + + Essick Trailer + + + + + WORKHORSE CUSTOM CHASIS + + + + + Renault + + + + + Quincy Compressor Div.Colt Ind, Inc., Quincy, Illinois + + + + + MastercraftBryan Metal Products, Inc. + + + + + Ajax Electric Motor Corp. + + + + + Volkswagen + + + + + Linville Horse Trailer + + + + + Ryder + + + + + Snow Tri Scat + + + + + Exco Boat Trailers + + + + + Brandywine Travel Trailer + + + + + Big Horn Trailer + + + + + Griffith + + + + + Astro Mobile Homes Mfg. Co. + + + + + CAR MATE TRAILERS; LEEPER, PENNSYLVANIA + + + + + Ag-Tronic, Inc. + + + + + Brigadier Mobile HomesDiv. Brigadier Industries, Inc. + + + + + CHEROKEE FABRICATION, INC.; OCALA, FLORIDA + + + + + Arista + + + + + Academy Mobile HomesMfd. by Skyline Motorized Div. + + + + + Gorman-Rupp Company, TheMansfield, Ohio + + + + + Dragon ESP, Ltd., or Environmental Service Products + + + + + AVANTI CYCLES,MOPEDS & SCOOTERS + + + + + Fortune Homes Corp. + + + + + NORTHWOOD OF VIRGINIA; WINCHESTER VIRGINIA + + + + + Norcal Boat Trailer + + + + + DMH Co.Div. of National Gypsum Co., St. Louis,Michigan + + + + + Commercial Vehicles, Inc.Tulsa, Oklahoma + + + + + Austin-Healy + + + + + COMPETITIVE TRAILERS, INC.; BELLFLOWER CALIFORNIA + + + + + Bug + + + + + Tama + + + + + WARRIOR TRAILERS, ONTARIO, CA + + + + + Century Engineering Corp. + + + + + Crimson HomesDiv. Winston Industries, Inc. + + + + + YARD MACHINE; SUBSIDIARY OF MTD INDUSTRIES (MOWERS ETC) + + + + + Newell Coach Corp.Miami, Oklahoma + + + + + Great Lakes Mobile HomesDiv. of Guerdon Industries + + + + + Ja-Mar Manufacturing IncSikeston, MO + + + + + Short Go, Inc. + + + + + Mobile Home Industries, Inc.Tallahassee, Florida + + + + + B & B Custom Built TrailersNewport, Arkansas + + + + + Zar Car + + + + + Enterprise Motor Home + + + + + Brewer Utility + + + + + Twin Grove Mfg., Inc.Verona, Wisconsin + + + + + Kenskill Trailer Corp. + + + + + KTM + + + + + CCCCrane Carrier (A CCI Co.) + + + + + Motobic + + + + + B & W Custom Trailers, Inc. + + + + + L & M Trailer Mfg. + + + + + Lonnie's Trailer Sales + + + + + Stoner Trail + + + + + DillyNelson-Dykes Co., Inc. + + + + + Haulmark Industries, Inc. + + + + + White Motor Corp. + + + + + Black Diamond Trailer, Inc.New Tazewell, Tennessee + + + + + Hus-Key Mfg., Inc. + + + + + CHASSIS KING, LLC; CLEARWATER, FL + + + + + Royal Crest Co. + + + + + Fountain Flatbed Trailer + + + + + Utopia Coach Corp. + + + + + Kropf Mfg. Co., Inc. + + + + + Chevallero Motor Home + + + + + DENCO MANUFACTURING + + + + + LOAD TRAIL, INC.; SUMNER, TX + + + + + Young Corp. + + + + + ROCKIN L. RIGGIN CORP.; GRAHAM, TEXAS + + + + + Murray Marine Corp. + + + + + Borella + + + + + Bros. Div.American Hoist Derrick Co., St. Paul,Minnesota + + + + + Phillips TrailersChickasha, Oklahoma + + + + + Eversman Mfg. Co. + + + + + TN TRAILERS, LLC; SHIPSHEWANA, INDIANA + + + + + Roadway Trailer, Ltd. + + + + + W & W White Horse Trailer + + + + + WORTHINGTON WELDING, INC. TRAILERS; PENNSYLVANIA 4MV OR 1W9/OO3 + + + + + R & A MANUFACTURING PARTENRS, LTD.; HOUSTON, TX + + + + + Bi-Motor Stallion + + + + + Hagon + + + + + Kal-Custom Boat Trailer + + + + + Millan Flatdeck + + + + + Supertrail Mfg. Co., Inc.Aberdeen, Misssippi + + + + + C&C MANUFACTURING & FAB; HAZLETON, PA + + + + + Malheur Mobile Homes, Inc. + + + + + Empire Corp., Inc. + + + + + Baker Equipment & Engineering Co. + + + + + AMC Trailer + + + + + Scepter Utility Trailer + + + + + General Engines Co., Inc.Throfare, New Jersey + + + + + Delavan Trailer + + + + + Gardner-Pacific-Sunrader, Inc.Vallejo, California + + + + + TRAILMANOR, INC.; LAKE CITY, TN + + + + + ADLER + + + + + Girard's Mfg. Co. + + + + + Valley TrailersCynthiana, Ohio + + + + + Insley Manufacturing Co.Subsidiary AMCA International Corp. + + + + + Jet + + + + + Chausse Manufacturing Co., Inc. + + + + + Gerard Lowboy Trailer + + + + + Lone Star Boat Mfg. + + + + + Titan Trailer Corp.Div. Concord Mobile Homes--Woodland,California + + + + + Tawas Trailers, Inc. + + + + + Crowley Mfg.Mathiston, Mississippi + + + + + Construction Machinery Div., ClarkEquipment Co. + + + + + Hornet Flatbed Trailer + + + + + Lintzcraft Travel Trailer + + + + + Watt Camper + + + + + Desperado Motor Racing & Motorcycles, Inc. + + + + + MADAMI MOTOR SCOOTERS, ETC. + + + + + BolensMfd. by Outdoor Power Equipment Div.,FMC + + + + + Camp-N-All Co. + + + + + Donahue Corp., The + + + + + Dana Truck Mount Camper + + + + + Conner Industries, Inc. + + + + + TROPHY HOMES, INC.; ELKHART, IN + + + + + Com-Fab, Inc. + + + + + Toyoco + + + + + Deere and CompanyMoline, IL + + + + + Klassic Trailer Mfg. + + + + + Clinton Engine Corp. + + + + + Lone Star Classics + + + + + Cyclescoot + + + + + Custom Bond Mfg. Co.Lansing, Michigan + + + + + Regis Corp. + + + + + Watsonian + + + + + Springcycle + + + + + C.M.Cub (mfd. by SWI Tong Corp.,imported by Convenience Machines) + + + + + Citroen + + + + + Italian Ford + + + + + Bullmobile Trailer, Inc.Caldwell, Kansas + + + + + A. J. Travelute Trailer Mfg. Co. + + + + + BRADTEC, LTD.; DERBY, KS + + + + + R. O. Corp. + + + + + WILKENS MANUFACTURING, INC.; STOCKTON, KANSAS + + + + + XYZ Trailer + + + + + Conestega Mfg. Co. + + + + + Wolfe Mfg. Co. + + + + + Raymond Products Co. + + + + + CARRY ON TRAILER CORP + + + + + Blair HouseMfd. by Manufactured Housing ManagementCorp. + + + + + Charlie Perkins Trailer Company, IncHamshire, TX + + + + + Howard Rotavator Co., Inc., Subsidi-ary of Howard Machinery, Ltd. + + + + + Kent Air Tool Co. + + + + + Herter's, Inc.Waseca, MN + + + + + Calis Travel Trailer + + + + + Commuter Vehicles, Inc. + + + + + Pontiac (Canadian) (Also see makePontiac) + + + + + Hallmark Motor Home + + + + + Jack's Trailer Mfg. + + + + + Craftmade Homes, Inc. + + + + + North American Shipbuilding + + + + + Winston IndustriesMobile homes--Double Springs, Alabama + + + + + Rance Aluminum, Inc. + + + + + GENERAL ENGINES CO. INC.; FLORIDA EAGER BEAVER & INTERSTATE + + + + + Strale + + + + + Beechwood Motor Home + + + + + GLENDALE RECREATIONAL VEHICLES; STRATHROY, ONTARIO, CANADA + + + + + Clayton Homes, Inc.Div. of Clayton Industries, Inc.,Knoxville, Tennessee + + + + + Thiele, Inc.Windber, Pennsylvania + + + + + Prior Products, Inc.Dallas, Texas + + + + + Oklahoma Horse Trailer + + + + + Bushog/Loadcraft (Div. Allied ProductsBrady, TexasCorp.) + + + + + Tuffy + + + + + Sears, Wendell + + + + + Bethany Fellowship + + + + + Zhejiang Lingyun Motorcycle Co., Ltd. + + + + + Trail Mate Trailer Co.Bellingham, Washington + + + + + Cooper + + + + + Sprite + + + + + BYSON TRAILERS + + + + + General Motors Corp. + + + + + Trailer Coach Metal Spec.Vancouver, Washington + + + + + Envoy + + + + + Interstate Trailers, Inc.Arlington, Texas + + + + + Caravel IndustriesWylliesburg, Virginia + + + + + GrasshopperMfd. by Moridge Mfg., Inc. + + + + + Navistar + + + + + Blix Coach + + + + + Riverdale Steel Works + + + + + Can-Car(Canadian Car Trailer Sales Div.)Rexdale, Ontario--Div. of Hawker-Siddeley, Canada + + + + + Cheston & Eshelman Co. + + + + + A & B Trailer Mfg. Co., Inc.Crown Point, Indiana + + + + + Perone Trailer + + + + + Three C's, Inc. + + + + + ZHONGYU GROUP; MOTORCYCLES ETC. + + + + + Speedway + + + + + Morgan Equipment Co. + + + + + Winpower Corp.Newton, Iowa + + + + + Sisu USA Inc. + + + + + Field Office Mfg. Co. + + + + + EXMARK RIDING LAWN MOWER + + + + + Chin Yuan Chi Casting Corp.Paichung, Taiwan + + + + + Eric Enterprises, Inc.Coventry, Connecticut + + + + + Gruendler Crusher and Pulverizer Co. + + + + + POWER TRAC MACHINERY + + + + + Red Arrow Trailer Co. + + + + + HAMPTON AMUSEMENT RIDES, LLC; MISSOURI + + + + + Pamco Trailer + + + + + Pauli Cooling Systems, Inc. + + + + + Asuna + + + + + Kioti + + + + + Huber-Warco + + + + + Peugeot + + + + + Batavus Mo-ped + + + + + American Hauler Ind. + + + + + Huntsman, Inc.Chetopa, Kansas + + + + + Lippert Components Mfg., Inc. + + + + + VAL + + + + + Taylor Made Choppers + + + + + Gator Products, Inc.Jacksonville, Florida + + + + + JOHN KERR MANUFACTURING, CO. + + + + + Carnes Welding & Fabricating Co.Crescent, Oklahoma + + + + + Kaj'n Homes, Inc. + + + + + USTS MANUFACTURING. INC; CANTON, OHIO + + + + + Willys + + + + + Connell Industries, Inc.Phil Campbell, Alabama + + + + + Hitachi + + + + + HRG + + + + + Loadmaster Trailer Co., Ltd. + + + + + Seagrave Fire ApparatusClintonville, Wisconsin + + + + + Sopko Mfg., Inc. + + + + + Dawes Products Co. + + + + + Dong Feng (East Wind) + + + + + Ioni-A-Home Mfg. Co. + + + + + Escape Trailer + + + + + Bass TrackerMfd. by JLM Industries + + + + + Trevco Enterprises + + + + + Pick-Up Top Mfg. + + + + + Zimmerman Automobiles + + + + + PEMBERTON FABRICATORS, INC.; RANCOCAS, NJ + + + + + American Jenbach Corp. + + + + + Hino + + + + + Nelson-Dykes Co. + + + + + Husqvarna + + + + + Lazer + + + + + Load Max Trailers, Ltd. + + + + + Scott Midland Div.Div. A-T-O, Inc. + + + + + Ponycycle + + + + + Circle S Star RouteSulphur Springs, Texas + + + + + Hyundai Trailers + + + + + Ikarus Buses and Coaches + + + + + WES-TEX MANUFACTURING, INC.; LUBBOCK, TX + + + + + Newman Trailers + + + + + Sellers Trailer + + + + + Rocket Trailer, Ltd. + + + + + Park Lane Mobile Homes + + + + + Northway Trailer + + + + + Westinghouse Equipped Mobile Home + + + + + IRONDOG TRAILERS + + + + + E-Max Motorcycles/GGC-Global Generation Cult GMBH + + + + + Wain-Roy, Inc. + + + + + Steyr-Puch + + + + + Bremen Sport Equipment, Inc.(Bremen,IN) + + + + + Wiggins Lifts Co., Inc.Mfgs. Forklifts + + + + + Lynnton Mfg. Co. + + + + + The Broyhill Co. + + + + + XPLORER MOTOR HOME DIV OF FRANK INDUSTRIES + + + + + Clenet Coach Works + + + + + Aluma-liteMfd. by Holiday Rambler Corp. + + + + + Cherokee Mobile Homes + + + + + Big Joe Manufacturing Co. + + + + + Kar-Go Metal Stamping Co.Willow Grove, Pennsylvania + + + + + Sierra Campers Mfg. + + + + + Elliott Mobile Home Mfg. + + + + + Krager Kustom Koach, Inc. + + + + + Acorn Equipment Corp. + + + + + Wenger Mfg. + + + + + Opel (imported by Buick) + + + + + Marcos + + + + + Elcar Mobile Homes, Inc.Div. Divco-Wayne Industries + + + + + Wisconsin Tag-A-Long Trailer + + + + + Reconstructed Motorcycle (SeeOperating Manual,Part 1) + + + + + Cadillac + + + + + Tanckon FRP, Inc. + + + + + Tem Ken Trailers Mfg. + + + + + Allen Engineering Corp. + + + + + Hoosier Mobile Homes + + + + + Yenko + + + + + Citicar (electric car) + + + + + Camp Equipment Co., Inc + + + + + Rhino Tool Company + + + + + WSK + + + + + Five-K Trailer Co., Inc.Bethalto, Illinois + + + + + California Camper Mfg. + + + + + Melroe Tractor Truck + + + + + Time OutT.O. Corp. + + + + + Grady-White Boat Co. + + + + + Milwaukee Electric Tool Corp. + + + + + Versa Two Wheel Trailer + + + + + (Generic Code--for use only whenmanufacturer is not listed) + + + + + Carrie-Craft Div.Div. Thrift Cts. of America + + + + + Argo + + + + + Canoga Mfg. Co., Inc.Mfg. Cement Mixer + + + + + Allied American Builders Corp. + + + + + Georgia Trailer & Equipment Corp.Macon, Georgia + + + + + Little Chum Mfg. Co. + + + + + Penn-Cupit Industries Ltd. + + + + + Pacific Boat Trailers, Inc.Anaheim, California + + + + + Bridge Mfg. and Equipment Co.Woodburn, Indiana + + + + + Comet Mobile Homes + + + + + Barrington HomesSubsidiary Fleetwood Interprises + + + + + Golfmobile + + + + + Transit + + + + + Joseph Thatcher + + + + + Sani-Cruiser Co. + + + + + CMI Corp. + + + + + Bowsman TrailersThree Rivers, Michigan + + + + + New Style Homes, Inc.Pineville, Missouri + + + + + U.S. COACHWORKS, INC.;ZEIGLER, IL + + + + + Wilray ManufacturingFt. Benton, Montana + + + + + The Highland GroupBeachwood, OH; utility trailers + + + + + TEC + + + + + Grove Mfg. Co.Affiliated with Kidde, Inc.,Shady Grove,Pennsylvania + + + + + Hoffman + + + + + COUNTRY CLIPPER; RIDING MOWERS; JAZEE MODEL DIVISION OF SHIVVERS MANUFACTURING + + + + + All A Cart Mfg., Inc. + + + + + Chrysler Boat Co. + + + + + Torch IndustriesElkhart, Indiana + + + + + Pama Camper + + + + + Road King Travel Trailer + + + + + Hide-A-Way Camper + + + + + Shivvers, Inc. + + + + + Aircraft (see Operating Manual,Part 1, Section 2.) + + + + + Gold Leaf Engineering Co. + + + + + GREAT DANE INCORPORATED; FARM & GARDEN EQUIP + + + + + Four Seasons Travel Trailer + + + + + Midway Engineering Co. + + + + + Traveliner Travel Trailer + + + + + Airflyte Mfg. Co. + + + + + Young Spring & Wire + + + + + Wagon Train, Inc. + + + + + Coyote Mfg. Corp.Corona, California + + + + + Copco Steel & EngineeringSouthbend, Indiana + + + + + Eager Beaver Trailer + + + + + Wigwam Motor Home + + + + + Graffin Wellpoint Corp. + + + + + Trailite Trailer + + + + + Neoplan USA CorporationLamar, CO; transit buses + + + + + Debonair + + + + + GAZ + + + + + Lee Coaches + + + + + Magnum Custom Trailer Mfg. Co.Boat utility trailers--Austin, Texas + + + + + Sportsman + + + + + Rockne + + + + + ColumbiaSee MTD Products, Inc. + + + + + Darvon Double Trailer + + + + + Indio Trailer Mfg. Corp. + + + + + Harlow Travel Trailer + + + + + Mercury Boat Co. + + + + + Stillwater Supply Co. + + + + + DKR + + + + + HITCH-HIKER MANUFACTURING, INC., NEW MIDDLETOWN, OH + + + + + Sloat Mfg. Co. + + + + + Pegaso + + + + + Meade + + + + + Countryside Mobile HomeMfd. by Remic Industries, Inc. + + + + + Hellwood Trailer + + + + + Flag Ship Boat Trailer + + + + + TEAM SPIRIT TRAILERS; ELKHART, INDIANA + + + + + Brookwood Mobile Home + + + + + WOOD-MIZER PRODUCTS, INC.; INDIANAPOLIS, IN + + + + + CROSS COUNTRY MANUFACTURING; GREENE, NEW YORK (TRAILERS) + + + + + Modern + + + + + Olympic Trailers + + + + + Excelsior + + + + + Clifford B. Hanney & Sons, Inc. + + + + + Karson Industries, Inc. + + + + + Great Escape + + + + + Montgomery Ward + + + + + R-VISION, INC. INDIANA; MANUFACTURER OF TRAIL BAY TRAVEL TRAILER AND OTHER BRANDS + + + + + Hampton Homes, Inc.Edwardsburg, Michigan + + + + + Sherwood Baronet Tent Trailer + + + + + CANNONDALE CORPORATION, MAKER OF MOTORCYCLES + + + + + Monarch Boat Co.Camper Division + + + + + D.B. + + + + + Magic Touch, Inc. + + + + + Wishbone Trailers, Inc.Hot Springs, Arkansas + + + + + Star Fire, Inc. + + + + + Part (Generic Code--for use onlywhen manufacturer is not listed) + + + + + Travel Supreme, Inc. + + + + + Custom Engineering + + + + + Ginetta + + + + + C & W Truck & Equip. Co., Inc. + + + + + Ruchmore Homes + + + + + Dutchman ManufacturingMiddlebury, IN + + + + + Ransome + + + + + G & F TrailerBoat trailer mfd. in Bainbridge, Georgia + + + + + Target Coach Mfg. Co.Div. Central Builders Supply + + + + + Contessa + + + + + Komatsu American Corp. + + + + + Kitty HawkMfd. by Wright Brothers, Inc. + + + + + Canton Trailer Co. + + + + + Pioneer Coach Mfg. + + + + + ULTIMA MOTORCYCLE + + + + + Roadliner Mfg. Division + + + + + Superior Mfg., Inc. + + + + + SCAG POWER EQUIPMENT, DIVISION OF MTEALCRAFT OF MAYVILLE,WI MAKER OF POWER RIDING MOWERS + + + + + LBTDiv. Fruehauf Corp. + + + + + CZ Engineering, Inc.Dixon, Missouri + + + + + Federal Trailer Co. + + + + + Genuine Scooter Co. + + + + + Harklau Industries, Ind.Humboldt, Iowa + + + + + Ben Hur + + + + + Tornado (British) + + + + + Ossa (Spain) + + + + + King Midget + + + + + Toro Co. + + + + + THOMAS EQUIPMENT LTD.; NEW BRUNSWICK, CANADA + + + + + Cozad Trailer SalesStockton, California + + + + + BANDIT INDUSTRIES; MICHIGAN + + + + + Hainan-Sundiro + + + + + M-System, Inc. + + + + + Shopmade Flatbed Trailer + + + + + Trojan Homes + + + + + Redstone Coach Co. + + + + + Kipco + + + + + Vito Mfg. Co.Hazleton, Pennsylvania + + + + + AMCO Products + + + + + Truco + + + + + Challenger Homes, Inc.Columbia, Tennessee + + + + + Larson Machine, Inc.Princeville, Illinois + + + + + Sahara Mobile Homes + + + + + Virginia Homes Mfg. Corp.Boydton, Virginia + + + + + Terramite Corp. + + + + + Eco-Bike Elec Motorcycle + + + + + Reliart Trailer Mfg. Co. + + + + + Sightseer Motor Home + + + + + Pride Heavy Vehicle Ind. & Pride Enterprises + + + + + Chappy (mfd. by Yamaha Motor Corp.) + + + + + Xkeleton Motorcycles, LLC + + + + + STOLL TRAILERS, INC; ABBEVILLE, SC + + + + + Aros + + + + + Aeta + + + + + Western Trailers IncCo-Tem Corp. Boise, Idaho + + + + + Ranger Boats & Trailers + + + + + Odyssey Trailer Co. + + + + + Air-O-Corp. + + + + + Trillium Trailer + + + + + THUNDER MOUNTAIN CUSTON CYCLES; LOVELAND, COLORADO + + + + + Welchel Enterprises, LLC + + + + + BROWN CARGO VAN, INC.; LAWRENCE, KS + + + + + Pyle Haul-It-All Flatbed + + + + + Buck Camper Co. + + + + + AMERICAN DIRT BIKE, INC.; CALIFORNIA + + + + + Athey Products Corp. + + + + + Fort Lupton Campers + + + + + PRATT INDUSTRIES, INC.; BELLEAIR BLUFFS, FL + + + + + Pacific Campers + + + + + Conestoga Mobile Homes + + + + + Nevlen Company Inc.Wakefield, Massachusetts + + + + + Long Trailer Co., Inc.Tarboro, North Carolina + + + + + Senora TrailersYuma, AZ; trailers + + + + + Van Tech + + + + + Lamborghini + + + + + Talbert Mfg. Inc.Rensselaer, Indiana + + + + + Performance Products, Inc. + + + + + Crescent Trailers, Inc. + + + + + TLC Carrossiers + + + + + Built Rite Trailer + + + + + Stewart Engineering & Equipment Co. + + + + + Trail King Travel Trailer + + + + + Barret + + + + + Break + + + + + Thompson Concrete Pump Trailer + + + + + Beall, Inc.Billings, Montana + + + + + Troy Industries + + + + + Christianson Industries, Inc.Edwardsburg, Michigan + + + + + Carley + + + + + Gooseneck Trailer Mfg. Co., Inc.Bryan, Texas + + + + + Travelcraft Motor Home + + + + + Big Bear (mfd. by Flexo Products Co) + + + + + Duke Mobile Homes + + + + + QUALITY BUILT TRAILER, INC.; NEW MARKET, TN + + + + + Skamper Corp. + + + + + Hendrickson Manufacturing Co. + + + + + Sportcoach Motor HomeMfd. by Sportscoach Corp. of America,Chatsworth, California + + + + + Kentucky Mfg. Co.Louisville, Kentucky + + + + + VENTURE TRAILERS + + + + + River Run + + + + + Beijing Jeep + + + + + Model A and Model T Motor CarReproduction Corp. + + + + + Kensington Welding & Trailer Co.Kensington, Connecticut + + + + + Nomanco, Inc. + + + + + FAST TRAC MANUFACTURING; MOTORCYCLES, CALIFORNIA AS OF 5/2002 KNOWN AS CHEROKEE MOTORCYCLE COMPANY, + + + + + Bills Welding Model Trailer + + + + + Iben Boat Trailer + + + + + Super CookerMfd. by Deep South Sales Co. + + + + + Tecumseh Products Co., Engine Div. + + + + + Cavalier Trailer Mfg. Co. + + + + + Belshe TrailerTecumseh, Oklahoma + + + + + Downey Sheet Metal Shop + + + + + Ber-Vac (Canada) + + + + + Les Autobus M.C.I. + + + + + W. F. Larson, Inc. + + + + + TCI,Inc.Benson, Minnesota + + + + + Galactic Corp. + + + + + U.S. CARGO, INC + + + + + American Duralite Corp. + + + + + Snyder Trailer Co. + + + + + Vacationar Motor Home Truck + + + + + Ampco Mfg. + + + + + Forest City Industries, Inc. + + + + + Mini-CruiserMfd. by R.B.R. Corp. + + + + + YENTES BROTHERS WELDING; LANCASTER, CALIFORNIA + + + + + Capriolo + + + + + Smalley Mfg. Co. + + + + + Feldman Custom TrailersBowling Green, Kentucky + + + + + Wynona Corp.Nappanee, Indiana + + + + + Bankhead Welding Service + + + + + Morger Welding & Mfg., Inc.Bakersfield, California + + + + + Wagon-Haven, Inc. + + + + + Parson Co. Div.Div. of Koehring Co. + + + + + Catalina Amphibious Homes + + + + + General Coach Works, Inc. + + + + + LaSalle HomesDiv. of Tidwell Industries, Inc.,Ripley, Mississippi + + + + + Bowie Industries Corp.Bowie, Texas + + + + + Homemade motorcycle code (seeOperating Manual, Part 1,Section 2.) + + + + + GULF STREAM + + + + + Lectracan + + + + + Multition Hydraulic Truck + + + + + RIDGELINE, INC; WASHBURN, TN + + + + + Comet Construction Co. + + + + + Ford (also see English, French,German, and Italian Ford) + + + + + H. & W. Mfg. Co. + + + + + Kenworth Northwest, Inc.Seattle, Washington + + + + + Triggs-Miner Corp. + + + + + Pryer Industries (Ada, Ohio) + + + + + Stoner Totter Trailer + + + + + Cambridge Mfg. Co., Inc. + + + + + Namco., Inc. + + + + + Speedster Motorcars + + + + + Sea Lion Utility Trailer + + + + + Bertone + + + + + Parkhurst + + + + + FAST ; SNOWMOBILES (TO INCLUDE BLADE MODEL) + + + + + Vanden Plas + + + + + PARIS CUSTOM TRAILER CO.; TEXAS + + + + + Oliver + + + + + Arps Div.Div. Chromalloy American Corp. + + + + + FIBERGLASS INTERNATIONAL, INC.; SCHALLER, IS + + + + + Muntz + + + + + MULTITEK, INC; PRENTICE, WI TRAILER & CONST EQUIP + + + + + GARDEN STATE CHASSIS REMANUFACTURING, INC + + + + + Mankato Mobile Homes, Inc. + + + + + Reids Trailers, Inc.Pleasant Garden, North Carolina + + + + + Baughman Mfg. Co. + + + + + United Fiberglass + + + + + Ring-o-matic Mfg. Co.Pella, Iowa + + + + + Mustang + + + + + Austin Products, Inc.Subsidiary Austin Industries, Inc. + + + + + Butler, L. T. + + + + + McBurnie Coach Craft, Inc. + + + + + SOUDRE KERR, INC.; COOKSHIRE, QUEBEC CANADA + + + + + Anderson Coach Co. + + + + + RETTIG ENTERPRISES; SIKESTON, MO + + + + + Flexi-Coil Ltd. + + + + + Johnny Lightning + + + + + Royal Land Yacht + + + + + McNamee Coach Corp. + + + + + Ohta + + + + + Bay Trailers + + + + + LIEBHERR COMPANIES; CRANES & CONSTRUCTION EQUIPMENT + + + + + SunBird, Inc. + + + + + Precision Cycle Works + + + + + Holland Camper Co. + + + + + Dico Co.Des Moines, Iowa + + + + + Hartman-Fabco, Inc. + + + + + Mobile of Marysville + + + + + Cascade Corp. + + + + + A D BOIVIN SNOWMOBILES; SNOW HAWK MODELS + + + + + Trivellato + + + + + Medford Industries + + + + + Pro-Trail, Inc.Nashville, Tennessee + + + + + Erie City Welding & Spring + + + + + HUTCO BOAT TRAILER + + + + + Mid-Atlantic Homes Co. + + + + + Arrowhead Trailers + + + + + Classic Roadsters, Ltd. + + + + + NorthlandMagline, Inc. + + + + + FlamencoMfd. by Sundancer Div. of WinstonIndustries + + + + + Jude Tent Trailer + + + + + EMERSON TRAILERS, INC., FLORIDA + + + + + Hester Plow Co., Inc. + + + + + Mark Line Industries, Inc.Bristol, Indiana + + + + + Trail Breaker + + + + + Noel Mfg. + + + + + Clypso Motor Home + + + + + Travel Car Motor Home + + + + + MCN Mobile Homes Corp. + + + + + K-D Mfg. Co. + + + + + Centurion International, Inc.Waco, Texas + + + + + Vada Open Top Cattle Trailer + + + + + Abbot, Paul Co., Inc. + + + + + Fuji Robbt Jr (Mfd. by H-MVehicles, Inc.) + + + + + Baker Material Handling Corp. + + + + + Longhorn Trailers; Also see McKinley Enterprises + + + + + Rivercraft Boat Trailers + + + + + Calvacade Industries, Inc.White Pigeon, Michigan + + + + + Target Products Division, Federal-Mogul Corp. + + + + + Star Meteor FloridaDiv. of Divco-Wayne Industries + + + + + MZ + + + + + Adventure Wheels Motor Home + + + + + Westways Mfg. + + + + + Pacemaker Boat Trailer + + + + + Thomas Built Bus Co. + + + + + Gates, Walter C. + + + + + Nova Bus + + + + + Beechwood Industries, Inc. + + + + + Gee-Bee-Dee Manufacturing & Supply Co. + + + + + Mid-West Choppers, Inc. + + + + + G & H Manufacturing, Inc.Arlington, TX; trailers. + + + + + New McGrath + + + + + Horch Limousine + + + + + Wayside Campers + + + + + K-Mart Camper Foldup + + + + + DORT MOTOR CAR COMPANY; FLINT, MICHIGAN + + + + + Whiteman Ind. + + + + + Rach WeldingSt. Joseph, Michigan + + + + + Shelby Mobile HomesDiv. Commodore Corporation + + + + + Taunus (German Ford) + + + + + Pitman Div., Emerson Electric Co. + + + + + All Around Horse Trailer + + + + + Sweepster, Inc. + + + + + Sterling + + + + + Aston-Martin + + + + + Hatfield Welding & TrailerSales, Inc.Mt. Pleasant, Texas + + + + + Penn Trailer + + + + + Chrysler + + + + + Colony Mfg. & Sales Corp. + + + + + Longlife + + + + + Maserati + + + + + PTV + + + + + Kinroad Xintian Motorcycle Mfg. Co., Ltd. + + + + + Bonanza + + + + + King Richards, Inc. + + + + + Steury Trailer + + + + + P.J. Trailer Manufacturing, IncSumner, TX; utility trailer + + + + + Bobbi-Kar + + + + + Gallatin HomesBelgrade, Montana + + + + + TWIST N GO MOTOR SCOOTERS & CYCLES + + + + + Condor Coach + + + + + Bond + + + + + PDV + + + + + Woodill Wildfire + + + + + Skyteam Corp., Ltd. + + + + + Number One + + + + + TBC + + + + + Kris Kraft Mobile Homes + + + + + Wells Western Trailers; Also see Western Recreation Mfg., Inc. + + + + + Darcell Industries, Inc. + + + + + ArgoSee Onatario Drive & Gear Ltd. + + + + + Enfield India LimitedMadras, India + + + + + Space Motor Home + + + + + Hitch HikerMfd.by R. V. Kompacts, Inc. + + + + + BSA (United Kingdom) + + + + + M.B.M. + + + + + Mountain Manufacturing Co., Inc. + + + + + Work-N-Play + + + + + Stew-Gar, Inc. + + + + + Portable Elevator Mfg. Div.,Dynamics Corp. of America + + + + + Buell Motor Co. + + + + + Scootalong + + + + + R-Anell Homes, Inc.Denver, Colorado + + + + + H.N.L. CORP AND OR HENRY L. LANCIANI CORP. + + + + + Go-Tel Leasing Corp. + + + + + G & G TRAILERS; GILLIAND & GILLIAND; PRESTON GILLIAND, HALLS, TN + + + + + Klein Products, Inc. + + + + + Highway Sleeper Corp. + + + + + Down (2) Earth Trailers + + + + + Plains Industries, Inc. + + + + + Islander Motor Home + + + + + Stuart + + + + + Cord + + + + + Towmaster + + + + + Badger Construction Equipment Co.,Division of Burro-Badger Corp. + + + + + Hyundai + + + + + Speedex Tractor Co.Ravenna, Ohio + + + + + Coose Trailer Mfg. Co.Lockwood, Missouri + + + + + Jec Ro + + + + + Leader Horse Trailer + + + + + Kountryaire Travel Trailer + + + + + HomeliteDiv. Textron, Inc. + + + + + Jays Hy Lift Manufacturing Co. + + + + + Essick/Hadco Div.Div. A-T-O, Inc. (Formerly EssickMfg. Co.) + + + + + Kempf Car Hauler + + + + + Happy Travl'r Coaches, Inc. + + + + + Reeves Roofing Equipment Co. + + + + + Lance Truck Mount Camper + + + + + Joplin + + + + + Derbi Motor Corp. + + + + + Skyjack + + + + + Jim Dandy, Inc.Chickasha, Oklahoma + + + + + Kodiak Coach & Mfg. Co. + + + + + CHOPPER WORKS, PERFORMANCE, INC.; HAMPSTESD, NH + + + + + JENNINGS TRAILERS, INC; EMORY, TEXAS + + + + + Wise-Craft Mfg. + + + + + BECKHAM TRAILERS, INC.; WICHITA , KANSAS + + + + + Phillips Mfg. Co., Inc.Lehi, Utah + + + + + Lufkin TrailersDiv. of Lufkin Industries--Lufkin, Texas + + + + + CARGOMATE TRAILER ; CAMPING + + + + + Glen Manor Homes, Inc. + + + + + Constructore Trailers, Inc.Sarasota, Florida + + + + + Lee Boy Construction Equipment + + + + + Zhejiang Xingfu Motorcycle Machine Co., Ltd. + + + + + Panhard + + + + + Nordic + + + + + Hylton Homes, Inc.Phil Campbell, Alabama + + + + + Bucko, Inc.Buhl, Indiana + + + + + Malaguti + + + + + Siata + + + + + Murray Ohio Manufacturing Co.Brentwood, Tennessee + + + + + New Horizons or Horizons, Inc. + + + + + Daewoo + + + + + Krown Camper + + + + + Hines Mfg. Co.Rocky Mount, North Carolina + + + + + Neosho Custom Coach Co.Div. Gearhart's Building Materials + + + + + Universal Camper Mfg. + + + + + Tatra + + + + + American Road Machinery, Inc. + + + + + Gafner Machine, Inc.Escanaba, Michigan + + + + + Buckeye Flatbed Trailer + + + + + Lady Bea TrailersMalden, Massachusetts + + + + + Dura-Craft Mobile Homes + + + + + Yenco + + + + + Medical Coaches, Inc. + + + + + Harnischfegar Corp.Subsidiary of Harnischfeger P&H + + + + + Triumph Motor Co. (TRIU for autoentry) + + + + + Maverick Mobile Home + + + + + H & H SnowmobilesCleveland, OH + + + + + Seabring Home, Inc. + + + + + Schertzer Equipment Co. + + + + + Jupiter + + + + + Dropbox, Inc. + + + + + Jahn Flatbed Trailer + + + + + Avalair Corp. + + + + + MINI DIVISION OF BMW MAKER OF COOPER & COOPER-S + + + + + Lakewood + + + + + Ernest Holmes Div. + + + + + J B EnterprisesElkhart, IN + + + + + Romae IndustriesMountain View, Missouri + + + + + Kasten Mfg. Co.Allenton, Wisconsin + + + + + Southwind Motor Home + + + + + Clemco Industries + + + + + Roam-A-Bout Camper + + + + + Omni Motorsports, Inc. + + + + + Rice & Woolard Mfg., IncNaylor, MO + + + + + Foreman Mfg. Co. + + + + + Audi + + + + + FeedlinerMfd. by Globe Fabricators, Inc. + + + + + Yanmar Tractor USA, Inc.Bensenville, Illinois + + + + + Salsbury + + + + + BETTER-WAY PRODUCTS, INC; INDIANA (BISSON) + + + + + TransporterAmerican Trailer & Mfg. Co. + + + + + FOUR H MFG., INC; SUMNER, IA + + + + + Hanson Camping Trailer + + + + + Escapade Motor Home + + + + + Highway Cruisers, Inc. + + + + + Middlesex Equipment Co. + + + + + Long Chih Industrial Co., LtdTaipai, Taiwan + + + + + Rabbit, Jr. + + + + + WTM, Inc. + + + + + Pace Arrow + + + + + Cardinal Homes, Inc. + + + + + BrockwayDiscontinued production in 1977 + + + + + Circle LMfd. by Well-Built Trailers, Inc. + + + + + Agricultural Machinery Div.Div. FMC--mfrs the Bean sprayer + + + + + Lincoln-Continental + + + + + Deluxe Homes, Inc. + + + + + Tel Star Trailers + + + + + Renaissance Motors + + + + + Herzig Mfg. Co. + + + + + New Paris Traveler Corp.New Paris, Indiana + + + + + Safari Motor Coaches, Inc.Harrisburg, OR + + + + + Pipestone Tandem Boat Trailer + + + + + Glasstite, Inc.Dunnell, Minnesota + + + + + Mondial + + + + + Badger Machine Div.Ronco Engineering Co. + + + + + Bantam Camp Trailer + + + + + AlsportSee Boa-Ski Alsport Ltd. + + + + + Dexter Trailer, Inc. + + + + + Presidential Mobile HomesDiv. U. S. Aluminum Company + + + + + Daffin Mfg. Co. + + + + + Carolina Mobile Homes + + + + + Belvedere Mobile Homes + + + + + Opel + + + + + Karl M. Neufeld + + + + + CARRON TRUCK REPAIR, LTD; GRANITE CITY ILLINOIS + + + + + DARDON, INC. + + + + + East Texas Longhorn Trailers, LLC + + + + + Camper Corp. of America + + + + + Urili Flatbed Trailer + + + + + Biltrite Mobile Homes + + + + + Kari Cool Trailer + + + + + Speedway Products, Inc.Mansfield, OH + + + + + Trailcraft Boat Trailer + + + + + THINK ELECTRIC VEHICLES; DIVISION OF FORD MOTOR COMPANY + + + + + Muhlberg + + + + + Pull A Long Mfg. & Sales + + + + + Cimatti + + + + + Amco Boat Trailer + + + + + Macanismos Ensamblados S. A. De C. V.Mexico; tank trailers + + + + + ZIMMERMAN TRAILERS + + + + + Carsons Mfg., Inc. + + + + + FMC Corp. + + + + + Trike + + + + + MayberryMfd. by Rollohome Corp. + + + + + Elgin Sweeper CompanyElgin, Illinois + + + + + B-M-B. Mfg. Co. + + + + + Marque, Inc.Bristol, Indiana + + + + + Suzuki + + + + + Marion Power Shovel Co., IncDiv. of Dresser Ind. + + + + + Aluminum + + + + + BRUSH ROADSTER + + + + + Piper Industries, Inc. + + + + + T&E ENTERPRISES OF HERSCHER, INC.; HERSCHER.IL + + + + + Fabricated Alloy Building Co., LLC + + + + + Richards Utility Trailer + + + + + Andrea Mobile Homes + + + + + Cleasby + + + + + Case, J. I., Co.Subsidiary Tenneco. Inc. + + + + + Trail It Horse Trailer + + + + + Necedah FlyersMfd. by Twin City Racing + + + + + FASTLINE; KANSAS + + + + + Chaika + + + + + Davenport Trailer or Mobile Home Co. + + + + + SEWER EQUIPMENT CO. OF AMERICA + + + + + General Moped Co. (New York,New York) + + + + + All Steel Mfg. Co. + + + + + Corbin Electric + + + + + JI-EE Ind., Co., Ltd. + + + + + Power Curber, Inc. + + + + + Vicon Farm Machinery, Inc. + + + + + Italvelo + + + + + Essex + + + + + Rebel Boat Trailer + + + + + Holandia Holder + + + + + Sensation + + + + + Ashland Industries, Inc. + + + + + Sabre Equipment Div.Div. Sabre Metal Products + + + + + Marshfield Homes, Inc. + + + + + Worthington Champ + + + + + Modern Mobile Homes + + + + + TRANSPORT TRAILERS; FENNVILLE, MI + + + + + AlyMfd. by Skyline Corp. + + + + + Dressen Custom Trailers, Inc. + + + + + Colonial Flatbed Trailer + + + + + APPALACHIAN MFG. INC.;ELKHART, IN + + + + + Air Support IndustriesGlassboro, New Jersey + + + + + BJ Mfg. Co.Harrison, Arkansas + + + + + Clark Mfg. Co. + + + + + Kent Industries, Inc.Bristol, Indiana + + + + + Fieldacre Horse Trailer + + + + + Ace Enterprises, Inc.Miami, Florida + + + + + Hummel + + + + + Atlantic Coast Camper + + + + + Trac-Machinery Corp.Subsidiary of E. D. Etnyre & Co. + + + + + All Seasons Motor Home + + + + + Wabash National CorporationLafayette, Indiana + + + + + Competitive Boat Trailer + + + + + Victory Motorcycles + + + + + Sila Autoretta + + + + + ASM TRAILERS; MOUNTAINBURG, AR + + + + + Phelps Horse Trailer + + + + + Henslee Mobile Homes, Inc. + + + + + Ducati + + + + + Joy Mfg. Co. (Air Power Group)Montgomeryville, Pennsylvania + + + + + Rebel Mobile HomeDiv. Skyline Homes + + + + + Guidon Camper Trailer + + + + + Broderson Manufacturing Corp. + + + + + Hy-Dynamic Div.Bucyrus-Erie Co. + + + + + Dart + + + + + Cullip Industries + + + + + Byers Mfg. Inc.Lawton, Michigan + + + + + Mid-Equipment Corp. + + + + + MLBLT + + + + + Ag-Chem Equipment Co. Inc.Edina, Minnesota + + + + + Tara Products, Inc.White Pigeon, Michigan + + + + + Aalite Co. + + + + + Farm Shop, Inc.Congerville, Illinois + + + + + Zanella + + + + + Budd Co. Trailer Division, TheFormerly Ginchy Mfg. Corp.--Downingtown,Pennsylvania + + + + + EHM Mfg. Co. + + + + + Stone Construction Equipment Inc.Honeyoye, New York + + + + + Western (NEV) Neighborhood Electric Vehicles + + + + + West Wind Trailer Co. + + + + + SpacemasterColumbia, Tennessee + + + + + Destiny Industries, Inc.Moultrie, Georgia + + + + + BoatoterMfd. by Thomas Mfg. + + + + + Futura Mobile Home + + + + + ROOSE MANUFACTURING; PELLA, IA + + + + + American Lifan Ind., Inc. + + + + + Swift Motorsports, Inc. + + + + + Atlas Hoist & Body, Inc. + + + + + Rite-Bilt + + + + + Thomas & Co. + + + + + Vance Campers, Inc. + + + + + Prew Proco Travel Trailer + + + + + Barker Trailer Manufacturers, Inc.Phoenix, Arizona + + + + + Bradley GT + + + + + Mazda + + + + + Hank's Mobile Home Service + + + + + Plastic Forming Co. + + + + + DOUBLETREE RV, LLC; LAGRANGE, INDIANA + + + + + Kayout-Forester Travel Trailer + + + + + Knowles Mfg. Co. + + + + + Steed-Pollak Mfg. Co. + + + + + Lovebug Travel Trailer + + + + + Howe Engineered Sales Co.Waterloo, Iowa + + + + + V. E. Enterprises + + + + + ExhibitorMfd. by Miley Trailer Co., Inc. + + + + + M.T. Trailers, Inc. + + + + + J & L Tank, Inc.Saginaw, Texas + + + + + Big Well Industries + + + + + Trainliner + + + + + Soni II + + + + + Lazy J Horse Trailer + + + + + PRO LINE TRAILERS; COCOA, FL + + + + + Steyr-Daimler-Puch + + + + + STROHL CORPORATION; MISHAWAKA,IN ; VARIOUS STYLES TRAILERS + + + + + Lindsay Co., Inc., P. K.Deerfield, New Hampshire + + + + + Paughco, Inc.Carson City, NV + + + + + Can-Am + + + + + Huron Industries, Inc. + + + + + Whitehaul Kaler Trailer + + + + + Lincoln Park Mobile Homes, Inc.Shipshewana, Indiana + + + + + American Trailer Specialists + + + + + TOP HAT INDUSTRIES, MT. PLEASANT, TX (TRAILERS) + + + + + Carey Trailers, Inc.Weatherford, Texas + + + + + Bertran Trailer + + + + + Fleetcraft Corp. + + + + + Dunham Lehr, Inc. + + + + + Parmiter, P. J. & Sons Ltd. + + + + + Novae Corp. + + + + + Wise Welding, Inc. + + + + + Masterline Co., Inc. + + + + + Summers Mfg. Co. + + + + + Road Roamer Campers + + + + + Bertolini Container Co.Butler, New Jersey + + + + + Conmaco, Inc. + + + + + Frazier + + + + + H & S Mfg. Co., Inc. + + + + + River Trail TrailersLittle Rock, Arkansas + + + + + Raymur Acceptance Corp. + + + + + Burch Trailer + + + + + MECOX RESOURCES SA DE CV; MEXICO + + + + + CMI Load KingElk Point, SD; commercial trailers + + + + + Darwin + + + + + AVENGER CORPORATION; MICHIGAN + + + + + Southwest Truck Body Co.St. Louis, Missouri + + + + + Dual-Wide, Inc. + + + + + JAMMER CYCLE PRODUCTS, INC BURBANK, CA + + + + + Otterbacher Mfg., Inc.Crestline, Ohio + + + + + CEI EQUIPMENT COMPANY, INC; CEDAR RAPIDS, IA + + + + + Universal Tractor Foreign Trade Co. + + + + + Seemore Flatbed Trailer + + + + + DMP + + + + + Brutt + + + + + Warner & Swasey Co. + + + + + Acura + + + + + CMWC Trailer Co., Inc. + + + + + Ferris Ind. + + + + + Long Haul, TheMfd. by Mark Fore Vatco Ind. (M.F.V.) + + + + + K & M Mfg. Co.Renville, Minnesota + + + + + Cleavers of BismarkBismark, Arkansas + + + + + Mobile Products, Inc. + + + + + Port Trailer Mfg. Co.City of Industry, California + + + + + Roll-O-Flex, LTD.Regina, Saskatchewan + + + + + Ramlin + + + + + Puch + + + + + C & S Trailer WorldFort Worth, Texas + + + + + Coon Custom Coach Mfg. + + + + + AMERICAN CRUISER MOTORHOME, NAPPANEE, IN + + + + + Arrow Campers, Inc. + + + + + Buckskin Trailer Mfg. Co.Boosier City, Lousisiana + + + + + Chromalloy American Corp., FarmSystems Division + + + + + Rexnord, Inc. + + + + + Idaho Norland Co. + + + + + Bo Cats, Inc.Garden City, Kansas + + + + + Pinson Truck Equipment Co. + + + + + Private CoachDiv. F & L Construction + + + + + Peerless DivisionDiv. of Lear Siegler--Tualatin, Oregon + + + + + Northern Star Mobile Home + + + + + Facellia + + + + + Terraplane + + + + + Multiquip + + + + + Trail Boss + + + + + Heritage by Abel Corp. or Franklin Coach Co., Inc. + + + + + Portland Wire & Iron Works + + + + + Madden TrailerAshdown, Arkansas + + + + + Elder Trailer & Body + + + + + Kolberg Mfg. Corp., Subsidiary ofPortec, Inc. + + + + + Reinell Boat Trailer + + + + + Tri-Way HD Snowmobile Trailer + + + + + Berkshire Industries + + + + + Klassen Homes, Ltd. + + + + + Balkan + + + + + Custom Plumbing Co. + + + + + ALFAB INC.; TRAILERS + + + + + Italia + + + + + Emergency One, Inc. + + + + + Creightons TrailerMaryland + + + + + MARTINS ENTERPRISES; DONALDS, SC + + + + + Estevan Industries, Ltd. + + + + + Right Products, Inc. + + + + + E-Z-GoSee Polaris Industries Inc. + + + + + Admiration HomesElkhart, Indiana + + + + + B & S Boat Trailer Mfg. Co.Gainesville, Florida + + + + + Christie, J. W. Bill, Inc.Collin County, Texas + + + + + Platt Trailer Co. + + + + + Woodsmen Camper + + + + + Don-A-Bell Homes, Inc. + + + + + Northwestern Motor Co.Subsidiary Fairmont Railway Motors, Inc. + + + + + Bilken EnterprisesMfr. of Specialty Trailer (bought out byAmerican Enterprises) + + + + + Sharratt Mobile Homes & Supplies + + + + + Liftall ForkliftMfg. by Lion Mfg. Co., Inc. + + + + + C & C TRAILERS, INC. NORMAN OKLAHOMA + + + + + Atlas Tool & Mfg. Co. + + + + + Brobts & Associates + + + + + Silver Star Trailer + + + + + Sea Breeze Trailer + + + + + CommandoYard tractor--mfd. by Daybrook-OttawaDiv. + + + + + Range Rover of North America + + + + + Delto Homes, Inc. + + + + + Barco Mfg. Co.Johnstown, Pennsylvania + + + + + Stam Mfg. Co. + + + + + Bel-Aire Campers or Coaches + + + + + TIMBERKING, INC + + + + + Thompson + + + + + Crown Coach or Crown Cargo Coach + + + + + Chunfeng Holding Group Co., Ltd. + + + + + Antique & Collectible Autos, Inc. + + + + + Lear SieglerMfd. by Signal Div. of Lear Siegler,Inc. + + + + + Gazelle + + + + + Dennison Utility Trailer + + + + + Mountain Valley Enterprises + + + + + Cambridge Homes, Inc. + + + + + Open Road Industries + + + + + M. P. McCaffrey + + + + + Sage Mfg. Co. + + + + + Bee Bob Trailers + + + + + Little Giant Crane & Shovel, Inc.Des Moines, Iowa + + + + + HOMESTEADER, INC.; NEW TAZEWELL, TN + + + + + Courthouse Camper Trailer + + + + + BMW + + + + + TMC Inc.Poskin, WI; mfg. pontoon trailers + + + + + Load Rite TrailersDiv. of Pennsbury Mfg., Inc. + + + + + Columbia Mfg. Co. (subsidiary Yard-Man Co. - Columbia Commuter) + + + + + Bingham + + + + + Bray Trailers + + + + + Sportsliner Camping Trailer + + + + + Safari + + + + + Yampa Coach Mfg. + + + + + Mascot Homes, Inc. + + + + + Dixon Industries, Inc.Coffeyville, Kansas + + + + + Cam-Pact Co., Inc. + + + + + Didier Mfg. Co.Franksville, Wisconsin + + + + + SterlingSterling-Salem Corp. + + + + + Crossroads + + + + + Chaparral Mfg., Inc. + + + + + Heron Travel Campers + + + + + Artcraft of Georgia + + + + + Yankee + + + + + Roadmaster Mfg. Co. + + + + + Circle H Horse Trailer + + + + + Carlisle + + + + + Scott Equipment Co. + + + + + MOFFETT ENGINEERING, LTD; FORKLIFTS ETC + + + + + Arnolt-Bristol + + + + + Howard Commercial Turf Equipment Co.Mfrs. Mowers--St. Louis, Missouri + + + + + Bedford + + + + + Alex Fiegelson Co. + + + + + Obrect Trailer + + + + + Lazy Daze Motor HomeMfd. in Pomona, California + + + + + Rambler-manufactured prior to 1966(1966 and later Ramblers manufac-tured by American Motors - seeAme + + + + + Brandy IndustriesColon, MI; white tail camping trailers. + + + + + Penn RoyalMfd. by Wisconsin Homes, Inc. + + + + + Tecumseh + + + + + Aero Glass Boat Co. + + + + + Tanden Boat Trailer + + + + + James + + + + + Sun Belt Energy Housing, Inc. + + + + + CompanionMfd. by Kit Mfg. Co. + + + + + Lighter-Bilt Trailers, Inc.Durham, California + + + + + U.S. Bus Corp. + + + + + Carabela (Mexico) + + + + + Selma Trailer & Mfg. Co. + + + + + Centurion Travel Trailer + + + + + GOLD STAR ENTERPRISES; SIKESTON, MO + + + + + ALLEN MANUFACTURING, INC; FORT MORGAN, CO; TRAILERS + + + + + Warrior Mfr.Henderson, Texas + + + + + How-Lo Campers Co. + + + + + LOAD-EAZ Trailer Inc.Bensalem, Pennsylvania + + + + + MPC Cruiser Camper Trailer + + + + + Irabeck & Co.Harrington, Delaware + + + + + Lambretta + + + + + SOUTHWEST GOOSENECK; SAN ANTONIO, TX + + + + + McCollough CorporationBrookfield, MO + + + + + Twilight Coach Mfg. + + + + + Showco Nomad Trailer + + + + + Wynn Trailer Works + + + + + JZ Riders Custom Motorcycles + + + + + Van American, Inc.Goshen, Indiana + + + + + EAST TENNESSEE TRAILERS LLC; MOSHEIM, TN + + + + + Red Gooser Horse Trailer + + + + + Holstein Mfg., Inc.Holstein, Iowa + + + + + Montebello Mobile Home Trailer + + + + + Olds Trails Trailer + + + + + Crossland Industries + + + + + Falco Mfg. Co. + + + + + SMB Teleiamotre (Bologna, Italy) + + + + + REMEQ, INC.; PRINCEVILLE, QUEBEC CANADA + + + + + Rolls International TrailerMobile Home + + + + + Double J Horse Trailer + + + + + Great Lakes Cargo, LLC + + + + + Iowa Mold Tooling Co., Inc. + + + + + Ken Craft Trailer + + + + + McCabe-Powers Body Co. + + + + + Eagle Crusher Co., Inc. + + + + + Cub Cadet Corp.Subsidiary of MTD Products, Inc.Purchased Cub Cadet tractor line fromInternational Ha + + + + + Stidham Horse Trailer + + + + + Hilltop Mfg., Inc.El Dorado, Arkansas + + + + + Bobby's Custom Camper Mfg. + + + + + Lewaub Trailer Mfg. + + + + + White Pine Campers, Inc.Waupaca, Wisconsin + + + + + Cooper Alpine Motor Home + + + + + Eljay Mfg. Co. + + + + + ASM TRAILERS; MOUNTAINBURG, AR + + + + + Kingston Horse Trailer + + + + + Token Flatbed Trailer + + + + + Clayton Craft + + + + + AMFSee Harley-Davidson + + + + + Metropolitan + + + + + Monroe Motors Inc., Wally-Mo DivisionHolladay, Tennessee; manufactures carcarriers and utility trail + + + + + Heathkit + + + + + Dairy Equipment Co.Madison, Wisconsin + + + + + Comanche Trailer Corp. + + + + + Autocarrier and A.C. + + + + + Fischer + + + + + C & C IndustriesMfg. of Master Track F.B. Trailer;Gaithersburg, MD + + + + + TK Sterling + + + + + PREMCO PRODUCTS, INC.; LA VERNE, CA; TRIPLE L TRIALERS + + + + + Columbia Mobile Homes, Inc. + + + + + Star Transport Trailers, Inc.Sunnyside, Washington + + + + + Pollock Industries + + + + + Cumberland CoachesH & W Mfg. Co. + + + + + Taylor-Dunn Industrial Electric VehiclesAnaheim, California + + + + + Beiler Hydraulics, Inc. + + + + + Beatrice Motor Mart Mfg. & Easy-Haul + + + + + Royer Foundry and Machine Co.Kingston, Pennsylvania + + + + + Reco Goliath Tent Trailer + + + + + Simek Mfg., Inc. + + + + + CORNELIUS MANUFACTURING, INC.; ELNORA, IN + + + + + Indiana + + + + + Y W + + + + + J-Rod Trailer Co.Red Oak, Texas + + + + + Oelrich Mfg. Co. + + + + + Ride-On, Inc.Mfrs. boat trailers--Ceres, California + + + + + Mauldin Mfg. Co., Inc. + + + + + Monte Carlo Mobile Homes + + + + + CARGO CRAFT, INC.; GEORGIA + + + + + Jay-Kee Mfg., Inc.State Center, Iowa + + + + + T & T Industtries, Inc. + + + + + Cline + + + + + Holden + + + + + Kar-Rite CorporationFranklin Park, Illinois + + + + + Pacemaker Mobile Homes & Travel TrailerDiv. Lonergan Corporation + + + + + Capital Industries, Inc. + + + + + Ryobi + + + + + New Flyer + + + + + Swinger Camper Mobile Home + + + + + Intrapid Trailer + + + + + Duplex Truck Div.Div. of The Nolan Co., Midvale, Ohio + + + + + Keystone Trailer & Equipment Co.Kansas City, Missouri + + + + + Talbot-Carlson, Inc.Audubon, Iowa + + + + + Grenadier Mobile HomesMfd. by Statler Homes Mfg. + + + + + SCOTT'S RIDING MOWERS/TRACTORS MFG FOR SCOTTS BY JOHN DEERE + + + + + Baker-York Forklift + + + + + Commodore Corp.Syracuse, Indiana + + + + + JD HANDLING SYSTEMS OR D.J. STEELE & CONSTRUCTION + + + + + Cortez House Trailer + + + + + Trail-It Coach Mfg. Co. + + + + + I. A. M. E. + + + + + Bergantine + + + + + INMAN TRAILERS; INMAN, KS + + + + + Breeze Camping Travel Trailer + + + + + Champion Pneumatic Machinery Co.,Inc. + + + + + Bigfoot Ind., Inc. + + + + + RIDLEY MOTORCYCLE COMPANY; OKLAHOMA CITY, OK + + + + + Powerline ProductsDiv. of White Oak, Inc.--Washington,Indiana + + + + + Simca + + + + + REINKE MFG. INC; DESCHLER, NEBRASKA + + + + + HICO Corp. of America + + + + + Arctco, Inc.See Arctic Enterprises + + + + + Kannon Motorcycles, LLC or SJH Mfg., Inc. + + + + + Sunbird Boat CompanyColumbia, SC; boat trailers.Haleyville, Alabama + + + + + G & L Utility Trailers + + + + + Arnold Travel Trailer Mfg. Co. + + + + + Jeep (for model years prior to 1970) + + + + + Car Caddy + + + + + KEARNEY TRAILERS CO. GRNADSALINE, TX + + + + + Popcycle Motors, LLC + + + + + Monson & Sons Trailer + + + + + Huffy + + + + + Boone Trailers, Inc.Palmer, Massachusetts + + + + + BrindleLaOtto Metal Fobricating Co., Inc. + + + + + Infinity Trailer Sales + + + + + Morgan Mobile, Inc. + + + + + Snake River Trailers + + + + + Dynamark Tractor Mower + + + + + Economy Camper Co. + + + + + Bounder Motor HomeMfd. by Fleetwood, Decatur, Indiana + + + + + Odyssey + + + + + McFarlane Mfg. Co., Inc. + + + + + MiddleburyMfd. by Coachmen Homes Div.Coachman Industries, Inc. + + + + + Holiday Royal Travel Trailer + + + + + Texan Trailer Mfg. Co. + + + + + CAREFREE CUSTOM CYCLES, LLC + + + + + Pace American, Inc.White Pigeon, Michigan (throughMarch, 1988)Middlebury, Indiana (EffectiveApril, 1 + + + + + DKW + + + + + ARSENAL TRAILER MANUFACTURING, INC; HARRISONBURG, VA + + + + + EXISS ALUMINAM TRAILERS, INC.; EL RENO, OK + + + + + Alcan American, Inc. + + + + + Sun Valley Car Carriers + + + + + Western Auto Supply Co.Also see make Wizard + + + + + Sunbeam + + + + + Camper De Ville, Inc. + + + + + CataphoteDiv. Ferro Corp., Jackson, Mississippi + + + + + Unpublished farm or garden equipment mfr(See Operating Manual, Part 1,Section 2) + + + + + Circle Supreme Mfg.Knowville, Tennessee + + + + + Advance Machine Co. + + + + + Polar Mfg. Co.Holdingford, Minnesota + + + + + Badger Trailer Co. + + + + + Rex Mobile HomesDiv. of Divco-Wayne Industries + + + + + Schult Mobile Homes Corp.Middlebury, Indiana + + + + + Whitehead & Kales + + + + + Starcraft Mfg. Co. + + + + + Gill Mfg. Co. + + + + + Dempster + + + + + Daihatsu + + + + + Continental + + + + + Autobianchi + + + + + E-Z Loader Boat Trailer + + + + + Firestone Tractor + + + + + Oriole Trailer Mfg. Co. + + + + + Cavco Ind. + + + + + CHARLY ELECTRIC MOTOR SCOOTERS ETC. + + + + + Chevrolet + + + + + A & C Knight, Ltd. + + + + + HUMMER; FORMERLY CODED AS AMGN/AMERICAN GENERAL CORP. AS OF 3/1/02 PART OF THE GENERAL MOTORS (GM) V + + + + + Dixie Chopper + + + + + Western Coach Corp. + + + + + Blue, John Co.Huntsville, Alabama + + + + + Golden Isle Trailers, Inc. + + + + + Roadmaster Rail, Inc. + + + + + Bulk-Hauler TrailerSee Kellebrew Mfg. Co. + + + + + Puma Camper SalesDiv. American Sterling Enterprises + + + + + ROLLS RITE TRAILERS, INC; MARIANNE, FL + + + + + Campfire Travel Trailer + + + + + Chibi + + + + + LEISURE TRAVEL VANS, LTD.; MORDEN, ME + + + + + RHEA'S TRAILER SALES, INC.; TEXAS + + + + + Bridgeville Trailers, Inc. + + + + + Pointer + + + + + M-B Co., Inc. of Wisconsin + + + + + Com-Camp + + + + + Charger Pick-up Campers + + + + + Starline Trailer Mfg. Co. + + + + + Schiebout Mfg. Co. + + + + + Ecohl Trailers + + + + + Nordine Mfg. Co. + + + + + Rugg Manufacturing Co. + + + + + Apache Corp. + + + + + Wisconsin Body & Hoist + + + + + Tiger Trailer + + + + + J. C. Penney + + + + + Peabody Solid Waste Management + + + + + Toyocar Van Container Trailer + + + + + Bloom, Inc. + + + + + Freeway, Inc. + + + + + Trail-Wide Corp. + + + + + Correct Craft, Inc. + + + + + Excel Industries, Inc.Hesston, Kansas + + + + + Beemer Trailer Mfg. & Sales + + + + + Calvade Trailer + + + + + Jason Mfg. + + + + + WeMac Mfg. Co.North Kansas City, Missouri + + + + + Tahiti Ski Trailers + + + + + Country-BoyMfd. by Reid's Mfg. & Welding Co. + + + + + Susquehanna-Santee Boat Works, Inc.Boat Trailers; Willow Street,Pennsylvania + + + + + Federal + + + + + Caulkins Boat Trailer + + + + + Butler Mfg. Co. + + + + + TRAILERS EXPRESS, INC. SIKESTON, MO + + + + + Fontenelle Homes, Inc. + + + + + Hi-U-Trailer Mfg. + + + + + Argosy Travel TrailerVersailles, Ohio--Sub. of Airstream + + + + + English Industries + + + + + Baron Motorcycle Co. + + + + + Erie-Sprayer Co. + + + + + Pierce Lowboy Trailer + + + + + Bultaco (Spain) + + + + + Merhow Industries + + + + + Briggs & Stratton Corp. + + + + + Wedgewood Homes + + + + + Excell Travel Trailer + + + + + Longrun + + + + + WRIGHT; STANDER & SENTAR MOWER MODELS;FARM & GARDEN EQUIPMENT + + + + + Roulette Caravan Co. + + + + + Manet + + + + + ASA + + + + + Byerly Trailer & Mfg. Co. + + + + + Unpublished trailer mfr. + + + + + T & L TrailersSikeston, MO; utility trailers + + + + + Gleason Corp. + + + + + R.E. Custom Boat TrailersWest Columbia, South Carolina + + + + + Highstone Trailer + + + + + Carolina Travel Trailers + + + + + TOP BRAND TRAILERS + + + + + J & J Flatbed Trailer + + + + + Mini-Marcellino + + + + + City Dump Trailer + + + + + Fruin + + + + + Heco Boat Trailer + + + + + Jay Wren Trailer + + + + + Ramses + + + + + Honorbuilt Trailer Mfg. + + + + + HYOSUNG MOTORCYCLES & MOPEDS; CHINA + + + + + Silver Eagle Travel Trailer + + + + + MID AMERICA MFG.; INC.; BERTRAND, MO + + + + + Solo Motors, Inc. + + + + + Bowman & Sons + + + + + Six Pac Camper + + + + + MDS + + + + + Realite Trailer + + + + + Pennsbury Manufacturing CorpBensalem, PA; boat trailers + + + + + ROYAL RIDER MOTORCYCLE MANUFACTURING CO., INC.; HUDSON, FL + + + + + MARINE TRANSPORTATION CO., INC.; NORWELL, MA + + + + + Magna American Corp. + + + + + Black Diamond Enterprises + + + + + E-Bus + + + + + Seiden Mobile Homes + + + + + Montgomery Ward (Riverside)MONT for reference only + + + + + Tyler Coach Mfg. + + + + + Rimer, Inc. + + + + + Circle K KennimoreOklahoma City, Oklahoma + + + + + Hill Dump Trailer + + + + + El Do-Craft Boat Co., Inc.Boat trailers--Smackover, Arkansas + + + + + Smily + + + + + Beall Trans-Liner, Inc.Portland, Oregon + + + + + Champion Home Builders Co.Dryden, Michigan + + + + + River Oaks Homes, Inc.Boaz, Alabama + + + + + Betten France TransportationKentucky + + + + + Page Trailer + + + + + Jacobsen Trailers, Inc. + + + + + Homeway Mobile Homes + + + + + Ebony Line Products + + + + + Mgnol Tandem Boat Trailer + + + + + Wicks Engineering & Construction Co. + + + + + Tempe Trailers + + + + + Seminole Boat Trailer + + + + + DAYTEC CENTER; HESPERIA, CA ; MOTORCYCLE FRAMES & PARTS + + + + + Borgward + + + + + Stilo Trailer + + + + + Electric Vehicle Corp. (mfrs. ofreplicas, Minneapolis, MN) + + + + + Davey Compressor Co. + + + + + Santa Cruz Trailer Mfg. Co. + + + + + Donnell Boat Trailer + + + + + Gad-About Trailers + + + + + Tigerline Trailer + + + + + Playmate Coaches + + + + + Biltwell (or Builtwell) + + + + + Ingersoll-Rand Co.Woodcliff Lake, New Jersey + + + + + Caribou Craft Pickup Camper & TrailerMfg. Co. + + + + + Parker + + + + + Silver Leaf Mfg. Co. + + + + + Del Rey Industries, Inc. + + + + + MK 5-1400 Motor Home + + + + + Rancho Trailers, Inc. + + + + + Duro Mobile Homes + + + + + Everybody's Motor Car Mfg. + + + + + RECREATION BY DESIGN LLC.; ELKHART, IN + + + + + Tejas Trailers, Inc.Bellville, Texas + + + + + Monon Trailer Div.Div. of Evans Products Co.--Monon,Indiana + + + + + Lola + + + + + Reo + + + + + Sparrowhawk Trailer Co. + + + + + Roust-About + + + + + Strick Trailers Corp.Fort Washington, Pennsylvania + + + + + Kato Engineering, Subsidiary ofReliance Electric + + + + + GENERAL WELDING & FAB., ELMA,NEW YORK + + + + + Gordon + + + + + Diamond City Trailer Mfg.Murfreesboro, Arkansas + + + + + Same & Lamborghini Tractors of NorthAmerica, Inc. + + + + + Suburban Motors, Inc. + + + + + Module, Inc. + + + + + SkeeterMfd. by Trailers, Inc. + + + + + Fox Better Built Trailers + + + + + Knox Homes Corp. + + + + + INDEPENDENCE MOTORCYCLE COMPANY + + + + + Cunningham + + + + + Travel Queen Motor Home + + + + + NEDLAND INDUSTRIES, INC.; RIDGELAND, WI + + + + + HoosierBoat Trailer--mfd. by Spreuer and Son,c. + + + + + New Bame Trailer + + + + + Zundapp + + + + + Drag Master Utility Trailer + + + + + Aero Liner Co. + + + + + International Mobile Homes of California + + + + + Ghieapy Jol Trailer + + + + + T & M EnterprisesCookville, Texas + + + + + MQ Power + + + + + Kit House Trailer + + + + + Mar-Val Industries, Inc. + + + + + Eagle Trailer Mfg., Inc. + + + + + Shippette Mobile Homes + + + + + CUSTOM AMUSEMENT PRODUCTS, COMPANY; DOVER, FLORIDA + + + + + Cimarron Mfg. Co.Oklahoma City, Oklahoma + + + + + Willborn Brothers + + + + + Landau Motor HomeAnaheim, Claifornia + + + + + Quaker City Iron Works, Inc.Philadelphia, Pennsylvania + + + + + Parkhurst Mfg. Co., Inc.Sedalia, Missouri + + + + + Tempo + + + + + PRO-TRAK TTRAILERS, INC.; CANTON, TX + + + + + AM General Corporation + + + + + Dynasty Electric Car Corp. + + + + + Weaver & SonsDiv. Ventoura Corporation + + + + + Wolverine Camper + + + + + Brooks Brothers Trailers, Inc. + + + + + Helmers Custom Coach + + + + + CLASSIC MANUFACTURING, INC. OR OWENS-CLASSIC MANUFACTURING, INC.; STURGIS, MI + + + + + Chevelle Mobile Homes, Inc. + + + + + J.F.W. Mfg., Inc.Wichita, Kansas + + + + + Unit Crane & Shovel Corp. + + + + + Soil Mover Mfd. Div. + + + + + Sebring Home Corp. + + + + + McCoy/Taylor, Inc. + + + + + Conway + + + + + Reddick Equipment Co., Inc. + + + + + Bonanza Travel Coach, Inc. + + + + + Lifetime Custom Coach + + + + + John T. Wydro + + + + + KINZE; FARM & GARDEN EQUIPMENT + + + + + Sea BirdMfd. by Sno-Bird Trailer Co., Inc. + + + + + Manatee HomesCommerce, Texas + + + + + Nothsway Tandem Trailer + + + + + Darian Mobile HomesMfd. by Richardson Div. GreatSouthwestern Corp. + + + + + Tradewind Industries, Inc.Formerly J. H. Holland Co. + + + + + Summitt Trailer + + + + + York Modern Corp. + + + + + Detroit Tool, Inc. + + + + + Bobcat Skid Steer LoaderManufactured by Melroe Div. + + + + + Chinook + + + + + Roaminghome Co., Inc. + + + + + TRANSTEQ (Transportation Techniques, LLC) + + + + + Blanchard Foundry Co. + + + + + Singer + + + + + Neville Welding, Inc. + + + + + Pullman TrailmobileDiv. of Pullman, Inc.--Chicago, Illinois + + + + + Design StructuresMfrs. office and special purposetrailers--Lombard, Illinois + + + + + HM + + + + + Gas Gas Motors of America, LLC + + + + + Kellogg-American, Inc. + + + + + Empire Trailer, Inc. + + + + + MGS, Inc. + + + + + DeCourville + + + + + Winter Weiss Co. + + + + + Kaiser + + + + + Truckin TrailerMfd. by V.W.T. Corp. + + + + + TransglobalNew York; flatbed trailers + + + + + Maico (West Germany) + + + + + Olson + + + + + Voloci + + + + + Tow Go TrailersTonganoxie, Kansas + + + + + Cagiva + + + + + Owen Div., Anvil Attachments, Inc. + + + + + Leisure Craft + + + + + General Coach Mfg. Co.Div. of Divco-Wayne Industries + + + + + Rotech, Inc. + + + + + Firma LenkoSee Larvin + + + + + Globe Camper Mfg. + + + + + Dynahoe Truck + + + + + Ti-Brook, Inc.Brookville, Pennsylvania + + + + + Coastal Mfg. Co. or Coastal Building Systems + + + + + Air-Flo Mfg. Co., Inc.Fort Worth, Texas + + + + + Monarch Mobile Homes + + + + + Holmes-Craft + + + + + Kontiki Camper Trailer + + + + + Kingsway Travel Trailer + + + + + Beaver Mfg. Corp. + + + + + Bradford IndustriesBradford, Illinois + + + + + Lawn FliteMfd. by MTD Products, Inc. + + + + + Arabi Homes, Inc.Arabi, Georgia + + + + + En Route, Inc.Elkhart, Indiana + + + + + SOUTH BAY TRAILERS; LOUISVILLE, KY + + + + + Brighton Built TrailersBrighton, Iowa + + + + + Concord Products, Inc. + + + + + GSM + + + + + Trail Haven Div. + + + + + CMW (Custom Metal Works) + + + + + ISO + + + + + J & J TRAILER MANUFACTURING OR J.D.J. TRAILER MANUFACTURING, ONTARIO, CANADA + + + + + Design Intennt, Inc.Livingston, Tennessee + + + + + Pull-Do Trailers + + + + + Cleveland Trencher Co.Div. American Hoist & Derrick Co. + + + + + Power Dyne + + + + + Jay Dee IndustriesCassopolis, Michigan + + + + + Leisure Manor, Inc. + + + + + Enzmann + + + + + Wago Campers + + + + + LamplighterMfd. by Moduline International, Inc. + + + + + Mate, Inc.Katy, Texas + + + + + Triple R TrailerStockton, Missouri + + + + + Johnson Corp. + + + + + Rockwood, Inc.Millersburg, Indiana + + + + + Holiday Trailer Sales & Mfg. Co. + + + + + Dart Truck Co., PACCAR, Inc. + + + + + National Crane Corporation, Subsidi-ary of Walter Kidde & Co., Inc. + + + + + Sun-RayMfd. by Wilson Trailer Mart + + + + + Cottage-Ette Mfg. + + + + + Revcon + + + + + K & G Mfg. Co.Decatur, Illinois + + + + + CUSTOM BUILT TRAILERS AN OR CUSTOM TRIKES, INC. + + + + + Velocette + + + + + Fairmont Steel Products + + + + + Atlantic Mobile Corp. + + + + + Spyker Motorcars + + + + + Snatcher Trailer CompanyBettendorf, Louisiana + + + + + Anton Mfg. Co. + + + + + Foster Flatbed Trailer + + + + + Avalon Mobile Homes + + + + + Ben Pearson Mfg. Co., Inc. + + + + + Westholt Mfg. + + + + + Vac-Tec + + + + + ScorpionCrosby, MN + + + + + Warren Mfg. Co. + + + + + Calumet Coach Co. + + + + + OUTLAW TRAILER, MFG.; ST. JOSEPH, MO + + + + + Classic Motor Carriages, Inc.(Hallandale, FL) + + + + + CapreCarrocerias Preconstruidas SASan Nicholas, Mexico, bus trailers + + + + + Malyette + + + + + Medallion Mobile Homes + + + + + Quickload + + + + + Zil + + + + + Wayne SweeperSweeper Div., FMC, Pomona, California + + + + + TZ + + + + + LOAD BOSS,INC/CHARLES H BURKETTS AUTORAMA INC; MANNS CHOICE,PENNSYLVANIA + + + + + Torino + + + + + Shaw-Wynn Homes Corp. + + + + + Meteor (Canadian Mercury) + + + + + J & W TRAILERS; LAMAR, MO + + + + + Little Prince Travel TrailerMfrs. boat trailers + + + + + Sureload + + + + + I.R. Witzer Company, Inc. + + + + + Chilton Trailer Co., Inc. + + + + + Classic Mfg., Inc. + + + + + Mangar Co. + + + + + SCI Trailer + + + + + Nationwide + + + + + Santeler Brothers + + + + + Rosemont Mobile HomeDiv. DeRose Industries + + + + + Aurora Mobile Homes + + + + + Molloy Mobile Crafts + + + + + Diva + + + + + Zhejiang Leike Machinery Co., Ltd. + + + + + AJW + + + + + Huffy Corp. (Dayton, Ohio) + + + + + Lucky + + + + + English Ford (British) + + + + + Bill James Trailer SalesWinfield, Texas + + + + + MEB TRAILER SALES; WALNUT RIDGE, ARKANSAS + + + + + Triton Trailer Corp.Allentown, Wisconsin; manufacturestrailers including snowmobile trailers + + + + + Shovel Supply Co., Inc. + + + + + Halliburton Co. + + + + + Hotchkiss + + + + + Thule Trailers, Inc. + + + + + LIBERTY INDUSTRIES; CLAYTON, INDIANA + + + + + CZ (Czechoslavakia--also see makeJawa/CZ) + + + + + Figura, MikeBruce, Wisconsin + + + + + Ventura Tent Camper + + + + + D.M.F. Trailer Mfg., Inc. + + + + + Thunderbird CastlesDiv. Thunderbird Products + + + + + Mair & Son., Inc. + + + + + Safet Camper + + + + + Bar-A-Horse Trailer + + + + + R.T.R. Trailers, Inc. + + + + + Vermeer Manufacturing Co. + + + + + Maxon EagleMfd. by Maxon Industries, Inc. + + + + + Alumna-Weld, Inc.Friendship, Arkansas + + + + + Interstate Products + + + + + Blitz Mfg. Co. + + + + + GLOBAL ELECTRIC MOTOR CARS, LLC, FARGO,NORTH DAKOTA 2 & 4 PASSENGER, LONG & SHORT UTILITY TYPE VEHIC + + + + + Humes Truck & Trailer Mfg. Co + + + + + Scoutboat Trailer + + + + + Car Camp + + + + + Sparta + + + + + Matrette + + + + + Tow Mobile Forklift + + + + + Wasp + + + + + Officer, TheElkhart, Indiana + + + + + American Trailer & Mfg. Co.See also Transporter, Downey, California + + + + + LIBERTY, INC. MAKER OF TRAV-A LONG TRAILER, LITTLE RIVER,SC + + + + + Pedalpower Electroped + + + + + CharismaMfd, by Merrimac Corp. + + + + + Northern Cruisers + + + + + Taylor Metal Works, Inc.Milan, Tennessee + + + + + Takeuchi Manufacturing (U.S.) Ltd.Atlanta, GA; manufactures compact trackequipment + + + + + Mighty MidgetMfd. by Owens-Classis, Inc. + + + + + Frank Motor Homes, Inc. + + + + + Golden West Mobile Homes + + + + + Silver Trail + + + + + Walker Stainless Equipment Co.New Lisbon, Wisconsin + + + + + Rex + + + + + Compact Equipment Co. + + + + + TOWRITE MANUFACTURING; BUNN LEVEL, NC; TTRAILERS & DOLLIES + + + + + Wanderer Camper + + + + + Pacesetter + + + + + Daimler + + + + + Yanger Mobile Homes + + + + + SKYTRAK; CONSTRUCTION EQUIPMENT;FORKLIFT ETC. + + + + + Transco Trailer + + + + + HORTON VANS, INC.; EATONTON, GO + + + + + A C (Great Britian) + + + + + Rec-Sha Trailer + + + + + Mobilaire Mobile Homes + + + + + Jerrytime Camper + + + + + SmallwoodCounty Line Co. + + + + + POLINI MOTORCYCLES + + + + + AquariusBoat trailers--mfd. by Trail-Rite, Inc. + + + + + Saturn + + + + + Brown + + + + + Mars Camper Co. + + + + + Zim + + + + + Jac-Trac, Inc.Marshfield, WI + + + + + Rush Industries, Inc.Elkhart, Indiana + + + + + MONSOON (ATV'S) ALL TERRAIN VEHICLES + + + + + Harley-Davidson + + + + + Promark Products Corp. + + + + + Budson Knobby Flatbed Trailer + + + + + Thunderbikes, Inc. + + + + + Olathe Mfg. Co., Inc. + + + + + Kinlon or Chongqing Kinlon Science & Tech. Grp. + + + + + Navajo Horse Trailer + + + + + Kenway Campers, Inc. + + + + + Pleasureway Mfg. + + + + + China Jiangmen Group Co., Ltd. + + + + + Dreamer + + + + + ATLAS SPECIALITY_PRODUCTS/TRAILERS + + + + + Brute Equipment Inc.Glen Alan, Mississippi + + + + + Bravo Trailer + + + + + Erskine + + + + + Monte + + + + + Canadian Trailmobile Ltd. + + + + + Apache Coach Co. + + + + + Transliner Insulated Tank Trailer + + + + + Baker Trailer & Body Co. + + + + + Wonder State Boat Trailer + + + + + D & D FABRICATIONS, ST LOUISS, MICHIGAN / TRAIL-TECH TRAILERS + + + + + Gronewegen B.V.Netherlands + + + + + LEVIS MOTORCYCLES; GREAT BRITAIN + + + + + WHEEL ESTATE SALES & SERVICE, INC; TRADE NAME/STEWART LODGES + + + + + Lotus + + + + + Jayco, Inc. + + + + + Meyer Morton Co. + + + + + Skim Air Trailer + + + + + Venus + + + + + Frolic Homes, Inc. + + + + + Semo Tank/Baker Equip. Co. + + + + + LOADMASTER INC; INDIANA + + + + + DISCOUNT TRAILERS; FORT WORTH, TX + + + + + Rosco Mfg. Co.Minneapolis, Minnesota + + + + + Landmaster + + + + + MOTOBECANE; SCOOTERS & CYCLES + + + + + Meitian Motorcycle Co., Ltd. Or Shanghai Meitian Motorcycle Co., Ltd. + + + + + Nevada Air Products Co. + + + + + Dodge + + + + + ConvertoCambridge City, Indiana--Div. Golay &Co., Inc. + + + + + Keel-HaulerMfd. by Precision Deburring &Fabricating, Inc. + + + + + Cotton + + + + + Wayne Corp.Richmond, IN + + + + + Evans-Plugge Co., Inc.Columbus, Nebraska + + + + + Metal Fabrication, IncWinchester, TN + + + + + Broncco (Italy) + + + + + Kaywood Homes, Inc. + + + + + ASI Trailer + + + + + General Marine Industries + + + + + Dormi Industries, Inc. + + + + + Ottawa Truck Div., Gulf & WesternMfg., Co. + + + + + Corbitt + + + + + Gulf States Mfg. Corp. + + + + + Alsport/Steen (also see Tri-Sport/Steen) + + + + + Silent Hoist & Crane Co. + + + + + Ken Trailer + + + + + Midmark + + + + + Moore Equipment Co. + + + + + Holly Parks, Inc.Mobile Homes + + + + + Triangle-K Trailer Co.Drumright, Oklahoma + + + + + Tri-State Homes, Inc. + + + + + Hooper Trailer Sales, Inc.Monticello, GA; flatbed trailers. + + + + + Pioneer Sales & Mfg. Co. + + + + + Furatell IndustriesBruce, Wisconsin + + + + + New Era Trans Co. + + + + + Scamp + + + + + Amerigo Travel Trailer + + + + + Penton (KTM--Austria) + + + + + Boulder Trailer + + + + + North American Mfg. Co. + + + + + WE-HAUL TRAILERS; DIVISION OF FOREST RIVER, INC. GOSHEN. IN + + + + + MountaineerLawn & Garden tractor--mfd. by UnitedFarm Tools, Inc. + + + + + Travette Mfg. + + + + + Truck Trailer Sales & ServiceYankton, South Dakota, Inc. + + + + + Scott + + + + + AlouetteSee Alouette Recreation Products, Ltd. + + + + + J. M. Huber Corp. + + + + + Pennstyle Campers, Inc. + + + + + Wendax + + + + + Cleveland Mfg. Co., Inc. (CMC) + + + + + Shanghai Jialing Vehicle Business Co., Ltd. + + + + + Bar-C Horse Trailer + + + + + VULCAN WORKS, INC; MANCHESTER, NEW HAMPSHIRE; MOTORCYCLES + + + + + Culpepper Trailer Co.Clinton, Arkansas + + + + + Poloron ProductsMfrs. riding mowers--Harrison, New York + + + + + Colony Factory Crafted HomesShippenville, PA + + + + + Gypsum Express LTDBaldwinsville, NY; makes convertordollies + + + + + Jersey Trailer + + + + + Glass Stream TrailersNashville, Georgia + + + + + ARMOR CHASSIS, LLC; RIDGELAND, SC + + + + + General Homes Div.Div. of Divco-Wayne Industries + + + + + Drifter Mfg. Co. + + + + + Volga + + + + + Ashdown Mfg. Corp.Ashdown, Arkansas + + + + + Carry Craft Trailers + + + + + Beaver Trailer + + + + + Seco Mfg. Co. + + + + + Allard + + + + + Explorer + + + + + Burlington Mfg. Co. + + + + + Big AMfd. by Rickel Mfg. Corp. + + + + + Pontiac + + + + + Sportliner Tent Trailer + + + + + Fox + + + + + Atwood Mobile Home + + + + + Starlite Mfg. Co. + + + + + Marion Trailer SalesMarion, Indiana + + + + + Florida Wholesale Distributor + + + + + Pannonia + + + + + BIG DOG CUSTOM MOTORCYCLES, INC. + + + + + Nu-Wa Campers, Inc. + + + + + Away We Go Travel Trailer + + + + + Pardonnet Mfg. Co.Livonia, Michigan + + + + + Dekco Mobile Mfg.Menahga, Minnesota + + + + + Bendix Corp.Mfr. of mobile homes and recreationalvehicles + + + + + Greeves + + + + + Pitman Brothers Co. + + + + + Ranger Mobile HomesMfd. by Ritz-Craft, Inc. of Indiana(see Ritz-Craft of Pa., Inc.) + + + + + CassMfd. by Custom Assembly + + + + + Rockin-Bar Trailers Ltd.Durant, Oklahoma + + + + + L & S LINE MFG.; BRISTOL, TENNESSEE + + + + + LaforzaUtility vehicle; Hayward, California + + + + + Rolco Mfg. Co. + + + + + Goliath + + + + + TERRY'S UTILITY TRAILER OR TERRY W. BECK; WARRENVILLE, SC + + + + + Stanley Hydraulic Tools + + + + + Gator Trailers Corp. + + + + + Country-Aire Travel Trailer + + + + + Boles-Aero, Inc. + + + + + WILD WEST MOTOR COMPANY; POWAY, CA. (PEACEMAKER MODEL) + + + + + Southwest Welding & Mfg. Co. + + + + + BonnavillaMfd. by Chief Industries + + + + + Denzel + + + + + Ravens-Metal Products, Inc.Parkersburg, West Virginia + + + + + Yazoo Mfg. Co., Inc.Jackson, Mississippi + + + + + Dolan Corp. + + + + + Keystone Coach Mfg. Co. + + + + + Hongki or Hong-Chi + + + + + Zoboda + + + + + McCulloch Mite-E-Lite, Inc.,McCulloch Corp. + + + + + Action Industries + + + + + Royal Brothers + + + + + Phelan Mfg. Co.Nashville, Tennessee + + + + + Winco Div.Dyna Technology, Inc., Minneapolis,Minnesota + + + + + Stewart Park Homes, Inc. + + + + + Aspes + + + + + Westward Coach Mfg. + + + + + Chateau Mfg. Co., Inc. + + + + + Country Coach Motor HomeJunction City, Oregon + + + + + Ski-Tow Mfg. Co., Inc.Elkhart, Indiana + + + + + Coleman + + + + + Broadmore Mobile HomesSubsidiary of Fleetwood Trailers &Mobile Homes + + + + + NorthwaySee Northway Snowmobiles + + + + + Trail-Et Horse Trailer + + + + + Sunset Mobile Homes + + + + + Steelcraft Log Trailer + + + + + Fanc Motor Home Truck + + + + + Rickman + + + + + Coastal Trailer Corp. + + + + + Bird Engineering, Inc. + + + + + AMERICAN TRANSPORTATION; BUS + + + + + C-Mor + + + + + Avco Corp. + + + + + Kenworth Motor Truck Co.Div. of Paccar, Inc. Also includesKenworth Glider. + + + + + Conceptor Industries, Inc. + + + + + Prince Motors + + + + + McQuerry Horse Trailer + + + + + Durabilt Industries, Inc. + + + + + Pennsylvania Furnace and IronMfrs. tankers--company bought out byDairy Equipment, Madison, Wisconsin + + + + + Nickel & HolmanFenton, Michigan + + + + + Caprice Homes Mfs. Co. + + + + + ASPT + + + + + Vista Queen Trailer + + + + + Greenhaven Mobile House Trailer + + + + + Allis Chalmers + + + + + Poloron + + + + + Amtec Trailer + + + + + Benlo Co. + + + + + MAX-ATLAS EQUIPMENT INTERNATIONAL, INC.; ST-JEAN-SUR-RICHELIEU, QUEBEC CANADA + + + + + I.S.E., Inc.Denver, Colorado + + + + + Doolittle + + + + + American DreamMfd. by American Family Homes, Inc. + + + + + Mobilux + + + + + Dart, KW + + + + + Turnbow Trailer + + + + + Kilgore IndustriesPomona, California + + + + + Fleet Cap'n Trailers + + + + + ULTRA MOTORCYCLE CO. + + + + + U-Dump, Inc.Ocala, Florida + + + + + EMW + + + + + Griswold IndustriesSee Swinger Snowmobiles + + + + + Pride & Joy Mini Motor Home + + + + + Auto Union + + + + + Shelby American + + + + + MacDonald's Mobile Homes + + + + + ATK America Inc + + + + + Traveliner Motor Home + + + + + Concord Mobile Homes + + + + + Condor + + + + + Centaur + + + + + AGCO INC. FORMERLY ALLIS CHALMERS & K-H DEUTZ OF GERMANY + + + + + Malro USA DistributorsHeber, CA; recreational trailer + + + + + Perris Valley Campers + + + + + Norman + + + + + Argonaut State Limousine + + + + + Mobile Freeze + + + + + Camel Camper Trailer + + + + + KTMMEX Motorcycle Mfg. + + + + + Branstrator Engineering Corp. + + + + + Champion Trailers + + + + + General Engines Co., Inc.Throfare, New Jersey + + + + + Run-About + + + + + Rainbow Camper Co. + + + + + FWT, Inc. + + + + + Bee-Line Travel Trailers or MobileHomes, Inc. + + + + + Peel + + + + + Vulcan Trailer Mfg. Co.Birmingham, Alabama + + + + + Trail Car Boat Trailer + + + + + Sunset Travelers + + + + + Trojan Industries, Inc. + + + + + Semlac Corp. + + + + + Saling Mfg. Co. + + + + + Demo Horse Trailer + + + + + Dazon, Inc. + + + + + Main Line, Inc. + + + + + Copperstate Coach Co. + + + + + American Pipe & Steel Corp. + + + + + Sun L Group, Inc. + + + + + Cub Camper Trailers + + + + + Lafayette Motor Home + + + + + Cleveland Brothers Equipment Co.D & B Products + + + + + Alloway Mfg. Co., Inc. + + + + + TRL ENTERPRISES TRAILERS LOVELAND, COLORADO + + + + + Generac Corp. + + + + + EvinrudeSee Outboard Marine Corporation + + + + + LORANGER ENTERPRISES, INC.; SAN ANTONIO, TX + + + + + McClain Trailer Mfg. Co.Boat trailers--Houston, Texas + + + + + Ellis Mfg. Co., Inc. + + + + + Eagle + + + + + Remington HomesDallas, Texas (Division of SunrizonHomes, Inc.) + + + + + Burris Stock Trailer + + + + + David Mfg. Co.Mason City, Iowa + + + + + Horizon Mobile Homes + + + + + Stage Coach Mfg. Co. + + + + + Whizzer + + + + + Champ Corp. + + + + + DIAMOND G TRAILER COMPANY /GRAHAM FABRICATIONS, INC.; PURVIS, MISSISSIPPI; MANUFACTURING HOME OF DRE + + + + + Charmac Trailers + + + + + Jenkins Equipment Co., Inc. Subsidi-ary of Sweepster, Inc. + + + + + Drydock Trailer, Inc.Boat trailers--Freeport, Florida + + + + + CHAMPION BUS, INC. MICHIGAN + + + + + United Mfg. Co. + + + + + Deville Industries, Inc. + + + + + M.G.M., Inc. + + + + + Rabbit + + + + + Coburn Industries, Inc. + + + + + Ag-Systems, Inc.Hutchinson, Minnesota + + + + + DurobiltEl Monte, California + + + + + BOAT TRAILERS, WAUKEGAN, ILLINOIS + + + + + A-A WELDING SERVICEMOUNT PLEASANT, TEXAS_; ANS OR CLINT R. WOODS INC + + + + + Mercury Trailer Industries + + + + + Holden Trailer Mfg. Co.Holiday House, Inc. + + + + + Contempori Mobile Homes, Inc. + + + + + Autokraft + + + + + Henry J. + + + + + Maple Leaf, Inc.Middlebury, Indiana + + + + + Commuter Industries, Inc. + + + + + Olympia Motor Home + + + + + All Lakes Trailer + + + + + Abarth + + + + + Tampo Manufacturing Co. Inc. + + + + + Edwards Trailer + + + + + Mayco Pump Corp.Los Angeles, California + + + + + Kuhn Farm Machinery, Inc. + + + + + Simenson Mfg. Co. + + + + + Magnolia Travel Trailer + + + + + St. Joseph Marine Trailer + + + + + Kent Mfg. Co., Inc. + + + + + Westerwalder EisenwerkWest Germany + + + + + Ching-Kan-Shan + + + + + Porta-Kamp Mfg. + + + + + Lincoln Electric Co.Cleveland, Ohio + + + + + Springtrail Mfg. Co.Springfield, Missouri + + + + + Savage Coach Mfg., Inc. + + + + + Euclid, Inc., Subsidiary of WhiteMotor Corp. + + + + + Stucco Trailer + + + + + SOUTHERN SALES, INC; TRAVELERS REST,SC + + + + + Wagner + + + + + TET + + + + + XTREME ATVS + + + + + Whitley Mfg. Co. + + + + + Mercury (See Mercury Marine) + + + + + CIRCLE C MANUFACTURER; LIVINGSTON, TX + + + + + Caterpillar Tractor Co. + + + + + AMERICAN QUANTUM CYCLES, INC. ; MELBOURNE, FL + + + + + American Way Homes Corp. + + + + + Jetmobile + + + + + L. A. Woods Co., Inc.Lawrenceville, Illinois + + + + + CPI U.S.A. + + + + + Muv-All Trailers Multech Corp. + + + + + House of Architecture + + + + + Midwest Mini-Tote Co.Muskego, Wisconsin + + + + + Holva Travel Trailer + + + + + GEO + + + + + Triple Crown Trailers, Inc. + + + + + Binks Mfg. Co.Franklin Park, Illinois + + + + + DINLI ATV'S + + + + + Benelli (Italy) + + + + + Good Mfg. Co. + + + + + Zipper, Inc. + + + + + Richardson Mfg. Co., Inc. + + + + + KNL Holdings, LLC + + + + + Hudson Trailer + + + + + Moling Corp. and Car King Dolly Trailers + + + + + Titleist Travel Trailer + + + + + KIDRON; TRAILERS + + + + + Maverick + + + + + Weld-It CompanyLos Angeles, California + + + + + Marmon + + + + + Raider + + + + + Armstrong Siddeley + + + + + MANGMfd. by Oregon Mfg. Co., Inc. + + + + + Custom Coach Co. + + + + + Coventry Mobile HomeMfd. by Great Southwest Corp. + + + + + King Fish Boat Trailer + + + + + Kut-Kwick Corp.Mfrs. industrial mowers--Brunswick,Georgia + + + + + Tohatsu + + + + + Texarkana Div.Div. of Divco-Wayne Industries + + + + + Powell Mfg. Co., Inc. + + + + + Lexus + + + + + W.F. Mickey Body Co., Inc. + + + + + Mohawk, Inc. + + + + + Art James Mfg. + + + + + Adams Engineering Co. + + + + + Lee Enterprises Mfg. Co., Inc. + + + + + DALTON ENTERPRISES INC. + + + + + Covered Wagon Trailer + + + + + Sprayline Two Wheel Trailer + + + + + Pettibone Mercury, SubsidiaryMercury Mfg. Co. + + + + + Wil-Trail Corp. + + + + + Davis + + + + + Rollfast + + + + + Wayfarer Coach Mfg.Div. St. Paul Fence & Iron Works + + + + + Northwestern Mobile HomesDiv. Rainway Manufacturing Company + + + + + AMERICAN TRAVEL SYSTEMS, INC.; ELKHART, IN + + + + + Liberty Homes, Inc.Goshen, Indiana + + + + + Nu-Life Environmental, Inc. + + + + + MAC-LANDER, INC; OSCEOLA, FL + + + + + Star Custom Trailers, Inc.Lebanon, Tennessee + + + + + Braughms Travel Trailer + + + + + Total Performance, Inc. + + + + + Carpenter Manufacturing, IncMitchell, IN + + + + + Motom + + + + + Damon Industries, Inc.Elkhart, Indiana + + + + + Lemco Tool Corp.Cogan Station, Pennsylvania + + + + + East Se Trailer + + + + + OBERBILT TRAILER COMPANY DRUMRIGHT, OK + + + + + Avanti + + + + + Traxcavator Tract + + + + + Diamond G EquipmentOklahoma City, Oklahoma + + + + + McCrabb Mfg., Inc.West Liberty, Iowa + + + + + Ottawa Truck, Inc. + + + + + SAUK CENTRE WELDING & MACHINE WORKS, INC. FELLING TRAILERS + + + + + HogerMfd. by Sundowner Trailer Co. + + + + + Hiab Cranes and Loaders, Inc.Newark, Delaware + + + + + Monticlaire Mobile Homes + + + + + Lodal, Inc.Kinsford, Michigan + + + + + Trav-L-Homes + + + + + Elite Mfg.Camper Shells--Merced, California + + + + + BLUE RIDGE TRAILERS + + + + + International Harvester Co. + + + + + BPMfd, by SS Trailer Co. + + + + + Smokey Trailer + + + + + Piazio + + + + + Omsteel Products Corp. + + + + + Arctic Enterprises, Inc.Thief River Falls, Minnesota + + + + + Hostar Marine Transport Systems, Inc. + + + + + Schetzky Equipment Corp. + + + + + Cam-O-Tel Corp. + + + + + Hough Brothers, Inc. + + + + + Loncin Group Import & Export Co., Ltd. + + + + + Load King Trailer Co.Div. of CMI Corp.--Elk Point, SouthDakota + + + + + Ayr-Way CampersDiv. K. V. Molded Products, Inc. + + + + + E-Z Camper (or Kamper) + + + + + Sanker Mfg. & Supply + + + + + Thames + + + + + Travelaire Trailer Mfg. + + + + + Ventura Mfg. and Implement Co.Oxnard, California + + + + + + Hobbs TrailersDiv. of Fruehauf Corp.--Fort Worth,Texas + + + + + Kohler Co. + + + + + General Electric + + + + + Prevost Car, Inc.Mfrs. of "Prevost Bus"--Sainte Claire,Quebec, Canada + + + + + Aztec Products Inc.Mansfield, Texas + + + + + S M Moon + + + + + Float-On of FloridaBoat Trailers--Ft. Pierce, Florida + + + + + Panterra + + + + + Treasure Chest Products + + + + + Adette + + + + + Speicher Brothers, Inc.Auger products + + + + + Dynaweld Trailer + + + + + Dalton, Inc. + + + + + Advance MixerFt. Wayne, IN; truck, front dischargetransit mix + + + + + Brunswick Travel Trailer + + + + + Rockland Homes, Inc. + + + + + Decamp Homes, Inc. + + + + + Volunteer Mfg. Corp. + + + + + HerculiftMfd. by TCI Power Products, Inc. + + + + + High Country Trailer Sales & Mfg. + + + + + Inger-Teco Corp. + + + + + Schramm, Inc.West Chester, Pennsylvania + + + + + WALTRON LIMITED/ALDURA; RIDGETOWN, ONTARIO CANADA + + + + + Hillco, Inc. + + + + + Air-Flo Mobile HomeMfd. by Gregory Mfg. Co. + + + + + Road Clipper + + + + + U.S. MARINE CORPS; MAKE IS UNKNOWN + + + + + NEWMAR CORPORATION; NAPPANEE, IN_ + + + + + Itasca Motor HomesDiv. Winnebago Ind., Inc.,Forest City, Iowa + + + + + Sea Stallion TrailersKlamath Falls, Oregon + + + + + CARPENTER INDUSTRIES INC. + + + + + Mistral + + + + + Buffalo-Bomag Div.Div. of Koehring Co. + + + + + EnerexMfd. by Hayes Equip. Corp. + + + + + Jaeger Machine co.Columbus, Ohio + + + + + Comet Motorcycle TrailerMfd. by Yarbrough Mfg. Co., Inc. + + + + + Corn Belt Manufacturing, Inc.Early, Iowa + + + + + Yuchi Mobile Homes + + + + + Bluebird International + + + + + Custom Fab Body Bodies andTrailers, Inc.Indiana, Pennsylvania + + + + + CARGO PRO TRAILERS + + + + + Chukar, Inc.Phoenix, Arizona + + + + + Lagusa Motor Coach + + + + + Sovam + + + + + Brown Trencher Div., Rivinius, Inc. + + + + + MODULAR SYSTEMS, INC; INDIANA + + + + + First American Coach + + + + + Skat (or Skat-Kitty) + + + + + Shertzer Dump Trailer + + + + + Braco Custom ProductsCassopolis, Michigan + + + + + Levco Manufacturers, Inc. + + + + + Utah Mobile Homes + + + + + Standard + + + + + Terravac Corp.Stockton, California + + + + + Trailco-Norwin + + + + + Weeres Trailer + + + + + Brooten Fabricating, Inc. + + + + + Hop Cap P/U Camper Trailer + + + + + J.P. Utility Trailers & Welding + + + + + Rainway Mfg. Co. + + + + + Rushmore Homes + + + + + Roper Outdoor Power ProductsKankakee, Illinois + + + + + Ledwell & Son Enterprises, Inc.Texarkana, Texas + + + + + Travelpak Car Topper Sales + + + + + Landis Steel Co. + + + + + Boise Mobile Equipment + + + + + Burrito (also see make J.C.Penney) + + + + + Johnson's Trailer Building & Repair + + + + + Linco Trailer Home + + + + + ANDERSON MANUFACTURING; CAMILLA, GA + + + + + Hibdon Mfg. Co. + + + + + Pelican Aluminum Mfg. + + + + + Van Art, Inc. + + + + + Yacht Club + + + + + Trailorama + + + + + AG-Rain, Inc. + + + + + Simpson Enterprises, Inc. + + + + + FallsRiding lawn mower + + + + + Detroiter Homes + + + + + Chris Craft Corp. + + + + + Luedtke Mfg., Inc.Allenton, Wisconsin + + + + + Tru-Tow Trailers + + + + + Gitane + + + + + Pincor Products + + + + + Westland Trailer Co.Portland, Oregon + + + + + PORTA-DOCK, INC + + + + + SEXTON MOTORCYCLE COMPANY + + + + + All American Campers + + + + + Criterion Homes Mfg. Inc.Largo, Florida + + + + + Sportsman + + + + + Byers + + + + + URAL MOTORCYCLES OF AMERICA; PREVIOUSLY OR ALSO KNOWN AS: IRBIT MOTORWORKS OF AMERICA; REDMOND, WA + + + + + Stack Truck, Inc. + + + + + Monark + + + + + Three-Dimensional Mobiles + + + + + Four Star Coach Co. + + + + + Venus Coaches + + + + + MacGregor Yacht Corp.Costa Mesa, California + + + + + New England Homes or Trailers + + + + + ALL-AMERICAN TRAILER MFG. CO., INC.; SELMA, AL + + + + + I. M. P. (U.S.) + + + + + PEQUAGordonville, Pennsylvania + + + + + Marvell Mobile Home + + + + + Rinso Forklift + + + + + Chaperalle Horse Trailer + + + + + Bilt-Rite Trailers, Inc. + + + + + Swanson Tilt trailer + + + + + Low Pro Custom Trailer + + + + + Sherwood Sentry Horse Trailer + + + + + Uteliner Motor Home + + + + + Digmor Equipment & Engineering Co., Inc. + + + + + Melody Home Mfg. Co. + + + + + Western + + + + + Walter Motor Truck Co. + + + + + Pacemaker + + + + + Calvia Brothers Trailer Mfg. + + + + + Auto Trailer Co. + + + + + Embassy HomesDiv. of Guerdon Industries + + + + + Komar + + + + + Cliff Office Trailer + + + + + Dillon Enterprises, Inc.North Liberty, Indiana + + + + + Toura Products + + + + + Satoh Japanese Tractor + + + + + Dayton Electric Mfg. Co.Mfrs. air compressors--Chicago, Illinois + + + + + White Materials Handling, SubsidiaryWhite Motor Corp. + + + + + Parilla + + + + + FORCE MANUFACTURING, INC. AND/OR HARVEY; BANGOR MAINE, NANCY HARVEY + + + + + R.C. Industries, Inc.Goshen, Indiana + + + + + Haul-A-Day Trailers + + + + + Dolphin HomesDiv. Tidwell Ind., Inc., Haleyville,Alabama + + + + + Cuke, Inc.Mendota, Illinois + + + + + Ramada Tent Camping Trailer + + + + + International Coach Mfg. + + + + + Sunflower Mfg. Co., Inc. + + + + + Black and Decker + + + + + Malibu Campers + + + + + Rayne Plane, Inc. + + + + + Bentley + + + + + Space Assemblies, Inc.Middlebury, Indiana + + + + + Villager Travel Trailer + + + + + Dynamic Industries, Inc. + + + + + Bob Coons + + + + + Jim Glo TrailersWilcox, AZ + + + + + Ace (model of Hodaka) + + + + + BEHNKE ENTERPRISES, INC; FARLEY, IA + + + + + Royco Mfg. Co. + + + + + Hindustan + + + + + Florig Equipment Co., Inc.Conshohocken, Pennsylvania + + + + + Walter Products & Engineering Co. + + + + + Office Master, Inc.Hampshire, Tennessee + + + + + Beaver Monterey Motor Home + + + + + Schnure Ho' Trailer + + + + + Mercantile Mfg. Co., Inc. + + + + + Independent Mfg. Co., Inc. + + + + + Jalldee, Inc.Spencer, Wisconsin + + + + + Globemaster Mobile Homes + + + + + Troxell Trailer Mfg.Ft. Worth, Texas + + + + + Skippy Trailer + + + + + Avenger + + + + + Zaporozhets + + + + + LMC + + + + + Red River Custom TrailerClarksville, Texas + + + + + Lawn BoyMfrd. by Outboard Marine Corp. + + + + + Cushman Turf-OMC Lincoln + + + + + Cameo Travel Trailer + + + + + Beemer & Grubb Enterprises + + + + + Fiat-Abarth + + + + + Isuzu + + + + + Loodcraft + + + + + GEELY OF SHANGHAI CHINA; MOTORCYCLES,MOPEDS & PASSENGER CARS + + + + + Scamp Trailer + + + + + COMPETITION TRAILERS, INC HENDERSON, TEXAS + + + + + Martin Trailers, Ltd.St. Laurent, Montreal + + + + + Superior Trailer WorksLos Angeles, California + + + + + Bowers Mfg. Co. + + + + + J.S. Mobile Homes + + + + + JOHNSTON SWEEPER CO., CHINO, CA + + + + + Mzma + + + + + CAMPAGNA MOTO SPORT, INC; PLESSISVILLE, QUEBEC, CANADA + + + + + Sun Blazer Travel Trailer + + + + + Twin Trailer + + + + + Tioga Motor Home + + + + + Gordon Smith & Co., Inc.Bowling Green, Kentucky + + + + + Indian Campers, Inc. + + + + + Hilltopper Mfg. Corp. + + + + + A & M Coach + + + + + Deep Sanderson + + + + + Aloha Trailer Co. + + + + + Nsu-Fiat + + + + + Delhi Metal Products, Ltd.Delhi, Ontario, Canada--mfrs. boattrailers + + + + + Univision Industries Ltd. + + + + + Custom Trailers, Inc.Springfield, Missouri + + + + + HARRIMAN SALES, INC.; DEKALB JCT, NEW YORK + + + + + Gentry + + + + + Remke Trailer + + + + + Mobility, Inc.Minneapolis, Minnesota + + + + + Master View + + + + + AJS (United Kingdom) + + + + + Martinez Trailer + + + + + Cinderella Mobile HomesMfd. by Mobile Structures, Inc. + + + + + Lift Truck, Inc. + + + + + Moody Mfg. Co. + + + + + LINHAI MOPEDS, POWERMAX; CHINA + + + + + All South Equipment Corp. + + + + + Great Lake + + + + + ElktonMfd. by Price-Meyers Corp. + + + + + Dunbar KappleBatavia, Illinois + + + + + Big Tex + + + + + Royal Industries Noble Div. + + + + + Swisher Mower & Machine Co.Warrensburg, Missouri + + + + + Ogle + + + + + D & P Welding Co. + + + + + D.M. & V. Enterprises, Inc. + + + + + Monaco Motor Home + + + + + Monitor Coach Co. + + + + + Casa Manana Mfg. Corp. + + + + + Becker, Charles H., Inc. + + + + + Superior Equipment Co.Buckeye Products + + + + + AA WELDING SERVICE/CLINT R. WOODS, INC.; MT. PLEASANT, TX + + + + + Mech Handling Co. + + + + + NOVA FABRICATING, INC.; AVON, MN + + + + + C. B. Mfg. Co., Inc. + + + + + Gregory Trailer Sales + + + + + LEBEAU ENTERPRISES; LEXINGTON, NC + + + + + Cruzmaster Camper + + + + + Highway Trailer + + + + + Kurmann Trailer Mfg. Co. + + + + + Ziegler + + + + + Broken Arrow Mobile Home + + + + + Custom Camper Co. + + + + + Davron Traveler, Inc. + + + + + Aardvark Co.Waxahachie, Texas + + + + + BJ'S CUSTOM TRAILERS; WOODSTOCK, AL + + + + + Westank Industries, Inc. + + + + + Society Coach Builders + + + + + Park Royal + + + + + Ransome Lift Equipment Co., Subsidi-ary of Giles & Ransome, Inc. + + + + + Turtle Top + + + + + Amerind-Mackissic, Inc. + + + + + Master HouseMfd. by Highlander + + + + + GreenvillaMfd. by Greenville Mobile Homes + + + + + Cricket Corp.Elkhart, Indiana + + + + + CALIFORNIA MOTORCYCLE COMPANY; GILROY,CA; VENTANA,CABRILLO KING & DIABLO MOTORCYCLES + + + + + Micro Concept Cars + + + + + Cullison Mfg., Inc. + + + + + Schlemmer Boat Co. + + + + + Kelley ManufacturingBogata, Texas + + + + + American La FranceDiv. of A-T-O, Inc. + + + + + GILLIG CORPORATION HAYWARD, CALIFORNIA , BUS + + + + + LandlordMfd. by Simplicity Mfg. Co., Inc. + + + + + Osage Trailer Mfg. Co., Inc. + + + + + Speed King Mfg. Co., Inc. + + + + + Pioneer Div., Portec, Inc. + + + + + ABC HomesDiv. Divco-Wayne Industries + + + + + Mayrath Industries, Inc. + + + + + Clement-Braswell + + + + + Paris Trailer Co. + + + + + Chuck Beck Motorsports + + + + + AMF Lawn & Garden Div.AMF, Inc. + + + + + Bantam + + + + + Xplorer Enterprises of Constantine + + + + + Laser + + + + + Brown, Dave L., Inc. + + + + + Ohio Body Mfg. Co.New London, Ohio + + + + + Bushcraft Trailer + + + + + Lundell Mfg. Co., Inc. + + + + + Liberty Travel Trailers + + + + + Sun ChaserMfd. by Sun Recreational Industries, Ltd + + + + + SUPERIOR TRAILERS OF GA. INC.; DANIELSVILLE, GA + + + + + Electric Vehicle Technologies + + + + + EXCELSIOR-HENDERSON MOTORCYCLES + + + + + Dorsey Trailers Inc.Elba, Alabama + + + + + Virginian Coach Camper Corp. + + + + + Alpine + + + + + Elcona Homes Corp + + + + + Maybach (Brand within Mercedes-Benz) + + + + + Ashby Brothers + + + + + Alaskan Camper + + + + + Heald, Inc. + + + + + Joshua Trailer + + + + + Sunflower Travel Trailer + + + + + Fiesta + + + + + Mobley Metal Works + + + + + Maxcraft Trailer Mfg. + + + + + VANTAGE DUMP TRAILERS, INC.; KATY, TX + + + + + De Soto Coach Co. + + + + + Clua . + + + + + HORSE CREEK MANUFACTURING; COOKVILLE, TX + + + + + Travel Queen Coaches + + + + + McCoy Mfg. & Sales Co. + + + + + Rainbow Corp. + + + + + Hinomoto Tractor Sales USA, Inc.Houston, Texas + + + + + SearsSears, Roebuck & Company + + + + + Robin Mfg. Co. + + + + + Guizzo + + + + + Messerschmitt + + + + + Kozy Coach Co. + + + + + Southern Missouri Trailer Sales + + + + + Francis-Barnett + + + + + Beta + + + + + Driftwood Homes Corp. + + + + + Century Auto Body & Trailer Mfg. Co. + + + + + Hyster Co. + + + + + Rockland Mfg. Co., Inc. + + + + + Nashua Mfg. Co. + + + + + IndependenceMfd. by Patriot Homes, Inc. + + + + + Superior Office Trailer + + + + + Fairthorpe + + + + + Giannini + + + + + Specialty Mfg. Co.Red Bay, Alabama + + + + + JLG Ind., Inc. + + + + + Miller Tilt-Top Trailer Inc.Milwaukee, Wisconsin + + + + + Tailgater + + + + + Grizzly Corp. + + + + + Hearthside Mobile HomesDiv. Moduline International, Inc. + + + + + AvionMfd. by Fleetwood Enterprises + + + + + Newport Homes, Inc. + + + + + Eidal International Corp. + + + + + Arctic Cat + + + + + Moto Beta + + + + + Chicago Pneumatic Equipment Div.Chicago Pneumatic Tool Co., FranklinPennsylvania + + + + + Hendrix Manufacturing Co. + + + + + Kamp King Utopian + + + + + Connell Industries, Inc.Greene, New York + + + + + Hunter's DreamMfd. by Wright Industries, Inc. + + + + + Ecstasy Trikes of Allentown, Inc + + + + + MONGOOSE TRAILERS;TEXAS + + + + + Luxor-Leffingwell Coach + + + + + Volvo + + + + + Dresser Industries, Inc. + + + + + Trail Blazer + + + + + Castle Enterprises, Inc. + + + + + Electric Vehicles Northwest, Inc. + + + + + E-Z Utility TrailerMfd. by Dutchie, Leola, Pennsylvania + + + + + Lil Indian + + + + + Banner Industries, Inc. + + + + + Allis-Chalmers Corp. + + + + + Unverferth-McCurdy Mfg. Co., Inc. + + + + + American Custom Electric Cars and Golf Carts + + + + + Timken Bearing Boat Trailer + + + + + Isetta + + + + + Houle Industries, Inc. + + + + + Savannah Homes, Inc.Savannah, Tennessee + + + + + Alcoa Trailer + + + + + Goff Mfg. Corp. + + + + + Pro One + + + + + MASTER TOW INC. FAYETTEVILLE, NC + + + + + Valkrie + + + + + Prestige HousingConway, Arkansas + + + + + Bucita Pop Top Trailer + + + + + Gabriel Auto Carrier + + + + + Hauler-TrailerMfd. by Nodine Mfg. + + + + + Manor Homes, Inc. + + + + + Richardson Homes Corp. + + + + + Marbrough Boat Trailer + + + + + Vista Liner Coach & Trailer + + + + + CLASSIC ACQUISITIONS/CLASSIC VENTURES; HERNANDO,FLORIDA + + + + + Cherne Industrial, Inc.Edina, Minnesota + + + + + Trihawk Inc. + + + + + COBRA MOTORCYCLES + + + + + Mobile Home Co. + + + + + Mikasa + + + + + Forester + + + + + WILD SIDE LLC; FRANKLIN, TN + + + + + COLLINS BUS + + + + + Kenron Corp. + + + + + American Coach Co.Div. Detroiter Homes + + + + + Attex + + + + + MoserSee also Vim Trailer + + + + + Apeco Mobile HomesDiv. Apeco Corp. + + + + + Alpine Mfg. Co. + + + + + Unpublished motorcycle mfr. (seeOperating Manual, Part 1,Section 2) + + + + + Kay Park-Rec Corp. + + + + + Downer Industries + + + + + Camp Cruiser Mfg. Co. + + + + + Morgan + + + + + Gustafson Mfg. Co., Inc. + + + + + Thorns Trailer + + + + + Outdoor Power Equipment + + + + + Capco Flatbed + + + + + Barrentine Mfg. Co.Greenwood, Mississippi + + + + + Smith, T. L., Co.Div. A-T-O, Inc. + + + + + Salem Mobile Home Trailer + + + + + Darby Industries + + + + + UNIMOG + + + + + Brooks Horse Trailer + + + + + Al Tucker Trailer Co. + + + + + Eshelman Sportabout + + + + + Great Bend Mfg. Co., Inc. + + + + + Star Mobile Homes + + + + + Travel World, Inc.Utility Trailers; Hope Hill,North Carolina + + + + + Puma + + + + + Fruehauf Corp.Detroit, Michigan + + + + + The Lely Corp. + + + + + Shadow TrailersShadow Boat Trailer, Glencoe, OK + + + + + Van Camp Equipment + + + + + Atlantic Mobile Sales + + + + + McDonald Camper Kit Distributor + + + + + Pettibone Michigan Corp., SubsidiaryMercury Mfg., Co. + + + + + BunkhouseModel of Siesta--mfd.by Park Homes, Inc. + + + + + Aire-Line Mobile Homes + + + + + Cal Trailer ManufacturingSan Fernando, California + + + + + Tracer Horse Trailer + + + + + Hunter Custom TrailersKingsbury, Indiana + + + + + Hustler Boat TrailerPowell, Tennessee + + + + + Roycraft Coach Co. + + + + + Northwest Trailers + + + + + Snowflake Coach Industry + + + + + COBRA TRAILERS, GERMANY; ALFRED SPINDELBERGER + + + + + Southlane Horse Trailer + + + + + Heafty Trailer Mfg. & Sales + + + + + Luger Industries + + + + + Wildgoose + + + + + Dillis Trailer Mfg. + + + + + Beaird PaylinerShreveport, Louisiana + + + + + BUCK DANDY COMPANY; TEXAS + + + + + Worthington Compressors, Inc.Holyoke, Massachusetts + + + + + Pierce Mfg., Inc.Mfr. of Pierce Duplex,Appleton, Wisconsin + + + + + Maxwell Trailers & Pickup AccessoriesMexico, MO + + + + + Esquire + + + + + General Motors + + + + + Stardust Travel Trailer + + + + + Consort Mobile HomesMfd. by Zimmer Homes Corp. + + + + + Ockelbo Industry AB + + + + + Brent IndustriesShell Rock, Iowa + + + + + Palm Trailers + + + + + Sears, Roebuck & Co. + + + + + Spyder + + + + + Mitchell Camper Trailer + + + + + Clar-Mont Mfg. Co. + + + + + Aberdeen Boat Trailer + + + + + Beachcomber Industries Ltd.Morden, Manitoba + + + + + LOCKE ENTERPRISES OF NEW YORK, INC; LOCKE,NEW YORK + + + + + TIFFIN MOTORHOMES, INC; RED BAY, ALABAMA; ALLEGRO, PHAETON, ZEPHER MODELS + + + + + KEYSTONE RV COMPANY, GOSHEN, IN. (SPRINGDALE TRAILER MODEL) + + + + + Carrier King Trailer + + + + + Four State Industries, Inc.Elkhart, Indiana + + + + + Kwick Kit Cement Mixer + + + + + Triad Trailers Ltd.New Milford, Connecticut + + + + + Wildfire + + + + + Marauder Travelers, Inc. + + + + + AMERICAN PERFORMANCE CYCLE;BULLHEAD CITY, AZ; SPIRIT AND BIG BOY CYCLES + + + + + Brown TrailerDiv. Clark Equipment Co. + + + + + Kama + + + + + Kill Bros.Delphos, Ohio + + + + + Bell's Camp Trailers + + + + + Surf-Rider, Inc. + + + + + SCHIFSKY TRAILERS + + + + + Bill Rivers + + + + + Ranch King Enterprises, Inc.Bellville, Texas + + + + + Adams Trailer Mfg. + + + + + Falcon (British) + + + + + Larsen Lapline Trailer + + + + + Cummins Engine Co., Inc. + + + + + Cheetah + + + + + Hamilton Trailer + + + + + Trail King IndustriesDiv. W.A.S., Inc., Mitchell,South Dakota + + + + + Vengeance Motorcycle; Div. of Vengeance Performance Products, LLC + + + + + Gadabout + + + + + Easom Engineering + + + + + Neptune Corp. + + + + + Ono, Inc. + + + + + Claxton + + + + + SMART + + + + + Duesenberg + + + + + Daco Trailer Corp.Pocahontas, Arkansas + + + + + Vegas Mfg. Co. + + + + + Bandera Trailer + + + + + Pan American Mobile HomesDiv. of Divco-Wayne Industries + + + + + Doonan Trailer Corp.Great Bend, Kansas + + + + + Leer, Inc.Elkhart, Indiana + + + + + Dons Boat Trailer + + + + + Suvega Tiger + + + + + Big Inch Bikes + + + + + TM Trailer + + + + + All State + + + + + Garber Seeders, Inc. + + + + + Woods Div., Hesston Corp. + + + + + Merry Mfg. Corp.Marysville,Washington--mfrs. cultivators + + + + + Lane Flatbed Trailer + + + + + Norris Homes, Inc. + + + + + Tow Pro, Inc.McKinney, Texas + + + + + Rockford + + + + + Academy Mobile Home Corp. + + + + + Hickey Trail-Blazer + + + + + Porsche + + + + + AC Cobra + + + + + METAVIC TRAILERS; ST. PIERRE-BAPTISTE, QUEBEC CANADA + + + + + Nobility Homes, Inc.Ocala, Florida + + + + + Arndt TrailersHorse trailers + + + + + Cortez Motor Home + + + + + Spen & Co. + + + + + Multi Trailer + + + + + United Trailer Service & Supply Co. + + + + + HOLIDAY HOUSE + + + + + Lynn-Towtruck + + + + + Ratco WeldingBillings, Montana + + + + + New Dimension + + + + + W & M ENTERPRISES, INC.; LAWRENCEBURG, INDIANA + + + + + Vermette Machine Co. + + + + + Montgomery Ward - Snowmobiles + + + + + GRAND PRIX TRAILER MANUFACTURING, CO.; FREDERICK, MD + + + + + GradallDiv. of Warner & Swasey Co. + + + + + Hart Mfg., Inc.Chickasha, Oklahoma + + + + + Boanza Mobile Homes + + + + + Tow-Rite Mfg. + + + + + Harbortown Mobile HomeLeola, Pennsylvania + + + + + Vet Boat Trailer + + + + + Craft Weld Trailer + + + + + Nash-Healy + + + + + AMRAD PRODUCTS & SUPPLY (SNOWMOBILE & UTILITY TRAILERS) + + + + + Marquette Custom Boat Trailer + + + + + C. D. Osborn & SonGrand Rapids, Michigan + + + + + Thomsen Equipment Co. + + + + + Stopover Traveler & Camper Co. + + + + + KMMKoffel Machine & Metal Fabricating, Inc. + + + + + Monarch + + + + + Motocicletas Carabela SA + + + + + G. & C. Mfg. Co. + + + + + Sun-Lite, Inc.Bristol, Indiana + + + + + Red Cat Motors + + + + + Troyer Mfg. Co. + + + + + Scad-A-Bout Mfg. & Aluminum Co. + + + + + Freightliner Corp. + + + + + Continental of Colorado, Inc. + + + + + Spartan Motors, Inc.Mfd. in Charlotte, Michigan + + + + + Ellis Trailer Co.Sylmar, California + + + + + Forest ParkMfd. by Gerring Industries, Inc. + + + + + Tessy + + + + + Harrison Trailer Mfg. Co. + + + + + Tryco Mfg. Co., Inc.Decatur, Illinois + + + + + READI-BUILT TRAILERS; THOMASVILLE, NC + + + + + FNM + + + + + Kamasura (U.S.A.) + + + + + Woodland Camper Co. + + + + + Startrek + + + + + G & F HORSE TRAILER REPAIR; RIVERSIDE, CALIFORNIA + + + + + Sperry Rand + + + + + Qvale Automotive Group + + + + + Nelson Mfg. Co.Ottawa, Ohio + + + + + Maxwell + + + + + UNILLI ATVS ETC + + + + + Bivouac Industries, Inc.Vandalia, Michigan + + + + + Lloyd + + + + + Leland Engineering, Inc. + + + + + Finger Lakes Trailer + + + + + Hein-Werner Corp. + + + + + Towner Mfg. Co. + + + + + Easy Lawn, Inc. + + + + + Connaught + + + + + Jen Sell Corp.Elkhart, Indiana + + + + + Richard Piche, Inc.Quebec, Canada + + + + + OK Horse Trailer + + + + + Besasie Automobile Co., Inc + + + + + Caveman Industries + + + + + Argyle + + + + + Plymouth + + + + + Associated Truck & TrailerTigard, Oregon + + + + + Shalimar Mobile HomesMfd. by Sportcraft Homes + + + + + Walker Tractor Mfg. + + + + + Rich Industries + + + + + Harben, Inc. + + + + + Heckaman Mfg., Inc. + + + + + Por Trailer + + + + + Westgo Industries, Inc. + + + + + Husky + + + + + CANADIAN MOTORHOME + + + + + Harmon Tank Co.Lubbock, Texas + + + + + Pickwick + + + + + Tufby Converter Dolly + + + + + Overland Mfg. Co. + + + + + Easton Car & Construction + + + + + Ford's Mobile Home Mfg. + + + + + Ward LaFrance International Inc. + + + + + Auto Ski IncLevis, Quebec + + + + + Magnolia Mobile Homes Mfg. + + + + + Stewart, Inc. + + + + + Daytona Mobile HomesMfd. by Monarch Industries + + + + + Lubbock + + + + + Wartburg + + + + + Acro Tank Co.Springfield, Missouri + + + + + Poole, Inc. + + + + + Kelson Engineering Co. + + + + + Chevron Corp.Elkhart, Indiana + + + + + Moritz, Inc.Mansfield, Ohio + + + + + Balboa Motor Home + + + + + Lawrence Trailer + + + + + Sams + + + + + U.S. NAVY; MAKE IS UNKNOWN + + + + + Linde + + + + + Riverside Trailer Mfg. Co. + + + + + Tonco Lowboy Trailer + + + + + Simplex + + + + + American Microcar, Inc. + + + + + Bellaire Products + + + + + Condor Motor Home + + + + + Load Star Corp.Macon, Georgia + + + + + Fuller Mfg. Co. + + + + + ZAP (Zero Air Pollution) + + + + + Neal Mfg. Co., Inc. + + + + + Blue Bird Body Co. + + + + + Oberlin Trailers, Inc. + + + + + Advance Mfg. Co. + + + + + Swanee Trailer Mfg. Co. + + + + + Lesco, Inc. + + + + + IRD + + + + + Palmetto Sales of Laurens + + + + + Hickory King Horse Trailer + + + + + Croft-INS + + + + + Southern Trailers + + + + + Energy Mfg. Co. + + + + + Valiant Mobile Homes + + + + + Otasco + + + + + P & H + + + + + Titan Trailers, Inc. + + + + + Puller-TensionerMfd. by Sherman & Reilly, Inc. + + + + + Gorilla Electric Vehicles + + + + + Safti + + + + + Jack's Trailer Mfg. of Florida + + + + + Light Equipment Div.Div. of J. I. Case Co. + + + + + Alloy Trailers, Inc.Spokane, Washington + + + + + Lomac Boat Trailer + + + + + Car-Tel Corp. + + + + + Buffalo-Springfield Div.Div. of Koehring Co. + + + + + Glitsch + + + + + Plastic Engs. & Consultants + + + + + Camp Four Industries, Inc. + + + + + IMEIndustrial & Municipal Engineering, Inc. + + + + + Gibraltar Industries, Inc. + + + + + Jeraco Enterprises, Inc.Milton, Pennsylvania + + + + + Big Bear Choppers + + + + + SNUB-HARBOR OR DAY'S DRYDOCK TRAILERS; INDIANA + + + + + Holiday Marine Sales, Inc. + + + + + Harrell Mfr.North Carolina + + + + + Friggstad Mfg., Ltd., (Canada) + + + + + El-Jay Div. Iowa Mfg. Co. + + + + + Melmak Motor Home + + + + + Steadman Containers Ltd.Brampton, Ontario + + + + + Schuler Mfg. & Equipment Co., Inc. + + + + + Patz Co. + + + + + Travoy Motor Home + + + + + Cherokee Camper + + + + + Metzendorf Trailer Mfg. + + + + + USA Motor Corp.Bremen, IN; manufactures motor homes + + + + + Columbia Trailer Co., Ltd.Vancouver, Canada + + + + + Calico TrailersQuitman, Arkansas + + + + + Gindy Mfg. Corp.Downingtown, Pennsylvania + + + + + JamaicaMfd. by Marion Homes, Inc. + + + + + Roadrunner Mfg. Corp. + + + + + Italjet + + + + + Columbine Camp & Coach + + + + + Hilo Snyder Travel Trailer + + + + + Big SurMfg. by Vacation Industries + + + + + ZIMMER MOTOR CAR COMPANY; SYRACUSE, NY + + + + + Frazer-Nash + + + + + American Pride HomesDiv. Challenger Homes + + + + + Monte Aluminum Trailer Dump + + + + + Yangzhou Tonghua Semi-Trailer Co., Ltd. + + + + + Hillman + + + + + Alpha + + + + + J-J-N ENTERPRISES; SISKETON,MO + + + + + Lundgreen Flatbed + + + + + Haynes Mfg. Co., Inc.Chickasha, Oklahoma + + + + + PLATINUM MANUFACTURING LLC; OKLAHOMA CITY, OK + + + + + Multech Corp.Canton, South Dakota and Souix City,Iowa + + + + + Open Roadsters of Texas + + + + + Colt Camper, Inc. + + + + + Kazuma (Stannic Mfg. Co., Ltd.) + + + + + DEW Eze Mfg., Inc. + + + + + Appleby Camper Trailer + + + + + DRAKE TRUCK BODIES, VERNON BRIDGE, PRINCE EDWARD ISLAND , CANADA + + + + + Fey, Frank & Co. + + + + + Arrow Motor Homes + + + + + CADILLAC FABRICATION INC + + + + + Rogers Trailers, Inc. + + + + + Creekside Welding and Jamar Trailers + + + + + Cree Coaches, Inc.Div. of Southwest Michigan Ind.,Marcellus, Michigan + + + + + Blue-Ridge Pre-Built Mobile Homes + + + + + SUGGS MANUFACTURING CO., INC.; LAGRANGE, NC + + + + + Apollo Homes + + + + + RAPTOR; ATV + + + + + Lanchester + + + + + VACTRON TRAILERS, MANUFACTURED BY: A COMPLETE ASSEMBLY;MASCOTTE, FL + + + + + Golden Coach Mfg. Co. + + + + + Littleford Brothers, Inc.Mfrs. rollers + + + + + Henred-Fruehauf (Pty.) Ltd.South Africa + + + + + Kensington Motor + + + + + Unger Motor Home + + + + + Motobee + + + + + Ammex + + + + + LONE WOLF TTRAILER CO. INC.; FALKVILLE, AL + + + + + Bering + + + + + Park Trailer Corp. + + + + + Mayfairer Motor Home + + + + + AKTIVSee Tucker Sno-Cat Corporation + + + + + Chipmore Mfg. Co., Inc.Mfrs. chippers--Bay City, Michigan + + + + + Calcinator + + + + + Jowett + + + + + Terry Industries of Virginia + + + + + M & M Mfg. Co. + + + + + Mobile Unit Mfg., Inc. + + + + + Austin-Western Div.Clark Equipment Co. + + + + + Acton Mobile Industries, Inc.Elburn, Illinois + + + + + Calypso + + + + + Dorsett Mobile HomesMfd. by Silvercrest Industries, Inc. + + + + + FECHTNER TRAILERS, ELBOW LAKE, MN + + + + + Sprayrite Mfg. Co. + + + + + Feterl Mfg. Co. + + + + + Hartford Homes, Inc. + + + + + King of the Road Trailer Co.Conyers, Georgia + + + + + Factory Outlet Trailers + + + + + HAULIN TRAILERS LLC, MUSKEGON, MI TRAILERS + + + + + Harding Trailer Co.Fort Myers, Florida + + + + + Phoenix + + + + + Worrell Trailer Mfg. + + + + + Pixie Piker Travel Trailer + + + + + SHL + + + + + ULTRA ACQUISITION CORPORATION; RIVERSIDE, CA + + + + + Daton + + + + + Boat Master TrailersFt. Myers, FL + + + + + Catolac Corp. + + + + + Detrail Trailer + + + + + Pasquali, USAVerona, Wisconsin + + + + + Concord Travelers + + + + + Allentown Brake & Wheel Service, Inc.Allentown, Pennsylvania + + + + + Halco Co. + + + + + BILLY GOAT LAWN VACUUM + + + + + JAMCO TRAILERS; BRUCEFIELD, ONTARIO, CANADA + + + + + J & L'S CARGO EXPRESS, INC.; BRISTOL, INDIANA + + + + + LaSalleDiv. Globemaster M.H. + + + + + Yellowstone, Inc. + + + + + Deico Auto Carrier Trailer + + + + + Osi + + + + + NUWA Horizon Camper Trailer + + + + + Peerless + + + + + Gilson Brothers Co. + + + + + Golden Nugget Travel Trailer + + + + + Wheeler Truck TrailerMorley, Missouri + + + + + Howdan Mfg. Co. + + + + + Mobile Sweeper Div.Div. of Athey Products Corp. + + + + + Denver Trailer Supply, Inc. + + + + + Carriage, Inc. + + + + + ABCO Trailer Mfg. Co. + + + + + EXTREME CYCLES (MOTORCYCLES) + + + + + Formaloy Flat Snowmobile Trailer + + + + + Transportation Manufacturing CorporationRoswell, New Mexico + + + + + Carry-AllScrapers, rooters and chisels--mfd. byMurray Mfg. Co. + + + + + ARISTOCRAT INDUSTRIES, INC.; GOSHEN, IN + + + + + Moto Morini + + + + + LML Corp. + + + + + Reed Mfg. Co. + + + + + Kawasaki Motors Corp., U.S.A.Santa Ana, CA + + + + + Glenhill Road Machinery + + + + + Double Delight, Inc. + + + + + Air-O-Motor Home + + + + + Gehl Co. + + + + + K & K Mobile Homes + + + + + CHARLESTON MARINE CONTAINERS, INC. CHARLESTON, SC + + + + + Wrangler Trailers + + + + + Poloron Homes of Pa., Inc.Middleburg, Pennsylvania + + + + + Trailerette Trailer + + + + + Specialized Trailers + + + + + Fuerst Brothers, Inc. + + + + + M-D Trailer Co.Fort Worth, Texas + + + + + Rapid Traveler Coaches + + + + + J. E. Love Co. + + + + + Dynapac Mfg., Inc. + + + + + Glider Mobile Homes Corp + + + + + Trailer Wheel and Frame Co.Bellville, Texas + + + + + Ander-Ett, Inc. + + + + + Frederick-Willys + + + + + Rallymaster Travel TrailerArlington, Texas + + + + + HAYSHED TRAILERS; ALBERTA CANADA + + + + + Land Rover + + + + + Vauxhall + + + + + Kalyn Co. + + + + + THOROUGHBRED INDUSTRIES, INC; RIDGELAND, SC STARLITE MODEL + + + + + Capri + + + + + Mikrus + + + + + Travois Trailer + + + + + C & W TrailersGolden, MS + + + + + Trailco Mfg. & Sales Co.Div. of Dorsey Trailers--Hummels Wharf,Pennsylvania + + + + + Montgomery Mfg. Co. + + + + + Reliant + + + + + Watson Tractor Co., Inc.Danielsville, Georgia + + + + + Ashton Trailer + + + + + Marmon Harrington + + + + + BuckinghamMfd. by King Homes, Inc., Elkhart,Indiana + + + + + M.V. Agusta + + + + + Royals InternationalMillersburg, Indiana + + + + + Cash Trailers, Inc.Troy, Alabama + + + + + Rent-A-Trailer Corp. + + + + + Leisure Products, Inc. + + + + + Bitter + + + + + Mallard + + + + + EconorollMfd. by Stow Mfg. Co. + + + + + Easy Traveler Trailer + + + + + American BeautyMfd. by American Shelter Systems, Inc. + + + + + Presvac Systems (Burlington) Ltd. + + + + + Mobile Traveler + + + + + Alois Kober (AL-KO) + + + + + Vador + + + + + Devil Travel Trailer + + + + + Garrett-Weldco Industries, Inc. + + + + + Randall's VIP Trailers, IncTempe, AZ; boat and utilitytrailers + + + + + PANZER MOTORCYCLE WORKS, LLC COLORADO + + + + + Horner-Golem Co. + + + + + Seaman Digz-AllMerrill, Iowa + + + + + Transport Trailers, Inc.Cedar Rapids, Iowa + + + + + Plattsburg Mfg. + + + + + Kross KountryLittle Chute, Wisconsin + + + + + Allen Camper Mfg. Co., Inc. + + + + + CrestlaneMfd. by Lonergan Corp. + + + + + Linwood Mfg., Inc. + + + + + Bedell Trailers + + + + + Taylor Mobile HomesDiv. Troy Lumber Company + + + + + Murena + + + + + Foretravel, Inc.Nacogdoches, Texas + + + + + Flair Industries of Illinois, Inc.Macomb, Illinois + + + + + Stampings, Inc. + + + + + Boise Cascade Mobile HOmeBoise, Idaho + + + + + Niceson Boat Trailer + + + + + Budger Mfg. Co. + + + + + HUSKEE LAWN & GARDEN EQUIPMENT + + + + + Randall, Walter + + + + + Pines Trailer Corp.Pine Grove, Pennsylvania + + + + + Country Comfort Trailers + + + + + Bermar Mfg. Corp. + + + + + Coachmen Homes Corp.Subsidiary Coachmen Industries, Inc.,Middlebury, Indiana + + + + + Oneida Coach Mfg.Grand Ledge, Michigan + + + + + Spencer Sports Products + + + + + Auto Homes Industries + + + + + U.S. Electricar Corp. + + + + + Imperial Mobile Homes + + + + + Starcrest Motor Home + + + + + Morgan Trailer Mfg. CoMorgantown, Pennsylvania + + + + + Acme Trailer Mfg. Co. + + + + + Bucyrus-Erie Co. + + + + + Frank Russell Mfg. Co. + + + + + Journey Motor Homes, Inc.Elkhart, Indiana + + + + + Toyota + + + + + Canoga Classic Campers + + + + + JCB Excavators, Inc.Whitemarsh, Maryland + + + + + Salvaco, Inc.Columbus, Ohio + + + + + United Mobile Sales + + + + + IC CORPORATION;FORMERLY AMERICAN TRANSPORTATION CORPORATION + + + + + Fast Load + + + + + Great Dane Trailers, Inc.Savannah, Georgia + + + + + Mobile Holding Corp. + + + + + Camper City Coach Craft + + + + + Trailmaster Tanks, Inc.Ft. Worth, Texas + + + + + American Augers, Inc. + + + + + Osca + + + + + Rustler Horse Trailer + + + + + Pal Mfg. Co., Inc. + + + + + Pines Trailer CorpChicago, Illinios + + + + + Holmes Trailers + + + + + Thimsen Mfg. Co. + + + + + Bod-Eze + + + + + Trail Tramp + + + + + Danuvia + + + + + K Line Trailer + + + + + Zieman + + + + + ENCORE; RIDING LAWNMOWERS + + + + + CAVALLO + + + + + Kan Haul Trailer Sales + + + + + Lull Engineering Co.Subsidiary N. Marshal Seeburg & Sons,Inc. + + + + + Roadcraft Mfg. & Leasing + + + + + Lancer + + + + + Estate Mfg., Inc.Motor homes--Elkhart, Indiana + + + + + Parkway Mfg. Co. + + + + + FloTrailMfd. by Lynch Manufacturing + + + + + Starbuck Trailer + + + + + Butler, C. Trailer Mfg. Co.Greensboro, North Carolina + + + + + Graham + + + + + Tide Craft, Inc. + + + + + Ava Travel Trailer + + + + + Givens Mfg. Co. + + + + + Bunyan, Paul Co. + + + + + SIEMS ENTERPRISES; SHELLEY, IDAHO TRAILERS + + + + + Neckar + + + + + Letourneau, R. G. + + + + + Spartan Aircraft Co. + + + + + Riviera Mfg. Co. + + + + + Pointer-Willamette + + + + + Tru-Trailer Co. + + + + + Duplex Mill & Manufacturing Co. + + + + + Campus Bike + + + + + Windham Mfg. Co., Inc.Mfgs. loaders + + + + + Rockie Mountain Mfg., Inc. + + + + + Oklahoma Trailer, Inc.Mfrs. boat trailers--Kingfisher,Oklahoma + + + + + Pilgrim Intl., Inc. + + + + + B & B Cozy-Home + + + + + RON'S TRAILERS INC.; OREGON, OH + + + + + Angelus Trailer Mfg. Co. + + + + + Grumman-Olsen + + + + + Flintstone IndustriesOcilla, Georgia + + + + + Diamond T + + + + + Mc Kee Roughrider + + + + + Sprite + + + + + Elgin + + + + + Mahoning Homes, Inc. + + + + + SHIJIAZHUANG MFG MOTORCYCLES AND ATV'S + + + + + Lane Horse Trailer + + + + + Sunhome Mfg. + + + + + CommuneMfd. by Community Homes, Inc. + + + + + Bainbridge Motor Home + + + + + Mountain View Campers + + + + + Martin Lowboy Semi Trailer + + + + + Dreamliner Trailer + + + + + Cat + + + + + Ownahome, Inc. + + + + + Hupmobile + + + + + Tag-A-Long Trailers + + + + + Cavalier Homes, Inc. + + + + + Brae Trailers, IncStoughton, WI; piggyback semi-trailers + + + + + Schrader Dump Trailer + + + + + Dynacycle + + + + + American Eagle (also see make Eagle) + + + + + Windward Enterprises + + + + + Precision Fire Apparatus + + + + + Arkansas TravelerMfd. by Rawhide Stock & Horse TrailerMfr., Inc. + + + + + Tex Willett Co. + + + + + Oakland + + + + + Farmhand, Inc. + + + + + Fontaine Truck Equipment Co.Birmingham, Alabama + + + + + Cheney Weeder, Inc. + + + + + Gogomobile + + + + + Mid-Cal Forklift, Inc. + + + + + Chisolm Trailers, Inc.Chickasha, Oklahoma + + + + + Bellew's Perris Balley Campers + + + + + Saab + + + + + Mark V Trailer + + + + + Ballien Mfg. Co. + + + + + Garelli + + + + + TARASPORT TRAILERS, INC.; SWEETWATER, TN + + + + + DOUBLE D DISTRIBUTORS, INC; PINK HILL, NORTH CAROLINA + + + + + French Horse Trailer + + + + + High View, Inc. + + + + + Pittsburgh Forging Co., Farm ToolsDiv. + + + + + FabcoDiv. of Kelsey-Hayes Co. + + + + + Acme Mfg. Co., Inc. + + + + + M-B-W, Inc. + + + + + TRAILERMAN TRAILERS,INC/INLOW CUSTOM TRAILERS; LOUISIANA, MISSOURI + + + + + Tote Gote + + + + + Allied Leisure, Inc. + + + + + Nomad Trailers & Mobile HomesDewey, Oklahoma + + + + + Tourite Mobile Homes Mfg. + + + + + Bristol HomesDiv. Tidwell Ind., Inc., Goshen, Indiana + + + + + Morse Horse Trailer + + + + + Paris + + + + + American Coupler Systems, Inc. + + + + + TotemallMfd. by Birmingham Mfg. Co., Inc. + + + + + Starmaster Camping Trailer + + + + + Panorama Homes, Inc. + + + + + B & M Mfg. Co.South Camdenton, Missouri + + + + + BAJA USA MOPEDS, CYCLES & 3 WHEELERS + + + + + Alforge Metals Corp.Ontario, Canada + + + + + Nash Mfg. + + + + + Aqualand TrailersDiv. Mid-Atlantic Metal Distributors + + + + + Iveco Trucks of North America, Inc.Mfrs. of Magirus Tractors + + + + + Marvin Landplane + + + + + Gemini + + + + + Impala Mobile Homes & Travel Trailers + + + + + BRADCO; DIVISION OF ATTACHMENT TECHNOLOGIES, INC.IOWA + + + + + GMR Enterprises, Inc. + + + + + Tramper Travel Trailer + + + + + Cosmo + + + + + City Welding & Mfg. Co.Aluminum truck bodies & steel chassis + + + + + TVR + + + + + Cody Motorcycle Trailer + + + + + Clough Equipment Co.Seattle, Washington + + + + + Marion Metal Products Co. + + + + + Trail Master Trailers, Inc.Coleman, Oklahoma + + + + + Contrail International + + + + + Malanca + + + + + Wheel Campers Corp. + + + + + Progress + + + + + CREW CHIEF MOTORHOME/HAULER + + + + + Forte Trailer + + + + + Lional Enterprises, Inc. + + + + + Tecnica AutomotrizDel Noroeste SAMexico; trailers + + + + + RC Motor Home + + + + + HORTON TRAILERS + + + + + Montesa (Spain) + + + + + Tracpac Snowmobile Trailer + + + + + Brenner Tank, Inc.Fond du Lac, Wisconsin + + + + + Miller Trailers Inc.Bradenton, Florida + + + + + Lilliston Corp.Albany, Georgia + + + + + Master Liner Mfg. Co. + + + + + Holland Trailers + + + + + SOUTHMAYD EQUIPMENT CORPORATION + + + + + Bartolini Chassis Trailer + + + + + Gerlinger Foundry Machine Works + + + + + C & C DISTRIBUTORS, INC.; WINSLOW, ME + + + + + McKee Farm Technologies, Inc. + + + + + Speedway Trailer Div.Div. Dunphy Boat Corp. + + + + + Tailor Maid Industries + + + + + Scotsman Mfg. Co. + + + + + Vindale Corp. + + + + + Studebaker + + + + + Will Craft Camper Trailer + + + + + Diamond B + + + + + Circle R, Inc. + + + + + Attachment Technologies, Inc. (ATI) + + + + + Dot + + + + + Benson Truck Bodies, Inc.Mineral Wells, West Virginia + + + + + Seat + + + + + Columbia + + + + + Dina Camiones S. A. De C. V. + + + + + Modena + + + + + PEAGUSAS + + + + + Agrolina SAMexicali, Baha, CA; trailers + + + + + Assembled Vehicle (for furtherexplanation see Operating Manual,Part 1, Section 2.) + + + + + HullcoSikeson, Missouri (Sikeston TrailerSales) + + + + + Hewitt-Robins Crushing & VibratingDiv. Litton Systems, Inc.Equipment Div. + + + + + Valiant + + + + + Key Industries, Inc. + + + + + Nsu Prinz + + + + + FairwayMfd. by Holiday Homes, Div. of BeatriceFoods + + + + + Klinger Products + + + + + Thoroughbred Boat Trailer + + + + + Traveleze Industries, Inc. + + + + + Pyramid Mobil Homes + + + + + Lawndale Homes, Inc. + + + + + Brougham Industries, Inc. + + + + + Jimglo Trailers & ProductsPhoenix, AZ; car trailers andutility trailers + + + + + Southern Lifestyle Homes, Inc.Addison, Alabama + + + + + Tuff-N-Lite + + + + + Erickson Corp. + + + + + Shiloh HomesDouble Springs, Alabama + + + + + Crystal Welding Inc. + + + + + Flow Boy, Inc.Norman, Oklahoma + + + + + American Motors (see make Ramblerfor Ramblers manufactured priorto 1966) + + + + + Yamaha Motor Company, Ltd.Cypress, CA + + + + + Oak Coach Co. + + + + + Triple B Mfg. Co., Inc.Mascoutah, Illinois + + + + + LafayetteLowboy trailers + + + + + Philift Equipment Sales Co. + + + + + Elec-Trac + + + + + Alma Trailer Co. + + + + + AAA Trailer SalesMt. Pleasant, TX + + + + + KMN Modern Farm Equipment, Inc. + + + + + Space-Craft Trailers Mfg. + + + + + LA NEW INDUSTRIES, INC; MINNESOTA + + + + + Crest Mobile Homes, Inc. + + + + + Campers, Inc. + + + + + Hamby Co. + + + + + Truck Equipment Service Co.Lincoln, Nebraska + + + + + Rockett TrailersMedley, FL; boat trailers + + + + + Jamboree Motor Home Truck + + + + + KAUFMAN TRAILERS INC. + + + + + CSM Manufacturing Co.Oklahoma City, Oklahoma + + + + + Aly AllianceMfd. by Homette Corp. + + + + + Del RioMfd. by Madrid Homes + + + + + Road Runner + + + + + DM Utility TrailerGoodfield, Illinois + + + + + Mojave + + + + + French Ford + + + + + White Line Mfg. & Dist. Co. + + + + + Dugan Trailer, Inc.Groesbeck, Texas + + + + + JIANSHE MOTORCYCLES & MOTORSCOOTERS, CHINA + + + + + Scotty SportsmanMfd. by Serro Travel Trailer Co. + + + + + Michigan Central Airlines + + + + + Wells Cargo, IncElkhart, IN; commercial trailers + + + + + ParkmasterDiv. American Sterling Enterprises + + + + + Indies House, Inc.Hackleburg, Alabama + + + + + Maurell Trailer + + + + + Can-Car Inc.Tree-farming equipment--Div. Hawker-Siddeley Canada, Ontario, Canada + + + + + Herd Seeder Co., Inc. + + + + + HanoverKingfisher, Oklahoma + + + + + JERR-DAN + + + + + Princess Homes + + + + + New Holland Haybine + + + + + JEHM POWERSPORTS; MOTOR SCOOTERS, MOTORCYCLES, ATVS, ETC. + + + + + Texoma, Inc. + + + + + King-Co + + + + + Fiberfab, Inc. (Minneapolis, MN) + + + + + Ariel (British) + + + + + Honda + + + + + Easy RiderMfd. by Landoll Corp. + + + + + NISSAN DIESEL MOTOR CO. + + + + + J & R MANUFACTURING CO., LLC; TRINITY AL. + + + + + Babetta (mfd. by Jawa, imported byAmerican Jawa, Ltd., Plainview,New York) + + + + + Gardner-Denver Cooper Industries, Inc.Denver, Colorado (formerly Gardener-Denver Co.) + + + + + Racine Construction Tool Div.,Racine Federated, Inc. + + + + + C/P Products Corp. + + + + + Citation Travel Trailer + + + + + Play-Mor Trailers, Inc.Westphalia, Missouri + + + + + Marusho + + + + + REEL TRAILERS + + + + + Hale Horse Trailer + + + + + Job Site Trailer + + + + + Kromag (Subs. of Puch) + + + + + Glen-L TrailersLewiston, Idaho + + + + + Liberty Coach Co. + + + + + Travel Long Inc. + + + + + Sportcoach Corporation of America + + + + + Echelon Motorcycles + + + + + ICL Cargo Trailer + + + + + Fat CatMfd. by R & R Mfg. Co. + + + + + DWS Storeway TrailerCrossville, Tennessee + + + + + Heil Co. + + + + + Gilbern + + + + + DO-MOR Equipment, Inc. + + + + + La Crosse + + + + + Tinker Clubs of America, Inc. + + + + + Globestar Industries, Inc. + + + + + Taube Tool Corp.Mfd. Taube n Taube Trailer,Richmond, Indiana + + + + + CORN PRO TRAILERS + + + + + Minelli + + + + + Cezetta + + + + + VOR ENDURO MOTORCYCLE, ITALY + + + + + Meyer Mfg. Corp. + + + + + EBY, M.H., Inc.Blue Ball, Pennsylvania + + + + + West Coach Mfg. Co. + + + + + Campers Unlimited + + + + + Kami + + + + + Buckeye Mobile Homes, Inc. + + + + + Sport King Campers + + + + + Baillie's Tri-R Welding + + + + + P/D + + + + + Don May EnterprisesRichardson, Texas + + + + + Johnson Welding & Steel SupplyPhilo, Illinois + + + + + Commercial StructuresNappanee, Indiana + + + + + Newham Enterprises + + + + + APRILIA MOTORCYCLES + + + + + QUALITY MFG. CO., INC.; ROME, NEW YORK + + + + + Nardi-Danese + + + + + Ashley + + + + + NuWay Mobile Home Mfg. Co. + + + + + Armadillo Trailers, Inc.Utility Trailer, Deport, Texas + + + + + Williamsen Truck Equipment Corp.Mfr. "Williamsen Dump & Special Trailer"Salt Lake City, Utah + + + + + Rogers Brothers Corp. + + + + + Fertilizer Dealer Supply, Inc.Philo, Illinois + + + + + RemcoMfd. by Rome Engineering & Mfg. Co. + + + + + Unpublished truck mfr.(see Operating Manual, Part 1,Section 2) + + + + + Lancia + + + + + Triumph Machinery Co. + + + + + Yukon Delta + + + + + Lonaire Mfg. Corp. + + + + + W.C. Manufacturing & Specialty Co. + + + + + Marking Mfg. + + + + + Unipower + + + + + Ferrara Fire Apparatus + + + + + Fort Smith Camper Mfg. Co. + + + + + Gast Manufacturing Co. + + + + + Rumi + + + + + C & V Welding and Fabricating + + + + + Tjaarda + + + + + D & D Trailer Inc.Trenton, New Jersey + + + + + Komfort Travel Trailer + + + + + Coleman Camping Trailers + + + + + Ken-Bar + + + + + Lyman Metal Products Corp. + + + + + Prarie Schooner, Inc.Elkhart, Indiana + + + + + Chubbs, Inc. + + + + + Layton Homes Corp. + + + + + Magline, Inc.Pinconning, Michigan + + + + + Rolls-Royce + + + + + Ranchette Travel Trailer + + + + + Herrli Industries, Inc. + + + + + Biltmore Mobile Homes + + + + + Biewer Industries + + + + + Drott Manufacturing Co.Div. J. I. Case Co. + + + + + ABC (Aluminum Body Corp.) + + + + + Leesburg Div.Div. of Divco-Wayne Industries + + + + + CIRCLE M TRAILERS + + + + + TOPLINE MANUFACTURING, CO., INC.; TREMONT, MISSISSIPPI + + + + + DELOUPE, INC.; QUEBEC, CANADA + + + + + Snowbear, Ltd. + + + + + Erectors & Fabricators, Inc.Tonganoxie, Kansas + + + + + Jantz Mfg., Inc. + + + + + Viva Motor Home + + + + + Brock Star Trailer + + + + + EXCEL EZLOAD TRAILERS, LLC; AMARILLO,TX + + + + + Sol Cat Boat Trailer + + + + + Ferree Trailer Corp.Climax, North Carolina + + + + + Gold Star Mobile Homes, Inc. + + + + + Klimek Welding and ManufacturingMaple Lake, MN; manufactures trailers. + + + + + MOND INDUSTRIES, INC.MISSISSAUGA, ONTARIO, CANADA; PURCHASED BY TRAILMOBILE IN 1999 TRAILEMOBILE IN + + + + + Stow and GoMfd. by TRV Corp. + + + + + Motor Homes of America, Inc. + + + + + Rhino Trailer Mfg. + + + + + RFC Mfg., Inc. + + + + + Badger-Northland, Inc.Subsidiary Massey-Ferguson, Inc. + + + + + Bomag Trailer + + + + + Happy Wanderer Industry, Inc. + + + + + MUSTANG; CONSTRUCTION EQUIPMENT ETC. + + + + + TimberwolfElkhart, Indiana + + + + + Callahan Engineering Co. + + + + + Siefmund Werner + + + + + Erin Truck and Body EquipmentDolton, Illinois + + + + + Dupont Service Center, Inc. + + + + + Charlamor Corp. + + + + + Conwed Trailer + + + + + DUN-RITE MANUFACTURING LLC; DENVER, CO + + + + + ROLLINGSTAR, MFG., INC. ; BARNEVELD, NY + + + + + Hahn, Inc.Evansville, Indiana + + + + + Lac St-Jean Motoneige, Ltd.See Montagnais + + + + + Donhal, Inc. + + + + + PERFECTION ARCHITECTURAL SYSTEMS, INC.; BOYNTON BEACH, FL + + + + + Witzco Trailers, Inc. + + + + + Aristocrat Trailer SalesDiv. I. B. Perch Company + + + + + Pendlay + + + + + K-Bar Industries, IncSavage, MN; utility trailers + + + + + MOBILE CONCEPTS BY SCOTTY; MT. PLEASANT, PA + + + + + Bulk Resources, Inc., doing business as Bulk Mfg. Co. + + + + + Norjack, Incl + + + + + Murphy Engineering Co., Inc. + + + + + X-CEL TRAILERS, INC.; FORNEY, TX + + + + + C & B CUSTOM MODULAR, INC.; BRISTOL, TENNESSEE + + + + + International Industries, Inc. + + + + + Briggs Manufacturing, Inc. + + + + + Seal MateDiv. of Tateco, Inc. + + + + + Craftsman Ind., Inc. + + + + + Allen, R. L. Company, Inc.Battle Creek, Michigan + + + + + Holland Transplanter Co. + + + + + Panther Westwinds, Ltd. + + + + + General + + + + + Mallard Coach Corp. + + + + + BOURGET'S BIKE WORKS + + + + + DeTomaso + + + + + Woodline Custom Camper + + + + + Rink Mfg. Co. + + + + + Unicar + + + + + White Star Trailer + + + + + El Dorado Mfg., Ltd. + + + + + AMERICAN IRONHORSE MOTORCYCLES FT. WORTH, TEXAS + + + + + London Taxi + + + + + E Z Tow Manufacturing Co.Madison, Connecticut + + + + + A.Claeys Flandria (Belgium,imported by Saint Tropez) + + + + + Lechmere Construction + + + + + Caper Cycle + + + + + Comet Riding Mower + + + + + ONYX FLYER + + + + + ELKHART, INDIANA + + + + + Tacoma Trailer + + + + + Alexander-Reynolds Corp. + + + + + Eagle Equipment + + + + + Redi-Go Traveler + + + + + Milco Tank & Boat Co. + + + + + WESTERN RECREATIONAL VEHICLES, INC.; YAKIMA, WA + + + + + Santa Fe Springs Div.Div. of Divco-Wayne Industries + + + + + Robin Hood Travel Trailers + + + + + Van Guard Trailer, Ltd. + + + + + TRINITY TRAILER MEG., INC. BOISE, ID + + + + + Armor Mobile Homes Mfg. Co.Subsidiary Magnolia Mobile Home + + + + + King Horse Trailer + + + + + Raynell Campers + + + + + Ponderosa Industries + + + + + North River HomesHamilton, Alabama + + + + + Pure Steel Custom Cycles, Inc. + + + + + Werts BiltMfd. by Werts Welding Service + + + + + Kartote + + + + + Travel Equipment Corp. + + + + + Security Industries + + + + + Clay Camper Co. + + + + + Hyde Corp.Hurst, Texas + + + + + Tule Trooper + + + + + Double E Trailer Mfg.Commanche, Oklahoma + + + + + Kovatch + + + + + U-Save TrailersPomona, California + + + + + American Trencher, Inc. + + + + + Berkley + + + + + Midwest Industries, Inc.Ida Grove, Iowa + + + + + Zastavia (ZCZ-Yugoslavia) + + + + + Establishment + + + + + PROTAINER, INC; PROTRAILER (TRADE NAME) ALEXANDRIA, MN + + + + + Mobile Facility Engineering Co. + + + + + SHERCO MOTORCYCLE + + + + + PALM AIRE, INC.; ELKHART, IN + + + + + Zeligson + + + + + INNO VAN; MORAINE, OHIO/MERC HOLDING CO. + + + + + Haulette Trailer + + + + + Dively Mfg. Co.Claysburg, Pennsylvania + + + + + Cardinal Industries + + + + + Rembrant Mobile Home + + + + + Boyd, E.G., Trailer Co. + + + + + Circle V Horse Trailer + + + + + Kory Farm Equipment Div. + + + + + Yard-Man Co. + + + + + Bantam + + + + + Campbell-Hausfeld Div., Scott &Fetzer Co. + + + + + Allegro Motor Home + + + + + Diamond SWalters, Oklahoma + + + + + Green Mfg., Inc. + + + + + Merkur + + + + + Sabine Mfg., Inc. + + + + + Blake TrailersStar, Idaho + + + + + M.J.M. Trailer Mfg., Inc. + + + + + Kismet Mfg. Co. + + + + + Tilton-Hilton + + + + + Colorado Mobile Homes + + + + + Gore Trailer + + + + + Lark Trailer + + + + + Bombardier Ltd. + + + + + Viking + + + + + Unlisted Snowmobile Manufacturer + + + + + Leon Manufacturing Co., Ltd.,(Canada) + + + + + Gannon Manufacturing Co., Inc. + + + + + Discover 25 Motor Home + + + + + BEAVER CREK ENT. ; MOKENA, IL + + + + + McCain Industries + + + + + Seacamper Boat Trailer + + + + + DIAMOND C MT. PLEASANT,TX, CAR HAULER + + + + + Bellview Camper + + + + + Kon Kwest Mfg. + + + + + Terex Div.Euclid & Terex products + + + + + Lancer Mobile Homes + + + + + Centreville Trailer + + + + + Kempter Trailer + + + + + Star Tank & Trailer Mfg. Co. + + + + + Prairie Schooner + + + + + Wil-Ro, Inc.Gallatin, Tennessee + + + + + NICHOLS CUSTOM WELDING; HOME OF NICHOLS TRAILERS; FARMINGTON, ME + + + + + Wagon Master Trailer + + + + + International Jet Boats De Mexico S.A.De C. V.Mexico; trailers + + + + + Chance Coach IncWitchita, KS, city transit buses + + + + + All Purpose Trailer Co., Inc.Jefferson, South Dakota + + + + + American Body & Trailer Co. + + + + + Solo Electra + + + + + Todco + + + + + GiantManufactured by Caldwell & Sons + + + + + RC COMPONENTS + + + + + Stoddard Mfg. Co.Waterloo, Iowa + + + + + Four Winds + + + + + EPI Erwin Precision Inc. & EPI Custom Cycles + + + + + DIAMOND TRAILERS, INC. SHANDON,OH + + + + + T & M MANUFACTURING, INC.; PRINCETON, ONTARIO CANADA + + + + + Page Engineering Co. + + + + + Iowa Manufacturing Co.Cedar Rapids, Iowa + + + + + Gonard Enterprises, Inc. + + + + + Breeze Motor Home + + + + + Logan Coach, Inc.Logan, Utah + + + + + Lakeland Camper & Mfg.Drayton Plains, Michigan + + + + + SAM PATTON INDUSTRIES + + + + + Maginniss Vibrator Equip Co. + + + + + Bella Casa Co. + + + + + RV Industries, Inc. + + + + + Marathon Le Tourneau Co. + + + + + Equipment Pro or Milron Co., Inc. + + + + + Qianjiang Motorcycle Group Corp. + + + + + Red Dale Coach Co. + + + + + Craftsman + + + + + Jacobsen Mobile Homes + + + + + CONFEDERATE MOTOR WORKS, INC. + + + + + Comet Corp.Spokane, Washington + + + + + ELK AUTOMOTIVE; ELKHART, IN + + + + + Perma Tent Camper + + + + + VENTURI PARIS S. A. + + + + + Subaru + + + + + Aristocrat Motor Home + + + + + Idle-Time Cabover Camper Trailer + + + + + MILLENIUM TRAILERS, INC.; ADDISON, AL + + + + + Nash + + + + + Turner + + + + + EcsaMexico; trailers + + + + + Scout Motor Home + + + + + BULK MANUFACTURING COMPANY; PLANT CITY, FLORIDA + + + + + B & Z Electric Car Co. + + + + + Helm Mfg. Co. + + + + + Pleasure Homes Mfg. + + + + + Canadian Electric Vehicles, Ltd. + + + + + BaleMuvr + + + + + Aragon Distributing Co., Inc. + + + + + Fiat-Allis Construction Machinery, Inc. + + + + + Farm King, Ltd., (Canada) + + + + + Hustler-Rustler + + + + + C & S + + + + + Tartan Corp.Div. American Duralite Corporation + + + + + Classic Trailer Mfg. + + + + + Reliable Tank Inc.Rhone, Texas + + + + + Galion Manufacturing Div.Div. Dresser Industries, Inc. + + + + + CHINA QINGQI GROUP, INC; MOTORCYCLES, MOPEDS, SCOOTERS, ETC + + + + + Sampson + + + + + Marine Venture Enterprisers, Inc.Baltimore, Maryland + + + + + Ana-Log + + + + + Challenger Trailer + + + + + Alta + + + + + Holiday Industries, Inc. + + + + + Ridge Runner Industries, Inc.Fairmount, West Virginia + + + + + John A. McKay + + + + + Van Veen + + + + + Larado Mobile Homes + + + + + Mesa III Travel Trailer + + + + + Chicago Pneumatic Tool Co. + + + + + Warhawk Mfg. Co. + + + + + Altec IndustriesIndianapolis, Indiana + + + + + SPECTRUM STEEL, HYRUM, UTAH + + + + + Mitts-Merrill, Inc. + + + + + D & A Vehicles, Inc. + + + + + Playcat Industries, Inc.Polar BearSee Raybon Manufacturing CompanyPolar Bear/Whip ItSee Raybon Manuf + + + + + Austin + + + + + Douglas Homes, Inc. + + + + + Snowton Trailer + + + + + Seagull + + + + + HERITAGE CUSTOM TRAILERS; BENTON,ILLINOIS + + + + + Moto Guzzi (Italy) + + + + + Ace Traveler Corp. + + + + + Extreme Custom Trailers + + + + + Magic Tilt Trailer Mfg. Co., Inc.Boat trailers--Clearwater, Florida + + + + + UNITED EXPRESS LINE,INC; BRISTOL INDIANA + + + + + Selby Mfg. Co.Nicollet, Minnesota + + + + + King Trailer Co., Inc. + + + + + Wood/Chuck Chipper Corp.Mfrs. brushchippers--Shelby, NorthCarolina + + + + + COR-TECH MFG., INC., LUVERNE, MN + + + + + Nallej of Florida + + + + + Roll-A-Long & Sterling Coach Co. + + + + + Invader Travel Trailer + + + + + Tora (Imported by Rockford) + + + + + Crofton Cub + + + + + Lilac + + + + + Gilson + + + + + Viking Snowmobiles, Inc.Twin Valley, MN + + + + + Lislet Foundries, Ltd. + + + + + Eagle International, Inc.Mfrs. buses--Brownsville, Texas + + + + + Sprinter + + + + + Aerocar + + + + + Babcock's Mobile Home Mfg. Co. + + + + + SUN INTERNATIONAL RACING CORPORATION; CALIFORNIA + + + + + Remolques Tanques Y Equipos S.A. DE C.V. + + + + + Horex + + + + + SAUBER MANUFACTURING COMPANY; VIRGIL, IL + + + + + Easy Loader Trailer + + + + + Moretti + + + + + Graham-Paige + + + + + Raygo, Inc.Minneapolis, Minnesota + + + + + Hicks + + + + + Parkwood Homes, Inc. + + + + + Frye + + + + + Marvin A. Spears Co. + + + + + Little Prospector Motor Home + + + + + L & G Trailer + + + + + American Clipper Corp.Morgan Hill, California + + + + + Valley Foundry & Machine Works + + + + + Fost Joe Dog + + + + + Radamacher Trailer + + + + + Cascade Coach Co. + + + + + Spector Manufacturing, Inc. + + + + + Wy Frame Corp.Elkhart, Indiana + + + + + Bugatti + + + + + DovekieMfd. by Edey & Duff + + + + + Robert Horse Trailer + + + + + Star Trans + + + + + Pike Trailer CoSouth Gate, California + + + + + Panther + + + + + Batavia Trailers, Inc. + + + + + Chateau Recreational Vehicle Div.Christiana, Pennsylvania + + + + + Stepper Trailer + + + + + Ruttman + + + + + Streamline Trailer Co. + + + + + Oldsmobile + + + + + Cross Hill Mobile Homes + + + + + Tri-Pak Systems Co.Louisville, Kentucky + + + + + Dynamics Corp. of America + + + + + Tow Low + + + + + Transmobile Trailer + + + + + MARINE GROUP LLC; MURFREESBORO, TN (PRO-CRAFT) + + + + + Inland Equipment Corp.St. Charles, Illinois + + + + + Kayot, Inc. + + + + + Bon-Aire Homes, Inc. + + + + + Jim's Trailer ShopPortland, Oregon + + + + + Kurtis Kraft + + + + + Blue Ribbon Coach Co. + + + + + CurtisDiv. Globemaster Mobile Homes + + + + + HI-WAY STAR, INC; ODESSA, FL + + + + + Mack Trailer Mfg. Co., Inc.Detroit, Michigan + + + + + Texas Bragg EnterprisesMt. Pleasant, TX; utility trailers + + + + + Chatham Enterprises Custom Mfg. & Sales + + + + + Kallio Co.Fremont, Nebraska + + + + + LAND PRIDE FARM & GARDENING EQUIPMENT; MOWERS, ETC. + + + + + TIMBERLAND RV COMPANY; PERU, IN + + + + + Intermeccanica + + + + + Victor Mobile HomesDiv. DeRose Industries + + + + + Davenco, Inc.Roscoe, Illinois + + + + + Ariens Co. + + + + + Fawn Corp. + + + + + ULTIMATE TRAILERS; LAKEVIEW TERRACE, CA + + + + + Diamond-BiltMfd. by Diamond Steel Co., Inc. + + + + + Hylander Utility Trailer + + + + + Waldon, Inc. + + + + + Care-Free Camper Mfg. Co. + + + + + Motoroam Industries, Inc.Galva, Illinois + + + + + AlanMfd. by Giles Industries + + + + + Legendary Luxury Coach, LLC + + + + + Deutz-Allis Corporation + + + + + Tuff Thom Trailers, Inc.Brunswick, Georgia + + + + + Logic Motor Co. + + + + + Shipbuilt Van Trailer + + + + + Blazer + + + + + Super Two + + + + + Winder Liberator Camper + + + + + Geering Industries, Inc. + + + + + Riviera + + + + + Binkley Co., The + + + + + TC Industries, Inc.Crystal Lake, Illinois + + + + + Electra Vacation Home + + + + + Beach-Craft Motor Homes Corp.Elkhart, Indiana + + + + + Smartlee + + + + + COUNTRY BLACKSMITH LLC + + + + + Ski Kart + + + + + Ryan Mfg. + + + + + Fellwon Trailer + + + + + YLN (Yue Loong Motor Co.) + + + + + Trailers Y Casetas Bonanza S. A.Mexico; trailers + + + + + Tourhome Camper Trailer + + + + + Boxer Trailer + + + + + IPSCO-Lambton Steel + + + + + Lake & Shore Camper + + + + + Evinrude Motors + + + + + Trans-Trail Trailer + + + + + Supreme Industries, Inc.Louisville, Tennessee + + + + + Mobile InternationalTulsa, Oklahoma + + + + + Pennco Industries, Inc.Subsidiary of DEC International, Inc.--Warren, Pennsylvania + + + + + M & W Gear Co., Inc. + + + + + Ramsey Trailers + + + + + Mo Trailer Corp.Goshen, Indiana + + + + + Mobile Engineering Co. + + + + + Delmar Mfg. Co., Inc. + + + + + L & E Enterprises + + + + + Welch Mfg. & Engineering Co. + + + + + Wacker Corp.Milwaukee, Wisconsin + + + + + Tracker Marine, Inc.Nixa, Missouri + + + + + Yetter Mfg. Co. + + + + + Raybon Manufacturing CompanyWallingford, CT + + + + + Bulk Equipment Mfr. Inc.Bulkiner Feed Trailer + + + + + B.M. Clark Co., Inc. + + + + + Northwest Custom TrailerRochester, Washington + + + + + Detroit Trailer Co.Detroit, Michigan + + + + + MANCO PRODUCTS, INC + + + + + Paiute Trailers + + + + + Dusgo Trailer + + + + + Asbury Industries, Inc. + + + + + Buck Dragster Flatbed + + + + + VENTO MOTORCYCLES + + + + + Forage King Industries Inc. + + + + + George White & Sons Co., Ltd.,(Canada) + + + + + Hire Dump Trailer + + + + + Goebel Trailer Co. + + + + + Sutphen Corp.Amlin, Ohio + + + + + Avia + + + + + Holmes Wrecker + + + + + T.E.S. (Truck Equipment & Sales Co.) + + + + + Holman + + + + + Gar-Bro Manufacturing Co. + + + + + Boardman Co. + + + + + Sabre JetSee Sno*Jet, Inc. + + + + + BIBB WELDING & TRAILERS, LLC; MACON, GEORGIA + + + + + VERTEMATI MOTORCYCLES + + + + + HADDOX QUALITY TRAILERS; OKLAHOMA + + + + + Mirage Motorhomes, Inc. + + + + + Sera + + + + + Lil' Cat, Inc.Elkhart, Indiana + + + + + Devine's Machine & Design, Inc.Grantville, Pennsylvania + + + + + Hercules + + + + + F.A.B. Mfg. Co. + + + + + Buccaneer Mobile HomesDiv. Brigadier Industries, Inc. + + + + + Joe's Custom Boat Trailer + + + + + Atlas + + + + + Saturn HomesDiv. Harrelson Corporation + + + + + Monarch (Sweden) + + + + + Orcon Incustries + + + + + MODERN, INC. TEXAS + + + + + Charger + + + + + Stewart & Stevenson + + + + + Lagonda + + + + + R/S Truck Body Co., Inc.Allen, Kentucky + + + + + Selox Mfg., Ltd.Toronto, Ontario, Canada + + + + + Danny Boy Trailer + + + + + Continental Homes, Inc. + + + + + Show-Me Trailers, Inc.Smithton, Missouri + + + + + Lem + + + + + Son-Dyke Trailer Co.Boat Trailers--Calico Rock, Arakansas + + + + + Fleet-Aire Camper Co. + + + + + Rogue River Trailer Mfg. Co. + + + + + MG + + + + + Cozy CraftMfd. by Travelcraft, Inc. + + + + + RUSH & SON, INC; LENOIR CITY, TENNESSEE + + + + + Spano Crane Sales & Service Corp. + + + + + Viscount Trailers + + + + + Johns Corp. + + + + + AljoDiv. Skyline Homes + + + + + VAN HOOL BUSES & MOTOR COACHES + + + + + PCM Div.Div. of Koehring Co. + + + + + Midas International Corp. + + + + + BeeBee Sales Co. + + + + + LONG CHANG; USA ATVS + + + + + Hudson + + + + + Insley Four Wheel Tag Trailer + + + + + Heilite Trailers, Inc. + + + + + Alma + + + + + Mercedes-Benz + + + + + Corvette Travel Trailer + + + + + Versatile Manufacturing Co.Div. Versatile Cornat Corp., KansasCity, Missouri + + + + + Northern Hydrolics, Inc. + + + + + Ezzy Load Boat Trailer + + + + + Diplomat Motor Home + + + + + Dean Industries, Inc. + + + + + Miller + + + + + Bartlett Trailer Corp.Chicago, Illinois--Predecessor toBartlett Lifting Devices + + + + + Wa-Nee Homes Corp. + + + + + Shamrock CampersDiv. Classic Mfg. Co. + + + + + INTERMOUNTAIN WHOLESALE, INC. ;COMMERCE CITY, CO + + + + + Transmission (Generic Code--for useonly when manufacturer is notlisted) + + + + + Kassborth + + + + + Delahaye + + + + + Major Way + + + + + Hillsboro Industries, Inc. + + + + + Rotocraft Boat TrailerGrants Pass, Oregon + + + + + Catalina Motor Home + + + + + Brown Industries + + + + + Francis Travel Trailer + + + + + MacDonald Camper Kit + + + + + Mono + + + + + Dominion Road Machinery Co., Ltd. + + + + + Boyer Industries + + + + + Trek, Inc.Elkhart, Indiana + + + + + Dorado Mobile HomesMfd. by Tidwell Industries, Inc. + + + + + A & J Industries Custom Fiberglassing + + + + + Hadley Trailer Mfg. Co.North Carolina + + + + + Bristol + + + + + Bristol Mfg. Co. + + + + + Bunton CompanyLouisville, Kentucky + + + + + Yamoto + + + + + Mount Vernon Mobile HomeDiv. Concord Mobile Homes + + + + + Colonial Mobile Homes Mfg. + + + + + Merit Tank & BodyBerkeley, California + + + + + STEPHENS PNEUMATICS, INC.; HASLET, TEXAS + + + + + EconomyGarden tractor--mfd. by EngineeringProducts Co., Inc. + + + + + Integrity Custom Trailers or R & D Fabrication + + + + + W.W. TRAILER MANUFACTURERS, INC; OKLAHOMA + + + + + Victory Implement Co. + + + + + Sangyong + + + + + Executive Industries, Inc. + + + + + Moto Rumi + + + + + Vanette + + + + + Airstream Travel TrailersJackson Center, Ohio + + + + + LEITCHFIELD TRUCK EQUIPMENT, INC,; LEITCHFIELD, KY + + + + + Sycamore Mobile Homes + + + + + E. D. Etnyre & CompanyOregon, Illinois + + + + + Interstate Travel Trailer + + + + + Reed Enterprises, Inc. + + + + + ENVASES DE ACERO, S.A. DE C.V. MEXICO; TRAILER + + + + + DixieFruehauf Corp. Plant + + + + + SCION; NEW LINE/MAKE OF VEHICLE UNDER THE TOYOTA BRAND ______MODELS INCLUDE THE XA & AB + + + + + Angel + + + + + MAUER MANUFACTURER, INC.; IOWA, TRAILERS + + + + + High Chaparral, Inc.Ft. Worth, Texas + + + + + New Comer Industries, Inc.Goshen, Indiana + + + + + Peek + + + + + Jaguar + + + + + Nabors Trailers, Inc.Mansfield, Louisiana + + + + + Vector Aeromotive Corporation + + + + + Shoops Horse Trailer + + + + + Ozark TrailwayMfd. by Tri-Lakes Mfg. Co., Inc. + + + + + LEGEND TRAILERS, INC + + + + + Sun State Mobile Homes + + + + + Rolling Homes, Ltd. + + + + + Bocar + + + + + Bonnieville Mfg. Co. + + + + + SNOW Co. + + + + + Saracen + + + + + Hewitt-Lucas Body Co. + + + + + Jet Stream Camping Trailer + + + + + American Transportation Corp. + + + + + Joe's Welding ServiceSalem, Illinois + + + + + WADE SERVICES, INC.; ELLISVILLE, MS + + + + + Packard + + + + + Red Ewald, Inc. + + + + + Utah King Motor Home + + + + + Highway Manufacturing Co.Div. of Motac, Inc. + + + + + Conroy IndustriesNew Braunfels, Texas + + + + + Foot Hill Horse Trailer + + + + + Field & StreamManufacturer Vacation Industries + + + + + PACE AMERICAN OF UTAH, INC.; HURRICAN UTAH + + + + + Ensenada Mobile Homes + + + + + Special Endeavors, Inc.Omaha, Nebraska + + + + + Herter Snowmobile Trailer + + + + + Chamberlin TrailersHampton, Iowa + + + + + Inline Southwest Horse Trailer + + + + + Auranthetic Charger + + + + + Arnold Mfg. Co. + + + + + Haul-It-All-Flatbed Trailer + + + + + Aqua Cruiser, Inc.Columbia, Tennessee + + + + + Danco Trailers, Inc. + + + + + ECONOLINE TRAILERS, INC. ; DOUBLE SPRINGS, ALABAMA + + + + + The Salem Tool Co. + + + + + Modernistic Industries + + + + + Diamond ReoDiscontinued production in 1974 + + + + + Kosch Co. + + + + + Owens Mfg. Co. + + + + + Foland Enterprises + + + + + Topper Mobile Homes, Inc. + + + + + New Heights, LLC + + + + + Trophy Travel Trailer + + + + + Harvard (model of Negrini) + + + + + Hairgrove Construction Equipment + + + + + RAPSURE, INC; NAPPANEE, IN UTILITY & OTHER TYPE TRAILERS + + + + + Aeroil Products Co., Inc.Bensenville, Illinois + + + + + Getman Brothers Mfg. Co.Marion, Ohio + + + + + Muncy Homes, Inc.Muncy, Pennsylvania + + + + + Callen Camper Co. + + + + + ChanceyMfd. by Trail-O-Matic + + + + + Big Bubba's + + + + + Sundial Motor Home + + + + + Prowler Industries + + + + + QE Mfg. Co., Inc.New Berlin, Pennsylvania + + + + + Doepker Industries Ltd. + + + + + Recreative Industries, Inc. + + + + + Lanes Pacesetter Trailer + + + + + CAM SUPERLINE, INC.; GREENCASTLE,PA + + + + + AUTOCAR & AUTOCAR LLC CARS & TRUCKS + + + + + Dellow + + + + + Twister + + + + + Valley Campers + + + + + Brillion Iron Works Div., BeatriceFoods Co. + + + + + Hartline Travel Trailers + + + + + G. S. Industries, Inc. + + + + + Heinkel + + + + + G.T.Wolfe Mobile Homes + + + + + Erie-Go Mfg., Inc. + + + + + Brooklyn Trailer + + + + + Tennessee Trailer + + + + + Speed Bird + + + + + Trav Otel Industries + + + + + Lewis-Shepard + + + + + Bame Three Axle Trailer + + + + + SWM + + + + + Jackson Trailer + + + + + Hunter Structures Trailer + + + + + Richards & Clark Mfg. Co. + + + + + Alberta Trailer Co., Ltd. + + + + + Gibraltar Coach Mfg. Co. + + + + + TRAILER WHEEL & FRAME COMPANY; TEXAS + + + + + Triumph Sales & Service + + + + + Bushog Div.Subsidary of Allied Products Corp.Selma, Alabama + + + + + Lanheim, Inc. + + + + + Mitchell Industrial Tire Co., Inc.Chattanooga, Tennessee + + + + + Scorpion + + + + + Melges Boat Works, Inc.Zenda, Wisconsin + + + + + Capitol Trailer Coach Co. + + + + + Gladding Travel Trailer + + + + + Flaherty Manufacturing Co.Div. of Koehring Co. + + + + + Custom Frames, Inc.Normandy, Tennessee + + + + + Balderson, Inc. + + + + + Felps Mfg. Corp.Johnson City, Texas + + + + + Honeywell Motor Prods., Honeywell,Inc. + + + + + Streamline Motor Home + + + + + Corner Utility Trailer + + + + + Motorette + + + + + SCAT TRAK; CONSTRUCTION EQUIPMENT + + + + + Winnebago Industries, Inc. + + + + + B-Line Farm EQuip.Mfrs. Cartow & Snowmobile trailersBristol, Virginia + + + + + Downs Clark Trailer + + + + + AriensSee Skiroule Ltd + + + + + Trotwood Trailer + + + + + Dalesman (United Kingdom) + + + + + Warwick + + + + + Zongshen Motorcycle Co., Ltd., or Cixi Zongshen Motorcycle Co., Ltd. + + + + + Mark Twain Mfg. Co. + + + + + Hurst Trailers, Inc.Washburn, Tennessee + + + + + ROBB KAUFMAN, INC.; LEXINGTON, NORTH CAROLINA + + + + + Lombard + + + + + GalwayMfd. by Shamrock Homes + + + + + Co Corp. + + + + + Peterbilt Motors Co.Div. of Paccar, Inc. + + + + + Kelly-Creswall Co., Inc.Xenia, Ohio + + + + + Traveler Mfg. Inc.Concordia, Missouri + + + + + ELK RIVER MACHINE CO.; ELK RIVER, MN + + + + + Burkhart Trailer Mfg. Co. + + + + + Thor California, Inc. + + + + + Space Age Campers + + + + + Glover Plastic Sprayer + + + + + Rockford Welding & Machine + + + + + Aluma Craft + + + + + Ameri-Camp + + + + + Arlberg + + + + + Hayes Log Truck + + + + + MANN MADE PRODUCTS INC. TRAILMANN TRAILERS (TRADE NAME) + + + + + Superior Ideal, Inc.Oskaloosa, Iowa + + + + + Montgomery, Bill + + + + + Coynco Products + + + + + EstatePower mowers--mfd. by Jacobsen Manu-facturing Co. + + + + + Gem Industries, Inc.Grand Rapids, Michigan + + + + + Balzer Manufacturing Corp. + + + + + Reeves Trailer + + + + + MercurySee Mercury Marine + + + + + Boerne Trailer Mfg. or Inter-National Crane & Trailer, Inc. + + + + + Koehn Mfg., Inc. + + + + + TWINKLE; HEARSES + + + + + Bear Trailer Mfg., Inc.Lebanon, Missouri + + + + + Wilson Trailer Co., Inc.Grain, livestock trailers--Sioux City,Iowa + + + + + PEGASUS VANS & TRAILERS, INC SANDUSKY, OH + + + + + Darf Corp. + + + + + Bee Trailers, Inc. + + + + + Tri-Star Corp. + + + + + Custom Homes, Inc. + + + + + Marquez Mfg., Ltd.Sunnyside, Washington + + + + + Southeastern + + + + + Husqvarna + + + + + MI-JACK PRODUCTS; HAZEL CREST, IL + + + + + CARGO KING, LLC; WHITE PEGEON, MICHIGAN + + + + + Reynolds Mfg. Co. + + + + + U.S. Suzuki Motor Corp., Inc.Santa Fe Springs, CA + + + + + Trail-Or-Floats + + + + + Huntington Distributors + + + + + Wheel Horse Products, Inc.Subsidiary American Motors Corp., SouthBend, Indiana + + + + + Peninsula Camper Mfg. + + + + + Central Industries, Inc. + + + + + Spirit Eagle + + + + + DeGeest Mfg. Co.Sioux Falls, South Dakota + + + + + Bock Products, Inc.Elkhart, Indiana + + + + + Grycner + + + + + Cook Semi Trailer + + + + + Fargo + + + + + Taizhou Hisource Intl. Trade Co., Ltd. + + + + + FOREST RIVER, INC.; GOSHEN, INDIANA TRAILERS + + + + + Lea-Francis + + + + + York Forklift + + + + + LONE WOLFE + + + + + Double Horse Trailer + + + + + Veritas + + + + + Star Machine Shop Co. Ltd. + + + + + Nichols Mfg. Co., Inc. + + + + + McQuerry Tan Trailer + + + + + Califfo + + + + + De Rose Industries Inc.Indianapolis, Indiana + + + + + Sterline Flatbed Trailer + + + + + Broce Manufacturing Co. + + + + + Liquid & Bulk Tank Div.Div. of Fruehauf Corp.--Omaha, Nebraska + + + + + Longmark Mobile Homes + + + + + E-One + + + + + KARD CO, RENSSELAER, INDIANA + + + + + Evans Mfg. Co., Inc., JohnSumter, South Carolina + + + + + Matlock Trailer Corp.Nashville, Tennessee + + + + + Encore Motorcycle Co., USA + + + + + Kubota Tractor Corp.Compton, California + + + + + Trabant + + + + + Reliance Trailer Mfg.Div. Redwood Reliance Sales Co.,Cotati, California + + + + + Hiawatha + + + + + Diamond Mobile Home Mfg. + + + + + Majestic Rides Mfg., Inc.New Waterford, Ohio + + + + + VagabondDiv. Guerdon Industries + + + + + Walker + + + + + MIGHTY MOVER TRAILERS, INC; CALIFORNIA + + + + + Excalibur + + + + + Midwest Mobile Homes & Trailer Mfg. Co. + + + + + Lorain Div.Div. of Koehring Co. + + + + + Omaha Standard Flatbed Trailer + + + + + Wanamaker Trailer + + + + + Orange County Choppers + + + + + Prime Mover + + + + + Super Vacuuming Mfg. Co., Inc. + + + + + ChaparralSee Chaparral Industries, Inc. + + + + + HUSABERG MOTORCYCLES, SWEDEN + + + + + Emmco Trailer + + + + + De-Lar, Inc. + + + + + Economy-Wisconsin + + + + + Berkeley Pump Co. + + + + + Baron Homes, Inc. (old code CGC)Formerly C&G Corp., Elhart, Indiana + + + + + Mayflower Trailers or Homes + + + + + Rowse Hydraulic Rake Co. + + + + + Minneapolis-Moline (MOTEC), Inc. + + + + + X-L SPECIALIZED TRAILERS; OELWIN, IA.; SD,DDE,MFG,HDG,LSD TRAILERS + + + + + Cisitalia + + + + + Calkins Trailer + + + + + Transport Systems, Inc.Denton, Texas + + + + + Foremost Mobile Home Mfg. + + + + + W-W TrailersStock Trailers + + + + + Week-N-Der Pickup Camper + + + + + Thiermann Utility Equipment Div.Milwaukee, Wisconsin + + + + + AZTX or Az-Tex Trailers + + + + + Jerry James TrailersSikeston, MO; utility trailers + + + + + Marlette Homes, Inc.Marlette, Michigan (formerly MarletteCoach Co.) + + + + + Sprout, Waldron & Co., Inc. + + + + + Five Star Engineering, Inc. + + + + + FHL + + + + + BOYDSTUN METAL WORKS, INC.PORTLAND, OREGON + + + + + Royal Enfield + + + + + Atlas DivisionDiv. Lonergan Corporation + + + + + Vintage Homes + + + + + Alair Coach Corp. + + + + + Sun Trailer & UtilitiesMid-West City, Oklahoma + + + + + Ace Trailer of America + + + + + M & R Enterprises, Inc., or Honeysuckle Enterprises, Inc. + + + + + Heltzel Co. + + + + + Thor Power Tool Co. + + + + + Ripco, Inc. + + + + + My-Way Corp.Longwood, Florida + + + + + Hopkins Mfg. Corp. + + + + + Moskovitch + + + + + Glas + + + + + AAPEX TRAILERS, INC.; CHICAGO, IL + + + + + Mobile Scout Mfg. Corp.Arlington, Texas + + + + + Work Horse Mfg. + + + + + Otosan + + + + + Belarus Machinery, Inc. + + + + + Frontier Homes Corp. + + + + + Mean + + + + + Flote-Aire Corp. + + + + + E-TON DYNAMICS TECHNOLOGY INDUSTRY CO., LTD + + + + + Di Tella + + + + + D & E WELDING; LYONS, GA + + + + + Mal Tractor + + + + + Jialing Ind., Co., Ltd. Group + + + + + Johnson Motors + + + + + Durcholz Trailer + + + + + Ronco Coaches, Inc. + + + + + Ideal Industries + + + + + Tri-Way Trailer + + + + + Strahan Mfg. Co. + + + + + Haul-A-Fame, Inc. + + + + + Trac + + + + + Morris + + + + + Beaird-Poulan Div., Emerson ElectricCo. + + + + + Majestic Corp. + + + + + Eight Point + + + + + Green & Green Mfg. Co., Inc.Lancaster, Texas + + + + + Dual Evans Corp. + + + + + Zetor/Zetor North America + + + + + Elva + + + + + Allen Coachworks Inc.(Mexican Manufacturer) + + + + + Villiers + + + + + Lemoped (model of Motobecane) + + + + + Towncrier Camper + + + + + Bimota Motorcycles + + + + + Tebben Mfg. Co., Inc. + + + + + Werts Corp., Inc. + + + + + Auburn + + + + + R & I IndustriesCity of Industry, California + + + + + Andrews Payloader + + + + + Lori Engineering Corp. + + + + + Marlin Mfg. + + + + + United States Aluminum Co. + + + + + Recreatives, Inc.See Sabre + + + + + Fantic + + + + + Camp-A-While Homes Mfg. Co. + + + + + Suzulight Su + + + + + Garway Homes, Inc. + + + + + Hornet Industries, Inc. + + + + + Trailex, Inc.Canfield, Ohio + + + + + De Lorean (imported from Belfast,Northern Ireland, UK) + + + + + C.C. Kelley & Son + + + + + Twentieth Century Mfg. Co.or 20th Century Mfg. Co. + + + + + Mobile Mfg. Corp. + + + + + B & W Homes, Inc. + + + + + Ute Trailer + + + + + Innocenti + + + + + MILLER INDUSTRIES, INC., OOLTEWAH, TENNESSEE + + + + + Corona Coach Co. + + + + + Tear Drop, Inc. + + + + + BestrailMfd. by Lakeside Industries + + + + + Schwinn Motor Scooters + + + + + Huss Sales, Inc. + + + + + Pederson + + + + + United States Mobile Homes (Florida) + + + + + American Hoist & Derrick Co. + + + + + HYDRO TEK CORP.; REDLANDS, CA + + + + + Excellance, Inc. + + + + + Dakota Mfg. Co., Inc.Mitchell, South Dakota + + + + + Bridgestone + + + + + Wabco Construction & Mining EquipmentSubsidiary of American Standard, Inc.Group + + + + + ALUTREC INC. STE-AGATHE, QUEBEC CANADA + + + + + Imperial Industries + + + + + Thunderbolt Trailer + + + + + A-Z MANUFACTURING; MADERA, CA + + + + + American Road EquipmentOmaha, Nebraska + + + + + Henke Manufacturing Corp. + + + + + Acadian (GM of Canada) + + + + + SANDPIPER + + + + + Hesse Corp.Kansas City, Missouri + + + + + Travel Home, Inc. + + + + + Bianchi + + + + + Forrest City Machine Works, Inc. + + + + + Fife Trailer + + + + + Miller Equip. Div., Miller Equip. Co + + + + + Taka (Imported by Rockford) + + + + + John Pitzer Mfg. Co.Glenwood, Iowa + + + + + MASSON'S WELDING + + + + + Tropicana Mfg. Co. + + + + + Grizzly Mfg. Co., Inc. + + + + + H & B Trailer Co.Damascus, Arkansas + + + + + Fleming Mfg. Co., Inc.Long Lake, Minnesota + + + + + Camp-Mor, Inc. + + + + + Leyland TractorsBritish Leyland - Dist. by UniversalTractor-Equipment Corp. Richmond,Virginia + + + + + Forlyn Engineering Co. + + + + + Ceva Mfg. Co. + + + + + Stutz + + + + + Busse Brown Trailer + + + + + Kamp-A-While Industries + + + + + Blazon Mobile Homes Corp. + + + + + American Trailers, Inc.Div. Polar Mfg. Co. + + + + + Belmont Machine + + + + + Globe + + + + + Grace, W. E., Manufacturing Co. + + + + + Nuell Coach Corp. + + + + + Columbia Tractor Mower + + + + + Weber + + + + + RAZORBACK TRAILERS; PENNSYLVANIA + + + + + Jackel Motorsports or China Jialing Ind. Co., Ltd. + + + + + Ferguson Mfg. Co., Inc. + + + + + Ysob Co. + + + + + Hawthorne + + + + + Kevco Ind. + + + + + Siebert Trailers, Inc.Stockton, California + + + + + Glassic + + + + + Indian (Taiwan) + + + + + Beck Camping Trailer + + + + + Bob S Trailer + + + + + Lil'ZManufactured by Zieman Products + + + + + Crown Line + + + + + JB + + + + + Bird + + + + + Vanguard National Trailer Corp. + + + + + Sterling Industrial Corp. + + + + + Vermont Traveler + + + + + Tracker Corp.Boat trailers--Winchester, Tennessee + + + + + Bond Mobile Homes, Inc. + + + + + Arrow Trailers, Inc.Affiliated with Great Dane Trailers--Memphis, Tennessee + + + + + Peerless International Co., Inc. + + + + + Killer Chopper Cycle Fabrication, LLC + + + + + Pinto + + + + + Starcraft Corp. + + + + + Grimmer-Schmidt Corp.Franklin, Indiana + + + + + Baretta + + + + + Tybex Corp.Bangor, Pennsylvania & Belvidere, N.J. + + + + + CapellaMfd. by Midland Industries, Inc. + + + + + Sunliner Motor Home + + + + + ACCU-TEK,INC.; SHREWSBURY, MASSACHUSETTS + + + + + Tannehill Trailer + + + + + Toddy Custom Built TrailersMfrs. stock trailers--Bradford, Arizona + + + + + E Z HaulDiv. of Parkhurst Manufacturing Co. + + + + + Macoma Engineering, Inc. + + + + + Ira Jorgenson + + + + + Tacquito + + + + + J.H. Ross Co. + + + + + INDIANA TRAILER MANUFACTURING + + + + + Eidal International Corp. + + + + + Al-Mac Products, Inc. + + + + + Open Road Campers, Inc. + + + + + Marliss Industries, Inc. + + + + + Kruz, Inc. + + + + + KESLER MANUFACTURING, INC; LOYAL, WISCONSIN;TRAILERS + + + + + Hardee Mfg. Co.Affiliated with Harsco Corp., PlantCity, Florida + + + + + Sunline Coach Co. + + + + + Ho-Bo Trailers + + + + + Materials Handling Div., Eaton Corp. + + + + + Realco Trailer + + + + + Swinger + + + + + Van Bibber Enterprises + + + + + Addison HomesDiv. of Penthouse Industries, Inc.Addison, Alabama + + + + + Garson Flatbed Trailer + + + + + Little Dude Trailer Co.Affiliated with Texas Dude, Inc.(Formerly Texas Royal Mfg. Co.)Fort Worth, Te + + + + + Hilbilt Mfg. Co.Benton, Arkansas + + + + + Torrot + + + + + Rexhall + + + + + AERO MANUFACTURING, INC.; SYRACUSE, INDIANA + + + + + Barth corp. + + + + + Roketa Powersports + + + + + Tucker + + + + + Cross Lander + + + + + Pak-Mor Mfg. Co. + + + + + Mobile Chapel Trailer + + + + + TITAN MOTORCYCLE + + + + + Custom King Horse Trailer + + + + + Jim & Dave's Trailer Mfg. + + + + + Knight Mfg. Corp. + + + + + Jensen + + + + + Elgin-Leach Corp. + + + + + ODell Mfg. Co. + + + + + Vanson Boat Trailer + + + + + Style-Craft Mobile HomesMfd. by Wickes Homes + + + + + Trinity Products + + + + + Lawn Chief + + + + + Surveyor Motor Home + + + + + Windsor Mobile Homes (old code WIND) + + + + + Premier + + + + + Specialized Vehicles Corp. + + + + + Topline Trailers ManufacturingFort Worth, TX + + + + + Corder Mfg. Co., Inc. + + + + + Katolight Corp. + + + + + Amen + + + + + Utility Trailer Mfg. Co.City of Industry, California + + + + + Masterbilt Trailers, Inc. + + + + + Wesco Truck & Trailer SalesWoodland, California + + + + + TRIPLE "J" CUSTOM TRAILERS, GANSEVOORT, NY + + + + + Cochran Western Corp.Subsidiary of Western Gear Corp. + + + + + Testi + + + + + Cross Truck Equipment Co., Inc.Canton, Ohio + + + + + Festival Homes of Ohio, Inc.Greenwich, Ohio + + + + + Sooner Mfg. + + + + + Starcraft Corporation + + + + + Broadlane Homes, Inc. of Indiana + + + + + NVT America (moped) + + + + + Smith-Roles Ltd. + + + + + Ponderosa Homes, Inc. + + + + + KBH CORPORATION; CLARKSDALE, MS + + + + + Nerco Trailer + + + + + Cuyler Corp. + + + + + Warszawa + + + + + PRESTON AMUSEMENTS, INC.; ALVARADO, TX + + + + + General Coach Works of CanadaDiv. of Divco-Wayne Industries + + + + + Green Boat Trailer + + + + + Loprofile Boat Trailer + + + + + A-T-O Construction Equipment Div.,A-T-O, Inc. + + + + + HAULRITE, INC.; MT. JULIET, TENNESSEE **(NOT HAULRITE OF MISSOURI VMA/BMMF)** + + + + + TROY-BILT FARM & GARDEN EQUIPMENT + + + + + Master Craft Industrial Equip. Corp. + + + + + Bankhead Enterprises, Inc.Atlanta, Georgia + + + + + Hi-Lo Travel Trailer + + + + + Puckett Brothers Mfd. Div. Co. Inc.Lithonia, Georgia + + + + + American Tractor Equipment Corp. + + + + + Lieber Industries, Inc. + + + + + Muller Machinery Co.Metuchen, New Jersey + + + + + Watson Industries + + + + + Union Machine & Tool Works + + + + + Troyler Corp. + + + + + Sun + + + + + Excel Motor Home Truck + + + + + Murray TrailersCaldwell, Idaho + + + + + Escort Trailer Corp.Seattle, Washington + + + + + Harrington Mfg. Co., Inc.Mfr. of Roanoke-Hustler, Lewiston, NorthCarolina + + + + + Scully Coach Co., Inc. + + + + + SPRINTER MOTORCYCLE + + + + + Dutton-Lainson Co., Mfg. Div.Mfrs. of boat trailers, + + + + + Construction Machinery Co. + + + + + ApacheMfd. by Lindig Mfg. Corp. + + + + + Manning, Richard + + + + + Hanson Machinery Co. + + + + + Bomford & Evershed, Ltd. (England) + + + + + Gran Spree Mini Camper + + + + + VANGUARD INDUSTRIES OF MICHIGAN, INC.; COLON, MI + + + + + Southern Energy Homes, Inc.Addison, Alabama + + + + + ScaniaOrange, Connecticut (Saab-Scania ofAmerica, Inc.) + + + + + Frisky + + + + + Blizzard Mfg., Inc. + + + + + Elkhart Mfg. Co. + + + + + Maxi Products Co., Inc. + + + + + Trombly Woodworking Co. + + + + + EE-ZY Trailer Co. + + + + + Fayette Trailer + + + + + A-OK Trailers + + + + + Country Squire Travel Trailer + + + + + Tee Nee Trailer Co.Youngstown, Ohio + + + + + Elk River Corp. + + + + + TWN + + + + + Haflinger + + + + + Axle & Equipment Sales Co.Naperville, Indiana + + + + + Travelo Homes Co.Div. Saginaw Products + + + + + Buhl Machine Works + + + + + Burro, Inc.Plymouth, Minnesota + + + + + Ridgecraft Corp.Breckenridge, Texas + + + + + Marshall + + + + + Road Rescue + + + + + Palliser (racing car) + + + + + Omega (Italian) + + + + + American Road Trailer Camper + + + + + Allied ProductsDiv. Lonergan Corporation + + + + + Allied Tank + + + + + MCCLOSKEY BROTHERS MANUFACTURING; CANADA LIT.ONTARIO + + + + + Boatel Ski + + + + + Special (Go-cart, Golf Cart, seeOperating Manual, Part 1,Section 2) + + + + + Santo + + + + + Rome Industries, Inc. + + + + + Hartman + + + + + Transcraft Corp.Anna, Illinois + + + + + Mobile Home Service + + + + + Top Campers + + + + + Ingerson Mfg. Co. + + + + + Kane TrailersGreeley, Colorado + + + + + Gorbett BrothersFort Worth, Texas + + + + + Spartan ProductsWest St. Paul, Minnesota + + + + + Wallstrom Boat Trailer + + + + + Rite-On TrailersDiv. of Windward Marketing + + + + + Tramco, Inc.Mfrs. liquid propane gas transport--Dallas, Texas + + + + + Duel + + + + + Cushman + + + + + Cruisemaster Motor HomeMfd. by Georgie Boy Mfg., Inc.Edwardsburg, Michigan + + + + + X-Tra Camper Co. + + + + + M-R-S Manufacturing Co. + + + + + Eaton Corp.Cleveland, Ohio + + + + + Orlando Boar Co. + + + + + Fireball Trailer Mfg. + + + + + Panda Motor Home + + + + + Kompak Camping Trailer + + + + + Sigame Corp.Gardena, California + + + + + Rear's Mfg. Co. + + + + + St. Clair Custom Built + + + + + Embassy Mobile HomesDiv. of Guerdon Industries + + + + + Dude Trailer + + + + + Edwins + + + + + Bobko, IncMichigan City, Indiana + + + + + DMI, Inc.Goodfield, Illinois + + + + + GIGI Industries, Inc.Motor homes + + + + + Delta Truck Trailer Co., Inc.Camden, Arkansas + + + + + Bear Cat Mfg., Inc.Wickenburg, Arizona + + + + + Tour-A-Lodge + + + + + PANDA MOTOR SPORTS NORTH AMERICA, INC. + + + + + Capitol + + + + + Landola Homes, Inc. + + + + + Consolidated Mobile Industries + + + + + I. K. A. + + + + + QUIK MANUFACTURING, CO; FOUNTAIN VALLEY, CA + + + + + The Tye Co., Inc. + + + + + Allisons Fiberglass mfg.,Inc. + + + + + Merritt Equipment Co.Portland, Oregon + + + + + Fotografix Boat Trailers + + + + + L. B. Smith, Inc.Manufacturer of Smithco. Trailers + + + + + Peace + + + + + Blair Horse Trailer + + + + + OMC JohnsonBoat trailers--Waukegan, Illinois + + + + + Husky Farm Equipment Ltd.Ontario, Canada + + + + + Dille & McGuire Mfg. Co.Richmond, Indiana + + + + + Freeway Travelers, Inc. + + + + + Locomobile + + + + + Wig-A-Wam, Inc. + + + + + Beardmore + + + + + Funtime Camper Trailer + + + + + Veglia + + + + + Clipper Mfg. Co. + + + + + Guest Industries, Inc. + + + + + Gelt Trailers + + + + + Crest Trailer + + + + + SOUTHWEST EXPRESSLINE, WHITE PIGEON,MICHIGAN + + + + + Porta-Built Industries + + + + + Indiana Phoenix + + + + + Loftness Mfg. Co. + + + + + Portable Structures + + + + + Outdoor Equipment + + + + + Servicycle + + + + + NU-CENTURY; MADERA, CA + + + + + Air BuoyBoat trailers--mfd. by Firestone Tire &bber Products + + + + + Planet Plows, Inc. + + + + + Casal + + + + + Forney Horse Trailer + + + + + Yadro TrailersMilwaukee, Wisconsin + + + + + Burkeen Equipment & Supply Co.Memphis, Tennessee + + + + + Americana Mobile Homes, Inc. + + + + + Alfa Romeo + + + + + Travel Cruiser + + + + + Koster Mfg., Inc. + + + + + Vivian Industrial PlasticsVivian, Louisiana + + + + + West Texas Dollies + + + + + United Rock Picker Co. + + + + + American Economobile Hilif + + + + + Franklin + + + + + Extend-Ell Industries + + + + + McCarthy Trailers + + + + + Vesely Co. + + + + + HODGES CUSTOM HAULERS; BENTON, KY + + + + + Guthrie Trailer Sales, Inc.Great Bend, Kansas + + + + + WHISPERING PINE CAMPER TRAILER + + + + + Massey + + + + + Revella Camping Trailer + + + + + Morris Brothers + + + + + Overland + + + + + Avant + + + + + Wilson + + + + + PiedmontDiv. of Concord Mobile Homes + + + + + Continental World MarineMexico; trailers + + + + + B M C + + + + + Armor Homes of Virginia + + + + + Silver Pigeon + + + + + Flying Dutchman + + + + + Jeep (for model years 1989 throughresent) + + + + + Leisure Vehicles, Inc.Troy, MI + + + + + Mowett Sales Co., Inc. + + + + + New CastleMfd. by Town & Country Mfg. Co. + + + + + Go-Tag-Along + + + + + Bay City Shovels, Inc. + + + + + Cubster + + + + + Pastime Mfg. Co. + + + + + Gilmore-Tatge Mfg. Co., Inc. + + + + + Better Built + + + + + DOLPHIN MOTORHOMES + + + + + Crosley + + + + + John R. Kovar Mfg. Co., Inc. + + + + + Interconsult Mfg. Co. + + + + + Whites/Keene Mfg. + + + + + Evens Trailer Mfg., Inc. + + + + + Go Kart + + + + + J.T. Ind., Ltd.Lenox, Iowa + + + + + Herbst Brothers + + + + + KARAVAN TRAILERS, INC. + + + + + Little Sport Enterprises + + + + + Garlock Equipment Co. + + + + + Country R. V. Mfg., Inc.Elkhart, Indiana + + + + + Solectria + + + + + Mays Industries, Inc.Boaz, Alabama + + + + + Tuff Cat Trailers, Inc.Tekonsha, Michigan + + + + + Mississippi Tank Co., Inc.Hattiesburg, Mississippi + + + + + Brall Motor Home + + + + + Long Mfg. N.C., Inc., Const. & Ind. Div.Tarboro, North Carolina + + + + + Tiara Industries + + + + + Central Trailer Corp. + + + + + Regent Homes Corp. + + + + + World Wide Industries + + + + + BirchwoodMfd. by Conchemco Homes Group + + + + + Lear Siegler, Inc., Hutchinson Div. + + + + + Western Products Div., DouglasDynamics, Inc. + + + + + Weirs Trailer Sales + + + + + Hinson Mfg. Co., Inc. + + + + + KometicSee Moto Kometik + + + + + Vanguard (Canada) + + + + + Dupage Coach Co. + + + + + EK-CHOR MOTORCYCLE COMPANY; SHANGHAI, CHINA + + + + + Hobart Brothers Co.Troy, Ohio + + + + + Smeal + + + + + Deere, JohnDeere & Co. + + + + + House of Harmony, Inc. + + + + + Melmar Motor Home + + + + + Eaglerock Trailers, Inc. + + + + + Free-Way II, (Mfd. by H-MVehicles, Inc.) + + + + + MAHINDRA; TOMBALL,TX;MAKER OF VARIOUS SIZES TRACTORS & OTHER FARM/GARDEN EQUIPMENT + + + + + Schien Body & Equipment Co.Carlinville, Illinois + + + + + Metal Craft ManufacturingGreenville, North Carolina + + + + + Util-I-VanMfd. by Utilimaster Div. HolidayRambler Corp. + + + + + Aly Travel TrailersDiv. Layton Homes Corp. + + + + + Simson + + + + + Bender-Florin + + + + + Vehiculos Automares Mexacano S. A.De C. V. (Mexican manufacturer) + + + + + Almac Industries, Ltd.Ville D'Anjou, Quebec + + + + + International Truck & Engine Corp. + + + + + Chickasha Mobile Homes + + + + + Tyson Skylark Trailer + + + + + Denzin & Rahn Mfg. Co., Inc. + + + + + SANDS WELDING INC; ALBANY,MN + + + + + M & W Mfg. Co. + + + + + Loudo Enterprises, LLC + + + + + Available + + + + + Geer Co. + + + + + Mitsubishi FUSO Truck of America, IncFor vehicles with gross vehicle weight(GVW) of over 7,000 pound + + + + + West Coaster Mailster3 wheels + + + + + Schenkel Brothers Mfg. Co. + + + + + SANTEE INDUSTRIES SYLMAR, CA + + + + + Countryside Industries, Inc. + + + + + Cabana Motor Home + + + + + Liftmaster, Inc. + + + + + New Yorker Homes Corp. + + + + + Peter Pirsch & Sons Co.Kenosha, Wisconsin + + + + + Dalewood Manufacturing Co., Inc.Lauderdale, Mississippi + + + + + H. D. Hudson Manufacturing Co. + + + + + Tankraft Trailer + + + + + Flexible + + + + + Tchaika + + + + + Electric Vehicles of Texas + + + + + Optima Ind., LLC + + + + + BrutanzaSee Brutanza Engineering, Inc. + + + + + Esco Corp. + + + + + Fulton Boat Trailer + + + + + Master Div., Koehring Co. + + + + + Mod Cycles Corp. + + + + + FIRST LINE REFINISHING; CORINTH, NY + + + + + KIA Motors Corporation + + + + + Five-Star ST, LTD Edition. or C2(mfd. by Juili Entp. Co., Ltd.,imported by General Moped Co. Inc) + + + + + Art Roll Mfg. Co., Inc.New name is Trail-R-Craft, Inc. + + + + + Mai Mfg. Co. + + + + + Evergreen Log Trailer + + + + + Mobile Traveler + + + + + Braun Ind., Inc. + + + + + Pfaudler Co. + + + + + Continental Wheel & Trailer + + + + + Hawkeye Camping Trailer + + + + + Glendale Mobile Homes + + + + + Rockport Trailer Mfg. Corp. + + + + + Southeast Mfg. Co., Inc. + + + + + Cable Crane and Excavator Div.FMC Corp. + + + + + Vacationeer Trail trailer + + + + + Glen & Cecil Mobile Home Manufacturing& Sales + + + + + Trail Star Tent Trailer + + + + + Calumet Co., Inc. + + + + + TrailevatorDiv. Magline, Inc. + + + + + Oshkosh Trailer DivisionBradenton, FL; manufactures trailers + + + + + KUTZ FARM EQUIPMENT; PINE GROVE, PA + + + + + LaSalle + + + + + Carma Mfg. Co. + + + + + Wilderness Travel Trailer + + + + + JINDO CORPORATION; SEOUL,SOUTH KOREA + + + + + Lada (imported from USSR) + + + + + Balko, Inc. + + + + + Humbee Surrey + + + + + Le Roi Div.Dresser Ind., Inc., Sidney, Ohio + + + + + Matchless + + + + + Padgett, Inc. + + + + + KRISTI TRAILER INDUSTRIES, INC; CANASTOTA, NY + + + + + Nimrod Tent Trailer + + + + + Continental Mfg. Co., Inc. + + + + + Skyhomes, Inc.Div. Skyline Homes + + + + + McCord Manufacturing Co. + + + + + Deep South Sales Co.Valdosta, Georgia + + + + + Dauphin + + + + + AhoyMfd. by Anchor Homes, Inc. + + + + + Whiteman Mfg. Co. + + + + + Road Motor Home + + + + + Pitman Div., A. B. Chance Co. + + + + + Kaydel, Inc. + + + + + Gilmore Trailer, Inc.Seneca, Pennsylvania + + + + + Divco + + + + + Anderson Mobile Homes Mfg. Co. + + + + + Versatile Power Corp.Grantsburg, Wisconsin + + + + + The Thackery Co., Inc. + + + + + Terra Cruiser Div.Div, of Divco-Wayne Industries + + + + + Easyown Mfg. Co. + + + + + TRAILTECH; GRAVELBOURG,SASKATCHEWAN CANADA + + + + + Continental Cargo + + + + + Hillcrest Homes, Inc.Div. Skyline Homes + + + + + Fleetwing Mobile Homes + + + + + Rolling Thunder + + + + + Totem Total Trailer + + + + + Star TrailMfd. by Stark Bros. Motor Sales + + + + + Trail Hawk + + + + + Road Ranger Camper Trailer + + + + + E. L. Caldwell & Sons, Inc. + + + + + Paccar IncorporatedBellvue, WA + + + + + Bel-Aire Mobile Homes + + + + + Wisconsin Trailer Co., Inc.Richfield, Wisconsin + + + + + Great Divide Coach Mfg. + + + + + Nasan Trailer + + + + + Circle D Trailer + + + + + Prestige Custom TrailersChristopher,I1 + + + + + Olgen Mfg. Co. + + + + + Black Built + + + + + Michalke Mfg. Corp. + + + + + Proper Chopper Motorcycles + + + + + Howse Implement Co., Inc. + + + + + Charlevoix Mobile HomesMfd. by Dickinson Homes, Inc. + + + + + Cycle Kamp, Inc.Anaheim, California + + + + + Ingram Manufacturing Co. + + + + + Aloutte + + + + + Blaw-Knox Construction Equipment Co.Div. of White Consolidated Industries,Inc. Matoon, Illinois + + + + + Brasinca + + + + + Crane & Hoist OperationsSubsidiary of Dresser Industries, Inc. + + + + + EZZ PullMfd. by Glass-Wood Products, Inc. + + + + + C. S. Johnson Co. + + + + + Krause Plow Corp., Inc. + + + + + Dodd Mfg. Co., Inc. + + + + + Baldwin Enterprises + + + + + Gray-Velle Mobile HomesDiv. of Stahan Manufacturing Co. + + + + + United States Mobile Homes + + + + + Mobile Tops, Inc. + + + + + Sullair Corp.Michigan City, Indiana + + + + + Jarco, Inc.Newport Beach, California + + + + + CONSTRUCTION TRAILER SPECIALISTS, INC.; SIKESTON, MO + + + + + All-State Trailer Co. + + + + + Anthony Co. + + + + + Motoc Semi Flatbed Trailer + + + + + MANAC, Inc. + + + + + Buddy Mobile Homes, Inc.Div. Skyline Homes + + + + + Montone Mfg. Co.Hazelton, Pennsylvania + + + + + Campsite Mfg. Co.Seminole, Texas + + + + + Hart Mobile Homes Corp. + + + + + Transvair + + + + + Rucker Performance Motorcycle Co. + + + + + I.B. Perch Co. + + + + + LONGHORN TANK & TRAILER, INC; GRAVETTE, ARKANSAS + + + + + DANZER INDUSTRIES & DANZER/MORRISON; HAGERSTOWN, MD + + + + + DAF + + + + + Gilera + + + + + Artex Fabricators, Ltd. + + + + + Armor Mobile Systems, Inc. + + + + + IRON HORSE TRAILER MANUFACTURING; TEXAS + + + + + Armet Armored Vehicles + + + + + Four Winns + + + + + Watford + + + + + Phill Trailer + + + + + Magnum ManufacturingHarrisburg, OR; recreational vehicles + + + + + Chesapeake Mobile Homes + + + + + Thru-Air Trailers, LLC + + + + + Hill Mfg. Co. + + + + + Westcraft Mobile Homes + + + + + Electric Cycle + + + + + THE ALUMINUM TRAILER COMPANY; NAPPANEE, INDIANA + + + + + Avion Coach Corp. + + + + + Heritage Mobile Homes + + + + + Zwickau + + + + + TUFF/LUGG MANUFACTURING + + + + + Sleep Easy Trailer + + + + + Selburn Flatbed Trailer + + + + + Tyran + + + + + Vaquero Trailer + + + + + Northwest Engineering Co. + + + + + Fiat + + + + + Playboy + + + + + Schwartz Mfg. Co. + + + + + Skoda + + + + + Apacheon Coach Co. + + + + + Cane River Trailer Co., Inc.Natchitoches, Louisiana + + + + + Greencastle Coach Co. + + + + + Matra + + + + + COMPTANK, CORP.; BOTHWELL, ONTARIO, CANADA + + + + + Rochdale + + + + + Franklin Homes, Inc.Russellville, Alabama + + + + + Deutz Tractor + + + + + Garwood + + + + + Shaver Mfg. Co. + + + + + Niagara Trailer Co. + + + + + Coos-Bilt Trailers + + + + + Aspen Camper, Inc. + + + + + Lektracycle + + + + + CARTER BROTHERS + + + + + Arrow + + + + + Glenbrook Homes Of Tennesee + + + + + Massey-Ferguson, Inc. + + + + + Hamlite + + + + + Leisuretime Motor Home + + + + + Van Car Corp. + + + + + BRI-MAR MANUFACTURING; CHAMBERSBURG, PA + + + + + Transfer + + + + + Western Star + + + + + Relco Corp.Mfd. in North Billerica, Massachusetts + + + + + Hole Pumps + + + + + Pullers Pride, Inc., or Murphy's Welding + + + + + Vacation Wagon, Inc. + + + + + TRIPLR R TRAILERS INC. BOONEVILLE,MISSISSIPPI + + + + + Claster Trailer + + + + + Myco Industries + + + + + Capri (imported by Mercury priorto 1979) + + + + + Johnson Mfg. Co., Inc. + + + + + Mays Enterprises, Inc.Albertville, Alabama + + + + + Artie + + + + + Electric Wheel Co. + + + + + Peco, Inc. + + + + + General Amer Aero Coach + + + + + Itom + + + + + Tex Mex Trailers + + + + + Barrett Trailers, Inc.Oklahoma City, Oklahoma--(See Circle BLivestock Trailer) + + + + + Colonnade Mobile HomesMfd. by Fairmont Homes, Inc. + + + + + NORTHERN BAY CO. INC. ; PENOBSCOT, ME + + + + + Maxey Mfg., Inc. + + + + + Gypsy Campers, Inc. + + + + + Eagle (also see make American Eagle) + + + + + Delphi Body Works, Inc. + + + + + Nevadan Mfg. Co. + + + + + Tri-Sport/Steen (formerly Alsport/Steen) + + + + + Veenema & Wiegers, Inc.Mfrs. "V & W" trailers--No. Haledon,New Jersey + + + + + Poirier + + + + + Farenwald Boat Trailer + + + + + Soderstrom Machine ShopCanton, South Dakota + + + + + Facel-Vega + + + + + BOSS HOSS CYCLE, INC. ; DYERSBURG, TN + + + + + Kinetic + + + + + DUTCH PARK HOMES, INC.; GOSHEN, IN + + + + + Laverda + + + + + ABF, INDUSTRIES; NEBRASKA + + + + + Concrete Surfacing Machinery Div.,Stewart Industries, Inc. + + + + + Hed-Way, Inc. + + + + + SFM + + + + + Durant + + + + + Atlas Copco, Inc.Wayne, New Jersey + + + + + Futurama + + + + + Grove + + + + + Manitowc Engineering Co., Inc. + + + + + Riley + + + + + Empire Generator Corp. + + + + + Tahoe Motor Home + + + + + Metoo Travel Trailer + + + + + KIBBI, INC.; ELKHART, INDIANA + + + + + Cycle-SleeperMfd. by Howard Mfg. Co. + + + + + Triumph + + + + + reconstructed trailers + + + + + Walker Mobile Homes + + + + + Lloyd's Trailer Finishing + + + + + Sweetheart Motor Home + + + + + Adspa Mobile HomeMfd. by Ad Space, Inc., Pomona, CA + + + + + Tecnoma, Ltd., (Canada) + + + + + HRI (Heartland Rig) + + + + + Champ Horse Trailer + + + + + Norwin Trailer + + + + + TOP-3 TRAILERS; TEXAS + + + + + Dixie Craft Trailers, Inc.Eupora, Mississippi + + + + + TRAILERS DE MONTERREY, S.A. NUEVO LEON, MEXICO + + + + + PRO LITE TRAILERS; PECULIAR, MISSOURI + + + + + ABI Leisure Inc.Ontario, Canada + + + + + MantaSee Three R Industries, Inc. + + + + + Woodland Park, Inc.Middleberry, Iowa + + + + + Arcos Boat Trailer + + + + + Baja Custom Trailers + + + + + Kools Brothers, Inc. + + + + + Timpte, Inc.Denver, Colorado + + + + + Oshkosh Motor Truck Co. + + + + + Gramm + + + + + Lincraft Industries + + + + + Allied + + + + + Searover TC Camper + + + + + PEAK MANUFACTURING, INC. NORTH BATLEFORD, SK CANADA + + + + + Ozark Trailer & Mobile Homes + + + + + Mountaineer Mfg. Co. + + + + + Chief Ocala Trailer Mfg. + + + + + Trader Horn Trailer Supply + + + + + Western Trailer Coach + + + + + Toyopet + + + + + BLOOMERTRAILER MANUFACTURING, INC.; LAMARQUE, TX + + + + + A.A.B. Co., Inc. + + + + + Swiss Colony Travelers, Inc.Div. Herrli Industries + + + + + SETRA OF NORTH AMERICA + + + + + Kingham + + + + + Steco Trailer Co. + + + + + Tandom Boat Trailer + + + + + Monarc + + + + + Borg Co. + + + + + Kreidler + + + + + COASTAL METAL FAB, INC.; TOPSHAM, ME + + + + + Aladdin Trailer Co. + + + + + General Coach of FloridaDiv. of Divco-Wayne Industries + + + + + Humber + + + + + All Terrain Vehicle (for furtherexplanation--see OperatingManual, Part 1, Section 2.) + + + + + Lacey, W.E. & Sons + + + + + Winger Mfg. Co. + + + + + DMB Trailers + + + + + Ambassador + + + + + Vista Custom TrailerJane, Missouri + + + + + Datsun + + + + + North American Bus Ind. + + + + + Cushman + + + + + Certified Boat Trailer + + + + + Spokane Travel Homes + + + + + Miniscooter + + + + + Go-Lite, Inc. + + + + + S & H Trailer Mfg. Co., Inc.Madill, Oklahoma + + + + + Eagle Custom Coach Mfg. Co. + + + + + Friess Trailer + + + + + Auburn Homes + + + + + Infiniti + + + + + U.S. ARMY VEHICLE; MAKE IS UNKNOWN + + + + + DELKRON TRANSMISSION + + + + + Whippet + + + + + A-1 Trailer + + + + + Mr. Ed. Boat Trailer + + + + + Econo Flo Bulk Service + + + + + Timberline Mfg. Co. + + + + + Nolena Foster Trailer + + + + + Hunt's Trailer Mfg. + + + + + Norton (England) + + + + + BEACON METAL WORKS + + + + + Hughes + + + + + DNEPR/Kiev Motorzykly Zavod + + + + + Noble Cultivators Ltd. + + + + + L-Cart, Inc. + + + + + Trailmobile + + + + + Day's DrydockNorth Webster, IN; trailers. + + + + + EML + + + + + Guerdon Industries + + + + + KISSEL MOTOR CAR COMPANY OR KISSEL INDUSTRIES + + + + + Campbell Coach Co., Inc.Mfrs. horse trailes--Cheney, Kansas + + + + + KASEA MOTORCYCLES + + + + + McKay Mfg. Co., Inc. + + + + + Dodge Woodcraft + + + + + Trail Flight + + + + + Simon Utility Trailer + + + + + Dynastar/Dynastar Motorsports, Inc. + + + + + Consulier + + + + + SPORT HAULER BY SPORT CHASSIS AT FREIGHTRLINER IN TULSA, OK___MAKER OF SPORT HAULER TRUCK & TRAILER + + + + + De Muth Steel Products Co. + + + + + EVERLITE, INC.; LONGVIEW, TX - FLEETRITE & OTHER MODEL OR SERIES + + + + + Miller Electric Mfg. Co.Manufactures arc welders + + + + + Kawasaki (Japan) + + + + + Terra-Marina Mfg. Co. + + + + + Odom Boyd Trailer Mfg. Co.Conroe, Texas + + + + + H & H TRAILER CO. + + + + + Kasey + + + + + Fahrzeugwerke GMBHKarls Kaessbohrer, Germany + + + + + Fields Mfg. Co. + + + + + Little Giant Products, Inc.Peoria, Illinois + + + + + Kustom Kraft + + + + + J.J.J., Inc. + + + + + Landcraft Corp. + + + + + Ranger Trail TrailersMfd. by Wood Mfg. Co., Inc. + + + + + Sylvan Double Snowmobile Trailer + + + + + Sun Valley + + + + + Alvis + + + + + Mud Cat Div., National Car RentalSystem, Inc. + + + + + CURRAHEE TRAILERS + + + + + WAYNE METAL PRODUCTS;MARKLE,INDIANA + + + + + Fuqua Homes, Inc.Div. Fuqua Industries--Arlington, Texas + + + + + Rupp + + + + + LEINARD ALUMINUM BUILDINGS, UTILITY TRAILERS; MT. AIRY, NC + + + + + Easy Trail, IncBoat Trailers - Madison, Alabama + + + + + Walsh Body & Trailer + + + + + Jewel Trailer, Inc. + + + + + KYMCO SCOOTERS & MOTORCYCLES + + + + + Virginia Mobile Homes Industries + + + + + PINE-HILL MANUFACTURING, CO.; GAP, PENNSYLVANIA + + + + + Holt Trailer + + + + + CWC Feather-Lite Mfg. Co.El Reno, Oklahoma + + + + + F. A. Long + + + + + East Dump Trailer + + + + + Dethmers Manufacturing CompanyBoyden, IA + + + + + Divco-Wayne Industries + + + + + Sno-CatMfd. by Tucker-Sno-Cat Corp. + + + + + Unpublished construction equipment mfr.(See Operating Manual, Part 1,Section 2) + + + + + McCook Mfg. Co. + + + + + Gabbianno + + + + + Dargo Mfg. + + + + + FLOE INTERNATIONAL + + + + + CIMC HEAVY INDUSTRIES, LTD.; SHENZHEN, CHINA + + + + + Heckendorn Mfg. Co.Cedar Point, Kansas + + + + + E.Z.A. Mfg. Co. + + + + + Doo Snowmobile Trailer + + + + + Auto-Mate + + + + + Palmer Machine Works, Inc.Armory, Mississippi + + + + + Superior Motor Home + + + + + Standard Steel + + + + + Alexandria Mobile HomeMfd. by Marietta Homes + + + + + Towmotor Corp.Subsidiary Caterpillar Tractor Co. + + + + + Agri-Supply Co. + + + + + London Motors + + + + + Neval Motorcycles Ltd. + + + + + Broward Trailer + + + + + Guazzoni + + + + + Ventoura Corp. + + + + + EZ Dumper + + + + + Hilton Mobile Homes, Inc. + + + + + Lowe IndustriesLebanon, Missouri + + + + + Blaze Industries + + + + + Willmar ManufacturingWillmar, Minnesota + + + + + McCoy Miller + + + + + Classic (model of Motron) + + + + + Mobile Garage Mfg. Co. + + + + + Three-Way Campers Mfg. + + + + + N & Ha Mfg. Co. + + + + + Bear Industrial Trailers + + + + + Beeat Truck Mount Camper + + + + + Pagsta + + + + + Gilson Brothers Company + + + + + Baltz Industries, Inc.Pocahontas, Arizona + + + + + Star Electric Cars + + + + + Amphicat + + + + + Cleveland T-Trike Mfg., Inc. + + + + + Dunham Mfg. Co., Inc.Minden, Louisiana + + + + + Palamino Camping Trailer + + + + + Universal Trailers, Inc. + + + + + Homemade Trailer code (See OperatingManual, Part 1, Section 2.)page 1-33) + + + + + Mayfair Mobile HomeDiv. of DeRose Ind., Inc.,Indianapolis, Indiana + + + + + Sperry New HollandDiv. Sperry Corp., New Holland,Pennsylvania + + + + + GENERAL SHELTERS; CENTER, TX CARGO TRAILERS ETC. + + + + + Kitty Cat (Kit Kat) + + + + + Flying L Trailer, Inc.Falls City, Nebraska + + + + + + + + + + + + + + + + (DKW) F102, DKW + + + + + (ALFA) Milano, Alfa Romeo; (MAZD) Millenia, Mazda + + + + + (DETO) Pantera, DeTomaso + + + + + (FORD) Granada, Ford (see English, French, German, and Italian Ford); (PONT) Grand Prix, Pontiac; (STU) Grand Turismo, Studebaker + + + + + L200 + + + + + (BMW) 545i, BMW + + + + + (INFI) I30, Infiniti + + + + + (VOLV) 765 Series, Volvo + + + + + (OLDS) Delmont 88, Oldsmobile + + + + + (OPEL) Kapitan, Opel (imported by Buick) + + + + + (BMW) X3, BMW + + + + + (CHEV) C10, Chevrolet + + + + + (FORD) Ranch Wagon, Ford (see English, French, German, and Italian Ford); (METE) Ranch Wagon, Meteor (Canadian Mercury) + + + + + (AERO) Hot Air Balloon + + + + + (ACUR) SLX (sport utility), Acura + + + + + (RENA) Gordini, Renault + + + + + (PACK) Request, Packard + + + + + (VAUX) Viva, Vauxhall + + + + + (SAA) 95, Saab + + + + + (MERK) XR4Ti, Merkur + + + + + (MAZD) Cosmo, Mazda + + + + + (HYUN) Elantra, Hyundai + + + + + (AMER) Eagle, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (ROV) Land Rover, Rover + + + + + (ASTO) DB7 (Coupe), Volante (DB7), Aston Martin + + + + + (SIM) GLS, Simca + + + + + (HYUN) Excel, Hyundai; (FORD) Excursion, Ford (see English, French, German, and Italian Ford) + + + + + Construction Equipment + + + + + (FORD) Customline, Ford (see English, French, German, and Italian Ford); (TOYT) Celica, Toyota + + + + + (SUZI) X-90 (sport utility), Suzuki + + + + + (AUHE) Saxon, Austin-Healy + + + + + (VOLK) 411/412, Volkswagen + + + + + (GMC) Sierra, General Motors Corp. + + + + + (BMW) Bavaria, BMW + + + + + (HOND) Prelude, Honda; (EGIL) Premier, Eagle; (LINC) Premiere, Lincoln-Continental; (MITS) Precis, Mitsubishi; (STU) President, Studebaker; (TOYT) Pre Runner, Toyota + + + + + (BUIC) Reatta, Buick + + + + + (OPEL) Rallye, Opel (imported by Buick) + + + + + (FIAT) Rimto, Fiat + + + + + RDX + + + + + (VOLK) Variant, Volkswagen + + + + + (BUIC) Apollo, Buick + + + + + (FORD) Fairlane, Ford (see English, French, German, and Italian Ford) + + + + + (MERC) LN7, Mercury + + + + + (FORD) Club Wagon E350, Ford (see English, French, German, and Italian Ford) + + + + + (MAZD) B2600, Mazda + + + + + (AUDI) Quattro, Audi + + + + + (AMER) Gremlin, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (STRN) Ion, Saturn + + + + + (CHEV) Monte Carlo, Chevrolet + + + + + (VOLV) S80, Volvo + + + + + (GMC) Jimmy, General Motors Corp. + + + + + (HYUN) Atos, Hyundai + + + + + (DATS) 710, Datsun + + + + + (AMER) Encore, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (BUIC) Enclave, Buick + + + + + (DATS) 510, Datsun + + + + + (BMW) 328i, BMW + + + + + (PASS) Optima, Passport; (KIA) Optima, Kia; (CHEV) Optra, Chevrolet + + + + + (BMW) Z8, BMW + + + + + (CHEV) Blazer, Chevrolet + + + + + (TOYT) SR5, Toyota + + + + + (SAA) 900, Saab + + + + + (ISU) Trooper, Isuzu + + + + + (ROL) Phantom, Rolls-Royce + + + + + (VOLK) R32, Volkswagen + + + + + (RENA) 18i, Renault + + + + + (ISU) Impulse, Isuzu; (CHEV) Impala, Chevrolet; (HILL) IMP, Hillman; (ROOT) Imp, Rootes; (SUBA) Impreza, Outback Impreza, Subaru; (SUNB) IMP, Sunbeam + + + + + (SAA) 9000, Saab + + + + + (SUBA) Baja, Subaru + + + + + (MAZD) Mazda 3, Mazda + + + + + (AUDI) S8, Audi + + + + + (ROL) Flying Spur, Rolls-Royce + + + + + (STRN) SC, Saturn + + + + + (ASUN) Sunfire, Asuna + + + + + (VOLK) Fastback, Volkswagen + + + + + (FORD) Econoline E-450, Ford + + + + + (MNNI) Cooper/Cooper-S (rights bought by BMW), Mini + + + + + (AMER) Javelin, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (AUST) 1100, Austin; (DATS) 110, Datsun; (FIAT) 1100 - D or R, Fiat; (MORR) 1100, Morris; (NSU) 110 Type, Nsu Prinz; (SUBA) 1100 Series, Subaru + + + + + Fusion + + + + + (MITS) Sigma, Mitsubishi; (PLYM) Signet (Valiant), Plymouth + + + + + (MERZ) 190 Series, Mercedes-Benz; (OPEL) 1900, Opel (imported by Buick); (VOLV) P1900, Volvo + + + + + (CITR) ID-19, Citroen + + + + + (FERR) 348, Ferrari + + + + + (CHEV) Express (full-size van), Chevrolet; (FORD) EXP, Ford (see English, French, German, and Italian Ford); (MITS) Expo, Mitsubishi; (RENA) Export, Renault + + + + + (DATS) 280ZX, Datsun + + + + + (KIA) Clarus, Kia Motors Corp. + + + + + (MERC) S-33, Mercury; (METE) S-33, Meteor (Canadian Mercury) + + + + + (EDSE) Ranger, Edsel; (FORD) Ranchero, Ford (see English, French, German, and Italian Ford) + + + + + (PEUG) 505 Series, Peugeot + + + + + (AUDI) RS6, Audi + + + + + (AUDI) S4, Audi + + + + + (PONT) G4, Pontiac + + + + + (AUHE) Sprite, Austin-Healy; (CHEV) Sprint, Chevrolet; (MG) Sprite, MG; (ROL) Silver Spur, Rolls-Royce; (MERZ) Sprinter, Mercedes-Benz ; (DODG) Sprinter, Dodge + + + + + (LOTU) Plus Two, Lotus + + + + + (HOND) FCX (Fuel Cell Vehicle), Honda + + + + + (ALFA) Giulia Sprint, Alfa Romeo + + + + + (ASUN) GT, Asuna; (ENGF) GT, English Ford (British); (OPEL) GT, Opel (imported by Buick); (TRIU) GT Series, Triumph; (FORD) GT, Ford + + + + + (DODG) 440 Series, Dodge + + + + + (MAZD) 616, Mazda + + + + + (DODG) Ram 1500 (pickup), Dodge; (RENA) R-15, Renault + + + + + (CHRY) E Class, Chrysler; (LOTU) Eclat, Lotus; (MITS) Eclipse, Eclipse Spyder GS-T, Mitsubishi + + + + + (LEXS) GS430, Lexus + + + + + (IMPE) Crown, Imperial (for vehicle years 1955-1983, use VMA/IMPE; for vehicle years prior to 1955 and vehicle years 1990-1993, see make Chrysler); (TOYT) Crown, Toyota + + + + + (JEEP) CJ-7, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) CJ-7, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) CJ-7, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (BMW) 325, BMW; (BMW) 325Xi, BMW + + + + + (DODG) 330 Series, Dodge; (BMW) 330I, BMW; (LEXS) ES330, Lexus; (BMW) 330Xi, BMW + + + + + (ACUR) Legend, Acura; (DAEW) Leganza, Daewoo; (SUBA) Legacy, Outback Legacy, Subaru + + + + + (HUMB) Hawk, Humber; (STU) Hawk Series, Studebaker + + + + + (HUDS) Italia, Hudson + + + + + A3 (Sportback) + + + + + (DODG) Swinger (Dart), Dodge + + + + + Replica + + + + + (BUIC) Skylark, Buick; (PONT) Sky Chief, Pontiac; (STRN) Sky, Saturn + + + + + (DODG) Power Ram, Dodge + + + + + (METE) Niagara, Meteor (Canadian Mercury) + + + + + (AUST) A99 & 110, Austin + + + + + (JAGU) Sovereign, Jaguar + + + + + (LNDR) Range Rover, Land Rover + + + + + (MERZ) SL600, Mercedes-Benz + + + + + (RENA) R-12, Renault + + + + + (AUDI) 4000, Audi; (DODG) 400 Series, Dodge; (LEXS) LS400, Lexus; (MASE) 4000 (series), Maserati; (MERZ) 400 Series, Mercedes-Benz + + + + + (BMW) L7, BMW + + + + + (ROL) Phantom, Rolls-Royce; (VOLK) Phaeton, Volkswagen + + + + + (GMC) Yukon, General Motors Corp. + + + + + (OLDS) Alero, Oldsmobile + + + + + (CADI) DeVille, Cadillac; (PANE) DeVille, Panther Westwinds, Ltd. + + + + + (ROOT) Alpine, Rootes; (SUNB) Alpine, Sunbeam + + + + + (MERZ) CLK55, Mercedes-Benz + + + + + (LAMO) Murcielago, Lamborghini ; (NISS) Murano, Nissan + + + + + (MERZ) SL500, Mercedes-Benz + + + + + (ENGF) Thames, English Ford (British) + + + + + (GEO) Storm, GEO + + + + + (CHRY) New Yorker, Chrysler + + + + + SLS (Badged Separately Beginning 7/2003) + + + + + (BMW) 524 Series, BMW + + + + + (ACUR) EL, Acura (Import from Canada) + + + + + (GLAS) Goggomobile, Glas + + + + + (CHEV) Style Master, Chevrolet + + + + + (HUMB) Snipe, Humber; (HILL) Snipe, Hillman + + + + + (ROL) Silver Wraith, Rolls-Royce + + + + + (MERC) Country Cruiser, Mercury; (OLDS) Custom Cruiser, Oldsmobile + + + + + (ISU) Oasis (minivan), Isuzu + + + + + (MERZ) 380 Series, Mercedes-Benz + + + + + (BMW) M5, BMW + + + + + (VOLK) Dasher, Volkswagen + + + + + (HOND) CRV, Honda; (OLDS) Caravan, Oldsmobile; (RENA) Caravelle, Renault + + + + + (ACUR) RSX, Acura + + + + + (FERR) Quattrovalvolve, Ferrari; (MASE) Quattroporte, Maserati + + + + + (DODG) Challenger, Dodge + + + + + (SOLE) Force, Solectria; (SUBA) Forrester, Subaru; (SUZI) Forsa, Suzuki + + + + + (CHRY) Newport, Chrysler + + + + + (FERR) 575 MM, Ferrari + + + + + 9-2X + + + + + EL, Acura (Import from Canada) + + + + + (TRIU) TR6, Triumph + + + + + (AUST) Mini, Austin; (BREM) Mini-Mark, Bremen Sport Equipment, Inc. (Bremen, IN); (HILL) Minx, Hillman; (MITS) Minica, Mitsubishi; (MORR) Minor, Morris; (SUNB) Minx, Sunbeam + + + + + (VACR) Vector, Vector Aeromotive Corp. + + + + + (LEXS) SC430, Lexus; (MERZ) S430V, Mercedes-Benz + + + + + (CREL) Merlin, Corbin Motors (electric vehicles) + + + + + (MICC) MC1, Micro Concept Cars + + + + + (CHRY) Saratoga, Chrysler + + + + + (SHEB) Cobra GT500, Shelby American; (MERZ) G500, Mercedes-Benz + + + + + (BUIC) Skyhawk, Buick + + + + + (DODG) Avenger, Dodge + + + + + (FORD) Elite, Ford (see English, French, German, and Italian Ford); (LOTU) Elite, Lotus + + + + + (DESO) Firesweep, DeSoto + + + + + (CHRY) Pacifica (Sport Wagon), Chrysler + + + + + (HUDS) Wasp, Hudson + + + + + (ACUR) CL (sport coupe), Acura + + + + + LR3 + + + + + (TOYT) Land Cruiser, Toyota; (BUIC) Lacrosse, Buick + + + + + (HUMM) Hummer 2, HUMMER + + + + + (GM) EV1, General Motors + + + + + (OLDS) 88, Oldsmobile + + + + + (AUST) Cambridge, Austin + + + + + (VOLK) Vanagon, Volkswagen + + + + + (OLDS) Jetfire, Oldsmobile + + + + + (HYUN) Marcia, Hyundai; (JAGU) Mark V Series, Jaguar; (AMER) Marlin, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (AUST) Marina, Austin; (FERR) F-550 Maranello, Ferrari; (MERC) Marquis, Mercury; (MG) Marina, MG + + + + + (LEXS) RX300, Lexus; (MAZD) RX3 (rotary engine), Mazda + + + + + (PORS) 930, Porsche + + + + + (BMW) 530i, BMW + + + + + (AUDI) 100GL, Audi + + + + + (LNCI) Dedra, Lancia + + + + + (MASE) 228, Maserati + + + + + (SCIO) XA, Scion + + + + + (BREM) Sebring, Bremen Sport Equipment, Inc. (Bremen, IN); (CHRY) Sebring, Chrysler; (MASE) Sebring, Maserati + + + + + (DATS) 310, Datsun + + + + + (MERC) Sable, Mercury + + + + + (BUIC) Grand Sports (G.S.), Buick + + + + + (ROOT) Arrow, Rootes; (SUNB) Arrow, Sunbeam + + + + + (MERC) Montego, Mercury; (METE) Montego, Meteor (Canadian Mercury) + + + + + (BUIC) Estate Wagon, Buick; (CHEV) Estate Wagon, Chevrolet; (RENA) Estafette, Renault; (SUZI) Esteem, Suzuki + + + + + (JAGU) XJ6, Jaguar + + + + + (GMC) Canyon, General Motors Corp. ; (PORS) Cayenne, Porsche + + + + + Raider + + + + + HHR + + + + + (ENGF) 105 E Series, English Ford (British) + + + + + (AUDI) 100LS, Audi + + + + + (MERZ) 230 Series, Mercedes-Benz + + + + + (DAYO) Migi, Daytona + + + + + (MERC) Mountaineer (sport utility), Mercury + + + + + (SUBA) 1400 Series, Subaru; (VOLV) 140 Series, Volvo + + + + + (LAMO) Diablo, Lamborghini; (MITS) Diamante, Mitsubishi + + + + + (DODG) Fleet Special, Dodge; (SOLE) Flash, Solectria + + + + + (TOYT) Highlander (beginning vehicle year 2001), Toyota + + + + + (HYUN) Accent, Hyundai; (HOND) Accord, Honda; (PLYM) Acclaim, Plymouth + + + + + (OLDS) Bravada, Oldsmobile + + + + + (PORS) 911, Porsche + + + + + (SUZI) Swift, Suzuki + + + + + (DATS) 610, Datsun + + + + + (HUDS) Jet, Hudson; (AERO) Jet Propelled; (MUNT) Jet, Muntz; (VOLK) Jetta, Volkswagen + + + + + (VOLV) 960, Volvo + + + + + (JAGU) XJR, Jaguar + + + + + (VOLK) Pointer, Volkswagon + + + + + (NISS) Terrano, Nissan; (OLDS) Trofeo, Oldsmobile + + + + + (RENA) R-8, Renault + + + + + (PLYM) Duster, Plymouth + + + + + (MASE) Shamal, Maserati + + + + + (KIA) Sedona, Kia + + + + + (CHEV) Brookwood, Chevrolet + + + + + (CADI) 62 Series, Cadillac + + + + + (CADI) Allante, Cadillac; (AUDI) Allroad, Audi + + + + + (ACUR) MDX, Acura + + + + + (HOND) Insight, Honda + + + + + (VOLV) V40, Volvo + + + + + 9-7X + + + + + Commander + + + + + (DODG) Viper, Dodge; (PLYM) Vip, Plymouth + + + + + (MASE) Ghibli, Maserati + + + + + (PONT) GT0, Pontiac + + + + + (ACUR) TSX, Acura + + + + + (MERK) Scorpio, Merkur; (STU) Scotsman, Studebaker + + + + + (BMW) 2500 Series, BMW; (LEXS) ES250, Lexus; (MDNA) GT250, Modena; (MERZ) 250 Series, Mercedes-Benz; (TRIU) 250, Triumph; (LEXS) IS250, Lexus + + + + + RS4 + + + + + (BENT) Corniche, Bentley; (CHRY) Cordoba, Chrysler; (DODG) Coronet, Dodge; (EDSE) Corsair, Edsel; (ENGF) Corsair, English Ford (British); (MITS) Cordia, Mitsubishi; (ROL) Corniche, Rolls-Royce; (TOYT) Corona, Toyota; (VOLK) Corrado, Volkswagen + + + + + (RENA) R-4, Renault + + + + + (SUZI) Grand Vitara, Suzuki + + + + + (MAZD) Tribute, Mazda; (SUBA) B9 Tribeca, Subaru + + + + + (LINC) Mark V, Lincoln-Continental; (MORG) 4/4 Mark 5, Morgan + + + + + (FORD) Model T, Ford (see English, French, German, and Italian Ford); (MERC) Montclair, Mercury + + + + + (PORS) Karman, Porsche; (VOLK) Karmann Ghia, Volkswagen + + + + + (LNCI) Fulvia, Lancia + + + + + (LINC) Navigator, Lincoln-Continental; (MAZD) Navajo, Mazda + + + + + (CHEV) U100 (Joint Venture w/Daewoo); (DAEW) U100 (Joint Venture w/Chevrolet) + + + + + (ALFA) Zagato, Alfa Romeo; (LNCI) Zagato, Lancia + + + + + (CHEV) Suburban, Chevrolet; (GMC) Suburban, General Motors Corp.; (PLYM) Suburban, Plymouth + + + + + (PLYM) Plaza, Plymouth + + + + + (STU) Champion, Studebaker + + + + + (DATS) F-10, Datsun; (FORD) F100, Ford (see English, French, German, and Italian Ford) + + + + + (PLYM) Valiant, Plymouth + + + + + (CHRY) Town & Country Minivan, Chrysler + + + + + (MERZ) Smart City Vehicle, Mercedes-Benz + + + + + (BMW) 735 Series, BMW + + + + + (IMPE) Custom, Imperial (for vehicle years 1955-1983, use VMA/IMPE; for vehicle years prior to 1955 and vehicle years 1990-1993, see make Chrysler); (CHEC) Custom, Checker; (DESO) Custom, DeSoto; (FORD) Custom, Ford (see English, French, German, and Italian Ford); (LINC) Custom, Lincoln-Continental; (MERC) Custom, Mercury; (OLDS) Custom, Oldsmobile; (PONT) Custom, Pontiac; (RAMB) Custom, Rambler (mfd. prior to 1966; 1966 and later Ramblers - see make American Motors) + + + + + (LINC) Mark VI, Lincoln-Continental + + + + + (DODG) Shadow, Dodge + + + + + (MERZ) ML500, Mercedes-Benz + + + + + (MESS) KR201, Messerschmitt + + + + + (NISS) XE, Nissan + + + + + (ALFA) 2600 Sprint, Alfa Romeo + + + + + (FORD) Futura, Ford (see English, French, German, and Italian Ford) + + + + + (FORD) KA, Ford (see English, French, German, and Italian Ford) + + + + + (MAZD) MPV, Mazda + + + + + (RENA) Luxe, Renault + + + + + (CITR) DS-19, Citroen + + + + + (DODG) Nitro, Dodge + + + + + (SKOD) Fabia, Skoda + + + + + (PEUG) 504 Series, Peugeot + + + + + (FORD) Victoria, Ford (see English, French, German, and Italian Ford); (VAUX) Victor, Vauxhall + + + + + (CHRY) LHS, Chrysler + + + + + (ATV) Wheels only; (SNOW) Wheels only, Snowmobiles; (SPEC) Motorized Wheelchairs + + + + + (DODG) Mirada, Dodge; (MITS) Mirage, Mitsubishi + + + + + Cayman + + + + + (BMW) L6, BMW + + + + + (GMC) Rally, General Motors Corp.; (SAT) Relay, Saturn + + + + + (LINC) Versailles, Lincoln-Continental + + + + + (MERC) Turnpike Cruiser, Mercury; (PLYM) Turismo, Plymouth + + + + + (MERC) Topaz, Mercury + + + + + (NISS) Titan, Nissan + + + + + (BUIC) GS400, Buick + + + + + (VOLV) 760, Volvo; (BMW) 760 LI, BMW ; (BMW) 760i, BMW + + + + + (PONT) G5, Pontiac + + + + + (DETO) Mangusta, DeTomaso + + + + + (BREM) Creighton, Bremen Sport Equipment, Inc. (Bremen, IN); (FORD) Crestline, Ford (see English, French, German, and Italian Ford); (TOYT) Cressida, Toyota; (VAUX) Cresta, Vauxhall + + + + + (TVR) Vixen, TVR + + + + + NSX + + + + + (MASE) Mexico, Maserati + + + + + (BMW) 840Ci, BMW + + + + + (NISS) Pathfinder (Armada), Nissan + + + + + (NASH) Lafayette, Nash + + + + + (SUZI) XL-7 or XL-7 Grand Vitara, Suzuki + + + + + (AUDI) 80, Audi + + + + + (DAYO) Moya, Daytona + + + + + (ENGF) Zephyr, English Ford (British); (LINC) Zephyr, Lincoln-Continental; (MERC) Zephyr, Mercury + + + + + (MASE) 430, Maserati + + + + + (HUDS) Super, Hudson; (BUIC) Super, Buick; (FORD) Super, Ford (see English, French, German, and Italian Ford); (HILL) Super Minx, Hillman; (LOTU) Super 7, Lotus; (OLDS) Super 88, Oldsmobile; (PONT) Super Chief, Pontiac; (PORS) Super, Porsche; (RAMB) Super, Rambler (mfd. prior to 1966; 1966 and later Ramblers - see make American Motors); (TOYT) Supra, Toyota + + + + + (MERZ) C320, Mercedes-Benz + + + + + (BUIC) Allure, Buick + + + + + (MERZ) E320, Mercedes-Benz + + + + + (GMC) Savanna (full-size van), General Motors Corp.; (PLYM) Savoy, Plymouth + + + + + (BMW) 635 Series, BMW + + + + + (VOLV) 122 Series, Volvo + + + + + (JAGU) XJ12, Jaguar + + + + + (DODG) St. Regis, Dodge; (FIAT) Strada, Fiat; (PONI) Strato Chief, Pontiac (Canadian) (Also see make Pontiac); (PONT) Streamliner, Pontiac + + + + + (TOYT) Sienna (van), Toyota + + + + + (DODG) Daytona, Dodge; (FERR) Daytona, Ferrari; (STU) Daytona, Studebaker + + + + + (MASE) Bora, Maserati + + + + + (CONU) GCP, Consulier + + + + + (DODG) Ram Charger, Dodge + + + + + (FORD) F250 Supercab (pickup), Ford (see English, French, German, and Italian Ford) + + + + + (RAMB) Classic, Rambler (mfd. prior to 1966; 1966 and later Ramblers - see make American Motors); (CHEV) Classic, Chevrolet + + + + + (BUIC) Regal, Buick; (OLDS) Regency (Ninety-eight Series), Oldsmobile + + + + + (STRN) LW-Wagon, Saturn + + + + + (PACK) Predictor, Packard + + + + + (FORD) Econoline E350, Ford (see English, French, German, and Italian Ford) + + + + + (MASE) 3500 (series), Maserati; (ROV) 3500, Rover; (NISS) 350Z, Nissan ; (MERZ) E350 OR SLK350, Mercedes Benz; (MERZ) S350, Mercedes - Benz; (ISU) i350, Isuzu; (LEXS) IS350, Lexus + + + + + (PONT) Chieftain, Pontiac + + + + + (MERZ) C220, Mercedes-Benz + + + + + (MASE) Khamsin, Maserati + + + + + (BUIC) Electra (Park Avenue), Park Avenue (Electra), Buick; (BZEL) Electra-King, B & Z Electric Car Co.; (HOND) Element, Honda + + + + + (PORS) 968, Porsche + + + + + (MERZ) 220 Series, Mercedes-Benz + + + + + (CADI) XLR, Cadillac + + + + + (ATV) Tracks only; (MERC) Tracer, Mercury; (SNOW) Tracks only, Snowmobiles + + + + + (FORD) Galaxie, Ford (see English, French, German, and Italian Ford); (MITS) Galant, Mitsubishi; (LAMO) Gallardo, Lamborghini + + + + + (VOLK) Beetle (Super Beetle or Bug), Volkswagen + + + + + (OLDS) 37350, Oldsmobile + + + + + (MAZD) CX7, Mazda + + + + + (MERC) Monarch, Mercury + + + + + (SPYK) C8 Laviolette, Spyker Motorcars; (SPYK) C8 Spyder, Spyker Motorcars + + + + + (SIM) Aronde, Simca; (SUZI) Aerio, Suzuki + + + + + (SANG) CM600S, Sangyong + + + + + (RENA) R-16, Renault + + + + + (TOYT) T-150, Toyota + + + + + (SUZI) Sidekick, Suzuki + + + + + (VOLK) The Thing, Volkswagen + + + + + (MG) MGB, MG + + + + + (DAIH) Rocky, Daihatsu + + + + + (CHRY) Crossfire, Chrysler + + + + + (FORD) Econoline E150, Ford (see English, French, German, and Italian Ford) + + + + + (SUBA) Loyale, Subaru + + + + + Trailers + + + + + (BMW) 740, BMW; (VOLV) 740 Series, Volvo + + + + + (LINC) Mark III, Lincoln-Continental; (VANG) Mark III, Vanguard (Canada) + + + + + (DODG) Caravan, Dodge; (CHRY) Caravan, Chrysler + + + + + (FERR) 308, Ferrari + + + + + (SCIO) XB, Scion + + + + + (SANG) Jeep, Sangyong + + + + + (NISS) Altima, Nissan + + + + + (BUIC) Roadmaster, Buick; (CLEN) Roadster, Clenet Coach Works; (DECO) Roadster, DeCourville + + + + + (BESA) Baci, Besasie Automobile Co., Inc. + + + + + (OLDS) Firenza, Oldsmobile + + + + + (FORD) Maverick, Ford (see English, French, German, and Italian Ford) + + + + + (ALFA) Montreal, Alfa Romeo; (CHEV) Monza, Chevrolet; (DODG) Monaco, Dodge; (FERR) Mondial, Ferrari; (MERC) Monterey, Mercury; (METE) Montcalm, Meteor (Canadian Mercury); (MITS) Montero/Montero Sport, Mitsubishi + + + + + (JAGU) 3.8 Litre, Jaguar + + + + + (TOYT) Yaris, Toyota + + + + + (CHEV) Camaro, Chevrolet; (PLYM) Cambridge, Plymouth; (ROL) Camargue, Rolls-Royce; (TOYT) Camry, Toyota + + + + + (MAZD) MX6, Mazda + + + + + (CLND) 244X, Cross Lander + + + + + (CHRY) Concorde, Chrysler + + + + + (MERZ) C36, Mercedes-Benz + + + + + (VOLV) V50 (Sport Wagon), Volvo + + + + + (FORD) Taurus, Ford (see English, French, German, and Italian Ford) + + + + + (MERZ) SLR McLaren, Mercedes-Benz + + + + + (CHEV) Equinox, Chevrolet + + + + + (SAA) 93 & 93B, Saab + + + + + (HOND) Odyssey (minivan), Honda + + + + + (CHEV) Cavalier, Chevrolet; (PACK) Cavalier, Packard; (TOYT) Cavalier, Toyota + + + + + (BMW) Z3, BMW + + + + + (RENA) R-5, Renault + + + + + (FORD) Festiva, Ford (see English, French, German, and Italian Ford) + + + + + (CADI) Escalade, Cadillac; (ENGF) Escort, English Ford (British); (FORD) Escort, Ford (see English, French, German, and Italian Ford) + + + + + (DODG) Meadowbrook, Dodge + + + + + (FERR) Enzo, Ferrari + + + + + (DETO) Deauville, DeTomaso + + + + + (VOLK) Golf, Volkswagen + + + + + (ENCR) M151, Encore + + + + + (MERC) Bobcat, Mercury + + + + + (BMW) 533i, BMW + + + + + (USEL) Lectric Leopard, U.S. Electricar Corp. + + + + + (KIA) Opirus, KIA + + + + + (PEUG) 304, Peugeot + + + + + (HYUN) Sonata, Hyundai; (GMC) Sonoma, General Motors Corp.; (SAA) Sonnet, Saab + + + + + (MERZ) CLK500, Mercedes-Benz + + + + + (AUDI) A6, Audi + + + + + (HOND) S2000, Honda + + + + + (CREL) Sparrow, Corbin Motors (electric vehicles) + + + + + (CADI) Catera, Cadillac; (PONT) Catalina, Pontiac + + + + + (DETO) Longchamp, DeTomaso + + + + + (FORD) Falcon, Ford (see English, French, German, and Italian Ford) + + + + + (HOND) Passport, Honda; (TOYT) Paseo, Toyota; (VOLK) Passat, Volkswagen + + + + + (MASE) GTI Series, Maserati; (VOLK) GTI, Volkswagen + + + + + (VOLK) Quantum, Volkswagen + + + + + (FORD) XL, Ford (see English, French, German, and Italian Ford) + + + + + (ACUR) Vigor, Acura + + + + + (FIAT) Brava, Fiat + + + + + (PORS) 914, Porsche + + + + + (SPEC) Dune Buggies + + + + + (MG) Mark II, MG + + + + + Milan + + + + + (VOLV) XC90, Volvo + + + + + (SUBA) Leone GL Coupe, Subaru + + + + + (TOYT) Tundra, Toyota + + + + + (STRN) Vue, Saturn + + + + + (JAGU) Mark Ten Salon, Jaguar + + + + + (BMW) 320i, BMW; (MERZ) 320 Series, Mercedes-Benz + + + + + (PORS) Targa, Porsche + + + + + (FORD) Club Wagon E250, Ford (see English, French, German, and Italian Ford) + + + + + (SUZI) Forenza (S, EX, LX), Suzuki + + + + + (FORD) Explorer Sport Trac, Ford (see English, French, German, and Italian Ford) + + + + + (TOYT) Previa, Toyota + + + + + (DESO) Adventurer, DeSoto + + + + + (FORD) Mustang, Ford (see English, French, German, and Italian Ford) + + + + + (CHRY) Fifth Avenue, Chrysler + + + + + (OLDS) 98, Oldsmobile + + + + + (GZL) Rage (sport utility), Gazelle + + + + + (BMW) M3, BMW + + + + + (FORD) Torino (Fairlane), Ford (see English, French, German, and Italian Ford); (OLDS) Toronado, Oldsmobile; (PONT) Torrent, Pontiac + + + + + (CHEV) Corvette, Chevrolet + + + + + (BMW) 750iL, BMW + + + + + (LEXS) GX470, Lexus + + + + + (CHRY) Voyager, Chrysler; (MERC) Voyager, Mercury; (PLYM) Voyager, Plymouth + + + + + (TOYT) RAV4 (sport utility), Toyota + + + + + (FIAT) 850 Fastback, Fiat + + + + + (ALFA) Duetto, Alfa Romeo + + + + + (ASTO) DB-6, Aston Martin + + + + + (DODG) Ram 3500 (van), Dodge + + + + + (VOLV) GLE, Volvo + + + + + (CHEV) Townsman, Chevrolet; (CHRY) Town & Country, Chrysler; (LINC) Town Car, Lincoln-Continental + + + + + (OLDS) Aurora, Oldsmobile; (STRN) Aura, XE, XR, Saturn + + + + + (BERO) Palinuro, Bertone + + + + + (JAGU) V12, Jaguar + + + + + (ISU) Stylus, Isuzu; (JAGU) S-Type, Jaguar; (CHEV) Style Line, Chevrolet + + + + + (MASE) Biturbo, Maserati + + + + + (MERZ) E430, Mercedes-Benz + + + + + (AUST) A55, Austin + + + + + (LAMO) LM129, Lamborghini + + + + + (DAIH) Charade, Daihatsu; (DODG) Charger (and Shelby Charger), Dodge; (GAZ) Chaika, GAZ; (MITS) Chariot, Mitsubishi; (PLYM) Champ (imported), Plymouth; (SIN) Chamois, Singer; (STU) Challenger, Studebaker + + + + + (VOLV) S70, Volvo + + + + + (CADI) Touring Sedan, Cadillac + + + + + (STLG) 827, Sterling + + + + + (SHEB) CSX, Shelby American; (ACUR) CSX, Acura + + + + + (ALFA) 164, Alfa Romeo; (VOLV) 164 Series, Volvo + + + + + (HYUN) Entourage, Hyundai + + + + + (TVR) Tuscan, TVR + + + + + (BMW) 325i, BMW + + + + + (VOLV) GLT, Volvo + + + + + (OPEL) Olympia, Opel (imported by Buick) + + + + + (FERR) F355, Ferrari; (FORD) F350, Ford (see English, French, German, and Italian Ford) + + + + + (MERZ) ML55, Mercedes-Benz + + + + + (SUZI) Vitara, Suzuki; (TRIU) Vitesse, Triumph + + + + + (AUDI) 100, Audi; (AUHE) 100 Series, Austin-Healy; (DODG) A 100 Compact, Dodge; (ENGF) 100 E Series, English Ford (British); (NSU) 1000, Nsu Prinz; (SIM) 1000 & 1000GL, Simca; (SUBA) 100 Series, Subaru + + + + + Grand Marquis + + + + + (BERO) X19, Bertone; (FIAT) X19, Fiat + + + + + (LINC) Mark VII, Lincoln-Continental + + + + + (ISU) Ascender, Isuzu + + + + + (TOYT) 4-Runner, Highlander (4Runner), Toyota + + + + + (CHEV) Celebrity, Chevrolet + + + + + (CHRY) PT Cabrio, Chrysler + + + + + (BUIC) Park Avenue, Buick; (ROL) Park Ward, Rolls-Royce + + + + + RL + + + + + (MORR) Oxford, Morris + + + + + (AUST) Westminster, Austin + + + + + (SNOW) Skis and Wheels, Snowmobiles + + + + + (FERR) Testarossa, Ferrari + + + + + (AMER) Rambler Rogue, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (FORD) Nevada, Ford (see English, French, German, and Italian Ford) + + + + + (JEEP) Grand Cherokee, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) Grand Cherokee, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) Grand Cherokee, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (FIAT) Uno, Fiat + + + + + (HYUN) Steilar, Hyundai; (DODG) Stealth, Dodge + + + + + (ISU) VehiCross, Isuzu + + + + + (BMW) 535 Series, BMW + + + + + (DODG) Polara, Dodge; (VOLK) Polo, Volkswagen + + + + + (BMW) 645, BMW + + + + + (BMW) 750, BMW; (FIAT) 750, Fiat; (RENA) 750, Renault; (BMW) 750i, BMW; (BMW) 750L, BMW + + + + + (DATS) 260Z, Datsun; (MERZ) 260 Series, Mercedes-Benz; (VOLV) 260 Series, Volvo + + + + + (DODG) Magnum, Dodge; (MG) Magnette, MG + + + + + (NISS) Pulsar, Nissan + + + + + (AUDI) 850, Audi; (AUST) 850, Austin; (BMW) 850i, BMW; (MORR) 850 Series, Morris; (VOLV) 850 Series, Volvo + + + + + (CHEV) Lumina, Chevrolet + + + + + (FERR) Tipo, Ferrari + + + + + (DODG) Aries, Dodge + + + + + FJ Cruiser + + + + + (MITS) 3000 GT, Spyder 3000 GT, Mitsubishi + + + + + (HUDS) Pacemaker, Hudson; (AMER) Pacer, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (EDSE) Pacer, Edsel + + + + + (CITR) SM, Citroen + + + + + (MORG) Plus 4 Series, Morgan + + + + + (ALFA) 2600 Spider, Alfa Romeo + + + + + (DODG) Dynasty, Dodge; (OLDS) Dynamic 88, Oldsmobile; (CHRY) Dynasty, Chrysler + + + + + (CHEV) Matiz, Chevrolet; (PONT) Matiz, Pontiac + + + + + (MERZ) C43, Mercedes-Benz + + + + + (CADI) SRX, Cadillac + + + + + (BUIC) Centurion, Buick; (FORD) Contour, Ford (see English, French, German, and Italian Ford) + + + + + (PONT) Vibe (sport wagon), Pontiac + + + + + (JAGU) X-Type, Jaguar + + + + + (AUDI) 5000, Audi; (MASE) 5000 (series), Maserati; (FORD) Five Hundred (500), Ford; (MERZ) CLS500, Mercedes Benz; (MERZ) S500, Mercedes - Benz + + + + + RX400 or RX400H (Hybrid) + + + + + (CHEV) Tracker (beginning vehicle year 1998), Chevrolet; (GEO) Tracker, GEO + + + + + (VOLV) S60, Volvo + + + + + (ASTO) Lagonda, Aston Martin + + + + + (CADI) 75 Series, Cadillac; (ROV) Rover 75, Rover + + + + + (SUNB) Rapier, Sunbeam + + + + + (JAGU) XJC, Jaguar + + + + + (FERR) F40, Ferrari + + + + + (CHEV) Tahoe, Chevrolet + + + + + (BMW) 600, BMW; (DODG) 600, Dodge; (FIAT) 600D, Fiat; (MERZ) 600 Series, S600, Mercedes-Benz; (PONT) 6000, Pontiac + + + + + (MERZ) E420, Mercedes-Benz + + + + + (AERO) Sailplane (Glider); (CHRY) Salon, Chrysler + + + + + (BORG) Biscayne, Borgward; (CHEV) Biscayne, Chevrolet + + + + + (PLYM) Road Runner, Plymouth + + + + + (FORD) Think Neighbor (Elec. Veh. Model Year 2002), Ford + + + + + (MAZD) B2500, Mazda + + + + + (DESO) Powermaster, DeSoto + + + + + (VOLV) PV544, Volvo + + + + + (CHRY) Windsor, Chrysler; (FORD) Windstar, Ford (see English, French, German, and Italian Ford) + + + + + (CHEV) Astro Van, Chevrolet; (OPEL) Astra, Opel (imported by Buick); (PONT) Astre, Pontiac + + + + + (CHRY) TC, Chrysler; (SCIO) TC, Scion + + + + + (BUIC) Terraza, Buick + + + + + (BUIC) Limited, Buick; (CHRY) Limousine, Chrysler; (PANE) Lima, Panther Westwinds, Ltd. + + + + + (PEUG) 203, Peugeot + + + + + (OPEL) Kadette, Opel (imported by Buick) + + + + + (VAUX) Velox, Vauxhall + + + + + (CHEV) El Camino, Chevrolet + + + + + (INFI) J30, Infiniti + + + + + (PLYM) Scamp (Valiant), Plymouth + + + + + (FIAT) Punto, Fiat + + + + + (ASUN) SE, Asuna; (NISS) SE-V6, Nissan + + + + + (MASE) 425, Maserati + + + + + (MERZ) E55, Mercedes-Benz; (FORD) Econoline E-550, Ford + + + + + (BMW) 525ia, BMW; (BMW) 525i, BMW + + + + + (TOYT) MR2, Toyota + + + + + (SUBA) SVX, Subaru + + + + + (JEEP) Cherokee, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) Cherokee, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) Cherokee, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (HUDS) Commodore, Hudson; (JEEP) Comanche, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) Comanche, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) Comanche, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (CHRY) Commander, Chrysler; (COMV) Comuta-Car, Commuter Vehicles, Inc.; (DODG) Compact Sportsman, Dodge; (FREF) Comete, French Ford; (MERC) Comet, Mercury; (STU) Commander, Studebaker + + + + + (ENGF) Cortina, English Ford (British) + + + + + (DODG) Diplomat, Dodge + + + + + (MERC) Nautica Villager, Villager Minivan, Mercury + + + + + (CITR) DS-21 & D21, Citroen + + + + + (HUDS) Hornet, Hudson; (AMER) Hornet, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (PLYM) Horizon (also TC3), Plymouth + + + + + (ASTO) Saloon (Virage), Virage (Saloon), Aston Martin + + + + + (DATS) Honey Bee, Datsun + + + + + (MASE) Merak, Maserati + + + + + (FORD) Econoline E250, Ford (see English, French, German, and Italian Ford) + + + + + (LINC) LS8, Lincoln-Continental + + + + + (INTL) Scout, International Harvester + + + + + (CHEV) S10, Chevrolet + + + + + (RENA) R-10, Renault + + + + + (BUIC) Special, Buick; (CHEV) Spectrum, Chevrolet; (FORD) Special, Ford (see English, French, German, and Italian Ford) + + + + + (TRIU) 1250, Triumph + + + + + (DAEW) Korando, Daewoo + + + + + (CHEV) Metro (beginning vehicle year 1998), Chevrolet; (GEO) Metro, GEO; (NASH) Metropolitan, Nash + + + + + (AUDI) Cabriolet, Audi; (BERO) Cabrio, Bertone; (GMC) Cabellero, General Motors Corp.; (PORS) Cabriolet, Porsche; (VOLK) Cabriolet, Volkswagen + + + + + (FERR) 512, Ferrari + + + + + (MERZ) 219 Series, Mercedes-Benz + + + + + (PLYM) Fury (also Grand Fury), Plymouth + + + + + (HYUN) Avatar, Hyundai; (AUDI) Avant, Audi; (CHEV) Avalanche, Chevrolet; (NSU) Auto Nova, Nsu Prinz; (STU) Avanti, Studebaker; (TOYT) Avalon, Toyota; (LINC) Aviator, Lincoln + + + + + (CHEV) 210 Series, Chevrolet; (DATS) 210 (or B-210), B-210 (or 210), Datsun + + + + + (FORD) Ranger (pickup), Ford (see English, French, German, and Italian Ford) + + + + + (PONT) SSE, Pontiac + + + + + (MORR) Mini Series, Morris; (TOYT) Mark II, Toyota + + + + + (ISU) Axiom, Isuzu + + + + + (HUDS) Rambler, Hudson; (NASH) Rambler, Nash + + + + + (BMW) Isetta, BMW + + + + + (BENT) Brooklands, Bentley; (CADI) Brougham, Cadillac; (FORD) Bronco/Bronco II, Ford (see English, French, German, and Italian Ford); (MERC) Brougham, Mercury + + + + + (FORD) Escape, Ford (see English, French, German, and Italian Ford) + + + + + (VAUX) Firenza, Vauxhall + + + + + (LOTU) Elan, Lotus + + + + + (ROL) Silver Dawn, Rolls-Royce + + + + + (JENS) Healy, Jensen + + + + + (PLYM) Satellite, Plymouth + + + + + (MAZD) RX8, Mazda + + + + + (RENA) Le Car, Renault + + + + + (MAZD) B2000, Mazda + + + + + (VOLV) V70, Volvo + + + + + (SOLE) Citi Van, Solectria + + + + + (BUIC) GS455, Buick; (LEXS) GS450h, Lexus + + + + + (EXCL) SSK, Excalibur + + + + + 612 Scaglietti + + + + + (TRIU) TR-4 & TR-4A, Triumph + + + + + STS (Badged Separately Beginning 7/2003) + + + + + (BMW) 745i, BMW; (VOLV) 745 Series, Volvo + + + + + (FORD) LTD II, Ford (see English, French, German, and Italian Ford) + + + + + (FREF) Vedette, French Ford; (SIM) Vedette, Simca + + + + + (MERZ) 450 Series, Mercedes-Benz + + + + + Vanquish, Vanquish S + + + + + (CHEV) Corsa (Corvair), Corvair, Chevrolet + + + + + (BMW) 2.8, BMW + + + + + (AUDI) 90, Audi + + + + + (HOND) EVPLUS, Honda + + + + + (PLYM) Sapporo (imported), Plymouth + + + + + (HOND) Pilot, Honda + + + + + (ROL) Silver Cloud, Rolls-Royce + + + + + (MONA) Lucerne, Monarch; (BUIC) Lucerne, Buick + + + + + (BUIC) Somerset, Buick + + + + + (INFI) FX45, Infiniti + + + + + (ALFA) Giulia, Alfa Romeo + + + + + (PONT) Trans Sport/Transport, Pontiac; (VOLK) Transporter, Volkswagen + + + + + (KAIS) Darrin, Kaiser; (DODG) Dart, Dodge + + + + + (BUGA) EB110, Bugatti + + + + + (AMER) Alliance, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (JEEP) Liberty, Jeep + + + + + (PONT) Aztek, Pontiac + + + + + (TOYT) Solara, Toyota; (PONT) Solstice, Pontiac + + + + + (JEEP) Compass, Jeep + + + + + (MAZD) B2300, Mazda + + + + + (CHRY) Executive Sedan, Chrysler; (PONT) Executive, Pontiac + + + + + (MERC) S-22, Mercury + + + + + (OLDS) Delta 88, LSS (Delta 88), Royale, Oldsmobile + + + + + (STU) Lark Series, Studebaker + + + + + (ISU) Rodeo, Isuzu; (DLHY) Roadster, Delahaye; (LAMO) Roadster, Lamborghini; (PANZ) Roadster, Panoz Auto Development Co.; (BRSH) Roadster, Brush (antique vehicles); (SHEB) Roadster, Shelby + + + + + (SAA) 99, Saab + + + + + (AVTI) Series A, Avanti + + + + + (PANE) Killeta, Panther Westwinds, Ltd. + + + + + (STRN) SL, Saturn + + + + + (HILL) Husky, Hillman + + + + + (JAGU) 340, Jaguar + + + + + (LAMO) Jalpa, Lamborghini + + + + + (MERC) Breezeway, Mercury + + + + + (CHEV) Sportvan, Chevrolet; (ENCR) Sport, Encore; (KIA) Sportage (sport utility), Kia Motors Corp.; (SUBA) Outback Sport (station wagon), Subaru + + + + + (FORD) Thunderbird, Ford (see English, French, German, and Italian Ford); (MODE) 1955 Thunderbird, Model A and Model T Motor Car Reproduction Corp. + + + + + (VANG) Ensign, Vanguard (Canada) + + + + + (ISU) I-Mark, Isuzu + + + + + (CHEV) Silverado, Chevrolet + + + + + (MERC) Colony Park, Mercury + + + + + (FORD) ZX2, Ford + + + + + (MG) MGB/GT, MG + + + + + (SUBA) Fe, Subaru + + + + + (PORS) 924, Porsche + + + + + (CITR) AX, Citroen + + + + + (BMW) 328is, BMW; (FERR) 328, Ferrari + + + + + (BMW) 633csi, BMW + + + + + (DATS) 240Z, Datsun + + + + + (JEEP) J-10, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) J-10, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) J-10, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (TRIU) TR-3 & TR-3A, Triumph + + + + + (INFI) Q45, Infiniti + + + + + (CHRY) Lido, Chrysler + + + + + (FORD) Club Wagon E150, Ford (see English, French, German, and Italian Ford) + + + + + (MAZD) B3000, Mazda + + + + + (MERC) Caliente, Mercury; (PACK) Clipper, Packard + + + + + (CHRY) Grand Voyager, Chrysler + + + + + (SAA) GT 750, Saab + + + + + (BMW) 733 Series, BMW + + + + + (SUZI) Verona, Suzuki + + + + + (CHEC) Aerobus, Checker; (FORD) Aerostar, Ford (see English, French, German, and Italian Ford) + + + + + Elise + + + + + (MAZD) B4000, Mazda + + + + + (RENA) Fuego, Renault + + + + + (LINC) Blackwood, Lincoln + + + + + (MASE) Mistrell, Maserati; (MAZD) Miser (piston engine), Mazda + + + + + (STRN) SW, Saturn + + + + + (MAZD) GLC ("Great Little Car"), Mazda + + + + + (INTL) Travelall, International Harvester + + + + + (CHEV) Chevette, Chevrolet + + + + + Mariner + + + + + (OLDS) Jetstar, Oldsmobile + + + + + (GMC) Syclone, General Motors Corp. + + + + + (CHEC) Superba, Checker + + + + + (FORD) Mainline, Ford (see English, French, German, and Italian Ford) + + + + + (BENT) Azure, Bentley + + + + + (CHRY) Imperial (for vehicle years prior to 1955 and for vehicle years 1990-1993; for 1955-1983, see make Imperial), Chrysler + + + + + (BENT) Mulsanne, Bentley; (ROL) Mulsanne, Rolls-Royce + + + + + (PONT) Bonneville, Pontiac + + + + + (JAGU) XKR, Jaguar + + + + + (ROV) Rover 25, Rover + + + + + (BORG) Hansa, Borgward + + + + + (CADI) Seville, Cadillac + + + + + (INFI) QX4, Infiniti + + + + + (PORS) 928, Porsche + + + + + (HUDS) Deluxe, Hudson; (KAIS) Deluxe, Kaiser; (CHEV) Del Ray, Chevrolet; (DESO) Deluxe, DeSoto; (DODG) Deluxe, Dodge; (FORD) Deluxe, Ford (see English, French, German, and Italian Ford); (HILL) Deluxe, Hillman; (MORR) Deluxe, Morris; (OLDS) Deluxe, Oldsmobile; (PONT) Deluxe, Pontiac; (RAMB) Deluxe, Rambler (mfd. prior to 1966; 1966 and later Ramblers - see make American Motors); (SUNB) Deluxe, Sunbeam; (VANG) Deluxe, Vanguard (Canada) + + + + + (BMW) 1600, BMW; (HILL) 1600 Series, Hillman; (MG) 1600, MG; (PORS) 1600, Porsche; (SUBA) 1600 Series, Subaru + + + + + (MERZ) ML430, Mercedes-Benz + + + + + (GMC) Sprint (VMA/GMSP for reference only), General Motors Corp. + + + + + (AMER) Matador, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (BUIC) Riviera, Buick + + + + + (CHEV) Caprice, Chevrolet; (ENGF) Capri, English Ford (British); (MERC) Capri (1979 and later), Mercury + + + + + (DODG) Phoenix, Dodge; (PONT) Phoenix, Pontiac + + + + + (MERZ) CLK430, Mercedes-Benz + + + + + (CHRY) Royal, Chrysler; (DODG) Royal, Dodge + + + + + (AUST) A40, Austin + + + + + (PANE) J72, Panther Westwinds, Ltd. + + + + + (NISS) X-Terra, Nissan + + + + + (DESO) Firedom, DeSoto + + + + + (AMER) Concord, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (BENT) Continental Convertible, Bentley; (CADI) Concours, Cadillac; (CHRY) Conquest (vehicle year 1987 and later), Chrysler; (DODG) Conquest (vehicle year 1986 only), Dodge; (ENGF) Consul, English Ford (British); (LINC) Continental, Lincoln-Continental + + + + + (OLDS) Holiday, Oldsmobile + + + + + (MERZ) C280, Mercedes-Benz + + + + + (VOLK) Squareback, Volkswagen + + + + + (ASUN) Sunrunner, Asuna; (VOLK) Sunroof, Volkswagen + + + + + (ALFA) GT Veloce, Alfa Romeo + + + + + (KAIS) Carolina, Kaiser; (OPEL) Caravan, Opel (imported by Buick); (PACK) Caribbean, Packard; (PORS) Carrera, Porsche; (TOYT) Carina, Toyota + + + + + (FIAT) Ulysse, Fiat + + + + + (PORS) Boxter 986, Porsche + + + + + (CHEV) Parkwood, Chevrolet; (MERC) Parklane, Mercury; (PONI) Parisienne, Pontiac (Canadian) (Also see make Pontiac); (PONT) Parisienne, Pontiac + + + + + (CHEC) Marathon, Checker + + + + + (FORD) Expedition, Ford (see English, French, German, and Italian Ford) + + + + + (ACUR) TL, Acura + + + + + (MAZD) RX7 (rotary engine), Mazda + + + + + (MG) MGC, MG + + + + + (DODG) Neon, Dodge; (PLYM) Neon, Plymouth + + + + + (HYUN) Santa Fe, Hyundai + + + + + (JAGU) 4.2 Litre, Jaguar + + + + + (JAGU) XK-E Series, Jaguar + + + + + (FORD) Tempo, Ford (see English, French, German, and Italian Ford); (PONI) Tempest, Pontiac (Canadian) (Also see make Pontiac) + + + + + (BREM) Laufer, Bremen Sport Equipment, Inc. (Bremen, IN); (PONI) Laurentian, Pontiac (Canadian) (Also see make Pontiac) + + + + + (LINC) Mark VIII, Lincoln-Continental + + + + + (CHEV) Vega, Chevrolet + + + + + (VOLV) 940, Volvo + + + + + (DESO) Firelite, DeSoto + + + + + (CONU) GTP, Consulier + + + + + (DODG) Ram 1500 (van), Dodge + + + + + Farm and Garden Equipment + + + + + (AUDI) S6, Audi + + + + + (SUBA) RX, Subaru + + + + + (MERZ) SLK230, Mercedes-Benz + + + + + (VOLV) C70, Volvo + + + + + (JAGU) XJS, Jaguar + + + + + (LADA) Niva, Lada (imported from USSR) + + + + + (LEXS) LX450 (luxury sport utility), Lexus + + + + + Ridgeline + + + + + (AUST) 1800, Austin; (BMW) 1800, BMW; (MERZ) 180 Series, Mercedes-Benz; (VOLV) 1800 Series, Volvo + + + + + (SUZI) SX4, Suzuki + + + + + (TRIU) Sport "6", Triumph + + + + + (FORD) Pinto, Ford (see English, French, German, and Italian Ford) + + + + + Motorcycles + + + + + (MERC) Cyclone, Mercury + + + + + (FORD) Model A, Ford (see English, French, German, and Italian Ford) + + + + + (OLDS) Achieva, Oldsmobile + + + + + (MESS) KR200, Messerschmitt + + + + + (SUBA) GLF, Subaru + + + + + (BMW) TI, BMW + + + + + (JEEP) Wagoneer, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) Wagoneer, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) Wagoneer, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (STU) Wagonaire, Studebaker + + + + + (VOLV) V90, Volvo + + + + + (ITAF) Anglia, Italian Ford; (ENGF) Anglia, English Ford (British) + + + + + (TOYT) Hi-Lux, Toyota + + + + + (NISS) Versa, Nissan + + + + + (MERZ) C240, Mercedes-Benz + + + + + Wave + + + + + (BUIC) GS350, Buick; (SHEB) Cobra GT350, Shelby American; (INFI) G35, Infiniti + + + + + (LEXS) GS300, Lexus + + + + + (ALFA) Berlina, Alfa Romeo; (BORG) Beretta, Borgward; (CHEV) Beretta, Chevrolet; (LNCI) Berlina, Lancia; (SIM) Bertone, Simca + + + + + (LEXS) IS300, Lexus + + + + + (BENT) Eight, Bentley + + + + + (HYUN) Scoupe, Hyundai; (HILL) Sceptre, Hillman; (MONA) Sceptre, Monarch + + + + + (AUDI) 80 LS (Fox), Audi; (VOLK) Fox, Volkswagen + + + + + (MITS) Tredia, Mitsubishi + + + + + Micra + + + + + (LINC) Mark IV, Lincoln-Continental; (ROV) Mark IV, Rover + + + + + (ALFA) Alfa GT6, Alfa Romeo + + + + + (KAIS) Manhattan, Kaiser; (OPEL) Manta, Opel (imported by Buick); (QVAL) Mangusta, Qvale Automotive Group + + + + + (SIN) Vogue, Singer + + + + + (BUIC) Le Sabre, Buick + + + + + (CADI) CTS, Cadillac + + + + + (FIAT) 131 Series, Fiat + + + + + (AUDI) Super 90, Audi; (VOLV) S90, Volvo + + + + + (MG) Princess 4-R, MG + + + + + Tucson + + + + + Mark LT + + + + + (AERO) Ultralights + + + + + (NISS) ALTRA-EV, Nissan + + + + + (PONI) Grand Parisienne, Pontiac (Canadian) (Also see make Pontiac) + + + + + (ACAD) Canso Series, Acadian (GM of Canada) + + + + + (KIA) Amanti, Kia Motors Corp. + + + + + (VOLK) Touareg, Volkswagen + + + + + (LEXS) SC300, Lexus + + + + + (ISU) Hombre (pickup), Isuzu + + + + + (SAA) 96, Saab + + + + + (CHEV) Trail Blazer, Chevrolet + + + + + (BMW) 630csi, BMW + + + + + (OPEL) Diplomat, Opel (imported by Buick) + + + + + (FERR) 456GT, Ferrari + + + + + (EXCL) SS Phaeton, Excalibur; (ROL) Silver Spirit, Rolls-Royce + + + + + (DODG) Seneca, Dodge; (NISS) Sentra, Nissan + + + + + (BUIC) Wildcat, Buick + + + + + Mazda 5 (Five) + + + + + (FORD) Ranch, Ford (see English, French, German, and Italian Ford) + + + + + (JEEP) CJ-6, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) CJ-6, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) CJ-6, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (EXCL) Cobra, Excalibur; (FORD) Cobra (also see make Shelby American), Ford (see English, French, German, and Italian Ford); (VOLV) Combi, Volvo + + + + + (SPEC) Go-Carts + + + + + (MG) 1100, MG + + + + + (ZCZY) Yugo (series), Zastavia (ZCZ-Yugoslavia) + + + + + (LNCI) Flaminia, Lancia + + + + + (LAMO) Silhouette, Lamborghini + + + + + (BMW) 318ti, BMW + + + + + (FORD) LTD, Ford (see English, French, German, and Italian Ford) + + + + + (BMW) M6, BMW + + + + + (METE) Lemoyne, Meteor (Canadian Mercury); (PONT) LeMans, Pontiac + + + + + (BMW) 850Ci, BMW + + + + + (FORD) F550, Ford (see English, French, German, and Italian Ford) + + + + + (AUDI) A2, Audi + + + + + (DODG) Aspen, Dodge; (FORD) Aspire, Ford (see English, French, German, and Italian Ford); (CHRY) Aspen, Chrysler + + + + + (CADI) 61 Series, Cadillac + + + + + (AMER) Rebel, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (LNDR) Discovery, Land Rover + + + + + (ENGF) Squire, English Ford (British); (FORD) Squire (Falcon or Fairlane), Ford (see English, French, German, and Italian Ford) + + + + + (ACAD) Invader Series, Acadian (GM of Canada); (BUIC) Invicta, Buick + + + + + (VOLK) Touran, Volkswagen + + + + + (VOLK) Scirocco, Volkswagen + + + + + (FORD) Crown Victoria, Ford + + + + + (BUIC) Century, Buick + + + + + (EGIL) Vision, Eagle; (OLDS) Vista Cruiser, Oldsmobile + + + + + (PONT) Tempest GT0, Pontiac + + + + + (CHEV) Chevelle, Concours (Chevelle only), Deluxe (Chevelle), Greenbrier (Chevelle), Nomad (Chevelle), Chevrolet + + + + + (FIAT) 124 Series, Fiat + + + + + (GMC) Typhoon, General Motors Corp.; (RAMB) Typhoon, Rambler (mfd. prior to 1966; 1966 and later Ramblers - see make American Motors) + + + + + (DATS) 1200, Datsun; (FIAT) 1200, Fiat; (SIM) 120, Simca; (TRIU) 1200, Triumph; (VOLK) 1200, Volkswagen + + + + + (CHEV) Nova (Chevy II & Concours), Chevrolet + + + + + (PLYM) GTX, Plymouth + + + + + (FERR) 206, Ferrari + + + + + (LNCI) Beta Series, Lancia + + + + + (DATS) 810, Datsun + + + + + (ENVY) Epic, Envoy; (CHEV) Epica, LS & LT, Chevrolet + + + + + (KAIS) Dragon, Kaiser + + + + + (BMW) 200, BMW + + + + + (ENGF) Lotus, English Ford (British) + + + + + (PONT) Sunfire, Pontiac + + + + + (SUBA) XT6, Subaru + + + + + (EGIL) Talon, Eagle; (TLCC) Talbo, TLC Carrossiers; (TLCC) Talbo Lago, TLC Carrossiers + + + + + (EXCL) JAC 427 Cobra, Excalibur + + + + + (AUDI) V-8, Audi + + + + + (FORD) Econoline 100, Ford (see English, French, German, and Italian Ford); (TOYT) Echo, Toyota + + + + + (CADI) Cimarron, Cadillac + + + + + Gran Sport + + + + + (ALFA) Giulia Spider, Alfa Romeo + + + + + (BMW) 3.0 Si, BMW + + + + + (NISS) Axxess, Nissan + + + + + (ROL) Silver Shadow, Rolls-Royce + + + + + (AUST) Cooper "S", Austin + + + + + (VACR) M12 (sport coupe), Vector Aeromotive Corp. + + + + + (INFI) I35, Infinit + + + + + (LEXS) RX330, Lexus + + + + + (FORD) F450, Ford (see English, French, German, and Italian Ford) + + + + + (SPEC) Golf Carts + + + + + (AMER) Sportabout, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (BUIC) Sportswagon, Buick; (VOLV) Sport, Volvo + + + + + (NISS) Frontier, Nissan + + + + + (CITR) AM16, Citroen + + + + + (PONT) G6, Pontiac + + + + + (FIAT) 1500, Fiat; (PORS) 1500, Porsche; (VOLK) 1500, Volkswagen + + + + + (TRIU) TR8, Triumph + + + + + (DODG) Colt (imported), Dodge; (PLYM) Colt (Canadian), Plymouth + + + + + (DODG) Omni (also 024), Dodge + + + + + (PLYM) Reliant, Plymouth + + + + + DTS (Replaced DeVille Model Name) + + + + + (JAGU) XJ, Jaguar + + + + + (AUDI) 2000 TT-Coupe, 2000 TT-Roadster, Audi + + + + + (AUDI) A8, Audi + + + + + Spyder + + + + + (BMW) 550i, BMW + + + + + (STLG) 825, Sterling; (GLBL) E825, Global Electric Motorcars + + + + + (EGIL) Summit, Eagle + + + + + C55, CLS55 + + + + + (MERZ) CLK320, Mercedes-Benz + + + + + (PONT) T-1000, Pontiac; (TOYT) T-100, Toyota + + + + + (FORD) F650 Super Crew, Ford + + + + + CL65 + + + + + (OPEL) Rekord, Opel (imported by Buick) + + + + + (CHRY) Cirrus, Chrysler + + + + + (DAEW) Nubira, Daewoo + + + + + (DKW) Vemag, DKW + + + + + (TOYT) Tercel, Toyota + + + + + (PLYM) Cricket (imported), Plymouth + + + + + (DODG) 880 Series, Dodge + + + + + (PONT) Pursuit, Pontiac + + + + + (LNDR) Freelander, Land Rover; (FORD) Freestar, Ford + + + + + (LAMO) Miura SV, Lamborghini + + + + + (LEXS) GS400, Lexus + + + + + (BORG) Bel Air, Borgward; (CHEV) Bel Air, Chevrolet; (PLYM) Belvedere, Plymouth + + + + + (BMW) 520, BMW + + + + + (MERC) Commuter, Mercury + + + + + (ROV) 3 Litre, Rover + + + + + (CADI) 60 Series, Cadillac + + + + + (GMC) Denali, General Motors Corp. + + + + + (JEEP) CJ-8, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) CJ-8, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) CJ-8, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (PORS) 1300, Porsche; (SUBA) 1300 Series, Subaru; (TRIU) 1300, Triumph; (VOLK) 1300, Volkswagen + + + + + (FORD) Focus, Ford (see English, French, German, and Italian Ford) + + + + + (LEXS) LS430, Lexus + + + + + (SKOD) Octavia, Skoda + + + + + (KIA) Spectra, Kia Motors Corp. + + + + + (AMER) Rambler Classic, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (VAUX) Epic, Vauxhall + + + + + (JAGU) XK Series, Jaguar + + + + + L300 + + + + + (CHEV) Malibu Maxx + + + + + (LEXS) SC400, Lexus; (VOLV) S40, Volvo + + + + + (FORD) F-150XLT (has third door on passenger side), Ford (see English, French, German, and Italian Ford) + + + + + (DKW) Audi, DKW + + + + + (MG) MGC/GT, MG + + + + + (MERC) Mystique, Mercury + + + + + (BMW) 740i, BMW + + + + + (DODG) Durango, Dodge + + + + + (DODG) Pioneer, Dodge + + + + + (PEUG) 405, Peugeot + + + + + (INFI) M30, Infiniti + + + + + (CHEV) C/K 2500, Chevrolet + + + + + (RENA) R-17, Renault + + + + + (CITR) 2CV, Citroen + + + + + (CHEV) Chevy II, Chevrolet + + + + + Reno + + + + + (AMER) AMX, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (MERZ) CL600, Mercedes-Benz + + + + + (CHRY) Le Baron (for vehicle year 1978 or later), Chrysler + + + + + (FORD) Country Squire, Ford (see English, French, German, and Italian Ford); (PLYM) Conquest (vehicle years 1984-1986), Plymouth + + + + + (LAMO) Espada, Lamborghini; (LOTU) Esprit, Lotus; (PANZ) Esperante, Panoz + + + + + (DATS) 200SX, Datsun + + + + + (ENGF) Perfect, English Ford (British) + + + + + (PEUG) 403, Peugeot + + + + + (SUBA) DL, Subaru; (VOLV) DL, Volvo + + + + + (MITS) Mighty Max, Mitsubishi; (TOYT) Matrix (sport wagon), Toyota + + + + + (OLDS) Omega, Oldsmobile + + + + + (GMC) Envoy, General Motors Corp.; (VAUX) Envoy, Vauxhall + + + + + (MERC) Marauder, Mercury + + + + + (BENT) Turbo R, Bentley + + + + + (MERZ) 240 Series, Mercedes-Benz; (NISS) 240SX, Nissan; (VOLV) 240 Series, Volvo + + + + + Trucks (including heavy-duty trucks, buses, motorized homes, etc.) + + + + + (MAZD) 626, Mazda + + + + + (ALFA) GTV6 2.5, Alfa Romeo + + + + + SL65 + + + + + (RENA) Dauphine, Renault + + + + + (HOND) Civic (and CRX), Del Sol, Honda + + + + + (SUBA) GL, Subaru; (VOLV) GL, Volvo + + + + + (ASTO) DB-5, Aston Martin + + + + + (MAZD) 618, Mazda + + + + + (FORD) Explorer, Ford (see English, French, German, and Italian Ford) + + + + + (VOLK) Rabbit, Volkswagen + + + + + (MERZ) ML350, Mercedes-Benz; (INFI) M35, M35 Sport, M35 X, Infiniti + + + + + (MAZD) 808 Series (piston engine), Mazda + + + + + (MERZ) C230, Mercedes-Benz + + + + + (PONT) 2+2, Pontiac + + + + + (HYUN) Tiburon, Hyundai + + + + + (MERZ) Gelaendewagen (G-Wagen), Mercedes-Benz + + + + + (DODG) Stratus, Dodge; (FORD) Starliner, Ford (see English, French, German, and Italian Ford); (LINC) Standard, Lincoln-Continental; (MITS) Starion, Mitsubishi; (NASH) Statesman, Nash; (NISS) Stanza, Nissan; (OLDS) Starfire, Oldsmobile; (PONT) Star Chief, Pontiac; (PORS) Standard, Porsche; (SUBA) Standard, Subaru; (TOYT) Starlet, Toyota; (TRIU) Stag, Triumph + + + + + (IMPE) Le Baron (for vehicle year thru 1975), Imperial (for vehicle years 1955-1983, use VMA/IMPE; for vehicle years prior to 1955 and vehicle years 1990-1993, see make Chrysler) + + + + + (MERZ) G55, Mercedes-Benz + + + + + (PLYM) Cranbrook, Plymouth + + + + + (PEUG) 604, Peugeot + + + + + (ALFA) Spider Series, Alfa Romeo; (AMER) Spirit, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (DODG) Spirit, Dodge; (FIAT) Spider Series, Fiat; (NSU) Spider (Wankel), Nsu Prinz; (PINI) Spidereuropa, Pinifarina; (TRIU) Spitfire, Triumph + + + + + Armada (Formerly Pathfinder Armada) + + + + + (VOLV) 245 Series, Volvo + + + + + (KIA) Avella, Kia Motors Corp.; (TOYT) Avensis, Toyota + + + + + (HYUN) XG, Hyundai + + + + + (MORG) Plus 8 Series, Morgan + + + + + (DATS) LiL Hustler, Datsun + + + + + (PLYM) Trail Duster, Plymouth + + + + + (MITS) Endeavor, Mitsubishi + + + + + (TOYT) Corolla, Toyota + + + + + (ALFA) Giulietta, Alfa Romeo + + + + + (JENS) Interceptor, Jensen; (ACUR) Integra, Acura; (DODG) Intrepid, Dodge; (OLDS) Intrigue, Oldsmobile; (CHRY) Intrepid, Chrysler + + + + + (AERO) Blimp + + + + + (LOTU) Europa, Lotus; (VOLK) Eurovan, Volkswagen + + + + + (OPEL) Luxus, Opel (imported by Buick); (VANG) Luxury, Vanguard (Canada) + + + + + (MG) Midget, MG + + + + + (ATV) Tracks and Wheels; (SNOW) Tracks and Wheels, Snowmobiles + + + + + (AERO) Propeller Driven; (FORD) Probe, Ford (see English, French, German, and Italian Ford); (MAZD) Familia, Protege, Mazda + + + + + (BMW) X5, BMW + + + + + (MERZ) SLK320 Coupe/Roadster, Mercedes-Benz + + + + + (VOLK) 113, Volkswagen + + + + + (CHEV) Kingswood, Chevrolet + + + + + (MORR) Traveller, Morris + + + + + (PEUG) 404, Peugeot + + + + + (CHRY) Laser, Chrysler; (FORD) Laser (foreign and Puerto Rican distribution only), Ford (see English, French, German, and Italian Ford); (PLYM) Laser, Plymouth + + + + + (PLYM) Prowler, Plymouth + + + + + (BUIC) Ranier, Buick + + + + + (MAZD) B2200, Mazda + + + + + (GMC) Safari, General Motors Corp.; (PONT) Safari, Pontiac + + + + + (MG) MGA, MG + + + + + (PONI) Firefly, Pontiac (Canadian) (Also see make Pontiac) + + + + + (TRIU) TR7, Triumph + + + + + (SUBA) Justy, Subaru + + + + + (SNOW) Skis and Tracks, Snowmobiles + + + + + (CHRY) PT Cruiser, Chrysler; (STU) Cruiser, Studebaker + + + + + (PLYM) Caravelle, Plymouth + + + + + (CHEV) Cobal, Chevrolet + + + + + (ISU) Amigo, Isuzu + + + + + (CHEV) Uplander (Crossover Sport Van), Chevrolet + + + + + (BMW) 540, BMW + + + + + (DODG) Ram 3500 (pickup), Dodge; (LEXS) RX350, Lexus; (MERZ) R350 (Sport Wagon), Mercedes Benz + + + + + Lancer Evolution + + + + + (EXCL) SS Roadster, Excalibur; (CHEV) SSR, Chevrolet + + + + + (CHEV) C/K 3500, Chevrolet; (MERZ) C350, Mercedes Benz + + + + + HU3 + + + + + (BMW) 323i, BMW; (MAZD) 323, Mazda + + + + + (CHEV) Lumina APV, Chevrolet + + + + + (ACAD) Beaumont Series, Acadian (GM of Canada) + + + + + (JEEP) J-20, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) J-20, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) J-20, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (PONT) J2000, Pontiac + + + + + (MAZD) 6 (Six), Mazda + + + + + (MG) TF Series, MG + + + + + Azera + + + + + (MERC) Lynx, Mercury + + + + + (HYUN) Pony, Hyundai + + + + + (PONT) Fiero, Pontiac + + + + + (METE) Rideau, Meteor (Canadian Mercury) + + + + + (OLDS) F-85, Oldsmobile + + + + + (INFI) G20, Infiniti + + + + + (PACK) Balboa, Packard + + + + + (JAGU) 3.4 Litre, Jaguar + + + + + (CHEV) Venture (minivan), Chevrolet; (FREF) Vendome, French Ford; (PONT) Ventura, Pontiac + + + + + (CHEV) Aveo, Chevrolet + + + + + (BREM) Maxi-Taxi, Bremen Sport Equipment, Inc. (Bremen, IN); (DATS) Maxima, Datsun; (NISS) Maxima, Nissan + + + + + (PLYM) Arrow (imported), Plymouth + + + + + (TRIU) Herald, Triumph + + + + + (AMER) Medallion (through vehicle year 1987), American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (EGIL) Medallion (vehicle year 1988), Eagle; (MERC) Medalist, Mercury + + + + + (MODE) Model A, Model A and Model T Motor Car Reproduction Corp. + + + + + (VOLV) XC70, Volvo + + + + + (CHEV) C/K 1500, Chevrolet + + + + + (PORS) 356, Porsche + + + + + (ALFA) Alfetta GT, Alfa Romeo + + + + + (LINC) LS, Lincoln-Continental; (STRN) LS-Sedan, Saturn + + + + + (MERZ) E300, Mercedes-Benz + + + + + (LAMO) Jarma, Lamborghini + + + + + (SUBA) XT Coupe, Subaru + + + + + (JAGU) "E" Type, Jaguar + + + + + (AMGN) Hummer, AM General Corp.; (HUMM) Hummer, HUMMER + + + + + (OLDS) Cutlass/Ciera, Supreme, Oldsmobile + + + + + (ALFA) Arna, Alfa Romeo; (AMER) American, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (BENT) Arnage, Bentley; (RAMB) American (AME for reference only), Rambler (mfd. prior to 1966; 1966 and later Ramblers - see make American Motors) + + + + + (CHEV) Luv, Chevrolet + + + + + (PONT) Grand Ville, Pontiac + + + + + (FORD) Brewster (antique vehicle), Ford + + + + + (KIA) Sorrento, Kia + + + + + (PLYM) Breeze, Plymouth + + + + + (MASE) Indy, Maserati + + + + + (NISS) NX, Nissan + + + + + (ZMCC) Golden Spirit, Zimmer Motor Car Co. + + + + + Freestyle + + + + + (JEEP) CJ-5, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) CJ-5, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) CJ-5, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (DODG) Ram 2500 (pickup), Dodge + + + + + (CHEV) Confederate (antique vehicle), Chevrolet + + + + + (CADI) Eldorado, Cadillac + + + + + (SPEC) Motorized Ride-On Toys + + + + + (BUIC) Rendezvous, Buick + + + + + (ENGF) Mark II, English Ford (British); (LINC) Mark II, Lincoln-Continental + + + + + (BMW) 318i, BMW + + + + + (FERR) 208, Ferrari + + + + + (KIA) Sephia, Kia Motors Corp. + + + + + (MAZD) Miata (MX5), Merlot Mica (Miata), Mazda + + + + + (BEJE) Gang Star, Beijing Jeep + + + + + (BMC) Princess, B M C; (CHEV) Prism (beginning vehicle year 1998), Chevrolet; (GEO) Prizm, GEO; (NSU) Prinz, Nsu Prinz; (TOYT) Prius, Toyota + + + + + (FORD) Country Sedan, Ford (see English, French, German, and Italian Ford); (METE) Country Sedan, Meteor (Canadian Mercury) + + + + + (LNCI) Flavia, Lancia + + + + + (SUBA) Brat, Subaru + + + + + (FORD) Sunliner, Ford (see English, French, German, and Italian Ford); (PLYM) Sundance, Plymouth; (PONT) Sunbird, Pontiac; (SOLE) Sunrise, Solectria + + + + + (INFI) QX56, Infiniti + + + + + (MAZD) 929, Mazda + + + + + (JAGU) XK8, Jaguar + + + + + (DODG) Raider, Dodge + + + + + (LAMO) Countach, Lamborghini; (MERC) Cougar, Mercury + + + + + (FORD) 7 Litre, Ford (see English, French, German, and Italian Ford) + + + + + (PONT) Montana, Pontiac + + + + + (PACK) Patrician, Packard; (JEEP) Patriot, Jeep + + + + + (MERZ) 560 Series, Mercedes-Benz + + + + + (MG) Sports Sedan, MG + + + + + (NISS) Quest, Nissan + + + + + (FORD) Frontenac, Ford (see English, French, German, and Italian Ford) + + + + + (AUDI) A4, Audi + + + + + (SIM) Etoile, Simca + + + + + (LEXS) LX470, Lexus + + + + + (JAGU) 420, Jaguar; (MASE) 4200 GT, Maserati; (MERZ) 420 Series, Mercedes-Benz + + + + + (JAGU) XJ8, Jaguar + + + + + (BMW) 2800 Series, BMW; (DATS) 280Z, Datsun; (MERZ) 280 Series, Mercedes-Benz; (MERZ) SLK280, Mercedes - Benz; (ISU) i280, Isuzu + + + + + (MITS) Outlander, Mitsubishi ; (STRN) Outlook, Saturn; (SUBA) Outback, Subaru + + + + + (OLDS) Standard, Oldsmobile + + + + + (MONA) Richelieu, Monarch + + + + + (CHEV) Colorado, Chevrolet + + + + + (VOLK) Microbus, Volkswagen + + + + + (OLDS) Silhouette, Oldsmobile + + + + + (DODG) Ram 2500 (van), Dodge + + + + + (JEEP) Dakar, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) Dakar, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) Dakar, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (DODG) Dakota, Dodge + + + + + (BUIC) California, Buick; (CADI) Calais, Cadillac; (OLDS) Calais, Oldsmobile; (DODG) Caliber, Dodge + + + + + (DATS) 311, Datsun + + + + + (VOLV) PV444, Volvo + + + + + (CHEV) Citation, Chevrolet; (EDSE) Citation, Edsel + + + + + (INFI) M45, Infiniti + + + + + 360 Challenge Stradale + + + + + (MERZ) E500, Mercedes-Benz + + + + + (JAGU) XJ40, Jaguar + + + + + (PONT) Firebird, Firehawk, Trans Am (Firebird), Pontiac + + + + + (INFI) FX35, Infiniti + + + + + (EDSE) Villager, Edsel; (MERC) Villager, Mercury + + + + + (SUZI) Samurai, Suzuki + + + + + (FORD) Think City (Elec.Veh. Model Year 2002), Ford + + + + + (GAZ) Volga, GAZ; (PLYM) Volare, Plymouth + + + + + (AERO) Helicopters and other Rotor Wing (or rotary- blade drive aircraft) + + + + + (TOYT) Tacoma, Toyota + + + + + (CHEV) Corsica, Chevrolet + + + + + (AMER) Ambassador, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (NASH) Ambassador, Nash; (RAMB) Ambassador, Rambler (mfd. prior to 1966; 1966 and later Ramblers - see make American Motors) + + + + + (ROL) Silver Seraph, Rolls-Royce + + + + + (CADI) Fleetwood, Cadillac; (CHEV) Fleetline, Chevrolet + + + + + (MAZD) MX3, Mazda + + + + + (ROV) Rover 45, Rover + + + + + (MASE) Coupe/Coupe GT, Maserati + + + + + (PONT) Grand AM, Pontiac + + + + + (DODG) Demon (Dart), Dodge + + + + + (DODG) Wayfarer, Dodge + + + + + DB9 + + + + + (FORD) Fairmont, Ford (see English, French, German, and Italian Ford) + + + + + (FIAT) 128 Series, Fiat + + + + + (TOYT) Sequoia, Toyota + + + + + (KIA) RIO, Kia + + + + + Fit + + + + + (VOLK) Kombi, Volkswagen + + + + + (BMW) 2002 Series, BMW + + + + + (JAGU) Vanden Plas, Jaguar; (ASTO) Vantage, Aston Martin; (GMC) Vandura, General Motors Corp. + + + + + (PORS) 912, Porsche + + + + + (JEEP) Wrangler, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) Wrangler, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) Wrangler, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (BMW) 650Ci, BMW; (BMW) 650i, BMW + + + + + (LNDR) Defender 90, Defender 110, Land Rover + + + + + (JAGU) 2.4 Litre, Jaguar + + + + + (AVTI) Series B, Avanti + + + + + (ASVE) Assembled Vehicles + + + + + (ZMCC) Quick Silver, Zimmer Motor Car Co. + + + + + (BORG) Isabella, Borgward + + + + + (PORS) 944, Porsche + + + + + (VOLV) 780 Series, Volvo + + + + + (FERR) Barchetta (or F130), F130 (Barchetta), Ferrari; (PLYM) Barracuda, Plymouth + + + + + (MERZ) ML320 (sport utility), Mercedes-Benz + + + + + (MERZ) CLK350, Mercedes Benz + + + + + (LINC) LS6, Lincoln-Continental + + + + + (MERZ) CL500, Mercedes-Benz + + + + + SLK55 + + + + + (MESS) Tiger, Messerschmitt; (ROOT) Tiger, Rootes; (SUNB) Tiger, Sunbeam + + + + + (MAZD) RX2 (rotary engine), Mazda + + + + + (AMER) Rambler American, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (ENGF) Zodiac, English Ford (British) + + + + + (BMW) 528i, BMW + + + + + + + + + + + + + + + + TrencherAlso known as a ditcher + + + + + Potato Digger + + + + + Garbage or Refuse + + + + + Asphalt Distributor + + + + + Welder + + + + + Utility + + + + + Stump Grinder + + + + + PaverAlso known as a finisher or roadsurfacer. + + + + + Drill, RockAlso known as a drifter drill. + + + + + Hardtop, 4 door. + + + + + Brush Chipper + + + + + Loader + + + + + Beverage Truck + + + + + Moped + + + + + Flatbed or Platform + + + + + HouseMobile home + + + + + Harvester + + + + + Corn Picker + + + + + Backhoe + + + + + Touring Car. + + + + + Twin-Engine, Propeller + + + + + Construction Signal + + + + + Blimp + + + + + Mower, Riding or Garden Tractor + + + + + Tanker + + + + + ShovelAlso known as a power or steamshovel. + + + + + Crane + + + + + SweeperAlso known as a power broom usedto clean streets and parking lots + + + + + Enclosed Body, Removable Enclosure + + + + + GeneratorEnter as a part, if not permanentlymounted. + + + + + Lift Boom (personnel)Also known as an orchard or cherrypicker. + + + + + Log SkidderAlso known as a grappler skidder. + + + + + Ambulance + + + + + Hopper + + + + + Pickup with mounted camperenter as a part or add-on part + + + + + Polealso known as logging trailer-usedto transport logs and pipes + + + + + Lowboy or Lowbed + + + + + Minicycle + + + + + Flotation ChassisAlso known as implement carrier + + + + + Hatchback, 4 door. + + + + + Light Tower (Typically used around or near construction sites and powered by a generator.) + + + + + Enclosed Body, Nonremovableenclosure + + + + + Pallet + + + + + Semiuse only when the specific bodystyle of the semi-trailer isunknown + + + + + Snowmobile + + + + + Mower-ConditionerFor grass or hay + + + + + Armored Truck + + + + + Campingalso known as camper or traveltrailer + + + + + Dump Trailer + + + + + LogUsed to transport logs, poles, orpipe. May be self loading or mayhave a grappling arm or jammer. + + + + + SEDAN, 4 DOOR; TRUCK/PICK-UP 4 DOOR + + + + + Field ChopperAlso known as a sileage cutter + + + + + Snowblower + + + + + Retractable Hardtop. + + + + + Boat + + + + + Bus + + + + + Helicopter + + + + + Coupe. Use this code when unable to determine if vehicle is a two-door sedan or a two-door hardtop. + + + + + Vacuum CleanerHeavy duty ride-on type enter as apart, if not permanently mounted + + + + + Bulk AgricultureBulk transport of raw vegetables.May have live floor, belt, or tiphead. + + + + + Tractor Truck, Gasoline + + + + + Ultralight (including hang gliders) + + + + + Motorbike + + + + + Flatrack + + + + + Tractor Truck, Diesel + + + + + Well Driller + + + + + Detasseling Equipment + + + + + Tractor, Wheel Type + + + + + CombineAlso known as a grain harvester + + + + + Sprayer + + + + + SedanUse this code only if the number ofdoors is unknown. + + + + + Unpublished style of ConstructionEquipmentExplain style in the MIS field + + + + + Backhoe/Loader + + + + + SawUsed in cutting asphalt, concrete,or masonry. + + + + + Horse + + + + + Refrigerated Vanalso known as reefer + + + + + Wagonalso known as Gondola, Cart, orContainer + + + + + Stake or Rack + + + + + Striper + + + + + Tri-Engine, Propeller + + + + + Wood Splitter + + + + + Auto Tow DollyTwo-wheel towing equipment + + + + + Glass Rack + + + + + Hydraulic Dump + + + + + Sailplane + + + + + Lunch Wagon + + + + + Hot Air Ballon + + + + + Tractor, Track Type + + + + + Windrower + + + + + Concrete mixer + + + + + Air CompressorShould be entered as a part if notif not permanently mounted. + + + + + Hardtop. This code is used only when the number of doors is unknown. + + + + + Auxiliary Dolly + + + + + Prime MoverAlso known as a road packer. + + + + + Bulldozer + + + + + Carry-allrugged trail and pleasure vehicles(e.g., Blazaer, Bronco, Jeep, etcetc.) + + + + + Livestock Rack + + + + + Multi-wheeled vehicleManufactured for off-road use, butbut licensed as street legal,e.g., 3-wheel mo + + + + + Single-Engine, Propeller + + + + + Chassis and Cab + + + + + 3-DoorSome truck makes will have twodoors on the drivers side andone on the passenger side. Otherm + + + + + Pickup + + + + + Convertible + + + + + Hay Baler + + + + + Motorcycle Trailer + + + + + Grain + + + + + Motorscooter + + + + + Hammer + + + + + RollerAlso known as a compactor. + + + + + Grader + + + + + Vanette + + + + + Minibike + + + + + Converter Gear + + + + + Roadster. + + + + + Fire Truck + + + + + Sedan, 2 door + + + + + Cotton Picker + + + + + Coach. + + + + + Law Enforcement + + + + + Station Wagon + + + + + Open Body + + + + + Hay Bale Loader + + + + + Tri-Engine, Jet + + + + + Limousine + + + + + Multi-Engine, Propeller + + + + + Multi-Engine, Jet + + + + + Fork LiftAlso known as a lift truck. + + + + + Cotton Stripper + + + + + Tent Trailer + + + + + Tow Truck/Wrecker + + + + + Search and Rescue + + + + + Vanincludes open or closed top boxtrailers + + + + + Motorized Home + + + + + Single-Engine, Jet + + + + + Scraper + + + + + Aerial Platform + + + + + Hardtop, 2 door. + + + + + Hearse + + + + + Biohazard + + + + + Fertilizer SpreaderEnter as a part if not permanentlymounted + + + + + Dump + + + + + Unpublished Style of Farm Equipment + + + + + ExcavatorAlso known as a digger. + + + + + Hatchback/Fastback. Use this code for a vehicle that has a rear door, and the number of side doors is unknown. + + + + + Twin-Engine, Jet + + + + + Hatchback, 2 door. + + + + + Tree HarvesterAlso known as a feller-buncher + + + + + Van Camper + + + + + Auto Carrier + + + + + Motorcycle + + + + + Buggy, ConcreteAlso known as a power cart. + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/fips_10-4/2.0/constraint-schema-transform.xsl b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/fips_10-4/2.0/constraint-schema-transform.xsl new file mode 100644 index 000000000..db8eaa2d8 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/fips_10-4/2.0/constraint-schema-transform.xsl @@ -0,0 +1,904 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/fips_10-4/2.0/fips_10-4.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/fips_10-4/2.0/fips_10-4.xsd new file mode 100644 index 000000000..8f11e5eeb --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/fips_10-4/2.0/fips_10-4.xsd @@ -0,0 +1,1352 @@ + + + + Countries, dependencies, areas of special sovereignty, and their principal administrative divisions from the Federal Information Processing Standards (FIPS) 10-4. + + true + + + + + + + + + PORTUGAL + + + + + WEST BANK + + + + + BENIN + + + + + ANTARCTICA + + + + + AMERICAN SAMOA + + + + + PAKISTAN + + + + + SURINAME + + + + + UNDERSEA FEATURES + + + + + COSTA RICA + + + + + ALGERIA + + + + + WALLIS AND FUTUNA + + + + + GUYANA + + + + + EUROPA ISLAND + + + + + ITALY + + + + + TOGO + + + + + PERU + + + + + COLOMBIA + + + + + MALAWI + + + + + FRENCH POLYNESIA + + + + + VANUATU + + + + + SWITZERLAND + + + + + LIBYA + + + + + ARGENTINA + + + + + SEYCHELLES + + + + + GERMANY + + + + + MARSHALL ISLANDS + + + + + BRUNEI + + + + + SOMALIA + + + + + TURKEY + + + + + BAKER ISLAND + + + + + CAMBODIA + + + + + HUNGARY + + + + + HONDURAS + + + + + ZIMBABWE + + + + + ASHMORE AND CARTIER ISLANDS + + + + + CHINA + + + + + FRANCE + + + + + INDIA + + + + + SINGAPORE + + + + + FINLAND + + + + + RWANDA + + + + + OCEANS + + + + + BURMA + + + + + ESTONIA + + + + + COTE D'IVOIRE + + + + + CAPE VERDE + + + + + TONGA + + + + + CAYMAN ISLANDS + + + + + JAMAICA + + + + + CONGO + + + + + ALBANIA + + + + + LITHUANIA + + + + + TAJIKISTAN + + + + + MALI + + + + + NAVASSA ISLAND + + + + + SPRATLY ISLANDS + + + + + TURKMENISTAN + + + + + SVALBARD + + + + + RUSSIA + + + + + CUBA + + + + + BELARUS + + + + + EAST TIMOR + + + + + GABON + + + + + HONG KONG + + + + + BULGARIA + + + + + GUINEA + + + + + JOHNSTON ATOLL + + + + + IRAN + + + + + UGANDA + + + + + TRINIDAD AND TOBAGO + + + + + NETHERLANDS + + + + + JAPAN + + + + + SWEDEN + + + + + LEBANON + + + + + SAUDI ARABIA + + + + + MACAU + + + + + PUERTO RICO + + + + + ROMANIA + + + + + IRAQ + + + + + SAMOA + + + + + CZECH REPUBLIC + + + + + GHANA + + + + + FIJI + + + + + SPAIN + + + + + MOZAMBIQUE + + + + + CENTRAL AFRICAN REPUBLIC + + + + + UZBEKISTAN + + + + + GUAM + + + + + UNITED STATES VIRGIN ISLANDS + + + + + AZERBAIJAN + + + + + ETHIOPIA + + + + + NORWAY + + + + + JERSEY + + + + + JARVIS ISLAND + + + + + IRELAND + + + + + NO MAN'S LAND + + + + + BAHRAIN + + + + + EQUATORIAL GUINEA + + + + + COMOROS + + + + + LIECHTENSTEIN + + + + + GAZA STRIP + + + + + ISLE OF MAN + + + + + PARACEL ISLANDS + + + + + TUNISIA + + + + + EL SALVADOR + + + + + VENEZUELA + + + + + MEXICO + + + + + LATVIA + + + + + AUSTRIA + + + + + GUATEMALA + + + + + PHILIPPINES + + + + + HOWLAND ISLAND + + + + + CHAD + + + + + QATAR + + + + + CORAL SEA ISLANDS + + + + + KUWAIT + + + + + PALMYRA ATOLL + + + + + PAPUA NEW GUINEA + + + + + MIDWAY ISLANDS + + + + + BANGLADESH + + + + + MAURITANIA + + + + + ZAMBIA + + + + + PANAMA + + + + + BRITISH VIRGIN ISLANDS + + + + + VATICAN CITY + + + + + MAURITIUS + + + + + ERITREA + + + + + CROATIA + + + + + SAINT LUCIA + + + + + GIBRALTAR + + + + + VIETNAM + + + + + BRITISH INDIAN OCEAN TERRITORY + + + + + TAIWAN + + + + + GEORGIA + + + + + HAITI + + + + + LESOTHO + + + + + NORTH KOREA + + + + + MADAGASCAR + + + + + BURKINA FASO + + + + + GRENADA + + + + + TUVALU + + + + + NEW ZEALAND + + + + + BHUTAN + + + + + BOLIVIA + + + + + SWAZILAND + + + + + NIGERIA + + + + + ISRAEL + + + + + KINGMAN REEF + + + + + SIERRA LEONE + + + + + EGYPT + + + + + HEARD ISLAND AND MCDONALD ISLANDS + + + + + BAHAMAS, THE + + + + + JORDAN + + + + + CAMEROON + + + + + GREENLAND + + + + + NETHERLANDS ANTILLES + + + + + DOMINICA + + + + + JUAN DE NOVA ISLAND + + + + + ICELAND + + + + + SENEGAL + + + + + ARUBA + + + + + WESTERN SAHARA + + + + + CANADA + + + + + SAINT KITTS AND NEVIS + + + + + BASSAS DA INDIA + + + + + NAURU + + + + + SOLOMON ISLANDS + + + + + TURKS AND CAICOS ISLANDS + + + + + MONACO + + + + + INDONESIA + + + + + SAINT VINCENT AND THE GRENADINES + + + + + FRENCH SOUTHERN AND ANTARCTIC LANDS + + + + + COCOS (KEELING) ISLANDS + + + + + MARTINIQUE + + + + + ANGOLA + + + + + FAROE ISLANDS + + + + + GLORIOSO ISLANDS + + + + + GREECE + + + + + BOUVET ISLAND + + + + + SOUTH AFRICA + + + + + PALAU + + + + + TOKELAU + + + + + SAINT PIERRE AND MIQUELON + + + + + AUSTRALIA + + + + + SYRIA + + + + + NAMIBIA + + + + + FRENCH GUIANA + + + + + REUNION + + + + + BOTSWANA + + + + + KIRIBATI + + + + + MAYOTTE + + + + + BELIZE + + + + + NEW CALEDONIA + + + + + ARMENIA + + + + + OMAN + + + + + NIGER + + + + + ECUADOR + + + + + BARBADOS + + + + + MOLDOVA + + + + + NICARAGUA + + + + + SUDAN + + + + + BURUNDI + + + + + NORFOLK ISLAND + + + + + GUADELOUPE + + + + + SAINT HELENA + + + + + GUERNSEY + + + + + MACEDONIA + + + + + WAKE ISLAND + + + + + CHILE + + + + + TROMELIN ISLAND + + + + + ANDORRA + + + + + MALDIVES + + + + + KYRGYZSTAN + + + + + TANZANIA + + + + + NEPAL + + + + + UNITED KINGDOM + + + + + BOSNIA AND HERZEGOVINA + + + + + NIUE + + + + + MALTA + + + + + ANTIGUA AND BARBUDA + + + + + MONTENEGRO + + + + + URUGUAY + + + + + UKRAINE + + + + + UNITED ARAB EMIRATES + + + + + JAN MAYEN + + + + + LUXEMBOURG + + + + + PARAGUAY + + + + + GUINEA-BISSAU + + + + + UNITED STATES + + + + + KENYA + + + + + SRI LANKA + + + + + MOROCCO + + + + + KAZAKHSTAN + + + + + THAILAND + + + + + GAMBIA, THE + + + + + CYPRUS + + + + + CONGO, DEMOCRATIC REPUBLIC OF THE + + + + + SOUTH GEORGIA AND THE SOUTH SANDWICH ISLANDS + + + + + BRAZIL + + + + + SERBIA + + + + + DJIBOUTI + + + + + CLIPPERTON ISLAND + + + + + MALAYSIA + + + + + AFGHANISTAN + + + + + POLAND + + + + + YEMEN + + + + + MONTSERRAT + + + + + PITCAIRN ISLANDS + + + + + DENMARK + + + + + SOUTH KOREA + + + + + ANGUILLA + + + + + SAN MARINO + + + + + BERMUDA + + + + + LIBERIA + + + + + DOMINICAN REPUBLIC + + + + + CHRISTMAS ISLAND + + + + + MONGOLIA + + + + + SAO TOME AND PRINCIPE + + + + + FALKLAND ISLANDS (ISLAS MALVINAS) + + + + + SLOVAKIA + + + + + MICRONESIA, FEDERATED STATES OF + + + + + COOK ISLANDS + + + + + SLOVENIA + + + + + LAOS + + + + + NORTHERN MARIANA ISLANDS + + + + + BELGIUM + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/fips_6-4/2.0/constraint-schema-transform.xsl b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/fips_6-4/2.0/constraint-schema-transform.xsl new file mode 100644 index 000000000..d681bc47c --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/fips_6-4/2.0/constraint-schema-transform.xsl @@ -0,0 +1,1171 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/fips_6-4/2.0/fips_6-4.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/fips_6-4/2.0/fips_6-4.xsd new file mode 100644 index 000000000..a422ed92e --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/fips_6-4/2.0/fips_6-4.xsd @@ -0,0 +1,1797 @@ + + + + Counties and equivalent entities of the U.S., its possessions, and associated areas from the Federal Information Processing Standards (FIPS) 6-4. + + true + + + + + + + + + (02) Ketchikan Gateway, Alaska; (68) Jemo Island, Marshall Islands + + + + + (48) Young, Texas + + + + + (13) Morgan, Georgia; (21) Shelby, Kentucky; (29) Sullivan, Missouri; (48) Hemphill, Texas + + + + + (02) Southeast Fairbanks, Alaska + + + + + (48) Potter, Texas + + + + + (13) Treutlen, Georgia; (48) La Salle, Texas + + + + + (51) Hampton, Virginia + + + + + (48) Somervell, Texas + + + + + (13) Thomas, Georgia; (48) Knox, Texas + + + + + (13) White, Georgia; (48) McMullen, Texas + + + + + (01) Washington, Alabama; (05) Searcy, Arkansas; (12) Wakulla, Florida; (13) Gordon, Georgia; (17) Menard, Illinois; (18) Posey, Indiana; (19) Mills, Iowa; (20) Morton, Kansas; (21) Lee, Kentucky; (26) Ogemaw, Michigan; (27) Renville, Minnesota; (28) Smith, Mississippi; (29) Mercer, Missouri; (31) Nuckolls, Nebraska; (37) New Hanover, North Carolina; (39) Pickaway, Ohio; (40) Roger Mills, Oklahoma; (42) Westmoreland, Pennsylvania; (46) Walworth, South Dakota; (47) Morgan, Tennessee; (48) Donley, Texas; (55) Washburn, Wisconsin; (72) San Lorenzo, Puerto Rico + + + + + (48) Real, Texas; (68) Toke, Marshall Islands + + + + + (01) Autauga, Alabama; (04) Apache, Arizona; (05) Arkansas, Arkansas; (06) Alameda, California; (08) Adams, Colorado; (09) Fairfield, Connecticut; (10) Kent, Delaware; (11) District of Columbia, District of Columbia; (12) Alachua, Florida; (13) Appling, Georgia; (15) Hawaii, Hawaii; (16) Ada, Idaho; (17) Adams, Illinois; (18) Adams, Indiana; (19) Adair, Iowa; (20) Allen, Kansas; (21) Adair, Kentucky; (22) Acadia, Louisiana; (23) Androscoggin, Maine; (24) Allegany, Maryland; (25) Barnstable, Massachusetts; (26) Alcona, Michigan; (27) Aitkin, Minnesota; (28) Adams, Mississippi; (29) Adair, Missouri; (30) Beaverhead, Montana; (31) Adams, Nebraska; (32) Churchill, Nevada; (33) Belknap, New Hampshire; (34) Atlantic, New Jersey; (35) Bernalillo, New Mexico; (36) Albany, New York; (37) Alamance, North Carolina; (38) Adams, North Dakota; (39) Adams, Ohio; (40) Adair, Oklahoma; (41) Baker, Oregon; (42) Adams, Pennsylvania; (44) Bristol, Rhode Island; (45) Abbeville, South Carolina; (46) Armstrong, South Dakota; (47) Anderson, Tennessee; (48) Anderson, Texas; (49) Beaver, Utah; (50) Addison, Vermont; (51) Accomack, Virginia; (53) Adams, Washington; (54) Barbour, West Virginia; (55) Adams, Wisconsin; (56) Albany, Wyoming; (72) Adjuntas, Puerto Rico + + + + + (01) Calhoun, Alabama; (04) Mohave, Arizona; (05) Carroll, Arkansas; (06) Del Norte, California; (08) Chaffee, Colorado; (09) Windham, Connecticut; (12) Charlotte, Florida; (13) Bartow, Georgia; (16) Boise, Idaho; (17) Carroll, Illinois; (18) Carroll, Indiana; (19) Boone, Iowa; (20) Butler, Kansas; (21) Boone, Kentucky; (22) Bossier, Louisiana; (23) Lincoln, Maine; (24) Cecil, Maryland; (25) Hampshire, Massachusetts; (26) Barry, Michigan; (27) Brown, Minnesota; (28) Carroll, Mississippi; (29) Benton, Missouri; (30) Chouteau, Montana; (31) Boyd, Nebraska; (32) Lander, Nevada; (33) Rockingham, New Hampshire; (34) Gloucester, New Jersey; (35) Eddy, New Mexico; (36) Chemung, New York; (37) Bertie, North Carolina; (38) Burleigh, North Dakota; (39) Brown, Ohio; (40) Caddo, Oklahoma; (41) Curry, Oregon; (42) Bradford, Pennsylvania; (45) Berkeley, South Carolina; (46) Brule, South Dakota; (47) Cannon, Tennessee; (48) Austin, Texas; (49) Emery, Utah; (50) Lamoille, Vermont; (51) Augusta, Virginia; (53) Cowlitz, Washington; (54) Clay, West Virginia; (55) Calumet, Wisconsin; (56) Goshen, Wyoming; (72) Arroyo, Puerto Rico + + + + + (13) Liberty, Georgia; (17) Tazewell, Illinois; (18) Wells, Indiana; (19) Wapello, Iowa; (20) Sheridan, Kansas; (21) Nelson, Kentucky; (29) Reynolds, Missouri; (31) Wayne, Nebraska; (37) Union, North Carolina; (47) Washington, Tennessee; (48) Gray, Texas; (51) Stafford, Virginia + + + + + (48) Victoria, Texas + + + + + (24) Baltimore City, Maryland; (29) St Louis City, Missouri; (32) Carson City, Nevada; (51) Alexandria, Virginia + + + + + (01) Randolph, Alabama; (05) Poinsett, Arkansas; (06) Ventura, California; (08) San Juan, Colorado; (12) St Lucie, Florida; (13) Fannin, Georgia; (17) McHenry, Illinois; (18) Newton, Indiana; (19) Lee, Iowa; (20) Lyon, Kansas; (21) Jefferson, Kentucky; (22) Union, Louisiana; (26) Midland, Michigan; (27) Otter Tail, Minnesota; (28) Perry, Mississippi; (29) Lewis, Missouri; (30) Yellowstone, Montana; (31) Lincoln, Nebraska; (36) Ulster, New York; (37) McDowell, North Carolina; (39) Monroe, Ohio; (40) Okmulgee, Oklahoma; (42) Somerset, Pennsylvania; (46) Sanborn, South Dakota; (47) Macon, Tennessee; (48) Dallam, Texas; (51) Lunenburg, Virginia; (55) Sauk, Wisconsin; (72) Penuelas, Puerto Rico + + + + + (68) Ujae, Marshall Islands + + + + + (01) Morgan, Alabama; (05) Ouachita, Arkansas; (06) Tehama, California; (08) Rio Blanco, Colorado; (12) Pinellas, Florida; (13) Effingham, Georgia; (17) Lee, Illinois; (18) Miami, Indiana; (19) Johnson, Iowa; (20) Leavenworth, Kansas; (21) Henry, Kentucky; (22) St Tammany, Louisiana; (26) Marquette, Michigan; (27) Nicollet, Minnesota; (28) Noxubee, Mississippi; (29) Knox, Missouri; (30) Treasure, Montana; (31) Keya Paha, Nebraska; (36) Suffolk, New York; (37) Jones, North Carolina; (38) Wells, North Dakota; (39) Medina, Ohio; (40) Noble, Oklahoma; (42) Pike, Pennsylvania; (46) Pennington, South Dakota; (47) Lincoln, Tennessee; (48) Crane, Texas; (51) Lancaster, Virginia; (54) Wetzel, West Virginia; (55) Richland, Wisconsin; (72) Naguabo, Puerto Rico + + + + + (55) Menominee, Wisconsin + + + + + (05) Van Buren, Arkansas; (13) Hancock, Georgia; (17) Ogle, Illinois; (18) St Joseph, Indiana; (19) O\Brien, Iowa; (20) Osborne, Kansas; (21) Logan, Kentucky; (26) Presque Isle, Michigan; (27) Sherburne, Minnesota; (28) Tishomingo, Mississippi; (29) Morgan, Missouri; (31) Platte, Nebraska; (37) Pender, North Carolina; (39) Ross, Ohio; (40) Tillman, Oklahoma; (47) Putnam, Tennessee; (48) El Paso, Texas; (51) Patrick, Virginia; (55) Wood, Wisconsin; (72) Utuado, Puerto Rico + + + + + (13) Newton, Georgia; (21) Taylor, Kentucky; (29) Vernon, Missouri; (48) Hill, Texas + + + + + (01) Montgomery, Alabama; (05) Newton, Arkansas; (06) Sutter, California; (08) Pueblo, Colorado; (12) Pasco, Florida; (13) Echols, Georgia; (17) Lawrence, Illinois; (18) Martin, Indiana; (19) Jefferson, Iowa; (20) Lane, Kansas; (21) Henderson, Kentucky; (22) St Mary, Louisiana; (26) Manistee, Michigan; (27) Murray, Minnesota; (28) Newton, Mississippi; (29) Johnson, Missouri; (30) Toole, Montana; (31) Keith, Nebraska; (36) Steuben, New York; (37) Johnston, North Carolina; (38) Ward, North Dakota; (39) Marion, Ohio; (40) Muskogee, Oklahoma; (42) Philadelphia, Pennsylvania; (46) Moody, South Dakota; (47) Lewis, Tennessee; (48) Cottle, Texas; (51) King William, Virginia; (54) Webster, West Virginia; (55) Racine, Wisconsin; (72) Morovis, Puerto Rico + + + + + (51) Clifton Forge, Virginia + + + + + (48) Polk, Texas + + + + + (13) Murray, Georgia; (21) Simpson, Kentucky; (29) Taney, Missouri; (48) Henderson, Texas + + + + + (48) Trinity, Texas + + + + + (68) Mili, Marshall Islands + + + + + (13) Jenkins, Georgia; (17) Saline, Illinois; (18) Vermillion, Indiana; (19) Shelby, Iowa; (20) Rush, Kansas; (21) Menifee, Kentucky; (26) Wexford, Michigan; (27) Watonwan, Minnesota; (29) Platte, Missouri; (31) Sioux, Nebraska; (37) Scotland, North Carolina; (39) Warren, Ohio; (47) Sumner, Tennessee; (48) Gaines, Texas; (51) Rockingham, Virginia + + + + + (51) Danville, Virginia + + + + + (48) Van Zandt, Texas + + + + + (13) Paulding, Georgia; (21) Trimble, Kentucky; (29) Wayne, Missouri; (48) Hopkins, Texas; (70) Ngaremlengui, Palau + + + + + (74) Kingman Reef, U.S. Minor Outlying Islands + + + + + (01) Clarke, Alabama; (04) Yavapai, Arizona; (05) Cleveland, Arkansas; (06) Imperial, California; (08) Crowley, Colorado; (12) Dade, Florida; (13) Brantley, Georgia; (16) Camas, Idaho; (17) Clay, Illinois; (18) Crawford, Indiana; (19) Calhoun, Iowa; (20) Clark, Kansas; (21) Breathitt, Kentucky; (22) Catahoula, Louisiana; (23) Somerset, Maine; (24) Harford, Maryland; (25) Suffolk, Massachusetts; (26) Calhoun, Michigan; (27) Chisago, Minnesota; (28) Clay, Mississippi; (29) Caldwell, Missouri; (30) Fallon, Montana; (31) Cass, Nebraska; (34) Monmouth, New Jersey; (35) Lea, New Mexico; (36) Delaware, New York; (37) Cabarrus, North Carolina; (38) Dunn, North Dakota; (39) Clermont, Ohio; (40) Cimarron, Oklahoma; (41) Harney, Oregon; (42) Carbon, Pennsylvania; (45) Chesterfield, South Carolina; (46) Clark, South Dakota; (47) Claiborne, Tennessee; (48) Bee, Texas; (49) Kane, Utah; (50) Windham, Vermont; (51) Brunswick, Virginia; (53) Grant, Washington; (54) Greenbrier, West Virginia; (55) Dane, Wisconsin; (56) Natrona, Wyoming; (72) Caguas, Puerto Rico + + + + + (17) Woodford, Illinois; (20) Wichita, Kansas; (21) Rockcastle, Kentucky; (29) Shannon, Missouri; (48) Harrison, Texas + + + + + (48) Waller, Texas + + + + + (60) Rose Island, American Samoa; (68) Ailuk, Marshall Islands; (75) Trust Territory of the Pacific Islands, ; (78) St. Thomas, Virgin Islands of the U.S. + + + + + (01) Cullman, Alabama; (05) Drew, Arkansas; (06) Mariposa, California; (08) Fremont, Colorado; (12) Glades, Florida; (13) Candler, Georgia; (16) Fremont, Idaho; (17) Du Page, Illinois; (18) Floyd, Indiana; (19) Clayton, Iowa; (20) Doniphan, Kansas; (21) Carter, Kentucky; (22) Grant, Louisiana; (24) Washington, Maryland; (26) Dickinson, Michigan; (27) Faribault, Minnesota; (28) Grenada, Mississippi; (29) Christian, Missouri; (30) Jefferson, Montana; (31) Dakota, Nebraska; (35) Sandoval, New Mexico; (36) Herkimer, New York; (37) Clay, North Carolina; (38) Kidder, North Dakota; (39) Erie, Ohio; (40) Dewey, Oklahoma; (41) Linn, Oregon; (42) Dauphin, Pennsylvania; (45) Georgetown, South Carolina; (46) Douglas, South Dakota; (47) Dickson, Tennessee; (48) Brewster, Texas; (49) Summit, Utah; (51) Clarke, Virginia; (53) Lincoln, Washington; (54) Lincoln, West Virginia; (55) Grant, Wisconsin; (56) Washakie, Wyoming; (72) Coamo, Puerto Rico + + + + + (01) Jefferson, Alabama; (05) Lafayette, Arkansas; (06) San Diego, California; (08) Lincoln, Colorado; (12) Leon, Florida; (13) Columbia, Georgia; (16) Owyhee, Idaho; (17) Henry, Illinois; (18) Jasper, Indiana; (19) Greene, Iowa; (20) Greenwood, Kansas; (21) Franklin, Kentucky; (22) Ouachita, Louisiana; (26) Isabella, Michigan; (27) Lac Qui Parle, Minnesota; (28) Lamar, Mississippi; (29) Gasconade, Missouri; (30) Pondera, Montana; (31) Gosper, Nebraska; (36) Orleans, New York; (37) Gates, North Carolina; (38) Ransom, North Dakota; (39) Hocking, Ohio; (40) Kingfisher, Oklahoma; (42) Lawrence, Pennsylvania; (45) Oconee, South Carolina; (46) Jerauld, South Dakota; (47) Hawkins, Tennessee; (48) Cherokee, Texas; (51) Gloucester, Virginia; (53) Whatcom, Washington; (54) Pleasants, West Virginia; (55) Marathon, Wisconsin; (68) Bokak, Marshall Islands; (72) Jayuya, Puerto Rico + + + + + (13) Telfair, Georgia; (48) Kinney, Texas + + + + + (48) Webb, Texas + + + + + (48) San Saba, Texas + + + + + (13) Richmond, Georgia; (48) Jefferson, Texas + + + + + (13) Jasper, Georgia; (17) Richland, Illinois; (18) Tipton, Indiana; (19) Ringgold, Iowa; (20) Rice, Kansas; (21) Martin, Kentucky; (26) Van Buren, Michigan; (27) Wadena, Minnesota; (28) Winston, Mississippi; (29) Pettis, Missouri; (31) Seward, Nebraska; (37) Rowan, North Carolina; (39) Union, Ohio; (47) Smith, Tennessee; (48) Franklin, Texas; (51) Richmond, Virginia + + + + + (02) Haines, Alaska; (68) Erikub, Marshall Islands; (69) Rota, Northern Mariana Islands; (70) Kayangel, Palau; (74) Howland Island, U.S. Minor Outlying Islands + + + + + (35) Cibola, New Mexico + + + + + (51) Fredericksburg, Virginia + + + + + (01) Marshall, Alabama; (05) Monroe, Arkansas; (06) Solano, California; (08) Phillips, Colorado; (12) Orange, Florida; (13) Dougherty, Georgia; (17) Knox, Illinois; (18) Madison, Indiana; (19) Iowa, Iowa; (20) Kingman, Kansas; (21) Harlan, Kentucky; (22) St John The Baptist, Louisiana; (26) Luce, Michigan; (27) Mille Lacs, Minnesota; (28) Monroe, Mississippi; (29) Jackson, Missouri; (30) Stillwater, Montana; (31) Jefferson, Nebraska; (36) Schoharie, New York; (37) Hyde, North Carolina; (38) Towner, North Dakota; (39) Lucas, Ohio; (40) Marshall, Oklahoma; (42) Northampton, Pennsylvania; (46) Mellette, South Dakota; (47) Lake, Tennessee; (48) Concho, Texas; (51) James City, Virginia; (54) Tyler, West Virginia; (55) Polk, Wisconsin; (72) Maunabo, Puerto Rico + + + + + (48) Titus, Texas + + + + + (01) St Clair, Alabama; (05) Pope, Arkansas; (06) Yuba, California; (08) Sedgwick, Colorado; (12) Sarasota, Florida; (13) Floyd, Georgia; (17) Macon, Illinois; (18) Ohio, Indiana; (19) Louisa, Iowa; (20) Marion, Kansas; (21) Johnson, Kentucky; (22) Vernon, Louisiana; (26) Monroe, Michigan; (27) Pine, Minnesota; (28) Pontotoc, Mississippi; (29) Linn, Missouri; (31) Loup, Nebraska; (36) Washington, New York; (37) Madison, North Carolina; (39) Morgan, Ohio; (40) Ottawa, Oklahoma; (42) Susquehanna, Pennsylvania; (46) Spink, South Dakota; (47) Marion, Tennessee; (48) Dawson, Texas; (51) Mathews, Virginia; (55) Shawano, Wisconsin; (72) Quebradillas, Puerto Rico + + + + + (13) Jeff Davis, Georgia; (17) Rock Island, Illinois; (18) Union, Indiana; (19) Sac, Iowa; (20) Riley, Kansas; (21) Mason, Kentucky; (26) Washtenaw, Michigan; (27) Waseca, Minnesota; (28) Yalobusha, Mississippi; (29) Phelps, Missouri; (31) Sheridan, Nebraska; (37) Rutherford, North Carolina; (39) Van Wert, Ohio; (47) Stewart, Tennessee; (48) Freestone, Texas; (51) Roanoke, Virginia + + + + + (13) Webster, Georgia; (48) McCulloch, Texas + + + + + (48) Wood, Texas + + + + + (05) Union, Arkansas; (13) Hall, Georgia; (17) Moultrie, Illinois; (18) Rush, Indiana; (19) Muscatine, Iowa; (20) Osage, Kansas; (21) Livingston, Kentucky; (26) Ottawa, Michigan; (27) Scott, Minnesota; (28) Tippah, Mississippi; (29) Montgomery, Missouri; (31) Pierce, Nebraska; (37) Pasquotank, North Carolina; (39) Richland, Ohio; (40) Texas, Oklahoma; (47) Polk, Tennessee; (48) Ellis, Texas; (51) Page, Virginia; (55) Winnebago, Wisconsin; (72) Trujillo Alto, Puerto Rico + + + + + (13) Pierce, Georgia; (21) Washington, Kentucky; (29) Wright, Missouri; (48) Hudspeth, Texas + + + + + (48) Milam, Texas + + + + + (51) Manassas, Virginia + + + + + (01) Winston, Alabama; (05) Sevier, Arkansas; (12) Washington, Florida; (13) Greene, Georgia; (17) Monroe, Illinois; (18) Putnam, Indiana; (19) Monona, Iowa; (20) Neosho, Kansas; (21) Letcher, Kentucky; (26) Osceola, Michigan; (27) Rock, Minnesota; (28) Sunflower, Mississippi; (29) Mississippi, Missouri; (31) Pawnee, Nebraska; (37) Onslow, North Carolina; (39) Portage, Ohio; (40) Seminole, Oklahoma; (42) York, Pennsylvania; (46) Washington, South Dakota; (47) Overton, Tennessee; (48) Eastland, Texas; (51) Northumberland, Virginia; (55) Waukesha, Wisconsin; (72) Santa Isabel, Puerto Rico + + + + + (01) Colbert, Alabama; (05) Crawford, Arkansas; (06) Lake, California; (08) Dolores, Colorado; (12) Escambia, Florida; (13) Burke, Georgia; (16) Clark, Idaho; (17) Crawford, Illinois; (18) De Kalb, Indiana; (19) Cerro Gordo, Iowa; (20) Comanche, Kansas; (21) Caldwell, Kentucky; (22) East Baton Rouge, Louisiana; (24) Prince George\s, Maryland; (26) Chippewa, Michigan; (27) Cottonwood, Minnesota; (28) De Soto, Mississippi; (29) Carroll, Missouri; (30) Garfield, Montana; (31) Cheyenne, Nebraska; (32) White Pine, Nevada; (34) Salem, New Jersey; (35) Mora, New Mexico; (36) Franklin, New York; (37) Caswell, North Carolina; (38) Golden Valley, North Dakota; (39) Crawford, Ohio; (40) Cotton, Oklahoma; (41) Josephine, Oregon; (42) Clearfield, Pennsylvania; (45) Dillon, South Carolina; (46) Custer, South Dakota; (47) Crockett, Tennessee; (48) Borden, Texas; (49) Rich, Utah; (51) Caroline, Virginia; (53) King, Washington; (54) Harrison, West Virginia; (55) Dunn, Wisconsin; (56) Sheridan, Wyoming; (72) Catano, Puerto Rico + + + + + (70) Ngatpang, Palau + + + + + (05) Yell, Arkansas; (13) Heard, Georgia; (17) Pike, Illinois; (18) Starke, Indiana; (19) Plymouth, Iowa; (20) Pottawatomie, Kansas; (21) McLean, Kentucky; (26) St Joseph, Michigan; (27) Stevens, Minnesota; (28) Warren, Mississippi; (29) Oregon, Missouri; (31) Rock, Nebraska; (37) Polk, North Carolina; (39) Shelby, Ohio; (40) Washita, Oklahoma; (47) Rutherford, Tennessee; (48) Fayette, Texas; (51) Prince George, Virginia; (72) Villalba, Puerto Rico + + + + + (48) Motley, Texas + + + + + (48) Montague, Texas + + + + + (01) Perry, Alabama; (05) Perry, Arkansas; (06) Trinity, California; (08) Rio Grande, Colorado; (12) Polk, Florida; (13) Elbert, Georgia; (17) Livingston, Illinois; (18) Monroe, Indiana; (19) Jones, Iowa; (20) Lincoln, Kansas; (21) Hickman, Kentucky; (22) Tangipahoa, Louisiana; (26) Mason, Michigan; (27) Nobles, Minnesota; (28) Oktibbeha, Mississippi; (29) Laclede, Missouri; (30) Valley, Montana; (31) Kimball, Nebraska; (36) Sullivan, New York; (37) Lee, North Carolina; (38) Williams, North Dakota; (39) Meigs, Ohio; (40) Nowata, Oklahoma; (42) Potter, Pennsylvania; (46) Perkins, South Dakota; (47) Loudon, Tennessee; (48) Crockett, Texas; (51) Lee, Virginia; (54) Wirt, West Virginia; (55) Rock, Wisconsin; (72) Naranjito, Puerto Rico + + + + + (51) Radford, Virginia + + + + + (13) McDuffie, Georgia; (17) Washington, Illinois; (19) Winnebago, Iowa; (20) Stevens, Kansas; (21) Owsley, Kentucky; (29) St Louis, Missouri; (37) Watauga, North Carolina; (47) Wilson, Tennessee; (48) Hale, Texas + + + + + (48) Nolan, Texas + + + + + (48) Palo Pinto, Texas + + + + + (51) Galax, Virginia + + + + + (48) Parmer, Texas + + + + + (70) Aimeliik, Palau + + + + + (13) Houston, Georgia; (17) Pulaski, Illinois; (18) Sullivan, Indiana; (19) Polk, Iowa; (20) Rawlins, Kansas; (21) Magoffin, Kentucky; (26) Schoolcraft, Michigan; (27) Todd, Minnesota; (28) Wayne, Mississippi; (29) Ozark, Missouri; (31) Sarpy, Nebraska; (37) Richmond, North Carolina; (39) Summit, Ohio; (40) Woodward, Oklahoma; (47) Sequatchie, Tennessee; (48) Floyd, Texas; (51) Prince William, Virginia; (72) Yauco, Puerto Rico + + + + + (13) Washington, Georgia; (48) Lubbock, Texas + + + + + (01) Tallapoosa, Alabama; (05) St Francis, Arkansas; (08) Weld, Colorado; (12) Taylor, Florida; (13) Gilmer, Georgia; (17) Marshall, Illinois; (18) Perry, Indiana; (19) Mahaska, Iowa; (20) Mitchell, Kansas; (21) Larue, Kentucky; (22) West Carroll, Louisiana; (26) Newaygo, Michigan; (27) Ramsey, Minnesota; (28) Scott, Mississippi; (29) Madison, Missouri; (31) Morrill, Nebraska; (36) Yates, New York; (37) Montgomery, North Carolina; (39) Ottawa, Ohio; (40) Pontotoc, Oklahoma; (42) Warren, Pennsylvania; (46) Tripp, South Dakota; (47) Monroe, Tennessee; (48) De Witt, Texas; (51) Nansemond, Virginia; (55) Vernon, Wisconsin; (72) Salinas, Puerto Rico + + + + + (01) Etowah, Alabama; (05) Greene, Arkansas; (06) Napa, California; (08) Huerfano, Colorado; (12) Highlands, Florida; (13) Chattooga, Georgia; (16) Kootenai, Idaho; (17) Franklin, Illinois; (18) Greene, Indiana; (19) Delaware, Iowa; (20) Finney, Kansas; (21) Crittenden, Kentucky; (22) Lafayette, Louisiana; (26) Grand Traverse, Michigan; (27) Houston, Minnesota; (28) Issaquena, Mississippi; (29) Crawford, Missouri; (30) McCone, Montana; (31) Douglas, Nebraska; (35) Taos, New Mexico; (36) Monroe, New York; (37) Dare, North Carolina; (38) McLean, North Dakota; (39) Geauga, Ohio; (40) Greer, Oklahoma; (41) Sherman, Oregon; (42) Franklin, Pennsylvania; (45) Kershaw, South Carolina; (46) Haakon, South Dakota; (47) Giles, Tennessee; (48) Caldwell, Texas; (49) Wayne, Utah; (53) San Juan, Washington; (54) Mercer, West Virginia; (55) Jefferson, Wisconsin; (72) Guanica, Puerto Rico + + + + + (13) Seminole, Georgia; (48) Jones, Texas + + + + + (13) Towns, Georgia; (48) Lampasas, Texas + + + + + (48) Upshur, Texas + + + + + (48) Parker, Texas + + + + + (48) Newton, Texas + + + + + (01) Limestone, Alabama; (05) Logan, Arkansas; (06) Santa Barbara, California; (08) Montezuma, Colorado; (12) Marion, Florida; (13) Dade, Georgia; (16) Twin Falls, Idaho; (17) Jersey, Illinois; (18) Knox, Indiana; (19) Hardin, Iowa; (20) Hodgeman, Kansas; (21) Graves, Kentucky; (22) Richland, Louisiana; (26) Keweenaw, Michigan; (27) Lyon, Minnesota; (28) Leflore, Mississippi; (29) Henry, Missouri; (30) Richland, Montana; (31) Harlan, Nebraska; (36) Rensselaer, New York; (37) Halifax, North Carolina; (38) Sheridan, North Dakota; (39) Knox, Ohio; (40) Logan, Oklahoma; (42) McKean, Pennsylvania; (45) Spartanburg, South Carolina; (46) Lincoln, South Dakota; (47) Houston, Tennessee; (48) Coleman, Texas; (51) Halifax, Virginia; (54) Randolph, West Virginia; (55) Oconto, Wisconsin; (72) Las Marias, Puerto Rico + + + + + (48) Wise, Texas + + + + + (48) Sutton, Texas + + + + + (48) Refugio, Texas + + + + + (01) Tuscaloosa, Alabama; (05) Saline, Arkansas; (08) Yuma, Colorado; (12) Union, Florida; (13) Glascock, Georgia; (17) Mason, Illinois; (18) Pike, Indiana; (19) Marion, Iowa; (20) Montgomery, Kansas; (21) Laurel, Kentucky; (22) West Feliciana, Louisiana; (26) Oakland, Michigan; (27) Red Lake, Minnesota; (28) Sharkey, Mississippi; (29) Maries, Missouri; (31) Nance, Nebraska; (37) Moore, North Carolina; (39) Paulding, Ohio; (40) Pottawatomie, Oklahoma; (42) Washington, Pennsylvania; (46) Turner, South Dakota; (47) Montgomery, Tennessee; (48) Dickens, Texas; (51) Nelson, Virginia; (55) Vilas, Wisconsin; (72) San German, Puerto Rico + + + + + (13) Mitchell, Georgia; (20) Wilson, Kansas; (21) Rowan, Kentucky; (29) Shelby, Missouri; (48) Hartley, Texas + + + + + (13) Wilkes, Georgia; (48) Martin, Texas + + + + + (13) Twiggs, Georgia; (48) Leon, Texas + + + + + (48) Orange, Texas + + + + + (68) Mejit, Marshall Islands + + + + + (01) Lee, Alabama; (05) Little River, Arkansas; (06) San Mateo, California; (08) Moffat, Colorado; (12) Manatee, Florida; (13) Crisp, Georgia; (16) Teton, Idaho; (17) Jefferson, Illinois; (18) Johnson, Indiana; (19) Hancock, Iowa; (20) Haskell, Kansas; (21) Grant, Kentucky; (22) Red River, Louisiana; (26) Kent, Michigan; (27) Lincoln, Minnesota; (28) Lee, Mississippi; (29) Harrison, Missouri; (30) Ravalli, Montana; (31) Hamilton, Nebraska; (36) Queens, New York; (37) Guilford, North Carolina; (38) Sargent, North Dakota; (39) Jefferson, Ohio; (40) Lincoln, Oklahoma; (42) Lycoming, Pennsylvania; (45) Saluda, South Carolina; (46) Lawrence, South Dakota; (47) Hickman, Tennessee; (48) Coke, Texas; (51) Greensville, Virginia; (54) Raleigh, West Virginia; (55) Monroe, Wisconsin; (72) Lares, Puerto Rico + + + + + (51) Norton, Virginia + + + + + (01) Clay, Alabama; (04) Yuma, Arizona; (05) Columbia, Arkansas; (06) Inyo, California; (08) Custer, Colorado; (12) De Soto, Florida; (13) Brooks, Georgia; (16) Canyon, Idaho; (17) Clinton, Illinois; (18) Daviess, Indiana; (19) Carroll, Iowa; (20) Clay, Kansas; (21) Breckinridge, Kentucky; (22) Claiborne, Louisiana; (23) Waldo, Maine; (24) Howard, Maryland; (25) Worcester, Massachusetts; (26) Cass, Michigan; (27) Clay, Minnesota; (28) Coahoma, Mississippi; (29) Callaway, Missouri; (30) Fergus, Montana; (31) Cedar, Nebraska; (32) Pershing, Nevada; (34) Morris, New Jersey; (35) Lincoln, New Mexico; (36) Dutchess, New York; (37) Caldwell, North Carolina; (38) Eddy, North Dakota; (39) Clinton, Ohio; (40) Cleveland, Oklahoma; (41) Hood River, Oregon; (42) Centre, Pennsylvania; (45) Clarendon, South Carolina; (46) Clay, South Dakota; (47) Clay, Tennessee; (48) Bell, Texas; (49) Millard, Utah; (50) Windsor, Vermont; (51) Buchanan, Virginia; (53) Grays Harbor, Washington; (54) Hampshire, West Virginia; (55) Dodge, Wisconsin; (56) Niobrara, Wyoming; (72) Camuy, Puerto Rico + + + + + (02) North Slope, Alaska; (13) Lowndes, Georgia; (17) Wabash, Illinois; (19) Wayne, Iowa; (20) Stafford, Kansas; (21) Oldham, Kentucky; (29) St Clair, Missouri; (31) York, Nebraska; (37) Warren, North Carolina; (47) White, Tennessee; (48) Grimes, Texas; (51) Tazewell, Virginia + + + + + (13) Marion, Georgia; (17) Will, Illinois; (19) Wright, Iowa; (20) Wabaunsee, Kansas; (21) Powell, Kentucky; (29) Schuyler, Missouri; (37) Yadkin, North Carolina; (48) Hardeman, Texas; (51) Wythe, Virginia + + + + + (48) Red River, Texas + + + + + (02) Valdez-Cordova, Alaska; (13) Sumter, Georgia; (48) Kenedy, Texas + + + + + (48) Panola, Texas + + + + + (13) Polk, Georgia; (21) Webster, Kentucky; (48) Hutchinson, Texas + + + + + (48) Shackelford, Texas + + + + + (13) Pickens, Georgia; (21) Warren, Kentucky; (29) Worth, Missouri; (48) Howard, Texas + + + + + (13) Long, Georgia; (17) Vermilion, Illinois; (18) Whitley, Indiana; (19) Washington, Iowa; (20) Smith, Kansas; (21) Ohio, Kentucky; (29) St Charles, Missouri; (31) Wheeler, Nebraska; (37) Wake, North Carolina; (47) Weakley, Tennessee; (48) Gregg, Texas; (51) Sussex, Virginia + + + + + (51) Roanoke, Virginia + + + + + (48) Rockwall, Texas + + + + + (70) Ngardmau, Palau + + + + + (13) Lanier, Georgia; (17) Shelby, Illinois; (18) Warrick, Indiana; (19) Taylor, Iowa; (20) Sedgwick, Kansas; (21) Montgomery, Kentucky; (27) Yellow Medicine, Minnesota; (29) Ralls, Missouri; (31) Thurston, Nebraska; (37) Swain, North Carolina; (39) Wood, Ohio; (47) Union, Tennessee; (48) Glasscock, Texas; (51) Smyth, Virginia + + + + + (48) Starr, Texas + + + + + (13) Monroe, Georgia; (20) Woodson, Kansas; (21) Russell, Kentucky; (29) Stoddard, Missouri; (48) Haskell, Texas + + + + + (48) Nueces, Texas + + + + + (48) Throckmorton, Texas + + + + + (51) Petersburg, Virginia + + + + + (48) Wilbarger, Texas + + + + + (02) Prince of Wales-Outer Ketchikan, Alaska; (13) Miller, Georgia; (17) Winnebago, Illinois; (20) Washington, Kansas; (21) Robertson, Kentucky; (29) Scott, Missouri; (48) Harris, Texas + + + + + (51) Virginia Beach, Virginia + + + + + (48) San Jacinto, Texas + + + + + (01) Jackson, Alabama; (05) Johnson, Arkansas; (06) San Bernardino, California; (08) Las Animas, Colorado; (12) Lee, Florida; (13) Colquitt, Georgia; (16) Oneida, Idaho; (17) Henderson, Illinois; (18) Jackson, Indiana; (19) Fremont, Iowa; (20) Greeley, Kansas; (21) Floyd, Kentucky; (22) Orleans, Louisiana; (26) Iron, Michigan; (27) Koochiching, Minnesota; (28) Lafayette, Mississippi; (29) Franklin, Missouri; (30) Phillips, Montana; (31) Garfield, Nebraska; (36) Orange, New York; (37) Gaston, North Carolina; (38) Ramsey, North Dakota; (39) Highland, Ohio; (40) Kay, Oklahoma; (41) Yamhill, Oregon; (42) Lancaster, Pennsylvania; (45) Newberry, South Carolina; (46) Jackson, South Dakota; (47) Hardin, Tennessee; (48) Chambers, Texas; (51) Giles, Virginia; (53) Walla Walla, Washington; (54) Pendleton, West Virginia; (55) Manitowoc, Wisconsin; (72) Isabela, Puerto Rico + + + + + (13) McIntosh, Georgia; (17) Wayne, Illinois; (19) Winneshiek, Iowa; (20) Sumner, Kansas; (21) Pendleton, Kentucky; (37) Wayne, North Carolina; (48) Hall, Texas; (51) Washington, Virginia + + + + + (01) Escambia, Alabama; (05) Grant, Arkansas; (06) Monterey, California; (08) Hinsdale, Colorado; (12) Hernando, Florida; (13) Chattahoochee, Georgia; (16) Jerome, Idaho; (17) Ford, Illinois; (18) Grant, Indiana; (19) Decatur, Iowa; (20) Ellsworth, Kansas; (21) Clinton, Kentucky; (22) Jefferson Davis, Louisiana; (26) Gogebic, Michigan; (27) Hennepin, Minnesota; (28) Humphreys, Mississippi; (29) Cooper, Missouri; (30) Lincoln, Montana; (31) Dodge, Nebraska; (35) Socorro, New Mexico; (36) Madison, New York; (37) Currituck, North Carolina; (38) McKenzie, North Dakota; (39) Gallia, Ohio; (40) Grant, Oklahoma; (41) Polk, Oregon; (42) Forest, Pennsylvania; (45) Jasper, South Carolina; (46) Gregory, South Dakota; (47) Gibson, Tennessee; (48) Burnet, Texas; (49) Washington, Utah; (51) Dinwiddie, Virginia; (53) Pierce, Washington; (54) Mason, West Virginia; (55) Jackson, Wisconsin; (72) Fajardo, Puerto Rico + + + + + (48) Moore, Texas + + + + + (01) Marion, Alabama; (05) Mississippi, Arkansas; (06) Siskiyou, California; (08) Park, Colorado; (12) Okeechobee, Florida; (13) Dooly, Georgia; (17) Kendall, Illinois; (18) Lawrence, Indiana; (19) Ida, Iowa; (20) Kearny, Kansas; (21) Hardin, Kentucky; (22) St James, Louisiana; (26) Livingston, Michigan; (27) Meeker, Minnesota; (28) Marshall, Mississippi; (29) Iron, Missouri; (30) Silver Bow, Montana; (31) Howard, Nebraska; (36) Schenectady, New York; (37) Hoke, North Carolina; (38) Stutsman, North Dakota; (39) Lorain, Ohio; (40) Major, Oklahoma; (42) Montour, Pennsylvania; (46) Meade, South Dakota; (47) Knox, Tennessee; (48) Comanche, Texas; (51) Isle Of Wight, Virginia; (54) Tucker, West Virginia; (55) Pierce, Wisconsin; (72) Maricao, Puerto Rico + + + + + (13) Irwin, Georgia; (17) Putnam, Illinois; (18) Switzerland, Indiana; (19) Pottawattamie, Iowa; (20) Reno, Kansas; (21) Marion, Kentucky; (26) Shiawassee, Michigan; (27) Traverse, Minnesota; (28) Webster, Mississippi; (29) Pemiscot, Missouri; (31) Saunders, Nebraska; (37) Robeson, North Carolina; (39) Trumbull, Ohio; (47) Sevier, Tennessee; (48) Foard, Texas; (51) Pulaski, Virginia + + + + + (48) Sherman, Texas + + + + + (51) Staunton, Virginia + + + + + (51) Fairfax, Virginia + + + + + (48) Uvalde, Texas + + + + + (68) Jaluit, Marshall Islands; (69) Tinian, Northern Mariana Islands + + + + + (48) Zapata, Texas + + + + + (13) Lee, Georgia; (17) Stephenson, Illinois; (18) Wayne, Indiana; (19) Van Buren, Iowa; (20) Shawnee, Kansas; (21) Muhlenberg, Kentucky; (29) Ray, Missouri; (31) Washington, Nebraska; (37) Tyrrell, North Carolina; (47) Warren, Tennessee; (48) Gonzales, Texas; (51) Spotsylvania, Virginia + + + + + (13) Terrell, Georgia; (48) Kleberg, Texas + + + + + (68) Namu, Marshall Islands + + + + + (01) Lauderdale, Alabama; (05) Lee, Arkansas; (06) San Joaquin, California; (08) Mesa, Colorado; (12) Liberty, Florida; (13) Coweta, Georgia; (16) Power, Idaho; (17) Jackson, Illinois; (18) Jefferson, Indiana; (19) Guthrie, Iowa; (20) Harper, Kansas; (21) Gallatin, Kentucky; (22) Pointe Coupee, Louisiana; (26) Kalamazoo, Michigan; (27) Lake Of The Woods, Minnesota; (28) Lawrence, Mississippi; (29) Greene, Missouri; (30) Powell, Montana; (31) Greeley, Nebraska; (36) Otsego, New York; (37) Granville, North Carolina; (38) Richland, North Dakota; (39) Huron, Ohio; (40) Latimer, Oklahoma; (42) Lehigh, Pennsylvania; (45) Pickens, South Carolina; (46) Kingsbury, South Dakota; (47) Henderson, Tennessee; (48) Clay, Texas; (51) Grayson, Virginia; (53) Yakima, Washington; (54) Preston, West Virginia; (55) Marquette, Wisconsin; (72) Juncos, Puerto Rico + + + + + (13) Oconee, Georgia; (21) Todd, Kentucky; (29) Warren, Missouri; (48) Hockley, Texas + + + + + (01) Baldwin, Alabama; (04) Cochise, Arizona; (05) Ashley, Arkansas; (06) Alpine, California; (08) Alamosa, Colorado; (09) Hartford, Connecticut; (10) New Castle, Delaware; (12) Baker, Florida; (13) Atkinson, Georgia; (15) Honolulu, Hawaii; (16) Adams, Idaho; (17) Alexander, Illinois; (18) Allen, Indiana; (19) Adams, Iowa; (20) Anderson, Kansas; (21) Allen, Kentucky; (22) Allen, Louisiana; (23) Aroostook, Maine; (24) Anne Arundel, Maryland; (25) Berkshire, Massachusetts; (26) Alger, Michigan; (27) Anoka, Minnesota; (28) Alcorn, Mississippi; (29) Andrew, Missouri; (30) Big Horn, Montana; (31) Antelope, Nebraska; (32) Clark, Nevada; (33) Carroll, New Hampshire; (34) Bergen, New Jersey; (35) Catron, New Mexico; (36) Allegany, New York; (37) Alexander, North Carolina; (38) Barnes, North Dakota; (39) Allen, Ohio; (40) Alfalfa, Oklahoma; (41) Benton, Oregon; (42) Allegheny, Pennsylvania; (44) Kent, Rhode Island; (45) Aiken, South Carolina; (46) Aurora, South Dakota; (47) Bedford, Tennessee; (48) Andrews, Texas; (49) Box Elder, Utah; (50) Bennington, Vermont; (51) Albemarle, Virginia; (53) Asotin, Washington; (54) Berkeley, West Virginia; (55) Ashland, Wisconsin; (56) Big Horn, Wyoming; (72) Aguada, Puerto Rico + + + + + (02) Wrangell-Petersburg, Alaska + + + + + (70) Ngiwal, Palau + + + + + (48) Sabine, Texas + + + + + (13) Lincoln, Georgia; (17) Union, Illinois; (18) White, Indiana; (19) Warren, Iowa; (20) Sherman, Kansas; (21) Nicholas, Kentucky; (29) Ripley, Missouri; (31) Webster, Nebraska; (37) Vance, North Carolina; (47) Wayne, Tennessee; (48) Grayson, Texas; (51) Surry, Virginia + + + + + (51) Martinsville, Virginia + + + + + (51) Lexington, Virginia + + + + + (13) Rabun, Georgia; (48) Jasper, Texas + + + + + (01) Cherokee, Alabama; (04) Pima, Arizona; (05) Clark, Arkansas; (06) Fresno, California; (08) Clear Creek, Colorado; (12) Clay, Florida; (13) Berrien, Georgia; (16) Bonneville, Idaho; (17) Champaign, Illinois; (18) Clark, Indiana; (19) Buchanan, Iowa; (20) Chautauqua, Kansas; (21) Boyd, Kentucky; (22) Calcasieu, Louisiana; (23) Penobscot, Maine; (24) Dorchester, Maryland; (25) Nantucket, Massachusetts; (26) Benzie, Michigan; (27) Carver, Minnesota; (28) Choctaw, Mississippi; (29) Boone, Missouri; (30) Daniels, Montana; (31) Buffalo, Nebraska; (32) Lyon, Nevada; (33) Sullivan, New Hampshire; (34) Hunterdon, New Jersey; (35) Guadalupe, New Mexico; (36) Clinton, New York; (37) Brunswick, North Carolina; (38) Cavalier, North Dakota; (39) Carroll, Ohio; (40) Carter, Oklahoma; (41) Douglas, Oregon; (42) Butler, Pennsylvania; (45) Charleston, South Carolina; (46) Butte, South Dakota; (47) Carter, Tennessee; (48) Bandera, Texas; (49) Grand, Utah; (50) Orleans, Vermont; (51) Bedford, Virginia; (53) Ferry, Washington; (54) Fayette, West Virginia; (55) Clark, Wisconsin; (56) Johnson, Wyoming; (72) Barranquitas, Puerto Rico + + + + + (01) Marengo, Alabama; (05) Miller, Arkansas; (06) Sierra, California; (08) Ouray, Colorado; (12) Okaloosa, Florida; (13) Dodge, Georgia; (17) Kankakee, Illinois; (18) La Porte, Indiana; (19) Humboldt, Iowa; (20) Johnson, Kansas; (21) Hancock, Kentucky; (22) St Helena, Louisiana; (26) Lenawee, Michigan; (27) Martin, Minnesota; (28) Marion, Mississippi; (29) Howell, Missouri; (30) Sheridan, Montana; (31) Hooker, Nebraska; (36) Saratoga, New York; (37) Hertford, North Carolina; (38) Steele, North Dakota; (39) Logan, Ohio; (40) McIntosh, Oklahoma; (42) Montgomery, Pennsylvania; (45) York, South Carolina; (46) Marshall, South Dakota; (47) Johnson, Tennessee; (48) Comal, Texas; (51) Highland, Virginia; (54) Taylor, West Virginia; (55) Pepin, Wisconsin; (72) Manati, Puerto Rico + + + + + (13) Jackson, Georgia; (17) Randolph, Illinois; (18) Tippecanoe, Indiana; (19) Poweshiek, Iowa; (20) Republic, Kansas; (21) Marshall, Kentucky; (26) Tuscola, Michigan; (27) Wabasha, Minnesota; (28) Wilkinson, Mississippi; (29) Perry, Missouri; (31) Scotts Bluff, Nebraska; (37) Rockingham, North Carolina; (39) Tuscarawas, Ohio; (47) Shelby, Tennessee; (48) Fort Bend, Texas; (51) Rappahannock, Virginia + + + + + (68) Majuro, Marshall Islands + + + + + (51) Lynchburg, Virginia + + + + + (48) Upton, Texas + + + + + (01) Fayette, Alabama; (05) Hempstead, Arkansas; (06) Nevada, California; (08) Jackson, Colorado; (12) Hillsborough, Florida; (13) Cherokee, Georgia; (16) Latah, Idaho; (17) Fulton, Illinois; (18) Hamilton, Indiana; (19) Des Moines, Iowa; (20) Ford, Kansas; (21) Cumberland, Kentucky; (22) Lafourche, Louisiana; (26) Gratiot, Michigan; (27) Hubbard, Minnesota; (28) Itawamba, Mississippi; (29) Dade, Missouri; (30) Madison, Montana; (31) Dundy, Nebraska; (35) Torrance, New Mexico; (36) Montgomery, New York; (37) Davidson, North Carolina; (38) Mercer, North Dakota; (39) Greene, Ohio; (40) Harmon, Oklahoma; (41) Tillamook, Oregon; (42) Fulton, Pennsylvania; (45) Lancaster, South Carolina; (46) Hamlin, South Dakota; (47) Grainger, Tennessee; (48) Calhoun, Texas; (49) Weber, Utah; (51) Essex, Virginia; (53) Skagit, Washington; (54) Mineral, West Virginia; (55) Juneau, Wisconsin; (72) Guayama, Puerto Rico + + + + + (01) Wilcox, Alabama; (05) Sebastian, Arkansas; (12) Walton, Florida; (13) Grady, Georgia; (17) Mercer, Illinois; (18) Pulaski, Indiana; (19) Mitchell, Iowa; (20) Nemaha, Kansas; (21) Leslie, Kentucky; (26) Ontonagon, Michigan; (27) Rice, Minnesota; (28) Stone, Mississippi; (29) Miller, Missouri; (31) Otoe, Nebraska; (37) Northampton, North Carolina; (39) Pike, Ohio; (40) Rogers, Oklahoma; (42) Wyoming, Pennsylvania; (46) Washabaugh, South Dakota; (47) Obion, Tennessee; (48) Duval, Texas; (51) Northampton, Virginia; (55) Washington, Wisconsin; (72) San Sebastian, Puerto Rico + + + + + (51) Charlottesville, Virginia + + + + + (51) Norfolk, Virginia + + + + + (01) Geneva, Alabama; (05) Howard, Arkansas; (06) Placer, California; (08) Kiowa, Colorado; (12) Indian River, Florida; (13) Clay, Georgia; (16) Lewis, Idaho; (17) Greene, Illinois; (18) Harrison, Indiana; (19) Dubuque, Iowa; (20) Geary, Kansas; (21) Edmonson, Kentucky; (22) Lincoln, Louisiana; (26) Houghton, Michigan; (27) Itasca, Minnesota; (28) Jasper, Mississippi; (29) Daviess, Missouri; (30) Mineral, Montana; (31) Franklin, Nebraska; (35) Valencia, New Mexico; (36) New York, New York; (37) Duplin, North Carolina; (38) Mountrail, North Dakota; (39) Hamilton, Ohio; (40) Haskell, Oklahoma; (41) Union, Oregon; (42) Huntingdon, Pennsylvania; (45) Lee, South Carolina; (46) Hanson, South Dakota; (47) Grundy, Tennessee; (48) Cameron, Texas; (51) Fauquier, Virginia; (53) Snohomish, Washington; (54) Monongalia, West Virginia; (55) Kewaunee, Wisconsin; (72) Guaynabo, Puerto Rico + + + + + (01) Lamar, Alabama; (05) Lawrence, Arkansas; (06) San Francisco, California; (08) Logan, Colorado; (12) Levy, Florida; (13) Cook, Georgia; (16) Payette, Idaho; (17) Iroquois, Illinois; (18) Jay, Indiana; (19) Grundy, Iowa; (20) Hamilton, Kansas; (21) Fulton, Kentucky; (22) Plaquemines, Louisiana; (26) Jackson, Michigan; (27) Lake, Minnesota; (28) Lauderdale, Mississippi; (29) Gentry, Missouri; (30) Powder River, Montana; (31) Grant, Nebraska; (36) Oswego, New York; (37) Graham, North Carolina; (38) Renville, North Dakota; (39) Holmes, Ohio; (40) Kiowa, Oklahoma; (42) Lebanon, Pennsylvania; (45) Orangeburg, South Carolina; (46) Jones, South Dakota; (47) Haywood, Tennessee; (48) Childress, Texas; (51) Goochland, Virginia; (53) Whitman, Washington; (54) Pocahontas, West Virginia; (55) Marinette, Wisconsin; (72) Juana Diaz, Puerto Rico + + + + + (68) Maloelap, Marshall Islands; (70) Palau Islands, Palau; (74) Midway Islands, U.S. Minor Outlying Islands + + + + + (01) De Kalb, Alabama; (05) Fulton, Arkansas; (06) Modoc, California; (08) Grand, Colorado; (12) Hardee, Florida; (13) Charlton, Georgia; (16) Idaho, Idaho; (17) Effingham, Illinois; (18) Fulton, Indiana; (19) Dallas, Iowa; (20) Elk, Kansas; (21) Clark, Kentucky; (22) Jackson, Louisiana; (26) Genesee, Michigan; (27) Goodhue, Minnesota; (28) Hinds, Mississippi; (29) Clinton, Missouri; (30) Lewis And Clark, Montana; (31) Deuel, Nebraska; (35) Santa Fe, New Mexico; (36) Lewis, New York; (37) Craven, North Carolina; (38) McHenry, North Dakota; (39) Franklin, Ohio; (40) Garvin, Oklahoma; (41) Morrow, Oregon; (42) Erie, Pennsylvania; (45) Hampton, South Carolina; (46) Faulk, South Dakota; (47) Fentress, Tennessee; (48) Brown, Texas; (49) Utah, Utah; (51) Cumberland, Virginia; (53) Pacific, Washington; (54) Marion, West Virginia; (55) Iowa, Wisconsin; (72) Culebra, Puerto Rico + + + + + (01) Hale, Alabama; (05) Izard, Arkansas; (06) Riverside, California; (08) Lake, Colorado; (12) Jefferson, Florida; (13) Clinch, Georgia; (16) Madison, Idaho; (17) Hamilton, Illinois; (18) Henry, Indiana; (19) Fayette, Iowa; (20) Graham, Kansas; (21) Estill, Kentucky; (22) Madison, Louisiana; (26) Ingham, Michigan; (27) Kanabec, Minnesota; (28) Jefferson Davis, Mississippi; (29) Dent, Missouri; (30) Musselshell, Montana; (31) Furnas, Nebraska; (36) Oneida, New York; (37) Edgecombe, North Carolina; (38) Oliver, North Dakota; (39) Hardin, Ohio; (40) Jackson, Oklahoma; (41) Wasco, Oregon; (42) Jefferson, Pennsylvania; (45) McCormick, South Carolina; (46) Hughes, South Dakota; (47) Hamilton, Tennessee; (48) Carson, Texas; (51) Fluvanna, Virginia; (53) Stevens, Washington; (54) Morgan, West Virginia; (55) Lafayette, Wisconsin; (72) Hatillo, Puerto Rico + + + + + (13) Quitman, Georgia; (21) Woodford, Kentucky; (48) Jackson, Texas + + + + + (13) Stewart, Georgia; (48) Kendall, Texas + + + + + (48) Val Verde, Texas + + + + + (74) Wake Island, U.S. Minor Outlying Islands + + + + + (48) Robertson, Texas + + + + + (48) Smith, Texas + + + + + (01) Monroe, Alabama; (05) Nevada, Arkansas; (06) Stanislaus, California; (08) Prowers, Colorado; (12) Palm Beach, Florida; (13) Early, Georgia; (17) La Salle, Illinois; (18) Marshall, Indiana; (19) Jasper, Iowa; (20) Labette, Kansas; (21) Hart, Kentucky; (22) St Martin, Louisiana; (26) Macomb, Michigan; (27) Mower, Minnesota; (28) Neshoba, Mississippi; (29) Jefferson, Missouri; (30) Teton, Montana; (31) Kearney, Nebraska; (36) Seneca, New York; (37) Jackson, North Carolina; (38) Walsh, North Dakota; (39) Mahoning, Ohio; (40) Murray, Oklahoma; (42) Perry, Pennsylvania; (46) Minnehaha, South Dakota; (47) Lawrence, Tennessee; (48) Coryell, Texas; (51) King George, Virginia; (54) Wayne, West Virginia; (55) Price, Wisconsin; (72) Moca, Puerto Rico + + + + + (01) Dallas, Alabama; (05) Franklin, Arkansas; (06) Merced, California; (08) Gilpin, Colorado; (12) Hamilton, Florida; (13) Catoosa, Georgia; (16) Gooding, Idaho; (17) Edwards, Illinois; (18) Franklin, Indiana; (19) Crawford, Iowa; (20) Edwards, Kansas; (21) Christian, Kentucky; (22) Iberville, Louisiana; (24) Worcester, Maryland; (26) Emmet, Michigan; (27) Freeborn, Minnesota; (28) Harrison, Mississippi; (29) Clay, Missouri; (30) Lake, Montana; (31) Dawson, Nebraska; (35) San Miguel, New Mexico; (36) Kings, New York; (37) Columbus, North Carolina; (38) Logan, North Dakota; (39) Fayette, Ohio; (40) Garfield, Oklahoma; (41) Marion, Oregon; (42) Elk, Pennsylvania; (45) Greenwood, South Carolina; (46) Fall River, South Dakota; (47) Fayette, Tennessee; (48) Brooks, Texas; (49) Uintah, Utah; (51) Culpeper, Virginia; (53) Okanogan, Washington; (54) McDowell, West Virginia; (55) Green Lake, Wisconsin; (72) Corozal, Puerto Rico + + + + + (51) Bristol, Virginia + + + + + (13) Upson, Georgia; (48) Limestone, Texas + + + + + (05) Washington, Arkansas; (13) Haralson, Georgia; (17) Peoria, Illinois; (18) Scott, Indiana; (19) Osceola, Iowa; (20) Ottawa, Kansas; (21) Lyon, Kentucky; (26) Roscommon, Michigan; (27) Sibley, Minnesota; (28) Tunica, Mississippi; (29) New Madrid, Missouri; (31) Polk, Nebraska; (37) Perquimans, North Carolina; (39) Sandusky, Ohio; (40) Tulsa, Oklahoma; (47) Rhea, Tennessee; (48) Erath, Texas; (51) Pittsylvania, Virginia; (72) Vega Alta, Puerto Rico + + + + + (51) Williamsburg, Virginia + + + + + (51) Emporia, Virginia + + + + + (01) Houston, Alabama; (05) Jefferson, Arkansas; (06) San Benito, California; (08) Larimer, Colorado; (12) Lake, Florida; (13) Coffee, Georgia; (16) Nez Perce, Idaho; (17) Hardin, Illinois; (18) Huntington, Indiana; (19) Franklin, Iowa; (20) Gray, Kansas; (21) Fleming, Kentucky; (22) Natchitoches, Louisiana; (26) Iosco, Michigan; (27) Kittson, Minnesota; (28) Kemper, Mississippi; (29) Dunklin, Missouri; (30) Petroleum, Montana; (31) Garden, Nebraska; (36) Ontario, New York; (37) Franklin, North Carolina; (38) Pierce, North Dakota; (39) Henry, Ohio; (40) Johnston, Oklahoma; (41) Wheeler, Oregon; (42) Lackawanna, Pennsylvania; (45) Marlboro, South Carolina; (46) Hyde, South Dakota; (47) Hardeman, Tennessee; (48) Castro, Texas; (51) Frederick, Virginia; (53) Wahkiakum, Washington; (54) Ohio, West Virginia; (55) Lincoln, Wisconsin; (72) Humacao, Puerto Rico + + + + + (48) Midland, Texas + + + + + (48) Travis, Texas + + + + + (02) Juneau, Alaska; (68) Jabat, Marshall Islands; (69) Saipan, Northern Mariana Islands + + + + + (70) Ngaraard, Palau + + + + + (13) Taylor, Georgia; (48) King, Texas + + + + + (51) Newport News, Virginia + + + + + (13) Laurens, Georgia; (17) Stark, Illinois; (18) Washington, Indiana; (19) Union, Iowa; (20) Seward, Kansas; (21) Morgan, Kentucky; (29) Randolph, Missouri; (31) Valley, Nebraska; (37) Transylvania, North Carolina; (39) Wyandot, Ohio; (47) Van Buren, Tennessee; (48) Goliad, Texas; (51) Southampton, Virginia + + + + + (02) Yukon-Koyukuk, Alaska + + + + + (68) Rongrik, Marshall Islands + + + + + (68) Namorik, Marshall Islands + + + + + (02) Northwest Arctic (Kobuk), Alaska; (68) Kili, Marshall Islands + + + + + (01) Butler, Alabama; (02) Aleutians East, Alaska; (04) Maricopa, Arizona; (05) Calhoun, Arkansas; (06) Contra Costa, California; (08) Boulder, Colorado; (09) Tolland, Connecticut; (12) Calhoun, Florida; (13) Barrow, Georgia; (16) Blaine, Idaho; (17) Calhoun, Illinois; (18) Brown, Indiana; (19) Black Hawk, Iowa; (20) Brown, Kansas; (21) Bell, Kentucky; (22) Bienville, Louisiana; (23) Knox, Maine; (24) Carroll, Maryland; (25) Hampden, Massachusetts; (26) Baraga, Michigan; (27) Blue Earth, Minnesota; (28) Calhoun, Mississippi; (29) Bates, Missouri; (30) Cascade, Montana; (31) Box Butte, Nebraska; (32) Humboldt, Nevada; (33) Merrimack, New Hampshire; (34) Essex, New Jersey; (35) Dona Ana, New Mexico; (36) Chautauqua, New York; (37) Beaufort, North Carolina; (38) Burke, North Dakota; (39) Belmont, Ohio; (40) Bryan, Oklahoma; (41) Crook, Oregon; (42) Blair, Pennsylvania; (45) Beaufort, South Carolina; (46) Brown, South Dakota; (47) Campbell, Tennessee; (48) Atascosa, Texas; (49) Duchesne, Utah; (50) Grand Isle, Vermont; (51) Arlington, Virginia; (53) Columbia, Washington; (54) Calhoun, West Virginia; (55) Burnett, Wisconsin; (56) Fremont, Wyoming; (72) Arecibo, Puerto Rico + + + + + (35) Los Alamos, New Mexico + + + + + (13) Walker, Georgia; (48) Lipscomb, Texas + + + + + (01) Shelby, Alabama; (05) Prairie, Arkansas; (08) Summit, Colorado; (12) Seminole, Florida; (13) Forsyth, Georgia; (17) Macoupin, Illinois; (18) Orange, Indiana; (19) Lucas, Iowa; (20) Marshall, Kansas; (21) Kenton, Kentucky; (22) Washington, Louisiana; (26) Montcalm, Michigan; (27) Pipestone, Minnesota; (28) Prentiss, Mississippi; (29) Livingston, Missouri; (31) McPherson, Nebraska; (36) Wayne, New York; (37) Martin, North Carolina; (39) Morrow, Ohio; (40) Pawnee, Oklahoma; (42) Tioga, Pennsylvania; (46) Stanley, South Dakota; (47) Marshall, Tennessee; (48) Deaf Smith, Texas; (51) Mecklenburg, Virginia; (55) Sheboygan, Wisconsin; (72) Rincon, Puerto Rico + + + + + (51) Salem, Virginia + + + + + (72) Florida, Puerto Rico + + + + + (02) Bristol Bay, Alaska; (64) Yap, Federated States of Micronesia; (68) Bikar, Marshall Islands; (75) Trust Territory of the Pacific Islands, + + + + + (01) Covington, Alabama; (05) Dallas, Arkansas; (06) Madera, California; (08) Elbert, Colorado; (12) Gadsden, Florida; (13) Camden, Georgia; (16) Elmore, Idaho; (17) De Witt, Illinois; (18) Elkhart, Indiana; (19) Clarke, Iowa; (20) Decatur, Kansas; (21) Carlisle, Kentucky; (22) Evangeline, Louisiana; (24) Somerset, Maryland; (26) Crawford, Michigan; (27) Dodge, Minnesota; (28) George, Mississippi; (29) Cedar, Missouri; (30) Granite, Montana; (31) Cuming, Nebraska; (34) Union, New Jersey; (35) Rio Arriba, New Mexico; (36) Greene, New York; (37) Cherokee, North Carolina; (38) Griggs, North Dakota; (39) Defiance, Ohio; (40) Custer, Oklahoma; (41) Lane, Oregon; (42) Crawford, Pennsylvania; (45) Fairfield, South Carolina; (46) Deuel, South Dakota; (47) Decatur, Tennessee; (48) Brazoria, Texas; (49) Sanpete, Utah; (53) Klickitat, Washington; (54) Kanawha, West Virginia; (55) Fond Du Lac, Wisconsin; (56) Teton, Wyoming; (72) Ciales, Puerto Rico + + + + + (13) Screven, Georgia; (48) Johnson, Texas + + + + + (48) Williamson, Texas + + + + + (02) Nome, Alaska; (68) Likiep, Marshall Islands + + + + + (01) Talladega, Alabama; (05) Randolph, Arkansas; (08) Washington, Colorado; (12) Suwannee, Florida; (13) Fulton, Georgia; (17) Marion, Illinois; (18) Parke, Indiana; (19) Madison, Iowa; (20) Miami, Kansas; (21) Knox, Kentucky; (22) West Baton Rouge, Louisiana; (26) Muskegon, Michigan; (27) Pope, Minnesota; (28) Rankin, Mississippi; (29) Macon, Missouri; (31) Merrick, Nebraska; (36) Wyoming, New York; (37) Mitchell, North Carolina; (39) Noble, Ohio; (40) Pittsburg, Oklahoma; (42) Venango, Pennsylvania; (46) Todd, South Dakota; (47) Meigs, Tennessee; (48) Denton, Texas; (51) Montgomery, Virginia; (55) Trempealeau, Wisconsin; (72) Sabana Grande, Puerto Rico + + + + + (01) Coffee, Alabama; (05) Craighead, Arkansas; (06) Kings, California; (08) Denver, Colorado; (12) Duval, Florida; (13) Bulloch, Georgia; (16) Cassia, Idaho; (17) Cook, Illinois; (18) Decatur, Indiana; (19) Cedar, Iowa; (20) Coffey, Kansas; (21) Butler, Kentucky; (22) De Soto, Louisiana; (23) York, Maine; (24) Montgomery, Maryland; (26) Cheboygan, Michigan; (27) Cook, Minnesota; (28) Covington, Mississippi; (29) Cape Girardeau, Missouri; (30) Gallatin, Montana; (31) Cherry, Nebraska; (32) Washoe, Nevada; (34) Passaic, New Jersey; (35) McKinley, New Mexico; (36) Essex, New York; (37) Carteret, North Carolina; (38) Foster, North Dakota; (39) Coshocton, Ohio; (40) Comanche, Oklahoma; (41) Jefferson, Oregon; (42) Clarion, Pennsylvania; (45) Darlington, South Carolina; (46) Corson, South Dakota; (47) Coffee, Tennessee; (48) Blanco, Texas; (49) Piute, Utah; (51) Campbell, Virginia; (53) Jefferson, Washington; (54) Hardy, West Virginia; (55) Douglas, Wisconsin; (56) Platte, Wyoming; (72) Carolina, Puerto Rico + + + + + (13) Taliaferro, Georgia; (48) Kerr, Texas + + + + + (48) Taylor, Texas + + + + + (13) Wilcox, Georgia; (48) Marion, Texas + + + + + (68) Lae, Marshall Islands + + + + + (01) Pickens, Alabama; (05) Phillips, Arkansas; (06) Tulare, California; (08) Routt, Colorado; (12) Putnam, Florida; (13) Emanuel, Georgia; (17) Logan, Illinois; (18) Montgomery, Indiana; (19) Keokuk, Iowa; (20) Linn, Kansas; (21) Hopkins, Kentucky; (22) Tensas, Louisiana; (26) Mecosta, Michigan; (27) Norman, Minnesota; (28) Panola, Mississippi; (29) Lafayette, Missouri; (30) Wheatland, Montana; (31) Knox, Nebraska; (36) Tioga, New York; (37) Lenoir, North Carolina; (39) Mercer, Ohio; (40) Okfuskee, Oklahoma; (42) Schuylkill, Pennsylvania; (46) Potter, South Dakota; (47) McMinn, Tennessee; (48) Crosby, Texas; (51) Loudoun, Virginia; (54) Wood, West Virginia; (55) Rusk, Wisconsin; (72) Orocovis, Puerto Rico + + + + + (51) Franklin, Virginia + + + + + (51) Buena Vista, Virginia + + + + + (13) Troup, Georgia; (48) Lavaca, Texas + + + + + (48) Scurry, Texas + + + + + (01) Chilton, Alabama; (04) Pinal, Arizona; (05) Clay, Arkansas; (06) Glenn, California; (08) Conejos, Colorado; (12) Collier, Florida; (13) Bibb, Georgia; (16) Boundary, Idaho; (17) Christian, Illinois; (18) Clay, Indiana; (19) Buena Vista, Iowa; (20) Cherokee, Kansas; (21) Boyle, Kentucky; (22) Caldwell, Louisiana; (23) Piscataquis, Maine; (24) Frederick, Maryland; (25) Norfolk, Massachusetts; (26) Berrien, Michigan; (27) Cass, Minnesota; (28) Claiborne, Mississippi; (29) Buchanan, Missouri; (30) Dawson, Montana; (31) Burt, Nebraska; (32) Mineral, Nevada; (34) Mercer, New Jersey; (35) Harding, New Mexico; (36) Columbia, New York; (37) Buncombe, North Carolina; (38) Dickey, North Dakota; (39) Champaign, Ohio; (40) Cherokee, Oklahoma; (41) Gilliam, Oregon; (42) Cambria, Pennsylvania; (45) Cherokee, South Carolina; (46) Campbell, South Dakota; (47) Cheatham, Tennessee; (48) Bastrop, Texas; (49) Iron, Utah; (50) Rutland, Vermont; (51) Bland, Virginia; (53) Franklin, Washington; (54) Gilmer, West Virginia; (55) Columbia, Wisconsin; (56) Laramie, Wyoming; (72) Bayamon, Puerto Rico + + + + + (01) Barbour, Alabama; (04) Coconino, Arizona; (05) Baxter, Arkansas; (06) Amador, California; (08) Arapahoe, Colorado; (09) Litchfield, Connecticut; (10) Sussex, Delaware; (12) Bay, Florida; (13) Bacon, Georgia; (15) Kalawao, Hawaii; (16) Bannock, Idaho; (17) Bond, Illinois; (18) Bartholomew, Indiana; (19) Allamakee, Iowa; (20) Atchison, Kansas; (21) Anderson, Kentucky; (22) Ascension, Louisiana; (23) Cumberland, Maine; (24) Baltimore, Maryland; (25) Bristol, Massachusetts; (26) Allegan, Michigan; (27) Becker, Minnesota; (28) Amite, Mississippi; (29) Atchison, Missouri; (30) Blaine, Montana; (31) Arthur, Nebraska; (32) Douglas, Nevada; (33) Cheshire, New Hampshire; (34) Burlington, New Jersey; (35) Chaves, New Mexico; (36) Bronx, New York; (37) Alleghany, North Carolina; (38) Benson, North Dakota; (39) Ashland, Ohio; (40) Atoka, Oklahoma; (41) Clackamas, Oregon; (42) Armstrong, Pennsylvania; (44) Newport, Rhode Island; (45) Allendale, South Carolina; (46) Beadle, South Dakota; (47) Benton, Tennessee; (48) Angelina, Texas; (49) Cache, Utah; (50) Caledonia, Vermont; (51) Alleghany, Virginia; (53) Benton, Washington; (54) Boone, West Virginia; (55) Barron, Wisconsin; (56) Campbell, Wyoming; (64) Kosrae, Federated States of Micronesia; (72) Aguadilla, Puerto Rico; (75) Trust Territory of the Pacific Islands, + + + + + (51) Colonial Heights, Virginia + + + + + (70) Tobi, Palau + + + + + (13) Montgomery, Georgia; (20) Wyandotte, Kansas; (21) Scott, Kentucky; (29) Stone, Missouri; (48) Hays, Texas + + + + + (48) Oldham, Texas + + + + + (01) Russell, Alabama; (05) Polk, Arkansas; (06) Yolo, California; (08) San Miguel, Colorado; (12) Santa Rosa, Florida; (13) Fayette, Georgia; (17) McLean, Illinois; (18) Noble, Indiana; (19) Linn, Iowa; (20) McPherson, Kansas; (21) Jessamine, Kentucky; (22) Vermilion, Louisiana; (26) Missaukee, Michigan; (27) Pennington, Minnesota; (28) Pike, Mississippi; (29) Lincoln, Missouri; (30) Yellowstone Natl Park (part), Montana; (31) Logan, Nebraska; (36) Warren, New York; (37) Macon, North Carolina; (39) Montgomery, Ohio; (40) Osage, Oklahoma; (42) Sullivan, Pennsylvania; (46) Shannon, South Dakota; (47) Madison, Tennessee; (48) Dallas, Texas; (51) Madison, Virginia; (55) Sawyer, Wisconsin; (72) Ponce, Puerto Rico + + + + + (68) Wotho, Marshall Islands + + + + + (48) Menard, Texas + + + + + (02) Matanuska-Susitna, Alaska; (68) Lib, Marshall Islands + + + + + (13) Wayne, Georgia; (48) Lynn, Texas + + + + + (51) Suffolk, Virginia + + + + + (02) Fairbanks North Star, Alaska; (68) Enewetak, Marshall Islands + + + + + (77) US Miscellaneous Pacific Islands, + + + + + (02) Kodiak Island, Alaska; (68) Kwajalein, Marshall Islands; (70) Koror, Palau; (74) Jarvis Island, U.S. Minor Outlying Islands + + + + + (13) Pulaski, Georgia; (21) Whitley, Kentucky; (48) Irion, Texas + + + + + (13) Worth, Georgia; (48) Matagorda, Texas + + + + + (48) Terrell, Texas + + + + + (60) Swains Island, American Samoa; (64) Ponape, Federated States of Micronesia; (68) Arno, Marshall Islands; (75) Trust Territory of the Pacific Islands, + + + + + (48) Swisher, Texas + + + + + (48) Pecos, Texas + + + + + (02) Dillingham, Alaska; (68) Bikini, Marshall Islands + + + + + (05) White, Arkansas; (13) Harris, Georgia; (17) Perry, Illinois; (18) Shelby, Indiana; (19) Page, Iowa; (20) Pawnee, Kansas; (21) McCracken, Kentucky; (26) Saginaw, Michigan; (27) Stearns, Minnesota; (28) Union, Mississippi; (29) Newton, Missouri; (31) Red Willow, Nebraska; (37) Person, North Carolina; (39) Scioto, Ohio; (40) Wagoner, Oklahoma; (47) Roane, Tennessee; (48) Falls, Texas; (51) Powhatan, Virginia; (72) Vega Baja, Puerto Rico + + + + + (48) Sterling, Texas + + + + + (74) Johnston Atoll, U.S. Minor Outlying Islands + + + + + (48) Willacy, Texas + + + + + (13) Oglethorpe, Georgia; (21) Trigg, Kentucky; (29) Washington, Missouri; (48) Hood, Texas + + + + + (01) Lowndes, Alabama; (05) Lonoke, Arkansas; (06) Santa Clara, California; (08) Montrose, Colorado; (12) Martin, Florida; (13) Dawson, Georgia; (16) Valley, Idaho; (17) Jo Daviess, Illinois; (18) Kosciusko, Indiana; (19) Harrison, Iowa; (20) Jackson, Kansas; (21) Grayson, Kentucky; (22) Sabine, Louisiana; (26) Lake, Michigan; (27) McLeod, Minnesota; (28) Lincoln, Mississippi; (29) Hickory, Missouri; (30) Roosevelt, Montana; (31) Hayes, Nebraska; (36) Richmond, New York; (37) Harnett, North Carolina; (38) Sioux, North Dakota; (39) Lake, Ohio; (40) Love, Oklahoma; (42) Mercer, Pennsylvania; (45) Sumter, South Carolina; (46) Lyman, South Dakota; (47) Humphreys, Tennessee; (48) Collin, Texas; (51) Hanover, Virginia; (54) Ritchie, West Virginia; (55) Oneida, Wisconsin; (69) Northern Islands, Northern Mariana Islands; (72) Las Piedras, Puerto Rico + + + + + (13) Schley, Georgia; (48) Jim Wells, Texas + + + + + (68) Ujelang, Marshall Islands; (74) Palmyra Atoll, U.S. Minor Outlying Islands + + + + + (51) Richmond, Virginia + + + + + (13) Lamar, Georgia; (17) Scott, Illinois; (18) Warren, Indiana; (19) Tama, Iowa; (20) Scott, Kansas; (21) Monroe, Kentucky; (27) Wright, Minnesota; (29) Putnam, Missouri; (31) Thomas, Nebraska; (37) Surry, North Carolina; (39) Williams, Ohio; (47) Unicoi, Tennessee; (48) Gillespie, Texas; (51) Shenandoah, Virginia + + + + + (48) Stephens, Texas + + + + + (13) Wheeler, Georgia; (48) McLennan, Texas + + + + + (13) Muscogee, Georgia; (21) Spencer, Kentucky; (29) Texas, Missouri; (48) Hidalgo, Texas + + + + + (48) Mitchell, Texas + + + + + (51) Nansemond, Virginia + + + + + (48) Reeves, Texas + + + + + (01) Macon, Alabama; (05) Madison, Arkansas; (06) Santa Cruz, California; (08) Morgan, Colorado; (12) Monroe, Florida; (13) Decatur, Georgia; (16) Washington, Idaho; (17) Johnson, Illinois; (18) Lagrange, Indiana; (19) Henry, Iowa; (20) Jefferson, Kansas; (21) Green, Kentucky; (22) St Bernard, Louisiana; (26) Lapeer, Michigan; (27) Mahnomen, Minnesota; (28) Lowndes, Mississippi; (29) Holt, Missouri; (30) Rosebud, Montana; (31) Hitchcock, Nebraska; (36) Rockland, New York; (37) Haywood, North Carolina; (38) Slope, North Dakota; (39) Lawrence, Ohio; (40) McClain, Oklahoma; (42) Mifflin, Pennsylvania; (45) Union, South Carolina; (46) McCook, South Dakota; (47) Jackson, Tennessee; (48) Collingsworth, Texas; (51) Henrico, Virginia; (54) Roane, West Virginia; (55) Outagamie, Wisconsin; (72) Loiza, Puerto Rico + + + + + (68) Wotje, Marshall Islands + + + + + (02) Bethel, Alaska; (60) Western, American Samoa; (64) Truk, Federated States of Micronesia; (68) Aur, Marshall Islands; (74) Baker Island, U.S. Minor Outlying Islands; (75) Trust Territory of the Pacific Islands, + + + + + (13) Putnam, Georgia; (21) Wolfe, Kentucky; (48) Jack, Texas + + + + + (13) Warren, Georgia; (48) Loving, Texas + + + + + (13) Talbot, Georgia; (48) Kent, Texas + + + + + (48) Washington, Texas + + + + + (51) Bedford, Virginia + + + + + (04) La Paz, Arizona + + + + + (48) Montgomery, Texas + + + + + (01) Blount, Alabama; (04) Graham, Arizona; (05) Boone, Arkansas; (06) Calaveras, California; (08) Baca, Colorado; (09) New Haven, Connecticut; (12) Brevard, Florida; (13) Baldwin, Georgia; (15) Maui, Hawaii; (16) Benewah, Idaho; (17) Brown, Illinois; (18) Blackford, Indiana; (19) Audubon, Iowa; (20) Barton, Kansas; (21) Barren, Kentucky; (22) Avoyelles, Louisiana; (23) Hancock, Maine; (24) Calvert, Maryland; (25) Essex, Massachusetts; (26) Antrim, Michigan; (27) Benton, Minnesota; (28) Benton, Mississippi; (29) Barry, Missouri; (30) Carbon, Montana; (31) Blaine, Nebraska; (32) Esmeralda, Nevada; (33) Grafton, New Hampshire; (34) Cape May, New Jersey; (35) Curry, New Mexico; (36) Cattaraugus, New York; (37) Ashe, North Carolina; (38) Bottineau, North Dakota; (39) Athens, Ohio; (40) Beckham, Oklahoma; (41) Columbia, Oregon; (42) Bedford, Pennsylvania; (44) Washington, Rhode Island; (45) Bamberg, South Carolina; (46) Bon Homme, South Dakota; (47) Blount, Tennessee; (48) Archer, Texas; (49) Daggett, Utah; (50) Essex, Vermont; (51) Amherst, Virginia; (53) Clallam, Washington; (54) Brooke, West Virginia; (55) Brown, Wisconsin; (56) Converse, Wyoming; (72) Aibonito, Puerto Rico + + + + + (13) Meriwether, Georgia; (17) Williamson, Illinois; (20) Wallace, Kansas; (21) Pulaski, Kentucky; (29) Scotland, Missouri; (37) Yancey, North Carolina; (48) Hardin, Texas; (51) York, Virginia + + + + + (51) Covington, Virginia + + + + + (01) Mobile, Alabama; (05) Montgomery, Arkansas; (06) Sonoma, California; (08) Pitkin, Colorado; (12) Osceola, Florida; (13) Douglas, Georgia; (17) Lake, Illinois; (18) Marion, Indiana; (19) Jackson, Iowa; (20) Kiowa, Kansas; (21) Harrison, Kentucky; (22) St Landry, Louisiana; (26) Mackinac, Michigan; (27) Morrison, Minnesota; (28) Montgomery, Mississippi; (29) Jasper, Missouri; (30) Sweet Grass, Montana; (31) Johnson, Nebraska; (36) Schuyler, New York; (37) Iredell, North Carolina; (38) Traill, North Dakota; (39) Madison, Ohio; (40) Mayes, Oklahoma; (42) Northumberland, Pennsylvania; (46) Miner, South Dakota; (47) Lauderdale, Tennessee; (48) Cooke, Texas; (51) King And Queen, Virginia; (54) Upshur, West Virginia; (55) Portage, Wisconsin; (72) Mayaguez, Puerto Rico + + + + + (01) Cleburne, Alabama; (05) Conway, Arkansas; (06) Kern, California; (08) Delta, Colorado; (12) Dixie, Florida; (13) Bryan, Georgia; (16) Caribou, Idaho; (17) Coles, Illinois; (18) Dearborn, Indiana; (19) Cass, Iowa; (20) Cloud, Kansas; (21) Bullitt, Kentucky; (22) Concordia, Louisiana; (23) Washington, Maine; (24) Kent, Maryland; (26) Charlevoix, Michigan; (27) Clearwater, Minnesota; (28) Copiah, Mississippi; (29) Camden, Missouri; (30) Flathead, Montana; (31) Chase, Nebraska; (32) Storey, Nevada; (34) Ocean, New Jersey; (35) Luna, New Mexico; (36) Erie, New York; (37) Camden, North Carolina; (38) Emmons, North Dakota; (39) Columbiana, Ohio; (40) Coal, Oklahoma; (41) Jackson, Oregon; (42) Chester, Pennsylvania; (45) Colleton, South Carolina; (46) Codington, South Dakota; (47) Cocke, Tennessee; (48) Bexar, Texas; (49) Morgan, Utah; (51) Buckingham, Virginia; (53) Island, Washington; (54) Hancock, West Virginia; (55) Door, Wisconsin; (56) Park, Wyoming; (72) Canovanas, Puerto Rico + + + + + (13) Tattnall, Georgia; (48) Kimble, Texas + + + + + (70) Ngarchelong, Palau + + + + + (02) Aleutian Islands, Alaska; (60) Eastern, American Samoa; (66) Guam, Guam; (68) Ailinglaplap, Marshall Islands; (69) Garapan, Northern Mariana Islands; (70) Angaur, Palau; (78) St. Croix, Virgin Islands of the U.S. + + + + + (05) Sharp, Arkansas; (13) Gwinnett, Georgia; (17) Montgomery, Illinois; (18) Randolph, Indiana; (19) Monroe, Iowa; (20) Ness, Kansas; (21) Lewis, Kentucky; (26) Oscoda, Michigan; (27) Roseau, Minnesota; (28) Tallahatchie, Mississippi; (29) Moniteau, Missouri; (31) Perkins, Nebraska; (37) Orange, North Carolina; (39) Preble, Ohio; (40) Sequoyah, Oklahoma; (46) Yankton, South Dakota; (47) Perry, Tennessee; (48) Ector, Texas; (51) Nottoway, Virginia; (55) Waupaca, Wisconsin; (72) Toa Alta, Puerto Rico + + + + + (13) Jones, Georgia; (17) Schuyler, Illinois; (18) Wabash, Indiana; (19) Story, Iowa; (20) Saline, Kansas; (21) Metcalfe, Kentucky; (27) Winona, Minnesota; (29) Pulaski, Missouri; (31) Thayer, Nebraska; (37) Stokes, North Carolina; (39) Wayne, Ohio; (47) Trousdale, Tennessee; (48) Garza, Texas; (51) Scott, Virginia + + + + + (13) Ware, Georgia; (48) Llano, Texas + + + + + (01) Lawrence, Alabama; (05) Lincoln, Arkansas; (06) San Luis Obispo, California; (08) Mineral, Colorado; (12) Madison, Florida; (13) Crawford, Georgia; (16) Shoshone, Idaho; (17) Jasper, Illinois; (18) Jennings, Indiana; (19) Hamilton, Iowa; (20) Harvey, Kansas; (21) Garrard, Kentucky; (22) Rapides, Louisiana; (26) Kalkaska, Michigan; (27) Le Sueur, Minnesota; (28) Leake, Mississippi; (29) Grundy, Missouri; (30) Prairie, Montana; (31) Hall, Nebraska; (36) Putnam, New York; (37) Greene, North Carolina; (38) Rolette, North Dakota; (39) Jackson, Ohio; (40) Le Flore, Oklahoma; (42) Luzerne, Pennsylvania; (45) Richland, South Carolina; (46) Lake, South Dakota; (47) Henry, Tennessee; (48) Cochran, Texas; (51) Greene, Virginia; (54) Putnam, West Virginia; (55) Milwaukee, Wisconsin; (72) Lajas, Puerto Rico + + + + + (51) Portsmouth, Virginia + + + + + (13) Randolph, Georgia; (48) Jeff Davis, Texas + + + + + (13) Jefferson, Georgia; (17) St Clair, Illinois; (18) Vanderburgh, Indiana; (19) Scott, Iowa; (20) Rooks, Kansas; (21) Meade, Kentucky; (26) Wayne, Michigan; (27) Washington, Minnesota; (28) Yazoo, Mississippi; (29) Pike, Missouri; (31) Sherman, Nebraska; (37) Sampson, North Carolina; (39) Vinton, Ohio; (47) Sullivan, Tennessee; (48) Frio, Texas; (51) Rockbridge, Virginia + + + + + (70) Ngchesar, Palau + + + + + (48) Randall, Texas + + + + + (68) Rongelap, Marshall Islands; (70) Peleliu, Palau; (74) Navassa Island, U.S. Minor Outlying Islands + + + + + (01) Dale, Alabama; (05) Faulkner, Arkansas; (06) Mendocino, California; (08) Garfield, Colorado; (12) Gulf, Florida; (13) Carroll, Georgia; (16) Gem, Idaho; (17) Edgar, Illinois; (18) Fountain, Indiana; (19) Clinton, Iowa; (20) Douglas, Kansas; (21) Casey, Kentucky; (22) Iberia, Louisiana; (24) Wicomico, Maryland; (26) Eaton, Michigan; (27) Fillmore, Minnesota; (28) Hancock, Mississippi; (29) Clark, Missouri; (30) Judith Basin, Montana; (31) Dawes, Nebraska; (35) San Juan, New Mexico; (36) Jefferson, New York; (37) Cleveland, North Carolina; (38) La Moure, North Dakota; (39) Fairfield, Ohio; (40) Ellis, Oklahoma; (41) Malheur, Oregon; (42) Delaware, Pennsylvania; (45) Greenville, South Carolina; (46) Edmunds, South Dakota; (47) Dyer, Tennessee; (48) Briscoe, Texas; (49) Tooele, Utah; (51) Craig, Virginia; (53) Mason, Washington; (54) Logan, West Virginia; (55) Green, Wisconsin; (56) Weston, Wyoming; (72) Comerio, Puerto Rico + + + + + (01) Franklin, Alabama; (05) Hot Spring, Arkansas; (06) Orange, California; (08) Jefferson, Colorado; (12) Holmes, Florida; (13) Clarke, Georgia; (16) Lemhi, Idaho; (17) Gallatin, Illinois; (18) Hancock, Indiana; (19) Dickinson, Iowa; (20) Franklin, Kansas; (21) Daviess, Kentucky; (22) La Salle, Louisiana; (26) Hillsdale, Michigan; (27) Isanti, Minnesota; (28) Jackson, Mississippi; (29) Dallas, Missouri; (30) Meagher, Montana; (31) Fillmore, Nebraska; (35) Union, New Mexico; (36) Nassau, New York; (37) Davie, North Carolina; (38) Morton, North Dakota; (39) Guernsey, Ohio; (40) Harper, Oklahoma; (41) Umatilla, Oregon; (42) Greene, Pennsylvania; (45) Laurens, South Carolina; (46) Hand, South Dakota; (47) Greene, Tennessee; (48) Callahan, Texas; (51) Fairfax, Virginia; (53) Skamania, Washington; (54) Mingo, West Virginia; (55) Kenosha, Wisconsin; (72) Guayanilla, Puerto Rico + + + + + (13) Walton, Georgia; (48) Live Oak, Texas + + + + + (13) Union, Georgia; (48) Liberty, Texas + + + + + (48) Maverick, Texas + + + + + (48) San Augustine, Texas + + + + + (48) Wharton, Texas + + + + + (51) Waynesboro, Virginia + + + + + (48) Navarro, Texas + + + + + (01) Sumter, Alabama; (05) Pulaski, Arkansas; (08) Teller, Colorado; (12) Sumter, Florida; (13) Franklin, Georgia; (17) Madison, Illinois; (18) Owen, Indiana; (19) Lyon, Iowa; (20) Meade, Kansas; (21) Knott, Kentucky; (22) Webster, Louisiana; (26) Montmorency, Michigan; (27) Polk, Minnesota; (28) Quitman, Mississippi; (29) McDonald, Missouri; (31) Madison, Nebraska; (36) Westchester, New York; (37) Mecklenburg, North Carolina; (39) Muskingum, Ohio; (40) Payne, Oklahoma; (42) Union, Pennsylvania; (46) Sully, South Dakota; (47) Maury, Tennessee; (48) Delta, Texas; (51) Middlesex, Virginia; (55) Taylor, Wisconsin; (72) Rio Grande, Puerto Rico + + + + + (01) Chambers, Alabama; (04) Navajo, Arizona; (05) Chicot, Arkansas; (06) El Dorado, California; (08) Cheyenne, Colorado; (12) Citrus, Florida; (13) Ben Hill, Georgia; (16) Bonner, Idaho; (17) Cass, Illinois; (18) Cass, Indiana; (19) Bremer, Iowa; (20) Chase, Kansas; (21) Bourbon, Kentucky; (22) Caddo, Louisiana; (23) Oxford, Maine; (24) Charles, Maryland; (25) Middlesex, Massachusetts; (26) Bay, Michigan; (27) Carlton, Minnesota; (28) Chickasaw, Mississippi; (29) Bollinger, Missouri; (30) Custer, Montana; (31) Brown, Nebraska; (32) Lincoln, Nevada; (33) Strafford, New Hampshire; (34) Hudson, New Jersey; (35) Grant, New Mexico; (36) Chenango, New York; (37) Bladen, North Carolina; (38) Cass, North Dakota; (39) Butler, Ohio; (40) Canadian, Oklahoma; (41) Deschutes, Oregon; (42) Bucks, Pennsylvania; (45) Calhoun, South Carolina; (46) Buffalo, South Dakota; (47) Carroll, Tennessee; (48) Bailey, Texas; (49) Garfield, Utah; (50) Orange, Vermont; (51) Bath, Virginia; (53) Douglas, Washington; (54) Doddridge, West Virginia; (55) Chippewa, Wisconsin; (56) Hot Springs, Wyoming; (72) Barceloneta, Puerto Rico + + + + + (01) Madison, Alabama; (05) Marion, Arkansas; (06) Shasta, California; (08) Otero, Colorado; (12) Nassau, Florida; (13) De Kalb, Georgia; (17) Kane, Illinois; (18) Lake, Indiana; (19) Howard, Iowa; (20) Jewell, Kansas; (21) Greenup, Kentucky; (22) St Charles, Louisiana; (26) Leelanau, Michigan; (27) Marshall, Minnesota; (28) Madison, Mississippi; (29) Howard, Missouri; (30) Sanders, Montana; (31) Holt, Nebraska; (36) St Lawrence, New York; (37) Henderson, North Carolina; (38) Stark, North Dakota; (39) Licking, Ohio; (40) McCurtain, Oklahoma; (42) Monroe, Pennsylvania; (45) Williamsburg, South Carolina; (46) McPherson, South Dakota; (47) Jefferson, Tennessee; (48) Colorado, Texas; (51) Henry, Virginia; (54) Summers, West Virginia; (55) Ozaukee, Wisconsin; (72) Luquillo, Puerto Rico + + + + + (05) Woodruff, Arkansas; (13) Hart, Georgia; (17) Piatt, Illinois; (18) Spencer, Indiana; (19) Palo Alto, Iowa; (20) Phillips, Kansas; (21) McCreary, Kentucky; (26) St Clair, Michigan; (27) Steele, Minnesota; (28) Walthall, Mississippi; (29) Nodaway, Missouri; (31) Richardson, Nebraska; (37) Pitt, North Carolina; (39) Seneca, Ohio; (40) Washington, Oklahoma; (47) Robertson, Tennessee; (48) Fannin, Texas; (51) Prince Edward, Virginia; (72) Vieques, Puerto Rico + + + + + (02) Sitka, Alaska + + + + + (51) Manassas Park, Virginia + + + + + (01) Bullock, Alabama; (04) Greenlee, Arizona; (05) Bradley, Arkansas; (06) Colusa, California; (08) Bent, Colorado; (09) New London, Connecticut; (12) Broward, Florida; (13) Banks, Georgia; (16) Bingham, Idaho; (17) Bureau, Illinois; (18) Boone, Indiana; (19) Benton, Iowa; (20) Bourbon, Kansas; (21) Bath, Kentucky; (22) Beauregard, Louisiana; (23) Kennebec, Maine; (24) Caroline, Maryland; (25) Franklin, Massachusetts; (26) Arenac, Michigan; (27) Big Stone, Minnesota; (28) Bolivar, Mississippi; (29) Barton, Missouri; (30) Carter, Montana; (31) Boone, Nebraska; (32) Eureka, Nevada; (33) Hillsborough, New Hampshire; (34) Cumberland, New Jersey; (35) De Baca, New Mexico; (36) Cayuga, New York; (37) Avery, North Carolina; (38) Bowman, North Dakota; (39) Auglaize, Ohio; (40) Blaine, Oklahoma; (41) Coos, Oregon; (42) Berks, Pennsylvania; (45) Barnwell, South Carolina; (46) Brookings, South Dakota; (47) Bradley, Tennessee; (48) Armstrong, Texas; (49) Davis, Utah; (50) Franklin, Vermont; (51) Appomattox, Virginia; (53) Clark, Washington; (54) Cabell, West Virginia; (55) Buffalo, Wisconsin; (56) Crook, Wyoming; (72) Anasco, Puerto Rico + + + + + (01) Walker, Alabama; (05) Scott, Arkansas; (12) Volusia, Florida; (13) Glynn, Georgia; (17) Massac, Illinois; (18) Porter, Indiana; (19) Marshall, Iowa; (20) Morris, Kansas; (21) Lawrence, Kentucky; (22) Winn, Louisiana; (26) Oceana, Michigan; (27) Redwood, Minnesota; (28) Simpson, Mississippi; (29) Marion, Missouri; (31) Nemaha, Nebraska; (37) Nash, North Carolina; (39) Perry, Ohio; (40) Pushmataha, Oklahoma; (42) Wayne, Pennsylvania; (46) Union, South Dakota; (47) Moore, Tennessee; (48) Dimmit, Texas; (51) New Kent, Virginia; (55) Walworth, Wisconsin; (72) San Juan, Puerto Rico + + + + + (48) Wilson, Texas + + + + + (48) Shelby, Texas + + + + + (48) Morris, Texas + + + + + (02) Kenai Peninsula, Alaska + + + + + (48) Runnels, Texas + + + + + (48) Reagan, Texas + + + + + (01) Crenshaw, Alabama; (05) Desha, Arkansas; (06) Marin, California; (08) El Paso, Colorado; (12) Gilchrist, Florida; (16) Franklin, Idaho; (17) Douglas, Illinois; (18) Fayette, Indiana; (19) Clay, Iowa; (20) Dickinson, Kansas; (21) Carroll, Kentucky; (22) Franklin, Louisiana; (24) Talbot, Maryland; (26) Delta, Michigan; (27) Douglas, Minnesota; (28) Greene, Mississippi; (29) Chariton, Missouri; (30) Hill, Montana; (31) Custer, Nebraska; (34) Warren, New Jersey; (35) Roosevelt, New Mexico; (36) Hamilton, New York; (37) Chowan, North Carolina; (38) Hettinger, North Dakota; (39) Delaware, Ohio; (40) Delaware, Oklahoma; (41) Lincoln, Oregon; (42) Cumberland, Pennsylvania; (45) Florence, South Carolina; (46) Dewey, South Dakota; (47) De Kalb, Tennessee; (48) Brazos, Texas; (49) Sevier, Utah; (51) Chesterfield, Virginia; (53) Lewis, Washington; (54) Lewis, West Virginia; (55) Forest, Wisconsin; (56) Uinta, Wyoming; (72) Cidra, Puerto Rico + + + + + (13) Wilkinson, Georgia; (48) Mason, Texas + + + + + (01) Pike, Alabama; (05) Pike, Arkansas; (06) Tuolumne, California; (08) Saguache, Colorado; (12) St Johns, Florida; (13) Evans, Georgia; (17) McDonough, Illinois; (18) Morgan, Indiana; (19) Kossuth, Iowa; (20) Logan, Kansas; (21) Jackson, Kentucky; (22) Terrebonne, Louisiana; (26) Menominee, Michigan; (27) Olmsted, Minnesota; (28) Pearl River, Mississippi; (29) Lawrence, Missouri; (30) Wibaux, Montana; (31) Lancaster, Nebraska; (36) Tompkins, New York; (37) Lincoln, North Carolina; (39) Miami, Ohio; (40) Oklahoma, Oklahoma; (42) Snyder, Pennsylvania; (46) Roberts, South Dakota; (47) McNairy, Tennessee; (48) Culberson, Texas; (51) Louisa, Virginia; (54) Wyoming, West Virginia; (55) St Croix, Wisconsin; (72) Patillas, Puerto Rico + + + + + (01) Coosa, Alabama; (05) Cross, Arkansas; (06) Los Angeles, California; (08) Eagle, Colorado; (12) Franklin, Florida; (13) Calhoun, Georgia; (16) Custer, Idaho; (17) De Kalb, Illinois; (18) Dubois, Indiana; (19) Chickasaw, Iowa; (20) Crawford, Kansas; (21) Campbell, Kentucky; (22) East Feliciana, Louisiana; (24) St Mary\s, Maryland; (26) Clinton, Michigan; (27) Dakota, Minnesota; (28) Franklin, Mississippi; (29) Cass, Missouri; (30) Golden Valley, Montana; (31) Colfax, Nebraska; (34) Sussex, New Jersey; (35) Quay, New Mexico; (36) Genesee, New York; (37) Chatham, North Carolina; (38) Grant, North Dakota; (39) Darke, Ohio; (40) Creek, Oklahoma; (41) Lake, Oregon; (42) Columbia, Pennsylvania; (45) Edgefield, South Carolina; (46) Day, South Dakota; (47) Davidson, Tennessee; (48) Bowie, Texas; (49) San Juan, Utah; (51) Charlotte, Virginia; (53) Kittitas, Washington; (54) Jefferson, West Virginia; (55) Florence, Wisconsin; (56) Sweetwater, Wyoming; (72) Ceiba, Puerto Rico + + + + + (13) Stephens, Georgia; (48) Kaufman, Texas + + + + + (13) Tift, Georgia; (48) Lamar, Texas + + + + + (02) Wade Hampton, Alaska + + + + + (48) Wichita, Texas + + + + + (13) Whitfield, Georgia; (48) Madison, Texas + + + + + (01) Elmore, Alabama; (05) Garland, Arkansas; (06) Mono, California; (08) Gunnison, Colorado; (12) Hendry, Florida; (13) Chatham, Georgia; (16) Jefferson, Idaho; (17) Fayette, Illinois; (18) Gibson, Indiana; (19) Davis, Iowa; (20) Ellis, Kansas; (21) Clay, Kentucky; (22) Jefferson, Louisiana; (26) Gladwin, Michigan; (27) Grant, Minnesota; (28) Holmes, Mississippi; (29) Cole, Missouri; (30) Liberty, Montana; (31) Dixon, Nebraska; (35) Sierra, New Mexico; (36) Livingston, New York; (37) Cumberland, North Carolina; (38) McIntosh, North Dakota; (39) Fulton, Ohio; (40) Grady, Oklahoma; (41) Multnomah, Oregon; (42) Fayette, Pennsylvania; (45) Horry, South Carolina; (46) Grant, South Dakota; (47) Franklin, Tennessee; (48) Burleson, Texas; (49) Wasatch, Utah; (51) Dickenson, Virginia; (53) Pend Oreille, Washington; (54) Marshall, West Virginia; (55) Iron, Wisconsin; (72) Dorado, Puerto Rico + + + + + (01) Choctaw, Alabama; (04) Santa Cruz, Arizona; (05) Cleburne, Arkansas; (06) Humboldt, California; (08) Costilla, Colorado; (12) Columbia, Florida; (13) Bleckley, Georgia; (16) Butte, Idaho; (17) Clark, Illinois; (18) Clinton, Indiana; (19) Butler, Iowa; (20) Cheyenne, Kansas; (21) Bracken, Kentucky; (22) Cameron, Louisiana; (23) Sagadahoc, Maine; (24) Garrett, Maryland; (25) Plymouth, Massachusetts; (26) Branch, Michigan; (27) Chippewa, Minnesota; (28) Clarke, Mississippi; (29) Butler, Missouri; (30) Deer Lodge, Montana; (31) Butler, Nebraska; (32) Nye, Nevada; (34) Middlesex, New Jersey; (35) Hidalgo, New Mexico; (36) Cortland, New York; (37) Burke, North Carolina; (38) Divide, North Dakota; (39) Clark, Ohio; (40) Choctaw, Oklahoma; (41) Grant, Oregon; (42) Cameron, Pennsylvania; (45) Chester, South Carolina; (46) Charles Mix, South Dakota; (47) Chester, Tennessee; (48) Baylor, Texas; (49) Juab, Utah; (50) Washington, Vermont; (51) Botetourt, Virginia; (53) Garfield, Washington; (54) Grant, West Virginia; (55) Crawford, Wisconsin; (56) Lincoln, Wyoming; (72) Cabo Rojo, Puerto Rico + + + + + (51) Harrisonburg, Virginia + + + + + (02) Skagway-Yakutat-Angoon, Alaska; (13) Pike, Georgia; (21) Wayne, Kentucky; (48) Hunt, Texas + + + + + (13) Toombs, Georgia; (48) Lamb, Texas + + + + + (48) Rains, Texas + + + + + (48) Medina, Texas + + + + + (01) Greene, Alabama; (05) Independence, Arkansas; (06) Plumas, California; (08) Kit Carson, Colorado; (12) Jackson, Florida; (13) Clayton, Georgia; (16) Lincoln, Idaho; (17) Grundy, Illinois; (18) Hendricks, Indiana; (19) Emmet, Iowa; (20) Gove, Kansas; (21) Elliott, Kentucky; (22) Livingston, Louisiana; (26) Huron, Michigan; (27) Jackson, Minnesota; (28) Jefferson, Mississippi; (29) De Kalb, Missouri; (30) Missoula, Montana; (31) Frontier, Nebraska; (36) Niagara, New York; (37) Durham, North Carolina; (38) Nelson, North Dakota; (39) Hancock, Ohio; (40) Hughes, Oklahoma; (41) Wallowa, Oregon; (42) Indiana, Pennsylvania; (45) Lexington, South Carolina; (46) Harding, South Dakota; (47) Hamblen, Tennessee; (48) Camp, Texas; (51) Floyd, Virginia; (53) Spokane, Washington; (54) Monroe, West Virginia; (55) La Crosse, Wisconsin; (72) Gurabo, Puerto Rico + + + + + (48) Ochiltree, Texas + + + + + (51) Charles City, Virginia + + + + + (13) Lumpkin, Georgia; (17) Warren, Illinois; (19) Webster, Iowa; (20) Stanton, Kansas; (21) Owen, Kentucky; (29) St Francois, Missouri; (37) Washington, North Carolina; (47) Williamson, Tennessee; (48) Guadalupe, Texas; (51) Warren, Virginia + + + + + (13) Spalding, Georgia; (48) Karnes, Texas + + + + + (48) Rusk, Texas + + + + + (48) Nacogdoches, Texas + + + + + (48) Roberts, Texas + + + + + (13) Rockdale, Georgia; (48) Jim Hogg, Texas + + + + + (48) Presidio, Texas + + + + + (13) Madison, Georgia; (17) Whiteside, Illinois; (19) Worth, Iowa; (20) Trego, Kansas; (21) Pike, Kentucky; (29) Saline, Missouri; (37) Wilson, North Carolina; (48) Hansford, Texas; (51) Wise, Virginia + + + + + (70) Melekeiok, Palau + + + + + (51) South Boston, Virginia + + + + + (68) Utrik, Marshall Islands + + + + + (02) Anchorage, Alaska; (60) Manu\a, American Samoa; (75) Trust Territory of the Pacific Islands, ; (78) St. John, Virgin Islands of the U.S. + + + + + (01) Conecuh, Alabama; (05) Crittenden, Arkansas; (06) Lassen, California; (08) Douglas, Colorado; (12) Flagler, Florida; (13) Butts, Georgia; (16) Clearwater, Idaho; (17) Cumberland, Illinois; (18) Delaware, Indiana; (19) Cherokee, Iowa; (20) Cowley, Kansas; (21) Calloway, Kentucky; (22) East Carroll, Louisiana; (24) Queen Anne\s, Maryland; (26) Clare, Michigan; (27) Crow Wing, Minnesota; (28) Forrest, Mississippi; (29) Carter, Missouri; (30) Glacier, Montana; (31) Clay, Nebraska; (34) Somerset, New Jersey; (35) Otero, New Mexico; (36) Fulton, New York; (37) Catawba, North Carolina; (38) Grand Forks, North Dakota; (39) Cuyahoga, Ohio; (40) Craig, Oklahoma; (41) Klamath, Oregon; (42) Clinton, Pennsylvania; (45) Dorchester, South Carolina; (46) Davison, South Dakota; (47) Cumberland, Tennessee; (48) Bosque, Texas; (49) Salt Lake, Utah; (51) Carroll, Virginia; (53) Kitsap, Washington; (54) Jackson, West Virginia; (55) Eau Claire, Wisconsin; (56) Sublette, Wyoming; (72) Cayey, Puerto Rico + + + + + (48) Wheeler, Texas + + + + + (13) Henry, Georgia; (17) Pope, Illinois; (18) Steuben, Indiana; (19) Pocahontas, Iowa; (20) Pratt, Kansas; (21) Madison, Kentucky; (26) Sanilac, Michigan; (27) Swift, Minnesota; (28) Washington, Mississippi; (29) Osage, Missouri; (31) Saline, Nebraska; (37) Randolph, North Carolina; (39) Stark, Ohio; (40) Woods, Oklahoma; (47) Scott, Tennessee; (48) Fisher, Texas; (72) Yabucoa, Puerto Rico + + + + + (48) Tom Green, Texas + + + + + (05) Stone, Arkansas; (13) Habersham, Georgia; (17) Morgan, Illinois; (18) Ripley, Indiana; (19) Montgomery, Iowa; (20) Norton, Kansas; (21) Lincoln, Kentucky; (26) Otsego, Michigan; (27) St Louis, Minnesota; (28) Tate, Mississippi; (29) Monroe, Missouri; (31) Phelps, Nebraska; (37) Pamlico, North Carolina; (39) Putnam, Ohio; (40) Stephens, Oklahoma; (46) Ziebach, South Dakota; (47) Pickett, Tennessee; (48) Edwards, Texas; (51) Orange, Virginia; (55) Waushara, Wisconsin; (72) Toa Baja, Puerto Rico + + + + + (51) Winchester, Virginia + + + + + (48) San Patricio, Texas + + + + + (01) Henry, Alabama; (05) Jackson, Arkansas; (06) Sacramento, California; (08) La Plata, Colorado; (12) Lafayette, Florida; (13) Cobb, Georgia; (16) Minidoka, Idaho; (17) Hancock, Illinois; (18) Howard, Indiana; (19) Floyd, Iowa; (20) Grant, Kansas; (21) Fayette, Kentucky; (22) Morehouse, Louisiana; (26) Ionia, Michigan; (27) Kandiyohi, Minnesota; (28) Jones, Mississippi; (29) Douglas, Missouri; (30) Park, Montana; (31) Gage, Nebraska; (36) Onondaga, New York; (37) Forsyth, North Carolina; (38) Pembina, North Dakota; (39) Harrison, Ohio; (40) Jefferson, Oklahoma; (41) Washington, Oregon; (42) Juniata, Pennsylvania; (45) Marion, South Carolina; (46) Hutchinson, South Dakota; (47) Hancock, Tennessee; (48) Cass, Texas; (51) Franklin, Virginia; (53) Thurston, Washington; (54) Nicholas, West Virginia; (55) Langlade, Wisconsin; (72) Hormigueros, Puerto Rico + + + + + (13) Johnson, Georgia; (17) Sangamon, Illinois; (18) Vigo, Indiana; (19) Sioux, Iowa; (20) Russell, Kansas; (21) Mercer, Kentucky; (27) Wilkin, Minnesota; (29) Polk, Missouri; (31) Stanton, Nebraska; (37) Stanly, North Carolina; (39) Washington, Ohio; (47) Tipton, Tennessee; (48) Galveston, Texas; (51) Russell, Virginia + + + + + (02) Northwest Arctic, Alaska + + + + + (13) Peach, Georgia; (21) Union, Kentucky; (29) Webster, Missouri; (48) Houston, Texas + + + + + (48) Winkler, Texas + + + + + (51) Falls Church, Virginia + + + + + (48) Zavala, Texas + + + + + (48) Walker, Texas + + + + + (48) Tyler, Texas + + + + + (13) Turner, Georgia; (48) Lee, Texas + + + + + (51) Poquoson, Virginia + + + + + (48) Mills, Texas + + + + + (51) Hopewell, Virginia + + + + + (13) Macon, Georgia; (17) White, Illinois; (19) Woodbury, Iowa; (20) Thomas, Kansas; (21) Perry, Kentucky; (29) Ste Genevieve, Missouri; (37) Wilkes, North Carolina; (48) Hamilton, Texas; (51) Westmoreland, Virginia + + + + + (48) Terry, Texas + + + + + (70) Sonsorol, Palau + + + + + (01) Bibb, Alabama; (04) Gila, Arizona; (05) Benton, Arkansas; (06) Butte, California; (08) Archuleta, Colorado; (09) Middlesex, Connecticut; (12) Bradford, Florida; (13) Baker, Georgia; (15) Kauai, Hawaii; (16) Bear Lake, Idaho; (17) Boone, Illinois; (18) Benton, Indiana; (19) Appanoose, Iowa; (20) Barber, Kansas; (21) Ballard, Kentucky; (22) Assumption, Louisiana; (23) Franklin, Maine; (25) Dukes, Massachusetts; (26) Alpena, Michigan; (27) Beltrami, Minnesota; (28) Attala, Mississippi; (29) Audrain, Missouri; (30) Broadwater, Montana; (31) Banner, Nebraska; (32) Elko, Nevada; (33) Coos, New Hampshire; (34) Camden, New Jersey; (35) Colfax, New Mexico; (36) Broome, New York; (37) Anson, North Carolina; (38) Billings, North Dakota; (39) Ashtabula, Ohio; (40) Beaver, Oklahoma; (41) Clatsop, Oregon; (42) Beaver, Pennsylvania; (44) Providence, Rhode Island; (45) Anderson, South Carolina; (46) Bennett, South Dakota; (47) Bledsoe, Tennessee; (48) Aransas, Texas; (49) Carbon, Utah; (50) Chittenden, Vermont; (51) Amelia, Virginia; (53) Chelan, Washington; (54) Braxton, West Virginia; (55) Bayfield, Wisconsin; (56) Carbon, Wyoming; (68) Ailinginae, Marshall Islands; (72) Aguas Buenas, Puerto Rico + + + + + (48) Yoakum, Texas + + + + + (48) Schleicher, Texas + + + + + (48) Tarrant, Texas + + + + + (70) Airai, Palau + + + + + (51) Chesapeake, Virginia + + + + + (48) Ward, Texas + + + + + (68) Ebon, Marshall Islands + + + + + (48) Stonewall, Texas + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/iso_4217/2.0/constraint-schema-transform.xsl b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/iso_4217/2.0/constraint-schema-transform.xsl new file mode 100644 index 000000000..ebe9d41a5 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/iso_4217/2.0/constraint-schema-transform.xsl @@ -0,0 +1,709 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/iso_4217/2.0/iso_4217.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/iso_4217/2.0/iso_4217.xsd new file mode 100644 index 000000000..7f2974b15 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/iso_4217/2.0/iso_4217.xsd @@ -0,0 +1,1020 @@ + + + + Codes for the representation of currencies and funds from the International Organization for Standardization (ISO) 4217:2001. + + true + + + + + + + + + Mauritius Rupee: Mauritius + + + + + Uzbekistan Sum: Uzbekistan + + + + + New Dinar: Yugoslavia + + + + + Sudanese Dinar: Sudan + + + + + St Helena Pound: St Helena + + + + + European Unit of Account 17 (E.U.A.- 17): Bond Markets Units + + + + + Irish Pound: Ireland + + + + + Schilling: Austria + + + + + Pataca: Macau + + + + + Pakistan Rupee: Pakistan + + + + + Riel: Cambodia + + + + + Gourde: Haiti + + + + + Italian Lira: Italy, San Marino, Vatican City State (Holy See) + + + + + Quetzal: Guatemala + + + + + Russian Ruble: Russian Federation + + + + + Jamaican Dollar: Jamaica + + + + + Trinidad and Tobago Dollar: Trinidad and Tobago + + + + + Zimbabwe Dollar: Zimbabwe + + + + + Tanzanian Shilling: Tanzania, United Republic Of + + + + + Somoni: Tajikistan + + + + + Cape Verde Escudo: Cape Verde + + + + + Tenge: Kazakhstan + + + + + Guyana Dollar: Guyana + + + + + Tala: Samoa + + + + + Dominican Peso: Dominican Republic + + + + + Andorran Peseta: Andorra + + + + + North Korean Won: Korea, Democratic People's Republic Of + + + + + Dalasi: Gambia + + + + + Unidad de Valor Constante (UVC): Ecuador + + + + + Nakfa: Eritrea + + + + + Codes specifically reserved for testing purposes: + + + + + Kwanza Reajustado: Angola + + + + + Unidades de fomento: Chile + + + + + European Unit of Account 9 (E.U.A.- 9): Bond Markets Units + + + + + Pa'anga: Tonga + + + + + Barbados Dollar: Barbados + + + + + Gold Bond Markets Units: + + + + + Sri Lanka Rupee: Sri Lanka + + + + + Maltese Lira: Malta + + + + + Guinea Franc: Guinea + + + + + Lari: Georgia + + + + + Timor Escudo: East Timor + + + + + Liberian Dollar: Liberia + + + + + Latvian Lats: Latvia + + + + + Seychelles Rupee: Seychelles + + + + + French Franc: Andorra, France, French Guiana, French Southern Territories, Guadeloupe, Martinique, Monaco, Reunion, St Pierre and Miquelon + + + + + Mexican Peso: Mexico + + + + + Gold-Franc: Special settlement currencies + + + + + Drachma: Greece + + + + + Moroccan Dirham: Morocco, Western Sahara + + + + + Tunisian Dinar: Tunisia + + + + + Kwacha: Malawi + + + + + Silver: Bond Markets Units + + + + + CFP Franc: French Polynesia, New Caledonia, Wallis and Futuna Islands + + + + + Yen: Japan + + + + + Leone: Sierra Leone + + + + + Afghani: Afghanistan + + + + + Malaysian Ringgit: Malaysia + + + + + Kina: Papua New Guinea + + + + + Naira: Nigeria + + + + + Dobra: Sao Tome and Principe + + + + + Kwacha: Zambia + + + + + East Caribbean Dollar: Anguilla, Antigua and Barbuda, Dominica, Grenada, Montserrat, St Kitts - Nevis, Saint Lucia, Saint Vincent and The Grenadines + + + + + Convertible Marks: Bosnia and Herzegovina + + + + + European Monetary Unit (E.M.U.-6): Bond Markets Units + + + + + Gibraltar Pound: Gibraltar + + + + + Costa Rican Colon: Costa Rica + + + + + Manat: Turkmenistan + + + + + Kenyan Shilling: Kenya + + + + + Euro: + + + + + New Taiwan Dollar: Taiwan, Province Of China + + + + + Saudi Riyal: Saudi Arabia + + + + + Pula: Botswana + + + + + Iraqi Dinar: Iraq + + + + + Canadian Dollar: Canada + + + + + Swiss Franc: Liechtenstein, Switzerland + + + + + Balboa: Panama + + + + + Pound Sterling: United Kingdom + + + + + Colombian Peso: Colombia + + + + + New Israeli Sheqel: Israel + + + + + CFA Franc BEAC: Cameroon, Central African Republic, Chad, Congo, Equatorial Guinea, Gabon + + + + + Cordoba Oro: Nicaragua + + + + + Spanish Peseta: Andorra, Spain + + + + + Jordanian Dinar: Jordan + + + + + Dong: Vietnam + + + + + Libyan Dinar: Libyan Arab Jamahiriya + + + + + Solomon Islands Dollar: Solomon Islands + + + + + Metical: Mozambique + + + + + Kroon: Estonia + + + + + (Same day): United States + + + + + Algerian Dinar: Algeria + + + + + Lebanese Pound: Lebanon + + + + + Belgian Franc: Belgium + + + + + (financial Rand): Lesotho + + + + + Chilean Peso: Chile + + + + + Uganda Shilling: Uganda + + + + + Kuna: Croatia + + + + + Belize Dollar: Belize + + + + + Bahamian Dollar: Bahamas + + + + + Kip: Lao People's Democratic Republic + + + + + Leu: Romania + + + + + Taka: Bangladesh + + + + + Kyat: Myanmar + + + + + Cyprus Pound: Cyprus + + + + + Palladium: Bond Markets Units + + + + + Mexican Unidad de Inversion (UDI): Mexico + + + + + Hong Kong Dollar: Hong Kong + + + + + Somali Shilling: Somalia + + + + + Kuwaiti Dinar: Kuwait + + + + + Won: Korea, Republic Of + + + + + Nuevo Sol: Peru + + + + + New Kwanza: Angola + + + + + Bulgarian LEV: Bulgaria + + + + + Aruban Guilder: Aruba + + + + + Franc Congolais: Congo, The Democratic Republic Of + + + + + Hryvnia: Ukraine + + + + + Netherlands Guilder: Netherlands + + + + + Brazilian Real: Brazil + + + + + Peso Uruguayo: Uruguay + + + + + Rufiyaa: Maldives + + + + + Luxembourg Franc: Luxembourg + + + + + Tajik Ruble (old): Tajikistan (Old) + + + + + Deutsche Mark: Germany + + + + + Pound: Falkland Islands (Malvinas) + + + + + Yemeni Rial: Yemen + + + + + Comoro Franc: Comoros + + + + + Singapore Dollar: Singapore + + + + + Azerbaijanian Manat: Azerbaijan + + + + + Antillian Guilder: Netherlands Antilles + + + + + CFA Franc BCEAO: Benin, Burkina Faso, Cote D'ivoire, Guinea-Bissau, Mali, Niger, Senegal, Togo + + + + + Lilangeni: Swaziland + + + + + Loti: Lesotho + + + + + Czech Koruna: Czech Republic + + + + + SDR: International Monetary Fund (Imf) + + + + + Sucre: Ecuador + + + + + Platinum: Bond Markets Units + + + + + Yuan Renminbi: China + + + + + El Salvador Colon: El Salvador + + + + + Burundi Franc: Burundi + + + + + Cuban Peso: Cuba + + + + + Cayman Islands Dollar: Cayman Islands + + + + + Rupiah: East Timor, Indonesia + + + + + Guarani: Paraguay + + + + + Norwegian Krone: Bouvet Island, Norway, Svalbard and Jan Mayen Islands + + + + + Ouguiya: Mauritania + + + + + Argentine Peso: Argentina + + + + + Portuguese Escudo: Portugal + + + + + Fiji Dollar: Fiji + + + + + Surinam Guilder: Suriname + + + + + Rial Omani: Oman + + + + + Turkish Lira: Turkey + + + + + Slovak Koruna: Slovakia + + + + + Denar: Macedonia, The Former Yugoslav Republic Of + + + + + Ethiopian Birr: Ethiopia + + + + + Namibia Dollar: Namibia + + + + + Bermudian Dollar: Bermuda + + + + + Rand: Lesotho, Namibia, South Africa + + + + + US Dollar: American Samoa, British Indian Ocean Territory,, Guam, Haiti, Marshall Islands, Micronesia, Northern Mariana Islands, Palau, Panama, Puerto Rico, Turks and Caicos Islands, United States, United States Minor Outlaying Islands, Virgin Islands (British), Virgin Islands (U.S.) + + + + + Lek: Albania + + + + + Rwanda Franc: Rwanda + + + + + Tolar: Slovenia + + + + + UAE Dirham: United Arab Emirates + + + + + Qatari Rial: Qatar + + + + + Russian Ruble: Russian Federation + + + + + Belarussian Ruble: Belarus + + + + + New Zealand Dollar: Cook Islands, New Zealand, Niue, Pitcairn, Tokelau + + + + + Tugrik: Mongolia + + + + + Iranian Rial: Iran (Islamic Republic Of) + + + + + Vatu: Vanuatu + + + + + Swedish Krona: Sweden + + + + + Moldovan Leu: Moldova, Republic Of + + + + + Syrian Pound: Syrian Arab Republic + + + + + Indian Rupee: Bhutan, India + + + + + Lempira: Honduras + + + + + Forint: Hungary + + + + + Nepalese Rupee: Nepal + + + + + Baht: Thailand + + + + + Guinea-Bissau Peso: Guinea-Bissau + + + + + Zloty: Poland + + + + + Danish Krone: Denmark, Faeroe Islands, Greenland + + + + + Lithuanian Litas: Lithuania + + + + + Iceland Krona: Iceland + + + + + Cedi: Ghana + + + + + New Zaire: Zaire + + + + + Egyptian Pound: Egypt + + + + + Bolivar: Venezuela + + + + + European Composite Unit (EURCO): Bond Markets Units + + + + + Markka: Finland + + + + + Armenian Dram: Armenia + + + + + Som: Kyrgyzstan + + + + + Lev: Bulgaria + + + + + UIC-Franc: Special settlement currencies + + + + + Djibouti Franc: Djibouti + + + + + Bahraini Dinar: Bahrain + + + + + Australian Dollar: Australia, Christmas Island, Cocos (Keeling) Islands, Heard and Mcdonald Islands, Kiribati, Nauru, Norfolk Island, Tuvalu + + + + + Philippine Peso: Philippines + + + + + Brunei Dollar: Brunei Darussalam + + + + + (Next day): United States + + + + + Malagasy Franc: Madagascar + + + + + Ngultrum: Bhutan + + + + + The codes assigned for transactions where no currency is involved are:: + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/iso_639-3/2.0/constraint-schema-transform.xsl b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/iso_639-3/2.0/constraint-schema-transform.xsl new file mode 100644 index 000000000..b80acf8e6 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/iso_639-3/2.0/constraint-schema-transform.xsl @@ -0,0 +1,22873 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/iso_639-3/2.0/iso_639-3.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/iso_639-3/2.0/iso_639-3.xsd new file mode 100644 index 000000000..dcd1d8779 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/iso_639-3/2.0/iso_639-3.xsd @@ -0,0 +1,37967 @@ + + + + Codes for the representation of names of languages - Part 3: Alpha-3 code for comprehensive coverage of languages. + + true + + + + + + + + + Lomavren + + + + + Aghul + + + + + Tuwuli + + + + + Ritarungo + + + + + Tokelau + + + + + Garreh-Ajuran + + + + + Naba + + + + + Danish + + + + + Marghi South + + + + + Moldavian + + + + + Wilawila + + + + + Kinaray-A + + + + + Remun + + + + + Ebira + + + + + South Muyu + + + + + Kaduo + + + + + Thado Chin + + + + + Bisu + + + + + Jarawa (India) + + + + + Western Tawbuid + + + + + Yidgha + + + + + Old Norse + + + + + Dagbani + + + + + Ndaka + + + + + Tugutil + + + + + Kayabi + + + + + Alak + + + + + Citak + + + + + Kabardian + + + + + Kapori + + + + + Kabalai + + + + + Sekpele + + + + + Yalarnnga + + + + + Western Subanon + + + + + Zirenkel + + + + + Cuneiform Luwian + + + + + Sadri + + + + + Ciwogai + + + + + Chrau + + + + + Wolof + + + + + Kako + + + + + Ngomba + + + + + Northern Luri + + + + + Ngando (Central African Republic) + + + + + Roviana + + + + + Worodougou + + + + + Galo Adi + + + + + Sarudu + + + + + Wuvulu-Aua + + + + + Central Sama + + + + + Pele-Ata + + + + + Kadara + + + + + Mono (Cameroon) + + + + + Navarro-Labourdin Basque + + + + + Lala + + + + + Geme + + + + + Sicite Senoufo + + + + + Toura (Cote d'Ivoire) + + + + + Veracruz Huastec + + + + + Ersu + + + + + Pande + + + + + Khezha Naga + + + + + Minica Huitoto + + + + + Vaghua + + + + + Palumata + + + + + Kara-Kalpak + + + + + Playero + + + + + Navut + + + + + Old Kentish Sign Language + + + + + Sanskrit + + + + + Ligbi + + + + + Serawai + + + + + Ili'uun + + + + + Surigaonon + + + + + Southern Tutchone + + + + + Resigaro + + + + + Wambon + + + + + White Gelao + + + + + Dumun + + + + + Dabe + + + + + Minriq + + + + + Achumawi + + + + + Asurini + + + + + Keder + + + + + Varisi + + + + + Tita + + + + + Barama + + + + + Bandjigali + + + + + Cua + + + + + Old Persian + + + + + Borei + + + + + Legenyem + + + + + Vafsi + + + + + Besisi + + + + + Mokole + + + + + Taino + + + + + Woun Meu + + + + + Wageman + + + + + Ninggerum + + + + + Abure + + + + + Biem + + + + + Nanerige Senoufo + + + + + Kwese + + + + + Bumbita Arapesh + + + + + Muluridyi + + + + + Niuafo'ou + + + + + Skou + + + + + Lua' + + + + + Asumboa + + + + + Tay Boi + + + + + Bali Sign Language + + + + + Esuma + + + + + Halang + + + + + Ogbogolo + + + + + Kaivi + + + + + Lenyima + + + + + Pahlavani + + + + + Mankanya + + + + + Birri + + + + + Mountain Koiali + + + + + Dyangadi + + + + + Northern One + + + + + Arequipa-La Union Quechua + + + + + Shuwa-Zamani + + + + + Usan + + + + + Ayi (China) + + + + + Tabaa Zapotec + + + + + Goanese Konkani + + + + + Mpi + + + + + Pemon + + + + + Bwe Karen + + + + + Lahul Lohar + + + + + Tonga (Nyasa) + + + + + Kawi + + + + + Mburku + + + + + Tagalog + + + + + Bangi + + + + + Mogum + + + + + Gawwada + + + + + Sanga (Democratic Republic of Congo) + + + + + Miriti + + + + + Kumam + + + + + Judeo-Tunisian Arabic + + + + + Soi + + + + + North Wemale + + + + + Pochutec + + + + + Mewati + + + + + Ukuriguma + + + + + Dicamay Agta + + + + + Western Karaboro + + + + + Wagi + + + + + Kumba + + + + + Atruahi + + + + + Chinese + + + + + Maragus + + + + + Mbabaram + + + + + Da'a Kaili + + + + + Sunam + + + + + Kamo + + + + + Aweti + + + + + Yucatec Maya Sign Language + + + + + Kala Lagaw Ya + + + + + Khe + + + + + Ngambay + + + + + Mono (Solomon Islands) + + + + + Ngasa + + + + + Old Georgian + + + + + Abaga + + + + + Higaonon + + + + + Remo + + + + + Badaga + + + + + Male (Papua New Guinea) + + + + + Pankarare + + + + + Modole + + + + + Gbii + + + + + Chumburung + + + + + San Juan Atzingo Popoloca + + + + + Zhang-Zhung + + + + + Nagumi + + + + + Wahgi + + + + + Wojenaka + + + + + Ngalakan + + + + + Karadjeri + + + + + Pije + + + + + Lari + + + + + Warembori + + + + + Tlamacazapa Nahuatl + + + + + Miani + + + + + Bitare + + + + + Ulithian + + + + + Hung + + + + + Mubi + + + + + Central Subanen + + + + + Papiamento + + + + + Icelandic Sign Language + + + + + Surui + + + + + Filomena Mata-Coahuitlan Totonac + + + + + Lolak + + + + + Kei + + + + + Gamale Kham + + + + + Amahuaca + + + + + Pataxo-Hahaai + + + + + Suku + + + + + Nipsan + + + + + Sempan + + + + + Ga'anda + + + + + Orizaba Nahuatl + + + + + Cogui + + + + + Mango + + + + + Guinean Sign Language + + + + + Kwanja + + + + + Kw'adza + + + + + Aushiri + + + + + Kelo + + + + + Yakut + + + + + Biete + + + + + Udmurt + + + + + Jumli + + + + + Natioro + + + + + Western Highland Chatino + + + + + Amundava + + + + + Amikoana + + + + + Miskito + + + + + Croatian + + + + + Samaritan Aramaic + + + + + Mama + + + + + Enrekang + + + + + Sembakung Murut + + + + + Balantak + + + + + Cakfem-Mushere + + + + + Mulam + + + + + Aguaruna + + + + + Ulumanda' + + + + + Northern Ohlone + + + + + Western Lawa + + + + + Judeo-Italian + + + + + Migaama + + + + + Baga Mboteni + + + + + Manda (India) + + + + + Hoava + + + + + Seba + + + + + Solano + + + + + Grass Koiari + + + + + Yoloxochitl Mixtec + + + + + Temoaya Otomi + + + + + Ngongo + + + + + Mbara (Australia) + + + + + Koongo + + + + + Cuyonon + + + + + Midob + + + + + Wahau Kenyah + + + + + Shihhi Arabic + + + + + Ende + + + + + Kwang + + + + + Vunjo + + + + + Liv + + + + + Zome + + + + + Tumbuka + + + + + Rapanui + + + + + Southwest Pashayi + + + + + Namo + + + + + Trinidadian Creole English + + + + + Tungag + + + + + Trio + + + + + Baygo + + + + + Palauan + + + + + Ipeka-Tapuia + + + + + Nyore + + + + + German + + + + + Queyu + + + + + Green Gelao + + + + + Inonhan + + + + + Tobanga + + + + + Kulfa + + + + + Minangkabau + + + + + Slovakian Sign Language + + + + + Irula + + + + + Burmeso + + + + + Laka (Chad) + + + + + Kirike + + + + + Ngam + + + + + Kalispel-Pend d'Oreille + + + + + Brek Karen + + + + + Krio + + + + + Kulisusu + + + + + Avestan + + + + + Lakha + + + + + Kott + + + + + Moksela + + + + + Arhuaco + + + + + Tlalitzlipa Nahuatl + + + + + Busa + + + + + Boon + + + + + Kofa + + + + + Pitjantjatjara + + + + + Ghera + + + + + Nsari + + + + + Yine + + + + + Ndasa + + + + + Comecrudo + + + + + Mum + + + + + Maremgi + + + + + Cypriot Arabic + + + + + Walak + + + + + Idon + + + + + Kudmali + + + + + Baure + + + + + Uare + + + + + Musak + + + + + Muduapa + + + + + Ban Khor Sign Language + + + + + Luyia + + + + + Alcozauca Mixtec + + + + + Urningangg + + + + + Assangori + + + + + Edopi + + + + + Kuikuro-Kalapalo + + + + + Ikulu + + + + + Western Acipa + + + + + Gabri + + + + + Khorasani Turkish + + + + + Arua + + + + + Kalao + + + + + Mamusi + + + + + Carolinian + + + + + Tidikelt Tamazight + + + + + Yanahuanca Pasco Quechua + + + + + Manambu + + + + + Nyungwe + + + + + Birgit + + + + + Mahican + + + + + Senara Senoufo + + + + + Desano + + + + + Bubia + + + + + Mandeali + + + + + Nawdm + + + + + Turumsa + + + + + Bidiyo + + + + + Gilyak + + + + + Wejewa + + + + + Kwakum + + + + + Angguruk Yali + + + + + Tanema + + + + + Brokskat + + + + + Sie + + + + + East Tarangan + + + + + Mbunga + + + + + Oluta Popoluca + + + + + Tagoi + + + + + Arutani + + + + + Kawacha + + + + + Eastern Acipa + + + + + Warumungu + + + + + Nathembo + + + + + Ilongot + + + + + Marik + + + + + Nigerian Pidgin + + + + + Saidi Arabic + + + + + Central Kanuri + + + + + Ganggalida + + + + + Karon + + + + + Laragia + + + + + Soyaltepec Mazatec + + + + + Lengilu + + + + + Yiwom + + + + + San Mateo Del Mar Huave + + + + + Sorsogon Ayta + + + + + Plains Miwok + + + + + Ponam + + + + + Tojolabal + + + + + Choapan Zapotec + + + + + Xiang Chinese + + + + + Lisabata-Nuniali + + + + + Dumbea + + + + + Watubela + + + + + Ogbia + + + + + Southwestern Guiyang Hmong + + + + + Bendi + + + + + Souletin Basque + + + + + Sogdian + + + + + Fernando Po Creole English + + + + + Adabe + + + + + Macuna + + + + + Old Breton + + + + + Tomini + + + + + Che + + + + + Pacahuara + + + + + Banda-Ndele + + + + + Kurama + + + + + Tadyawan + + + + + Canichana + + + + + Anyin Morofo + + + + + Asheninka Perene + + + + + Garza + + + + + Oro + + + + + Otoro + + + + + Abron + + + + + Church Slavic + + + + + Sehwi + + + + + Hitu + + + + + Ma (Democratic Republic of Congo) + + + + + Imonda + + + + + Swampy Cree + + + + + Kuku-Muminh + + + + + Ancient Macedonian + + + + + Warrgamay + + + + + Camtho + + + + + Chiquian Ancash Quechua + + + + + Mapos Buang + + + + + Roma + + + + + Kabatei + + + + + Oloma + + + + + Kele + + + + + Papasena + + + + + Nyawaygi + + + + + Tanacross + + + + + Angal + + + + + Dungmali + + + + + Saterfriesisch + + + + + Baima + + + + + Faliscan + + + + + Akrukay + + + + + Karao + + + + + Yafi + + + + + Nyaturu + + + + + Eastern Maninkakan + + + + + Yaeyama + + + + + Kir-Balar + + + + + Guinea Kpelle + + + + + Balti + + + + + Lu + + + + + Pai Tavytera + + + + + Pisidian + + + + + Tajik + + + + + Geba Karen + + + + + Santa Maria Zacatepec Mixtec + + + + + Isthmus-Mecayapan Nahuatl + + + + + Konjo + + + + + Manombai + + + + + Maindo + + + + + Mohegan-Montauk-Narragansett + + + + + Hupla + + + + + Pite Sami + + + + + Asaro'o + + + + + Gor + + + + + Hibito + + + + + Arosi + + + + + Yakan + + + + + Akkadian + + + + + Loarki + + + + + Duruma + + + + + Budukh + + + + + Budza + + + + + Tho + + + + + Maonan + + + + + Sirenik Yupik + + + + + Munsee + + + + + Central Khmer + + + + + Catalonian Sign Language + + + + + Estado de Mexico Otomi + + + + + Maxi Gbe + + + + + Urat + + + + + Western Gurung + + + + + Puluwatese + + + + + Jehai + + + + + Aiklep + + + + + San Felipe Otlaltepec Popoloca + + + + + Dhaiso + + + + + Saudi Arabian Sign Language + + + + + Ahtena + + + + + Binumarien + + + + + Koraku + + + + + Shelta + + + + + Kakanda + + + + + Huixtan Tzotzil + + + + + Zotung Chin + + + + + Gabutamon + + + + + Bekati' + + + + + Kandas + + + + + Ligenza + + + + + Yazgulyam + + + + + Xerente + + + + + Chhintange + + + + + Cataelano Mandaya + + + + + Ugaritic + + + + + Kimaama + + + + + Naxi + + + + + Montagnais + + + + + Zo'e + + + + + Iwaidja + + + + + Bada (Nigeria) + + + + + Sar + + + + + Hmong Do + + + + + Pouye + + + + + Cia-Cia + + + + + Sarua + + + + + Ronga + + + + + Djinba + + + + + Mpur + + + + + Uda + + + + + Iyo'wujwa Chorote + + + + + Lola + + + + + Minokok + + + + + Gikyode + + + + + Bila + + + + + Cun + + + + + Old Spanish + + + + + Tennet + + + + + Mara Chin + + + + + Acoli + + + + + Lala-Bisa + + + + + Dororo + + + + + Southern Bobo Madare + + + + + Tebilung + + + + + Tewe + + + + + Northern Tepehuan + + + + + Ukaan + + + + + Domu + + + + + Baelelea + + + + + Shabak + + + + + Baham + + + + + Ubir + + + + + Inebu One + + + + + Kayong + + + + + Gothic + + + + + Rudbari + + + + + Tobo + + + + + Munggui + + + + + Mbe' + + + + + Totoro + + + + + Meoswar + + + + + Rogo + + + + + Rajasthani + + + + + Wawonii + + + + + Sapo + + + + + Sha + + + + + Kutep + + + + + Irigwe + + + + + Chinook + + + + + Doe + + + + + Alacatlatzala Mixtec + + + + + Tinigua + + + + + Bunaba + + + + + Yeniche + + + + + Para Gaviao + + + + + Sivandi + + + + + Lopa + + + + + Yanomamo + + + + + Hajong + + + + + Pumpokol + + + + + Cumbric + + + + + Jorto + + + + + Namakura + + + + + Banda-Mbres + + + + + Northern Guiyang Hmong + + + + + Khoibu Naga + + + + + Tiruray + + + + + Eastern Highland Chatino + + + + + Krisa + + + + + Bodo Gadaba + + + + + Kohin + + + + + Chenapian + + + + + Tomo Kan Dogon + + + + + Kadaru + + + + + Norwegian Sign Language + + + + + Kutenai + + + + + Panobo + + + + + Bandi + + + + + Pitcairn-Norfolk + + + + + Gbiri-Niragu + + + + + Senggi + + + + + Meroitic + + + + + Limilngan + + + + + Mfumte + + + + + Maeng Itneg + + + + + Southern Pesisir + + + + + Turka + + + + + Atikamekw + + + + + Fataleka + + + + + Westphalien + + + + + Djimini Senoufo + + + + + Semimi + + + + + Kokola + + + + + Tol + + + + + Algonquin + + + + + Musasa + + + + + Medumba + + + + + Columbia-Wenatchi + + + + + Akwa + + + + + Southern Puget Sound Salish + + + + + Ralte + + + + + Boko (Democratic Republic of Congo) + + + + + Japanese + + + + + Ughele + + + + + Syenara Senoufo + + + + + Western Apache + + + + + Northwest Pashayi + + + + + Somali + + + + + Pohnpeian + + + + + Bussa + + + + + Western Lalu Yi + + + + + Veps + + + + + Birale + + + + + Kwambi + + + + + Djeebbana + + + + + Vaghat-Ya-Bijim-Legeri + + + + + Wudu + + + + + Vale + + + + + Tangko + + + + + Rien + + + + + Dzao Min + + + + + Nobiin + + + + + !Xoo + + + + + Kalanga + + + + + Mag-Anchi Ayta + + + + + Sala + + + + + Intha + + + + + Zemgalian + + + + + Kimbu + + + + + Foodo + + + + + Karolanos + + + + + Dem + + + + + Sindhi Bhil + + + + + Safeyoka + + + + + Wangaaybuwan-Ngiyambaa + + + + + Mahei + + + + + Guanche + + + + + Aheu + + + + + Kemak + + + + + Margos-Yarowilca-Lauricocha Quechua + + + + + Katingan + + + + + Mirpur Panjabi + + + + + Wewaw + + + + + Anal + + + + + Momuna + + + + + Southern Rincon Zapotec + + + + + Giiwo + + + + + North Tugen + + + + + Awak + + + + + Sholaga + + + + + Western Abnaki + + + + + Guahibo + + + + + Spokane + + + + + Malinguat + + + + + Nokuku + + + + + Brunei + + + + + Budibud + + + + + Silimo + + + + + Alabat Island Agta + + + + + Dima + + + + + Red Gelao + + + + + Juquila Mixe + + + + + Northeastern Pomo + + + + + Takuu + + + + + Tooro + + + + + Kapingamarangi + + + + + Karipuna + + + + + Papi + + + + + Ndaktup + + + + + Omejes + + + + + Shina + + + + + Kwara'ae + + + + + Laura + + + + + Sedang + + + + + Etruscan + + + + + Cutchi-Swahili + + + + + Lipo + + + + + Shall-Zwall + + + + + Chamari + + + + + Makah + + + + + Lihir + + + + + Lantanai + + + + + Simeulue + + + + + Miju-Mishmi + + + + + Numanggang + + + + + Maiwa (Indonesia) + + + + + Honi + + + + + Kopkaka + + + + + Varli + + + + + Mainfrankisch + + + + + Blang + + + + + Awutu + + + + + Senaya + + + + + Katawixi + + + + + Siksika + + + + + Vestinian + + + + + Lamalera + + + + + Kasem + + + + + Coast Miwok + + + + + Mono (Democratic Republic of Congo) + + + + + Sowanda + + + + + Kaluli + + + + + Belgian Sign Language + + + + + Wa'ema + + + + + Gusii + + + + + Sere + + + + + Budik + + + + + Tay Tac + + + + + Bidyogo + + + + + Bura-Pabir + + + + + Mal Paharia + + + + + Ngad'a + + + + + Tay Sa Pa + + + + + Katabaga + + + + + Turoyo + + + + + Wotapuri-Katarqalai + + + + + San Francisco Matlatzinca + + + + + Northwestern Tamang + + + + + Khakas + + + + + Pongyong + + + + + Nigerian Fulfulde + + + + + Coatlan Zapotec + + + + + Old Mon + + + + + Moose Cree + + + + + Korra Koraga + + + + + Akolet + + + + + Galela + + + + + Bom + + + + + Jebero + + + + + Tunia + + + + + Osatu + + + + + Oko-Juwoi + + + + + Gondi + + + + + Jair Awyu + + + + + Ngbee + + + + + Khua + + + + + Sop + + + + + Zulgo-Gemzek + + + + + Tlacoapa Tlapanec + + + + + Konyak Naga + + + + + Ansus + + + + + Lengo + + + + + Yakima + + + + + Guarani + + + + + Viti + + + + + Esimbi + + + + + Arandai + + + + + Garhwali + + + + + Kupang Malay + + + + + Broome Pearling Lugger Pidgin + + + + + Western Jacalteco + + + + + Hupa + + + + + Venetian + + + + + Semai + + + + + Quechua + + + + + Macedo Romanian + + + + + Maligo + + + + + Jinyu Chinese + + + + + Dongxiang + + + + + Central-Eastern Niger Fulfulde + + + + + Friulian + + + + + Rempi + + + + + Lokaa + + + + + Hiw + + + + + Arin + + + + + Bakumpai + + + + + Yucuna + + + + + Tunggare + + + + + Isthmus-Cosoleacaque Nahuatl + + + + + Papuma + + + + + Tefaro + + + + + Sinaugoro + + + + + Duvle + + + + + Xeta + + + + + Ubang + + + + + North Slavey + + + + + Huba + + + + + Votic + + + + + Tingui-Boto + + + + + Meyah + + + + + American Sign Language + + + + + Selee + + + + + Lydian + + + + + Lombi + + + + + Hittite + + + + + Legbo + + + + + Ngaing + + + + + Wambule + + + + + Anindilyakwa + + + + + Olulumo-Ikom + + + + + Youle Jinuo + + + + + Takelma + + + + + Demisa + + + + + North Mesopotamian Arabic + + + + + Akha + + + + + Labuk-Kinabatangan Kadazan + + + + + Sukur + + + + + Kataang + + + + + Davawenyo + + + + + Keliko + + + + + Bilbil + + + + + Tagal Murut + + + + + Muyang + + + + + Deccan + + + + + Klamath-Modoc + + + + + Sapuan + + + + + Classical Mongolian + + + + + Baltic Romani + + + + + Keuru + + + + + Lufu + + + + + Ncane + + + + + Mamara Senoufo + + + + + Wusa Yi + + + + + Cabecar + + + + + Sikiana + + + + + Mannan + + + + + Savosavo + + + + + Wawa + + + + + Pyen + + + + + Southern One + + + + + Powari + + + + + Sekapan + + + + + Bainouk-Samik + + + + + Chiquihuitlan Mazatec + + + + + Palu + + + + + Pintupi-Luritja + + + + + Sanapana + + + + + Wagdi + + + + + Indonesian Sign Language + + + + + Nyenkha + + + + + Aimaq + + + + + Hamap + + + + + Bagirmi + + + + + Even + + + + + Wunai Bunu + + + + + Palaka Senoufo + + + + + Li'o + + + + + Kasua + + + + + Serua + + + + + Mbesa + + + + + Campidanese Sardinian + + + + + Badui + + + + + Garre + + + + + Amis + + + + + Batak + + + + + Batak Mandailing + + + + + Gey + + + + + Gheg Albanian + + + + + Ngbaka Manza + + + + + Tobelo + + + + + Nalca + + + + + Auwe + + + + + Balanta-Kentohe + + + + + Tai Dam + + + + + Baangi + + + + + Western Katu + + + + + Godwari + + + + + Gaviao Do Jiparana + + + + + Blagar + + + + + Bodo (India) + + + + + Upper Tanana + + + + + Shasta + + + + + Toposa + + + + + Santa Maria Quiegolani Zapotec + + + + + Umbuygamu + + + + + Kemiehua + + + + + Bali (Nigeria) + + + + + Nebaj Ixil + + + + + Tyaraity + + + + + Colorado + + + + + Bathari + + + + + Doghoro + + + + + Pushto + + + + + Tumleo + + + + + Waka + + + + + Larevat + + + + + Lombard + + + + + Juma + + + + + Bongo + + + + + Copala Triqui + + + + + Laopang + + + + + Toma + + + + + Iceve-Maci + + + + + Malayalam + + + + + Ao Naga + + + + + Romano-Serbian + + + + + Sumariup + + + + + Sui + + + + + Arop-Sissano + + + + + Mangole + + + + + Mala (Papua New Guinea) + + + + + Igwe + + + + + Angika + + + + + Nauete + + + + + Dass + + + + + Sharanahua + + + + + Ofo + + + + + Karaga Mandaya + + + + + Pelende + + + + + Kowiai + + + + + Gadang + + + + + Saparua + + + + + Jaya + + + + + Lakota Dida + + + + + Tumtum + + + + + Kadiweu + + + + + Luwo + + + + + Nding + + + + + Kaningdon-Nindem + + + + + Hausa Sign Language + + + + + Bissa + + + + + Giryama + + + + + Tutong 2 + + + + + Oko-Eni-Osayen + + + + + Teke-Tege + + + + + Gogo + + + + + Samaritan + + + + + Cuyamecalco Mixtec + + + + + Logooli + + + + + Nunggubuyu + + + + + Imbabura Highland Quichua + + + + + Nomatsiguenga + + + + + Kado + + + + + Maslam + + + + + Maria (Papua New Guinea) + + + + + Uduk + + + + + Arammba + + + + + Chulym + + + + + Teop + + + + + Mayo + + + + + Turks And Caicos Creole English + + + + + Eastern Lalu Yi + + + + + Toura (Papua New Guinea) + + + + + Orowe + + + + + Tauade + + + + + Abung + + + + + Mursi + + + + + Seke (Vanuatu) + + + + + Uspanteco + + + + + Nen + + + + + Kwamera + + + + + Amganad Ifugao + + + + + Zhire + + + + + Finnish-Swedish Sign Language + + + + + Masiwang + + + + + Mudbura + + + + + Paici + + + + + Nyarafolo Senoufo + + + + + Jara + + + + + Southern Kurdish + + + + + Megleno Romanian + + + + + East Limba + + + + + Yugoslavian Sign Language + + + + + Baoule + + + + + Ajie + + + + + Kangjia + + + + + Mittu + + + + + Waffa + + + + + Uru-Eu-Wau-Wau + + + + + Domaaki + + + + + Mawchi + + + + + To'abaita + + + + + Nume + + + + + Cajonos Zapotec + + + + + Kayapa Kallahan + + + + + Tombelala + + + + + Malango + + + + + Pokanga + + + + + Munduruku + + + + + Tsaangi + + + + + Chicahuaxtla Triqui + + + + + Emiliano-Romagnolo + + + + + Titan + + + + + Tarifit + + + + + Kreye + + + + + Duala + + + + + Tokharian B + + + + + Panoan Katukina + + + + + Labu + + + + + Czech Sign Language + + + + + Gelao + + + + + Xaracuu + + + + + Kamayo + + + + + Kung + + + + + Horo + + + + + Southern Catanduanes Bicolano + + + + + Barbareno + + + + + Ndobo + + + + + Marghi Central + + + + + Udihe + + + + + Santo Domingo Xenacoj Cakchiquel + + + + + Dibiyaso + + + + + Yetfa + + + + + Middle Watut + + + + + Gaam + + + + + Nzakambay + + + + + Romany + + + + + Lavatbura-Lamusong + + + + + Aka-Cari + + + + + Siane + + + + + Tuvalu + + + + + Xipaya + + + + + Kpati + + + + + Jamamadi + + + + + Tadaksahak + + + + + Sepa (Papua New Guinea) + + + + + Tukang Besi South + + + + + Kaian + + + + + Yale + + + + + Limassa + + + + + Livvi + + + + + Albanian + + + + + Indonesian + + + + + Mono (USA) + + + + + Aigon + + + + + Multiple languages + + + + + Kanite + + + + + Quenya + + + + + Northern Tujia + + + + + Eitiep + + + + + Yucatan Maya + + + + + Susuami + + + + + Tuma-Irumu + + + + + Rama + + + + + Torona + + + + + Bandial + + + + + Pendau + + + + + Naasioi + + + + + Old Irish (to 900) + + + + + Vasekela Bushman + + + + + Dezfuli + + + + + Kelinyau Kenyah + + + + + Barrow Point + + + + + Chinali + + + + + Sira + + + + + Huarijio + + + + + Kibet + + + + + Urubu-Kaapor + + + + + Kasiguranin + + + + + Libido + + + + + Kawe + + + + + Woods Cree + + + + + Dilling + + + + + Bilua + + + + + Chuvantsy + + + + + Waritai + + + + + Ikpeng + + + + + Mazatlan Mazatec + + + + + Santo Domingo Albarradas Zapotec + + + + + Ikposo + + + + + Oroqen + + + + + Makayam + + + + + Korean + + + + + Teressa + + + + + Camarines Norte Agta + + + + + Latvian + + + + + Lele (Papua New Guinea) + + + + + Abai Sungai + + + + + Ebughu + + + + + Yareba + + + + + Semnam + + + + + Ocotlan Zapotec + + + + + Mi'kmaq + + + + + Baramu + + + + + Erre + + + + + Beele + + + + + Sonha + + + + + Nete + + + + + Biritai + + + + + Murik + + + + + Mozambican Sign Language + + + + + Yeretuar + + + + + Western Balochi + + + + + Guanyinqiao + + + + + Una + + + + + Mali + + + + + Lungga + + + + + Ron + + + + + Bozaba + + + + + Djauan + + + + + Rawas + + + + + Yerukula + + + + + Jarnango + + + + + Chan Santa Cruz Maya + + + + + Tulu + + + + + Southern Dagaare + + + + + North Mofu + + + + + Dungra Bhil + + + + + Apiaca + + + + + Old Avar + + + + + Czech + + + + + Dewoin + + + + + Maba (Chad) + + + + + Viemo + + + + + Lenca + + + + + Bushi + + + + + Seke (Nepal) + + + + + Ugandan Sign Language + + + + + Cinamiguin Manobo + + + + + Mandan + + + + + Waneci + + + + + Dangaleat + + + + + Daloa Bete + + + + + Kurudu + + + + + Ukwa + + + + + Amba (Solomon Islands) + + + + + Sebob Kenyah + + + + + Madi + + + + + Koke + + + + + Southeast Ijo + + + + + Beng + + + + + Polonombauk + + + + + Arabana + + + + + Pubian + + + + + Suarmin + + + + + Barzani Jewish Neo-Aramaic + + + + + Thu Lao + + + + + Terei + + + + + Romblomanon + + + + + Mt. Iraya Agta + + + + + Moni + + + + + Bukharic + + + + + Ngadjunmaya + + + + + Sonia + + + + + Unserdeutsch + + + + + Nahari + + + + + Kwere + + + + + Latvian Sign Language + + + + + Neko + + + + + Occidental + + + + + Sara Kaba + + + + + Shanga + + + + + Wailapa + + + + + Tso + + + + + Kaur + + + + + Duguri + + + + + Malimpung + + + + + Sa'och + + + + + Brahui + + + + + Atorada + + + + + Mang + + + + + Jemez + + + + + Yonggom + + + + + 'Auhelawa + + + + + Yabem + + + + + Southern Qiandong Hmong + + + + + Lao + + + + + Borgu Fulfulde + + + + + Rapa + + + + + Urali + + + + + Kho'ini + + + + + Xingu Asurini + + + + + Nigeria Mambila + + + + + Guduf-Gava + + + + + Gooniyandi + + + + + Hyam + + + + + North Fali + + + + + Bakairi + + + + + Bete + + + + + Juxtlahuaca Mixtec + + + + + West Kewa + + + + + Moroccan Arabic + + + + + Mor (Mor Islands) + + + + + Ghomara + + + + + Chara + + + + + Bolivian Sign Language + + + + + Swiss-German Sign Language + + + + + Ding + + + + + Coyaima + + + + + Taungyo + + + + + Waigeo + + + + + Kais + + + + + We Western + + + + + Ixtatan Chuj + + + + + Warkay-Bipim + + + + + Maritsaua + + + + + Chazumba Mixtec + + + + + Svan + + + + + Chamicuro + + + + + Tugun + + + + + Basketo + + + + + Southern Mashan Hmong + + + + + Aghem + + + + + Bisorio + + + + + Likuba + + + + + Luna + + + + + Boor + + + + + Masbate Sorsogon + + + + + Elepi + + + + + Molbog + + + + + Tremembe + + + + + Texistepec Popoluca + + + + + Taiwan Sign Language + + + + + Bondum Dom Dogon + + + + + Horom + + + + + Amarasi + + + + + Dhurga + + + + + Krongo + + + + + Harami + + + + + Sorothaptic + + + + + Asheninka Pajonal + + + + + Marsian + + + + + Arha + + + + + Kalabakan + + + + + Teke-Ebo + + + + + Sou + + + + + Kabixi + + + + + Burunge + + + + + Arbereshe Albanian + + + + + Mexican Sign Language + + + + + Darwazi + + + + + Gboloo Grebo + + + + + Min Zhong Chinese + + + + + Humene + + + + + Estonian Sign Language + + + + + Classical Mandaic + + + + + Tanimbili + + + + + Tene Kan Dogon + + + + + Mahou + + + + + Stellingwerfs + + + + + Saafi-Saafi + + + + + Nankina + + + + + Todrah + + + + + Molengue + + + + + Koba + + + + + Parsi-Dari + + + + + Keninjal + + + + + Temacine Tamazight + + + + + Eastern Tzutujil + + + + + Libyan Sign Language + + + + + Pear + + + + + Hattic + + + + + Madukayang Kalinga + + + + + Kxoe + + + + + Taje + + + + + Kriol + + + + + Dugwor + + + + + Amele + + + + + Laki + + + + + Kolom + + + + + Denya + + + + + Doka + + + + + Ngando (Democratic Republic of Congo) + + + + + Belait + + + + + Sabaean + + + + + Arguni + + + + + Southern Cakchiquel + + + + + Mondropolon + + + + + Retta + + + + + Gumalu + + + + + Dangaura Tharu + + + + + Sanglechi-Ishkashimi + + + + + Indri + + + + + Coxima + + + + + Boruca + + + + + Akebu + + + + + Sabine + + + + + Khamyang + + + + + Bhili + + + + + Kosraean + + + + + Welsh + + + + + Tutong 1 + + + + + Kapinawa + + + + + Chalikha + + + + + Geser-Gorom + + + + + Kobon + + + + + Benggoi + + + + + Bolgo + + + + + Samo + + + + + Lenje + + + + + /Gwi + + + + + Tai Daeng + + + + + Wara + + + + + Atsugewi + + + + + Inupiaq + + + + + Kon Keu + + + + + Iku-Gora-Ankwa + + + + + Aka + + + + + Atatlahuca Mixtec + + + + + Maisin + + + + + Abanyom + + + + + Jeri Kuo + + + + + Neapolitan + + + + + Santa Catarina Albarradas Zapotec + + + + + South Watut + + + + + Salasaca Highland Quichua + + + + + Shan + + + + + Tukang Besi North + + + + + Akuku + + + + + Mashco Piro + + + + + Copainala Zoque + + + + + North Junin Quechua + + + + + Neyo + + + + + Yamap + + + + + Sengele + + + + + Fa D'ambu + + + + + Loniu + + + + + Tai Mene + + + + + Kashaya + + + + + Ukhwejo + + + + + Biyom + + + + + Monumbo + + + + + Reunion Creole French + + + + + Palya Bareli + + + + + Nisa + + + + + Etchemin + + + + + Zangskari + + + + + Kombio + + + + + Northeastern Dian Hmong + + + + + Marfa + + + + + Wailaki + + + + + Median + + + + + Kannada + + + + + Lhomi + + + + + Fum + + + + + Bekwarra + + + + + El Nayar Cora + + + + + Siri + + + + + South Tairora + + + + + Buxinhua + + + + + Mortlockese + + + + + Mandandanyi + + + + + Puquina + + + + + Layakha + + + + + Ashtiani + + + + + Awa + + + + + Kamula + + + + + Khamti + + + + + Holoholo + + + + + Mocovi + + + + + Mandjak + + + + + Tulu-Bohuai + + + + + Lango (Uganda) + + + + + Undetermined + + + + + Vanuma + + + + + Isebe + + + + + Mbukushu + + + + + Ogbah + + + + + Malo + + + + + Dyan + + + + + Simba + + + + + Kusu + + + + + Itawit + + + + + Khengkha + + + + + Eastern Katu + + + + + Tarok + + + + + Dibo + + + + + Onjob + + + + + Bandjalang + + + + + Beli (Papua New Guinea) + + + + + Papar + + + + + Pekal + + + + + Jakati + + + + + Gallurese Sardinian + + + + + Virgin Islands Creole English + + + + + Sininkere + + + + + Spanish Sign Language + + + + + Huachipaeri + + + + + Ogea + + + + + Coastal Konjo + + + + + Gronings + + + + + Finallig + + + + + Central Pomo + + + + + Walmajarri + + + + + Low German + + + + + Butbut Kalinga + + + + + Nai + + + + + Kabwa + + + + + Mbelime + + + + + Southern Kalapuya + + + + + Chigmecatitlan Mixtec + + + + + Labo + + + + + South West Bay + + + + + Janji + + + + + Yom + + + + + Ghotuo + + + + + Hadiyya + + + + + Awun + + + + + Yao + + + + + Bungu + + + + + Simbali + + + + + Kabiye + + + + + Hanga Hundi + + + + + Karang + + + + + Mari (Madang Province) + + + + + Parachi + + + + + Tai Loi + + + + + Bugan + + + + + Fuliiru + + + + + Waiwai + + + + + Savara + + + + + Abureni + + + + + Birked + + + + + Rennellese Sign Language + + + + + Talondo' + + + + + Kirmanjki + + + + + Kabwari + + + + + Mlabri + + + + + Mandara + + + + + Sause + + + + + Warlmanpa + + + + + Vasavi + + + + + Wadjiginy + + + + + Dido + + + + + Changriwa + + + + + Kukna + + + + + Rer Bare + + + + + Galeya + + + + + Malvi + + + + + Tepetotutla Chinantec + + + + + Liberia Kpelle + + + + + Guarayu + + + + + Mangbutu + + + + + Runa + + + + + Turiwara + + + + + Bauria + + + + + Belhariya + + + + + Kamu + + + + + Abe + + + + + Elkei + + + + + Nyanga + + + + + Skolt Sami + + + + + Musan + + + + + Bajelani + + + + + Katbol + + + + + Som + + + + + Lithuanian + + + + + Gorovu + + + + + Aore + + + + + Eki + + + + + Ketengban + + + + + Paraguayan Guarani + + + + + Wumeng Yi + + + + + Assan + + + + + Kwesten + + + + + Aer + + + + + Isu (Menchum Division) + + + + + Basa (Cameroon) + + + + + Parakana + + + + + South Levantine Arabic + + + + + Ashkun + + + + + !O!ung + + + + + Ajawa + + + + + Papantla Totonac + + + + + Danish Sign Language + + + + + Toda + + + + + Peve + + + + + Dhimal + + + + + Kunja + + + + + Merlav + + + + + Karo (Brazil) + + + + + Muslim Tat + + + + + Zimbabwe Sign Language + + + + + Yindjilandji + + + + + Jah Hut + + + + + Yuwana + + + + + Turkmen + + + + + Mwaghavul + + + + + Ghanaian Sign Language + + + + + Russia Buriat + + + + + Interlingue + + + + + Kunza + + + + + Mbre + + + + + Tenis + + + + + Queretaro Otomi + + + + + Central Siberian Yupik + + + + + Klingon + + + + + Dari + + + + + Penchal + + + + + Parkwa + + + + + Phake + + + + + Punan Merah + + + + + Amarakaeri + + + + + Xakriaba + + + + + Tayabas Ayta + + + + + Kanashi + + + + + Western Yiddish + + + + + Horuru + + + + + Jutish + + + + + Makhuwa-Moniga + + + + + Tsuvadi + + + + + Esperanto + + + + + Beeke + + + + + Lagwan + + + + + Mota + + + + + Bipi + + + + + Efik + + + + + Atzingo Matlatzinca + + + + + Omaha-Ponca + + + + + Duma + + + + + Southwestern Tamang + + + + + Mubami + + + + + Mann + + + + + Tondano + + + + + Chayahuita + + + + + Cupeno + + + + + Hernican + + + + + Ili Turki + + + + + Upper Grand Valley Dani + + + + + Kamara + + + + + Eastern Abnaki + + + + + Tem + + + + + Moklen + + + + + Nda'nda + + + + + Mendalam Kayan + + + + + Mafa + + + + + Kayan + + + + + Oruma + + + + + Lasi + + + + + Maung + + + + + Kumbainggar + + + + + Middle Cornish + + + + + Ruma + + + + + Bua + + + + + Havu + + + + + Harzani + + + + + Isthmus Zapotec + + + + + Santa Maria De Jesus Cakchiquel + + + + + Bana + + + + + Njen + + + + + Yecuatla Totonac + + + + + Kaba + + + + + Sileibi + + + + + Kosarek Yale + + + + + Sankaran Maninka + + + + + Saliba + + + + + Mandari + + + + + Kis + + + + + Southeastern Nochixtlan Mixtec + + + + + Kalabra + + + + + Fijian + + + + + Luiseno + + + + + San Marcos Tlalcoyalco Popoloca + + + + + Pahari-Potwari + + + + + Mwali Comorian + + + + + Caribbean Hindustani + + + + + Karami + + + + + Hijazi Arabic + + + + + Rembarunga + + + + + Mbere + + + + + Wanap + + + + + Jaruara + + + + + Gweda + + + + + Boano (Sulawesi) + + + + + Burduna + + + + + Southern Sierra Miwok + + + + + Semnani + + + + + Inapang + + + + + Sepen + + + + + Bagheli + + + + + Gone Dau + + + + + Atemble + + + + + Pangasinan + + + + + Boselewa + + + + + Iraqw + + + + + Suba + + + + + Riang (India) + + + + + Edomite + + + + + Wik-Iiyanh + + + + + Nimoa + + + + + Luvale + + + + + Shoshoni + + + + + Hebrew + + + + + Diuwe + + + + + Khao + + + + + Bariai + + + + + Kuku-Ugbanh + + + + + Kakabai + + + + + Gail + + + + + Purum + + + + + Dzuungoo + + + + + Lowa + + + + + Bharia + + + + + Southern Carrier + + + + + Pangutaran Sama + + + + + Zinza + + + + + Mele-Fila + + + + + Maskelynes + + + + + Bwa + + + + + Mambai + + + + + Central Mashan Hmong + + + + + Tokano + + + + + Kaningra + + + + + Yug + + + + + Kari + + + + + Coatzospan Mixtec + + + + + Abom + + + + + Mlomp + + + + + C'lela + + + + + Western Farsi + + + + + Nenets + + + + + Mvuba + + + + + Limbu + + + + + Kele (Democratic Republic of Congo) + + + + + Parawen + + + + + Sihuas Ancash Quechua + + + + + Muna + + + + + Kuni + + + + + Lembak + + + + + Ife + + + + + Lehali + + + + + Amo + + + + + Middle Armenian + + + + + Asturian + + + + + Wadiyara Koli + + + + + North Azerbaijani + + + + + Paama + + + + + Portuguese Sign Language + + + + + Madngele + + + + + Isarog Agta + + + + + Bardi + + + + + Aimol + + + + + Nnam + + + + + Suau + + + + + Tonsawang + + + + + Cherokee + + + + + Babatana + + + + + Keningau Murut + + + + + Ndamba + + + + + Messapic + + + + + Chechen + + + + + Lewo + + + + + Kupia + + + + + Biao Mon + + + + + Southern Nambikuara + + + + + Omotik + + + + + Dargwa + + + + + Tupinikin + + + + + Hema + + + + + Seneca + + + + + Hone + + + + + Gende + + + + + Argentine Sign Language + + + + + Mapun + + + + + Kokata + + + + + Ngombale + + + + + Cashinahua + + + + + Mocheno + + + + + Amanaye + + + + + Vengo + + + + + Abaza + + + + + Kamas + + + + + West Yugur + + + + + Tboli + + + + + Degaru + + + + + Pak-Tong + + + + + Arafundi + + + + + Hadza + + + + + Muinane + + + + + New Zealand Sign Language + + + + + Adap + + + + + Maria (India) + + + + + Waray Sorsogon + + + + + Ontenu + + + + + Kubi + + + + + Maringarr + + + + + Mangerr + + + + + Guambiano + + + + + Biali + + + + + Yekora + + + + + Teke-Kukuya + + + + + Korlai Creole Portuguese + + + + + Gule + + + + + Western Magar + + + + + San Miguel Creole French + + + + + Kinga + + + + + Neme + + + + + Burmbar + + + + + Umbundu + + + + + Bamali + + + + + Yangkam + + + + + Tawara + + + + + Dusun Malang + + + + + Mosiro + + + + + Tay + + + + + Ahe + + + + + Archi + + + + + Nila + + + + + Moraid + + + + + Seze + + + + + Talysh + + + + + Swedish Sign Language + + + + + Gbayi + + + + + Uru + + + + + Bavarian + + + + + Marti Ke + + + + + Guerrero Amuzgo + + + + + Samba + + + + + Salas + + + + + Bauzi + + + + + Malaynon + + + + + Nakara + + + + + Buruwai + + + + + Ambele + + + + + Nekgini + + + + + Katua + + + + + Alladian + + + + + Aka-Kede + + + + + Adang + + + + + Shark Bay + + + + + Chambeali + + + + + Tontemboan + + + + + Lahu + + + + + Namibian Sign Language + + + + + Western Parbate + + + + + Iyayu + + + + + Santa Maria Del Mar Huave + + + + + Mor (Bomberai Peninsula) + + + + + Chayuco Mixtec + + + + + Riverain Sango + + + + + Allar + + + + + Amanab + + + + + Chut + + + + + Katla + + + + + Warnang + + + + + Maritime Sign Language + + + + + Choctaw + + + + + Koenoem + + + + + Dogri (individual language) + + + + + Manchu + + + + + Olekha + + + + + Luwati + + + + + Ali + + + + + Judeo-Tat + + + + + Baga Manduri + + + + + Kaxuiana + + + + + Garig-Ilgar + + + + + Ehueun + + + + + Sampang + + + + + Tula + + + + + Chukwa + + + + + Kayeli + + + + + Sakan + + + + + Bekwil + + + + + Anufo + + + + + Matepi + + + + + Chilean Quechua + + + + + Tajumulco Mam + + + + + Dorze + + + + + Lele (Democratic Republic of Congo) + + + + + Sungkai + + + + + Buru (Nigeria) + + + + + Kauwera + + + + + Borana-Arsi-Guji Oromo + + + + + Zaza + + + + + Rangkas + + + + + Lepki + + + + + Dungan + + + + + Coatecas Altas Zapotec + + + + + Yoba + + + + + Noone + + + + + Olu'bo + + + + + Haya + + + + + Cayuga + + + + + Parsi + + + + + Kaingang + + + + + Guevea De Humboldt Zapotec + + + + + Namonuito + + + + + Dehu + + + + + Indian Sign Language + + + + + Sewa Bay + + + + + Yakaikeke + + + + + Jicarilla Apache + + + + + Kayu Agung + + + + + Ladino + + + + + Uzbek + + + + + Sabu + + + + + Abipon + + + + + Tartessian + + + + + Eastern Balochi + + + + + Simbo + + + + + Glaro-Twabo + + + + + Ndut + + + + + Australian Aborigines Sign Language + + + + + Mbosi + + + + + Ngwaba + + + + + Wakde + + + + + Kakauhua + + + + + Lamaholot + + + + + Maranunggu + + + + + Yuhup + + + + + Western Pokomchi + + + + + East Damar + + + + + Yinbaw Karen + + + + + Jangshung + + + + + Dibabawon Manobo + + + + + Skagit + + + + + Pokoot + + + + + Wedau + + + + + Anambe + + + + + Nottoway + + + + + Tai Hongjin + + + + + Judeo-Georgian + + + + + Asuncion Mixtepec Zapotec + + + + + Latu + + + + + Ware + + + + + Tututni + + + + + Manta + + + + + Ngemba + + + + + Ayoquesco Zapotec + + + + + Zabana + + + + + Sinsauru + + + + + Burumakok + + + + + Enawene-Nawe + + + + + Barai + + + + + Southwest Gbaya + + + + + Kurdish + + + + + Kua + + + + + Bilba + + + + + Nalu + + + + + Hainyaxo Bozo + + + + + Lom + + + + + Bangwinji + + + + + Ayere + + + + + Yil + + + + + Yosondua Mixtec + + + + + Niuean + + + + + Yogad + + + + + Bilakura + + + + + Pinotepa Nacional Mixtec + + + + + Hani + + + + + Enwan (Akwa Ibom State) + + + + + Nomane + + + + + Krache + + + + + Yawanawa + + + + + Zaachila Zapotec + + + + + Sedoa + + + + + Nicaragua Creole English + + + + + Makaa + + + + + Seraiki + + + + + Maykulan + + + + + Balinese + + + + + Konda-Dora + + + + + Laos Sign Language + + + + + Puerto Rican Sign Language + + + + + Komi-Permyak + + + + + Ndai + + + + + Toro Tegu Dogon + + + + + Mefele + + + + + Matis + + + + + Mander + + + + + Uighur + + + + + Tippera + + + + + Nkukoli + + + + + Pwaamei + + + + + Miyobe + + + + + Tolaki + + + + + Yahuna + + + + + Anfillo + + + + + Middle Hittite + + + + + Sulka + + + + + Jiba + + + + + Tuwari + + + + + Musi + + + + + Idu-Mishmi + + + + + Koromira + + + + + Cocos Islands Malay + + + + + Bisis + + + + + Yiddish + + + + + Southern Haida + + + + + Anakalangu + + + + + Santiago del Estero Quichua + + + + + Koibal + + + + + Lanoh + + + + + Italian + + + + + Kwama + + + + + Balanta-Ganja + + + + + Chumash + + + + + Mungaka + + + + + Lehalurup + + + + + Uisai + + + + + Bonerif + + + + + Bomu + + + + + Nyahkur + + + + + Norwegian Bokmal + + + + + Puri + + + + + Mak (Nigeria) + + + + + Lasgerdi + + + + + Tilapa Otomi + + + + + Tase Naga + + + + + Kalenjin + + + + + Botlikh + + + + + Mahasu Pahari + + + + + Cumeral + + + + + Kakabe + + + + + Malas + + + + + Beami + + + + + Arbore + + + + + Jiarong + + + + + Kungarakany + + + + + Idoma + + + + + Kera + + + + + Gula (Chad) + + + + + Miri + + + + + Sheshi Kham + + + + + Guhu-Samane + + + + + Bitur + + + + + Massalat + + + + + Norra + + + + + Tajio + + + + + Kafoa + + + + + Phu Thai + + + + + Auyokawa + + + + + Dhao + + + + + Sighu + + + + + Diriku + + + + + Fulnio + + + + + Wurrugu + + + + + Northern Oaxaca Nahuatl + + + + + Jalapa De Diaz Mazatec + + + + + Sukuma + + + + + Huaylas Ancash Quechua + + + + + Haigwai + + + + + Notsi + + + + + Kamba (Brazil) + + + + + Man Met + + + + + Krevinian + + + + + Gumuz + + + + + Bosngun + + + + + Wallisian + + + + + Chiltepec Chinantec + + + + + Humla + + + + + Adamorobe Sign Language + + + + + Australian Sign Language + + + + + Mangarayi + + + + + Tedim Chin + + + + + Cishingini + + + + + Khamba + + + + + Xiriana + + + + + Cisalpine Gaulish + + + + + South Ucayali Asheninka + + + + + Waja + + + + + Yaka (Congo) + + + + + Tainae + + + + + Blafe + + + + + Mokerang + + + + + Iwam + + + + + Kwer + + + + + Raji + + + + + Rufiji + + + + + Sara + + + + + Moldova Sign Language + + + + + Apali + + + + + Anam + + + + + Tenango Nahuatl + + + + + Kyaka + + + + + Ukrainian Sign Language + + + + + Southwest Tanna + + + + + Mabire + + + + + Pray 3 + + + + + Chacobo + + + + + Tseku + + + + + Nias + + + + + =/Hua + + + + + Karbi + + + + + Nyanja + + + + + Qawasqar + + + + + Alumu-Tesu + + + + + Okpe (Northwestern Edo) + + + + + Dama + + + + + Dengese + + + + + Litzlitz + + + + + Zarma + + + + + Nopala Chatino + + + + + Miltu + + + + + Walamo + + + + + Beti (Cameroon) + + + + + Mwera (Nyasa) + + + + + Armazic + + + + + Pyapun + + + + + Endo + + + + + Smarky Kanum + + + + + Aguano + + + + + Kavalan + + + + + Mato + + + + + Luchazi + + + + + Yaqui + + + + + Dyirbal + + + + + Tikopia + + + + + Texcatepec Otomi + + + + + Comorian + + + + + Tanggu + + + + + Salchuq + + + + + Sarangani Blaan + + + + + Bai + + + + + Pangwali + + + + + Central Puebla Nahuatl + + + + + Kag-Fer-Jiir-Koor-Ror-Us-Zuksun + + + + + Sonsorol + + + + + Pottangi Ollar Gadaba + + + + + Tibea + + + + + Tchumbuli + + + + + Changthang + + + + + Kam + + + + + Embaloh + + + + + Mato Grosso Arara + + + + + Karekare + + + + + Solong + + + + + Lumba-Yakkha + + + + + Uripiv-Wala-Rano-Atchin + + + + + Pongu + + + + + Ibibio + + + + + Nyunga + + + + + Tenggarong Kutai Malay + + + + + Plains Indian Sign Language + + + + + Kagate + + + + + Ufim + + + + + Hunzib + + + + + Tena Lowland Quichua + + + + + Classical Tibetan + + + + + Benyadu' + + + + + Rabinal Achi + + + + + Baga Sitemu + + + + + Hinukh + + + + + Cruzeno + + + + + Malankuravan + + + + + Tomoip + + + + + Tinani + + + + + Pagu + + + + + Karore + + + + + Semandang + + + + + Itonama + + + + + Ineseno + + + + + Bamunka + + + + + Nkutu + + + + + Pilaga + + + + + Skalvian + + + + + Arakanese + + + + + Nusa Laut + + + + + Falam Chin + + + + + Zeem + + + + + Khotanese + + + + + Mokpwe + + + + + Palor + + + + + Lamba + + + + + Sarangani Manobo + + + + + Wiradhuri + + + + + Batak Karo + + + + + Apurina + + + + + Marwari (India) + + + + + Iloko + + + + + Laha (Indonesia) + + + + + Tanguat + + + + + Emerillon + + + + + Angor + + + + + Turi + + + + + Written Oirat + + + + + Ngawn Chin + + + + + Keley-I Kallahan + + + + + Balangao + + + + + Duungooma + + + + + Southern Tiwa + + + + + Gagu + + + + + Bangolan + + + + + E + + + + + Tumbala Chol + + + + + Nyaw + + + + + Perai + + + + + Gulf Arabic + + + + + Nyengo + + + + + Rumai Palaung + + + + + Wayana + + + + + Elotepec Zapotec + + + + + Kuanyama + + + + + Karamojong + + + + + Nanai + + + + + Tetum + + + + + Makasae + + + + + Kol (Papua New Guinea) + + + + + Waci Gbe + + + + + Ndo + + + + + Border Kuna + + + + + Nafi + + + + + Tchitchege + + + + + Gangte + + + + + Western Bru + + + + + Kalagan + + + + + Haisla + + + + + Rayon Zoque + + + + + Yurok + + + + + Usku + + + + + Zakhring + + + + + Eastern Tawbuid + + + + + Tshangla + + + + + Amarag + + + + + Bola + + + + + Lambadi + + + + + Punu + + + + + Centuum + + + + + Bare + + + + + Alngith + + + + + Carijona + + + + + Tobian + + + + + Aka-Kora + + + + + Quileute + + + + + Yassic + + + + + Waddar + + + + + Komso + + + + + Kota Bangun Kutai Malay + + + + + Peere + + + + + Eastern Highland Otomi + + + + + Koguryo + + + + + San Andres Quiche + + + + + Mahongwe + + + + + Ledo Kaili + + + + + Acroa + + + + + Coptic + + + + + Kol (Cameroon) + + + + + Gbanu + + + + + Kono (Nigeria) + + + + + Aruamu + + + + + Wom (Papua New Guinea) + + + + + Turaka + + + + + Burushaski + + + + + Laghu + + + + + Geman Deng + + + + + Evant + + + + + Laru + + + + + Parenga + + + + + Coos + + + + + Jauja Wanca Quechua + + + + + Luxembourgish + + + + + Buru (Indonesia) + + + + + Luri + + + + + Masai + + + + + Pisaflores Tepehua + + + + + Oksapmin + + + + + Guro + + + + + Aghu + + + + + Fon + + + + + Wyandot + + + + + Wirangu + + + + + Kreen-Akarore + + + + + Puinave + + + + + Western Canadian Inuktitut + + + + + West Central Oromo + + + + + Dela-Oenale + + + + + Zhuang + + + + + Bulu (Papua New Guinea) + + + + + Chewong + + + + + Lote + + + + + Baldemu + + + + + Putoh + + + + + Tandia + + + + + Sinasina + + + + + Nhengatu + + + + + Buna + + + + + Yugambal + + + + + Gadsup + + + + + Marubo + + + + + /Xam + + + + + Mwani + + + + + Western Arrarnta + + + + + Armenian + + + + + Gujari + + + + + Nakama + + + + + Bodo (Central African Republic) + + + + + Godie + + + + + Zambian Sign Language + + + + + Baba + + + + + Taabwa + + + + + Manangkari + + + + + Obanliku + + + + + Latin + + + + + Begbere-Ejar + + + + + Reshe + + + + + Sahu + + + + + Hixkaryana + + + + + Krim + + + + + Esselen + + + + + Huitepec Mixtec + + + + + Benabena + + + + + Dakota + + + + + Central Pashto + + + + + Onin + + + + + Potiguara + + + + + Ixcatec + + + + + Sibu + + + + + Ancient Hebrew + + + + + Tangshewi + + + + + Kairak + + + + + Ngindo + + + + + Sindang Kelingi + + + + + Kuku-Mu'inh + + + + + Maskoy Pidgin + + + + + Mingang Doso + + + + + Mabaka Valley Kalinga + + + + + Bishuo + + + + + Bati (Cameroon) + + + + + Burui + + + + + Kami (Nigeria) + + + + + Axamb + + + + + Besoa + + + + + Ladakhi + + + + + Kaamba + + + + + Southern Ohlone + + + + + Maia + + + + + Sobei + + + + + Nobonob + + + + + Ma'anyan + + + + + Kanggape + + + + + Nupe-Nupe-Tako + + + + + Guila Zapotec + + + + + Lutos + + + + + Nyangbo + + + + + Tewa (Indonesia) + + + + + Omi + + + + + Eastern Karaboro + + + + + Soqotri + + + + + Kuman + + + + + Numana-Nunku-Gbantu-Numbu + + + + + Heyo + + + + + Sindhi + + + + + Afitti + + + + + Madak + + + + + Mukulu + + + + + Quinqui + + + + + Malayo + + + + + Lahanan + + + + + Martuyhunira + + + + + Papitalai + + + + + Tareng + + + + + Tirahi + + + + + Seeku + + + + + Agarabi + + + + + Chicomuceltec + + + + + Tajuasohn + + + + + Kurti + + + + + Hanunoo + + + + + Herero + + + + + Tagargrent + + + + + Tsotsitaal + + + + + Old English (ca. 450-1100) + + + + + Elu + + + + + Aklanon + + + + + Pima Bajo + + + + + Fanti + + + + + Buamu + + + + + Ghulfan + + + + + Mbo-Ung + + + + + Kibiri + + + + + Nyabwa + + + + + Tai Hang Tong + + + + + Kugama + + + + + Mairasi + + + + + Kayupulau + + + + + Lauan + + + + + Central Pame + + + + + Sawai + + + + + Kosadle + + + + + Suganga + + + + + Moresada + + + + + Isabi + + + + + Tamagario + + + + + Umbrian + + + + + Principense + + + + + Zenaga + + + + + Tuyuca + + + + + Embera-Catio + + + + + Galice + + + + + Javanese + + + + + Hmong + + + + + North Levantine Arabic + + + + + Wirafed + + + + + Bada (Indonesia) + + + + + Megam + + + + + Buduma + + + + + Molale + + + + + Southern Bai + + + + + Mbe + + + + + Bile + + + + + Koasati + + + + + Comanche + + + + + Murui Huitoto + + + + + Central Mnong + + + + + South Slavey + + + + + Southeastern Tarahumara + + + + + Kati + + + + + Nguon + + + + + Mitla Zapotec + + + + + Kalumpang + + + + + Nsenga + + + + + Kotafon Gbe + + + + + Baga Sobane + + + + + Pakaasnovos + + + + + Kwalhioqua-Tlatskanai + + + + + Wanggamala + + + + + Adhola + + + + + Late Middle Chinese + + + + + Teke-Fuumu + + + + + Moro + + + + + Yakamul + + + + + Forest Enets + + + + + Yamba + + + + + Twents + + + + + Sabah Bisaya + + + + + Paluan + + + + + Kela (Democratic Republic of Congo) + + + + + Tangga + + + + + Karipuna + + + + + Manumanaw Karen + + + + + Kemezung + + + + + Aja (Benin) + + + + + Tlachichilco Tepehua + + + + + Ede Nago + + + + + Bankon + + + + + Madang + + + + + Inapari + + + + + Galindan + + + + + Cebuano + + + + + Sara Dunjo + + + + + Subi + + + + + Wunambal + + + + + Yugh + + + + + Koresh-e Rostam + + + + + Lamatuka + + + + + Tii + + + + + Bawm Chin + + + + + Bahamas Creole English + + + + + Haka Chin + + + + + Kadai + + + + + Petjo + + + + + Ibanag + + + + + Bolo + + + + + Boni + + + + + Sa + + + + + Tuki + + + + + Chiangmai Sign Language + + + + + Thai Sign Language + + + + + Samoan + + + + + Lundayeh + + + + + Nawathinehena + + + + + Moksha + + + + + Buli (Ghana) + + + + + Qabiao + + + + + Batu + + + + + Aiton + + + + + Mapena + + + + + Thompson + + + + + Zay + + + + + Borong + + + + + Kituba (Congo) + + + + + Obulom + + + + + Tutuba + + + + + Northern Mam + + + + + Nyindrou + + + + + Gedeo + + + + + Zimba + + + + + Guerrero Nahuatl + + + + + Maaka + + + + + Jamaican Country Sign Language + + + + + Indo-Portuguese + + + + + Tay Khang + + + + + Bahau River Kenyah + + + + + Bragat + + + + + Tambotalo + + + + + Kabore One + + + + + Ketangalan + + + + + Karkin + + + + + Banawa + + + + + Ormu + + + + + Camling + + + + + Savi + + + + + Warrwa + + + + + Kiput + + + + + Tamazola Mixtec + + + + + Fali Of Baissa + + + + + Warao + + + + + Areba + + + + + Morouas + + + + + Oroha + + + + + Bungku + + + + + Moi (Congo) + + + + + Nhuwala + + + + + Matumbi + + + + + Yaoure + + + + + Yamphe + + + + + Gagauz + + + + + Silt'e + + + + + Wano + + + + + Mbula + + + + + Narango + + + + + Musgu + + + + + Dema + + + + + Tee + + + + + Ntcham + + + + + Guizhou Yi + + + + + Patamona + + + + + Thracian + + + + + Banjar + + + + + Tai Pao + + + + + Taznatit + + + + + Kusunda + + + + + Muyuw + + + + + Petats + + + + + Tonga (Zambia) + + + + + Brazilian Sign Language + + + + + Bahing + + + + + Byep + + + + + Murkim + + + + + Tillamook + + + + + Cree + + + + + Umotina + + + + + Leco + + + + + Bhatri + + + + + Mehri + + + + + Yango + + + + + Kudiya + + + + + Mal + + + + + Nupbikha + + + + + Yamdena + + + + + Cumanagoto + + + + + Soga + + + + + Yuki + + + + + //Gana + + + + + Bilur + + + + + Tofanma + + + + + Laimbue + + + + + Zangwal + + + + + Konai + + + + + Warungu + + + + + Bodo Parja + + + + + Wala + + + + + Mamasa + + + + + Aringa + + + + + Yir Yoront + + + + + Ajyininka Apurucayali + + + + + Sagalla + + + + + Mpuono + + + + + Petapa Zapotec + + + + + Sakam + + + + + Bankagooma + + + + + Furu + + + + + Bondo + + + + + Komo (Sudan) + + + + + Kubo + + + + + Xiri + + + + + Alamblak + + + + + Gumawana + + + + + Enggano + + + + + Chamalal + + + + + Ndoe + + + + + Amdo Tibetan + + + + + Vaagri Booli + + + + + Minigir + + + + + Toba-Maskoy + + + + + Massep + + + + + West Masela + + + + + Durango Nahuatl + + + + + Yuchi + + + + + Yawalapiti + + + + + Kuwaa + + + + + Bassa + + + + + Kwaio + + + + + Serili + + + + + Orokaiva + + + + + Anasi + + + + + Mok + + + + + Ika + + + + + Ghomala' + + + + + Maleku Jaika + + + + + Chuukese + + + + + Chittagonian + + + + + Buol + + + + + Old Marathi + + + + + Ilue + + + + + Akpa + + + + + Dutch + + + + + Pancana + + + + + Baloi + + + + + Northern Cakchiquel + + + + + Lesing-Gelimi + + + + + Antakarinya + + + + + Kashmiri + + + + + British Sign Language + + + + + Car Nicobarese + + + + + Ami + + + + + Yoidik + + + + + Waskia + + + + + Obispeno + + + + + Kono (Guinea) + + + + + Dadibi + + + + + Lapuyan Subanun + + + + + Chonyi + + + + + Dyugun + + + + + Yagwoia + + + + + Tima + + + + + Eggon + + + + + Talieng + + + + + Baluan-Pam + + + + + Fuyug + + + + + Doondo + + + + + Temuan + + + + + Kalam + + + + + Marwari + + + + + Okolod + + + + + Daza + + + + + Boguru + + + + + Cayuse + + + + + Kuy + + + + + Eastern Tamang + + + + + Ifo + + + + + Karitiana + + + + + Nara + + + + + Liberian English + + + + + Bukar Sadong + + + + + Duupa + + + + + Kelon + + + + + Ushojo + + + + + Clallam + + + + + Europanto + + + + + Leningitij + + + + + Babanki + + + + + Southern Nuni + + + + + Ososo + + + + + Orang Kanaq + + + + + Kwadi + + + + + Honduras Sign Language + + + + + Boma + + + + + Iteri + + + + + Paranan + + + + + Lithuanian Sign Language + + + + + Tai Long + + + + + Judeo-Moroccan Arabic + + + + + Kofei + + + + + Zayse-Zergulla + + + + + Southern Kiwai + + + + + Elseng + + + + + San Juan Colorado Mixtec + + + + + Umatilla + + + + + Lenakel + + + + + Songomeno + + + + + Taroko + + + + + Hiberno-Scottish Gaelic + + + + + Northern Tutchone + + + + + Pye Krumen + + + + + Iau + + + + + Cubulco Achi + + + + + Northeastern Thai + + + + + Old Aramaic + + + + + Liburnian + + + + + Dawawa + + + + + Najdi Arabic + + + + + Wanji + + + + + Asho Chin + + + + + Chothe Naga + + + + + Paipai + + + + + Early Tripuri + + + + + Tsoa + + + + + Vunapu + + + + + Dhatki + + + + + Hoti + + + + + Susu + + + + + Iowa-Oto + + + + + Bepour + + + + + Chambri + + + + + Dime + + + + + Rennell-Belona + + + + + Rundi + + + + + Ngombe (Democratic Republic of Congo) + + + + + Majera + + + + + Bung + + + + + Wapan + + + + + Mattole + + + + + Picard + + + + + Alor + + + + + Iwur + + + + + Tamki + + + + + Central Cakchiquel + + + + + Sawi + + + + + Mwan + + + + + Old High German (ca. 750-1050) + + + + + Gusan + + + + + Taman (Indonesia) + + + + + Kwini + + + + + Yinglish + + + + + Mori Atas + + + + + Old Uighur + + + + + Sauri + + + + + Anus + + + + + Bogaya + + + + + Kunimaipa + + + + + Filipino + + + + + Njalgulgule + + + + + Para Arara + + + + + Kumak + + + + + Cauca + + + + + Bohtan Neo-Aramaic + + + + + Lere + + + + + Pengo + + + + + Iha + + + + + Hai//om + + + + + Aequian + + + + + Kujarge + + + + + Eastern Kayah + + + + + Iriga Bicolano + + + + + Urartian + + + + + Maramba + + + + + Lama (Myanmar) + + + + + Mapoyo + + + + + Mazatlan Mixe + + + + + Mangareva + + + + + Persian Sign Language + + + + + Siamou + + + + + Ngbaka Ma'bo + + + + + Sengseng + + + + + Dhanwar (Nepal) + + + + + Atuence + + + + + Hmar + + + + + Guramalum + + + + + Ama (Sudan) + + + + + Illyrian + + + + + Romam + + + + + Kung-Ekoka + + + + + Yahang + + + + + Yevanic + + + + + Safwa + + + + + South African Sign Language + + + + + Old Dutch + + + + + North Moluccan Malay + + + + + Kenga + + + + + Hewa + + + + + Narom + + + + + Chorotega + + + + + Gourmanchema + + + + + Southern Lorung + + + + + Wandala + + + + + Kambera + + + + + Yulu + + + + + Mbati + + + + + Belarusian + + + + + Anuak + + + + + Kambaata + + + + + Jurchen + + + + + Paku + + + + + Emplawas + + + + + Dusun Deyah + + + + + Hermit + + + + + Nukuria + + + + + Langbashe + + + + + Antankarana Malagasy + + + + + Chadian Sign Language + + + + + Were + + + + + Northern Yukaghir + + + + + Shakara + + + + + Nakanai + + + + + Kaike + + + + + Nyindu + + + + + Igo + + + + + Nimanbur + + + + + Zumbun + + + + + Mixtepec Mixtec + + + + + Xiandao + + + + + Central Nahuatl + + + + + Bemba (Democratic Republic of Congo) + + + + + Old Hittite + + + + + Gilaki + + + + + Lelepa + + + + + Gorap + + + + + Ixcatlan Mazatec + + + + + Kamakan + + + + + Karas + + + + + Dixon Reef + + + + + Buhutu + + + + + Southeast Babar + + + + + Southeast Ambrym + + + + + Jalkunan + + + + + Western Cham + + + + + Sangu (Gabon) + + + + + Dhanki + + + + + Bonjo + + + + + Miwa + + + + + Luo (Kenya and Tanzania) + + + + + Old Ossetic + + + + + Adiwasi Garasia + + + + + Koorete + + + + + Banda-Yangere + + + + + Kumalu + + + + + Finnish Sign Language + + + + + Mansoanka + + + + + Koneraw + + + + + Kunama + + + + + Rao + + + + + Maku'a + + + + + Tapirape + + + + + Santa Ines Ahuatempan Popoloca + + + + + Lembena + + + + + Mbulungish + + + + + Tina Sambal + + + + + Likila + + + + + South Lembata + + + + + Macushi + + + + + Northern Roglai + + + + + Bukit Malay + + + + + Xaasongaxango + + + + + Rungwa + + + + + Lamu-Lamu + + + + + Ngong + + + + + Akar-Bale + + + + + Bolia + + + + + Bariji + + + + + Highland Oaxaca Chontal + + + + + Bugawac + + + + + Teribe + + + + + Buya + + + + + West Damar + + + + + Kwoma + + + + + Karaja + + + + + Kamantan + + + + + Kaimbe + + + + + Burarra + + + + + Ghodoberi + + + + + Jora + + + + + Caka + + + + + Makurap + + + + + Min Bei Chinese + + + + + Morelos Nahuatl + + + + + Ambonese Malay + + + + + Kisar + + + + + Kendayan + + + + + Numidian + + + + + Tapiete + + + + + Kerek + + + + + Uruguayan Sign Language + + + + + Djawi + + + + + Lahnda + + + + + Guwamu + + + + + Tasmate + + + + + Samba Daka + + + + + Longuda + + + + + Kachin + + + + + Shixing + + + + + Gwahatike + + + + + Nanticoke + + + + + Meramera + + + + + Ache + + + + + Uri + + + + + Worimi + + + + + Daonda + + + + + Southern Rengma Naga + + + + + Gwamhi-Wuri + + + + + Ama (Papua New Guinea) + + + + + Kapya + + + + + Riantana + + + + + Akurio + + + + + Middle Korean (10th - 16th cent.) + + + + + Gowli + + + + + Hmong Njua + + + + + Baluchi + + + + + Maghdi + + + + + Monsang Naga + + + + + Arawum + + + + + Tumak + + + + + Eteocypriot + + + + + Silopi + + + + + Tigrinya + + + + + Bukwen + + + + + Mbangwe + + + + + Minoan + + + + + Catawba + + + + + Amri + + + + + Geko Karen + + + + + Asu (Nigeria) + + + + + Kombai + + + + + Carutana + + + + + Punan Batu 1 + + + + + Sylheti + + + + + Chokwe + + + + + Achagua + + + + + Tamashek + + + + + Penang Sign Language + + + + + Jagoi + + + + + Bo (Laos) + + + + + Elip + + + + + Sulung + + + + + Deg + + + + + Phuong + + + + + Gyem + + + + + Owiniga + + + + + Varhadi-Nagpuri + + + + + Wotu + + + + + Lele (Guinea) + + + + + Northwestern Ojibwa + + + + + Northeastern Dinka + + + + + Abar + + + + + Bago-Kusuntu + + + + + Thangmi + + + + + Suabo + + + + + Pulabu + + + + + Kwerba Mamberamo + + + + + Far Western Muria + + + + + Kaxarari + + + + + Chemakum + + + + + Tidong + + + + + Southern Aymara + + + + + Choni + + + + + Sheko + + + + + Somray + + + + + Uneapa + + + + + Central Dusun + + + + + Dogri (macrolanguage) + + + + + Aoheng + + + + + Loma (Liberia) + + + + + Yaweyuha + + + + + Faita + + + + + Sajalong + + + + + Monde + + + + + Andaman Creole Hindi + + + + + Merey + + + + + Kosena + + + + + Nocaman + + + + + Lower Ta'oih + + + + + Thudam + + + + + Koshin + + + + + Cuba Sign Language + + + + + Southern Sotho + + + + + Guana (Brazil) + + + + + Land Dayak + + + + + Central Bicolano + + + + + Biatah + + + + + Pirlatapa + + + + + Yalalag Zapotec + + + + + Aramanik + + + + + Paynamar + + + + + Larteh + + + + + Dyaberdyaber + + + + + Huli + + + + + Eloyi + + + + + Bhatola + + + + + Tambas + + + + + Xanaguia Zapotec + + + + + Judeo-Yemeni Arabic + + + + + Fanagalo + + + + + Toromono + + + + + Totomachapan Zapotec + + + + + Kangri + + + + + Kodagu + + + + + Venetic + + + + + Mpiemo + + + + + Comox + + + + + Fwe + + + + + Feroge + + + + + Eastern Jacalteco + + + + + Sena + + + + + Yoron + + + + + Tacanec + + + + + Gaikundi + + + + + Buyang + + + + + Katcha-Kadugli-Miri + + + + + Chala + + + + + Kerewo + + + + + Uzbeki Arabic + + + + + Awbono + + + + + Riung + + + + + Bwisi + + + + + Kildin Sami + + + + + Jamsay Dogon + + + + + Ipulo + + + + + Piapoco + + + + + Lindu + + + + + Apalai + + + + + Nepalese Sign Language + + + + + Capanahua + + + + + Khetrani + + + + + Irarutu + + + + + Tapeba + + + + + Middle High German (ca. 1050-1500) + + + + + Kumhali + + + + + Vili + + + + + Urapmin + + + + + Bafaw-Balong + + + + + Oroch + + + + + Lyele + + + + + Tigon Mbembe + + + + + Bengkulu + + + + + San Miguel Piedras Mixtec + + + + + Samberigi + + + + + Kokota + + + + + Jerung + + + + + Teluti + + + + + Kwaja + + + + + Shumcho + + + + + Kaiep + + + + + Ninzo + + + + + Tindi + + + + + Awa-Cuaiquer + + + + + Western Muria + + + + + Gawar-Bati + + + + + Nateni + + + + + Tangchangya + + + + + Hehe + + + + + Siriono + + + + + Gera + + + + + Nahali + + + + + Bats + + + + + Iguta + + + + + Ndun + + + + + Mpongmpong + + + + + Isekiri + + + + + Ong + + + + + Idi + + + + + Spanish + + + + + Matses + + + + + Kaningi + + + + + Berom + + + + + Tengger + + + + + Buksa + + + + + Barambu + + + + + Ainbai + + + + + Northern Rengma Naga + + + + + Sea Island Creole English + + + + + Kanufi + + + + + Lower Silesian + + + + + Wipi + + + + + Mudhili Gadaba + + + + + Turkic Khalaj + + + + + Neku + + + + + Venustiano Carranza Tzotzil + + + + + Nkem-Nkum + + + + + Alsea + + + + + Lingao + + + + + Bahau + + + + + Yawiyo + + + + + Bedoanas + + + + + Anserma + + + + + Tha + + + + + Lamja-Dengsa-Tola + + + + + Nar Phu + + + + + Sansu + + + + + Ihievbe + + + + + Kota Marudu Tinagas + + + + + Seit-Kaitetu + + + + + Holu + + + + + Aribwatsa + + + + + Katkari + + + + + Ho Chi Minh City Sign Language + + + + + Tigak + + + + + Western Dani + + + + + Phrygian + + + + + Vlax Romani + + + + + Upper Baram Kenyah + + + + + Ririo + + + + + Northern Huishui Hmong + + + + + Miarra + + + + + Sawknah + + + + + Meriam + + + + + Tamil + + + + + Mada (Cameroon) + + + + + Ndzwani Comorian + + + + + Central Sierra Miwok + + + + + Tsuvan + + + + + Jere + + + + + Firan + + + + + Igala + + + + + Eastern Huishui Hmong + + + + + Soli + + + + + Jiamao + + + + + Uma + + + + + Dayao Yi + + + + + Chincha Quechua + + + + + Northern Haida + + + + + Northern Pame + + + + + Ma'ya + + + + + Nanti + + + + + Baraamu + + + + + Lakalei + + + + + Gwere + + + + + Ngatik Men's Creole + + + + + Osage + + + + + Gabrielino-Fernandeno + + + + + Bumaji + + + + + Quiotepec Chinantec + + + + + Kango (Bas-Uele District) + + + + + Lombo + + + + + Okanagan + + + + + Maden + + + + + Lepcha + + + + + Busang Kayan + + + + + Mariyedi + + + + + Kehu + + + + + Chichimeca-Jonaz + + + + + Avau + + + + + Mingrelian + + + + + Alune + + + + + Sansi + + + + + Achuar-Shiwiar + + + + + Meru + + + + + Bhele + + + + + Sikaritai + + + + + Mamulique + + + + + Mazaltepec Zapotec + + + + + Wagawaga + + + + + Japanese Sign Language + + + + + Tsogo + + + + + Pankhu + + + + + Mehek + + + + + Russian + + + + + Maguindanao + + + + + Nindi + + + + + Ito + + + + + Northern Tarahumara + + + + + Chibcha + + + + + Crimean Tatar + + + + + Maii + + + + + Kota Marudu Talantang + + + + + Xokleng + + + + + Urarina + + + + + Polish + + + + + Likum + + + + + Oune + + + + + Bambili-Bambui + + + + + Kwak + + + + + Sakata + + + + + Pamona + + + + + Gros Ventre + + + + + Modang + + + + + Kande + + + + + Tehit + + + + + Ngamini + + + + + Umon + + + + + Sangir + + + + + Yawuru + + + + + Gobu + + + + + Tasmanian + + + + + Surbakhal + + + + + Texmelucan Zapotec + + + + + Isoko + + + + + Southeastern Kolami + + + + + Kyerung + + + + + Gade Lohar + + + + + Khunsari + + + + + Kullu Pahari + + + + + Batak Angkola + + + + + Merei + + + + + Pattani + + + + + Dondo + + + + + Mengisa + + + + + Classical Syriac + + + + + Sanye + + + + + Lower Sorbian + + + + + Bafia + + + + + Margany + + + + + Zaghawa + + + + + Nukuini + + + + + Kunyi + + + + + Angami Naga + + + + + Kapin + + + + + Sausi + + + + + Bangala + + + + + Laz + + + + + Mariri + + + + + Ebrie + + + + + Waura + + + + + Severn Ojibwa + + + + + Pennsylvania German + + + + + Rawang + + + + + Ati + + + + + Eastern Magar + + + + + Pulaar + + + + + Mea + + + + + Eastern Pokomam + + + + + Guguyimidjir + + + + + Huichol + + + + + Kobiana + + + + + Marau + + + + + Dia + + + + + Carolina Algonquian + + + + + Tal + + + + + Southeastern Pomo + + + + + Sika + + + + + Kate + + + + + Wutunhua + + + + + Buwal + + + + + Masbatenyo + + + + + Nagarchal + + + + + Banda-Banda + + + + + Gan Chinese + + + + + Malaccan Creole Malay + + + + + Southeastern Puebla Nahuatl + + + + + Taloki + + + + + Kru'ng 2 + + + + + Chitkuli Kinnauri + + + + + Kaninuwa + + + + + Samre + + + + + Bulu (Cameroon) + + + + + Ixtayutla Mixtec + + + + + Mator-Taygi-Karagas + + + + + Oromo + + + + + Selayar + + + + + Weme Gbe + + + + + Mantsi + + + + + Uya + + + + + Kuri + + + + + Budeh Stieng + + + + + Joyabaj Quiche + + + + + Bannoni + + + + + Wangganguru + + + + + Limburgan + + + + + Lama (Togo) + + + + + Waling + + + + + French Sign Language + + + + + Abidji + + + + + Qashqa'i + + + + + Tetete + + + + + Asoa + + + + + Palu'e + + + + + Alagwa + + + + + Serrano + + + + + Agoi + + + + + Huilliche + + + + + Miu + + + + + Naaba + + + + + Arigidi + + + + + Lintang + + + + + Abadi + + + + + Sierra de Juarez Zapotec + + + + + Gula Iro + + + + + Panamint + + + + + Saxwe Gbe + + + + + Dek + + + + + Manza + + + + + Bolondo + + + + + Na-Meo + + + + + Lemolang + + + + + Jilim + + + + + Moskona + + + + + Omani Arabic + + + + + Snohomish + + + + + Ma (Papua New Guinea) + + + + + Mina (India) + + + + + Gun + + + + + Chipiajes + + + + + Pingelapese + + + + + Dandami Maria + + + + + Komi-Zyrian + + + + + Djamindjung + + + + + Badeshi + + + + + Matal + + + + + Patla-Chicontla Totonac + + + + + Puno Quechua + + + + + Northeast Maidu + + + + + Halbi + + + + + Fala + + + + + Umiray Dumaget Agta + + + + + Ahanta + + + + + Kenyan Sign Language + + + + + Busoa + + + + + Mokilese + + + + + Bamu + + + + + Bangba + + + + + Morigi + + + + + Purubora + + + + + Leelau + + + + + Sangisari + + + + + Kumauni + + + + + Tinoc Kallahan + + + + + Romanian Sign Language + + + + + Upper Sorbian + + + + + Dzando + + + + + Pomo + + + + + Zenzontepec Chatino + + + + + Iha Based Pidgin + + + + + Songe + + + + + Saam + + + + + Dacian + + + + + Lahu Shi + + + + + Tepecano + + + + + North Ndebele + + + + + Pale Palaung + + + + + Okpe (Southwestern Edo) + + + + + Simaa + + + + + Ura (Vanuatu) + + + + + Lower Grand Valley Dani + + + + + Bure + + + + + Wampur + + + + + Homa + + + + + Gungu + + + + + Koro (Cote d'Ivoire) + + + + + Watam + + + + + Dongotono + + + + + Trinitario + + + + + Swiss-Italian Sign Language + + + + + Idun + + + + + Welsh Romani + + + + + Yaben + + + + + Coeur d'Alene + + + + + Isanzu + + + + + Bit + + + + + Classical Nahuatl + + + + + Jahanka + + + + + Makhuwa-Marrevone + + + + + Lasalimu + + + + + San Blas Kuna + + + + + Subiya + + + + + Sengo + + + + + Kwaya + + + + + Romanova + + + + + Kein + + + + + Lealao Chinantec + + + + + Eastern Xwla Gbe + + + + + Dza + + + + + Southern Lolopho Yi + + + + + Bukiyip + + + + + Ginuman + + + + + Amara + + + + + Wumboko + + + + + Kambiwa + + + + + French + + + + + Ekajuk + + + + + Pahlavi + + + + + Harauti + + + + + Camunic + + + + + Yamna + + + + + Western Yi + + + + + Ke'o + + + + + Southern Zhuang + + + + + Guliguli + + + + + Inga + + + + + Ngie + + + + + Mugom + + + + + Kim + + + + + Eastern Bru + + + + + Istro Romanian + + + + + Karnai + + + + + Paniya + + + + + Traveller Danish + + + + + Alekano + + + + + Siwai + + + + + Enepa + + + + + Chickasaw + + + + + Finongan + + + + + Russian Sign Language + + + + + Wiarumus + + + + + Chaura + + + + + Yendang + + + + + Tawoyan + + + + + Kutang Ghale + + + + + Basa-Gurmana + + + + + Zaramo + + + + + Gants + + + + + Hiri Motu + + + + + Aribwaung + + + + + Manipa + + + + + Machinere + + + + + Bulgarian + + + + + Bayali + + + + + Tubatulabal + + + + + Southern Mnong + + + + + Buyu + + + + + Malua Bay + + + + + Urigina + + + + + Kodeoha + + + + + Nali + + + + + Ese + + + + + Utu + + + + + Southern Toussian + + + + + Geez + + + + + Ngarla + + + + + Tsishingini + + + + + Palantla Chinantec + + + + + Banda Malay + + + + + Yinchia + + + + + Jiiddu + + + + + Dhangu + + + + + Fordata + + + + + Mekeo + + + + + Nkongho + + + + + Suma + + + + + Mbangala + + + + + Mumuye + + + + + Ambala Ayta + + + + + Tairuma + + + + + Luimbi + + + + + Momina + + + + + Bende + + + + + Ganzi + + + + + Sangab Mandaya + + + + + Southern Nicobarese + + + + + Hmong Don + + + + + Nimo + + + + + Motlav + + + + + Dengka + + + + + Marwari (Pakistan) + + + + + Sindarin + + + + + Tulishi + + + + + Umeda + + + + + Quetzaltepec Mixe + + + + + Kantosi + + + + + Kuranko + + + + + Ngiemboon + + + + + Mmen + + + + + Yahadian + + + + + Ocotepec Mixtec + + + + + Koyaga + + + + + Tunisian Sign Language + + + + + Yautepec Zapotec + + + + + Burji + + + + + Ucayali-Yurua Asheninka + + + + + Eipomek + + + + + Dii + + + + + Nengone + + + + + Teke-Nzikou + + + + + Vangunu + + + + + Kaiy + + + + + Lardil + + + + + Kaskean + + + + + Gugu Badhun + + + + + Padoe + + + + + Ejamat + + + + + Gagnoa Bete + + + + + Nungu + + + + + Pecheneg + + + + + Atong + + + + + Panang + + + + + Yatzachi Zapotec + + + + + Baiso + + + + + Boano (Maluku) + + + + + Njerep + + + + + Tira + + + + + Old Cornish + + + + + Simbari + + + + + Cacaloxtepec Mixtec + + + + + Ha + + + + + Gudu + + + + + Lozi + + + + + Middle Welsh + + + + + Bentong + + + + + Wab + + + + + Gwich'in + + + + + Phong-Kniang + + + + + Atsam + + + + + Adivasi Oriya + + + + + Chipewyan + + + + + Malapandaram + + + + + Sichuan Yi + + + + + Yonaguni + + + + + Bayot + + + + + Angaatiha + + + + + South Bolivian Quechua + + + + + Sauk + + + + + Ura (Papua New Guinea) + + + + + Orokolo + + + + + Chokri Naga + + + + + Kaansa + + + + + Sagala + + + + + Maru + + + + + Korwa + + + + + Apalik + + + + + Yaur + + + + + Gwa + + + + + Leipon + + + + + Bukitan + + + + + Pwo Northern Karen + + + + + Degenan + + + + + Sursurunga + + + + + Dakpakha + + + + + Wajarri + + + + + Guato + + + + + Wom (Nigeria) + + + + + Nsongo + + + + + Mbwela + + + + + Serudung Murut + + + + + Ngom + + + + + Zaiwa + + + + + Paliyan + + + + + Pa'a + + + + + Mekmek + + + + + Kalmyk + + + + + Tasawaq + + + + + Piya-Kwonci + + + + + Mikasuki + + + + + Yombe + + + + + Novial + + + + + Mongolian + + + + + Mosimo + + + + + Hahon + + + + + Turung + + + + + Termanu + + + + + Yelogu + + + + + Me'en + + + + + Sentani + + + + + Kamberau + + + + + Zande (individual language) + + + + + Ndonde Hamba + + + + + Hungarian + + + + + Kachi Koli + + + + + Polish Sign Language + + + + + Ganglau + + + + + Panao Huanuco Quechua + + + + + Fore + + + + + Chenoua + + + + + Binukid + + + + + Dumpu + + + + + Santa Maria La Alta Nahuatl + + + + + Sakao + + + + + Babine + + + + + Mundang + + + + + Etebi + + + + + Guiqiong + + + + + Salt-Yui + + + + + Kelabit + + + + + Southern Thai + + + + + Wiaki + + + + + Zacatepec Chatino + + + + + Nande + + + + + Kamasau + + + + + San Vicente Coatlan Zapotec + + + + + Bagvalal + + + + + Kerinci + + + + + Fania + + + + + Campalagian + + + + + Koroshi + + + + + Jabuti + + + + + Piame + + + + + Juruna + + + + + Lavukaleve + + + + + Bauwaki + + + + + Chamula Tzotzil + + + + + Mentawai + + + + + Vietnamese + + + + + Tieyaxo Bozo + + + + + Sota Kanum + + + + + Yuqui + + + + + Nganasan + + + + + Urhobo + + + + + Tsimshian + + + + + Gbaya (Central African Republic) + + + + + Bintulu + + + + + Khisa + + + + + Maquiritari + + + + + Phrae Pwo Karen + + + + + Jeng + + + + + Onobasulu + + + + + Temoq + + + + + Bidyara + + + + + Adi + + + + + Mwera (Chimwera) + + + + + South Central Dinka + + + + + Nkhumbi + + + + + Ejagham + + + + + Sechelt + + + + + Sanggau + + + + + Lishan Didan + + + + + Mamanwa + + + + + Mixifore + + + + + Lele (Chad) + + + + + Pacoh + + + + + Oxchuc Tzeltal + + + + + Lole + + + + + Koti + + + + + Boloki + + + + + Longgu + + + + + Horpa + + + + + Disa + + + + + Manda (Tanzania) + + + + + Kanju + + + + + Chuwabu + + + + + Yamphu + + + + + Louisiana Creole French + + + + + Udi + + + + + Ashe + + + + + Umbugarla + + + + + Achinese + + + + + Nyigina + + + + + Gambian Wolof + + + + + Lowland Oaxaca Chontal + + + + + Hrangkhol + + + + + Golin + + + + + Northwest Oaxaca Mixtec + + + + + Mawes + + + + + Kiorr + + + + + Penrhyn + + + + + Batuley + + + + + Bo (Papua New Guinea) + + + + + Guyanese Creole English + + + + + Southern Amami-Oshima + + + + + Chipaya + + + + + Central Huishui Hmong + + + + + Sacapulteco + + + + + Mbula-Bwazza + + + + + Nukumanu + + + + + Glio-Oubi + + + + + Alago + + + + + West Lembata + + + + + Degema + + + + + Tunni + + + + + Sula + + + + + Ronji + + + + + Shughni + + + + + Nshi + + + + + Ibaloi + + + + + Hanga + + + + + Leyigha + + + + + Kemtuik + + + + + Banda (Indonesia) + + + + + Old Provencal (to 1500) + + + + + Lewo Eleng + + + + + Lampung + + + + + San Luis Temalacayuca Popoloca + + + + + China Buriat + + + + + Avikam + + + + + Middle Irish (900-1200) + + + + + Ngizim + + + + + Timucua + + + + + Kerak + + + + + Mochi + + + + + Pwapwa + + + + + Western Cakchiquel + + + + + Kuo + + + + + Nijadali + + + + + Kagulu + + + + + Bube + + + + + Ngulu + + + + + Northern Nambikuara + + + + + Roria + + + + + Old Manipuri + + + + + Mpade + + + + + Ede Ica + + + + + Occitan (post 1500) + + + + + Wamin + + + + + Loloda + + + + + Chilean Sign Language + + + + + Duna + + + + + Standard Arabic + + + + + Interlingua (International Auxiliary Language Association) + + + + + Powhatan + + + + + Shamang + + + + + Nayi + + + + + Guragone + + + + + Mengen + + + + + Baibai + + + + + Koryak + + + + + Ega + + + + + Sa'ban + + + + + Gonja + + + + + Bajan + + + + + To + + + + + Epigraphic Mayan + + + + + Yagnobi + + + + + Giyug + + + + + Tahaggart Tamahaq + + + + + Jonkor Bourmataguil + + + + + Central Awyu + + + + + Tedaga + + + + + Kenati + + + + + Samei + + + + + Marathi + + + + + Trimuris + + + + + Ga'dang + + + + + Paumari + + + + + Chorti + + + + + So (Democratic Republic of Congo) + + + + + Gitonga + + + + + Awara + + + + + Ligurian (Ancient) + + + + + Western Xiangxi Hmong + + + + + Belize Kriol English + + + + + Kare (Papua New Guinea) + + + + + Hausa + + + + + Kalarko + + + + + Pinyin + + + + + Cajun French + + + + + Koda + + + + + Bole + + + + + Merwari + + + + + Casiguran Dumagat Agta + + + + + Mbalanhu + + + + + Klao + + + + + Southwestern Fars + + + + + Ewondo + + + + + Wulna + + + + + Likwala + + + + + Chimborazo Highland Quichua + + + + + Laro + + + + + Central Yupik + + + + + Noiri + + + + + Enga + + + + + Masikoro Malagasy + + + + + Nyemba + + + + + San Pedro Amuzgos Amuzgo + + + + + Yuaga + + + + + Mawayana + + + + + Sikkimese + + + + + Ngawun + + + + + Atayal + + + + + Dumi + + + + + Central Tagbanwa + + + + + Sepa (Indonesia) + + + + + Ampanang + + + + + Bezhta + + + + + Rombo + + + + + Mian + + + + + Yana + + + + + Sindihui Mixtec + + + + + Kaiwa + + + + + Aulua + + + + + Chodri + + + + + Mangbetu + + + + + Hawai'i Creole English + + + + + Sibe + + + + + Bernde + + + + + Dedua + + + + + Wasembo + + + + + Basa-Gumna + + + + + Wersing + + + + + Nuk + + + + + Tolowa + + + + + Topoiyo + + + + + Ede Ije + + + + + Bilaspuri + + + + + Kagoro + + + + + Eastern Ngad'a + + + + + Surajpuri + + + + + Tai Ya + + + + + Swahili (macrolanguage) + + + + + Calderon Highland Quichua + + + + + Benga + + + + + Ormuri + + + + + Western Krahn + + + + + Kumukio + + + + + Nocte Naga + + + + + Cappadocian Greek + + + + + Baras + + + + + Bobot + + + + + Tafi + + + + + Loxicha Zapotec + + + + + Awiyaana + + + + + Isconahua + + + + + Mbunda + + + + + Nyankole + + + + + Karko + + + + + Konomala + + + + + Kakihum + + + + + Southern Dong + + + + + Boikin + + + + + Mogholi + + + + + Mangas + + + + + Old Persian (ca. 600-400 B.C.) + + + + + Gimnime + + + + + Gedaged + + + + + Fipa + + + + + Namuyi + + + + + Nicaraguan Sign Language + + + + + Mituku + + + + + Nihali + + + + + Guya + + + + + Jaqaru + + + + + Angloromani + + + + + Burum-Mindik + + + + + Digo + + + + + Garo + + + + + Zoogocho Zapotec + + + + + Kur + + + + + Lyons Sign Language + + + + + Mufian + + + + + Northwestern Kolami + + + + + Rwa + + + + + Niksek + + + + + Kekchi + + + + + Jakun + + + + + Shuswap + + + + + Sikaiana + + + + + Jilbe + + + + + Kaulong + + + + + Nkoroo + + + + + Rema + + + + + Amapa Creole + + + + + Zigula + + + + + Kove + + + + + Ayautla Mazatec + + + + + Mid-Southern Banda + + + + + Southeastern Tepehuan + + + + + Western Keres + + + + + Erzya + + + + + Bina (Nigeria) + + + + + Desiya Oriya + + + + + Colombian Sign Language + + + + + Talai + + + + + Papavo + + + + + Liangmai Naga + + + + + Ndam + + + + + Machiguenga + + + + + Yangho + + + + + Berawan + + + + + Paranawat + + + + + Miahuatlan Zapotec + + + + + Yagua + + + + + Egyptian (Ancient) + + + + + Banggarla + + + + + Cubeo + + + + + Siroi + + + + + Bini + + + + + Central Asmat + + + + + Poumei Naga + + + + + Magahat + + + + + Wik-Keyangan + + + + + Carabayo + + + + + Melo + + + + + Rajput Garasia + + + + + Matengo + + + + + Maiadomu + + + + + Pawaia + + + + + Judeo-Crimean Tatar + + + + + Tunica + + + + + Han + + + + + Sayula Popoluca + + + + + Hidatsa + + + + + N'Ko + + + + + Kpessi + + + + + Punan Merap + + + + + Adzera + + + + + Suena + + + + + Ono + + + + + Pular + + + + + Nepali Kurux + + + + + Huaylla Wanca Quechua + + + + + Bine + + + + + Saho + + + + + Kunggari + + + + + Celtiberian + + + + + Edolo + + + + + Sarsi + + + + + Dar Sila Daju + + + + + Kwomtari + + + + + Maiwala + + + + + Kare (Central African Republic) + + + + + Sian + + + + + Utarmbung + + + + + Wusi + + + + + Tsakwambo + + + + + Hatam + + + + + Nisenan + + + + + Yala + + + + + Nakwi + + + + + Lak + + + + + Nyam + + + + + Zarphatic + + + + + Ndogo + + + + + Chiquitano + + + + + Southeastern Ixtlan Zapotec + + + + + North Watut + + + + + Tsat + + + + + Tatuyo + + + + + Dombe + + + + + Hre + + + + + Upper Kinabatangan + + + + + Xavante + + + + + Chenalho Tzotzil + + + + + Haroi + + + + + Jad + + + + + Vumbu + + + + + Kete + + + + + Bahonsuai + + + + + Inor + + + + + Papel + + + + + Upper Pokomo + + + + + Attie + + + + + Wik-Ngathana + + + + + Kuijau + + + + + Binongan Itneg + + + + + Bainouk-Gunyaamolo + + + + + Port Sandwich + + + + + Ogan + + + + + Anor + + + + + Kharia + + + + + Dar Daju Daju + + + + + Singa + + + + + Naka'ela + + + + + Eastern Cakchiquel + + + + + Middle French (ca. 1400-1600) + + + + + Ache Yi + + + + + Sarikoli + + + + + Gengle + + + + + Gresi + + + + + Judeo-Tripolitanian Arabic + + + + + Temiar + + + + + Kwerisa + + + + + Kono (Sierra Leone) + + + + + Cholon + + + + + Ngombe (Central African Republic) + + + + + Gilbertese + + + + + Vame + + + + + Deori + + + + + Anyin + + + + + Kagoma + + + + + Mansaka + + + + + Warlpiri + + + + + Classical Quechua + + + + + Takestani + + + + + Siuslaw + + + + + Metlatonoc Mixtec + + + + + Phom Naga + + + + + Makolkol + + + + + Toba + + + + + Baimak + + + + + Kim Mun + + + + + South Azerbaijani + + + + + Tunen + + + + + Gorontalo + + + + + Wappo + + + + + Minaveha + + + + + Mpotovoro + + + + + Glavda + + + + + Chakali + + + + + Owa + + + + + Yelmek + + + + + Wadjigu + + + + + Dumpas + + + + + Kulon-Pazeh + + + + + Akhvakh + + + + + Venezuelan Sign Language + + + + + Futuna-Aniwa + + + + + Lake Miwok + + + + + Salar + + + + + Kunjen + + + + + Huallaga Huanuco Quechua + + + + + Saek + + + + + Malgbe + + + + + Teke-Tsaayi + + + + + Ambai + + + + + Dori'o + + + + + Iko + + + + + Ngul + + + + + Iyive + + + + + Lacandon + + + + + Wali (Sudan) + + + + + Anmatyerre + + + + + Tofin Gbe + + + + + Mansi + + + + + Atohwaim + + + + + Marino + + + + + Bubi + + + + + Marka + + + + + San Dionisio Del Mar Huave + + + + + Alawa + + + + + Noon + + + + + Tangoa + + + + + Pentlatch + + + + + Abkhazian + + + + + Qatabanian + + + + + Sensi + + + + + Dhofari Arabic + + + + + Asilulu + + + + + Kara (Papua New Guinea) + + + + + East Masela + + + + + Lhokpu + + + + + Misima-Paneati + + + + + Holikachuk + + + + + Emok + + + + + Wae Rana + + + + + Seroa + + + + + Shempire Senoufo + + + + + Moroccan Sign Language + + + + + Pogolo + + + + + Northwest Alaska Inupiatun + + + + + Gbagyi + + + + + Nauna + + + + + Northern Nuni + + + + + Tela-Masbuar + + + + + Bahnar + + + + + Koho + + + + + Ponares + + + + + Ringgou + + + + + Sape + + + + + Binandere + + + + + Xamtanga + + + + + Lachi + + + + + Yuruti + + + + + Nage + + + + + Zenag + + + + + Kumbewaha + + + + + Lamnso' + + + + + Owenia + + + + + Guajajara + + + + + Cacaopera + + + + + Upper Chehalis + + + + + Polari + + + + + Vai + + + + + Yatee Zapotec + + + + + Tumi + + + + + Balkan Gagauz Turkish + + + + + Suga + + + + + Hano + + + + + Lishana Deni + + + + + Aneityum + + + + + Malgana + + + + + Tembe + + + + + Folopa + + + + + Bachajon Tzeltal + + + + + Repanbitip + + + + + Kominimung + + + + + Quiavicuzas Zapotec + + + + + Iberian + + + + + Gbati-ri + + + + + Langobardic + + + + + Chagatai + + + + + Panytyima + + + + + Wikngenchera + + + + + Kugbo + + + + + Polabian + + + + + Mori Bawah + + + + + Omok + + + + + Ainu (Japan) + + + + + Dusner + + + + + Hupde + + + + + Surubu + + + + + Shwai + + + + + Yari + + + + + Northern Hindko + + + + + Jirel + + + + + Dogrib + + + + + 'Areare + + + + + Faiwol + + + + + Mobumrin Aizi + + + + + Crow + + + + + Mwatebu + + + + + Warapu + + + + + Kwami + + + + + Santa Lucia Monteverde Mixtec + + + + + Gal + + + + + Molof + + + + + Mosina + + + + + Ujir + + + + + Putai + + + + + Gamo-Gofa-Dawro + + + + + South Ndebele + + + + + Tharaka + + + + + Te'un + + + + + Krenak + + + + + Kalou + + + + + Kraho + + + + + San Miguel El Grande Mixtec + + + + + Waama + + + + + Xaragure + + + + + Kayagar + + + + + Inabaknon + + + + + Mezquital Otomi + + + + + Shehri + + + + + Towei + + + + + Mvanip + + + + + Andegerebinha + + + + + Mangga Buang + + + + + Kulere + + + + + Wichita + + + + + Mapudungun + + + + + Pam + + + + + Lisu + + + + + Romano-Greek + + + + + Mozarabic + + + + + Palikur + + + + + Scots + + + + + Gugadj + + + + + Umpila + + + + + Uamue + + + + + Mangayat + + + + + Guatemalan Sign Language + + + + + Finnish + + + + + Naluo Yi + + + + + Lau + + + + + Yami + + + + + Burate + + + + + Judeo-Iraqi Arabic + + + + + Zauzou + + + + + Karagas + + + + + Ratagnon + + + + + Ipili + + + + + Burun + + + + + Lou + + + + + Western Frisian + + + + + Omati + + + + + Mzieme Naga + + + + + Karelian + + + + + Rarotongan + + + + + Okiek + + + + + Enwan (Edu State) + + + + + Kanembu + + + + + Kepo' + + + + + Vemgo-Mabas + + + + + Efe + + + + + South Efate + + + + + Fiwaga + + + + + Amto + + + + + Piemontese + + + + + Santa Cruz + + + + + Jiongnai Bunu + + + + + Jur Modo + + + + + Rajah Kabunsuwan Manobo + + + + + Arua + + + + + Angoram + + + + + Sudanese Arabic + + + + + Spiti Bhoti + + + + + Southern Tujia + + + + + Ternate + + + + + Kachama-Ganjule + + + + + Northwestern Fars + + + + + Sur + + + + + Kura Ede Nago + + + + + Biloxi + + + + + Cusco Quechua + + + + + Tonjon + + + + + Mayoyao Ifugao + + + + + Thai Song + + + + + N/u + + + + + Komo (Democratic Republic of Congo) + + + + + Daur + + + + + Mossi + + + + + Kathoriya Tharu + + + + + Luang + + + + + Moinba + + + + + Baga Koga + + + + + Guyani + + + + + Nyole + + + + + Northwest Gbaya + + + + + Eastern Muria + + + + + Mindiri + + + + + Ngile + + + + + Tambunan Dusun + + + + + Bakoko + + + + + Zumaya + + + + + Dhundari + + + + + Eastern Pokomchi + + + + + Dutton World Speedwords + + + + + Badimaya + + + + + Bundeli + + + + + Ambelau + + + + + Ngamambo + + + + + Cocama-Cocamilla + + + + + Kato + + + + + S'gaw Karen + + + + + Pa'o Karen + + + + + Yuracare + + + + + Nugunu (Australia) + + + + + Klias River Kadazan + + + + + Tswa + + + + + Pume + + + + + Laal + + + + + West Uvean + + + + + Oriya + + + + + Bari + + + + + Tora + + + + + Kwerba + + + + + Chaima + + + + + Lenkau + + + + + Maltese + + + + + Sulod + + + + + Mapidian + + + + + Purum Naga + + + + + Arma + + + + + Bantawa + + + + + South Giziga + + + + + Khun + + + + + Saluma + + + + + Bambara + + + + + Vamale + + + + + Lalana Chinantec + + + + + Kholok + + + + + Mudu Koraga + + + + + Dagba + + + + + Nukuoro + + + + + Baikeno + + + + + Pech + + + + + Gorowa + + + + + Kendeje + + + + + Marimanindji + + + + + Kravet + + + + + Kensiu + + + + + Ganza + + + + + Teke-Tyee + + + + + Yaka (Democratic Republic of Congo) + + + + + Tae' + + + + + South Nuaulu + + + + + Wik-Epa + + + + + Duhwa + + + + + Lule Sami + + + + + Philippine Sign Language + + + + + Seluwasan + + + + + Ngundi + + + + + Mangseng + + + + + Araona + + + + + Holma + + + + + Mongolia Buriat + + + + + Nyeu + + + + + Dano + + + + + Mwimbi-Muthambi + + + + + Buyuan Jinuo + + + + + Saotomense + + + + + Nuer + + + + + Beezen + + + + + Jordanian Sign Language + + + + + Miriwung + + + + + Northern Tlaxiaco Mixtec + + + + + Igbo + + + + + Aymara + + + + + Ogbronuagum + + + + + Male (Ethiopia) + + + + + Warluwara + + + + + Mintil + + + + + Tiene + + + + + Berakou + + + + + Havasupai-Walapai-Yavapai + + + + + Island Carib + + + + + Hya + + + + + Lendu + + + + + Southern Hindko + + + + + Yangben + + + + + Awing + + + + + Haida + + + + + Tataltepec Chatino + + + + + Bench + + + + + Manyika + + + + + Lafofa + + + + + Goaria + + + + + Taita + + + + + Ngala + + + + + Lotha Naga + + + + + Northwest Maidu + + + + + Upper Tanudan Kalinga + + + + + Songa + + + + + Khlor + + + + + Wiyot + + + + + Sajau Basap + + + + + Semendo + + + + + Dominican Sign Language + + + + + Paasaal + + + + + Tagbu + + + + + Migabac + + + + + Xinca + + + + + Lojban + + + + + Chong + + + + + Busami + + + + + Nde-Gbite + + + + + Atsahuaca + + + + + Kpatili + + + + + Watakataui + + + + + Tektiteko + + + + + Makonde + + + + + Martu Wangka + + + + + Cornish + + + + + Orya + + + + + Berti + + + + + Sikule + + + + + Amharic + + + + + Bhilali + + + + + Nganyaywana + + + + + Iquito + + + + + Tupari + + + + + Northern Khmer + + + + + Prasuni + + + + + Northern Betsimisaraka Malagasy + + + + + Western Neo-Aramaic + + + + + Kusaal + + + + + Ikwere + + + + + Pipil + + + + + Chonganjiang Hmong + + + + + Tehuelche + + + + + Ivatan + + + + + Chamorro + + + + + Tezoatlan Mixtec + + + + + Aekyom + + + + + Gbanziri + + + + + Ruga + + + + + Khehek + + + + + Fataluku + + + + + Pyu (Myanmar) + + + + + Berta + + + + + Tanjong + + + + + Foma + + + + + Torwali + + + + + Wampar + + + + + Kukatja + + + + + Sumbwa + + + + + Yangman + + + + + Lepontic + + + + + Arabic + + + + + Swati + + + + + Sonde + + + + + Shom Peng + + + + + Berik + + + + + Naro + + + + + Duruwa + + + + + Pacaraos Quechua + + + + + Rutul + + + + + Betawi + + + + + Tjurruru + + + + + Wapha + + + + + Puelche + + + + + Daasanach + + + + + Kiowa Apache + + + + + North Efate + + + + + Negeri Sembilan Malay + + + + + Avaric + + + + + Arho + + + + + Ngangam + + + + + Slovak + + + + + Khorezmian + + + + + Burusu + + + + + Thuri + + + + + Chinbon Chin + + + + + Coahuilteco + + + + + Ume Sami + + + + + Gunwinggu + + + + + Mbo (Cameroon) + + + + + Aushi + + + + + Khvarshi + + + + + Dendi (Central African Republic) + + + + + Pana (Burkina Faso) + + + + + Ningye + + + + + Kalabari + + + + + Drung + + + + + Camsa + + + + + Barro Negro Tunebo + + + + + Kinuku + + + + + Angal Enen + + + + + Tsou + + + + + Totontepec Mixe + + + + + Jaru + + + + + Kami (Tanzania) + + + + + Fwai + + + + + Gula'alaa + + + + + Old Chinese + + + + + Phalura + + + + + Tala + + + + + Tomadino + + + + + Cajatambo North Lima Quechua + + + + + Seru + + + + + Mao Naga + + + + + Maasina Fulfulde + + + + + Kven Finnish + + + + + Northern Frisian + + + + + Tanaina + + + + + Adyghe + + + + + Wandji + + + + + Yis + + + + + Arikem + + + + + Kalapuya + + + + + Pasemah + + + + + Dobel + + + + + Carian + + + + + Jamaican Creole English + + + + + Kamaru + + + + + Danau + + + + + Puyuma + + + + + Saint Lucian Creole French + + + + + Oblo + + + + + Kanikkaran + + + + + Iyojwa'ja Chorote + + + + + Salvadoran Sign Language + + + + + Naki + + + + + Dimli + + + + + Lelemi + + + + + Oscan + + + + + Suri + + + + + Gaddi + + + + + Badyara + + + + + Mampruli + + + + + Natchez + + + + + Talmudic Aramaic + + + + + Bokoto + + + + + Ngelima + + + + + Chinese Sign Language + + + + + Taveta + + + + + Bwile + + + + + Nomu + + + + + Mixtepec Zapotec + + + + + Cayubaba + + + + + Kalo Finnish Romani + + + + + Bun + + + + + Ida'an + + + + + Zari + + + + + Martha's Vineyard Sign Language + + + + + Hawai'i Pidgin Sign Language + + + + + Wan + + + + + Juwal + + + + + Mara + + + + + Konni + + + + + Shona + + + + + Tunjung + + + + + Kanyok + + + + + Reel + + + + + Semaq Beri + + + + + Nubi + + + + + Limbum + + + + + Oneida + + + + + Rembong + + + + + Lambya + + + + + Koy Sanjaq Surat + + + + + Yoy + + + + + Boga + + + + + Grenadian Creole English + + + + + Machame + + + + + Ibu + + + + + Keyagana + + + + + Tai Don + + + + + Khiamniungan Naga + + + + + Western Niger Fulfulde + + + + + Yanesha' + + + + + Bebe + + + + + Babalia Creole Arabic + + + + + Yintale Karen + + + + + Western Bukidnon Manobo + + + + + Kuan + + + + + Avatime + + + + + Molmo One + + + + + Konkani (individual language) + + + + + Kembra + + + + + Tonga (Tonga Islands) + + + + + Gupapuyngu + + + + + Ginyanga + + + + + Angosturas Tunebo + + + + + Suya + + + + + Tuxa + + + + + Arapaso + + + + + Naukan Yupik + + + + + Ju + + + + + Esan + + + + + Logol + + + + + Mpoto + + + + + Kumyk + + + + + Amahai + + + + + Italian Sign Language + + + + + Kawaiisu + + + + + Knaanic + + + + + Mandinka + + + + + Fembe + + + + + Guruntum-Mbaaru + + + + + Lumbu + + + + + Namiae + + + + + Rade + + + + + Narrinyeri + + + + + Kachchi + + + + + Rejang + + + + + Kudu-Camo + + + + + Konongo + + + + + Waropen + + + + + Rengao + + + + + Truka + + + + + Od + + + + + Uvbie + + + + + Sened + + + + + English + + + + + Samba Leko + + + + + Rawat + + + + + Paekche + + + + + Jadgali + + + + + Sabum + + + + + Ngwe + + + + + Kobol + + + + + Tetun Dili + + + + + Southeastern Huastec + + + + + Tutelo + + + + + Tuscarora + + + + + Diri + + + + + Abon + + + + + Diuxi-Tilantongo Mixtec + + + + + Malay (macrolanguage) + + + + + Bactrian + + + + + Naskapi + + + + + Bujhyal + + + + + Ake + + + + + Aguna + + + + + Punan Bah-Biau + + + + + Calamian Tagbanwa + + + + + Bhalay + + + + + Ambo-Pasco Quechua + + + + + Southeastern Dinka + + + + + Daba + + + + + Darkhat + + + + + Fungwa + + + + + Kube + + + + + Gurani + + + + + Mofu-Gudur + + + + + Rotokas + + + + + Emae + + + + + Dupaninan Agta + + + + + Girawa + + + + + Straits Salish + + + + + Kgalagadi + + + + + Central Yi + + + + + Baatonum + + + + + Isu (Fako Division) + + + + + Pasi + + + + + Hangaza + + + + + Ngwo + + + + + Eton (Cameroon) + + + + + Tamasheq + + + + + Adonara + + + + + Dirari + + + + + Betaf + + + + + Ayizo Gbe + + + + + Tampias Lobu + + + + + Koronadal Blaan + + + + + Seberuang + + + + + Shangzhai + + + + + Agusan Manobo + + + + + Kuruaya + + + + + Ottawa + + + + + Eastern Arrernte + + + + + Vincentian Creole English + + + + + Rejang Kayan + + + + + Eblan + + + + + Siwu + + + + + Makhuwa + + + + + Kagan Kalagan + + + + + Malavedan + + + + + Quebec Sign Language + + + + + Yemba + + + + + Kurmukar + + + + + Gane + + + + + Izora + + + + + Piro + + + + + Kirghiz + + + + + Northern Ghale + + + + + Koyukon + + + + + Bu-Nao Bunu + + + + + Yau (Morobe Province) + + + + + Waruna + + + + + Putukwam + + + + + Kurukh + + + + + Krui + + + + + Quinault + + + + + Banda-Bambari + + + + + Bakung Kenyah + + + + + Phai + + + + + Barok + + + + + Yoke + + + + + Ilianen Manobo + + + + + Urubu-Kaapor Sign Language + + + + + Oring + + + + + Bamun + + + + + Yamongeri + + + + + Vatrata + + + + + Ndombe + + + + + Asuri + + + + + Kpagua + + + + + North Central Mixe + + + + + Salampasu + + + + + Northern Kalapuya + + + + + Kisi + + + + + Tingal + + + + + Tachelhit + + + + + Gureng Gureng + + + + + Seget + + + + + Olo + + + + + Kabyle + + + + + Talise + + + + + San Andres Larrainzar Tzotzil + + + + + Serbo-Croatian + + + + + Yaul + + + + + Odoodee + + + + + Saruga + + + + + Beti (Cote d'Ivoire) + + + + + Luyana + + + + + Thaypan + + + + + Nigerian Sign Language + + + + + Phula + + + + + Shama-Sambuga + + + + + Vano + + + + + Kafa + + + + + Nusu + + + + + Tembo (Kitembo) + + + + + Hutterite German + + + + + Munkip + + + + + Waxianghua + + + + + Samosa + + + + + Obo Manobo + + + + + Koro (Vanuatu) + + + + + Adele + + + + + Abui + + + + + Leti (Indonesia) + + + + + Kisankasa + + + + + Dutch Sign Language + + + + + Pitta Pitta + + + + + Matigsalug Manobo + + + + + Anamgura + + + + + Njebi + + + + + Safaliba + + + + + Zire + + + + + Ikoma + + + + + Irish + + + + + Hmwaveke + + + + + Kanauji + + + + + Morerebi + + + + + Tswana + + + + + Sora + + + + + Tarpia + + + + + Chhattisgarhi + + + + + Korana + + + + + Ivbie North-Okpela-Arhe + + + + + Doko-Uyanga + + + + + Gowro + + + + + Bierebo + + + + + Plapo Krumen + + + + + Gyele + + + + + Sicanian + + + + + Ancient Greek (to 1453) + + + + + Okodia + + + + + Thangal Naga + + + + + Nooksack + + + + + Nyamwezi + + + + + Singpho + + + + + Uneme + + + + + Asu (Tanzania) + + + + + Domari + + + + + Badi Kanum + + + + + Kendem + + + + + Ndumu + + + + + Mitlatongo Mixtec + + + + + Sumau + + + + + Mape + + + + + Musar + + + + + Oraon Sadri + + + + + Yimchungru Naga + + + + + Dubu + + + + + Bogan + + + + + Hunnic + + + + + Bunama + + + + + Ese Ejja + + + + + Awar + + + + + Djingili + + + + + Ho-Chunk + + + + + Pyu + + + + + Bilma Kanuri + + + + + Vono + + + + + Komyandaret + + + + + Yarawata + + + + + Nimi + + + + + Wuliwuli + + + + + Ir + + + + + Suoy + + + + + Sandawe + + + + + Segai + + + + + Imeraguen + + + + + Ibino + + + + + Yemsa + + + + + Colonia Tovar German + + + + + Malagasy + + + + + Traveller Scottish + + + + + Tonkawa + + + + + Bolango + + + + + Eastern Gurung + + + + + Paraujano + + + + + Sunwar + + + + + Western Penan + + + + + Tangut + + + + + Moabite + + + + + Eastern Quiche + + + + + Lese + + + + + Buriat + + + + + Duriankere + + + + + Central Bontoc + + + + + Kwa + + + + + Engenni + + + + + Creek + + + + + Central Palawano + + + + + Peruvian Sign Language + + + + + Nyambo + + + + + Erokwanas + + + + + Bazigar + + + + + Fasu + + + + + Konkani (macrolanguage) + + + + + Eastern Meohang + + + + + Santa Ana de Tusi Pasco Quechua + + + + + Southern Pashto + + + + + Kalami + + + + + Kabuverdianu + + + + + Central Maewo + + + + + Karon Dori + + + + + Pakistan Sign Language + + + + + Cagua + + + + + Oti + + + + + Gbari + + + + + Forak + + + + + Sowa + + + + + Tangale + + + + + Purik + + + + + Western Tamang + + + + + Bolon + + + + + Shubi + + + + + Cotoname + + + + + Aduge + + + + + Nkari + + + + + Tacana + + + + + Hukumina + + + + + Maram Naga + + + + + Parecis + + + + + Sherdukpen + + + + + Teke-Laali + + + + + Ndunga + + + + + Zeme Naga + + + + + Tandroy-Mahafaly Malagasy + + + + + Laba + + + + + Lugbara + + + + + Bo-Rukul + + + + + Bualkhaw Chin + + + + + Gongduk + + + + + Casuarina Coast Asmat + + + + + Nalik + + + + + Southern Conchucos Ancash Quechua + + + + + Tenango Otomi + + + + + Lingala + + + + + Elamite + + + + + Xicotepec De Juarez Totonac + + + + + Munji + + + + + Wanambre + + + + + Hemba + + + + + Karey + + + + + Kara (Central African Republic) + + + + + Matukar + + + + + Kanowit + + + + + Lodhi + + + + + Niuatoputapu + + + + + Sinicahua Mixtec + + + + + Panchpargania + + + + + Yukpa + + + + + Northern Pomo + + + + + Chang Naga + + + + + Polci + + + + + Rapting + + + + + Bhunjia + + + + + South Picene + + + + + Anglo-Norman + + + + + Niellim + + + + + Suundi + + + + + Bulgarian Sign Language + + + + + Tupi + + + + + Tsikimba + + + + + Akoose + + + + + Timugon Murut + + + + + Nisi + + + + + Nyeng + + + + + Western Bolivian Guarani + + + + + Western Kenyah + + + + + Selangor Sign Language + + + + + Sorkhei + + + + + Northern Kurdish + + + + + Nggem + + + + + Andoa + + + + + Khazar + + + + + Ak + + + + + Southern Uzbek + + + + + Delaware + + + + + West Central Quiche + + + + + Usui + + + + + Stod Bhoti + + + + + Ixtenco Otomi + + + + + Malfaxal + + + + + Beembe + + + + + Unami + + + + + Volapuk + + + + + Tiale + + + + + O'du + + + + + Bugun + + + + + Duke + + + + + Twi + + + + + Nubaca + + + + + Mbandja + + + + + Kurrama + + + + + Abun + + + + + Breton + + + + + Southern Mam + + + + + Ambo + + + + + Woi + + + + + Sanuma + + + + + Mayaguduna + + + + + Zoroastrian Dari + + + + + Simeku + + + + + Edera Awyu + + + + + Ata Manobo + + + + + Jennu Kurumba + + + + + Old Welsh + + + + + Bolgarian + + + + + Bete-Bendi + + + + + Laiyolo + + + + + Bonkiman + + + + + Eastern Krahn + + + + + Haiphong Sign Language + + + + + Galoli + + + + + Kuku-Uwanh + + + + + Embu + + + + + Sangtam Naga + + + + + Urim + + + + + Aragonese + + + + + Inuktitut + + + + + Loma (Cote d'Ivoire) + + + + + Runga + + + + + Puma + + + + + Ukpe-Bayobiri + + + + + Wanggom + + + + + Wiru + + + + + Ullatan + + + + + Kulung (Nigeria) + + + + + Chiripa + + + + + Komi + + + + + Karachay-Balkar + + + + + Basap + + + + + Pampanga + + + + + Lower Tanudan Kalinga + + + + + Tabo + + + + + Mazanderani + + + + + Ramopa + + + + + Mbule + + + + + Tututepec Mixtec + + + + + Au + + + + + Thurawal + + + + + Sasak + + + + + Giangan + + + + + Luba-Lulua + + + + + Gidar + + + + + Koluwawa + + + + + Bondoukou Kulango + + + + + Mullu Kurumba + + + + + Ghadames + + + + + Bunak + + + + + Algerian Sign Language + + + + + Korean Sign Language + + + + + Xwela Gbe + + + + + Pawnee + + + + + Ndonga + + + + + Lalia + + + + + Upper Saxon + + + + + Pimbwe + + + + + Duau + + + + + Mawa (Chad) + + + + + Suki + + + + + Batanga + + + + + Fayu + + + + + Chachapoyas Quechua + + + + + Halang Doan + + + + + Gbaya-Bozoum + + + + + Garifuna + + + + + Waru + + + + + Lehar + + + + + Vehes + + + + + Kaikadi + + + + + Soo + + + + + Northwestern Dinka + + + + + Asas + + + + + Western Ojibwa + + + + + Yambes + + + + + Yaka (Central African Republic) + + + + + Hote + + + + + Punan Tubu + + + + + Usarufa + + + + + West-Central Limba + + + + + Malakote + + + + + Central Bai + + + + + Ashaninka + + + + + Wabo + + + + + Dogoso + + + + + Sardinian + + + + + Antigua and Barbuda Creole English + + + + + Ternateno + + + + + Taman (Myanmar) + + + + + Emumu + + + + + Buhid + + + + + Sidamo + + + + + Kistane + + + + + Libinza + + + + + Ci Gbe + + + + + North Muyu + + + + + Maleu-Kilenge + + + + + Nakai + + + + + Sake + + + + + Lotud + + + + + Ossetian + + + + + Laha (Viet Nam) + + + + + Levuka + + + + + Keapara + + + + + Bengali + + + + + Boko (Benin) + + + + + Northern Subanen + + + + + Yasa + + + + + Classical Armenian + + + + + Inlaod Itneg + + + + + Mt. Iriga Agta + + + + + Wichi Lhamtes Vejoz + + + + + Wa + + + + + Traveller Norwegian + + + + + Wares + + + + + Bolongan + + + + + Margu + + + + + Wongo + + + + + Idakho-Isukha-Tiriki + + + + + Ngeq + + + + + Tupuri + + + + + Chinese Pidgin English + + + + + Kwegu + + + + + Koitabu + + + + + Kansa + + + + + Kinalakna + + + + + We Southern + + + + + Belanda Viri + + + + + Faire Atta + + + + + Cahuilla + + + + + Kunggara + + + + + Kahe + + + + + Lusitanian + + + + + Morori + + + + + Wagaya + + + + + Korandje + + + + + Chitimacha + + + + + Lega-Mwenga + + + + + Elpaputih + + + + + Manda (Australia) + + + + + Mundani + + + + + Takia + + + + + Jola-Kasa + + + + + Kanasi + + + + + Gudanji + + + + + Oki-No-Erabu + + + + + Wichi Lhamtes Guisnay + + + + + Isirawa + + + + + North Babar + + + + + Vlaams + + + + + Datooga + + + + + Koromfe + + + + + Bamwe + + + + + Mun Chin + + + + + Apma + + + + + Maltese Sign Language + + + + + War + + + + + Assiniboine + + + + + Nataoran Amis + + + + + Day + + + + + Shua + + + + + Lemnian + + + + + Embera-Baudo + + + + + Taupota + + + + + Ter Sami + + + + + Ewe + + + + + No linguistic content + + + + + Chilisso + + + + + Swedish + + + + + Gumatj + + + + + Wik-Me'anha + + + + + Nimboran + + + + + San Martin Itunyoso Triqui + + + + + Bomboli + + + + + Ratahan + + + + + Sinagen + + + + + Pal + + + + + Hdi + + + + + Lusengo + + + + + San Francisco Del Mar Huave + + + + + Jiru + + + + + Eastern Cham + + + + + Maya Samo + + + + + Mbuko + + + + + Maleng + + + + + Miship + + + + + Kota (India) + + + + + Nemi + + + + + Dogose + + + + + Abua + + + + + Iwal + + + + + Sicilian + + + + + Tawr Chin + + + + + Pemono + + + + + Mawa (Nigeria) + + + + + Ulukwumi + + + + + Kolbila + + + + + Western Mari + + + + + Bikol + + + + + Abinomn + + + + + Seimat + + + + + Kunda + + + + + Tera + + + + + Mongolian Sign Language + + + + + Nambya + + + + + Northern Bobo Madare + + + + + Sumerian + + + + + Dehwari + + + + + Chepang + + + + + Tomyang + + + + + Maiwa (Papua New Guinea) + + + + + Tubar + + + + + Gahri + + + + + Nyaneka + + + + + Mamboru + + + + + Malecite-Passamaquoddy + + + + + Nafaanra + + + + + West Makian + + + + + Dimir + + + + + Keiga + + + + + Tikar + + + + + Lower Chehalis + + + + + Inari Sami + + + + + Kupsabiny + + + + + Tetela + + + + + Mussau-Emira + + + + + Dzalakha + + + + + Pijin + + + + + Bwaidoka + + + + + Yau (Sandaun Province) + + + + + Baruga + + + + + Lanas Lobu + + + + + Brooke's Point Palawano + + + + + Cocopa + + + + + Kongo + + + + + Banao Itneg + + + + + Gurmana + + + + + Tilquiapan Zapotec + + + + + Pahi + + + + + Cerma + + + + + Ribun + + + + + Tenharim + + + + + Afro-Seminole Creole + + + + + Syriac + + + + + Borna + + + + + Andra-Hus + + + + + Wintu + + + + + Karok + + + + + Toro + + + + + Asue Awyu + + + + + Yabaana + + + + + Ankave + + + + + Arifama-Miniafia + + + + + Lolo + + + + + Iaai + + + + + Ik + + + + + Itik + + + + + Uokha + + + + + Maring Naga + + + + + Coastal Saluan + + + + + Tsakonian + + + + + Ngalkbun + + + + + Orma + + + + + Kembayan + + + + + Fang (Cameroon) + + + + + Mesmes + + + + + Mafea + + + + + Kayan Mahakam + + + + + Labir + + + + + North Asmat + + + + + Jina + + + + + Lame + + + + + Cavinena + + + + + Western Meohang + + + + + Basque + + + + + Harsusi + + + + + Kedang + + + + + Koyra Chiini Songhay + + + + + Akan + + + + + Wushi + + + + + Hadrami Arabic + + + + + Alege + + + + + Bateri + + + + + T'en + + + + + Upper Ta'oih + + + + + Michoacan Mazahua + + + + + Muniche + + + + + Jaunsari + + + + + Senthang Chin + + + + + Maranao + + + + + Nawuri + + + + + Bukusu + + + + + Ziriya + + + + + Mailu + + + + + Teso + + + + + Amaimon + + + + + Bhojpuri + + + + + Saleman + + + + + Telefol + + + + + Hpon + + + + + Langi + + + + + Northern Puebla Nahuatl + + + + + Palembang + + + + + Southern Puebla Mixtec + + + + + Magdalena Penasco Mixtec + + + + + Malinaltepec Tlapanec + + + + + Sabaot + + + + + Mutu + + + + + Waboda + + + + + Manggarai + + + + + Gilima + + + + + Southern Ngbandi + + + + + Lwalu + + + + + Logudorese Sardinian + + + + + Negerhollands + + + + + Mundari + + + + + Haryanvi + + + + + Nedebang + + + + + Masadiit Itneg + + + + + Nend + + + + + Walla Walla + + + + + Gazi + + + + + Menominee + + + + + Gobasi + + + + + Nehan + + + + + Dubli + + + + + Temascaltepec Nahuatl + + + + + Lachiguiri Zapotec + + + + + Siar-Lak + + + + + Dobu + + + + + Monimbo + + + + + Ramoaaina + + + + + Rahambuu + + + + + Efai + + + + + Kanakanabu + + + + + Kaidipang + + + + + Mundat + + + + + Murrinh-Patha + + + + + Nek + + + + + Tonsea + + + + + Northern Kankanay + + + + + White Lachi + + + + + Matagalpa + + + + + Norn + + + + + Biseni + + + + + Bu + + + + + Kele (Papua New Guinea) + + + + + El Alto Zapotec + + + + + Mak (China) + + + + + Kariya + + + + + Kwangali + + + + + Ngumba + + + + + Bwanabwana + + + + + Mongo + + + + + Ts'un-Lao + + + + + Kemi Sami + + + + + Ndom + + + + + Southern Altai + + + + + Pichis Asheninka + + + + + Adynyamathanha + + + + + Manipuri + + + + + Cashibo-Cacataibo + + + + + Nyangga + + + + + Dhanwar (India) + + + + + Manado Malay + + + + + Kela (Papua New Guinea) + + + + + Blablanga + + + + + Banaro + + + + + Baram Kayan + + + + + Mba + + + + + Mendankwe-Nkwen + + + + + Ma'di + + + + + Cheke Holo + + + + + Wambaya + + + + + Purari + + + + + Kolsch + + + + + Longto + + + + + Itu Mbon Uzo + + + + + Mambwe-Lungu + + + + + Scythian + + + + + Mamuju + + + + + Nyamusa-Molo + + + + + Ipalapa Amuzgo + + + + + Sama + + + + + Laa Laa Bwamu + + + + + Dambi + + + + + Kaurna + + + + + Kacipo-Balesi + + + + + Eton (Vanuatu) + + + + + Tswapong + + + + + Busuu + + + + + Hungana + + + + + Dalmatian + + + + + Forest Maninka + + + + + Anuki + + + + + Karahawyana + + + + + Mina (Cameroon) + + + + + Kimre + + + + + Itundujia Mixtec + + + + + Lakkia + + + + + Shi + + + + + She + + + + + Waamwang + + + + + Lamboya + + + + + Kuot + + + + + Kula + + + + + Palaic + + + + + Arawete + + + + + Turkish + + + + + Kalamse + + + + + Old French (842-ca. 1400) + + + + + Cunen Quiche + + + + + Bambam + + + + + Raetic + + + + + Wayu + + + + + Wampanoag + + + + + Cacua + + + + + Bangandu + + + + + Karaim + + + + + Usila Chinantec + + + + + Kubu + + + + + So (Cameroon) + + + + + Chimakum + + + + + Momare + + + + + Nukna + + + + + Con + + + + + Manangba + + + + + Yarsun + + + + + Mesme + + + + + Palpa + + + + + Ditammari + + + + + Tiwi + + + + + Maring + + + + + Lukpa + + + + + Apasco-Apoala Mixtec + + + + + Doso + + + + + Baka (Cameroon) + + + + + Manikion + + + + + Rawo + + + + + Mayogo + + + + + Mbole + + + + + Kplang + + + + + Puyo-Paekche + + + + + Obokuitai + + + + + Austrian Sign Language + + + + + Quioquitani-Quieri Zapotec + + + + + Kairiru + + + + + Tiema Ciewe Bozo + + + + + Umbu-Ungu + + + + + Heiltsuk + + + + + Kahua + + + + + Domung + + + + + Caddo + + + + + Cinda-Regi-Tiyal + + + + + Kwanga + + + + + Pakanha + + + + + Talinga-Bwisi + + + + + Dimasa + + + + + Afade + + + + + Mamvu + + + + + Moi (Indonesia) + + + + + Gbaya (Sudan) + + + + + Tohono O'odham + + + + + Evenki + + + + + Tlazoyaltepec Mixtec + + + + + Aghwan + + + + + Bolinao + + + + + Araki + + + + + Yos + + + + + Nkangala + + + + + Boghom + + + + + Kuria + + + + + Tonga (Thailand) + + + + + Guana (Paraguay) + + + + + Tlingit + + + + + Koonzime + + + + + Marind + + + + + Dan + + + + + Chaungtha + + + + + Doromu + + + + + Sarawak Bisaya + + + + + Xipinawa + + + + + Darling + + + + + Kaska + + + + + Awngi + + + + + Tubarao + + + + + Aleut + + + + + Seko Padang + + + + + Kadar + + + + + Weri + + + + + East Futuna + + + + + Bribri + + + + + Tsum + + + + + Minanibai + + + + + Rajbanshi + + + + + Katukina + + + + + Segeju + + + + + Mapia + + + + + Bughotu + + + + + Aputai + + + + + Central Mam + + + + + Tucano + + + + + Batak Alas-Kluet + + + + + Yandruwandha + + + + + Adioukrou + + + + + Hindi + + + + + Pinigura + + + + + Kusaghe + + + + + Western Kayah + + + + + Central Ojibwa + + + + + Lopi + + + + + Chichicapan Zapotec + + + + + Slovenian + + + + + Guriaso + + + + + Macedonian + + + + + Pambia + + + + + Rampi + + + + + Sinyar + + + + + Bwela + + + + + Kapriman + + + + + Chachi + + + + + Mag-Indi Ayta + + + + + Stoney + + + + + Agatu + + + + + Ukpet-Ehom + + + + + Aquitanian + + + + + Hungarian Sign Language + + + + + Khowar + + + + + Coquille + + + + + Ngkalmpw Kanum + + + + + Mabaale + + + + + Tai + + + + + Galibi Carib + + + + + Jungle Inga + + + + + Boro + + + + + Duwet + + + + + Dieri + + + + + Ganda + + + + + San Martin Quechua + + + + + Pini + + + + + Yele + + + + + Khinalugh + + + + + Duri + + + + + Mandahuaca + + + + + Tepinapa Chinantec + + + + + Opuuo + + + + + Biafada + + + + + Ai-Cham + + + + + Limos Kalinga + + + + + Afrikaans + + + + + Southwestern Tlaxiaco Mixtec + + + + + Makhuwa-Shirima + + + + + Waima'a + + + + + Ngurimi + + + + + Ambulas + + + + + Port Vato + + + + + Nambo + + + + + Daw + + + + + Myene + + + + + Sakalava Malagasy + + + + + Nadeb + + + + + Upper Umpqua + + + + + Berau Malay + + + + + Ngundu + + + + + Cacgia Roglai + + + + + Central Kurdish + + + + + Ibuoro + + + + + Ngbinda + + + + + Judeo-Arabic + + + + + Ede Cabe + + + + + Dohoi + + + + + Saraveca + + + + + Kutto + + + + + Kioko + + + + + Santa Ines Yatzechi Zapotec + + + + + Ta'izzi-Adeni Arabic + + + + + Nayini + + + + + Sokoro + + + + + Hozo + + + + + Cwi Bwamu + + + + + Ukit + + + + + Koireng + + + + + Oorlams + + + + + Ava-Canoeiro + + + + + Numbami + + + + + Ghayavi + + + + + Ayiwo + + + + + Okobo + + + + + Balangingi + + + + + Yela + + + + + Riang (Myanmar) + + + + + Tregami + + + + + Imbongu + + + + + Mongol + + + + + Wamas + + + + + Takpa + + + + + Israeli Sign Language + + + + + Tegali + + + + + Miya + + + + + Biak + + + + + Peripheral Mongolian + + + + + Kenswei Nsei + + + + + Pardhan + + + + + Papora + + + + + Mesqan + + + + + Miyako + + + + + Sissano + + + + + Monom + + + + + Panjabi + + + + + Gana + + + + + El Hugeirat + + + + + Macaguan + + + + + Binahari + + + + + Iresim + + + + + Dirasha + + + + + Puoc + + + + + Yuanjiang-Mojiang Yi + + + + + Kakwa + + + + + Susquehannock + + + + + Chiru + + + + + Laeko-Libuat + + + + + Bantoanon + + + + + Mandarin Chinese + + + + + Anuta + + + + + Hieroglyphic Luwian + + + + + Congo Swahili + + + + + Mlap + + + + + I-Wak + + + + + Yabong + + + + + Costa Rican Sign Language + + + + + Pero + + + + + Taliabu + + + + + Bokyi + + + + + Ngiti + + + + + Tempasuk Dusun + + + + + Baniwa + + + + + Timne + + + + + Ju/'hoan + + + + + Djangun + + + + + Luguru + + + + + Southwest Palawano + + + + + Bieria + + + + + Bakhtiari + + + + + Zinacantan Tzotzil + + + + + Bullom So + + + + + Koro (Papua New Guinea) + + + + + Uruangnirin + + + + + Vandalic + + + + + Northern Conchucos Ancash Quechua + + + + + Nama (Namibia) + + + + + Sa'a + + + + + Bashkir + + + + + Loja Highland Quichua + + + + + South Central Cakchiquel + + + + + Nde-Nsele-Nta + + + + + Tamanaku + + + + + Ingush + + + + + Dhalandji + + + + + Paiwan + + + + + Konyanka Maninka + + + + + Kimbundu + + + + + Konda + + + + + Islander Creole English + + + + + Khumi Awa Chin + + + + + Nisga'a + + + + + Biao + + + + + Akoye + + + + + Birao + + + + + Gata' + + + + + Sihan + + + + + Bongili + + + + + Kirikiri + + + + + Bebele + + + + + Ainu (China) + + + + + Lopit + + + + + Cabiyari + + + + + Djinang + + + + + Pfaelzisch + + + + + Sera + + + + + Bafut + + + + + Yaminahua + + + + + Khandesi + + + + + Idere + + + + + Northern Amami-Oshima + + + + + Aiku + + + + + Seta + + + + + Acheron + + + + + Jarai + + + + + Iranun + + + + + Achterhoeks + + + + + Anaang + + + + + Kire + + + + + Apatani + + + + + Maridan + + + + + Wapishana + + + + + Sok + + + + + Kuturmi + + + + + Pwo Eastern Karen + + + + + Maay + + + + + Galician + + + + + Ari + + + + + Pali + + + + + Otank + + + + + Rasawa + + + + + Moere + + + + + Penesak + + + + + Vinza + + + + + Judeo-Berber + + + + + Vishavan + + + + + Chenchu + + + + + Tampuan + + + + + Bataan Ayta + + + + + Doga + + + + + Noric + + + + + Barakai + + + + + Barbacoas + + + + + Maco + + + + + Toraja-Sa'dan + + + + + Dawera-Daweloor + + + + + Jola-Fonyi + + + + + Southern Luri + + + + + Arop-Lukep + + + + + Kimki + + + + + Worora + + + + + Lezghian + + + + + Eastern Penan + + + + + Winye + + + + + Medebur + + + + + Tombonuwo + + + + + Ghanongga + + + + + Lonwolwol + + + + + Goemai + + + + + Izon + + + + + Yeni + + + + + Dirim + + + + + Teutila Cuicatec + + + + + Waioli + + + + + Ap Ma + + + + + Moikodi + + + + + Ikobi-Mena + + + + + Gaa + + + + + Kikai + + + + + Wahau Kayan + + + + + Isnag + + + + + Masmaje + + + + + Kickapoo + + + + + Tabaru + + + + + Mandobo Atas + + + + + Aura + + + + + Corsican + + + + + Hertevin + + + + + Doyayo + + + + + Hamtai + + + + + Michif + + + + + Hadrami + + + + + Leti (Cameroon) + + + + + Bijori + + + + + Sidetic + + + + + Nangikurrunggurr + + + + + So + + + + + Gbesi Gbe + + + + + Andi + + + + + Loncong + + + + + Macanese + + + + + Baki + + + + + Toram + + + + + Tumzabt + + + + + Kamwe + + + + + Mullukmulluk + + + + + Logba + + + + + Carapana + + + + + Kepkiriwat + + + + + Zaparo + + + + + Mator + + + + + Matya Samo + + + + + Hulaula + + + + + Kesawai + + + + + Saponi + + + + + Punan Aput + + + + + Manigri-Kambole Ede Nago + + + + + Venda + + + + + Korowai + + + + + Patani + + + + + Fas + + + + + Northern Dagara + + + + + Mom Jango + + + + + Jarawa (Nigeria) + + + + + Iamalele + + + + + Ayoreo + + + + + Kagayanen + + + + + Nyong + + + + + Yue Chinese + + + + + Baga Kaloum + + + + + Ninia Yali + + + + + Oku + + + + + Serbian + + + + + Kuk + + + + + Ayacucho Quechua + + + + + Numee + + + + + Tanjijili + + + + + Eastern Keres + + + + + Yukuben + + + + + Limi Yi + + + + + Luba-Katanga + + + + + Danaru + + + + + Kyenga + + + + + Thayore + + + + + Southern Pokomam + + + + + Ido + + + + + Wuzlam + + + + + Japreria + + + + + Morawa + + + + + Fyam + + + + + Seti + + + + + Ruli + + + + + Coastal Kadazan + + + + + Tagakaulu Kalagan + + + + + Gafat + + + + + Ibilo + + + + + Sumbawa + + + + + Tidore + + + + + Jimi (Cameroon) + + + + + Manusela + + + + + Sawila + + + + + Southern Ma'di + + + + + Mekwei + + + + + Dulbu + + + + + Hwana + + + + + Pangseng + + + + + Parauk + + + + + Serui-Laut + + + + + Kambaira + + + + + Mboko + + + + + Ndali + + + + + Koi + + + + + Kaonde + + + + + Dar Fur Daju + + + + + Piru + + + + + Gua + + + + + Dera (Indonesia) + + + + + Are + + + + + Wauyai + + + + + Koya + + + + + Bilin + + + + + Media Lengua + + + + + Tawala + + + + + Armenian Sign Language + + + + + Sasaru + + + + + Lower Tanana + + + + + Teen + + + + + Tabla + + + + + Yaqay + + + + + Ngas + + + + + Rawa + + + + + Eastern Kanjobal + + + + + South Wemale + + + + + Shambala + + + + + Lauje + + + + + Humburi Senni Songhay + + + + + North Awyu + + + + + Mili Yi + + + + + Tiagbamrin Aizi + + + + + Swabian + + + + + Vidunda + + + + + Izere + + + + + Cara + + + + + Tiefo + + + + + Jambi Malay + + + + + Biri + + + + + Moba + + + + + Aka-Jeru + + + + + Lingua Franca + + + + + Turkish Sign Language + + + + + Tacahua Mixtec + + + + + Tutoh Kenyah + + + + + Hijuk + + + + + Washo + + + + + Aukan + + + + + Dzodinka + + + + + Madurese + + + + + Opao + + + + + Loko + + + + + Sudovian + + + + + Tupinamba + + + + + U + + + + + The + + + + + Mon + + + + + Murik Kayan + + + + + Ndau + + + + + Interglossa + + + + + Somrai + + + + + Lubu + + + + + Chakma + + + + + Ekpeye + + + + + Kanuri + + + + + Nachering + + + + + Phangduwali + + + + + Marenje + + + + + Eastern Xiangxi Hmong + + + + + Zizilivakan + + + + + Kanjari + + + + + Majhwar + + + + + Tuamotuan + + + + + Sialum + + + + + Kajali + + + + + Gimi (Eastern Highlands) + + + + + Obolo + + + + + Wannu + + + + + Bashkardi + + + + + Muratayak + + + + + Barapasi + + + + + Francisco Leon Zoque + + + + + Besme + + + + + Larike-Wakasihu + + + + + Igana + + + + + Rajong + + + + + Ayi (Papua New Guinea) + + + + + Dendi (Benin) + + + + + Oya'oya + + + + + Ambakich + + + + + Manem + + + + + Bagusa + + + + + Byangsi + + + + + Sheni + + + + + Icelandic + + + + + Parya + + + + + Duguza + + + + + Sierra Leone Sign Language + + + + + Piamatsina + + + + + Akawaio + + + + + Halh Mongolian + + + + + Wara + + + + + Ngungwel + + + + + Podena + + + + + Anem + + + + + Razajerdi + + + + + Lokoya + + + + + Beaver + + + + + Northern Grebo + + + + + Satere-Mawe + + + + + Wasco-Wishram + + + + + Sio + + + + + Duwai + + + + + Eastern Parbate + + + + + Sangil + + + + + Azerbaijani + + + + + Woccon + + + + + Songoora + + + + + Sudest + + + + + Bafanji + + + + + Tagabawa + + + + + Songo + + + + + Puyo + + + + + Drents + + + + + Cung + + + + + Munit + + + + + A-Pucikwar + + + + + Western Xwla Gbe + + + + + Cameroon Pidgin + + + + + Warduji + + + + + Ticuna + + + + + Brem + + + + + Damal + + + + + Tayo + + + + + Barombi + + + + + Maklew + + + + + Unua + + + + + Chadian Arabic + + + + + Cimbrian + + + + + Eastern Apurimac Quechua + + + + + Ingrian + + + + + Harari + + + + + Lemoro + + + + + Yameo + + + + + Totoli + + + + + Bian Marind + + + + + Bushoong + + + + + Dayi + + + + + Dera (Nigeria) + + + + + Samarokena + + + + + Kupa + + + + + Harijan Kinnauri + + + + + Kumarbhag Paharia + + + + + Majang + + + + + Mende (Papua New Guinea) + + + + + Mahali + + + + + Bassa-Kontagora + + + + + Sabanes + + + + + Yokuts + + + + + Wogamusin + + + + + Marovo + + + + + Lonzo + + + + + Milyan + + + + + Lusi + + + + + Bhoti Kinnauri + + + + + Western Kanjobal + + + + + Cowlitz + + + + + Konkomba + + + + + Pamplona Atta + + + + + Kohistani Shina + + + + + Shekkacho + + + + + Sanaani Arabic + + + + + Chuka + + + + + Mirgan + + + + + Teshenawa + + + + + Malol + + + + + Unde Kaili + + + + + Veddah + + + + + Ranau + + + + + Breri + + + + + Makassar Malay + + + + + East Yugur + + + + + Lunda + + + + + Bulo Stieng + + + + + Namia + + + + + Moo + + + + + Lakota + + + + + Lamkang + + + + + Arta + + + + + Vanimo + + + + + Ancient North Arabian + + + + + Sori-Harengan + + + + + Chiga + + + + + Providencia Sign Language + + + + + Korku + + + + + Jowulu + + + + + Walloon + + + + + Hmong Daw + + + + + Paez + + + + + Menya + + + + + Urdu + + + + + Ngabere + + + + + Tsakhur + + + + + Ibatan + + + + + Moloko + + + + + Laurentian + + + + + Basay + + + + + Remontado Agta + + + + + Puari + + + + + Wane + + + + + Upper Guinea Crioulo + + + + + Kuuku-Ya'u + + + + + Eastern Qiandong Hmong + + + + + Juang + + + + + Southern Gondi + + + + + Ofaye + + + + + Alur + + + + + Tahltan + + + + + Bellari + + + + + Djongkang + + + + + Lilau + + + + + Natanzi + + + + + Selungai Murut + + + + + Gurdjar + + + + + Basa (Nigeria) + + + + + Jwira-Pepesa + + + + + Taworta + + + + + Gowlan + + + + + Tumari Kanuri + + + + + Shahmirzadi + + + + + Roon + + + + + Rana Tharu + + + + + Hula + + + + + Bintauna + + + + + Luhu + + + + + Central Quiche + + + + + Mada (Nigeria) + + + + + Donno So Dogon + + + + + Bouyei + + + + + Bomitaba + + + + + Shoo-Minda-Nye + + + + + Negidal + + + + + Balo + + + + + Agwagwune + + + + + Arvanitika Albanian + + + + + Uruava + + + + + Piu + + + + + Kwa' + + + + + Amerax + + + + + Arabela + + + + + Awyi + + + + + Ngoni + + + + + Inoke-Yate + + + + + Andoque + + + + + Central Pokomam + + + + + Hunde + + + + + Lega-Shabunda + + + + + Lika + + + + + Malayic Dayak + + + + + Ija-Zuba + + + + + Montol + + + + + Highland Puebla Nahuatl + + + + + Zazao + + + + + Muthuvan + + + + + Pnar + + + + + Mehinaku + + + + + Matbat + + + + + Amdang + + + + + Yareni Zapotec + + + + + Gibanawa + + + + + Tu + + + + + Shiki + + + + + Samburu + + + + + Ngarinyin + + + + + Mobilian + + + + + Mabaan + + + + + Tornedalen Finnish + + + + + Kompane + + + + + Poluo Yi + + + + + Andaqui + + + + + Mimi + + + + + Tangkhul Naga + + + + + Kenuzi-Dongola + + + + + Itene + + + + + Kryts + + + + + Gozarkhani + + + + + Maridjabin + + + + + Gugu Warra + + + + + Kasanga + + + + + Kolum So Dogon + + + + + As + + + + + Hamba + + + + + Pass Valley Yali + + + + + Sirmauri + + + + + Mengaka + + + + + Dyaabugay + + + + + Calo + + + + + Lubila + + + + + Pauserna + + + + + Nyoro + + + + + Caramanta + + + + + Lango (Sudan) + + + + + Mbugwe + + + + + Karankawa + + + + + Batad Ifugao + + + + + Bella Coola + + + + + Ekit + + + + + Rerau + + + + + Southern Guiyang Hmong + + + + + Nimadi + + + + + Oirata + + + + + Balkan Romani + + + + + Judeo-Persian + + + + + Fulah + + + + + Zeeuws + + + + + Rerep + + + + + Pontic + + + + + San Pedro Quiatoni Zapotec + + + + + Yansi + + + + + Haruku + + + + + Kuvi + + + + + Yagomi + + + + + Wolani + + + + + Western Maninkakan + + + + + Ghari + + + + + Pu-Xian Chinese + + + + + Jukun Takum + + + + + Yawa + + + + + Birwa + + + + + Bote-Majhi + + + + + Lillooet + + + + + Phunoi + + + + + Catalan + + + + + Weyto + + + + + Semelai + + + + + Ile Ape + + + + + Bay Miwok + + + + + Telugu + + + + + Western Panjabi + + + + + Zhaba + + + + + Upper Kuskokwim + + + + + Siraya + + + + + Aari + + + + + Ottoman Turkish (1500-1928) + + + + + Masimasi + + + + + Orejon + + + + + Ewage-Notu + + + + + Ngete + + + + + Ozolotepec Zapotec + + + + + Kok Borok + + + + + Lemio + + + + + Mangala + + + + + Bimoba + + + + + Cuvok + + + + + Pei + + + + + Galatian + + + + + Ngaanyatjarra + + + + + South Central Banda + + + + + Nabak + + + + + Mo'da + + + + + Kaba Deme + + + + + Tepo Krumen + + + + + Lawangan + + + + + Ibani + + + + + Mulaha + + + + + Pardhi + + + + + Sochiapan Chinantec + + + + + Bari + + + + + Santiago Xanica Zapotec + + + + + Hanoi Sign Language + + + + + Old Burmese + + + + + Musom + + + + + Maxakali + + + + + Bikaru + + + + + Gimme + + + + + Gavar + + + + + Majhi + + + + + Bimin + + + + + Teanu + + + + + Zulu + + + + + Kaba Na + + + + + Rusyn + + + + + Kyak + + + + + Tulehu + + + + + Bangeri Me Dogon + + + + + Lelak + + + + + Tijaltepec Mixtec + + + + + East Nyala + + + + + Nzanyi + + + + + Karkar-Yuri + + + + + Talaud + + + + + Slave (Athapascan) + + + + + Gulay + + + + + Mashi (Zambia) + + + + + North Tanna + + + + + Wasu + + + + + Aneme Wake + + + + + Komering + + + + + Mbya Guarani + + + + + Tilung + + + + + Aruek + + + + + Gadjerawang + + + + + Eleme + + + + + Korupun-Sela + + + + + Northern Alta + + + + + Gen + + + + + Ontong Java + + + + + Anu + + + + + Younuo Bunu + + + + + Bookan + + + + + Quapaw + + + + + Greek Sign Language + + + + + Apinaye + + + + + Dyula + + + + + Yiddish Sign Language + + + + + Kalaallisut + + + + + Sao Paulo Kaingang + + + + + Thulung + + + + + Bamenyam + + + + + Carpathian Romani + + + + + Caluyanun + + + + + Tokharian A + + + + + Ngandyera + + + + + Tuwali Ifugao + + + + + Nottoway-Meherrin + + + + + Tsimihety Malagasy + + + + + Coatlan Mixe + + + + + Mbu' + + + + + Chantyal + + + + + Piratapuyo + + + + + Dongo + + + + + Anca + + + + + Bolyu + + + + + Shekhawati + + + + + Buraka + + + + + Natagaimas + + + + + Baetora + + + + + Dampelas + + + + + Kango (Tshopo District) + + + + + Acatepec Tlapanec + + + + + Northern Dong + + + + + Foi + + + + + Tausug + + + + + Wayampi + + + + + Twendi + + + + + Chopi + + + + + Siriano + + + + + Alabama + + + + + Noy + + + + + Pana (Central African Republic) + + + + + Zanaki + + + + + Gurinji + + + + + Jenaama Bozo + + + + + Matipuhy + + + + + Jawe + + + + + East Ambae + + + + + Askopan + + + + + Bhadrawahi + + + + + Aimele + + + + + Halkomelem + + + + + Pare + + + + + Lambayeque Quechua + + + + + Chhulung + + + + + Ozumacin Chinantec + + + + + Suruaha + + + + + Lumbee + + + + + Loun + + + + + Seki + + + + + Kilivila + + + + + Berinomo + + + + + Machinga + + + + + Axi Yi + + + + + Mandaic + + + + + Santali + + + + + Mundabli + + + + + Akaselem + + + + + Shuadit + + + + + Hazaragi + + + + + Pedi + + + + + Morokodo + + + + + Mukha-Dora + + + + + Goundo + + + + + Huamalies-Dos de Mayo Huanuco Quechua + + + + + Potawatomi + + + + + Sissala + + + + + Warji + + + + + Itelmen + + + + + Kayapo + + + + + Epie + + + + + Kazukuru + + + + + Kochila Tharu + + + + + Waorani + + + + + Tewa (USA) + + + + + Raute + + + + + Aproumu Aizi + + + + + Tamnim Citak + + + + + Pileni + + + + + Kaibobo + + + + + Indus Kohistani + + + + + Kraol + + + + + Amatlan Zapotec + + + + + Guadeloupean Creole French + + + + + Tai Nua + + + + + Yakoma + + + + + Wuding-Luquan Yi + + + + + Eastern Oromo + + + + + Kwamtim One + + + + + Lachixio Zapotec + + + + + Duli + + + + + Canela + + + + + Osing + + + + + Vilela + + + + + Highland Konjo + + + + + Baruya + + + + + Kimaragang + + + + + Moronene + + + + + Beba + + + + + Sam + + + + + Waray (Australia) + + + + + Romkun + + + + + Bomboma + + + + + Jumjum + + + + + Idate + + + + + Gamit + + + + + Northern Catanduanes Bicolano + + + + + Ahom + + + + + Tring + + + + + Swiss German + + + + + Selaru + + + + + Mbato + + + + + Batek + + + + + Balinese Malay + + + + + Georgian + + + + + Jimi (Nigeria) + + + + + Saniyo-Hiyewe + + + + + Lashi + + + + + Fagani + + + + + Ayutla Mixtec + + + + + Degexit'an + + + + + //Xegwi + + + + + Liki + + + + + Jeh + + + + + Anii + + + + + Agavotaguerra + + + + + Sakechep + + + + + Nyali + + + + + Yaaku + + + + + Athpariya + + + + + Malimba + + + + + Loreto-Ucayali Spanish + + + + + Andarum + + + + + Sabah Malay + + + + + Bade + + + + + Krikati-Timbira + + + + + Elymian + + + + + Lowland Tarahumara + + + + + Valley Maidu + + + + + Igede + + + + + Ketum + + + + + Mmaala + + + + + Mandar + + + + + Mohave + + + + + Barikanchi + + + + + Tawallammat Tamajaq + + + + + Puragi + + + + + San Juan Teita Mixtec + + + + + Kalkoti + + + + + Kara (Tanzania) + + + + + Chaldean Neo-Aramaic + + + + + Narak + + + + + Nungali + + + + + Tavringer Romani + + + + + Wolio + + + + + Kariri-Xoco + + + + + Ozumatlan Totonac + + + + + Fyer + + + + + Sundanese + + + + + Kamarian + + + + + Mbara (Chad) + + + + + Makhuwa-Meetto + + + + + Ntomba + + + + + Tajiki Arabic + + + + + Takua + + + + + Daai Chin + + + + + Yangulam + + + + + Nancere + + + + + Daho-Doo + + + + + Yerakai + + + + + Batak Toba + + + + + Cherepon + + + + + Muskum + + + + + Alutor + + + + + Opata + + + + + Mycenaean Greek + + + + + Northern East Cree + + + + + Dai + + + + + Lomwe + + + + + Sherbro + + + + + Chaudangsi + + + + + Moru + + + + + Ngandi + + + + + Caac + + + + + Northern Pashto + + + + + Dizi + + + + + Puimei Naga + + + + + Koch + + + + + Halia + + + + + Panim + + + + + Gurgula + + + + + Huehuetla Tepehua + + + + + Tumulung Sisaala + + + + + Dom + + + + + Kandawo + + + + + Kaure + + + + + Langam + + + + + Zan Gula + + + + + Taulil + + + + + Tachawit + + + + + Tringgus + + + + + Laven + + + + + Beothuk + + + + + Kao + + + + + Lefa + + + + + Rakahanga-Manihiki + + + + + Aasax + + + + + Arapaho + + + + + Guiberoua Bete + + + + + Gude + + + + + Southern Roglai + + + + + Balaesang + + + + + Malaccan Creole Portuguese + + + + + Weh + + + + + Cibak + + + + + Zyphe + + + + + Pamlico + + + + + Gokana + + + + + Andio + + + + + Yimas + + + + + Central Tarahumara + + + + + Canar Highland Quichua + + + + + Loup A + + + + + Mbum + + + + + Mazagway + + + + + Gugubera + + + + + Timbe + + + + + Eten + + + + + Wali (Ghana) + + + + + Wardaman + + + + + Lobi + + + + + Kinnauri + + + + + Naga Pidgin + + + + + Ngarinman + + + + + Sekar + + + + + Betta Kurumba + + + + + Bukat + + + + + Ruund + + + + + Pinji + + + + + El Molo + + + + + Kwinti + + + + + Gamkonora + + + + + Acatenango Southwestern Cakchiquel + + + + + Efutop + + + + + North Alaskan Inupiatun + + + + + Waimaha + + + + + Old Russian + + + + + Chimariko + + + + + Bouna Kulango + + + + + Coyutla Totonac + + + + + Southern Balochi + + + + + Northern Qiang + + + + + Luo + + + + + Tama (Colombia) + + + + + Yankunytjatjara + + + + + Culina + + + + + Arikapu + + + + + Nimbari + + + + + San Jeronimo Tecoatl Mazatec + + + + + Phende + + + + + Chetco + + + + + Middle Mongolian + + + + + Mambae + + + + + German Sign Language + + + + + Brunei Bisaya + + + + + Wanda + + + + + Okpamheri + + + + + Bosnian + + + + + Siyin Chin + + + + + Khirwar + + + + + Shatt + + + + + Bomwali + + + + + Malalamai + + + + + Wantoat + + + + + Bali (Democratic Republic of Congo) + + + + + Adangme + + + + + Southwestern Tepehuan + + + + + Zhoa + + + + + Togbo-Vara Banda + + + + + Alviri-Vidari + + + + + Makhuwa-Saka + + + + + Uradhi + + + + + Pagibete + + + + + Cheyenne + + + + + Logorik + + + + + Sani Yi + + + + + Itutang + + + + + Befang + + + + + Himarima + + + + + Kitja + + + + + Taushiro + + + + + Kalasha + + + + + Joba + + + + + Cochimi + + + + + Tarao Naga + + + + + Awadhi + + + + + Highland Popoluca + + + + + Mysian + + + + + Khasi + + + + + Malakhel + + + + + Scottish Gaelic + + + + + Eastern Yiddish + + + + + Toto + + + + + Biwat + + + + + Saurashtra + + + + + Darang Deng + + + + + Wandarang + + + + + Bwatoo + + + + + Nyamal + + + + + Mocho + + + + + Ngoshie + + + + + Croatia Sign Language + + + + + Kaan + + + + + Bungain + + + + + Makwe + + + + + Qimant + + + + + Shau + + + + + Lamma + + + + + Tetelcingo Nahuatl + + + + + Mbedam + + + + + Rongmei Naga + + + + + Afrihili + + + + + Dahalo + + + + + Yapunda + + + + + Tlacoatzintepec Chinantec + + + + + Monzombo + + + + + Porohanon + + + + + Ngazidja Comorian + + + + + Mirandese + + + + + Pankararu + + + + + Kitan + + + + + Sumo-Mayangna + + + + + Baka (Sudan) + + + + + Menka + + + + + Gaddang + + + + + Notre + + + + + Jamiltepec Mixtec + + + + + Fortsenal + + + + + Curonian + + + + + Puwa Yi + + + + + Helong + + + + + Tanahmerah + + + + + Ningera + + + + + Bulgebi + + + + + Bacama + + + + + South Marquesan + + + + + Nyiha + + + + + Gimi (West New Britain) + + + + + Lishanid Noshan + + + + + Koreguaje + + + + + Buglere + + + + + Lorang + + + + + Muya + + + + + Temi + + + + + Gao + + + + + Sango + + + + + Cotabato Manobo + + + + + Toga + + + + + Hinduri + + + + + Mende (Sierra Leone) + + + + + Nyaheun + + + + + Sherpa + + + + + Coong + + + + + Southwestern Huishui Hmong + + + + + Nilamba + + + + + Bislama + + + + + Komodo + + + + + Nupode Huitoto + + + + + Malay (individual language) + + + + + Walungge + + + + + Assamese + + + + + Macaguaje + + + + + Nyang'i + + + + + Ndolo + + + + + Frankish + + + + + Neo-Hittite + + + + + Sentinel + + + + + San Juan Cotzal Ixil + + + + + Extremaduran + + + + + Gorakor + + + + + Aiome + + + + + Nasarian + + + + + Min Nan Chinese + + + + + Gagadu + + + + + Nafusi + + + + + Buli (Indonesia) + + + + + Biyo + + + + + Kita Maninkakan + + + + + Cahuarano + + + + + Chochotec + + + + + Southeastern Lolo Yi + + + + + Tundra Enets + + + + + Pintiini + + + + + Urak Lawoi' + + + + + Vao + + + + + Agariya + + + + + Southern Pastaza Quechua + + + + + Kuku-Yalanji + + + + + Masaba + + + + + Kinyarwanda + + + + + Chavacano + + + + + Lushootseed + + + + + Epena + + + + + Bena (Nigeria) + + + + + Gizrra + + + + + Dagoman + + + + + Kwato + + + + + Kopar + + + + + Amblong + + + + + Dakaka + + + + + Malaryan + + + + + Zayein Karen + + + + + Berbice Creole Dutch + + + + + Plautdietsch + + + + + Ukwuani-Aboh-Ndoni + + + + + Gwandara + + + + + Bemba (Zambia) + + + + + Central Aymara + + + + + Old Frisian + + + + + Egypt Sign Language + + + + + Walser + + + + + Lingarak + + + + + Mewari + + + + + Ket + + + + + Taiap + + + + + Bainouk-Gunyuno + + + + + Miqie Yi + + + + + Dair + + + + + Alyawarr + + + + + Tiwa + + + + + Central Tunebo + + + + + Nawaru + + + + + Andh + + + + + Sakirabia + + + + + Tila Chol + + + + + Tifal + + + + + Kyenele + + + + + Assyrian Neo-Aramaic + + + + + Todos Santos Cuchumatan Mam + + + + + Akei + + + + + Hun-Saare + + + + + Pochuri Naga + + + + + Mari (Russia) + + + + + Michigamea + + + + + Nyakyusa-Ngonde + + + + + Tinputz + + + + + Pidgin Delaware + + + + + Mlahso + + + + + Holiya + + + + + Usaghade + + + + + West Ambae + + + + + Kumiai + + + + + Piti + + + + + Yace + + + + + Comaltepec Chinantec + + + + + Selkup + + + + + Malba Birifor + + + + + Kaki Ae + + + + + Nabi + + + + + Ibali Teke + + + + + Manna-Dora + + + + + Kazakh + + + + + Northern Lorung + + + + + Saep + + + + + Surui Do Para + + + + + Dhuwal + + + + + Tongwe + + + + + Wamey + + + + + Mese + + + + + Agi + + + + + Bakole + + + + + Big Nambas + + + + + Embera-Tado + + + + + Lubuagan Kalinga + + + + + Egyptian Arabic + + + + + Transalpine Gaulish + + + + + Barasana + + + + + Nama (Papua New Guinea) + + + + + San Baltazar Loxicha Zapotec + + + + + Gamo-Ningi + + + + + Helambu Sherpa + + + + + Nchumbulu + + + + + Koyraboro Senni Songhai + + + + + Pa Di + + + + + Northern Pastaza Quichua + + + + + Southern Pumi + + + + + Kom (Cameroon) + + + + + Yakha + + + + + Darmiya + + + + + Dakka + + + + + Tampulma + + + + + Sumi Naga + + + + + Sekani + + + + + Didinga + + + + + Shahrudi + + + + + Khmu + + + + + Kanoe + + + + + Cameroon Mambila + + + + + Bera + + + + + Yei + + + + + Dogul Dom Dogon + + + + + Sizaki + + + + + Pictish + + + + + Garawa + + + + + Zimakani + + + + + Bau + + + + + Bumthangkha + + + + + Bahinemo + + + + + Rapoisi + + + + + Pauri Bareli + + + + + Bembe + + + + + Southern Samo + + + + + Bongu + + + + + Ojitlan Chinantec + + + + + Kituba (Democratic Republic of Congo) + + + + + Shendu + + + + + Butuanon + + + + + Nadruvian + + + + + Kamasa + + + + + Mawan + + + + + Pa-Hng + + + + + Lematang + + + + + Yoruba + + + + + North Nuaulu + + + + + Franco-Provencal + + + + + Ulch + + + + + Mamaa + + + + + Poyanawa + + + + + Takwane + + + + + Huizhou Chinese + + + + + Orang Seletar + + + + + Mandobo Bawah + + + + + Adasen Itneg + + + + + Ubi + + + + + Tabasco Chontal + + + + + Mushungulu + + + + + Mboi + + + + + Pao + + + + + Pari + + + + + Cao Lan + + + + + Carrier + + + + + Yauyos Quechua + + + + + Kikuyu + + + + + Sauria Paharia + + + + + Burmese + + + + + Ulau-Suain + + + + + Western Fijian + + + + + Wayuu + + + + + Nyamwanga + + + + + Fam + + + + + Mongondow + + + + + Kodia + + + + + Bonggo + + + + + Settla + + + + + Lamang + + + + + Brithenig + + + + + Laua + + + + + Eastern Egyptian Bedawi Arabic + + + + + Navajo + + + + + Lushai + + + + + Bunun + + + + + Mro Chin + + + + + Wakhi + + + + + Siwi + + + + + Umanakaina + + + + + Ojibwa + + + + + Bayono + + + + + Nyulnyul + + + + + Sanga (Nigeria) + + + + + Tigre + + + + + Kerewe + + + + + Kenyi + + + + + Mbonga + + + + + Middle English (1100-1500) + + + + + Kunfal + + + + + Tagbanwa + + + + + Isthmus-Pajapan Nahuatl + + + + + North Giziga + + + + + San Luis Potosi Huastec + + + + + Duduela + + + + + Fijian Hindustani + + + + + Narau + + + + + Wayoro + + + + + Punic + + + + + Ayu + + + + + Baharna Arabic + + + + + Mualang + + + + + Laari + + + + + San Agustin Mixtepec Zapotec + + + + + Reli + + + + + Rungus + + + + + Mesquakie + + + + + Yessan-Mayo + + + + + Lave + + + + + Hiligaynon + + + + + Kintaq + + + + + Paku Karen + + + + + Xishan Lalu Yi + + + + + Poke + + + + + Maek + + + + + Sugut Dusun + + + + + Guianese Creole French + + + + + Defaka + + + + + Nanggu + + + + + Molima + + + + + Panasuan + + + + + North Wahgi + + + + + Candoshi-Shapra + + + + + Namat + + + + + Yamana + + + + + Eastern Frisian + + + + + Melpa + + + + + Khams Tibetan + + + + + Demta + + + + + Kohumono + + + + + Logo + + + + + Nootka + + + + + Old Tibetan + + + + + Itza + + + + + Memoni + + + + + Ngbundu + + + + + Lamenu + + + + + Patep + + + + + Xhosa + + + + + Yong + + + + + Iapama + + + + + Label + + + + + Yeyi + + + + + Awabakal + + + + + Nyangumarta + + + + + Hamer-Banna + + + + + Serer + + + + + Samtao + + + + + Bassari + + + + + North Bolivian Quechua + + + + + Kumzari + + + + + Laghuu + + + + + Chimalapa Zoque + + + + + Mararit + + + + + Tanosy Malagasy + + + + + Mochica + + + + + Bauro + + + + + Laka (Nigeria) + + + + + Ngumbi + + + + + Tunisian Arabic + + + + + Hmong Shua + + + + + Aranama-Tamique + + + + + Lipan Apache + + + + + Teme + + + + + Aka-Bo + + + + + Namosi-Naitasiri-Serua + + + + + Beja + + + + + Solos + + + + + Temein + + + + + Wadaginam + + + + + Patpatar + + + + + Tagish + + + + + Mae + + + + + Cinta Larga + + + + + Gunya + + + + + Bondei + + + + + Ngura + + + + + Tuxinawa + + + + + Bati (Indonesia) + + + + + Southern Qiang + + + + + Skepi Creole Dutch + + + + + Villa Viciosa Agta + + + + + Argobba + + + + + Maiani + + + + + Ngaju + + + + + Northern Embera + + + + + Yucuane Mixtec + + + + + Central Masela + + + + + Maa + + + + + Kalkutung + + + + + Ona + + + + + Kangean + + + + + Fongoro + + + + + Moyon Naga + + + + + Khana + + + + + Tichurong + + + + + Southern Sami + + + + + Yindjibarndi + + + + + Lewotobi + + + + + Soyaltepec Mixtec + + + + + Tabriak + + + + + Talodi + + + + + Hakka Chinese + + + + + Onge + + + + + Lucumi + + + + + =/Kx'au//ein + + + + + Onin Based Pidgin + + + + + Tolomako + + + + + //Ani + + + + + Lingkhim + + + + + Teor + + + + + Letemboi + + + + + Mbangi + + + + + Dwang + + + + + Trumai + + + + + Bassossi + + + + + Seselwa Creole French + + + + + Lumun + + + + + Gusilay + + + + + Ometepec Nahuatl + + + + + Terebu + + + + + Kiowa + + + + + Bamukumbit + + + + + Palenquero + + + + + Western Highland Purepecha + + + + + Mayeka + + + + + Somyev + + + + + Akpes + + + + + Welaung + + + + + Braj + + + + + Yepocapa Southwestern Cakchiquel + + + + + Thai + + + + + Inpui Naga + + + + + Bororo + + + + + Beli (Sudan) + + + + + Ute-Southern Paiute + + + + + Karawa + + + + + Kabola + + + + + Dong + + + + + Bagri + + + + + Ndoola + + + + + West Tarangan + + + + + Saya + + + + + Babuza + + + + + Kohoroxitari + + + + + Kunbarlang + + + + + Mediak + + + + + Tavoyan + + + + + Bima + + + + + Kereho-Uheng + + + + + Bacanese Malay + + + + + Northern Pumi + + + + + Mopan Maya + + + + + Tagwana Senoufo + + + + + Ecuadorian Sign Language + + + + + Faroese + + + + + Eman + + + + + Marba + + + + + Peranakan Indonesian + + + + + Pijao + + + + + Nii + + + + + Tsonga + + + + + Abu + + + + + Chru + + + + + Krobu + + + + + Shabo + + + + + We Northern + + + + + Corongo Ancash Quechua + + + + + Umbindhamu + + + + + Tatana + + + + + Kpala + + + + + Baba Malay + + + + + Shumashti + + + + + Kwakiutl + + + + + Ethiopian Sign Language + + + + + Dibole + + + + + Karanga + + + + + Papapana + + + + + Sebuyau + + + + + Omurano + + + + + Seri + + + + + Wasa + + + + + Toala' + + + + + Central Grebo + + + + + Tami + + + + + Kamba (Kenya) + + + + + Afar + + + + + Baeggu + + + + + Jandavra + + + + + Eshtehardi + + + + + Pukapuka + + + + + Kharia Thar + + + + + Kuku-Mangk + + + + + Kenyang + + + + + Rathwi Bareli + + + + + Zia + + + + + Kang + + + + + Central Nicobarese + + + + + Ngarluma + + + + + Rongpo + + + + + Mauwake + + + + + Khaling + + + + + Busam + + + + + Adangbe + + + + + Nyanga-li + + + + + Saposa + + + + + Tobagonian Creole English + + + + + Mer + + + + + Abenlen Ayta + + + + + Koroni + + + + + Wariyangga + + + + + Mescalero-Chiricahua Apache + + + + + Cemuhi + + + + + Rongga + + + + + Middle Dutch (ca. 1050-1350) + + + + + Malasanga + + + + + Veluws + + + + + Classical Newari + + + + + Hruso + + + + + Barwe + + + + + Huautla Mazatec + + + + + Pela + + + + + Bagupi + + + + + Tahitian + + + + + Nguluwan + + + + + Kuanhua + + + + + West Coast Bajau + + + + + Maca + + + + + Hassaniyya + + + + + Woleaian + + + + + Otuke + + + + + Old Japanese + + + + + Valman + + + + + Izi-Ezaa-Ikwo-Mgbo + + + + + Penoles Mixtec + + + + + Napu + + + + + Parkari Koli + + + + + Chuvash + + + + + Northern Thai + + + + + Ponosakan + + + + + Otuho + + + + + Komba + + + + + Khang + + + + + Sene + + + + + Kachari + + + + + Baniva + + + + + Ipiko + + + + + Aghu Tharnggalu + + + + + Akum + + + + + Kilmeri + + + + + Kuanua + + + + + Pula Yi + + + + + Cofan + + + + + Mfinu + + + + + Ga + + + + + Ngalum + + + + + Tariano + + + + + Sicel + + + + + Phoenician + + + + + Awjilah + + + + + Tukumanfed + + + + + Ludian + + + + + Eastern Mnong + + + + + Idesa + + + + + Pamosu + + + + + Kaytetye + + + + + Kashubian + + + + + Amoltepec Mixtec + + + + + Yekhee + + + + + Banggai + + + + + Awtuw + + + + + Phana' + + + + + Maraghei + + + + + Selian + + + + + Kajakse + + + + + Sudanese Creole Arabic + + + + + Kahumamahon Saluan + + + + + Alu Kurumba + + + + + Mser + + + + + La'bi + + + + + Mundu + + + + + Rumu + + + + + Arawak + + + + + Northern Sierra Miwok + + + + + Tanzanian Sign Language + + + + + Khumi Chin + + + + + Makasar + + + + + Sinte Romani + + + + + Singapore Sign Language + + + + + Koma + + + + + Cuiba + + + + + Chinook jargon + + + + + Laadan + + + + + Galambu + + + + + North Marquesan + + + + + Birhor + + + + + Azoyu Tlapanec + + + + + Korop + + + + + Herde + + + + + Southern Betsimisaraka Malagasy + + + + + Yinggarda + + + + + Kamoro + + + + + Wikalkan + + + + + Churahi + + + + + Volscian + + + + + Northern Bai + + + + + Sranan Tongo + + + + + Qaqet + + + + + Southern Yukaghir + + + + + Dhivehi + + + + + Barein + + + + + Koiwat + + + + + Old Nubian + + + + + Salinan + + + + + Yangbye + + + + + Uhami + + + + + Lomaiviti + + + + + Psikye + + + + + Grebo + + + + + Santiago Lapaguia Zapotec + + + + + Caribbean Javanese + + + + + Wumbvu + + + + + Khalaj + + + + + Chocangacakha + + + + + Khanty + + + + + Kayan River Kayan + + + + + Maricopa + + + + + Isinai + + + + + Eastern Bolivian Guarani + + + + + Xibe + + + + + Kiliwa + + + + + Lala-Roba + + + + + Persian + + + + + South Awyu + + + + + Mombum + + + + + Southwestern Tarahumara + + + + + Pe + + + + + Molo + + + + + Kurtokha + + + + + Central Okinawan + + + + + Old Hungarian + + + + + Kamayura + + + + + Saisiyat + + + + + Northern Uzbek + + + + + Oyda + + + + + Kpelle + + + + + Geruma + + + + + Chuave + + + + + Wanman + + + + + Tayart Tamajeq + + + + + Kajaman + + + + + Hurrian + + + + + Haitian + + + + + Awu Yi + + + + + Cineni + + + + + Ndendeule + + + + + Northern Ngbandi + + + + + Akkala Sami + + + + + Kasseng + + + + + Tok Pisin + + + + + Ukue + + + + + Mbay + + + + + Tomedes + + + + + Mbariman-Gudhinma + + + + + Bantik + + + + + Lamogai + + + + + Min Dong Chinese + + + + + Ninam + + + + + Kamang + + + + + Loup B + + + + + Santa Teresa Cora + + + + + Touo + + + + + Liana-Seti + + + + + Kaco' + + + + + Algerian Saharan Arabic + + + + + Bauchi + + + + + Zuni + + + + + Yopno + + + + + Lachirioag Zapotec + + + + + Maithili + + + + + Bakwe + + + + + Nefamese + + + + + Karipuna Creole French + + + + + Yalahatan + + + + + Wanukaka + + + + + Nubri + + + + + Chilcotin + + + + + Biangai + + + + + Loo + + + + + Haveke + + + + + Kayardild + + + + + Tabasco Zoque + + + + + Kokoda + + + + + Jju + + + + + Gola + + + + + Bebil + + + + + Tsetsaut + + + + + Hulung + + + + + Vagla + + + + + Romanian + + + + + Kola + + + + + Dolpo + + + + + Zaniza Zapotec + + + + + Daga + + + + + Tombulu + + + + + Angolar + + + + + Kutu + + + + + Dura + + + + + Dolgan + + + + + Tocho + + + + + Chane + + + + + Dugun + + + + + Kota (Gabon) + + + + + Epi-Olmec + + + + + Mire + + + + + Rukai + + + + + Tsimane + + + + + Pacific Gulf Yupik + + + + + Coyotepec Popoloca + + + + + Alangan + + + + + Pwo Western Karen + + + + + Kanu + + + + + Nomaande + + + + + Tidaa Mixtec + + + + + Cebaara Senoufo + + + + + Fur + + + + + Old Saxon + + + + + Malawi Sena + + + + + Juray + + + + + Nyangatom + + + + + Old Tamil + + + + + Moingi + + + + + Dimbong + + + + + Nung (Viet Nam) + + + + + Iu Mien + + + + + Barclayville Grebo + + + + + Moken + + + + + Piraha + + + + + Embera-Chami + + + + + Grangali + + + + + Satawalese + + + + + Yabarana + + + + + Butmas-Tur + + + + + Lui + + + + + Ndengereko + + + + + Ila + + + + + Mesaka + + + + + Fe'fe + + + + + Tatar + + + + + Shawnee + + + + + Bofi + + + + + Abishira + + + + + Whitesands + + + + + Plateau Malagasy + + + + + Ere + + + + + Musey + + + + + Mashi (Nigeria) + + + + + Babango + + + + + Etkywan + + + + + Yanomami + + + + + Kunigami + + + + + Bedjond + + + + + Doutai + + + + + Murupi + + + + + Magori + + + + + Tereno + + + + + Nafri + + + + + Samvedi + + + + + Southern Birifor + + + + + Sebat Bet Gurage + + + + + Ikpeshi + + + + + Dungu + + + + + Darlong + + + + + Ladin + + + + + Orok + + + + + Onondaga + + + + + Sri Lankan Creole Malay + + + + + Alanic + + + + + Buginese + + + + + Southern Yi + + + + + Eastern Gorkha Tamang + + + + + Torau + + + + + Rendille + + + + + Northern Tiwa + + + + + Eritai + + + + + Meta' + + + + + Muong + + + + + Paafang + + + + + Northern Kissi + + + + + Bakaka + + + + + Wakawaka + + + + + Kaniet + + + + + East Makian + + + + + Liabuku + + + + + Shinabo + + + + + Narim + + + + + Mari (East Sepik Province) + + + + + Oroko + + + + + Khuen + + + + + Bum + + + + + Chorasmian + + + + + Kuman (Russia) + + + + + Tembo (Motembo) + + + + + Southern Kalinga + + + + + Fang (Equatorial Guinea) + + + + + Binji + + + + + Apalachee + + + + + Shuar + + + + + Nogai + + + + + Swahili (individual language) + + + + + Bonerate + + + + + Eastern Ojibwa + + + + + Tabassaran + + + + + Ayabadhu + + + + + Balau + + + + + Baga Binari + + + + + Wakona + + + + + Maori + + + + + Waigali + + + + + Batak Simalungun + + + + + Irantxe + + + + + Iduna + + + + + Chippewa + + + + + Kuni-Boazi + + + + + Kaimbulawa + + + + + San Salvador Kongo + + + + + Tyap + + + + + Bara Malagasy + + + + + Michoacan Nahuatl + + + + + Mbo (Democratic Republic of Congo) + + + + + Gayo + + + + + Duano' + + + + + Supyire Senoufo + + + + + Lorediakarkar + + + + + Bebeli + + + + + Geji + + + + + Lamet + + + + + Na + + + + + Chukot + + + + + Karo (Ethiopia) + + + + + Wandamen + + + + + Tuvinian + + + + + Odual + + + + + Emai-Iuleha-Ora + + + + + Marshallese + + + + + Eastern Pomo + + + + + Squamish + + + + + North Picene + + + + + Huambisa + + + + + Bikya + + + + + Omagua + + + + + Ombo + + + + + Odut + + + + + Kankanaey + + + + + Kamar + + + + + Toro So Dogon + + + + + Bambalang + + + + + Mohawk + + + + + Morisyen + + + + + Kurichiya + + + + + Cori + + + + + Adamawa Fulfulde + + + + + Ugong + + + + + Miami + + + + + Bakpinka + + + + + Diodio + + + + + Turkana + + + + + Bambassi + + + + + Nkonya + + + + + Djambarrpuyngu + + + + + Motu + + + + + Mezontla Popoloca + + + + + Urimo + + + + + Manam + + + + + Albay Bicolano + + + + + Awera + + + + + Wutung + + + + + Moma + + + + + Northern Gondi + + + + + Yagaria + + + + + Central Cagayan Agta + + + + + Narungga + + + + + Biao-Jiao Mien + + + + + Koyo + + + + + Coatepec Nahuatl + + + + + Gangulu + + + + + Uru-Pa-In + + + + + Huaxcaleca Nahuatl + + + + + Shilluk + + + + + Amal + + + + + Ventureno + + + + + Hlai + + + + + Northern Paiute + + + + + Gitua + + + + + Mbala + + + + + Totela + + + + + Kemberano + + + + + Auye + + + + + Phimbi + + + + + Tutsa Naga + + + + + Mednyj Aleut + + + + + Tiv + + + + + Aramaic + + + + + Chitwania Tharu + + + + + Burak + + + + + Manyawa + + + + + Toaripi + + + + + Eastern Lawa + + + + + Wik-Mungkan + + + + + Gupa-Abawa + + + + + Hasha + + + + + Senhaja De Srair + + + + + Nivacle + + + + + Imroing + + + + + Melanau + + + + + Dusun Witu + + + + + Northern Toussian + + + + + Togoyo + + + + + Chajul Ixil + + + + + Mru + + + + + Atakapa + + + + + Yawarawarga + + + + + Lamam + + + + + Nake + + + + + Avokaya + + + + + Rincon Zapotec + + + + + Northern Qiandong Hmong + + + + + Norwegian + + + + + Cross River Mbembe + + + + + Chamacoco + + + + + Malawi Lomwe + + + + + Xadani Zapotec + + + + + Jita + + + + + Kouya + + + + + Mandingo + + + + + Cakchiquel-Quiche Mixed Language + + + + + North Korowai + + + + + Sarli + + + + + Ocaina + + + + + Ukrainian + + + + + Northern Zhuang + + + + + Kitsai + + + + + Bonan + + + + + Northern Sami + + + + + Kamviri + + + + + Iyo + + + + + Ata + + + + + Nugunu (Cameroon) + + + + + Karingani + + + + + Mahakam Kenyah + + + + + Tause + + + + + Tiri + + + + + Secoya + + + + + Kharam Naga + + + + + North Ambrym + + + + + Pagi + + + + + Haeke + + + + + Kowaki + + + + + Muko-Muko + + + + + Tai Thanh + + + + + Airoran + + + + + Nyalayu + + + + + Ignaciano + + + + + Sangu (Tanzania) + + + + + Irish Sign Language + + + + + Oy + + + + + Brokpake + + + + + Kushi + + + + + Central Atlas Tamazight + + + + + Western Sisaala + + + + + Vaiphei + + + + + Angal Heneng + + + + + Thao + + + + + Yerong + + + + + Wetamut + + + + + Chiapanec + + + + + Istriot + + + + + Manx + + + + + Saaroa + + + + + Enya + + + + + Tepeuxila Cuicatec + + + + + Nez Perce + + + + + Ede Idaca + + + + + Phuan + + + + + Botolan Sambal + + + + + Karata + + + + + Simte + + + + + Piaroa + + + + + Farefare + + + + + Gamilaraay + + + + + Gaina + + + + + Aariya + + + + + Lower Pokomo + + + + + Urum + + + + + Kanga + + + + + Reyesano + + + + + Manga Kanuri + + + + + Nung (Myanmar) + + + + + Pom + + + + + Groma + + + + + Zemba + + + + + Sharwa + + + + + Tanimuca-Retuara + + + + + Ombamba + + + + + Dameli + + + + + Mbowe + + + + + Tuotomb + + + + + Minaean + + + + + Plains Cree + + + + + Southwestern Dinka + + + + + Arikara + + + + + Soninke + + + + + Gogodala + + + + + Yalunka + + + + + Algerian Arabic + + + + + Valpei + + + + + Masana + + + + + Eyak + + + + + Dabarre + + + + + Nga La + + + + + Nzima + + + + + Bamako Sign Language + + + + + Lycian + + + + + Kayort + + + + + Kpasam + + + + + Kulung (Nepal) + + + + + Wu Chinese + + + + + Erave + + + + + Kurumba + + + + + Kom (India) + + + + + Voro + + + + + Ngurmbur + + + + + Alatil + + + + + Middle Breton + + + + + Ikizu + + + + + Masalit + + + + + Biga + + + + + Kahayan + + + + + Dao + + + + + Tai Do + + + + + Guaja + + + + + Aka-Bea + + + + + Vaghri + + + + + Seko Tengah + + + + + Korubo + + + + + Mbongno + + + + + Buso + + + + + Anjam + + + + + Vute + + + + + Tabasco Nahuatl + + + + + Norwegian Nynorsk + + + + + Indonesian Bajau + + + + + Yaosakor Asmat + + + + + Lahta Karen + + + + + Lakona + + + + + Bobongko + + + + + Mouk-Aria + + + + + Dghwede + + + + + Paulohi + + + + + Middle Newar + + + + + Caquinte + + + + + Korak + + + + + Maba (Indonesia) + + + + + Portuguese + + + + + Highland Totonac + + + + + Nzakara + + + + + Gapapaiwa + + + + + Waima + + + + + Darai + + + + + Hu + + + + + North Tairora + + + + + Yavitero + + + + + Eruwa + + + + + Deni + + + + + Aguacateco + + + + + Sri Lankan Sign Language + + + + + Torres Strait Creole + + + + + Mbugu + + + + + Kaiku + + + + + Arem + + + + + Rang + + + + + Paelignian + + + + + Miluk + + + + + Daro-Matu + + + + + Lambichhong + + + + + Uab Meto + + + + + Mid Grand Valley Dani + + + + + Ahirani + + + + + Gungabula + + + + + Omie + + + + + Bangubangu + + + + + New Caledonian Javanese + + + + + Quechan + + + + + Gujarati + + + + + South Fali + + + + + Siang + + + + + Ndyuka-Trio Pidgin + + + + + Iban + + + + + Pannei + + + + + Koalib + + + + + Moyadan Itneg + + + + + Alaba + + + + + Manya + + + + + Garus + + + + + Atampaya + + + + + Aka-Kol + + + + + Hungworo + + + + + Delo + + + + + Eastern Canadian Inuktitut + + + + + Central Mazahua + + + + + Batak Dairi + + + + + Kaburi + + + + + Budong-Budong + + + + + Piscataway + + + + + Saliba + + + + + Shipibo-Conibo + + + + + Tagdal + + + + + Kamano + + + + + Tejalapan Zapotec + + + + + Haruai + + + + + Malaysian Sign Language + + + + + Bonkeng + + + + + Nepali + + + + + Lawunuia + + + + + Northern Altai + + + + + Western Huasteca Nahuatl + + + + + Parthian + + + + + Ekari + + + + + Budu + + + + + Aralle-Tabulahan + + + + + Setaman + + + + + Timor Pidgin + + + + + Ho + + + + + Dagik + + + + + Rabha + + + + + Tauya + + + + + Lijili + + + + + Enim + + + + + Sallands + + + + + Bishnupriya + + + + + Southern Kisi + + + + + Wancho Naga + + + + + Tereweng + + + + + Tsamai + + + + + Nggwahyi + + + + + Pattani Malay + + + + + Heiban + + + + + Rotuman + + + + + Digaro-Mishmi + + + + + Dompo + + + + + Eshan-Xinping Yi + + + + + Gweno + + + + + Fali + + + + + Cafundo Creole + + + + + Oro Win + + + + + Deno + + + + + Suwawa + + + + + Marithiel + + + + + Prussian + + + + + Toku-No-Shima + + + + + Thakali + + + + + Aja (Sudan) + + + + + Phudagi + + + + + Nukak Maku + + + + + Sassarese Sardinian + + + + + East Kewa + + + + + Tobati + + + + + Pinai-Hagahai + + + + + Bokobaru + + + + + Yutanduchi Mixtec + + + + + Huaulu + + + + + Kolibugan Subanon + + + + + Ngamo + + + + + Torricelli + + + + + Dinka + + + + + Lobala + + + + + Gula (Central African Republic) + + + + + Valle Nacional Chinantec + + + + + Tenino + + + + + Kariyarra + + + + + Bon Gula + + + + + Yocoboue Dida + + + + + Hako + + + + + Selako + + + + + Chak + + + + + Yauma + + + + + Bhattiyali + + + + + Yapese + + + + + Xukuru + + + + + Kofyar + + + + + Tlahuitoltepec Mixe + + + + + Aruop + + + + + Monastic Sign Language + + + + + Southeast Pashayi + + + + + Isthmus Mixe + + + + + Capiznon + + + + + Woria + + + + + Bargam + + + + + Gundi + + + + + Urumi + + + + + Aloapam Zapotec + + + + + Wogeo + + + + + Hopi + + + + + Modern Greek (1453-) + + + + + Bonggi + + + + + Luopohe Hmong + + + + + Kedah Malay + + + + + Baan + + + + + Selepet + + + + + Cao Miao + + + + + Curripaco + + + + + Lisela + + + + + Chimila + + + + + Kayan River Kenyah + + + + + Foau + + + + + Purisimeno + + + + + Dijim-Bwilim + + + + + Central Huasteca Nahuatl + + + + + Tlacolulita Zapotec + + + + + Amba (Uganda) + + + + + Sepik Iwam + + + + + Guayabero + + + + + West Central Banda + + + + + Dadiya + + + + + Gitxsan + + + + + Hovongan + + + + + Belanda Bor + + + + + Dagaari Dioula + + + + + Kanamari + + + + + Rikbaktsa + + + + + Kiong + + + + + En + + + + + Old Turkish + + + + + Nkoya + + + + + Ndemli + + + + + Napo Lowland Quechua + + + + + Austral + + + + + Western Juxtlahuaca Mixtec + + + + + Zapotec + + + + + Yeskwa + + + + + Bina (Papua New Guinea) + + + + + Kara (Korea) + + + + + Western Tzutujil + + + + + Uzekwe + + + + + Korafe + + + + + Ouma + + + + + Bena (Tanzania) + + + + + Guntai + + + + + Agob + + + + + Kui (India) + + + + + Malila + + + + + Gbaya-Bossangoa + + + + + Gvoko + + + + + Yidiny + + + + + Pudtol Atta + + + + + Tibetan + + + + + Kwaami + + + + + Gela + + + + + Gade + + + + + Eastern Mari + + + + + Sila + + + + + Gebe + + + + + Vinmavis + + + + + Kuwaataay + + + + + Kuthant + + + + + Bora + + + + + Subtiaba + + + + + Awad Bing + + + + + Saweru + + + + + Odiai + + + + + Magahi + + + + + Saba + + + + + Ko + + + + + Pangwa + + + + + Lengua + + + + + Rathawi + + + + + Lunanakha + + + + + Habu + + + + + Murle + + + + + Kui (Indonesia) + + + + + Madagascar Sign Language + + + + + Nyadu + + + + + Tanapag + + + + + Newari + + + + + Achang + + + + + Abau + + + + + Southern Ghale + + + + + Purepecha + + + + + Western Tunebo + + + + + Walio + + + + + Como Karim + + + + + Kodi + + + + + Ndunda + + + + + Silacayoapan Mixtec + + + + + Muji Yi + + + + + Western Mashan Hmong + + + + + Aranadan + + + + + Shwe Palaung + + + + + Siona + + + + + Gambera + + + + + Mala (Nigeria) + + + + + Wichi Lhamtes Nocten + + + + + Tukudede + + + + + Jibu + + + + + Dhargari + + + + + Kovai + + + + + Mesopotamian Arabic + + + + + Movima + + + + + Nduga + + + + + Southern Sama + + + + + Ngbaka + + + + + Tiang + + + + + Indus Valley Language + + + + + Agutaynen + + + + + Yora + + + + + Hobyot + + + + + Trieng + + + + + Defi Gbe + + + + + Ubaghara + + + + + Tosk Albanian + + + + + Northeast Pashayi + + + + + Djiwarli + + + + + Adai + + + + + Phuie + + + + + Estonian + + + + + Ahan + + + + + Taikat + + + + + Ningil + + + + + Kukele + + + + + Pu Ko + + + + + Lengola + + + + + Twana + + + + + Libyan Arabic + + + + + Mai Brat + + + + + Guanano + + + + + Azhe Yi + + + + + Old Korean (3rd - 9th cent.) + + + + + Talur + + + + + Yambeta + + + + + Sipacapense + + + + + Siliput + + + + + Cajamarca Quechua + + + + + Iatmul + + + + + Swiss-French Sign Language + + + + + Ravula + + + + + Sinhala + + + + + Bagirmi Fulfulde + + + + + Flinders Island + + + + + Southern Pame + + + + + Njyem + + + + + Callawalla + + + + + Kabutra + + + + + Eteocretan + + + + + Ubykh + + + + + San Sebastian Coatan Chuj + + + + + Paite Chin + + + + + Bata + + + + + Waray (Philippines) + + + + + Iraya + + + + + Southern East Cree + + + + + Marrucinian + + + + + Yanyuwa + + + + + Dzongkha + + + + + Guarequena + + + + + Haitian Vodoun Culture Language + + + + + So'a + + + + + Muruwari + + + + + Landoma + + + + + Dazaga + + + + + Kairui-Midiki + + + + + Southern Pomo + + + + + Animere + + + + + Gnau + + + + + Eastern Huasteca Nahuatl + + + + + Southern Grebo + + + + + Waris + + + + + Magoma + + + + + Romansh + + + + + Northeast Kiwai + + + + + Bayungu + + + + + Pisabo + + + + + Tukpa + + + + + Bhaya + + + + + Southern Alta + + + + + A'tong + + + + + Upper Taromi + + + + + Kpan + + + + + Hawaiian + + + + + Lara' + + + + + San Juan Guelavia Zapotec + + + + + Mawak + + + + + Etulo + + + + + Tama (Chad) + + + + + Dhodia + + + + + Tese + + + + + Nauru + + + + + Saramaccan + + + + + Ligurian + + + + + Brokkat + + + + + Weliki + + + + + Shor + + + + + Northern Mashan Hmong + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/niem-core/2.0/constraint-schema-transform.xsl b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/niem-core/2.0/constraint-schema-transform.xsl new file mode 100644 index 000000000..f43fef11e --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/niem-core/2.0/constraint-schema-transform.xsl @@ -0,0 +1,1360 @@ + + + + +1 +1 + + + + +1 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +1 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +1 +unbounded + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +unbounded + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +1 +2 + + + + +0 +14 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +1 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +1 +1 + + + + +1 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +1 +1 + + + + +0 +1 + + + + +0 +1 + + + + +1 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +1 +1 + + + + +1 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +1 +1 + + + + +1 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +1 +1 + + + + +0 +1 + + + + +0 +1 + + + + +1 +1 + + + + +1 +1 + + + + +1 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +1 +1 + + + + +0 +1 + + + + +0 +1 + + + + +2 +unbounded + + + + +1 +1 + + + + +1 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +2 +unbounded + + + + +1 +1 + + + + +1 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +1 +1 + + + + +1 +1 + + + + +1 +unbounded + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +1 +unbounded + + + + +1 +unbounded + + + + +0 +1 + + + + +0 +1 + + + + +0 +unbounded + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +unbounded + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +unbounded + + + + +0 +unbounded + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +2 +unbounded + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +unbounded + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/niem-core/2.0/niem-core.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/niem-core/2.0/niem-core.xsd new file mode 100644 index 000000000..d1d7a3377 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/niem-core/2.0/niem-core.xsd @@ -0,0 +1,2593 @@ + + + + NIEM Core includes both Universal (U) and Common (C) components. The identities for U and C components in Core are maintained with metadata. + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A version of a computer application. + + + + + A unit of money or exchange. + + + + + A unit of money or exchange. + + + + + A language in which a character string is recorded. + + + + + A comment about a kind of name for a person. + + + + + A single or set of related actions, events, or process steps. + + + + + + + + + A date of an activity. + + + + + + + + A period of time over which an activity occurs. + + + + + + + + A date an activity occurs. + + + + + A description of an activity. + + + + + A result or outcome of an activity. + + + + + An identification that references an activity. + + + + + A status of an activity. + + + + + A postal location to which paper mail can be directed. + + + + + A single place or unit at which mail is delivered. + + + + + An identifier of a single place or unit at which mail is delivered. + + + + + + + + A single place or unit at which mail is delivered. + + + + + + + + A complete address. + + + + + + + + A private mailbox within a company. + + + + + + + + A name of a person, organization, or other recipient to whom physical mail may be sent. + + + + + A representation of an address. + + + + + A particular unit within a larger unit or grouping at a location. + + + + + + + + A connection, relationship, or involvement somehow linking people and/or things together. + + + + + A binary attachment to a report or document. + + + + + A binary encoding of data. + + + + + + + + A date on which a binary object is captured or created. + + + + + An entity which captured or created a binary object. + + + + + A kind of object that has been encoded. + + + + + A description of a binary object. + + + + + A name of a standard or protocol used to classify binary content. + + + + + A URL or file reference of a binary object. + + + + + A binary encoding of data. + + + + + A size of a binary object in kilobytes. + + + + + Information used to measurable a biological or behavioral characteristic, which can reliably recognize the identity, or verify the claimed identity, of a person. + + + + + An entity that collected a biometric sample. + + + + + A picture of a biometric sample. + + + + + A description of a capacity or ability. + + + + + An aggregation of information about a set of related activities and events. + + + + + A kind of case. + + + + + An outcome or processing of a case. + + + + + + + + A case disposition occurring as a result of some decision. + + + + + A date that all charges in a case were disposed. + + + + + An identifier used to reference a case docket. + + + + + A document or other piece of information filed by someone or something involved in a case. + + + + + An official name of a case. + + + + + An identifier used to track a case. + + + + + An electronic mailing address by which a person or organization may be contacted. + + + + + + + + An entity that may be contacted by using the given contact information. + + + + + A description, title or function of a person with the given contact information. + + + + + A telephone number for a facsimile device by which a person or organization may be contacted. + + + + + + + + Details about how to contact a person or an organization. + + + + + + + + Details about how to contact a person or an organization. + + + + + A description of the methods available to contact a person or organization. + + + + + True if the contact information is the daytime contact information; false otherwise. + + + + + True if the contact information is the emergency contact information; false otherwise. + + + + + True if the contact information is the late day / early night contact information; false otherwise. + + + + + True if the contact information is the home contact information; false otherwise. + + + + + True if the contact information is the late night contact information; false otherwise. + + + + + True if the contact information is the primary method for contact; false otherwise. + + + + + True if the contact information is the employment contact information; false otherwise. + + + + + A postal address by which a person or organization may be contacted. + + + + + + + + A means of contacting someone. + + + + + A third party person who answers a call and connects or directs the caller to the intended person. + + + + + A telephone number for a telecommunication device by which a person or organization may be contacted. + + + + + + + + A means of transport from place to place. + + + + + + + + A single, upper-most, front-most, or majority color of a conveyance. + + + + + + + + An identification on a metal plate fixed to a conveyance. + + + + + An image of a DNA strand. + + + + + Location specific information regarding a person's DNA. + + + + + A location within a strand of DNA that a value is determined. + + + + + A value string for a DNA locus. + + + + + A full date. + + + + + + + + A time period measured by a starting and ending point. + + + + + A representation of a date. + + + + + A full date and time. + + + + + + + + A result or outcome that is the product of handling, processing, or finalizing something. + + + + + A kind of disposition. + + + + + A date a disposition occurred. + + + + + A description of a disposition. + + + + + A result or outcome of a disposition. + + + + + A paper or electronic document. + + + + + + + + A paper or electronic document. + + + + + A name of an application used to create and/or display an electronic document. + + + + + A binary encoding of the content of a document. + + + + + A kind of document; a nature or genre of the content. + + + + + A description of the content of a document. + + + + + A date the information in a document takes effect. + + + + + An identifier assigned to a document to locate it within a file control system. + + + + + A date a document was filed. + + + + + An identification that references a document. + + + + + A date after which contributions to the content of a document will no longer be accepted. + + + + + A language of the intellectual content of the resource. + + + + + A language of the intellectual content of the resource. + + + + + + + + A date a document is posted to an information system or network. + + + + + A date a transmitted document was received. + + + + + An identifier that determines the document order in a set of related documents. + + + + + A status of a document. + + + + + A fee or price required to submit a document. + + + + + An entity responsible for making the resource available. + + + + + A name given to a document. + + + + + Details about a license issued to a person granting driving privileges. + + + + + + + + Details about a license issued to a person granting driving privileges. + + + + + Details about an authorization issued to a driver granting driving privileges. + + + + + A kind of commercial vehicle that a licensed driver has been examined on and approved to operate. + + + + + A kind of commercial vehicle that a licensed driver has been examined on and approved to operate. + + + + + + + + The date after which a driver license or driver license permit is no longer valid. + + + + + Details about a driver license identifier or driver license permit identifier, including the number and state. + + + + + The date when a driver license or driver license permit is issued or renewed. + + + + + A restriction on a driver license or driver license permit. + + + + + Details regarding a driver license withdrawal. + + + + + A date on which a driver license withdrawal becomes effective. + + + + + A category of a driving restriction. + + + + + + + + A date on which a special restriction ends. + + + + + A category of a driving restriction. + + + + + + + + A driving restriction. + + + + + A date that information take effect. + + + + + A person who works for a business or a person. + + + + + + + + A business or person which employs a person. + + + + + An end date. + + + + + A person, organization, or thing capable of bearing legal rights and responsibilities. + + + + + + + + A person, organization, or thing capable of bearing legal rights and responsibilities. + + + + + An organization capable of bearing legal rights and responsibilities. + + + + + + + + + An organization capable of bearing legal rights and responsibilities. + + + + + + + + A person capable of bearing legal rights and responsibilities. + + + + + + + + + A person capable of bearing legal rights and responsibilities. + + + + + + + + A person, organization, or thing capable of bearing legal rights and responsibilities. + + + + + An identification assigned to a facility. + + + + + A kind of relationship between family members. + + + + + A kind of relationship between family members. + + + + + + + + A kind of relationship between family members. + + + + + + + + An amount of an exemption from a payment obligation. + + + + + A representation or an encoding of the identifying characteristics of a persons fingerprints. + + + + + A full telephone number. + + + + + + + + An association between a guardian and a dependent. + + + + + A representation of an identity. + + + + + A kind of identification. + + + + + A kind of identification. + + + + + + + + A value that identifies something. + + + + + An area, region, or unit in which a unique identification is issued. + + + + + A person, organization, or locale which issues an identification. + + + + + A picture or visual representation of something. + + + + + An association between parents and children. + + + + + An occurrence or an event that may require a response. + + + + + + + + A location where an incident occurred. + + + + + An association between an incident and a vehicle. + + + + + A coverage by a contract whereby one party agrees to indemnify or guarantee another against loss by a specified contingent event or peril. + + + + + True if an insurance policy is active; false otherwise. + + + + + A name of a company which underwrites an insurance policy. + + + + + A kind of insurance coverage. + + + + + A kind of insurance coverage. + + + + + + + + An international telephone number. + + + + + + + + An article or thing. + + + + + A color of an item. + + + + + A description of an item. + + + + + A year in which an item was manufactured or produced. + + + + + An identification assigned to an item. + + + + + A style of an item. + + + + + An evaluation of the monetary worth of an item. + + + + + A system of words or symbols used for communication. + + + + + A system of words or symbols used for communication. + + + + + + + + A unit of measure of a length value. + + + + + Details about a physical location. + + + + + + + + Details about a physical location. + + + + + A geophysical location described by postal information. + + + + + A name of a city or town. + + + + + A country, territory, dependency, or other such geopolitical subdivision of a location. + + + + + A country, territory, dependency, or other such geopolitical subdivision of a location. + + + + + + + + A country, territory, dependency, or other such geopolitical subdivision of a location. + + + + + + + + A county, parish, vicinage, or other such geopolitical subdivision of a state. + + + + + A county, parish, vicinage, or other such geopolitical subdivision of a state. + + + + + + + + A county, parish, vicinage, or other such geopolitical subdivision of a state. + + + + + + + + A description of a location. + + + + + A name of a location. + + + + + An identifier of a post office-assigned zone for an address. + + + + + An identifier of a smaller area within a post office-assigned zone for an address. + + + + + A name and number of a postal route. + + + + + + + + A state, commonwealth, province, or other such geopolitical subdivision of a country. + + + + + A state, commonwealth, province, or other such geopolitical subdivision of a country. + + + + + + + + A state, commonwealth, province, or other such geopolitical subdivision of a country. + + + + + + + + A road, thoroughfare or highway. + + + + + + + + An association between two persons who are legally married to each other. + + + + + A measurement. + + + + + A measurement value. + + + + + + + + A unit that qualifies the measurement value. + + + + + A measurement value. + + + + + Information that further qualifies primary data; data about data. + + + + + A North American Numbering Plan telephone number. + + + + + + + + A thing that is owed to someone else. + + + + + A kind of obligation. + + + + + An amount of money or quantity of time still required to be spent in order to fulfill an obligation. + + + + + An amount of a payment obligation that has not been made. + + + + + + + + A date on which an obligation ends. + + + + + An entity that must fulfill an obligation. + + + + + A waival or dismissal of an obligation. + + + + + A description of an exemption from an obligation. + + + + + An interval or period at which an obligation is required to be fulfilled. + + + + + An entity to whom an obligation must be fulfilled. + + + + + A periodic basis on which an obligation must be met. + + + + + A description of what is necessary in order to fulfill an obligation. + + + + + A date on which an obligation begins. + + + + + A unit which conducts some sort of business or operations. + + + + + + + + A unit which conducts some sort of business or operations. + + + + + An association between an organization and another organization. + + + + + An association between an organization and contact information. + + + + + An identification that references an organization. + + + + + A location of an organization. + + + + + A name of an organization. + + + + + A preferred means of contacting an organization. + + + + + A name of a subdivision of an organization. + + + + + A tax identification assigned to an organization. + + + + + A name of a high-level division of an organization. + + + + + A human being. + + + + + + + + A human being. + + + + + An association between people. + + + + + A date a person was born. + + + + + A capacity or ability of a person for something. + + + + + A son or daughter of a person. + + + + + + + + A county that assigns rights, duties, and privileges to a person because of the birth or naturalization of the person in that country. + + + + + A county that assigns rights, duties, and privileges to a person because of the birth or naturalization of the person in that country. + + + + + + + + An association between a person and contact information. + + + + + A representation or an encoding of the identifying characteristics of a person's DNA. + + + + + A date a person died or was declared legally dead. + + + + + A person dependent upon the guardianship of another. + + + + + + + + An employment of a person. + + + + + A cultural lineage of a person. + + + + + A cultural lineage of a person. + + + + + + + + A cultural lineage of a person. + + + + + + + + A color of the eyes of a person. + + + + + A color of the eyes of a person. + + + + + + + + A representation or an encoding of the identifying characteristics of a set of a persons fingerprints. + + + + + A complete name of a person. + + + + + An association between a person and a gang. + + + + + A first name of a person. + + + + + A person with guardianship over another. + + + + + + + + A color of the hair of a person. + + + + + A color of the hair of a person. + + + + + + + + A measurement of the height of a person. + + + + + True if a person understands and speaks English; false otherwise. + + + + + An original surname of a person before changed by marriage. + + + + + A middle name of a person. + + + + + A combination of names and/or titles by which a person is known. + + + + + A title or honorific used by a person. + + + + + A term appended after the family name that qualifies the name. + + + + + An association between a person and an organization. + + + + + Information about an identifier with a kind that is not explicitly defined in the standard that refers to a person within a certain domain. + + + + + A father or mother of a person. + + + + + + + + A prominent or easily identifiable aspect of a person. + + + + + A capacity of a person for a language with which that person has the strongest familiarity. + + + + + A classification of a person based on factors such as geographical locations and genetics. + + + + + A classification of a person based on factors such as geographical locations and genetics. + + + + + + + + A classification of a person based on factors such as geographical locations and genetics. + + + + + + + + A gender or sex of a person. + + + + + A gender or sex of a person. + + + + + + + + An identification of a person based on a state-issued ID card. + + + + + A last name or family name of a person. + + + + + An identification used to refer to a specific person within the tax system of a country. + + + + + A kind of union between two people. + + + + + A kind of union between two people. + + + + + + + + A status of a union between two people. + + + + + A measurement of the weight of a person. + + + + + A specific kind of physical feature. + + + + + A specific kind of physical feature. + + + + + + + + A specific kind of physical feature. + + + + + + + + A state or other jurisdictional unit where a property registration was issued. + + + + + An association between related cases. + + + + + A property of a role object. This specifies the base object, of which the role object is a function. + + + + + An entity of whom the role object is a function. + + + + + + + + + An organization of whom the role object is a function. + + + + + + + + + A person of whom the role object is a function. + + + + + + + + + An activity planned to occur on a certain date and time. + + + + + A date for which an activity is scheduled. + + + + + A time at which an activity is scheduled to end. + + + + + A time at which an activity is scheduled to begin. + + + + + A sensitivity level of the information. + + + + + A unit of measurement of speed. + + + + + A date on which something begins. + + + + + A date a status was set, effected, or reported. + + + + + A description of a status or condition of something or someone. + + + + + A status or condition of something or someone. + + + + + A kind of street. + + + + + Any additional parts of a street reference that follows the street category and post directional. + + + + + A complete reference for a street. + + + + + A name of a street. + + + + + A number that identifies a particular unit or location within a street. + + + + + A direction that appears after a street name. + + + + + A direction that appears before a street name. + + + + + An address. + + + + + + + + A process of overseeing, supervising, or keeping track in some capacity of a person. + + + + + A status of the custody of a person under supervision. + + + + + A facility at which a subject is being supervised. + + + + + A dialing code for a state or province for phone numbers in the USA, Canada, Mexico, and the Caribbean. + + + + + An international dialing code for a country. + + + + + A portion of a telephone number that usually represents a central telephone switch. + + + + + A portion of a telephone number that identifies the individual circuit within an exchange. + + + + + A telephone number for a telecommunication device. + + + + + A complete telephone number. + + + + + A telephone number. + + + + + A telephone number. + + + + + Additional numbers to be entered after a call connects to be directed to the appropriate place. + + + + + A motor-driven conveyance designed to carry its operator, and optionally passengers and cargo, over land. + + + + + A single, upper-most, front-most, or majority color of a vehicle. + + + + + + + + A unique combination of alphanumeric characters that identifies a specific vehicle. + + + + + A manufacturer of a vehicle. + + + + + A specific design or class of vehicle made by a manufacturer. + + + + + A style of a vehicle. + + + + + + + + A unit of measure of the weight value. + + + + + A year. + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/nonauthoritative-code/2.0/constraint-schema-transform.xsl b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/nonauthoritative-code/2.0/constraint-schema-transform.xsl new file mode 100644 index 000000000..f2e9f1524 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/nonauthoritative-code/2.0/constraint-schema-transform.xsl @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/nonauthoritative-code/2.0/nonauthoritative-code.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/nonauthoritative-code/2.0/nonauthoritative-code.xsd new file mode 100644 index 000000000..6950d371b --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/nonauthoritative-code/2.0/nonauthoritative-code.xsd @@ -0,0 +1,41 @@ + + + + Non-authoritative codes for the direction of a person's pose in an image. + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/proxy/xsd/2.0/xsd.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/proxy/xsd/2.0/xsd.xsd new file mode 100644 index 000000000..e7a7cc315 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/proxy/xsd/2.0/xsd.xsd @@ -0,0 +1,139 @@ + + + + Proxy types that carry dictionary metadata and have XML data type simple contents. + + true + + + + + + + + + + + + + + + + + + + A data type for Base64-encoded binary data. + + + + + + + + + + + + + A data type for binary-valued logic (true/false). + + + + + + + + + + + + + A data type for a calendar date with the format CCYY-MM-DD. + + + + + + + + + + + + + + + + + + + + + + + + + A data type for arbitrary precision decimal numbers. + + + + + + + + + + + + + A data type for a duration of time with the format PnYnMnDTnHnMnS, where nY is the number of years, nM is the number of months, nD is the number of days, nH is the number of hours, nM is the number of minutes, and nS is the number of seconds. + + + + + + + + + + + + + A data type for a Gregorian calendar year with the format CCYY. + + + + + + + + + + + + + A data type for character strings in XML. + + + + + + + + + + + + + A data type for an instant of time with the format hh:mm:ss.sss. + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/structures/2.0/structures.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/structures/2.0/structures.xsd new file mode 100644 index 000000000..a9166ee7a --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/structures/2.0/structures.xsd @@ -0,0 +1,145 @@ + + + + The structures schema provides support for + fundamental NIEM linking mechanisms, as well as providing base types + for definition of NIEM-conformant types. + + + + The Object resource defines an identifier which acts + as a conceptual base for objects in NIEM-conformant + schemas. + + + + + + The Association resource defines an identifier which + acts as a conceptual base for association in NIEM-conformant + schemas. + + + + + + + The id attribute is used to define XML IDs for + NIEM objects. These IDs may be targets of reference elements, + metadata attributes, and link metadata + attributes. + + + + + The linkMetadata attribute allows an element to + point to metadata that affects the relationship between the context + and the value of the object. + + + + + The attribute metadata allows an object to point + to metadata that affects itself. + + + + + The ref attribute is used by reference elements in + NIEM to refer to an object via an ID reference, rather than including + the object itself as element content. + + + + + The sequenceID attribute allows a series of + elements to define a sequence for content that does not correspond to + the order of element declarations within a type. This attribute may + override the sequence of elements appearing within an + instance. + + + + + The SimpleObjectAttributeGroup attribute group + provides a collection of attributes which are appropriate for + definition of object types. + + + + + + + + The Augmentation element provides a substitution + group head for augmentations. The designer of a message or object may + use this element within an object definition. This will allow the + selection of augmentations dynamically, at run time (or at least + schema selection time) rather than at schema authoring + time. + + + + + The Metadata element provides a substitution group + head for metadata. Like the substitution group head for + augmentations, this allows selection of metadata to be decided late + in message creation, rather than at schema authoring time. This + element may also be used to provide a single point in a container + where all metadata for a message may be + deposited. + + + + + The AugmentationType type is a base type for all + augmentations. An augmentation may have metadata and an ID, but may + not have link metadata, as it does not establish a relationship + between its value and its context. The individual element contents of + an augmentation, however, do establish a relationship between the + context of the augmentation and the values of the individual + elements. + + + + + + + The ComplexObjectType type provides a base class + for object definition, association definitions, and external adapter + type definitions. An instance of one of these types may have an ID. + It may have metadata as it establishes the existence of an object + (maybe a conceptual object). It may also have link metadata, as an + element of one of these types establishes a relationship between its + value and its context. + + + + + + + + The MetadataType type is a base class for metadata + type definition. This type provides only an ID, as the metadata may + be referenced. It does not itself have metadata, and does not have + link metadata. + + + + + + The ReferenceType type is the type of all + reference elements within NIEM-conformant schemas. This type provides + a reference attribute, to reference an object defined elsewhere. It + includes an ID, as the link established by a reference element may + need to be identified, and it includes link metadata, as an element + of this type establishes a relationship between its context and the + referenced object. It does not contain metadata, as it does not + itself establish the existence of an object; it relies on a + definition located elsewhere. + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/unece_rec20-misc/2.0/constraint-schema-transform.xsl b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/unece_rec20-misc/2.0/constraint-schema-transform.xsl new file mode 100644 index 000000000..a2a65c383 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/unece_rec20-misc/2.0/constraint-schema-transform.xsl @@ -0,0 +1,244 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/unece_rec20-misc/2.0/unece_rec20-misc.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/unece_rec20-misc/2.0/unece_rec20-misc.xsd new file mode 100644 index 000000000..274b4f718 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/unece_rec20-misc/2.0/unece_rec20-misc.xsd @@ -0,0 +1,263 @@ + + + + Miscellaneous unit of measure codes from the United Nations Economic Commission for Europe Recommendation No. 20, Codes for Units of Measure used in International Trade. + + true + + + + + + + + + micro-inch + + + + + nautical mile + + + + + parsec + + + + + decimetre + + + + + micrometre (micron) + + + + + foot + + + + + yard + + + + + hectometre + + + + + fathom + + + + + chain + + + + + mile (statute mile) + + + + + kilometre + + + + + milli-inch + + + + + millimetre + + + + + inch + + + + + nanometre + + + + + astronomical unit + + + + + femtometre + + + + + light year + + + + + centimetre + + + + + picometre + + + + + metre + + + + + angstrom + + + + + decametre + + + + + + + + + + + + + + + + centigram + + + + + decigram + + + + + milligram + + + + + microgram + + + + + decagram + + + + + gram + + + + + hundred pounds (cwt) / hundred weight (US) + + + + + megagram + + + + + decitonne + + + + + tonne (metric ton) + + + + + stone (UK) + + + + + grain + + + + + kilotonne + + + + + ton (UK) or long ton (US) + + + + + troy ounce or apothecary ounce + + + + + ton (US) or short ton (UK/US) + + + + + megagram + + + + + pound + + + + + kilogram + + + + + ounce + + + + + hundred weight (UK) + + + + + hectogram + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/usps_states/2.0/constraint-schema-transform.xsl b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/usps_states/2.0/constraint-schema-transform.xsl new file mode 100644 index 000000000..239fee3d7 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/usps_states/2.0/constraint-schema-transform.xsl @@ -0,0 +1,292 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/usps_states/2.0/usps_states.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/usps_states/2.0/usps_states.xsd new file mode 100644 index 000000000..83a1256de --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/constraint/niem/usps_states/2.0/usps_states.xsd @@ -0,0 +1,332 @@ + + + + U.S. state and possession abbreviations from the U.S. Postal Service (USPS). + + true + + + + + + + + + KANSAS + + + + + NORTH DAKOTA + + + + + MASSACHUSETTS + + + + + GEORGIA + + + + + IOWA + + + + + NEW HAMPSHIRE + + + + + MARSHALL ISLANDS + + + + + TEXAS + + + + + NEVADA + + + + + OKLAHOMA + + + + + Armed Forces Americas (except Canada) + + + + + ALASKA + + + + + PUERTO RICO + + + + + IDAHO + + + + + VERMONT + + + + + SOUTH CAROLINA + + + + + AMERICAN SAMOA + + + + + MONTANA + + + + + WEST VIRGINIA + + + + + MISSOURI + + + + + DISTRICT OF COLUMBIA + + + + + WISCONSIN + + + + + ILLINOIS + + + + + COLORADO + + + + + VIRGIN ISLANDS + + + + + DELAWARE + + + + + NEW JERSEY + + + + + Armed Forces Africa, Canada, Europe, Middle East + + + + + NORTHERN MARIANA ISLANDS + + + + + MICHIGAN + + + + + WASHINGTON + + + + + FEDERATED STATES OF MICRONESIA + + + + + CALIFORNIA + + + + + OREGON + + + + + NEW YORK + + + + + NORTH CAROLINA + + + + + KENTUCKY + + + + + UTAH + + + + + MARYLAND + + + + + SOUTH DAKOTA + + + + + PALAU + + + + + CONNECTICUT + + + + + NEBRASKA + + + + + ARIZONA + + + + + MAINE + + + + + OHIO + + + + + HAWAII + + + + + WYOMING + + + + + RHODE ISLAND + + + + + ARKANSAS + + + + + GUAM + + + + + NEW MEXICO + + + + + PENNSYLVANIA + + + + + ALABAMA + + + + + TENNESSEE + + + + + MINNESOTA + + + + + INDIANA + + + + + VIRGINIA + + + + + LOUISIANA + + + + + FLORIDA + + + + + Armed Forces Pacific + + + + + MISSISSIPPI + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/CCTS_CCT_SchemaModule-2.1.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/CCTS_CCT_SchemaModule-2.1.xsd new file mode 100644 index 000000000..c5f66db90 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/CCTS_CCT_SchemaModule-2.1.xsd @@ -0,0 +1,731 @@ + + + + + + + + + + + + + + UNDT000001 + CCT + Amount. Type + 1.0 + A number of monetary units specified in a currency where the unit of the currency is explicit or implied. + Amount + decimal + + + + + + + + UNDT000001-SC2 + SC + Amount Currency. Identifier + The currency of the amount. + Amount Currency + Identification + Identifier + string + Reference UNECE Rec 9, using 3-letter alphabetic codes. + + + + + + + UNDT000001-SC3 + SC + Amount Currency. Code List Version. Identifier + The VersionID of the UN/ECE Rec9 code list. + Amount Currency + Code List Version + Identifier + string + + + + + + + + + + + + UNDT000002 + CCT + Binary Object. Type + 1.0 + A set of finite-length sequences of binary octets. + Binary Object + binary + + + + + + + + UNDT000002-SC2 + SC + Binary Object. Format. Text + The format of the binary content. + Binary Object + Format + Text + string + + + + + + + UNDT000002-SC3 + SC + Binary Object. Mime. Code + The mime type of the binary object. + Binary Object + Mime + Code + string + + + + + + + UNDT000002-SC4 + SC + Binary Object. Encoding. Code + Specifies the decoding algorithm of the binary object. + Binary Object + Encoding + Code + string + + + + + + + UNDT000002-SC5 + SC + Binary Object. Character Set. Code + The character set of the binary object if the mime type is text. + Binary Object + Character Set + Code + string + + + + + + + UNDT000002-SC6 + SC + Binary Object. Uniform Resource. Identifier + The Uniform Resource Identifier that identifies where the binary object is located. + Binary Object + Uniform Resource Identifier + Identifier + string + + + + + + + UNDT000002-SC7 + SC + Binary Object. Filename.Text + The filename of the binary object. + Binary Object + Filename + Text + string + + + + + + + + + + + + UNDT000007 + CCT + Code. Type + 1.0 + A character string (letters, figures, or symbols) that for brevity and/or languange independence may be used to represent or replace a definitive value or text of an attribute together with relevant supplementary information. + Code + string + Should not be used if the character string identifies an instance of an object class or an object in the real world, in which case the Identifier. Type should be used. + + + + + + + + UNDT000007-SC2 + SC + Code List. Identifier + The identification of a list of codes. + Code List + Identification + Identifier + string + + + + + + + UNDT000007-SC3 + SC + Code List. Agency. Identifier + An agency that maintains one or more lists of codes. + Code List + Agency + Identifier + string + Defaults to the UN/EDIFACT data element 3055 code list. + + + + + + + UNDT000007-SC4 + SC + Code List. Agency Name. Text + The name of the agency that maintains the list of codes. + Code List + Agency Name + Text + string + + + + + + + UNDT000007-SC5 + SC + Code List. Name. Text + The name of a list of codes. + Code List + Name + Text + string + + + + + + + UNDT000007-SC6 + SC + Code List. Version. Identifier + The version of the list of codes. + Code List + Version + Identifier + string + + + + + + + UNDT000007-SC7 + SC + Code. Name. Text + The textual equivalent of the code content component. + Code + Name + Text + string + + + + + + + UNDT000007-SC8 + SC + Language. Identifier + The identifier of the language used in the code name. + Language + Identification + Identifier + string + + + + + + + UNDT000007-SC9 + SC + Code List. Uniform Resource. Identifier + The Uniform Resource Identifier that identifies where the code list is located. + Code List + Uniform Resource Identifier + Identifier + string + + + + + + + UNDT000007-SC10 + SC + Code List Scheme. Uniform Resource. Identifier + The Uniform Resource Identifier that identifies where the code list scheme is located. + Code List Scheme + Uniform Resource Identifier + Identifier + string + + + + + + + + + + + + UNDT000008 + CCT + Date Time. Type + 1.0 + A particular point in the progression of time together with the relevant supplementary information. + Date Time + string + Can be used for a date and/or time. + + + + + + + + UNDT000008-SC1 + SC + Date Time. Format. Text + The format of the date time content + Date Time + Format + Text + string + + + + + + + + + + + + UNDT000011 + CCT + Identifier. Type + 1.0 + A character string to identify and distinguish uniquely, one instance of an object in an identification scheme from all other objects in the same scheme together with relevant supplementary information. + Identifier + string + + + + + + + + UNDT000011-SC2 + SC + Identification Scheme. Identifier + The identification of the identification scheme. + Identification Scheme + Identification + Identifier + string + + + + + + + UNDT000011-SC3 + SC + Identification Scheme. Name. Text + The name of the identification scheme. + Identification Scheme + Name + Text + string + + + + + + + UNDT000011-SC4 + SC + Identification Scheme Agency. Identifier + The identification of the agency that maintains the identification scheme. + Identification Scheme Agency + Identification + Identifier + string + Defaults to the UN/EDIFACT data element 3055 code list. + + + + + + + UNDT000011-SC5 + SC + Identification Scheme Agency. Name. Text + The name of the agency that maintains the identification scheme. + Identification Scheme Agency + Agency Name + Text + string + + + + + + + UNDT000011-SC6 + SC + Identification Scheme. Version. Identifier + The version of the identification scheme. + Identification Scheme + Version + Identifier + string + + + + + + + UNDT000011-SC7 + SC + Identification Scheme Data. Uniform Resource. Identifier + The Uniform Resource Identifier that identifies where the identification scheme data is located. + Identification Scheme Data + Uniform Resource Identifier + Identifier + string + + + + + + + UNDT000011-SC8 + SC + Identification Scheme. Uniform Resource. Identifier + The Uniform Resource Identifier that identifies where the identification scheme is located. + Identification Scheme + Uniform Resource Identifier + Identifier + string + + + + + + + + + + + + UNDT000012 + CCT + Indicator. Type + 1.0 + A list of two mutually exclusive Boolean values that express the only possible states of a Property. + Indicator + string + + + + + + + + UNDT000012-SC2 + SC + Indicator. Format. Text + Whether the indicator is numeric, textual or binary. + Indicator + Format + Text + string + + + + + + + + + + + + UNDT000013 + CCT + Measure. Type + 1.0 + A numeric value determined by measuring an object along with the specified unit of measure. + Measure + decimal + + + + + + + + UNDT000013-SC2 + SC + Measure Unit. Code + The type of unit of measure. + Measure Unit + Code + Code + string + Reference UNECE Rec. 20 and X12 355 + + + + + + + UNDT000013-SC3 + SC + Measure Unit. Code List Version. Identifier + The version of the measure unit code list. + Measure Unit + Code List Version + Identifier + string + + + + + + + + + + + + UNDT000014 + CCT + Numeric. Type + 1.0 + Numeric information that is assigned or is determined by calculation, counting, or sequencing. It does not require a unit of quantity or unit of measure. + Numeric + string + + + + + + + + UNDT000014-SC2 + SC + Numeric. Format. Text + Whether the number is an integer, decimal, real number or percentage. + Numeric + Format + Text + string + + + + + + + + + + + + UNDT000018 + CCT + Quantity. Type + 1.0 + A counted number of non-monetary units possibly including fractions. + Quantity + decimal + + + + + + + + UNDT000018-SC2 + SC + Quantity. Unit. Code + The unit of the quantity + Quantity + Unit Code + Code + string + + + + + + + UNDT000018-SC3 + SC + Quantity Unit. Code List. Identifier + The quantity unit code list. + Quantity Unit + Code List + Identifier + string + + + + + + + UNDT000018-SC4 + SC + Quantity Unit. Code List Agency. Identifier + The identification of the agency that maintains the quantity unit code list + Quantity Unit + Code List Agency + Identifier + string + Defaults to the UN/EDIFACT data element 3055 code list. + + + + + + + UNDT000018-SC5 + SC + Quantity Unit. Code List Agency Name. Text + The name of the agency which maintains the quantity unit code list. + Quantity Unit + Code List Agency Name + Text + string + + + + + + + + + + + + UNDT000019 + CCT + Text. Type + 1.0 + A character string (i.e. a finite set of characters) generally in the form of words of a language. + Text + string + + + + + + + + UNDT000019-SC2 + SC + Language. Identifier + The identifier of the language used in the content component. + Language + Identification + Identifier + string + + + + + + + UNDT000019-SC3 + SC + Language. Locale. Identifier + The identification of the locale of the language. + Language + Locale + Identifier + string + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-CaseListQueryMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-CaseListQueryMessage.xsd new file mode 100644 index 000000000..6826bcff3 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-CaseListQueryMessage.xsd @@ -0,0 +1,86 @@ + + + + + + CaseListQueryMessage + + true + + + + + + + + + + + This is a query for a list of cases that match a set of criteria including case participants, case classification, case status, and date of the case was initiated. + + + + + + + + + + + + + + Placeholder for all case participants, i.e. persons or organizations playing a role in a case. This is where all actor details are expressed. + + + + + + + + + + + + + + + Structure for general information about a case used in a query. + + + + + This is a query for a list of cases that match a set of criteria including case participants, case classification, case status, and date of the case was initiated. + + + + + The beginning and ending filing dates/times of cases about which information is sought in this query. + + + + + Information describing a participant when a query seeks information about the cases in which the person or organization is a participant. + + + + + A unique identifier assigned by the filing assembly MDE for the person who is managing the interface between the filer and the filing assembly MDE. This person will receive secondary service on behalf of the filer. This is also the serviceRecipientID for subsequent filings in this case, and asynchronous responses to this filing. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-CaseListResponseMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-CaseListResponseMessage.xsd new file mode 100644 index 000000000..d121e9c32 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-CaseListResponseMessage.xsd @@ -0,0 +1,49 @@ + + + + + + CaseListResponseMessage + + true + + + + + + + + + + + A synchronous response to a GetCaseListQueryMessage. + + + + + + + + + + + + A synchronous response to a GetCaseListQueryMessage. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-CaseQueryMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-CaseQueryMessage.xsd new file mode 100644 index 000000000..694c66b51 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-CaseQueryMessage.xsd @@ -0,0 +1,108 @@ + + + + + + CaseQueryMessage + + true + + + + + + + + + + + A message requesting a list of cases from a court's case management information system conforming to the parameter or parameters identified in the message. + + + + + + + + + + + + + A message requesting a list of cases from a court's case management information system conforming to the parameter or parameters identified in the message. + + + + + + + + + + + + + + + + + + A filter criterion for calendar events. If present, the response should only include calendar events that fall between the from and to dates and times. + + + + + Filter criterion indicating that only calendar entries of a specified type are being requested. + + + + + Criteria limiting the case information to be returned. + + + + + A message requesting a list of cases from a court's case management information system conforming to the parameter or parameters identified in the message. + + + + + A filter criterion for docket entries. If present, the response should only include docket entries that fall between the from and to dates and times. + + + + + Filter criterion indicating that only docket entries of a specified type are being requested. + + + + + Indicates whether requester wishes participant information to be included in the response. + + + + + Indicates whether requester wishes docket entry information to be included in the response. + + + + + Indicates whether requester wishes calendar event information to be included in the response. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-CaseResponseMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-CaseResponseMessage.xsd new file mode 100644 index 000000000..90d19b2e4 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-CaseResponseMessage.xsd @@ -0,0 +1,48 @@ + + + + + + CaseResponseMessage + + true + + + + + + + + + + The response to a GetCaseInformationQuery. + + + + + + + + + + + + A message requesting a list of cases from a court's case management information system conforming to the parameter or parameters identified in the message. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-CoreFilingMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-CoreFilingMessage.xsd new file mode 100644 index 000000000..c02a1267f --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-CoreFilingMessage.xsd @@ -0,0 +1,66 @@ + + + + + + CoreFilingMessage + + true + + + + + + + + + + The structure of a Filing including any Payment Information will be documented in this section. This describes the filing transaction between the Filing Assembly MDE and the Filing Review MDE. This information will become part of the Record Docketing between the Filing Review MDE and the Court Record MDE but does not necessarily describe the information that is actually stored in the Court Record. + + + + + + + + + + + + + + + The structure of a Filing including any Payment Information will be documented in this section. This describes the filing transaction between the Filing Assembly MDE and the Filing Review MDE. This information will become part of the Record Docketing between the Filing Review MDE and the Court Record MDE but does not necessarily describe the information that is actually stored in the Court Record. + + + + + Indicator by the filer that something in the message requires sensitive or confidential treatment. (This replaces the former "request to seal" document metadata.) + + + + + A document included in a Filing that supports the Document. This document is not separately entered on the docket or register of actions. + + + + + The pleading, motion or order that is the main document in a Filing. A Document may have Attachments. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-CourtPolicyQueryMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-CourtPolicyQueryMessage.xsd new file mode 100644 index 000000000..2eafbeff1 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-CourtPolicyQueryMessage.xsd @@ -0,0 +1,45 @@ + + + + + + CourtPolicyQueryMessage + + true + + + + + + + + + + + A request for a court's Court Policy. + + + + + + + + A request for a court's Court Policy. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-CourtPolicyResponseMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-CourtPolicyResponseMessage.xsd new file mode 100644 index 000000000..5e369ab6c --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-CourtPolicyResponseMessage.xsd @@ -0,0 +1,446 @@ + + + + + + CourtPolicyResponseMessage + + true + + + + + + + + + + + + A type of court case. + + + + + Appellate case type + + + + + Bankruptcy case type + + + + + Citation case type + + + + + Civil case type + + + + + Criminal case type + + + + + Domestic case type + + + + + Juvenile case type + + + + + + + A type of court case. + + + + + + + + + + A Genericode list of valid codes for an element in a particular court to be substituted for an ECF element. + + + + + + + + + + + + + + + A schema that defines a court-specific data structure to be substituted for an ECF element. + + + + + + + + + + + + + A request for a court's Court Policy. + + + + + + + + The response to a request for a court's Court Policy. + + + + + + + + + + + + + + + Within Court Policy, the policies that are accessed by a person or organization developing an applications or configuring an application to interact with a court for the purpose of structuring the interactions with that court. This information is needed once and is not accessed dynamically while interacting with the court. + + + + + + + + + + + + + + + + + + + + + + + + + Name of a major design element. + + + + + CourtRecord MDE + + + + + FilingAssembly MDE + + + + + FilingReview MDE + + + + + Service MDE + + + + + + + Name of a major design element. + + + + + + + + + + Name of an MDE operation. + + + + + GetFeesCalculation query + + + + + GetCase query + + + + + GetFeesCaseList query + + + + + GetDocument query + + + + + GetFilingList query + + + + + GetFilingStatus query + + + + + GetPolicy query + + + + + GetServiceInformation query + + + + + NotifyFilingReview message + + + + + NotifyDocketing message + + + + + RecordFiling message + + + + + ReviewFiling message + + + + + ServeFiling message + + + + + + + Name of an MDE operation. + + + + + + + + + + Symmetric or asymmetric keys used to encrypt and decrypt, or verify signed messages or documents exchanged with the court. + + + + + + + + + + + + Within Court Policy, the policies that are accessed dynamically by applications interacting with a court. + + + + + + + + + + + + + Whether the court will accept electronic filing of documents requiring filing fees. + + + + + Whether the court will accept electronic filing of documents for which the filer requests confidential or sealed treatment by the court. + + + + + Does court accept placing multiple lead documents in a single message + + + + + A Genericode list of valid codes for an element in a particular court to be substituted for an ECF element. The 'code' column of the codelist includes the allowed values. + + + + + A URI reference to a court-specific codelist defined in Genericode. + + + + + A schema that defines a court-specific data structure to be substituted for an ECF element.. + + + + + A URI reference to a court-specific extension. + + + + + The response to a request for a court's Court Policy. + + + + + Within Court Policy, the policies that are accessed by a person or organization developing an applications or configuring an application to interact with a court for the purpose of structuring the interactions with that court. This information is needed once and is not accessed dynamically while interacting with the court. + + + + + The name of an ECF element to be substituted by a court-specific codelist or extension. + + + + + The date on which a court code list or extension became or will become allowed. + + + + + The date on which a court code list or extension was or will be terminated. + + + + + Indicates whether fees may be required for some filings. + + + + + Indicates whether the e-filing system supports the GetFeesCalculation query. + + + + + Indicates whether the e-filing system supports the GetCaseList query. + + + + + Name of a major design element. + + + + + The maximum allowed attachment size, in bytes. Does not appear if there is no maximum. + + + + + Maximum allowed size of the Court Filing Message Stream, in bytes. Does not appear if there is no maximum. + + + + + The date on which a court's Court Policy was last revised. + + + + + The version of court policy reported by this message. Up to the court to define the format of this, and describe in human-readable court policy. + + + + + Symmetric or asymmetric keys used to encrypt and decrypt, or verify signed messages or documents exchanged with the court. + + + + + Within Court Policy, the policies that are accessed dynamically by applications interacting with a court. + + + + + A structure containing indicators that signal support by the e-filing system for each ECF case type. + + + + + A message profile approved for use by the OASIS LegalXML Member Section Electronic Court Filing Technical Committee that is supported by this court. + + true + + + + + + Name of an MDE operation. + + + + + A signature profile approved for use by the OASIS LegalXML Member Section Electronic Court Filing Technical Committee that is supported by this court. + + true + + + + + + Whether court allows attachments via remote URLs. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-DocumentQueryMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-DocumentQueryMessage.xsd new file mode 100644 index 000000000..1e86edeb8 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-DocumentQueryMessage.xsd @@ -0,0 +1,50 @@ + + + + + + DocumentQueryMessage + + true + + + + + + + + + + + A request for an electronic document in the court's official record. + + + + + + + + + + + + + A request for an electronic document in the court's official record. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-DocumentResponseMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-DocumentResponseMessage.xsd new file mode 100644 index 000000000..c3c14ef7a --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-DocumentResponseMessage.xsd @@ -0,0 +1,49 @@ + + + + + + DocumentResponseMessage + + true + + + + + + + + + + + The court's response to a request for an electronic document in the court's official record. + + + + + + + + + + + + The court's response to a request for an electronic document in the court's official record. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-FeesCalculationQueryMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-FeesCalculationQueryMessage.xsd new file mode 100644 index 000000000..a410b717d --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-FeesCalculationQueryMessage.xsd @@ -0,0 +1,49 @@ + + + + + + FeesCalculationQueryMessage + + true + + + + + + + + + + + This query is a request for the total amount of court fees required for filing of one or more documents in a case. + + + + + + + + + + + + This query is a request for the total amount of court fees required for filing of one or more documents in a case. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-FeesCalculationResponseMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-FeesCalculationResponseMessage.xsd new file mode 100644 index 000000000..0904be469 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-FeesCalculationResponseMessage.xsd @@ -0,0 +1,55 @@ + + + + + + FeesCalculationResponseMessage + + true + + + + + + + + + + + The response to a FeesCalculationQueryMessage, which may either be "0" indicating no fee is due, a currency amount indicating the fee due upon filing, or "unknown" indicating that the court's case management information system is unable to calculate the fee for the proposed filing. + + + + + + + + + + + + + A fee or price required to submit a document. + + + + + The response to a FeesCalculationQueryMessage, which may either be "0" indicating no fee is due, a currency amount indicating the fee due upon filing, or "unknown" indicating that the court's case management information system is unable to calculate the fee for the proposed filing. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-FilingListQueryMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-FilingListQueryMessage.xsd new file mode 100644 index 000000000..32408a4e5 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-FilingListQueryMessage.xsd @@ -0,0 +1,51 @@ + + + + + + FilingListQueryMessage + + true + + + + + + + + + + + This is query to get a list of filings by Filer Identification, Case ID, and/or time period. + + + + + + + + + + + + + + This is query to get a list of filings by Filer Identification, Case ID, or time period. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-FilingListResponseMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-FilingListResponseMessage.xsd new file mode 100644 index 000000000..e14dd3843 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-FilingListResponseMessage.xsd @@ -0,0 +1,67 @@ + + + + + + FilingListResponseMessage + + true + + + + + + + + + + + A court's response to a FilingListQueryMessage. + + + + + + + + + + + + A court's response to a FilingListQueryMessage. + + + + + + + + + + + + + A court's response to a FilingListQueryMessage. + + + + + A filing that matches the criteria in a FilingListQueryMessage. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-FilingStatusQueryMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-FilingStatusQueryMessage.xsd new file mode 100644 index 000000000..4abdd3b43 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-FilingStatusQueryMessage.xsd @@ -0,0 +1,49 @@ + + + + + + FilingStatusQueryMessage + + true + + + + + + + + + + + This is query to get a filing’s status by Filing Number. + + + + + + + + + + + + This is query to get a filing's status by Filer Identification, Case ID, or Filing Number. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-FilingStatusResponseMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-FilingStatusResponseMessage.xsd new file mode 100644 index 000000000..9715ca2a7 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-FilingStatusResponseMessage.xsd @@ -0,0 +1,51 @@ + + + + + + FilingStatusResponseMessage + + true + + + + + + + + + + + A court's response to a FilingStatusQueryMessage. + + + + + + + + + + + + + + A court's response to a FilingStatusQueryMessage. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-MessageReceiptMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-MessageReceiptMessage.xsd new file mode 100644 index 000000000..dd7c5bea9 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-MessageReceiptMessage.xsd @@ -0,0 +1,50 @@ + + + + + + MessageReceiptMessage + + true + + + + + + + + + + + A message returned synchronously to indicate receipt by an MDE of another message. The intent is that this will serve as the synchronous reply to all MDE operations that have an additional asynchronous callback. + + + + + + + + + + + + + A message returned synchronously to indicate receipt by an MDE of another message. The intent is that this will serve as the synchronous reply to all MDE operations that have an additional asynchronous callback. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-PaymentMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-PaymentMessage.xsd new file mode 100644 index 000000000..1e1bfcf93 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-PaymentMessage.xsd @@ -0,0 +1,59 @@ + + + + + + + + + + The payment submitted with a filing. The payment may consist of a fee for filing of the document(s) submitted, or for a fine or other payment due to the court. + + + + + + + + + + + + + A code for the reason why a filer does not have to pay an otherwise applicable payment. Allowable values set forth in Court Policy. Examples are in forma pauperis status granted or a fee waiver application submitted with the filing.. + + true + + + + + + Any text needed to support the exemption assertion (reference to a court order, etc.) + + + + + The payment submitted with a filing. The payment may consist of a fee for filing of the document(s) submitted, or for a fine or other payment due to the court. + + + + + Name of the payer of the FilingPayment. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-PaymentReceiptMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-PaymentReceiptMessage.xsd new file mode 100644 index 000000000..8e88384da --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-PaymentReceiptMessage.xsd @@ -0,0 +1,28 @@ + + + + + + + + + + A receipt to the payment submitted with a filing. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-RecordDocketingCallbackMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-RecordDocketingCallbackMessage.xsd new file mode 100644 index 000000000..73e9807ad --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-RecordDocketingCallbackMessage.xsd @@ -0,0 +1,45 @@ + + + + + + RecordDocketingCallbackMessage + + true + + + + + + + + + + + The message returned from the Court Record MDE to the Filing Review MDE when the functions of entering information onto the docket or register of actions and commiting a filed document(s) to the official court record have been completed, conveying the results of those functions. + + + + + + + + The message returned from the Court Record MDE to the Filing Review MDE when the functions of entering information onto the docket or register of actions and commiting a filed document(s) to the official court record have been completed, conveying the results of those functions. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-RecordDocketingMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-RecordDocketingMessage.xsd new file mode 100644 index 000000000..c92a0f5ee --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-RecordDocketingMessage.xsd @@ -0,0 +1,64 @@ + + + + + + RecordDocketingMessage + + true + + + + + + + + + + + Message resulting from clerk review and edit of a CoreFilingMessage. + + + + + + + + + + + + + + + + + Comments provided by the clerk to the court record system during review. + + + + + Message resulting from clerk review and edit of a CoreFilingMessage. + + + + + Instruction from the clerk to the court record to represent this case as "sealed." + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-ReviewFilingCallbackMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-ReviewFilingCallbackMessage.xsd new file mode 100644 index 000000000..644b34c6d --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-ReviewFilingCallbackMessage.xsd @@ -0,0 +1,45 @@ + + + + + + ReviewFilingCallbackMessage + + true + + + + + + + + + + + The asynchronous message from the Filing Review MDE to the Filing Assembly MDE conveying information concerning the court's actions on the documents submitted for filing in a CoreFilingMessage. + + + + + + + + The asynchronous message from the Filing Review MDE to the Filing Assembly MDE conveying information concerning the court's actions on the documents submitted for filing in a CoreFilingMessage. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-ServiceInformationQueryMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-ServiceInformationQueryMessage.xsd new file mode 100644 index 000000000..1f3bdb3ac --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-ServiceInformationQueryMessage.xsd @@ -0,0 +1,49 @@ + + + + + + ServiceInformationQueryMessage + + true + + + + + + + + + + + A message requesting information concerning the persons entitled to services of filings in a particular court case, together with the electronic addresses and message profiles of their Filing Assembly MDEs and their physical addresses if they are not currently using a Filing Assembly MDE. + + + + + + + + + + + + A message requesting information concerning the persons entitled to services of filings in a particular court case, together with the electronic addresses and message profiles of their Filing Assembly MDEs and their physical addresses if they are not currently using a Filing Assembly MDE. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-ServiceInformationResponseMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-ServiceInformationResponseMessage.xsd new file mode 100644 index 000000000..227c16cbc --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-ServiceInformationResponseMessage.xsd @@ -0,0 +1,55 @@ + + + + + + ServiceInformationResponseMessage + + true + + + + + + + + + + + The response to a serviceInformationQueryMessage, setting forth the requested information. + + + + + + + + + + + + + The response to a serviceInformationQueryMessage, setting forth the requested information. + + + + + The person or organization to be served in this case + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-ServiceReceiptMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-ServiceReceiptMessage.xsd new file mode 100644 index 000000000..66c599396 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/ECF-4.0-ServiceReceiptMessage.xsd @@ -0,0 +1,77 @@ + + + + + + ServiceReceiptMessage + + true + + + + + + + + + + + + + A synchronous response by a Filing Assembly MDE acknowledging receipt of a service message for one of its clients. + + + + + + + + + + + + A value describing the status of electronic service on a particular recipient. + + + + + + + + + + + + + A synchronous response by a Filing Assembly MDE acknowledging receipt of a service message for one of its clients. + + + + + A value describing the status of electronic service on a particular recipient. + + + + + Status of the service as determined by the system receiving the service. Allowable values defined in ECF-4.0-ValueLevelCode.gc. + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/UBL-CommonAggregateComponents-2.1.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/UBL-CommonAggregateComponents-2.1.xsd new file mode 100644 index 000000000..8e019a4b3 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/UBL-CommonAggregateComponents-2.1.xsd @@ -0,0 +1,36247 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ABIE + Activity Data Line. Details + This class links a Time Period, Measurement for the quantity involved, and to Collaborative Trade Item for the required product. + Activity Data Line + + + + + + + + + BBIE + Activity Data Line. Identifier + An identifier for the Activity Data Line. + 1 + Activity Data Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Activity Data Line. Supply Chain Activity Type Code. Code + A code used to identify an operational exception + 1 + Activity Data Line + Supply Chain Activity Type Code + Code + Code. Type + + + + + + + + + ASBIE + Activity Data Line. Buyer_ Customer Party. Customer Party + An association to the Buyer. + 0..1 + Activity Data Line + Buyer + Customer Party + Customer Party + + + + + + + + + ASBIE + Activity Data Line. Seller_ Supplier Party. Supplier Party + An association to the Seller. + 0..1 + Activity Data Line + Seller + Supplier Party + Supplier Party + + + + + + + + + ASBIE + Activity Data Line. Activity_ Period. Period + An association to Period in which the activity is realized. + 0..1 + Activity Data Line + Activity + Period + Period + + + + + + + + + ASBIE + Activity Data Line. Activity Origin_ Location. Location + An association to a Location (the place where the movement of goods are observed or where the goods are moved from). + 1 + Activity Data Line + Activity Origin + Location + Location + + + + + + + + + ASBIE + Activity Data Line. Activity Final_ Location. Location + An association to a Location (the place where the goods are moved to). + 0..1 + Activity Data Line + Activity Final + Location + Location + + + + + + + + + ASBIE + Activity Data Line. Sales Item + An association to one or more Sales Item. + 1..n + Activity Data Line + Sales Item + Sales Item + + + + + + + + + + + ABIE + Activity Property. Details + Information about specific Activity Properties. + Activity Property + + + + + + + + + BBIE + Activity Property. Name + The name of the Activity Property. + 1 + Activity Property + Name + Name + Name. Type + + + + + + + + + BBIE + Activity Property. Value. Text + The Activity Property value. + 1 + Activity Property + Value + Text + Text. Type + + + + + + + + + + + ABIE + Address. Details + Information about a structured address. + Address + + + + + + + + + BBIE + Address. Identifier + An identifier for a specific address within a scheme of registered addresses. + 0..1 + Address + Identifier + Identifier + Identifier. Type + DetailsKey + + + + + + + + + BBIE + Address. Address Type Code. Code + A code specifying the type of this address, such as business address or home address. + 0..1 + Address + Address Type Code + Code + Code. Type + + + + + + + + + BBIE + Address. Address Format Code. Code + A code specifying the format of this address. + 0..1 + Address + Address Format Code + Code + Code. Type + + + + + + + + + BBIE + Address. Postbox. Text + A post office box number. + 0..1 + Address + Postbox + Text + Text. Type + PostBox, PO Box + 123 + + + + + + + + + BBIE + Address. Floor. Text + An addressable floor of a building. + 0..1 + Address + Floor + Text + Text. Type + SubPremiseNumber + 30 + + + + + + + + + BBIE + Address. Room. Text + A room, suite, or apartment of a building. + 0..1 + Address + Room + Text + Text. Type + SubPremiseNumber + Reception + + + + + + + + + BBIE + Address. Street Name. Name + The name of a street. + 0..1 + Address + Street Name + Name + Name. Type + Thoroughfare + Kwun Tong Road + + + + + + + + + BBIE + Address. Additional_ Street Name. Name + An additional name of a street used to further specify the street name. + 0..1 + Address + Additional + Street Name + Name + Name. Type + Thoroughfare + Cnr Aberdeen Road + + + + + + + + + BBIE + Address. Block Name. Name + The block name, expressed as text, for an area surrounded by streets and usually containing several buildings for this address. + 0..1 + Address + Block Name + Name + Name. Type + Seabird + + + + + + + + + BBIE + Address. Building Name. Name + The name of a building. + 0..1 + Address + Building Name + Name + Name. Type + BuildingName + Plot 421 + + + + + + + + + BBIE + Address. Building Number. Text + The number of a building. + 0..1 + Address + Building Number + Text + Text. Type + PremiseNumber + 388 + + + + + + + + + BBIE + Address. Inhouse_ Mail. Text + A specific location within a building. + 0..1 + Address + Inhouse + Mail + Text + Text. Type + MailStop + + + + + + + + + BBIE + Address. Department. Text + An addressable department of an organization. + 0..1 + Address + Department + Text + Text. Type + Department + Accounts Payable + + + + + + + + + BBIE + Address. Mark Attention. Text + The name, expressed as text, of a person or department in the organization to whom incoming mail is marked with words such as for the attention of or FAO or ATTN for this address. + 0..1 + Address + Mark Attention + Text + Text. Type + + + + + + + + + BBIE + Address. Mark Care. Text + The name, expressed as text, of a person or organization at this address to whom incoming mail is marked with words such as care of or C/O . + 0..1 + Address + Mark Care + Text + Text. Type + + + + + + + + + BBIE + Address. Plot Identification. Text + The textual expression of the unique identifier for the piece of land on which this address is located such as a plot number. + 0..1 + Address + Plot Identification + Text + Text. Type + + + + + + + + + BBIE + Address. City Subdivision Name. Name + A name, expressed as text, of a subdivision of a city for this address, for example, a district or borough. + 0..1 + Address + City Subdivision Name + Name + Name. Type + + + + + + + + + BBIE + Address. City Name. Name + The name of a city, town, or village. + 0..1 + Address + City Name + Name + Name. Type + LocalityName + Hong Kong + + + + + + + + + BBIE + Address. Postal_ Zone. Text + The identifier for an addressable group of properties according to the relevant national postal service, such as a ZIP code or Post Code. + 0..1 + Address + Postal + Zone + Text + Text. Type + PostalCodeNumber + SW11 4EW 2500 GG + + + + + + + + + BBIE + Address. Country Subentity. Text + A territorial division of a country, such as a county or state. + 0..1 + Address + Country Subentity + Text + Text. Type + AdministrativeArea, State, Country, Shire, Canton + Florida , Tamilnadu + + + + + + + + + BBIE + Address. Country Subentity Code. Code + A territorial division of a country, such as a county or state, expressed as a code. + 0..1 + Address + Country Subentity Code + Code + Code. Type + AdministrativeAreaCode, State Code + + + + + + + + + BBIE + Address. Region. Text + An addressable region or group of countries. + 0..1 + Address + Region + Text + Text. Type + LocalityName, Economic Zone + European Union + + + + + + + + + BBIE + Address. District. Text + A geographical division of a country. + 0..1 + Address + District + Text + Text. Type + LocalityName, Area + East Coast + + + + + + + + + BBIE + Address. Timezone Offset. Text + For the time zone in which the address is situated, the measure of time offset from Universal Coordinated Time (UTC). + 0..1 + Address + Timezone Offset + Text + Text. Type + +8:00 -3:00 + + + + + + + + + ASBIE + Address. Address Line + An association to Address Line. + 0..n + Address + Address Line + Address Line + + + + + + + + + ASBIE + Address. Country + An association to Country. + 0..1 + Address + Country + Country + + + + + + + + + ASBIE + Address. Location Coordinate + An association to Location Coordinate. + 0..n + Address + Location Coordinate + Location Coordinate + + + + + + + + + + + ABIE + Address Line. Details + Information about a line of address expressed as unstructured text. + Address Line + + + + + + + + + BBIE + Address Line. Line. Text + A line of address expressed as unstructured text. + 1 + Address Line + Line + Text + Text. Type + 123 Standard Chartered Tower + + + + + + + + + + + ABIE + Air Transport. Details + Information related to an aircraft. + Air Transport + + + + + + + + + BBIE + Air Transport. Aircraft Identifier. Identifier + Identifies a specific aircraft. + 1 + Air Transport + Aircraft Identifier + Identifier + Identifier. Type + + + + + + + + + + + ABIE + Allowance Charge. Details + Information about a charge or discount price component. + Allowance Charge + + + + + + + + + BBIE + Allowance Charge. Identifier + Identifies an Allowance Charge. + 0..1 + Allowance Charge + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Allowance Charge. Charge_ Indicator. Indicator + Indicates whether the Allowance Charge is a charge (true) or a discount (false). + 1 + Allowance Charge + Charge + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Allowance Charge. Allowance Charge Reason Code. Code + The reason for the Allowance Charge, expressed as a code. + 0..1 + Allowance Charge + Allowance Charge Reason Code + Code + Allowance Charge Reason_ Code. Type + + + + + + + + + BBIE + Allowance Charge. Allowance Charge_ Reason. Text + The reason for the Allowance Charge, expressed as text. + 0..1 + Allowance Charge + Allowance Charge + Reason + Text + Text. Type + + + + + + + + + BBIE + Allowance Charge. Multiplier_ Factor. Numeric + The factor applied to the Base Amount to calculate the Allowance Charge. + 0..1 + Allowance Charge + Multiplier + Factor + Numeric + Numeric. Type + 0.20 + + + + + + + + + BBIE + Allowance Charge. Prepaid_ Indicator. Indicator + Indicates whether the Allowance Charge is prepaid (true) or not (false). + 0..1 + Allowance Charge + Prepaid + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Allowance Charge. Sequence. Numeric + Identifies the numerical order sequence in which Allowance Charges are calculated when multiple Allowance Charges apply. If all Allowance Charges apply to the same Base Amount, SequenceNumeric will be 1 for all Allowance Charges. + 0..1 + Allowance Charge + Sequence + Numeric + Numeric. Type + 1, 2, 3, 4, etc. + + + + + + + + + BBIE + Allowance Charge. Amount + The Allowance Charge amount. + 1 + Allowance Charge + Amount + Amount + Amount. Type + 35,23 + + + + + + + + + BBIE + Allowance Charge. Base_ Amount. Amount + The amount to which the MultiplierFactorNumeric is applied to calculate the Allowance Charge. + 0..1 + Allowance Charge + Base + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Allowance Charge. Accounting Cost Code. Code + The buyer s accounting code as applied to the Allowance Charge. + 0..1 + Allowance Charge + Accounting Cost Code + Code + Code. Type + + + + + + + + + BBIE + Allowance Charge. Accounting Cost. Text + The buyer s accounting cost centre as applied to the Allowance Charge expressed as text. + 0..1 + Allowance Charge + Accounting Cost + Text + Text. Type + + + + + + + + + BBIE + Allowance Charge. Per Unit_ Amount. Amount + When this element is used would mean that the |Amount| of the |Allowance Charge| is equal to the PerUnitAmount * the Quantity of Items at the specific line level or, when used at the header level, the total number of items. + 0..1 + Allowance Charge + Per Unit + Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Allowance Charge. Tax Category + An association to Tax Category. + 0..n + Allowance Charge + Tax Category + Tax Category + + + + + + + + + ASBIE + Allowance Charge. Tax Total + An association to Tax Total. + 0..1 + Allowance Charge + Tax Total + Tax Total + + + + + + + + + ASBIE + Allowance Charge. Payment Means + An association to Payment Means. + 0..n + Allowance Charge + Payment Means + Payment Means + + + + + + + + + + + ABIE + Appeal Terms. Details + Information about the terms to present an appeal. + Appeal Terms + + + + + + + + + BBIE + Appeal Terms. Description. Text + Textual description to specifies the terms of the appeal. + 0..n + Appeal Terms + Description + Text + Text. Type + + + + + + + + + ASBIE + Appeal Terms. Presentation_ Period. Period + The time where an appeal can be presented. + 0..1 + Appeal Terms + Presentation + Period + Period + + + + + + + + + ASBIE + Appeal Terms. Appeal Information_ Party. Party + A party that has appeal information. + 0..1 + Appeal Terms + Appeal Information + Party + Party + + + + + + + + + ASBIE + Appeal Terms. Appeal Receiver_ Party. Party + A party to whom appeals should be presented. + 0..1 + Appeal Terms + Appeal Receiver + Party + Party + + + + + + + + + ASBIE + Appeal Terms. Mediation_ Party. Party + A party that can mediate when an appeal is presented. + 0..1 + Appeal Terms + Mediation + Party + Party + + + + + + + + + + + ABIE + Attachment. Details + Information about an attached document. An attachment can be referred to externally (with the URI element) or internally (with the MIME reference element) or contained within the document itself (with the EmbeddedDocument element). + Attachment + + + + + + + + + BBIE + Attachment. Embedded_ Document. Binary Object + Contains an embedded document as a BLOB (binary large object). + 0..1 + Attachment + Embedded + Document + Binary Object + Binary Object. Type + + + + + + + + + ASBIE + Attachment. External Reference + An attached document, externally referred to, referred to in the MIME location, or embedded. + 0..1 + Attachment + External Reference + External Reference + + + + + + + + + + + ABIE + Auction Terms. Details + Terms to be fulfilled by the tenderers if an auction is going to be executed before the awarding. + Auction Terms + + + + + + + + + BBIE + Auction Terms. Auction_ Constraint. Indicator + An indicator that states the use of electronic auctions during the awarding of this tendering process + 0..1 + Auction Terms + Auction + Constraint + Indicator + Indicator. Type + + + + + + + + + BBIE + Auction Terms. Justification_ Description. Text + A textual description justifying the use of an auction for this tendering process. + 0..n + Auction Terms + Justification + Description + Text + Text. Type + + + + + + + + + BBIE + Auction Terms. Description. Text + Textual description of the information available for tenderers during the auction + 0..n + Auction Terms + Description + Text + Text. Type + + + + + + + + + BBIE + Auction Terms. Process_ Description. Text + Textual description of the auction process + 0..n + Auction Terms + Process + Description + Text + Text. Type + + + + + + + + + BBIE + Auction Terms. Conditions_ Description. Text + Textual description of the conditions under which the tenderers will be able to bid + 0..n + Auction Terms + Conditions + Description + Text + Text. Type + + + + + + + + + BBIE + Auction Terms. Electronic Device_ Description. Text + Electronic device and connection technical specifications used for the auction + 0..n + Auction Terms + Electronic Device + Description + Text + Text. Type + + + + + + + + + BBIE + Auction Terms. Auction_ URI. Identifier + URI for the used electronic device. + 0..1 + Auction Terms + Auction + URI + Identifier + Identifier. Type + + + + + + + + + + + ABIE + Awarding Criteria. Details + Criteria defined by a contracting party that will be taken into account when awarding a contract. + Awarding Criteria + + + + + + + + + BBIE + Awarding Criteria. Identifier + The unique identification for this awarding criteria + 0..1 + Awarding Criteria + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Awarding Criteria. Awarding Criteria Type Code. Code + Code that defines the awarding criteria. An awarding criteria can be objective, when it can be evaluated following a formula, or subjective, when a human analysis is required. + 0..1 + Awarding Criteria + Awarding Criteria Type Code + Code + Code. Type + + + + + + + + + BBIE + Awarding Criteria. Description. Text + Textual description of the awarding criteria. + 0..n + Awarding Criteria + Description + Text + Text. Type + + + + + + + + + BBIE + Awarding Criteria. Weight Numeric. Numeric + Specific weight assigned to this awarding criteria. + 0..1 + Awarding Criteria + Weight Numeric + Numeric + Numeric. Type + + + + + + + + + BBIE + Awarding Criteria. Weight. Text + Textual description of the assigned weight for this awarding criteria. + 0..n + Awarding Criteria + Weight + Text + Text. Type + + + + + + + + + BBIE + Awarding Criteria. Calculation Expression. Text + Textual description of the mathematical expression that will be used to evaluate this criteria. + 0..n + Awarding Criteria + Calculation Expression + Text + Text. Type + + + + + + + + + BBIE + Awarding Criteria. Calculation Expression Code. Code + Coded description of the mathematical expression that will be used to evaluate this criteria. + 0..1 + Awarding Criteria + Calculation Expression Code + Code + Code. Type + + + + + + + + + BBIE + Awarding Criteria. Minimum_ Quantity. Quantity + Minimum quantity for a specified or expected awarding criteria. + 0..1 + Awarding Criteria + Minimum + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Awarding Criteria. Maximum_ Quantity. Quantity + Maximum quantity for a specified or expected awarding criteria. + 0..1 + Awarding Criteria + Maximum + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Awarding Criteria. Minimum_ Amount. Amount + Minimum amount for a specified or expected awarding criteria. + 0..1 + Awarding Criteria + Minimum + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Awarding Criteria. Maximum_ Amount. Amount + Maximum amount for a specified or expected awarding criteria. + 0..1 + Awarding Criteria + Maximum + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Awarding Criteria. Minimum Improvement Bid. Text + Textual description of the minimum improvement bid for this awarding criteria when an auction is used. + 0..n + Awarding Criteria + Minimum Improvement Bid + Text + Text. Type + + + + + + + + + ASBIE + Awarding Criteria. Subordinate_ Awarding Criteria. Awarding Criteria + Subcriteria for this awarding criteria + 0..n + Awarding Criteria + Subordinate + Awarding Criteria + Awarding Criteria + + + + + + + + + + + ABIE + Awarding Criteria Response. Details + Response for an awaring criteria defined by the contracting party. + Awarding Criteria Response + + + + + + + + + BBIE + Awarding Criteria Response. Identifier + The unique identification for this awarding criteria response. + 0..1 + Awarding Criteria Response + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Awarding Criteria Response. Awarding Criteria Identifier. Identifier + Identifier for the referred awarding criteria. + 0..1 + Awarding Criteria Response + Awarding Criteria Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Awarding Criteria Response. Awarding Criteria_ Description. Text + Textual description of the awarding criteria. + 0..n + Awarding Criteria Response + Awarding Criteria + Description + Text + Text. Type + + + + + + + + + BBIE + Awarding Criteria Response. Description. Text + Textual description of the awarding criteria response. + 0..n + Awarding Criteria Response + Description + Text + Text. Type + + + + + + + + + BBIE + Awarding Criteria Response. Quantity + Quantity for this awarding criteria. + 0..1 + Awarding Criteria Response + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Awarding Criteria Response. Amount + Amount for this awarding criteria. + 0..1 + Awarding Criteria Response + Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Awarding Criteria Response. Subordinate_ Awarding Criteria Response. Awarding Criteria Response + Subcriteria response for this awarding criteria response. + 0..n + Awarding Criteria Response + Subordinate + Awarding Criteria Response + Awarding Criteria Response + + + + + + + + + + + ABIE + Awarding Terms. Details + Information about the awarding terms of a contract. + Awarding Terms + + + + + + + + + BBIE + Awarding Terms. Weighting Algorithm Code. Code + Code that defines the weighting algorithm for the awarding criteria. + 0..1 + Awarding Terms + Weighting Algorithm Code + Code + Code. Type + + + + + + + + + BBIE + Awarding Terms. Description. Text + Textual general description of the awarding terms. + 0..n + Awarding Terms + Description + Text + Text. Type + + + + + + + + + BBIE + Awarding Terms. Technical Committee_ Description. Text + Textual description of the experts committee evaluating the subjective criteria. + 0..n + Awarding Terms + Technical Committee + Description + Text + Text. Type + + + + + + + + + BBIE + Awarding Terms. Low Tenders_ Description. Text + Textual description of the low tenders exclusion criteria. + 0..n + Awarding Terms + Low Tenders + Description + Text + Text. Type + + + + + + + + + ASBIE + Awarding Terms. Awarding Criteria + A set of defined criteria for awarding this project. + 0..n + Awarding Terms + Awarding Criteria + Awarding Criteria + + + + + + + + + ASBIE + Awarding Terms. Technical Committee_ Person. Person + An association to one or more persons involved in the technical committee to evaluate the subjective criteria. + 0..n + Awarding Terms + Technical Committee + Person + Person + + + + + + + + + + + ABIE + Billing Reference. Details + Information directly relating to a related document. + Billing Reference + + + + + + + + + ASBIE + Billing Reference. Invoice_ Document Reference. Document Reference + An associative reference to Invoice. + 0..1 + Billing Reference + Invoice + Document Reference + Document Reference + + + + + + + + + ASBIE + Billing Reference. Self Billed Invoice_ Document Reference. Document Reference + An associative reference to Self Billed Invoice. + 0..1 + Billing Reference + Self Billed Invoice + Document Reference + Document Reference + + + + + + + + + ASBIE + Billing Reference. Credit Note_ Document Reference. Document Reference + An associative reference to Credit Note. + 0..1 + Billing Reference + Credit Note + Document Reference + Document Reference + + + + + + + + + ASBIE + Billing Reference. Self Billed Credit Note_ Document Reference. Document Reference + An associative reference to Self Billed Credit Note. + 0..1 + Billing Reference + Self Billed Credit Note + Document Reference + Document Reference + + + + + + + + + ASBIE + Billing Reference. Debit Note_ Document Reference. Document Reference + An associative reference to Debit Note. + 0..1 + Billing Reference + Debit Note + Document Reference + Document Reference + + + + + + + + + ASBIE + Billing Reference. Reminder_ Document Reference. Document Reference + An associative reference to Reminder Document Reference + 0..1 + Billing Reference + Reminder + Document Reference + Document Reference + + + + + + + + + ASBIE + Billing Reference. Additional_ Document Reference. Document Reference + An associative reference to Additional Document. + 0..1 + Billing Reference + Additional + Document Reference + Document Reference + + + + + + + + + ASBIE + Billing Reference. Billing Reference Line + An association to Billing Reference Line. + 0..n + Billing Reference + Billing Reference Line + Billing Reference Line + + + + + + + + + + + ABIE + Billing Reference Line. Details + Information about the reference to a Billing line. + Billing Reference Line + + + + + + + + + BBIE + Billing Reference Line. Identifier + An identifier for the Billing Line. + 1 + Billing Reference Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Billing Reference Line. Amount + The amount of the Billing Line, including Allowance Charges but net of taxes. + 0..1 + Billing Reference Line + Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Billing Reference Line. Allowance Charge + An association to Allowance Charge. + 0..n + Billing Reference Line + Allowance Charge + Allowance Charge + + + + + + + + + + + ABIE + Branch. Details + Information about a branch or division of an organization. + Branch + + + + + + + + + BBIE + Branch. Identifier + An identifier for a branch or division of an organization. + 0..1 + Branch + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Branch. Name + The name of a branch or division of an organization. + 0..1 + Branch + Name + Name + Name. Type + + + + + + + + + ASBIE + Branch. Financial Institution + An association to Financial Institution. + 0..1 + Branch + Financial Institution + Financial Institution + + + + + + + + + ASBIE + Branch. Address + An association to Address. + 0..1 + Branch + Address + Address + + + + + + + + + + + ABIE + Budget Account. Details + Information about the budget account. + Budget Account + + + + + + + + + BBIE + Budget Account. Identifier + Identifier for the buget account. + 0..1 + Budget Account + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Budget Account. Budget Year. Numeric + The year for this budget account. + 0..1 + Budget Account + Budget Year + Numeric + Numeric. Type + + + + + + + + + ASBIE + Budget Account. Required_ Classification Scheme. Classification Scheme + An association to required classification categories for budget account + 0..1 + Budget Account + Required + Classification Scheme + Classification Scheme + + + + + + + + + + + ABIE + Budget Account Line. Details + Information about a Budget Account Line + Budget Account Line + + + + + + + + + BBIE + Budget Account Line. Identifier + Identifies a Budget Account Line + 0..1 + Budget Account Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Budget Account Line. Total_ Amount. Amount + Total amount for this Budget Account Line + 0..1 + Budget Account Line + Total + Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Budget Account Line. Budget Account + An association to budget account for this Budget Account Line. + 0..n + Budget Account Line + Budget Account + Budget Account + + + + + + + + + + + ABIE + Budget Amount. Details + Monetary amounts budgeted for the project. + Budget Amount + + + + + + + + + BBIE + Budget Amount. Estimated_ Overall Contract. Amount + The estimated overall amount for the whole project. + 0..1 + Budget Amount + Estimated + Overall Contract + Amount + Amount. Type + + + + + + + + + BBIE + Budget Amount. Total_ Amount. Amount + The monetary value of the total budget which includes net amount, taxes, and material and instalment costs for this procurement project. + 0..1 + Budget Amount + Total + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Budget Amount. Tax Exclusive Amount. Amount + The monetary value of the net budget for this procurement project. + 0..1 + Budget Amount + Tax Exclusive Amount + Amount + Amount. Type + + + + + + + + + BBIE + Budget Amount. Minimum_ Amount. Amount + The total tax amount for the procurement project. + 0..1 + Budget Amount + Minimum + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Budget Amount. Monetary Scope. Text + Textual description of the monetary scope. + 0..n + Budget Amount + Monetary Scope + Text + Text. Type + + + + + + + + + BBIE + Budget Amount. Average_ Subsequent Contract. Amount + The average amount for the subsequent contracts in the framework agreement. + 0..1 + Budget Amount + Average + Subsequent Contract + Amount + Amount. Type + + + + + + + + + ASBIE + Budget Amount. Applicable_ Tax Category. Tax Category + List of taxes that apply to the project + 0..n + Budget Amount + Applicable + Tax Category + Tax Category + + + + + + + + + + + ABIE + Capability. Details + Capability of an economic operator. + Capability + + + + + + + + + BBIE + Capability. Capability Type Code. Code + Code that defines the financial or technical capability such as total revenue, qualified staff, etc + 0..1 + Capability + Capability Type Code + Code + Code. Type + + + + + + + + + BBIE + Capability. Description. Text + Textual description of the capability. + 0..n + Capability + Description + Text + Text. Type + + + + + + + + + BBIE + Capability. Value. Amount + Amount for that capability. + 0..1 + Capability + Value + Amount + Amount. Type + + + + + + + + + BBIE + Capability. Value_ Quantity. Quantity + Quantity for that capability. + 0..1 + Capability + Value + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Capability. Evidence Supplied. Identifier + An ID reference to the Evidence that justifies this capability. + 0..n + Capability + Evidence Supplied + Identifier + Identifier. Type + + + + + + + + + ASBIE + Capability. Validity_ Period. Period + Period of time that capability has been valid. + 0..1 + Capability + Validity + Period + Period + + + + + + + + + + + ABIE + Card Account. Details + Information about a credit card, debit card, or charge card. + Card Account + + + + + + + + + BBIE + Card Account. Primary_ Account Number. Identifier + The card number; the Primary Account Number (PAN). + 1 + Card Account + Primary + Account Number + Identifier + Identifier. Type + 4558 XXXX XXXX XXXX (a real card number) + + + + + + + + + BBIE + Card Account. Network. Identifier + The card network provider. + 1 + Card Account + Network + Identifier + Identifier. Type + VISA, MasterCard, American Express + + + + + + + + + BBIE + Card Account. Card Type Code. Code + The type of card. + 0..1 + Card Account + Card Type Code + Code + Code. Type + Debit Card, Credit Card, Procurement Card + + + + + + + + + BBIE + Card Account. Validity Start Date. Date + The date from which the card is valid. + 0..1 + Card Account + Validity Start Date + Date + Date. Type + + + + + + + + + BBIE + Card Account. Expiry Date. Date + The date up to which the card is valid. + 0..1 + Card Account + Expiry Date + Date + Date. Type + + + + + + + + + BBIE + Card Account. Issuer. Identifier + The identifier for the card issuer. + 0..1 + Card Account + Issuer + Identifier + Identifier. Type + + + + + + + + + BBIE + Card Account. Issue Number. Identifier + The card issue number. + 0..1 + Card Account + Issue Number + Identifier + Identifier. Type + + + + + + + + + BBIE + Card Account. CV2. Identifier + The Card Verification Value. + 0..1 + Card Account + CV2 + Identifier + Identifier. Type + + + + + + + + + BBIE + Card Account. Card Chip Code. Code + The distinction between CHIP and MAG STRIPE cards. + 0..1 + Card Account + Card Chip Code + Code + Chip_ Code. Type + + + + + + + + + BBIE + Card Account. Chip_ Application. Identifier + An identifier for the application (AID) on a chip card that provides the information quoted. + 0..1 + Card Account + Chip + Application + Identifier + Identifier. Type + + + + + + + + + BBIE + Card Account. Holder. Name + The name of the cardholder. + 0..1 + Card Account + Holder + Name + Name. Type + + + + + + + + + + + ABIE + Catalogue Item Specification Update Line. Details + Details of Catalogue Line Item Specification. + Catalogue Item Specification Update Line + + + + + + + + + BBIE + Catalogue Item Specification Update Line. Identifier + A unique instance identifier for the line in this Catalogue document. + 1 + Catalogue Item Specification Update Line + Identifier + Identifier + Identifier. Type + 1 + + + + + + + + + ASBIE + Catalogue Item Specification Update Line. Contractor_ Customer Party. Customer Party + The Customer Party responsible for the contract to which the Catalogue relates. + 0..1 + Catalogue Item Specification Update Line + Contractor + Customer Party + Customer Party + + + + + + + + + ASBIE + Catalogue Item Specification Update Line. Seller_ Supplier Party. Supplier Party + An association to the Seller of the item. + 0..1 + Catalogue Item Specification Update Line + Seller + Supplier Party + Supplier Party + + + + + + + + + ASBIE + Catalogue Item Specification Update Line. Item + An association to Item itself. + 1 + Catalogue Item Specification Update Line + Item + Item + + + + + + + + + + + ABIE + Catalogue Line. Details + The basic element of Catalogue; something that can be bought. + Catalogue Line + + + + + + + + + BBIE + Catalogue Line. Identifier + A unique instance identifier for the line in this Catalogue document. + 1 + Catalogue Line + Identifier + Identifier + Identifier. Type + 1 + + + + + + + + + BBIE + Catalogue Line. Action Code. Code + Code indicating the action required for this item to synchronize with external repositories. + 0..1 + Catalogue Line + Action Code + Code + Code. Type + Replace , Update , Delete , Add + + + + + + + + + BBIE + Catalogue Line. Life Cycle Status Code. Code + Code indicating availability of this line. + 0..1 + Catalogue Line + Life Cycle Status Code + Code + Code. Type + new - announcement only , new and available , deleted - announcement only + + + + + + + + + BBIE + Catalogue Line. Contract Subdivision. Text + Identifies a subdivision of a contract or tender. + 0..1 + Catalogue Line + Contract Subdivision + Text + Text. Type + Installation , Phase One , Support and Maintenance + + + + + + + + + BBIE + Catalogue Line. Note. Text + Free-text note used for non-structured information about the line in the specific Catalogue document (intended to be human readable). + 0..n + Catalogue Line + Note + Text + Text. Type + + + + + + + + + BBIE + Catalogue Line. Orderable_ Indicator. Indicator + Indicates whether the line is orderable (that is, not just for information only). + 0..1 + Catalogue Line + Orderable + Indicator + Indicator + Indicator. Type + TRUE means orderable, FALSE means not orderable + + + + + + + + + BBIE + Catalogue Line. Orderable_ Unit. Text + The unit that can be ordered. + 0..1 + Catalogue Line + Orderable + Unit + Text + Text. Type + + + + + + + + + BBIE + Catalogue Line. Content Unit. Quantity + The quantity of the order unit of measure of the line. + 0..1 + Catalogue Line + Content Unit + Quantity + Quantity. Type + If order unit measure identifier is each , then content unit quantity is 1 . + + + + + + + + + BBIE + Catalogue Line. Order Quantity Increment. Numeric + The number of items that can set the order quantity increments. + 0..1 + Catalogue Line + Order Quantity Increment + Numeric + Numeric. Type + + + + + + + + + BBIE + Catalogue Line. Minimum_ Order Quantity. Quantity + The minimum amount of items that can be ordered. + 0..1 + Catalogue Line + Minimum + Order Quantity + Quantity + Quantity. Type + 10 boxes + + + + + + + + + BBIE + Catalogue Line. Maximum_ Order Quantity. Quantity + The maximum amount of items that can be ordered. + 0..1 + Catalogue Line + Maximum + Order Quantity + Quantity + Quantity. Type + 1 tonne + + + + + + + + + BBIE + Catalogue Line. Warranty_ Information. Text + Information regarding the warranty for the good or service. Warranty may be provided by any Party (can be described in the association to Warranty Party). + 0..n + Catalogue Line + Warranty + Information + Text + Text. Type + Unless specified otherwise and in addition to any rights the Customer may have under statute, Dell warrants to the Customer that Dell branded Products (excluding third party products and software), will be free from defects in materials and workmanship affecting normal use for a period of one year from invoice date ( Standard Warranty ). + + + + + + + + + BBIE + Catalogue Line. Pack Level Code. Code + The level of packaging involved. + 0..1 + Catalogue Line + Pack Level Code + Code + Code. Type + Consumer Unit, Trading Unit + level 2 , Group 4 + + + + + + + + + ASBIE + Catalogue Line. Contractor_ Customer Party. Customer Party + The Customer Party responsible for the contract to which the Catalogue relates. + 0..1 + Catalogue Line + Contractor + Customer Party + Customer Party + + + + + + + + + ASBIE + Catalogue Line. Seller_ Supplier Party. Supplier Party + An association to Seller of the item. + 0..1 + Catalogue Line + Seller + Supplier Party + Supplier Party + + + + + + + + + ASBIE + Catalogue Line. Warranty_ Party. Party + The party responsible for the Warranty. + 0..1 + Catalogue Line + Warranty + Party + Party + + + + + + + + + ASBIE + Catalogue Line. Warranty Validity_ Period. Period + The period for which the Warranty is valid. + 0..1 + Catalogue Line + Warranty Validity + Period + Period + + + + + + + + + ASBIE + Catalogue Line. Line Validity_ Period. Period + The period for which the Catalogue Line is valid. + 0..1 + Catalogue Line + Line Validity + Period + Period + + + + + + + + + ASBIE + Catalogue Line. Item Comparison + An association to comparative details for this Item. + 0..n + Catalogue Line + Item Comparison + Item Comparison + + + + + + + + + ASBIE + Catalogue Line. Component_ Related Item. Related Item + An association that describes any catalogue items that may be components of this Item. + 0..n + Catalogue Line + Component + Related Item + Related Item + + + + + + + + + ASBIE + Catalogue Line. Accessory_ Related Item. Related Item + An association that describes any catalogue items that may be optional accessories to this Item. + 0..n + Catalogue Line + Accessory + Related Item + Related Item + + + + + + + + + ASBIE + Catalogue Line. Required_ Related Item. Related Item + An association that describes any catalogue items that may be required for this Item. + 0..n + Catalogue Line + Required + Related Item + Related Item + + + + + + + + + ASBIE + Catalogue Line. Replacement_ Related Item. Related Item + An association that describes any catalogue items that may be replacements for this Item. + 0..n + Catalogue Line + Replacement + Related Item + Related Item + + + + + + + + + ASBIE + Catalogue Line. Complementary_ Related Item. Related Item + An association that describes any catalogue items that may complement this Item. + 0..n + Catalogue Line + Complementary + Related Item + Related Item + + + + + + + + + ASBIE + Catalogue Line. Required_ Item Location Quantity. Item Location Quantity + An association to the description of properties related to locations and quantities of the Item. + 0..n + Catalogue Line + Required + Item Location Quantity + Item Location Quantity + + + + + + + + + ASBIE + Catalogue Line. Document Reference + An association to Document Reference. + 0..n + Catalogue Line + Document Reference + Document Reference + + + + + + + + + ASBIE + Catalogue Line. Item + An association to the Item itself. + 1 + Catalogue Line + Item + Item + + + + + + + + + ASBIE + Catalogue Line. Keyword_ Item Property. Item Property + Associates the catalogue line with a set of keyword related to the item. + 0..n + Catalogue Line + Keyword + Item Property + Item Property + + + + + + + + + + + ABIE + Catalogue Pricing Update Line. Details + Details of Catalogue Line Pricing. + Catalogue Pricing Update Line + + + + + + + + + BBIE + Catalogue Pricing Update Line. Identifier + A unique instance identifier for the line in this Catalogue document. + 1 + Catalogue Pricing Update Line + Identifier + Identifier + Identifier. Type + 1 + + + + + + + + + ASBIE + Catalogue Pricing Update Line. Contractor_ Customer Party. Customer Party + The Customer Party responsible for the contract to which the Catalogue relates. + 0..1 + Catalogue Pricing Update Line + Contractor + Customer Party + Customer Party + + + + + + + + + ASBIE + Catalogue Pricing Update Line. Seller_ Supplier Party. Supplier Party + An association to the Seller of the Item. + 0..1 + Catalogue Pricing Update Line + Seller + Supplier Party + Supplier Party + + + + + + + + + ASBIE + Catalogue Pricing Update Line. Required_ Item Location Quantity. Item Location Quantity + An association to the description of properties related to locations and quantities of the item. + 0..n + Catalogue Pricing Update Line + Required + Item Location Quantity + Item Location Quantity + + + + + + + + + + + ABIE + Catalogue Reference. Details + A reference to a Catalogue. + Catalogue Reference + + + + + + + + + BBIE + Catalogue Reference. Identifier + Identifies a reference to a Catalogue document. + 1 + Catalogue Reference + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Catalogue Reference. UUID. Identifier + A universally unique identifier for an instance of this ABIE. + 0..1 + Catalogue Reference + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Catalogue Reference. Issue Date. Date + The date when the Catalogue was issued. + 0..1 + Catalogue Reference + Issue Date + Date + Date. Type + + + + + + + + + BBIE + Catalogue Reference. Issue Time. Time + The time when the Catalogue was issued. + 0..1 + Catalogue Reference + Issue Time + Time + Time. Type + + + + + + + + + BBIE + Catalogue Reference. Revision Date. Date + The date on which the information in the Catalogue was revised. + 0..1 + Catalogue Reference + Revision Date + Date + Date. Type + + + + + + + + + BBIE + Catalogue Reference. Revision Time. Time + The time at which the information in the Catalogue was revised. + 0..1 + Catalogue Reference + Revision Time + Time + Time. Type + + + + + + + + + BBIE + Catalogue Reference. Note. Text + A free-text note about the Catalogue. This is used for information which is only human readable. + 0..n + Catalogue Reference + Note + Text + Text. Type + + + + + + + + + BBIE + Catalogue Reference. Description. Text + A description of the Catalogue. + 0..n + Catalogue Reference + Description + Text + Text. Type + computer accessories for laptops + + + + + + + + + BBIE + Catalogue Reference. Version. Identifier + Indicates the current version of the Catalogue. + 0..1 + Catalogue Reference + Version + Identifier + Identifier. Type + 1.1 + + + + + + + + + BBIE + Catalogue Reference. Previous_ Version. Identifier + Indicates the previous version (the version superseded by this Catalogue). + 0..1 + Catalogue Reference + Previous + Version + Identifier + Identifier. Type + 1.0 + + + + + + + + + + + ABIE + Catalogue Request Line. Details + The basic element of Catalogue; something that can be bought. + Catalogue Request Line + + + + + + + + + BBIE + Catalogue Request Line. Identifier + A unique instance identifier for the line in this Catalogue document. + 1 + Catalogue Request Line + Identifier + Identifier + Identifier. Type + 1 + + + + + + + + + BBIE + Catalogue Request Line. Contract Subdivision. Text + Identifies a subdivision of a contract or tender. + 0..1 + Catalogue Request Line + Contract Subdivision + Text + Text. Type + Installation , Phase One , Support and Maintenance + + + + + + + + + BBIE + Catalogue Request Line. Note. Text + Free-text note used for non-structured information about the line in the specific Catalogue document (intended to be human readable). + 0..n + Catalogue Request Line + Note + Text + Text. Type + + + + + + + + + ASBIE + Catalogue Request Line. Line Validity_ Period. Period + The period for which the Catalogue Line is valid. + 0..1 + Catalogue Request Line + Line Validity + Period + Period + + + + + + + + + ASBIE + Catalogue Request Line. Required_ Item Location Quantity. Item Location Quantity + An association to the description of properties related to locations and quantities of the item. + 0..n + Catalogue Request Line + Required + Item Location Quantity + Item Location Quantity + + + + + + + + + ASBIE + Catalogue Request Line. Item + An association to the Item itself. + 1 + Catalogue Request Line + Item + Item + + + + + + + + + + + ABIE + Certificate. Details + Information about a Certificate. + Certificate + + + + + + + + + BBIE + Certificate. Identifier + A unique identifier for the Certificate. + 1 + Certificate + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Certificate. Certificate Type Code. Code + Type of Cerfificate expressed as a code. + 1 + Certificate + Certificate Type Code + Code + Code. Type + + + + + + + + + BBIE + Certificate. Certificate Type. Text + Type of Certificate expressed as text. + 1 + Certificate + Certificate Type + Text + Text. Type + + + + + + + + + BBIE + Certificate. Remarks. Text + Remarks by the applicant for the Certificate. + 0..1 + Certificate + Remarks + Text + Text. Type + + + + + + + + + ASBIE + Certificate. Issuer_ Party. Party + Details of the authorized organization that issued the Certificate. + 1 + Certificate + Issuer + Party + Party + + + + + + + + + ASBIE + Certificate. Document Reference + An associative reference to a document. + 0..n + Certificate + Document Reference + Document Reference + + + + + + + + + ASBIE + Certificate. Signature + One or more signatures applied to the document instance. + 0..n + Certificate + Signature + Signature + + + + + + + + + + + ABIE + Certificate Of Origin Application. Details + Information about a Certificate of Origin application. + Certificate Of Origin Application + + + + + + + + + BBIE + Certificate Of Origin Application. Reference. Identifier + Holds the unique number that identifies the Despatch Advice, typically according to the seller s system that generated the Despatch Advice. + 1 + Certificate Of Origin Application + Reference + Identifier + Identifier. Type + + + + + + + + + BBIE + Certificate Of Origin Application. Certificate Type. Text + Type of CO. Type could be Ordinary, Re-export, Commonwealth Preferential etc. + 1 + Certificate Of Origin Application + Certificate Type + Text + Text. Type + + + + + + + + + BBIE + Certificate Of Origin Application. Application Status Code. Code + Indicates the status of the application (revision, replacement, etc.). + 0..1 + Certificate Of Origin Application + Application Status Code + Code + Code. Type + + + + + + + + + BBIE + Certificate Of Origin Application. Original_ Job Identifier. Identifier + The latest Job Number given to the Origin application. This is used by the system to keep track of the amendments or cancellation of the origin application applied earlier. + 1 + Certificate Of Origin Application + Original + Job Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Certificate Of Origin Application. Previous_ Job Identifier. Identifier + The previous Job Number assigned in case the application undergoes query or change. This is used by the system to keep track of the amendments or cancellation of the origin application applied earlier. + 0..1 + Certificate Of Origin Application + Previous + Job Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Certificate Of Origin Application. Remarks. Text + Remarks by the applicant for the Certificate of Origin Application. + 0..1 + Certificate Of Origin Application + Remarks + Text + Text. Type + + + + + + + + + ASBIE + Certificate Of Origin Application. Shipment + An association to Shipment. + 1 + Certificate Of Origin Application + Shipment + Shipment + + + + + + + + + ASBIE + Certificate Of Origin Application. Endorser Party + The party providing the endorsement. + 1..n + Certificate Of Origin Application + Endorser Party + Endorser Party + + + + + + + + + ASBIE + Certificate Of Origin Application. Preparation_ Party. Party + Details of an individual, a group, or a body that prepares the Certificate of Origin application. + 1 + Certificate Of Origin Application + Preparation + Party + Party + + + + + + + + + ASBIE + Certificate Of Origin Application. Issuer_ Party. Party + Details of the authorized organization that issued the Certificate of Origin. + 1 + Certificate Of Origin Application + Issuer + Party + Party + + + + + + + + + ASBIE + Certificate Of Origin Application. Exporter_ Party. Party + The party who makes the export declaration, or on whose behalf the export declaration is made, and who is the owner of the goods or has similar right of disposal over them at the time when the declaration is accepted. + 0..1 + Certificate Of Origin Application + Exporter + Party + Party + + + + + + + + + ASBIE + Certificate Of Origin Application. Importer_ Party. Party + The party who makes an import declaration, or on whose behalf a Customs clearing agent or other authorized person makes an import declaration. This may include a person who has possession of the goods or to whom the goods are consigned. + 0..1 + Certificate Of Origin Application + Importer + Party + Party + + + + + + + + + ASBIE + Certificate Of Origin Application. Issuing_ Country. Country + The country for which the Certificate of Origin is issued. + 1 + Certificate Of Origin Application + Issuing + Country + Country + + + + + + + + + ASBIE + Certificate Of Origin Application. Document Distribution + The distribution of the Certificate of Origin to interested parties. + 0..n + Certificate Of Origin Application + Document Distribution + Document Distribution + + + + + + + + + ASBIE + Certificate Of Origin Application. Supporting_ Document Reference. Document Reference + An associative reference to a supporting document. + 0..n + Certificate Of Origin Application + Supporting + Document Reference + Document Reference + + + + + + + + + ASBIE + Certificate Of Origin Application. Signature + One or more signatures applied to the document instance. + 0..n + Certificate Of Origin Application + Signature + Signature + + + + + + + + + + + ABIE + Classification Category. Details + Information about a Classification Category; a subdivision of a Classification Scheme. + Classification Category + + + + + + + + + BBIE + Classification Category. Name + The name of the Classification Category. + 0..1 + Classification Category + Name + Name + Name. Type + Code List Name + UNSPSC Class , UNSPSC Segment , UNSPSC Family + + + + + + + + + BBIE + Classification Category. Code Value. Text + The Classification Category value. + 0..1 + Classification Category + Code Value + Text + Text. Type + Code Value + 3420001, 3273666, HSJJD-213 + + + + + + + + + BBIE + Classification Category. Description. Text + The description of the Classification Category. + 0..n + Classification Category + Description + Text + Text. Type + Code Name + Electrical Goods , Wooden Toys + + + + + + + + + ASBIE + Classification Category. Categorizes_ Classification Category. Classification Category + An association to subcategories within the Category. + 0..n + Classification Category + Categorizes + Classification Category + Classification Category + + + + + + + + + + + ABIE + Classification Scheme. Details + Information about Classification Scheme; a scheme that defines a taxonomy for classifying goods or services. + Classification Scheme + + + + + + + + + BBIE + Classification Scheme. Identifier + An identifier for the classification scheme. + 1 + Classification Scheme + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Classification Scheme. UUID. Identifier + A universally unique identifier for an instance of this ABIE. + 0..1 + Classification Scheme + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Classification Scheme. Last_ Revision Date. Date + The date at which the classification scheme was last revised. + 0..1 + Classification Scheme + Last + Revision Date + Date + Date. Type + + + + + + + + + BBIE + Classification Scheme. Last_ Revision Time. Time + The time at which the classification scheme was last revised. + 0..1 + Classification Scheme + Last + Revision Time + Time + Time. Type + + + + + + + + + BBIE + Classification Scheme. Note. Text + Free-form text applying to the Classification Scheme. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Classification Scheme + Note + Text + Text. Type + + + + + + + + + BBIE + Classification Scheme. Name + The name of the Classification Scheme. + 0..1 + Classification Scheme + Name + Name + Name. Type + UNSPSC + + + + + + + + + BBIE + Classification Scheme. Description. Text + A description of the Classification Scheme. + 0..n + Classification Scheme + Description + Text + Text. Type + an open, global multi-sector standard for classification of products and services + + + + + + + + + BBIE + Classification Scheme. Agency Identifier. Identifier + Identifies the agency that maintains the Classification Scheme. + 0..1 + Classification Scheme + Agency Identifier + Identifier + Identifier. Type + Defaults to the UN/EDIFACT data element 3055 code list. + + + + + + + + + BBIE + Classification Scheme. Agency Name. Text + The name of the agency that maintains the Classification Scheme. + 0..1 + Classification Scheme + Agency Name + Text + Text. Type + + + + + + + + + BBIE + Classification Scheme. Version. Identifier + Identifies the version of the Classification Scheme. + 0..1 + Classification Scheme + Version + Identifier + Identifier. Type + + + + + + + + + BBIE + Classification Scheme. URI. Identifier + The Uniform Resource Identifier (URI) that identifies where the Classification is located. + 0..1 + Classification Scheme + URI + Identifier + Identifier. Type + + + + + + + + + BBIE + Classification Scheme. Scheme_ URI. Identifier + The Uniform Resource Identifier (URI) that identifies where the Classification Scheme is located. + 0..1 + Classification Scheme + Scheme + URI + Identifier + Identifier. Type + + + + + + + + + BBIE + Classification Scheme. Language. Identifier + Identifies the language of the Classification Scheme. + 0..1 + Classification Scheme + Language + Identifier + Identifier. Type + + + + + + + + + ASBIE + Classification Scheme. Classification Category + An association to Classification Category. + 1..n + Classification Scheme + Classification Category + Classification Category + + + + + + + + + + + ABIE + Commodity Classification. Details + Information about Commodity Classification. + Commodity Classification + + + + + + + + + BBIE + Commodity Classification. Nature Code. Code + The high-level nature of the Classification issued by a specific maintenance agency, expressed as a code. + 0..1 + Commodity Classification + Nature Code + Code + Code. Type + wooden products + + + + + + + + + BBIE + Commodity Classification. Cargo Type Code. Code + The type of cargo, expressed as a code. + 0..1 + Commodity Classification + Cargo Type Code + Code + Code. Type + Refrigerated + + + + + + + + + BBIE + Commodity Classification. Commodity Code. Code + The harmonized international commodity code for regulatory (customs and trade statistics) purposes. + 0..1 + Commodity Classification + Commodity Code + Code + Code. Type + Harmonized Code + 1102222883 + + + + + + + + + BBIE + Commodity Classification. Item Classification Code. Code + The trade commodity classification, expressed as a code. + 0..1 + Commodity Classification + Item Classification Code + Code + Code. Type + UN/SPSC Code + 3440234 + + + + + + + + + + + ABIE + Communication. Details + Information about a means of communication. + Communication + + + + + + + + + BBIE + Communication. Channel Code. Code + The method of communication, expressed as a code. + 0..1 + Communication + Channel Code + Code + Channel_ Code. Type + Phone Fax Email + + + + + + + + + BBIE + Communication. Channel. Text + The method of communication, expressed as text. + 0..1 + Communication + Channel + Text + Text. Type + Skype + + + + + + + + + BBIE + Communication. Value. Text + The communication value, such as phone number or email address. + 0..1 + Communication + Value + Text + Text. Type + +44 1 2345 6789 president@whitehouse.com + + + + + + + + + + + ABIE + Completed Task. Details + Completion of a mental or physical effort to a specific purpose in the tendering process. + Completed Task + + + + + + + + + BBIE + Completed Task. Annual_ Average. Amount + The monetary value that constitutes the average amount of this completed task. + 0..1 + Completed Task + Annual + Average + Amount + Amount. Type + + + + + + + + + BBIE + Completed Task. Total Task. Amount + The monetary value that constitutes the actual amount of this completed task. + 0..1 + Completed Task + Total Task + Amount + Amount. Type + + + + + + + + + BBIE + Completed Task. Party Capacity. Amount + The monetary value that constitutes the capacity of the party which carried out this completed task. + 0..1 + Completed Task + Party Capacity + Amount + Amount. Type + + + + + + + + + BBIE + Completed Task. Description. Text + The textual expression of the description of this completed task. + 0..n + Completed Task + Description + Text + Text. Type + + + + + + + + + BBIE + Completed Task. Evidence Supplied. Identifier + An ID reference to the Evidence that justifies this task. + 0..1 + Completed Task + Evidence Supplied + Identifier + Identifier. Type + + + + + + + + + ASBIE + Completed Task. Period + The specified period where the task has been performed. + 0..1 + Completed Task + Period + Period + + + + + + + + + ASBIE + Completed Task. Recipient_ Customer Party. Customer Party + The original customer for this completed task. + 0..1 + Completed Task + Recipient + Customer Party + Customer Party + + + + + + + + + + + ABIE + Consignment. Details + An identifiable collection of one or more goods items to be transported between the consignor and the consignee. This information may be defined within a transport contract. A consignment may comprise more than one shipment (e.g., when consolidated by a freight forwarder). + Consignment + + + + + + + + + BBIE + Consignment. Identifier + Unique number assigned to goods, both for import and export. + 1 + Consignment + Identifier + Identifier + Identifier. Type + Unique consignment reference number (UCR) + + + + + + + + + BBIE + Consignment. Carrier Assigned_ Identifier. Identifier + The identifier assigned by the carrier for this consignment. + 0..1 + Consignment + Carrier Assigned + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Consignment. Consignee Assigned_ Identifier. Identifier + The identifier assigned by the Consignee for this consignment. + 0..1 + Consignment + Consignee Assigned + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Consignment. Consignor Assigned_ Identifier. Identifier + The identifier assigned by the Consignor of this consignment. + 0..1 + Consignment + Consignor Assigned + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Consignment. Freight Forwarder Assigned_ Identifier. Identifier + The identifier assigned by the Freightforwarder for this consignment. + 0..1 + Consignment + Freight Forwarder Assigned + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Consignment. Broker Assigned_ Identifier. Identifier + The identifier assigned by the Broker for this consignment. + 0..1 + Consignment + Broker Assigned + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Consignment. Contracted Carrier Assigned_ Identifier. Identifier + The identifier assigned by the Contracted Carrier for this consignment. + 0..1 + Consignment + Contracted Carrier Assigned + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Consignment. Performing Carrier Assigned_ Identifier. Identifier + The identifier assigned by the performing carrier for this consignment. + 0..1 + Consignment + Performing Carrier Assigned + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Consignment. Summary_ Description. Text + General descriptive text that is not part of any remarks. + 0..n + Consignment + Summary + Description + Text + Text. Type + + + + + + + + + BBIE + Consignment. Total_ Invoice Amount. Amount + Total of all invoice amounts declared in a single consignment. + 0..1 + Consignment + Total + Invoice Amount + Amount + Amount. Type + + + + + + + + + BBIE + Consignment. Declared Customs_ Value. Amount + Amount declared for customs purposes of those goods in a consignment, whether or not they are subject to the same customs procedure, tariff/statistical heading, country information, and duty regime. + 0..1 + Consignment + Declared Customs + Value + Amount + Amount. Type + + + + + + + + + BBIE + Consignment. Tariff Description. Text + A description of the tariff applied to a consignment. + 0..n + Consignment + Tariff Description + Text + Text. Type + + + + + + + + + BBIE + Consignment. Tariff Code. Code + Code specifying a tariff applied to a consignment. + 0..1 + Consignment + Tariff Code + Code + Code. Type + Tariff code number (WCO ID 145) + + + + + + + + + BBIE + Consignment. Insurance Premium Amount. Amount + Amount of premium payable to the insurance company for insuring the goods. + 0..1 + Consignment + Insurance Premium Amount + Amount + Amount. Type + Insurance Cost + + + + + + + + + BBIE + Consignment. Gross_ Weight. Measure + Total weight (mass) of goods for a declaration, including packaging but excluding the carrier s equipment. + 0..1 + Consignment + Gross + Weight + Measure + Measure. Type + Total gross weight (WCO ID 131) + Total cube of all goods items referred to as one consignment. + + + + + + + + + BBIE + Consignment. Net_ Weight. Measure + Total net weight (mass) of all the goods items referred to as one consignment. + 0..1 + Consignment + Net + Weight + Measure + Measure. Type + + + + + + + + + BBIE + Consignment. Net Net_ Weight. Measure + Weight (mass) of the goods themselves without any packing. + 0..1 + Consignment + Net Net + Weight + Measure + Measure. Type + + + + + + + + + BBIE + Consignment. Chargeable_ Weight. Measure + Gross weight (mass) on which a charge is to be based. + 0..1 + Consignment + Chargeable + Weight + Measure + Measure. Type + Chargeable Weight. Basis.Measure + + + + + + + + + BBIE + Consignment. Gross_ Volume. Measure + Total volume of all goods items referred to as one consignment. + 0..1 + Consignment + Gross + Volume + Measure + Measure. Type + Cube + + + + + + + + + BBIE + Consignment. Net_ Volume. Measure + Net volume of all goods items referred to as one consignment. + 0..1 + Consignment + Net + Volume + Measure + Measure. Type + + + + + + + + + BBIE + Consignment. Loading_ Length. Measure + Total length in a means of transport or a piece of transport equipment whereby the complete width and height over that length is needed for loading all the consignments referred to as one consolidation. + 0..1 + Consignment + Loading + Length + Measure + Measure. Type + + + + + + + + + BBIE + Consignment. Remarks. Text + Remarks concerning the complete consignment to be printed on the transport document. + 0..n + Consignment + Remarks + Text + Text. Type + + + + + + + + + BBIE + Consignment. Hazardous Risk_ Indicator. Indicator + Indication that the transport is or is not subject to an international regulation concerning the carriage of dangerous goods. + 0..1 + Consignment + Hazardous Risk + Indicator + Indicator + Indicator. Type + Dangerous Goods RID Indicator + default is negative + + + + + + + + + BBIE + Consignment. Animal_ Food Indicator. Indicator + Indication that the transported goods are animal foodstuffs. + 0..1 + Consignment + Animal + Food Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Consignment. Human_ Food Indicator. Indicator + Indication that the transported goods are for human consumption + 0..1 + Consignment + Human + Food Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Consignment. Livestock_ Indicator. Indicator + Indication that the transported goods are livestock. + 0..1 + Consignment + Livestock + Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Consignment. Bulk Cargo_ Indicator. Indicator + Indication that the transported goods are bulk cargoes + 0..1 + Consignment + Bulk Cargo + Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Consignment. Containerized_ Indicator. Indicator + Indication that the transported goods are containerized cargoes + 0..1 + Consignment + Containerized + Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Consignment. General Cargo_ Indicator. Indicator + Indication that the transported goods are general cargoes + 0..1 + Consignment + General Cargo + Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Consignment. Special_ Security Indicator. Indicator + Indication that the transported goods require special security + 0..1 + Consignment + Special + Security Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Consignment. Third Party Payer_ Indicator. Indicator + Indication that the consignment will be paid for by a third party. + 0..1 + Consignment + Third Party Payer + Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Consignment. Carrier Service_ Instructions. Text + Service instructions to the carrier expressed as text. + 0..1 + Consignment + Carrier Service + Instructions + Text + Text. Type + + + + + + + + + BBIE + Consignment. Customs Clearance Service_ Instructions. Text + Service instructions for customs clearance expressed as text. + 0..1 + Consignment + Customs Clearance Service + Instructions + Text + Text. Type + + + + + + + + + BBIE + Consignment. Forwarder Service_ Instructions. Text + Service instructions for the forwarder. + 0..1 + Consignment + Forwarder Service + Instructions + Text + Text. Type + + + + + + + + + BBIE + Consignment. Special Service_ Instructions. Text + Special service instructions expressed as text. + 0..1 + Consignment + Special Service + Instructions + Text + Text. Type + + + + + + + + + BBIE + Consignment. Sequence Identifier. Identifier + The sequence identifier for this consignment. + 0..1 + Consignment + Sequence Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Consignment. Shipping Priority Level Code. Code + The priority or level of service required for a consignment, expressed as a code. + 0..1 + Consignment + Shipping Priority Level Code + Code + Code. Type + + + + + + + + + BBIE + Consignment. Handling Code. Code + The handling required for a consignment, expressed as a code. + 0..1 + Consignment + Handling Code + Code + Code. Type + Special Handling + + + + + + + + + BBIE + Consignment. Handling_ Instructions. Text + Free-form text describing Handling Instructions for a consignment. + 0..1 + Consignment + Handling + Instructions + Text + Text. Type + + + + + + + + + BBIE + Consignment. Information. Text + Free-form text applying to a consignment. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..1 + Consignment + Information + Text + Text. Type + + + + + + + + + BBIE + Consignment. Total_ Goods Item Quantity. Quantity + Count of the total number of goods items within a consignment. + 0..1 + Consignment + Total + Goods Item Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Consignment. Total_ Transport Handling Unit Quantity. Quantity + Count of the number of pieces of transport handling equipment in a consignment, such as pallets, boxes, and cases. + 0..1 + Consignment + Total + Transport Handling Unit Quantity + Quantity + Quantity. Type + Number of THUs + + + + + + + + + BBIE + Consignment. Insurance_ Value. Amount + The total sum covered by an insurance for the consignment. + 0..1 + Consignment + Insurance + Value + Amount + Amount. Type + Value Insured + + + + + + + + + BBIE + Consignment. Declared For Carriage_ Value. Amount + Value, declared by the shipper or his agent solely for the purpose of varying the carrier s level of liability from that provided in the contract of carriage, in case of loss or damage to goods or delayed delivery. + 0..1 + Consignment + Declared For Carriage + Value + Amount + Amount. Type + Declared value for carriage, Interest in delivery + + + + + + + + + BBIE + Consignment. Declared Statistics_ Value. Amount + Value declared for statistical purposes of those goods in a consignment which have the same statistical heading. + 0..1 + Consignment + Declared Statistics + Value + Amount + Amount. Type + Statistical Value + + + + + + + + + BBIE + Consignment. Free On Board_ Value. Amount + Monetary amount that has to be or has been paid as calculated under the applicable trade delivery. + 0..1 + Consignment + Free On Board + Value + Amount + Amount. Type + FOB Value + + + + + + + + + BBIE + Consignment. Special_ Instructions. Text + Special instructions relating to a consignment. + 0..n + Consignment + Special + Instructions + Text + Text. Type + + + + + + + + + BBIE + Consignment. Split Consignment_ Indicator. Indicator + Indicates whether the consignment has been split in transit. + 0..1 + Consignment + Split Consignment + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Consignment. Delivery_ Instructions. Text + Delivery instructions relating to a consignment. + 0..n + Consignment + Delivery + Instructions + Text + Text. Type + + + + + + + + + BBIE + Consignment. Consignment_ Quantity. Quantity + The count of this consignment. + 0..1 + Consignment + Consignment + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Consignment. Consolidatable_ Indicator. Indicator + The indication of whether or not this consignment can be consolidated. + 0..1 + Consignment + Consolidatable + Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Consignment. Haulage_ Instructions. Text + Instructions regarding haulage of this consignment. + 0..n + Consignment + Haulage + Instructions + Text + Text. Type + + + + + + + + + BBIE + Consignment. Loading_ Sequence Identifier. Identifier + The identifier for the loading sequence of this consignment. + 0..1 + Consignment + Loading + Sequence Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Consignment. Consignee_ Party. Party + Party to which goods are consigned. + 0..1 + Consignment + Consignee + Party + Party + + + + + + + + + ASBIE + Consignment. Exporter_ Party. Party + The party who makes the export declaration, or on whose behalf the export declaration is made, and who is the owner of the goods or has similar right of disposal over them at the time when the declaration is accepted. + 0..1 + Consignment + Exporter + Party + Party + + + + + + + + + ASBIE + Consignment. Consignor_ Party. Party + The party consigning goods, as stipulated in the transport contract by the party ordering transport. + 0..1 + Consignment + Consignor + Party + Party + + + + + + + + + ASBIE + Consignment. Importer_ Party. Party + The party who makes an import declaration, or on whose behalf a Customs clearing agent or other authorized person makes an import declaration. This may include a person who has possession of the goods or to whom the goods are consigned. + 0..1 + Consignment + Importer + Party + Party + + + + + + + + + ASBIE + Consignment. Carrier_ Party. Party + The party providing the transport of goods between named points. + 0..1 + Consignment + Carrier + Party + Party + + + + + + + + + ASBIE + Consignment. Freight Forwarder_ Party. Party + The party combining individual smaller consignments into a single larger shipment (so called consolidated shipment) that is sent to a counterpart who mirrors the consolidator s activity by dividing the consolidated consignment into its original components. + 0..1 + Consignment + Freight Forwarder + Party + Party + + + + + + + + + ASBIE + Consignment. Notify_ Party. Party + The party to be notified. + 0..1 + Consignment + Notify + Party + Party + + + + + + + + + ASBIE + Consignment. Original Despatch_ Party. Party + The original despatch party. + 0..1 + Consignment + Original Despatch + Party + Party + + + + + + + + + ASBIE + Consignment. Final Delivery_ Party. Party + The final delivery party. + 0..1 + Consignment + Final Delivery + Party + Party + + + + + + + + + ASBIE + Consignment. Performing Carrier_ Party. Party + The party performing the carriage. + 0..1 + Consignment + Performing Carrier + Party + Party + + + + + + + + + ASBIE + Consignment. Substitute Carrier_ Party. Party + A substitute party performing the carriage. + 0..1 + Consignment + Substitute Carrier + Party + Party + + + + + + + + + ASBIE + Consignment. Logistics Operator_ Party. Party + A logistics operator party. + 0..1 + Consignment + Logistics Operator + Party + Party + + + + + + + + + ASBIE + Consignment. Transport Advisor_ Party. Party + A party providing transport advice. + 0..1 + Consignment + Transport Advisor + Party + Party + + + + + + + + + ASBIE + Consignment. Hazardous Item Notification_ Party. Party + A party who would be notified of a hazardous items. + 0..1 + Consignment + Hazardous Item Notification + Party + Party + + + + + + + + + ASBIE + Consignment. Insurance_ Party. Party + A party holding the insurance of this consignment. + 0..1 + Consignment + Insurance + Party + Party + + + + + + + + + ASBIE + Consignment. Mortgage Holder_ Party. Party + A party holding the mortgage on this consignment. + 0..1 + Consignment + Mortgage Holder + Party + Party + + + + + + + + + ASBIE + Consignment. Bill Of Lading Holder_ Party. Party + A party holding the bill of lading for this consignment. + 0..1 + Consignment + Bill Of Lading Holder + Party + Party + + + + + + + + + ASBIE + Consignment. Original Departure_ Country. Country + The country from which the goods are originally exported, without any commercial transaction taking place in intermediate countries. + 0..1 + Consignment + Original Departure + Country + Country + + + + + + + + + ASBIE + Consignment. Final Destination_ Country. Country + Name of the country to which the goods are to be delivered to the final consignee or buyer. + 0..1 + Consignment + Final Destination + Country + Country + + + + + + + + + ASBIE + Consignment. Transit_ Country. Country + The countries through which goods or passengers are routed between the country of original departure and the country of final destination. + 0..n + Consignment + Transit + Country + Country + + + + + + + + + ASBIE + Consignment. Transport_ Contract. Contract + An association to Transport Contact. + 0..1 + Consignment + Transport + Contract + Contract + + + + + + + + + ASBIE + Consignment. Original Despatch_ Transportation Service. Transportation Service + The service for pick-up from the consignor under the transport contract. + 0..1 + Consignment + Original Despatch + Transportation Service + Transportation Service + Door-to-door , Pier-to-door + + + + + + + + + ASBIE + Consignment. Final Delivery_ Transportation Service. Transportation Service + The service for delivery to the consignee under the transport contract. + 0..1 + Consignment + Final Delivery + Transportation Service + Transportation Service + Door-to-door , Pier-to-door + + + + + + + + + ASBIE + Consignment. Delivery Terms + All the conditions agreed upon between a seller and a buyer with regard to the delivery of goods and/or services, e.g., CIF, FOB, or EXW from the INCOTERMS Terms of Delivery. + 0..1 + Consignment + Delivery Terms + Delivery Terms + + + + + + + + + ASBIE + Consignment. Payment Terms + The conditions of payment between the parties in a transaction. + 0..1 + Consignment + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Consignment. Collect_ Payment Terms. Payment Terms + An association to payment terms for collection. + 0..1 + Consignment + Collect + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Consignment. Disbursement_ Payment Terms. Payment Terms + An association to payment terms for disbursement. + 0..1 + Consignment + Disbursement + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Consignment. Prepaid_ Payment Terms. Payment Terms + An association to payment terms for prepayment. + 0..1 + Consignment + Prepaid + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Consignment. Freight_ Allowance Charge. Allowance Charge + Costs incurred by the shipper in moving goods, by whatever means, from one place to another under the terms of the contract of carriage. In addition to transport costs, this may include such elements as packing, documentation, loading, unloading, and insurance (to the extent that they relate to the freight costs). + 0..n + Consignment + Freight + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Consignment. Extra_ Allowance Charge. Allowance Charge + An association to charges for extra allowance. + 0..n + Consignment + Extra + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Consignment. Main Carriage_ Shipment Stage. Shipment Stage + An association to the shipment stage during main carriage. + 0..1 + Consignment + Main Carriage + Shipment Stage + Shipment Stage + + + + + + + + + ASBIE + Consignment. Pre Carriage_ Shipment Stage. Shipment Stage + An association to the shipment stage during precarriage. + 0..n + Consignment + Pre Carriage + Shipment Stage + Shipment Stage + + + + + + + + + ASBIE + Consignment. On Carriage_ Shipment Stage. Shipment Stage + An association to the shipment stage during on carriage. + 0..n + Consignment + On Carriage + Shipment Stage + Shipment Stage + + + + + + + + + ASBIE + Consignment. Transport Handling Unit + An association to Transport Handling Unit used for loose and containerized goods. + 0..n + Consignment + Transport Handling Unit + Transport Handling Unit + + + + + + + + + ASBIE + Consignment. First Arrival Port_ Location. Location + Identifies the first arrival location. This would be a port for sea, airport for air, and border post for land crossing. + 0..1 + Consignment + First Arrival Port + Location + Location + + + + + + + + + ASBIE + Consignment. Last Exit Port_ Location. Location + Identifies the final exporting location. This would be a port for sea, airport for air, and border post for land crossing. + 0..1 + Consignment + Last Exit Port + Location + Location + + + + + + + + + ASBIE + Consignment. Consolidated_ Shipment. Shipment + An association to shipment consolidation. + 0..n + Consignment + Consolidated + Shipment + Shipment + + + + + + + + + + + ABIE + Consumption. Details + + Consumption + + + + + + + + + BBIE + Consumption. Utility Statement Type Code. Code + Code specifying the type of the UtilityStatement + 0..1 + Consumption + Utility Statement Type Code + Code + Code. Type + Electricity + + + + + + + + + ASBIE + Consumption. Main_ Period. Period + An association to period(s) to which the UtilityStatement applies + 0..1 + Consumption + Main + Period + Period + + + + + + + + + ASBIE + Consumption. Allowance Charge + An association to Allowances and Charges that apply to the UtilityStatement as a whole + 0..n + Consumption + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Consumption. Tax Total + An association to tax total for specific tax types/rates + 0..n + Consumption + Tax Total + Tax Total + + + + + + + + + ASBIE + Consumption. Energy Water Supply + An association to the total amount payable on the UtilityStatement including Allowances, Charges and Taxes. +This class is mandatory and sums the totals on UtilityChargeableConsumption level (for each ConsumptionPoint). This class must not be confused with the UBL MonetaryTotal class. + 0..1 + Consumption + Energy Water Supply + Energy Water Supply + + + + + + + + + ASBIE + Consumption. Telecommunications Supply + An association to the total amount payable on the UtilityStatement including Allowances, Charges and Taxes. +This class is mandatory and sums the totals on UtilityChargeableConsumption level (for each ConsumptionPoint). This class must not be confused with the UBL MonetaryTotal class. + 0..1 + Consumption + Telecommunications Supply + Telecommunications Supply + + + + + + + + + ASBIE + Consumption. Legal_ Monetary Total. Monetary Total + An association to the total amount payable on the UtilityStatement including Allowances, Charges and Taxes. +This class is mandatory and sums the totals on UtilityChargeableConsumption level (for each ConsumptionPoint). This class must not be confused with the UBL MonetaryTotal class. + 1 + Consumption + Legal + Monetary Total + Monetary Total + + + + + + + + + + + ABIE + Consumption Average. Details + The Average price included VAT. +This clas are suplementary utility Statements, that depending of type of Utility and scenario, needs to be present on a UtilityStatement, in order to meet the legal requirement and/or to give the Buyer proper informations. Note that these suplementary Statements are related to one common ConsumptionPoint as specified in UtilityChargeableConsumption/ConsumptionPoint above. + Consumption Average + + + + + + + + + BBIE + Consumption Average. Average_ Amount. Amount + The average amount + 0..1 + Consumption Average + Average + Amount + Amount + Amount. Type + 1.65 + + + + + + + + + BBIE + Consumption Average. Description. Text + Description of the average amount + 0..1 + Consumption Average + Description + Text + Text. Type + Average price incl. value added tax per kilowatt-hour in the billing period. + + + + + + + + + + + ABIE + Consumption History. Details + Informations about the consumption developement. + Consumption History + + + + + + + + + BBIE + Consumption History. Meter Number. Text + A reference to the utility meter. + 0..1 + Consumption History + Meter Number + Text + Text. Type + 61722x + + + + + + + + + BBIE + Consumption History. Quantity + Statement of the consumed quantity. + 1 + Consumption History + Quantity + Quantity + Quantity. Type + 7621.00 + + + + + + + + + BBIE + Consumption History. Amount + Amount for the consumed quantity. + 0..1 + Consumption History + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Consumption History. Consumption Level Code. Code + Statement of the consumption level as a code. + 0..1 + Consumption History + Consumption Level Code + Code + Code. Type + B + + + + + + + + + BBIE + Consumption History. Consumption Level Text. Text + Statement of the consumptionl level as plain test. + 0..1 + Consumption History + Consumption Level Text + Text + Text. Type + Average + + + + + + + + + BBIE + Consumption History. Description. Text + Description of the consumption development as plain text. + 0..n + Consumption History + Description + Text + Text. Type + 2004/2005 + + + + + + + + + ASBIE + Consumption History. Period + The Consumption period + 1 + Consumption History + Period + Period + + + + + + + + + + + ABIE + Consumption Line. Details + Statement of one product. If you need to specifier more than one product, you must specifier one ChargeableConsumptionLine for each product. This could for exampel be necesarry if the customer have to pay both for the cables and the internet connection. + Consumption Line + + + + + + + + + BBIE + Consumption Line. Identifier + Identification of the ConsumptionPoint data linie + 1 + Consumption Line + Identifier + Identifier + Identifier. Type + 1 + + + + + + + + + BBIE + Consumption Line. Parent_ Document Line Reference Identifier. Identifier + This element is used if you for each line in this document UBL UTS , want to indicate which line on the UBL Invoice or UBL CreditNote, the line is contained in. For examples: If there is a line on the main invoice: 1 Consumption xxx , and in the UBL UTS document there is 20 different lines, there together make up the consumption, then you make up |Consumption| in the element ParentDocumentReferenceID. + 0..1 + Consumption Line + Parent + Document Line Reference Identifier + Identifier + Identifier. Type + Consumption + + + + + + + + + BBIE + Consumption Line. Invoiced_ Quantity. Quantity + The invoiced quantity. + 1 + Consumption Line + Invoiced + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Consumption Line. Line Extension Amount. Amount + The line amount including discount. + 1 + Consumption Line + Line Extension Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Consumption Line. Period + Information about a period of time + 0..1 + Consumption Line + Period + Period + + + + + + + + + ASBIE + Consumption Line. Delivery + An association to delivery. + 0..n + Consumption Line + Delivery + Delivery + + + + + + + + + ASBIE + Consumption Line. Allowance Charge + An association to Allowances and Charges that apply to the UtilityStatement as a whole. + 0..n + Consumption Line + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Consumption Line. Tax Total + An association to tax total for specific tax types/rates + 0..n + Consumption Line + Tax Total + Tax Total + + + + + + + + + ASBIE + Consumption Line. Utility Item + Informations about a product of consumption + 1 + Consumption Line + Utility Item + Utility Item + + + + + + + + + ASBIE + Consumption Line. Price + Information about the price + 0..1 + Consumption Line + Price + Price + + + + + + + + + ASBIE + Consumption Line. Unstructured Price + This class is a alternative to the class Price, and it contain a Tele line + 0..1 + Consumption Line + Unstructured Price + Unstructured Price + + + + + + + + + + + ABIE + Consumption Point. Details + Content information about UtilityConsumptionPoint and about metering + Consumption Point + + + + + + + + + BBIE + Consumption Point. Identifier + Identification og the ConsumptionsPoint. This element are the demanded decrease number + 1 + Consumption Point + Identifier + Identifier + Identifier. Type + 7411013716x + + + + + + + + + BBIE + Consumption Point. Description. Text + Free form text applying to the ConsumptionPoint + 0..1 + Consumption Point + Description + Text + Text. Type + Additional informations concerning the consumption point + + + + + + + + + BBIE + Consumption Point. Subscriber Identifier. Identifier + Identification of the subscriber + 0..1 + Consumption Point + Subscriber Identifier + Identifier + Identifier. Type + 98143211 + + + + + + + + + BBIE + Consumption Point. Subscriber Type Identifier. Text + Identification of the subscriber type + 0..1 + Consumption Point + Subscriber Type Identifier + Text + Text. Type + APL + + + + + + + + + BBIE + Consumption Point. Subscriber Type Code. Code + The code for the service type + 0..1 + Consumption Point + Subscriber Type Code + Code + Code. Type + APL + + + + + + + + + BBIE + Consumption Point. Total_ Delivered Quantity. Quantity + The sum of the total consumpted quantity calculated from the ConsumptionPoint + 0..1 + Consumption Point + Total + Delivered Quantity + Quantity + Quantity. Type + 5761.00 + + + + + + + + + ASBIE + Consumption Point. Address + Association to the address of the Utility Concumption Point. Is only fill out if the address is different from the buyer address + 0..1 + Consumption Point + Address + Address + + + + + + + + + ASBIE + Consumption Point. WebSiteAccess + Association to the access information to website + 0..1 + Consumption Point + WebSiteAccess + WebSiteAccess + + + + + + + + + ASBIE + Consumption Point. Utility_ Meter. Meter + Information about Meter(s) and meteringdata + 0..n + Consumption Point + Utility + Meter + Meter + + + + + + + + + + + ABIE + Consumption Report. Details + Staticstisc about the consumers consumption and the development in comsumption. + Consumption Report + + + + + + + + + BBIE + Consumption Report. Identifier + Identification of the consumption report + 1 + Consumption Report + Identifier + Identifier + Identifier. Type + n/a + + + + + + + + + BBIE + Consumption Report. Consumption Type. Text + Identification of the consumption type + 0..1 + Consumption Report + Consumption Type + Text + Text. Type + Consumption + + + + + + + + + BBIE + Consumption Report. Consumption Type Code. Code + Specfication of the consumption type as a code + 0..1 + Consumption Report + Consumption Type Code + Code + Code. Type + Consumption + + + + + + + + + BBIE + Consumption Report. Description. Text + Description of the consumption report + 0..n + Consumption Report + Description + Text + Text. Type + This report contain the latest year consumption + + + + + + + + + BBIE + Consumption Report. Total_ Consumed Quantity. Quantity + Statement of the total consumpted quantity, witch the report inclued + 0..1 + Consumption Report + Total + Consumed Quantity + Quantity + Quantity. Type + 20479.00 + + + + + + + + + BBIE + Consumption Report. Basic_ Consumed Quantity. Quantity + Statement of the total consumpted quantity, witch is normative for analogous users. + 0..1 + Consumption Report + Basic + Consumed Quantity + Quantity + Quantity. Type + 20000.00 + + + + + + + + + BBIE + Consumption Report. Resident_ Occupants Numeric. Numeric + The number of people living in the residence + 0..1 + Consumption Report + Resident + Occupants Numeric + Numeric + Numeric. Type + 4.0 + + + + + + + + + BBIE + Consumption Report. Consumers_ Energy Level Code. Code + Statement of the consumers energylevel compared to the Recidencetype and the number of people living in the residence. - as a code + 0..1 + Consumption Report + Consumers + Energy Level Code + Code + Code. Type + B + + + + + + + + + BBIE + Consumption Report. Consumers_ Energy Level. Text + Statement of the consumers energylevel compared to the Recidencetype and the number of people living in the residence. - as a plain text. + 0..1 + Consumption Report + Consumers + Energy Level + Text + Text. Type + Middel + + + + + + + + + BBIE + Consumption Report. Residence Type. Text + Statement of the residence type as plain text + 0..1 + Consumption Report + Residence Type + Text + Text. Type + House + + + + + + + + + BBIE + Consumption Report. Residence Type Code. Code + Statement of the residence type as a code + 0..1 + Consumption Report + Residence Type Code + Code + Code. Type + House + + + + + + + + + BBIE + Consumption Report. Heating Type. Text + Statement of the heatingtype as plain text + 0..1 + Consumption Report + Heating Type + Text + Text. Type + District heating + + + + + + + + + BBIE + Consumption Report. Heating Type Code. Code + Statement of the heatingtype as a code. + 0..1 + Consumption Report + Heating Type Code + Code + Code. Type + DistrictHeating + + + + + + + + + ASBIE + Consumption Report. Period + Information about the consumption period. + 0..1 + Consumption Report + Period + Period + + + + + + + + + ASBIE + Consumption Report. Guidance_ Document Reference. Document Reference + An association to a guide document that explains the report. + 0..1 + Consumption Report + Guidance + Document Reference + Document Reference + + + + + + + + + ASBIE + Consumption Report. Document Reference + A reference to the report in an other document format or another kind of reference. + 0..1 + Consumption Report + Document Reference + Document Reference + + + + + + + + + ASBIE + Consumption Report. Consumption Report Reference + Informations about ealiere reports, for exampel last years consumption. + 0..n + Consumption Report + Consumption Report Reference + Consumption Report Reference + + + + + + + + + ASBIE + Consumption Report. Consumption History + Informations about the consumption developement. + 0..n + Consumption Report + Consumption History + Consumption History + + + + + + + + + + + ABIE + Consumption Report Reference. Details + Informations about ealiere reports, for exampel last years consumption + Consumption Report Reference + + + + + + + + + BBIE + Consumption Report Reference. Consumption_ Report Identifier. Identifier + Identification of the Consumption report referred. + 1 + Consumption Report Reference + Consumption + Report Identifier + Identifier + Identifier. Type + n/a + + + + + + + + + BBIE + Consumption Report Reference. Consumption Type. Text + Statement of the consumption type. + 0..1 + Consumption Report Reference + Consumption Type + Text + Text. Type + Consumption + + + + + + + + + BBIE + Consumption Report Reference. Consumption Type Code. Code + Statement of the consumptiontype as a code. + 0..1 + Consumption Report Reference + Consumption Type Code + Code + Code. Type + Consumption + + + + + + + + + BBIE + Consumption Report Reference. Total_ Consumed Quantity. Quantity + Statement of the total consumed quantity in the period the referred report are including. + 1 + Consumption Report Reference + Total + Consumed Quantity + Quantity + Quantity. Type + 20479.00 + + + + + + + + + ASBIE + Consumption Report Reference. Period + The consumption period + 1 + Consumption Report Reference + Period + Period + + + + + + + + + + + ABIE + Contact. Details + Information about a contactable person or organization department. + Contact + + + + + + + + + BBIE + Contact. Identifier + An identifier for the Contact. + 0..1 + Contact + Identifier + Identifier + Identifier. Type + Receivals Clerk + + + + + + + + + BBIE + Contact. Name + The name of the Contact (it is recomanded this is not to be used for person name but for functional names). + 0..1 + Contact + Name + Name + Name. Type + Delivery Dock + + + + + + + + + BBIE + Contact. Telephone. Text + The telephone number of the Contact. + 0..1 + Contact + Telephone + Text + Text. Type + + + + + + + + + BBIE + Contact. Telefax. Text + The fax number of the Contact. + 0..1 + Contact + Telefax + Text + Text. Type + + + + + + + + + BBIE + Contact. Electronic_ Mail. Text + The email address of the Contact. + 0..1 + Contact + Electronic + Mail + Text + Text. Type + + + + + + + + + BBIE + Contact. Note. Text + A note such as Emergency or After Hours describing the circumstances in which the Contact can be used. + 0..n + Contact + Note + Text + Text. Type + + + + + + + + + ASBIE + Contact. Other_ Communication. Communication + An association to Other Communication. + 0..n + Contact + Other + Communication + Communication + + + + + + + + + + + ABIE + Contract. Details + Information about a Contract. + Contract + + + + + + + + + BBIE + Contract. Identifier + Identifies the Contract. + 0..1 + Contract + Identifier + Identifier + Identifier. Type + CC23 + + + + + + + + + BBIE + Contract. Issue Date. Date + The date on which the Contract was issued. + 0..1 + Contract + Issue Date + Date + Date. Type + + + + + + + + + BBIE + Contract. Issue Time. Time + The time at which the Contract was issued. + 0..1 + Contract + Issue Time + Time + Time. Type + + + + + + + + + BBIE + Contract. Nomination Date. Date + The deadline date for which the services referred to in the Transport Execution Plan has to be booked. For example if this service is a carrier service executed Wednesday February 16th 2011 at 10 a.m. CET, the Nomination Date might be Tuesday February 15th 2011. + 0..1 + Contract + Nomination Date + Date + Date. Type + + + + + + + + + BBIE + Contract. Nomination Time. Time + The deadline time for which the service(s) referred to in the Transport Execution Plan has to be booked. For example if this service is executed Wednesday February 16th 2011 at 10 a.m. CET, the Nomination Date might be Tuesday February 15th 2011 and Nomination Time 4 p.m. latest. + 0..1 + Contract + Nomination Time + Time + Time. Type + + + + + + + + + BBIE + Contract. Contract Type Code. Code + The type of Contract, expressed as a code. + 0..1 + Contract + Contract Type Code + Code + Code. Type + + + + + + + + + BBIE + Contract. Contract Type. Text + The type of Contract, expressed as text. + 0..1 + Contract + Contract Type + Text + Text. Type + + + + + + + + + BBIE + Contract. Note. Text + Remarks to the Contract, expressed as text. + 0..n + Contract + Note + Text + Text. Type + Remarks + + + + + + + + + BBIE + Contract. Version. Identifier + Identifies the current version of this contract. + 0..1 + Contract + Version + Identifier + Identifier. Type + + + + + + + + + BBIE + Contract. Description. Text + Textual description of the contract instance. + 0..n + Contract + Description + Text + Text. Type + + + + + + + + + ASBIE + Contract. Validity_ Period. Period + An association to Validity Period. + 0..1 + Contract + Validity + Period + Period + + + + + + + + + ASBIE + Contract. Contract_ Document Reference. Document Reference + An associative reference to Contract Document. + 0..n + Contract + Contract + Document Reference + Document Reference + + + + + + + + + ASBIE + Contract. Nomination_ Period. Period + An association to Period. The nomination period is the period required to book the services specified in the contract before the services can begin. + 0..1 + Contract + Nomination + Period + Period + + + + + + + + + ASBIE + Contract. Contractual_ Delivery. Delivery + An association to Delivery. Describes the delivery of the services required to book the services specified in the contract. + 0..1 + Contract + Contractual + Delivery + Delivery + + + + + + + + + + + ABIE + Contract Execution Requirement. Details + Information about the requirement for the execution of the contract . + Contract Execution Requirement + + + + + + + + + BBIE + Contract Execution Requirement. Name + Name of the requirement. + 0..n + Contract Execution Requirement + Name + Name + Name. Type + + + + + + + + + BBIE + Contract Execution Requirement. Execution Requirement Code. Code + A code specifying the type of party that is independent of its role. + 0..1 + Contract Execution Requirement + Execution Requirement Code + Code + Code. Type + + + + + + + + + BBIE + Contract Execution Requirement. Description. Text + A textual description of the requirement. + 0..n + Contract Execution Requirement + Description + Text + Text. Type + + + + + + + + + + + ABIE + Contract Extension. Details + Information about the possible extensions of a contract. + Contract Extension + + + + + + + + + BBIE + Contract Extension. Options Description. Text + Option Description to be executed while awarding the contract. + 0..n + Contract Extension + Options Description + Text + Text. Type + + + + + + + + + BBIE + Contract Extension. Minimum_ Number. Numeric + Minimum number of contract extensions. + 0..1 + Contract Extension + Minimum + Number + Numeric + Numeric. Type + + + + + + + + + BBIE + Contract Extension. Maximum_ Number. Numeric + Maximum number of contract extensions. + 0..1 + Contract Extension + Maximum + Number + Numeric + Numeric. Type + + + + + + + + + ASBIE + Contract Extension. Option Validity_ Period. Period + The period during which the option for extending the contract is available. + 0..1 + Contract Extension + Option Validity + Period + Period + + + + + + + + + ASBIE + Contract Extension. Renewal + Period allowed for each contract extension. + 0..n + Contract Extension + Renewal + Renewal + + + + + + + + + + + ABIE + Contracting Party. Details + An individual, a group, or a body having a procurement role in a tendering process. + Contracting Party + + + + + + + + + BBIE + Contracting Party. Contracting Party Type Code. Code + A code specifying the type of party that is independent of its role. + 0..1 + Contracting Party + Contracting Party Type Code + Code + Code. Type + + + + + + + + + BBIE + Contracting Party. Activity Code. Code + A code specifying the nature of the type of business of the organization. + 0..n + Contracting Party + Activity Code + Code + Code. Type + + + + + + + + + BBIE + Contracting Party. Buyer Profile_ URI. Identifier + Uniform Resource Identifier (URI) communication information for this party s buyer profile. A buyer profile is a website where the party publishes its procurement opportunities. + 0..1 + Contracting Party + Buyer Profile + URI + Identifier + Identifier. Type + Buyer Profile + + + + + + + + + ASBIE + Contracting Party. Party + An association to Party + 1 + Contracting Party + Party + Party + + + + + + + + + + + ABIE + Corporate Registration Scheme. Details + Information directly relating a scheme for corporate registration of businesses. + Corporate Registration Scheme + + + + + + + + + BBIE + Corporate Registration Scheme. Identifier + Identifies the scheme. + 0..1 + Corporate Registration Scheme + Identifier + Identifier + Identifier. Type + ASIC in Australia + + + + + + + + + BBIE + Corporate Registration Scheme. Name + Identifies the scheme by name. + 0..1 + Corporate Registration Scheme + Name + Name + Name. Type + Australian Securities and Investment Commission in Australia + + + + + + + + + BBIE + Corporate Registration Scheme. Corporate Registration Type Code. Code + Identifies the type of scheme. + 0..1 + Corporate Registration Scheme + Corporate Registration Type Code + Code + Code. Type + ACN + + + + + + + + + ASBIE + Corporate Registration Scheme. Jurisdiction Region_ Address. Address + Associates the registration scheme with particulars that identify and locate the geographic area to which the scheme applies. + 0..n + Corporate Registration Scheme + Jurisdiction Region + Address + Address + England , Wales + + + + + + + + + + + ABIE + Correction. Details + The Statement of correction, for examples heating correction. + Correction + + + + + + + + + BBIE + Correction. Correction Type. Text + Statement for the correction type. + 0..1 + Correction + Correction Type + Text + Text. Type + Heating Correction + + + + + + + + + BBIE + Correction. Correction Type Code. Code + Statement at the code for the correction type. + 0..1 + Correction + Correction Type Code + Code + Code. Type + HeatingCorrection + + + + + + + + + BBIE + Correction. Meter Number. Text + Statement for meter number. + 0..1 + Correction + Meter Number + Text + Text. Type + 530071575 + + + + + + + + + BBIE + Correction. Gas Pressure. Quantity + Correction of the gas pressure. + 0..1 + Correction + Gas Pressure + Quantity + Quantity. Type + + + + + + + + + BBIE + Correction. Actual_ Temperature Reduction. Quantity + Statement for the actuel heating correction temperature. + 0..1 + Correction + Actual + Temperature Reduction + Quantity + Quantity. Type + -36.69 + + + + + + + + + BBIE + Correction. Normal_ Temperature Reduction. Quantity + Statement for the standard for heating correction temperature. + 0..1 + Correction + Normal + Temperature Reduction + Quantity + Quantity. Type + -37.00 + + + + + + + + + BBIE + Correction. Difference_ Temperature Reduction. Quantity + Deviation from standard heating correction. + 0..1 + Correction + Difference + Temperature Reduction + Quantity + Quantity. Type + 0.31 + + + + + + + + + BBIE + Correction. Description. Text + Description related to the corrections. + 0..1 + Correction + Description + Text + Text. Type + + + + + + + + + BBIE + Correction. Correction Unit Amount. Amount + Correction per MWH per degree C. + 0..1 + Correction + Correction Unit Amount + Amount + Amount. Type + 0.0000 + + + + + + + + + BBIE + Correction. Consumption Energy. Quantity + Your consumpt for district heating energy. + 0..1 + Correction + Consumption Energy + Quantity + Quantity. Type + 563.6240 + + + + + + + + + BBIE + Correction. Consumption Water. Quantity + Your consumpt for district heating water. + 0..1 + Correction + Consumption Water + Quantity + Quantity. Type + 13212.14 + + + + + + + + + BBIE + Correction. Correction Amount. Amount + Your correction for heating correction. + 0..1 + Correction + Correction Amount + Amount + Amount. Type + 0.00 + + + + + + + + + + + ABIE + Country. Details + Information about a geopolitical country. + Country + + + + + + + + + BBIE + Country. Identification Code. Code + An identifier for the Country. + 0..1 + Country + Identification Code + Code + Country Identification_ Code. Type + + + + + + + + + BBIE + Country. Name + The name of the Country. + 0..1 + Country + Name + Name + Name. Type + SOUTH AFRICA + + + + + + + + + + + ABIE + Credit Account. Details + Information about a Credit Account (for sales on account). + Credit Account + + + + + + + + + BBIE + Credit Account. Account Identifier. Identifier + Identifies the Credit Account. + 1 + Credit Account + Account Identifier + Identifier + Identifier. Type + Customer Code 29 + + + + + + + + + + + ABIE + Credit Note Line. Details + Information about a Credit Note Line. + Credit Note Line + + + + + + + + + BBIE + Credit Note Line. Identifier + Identifies the Credit Note Line. + 1 + Credit Note Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Credit Note Line. UUID. Identifier + A universally unique identifier for an instance of this ABIE. + 0..1 + Credit Note Line + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Credit Note Line. Note. Text + Free-form text applying to the Credit Note Line. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Credit Note Line + Note + Text + Text. Type + + + + + + + + + BBIE + Credit Note Line. Credited_ Quantity. Quantity + The quantity of Items credited. + 0..1 + Credit Note Line + Credited + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Credit Note Line. Line Extension Amount. Amount + The total amount for the Credit Note Line, including Allowance Charges but net of taxes. + 0..1 + Credit Note Line + Line Extension Amount + Amount + Amount. Type + + + + + + + + + BBIE + Credit Note Line. Tax Point Date. Date + The date of the Credit Note Line, used to indicate the point at which tax becomes applicable. + 0..1 + Credit Note Line + Tax Point Date + Date + Date. Type + + + + + + + + + BBIE + Credit Note Line. Accounting Cost Code. Code + The buyer s accounting code applied to the Credit Note Line. + 0..1 + Credit Note Line + Accounting Cost Code + Code + Code. Type + + + + + + + + + BBIE + Credit Note Line. Accounting Cost. Text + The buyer s accounting cost centre applied to the Credit Note Line, expressed as text. + 0..1 + Credit Note Line + Accounting Cost + Text + Text. Type + + + + + + + + + BBIE + Credit Note Line. Payment Purpose Code. Code + The business purposes for payment express as code. + 0..1 + Credit Note Line + Payment Purpose Code + Code + Code. Type + + + + + + + + + BBIE + Credit Note Line. Free Of Charge_ Indicator. Indicator + Indicates whether the Invoice Line is Free Of Charge (default = false). + 0..1 + Credit Note Line + Free Of Charge + Indicator + Indicator + Indicator. Type + + + + + + + + + ASBIE + Credit Note Line. Invoice_ Period. Period + An association to period(s) to which the Credit Note Line applies. + 0..n + Credit Note Line + Invoice + Period + Period + + + + + + + + + ASBIE + Credit Note Line. Order Line Reference + An association to Order Line Reference. + 0..n + Credit Note Line + Order Line Reference + Order Line Reference + + + + + + + + + ASBIE + Credit Note Line. Discrepancy_ Response. Response + An association to Discrepancy Response; the reason for the Credit. + 0..n + Credit Note Line + Discrepancy + Response + Response + + + + + + + + + ASBIE + Credit Note Line. Despatch_ Line Reference. Line Reference + An associative reference to Despatch Line. + 0..n + Credit Note Line + Despatch + Line Reference + Line Reference + + + + + + + + + ASBIE + Credit Note Line. Receipt_ Line Reference. Line Reference + An associative reference to Receipt Line. + 0..n + Credit Note Line + Receipt + Line Reference + Line Reference + + + + + + + + + ASBIE + Credit Note Line. Billing Reference + An association to Billing Reference. + 0..n + Credit Note Line + Billing Reference + Billing Reference + + + + + + + + + ASBIE + Credit Note Line. Document Reference + An association to Document Reference. + 0..n + Credit Note Line + Document Reference + Document Reference + + + + + + + + + ASBIE + Credit Note Line. Pricing Reference + An association to Pricing Reference. + 0..1 + Credit Note Line + Pricing Reference + Pricing Reference + + + + + + + + + ASBIE + Credit Note Line. Originator_ Party. Party + The party who originated the Order to which the Credit Note is related. + 0..1 + Credit Note Line + Originator + Party + Party + + + + + + + + + ASBIE + Credit Note Line. Delivery + An association to Delivery. + 0..n + Credit Note Line + Delivery + Delivery + + + + + + + + + ASBIE + Credit Note Line. Payment Terms + An association to Payment Terms. + 0..n + Credit Note Line + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Credit Note Line. Tax Total + An association to Tax Total. + 0..n + Credit Note Line + Tax Total + Tax Total + + + + + + + + + ASBIE + Credit Note Line. Allowance Charge + An association to Allowance Charge. + 0..n + Credit Note Line + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Credit Note Line. Item + An association to Item + 0..1 + Credit Note Line + Item + Item + + + + + + + + + ASBIE + Credit Note Line. Price + An association to Price. + 0..1 + Credit Note Line + Price + Price + + + + + + + + + ASBIE + Credit Note Line. Delivery Terms + An association to Delivery Terms. + 0..n + Credit Note Line + Delivery Terms + Delivery Terms + + + + + + + + + ASBIE + Credit Note Line. Sub_ Credit Note Line. Credit Note Line + An association to one or more Credit Note Lines. + 0..n + Credit Note Line + Sub + Credit Note Line + Credit Note Line + + + + + + + + + + + ABIE + Customer Party. Details + Information about the Customer Party. + Customer Party + + + + + + + + + BBIE + Customer Party. Customer Assigned_ Account Identifier. Identifier + An identifier for the Customer s account, assigned by the Customer itself. + 0..1 + Customer Party + Customer Assigned + Account Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Customer Party. Supplier Assigned_ Account Identifier. Identifier + An identifier for the Customer s account, assigned by the Supplier. + 0..1 + Customer Party + Supplier Assigned + Account Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Customer Party. Additional_ Account Identifier. Identifier + An identifier for the Customer s account, assigned by a third party. + 0..n + Customer Party + Additional + Account Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Customer Party. Party + An association to Party. + 0..1 + Customer Party + Party + Party + + + + + + + + + ASBIE + Customer Party. Delivery_ Contact. Contact + An association to Delivery Contact. + 0..1 + Customer Party + Delivery + Contact + Contact + + + + + + + + + ASBIE + Customer Party. Accounting_ Contact. Contact + An association to Accounting Contact (Customer). + 0..1 + Customer Party + Accounting + Contact + Contact + + + + + + + + + ASBIE + Customer Party. Buyer_ Contact. Contact + An association to Buyer Contact. + 0..1 + Customer Party + Buyer + Contact + Contact + + + + + + + + + + + ABIE + Debit Note Line. Details + Information about a Debit Note Line. + Debit Note Line + + + + + + + + + BBIE + Debit Note Line. Identifier + Identifies the Debit Note Line. + 1 + Debit Note Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Debit Note Line. UUID. Identifier + A universally unique identifier for an instance of this ABIE. + 0..1 + Debit Note Line + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Debit Note Line. Note. Text + Free-form text applying to the Debit Note Line. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Debit Note Line + Note + Text + Text. Type + + + + + + + + + BBIE + Debit Note Line. Debited_ Quantity. Quantity + The quantity of Items debited. + 0..1 + Debit Note Line + Debited + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Debit Note Line. Line Extension Amount. Amount + The total amount for the Debit Note Line, including Allowance Charges but net of taxes. + 1 + Debit Note Line + Line Extension Amount + Amount + Amount. Type + + + + + + + + + BBIE + Debit Note Line. Tax Point Date. Date + The date of the Debit Note Line, used to indicate the point at which tax becomes applicable. + 0..1 + Debit Note Line + Tax Point Date + Date + Date. Type + + + + + + + + + BBIE + Debit Note Line. Accounting Cost Code. Code + The buyer s accounting code applied to the Debit Note Line. + 0..1 + Debit Note Line + Accounting Cost Code + Code + Code. Type + + + + + + + + + BBIE + Debit Note Line. Accounting Cost. Text + The buyer s accounting cost centre applied to the Debit Note Line, expressed as text. + 0..1 + Debit Note Line + Accounting Cost + Text + Text. Type + + + + + + + + + BBIE + Debit Note Line. Payment Purpose Code. Code + The business purposes for payment express as code. + 0..1 + Debit Note Line + Payment Purpose Code + Code + Code. Type + + + + + + + + + ASBIE + Debit Note Line. Discrepancy_ Response. Response + An association to Discrepancy Response; the reason for the Debit. + 0..n + Debit Note Line + Discrepancy + Response + Response + + + + + + + + + ASBIE + Debit Note Line. Despatch_ Line Reference. Line Reference + An associative reference to Despatch Line. + 0..n + Debit Note Line + Despatch + Line Reference + Line Reference + + + + + + + + + ASBIE + Debit Note Line. Receipt_ Line Reference. Line Reference + An associative reference to Receipt Line. + 0..n + Debit Note Line + Receipt + Line Reference + Line Reference + + + + + + + + + ASBIE + Debit Note Line. Billing Reference + An association to Billing Reference. + 0..n + Debit Note Line + Billing Reference + Billing Reference + + + + + + + + + ASBIE + Debit Note Line. Document Reference + An association to Document Reference. + 0..n + Debit Note Line + Document Reference + Document Reference + + + + + + + + + ASBIE + Debit Note Line. Pricing Reference + An association to Pricing Reference. + 0..1 + Debit Note Line + Pricing Reference + Pricing Reference + + + + + + + + + ASBIE + Debit Note Line. Delivery + An association to Delivery. + 0..n + Debit Note Line + Delivery + Delivery + + + + + + + + + ASBIE + Debit Note Line. Tax Total + An association to Tax Total. + 0..n + Debit Note Line + Tax Total + Tax Total + + + + + + + + + ASBIE + Debit Note Line. Allowance Charge + Information about a charge or discount price component. + 0..n + Debit Note Line + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Debit Note Line. Item + An association to Item + 0..1 + Debit Note Line + Item + Item + + + + + + + + + ASBIE + Debit Note Line. Price + An association to Price. + 0..1 + Debit Note Line + Price + Price + + + + + + + + + ASBIE + Debit Note Line. Sub_ Debit Note Line. Debit Note Line + An association to one or more Debit Note Lines. + 0..n + Debit Note Line + Sub + Debit Note Line + Debit Note Line + + + + + + + + + + + ABIE + Declaration. Details + A declaration defined by an economic operator. + Declaration + + + + + + + + + BBIE + Declaration. Name + Name of the declaration. + 0..n + Declaration + Name + Name + Name. Type + + + + + + + + + BBIE + Declaration. Declaration Type Code. Code + A code specifying the declaration. + 0..1 + Declaration + Declaration Type Code + Code + Code. Type + + + + + + + + + BBIE + Declaration. Description. Text + A textual description of the declaration. + 0..n + Declaration + Description + Text + Text. Type + + + + + + + + + BBIE + Declaration. Evidence Supplied. Identifier + An ID reference to the Evidence that justifies this declaration. + 0..n + Declaration + Evidence Supplied + Identifier + Identifier. Type + + + + + + + + + + + ABIE + Delivery. Details + Information about Delivery. + Delivery + + + + + + + + + BBIE + Delivery. Identifier + Identifies the Delivery. + 0..1 + Delivery + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Delivery. Quantity + The quantity in a Delivery. + 0..1 + Delivery + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Delivery. Minimum_ Quantity. Quantity + The minimum quantity in a Delivery. + 0..1 + Delivery + Minimum + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Delivery. Maximum_ Quantity. Quantity + The maximum quantity in a Delivery. + 0..1 + Delivery + Maximum + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Delivery. Actual_ Delivery Date. Date + The actual Delivery date. + 0..1 + Delivery + Actual + Delivery Date + Date + Date. Type + + + + + + + + + BBIE + Delivery. Actual_ Delivery Time. Time + The actual Delivery time. + 0..1 + Delivery + Actual + Delivery Time + Time + Time. Type + + + + + + + + + BBIE + Delivery. Latest_ Delivery Date. Date + The latest delivery date allowed by the buyer. + 0..1 + Delivery + Latest + Delivery Date + Date + Date. Type + + + + + + + + + BBIE + Delivery. Latest_ Delivery Time. Time + The latest delivery time allowed by the buyer. + 0..1 + Delivery + Latest + Delivery Time + Time + Time. Type + + + + + + + + + BBIE + Delivery. Release. Identifier + The Release ID is used for identifying legit access to delivery locations, e.g. Port terminals. + 0..1 + Delivery + Release + Identifier + Identifier. Type + + + + + + + + + BBIE + Delivery. Tracking Identifier. Identifier + The delivery Tracking ID (for transport tracking). + 0..1 + Delivery + Tracking Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Delivery. Delivery_ Address. Address + An association to Delivery Address. + 0..1 + Delivery + Delivery + Address + Address + + + + + + + + + ASBIE + Delivery. Delivery_ Location. Location + An association to Location. + 0..1 + Delivery + Delivery + Location + Location + + + + + + + + + ASBIE + Delivery. Alternative Delivery_ Location. Location + An association to an alternative delivery location. + 0..1 + Delivery + Alternative Delivery + Location + Location + + + + + + + + + ASBIE + Delivery. Requested Delivery_ Period. Period + The requested Period for Delivery. + 0..1 + Delivery + Requested Delivery + Period + Period + + + + + + + + + ASBIE + Delivery. Promised Delivery_ Period. Period + The promised Period for Delivery. + 0..1 + Delivery + Promised Delivery + Period + Period + + + + + + + + + ASBIE + Delivery. Estimated Delivery_ Period. Period + The estimated Period for Delivery. + 0..1 + Delivery + Estimated Delivery + Period + Period + + + + + + + + + ASBIE + Delivery. Carrier_ Party. Party + The party responsible for delivering the goods. + 0..1 + Delivery + Carrier + Party + Party + + + + + + + + + ASBIE + Delivery. Delivery_ Party. Party + The party to whom the goods/services are delivered. + 0..1 + Delivery + Delivery + Party + Party + + + + + + + + + ASBIE + Delivery. Notify_ Party. Party + Any party that should be notified of the Delivery. + 0..n + Delivery + Notify + Party + Party + + + + + + + + + ASBIE + Delivery. Despatch + An association to the Despatch. + 0..1 + Delivery + Despatch + Despatch + + + + + + + + + ASBIE + Delivery. Delivery Terms + An association to the Delivery Terms + 0..n + Delivery + Delivery Terms + Delivery Terms + + + + + + + + + ASBIE + Delivery. Minimum_ Delivery Unit. Delivery Unit + An association to Delivery Unit + 0..1 + Delivery + Minimum + Delivery Unit + Delivery Unit + + + + + + + + + ASBIE + Delivery. Maximum_ Delivery Unit. Delivery Unit + An association to Delivery Unit + 0..1 + Delivery + Maximum + Delivery Unit + Delivery Unit + + + + + + + + + ASBIE + Delivery. Shipment + An association to Shipment. + 0..1 + Delivery + Shipment + Shipment + + + + + + + + + + + ABIE + Delivery Terms. Details + Information about Delivery Terms. + Delivery Terms + + + + + + + + + BBIE + Delivery Terms. Identifier + Identifies the Delivery Terms. + 0..1 + Delivery Terms + Identifier + Identifier + Identifier. Type + CIF, FOB, or EXW from the INCOTERMS Terms of Delivery. (2000 version preferred.) + + + + + + + + + BBIE + Delivery Terms. Special_ Terms. Text + A description of special conditions relating to the Delivery Terms. + 0..1 + Delivery Terms + Special + Terms + Text + Text. Type + + + + + + + + + BBIE + Delivery Terms. Loss Risk Responsibility Code. Code + An identifier for the responsibility for loss risk in the context of the Delivery Terms, expressed as a code. + 0..1 + Delivery Terms + Loss Risk Responsibility Code + Code + Code. Type + + + + + + + + + BBIE + Delivery Terms. Loss Risk. Text + A description of the loss risk in the context of the Delivery Terms. + 0..1 + Delivery Terms + Loss Risk + Text + Text. Type + + + + + + + + + BBIE + Delivery Terms. Amount + + 0..1 + Delivery Terms + Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Delivery Terms. Delivery_ Location. Location + An association to Location, e.g., a port. + 0..1 + Delivery Terms + Delivery + Location + Location + + + + + + + + + ASBIE + Delivery Terms. Allowance Charge + An association to Allowance Charge. + 0..1 + Delivery Terms + Allowance Charge + Allowance Charge + + + + + + + + + + + ABIE + Delivery Unit. Details + Information about a Delivery Unit. + Delivery Unit + + + + + + + + + BBIE + Delivery Unit. Batch Quantity. Quantity + The quantity of ordered Items that constitutes a batch for delivery purposes. + 1 + Delivery Unit + Batch Quantity + Quantity + Quantity. Type + 100 units , by the dozen + + + + + + + + + BBIE + Delivery Unit. Consumer_ Unit. Quantity + The quantity of consumer units in the Delivery Unit. + 0..1 + Delivery Unit + Consumer + Unit + Quantity + Quantity. Type + packs of 10 + + + + + + + + + BBIE + Delivery Unit. Hazardous Risk_ Indicator. Indicator + Indicates whether the Item as delivered is hazardous. + 0..1 + Delivery Unit + Hazardous Risk + Indicator + Indicator + Indicator. Type + Default is negative + + + + + + + + + + + ABIE + Dependent Price Reference. Details + Information about the price of an item as a percentage of the price of another item. + Dependent Price Reference + + + + + + + + + BBIE + Dependent Price Reference. Percent + The price, expressed as a percentage of the price of referred item. + 0..1 + Dependent Price Reference + Percent + Percent + Percent. Type + + + + + + + + + ASBIE + Dependent Price Reference. Location_ Address. Address + An association to Address. + 0..1 + Dependent Price Reference + Location + Address + Address + + + + + + + + + ASBIE + Dependent Price Reference. Dependent_ Line Reference. Line Reference + Reference to a Line on a document. + 0..1 + Dependent Price Reference + Dependent + Line Reference + Line Reference + + + + + + + + + + + ABIE + Despatch. Details + Information about Despatch. + Despatch + + + + + + + + + BBIE + Despatch. Identifier + The identifier for the Delivery. + 0..1 + Despatch + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Despatch. Requested_ Despatch Date. Date + The despatch (pick-up) date requested by the buyer. + 0..1 + Despatch + Requested + Despatch Date + Date + Date. Type + + + + + + + + + BBIE + Despatch. Requested_ Despatch Time. Time + The despatch (pick-up) time requested by the buyer. + 0..1 + Despatch + Requested + Despatch Time + Time + Time. Type + + + + + + + + + BBIE + Despatch. Estimated_ Despatch Date. Date + The despatch (pick-up) date estimated by the seller or Despatch. + 0..1 + Despatch + Estimated + Despatch Date + Date + Date. Type + + + + + + + + + BBIE + Despatch. Estimated_ Despatch Time. Time + The despatch (pick-up) time estimated by the seller or Despatch. + 0..1 + Despatch + Estimated + Despatch Time + Time + Time. Type + + + + + + + + + BBIE + Despatch. Actual_ Despatch Date. Date + The actual despatch (pick-up) date. + 0..1 + Despatch + Actual + Despatch Date + Date + Date. Type + + + + + + + + + BBIE + Despatch. Actual_ Despatch Time. Time + The actual despatch (pick-up) time. + 0..1 + Despatch + Actual + Despatch Time + Time + Time. Type + + + + + + + + + BBIE + Despatch. Guaranteed_ Despatch Date. Date + + 0..1 + Despatch + Guaranteed + Despatch Date + Date + Date. Type + + + + + + + + + BBIE + Despatch. Guaranteed_ Despatch Time. Time + + 0..1 + Despatch + Guaranteed + Despatch Time + Time + Time. Type + + + + + + + + + BBIE + Despatch. Release. Identifier + The Release ID is used for identifying legit access to despatch/pickup locations, e.g. Port terminals. + 0..1 + Despatch + Release + Identifier + Identifier. Type + + + + + + + + + BBIE + Despatch. Instructions. Text + + 0..1 + Despatch + Instructions + Text + Text. Type + + + + + + + + + ASBIE + Despatch. Despatch_ Address. Address + An association to Despatch Address. + 0..1 + Despatch + Despatch + Address + Address + + + + + + + + + ASBIE + Despatch. Despatch_ Location. Location + An association to Despatch Location. + 0..1 + Despatch + Despatch + Location + Location + + + + + + + + + ASBIE + Despatch. Despatch_ Party. Party + The party who despatched the delivery. + 0..1 + Despatch + Despatch + Party + Party + + + + + + + + + ASBIE + Despatch. Carrier_ Party. Party + The party who received the despatch. + 0..1 + Despatch + Carrier + Party + Party + + + + + + + + + ASBIE + Despatch. Notify_ Party. Party + Any party that should be notified of the Despatch. + 0..n + Despatch + Notify + Party + Party + + + + + + + + + ASBIE + Despatch. Contact + An association to Contact. + 0..1 + Despatch + Contact + Contact + + + + + + + + + ASBIE + Despatch. Estimated Despatch_ Period. Period + The estimated Period for Despatch/Pickup. + 0..1 + Despatch + Estimated Despatch + Period + Period + + + + + + + + + ASBIE + Despatch. Requested Despatch_ Period. Period + The requested Period for Despatch/Pickup. + 0..1 + Despatch + Requested Despatch + Period + Period + + + + + + + + + + + ABIE + Despatch Line. Details + Information about a Despatch Line. + Despatch Line + + + + + + + + + BBIE + Despatch Line. Identifier + Identifies the Despatch Line. + 1 + Despatch Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Despatch Line. UUID. Identifier + A universally unique identifier for an instance of this ABIE. + 0..1 + Despatch Line + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Despatch Line. Note. Text + Free-form text applying to the Despatch Line. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Despatch Line + Note + Text + Text. Type + + + + + + + + + BBIE + Despatch Line. Line Status Code. Code + Identifies the status of the Despatch Line with respect to its original state. + 0..1 + Despatch Line + Line Status Code + Code + Line Status_ Code. Type + + + + + + + + + BBIE + Despatch Line. Delivered_ Quantity. Quantity + The quantity despatched. + 0..1 + Despatch Line + Delivered + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Despatch Line. Backorder_ Quantity. Quantity + The quantity on Back Order at the Supplier. + 0..1 + Despatch Line + Backorder + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Despatch Line. Backorder_ Reason. Text + The reason for the Back Order. + 0..1 + Despatch Line + Backorder + Reason + Text + Text. Type + + + + + + + + + BBIE + Despatch Line. Outstanding_ Quantity. Quantity + The quantity outstanding (which will follow in a later despatch). + 0..1 + Despatch Line + Outstanding + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Despatch Line. Outstanding_ Reason. Text + The reason for the Outstanding Quantity. + 0..1 + Despatch Line + Outstanding + Reason + Text + Text. Type + + + + + + + + + BBIE + Despatch Line. Oversupply_ Quantity. Quantity + The quantity over-supplied. + 0..1 + Despatch Line + Oversupply + Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Despatch Line. Order Line Reference + An association to Order Line Reference. + 1..n + Despatch Line + Order Line Reference + Order Line Reference + + + + + + + + + ASBIE + Despatch Line. Document Reference + An association to Document Reference. + 0..n + Despatch Line + Document Reference + Document Reference + + + + + + + + + ASBIE + Despatch Line. Item + An association to Item. + 1 + Despatch Line + Item + Item + + + + + + + + + ASBIE + Despatch Line. Shipment + An association to Shipment. + 0..n + Despatch Line + Shipment + Shipment + + + + + + + + + + + ABIE + Dimension. Details + Information about a measurable dimension of an item. + Dimension + + + + + + + + + BBIE + Dimension. Attribute Identifier. Identifier + An identifier for the attribute to which the measure applies. + 1 + Dimension + Attribute Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Dimension. Measure + The measurement value. + 0..1 + Dimension + Measure + Measure + Measure. Type + + + + + + + + + BBIE + Dimension. Description. Text + A description of the measurement attribute. + 0..n + Dimension + Description + Text + Text. Type + + + + + + + + + BBIE + Dimension. Minimum_ Measure. Measure + The minimum value in a range of measurement. + 0..1 + Dimension + Minimum + Measure + Measure + Measure. Type + + + + + + + + + BBIE + Dimension. Maximum_ Measure. Measure + The maximum value in a range of measurement. + 0..1 + Dimension + Maximum + Measure + Measure + Measure. Type + + + + + + + + + + + ABIE + Document Distribution. Details + The details of the distribution of the document among business partners. + Document Distribution + + + + + + + + + BBIE + Document Distribution. Print_ Qualifier. Text + The access right for a Party to distribute the document. + 1 + Document Distribution + Print + Qualifier + Text + Text. Type + + + + + + + + + BBIE + Document Distribution. Maximum_ Copies. Numeric + Specifies the maximum number of copies of the document that the user can print. + 1 + Document Distribution + Maximum + Copies + Numeric + Numeric. Type + + + + + + + + + ASBIE + Document Distribution. Party + Details of the Party who can access the document. + 1 + Document Distribution + Party + Party + + + + + + + + + + + ABIE + Document Reference. Details + Information about a document referred to in another document. + Document Reference + + + + + + + + + BBIE + Document Reference. Identifier + Identifies the document being referred to. + 1 + Document Reference + Identifier + Identifier + Identifier. Type + PO-001 3333-44-123 + + + + + + + + + BBIE + Document Reference. Copy_ Indicator. Indicator + Indicates whether the referenced document is a copy (true) or the original (false). + 0..1 + Document Reference + Copy + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Document Reference. UUID. Identifier + A universally unique identifier for an instance of this ABIE. + 0..1 + Document Reference + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Document Reference. Issue Date. Date + The date, assigned by the sender of the referenced document, on which the referenced document was issued. + 0..1 + Document Reference + Issue Date + Date + Date. Type + + + + + + + + + BBIE + Document Reference. Issue Time. Time + The time, assigned by the sender of the referenced document, on which the referenced document was issued. + 0..1 + Document Reference + Issue Time + Time + Time. Type + + + + + + + + + BBIE + Document Reference. Document Type Code. Code + The referenced document type, expressed as a code. + 0..1 + Document Reference + Document Type Code + Code + Code. Type + + + + + + + + + BBIE + Document Reference. Document Type. Text + The referenced document type, expressed as text. + 0..1 + Document Reference + Document Type + Text + Text. Type + + + + + + + + + BBIE + Document Reference. XPath. Text + Refers to another part of the same document instance. + 0..n + Document Reference + XPath + Text + Text. Type + + + + + + + + + BBIE + Document Reference. Language. Identifier + Identifies the language used in the referenced document. + 0..1 + Document Reference + Language + Identifier + Identifier. Type + + + + + + + + + BBIE + Document Reference. Locale Code. Code + The locale where the language is used, expressed as a code. + 0..1 + Document Reference + Locale Code + Code + Code. Type + + + + + + + + + BBIE + Document Reference. Version. Identifier + Indicates the current version of the referred document. + 0..1 + Document Reference + Version + Identifier + Identifier. Type + 1.1 + + + + + + + + + BBIE + Document Reference. Document Status Code. Code + Identifies the status of the referred document with respect to its original state. + 0..1 + Document Reference + Document Status Code + Code + Document Status_ Code. Type + + + + + + + + + BBIE + Document Reference. Document_ Description. Text + Textual description of the referred document. + 0..n + Document Reference + Document + Description + Text + Text. Type + stock no longer provided + + + + + + + + + ASBIE + Document Reference. Attachment + An attached document, externally referred to, referred to in the MIME location, or embedded. + 0..1 + Document Reference + Attachment + Attachment + + + + + + + + + ASBIE + Document Reference. Validity_ Period. Period + An association to Validity Period. + 0..1 + Document Reference + Validity + Period + Period + + + + + + + + + ASBIE + Document Reference. Issuer_ Party. Party + Details of the Party who issued the referenced document. + 0..1 + Document Reference + Issuer + Party + Party + + + + + + + + + ASBIE + Document Reference. Result Of Verification + + 0..1 + Document Reference + Result Of Verification + Result Of Verification + + + + + + + + + + + ABIE + Document Response. Details + Information about responses to a document (at the application level). + Document Response + + + + + + + + + ASBIE + Document Response. Response + The response to the document. + 1 + Document Response + Response + Response + + + + + + + + + ASBIE + Document Response. Document Reference + An association to Document Reference. + 1..n + Document Response + Document Reference + Document Reference + + + + + + + + + ASBIE + Document Response. Issuer_ Party. Party + The party who issued a document. + 0..1 + Document Response + Issuer + Party + Party + + + + + + + + + ASBIE + Document Response. Recipient_ Party. Party + The party for whom the document is intended. + 0..1 + Document Response + Recipient + Party + Party + + + + + + + + + ASBIE + Document Response. Line Response + Response to various lines in the document. + 0..n + Document Response + Line Response + Line Response + + + + + + + + + + + ABIE + Duty. Details + Statement of duties - both call duties and time duties. + Duty + + + + + + + + + BBIE + Duty. Amount + The duty amount. + 1 + Duty + Amount + Amount + Amount. Type + 88.23 + + + + + + + + + BBIE + Duty. Duty. Text + The duty. + 0..1 + Duty + Duty + Text + Text. Type + ConnectionFee + + + + + + + + + BBIE + Duty. Duty Code. Code + The duty code. + 0..1 + Duty + Duty Code + Code + Code. Type + ConnectionFee + + + + + + + + + ASBIE + Duty. Tax Category + An association to Tax Category. + 0..1 + Duty + Tax Category + Tax Category + + + + + + + + + + + ABIE + Economic Operator Short List. Details + Information about the creation of a short list of economic operators for a tendering process + Economic Operator Short List + + + + + + + + + BBIE + Economic Operator Short List. Limitation_ Description. Text + Criteria to select a restricted number of candidates + 0..n + Economic Operator Short List + Limitation + Description + Text + Text. Type + + + + + + + + + BBIE + Economic Operator Short List. Expected_ Quantity. Quantity + Expected number of economic operators in this tendering process. + 0..1 + Economic Operator Short List + Expected + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Economic Operator Short List. Maximum_ Quantity. Quantity + Maximum number of economic operators in this tendering process. + 0..1 + Economic Operator Short List + Maximum + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Economic Operator Short List. Minimum_ Quantity. Quantity + Minimum number of economic operators in thistendering process. + 0..1 + Economic Operator Short List + Minimum + Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Economic Operator Short List. Pre Selected_ Party. Party + Parties preselected in a negotiated procedure. + 0..n + Economic Operator Short List + Pre Selected + Party + Party + + + + + + + + + + + ABIE + Endorsement. Details + Details of an endorsement on the document. + Endorsement + + + + + + + + + BBIE + Endorsement. Document. Identifier + Identifies the endorsement. + 1 + Endorsement + Document + Identifier + Identifier. Type + + + + + + + + + BBIE + Endorsement. Approval Status. Text + Specifies the status of the endorsement. + 1 + Endorsement + Approval Status + Text + Text. Type + Authentication Code + + + + + + + + + BBIE + Endorsement. Remarks. Text + Remarks by the endorsing party. + 0..n + Endorsement + Remarks + Text + Text. Type + + + + + + + + + ASBIE + Endorsement. Endorser Party + The type of party providing the endorsement. + 1 + Endorsement + Endorser Party + Endorser Party + + + + + + + + + ASBIE + Endorsement. Signature + One or more signatures applied to the endorsement. + 0..n + Endorsement + Signature + Signature + + + + + + + + + + + ABIE + Endorser Party. Details + The party endorsing a document. + Endorser Party + + + + + + + + + BBIE + Endorser Party. Role Code. Code + The role of the party providing the endorsement, e.g., Issuer, Embassy, Insurance, etc. + 1 + Endorser Party + Role Code + Code + Code. Type + + + + + + + + + BBIE + Endorser Party. Sequence. Numeric + The sequence in which the endorsements are to be applied. + 1 + Endorser Party + Sequence + Numeric + Numeric. Type + + + + + + + + + ASBIE + Endorser Party. Party + Details of the party endorsing the application. + 1 + Endorser Party + Party + Party + + + + + + + + + ASBIE + Endorser Party. Signatory_ Contact. Contact + Details of the individual representing the exporter who signs the Certificate of Origin application before submitting it to the Issuer Party. + 1 + Endorser Party + Signatory + Contact + Contact + + + + + + + + + + + ABIE + Energy Tax Report. Details + A report of energy taxes. + Energy Tax Report + + + + + + + + + BBIE + Energy Tax Report. Tax Energy Amount. Amount + Statement of the amount for the tax and duties. + 0..1 + Energy Tax Report + Tax Energy Amount + Amount + Amount. Type + 3087.90 + + + + + + + + + BBIE + Energy Tax Report. Tax Energy_ On Account Amount. Amount + Statement of the amount for the tax and duties, who is payed a conto. + 0..1 + Energy Tax Report + Tax Energy + On Account Amount + Amount + Amount. Type + 2855.40 + + + + + + + + + BBIE + Energy Tax Report. Tax Energy Balance. Amount + Statement of the tax amout balace. + 0..1 + Energy Tax Report + Tax Energy Balance + Amount + Amount. Type + 232.49 + + + + + + + + + ASBIE + Energy Tax Report. Tax Scheme + Information about a tax scheme. + 1 + Energy Tax Report + Tax Scheme + Tax Scheme + + + + + + + + + + + ABIE + Energy Water Supply. Details + + Energy Water Supply + + + + + + + + + ASBIE + Energy Water Supply. Consumption Report + Staticstisc about the consumers consumption and the development in comsumption. + 0..n + Energy Water Supply + Consumption Report + Consumption Report + + + + + + + + + ASBIE + Energy Water Supply. Energy Tax Report + A report of energy taxes. + 0..n + Energy Water Supply + Energy Tax Report + Energy Tax Report + + + + + + + + + ASBIE + Energy Water Supply. Consumption Average + The Average price included VAT. + 0..n + Energy Water Supply + Consumption Average + Consumption Average + + + + + + + + + ASBIE + Energy Water Supply. Energy Water_ Correction. Correction + The Statement of correction, for examples heating correction. + 0..n + Energy Water Supply + Energy Water + Correction + Correction + + + + + + + + + + + ABIE + Environmental Emission. Details + Specifies the environmental emission (footprint). + Environmental Emission + + + + + + + + + BBIE + Environmental Emission. Environmental Emission Type Code. Code + Defines the type of environmental emission. For example CO2, NOX, etc. + 1 + Environmental Emission + Environmental Emission Type Code + Code + Code. Type + + + + + + + + + BBIE + Environmental Emission. Value. Measure + Specifies the value of the environmental emission. + 1 + Environmental Emission + Value + Measure + Measure. Type + + + + + + + + + BBIE + Environmental Emission. Description. Text + Textual descriptions related to the environmental emission. + 0..n + Environmental Emission + Description + Text + Text. Type + + + + + + + + + + + ABIE + Evaluation Criteria. Details + Criteria that is required to a tenderer in order to admit or reject him in the tendering process. + Evaluation Criteria + + + + + + + + + BBIE + Evaluation Criteria. Evaluation Criteria Type Code. Code + Code that defines the financial or technical criteria, such as total revenue, qualified staff. + 0..1 + Evaluation Criteria + Evaluation Criteria Type Code + Code + Code. Type + + + + + + + + + BBIE + Evaluation Criteria. Description. Text + Textual description of the criteria. + 0..n + Evaluation Criteria + Description + Text + Text. Type + + + + + + + + + BBIE + Evaluation Criteria. Threshold_ Amount. Amount + Estimated threshold amount for that criteria in this tendering process. + 0..1 + Evaluation Criteria + Threshold + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Evaluation Criteria. Threshold_ Quantity. Quantity + Estimated threshold quantity for that criteria in this tendering process. + 0..1 + Evaluation Criteria + Threshold + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Evaluation Criteria. Expression Code. Code + Code describing the expression that would evaluate the criteria. + 0..n + Evaluation Criteria + Expression Code + Code + Code. Type + + + + + + + + + ASBIE + Evaluation Criteria. Duration_ Period. Period + Period during which the evaluation criteria should be positive. + 0..1 + Evaluation Criteria + Duration + Period + Period + + + + + + + + + ASBIE + Evaluation Criteria. Suggested_ Evidence. Evidence + Evidence that is suggested to be used to fulfil the criteria. + 0..n + Evaluation Criteria + Suggested + Evidence + Evidence + + + + + + + + + + + ABIE + Event. Details + A significant occurrence or happening related to an object process, or person. + Event + + + + + + + + + BBIE + Event. Identification. Identifier + A unique identifier for this event. + 0..1 + Event + Identification + Identifier + Identifier. Type + + + + + + + + + BBIE + Event. Occurrence Date. Date + A date of an occurrence of this event. + 0..1 + Event + Occurrence Date + Date + Date. Type + + + + + + + + + BBIE + Event. Occurrence Time. Time + A time of an occurrence of this event. + 0..1 + Event + Occurrence Time + Time + Time. Type + + + + + + + + + BBIE + Event. Type Code. Code + A type for this event, coded. + 0..1 + Event + Type Code + Code + Code. Type + + + + + + + + + BBIE + Event. Description. Text + A textual description of the event. + 0..n + Event + Description + Text + Text. Type + + + + + + + + + BBIE + Event. Completion_ Indicator. Indicator + Indicates if this event is completed + 0..1 + Event + Completion + Indicator + Indicator + Indicator. Type + + + + + + + + + ASBIE + Event. Current_ Status. Status + Association to current status information for this event. + 0..n + Event + Current + Status + Status + + + + + + + + + ASBIE + Event. Contact + Association to the contacts for this event. + 0..n + Event + Contact + Contact + + + + + + + + + ASBIE + Event. Occurence_ Location. Location + Location information where this event will occur or has occurred. + 0..1 + Event + Occurence + Location + Location + + + + + + + + + + + ABIE + Event Comment. Details + This information on EventComment for RetailEvent + Event Comment + + + + + + + + + BBIE + Event Comment. Comment. Text + Generic field for communicating additional information on a retail event + 1 + Event Comment + Comment + Text + Text. Type + + + + + + + + + BBIE + Event Comment. Issue Date. Date + The date that comment was made + 0..1 + Event Comment + Issue Date + Date + Date. Type + + + + + + + + + BBIE + Event Comment. Issue Time. Time + The time that comment was made + 0..1 + Event Comment + Issue Time + Time + Time. Type + + + + + + + + + + + ABIE + Event Line Item. Details + Information about an Event Line item + Event Line Item + + + + + + + + + BBIE + Event Line Item. Line Number. Numeric + Line Number of Event Line Item + 0..1 + Event Line Item + Line Number + Numeric + Numeric. Type + + + + + + + + + ASBIE + Event Line Item. Participating Locations_ Location. Location + An association to the Locations of the stores involved in the event. + 0..1 + Event Line Item + Participating Locations + Location + Location + + + + + + + + + ASBIE + Event Line Item. Retail Planned Impact + Planned Impact of Event Line Item. + 0..n + Event Line Item + Retail Planned Impact + Retail Planned Impact + + + + + + + + + ASBIE + Event Line Item. Supply_ Item. Item + Identifies the product. + 1 + Event Line Item + Supply + Item + Item + + + + + + + + + + + ABIE + Event Tactic. Details + Information about an event tactic. + Event Tactic + + + + + + + + + BBIE + Event Tactic. Comment. Text + Generic field to add additional information or to specify mutually defined eventTacticTypes that are not currently listed + 0..1 + Event Tactic + Comment + Text + Text. Type + + + + + + + + + BBIE + Event Tactic. Quantity + The currencies, units, etc. that describes what is need for the event or promotion + 0..1 + Event Tactic + Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Event Tactic. Event Tactic Enumeration + Information about an event tactic aggregate of enumerated valued aggregates. + 1 + Event Tactic + Event Tactic Enumeration + Event Tactic Enumeration + + + + + + + + + ASBIE + Event Tactic. Period + To specify any indicator related to this period of time + 0..1 + Event Tactic + Period + Period + + + + + + + + + + + ABIE + Event Tactic Enumeration. Details + Information about an event tactic aggregate of enumerated valued aggregates. + Event Tactic Enumeration + + + + + + + + + BBIE + Event Tactic Enumeration. Consumer Incentive Tactic Type Code. Code + The consumer incentive tactic type, expressed as a code. + 0..1 + Event Tactic Enumeration + Consumer Incentive Tactic Type Code + Code + Code. Type + + + + + + + + + BBIE + Event Tactic Enumeration. Display Tactic Type Code. Code + The display tactic type code, expressed as a code. + 0..1 + Event Tactic Enumeration + Display Tactic Type Code + Code + Code. Type + + + + + + + + + BBIE + Event Tactic Enumeration. Feature Tactic Type Code. Code + The feature tactic type, expressed as a code. + 0..1 + Event Tactic Enumeration + Feature Tactic Type Code + Code + Code. Type + + + + + + + + + BBIE + Event Tactic Enumeration. Trade Item Packing Labeling Type Code. Code + The trade item packing labeling type code, expressed as a code. + 0..1 + Event Tactic Enumeration + Trade Item Packing Labeling Type Code + Code + Code. Type + + + + + + + + + + + ABIE + Evidence. Details + Evidentiary support for capabilities or requirements, an economic operator has to provide for being accepted in a tendering process. + Evidence + + + + + + + + + BBIE + Evidence. Identifier + Identifies the Evidence. + 0..1 + Evidence + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Evidence. Evidence Type Code. Code + The coded type for this evidence. + 0..1 + Evidence + Evidence Type Code + Code + Code. Type + + + + + + + + + BBIE + Evidence. Name + The textual description for this Evidence. + 0..n + Evidence + Name + Name + Name. Type + + + + + + + + + ASBIE + Evidence. Evidence Issuing_ Party. Party + An association to the Party that has issued this evidence. + 0..1 + Evidence + Evidence Issuing + Party + Party + + + + + + + + + ASBIE + Evidence. Document Reference + An association to Document Reference handling the actual evidentiary document. + 0..1 + Evidence + Document Reference + Document Reference + + + + + + + + + + + ABIE + Exception Criteria Line. Details + Exception Criterion define the threshold for forecast variance, product activity and performance history beyond which an exception message should be triggered. + Exception Criteria Line + + + + + + + + + BBIE + Exception Criteria Line. Identifier + An identifier for the Exception Criteria Line + 1 + Exception Criteria Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Exception Criteria Line. Note. Text + Free-form text applying to the Exception Criteria Line. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Exception Criteria Line + Note + Text + Text. Type + + + + + + + + + BBIE + Exception Criteria Line. Threshold Value Comparison Code. Code + A value assigned to an Exception Criterion for the purpose of comparison selected from a list + 1 + Exception Criteria Line + Threshold Value Comparison Code + Code + Code. Type + + + + + + + + + BBIE + Exception Criteria Line. Threshold_ Quantity. Quantity + A value once exceeded that triggers an exception. + 1 + Exception Criteria Line + Threshold + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Exception Criteria Line. Exception Status Code. Code + Status Information specific to a shipment exception. + 0..1 + Exception Criteria Line + Exception Status Code + Code + Code. Type + + + + + + + + + BBIE + Exception Criteria Line. Collaboration_ Priority Code. Code + A descriptive priority code assigned through collaboration and selected from a list of codes + 0..1 + Exception Criteria Line + Collaboration + Priority Code + Code + Code. Type + + + + + + + + + BBIE + Exception Criteria Line. Exception_ Resolution Code. Code + A list that will provide an understanding as to how to resolve exception. + 0..n + Exception Criteria Line + Exception + Resolution Code + Code + Code. Type + + + + + + + + + BBIE + Exception Criteria Line. Supply Chain Activity Type Code. Code + Establishes the criterion for one of the three types of exceptions. + 0..1 + Exception Criteria Line + Supply Chain Activity Type Code + Code + Code. Type + + + + + + + + + BBIE + Exception Criteria Line. Performance Metric Type Code. Code + A code used to identify a measure of performance + 0..1 + Exception Criteria Line + Performance Metric Type Code + Code + Code. Type + + + + + + + + + ASBIE + Exception Criteria Line. Effective_ Period. Period + An association to Period. + 0..1 + Exception Criteria Line + Effective + Period + Period + + + + + + + + + ASBIE + Exception Criteria Line. Supply_ Item. Item + A value once exceeded that triggers an exception. + 1..n + Exception Criteria Line + Supply + Item + Item + + + + + + + + + ASBIE + Exception Criteria Line. Forecast Exception Criteria Line + Establishes the criterion for one of the three types of exceptions. This class provides criteria for the kind of forecast exception, the identification of the purpose of the forecast, the source of data and the time basis criteria for the exception. + 0..1 + Exception Criteria Line + Forecast Exception Criteria Line + Forecast Exception Criteria Line + + + + + + + + + + + ABIE + Exception Notification Line. Details + A Exception Notification data item + Exception Notification Line + + + + + + + + + BBIE + Exception Notification Line. Identifier + An identifier for the Exception Notification Line + 1 + Exception Notification Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Exception Notification Line. Note. Text + Free-form text applying to the Exception Notification Line. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Exception Notification Line + Note + Text + Text. Type + + + + + + + + + BBIE + Exception Notification Line. Description. Text + A string of text intended as an explanation or illustration for the exception + 0..1 + Exception Notification Line + Description + Text + Text. Type + + + + + + + + + BBIE + Exception Notification Line. Exception Status Code. Code + Status Information specific to a shipment exception. + 0..1 + Exception Notification Line + Exception Status Code + Code + Code. Type + + + + + + + + + BBIE + Exception Notification Line. Collaboration_ Priority Code. Code + A descriptive priority code assigned through collaboration and selected from a list of codes + 0..1 + Exception Notification Line + Collaboration + Priority Code + Code + Code. Type + + + + + + + + + BBIE + Exception Notification Line. Resolution Code. Code + A description selected from a list that will provide an understanding as to why an exception is generated + 0..1 + Exception Notification Line + Resolution Code + Code + Code. Type + + + + + + + + + BBIE + Exception Notification Line. Compared Value. Measure + The value that was compared with the source value that resulted in the exception + 1 + Exception Notification Line + Compared Value + Measure + Measure. Type + + + + + + + + + BBIE + Exception Notification Line. Source Value. Measure + The value used as the basis of comparison + 1 + Exception Notification Line + Source Value + Measure + Measure. Type + + + + + + + + + BBIE + Exception Notification Line. Variance. Quantity + The variance of a data item from an expected value during a particular time interval. + 0..1 + Exception Notification Line + Variance + Quantity + Quantity. Type + + + + + + + + + BBIE + Exception Notification Line. Supply Chain Activity Type Code. Code + Establishes the criterion for one of the three types of exceptions. + 0..1 + Exception Notification Line + Supply Chain Activity Type Code + Code + Code. Type + + + + + + + + + BBIE + Exception Notification Line. Performance Metric Type Code. Code + A code used to identify a measure of performance + 0..1 + Exception Notification Line + Performance Metric Type Code + Code + Code. Type + + + + + + + + + ASBIE + Exception Notification Line. Exception Observation_ Period. Period + An association to Period. + 0..1 + Exception Notification Line + Exception Observation + Period + Period + + + + + + + + + ASBIE + Exception Notification Line. Document Reference + Identification of a document to which the message makes reference. + 0..n + Exception Notification Line + Document Reference + Document Reference + + + + + + + + + ASBIE + Exception Notification Line. Forecast Exception + An association to Forecast Accuracy or Comparison Exception. + 0..1 + Exception Notification Line + Forecast Exception + Forecast Exception + + + + + + + + + ASBIE + Exception Notification Line. Supply_ Item. Item + An association to one Item. + 1 + Exception Notification Line + Supply + Item + Item + + + + + + + + + + + ABIE + Exchange Rate. Details + Information about Exchange Rate. + Exchange Rate + + + + + + + + + BBIE + Exchange Rate. Source_ Currency Code. Code + The reference currency for the Exchange Rate; the currency from which the exchange is being made (CC Definition). + 1 + Exchange Rate + Source + Currency Code + Code + Currency_ Code. Type + + + + + + + + + BBIE + Exchange Rate. Source_ Currency Base Rate. Rate + The unit base of the source currency for currencies with small denominations. + 0..1 + Exchange Rate + Source + Currency Base Rate + Rate + Rate. Type + + + + + + + + + BBIE + Exchange Rate. Target_ Currency Code. Code + The target currency for the Exchange Rate; the currency to which the exchange is being made (CC Definition). + 1 + Exchange Rate + Target + Currency Code + Code + Currency_ Code. Type + + + + + + + + + BBIE + Exchange Rate. Target_ Currency Base Rate. Rate + The unit base of the target currency for currencies with small denominations. + 0..1 + Exchange Rate + Target + Currency Base Rate + Rate + Rate. Type + + + + + + + + + BBIE + Exchange Rate. Exchange Market Identifier. Identifier + Identifies the currency exchange market used as the source of the Exchange Rate. + 0..1 + Exchange Rate + Exchange Market Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Exchange Rate. Calculation Rate. Rate + The factor applied to the source currency to calculate the target currency. + 0..1 + Exchange Rate + Calculation Rate + Rate + Rate. Type + + + + + + + + + BBIE + Exchange Rate. Mathematic Operator Code. Code + An identifier for whether the Calculation Rate should be used to multiply or to divide, expressed as a code. + 0..1 + Exchange Rate + Mathematic Operator Code + Code + Operator_ Code. Type + + + + + + + + + BBIE + Exchange Rate. Date + The date of the Exchange. + 0..1 + Exchange Rate + Date + Date + Date. Type + + + + + + + + + ASBIE + Exchange Rate. Foreign Exchange_ Contract. Contract + An association to Foreign Exchange Contract. + 0..1 + Exchange Rate + Foreign Exchange + Contract + Contract + + + + + + + + + + + ABIE + External Reference. Details + Information directly relating to an external reference i.e. a document stored at a remote location. + External Reference + + + + + + + + + BBIE + External Reference. URI. Identifier + The Uniform Resource Identifier (URI) that identifies where the external document is located. + 0..1 + External Reference + URI + Identifier + Identifier. Type + + + + + + + + + BBIE + External Reference. Document Hash. Text + Specifies the hash code for the externally stored document. + 0..1 + External Reference + Document Hash + Text + Text. Type + + + + + + + + + BBIE + External Reference. Hash Algorithm Method. Text + + 0..n + External Reference + Hash Algorithm Method + Text + Text. Type + + + + + + + + + BBIE + External Reference. Expiry Date. Date + The date on which the document can no longer be found on the URI. + 0..1 + External Reference + Expiry Date + Date + Date. Type + + + + + + + + + BBIE + External Reference. Expiry Time. Time + The time on which the document can no longer be found on the URI. + 0..1 + External Reference + Expiry Time + Time + Time. Type + + + + + + + + + BBIE + External Reference. Mime Code. Code + The mime type of the external document. + 0..1 + External Reference + Mime Code + Code + Code. Type + + + + + + + + + BBIE + External Reference. Format Code. Code + The format of the external document. + 0..1 + External Reference + Format Code + Code + Code. Type + + + + + + + + + BBIE + External Reference. Encoding Code. Code + Specifies the decoding algorithm of the external document. + 0..1 + External Reference + Encoding Code + Code + Code. Type + + + + + + + + + BBIE + External Reference. Character Set Code. Code + The character set of the external document if the mime type is text. + 0..1 + External Reference + Character Set Code + Code + Code. Type + + + + + + + + + BBIE + External Reference. File Name. Name + The filename of the external document. + 0..1 + External Reference + File Name + Name + Name. Type + + + + + + + + + BBIE + External Reference. Description. Text + Textual description of the external document. + 0..n + External Reference + Description + Text + Text. Type + computer accessories for laptops + + + + + + + + + + + ABIE + Financial Account. Details + Information about a Financial Account. + Financial Account + + + + + + + + + BBIE + Financial Account. Identifier + The identifier for the Financial Account; the Bank Account Number. + 0..1 + Financial Account + Identifier + Identifier + Identifier. Type + SWIFT(BIC) and IBAN are defined in ISO 9362 and ISO 13616. + + + + + + + + + BBIE + Financial Account. Name + The name of the Financial Account. + 0..1 + Financial Account + Name + Name + Name. Type + + + + + + + + + BBIE + Financial Account. Alias_ Name. Name + An alias name for the Financial Account. Use it if the account id information is not directly provided for security reasons. + 0..1 + Financial Account + Alias + Name + Name + Name. Type + + + + + + + + + BBIE + Financial Account. Account Type Code. Code + The type of Financial Account, expressed as a code. + 0..1 + Financial Account + Account Type Code + Code + Code. Type + + + + + + + + + BBIE + Financial Account. Account Format Code. Code + The format of Financial Account, expressed as a code. + 0..1 + Financial Account + Account Format Code + Code + Code. Type + ISO20022 Clearing System Identification Code + + + + + + + + + BBIE + Financial Account. Currency Code. Code + The currency in which the Financial Account is held, expressed as a code. + 0..1 + Financial Account + Currency Code + Code + Currency_ Code. Type + + + + + + + + + BBIE + Financial Account. Payment_ Note. Text + Free-form text applying to the Payment to the owner of this account. + 0..n + Financial Account + Payment + Note + Text + Text. Type + + + + + + + + + ASBIE + Financial Account. Financial Institution_ Branch. Branch + An association to Financial Institution Branch. + 0..1 + Financial Account + Financial Institution + Branch + Branch + + + + + + + + + ASBIE + Financial Account. Country + An association to Country. + 0..1 + Financial Account + Country + Country + + + + + + + + + + + ABIE + Financial Guarantee. Details + The Information about the bond guarantee of a tender or bid submitter to actually enter into a contract if they are the successful bidder. + Financial Guarantee + + + + + + + + + BBIE + Financial Guarantee. Guarantee Type Code. Code + Code that identifies the type of guarantee. + 1 + Financial Guarantee + Guarantee Type Code + Code + Code. Type + + + + + + + + + BBIE + Financial Guarantee. Description. Text + Textual description of the financial guarantee. + 0..n + Financial Guarantee + Description + Text + Text. Type + + + + + + + + + BBIE + Financial Guarantee. Liability. Amount + The monetary value that constitutes the liability amount in the bid bond guarantee. + 0..1 + Financial Guarantee + Liability + Amount + Amount. Type + + + + + + + + + BBIE + Financial Guarantee. Amount. Rate + The rate used to calculate a bid bond guarantee amount. + 0..1 + Financial Guarantee + Amount + Rate + Rate. Type + + + + + + + + + ASBIE + Financial Guarantee. Constitution_ Period. Period + The specified period in the tendering process for which this bid bond guarantee has to be constituted. + 0..1 + Financial Guarantee + Constitution + Period + Period + + + + + + + + + + + ABIE + Financial Institution. Details + Information about a Financial Institution. + Financial Institution + + + + + + + + + BBIE + Financial Institution. Identifier + The identifier for the Financial Institution expressed as a code; ISO 9362 BIC (Bank Identification Code) is recommended. + 0..1 + Financial Institution + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Financial Institution. Name + The name of the Financial Institution. + 0..1 + Financial Institution + Name + Name + Name. Type + + + + + + + + + ASBIE + Financial Institution. Address + An association to Address. + 0..1 + Financial Institution + Address + Address + + + + + + + + + + + ABIE + Forecast Exception. Details + This class identifies the exception as a Forecast Exception + Forecast Exception + + + + + + + + + BBIE + Forecast Exception. Forecast_ Purpose Code. Code + The purpose for the Forecast that is assigned to each ForecastException Criterion. + 1 + Forecast Exception + Forecast + Purpose Code + Code + Code. Type + + + + + + + + + BBIE + Forecast Exception. Forecast Type Code. Code + A description of a Forecast selected from a list + 1 + Forecast Exception + Forecast Type Code + Code + Code. Type + + + + + + + + + BBIE + Forecast Exception. Issue Date. Date + The date the Forecast was issued + 1 + Forecast Exception + Issue Date + Date + Date. Type + + + + + + + + + BBIE + Forecast Exception. Issue Time. Time + The time that the Forecast was issued + 0..1 + Forecast Exception + Issue Time + Time + Time. Type + + + + + + + + + BBIE + Forecast Exception. Data Source Code. Code + Indication of the partner who provides the information + 1 + Forecast Exception + Data Source Code + Code + Code. Type + + + + + + + + + BBIE + Forecast Exception. Comparison Data Code. Code + Indication of the partner who provides the information in case of Forecase Comparison Exception + 0..1 + Forecast Exception + Comparison Data Code + Code + Code. Type + + + + + + + + + BBIE + Forecast Exception. Comparison Forecast Issue Time. Time + The time that the Comparison Forecast was issued. + 0..1 + Forecast Exception + Comparison Forecast Issue Time + Time + Time. Type + + + + + + + + + BBIE + Forecast Exception. Comparison Forecast Issue Date. Date + The date the Comparison Forecast was issued. + 0..1 + Forecast Exception + Comparison Forecast Issue Date + Date + Date. Type + + + + + + + + + + + ABIE + Forecast Exception Criteria Line. Details + Establishes the criterion for one of the three types of exceptions. This class provides criteria for the kind of forecast exception, the identification of the purpose of the forecast, the source of data and the time basis criteria for the exception. + Forecast Exception Criteria Line + + + + + + + + + BBIE + Forecast Exception Criteria Line. Forecast_ Purpose Code. Code + A description of the purpose for the forecast that is assigned to each forecast data item exception criterion. + 1 + Forecast Exception Criteria Line + Forecast + Purpose Code + Code + Code. Type + + + + + + + + + BBIE + Forecast Exception Criteria Line. Forecast Type Code. Code + A description of a Forecast selected from a list + 1 + Forecast Exception Criteria Line + Forecast Type Code + Code + Code. Type + + + + + + + + + BBIE + Forecast Exception Criteria Line. Comparison Data Source Code. Code + If it is a forecast comparison exception, this value indicates the other source of information + 0..1 + Forecast Exception Criteria Line + Comparison Data Source Code + Code + Code. Type + + + + + + + + + BBIE + Forecast Exception Criteria Line. Data Source Code. Code + Indication of the partner who provides the information + 1 + Forecast Exception Criteria Line + Data Source Code + Code + Code. Type + + + + + + + + + BBIE + Forecast Exception Criteria Line. Time Delta Days Quantity. Quantity + Time basis in days for the Exception + 0..1 + Forecast Exception Criteria Line + Time Delta Days Quantity + Quantity + Quantity. Type + + + + + + + + + + + ABIE + Forecast Line. Details + A forecast line + Forecast Line + + + + + + + + + BBIE + Forecast Line. Identifier + An identifier for the Forecast Line + 1 + Forecast Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Forecast Line. Note. Text + Free-form text applying to the Forecast Line. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Forecast Line + Note + Text + Text. Type + + + + + + + + + BBIE + Forecast Line. Frozen Document Indicator. Indicator + The status of the forecast. Is it either modifiable or not? + 0..1 + Forecast Line + Frozen Document Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Forecast Line. Forecast Type Code. Code + The type of the forecast + 1 + Forecast Line + Forecast Type Code + Code + Code. Type + seasonal, total + + + + + + + + + ASBIE + Forecast Line. Forecast_ Period. Period + An association to Period for which forecast is made. + 0..1 + Forecast Line + Forecast + Period + Period + + + + + + + + + ASBIE + Forecast Line. Sales Item + An association to Sales Item. + 0..1 + Forecast Line + Sales Item + Sales Item + + + + + + + + + + + ABIE + Forecast Revision Line. Details + A Forecast Revision Line + Forecast Revision Line + + + + + + + + + BBIE + Forecast Revision Line. Identifier + An identifier for the Exception Notification Line + 1 + Forecast Revision Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Forecast Revision Line. Note. Text + Free-form text applying to the Exception Notification Line. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Forecast Revision Line + Note + Text + Text. Type + + + + + + + + + BBIE + Forecast Revision Line. Description. Text + A string of text intended as an explanation or illustration for the exception + 0..1 + Forecast Revision Line + Description + Text + Text. Type + + + + + + + + + BBIE + Forecast Revision Line. Revised_ Forecast Line Identifier. Identifier + The time the Forecast which is modified by this revision was generated/created. + 1 + Forecast Revision Line + Revised + Forecast Line Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Forecast Revision Line. Source Forecast_ Issue Date. Date + The date the Forecast which is modified by this revision was generated/created. + 1 + Forecast Revision Line + Source Forecast + Issue Date + Date + Date. Type + + + + + + + + + BBIE + Forecast Revision Line. Source Forecast_ Issue Time. Time + The time the Forecast which is modified by this revision was generated/created. + 1 + Forecast Revision Line + Source Forecast + Issue Time + Time + Time. Type + + + + + + + + + BBIE + Forecast Revision Line. Adjustment Reason Code. Code + The reason for the adjustment specified by the Forecast Revision Line to the Forecast. + 0..1 + Forecast Revision Line + Adjustment Reason Code + Code + Code. Type + + + + + + + + + ASBIE + Forecast Revision Line. Forecast_ Period. Period + An association to Period. + 0..1 + Forecast Revision Line + Forecast + Period + Period + + + + + + + + + ASBIE + Forecast Revision Line. Sales Item + An association to a Sales Item. + 0..1 + Forecast Revision Line + Sales Item + Sales Item + + + + + + + + + + + ABIE + Framework Agreement. Details + The information about a tendering framework agreement. + Framework Agreement + + + + + + + + + BBIE + Framework Agreement. Expected_ Operator. Quantity + Expected number of economic operators in this framework agreement. + 0..1 + Framework Agreement + Expected + Operator + Quantity + Quantity. Type + + + + + + + + + BBIE + Framework Agreement. Maximum_ Operator. Quantity + Maximum number of economic operators in this framework agreement. + 0..1 + Framework Agreement + Maximum + Operator + Quantity + Quantity. Type + + + + + + + + + BBIE + Framework Agreement. Justification. Text + The textual description of the justification for this framework agreement. + 0..n + Framework Agreement + Justification + Text + Text. Type + + + + + + + + + BBIE + Framework Agreement. Frequency. Text + The frequency by which the subsequent contracts will be awarded. + 0..n + Framework Agreement + Frequency + Text + Text. Type + + + + + + + + + ASBIE + Framework Agreement. Duration_ Period. Period + The duration period for the framework agreement. + 0..1 + Framework Agreement + Duration + Period + Period + + + + + + + + + ASBIE + Framework Agreement. Subsequent Process_ Tender Requirement. Tender Requirement + Used to specify what requirements are made to different processes in the result from the current one. + 0..n + Framework Agreement + Subsequent Process + Tender Requirement + Tender Requirement + Curricula required + + + + + + + + + + + ABIE + Goods Item. Details + A separately identifiable quantity of products of a single product type. + Goods Item + + + + + + + + + BBIE + Goods Item. Identifier + An identifier for the goods item. + 0..1 + Goods Item + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Goods Item. Sequence Number. Identifier + Sequence number differentiating a specific goods item within a consignment. + 0..1 + Goods Item + Sequence Number + Identifier + Identifier. Type + + + + + + + + + BBIE + Goods Item. Description. Text + Plain language description of a goods item sufficient to identify it for customs, statistical, or transport purposes. + 0..n + Goods Item + Description + Text + Text. Type + Description of goods (WCO ID 137) + + + + + + + + + BBIE + Goods Item. Hazardous Risk_ Indicator. Indicator + Indicates whether the goods item includes hazardous items (dangerous goods). + 0..1 + Goods Item + Hazardous Risk + Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Goods Item. Declared Customs_ Value. Amount + Amount declared for Customs purposes of those goods in a consignment which are subject to the same Customs procedure and have the same tariff/statistical heading, country information, and duty regime. + 0..1 + Goods Item + Declared Customs + Value + Amount + Amount. Type + For Customs Value (WCO ID 108) + + + + + + + + + BBIE + Goods Item. Declared For Carriage_ Value. Amount + Value declared by the shipper or his agent solely for the purpose of varying the carrier s level of liability from that provided in the contract of carriage in case of loss or damage to goods or delayed delivery. + 0..1 + Goods Item + Declared For Carriage + Value + Amount + Amount. Type + Interest in delivery, declared value for carriage + + + + + + + + + BBIE + Goods Item. Declared Statistics_ Value. Amount + Value declared for statistical purposes of those goods in a consignment which have the same statistical heading. + 0..1 + Goods Item + Declared Statistics + Value + Amount + Amount. Type + Statistical Value (WCO ID 114) + + + + + + + + + BBIE + Goods Item. Free On Board_ Value. Amount + Monetary amount that has to be or has been paid as calculated under the applicable trade delivery. + 0..1 + Goods Item + Free On Board + Value + Amount + Amount. Type + FOB Value + + + + + + + + + BBIE + Goods Item. Insurance_ Value. Amount + The amount covered by an insurance for a particular goods item. + 0..1 + Goods Item + Insurance + Value + Amount + Amount. Type + Value Insured + + + + + + + + + BBIE + Goods Item. Value. Amount + Specifies the amount on which a duty, tax, or fee will be assessed. + 0..1 + Goods Item + Value + Amount + Amount. Type + + + + + + + + + BBIE + Goods Item. Gross_ Weight. Measure + Weight (mass) of goods, including packaging but excluding the carrier s equipment. + 0..1 + Goods Item + Gross + Weight + Measure + Measure. Type + Actual Gross Weight + + + + + + + + + BBIE + Goods Item. Net_ Weight. Measure + Weight (mass) of goods item, excluding all packing but including any packaging that normally goes with the goods. + 0..1 + Goods Item + Net + Weight + Measure + Measure. Type + + + + + + + + + BBIE + Goods Item. Net Net_ Weight. Measure + Weight (mass) of goods without any packaging. + 0..1 + Goods Item + Net Net + Weight + Measure + Measure. Type + Customs Weight (WCO ID 128) + + + + + + + + + BBIE + Goods Item. Chargeable_ Weight. Measure + Gross weight (mass) on which a charge is to be based. + 0..1 + Goods Item + Chargeable + Weight + Measure + Measure. Type + + + + + + + + + BBIE + Goods Item. Gross_ Volume. Measure + Measurement normally arrived at by multiplying the maximum length, width, and height of the goods item. + 0..1 + Goods Item + Gross + Volume + Measure + Measure. Type + Volume, Gross Measurement Cube (GMC), Cube (WCO ID 134) + + + + + + + + + BBIE + Goods Item. Net_ Volume. Measure + The volume contained by a goods item, excluding the volume of any packaging material. + 0..1 + Goods Item + Net + Volume + Measure + Measure. Type + + + + + + + + + BBIE + Goods Item. Quantity + Number of goods items. + 0..1 + Goods Item + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Goods Item. Preference Criterion Code. Code + Specifies the treatment preference for this good according to international trading agreements. + 0..1 + Goods Item + Preference Criterion Code + Code + Code. Type + Preference Criterion is used in the following manner in the paper CO of another country (e.g.): + A - The good is wholly obtained or produced entirely in the territory of one or more of the NAFTA countries as reference in Article 415. Note: The purchase of a good in the territory does not necessarily render it wholly obtained or produced . If the good is an agricultural good, see also criterion F and Annex 703.2. (Reference: Article 401(a), 415). + B - ... + C - ... + D - ... + E - ... + F - The good is an originating agricultural good under preference criterion A,B, or C above and is not subjected to quantitative restriction in the importing NAFTA country because.... +Thus, the column Preference Criterion will indicate either A, B, C,... + + + + + + + + + BBIE + Goods Item. Required_ Customs Identifier. Identifier + Additional tariff codes required to specify a type of goods for Customs, transport, statistical, or other regulatory purposes. + 0..1 + Goods Item + Required + Customs Identifier + Identifier + Identifier. Type + Tariff code extensions (WCO ID 255) + + + + + + + + + BBIE + Goods Item. Customs Status Code. Code + Status of goods as identified by customs for regulation purposes. + 0..1 + Goods Item + Customs Status Code + Code + Code. Type + Customs status of goods (WCO ID 094) + + + + + + + + + BBIE + Goods Item. Customs Tariff Quantity. Quantity + Quantity of the goods in the unit as required by Customs for tariff, statistical, or fiscal purposes. + 0..1 + Goods Item + Customs Tariff Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Goods Item. Customs Import_ Classified Indicator. Indicator + Indicates whether the goods have been customs classified for import. + 0..1 + Goods Item + Customs Import + Classified Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Goods Item. Chargeable_ Quantity. Quantity + + 0..1 + Goods Item + Chargeable + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Goods Item. Returnable_ Quantity. Quantity + + 0..1 + Goods Item + Returnable + Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Goods Item. Item + Association to a description of the good or service. + 0..n + Goods Item + Item + Item + + + + + + + + + ASBIE + Goods Item. Goods Item Container + Association to describe the transporting of a goods item in a unit of transport equipment (e.g., container). + 0..n + Goods Item + Goods Item Container + Goods Item Container + + + + + + + + + ASBIE + Goods Item. Freight_ Allowance Charge. Allowance Charge + Costs incurred by the shipper in moving goods, by whatever means, from one place to another under the terms of the contract of carriage. In addition to transport costs, this may include such elements as packing, documentation, loading, unloading, and insurance (to the extent that they relate to the freight costs). + 0..n + Goods Item + Freight + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Goods Item. Invoice Line + Association to information directly relating to a line item of an invoice. + 0..n + Goods Item + Invoice Line + Invoice Line + + + + + + + + + ASBIE + Goods Item. Temperature + Any temperatures associated with the goods. + 0..n + Goods Item + Temperature + Temperature + maximum, storage, minimum + + + + + + + + + ASBIE + Goods Item. Contained_ Goods Item. Goods Item + Associates with any other goods items contained in this goods item. + 0..n + Goods Item + Contained + Goods Item + Goods Item + + + + + + + + + ASBIE + Goods Item. Origin_ Address. Address + Region in which the goods have been produced or manufactured, according to criteria laid down for the purposes of application of the Customs tariff, or quantitative restrictions, or any other measure related to trade. + 0..1 + Goods Item + Origin + Address + Address + + + + + + + + + ASBIE + Goods Item. Delivery + An association to Delivery. + 0..1 + Goods Item + Delivery + Delivery + + + + + + + + + ASBIE + Goods Item. Pickup + An association to Pickup. + 0..1 + Goods Item + Pickup + Pickup + + + + + + + + + ASBIE + Goods Item. Despatch + An association to Despatch. + 0..1 + Goods Item + Despatch + Despatch + + + + + + + + + ASBIE + Goods Item. Measurement_ Dimension. Dimension + An association to describe the measurement dimensions of the goods item. + 0..n + Goods Item + Measurement + Dimension + Dimension + + + + + + + + + ASBIE + Goods Item. Containing_ Package. Package + One or more packages containing this goods item. + 0..n + Goods Item + Containing + Package + Package + + + + + + + + + ASBIE + Goods Item. Shipment_ Document Reference. Document Reference + A reference to any shipment documents this goods item is associated with. + 0..1 + Goods Item + Shipment + Document Reference + Document Reference + + + + + + + + + + + ABIE + Goods Item Container. Details + How goods items are split across transport equipment. + Goods Item Container + + + + + + + + + BBIE + Goods Item Container. Identifier + Identifies goods items split across transport equipment. + 1 + Goods Item Container + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Goods Item Container. Quantity + Number of goods items loaded into or onto one piece of transport equipment as a total consignment or part of a consignment. + 0..1 + Goods Item Container + Quantity + Quantity + Quantity. Type + Number of packages stuffed + + + + + + + + + ASBIE + Goods Item Container. Transport Equipment + Associates the containers for a single goods item. + 0..n + Goods Item Container + Transport Equipment + Transport Equipment + + + + + + + + + + + ABIE + Hazardous Goods Transit. Details + Information about Hazardous Goods Transit. + Hazardous Goods Transit + + + + + + + + + BBIE + Hazardous Goods Transit. Transport Emergency Card Code. Code + The identifier for a transport emergency card, describing the actions to be taken in an emergency in transporting the Hazardous Goods. May be the identity number of a hazardous emergency response plan assigned by the appropriate authority. + 0..1 + Hazardous Goods Transit + Transport Emergency Card Code + Code + Code. Type + TREM card + + + + + + + + + BBIE + Hazardous Goods Transit. Packing Criteria Code. Code + A code identifying the packaging requirement for the transportation of the Hazardous Goods as assigned by IATA/IMDB/ADR/RID etc. + 0..1 + Hazardous Goods Transit + Packing Criteria Code + Code + Code. Type + Packing Group + + + + + + + + + BBIE + Hazardous Goods Transit. Hazardous Regulation Code. Code + The identifier for a set of legal regulations that govern the transportation of the Hazardous Goods, expressed as a code. + 0..1 + Hazardous Goods Transit + Hazardous Regulation Code + Code + Code. Type + + + + + + + + + BBIE + Hazardous Goods Transit. Inhalation Toxicity Zone Code. Code + An identifier for the Inhalation Toxicity Hazard Zone for the Hazardous Goods, as defined by the US Department of Transportation, expressed as a code. + 0..1 + Hazardous Goods Transit + Inhalation Toxicity Zone Code + Code + Code. Type + + + + + + + + + BBIE + Hazardous Goods Transit. Transport Authorization Code. Code + Code specifying the authorization for the transportation of hazardous cargo. + 0..1 + Hazardous Goods Transit + Transport Authorization Code + Code + Code. Type + Permission for Transport + + + + + + + + + ASBIE + Hazardous Goods Transit. Maximum_ Temperature. Temperature + An association to Maximum Temperature (at which the Hazardous Goods can be safely transported). + 0..1 + Hazardous Goods Transit + Maximum + Temperature + Temperature + + + + + + + + + ASBIE + Hazardous Goods Transit. Minimum_ Temperature. Temperature + An association to Minimum Temperature (at which the Hazardous Goods can be safely transported). + 0..1 + Hazardous Goods Transit + Minimum + Temperature + Temperature + + + + + + + + + + + ABIE + Hazardous Item. Details + Information about a Hazardous Item. + Hazardous Item + + + + + + + + + BBIE + Hazardous Item. Identifier + The identifier for a Hazardous Item. + 0..1 + Hazardous Item + Identifier + Identifier + Identifier. Type + Round Up + + + + + + + + + BBIE + Hazardous Item. Placard Notation. Text + The placard notation corresponding to the hazard class of the hazardous commodity. Can also be the hazard identification number of the orange placard (upper part) required on the means of transport. + 0..1 + Hazardous Item + Placard Notation + Text + Text. Type + 5.1 + + + + + + + + + BBIE + Hazardous Item. Placard Endorsement. Text + The placard endorsement that is to be shown on the shipping papers for the hazardous commodity. Can also be used for the number of the orange placard (lower part) required on the means of transport. + 0..1 + Hazardous Item + Placard Endorsement + Text + Text. Type + 2 + + + + + + + + + BBIE + Hazardous Item. Additional_ Information. Text + Additional information about the hazardous substance. Can be used to specify information such as the type of regulatory requirements that apply to a description. + 0..1 + Hazardous Item + Additional + Information + Text + Text. Type + Must be stored away from flammable materials N.O.S. or a Waste Characteristics Code in conjunction with an EPA Waste Stream code + + + + + + + + + BBIE + Hazardous Item. UNDG Code. Code + The identifier assigned to transportable hazardous goods by the United Nations, expressed as a code. + 0..1 + Hazardous Item + UNDG Code + Code + Code. Type + UN Code + + + + + + + + + BBIE + Hazardous Item. Emergency Procedures Code. Code + The emergency procedures for the Hazardous Item, expressed as a code. + 0..1 + Hazardous Item + Emergency Procedures Code + Code + Code. Type + EMG code, EMS Page Number + + + + + + + + + BBIE + Hazardous Item. Medical First Aid Guide Code. Code + The identifier of a medical first aid guide that is relevant to specific hazardous goods, expressed as a code. + 0..1 + Hazardous Item + Medical First Aid Guide Code + Code + Code. Type + MFAG page number + + + + + + + + + BBIE + Hazardous Item. Technical_ Name. Name + The full technical name of the specific hazardous substance. + 0..1 + Hazardous Item + Technical + Name + Name + Name. Type + Granular Sodium Chlorate WeedKiller + + + + + + + + + BBIE + Hazardous Item. Category. Name + The name of the category of hazard that applies to the Item. + 0..1 + Hazardous Item + Category + Name + Name. Type + + + + + + + + + BBIE + Hazardous Item. Hazardous Category Code. Code + Code specifying a kind of hazard for a material. + 0..1 + Hazardous Item + Hazardous Category Code + Code + Code. Type + Hazardous material class code + + + + + + + + + BBIE + Hazardous Item. Upper_ Orange Hazard Placard Identifier. Identifier + Specifies the identity number for the upper part of the orange hazard placard required on the means of transport. + 0..1 + Hazardous Item + Upper + Orange Hazard Placard Identifier + Identifier + Identifier. Type + Hazard identification number (upper part) + + + + + + + + + BBIE + Hazardous Item. Lower_ Orange Hazard Placard Identifier. Identifier + Specifies the identity number for the lower part of the orange hazard placard required on the means of transport. + 0..1 + Hazardous Item + Lower + Orange Hazard Placard Identifier + Identifier + Identifier. Type + Substance identification number (lower part) + + + + + + + + + BBIE + Hazardous Item. Marking Identifier. Identifier + Identifies the marking of dangerous goods. + 0..1 + Hazardous Item + Marking Identifier + Identifier + Identifier. Type + Dangerous goods label marking + + + + + + + + + BBIE + Hazardous Item. Hazard Class Identifier. Identifier + Identifies a hazard class applicable to dangerous goods as defined by the relevant regulation authority, such as the IMDG Class Number of the SOLAS Convention of IMO and the ADR/RID Class Number for the road/rail environment. + 0..1 + Hazardous Item + Hazard Class Identifier + Identifier + Identifier. Type + IMDG Class Number, ADR/RID Class Number + + + + + + + + + BBIE + Hazardous Item. Net_ Weight. Measure + The total net weight of hazardous goods; the weight of the goods plus packaging. + 0..1 + Hazardous Item + Net + Weight + Measure + Measure. Type + + + + + + + + + BBIE + Hazardous Item. Net_ Volume. Measure + The volume of hazardous goods net of packaging and transport equipment. + 0..1 + Hazardous Item + Net + Volume + Measure + Measure. Type + + + + + + + + + BBIE + Hazardous Item. Quantity + The quantity of goods that are hazardous. + 0..1 + Hazardous Item + Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Hazardous Item. Contact_ Party. Party + Associates the Hazardous Item with details of an individual, group, or body that is the contact in case of hazard incident. + 0..1 + Hazardous Item + Contact + Party + Party + + + + + + + + + ASBIE + Hazardous Item. Secondary Hazard + Associates the Hazardous Item with information about secondary hazards. + 0..n + Hazardous Item + Secondary Hazard + Secondary Hazard + + + + + + + + + ASBIE + Hazardous Item. Hazardous Goods Transit + Associates the Hazardous Item with information about the transportation of hazardous goods. + 0..n + Hazardous Item + Hazardous Goods Transit + Hazardous Goods Transit + + + + + + + + + ASBIE + Hazardous Item. Emergency_ Temperature. Temperature + Associates the Hazardous Item with the temperature at which emergency procedures apply during the handling of temperature-controlled hazardous goods. + 0..1 + Hazardous Item + Emergency + Temperature + Temperature + + + + + + + + + ASBIE + Hazardous Item. Flashpoint_ Temperature. Temperature + Associates the Hazardous Item with the lowest temperature at which the vapor of a combustible liquid can be made to ignite momentarily in air, known in hazardous goods procedures as the flashpoint. + 0..1 + Hazardous Item + Flashpoint + Temperature + Temperature + + + + + + + + + ASBIE + Hazardous Item. Additional_ Temperature. Temperature + Information providing details of temperatures relevant to the handling of hazardous goods. + 0..n + Hazardous Item + Additional + Temperature + Temperature + + + + + + + + + + + ABIE + Immobilized Security. Details + Information about an immobilized security to be used as a guarantee. + Immobilized Security + + + + + + + + + BBIE + Immobilized Security. Immobilization Certificate Identifier. Identifier + Identifier for the certificate of this immobilized security. + 0..1 + Immobilized Security + Immobilization Certificate Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Immobilized Security. Security Identifier. Identifier + Identifier for the security being immobilized. + 0..1 + Immobilized Security + Security Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Immobilized Security. Issue Date. Date + Issue date for this immobilized security. + 0..1 + Immobilized Security + Issue Date + Date + Date. Type + + + + + + + + + BBIE + Immobilized Security. Face Value. Amount + Value amount for the security the day it has been immobilized. + 0..1 + Immobilized Security + Face Value + Amount + Amount. Type + + + + + + + + + BBIE + Immobilized Security. Market Value. Amount + Market value amount for the immobiized securities. + 0..1 + Immobilized Security + Market Value + Amount + Amount. Type + + + + + + + + + BBIE + Immobilized Security. Shares Number. Quantity + Number of shares immobilized. + 0..1 + Immobilized Security + Shares Number + Quantity + Quantity. Type + + + + + + + + + ASBIE + Immobilized Security. Issuer_ Party. Party + Association to the party issuing the immobilized security certificate. + 0..1 + Immobilized Security + Issuer + Party + Party + + + + + + + + + + + ABIE + Instruction For Returns Line. Details + Information about an Instruction For RetursLine. + Instruction For Returns Line + + + + + + + + + BBIE + Instruction For Returns Line. Identifier + An identifier for the Instruction For Returns Line. + 1 + Instruction For Returns Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Instruction For Returns Line. Note. Text + Free-form text applying to the Instruction For Returs Line. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Instruction For Returns Line + Note + Text + Text. Type + + + + + + + + + BBIE + Instruction For Returns Line. Quantity + The quantity that has to be returned. + 1 + Instruction For Returns Line + Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Instruction For Returns Line. Manufacturer_ Party. Party + Associates the goods with its manufacturer. + 0..1 + Instruction For Returns Line + Manufacturer + Party + Party + + + + + + + + + ASBIE + Instruction For Returns Line. Item + An association to an Item. + 1 + Instruction For Returns Line + Item + Item + + + + + + + + + + + ABIE + Inventory Report Line. Details + Information about an Inventory Report Line. + Inventory Report Line + + + + + + + + + BBIE + Inventory Report Line. Identifier + An identifier for the Inventory Report Line. + 1 + Inventory Report Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Inventory Report Line. Note. Text + Free-form text applying to the Inventory Report Line. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Inventory Report Line + Note + Text + Text. Type + + + + + + + + + BBIE + Inventory Report Line. Quantity + The quantity that is currently on stock. + 1 + Inventory Report Line + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Inventory Report Line. Inventory_ Value. Amount + The amount of the stock quantity. + 0..1 + Inventory Report Line + Inventory + Value + Amount + Amount. Type + + + + + + + + + BBIE + Inventory Report Line. Availability Date. Date + The date from which the goods will be available. If not present, the goods are available now. + 0..1 + Inventory Report Line + Availability Date + Date + Date. Type + + + + + + + + + BBIE + Inventory Report Line. Availability Status Code. Code + A code that classifies the availability level of the good. + 0..1 + Inventory Report Line + Availability Status Code + Code + Code. Type + + + + + + + + + ASBIE + Inventory Report Line. Item + An association to an Item. + 1 + Inventory Report Line + Item + Item + + + + + + + + + + + ABIE + Invoice Line. Details + Information about an Invoice Line. + Invoice Line + + + + + + + + + BBIE + Invoice Line. Identifier + Identifies the Invoice Line. + 1 + Invoice Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Invoice Line. UUID. Identifier + A universally unique identifier for an instance of this ABIE. + 0..1 + Invoice Line + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Invoice Line. Note. Text + Free-form text applying to the Invoice Line. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Invoice Line + Note + Text + Text. Type + + + + + + + + + BBIE + Invoice Line. Invoiced_ Quantity. Quantity + The quantity (of Items) on the Invoice Line. + 0..1 + Invoice Line + Invoiced + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Invoice Line. Line Extension Amount. Amount + The total amount for the Invoice Line, including Allowance Charges but net of taxes. + 1 + Invoice Line + Line Extension Amount + Amount + Amount. Type + + + + + + + + + BBIE + Invoice Line. Tax Point Date. Date + The date of the Invoice Line, used to indicate the point at which tax becomes applicable. + 0..1 + Invoice Line + Tax Point Date + Date + Date. Type + + + + + + + + + BBIE + Invoice Line. Accounting Cost Code. Code + The buyer s accounting code applied to the Invoice Line. + 0..1 + Invoice Line + Accounting Cost Code + Code + Code. Type + + + + + + + + + BBIE + Invoice Line. Accounting Cost. Text + The buyer s accounting cost centre applied to the Invoice Line, expressed as text. + 0..1 + Invoice Line + Accounting Cost + Text + Text. Type + + + + + + + + + BBIE + Invoice Line. Payment Purpose Code. Code + The business purposes for payment express as code. + 0..1 + Invoice Line + Payment Purpose Code + Code + Code. Type + + + + + + + + + BBIE + Invoice Line. Free Of Charge_ Indicator. Indicator + Indicates whether the Invoice Line is Free Of Charge (default = false). + 0..1 + Invoice Line + Free Of Charge + Indicator + Indicator + Indicator. Type + + + + + + + + + ASBIE + Invoice Line. Invoice_ Period. Period + An association to period(s) to which the Invoice Line applies. + 0..n + Invoice Line + Invoice + Period + Period + + + + + + + + + ASBIE + Invoice Line. Order Line Reference + An association to Order Line Reference. + 0..n + Invoice Line + Order Line Reference + Order Line Reference + + + + + + + + + ASBIE + Invoice Line. Despatch_ Line Reference. Line Reference + An associative reference to Despatch Line. + 0..n + Invoice Line + Despatch + Line Reference + Line Reference + + + + + + + + + ASBIE + Invoice Line. Receipt_ Line Reference. Line Reference + An associative reference to Receipt Line. + 0..n + Invoice Line + Receipt + Line Reference + Line Reference + + + + + + + + + ASBIE + Invoice Line. Billing Reference + An association to Billing Reference. + 0..n + Invoice Line + Billing Reference + Billing Reference + + + + + + + + + ASBIE + Invoice Line. Document Reference + An association to Document Reference. + 0..n + Invoice Line + Document Reference + Document Reference + + + + + + + + + ASBIE + Invoice Line. Pricing Reference + An association to Pricing Reference. + 0..1 + Invoice Line + Pricing Reference + Pricing Reference + + + + + + + + + ASBIE + Invoice Line. Originator_ Party. Party + The party who originated the Order to which the Invoice is related. + 0..1 + Invoice Line + Originator + Party + Party + + + + + + + + + ASBIE + Invoice Line. Delivery + An association to Delivery. + 0..n + Invoice Line + Delivery + Delivery + + + + + + + + + ASBIE + Invoice Line. Payment Terms + An association to Payment Terms. + 0..n + Invoice Line + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Invoice Line. Allowance Charge + An association to Allowance Charge. + 0..n + Invoice Line + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Invoice Line. Tax Total + An association to Tax Total. + 0..n + Invoice Line + Tax Total + Tax Total + + + + + + + + + ASBIE + Invoice Line. Item + An association to Item. + 1 + Invoice Line + Item + Item + + + + + + + + + ASBIE + Invoice Line. Price + An association to Price. + 0..1 + Invoice Line + Price + Price + + + + + + + + + ASBIE + Invoice Line. Delivery Terms + An association to Delivery Terms. + 0..1 + Invoice Line + Delivery Terms + Delivery Terms + + + + + + + + + ASBIE + Invoice Line. Sub_ Invoice Line. Invoice Line + An association to one or more Invoice Lines. + 0..n + Invoice Line + Sub + Invoice Line + Invoice Line + + + + + + + + + + + ABIE + Item. Details + Information directly relating to an item. + Item + article, product, goods item + + + + + + + + + BBIE + Item. Description. Text + Free-form field that can be used to give a text description of the item. + 0..n + Item + Description + Text + Text. Type + + + + + + + + + BBIE + Item. Pack Quantity. Quantity + The unit packaging quantity. + 0..1 + Item + Pack Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Item. Pack Size. Numeric + The number of items in a pack. + 0..1 + Item + Pack Size + Numeric + Numeric. Type + + + + + + + + + BBIE + Item. Catalogue_ Indicator. Indicator + Indicates whether the item was ordered from a Catalogue (true) or not (false). + 0..1 + Item + Catalogue + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Item. Name + A short name optionally given to an item, such as a name from a Catalogue, as distinct from a description. + 0..1 + Item + Name + Name + Name. Type + + + + + + + + + BBIE + Item. Hazardous Risk_ Indicator. Indicator + Indicates whether the item as delivered is hazardous. + 0..1 + Item + Hazardous Risk + Indicator + Indicator + Indicator. Type + Default is negative + + + + + + + + + BBIE + Item. Additional_ Information. Text + Provides more details of the item (e.g., the URL of a relevant web page). + 0..1 + Item + Additional + Information + Text + Text. Type + + + + + + + + + BBIE + Item. Keyword. Text + A Seller Party-defined search string for the item. Also could be synonyms for identifying the item. + 0..n + Item + Keyword + Text + Text. Type + + + + + + + + + BBIE + Item. Brand Name. Name + Brand name for the item. + 0..n + Item + Brand Name + Name + Name. Type + Coca-Cola + + + + + + + + + BBIE + Item. Model Name. Name + Model name for the item. + 0..n + Item + Model Name + Name + Name. Type + VW Beetle + + + + + + + + + ASBIE + Item. Buyers_ Item Identification. Item Identification + Associates the item with its identification according to the buyer s system. + 0..1 + Item + Buyers + Item Identification + Item Identification + + + + + + + + + ASBIE + Item. Sellers_ Item Identification. Item Identification + Associates the item with its identification according to the seller s system. + 0..1 + Item + Sellers + Item Identification + Item Identification + + + + + + + + + ASBIE + Item. Manufacturers_ Item Identification. Item Identification + Associates the item with its identification according to the manufacturer s system. + 0..n + Item + Manufacturers + Item Identification + Item Identification + + + + + + + + + ASBIE + Item. Standard_ Item Identification. Item Identification + Associates the item with its identification according to a standard system. + 0..1 + Item + Standard + Item Identification + Item Identification + + + + + + + + + ASBIE + Item. Catalogue_ Item Identification. Item Identification + Associates the item with its identification according to a cataloguing system. + 0..1 + Item + Catalogue + Item Identification + Item Identification + + + + + + + + + ASBIE + Item. Additional_ Item Identification. Item Identification + Associates the item with other identification means. + 0..n + Item + Additional + Item Identification + Item Identification + + + + + + + + + ASBIE + Item. Catalogue_ Document Reference. Document Reference + An associative reference to Catalogue. + 0..1 + Item + Catalogue + Document Reference + Document Reference + + + + + + + + + ASBIE + Item. Item Specification_ Document Reference. Document Reference + An associative reference to a document providing Item specification. + 0..n + Item + Item Specification + Document Reference + Document Reference + + + + + + + + + ASBIE + Item. Origin_ Country. Country + Associates the item with its country of origin. + 0..1 + Item + Origin + Country + Country + + + + + + + + + ASBIE + Item. Commodity Classification + Associates the item with its classification(s) according to a commodity classifying system. + 0..n + Item + Commodity Classification + Commodity Classification + + + + + + + + + ASBIE + Item. Transaction Conditions + Associates the item with sales conditions appertaining to it. + 0..n + Item + Transaction Conditions + Transaction Conditions + + + + + + + + + ASBIE + Item. Hazardous Item + Associates the item with its hazardous item information. + 0..n + Item + Hazardous Item + Hazardous Item + + + + + + + + + ASBIE + Item. Classified_ Tax Category. Tax Category + Classifies the item using one or more categories of taxes. + 0..n + Item + Classified + Tax Category + Tax Category + + + + + + + + + ASBIE + Item. Additional_ Item Property. Item Property + Associates the item with a set of additional properties. + 0..n + Item + Additional + Item Property + Item Property + + + + + + + + + ASBIE + Item. Manufacturer_ Party. Party + Associates the item with its manufacturer. + 0..n + Item + Manufacturer + Party + Party + + + + + + + + + ASBIE + Item. Information Content Provider_ Party. Party + Associates the item with the party responsible for the its specification. + 0..1 + Item + Information Content Provider + Party + Party + + + + + + + + + ASBIE + Item. Origin_ Address. Address + Associates the item with the region of origin (not the country). + 0..n + Item + Origin + Address + Address + + + + + + + + + ASBIE + Item. Item Instance + An association to Item Instance. + 0..n + Item + Item Instance + Item Instance + + + + + + + + + ASBIE + Item. Certificate + An association to one or more Certificate. + 0..n + Item + Certificate + Certificate + + + + + + + + + ASBIE + Item. Dimension + An association to Dimension + 0..n + Item + Dimension + Dimension + + + + + + + + + + + ABIE + Item Comparison. Details + Used to compare different items based on cost, quantity, or measurements. + Item Comparison + + + + + + + + + BBIE + Item Comparison. Price Amount. Amount + The price for the comparison quantity of the item. + 0..1 + Item Comparison + Price Amount + Amount + Amount. Type + + + + + + + + + BBIE + Item Comparison. Quantity + The quantity used for price comparison with other items. + 0..1 + Item Comparison + Quantity + Quantity + Quantity. Type + per unit + + + + + + + + + + + ABIE + Item Identification. Details + Information about item identification. + Item Identification + + + + + + + + + BBIE + Item Identification. Identifier + An identifier for an item. + 1 + Item Identification + Identifier + Identifier + Identifier. Type + CUST001 3333-44-123 + + + + + + + + + BBIE + Item Identification. Extended_ Identifier. Identifier + An extended identifier for the item that identifies the item with specific properties, e.g., Item 123 = Chair / Item 123 Ext 45 = brown chair. + 0..1 + Item Identification + Extended + Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Item Identification. Physical Attribute + An association to Physical Attribute. + 0..n + Item Identification + Physical Attribute + Physical Attribute + + + + + + + + + ASBIE + Item Identification. Measurement_ Dimension. Dimension + An association to Measurement Dimension. + 0..n + Item Identification + Measurement + Dimension + Dimension + + + + + + + + + ASBIE + Item Identification. Issuer_ Party. Party + An association to Issuer Party i.e. the Party that issued the Item Identification. + 0..1 + Item Identification + Issuer + Party + Party + + + + + + + + + + + ABIE + Item Information Request Line. Details + A request to trading partner for item information. + Item Information Request Line + + + + + + + + + BBIE + Item Information Request Line. Time Frequency Code. Code + Standard period of time, how often the requested information shall be sent to the requester.. + 0..1 + Item Information Request Line + Time Frequency Code + Code + Code. Type + + + + + + + + + BBIE + Item Information Request Line. Supply Chain Activity Type Code. Code + A code used to identify an operational exception. + 0..1 + Item Information Request Line + Supply Chain Activity Type Code + Code + Code. Type + + + + + + + + + BBIE + Item Information Request Line. Forecast Type Code. Code + A description of a forecast selected from a list. + 0..1 + Item Information Request Line + Forecast Type Code + Code + Code. Type + + + + + + + + + BBIE + Item Information Request Line. Performance Metric Type Code. Code + A code used to identify a measure of performance. + 0..1 + Item Information Request Line + Performance Metric Type Code + Code + Code. Type + + + + + + + + + ASBIE + Item Information Request Line. Period + An association to Period for which the information requested. + 1..n + Item Information Request Line + Period + Period + + + + + + + + + ASBIE + Item Information Request Line. Sales Item + An association to one or more Sales Item. + 1..n + Item Information Request Line + Sales Item + Sales Item + + + + + + + + + + + ABIE + Item Instance. Details + Information about a specific instance of an item. + Item Instance + + + + + + + + + BBIE + Item Instance. Product Trace_ Identifier. Identifier + An identifier used for tracing the item, such as the EPC number used in RFID. + 0..1 + Item Instance + Product Trace + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Item Instance. Manufacture Date. Date + The date of manufacture of the Item Instance. + 0..1 + Item Instance + Manufacture Date + Date + Date. Type + + + + + + + + + BBIE + Item Instance. Manufacture Time. Time + The time of manufacture of the Item Instance. + 0..1 + Item Instance + Manufacture Time + Time + Time. Type + + + + + + + + + BBIE + Item Instance. BestBefore Date. Date + The date before which the use of the item Instance is better. + 0..1 + Item Instance + BestBefore Date + Date + Date. Type + + + + + + + + + BBIE + Item Instance. Registration Identifier. Identifier + The registration identifier of the Item Instance. + 0..1 + Item Instance + Registration Identifier + Identifier + Identifier. Type + car registration or licensing number + + + + + + + + + BBIE + Item Instance. Serial Identifier. Identifier + The serial number of the Item Instance. + 0..1 + Item Instance + Serial Identifier + Identifier + Identifier. Type + chassis number of a car + + + + + + + + + ASBIE + Item Instance. Additional_ Item Property. Item Property + An association to Additional Item Property. + 0..n + Item Instance + Additional + Item Property + Item Property + + + + + + + + + ASBIE + Item Instance. Lot Identification + Associates the item instance with its lot identification (the identification that allows recall of the item if necessary). + 0..1 + Item Instance + Lot Identification + Lot Identification + + + + + + + + + + + ABIE + Item Location Quantity. Details + Information about the properties of an item as they relate to specific quantities and/or specific locations. + Item Location Quantity + + + + + + + + + BBIE + Item Location Quantity. Lead Time. Measure + The time taken from the time of order to the time of delivery for an item. + 0..1 + Item Location Quantity + Lead Time + Measure + Measure. Type + 2 days , 24 hours + + + + + + + + + BBIE + Item Location Quantity. Minimum_ Quantity. Quantity + The minimum quantity that can be ordered to qualify for a specific price. + 0..1 + Item Location Quantity + Minimum + Quantity + Quantity + Quantity. Type + 10 boxes , 1 carton , 1000 sheets + + + + + + + + + BBIE + Item Location Quantity. Maximum_ Quantity. Quantity + The maximum quantity that can be ordered to qualify for a specific price. + 0..1 + Item Location Quantity + Maximum + Quantity + Quantity + Quantity. Type + 10 boxes , 1 carton , 1000 sheets + + + + + + + + + BBIE + Item Location Quantity. Hazardous Risk_ Indicator. Indicator + Indicates whether the item as delivered, in the stated quantity to the stated location, is hazardous. + 0..1 + Item Location Quantity + Hazardous Risk + Indicator + Indicator + Indicator. Type + Default is negative + + + + + + + + + BBIE + Item Location Quantity. Trading Restrictions. Text + A description of trade restrictions that apply to the item or quantities of the item. + 0..n + Item Location Quantity + Trading Restrictions + Text + Text. Type + not for export + + + + + + + + + ASBIE + Item Location Quantity. Applicable Territory_ Address. Address + An association to Territory (Address). + 0..n + Item Location Quantity + Applicable Territory + Address + Address + + + + + + + + + ASBIE + Item Location Quantity. Price + An association to Price. + 0..1 + Item Location Quantity + Price + Price + + + + + + + + + ASBIE + Item Location Quantity. Delivery Unit + An association to Delivery Unit. + 0..n + Item Location Quantity + Delivery Unit + Delivery Unit + + + + + + + + + ASBIE + Item Location Quantity. Applicable_ Tax Category. Tax Category + An association to Tax Category. + 0..n + Item Location Quantity + Applicable + Tax Category + Tax Category + + + + + + + + + ASBIE + Item Location Quantity. Package + An association to Package. + 0..1 + Item Location Quantity + Package + Package + + + + + + + + + ASBIE + Item Location Quantity. Allowance Charge + An association to Allowance Charge. + 0..n + Item Location Quantity + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Item Location Quantity. Dependent Price Reference + Information about the price of an item as a percentage of the price of another item. + 0..1 + Item Location Quantity + Dependent Price Reference + Dependent Price Reference + + + + + + + + + + + ABIE + Item Management Profile. Details + Profile for one or many items in the item location profile + Item Management Profile + + + + + + + + + BBIE + Item Management Profile. Frozen Period Days. Numeric + The number of days in the future that an Order Forecast quantity automatically +becomes a confirmed order for a product + 0..1 + Item Management Profile + Frozen Period Days + Numeric + Numeric. Type + + + + + + + + + BBIE + Item Management Profile. Minimum_ Inventory Quantity. Quantity + An indicator at which point a replenishment order should be placed to avoid +depleting the safety stock. + 0..1 + Item Management Profile + Minimum + Inventory Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Item Management Profile. Multiple_ Order Quantity. Quantity + The order quantity multiples in which the product may be ordered. + 0..1 + Item Management Profile + Multiple + Order Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Item Management Profile. Order Interval Days. Numeric + The number of days between regular replenishment orders for a product. + 0..1 + Item Management Profile + Order Interval Days + Numeric + Numeric. Type + + + + + + + + + BBIE + Item Management Profile. Replenishment Owner Description. Text + A description of the trading partner maintaining the item location profile + 0..1 + Item Management Profile + Replenishment Owner Description + Text + Text. Type + + + + + + + + + BBIE + Item Management Profile. Target Service Percent. Percent + A percentage designed to specify what Unit Service Level the trading partners expect to be maintained. + 0..1 + Item Management Profile + Target Service Percent + Percent + Percent. Type + + + + + + + + + BBIE + Item Management Profile. Target_ Inventory Quantity. Quantity + The target inventory expressed by a qualifier such as turns, total dollar value or + total quantity + 0..1 + Item Management Profile + Target + Inventory Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Item Management Profile. Effective_ Period. Period + An association to Effective Period. + 1 + Item Management Profile + Effective + Period + Period + + + + + + + + + ASBIE + Item Management Profile. Item + An association to one or more Goods Item. + 1 + Item Management Profile + Item + Item + + + + + + + + + ASBIE + Item Management Profile. Item Location Quantity + An association to the Item Location Quantity. + 0..1 + Item Management Profile + Item Location Quantity + Item Location Quantity + + + + + + + + + + + ABIE + Item Property. Details + Information about specific Item Properties. + Item Property + + + + + + + + + BBIE + Item Property. Identifier + An identifie for the Item Property. + 0..1 + Item Property + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Item Property. Name + The name of the Item Property. + 1 + Item Property + Name + Name + Name. Type + Energy Rating , Collar Size , Fat Content + + + + + + + + + BBIE + Item Property. Name Code. Code + The name of the Item Property expressed as code. + 0..1 + Item Property + Name Code + Code + Code. Type + + + + + + + + + BBIE + Item Property. Test Method. Text + The method of testing the value of Item Property expressed as text + 0..1 + Item Property + Test Method + Text + Text. Type + 100 watts , 15 European , 20% +/- 5% + + + + + + + + + BBIE + Item Property. Value. Text + The Item Property value expressed as a text. + 0..1 + Item Property + Value + Text + Text. Type + 100 watts , 15 European , 20% +/- 5% + + + + + + + + + BBIE + Item Property. Value_ Quantity. Quantity + The Item Property value expressed as a quantity. + 0..1 + Item Property + Value + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Item Property. Value Qualifier. Text + A text qualifier for the value of the property. + 0..n + Item Property + Value Qualifier + Text + Text. Type + + + + + + + + + BBIE + Item Property. Importance Code. Code + A code establishing the importance for the property when using it to describe a required Item. + 0..1 + Item Property + Importance Code + Code + Code. Type + + + + + + + + + BBIE + Item Property. List Value. Text + The List of Values for the Item Property. + 0..n + Item Property + List Value + Text + Text. Type + + + + + + + + + ASBIE + Item Property. Usability_ Period. Period + The period for which the Item Property is valid. + 0..1 + Item Property + Usability + Period + Period + + + + + + + + + ASBIE + Item Property. Item Property Group + An association to Item Property Group. + 0..n + Item Property + Item Property Group + Item Property Group + + + + + + + + + ASBIE + Item Property. Range_ Dimension. Dimension + An association to Dimension. + 0..1 + Item Property + Range + Dimension + Dimension + + + + + + + + + ASBIE + Item Property. Item Property Range + The range of values for the Item Property. + 0..1 + Item Property + Item Property Range + Item Property Range + + + + + + + + + + + ABIE + Item Property Group. Details + Information about sets of classifications (or groups) of Item Properties. + Item Property Group + + + + + + + + + BBIE + Item Property Group. Identifier + An identifier for the Item Property Group. + 1 + Item Property Group + Identifier + Identifier + Identifier. Type + 233-004 + + + + + + + + + BBIE + Item Property Group. Name + The name of the Item Property Group. + 0..1 + Item Property Group + Name + Name + Name. Type + Electrical Specifications , Dietary Content + + + + + + + + + BBIE + Item Property Group. Importance Code. Code + A code establishing the importance for the property group when using it to describe a required Item. + 0..1 + Item Property Group + Importance Code + Code + Code. Type + + + + + + + + + + + ABIE + Item Property Range. Details + The range of values for the Item Property. + Item Property Range + + + + + + + + + BBIE + Item Property Range. Minimum_ Value. Text + The minimum value in a range of property. + 0..1 + Item Property Range + Minimum + Value + Text + Text. Type + +44 1 2345 6789 president@whitehouse.com + + + + + + + + + BBIE + Item Property Range. Maximum_ Value. Text + The maximum value in a range of property. + 0..1 + Item Property Range + Maximum + Value + Text + Text. Type + +44 1 2345 6789 president@whitehouse.com + + + + + + + + + + + ABIE + Language. Details + Information about Language. + Language + + + + + + + + + BBIE + Language. Identifier + An identifier for a language, expressed as a code. + 0..1 + Language + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Language. Name + The name of the language. + 0..1 + Language + Name + Name + Name. Type + + + + + + + + + BBIE + Language. Locale Code. Code + The locale where the language is used, expressed as a code. + 0..1 + Language + Locale Code + Code + Code. Type + + + + + + + + + + + ABIE + Line Item. Details + Information about a Line Item. + Line Item + + + + + + + + + BBIE + Line Item. Identifier + Identifies the Line Item assigned by the buyer. + 1 + Line Item + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Line Item. Sales_ Order Identifier. Identifier + The identification given to a Line by the seller. + 0..1 + Line Item + Sales + Order Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Line Item. UUID. Identifier + A universally unique identifier for an instance of this ABIE. + 0..1 + Line Item + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Line Item. Note. Text + Free-form text applying to the Line Item. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Line Item + Note + Text + Text. Type + + + + + + + + + BBIE + Line Item. Line Status Code. Code + Identifies the status of the Line with respect to its original state. + 0..1 + Line Item + Line Status Code + Code + Line Status_ Code. Type + + + + + + + + + BBIE + Line Item. Quantity + The quantity of Items for the Line Item. + 0..1 + Line Item + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Line Item. Line Extension Amount. Amount + The total amount for the Line Item, including Allowance Charges but net of taxes. + 0..1 + Line Item + Line Extension Amount + Amount + Amount. Type + + + + + + + + + BBIE + Line Item. Total_ Tax Amount. Amount + The total tax amount for the Line Item. + 0..1 + Line Item + Total + Tax Amount + Amount + Amount. Type + + + + + + + + + BBIE + Line Item. Minimum_ Quantity. Quantity + The minimum quantity for the Item on the Line. + 0..1 + Line Item + Minimum + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Line Item. Maximum_ Quantity. Quantity + The maximum quantity for the Item on the Line. + 0..1 + Line Item + Maximum + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Line Item. Minimum_ Backorder. Quantity + The minimum back order quantity (where back order is allowed). + 0..1 + Line Item + Minimum + Backorder + Quantity + Quantity. Type + + + + + + + + + BBIE + Line Item. Maximum_ Backorder. Quantity + The maximum back order quantity (where back order is allowed). + 0..1 + Line Item + Maximum + Backorder + Quantity + Quantity. Type + + + + + + + + + BBIE + Line Item. Inspection Method Code. Code + Inspection requirements for a Line Item, expressed as a code. + 0..1 + Line Item + Inspection Method Code + Code + Code. Type + + + + + + + + + BBIE + Line Item. Partial Delivery Indicator. Indicator + Indicates whether a partial delivery is allowed. + 0..1 + Line Item + Partial Delivery Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Line Item. Back Order Allowed Indicator. Indicator + Indicates whether back order is allowed. + 0..1 + Line Item + Back Order Allowed Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Line Item. Accounting Cost Code. Code + The buyer s accounting code applied to the Line Item. + 0..1 + Line Item + Accounting Cost Code + Code + Code. Type + + + + + + + + + BBIE + Line Item. Accounting Cost. Text + The buyer s accounting cost centre applied to the Line Item, expressed as text. + 0..1 + Line Item + Accounting Cost + Text + Text. Type + + + + + + + + + BBIE + Line Item. Warranty_ Information. Text + Information regarding the warranty for the good or service. Warranty may be provided by any Party (can be described in the association to Warranty Party). + 0..n + Line Item + Warranty + Information + Text + Text. Type + Unless specified otherwise and in addition to any rights the Customer may have under statute, Dell warrants to the Customer that Dell branded Products (excluding third party products and software), will be free from defects in materials and workmanship affecting normal use for a period of one year from invoice date ( Standard Warranty ). + + + + + + + + + ASBIE + Line Item. Delivery + An association to Delivery. + 0..n + Line Item + Delivery + Delivery + + + + + + + + + ASBIE + Line Item. Delivery Terms + An association to Delivery Terms. + 0..1 + Line Item + Delivery Terms + Delivery Terms + + + + + + + + + ASBIE + Line Item. Originator_ Party. Party + The party who originated Order. + 0..1 + Line Item + Originator + Party + Party + + + + + + + + + ASBIE + Line Item. Ordered Shipment + An association to Ordered Shipment. + 0..n + Line Item + Ordered Shipment + Ordered Shipment + + + + + + + + + ASBIE + Line Item. Pricing Reference + An association to Pricing Reference. + 0..1 + Line Item + Pricing Reference + Pricing Reference + + + + + + + + + ASBIE + Line Item. Allowance Charge + An association to Allowance Charge. + 0..n + Line Item + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Line Item. Price + An association to Price. + 0..1 + Line Item + Price + Price + + + + + + + + + ASBIE + Line Item. Item + An association to Item. + 1 + Line Item + Item + Item + + + + + + + + + ASBIE + Line Item. Sub_ Line Item. Line Item + An association to one or more Line Item. + 0..n + Line Item + Sub + Line Item + Line Item + + + + + + + + + ASBIE + Line Item. Warranty Validity_ Period. Period + Association with a period to indicate the guarantee for the work, service or goods. + 0..1 + Line Item + Warranty Validity + Period + Period + + + + + + + + + ASBIE + Line Item. Warranty_ Party. Party + The party responsible for the Warranty. + 0..1 + Line Item + Warranty + Party + Party + + + + + + + + + + + ABIE + Line Reference. Details + Reference to a Line on a document. + Line Reference + + + + + + + + + BBIE + Line Reference. Line Identifier. Identifier + Identifies the Line on the referenced document. + 1 + Line Reference + Line Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Line Reference. UUID. Identifier + A universally unique identifier for an instance of this ABIE. + 0..1 + Line Reference + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Line Reference. Line Status Code. Code + Identifies the status of the referenced Line with respect to its original state. + 0..1 + Line Reference + Line Status Code + Code + Line Status_ Code. Type + + + + + + + + + ASBIE + Line Reference. Document Reference + An association to Document Reference. + 0..1 + Line Reference + Document Reference + Document Reference + + + + + + + + + + + ABIE + Line Response. Details + A response to a Line in a Document. + Line Response + + + + + + + + + ASBIE + Line Response. Line Reference + An association to Line Reference. + 1 + Line Response + Line Reference + Line Reference + + + + + + + + + ASBIE + Line Response. Response + An association to Response. + 1..n + Line Response + Response + Response + + + + + + + + + + + ABIE + Location. Details + Information about a location. + Location + + + + + + + + + BBIE + Location. Identifier + The unique identifier for the location, e.g., the EAN Location Number, GLN. + 0..1 + Location + Identifier + Identifier + Identifier. Type + 5790002221134 + + + + + + + + + BBIE + Location. Description. Text + The description or name of the location. + 0..1 + Location + Description + Text + Text. Type + + + + + + + + + BBIE + Location. Conditions. Text + Conditions describing the location. + 0..1 + Location + Conditions + Text + Text. Type + + + + + + + + + BBIE + Location. Country Subentity. Text + A territorial division of a country, such as a county or state. + 0..1 + Location + Country Subentity + Text + Text. Type + AdministrativeArea, State, Country, Shire, Canton + Florida , Tamilnadu + + + + + + + + + BBIE + Location. Country Subentity Code. Code + The territorial division of a country, such as a county or state, expressed as a code. + 0..1 + Location + Country Subentity Code + Code + Code. Type + AdministrativeAreaCode, State Code + + + + + + + + + BBIE + Location. Location Type Code. Code + The code specifying the location type. + 0..1 + Location + Location Type Code + Code + Code. Type + + + + + + + + + BBIE + Location. Information_ URI. Identifier + The URI pointing to information about location. + 0..1 + Location + Information + URI + Identifier + Identifier. Type + + + + + + + + + ASBIE + Location. Validity_ Period. Period + Period(s) in which the location can be used, e.g., for delivery. + 0..n + Location + Validity + Period + Period + + + + + + + + + ASBIE + Location. Address + Association to the address of the location. + 0..1 + Location + Address + Address + + + + + + + + + ASBIE + Location. Subsidiary_ Location. Location + Information about a subsidiary location. + 0..n + Location + Subsidiary + Location + Location + + + + + + + + + ASBIE + Location. Location Coordinate + Information about physical (geographical) location. + 0..n + Location + Location Coordinate + Location Coordinate + + + + + + + + + + + ABIE + Location Coordinate. Details + Information about physical (geographical) location. + Location Coordinate + + + + + + + + + BBIE + Location Coordinate. Coordinate System Code. Code + An identifier for the location system used. + 0..1 + Location Coordinate + Coordinate System Code + Code + Code. Type + + + + + + + + + BBIE + Location Coordinate. Latitude_ Degrees. Measure + The measure of latitude in degrees. + 0..1 + Location Coordinate + Latitude + Degrees + Measure + Measure. Type + + + + + + + + + BBIE + Location Coordinate. Latitude_ Minutes. Measure + The measure of latitude in minutes. + 0..1 + Location Coordinate + Latitude + Minutes + Measure + Measure. Type + + + + + + + + + BBIE + Location Coordinate. Latitude Direction Code. Code + The direction of latitude measurement from the equator. + 0..1 + Location Coordinate + Latitude Direction Code + Code + Latitude Direction_ Code. Type + + + + + + + + + BBIE + Location Coordinate. Longitude_ Degrees. Measure + The measure of longitude in degrees. + 0..1 + Location Coordinate + Longitude + Degrees + Measure + Measure. Type + + + + + + + + + BBIE + Location Coordinate. Longitude_ Minutes. Measure + The measure of longitude in minutes. + 0..1 + Location Coordinate + Longitude + Minutes + Measure + Measure. Type + + + + + + + + + BBIE + Location Coordinate. Longitude Direction Code. Code + The direction of longitude measurement from the meridian. + 0..1 + Location Coordinate + Longitude Direction Code + Code + Longitude Direction_ Code. Type + + + + + + + + + BBIE + Location Coordinate. Altitude. Measure + The measure of altitude. + 0..1 + Location Coordinate + Altitude + Measure + Measure. Type + + + + + + + + + + + ABIE + Lot Identification. Details + Information about a lot (of Item Instances). + Lot Identification + + + + + + + + + BBIE + Lot Identification. Lot Number. Identifier + Identifies the lot. + 0..1 + Lot Identification + Lot Number + Identifier + Identifier. Type + + + + + + + + + BBIE + Lot Identification. Expiry Date. Date + The expiry date of the lot. + 0..1 + Lot Identification + Expiry Date + Date + Date. Type + + + + + + + + + ASBIE + Lot Identification. Additional_ Item Property. Item Property + An association to Additional Item Property. + 0..n + Lot Identification + Additional + Item Property + Item Property + + + + + + + + + + + ABIE + Maritime Transport. Details + Describes a water (including sea, river, and canal) transport vessel. + Maritime Transport + + + + + + + + + BBIE + Maritime Transport. Vessel Identifier. Identifier + Identifies a specific vessel. + 0..1 + Maritime Transport + Vessel Identifier + Identifier + Identifier. Type + Lloyds Number, Registration Number (WCO ID 167) + International Maritime Organisation number of a vessel + + + + + + + + + BBIE + Maritime Transport. Vessel Name. Name + The name of the vessel. + 0..1 + Maritime Transport + Vessel Name + Name + Name. Type + Ships Name + + + + + + + + + + + ABIE + Meter. Details + Information about Meter(s) and meteringdata + Meter + + + + + + + + + BBIE + Meter. Meter Number. Text + Actual meter number (Current) + 0..1 + Meter + Meter Number + Text + Text. Type + 61722x + + + + + + + + + BBIE + Meter. Meter Name. Text + Statement af the meter name, so it s possible to identifier if it concern about a main meter or a sub meter. + 0..1 + Meter + Meter Name + Text + Text. Type + + + + + + + + + BBIE + Meter. Meter Constant. Text + Factor, the meterstand must multiplies with to come up with the consumption. + 0..1 + Meter + Meter Constant + Text + Text. Type + 1.000 + + + + + + + + + BBIE + Meter. Meter Constant Code. Code + The formula to use, when the value i MeterConstant is used. + 0..1 + Meter + Meter Constant Code + Code + Code. Type + Factor + + + + + + + + + BBIE + Meter. Total_ Delivered Quantity. Quantity + The sum of the total consumpted quantity calculated from the meterreading + 0..1 + Meter + Total + Delivered Quantity + Quantity + Quantity. Type + 5761.00 + + + + + + + + + ASBIE + Meter. Meter Reading + Readings of the meterstand on the current meter + 0..n + Meter + Meter Reading + Meter Reading + + + + + + + + + ASBIE + Meter. Meter Property + Information about specific Meter Properties. + 0..n + Meter + Meter Property + Meter Property + + + + + + + + + + + ABIE + Meter Property. Details + Information about specific Meter Properties. + Meter Property + + + + + + + + + BBIE + Meter Property. Name + The name of the Meter Property. + 0..1 + Meter Property + Name + Name + Name. Type + Energy Rating , Collar Size , Fat Content + + + + + + + + + BBIE + Meter Property. Name Code. Code + The name of the Meter Property expressed as code. + 0..1 + Meter Property + Name Code + Code + Code. Type + + + + + + + + + BBIE + Meter Property. Value. Text + The Meter Property value expressed as a text. + 0..n + Meter Property + Value + Text + Text. Type + 100 watts , 15 European , 20% +/- 5% + + + + + + + + + BBIE + Meter Property. Value_ Quantity. Quantity + The Meter Property value expressed as a quantity. + 0..1 + Meter Property + Value + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Meter Property. Value Qualifier. Text + A text qualifier for the value of the property. + 0..n + Meter Property + Value Qualifier + Text + Text. Type + + + + + + + + + + + ABIE + Meter Reading. Details + Readings of the meterstand on the current meter + Meter Reading + + + + + + + + + BBIE + Meter Reading. Meter Reading Type. Text + Statement of the meterreading type + 0..1 + Meter Reading + Meter Reading Type + Text + Text. Type + Electricity + + + + + + + + + BBIE + Meter Reading. Meter Reading Type Code. Code + Statement of the meterreading type code + 0..1 + Meter Reading + Meter Reading Type Code + Code + Code. Type + Electricity + + + + + + + + + BBIE + Meter Reading. Previous_ Meter Reading Date. Date + Statement of the ealiere meterreading + 1 + Meter Reading + Previous + Meter Reading Date + Date + Date. Type + 2006-09-01 + + + + + + + + + BBIE + Meter Reading. Previous_ Meter Quantity. Quantity + Statement of the eailere meterreading + 1 + Meter Reading + Previous + Meter Quantity + Quantity + Quantity. Type + 122604.00 + + + + + + + + + BBIE + Meter Reading. Latest_ Meter Reading Date. Date + Statement of the latest meterreading + 1 + Meter Reading + Latest + Meter Reading Date + Date + Date. Type + 2006-09-01 + + + + + + + + + BBIE + Meter Reading. Latest_ Meter Quantity. Quantity + Statement of the latest MeterPoint. + 1 + Meter Reading + Latest + Meter Quantity + Quantity + Quantity. Type + 128365.00 + + + + + + + + + BBIE + Meter Reading. Meter Reading_ Method. Text + Indicatation of whitch method of reading there are used. + 0..1 + Meter Reading + Meter Reading + Method + Text + Text. Type + Manuel + + + + + + + + + BBIE + Meter Reading. Meter Reading_ Method Code. Code + Indicatation of the code, whitch refer to the method of reading there are used. + 0..1 + Meter Reading + Meter Reading + Method Code + Code + Code. Type + Estimated + + + + + + + + + BBIE + Meter Reading. Meter Reading_ Comments. Text + Comments in relation to the meter reading. + 0..n + Meter Reading + Meter Reading + Comments + Text + Text. Type + The last stated meterstand is estimated + + + + + + + + + BBIE + Meter Reading. Delivered_ Quantity. Quantity + Cunsumption in the period from PreviousMeterReadingDate to LatestMeterReadingDate. + 1 + Meter Reading + Delivered + Quantity + Quantity + Quantity. Type + + + + + + + + + + + ABIE + Miscellaneous Event. Details + Information on MiscellenaousEvent for RetailEvent + Miscellaneous Event + + + + + + + + + BBIE + Miscellaneous Event. Miscellaneous Event Type Code. Code + A further refinement of type of miscellenaous event that is being communicated + 1 + Miscellaneous Event + Miscellaneous Event Type Code + Code + Code. Type + + + + + + + + + ASBIE + Miscellaneous Event. Event Line Item + Event Line Item of Miscellaneous Event + 1..n + Miscellaneous Event + Event Line Item + Event Line Item + + + + + + + + + + + ABIE + Monetary Total. Details + Information about Monetary Totals. + Monetary Total + + + + + + + + + BBIE + Monetary Total. Line Extension Amount. Amount + The total of Line Extension Amounts net of tax and settlement discounts, but inclusive of any applicable rounding amount. + 0..1 + Monetary Total + Line Extension Amount + Amount + Amount. Type + + + + + + + + + BBIE + Monetary Total. Tax Exclusive Amount. Amount + The total amount exclusive of taxes. + 0..1 + Monetary Total + Tax Exclusive Amount + Amount + Amount. Type + + + + + + + + + BBIE + Monetary Total. Tax Inclusive Amount. Amount + The Invoice total including taxes (the sum of payable amount plus the prepaid amount). + 0..1 + Monetary Total + Tax Inclusive Amount + Amount + Amount. Type + + + + + + + + + BBIE + Monetary Total. Allowance_ Total Amount. Amount + The total amount of all allowances. + 0..1 + Monetary Total + Allowance + Total Amount + Amount + Amount. Type + + + + + + + + + BBIE + Monetary Total. Charge_ Total Amount. Amount + The total amount of all charges. + 0..1 + Monetary Total + Charge + Total Amount + Amount + Amount. Type + + + + + + + + + BBIE + Monetary Total. Prepaid Amount. Amount + The total prepaid amount. + 0..1 + Monetary Total + Prepaid Amount + Amount + Amount. Type + + + + + + + + + BBIE + Monetary Total. Payable_ Rounding Amount. Amount + The rounding amount (positive or negative) added to the calculated Line Extension Total Amount to produce the rounded Line Extension Total Amount. + 0..1 + Monetary Total + Payable + Rounding Amount + Amount + Amount. Type + + + + + + + + + BBIE + Monetary Total. Payable_ Amount. Amount + The total amount to be paid. + 1 + Monetary Total + Payable + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Monetary Total. Payable_ Alternative Amount. Amount + + 0..1 + Monetary Total + Payable + Alternative Amount + Amount + Amount. Type + + + + + + + + + + + ABIE + Notification Requirement. Details + Information about Notification Requirements. + Notification Requirement + + + + + + + + + BBIE + Notification Requirement. Notification Type Code. Code + Identifies the type of notification. For example Pickup status. + 1 + Notification Requirement + Notification Type Code + Code + Code. Type + + + + + + + + + ASBIE + Notification Requirement. Notify_ Party. Party + The party to be notified. + 0..n + Notification Requirement + Notify + Party + Party + + + + + + + + + ASBIE + Notification Requirement. Pre Event_ Period. Period + The period before a certain event a status notification should be issued. + 0..1 + Notification Requirement + Pre Event + Period + Period + + + + + + + + + ASBIE + Notification Requirement. Post Event_ Period. Period + The (maximum) period after a certain event a status notification should be issued. + 0..1 + Notification Requirement + Post Event + Period + Period + + + + + + + + + + + ABIE + On Account Payment. Details + The coming planned a conto payments + On Account Payment + + + + + + + + + BBIE + On Account Payment. Estimated_ Consumed Quantity. Quantity + The quantity utilize during the period to be paid for. + 1 + On Account Payment + Estimated + Consumed Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + On Account Payment. Note. Text + Free-form text explaining the usage of Account Payment. + 0..1 + On Account Payment + Note + Text + Text. Type + We make a reservation for price regulations. You will receive you next yearly statement about one year from today. + + + + + + + + + ASBIE + On Account Payment. Payment Terms + An association to Payment Terms. + 1..n + On Account Payment + Payment Terms + Payment Terms + + + + + + + + + + + ABIE + Order Line. Details + Information about an Order Line. + Order Line + + + + + + + + + BBIE + Order Line. Substitution Status Code. Code + A code indicating the substitution status of the Order Line. Order Line may indicate that a substitute is proposed by the buyer or by the seller (in Order Response) or that a substitution has been made by the seller (in Order Response). + 0..1 + Order Line + Substitution Status Code + Code + Substitution Status_ Code. Type + + + + + + + + + BBIE + Order Line. Note. Text + Free-form text applying to the Order Line. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Order Line + Note + Text + Text. Type + + + + + + + + + ASBIE + Order Line. Line Item + An association to Line Item. + 1 + Order Line + Line Item + Line Item + + + + + + + + + ASBIE + Order Line. Seller Proposed Substitute_ Line Item. Line Item + Substitute Line Items proposed by the seller (in Order Response). + 0..n + Order Line + Seller Proposed Substitute + Line Item + Line Item + + + + + + + + + ASBIE + Order Line. Seller Substituted_ Line Item. Line Item + Item(s) replaced by the seller. The original ordered quantity and pricing may be different from the substituted item. However, when an item is substituted by the seller, it is assumed that other information, such as shipment details, will be the same. + 0..n + Order Line + Seller Substituted + Line Item + Line Item + + + + + + + + + ASBIE + Order Line. Buyer Proposed Substitute_ Line Item. Line Item + Possible alternatives, proposed by the buyer, to the Line Item. + 0..n + Order Line + Buyer Proposed Substitute + Line Item + Line Item + + + + + + + + + ASBIE + Order Line. Catalogue_ Line Reference. Line Reference + An associative reference to Catalogue Line. + 0..1 + Order Line + Catalogue + Line Reference + Line Reference + + + + + + + + + ASBIE + Order Line. Quotation_ Line Reference. Line Reference + an associative reference to Quotation Line. + 0..1 + Order Line + Quotation + Line Reference + Line Reference + + + + + + + + + ASBIE + Order Line. Document Reference + An association to Document Reference. + 0..n + Order Line + Document Reference + Document Reference + + + + + + + + + + + ABIE + Order Line Reference. Details + Information about an Order Line Reference. + Order Line Reference + + + + + + + + + BBIE + Order Line Reference. Line Identifier. Identifier + Identifies the referenced Order Line assigned by the buyer. + 1 + Order Line Reference + Line Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Order Line Reference. Sales Order_ Line Identifier. Identifier + Identifies the referenced Order Line assigned by the seller. + 0..1 + Order Line Reference + Sales Order + Line Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Order Line Reference. UUID. Identifier + A universally unique identifier for an instance of this ABIE. + 0..1 + Order Line Reference + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Order Line Reference. Line Status Code. Code + Identifies the status of the referenced Order Line with respect to its original state. + 0..1 + Order Line Reference + Line Status Code + Code + Line Status_ Code. Type + + + + + + + + + ASBIE + Order Line Reference. Order Reference + An association to Order Reference. + 0..1 + Order Line Reference + Order Reference + Order Reference + + + + + + + + + + + ABIE + Order Reference. Details + Information about an Order Reference. + Order Reference + + + + + + + + + BBIE + Order Reference. Identifier + Identifies the referenced Order assigned by the buyer. + 1 + Order Reference + Identifier + Identifier + Identifier. Type + PO-001 3333-44-123 + + + + + + + + + BBIE + Order Reference. Sales_ Order Identifier. Identifier + Identifies the referenced Order assigned by the seller. + 0..1 + Order Reference + Sales + Order Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Order Reference. Copy_ Indicator. Indicator + Indicates whether the referenced Order is a copy (true) or the original (false). + 0..1 + Order Reference + Copy + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Order Reference. UUID. Identifier + A universally unique identifier for an instance of this ABIE. + 0..1 + Order Reference + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Order Reference. Issue Date. Date + The date on which the referenced Order was issued. + 0..1 + Order Reference + Issue Date + Date + Date. Type + + + + + + + + + BBIE + Order Reference. Issue Time. Time + The time at which the referenced Order was issued. + 0..1 + Order Reference + Issue Time + Time + Time. Type + + + + + + + + + BBIE + Order Reference. Customer_ Reference. Text + A reference used (CRI) for tagging purchasing card transactions. + 0..1 + Order Reference + Customer + Reference + Text + Text. Type + + + + + + + + + BBIE + Order Reference. Order Type Code. Code + A code indicating the type of Order. + 0..1 + Order Reference + Order Type Code + Code + Code. Type + + + + + + + + + ASBIE + Order Reference. Document Reference + An association to Document Reference. + 0..1 + Order Reference + Document Reference + Document Reference + + + + + + + + + + + ABIE + Ordered Shipment. Details + Information about an Ordered Shipment. + Ordered Shipment + + + + + + + + + ASBIE + Ordered Shipment. Shipment + An association to Shipment. + 1 + Ordered Shipment + Shipment + Shipment + + + + + + + + + ASBIE + Ordered Shipment. Package + An association to Package. + 0..n + Ordered Shipment + Package + Package + + + + + + + + + + + ABIE + Package. Details + Information about a package. + Package + + + + + + + + + BBIE + Package. Identifier + Identifies the package. + 0..1 + Package + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Package. Quantity + The quantity (of items) contained in the package. + 0..1 + Package + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Package. Returnable Material_ Indicator. Indicator + Indicates whether the packaging material is returnable (true) or not (false). + 0..1 + Package + Returnable Material + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Package. Package Level Code. Code + Code specifying a level of packaging. + 0..1 + Package + Package Level Code + Code + Code. Type + + + + + + + + + BBIE + Package. Packaging Type Code. Code + Code specifying the type of packaging of an item. + 0..1 + Package + Packaging Type Code + Code + Packaging Type_ Code. Type + Package classification code + + + + + + + + + BBIE + Package. Packing Material. Text + Description of the type of packaging of an item. + 0..n + Package + Packing Material + Text + Text. Type + + + + + + + + + BBIE + Package. Trace_ Identifier. Identifier + An identifier used for tracing the package such as the EPC number used in RFID. + 0..1 + Package + Trace + Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Package. Contained_ Package. Package + An association to Contained Package; used to describe a package within a package. + 0..n + Package + Contained + Package + Package + + + + + + + + + ASBIE + Package. Containing_ Transport Equipment. Transport Equipment + An association to a Transport Equipment containing this package. + 0..1 + Package + Containing + Transport Equipment + Transport Equipment + + + + + + + + + ASBIE + Package. Goods Item + An association to Goods Item. + 0..n + Package + Goods Item + Goods Item + + + + + + + + + ASBIE + Package. Measurement_ Dimension. Dimension + An association to describe the measurement dimensions of the package. + 0..n + Package + Measurement + Dimension + Dimension + + + + + + + + + ASBIE + Package. Delivery Unit + An association to Delivery Units in the package. + 0..n + Package + Delivery Unit + Delivery Unit + + + + + + + + + ASBIE + Package. Delivery + An association to Delivery. + 0..1 + Package + Delivery + Delivery + + + + + + + + + ASBIE + Package. Pickup + An association to Pickup. + 0..1 + Package + Pickup + Pickup + + + + + + + + + ASBIE + Package. Despatch + An association to Despatch. + 0..1 + Package + Despatch + Despatch + + + + + + + + + + + ABIE + Party. Details + Information about an organization, sub-organization, or individual fulfilling a role in a business process. + Party + + + + + + + + + BBIE + Party. Mark Care_ Indicator. Indicator + Indicates whether a party is C/O (care of). + 0..1 + Party + Mark Care + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Party. Mark Attention_ Indicator. Indicator + Indicates whether a party is FAO (for the attention of). + 0..1 + Party + Mark Attention + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Party. Website_ URI. Identifier + The Uniform Resource Identifier (URI) of the party. + 0..1 + Party + Website + URI + Identifier + Identifier. Type + + + + + + + + + BBIE + Party. Logo Reference. Identifier + A party s logo. + 0..1 + Party + Logo Reference + Identifier + Identifier. Type + http://www2.coca-cola.com/images/logo.gif + + + + + + + + + BBIE + Party. Endpoint Identifier. Identifier + Identifies the end point of the routing service, e.g., EAN Location Number, GLN. + 0..1 + Party + Endpoint Identifier + Identifier + Identifier. Type + 5790002221134 + + + + + + + + + BBIE + Party. Industry Classification Code. Code + Indicates the role of a Party + 0..1 + Party + Industry Classification Code + Code + Code. Type + Public authority , NAIC codes + + + + + + + + + ASBIE + Party. Party Identification + An association to Party Identification. + 0..n + Party + Party Identification + Party Identification + + + + + + + + + ASBIE + Party. Party Name + An association to Party Name. + 0..n + Party + Party Name + Party Name + + + + + + + + + ASBIE + Party. Language + An association to Language. + 0..1 + Party + Language + Language + + + + + + + + + ASBIE + Party. Postal_ Address. Address + The party s postal address. + 0..1 + Party + Postal + Address + Address + + + + + + + + + ASBIE + Party. Physical_ Location. Location + The party s physical location. + 0..1 + Party + Physical + Location + Location + + + + + + + + + ASBIE + Party. Party Tax Scheme + An association to Party Tax Scheme. + 0..n + Party + Party Tax Scheme + Party Tax Scheme + + + + + + + + + ASBIE + Party. Party Legal Entity + An association to Party Legal Entity. + 0..n + Party + Party Legal Entity + Party Legal Entity + + + + + + + + + ASBIE + Party. Contact + Contact information related to the Party. + 0..1 + Party + Contact + Contact + + + + + + + + + ASBIE + Party. Person + An association to a person. + 0..n + Party + Person + Person + + + + + + + + + ASBIE + Party. Agent_ Party. Party + An association to another party who acts as an agent for this party. + 0..1 + Party + Agent + Party + Party + Customs Broker + + + + + + + + + ASBIE + Party. Service Provider Party + An association to another party who provides a service to this party. + 0..n + Party + Service Provider Party + Service Provider Party + + + + + + + + + ASBIE + Party. Power Of Attorney + An association to one or more Power of Attorney. + 0..n + Party + Power Of Attorney + Power Of Attorney + + + + + + + + + ASBIE + Party. Financial Account + An association to Financial Account + 0..1 + Party + Financial Account + Financial Account + + + + + + + + + + + ABIE + Party Identification. Details + Information about a party s identification. + Party Identification + + + + + + + + + BBIE + Party Identification. Identifier + Identifies a party. + 1 + Party Identification + Identifier + Identifier + Identifier. Type + + + + + + + + + + + ABIE + Party Legal Entity. Details + Information directly relating to the legal registration that is applicable to a party. + Party Legal Entity + + + + + + + + + BBIE + Party Legal Entity. Registration_ Name. Name + The name of a party as registered with the legal authority. + 0..1 + Party Legal Entity + Registration + Name + Name + Name. Type + Microsoft Corporation + + + + + + + + + BBIE + Party Legal Entity. Company Identifier. Identifier + Identifies a company as registered with the company registration scheme. + 0..1 + Party Legal Entity + Company Identifier + Identifier + Identifier. Type + Business Registration Number, Company Number + 3556625 + + + + + + + + + BBIE + Party Legal Entity. Registration_ Date. Date + The registration date of the CompanyID. + 0..1 + Party Legal Entity + Registration + Date + Date + Date. Type + + + + + + + + + BBIE + Party Legal Entity. Registration Expiration_ Date. Date + The expiration date, e.g. for Import/Export licenses. + 0..1 + Party Legal Entity + Registration Expiration + Date + Date + Date. Type + + + + + + + + + BBIE + Party Legal Entity. Company Legal Form Code. Code + The company legal status, expressed as a code. + 0..1 + Party Legal Entity + Company Legal Form Code + Code + Code. Type + Legal Status + + + + + + + + + BBIE + Party Legal Entity. Sole Proprietorship Indicator. Indicator + An indicator to state if the company is owned and controlled by one person (true) or more (false) + 0..1 + Party Legal Entity + Sole Proprietorship Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Party Legal Entity. Company Liquidation Status Code. Code + The company liquidation status, expressed as a code. + 0..1 + Party Legal Entity + Company Liquidation Status Code + Code + Code. Type + + + + + + + + + BBIE + Party Legal Entity. Corporate Stock_ Amount. Amount + The Capital Stock (equities) of a corporate. + 0..1 + Party Legal Entity + Corporate Stock + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Party Legal Entity. Fully Paid Shares Indicator. Indicator + An indicator to state that all shares of the corporate stock have been paid by shareholders. + 0..1 + Party Legal Entity + Fully Paid Shares Indicator + Indicator + Indicator. Type + + + + + + + + + ASBIE + Party Legal Entity. Registration_ Address. Address + Associates with the registered address of the party within a Corporate Registration Scheme. + 0..1 + Party Legal Entity + Registration + Address + Address + + + + + + + + + ASBIE + Party Legal Entity. Corporate Registration Scheme + Associates the party with a Corporate Registration Scheme. + 0..1 + Party Legal Entity + Corporate Registration Scheme + Corporate Registration Scheme + + + + + + + + + ASBIE + Party Legal Entity. Head_ Party. Party + An associationt to the Head Party. + 0..1 + Party Legal Entity + Head + Party + Party + + + + + + + + + ASBIE + Party Legal Entity. Shareholder Party + Information about the shareholder. + 0..n + Party Legal Entity + Shareholder Party + Shareholder Party + + + + + + + + + + + ABIE + Party Name. Details + Information about a party s name. + Party Name + + + + + + + + + BBIE + Party Name. Name + The name of the party. + 1 + Party Name + Name + Name + Name. Type + Microsoft + + + + + + + + + + + ABIE + Party Tax Scheme. Details + Information about a party s Tax Scheme. + Party Tax Scheme + + + + + + + + + BBIE + Party Tax Scheme. Registration_ Name. Name + The official name of the party as registered with the relevant fiscal authority. + 0..1 + Party Tax Scheme + Registration + Name + Name + Name. Type + Microsoft Corporation + + + + + + + + + BBIE + Party Tax Scheme. Company Identifier. Identifier + The identifier assigned for tax purposes to a party by the taxation authority. + 0..1 + Party Tax Scheme + Company Identifier + Identifier + Identifier. Type + VAT Number + 3556625 + + + + + + + + + BBIE + Party Tax Scheme. Tax Level Code. Code + The section or role within the tax scheme that applies to the party. + 0..1 + Party Tax Scheme + Tax Level Code + Code + Code. Type + + + + + + + + + BBIE + Party Tax Scheme. Exemption Reason Code. Code + A reason for a party s exemption from tax, expressed as a code. + 0..1 + Party Tax Scheme + Exemption Reason Code + Code + Code. Type + + + + + + + + + BBIE + Party Tax Scheme. Exemption_ Reason. Text + A reason for a party s exemption from tax, expressed as text. + 0..1 + Party Tax Scheme + Exemption + Reason + Text + Text. Type + + + + + + + + + ASBIE + Party Tax Scheme. Registration_ Address. Address + An association to Registered Address (for tax purposes). + 0..1 + Party Tax Scheme + Registration + Address + Address + + + + + + + + + ASBIE + Party Tax Scheme. Tax Scheme + An association to Tax Scheme. + 1 + Party Tax Scheme + Tax Scheme + Tax Scheme + + + + + + + + + + + ABIE + Payment. Details + Information directly relating to a specific payment. + Payment + + + + + + + + + BBIE + Payment. Identifier + Identifies the payment. + 0..1 + Payment + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Payment. Paid_ Amount. Amount + The amount paid. + 0..1 + Payment + Paid + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Payment. Received_ Date. Date + The date on which the payment was received. + 0..1 + Payment + Received + Date + Date + Date. Type + + + + + + + + + BBIE + Payment. Paid_ Date. Date + The date at which the payment was made. + 0..1 + Payment + Paid + Date + Date + Date. Type + + + + + + + + + BBIE + Payment. Paid_ Time. Time + The time at which the payment was made. + 0..1 + Payment + Paid + Time + Time + Time. Type + + + + + + + + + BBIE + Payment. Instruction Identifier. Identifier + Identifies the Payment Instruction. + 0..1 + Payment + Instruction Identifier + Identifier + Identifier. Type + + + + + + + + + + + ABIE + Payment Mandate. Details + Information about Payment Mandate. + Payment Mandate + + + + + + + + + BBIE + Payment Mandate. Identifier + Identifies the Payment Mandate. + 0..1 + Payment Mandate + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Payment Mandate. Mandate Type Code. Code + The Payment Mandate type expressed as a code + 0..1 + Payment Mandate + Mandate Type Code + Code + Code. Type + + + + + + + + + BBIE + Payment Mandate. Clause. Text + Contract clauses, textual. + 0..n + Payment Mandate + Clause + Text + Text. Type + + + + + + + + + BBIE + Payment Mandate. Clause Code. Code + Contract clauses, coded. + 0..n + Payment Mandate + Clause Code + Code + Code. Type + + + + + + + + + BBIE + Payment Mandate. Maximum Payment Instructions. Numeric + The Maximum Payment Instructions that are allowed within the validity period. + 0..1 + Payment Mandate + Maximum Payment Instructions + Numeric + Numeric. Type + + + + + + + + + BBIE + Payment Mandate. Maximum_ Paid Amount. Amount + The Maximum Paid Amount within a single instruction. + 0..1 + Payment Mandate + Maximum + Paid Amount + Amount + Amount. Type + + + + + + + + + BBIE + Payment Mandate. Signature Identifier. Identifier + Identifies the related Signature applied by a signatory party. + 0..1 + Payment Mandate + Signature Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Payment Mandate. Payer_ Party. Party + An association to the Payer Party. It should be used if different from the debtor. + 0..1 + Payment Mandate + Payer + Party + Party + + + + + + + + + ASBIE + Payment Mandate. Payer_ Financial Account. Financial Account + An association to the payer s Financial Account. + 0..1 + Payment Mandate + Payer + Financial Account + Financial Account + + + + + + + + + ASBIE + Payment Mandate. Validity_ Period. Period + An association to period during which the mandate is valid. + 0..1 + Payment Mandate + Validity + Period + Period + + + + + + + + + ASBIE + Payment Mandate. Payment Reversal_ Period. Period + The Reversal Period of the Payment. + 0..1 + Payment Mandate + Payment Reversal + Period + Period + + + + + + + + + + + ABIE + Payment Means. Details + Information about Payment Means. + Payment Means + + + + + + + + + BBIE + Payment Means. Identifier + Identifies the Payment Means. + 0..1 + Payment Means + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Payment Means. Payment Means Code. Code + The Payment Means expressed as a code + 1 + Payment Means + Payment Means Code + Code + Payment Means_ Code. Type + + + + + + + + + BBIE + Payment Means. Payment Due Date. Date + The date on which payment is due for the Payment Means. + 0..1 + Payment Means + Payment Due Date + Date + Date. Type + + + + + + + + + BBIE + Payment Means. Payment Channel Code. Code + The Payment Channel, expressed as a code. + 0..1 + Payment Means + Payment Channel Code + Code + Code. Type + + + + + + + + + BBIE + Payment Means. Instruction Identifier. Identifier + Identifies the Payment Instruction. + 0..1 + Payment Means + Instruction Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Payment Means. Instruction_ Note. Text + Free-form text applying to the Payment. + 0..n + Payment Means + Instruction + Note + Text + Text. Type + + + + + + + + + BBIE + Payment Means. Payment Identifier. Identifier + Identifies the Payment(s). + 0..n + Payment Means + Payment Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Payment Means. Card Account + An association to Card Account. + 0..1 + Payment Means + Card Account + Card Account + + + + + + + + + ASBIE + Payment Means. Payer_ Financial Account. Financial Account + An association to the payer s Financial Account. + 0..1 + Payment Means + Payer + Financial Account + Financial Account + + + + + + + + + ASBIE + Payment Means. Payee_ Financial Account. Financial Account + An association to the payee s Financial Account. + 0..1 + Payment Means + Payee + Financial Account + Financial Account + + + + + + + + + ASBIE + Payment Means. Credit Account + An association to Credit Account. + 0..1 + Payment Means + Credit Account + Credit Account + + + + + + + + + ASBIE + Payment Means. Payment Mandate + An association to Payment Mandate. + 0..1 + Payment Means + Payment Mandate + Payment Mandate + + + + + + + + + ASBIE + Payment Means. Trade Financing + An association to a Trade Financing. + 0..1 + Payment Means + Trade Financing + Trade Financing + + + + + + + + + + + ABIE + Payment Terms. Details + Information about Payment Terms. + Payment Terms + + + + + + + + + BBIE + Payment Terms. Identifier + Identifies the Payment Terms. + 0..1 + Payment Terms + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Payment Terms. Payment Means Identifier. Identifier + Identifies the applicable Payment Means. + 0..n + Payment Terms + Payment Means Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Payment Terms. Prepaid Payment Reference Identifier. Identifier + Identifies a reference to a prepaid payment. + 0..1 + Payment Terms + Prepaid Payment Reference Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Payment Terms. Note. Text + Free-form text applying to the Payment Terms. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Payment Terms + Note + Text + Text. Type + + + + + + + + + BBIE + Payment Terms. Reference_ Event Code. Code + The event from which terms are offered for a length of time, identified by a standard code. + 0..1 + Payment Terms + Reference + Event Code + Code + Code. Type + + + + + + + + + BBIE + Payment Terms. Settlement_ Discount Percent. Percent + The settlement discount rate (percentage) offered for payment within the settlement period. + 0..1 + Payment Terms + Settlement + Discount Percent + Percent + Percent. Type + + + + + + + + + BBIE + Payment Terms. Penalty_ Surcharge Percent. Percent + The penalty rate (percentage) charged for late payment. + 0..1 + Payment Terms + Penalty + Surcharge Percent + Percent + Percent. Type + + + + + + + + + BBIE + Payment Terms. Payment Percent. Percent + The percentage of staged payment. + 0..1 + Payment Terms + Payment Percent + Percent + Percent. Type + + + + + + + + + BBIE + Payment Terms. Amount + The payment amount for the Payment Terms. + 0..1 + Payment Terms + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Payment Terms. Settlement_ Discount Amount. Amount + The settlement discount amount offered for payment within the settlement period. + 0..1 + Payment Terms + Settlement + Discount Amount + Amount + Amount. Type + + + + + + + + + BBIE + Payment Terms. Penalty_ Amount. Amount + The penalty amount charged for late payment. + 0..1 + Payment Terms + Penalty + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Payment Terms. Payment Terms Details URI. Identifier + An URI pointing to additional payment terms details. For example a company web site. + 0..1 + Payment Terms + Payment Terms Details URI + Identifier + Identifier. Type + + + + + + + + + BBIE + Payment Terms. Payment Due Date. Date + The date on which payment is due. + 0..1 + Payment Terms + Payment Due Date + Date + Date. Type + + + + + + + + + BBIE + Payment Terms. Installment Due Date. Date + The date on which Installment is due. + 0..1 + Payment Terms + Installment Due Date + Date + Date. Type + + + + + + + + + BBIE + Payment Terms. Invoicing Party_ Reference. Text + An internal reference of the order for payment for the Invoicing Party. This may have been requested by the Payee of the Payer to accompany their remittance. + 0..1 + Payment Terms + Invoicing Party + Reference + Text + Text. Type + + + + + + + + + ASBIE + Payment Terms. Settlement_ Period. Period + An association to Settlement Period. + 0..1 + Payment Terms + Settlement + Period + Period + + + + + + + + + ASBIE + Payment Terms. Penalty_ Period. Period + An association to Penalty Period. + 0..1 + Payment Terms + Penalty + Period + Period + + + + + + + + + ASBIE + Payment Terms. Exchange Rate + + 0..1 + Payment Terms + Exchange Rate + Exchange Rate + + + + + + + + + ASBIE + Payment Terms. Validity_ Period. Period + An association to Validity Period. + 0..1 + Payment Terms + Validity + Period + Period + + + + + + + + + + + ABIE + Performance Data Line. Details + A Performance History data item + Performance Data Line + + + + + + + + + BBIE + Performance Data Line. Identifier + An identifier for the Exception Notification Line + 1 + Performance Data Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Performance Data Line. Note. Text + Free-form text applying to the Exception Notification Line. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Performance Data Line + Note + Text + Text. Type + + + + + + + + + BBIE + Performance Data Line. Performance Value. Quantity + Value of the attribute measured + 1 + Performance Data Line + Performance Value + Quantity + Quantity. Type + + + + + + + + + BBIE + Performance Data Line. Performance Metric Type Code. Code + The measurement of performance + 1 + Performance Data Line + Performance Metric Type Code + Code + Code. Type + + + + + + + + + ASBIE + Performance Data Line. Period + An association to Period. + 0..1 + Performance Data Line + Period + Period + + + + + + + + + ASBIE + Performance Data Line. Item + An association to Item. + 0..1 + Performance Data Line + Item + Item + + + + + + + + + + + ABIE + Period. Details + Information about a period of time. + Period + + + + + + + + + BBIE + Period. Start Date. Date + The start date of the period. + 0..1 + Period + Start Date + Date + Date. Type + + + + + + + + + BBIE + Period. Start Time. Time + The start time of the period. + 0..1 + Period + Start Time + Time + Time. Type + + + + + + + + + BBIE + Period. End Date. Date + The end date of the period. + 0..1 + Period + End Date + Date + Date. Type + + + + + + + + + BBIE + Period. End Time. Time + The end time of the period. + 0..1 + Period + End Time + Time + Time. Type + + + + + + + + + BBIE + Period. Duration. Measure + The duration of a period, expressed as a code; ISO 8601. + 0..1 + Period + Duration + Measure + Measure. Type + + + + + + + + + BBIE + Period. Description Code. Code + A description of the period, expressed as a code. + 0..n + Period + Description Code + Code + Code. Type + + + + + + + + + BBIE + Period. Description. Text + A description of the period. + 0..n + Period + Description + Text + Text. Type + + + + + + + + + + + ABIE + Person. Details + Information about a person. + Person + + + + + + + + + BBIE + Person. Identifier + Identifier for this person. + 0..1 + Person + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Person. First_ Name. Name + A person s forename or first name. + 0..1 + Person + First + Name + Name + Name. Type + + + + + + + + + BBIE + Person. Family_ Name. Name + A person s surname or family name. + 0..1 + Person + Family + Name + Name + Name. Type + + + + + + + + + BBIE + Person. Title. Text + A person s title of address, e.g., Mr, Ms, Dr, Sir. + 0..1 + Person + Title + Text + Text. Type + + + + + + + + + BBIE + Person. Middle_ Name. Name + A person s middle name(s) and/or initial(s). + 0..1 + Person + Middle + Name + Name + Name. Type + + + + + + + + + BBIE + Person. Name Suffix. Text + A suffix to a person s name, e.g., PhD, OBE, Jnr. + 0..1 + Person + Name Suffix + Text + Text. Type + + + + + + + + + BBIE + Person. Job Title. Text + A person s job title within an organization (for a particular role). + 0..1 + Person + Job Title + Text + Text. Type + + + + + + + + + BBIE + Person. Nationality. Identifier + A person's nationality + 0..1 + Person + Nationality + Identifier + Identifier. Type + + + + + + + + + BBIE + Person. Gender Code. Code + The gender of a Person (see ISO Gender Code 5218). + 0..1 + Person + Gender Code + Code + Code. Type + + + + + + + + + BBIE + Person. Birth Date. Date + The birth date of a Person. + 0..1 + Person + Birth Date + Date + Date. Type + + + + + + + + + BBIE + Person. Organization_ Department. Text + The department or subdivision of an organization that the person belongs to (for a particular role). + 0..1 + Person + Organization + Department + Text + Text. Type + + + + + + + + + ASBIE + Person. Contact + Contact information related to the Person. + 0..1 + Person + Contact + Contact + + + + + + + + + ASBIE + Person. Financial Account + An association to Financial Account + 0..1 + Person + Financial Account + Financial Account + + + + + + + + + ASBIE + Person. Identity_ Document Reference. Document Reference + A reference to an identity document that can precisely identify a person (for example a licence to drive). + 0..1 + Person + Identity + Document Reference + Document Reference + + + + + + + + + + + ABIE + Physical Attribute. Details + Information about physical attributes. + Physical Attribute + + + + + + + + + BBIE + Physical Attribute. Attribute Identifier. Identifier + Identifies the physical attribute. + 1 + Physical Attribute + Attribute Identifier + Identifier + Identifier. Type + colour style + + + + + + + + + BBIE + Physical Attribute. Position Code. Code + The position of the physical attribute, expressed as a code. + 0..1 + Physical Attribute + Position Code + Code + Code. Type + + + + + + + + + BBIE + Physical Attribute. Description Code. Code + The description of the physical attribute, expressed as a code. + 0..1 + Physical Attribute + Description Code + Code + Code. Type + XXL , Small + + + + + + + + + BBIE + Physical Attribute. Description. Text + The description of the physical attribute, expressed as text. + 0..n + Physical Attribute + Description + Text + Text. Type + + + + + + + + + + + ABIE + Pickup. Details + Information about a pickup. + Pickup + Collection + + + + + + + + + BBIE + Pickup. Identifier + Identifies the pickup. + 0..1 + Pickup + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Pickup. Actual_ Pickup Date. Date + The actual pickup date. + 0..1 + Pickup + Actual + Pickup Date + Date + Date. Type + + + + + + + + + BBIE + Pickup. Actual_ Pickup Time. Time + The actual pickup time. + 0..1 + Pickup + Actual + Pickup Time + Time + Time. Type + + + + + + + + + BBIE + Pickup. Earliest_ Pickup Date. Date + The earliest pickup date. + 0..1 + Pickup + Earliest + Pickup Date + Date + Date. Type + + + + + + + + + BBIE + Pickup. Earliest_ Pickup Time. Time + The earliest pickup time. + 0..1 + Pickup + Earliest + Pickup Time + Time + Time. Type + + + + + + + + + BBIE + Pickup. Latest_ Pickup Date. Date + The latest pickup date. + 0..1 + Pickup + Latest + Pickup Date + Date + Date. Type + + + + + + + + + BBIE + Pickup. Latest_ Pickup Time. Time + The latest pickup time. + 0..1 + Pickup + Latest + Pickup Time + Time + Time. Type + + + + + + + + + ASBIE + Pickup. Pickup_ Location. Location + The pickup location. + 0..1 + Pickup + Pickup + Location + Location + + + + + + + + + ASBIE + Pickup. Pickup_ Party. Party + An association to the pickup party. + 0..1 + Pickup + Pickup + Party + Party + + + + + + + + + + + ABIE + Power Of Attorney. Details + Information about the power of attorney. + Power Of Attorney + + + + + + + + + BBIE + Power Of Attorney. Identifier + Identifier for this power of attorney. + 0..1 + Power Of Attorney + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Power Of Attorney. Issue Date. Date + Issue date for this power of attorney. + 0..1 + Power Of Attorney + Issue Date + Date + Date. Type + + + + + + + + + BBIE + Power Of Attorney. Issue Time. Time + Issue time for this power of attorney. + 0..1 + Power Of Attorney + Issue Time + Time + Time. Type + + + + + + + + + BBIE + Power Of Attorney. Description. Text + Textual description of the power of attorney. + 0..n + Power Of Attorney + Description + Text + Text. Type + + + + + + + + + ASBIE + Power Of Attorney. Notary_ Party. Party + An association to a Notary Party + 1 + Power Of Attorney + Notary + Party + Party + + + + + + + + + ASBIE + Power Of Attorney. Agent_ Party. Party + An association to the Agent Party + 1 + Power Of Attorney + Agent + Party + Party + + + + + + + + + ASBIE + Power Of Attorney. Mandate_ Document Reference. Document Reference + An association to the mandate. + 0..n + Power Of Attorney + Mandate + Document Reference + Document Reference + + + + + + + + + + + ABIE + Price. Details + Information about the price. + Price + + + + + + + + + BBIE + Price. Price Amount. Amount + The price amount. + 1 + Price + Price Amount + Amount + Amount. Type + unit price + 23.45 + + + + + + + + + BBIE + Price. Base_ Quantity. Quantity + The actual quantity to which the price applies. + 0..1 + Price + Base + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Price. Price Change_ Reason. Text + The reason for the price change, expressed as text. + 0..n + Price + Price Change + Reason + Text + Text. Type + Clearance of old stock , New contract applies + + + + + + + + + BBIE + Price. Price Type Code. Code + The price type, expressed as a code. + 0..1 + Price + Price Type Code + Code + Code. Type + + + + + + + + + BBIE + Price. Price Type. Text + The price type, expressed as text. + 0..1 + Price + Price Type + Text + Text. Type + retail, wholesale, discount, contract + + + + + + + + + BBIE + Price. Orderable Unit Factor. Rate + The factor by which the base price unit can be converted to the orderable unit. + 0..1 + Price + Orderable Unit Factor + Rate + Rate. Type + Nails are priced by weight but ordered by quantity. So this would say how many nails per kilo + + + + + + + + + ASBIE + Price. Validity_ Period. Period + An association to Validity Period. + 0..n + Price + Validity + Period + Period + + + + + + + + + ASBIE + Price. Price List + A reference to a Price List. + 0..1 + Price + Price List + Price List + + + + + + + + + ASBIE + Price. Allowance Charge + An association to Allowance Charge. + 0..n + Price + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Price. Pricing_ Exchange Rate. Exchange Rate + An association to Exchange Rate. It defines the exchange rate if the exchange rate differs from the document level exchange rate. + 0..1 + Price + Pricing + Exchange Rate + Exchange Rate + + + + + + + + + + + ABIE + Price List. Details + Information about a Price List. + Price List + + + + + + + + + BBIE + Price List. Identifier + Identifies the Price List. + 0..1 + Price List + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Price List. Status Code. Code + Identifies whether the price list is an original , copy , revision , or cancellation . + 0..1 + Price List + Status Code + Code + Code. Type + new - announcement only , new and available , deleted - announcement only + + + + + + + + + ASBIE + Price List. Validity_ Period. Period + An association to Validity Period. + 0..n + Price List + Validity + Period + Period + + + + + + + + + ASBIE + Price List. Previous_ Price List. Price List + An association to Previous Price List. + 0..1 + Price List + Previous + Price List + Price List + + + + + + + + + + + ABIE + Pricing Reference. Details + A reference to Pricing Information. + Pricing Reference + + + + + + + + + ASBIE + Pricing Reference. Original_ Item Location Quantity. Item Location Quantity + An association to the original Item Location Quantity. + 0..1 + Pricing Reference + Original + Item Location Quantity + Item Location Quantity + + + + + + + + + ASBIE + Pricing Reference. Alternative Condition_ Price. Price + The price expressed in terms other than the actual price, e.g., the list price v. the contracted price, or the price in bags v. the price in kilos, or the list price in bags v. the contracted price in kilos. + 0..n + Pricing Reference + Alternative Condition + Price + Price + + + + + + + + + + + ABIE + Process Justification. Details + Information needed to justify certain tendering processes + Process Justification + + + + + + + + + BBIE + Process Justification. Previous_ Cancellation Reason Code. Code + Code that specifies the type of the previous cancelled tendering process + 0..1 + Process Justification + Previous + Cancellation Reason Code + Code + Code. Type + + + + + + + + + BBIE + Process Justification. Process_ Reason Code. Code + Code that specifies the reason why the contracting authority has followed a particular tendering procedure for the awarding of a contract. + 0..1 + Process Justification + Process + Reason Code + Code + Code. Type + + + + + + + + + BBIE + Process Justification. Process_ Reason. Text + The textual description of the reason why the contracting authority has followed a particular tendering procedure for the awarding of a contract. + 0..n + Process Justification + Process + Reason + Text + Text. Type + + + + + + + + + BBIE + Process Justification. Description. Text + The textual description justifying the selection of this process. + 0..n + Process Justification + Description + Text + Text. Type + + + + + + + + + + + ABIE + Procurement Project. Details + An endeavour carefully planned to achieve a procurement of goods, works and service. + Procurement Project + + + + + + + + + BBIE + Procurement Project. Identifier + The unique identifier of this Procurement project. + 0..1 + Procurement Project + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Procurement Project. Name + The name, expressed as text, of this Procurement project. + 1..n + Procurement Project + Name + Name + Name. Type + + + + + + + + + BBIE + Procurement Project. Description. Text + The textual description of this Procurement project. + 0..n + Procurement Project + Description + Text + Text. Type + + + + + + + + + BBIE + Procurement Project. Procurement_ Type Code. Code + The code specifying the type of Procurement project, such as goods, works and service. + 0..1 + Procurement Project + Procurement + Type Code + Code + Code. Type + + + + + + + + + BBIE + Procurement Project. Procurement Sub_ Type Code. Code + The code specifying the sub works type of work for this Procurement project, such as land surveying or IT consulting. + 0..1 + Procurement Project + Procurement Sub + Type Code + Code + Code. Type + + + + + + + + + BBIE + Procurement Project. Quality Control Code. Code + The indication of whether or not the control quality is included in the works project. + 0..1 + Procurement Project + Quality Control Code + Code + Code. Type + + + + + + + + + BBIE + Procurement Project. Required_ Fee. Amount + The reimbursement fee amount for concession procurement projects. + 0..1 + Procurement Project + Required + Fee + Amount + Amount. Type + + + + + + + + + BBIE + Procurement Project. Fee_ Description. Text + Textual description of the reimbursement fee amount for concession procurement projects. + 0..n + Procurement Project + Fee + Description + Text + Text. Type + + + + + + + + + BBIE + Procurement Project. Requested_ Delivery Date. Date + The requested delivery date for this procurement project. + 0..1 + Procurement Project + Requested + Delivery Date + Date + Date. Type + + + + + + + + + BBIE + Procurement Project. Estimated_ Overall Contract. Quantity + The estimated overall quantity for this procurement project. + 0..1 + Procurement Project + Estimated + Overall Contract + Quantity + Quantity. Type + + + + + + + + + ASBIE + Procurement Project. Budget Amount + Budget monetary amounts for the project as whole. + 0..1 + Procurement Project + Budget Amount + Budget Amount + + + + + + + + + ASBIE + Procurement Project. Required_ Commodity Classification. Commodity Classification + An association to classification categories for the deliverable requested. + 0..n + Procurement Project + Required + Commodity Classification + Commodity Classification + + + + + + + + + ASBIE + Procurement Project. Realized_ Location. Location + The physical actualization location of this Procurement project. + 0..n + Procurement Project + Realized + Location + Location + + + + + + + + + ASBIE + Procurement Project. Planned_ Period. Period + The planned period for performing this Procurement project in the tendering process. + 0..1 + Procurement Project + Planned + Period + Period + + + + + + + + + ASBIE + Procurement Project. Contract Extension + The contract extension for this tendering process. + 0..1 + Procurement Project + Contract Extension + Contract Extension + + + + + + + + + ASBIE + Procurement Project. Request For Tender Line + The goods or the service which is the subject to be procured in the tendering process. + 0..n + Procurement Project + Request For Tender Line + Request For Tender Line + + + + + + + + + + + ABIE + Procurement Project Lot. Details + A division of a procurement project, set up to create different contracts allowing the contracting party to award different lots to different economic operators. + Procurement Project Lot + + + + + + + + + BBIE + Procurement Project Lot. Identifier + The unique identifier of this Procurement Project Lot. + 1 + Procurement Project Lot + Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Procurement Project Lot. Tendering Terms + Tendering terms for an specific procurement project lot. + 0..1 + Procurement Project Lot + Tendering Terms + Tendering Terms + + + + + + + + + ASBIE + Procurement Project Lot. Procurement Project + The goods or the service which is the subject to be procured in the tendering process. + 1 + Procurement Project Lot + Procurement Project + Procurement Project + + + + + + + + + + + ABIE + Promotional Event. Details + This information on promotionalEvent for RetailEvent + Promotional Event + + + + + + + + + BBIE + Promotional Event. Promotional Event Type Code. Code + A further refinement of type of promotional event that is being communicated + 1 + Promotional Event + Promotional Event Type Code + Code + Code. Type + + + + + + + + + BBIE + Promotional Event. Submission. Date + Date that the proposed event or promotion was submitted + 0..1 + Promotional Event + Submission + Date + Date. Type + + + + + + + + + BBIE + Promotional Event. First Shipment Availibility Date. Date + The first day that a product or products would be available to ship to the Buyer from the Seller for a specific event or promotion + 0..1 + Promotional Event + First Shipment Availibility Date + Date + Date. Type + + + + + + + + + BBIE + Promotional Event. Latest_ Proposal Acceptance Date. Date + Date which marks a deadline for accepting a promotion or event. + 0..1 + Promotional Event + Latest + Proposal Acceptance Date + Date + Date. Type + + + + + + + + + ASBIE + Promotional Event. Promotional Specification + An association to promotional specification + 1..n + Promotional Event + Promotional Specification + Promotional Specification + + + + + + + + + + + ABIE + Promotional Event Line Item. Details + Information about an Promotional Event Line item + Promotional Event Line Item + + + + + + + + + BBIE + Promotional Event Line Item. Amount + Quantity of money. + 1 + Promotional Event Line Item + Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Promotional Event Line Item. Event Line Item + An association to event line item + 1 + Promotional Event Line Item + Event Line Item + Event Line Item + + + + + + + + + + + ABIE + Promotional Specification. Details + Information about an Promotional Specification + Promotional Specification + + + + + + + + + BBIE + Promotional Specification. Specification Identifier. Identifier + A unique identification number to a back system that defines a set of item location +combinations that share a set of promotion tactics + 0..1 + Promotional Specification + Specification Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Promotional Specification. Promotional Event Line Item + An association to promotional event line item + 1..n + Promotional Specification + Promotional Event Line Item + Promotional Event Line Item + + + + + + + + + ASBIE + Promotional Specification. Event Tactic + Information about an event tactic. + 0..n + Promotional Specification + Event Tactic + Event Tactic + + + + + + + + + + + ABIE + Qualification Resolution. Details + Distinctive features or characteristics required for a business in the tendering process such as number of employees, number of operating units, business type. + Qualification Resolution + + + + + + + + + BBIE + Qualification Resolution. Admission Code. Code + Indicates whether the economic operator has been accepted (true) to the tendering process or rejected (false). + 1 + Qualification Resolution + Admission Code + Code + Code. Type + + + + + + + + + BBIE + Qualification Resolution. Procurement Project Lot. Identifier + Identifier of the Procurement project lot to which this tenderer is accepted or rejected. + 0..1 + Qualification Resolution + Procurement Project Lot + Identifier + Identifier. Type + + + + + + + + + BBIE + Qualification Resolution. Exclusion Reason. Text + Textual description of the exclusion reason. + 0..n + Qualification Resolution + Exclusion Reason + Text + Text. Type + + + + + + + + + BBIE + Qualification Resolution. Resolution. Text + The textual description for this qualification resolution. + 0..n + Qualification Resolution + Resolution + Text + Text. Type + + + + + + + + + BBIE + Qualification Resolution. Resolution Date. Date + The date at which qualification resolution has been formalized. + 1 + Qualification Resolution + Resolution Date + Date + Date. Type + + + + + + + + + BBIE + Qualification Resolution. Resolution Time. Time + The time at which qualification resolution has been formalized. + 0..1 + Qualification Resolution + Resolution Time + Time + Time. Type + + + + + + + + + + + ABIE + Qualifying Party. Details + Distinctive features or characteristics required for a party in the tendering process such as number of employees, number of operating units, business type, definition of technical and financial capabilities or explanation of completed tasks. + Qualifying Party + + + + + + + + + BBIE + Qualifying Party. Participation. Percent + Participation percentage of the party in this tendering process. + 0..1 + Qualifying Party + Participation + Percent + Percent. Type + + + + + + + + + BBIE + Qualifying Party. Personal Situation. Text + Textual description of the personal situation of the economic operators in this tendering process. + 0..n + Qualifying Party + Personal Situation + Text + Text. Type + + + + + + + + + BBIE + Qualifying Party. Operating Years. Quantity + The number of years that the economic operatos has been in operation. + 0..1 + Qualifying Party + Operating Years + Quantity + Quantity. Type + + + + + + + + + BBIE + Qualifying Party. Employee. Quantity + The number of employees of the economic operator. + 0..1 + Qualifying Party + Employee + Quantity + Quantity. Type + + + + + + + + + BBIE + Qualifying Party. Business Classification Evidence. Identifier + Identifier of the evidence where the contracting party will find evidences of the classification of the economic operator. + 0..1 + Qualifying Party + Business Classification Evidence + Identifier + Identifier. Type + + + + + + + + + BBIE + Qualifying Party. Business Identity Evidence. Identifier + Identifier of the evidence where the contracting party will find evidences of the business identity of the economic operator. + 0..1 + Qualifying Party + Business Identity Evidence + Identifier + Identifier. Type + + + + + + + + + ASBIE + Qualifying Party. Business_ Classification Scheme. Classification Scheme + An association to a classification scheme for the business profile. + 0..1 + Qualifying Party + Business + Classification Scheme + Classification Scheme + + + + + + + + + ASBIE + Qualifying Party. Technical_ Capability. Capability + Technical capabilities of an economic operator. + 0..n + Qualifying Party + Technical + Capability + Capability + + + + + + + + + ASBIE + Qualifying Party. Financial_ Capability. Capability + Financial capabilities of an economic operator. + 0..n + Qualifying Party + Financial + Capability + Capability + + + + + + + + + ASBIE + Qualifying Party. Completed Task + Tasks completed by the economic operator. + 0..n + Qualifying Party + Completed Task + Completed Task + + + + + + + + + ASBIE + Qualifying Party. Declaration + An association to declarations from the economic operator to fulfill the requirements specified in the call for tenders. + 0..n + Qualifying Party + Declaration + Declaration + + + + + + + + + ASBIE + Qualifying Party. Party + An association to the Party + 0..1 + Qualifying Party + Party + Party + + + + + + + + + + + ABIE + Quotation Line. Details + Information about a Quotation Line. + Quotation Line + + + + + + + + + BBIE + Quotation Line. Identifier + Identifies the Quotation Line. + 0..1 + Quotation Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Quotation Line. Note. Text + Free-form text applying to the Quotation Line. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Quotation Line + Note + Text + Text. Type + + + + + + + + + BBIE + Quotation Line. Quantity + The quantity of the item quoted. + 0..1 + Quotation Line + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Quotation Line. Line Extension Amount. Amount + The total amount for the Quotation Line, including Allowance Charges but net of taxes. + 0..1 + Quotation Line + Line Extension Amount + Amount + Amount. Type + + + + + + + + + BBIE + Quotation Line. Total_ Tax Amount. Amount + The total tax amount for the Quotation Line. + 0..1 + Quotation Line + Total + Tax Amount + Amount + Amount. Type + + + + + + + + + BBIE + Quotation Line. Request For Quotation Line Identifier. Identifier + Identifies the Request For Quotation Line the Quatation Line is related to. + 0..1 + Quotation Line + Request For Quotation Line Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Quotation Line. Document Reference + An association to Document Reference. + 0..n + Quotation Line + Document Reference + Document Reference + + + + + + + + + ASBIE + Quotation Line. Line Item + An association to Line Item. + 1 + Quotation Line + Line Item + Line Item + + + + + + + + + ASBIE + Quotation Line. Seller Proposed Substitute_ Line Item. Line Item + An association to a proposed substitute Line Item. + 0..n + Quotation Line + Seller Proposed Substitute + Line Item + Line Item + + + + + + + + + ASBIE + Quotation Line. Alternative_ Line Item. Line Item + An association to an alternative Line Item (use it to give the buyer a secondary choise). + 0..n + Quotation Line + Alternative + Line Item + Line Item + + + + + + + + + ASBIE + Quotation Line. Request_ Line Reference. Line Reference + An associative reference to Request Line. + 0..1 + Quotation Line + Request + Line Reference + Line Reference + + + + + + + + + + + ABIE + Rail Transport. Details + Describes a train. + Rail Transport + + + + + + + + + BBIE + Rail Transport. Train Identifier. Identifier + Identifies a train. + 1 + Rail Transport + Train Identifier + Identifier + Identifier. Type + Train Number (WCO ID 167) + + + + + + + + + BBIE + Rail Transport. Rail Car Identifier. Identifier + Identifies the rail car on the train used for the means of transport. + 0..1 + Rail Transport + Rail Car Identifier + Identifier + Identifier. Type + + + + + + + + + + + ABIE + Receipt Line. Details + Information about a Receipt Line. + Receipt Line + + + + + + + + + BBIE + Receipt Line. Identifier + Identifies the Receipt Line. + 1 + Receipt Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Receipt Line. UUID. Identifier + A universally unique identifier for an instance of this ABIE. + 0..1 + Receipt Line + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Receipt Line. Note. Text + Free-form text applying to the Receipt Line. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Receipt Line + Note + Text + Text. Type + + + + + + + + + BBIE + Receipt Line. Received_ Quantity. Quantity + The quantity received. + 0..1 + Receipt Line + Received + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Receipt Line. Short_ Quantity. Quantity + The quantity received short; the difference between the quantity reported despatched and the quantity actually received. + 0..1 + Receipt Line + Short + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Receipt Line. Shortage Action Code. Code + The action that the Delivery Party wishes the Despatch Party to take as a result of the shortage, expressed as a code. + 0..1 + Receipt Line + Shortage Action Code + Code + Code. Type + + + + + + + + + BBIE + Receipt Line. Rejected_ Quantity. Quantity + The quantity rejected. + 0..1 + Receipt Line + Rejected + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Receipt Line. Reject Reason Code. Code + The reason for rejection, expressed as a code. + 0..1 + Receipt Line + Reject Reason Code + Code + Code. Type + + + + + + + + + BBIE + Receipt Line. Reject_ Reason. Text + The reason for rejection. + 0..1 + Receipt Line + Reject + Reason + Text + Text. Type + + + + + + + + + BBIE + Receipt Line. Reject Action Code. Code + The action that the Delivery Party wishes the Despatch Party to take as a result of the rejection, expressed as a code. + 0..1 + Receipt Line + Reject Action Code + Code + Code. Type + + + + + + + + + BBIE + Receipt Line. Quantity Discrepancy Code. Code + A code describing the type of discrepancy. + 0..1 + Receipt Line + Quantity Discrepancy Code + Code + Code. Type + + + + + + + + + BBIE + Receipt Line. Oversupply_ Quantity. Quantity + The quantity over-supplied, i.e., the quantity over and above that ordered. + 0..1 + Receipt Line + Oversupply + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Receipt Line. Received_ Date. Date + The date on which the good/services are received. + 0..1 + Receipt Line + Received + Date + Date + Date. Type + + + + + + + + + BBIE + Receipt Line. Timing Complaint Code. Code + A complaint about the timing of delivery, expressed as a code. + 0..1 + Receipt Line + Timing Complaint Code + Code + Code. Type + + + + + + + + + BBIE + Receipt Line. Timing Complaint. Text + A complaint about the timing of delivery. + 0..1 + Receipt Line + Timing Complaint + Text + Text. Type + + + + + + + + + ASBIE + Receipt Line. Order Line Reference + An association to Order Line Reference. + 0..1 + Receipt Line + Order Line Reference + Order Line Reference + + + + + + + + + ASBIE + Receipt Line. Despatch_ Line Reference. Line Reference + An associative reference to Despatch Line. + 0..n + Receipt Line + Despatch + Line Reference + Line Reference + + + + + + + + + ASBIE + Receipt Line. Document Reference + An association to Document Reference. + 0..n + Receipt Line + Document Reference + Document Reference + + + + + + + + + ASBIE + Receipt Line. Item + An association to Item. + 0..n + Receipt Line + Item + Item + + + + + + + + + ASBIE + Receipt Line. Shipment + An association to Shipment. + 0..n + Receipt Line + Shipment + Shipment + + + + + + + + + + + ABIE + Regulation. Details + Regulation + Regulation + Points to regulation at atomic level + + + + + + + + + BBIE + Regulation. Name + Name. + 1..n + Regulation + Name + Name + Name. Type + + + + + + + + + BBIE + Regulation. Legal Reference. Text + Legal Reference + 0..1 + Regulation + Legal Reference + Text + Text. Type + Art. 45 2 b + + + + + + + + + BBIE + Regulation. Ontology URI. Identifier + URI + 0..1 + Regulation + Ontology URI + Identifier + Identifier. Type + + + + + + + + + + + ABIE + Related Item. Details + Information about the relationship between two items. + Related Item + + + + + + + + + BBIE + Related Item. Identifier + An identifier for the related item. + 0..1 + Related Item + Identifier + Identifier + Identifier. Type + First , Second + + + + + + + + + BBIE + Related Item. Quantity + The quantity that applies to the relationship. + 0..1 + Related Item + Quantity + Quantity + Quantity. Type + 6 , 10mg per Kilo + + + + + + + + + BBIE + Related Item. Description. Text + A description for the relationship. + 0..n + Related Item + Description + Text + Text. Type + If used in wet conditions or extreme environments + + + + + + + + + + + ABIE + Reminder Line. Details + Information about a Line on a Reminder document. + Reminder Line + + + + + + + + + BBIE + Reminder Line. Identifier + Identifies the Reminder Line. + 1 + Reminder Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Reminder Line. Note. Text + Free-form text applying to the Reminder Line. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Reminder Line + Note + Text + Text. Type + + + + + + + + + BBIE + Reminder Line. UUID. Identifier + A universally unique identifier for an instance of this ABIE. + 0..1 + Reminder Line + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Reminder Line. Balance Brought Forward_ Indicator. Indicator + If true, indicates that the Remonder Line contains a balance brought forward. + 0..1 + Reminder Line + Balance Brought Forward + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Reminder Line. Debit_ Line Amount. Amount + The amount debited on the Reminder Line. + 0..1 + Reminder Line + Debit + Line Amount + Amount + Amount. Type + + + + + + + + + BBIE + Reminder Line. Credit_ Line Amount. Amount + The amount credited on the Reminder Line. + 0..1 + Reminder Line + Credit + Line Amount + Amount + Amount. Type + + + + + + + + + BBIE + Reminder Line. Accounting Cost Code. Code + The buyer s accounting code applied to the Reminder Line. + 0..1 + Reminder Line + Accounting Cost Code + Code + Code. Type + + + + + + + + + BBIE + Reminder Line. Accounting Cost. Text + The buyer s accounting cost centre applied to the Reminder Line, expressed as text. + 0..1 + Reminder Line + Accounting Cost + Text + Text. Type + + + + + + + + + BBIE + Reminder Line. Penalty_ Surcharge Percent. Percent + The penalty rate (percentage) charged for late payment. + 0..1 + Reminder Line + Penalty + Surcharge Percent + Percent + Percent. Type + + + + + + + + + BBIE + Reminder Line. Amount + The amount on the Reminder Line. + 0..1 + Reminder Line + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Reminder Line. Payment Purpose Code. Code + The business purposes for payment express as code. + 0..1 + Reminder Line + Payment Purpose Code + Code + Code. Type + + + + + + + + + ASBIE + Reminder Line. Reminder_ Period. Period + An association to Period. + 0..n + Reminder Line + Reminder + Period + Period + + + + + + + + + ASBIE + Reminder Line. Billing Reference + An association to Billing Reference + 0..n + Reminder Line + Billing Reference + Billing Reference + + + + + + + + + ASBIE + Reminder Line. Exchange Rate + An association to Exchange Rate (between the Reminder Line Currency and the Related Document currency). + 0..1 + Reminder Line + Exchange Rate + Exchange Rate + + + + + + + + + + + ABIE + Remittance Advice Line. Details + Information about a Line on a Remittance Advice. + Remittance Advice Line + + + + + + + + + BBIE + Remittance Advice Line. Identifier + Identifies the Remittance Advice Line. + 1 + Remittance Advice Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Remittance Advice Line. Note. Text + Free-form text applying to the Remittance Advice Line. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Remittance Advice Line + Note + Text + Text. Type + + + + + + + + + BBIE + Remittance Advice Line. UUID. Identifier + A universally unique identifier for an instance of this ABIE. + 0..1 + Remittance Advice Line + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Remittance Advice Line. Debit_ Line Amount. Amount + The amount debited on the Remittance Advice Line. + 0..1 + Remittance Advice Line + Debit + Line Amount + Amount + Amount. Type + + + + + + + + + BBIE + Remittance Advice Line. Credit_ Line Amount. Amount + The amount credited on the Remittance Advice Line. + 0..1 + Remittance Advice Line + Credit + Line Amount + Amount + Amount. Type + + + + + + + + + BBIE + Remittance Advice Line. Balance Amount. Amount + The balance amount on the Remittance Advice Line. + 0..1 + Remittance Advice Line + Balance Amount + Amount + Amount. Type + + + + + + + + + BBIE + Remittance Advice Line. Payment Purpose Code. Code + The business purposes for payment express as code. + 0..1 + Remittance Advice Line + Payment Purpose Code + Code + Code. Type + + + + + + + + + BBIE + Remittance Advice Line. Invoicing Party_ Reference. Text + An internal reference of the order for payment for the Invoicing Party. This may have been requested by the Payee of the Payer to accompany their remittance. + 0..1 + Remittance Advice Line + Invoicing Party + Reference + Text + Text. Type + + + + + + + + + ASBIE + Remittance Advice Line. Accounting_ Supplier Party. Supplier Party + An association to Supplier Accounting Party. + 0..1 + Remittance Advice Line + Accounting + Supplier Party + Supplier Party + + + + + + + + + ASBIE + Remittance Advice Line. Accounting_ Customer Party. Customer Party + An association to Customer Accounting Party. + 0..1 + Remittance Advice Line + Accounting + Customer Party + Customer Party + + + + + + + + + ASBIE + Remittance Advice Line. Buyer_ Customer Party. Customer Party + An association to Buyer. + 0..1 + Remittance Advice Line + Buyer + Customer Party + Customer Party + + + + + + + + + ASBIE + Remittance Advice Line. Seller_ Supplier Party. Supplier Party + An association to Seller. + 0..1 + Remittance Advice Line + Seller + Supplier Party + Supplier Party + + + + + + + + + ASBIE + Remittance Advice Line. Originator_ Customer Party. Customer Party + An association to Originator. + 0..1 + Remittance Advice Line + Originator + Customer Party + Customer Party + + + + + + + + + ASBIE + Remittance Advice Line. Payee_ Party. Party + An association to Payee. + 0..1 + Remittance Advice Line + Payee + Party + Party + + + + + + + + + ASBIE + Remittance Advice Line. Invoice_ Period. Period + An association to Invoice Period. + 0..n + Remittance Advice Line + Invoice + Period + Period + + + + + + + + + ASBIE + Remittance Advice Line. Billing Reference + An association to Billing Reference. + 0..n + Remittance Advice Line + Billing Reference + Billing Reference + + + + + + + + + ASBIE + Remittance Advice Line. Document Reference + An association to Document Reference. + 0..n + Remittance Advice Line + Document Reference + Document Reference + + + + + + + + + ASBIE + Remittance Advice Line. Exchange Rate + An association to Exchange Rate (between the Remittance Advice Line currency and the Related Document currency). + 0..1 + Remittance Advice Line + Exchange Rate + Exchange Rate + + + + + + + + + + + ABIE + Renewal. Details + + Renewal + + + + + + + + + BBIE + Renewal. Amount + The amount of the renewal period. + 0..1 + Renewal + Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Renewal. Period + The renewal period. + 0..1 + Renewal + Period + Period + + + + + + + + + + + ABIE + Request For Quotation Line. Details + Information about a Line on a Request For Quotation. + Request For Quotation Line + + + + + + + + + BBIE + Request For Quotation Line. Identifier + Identifies the Request For Quotation Line. + 0..1 + Request For Quotation Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Request For Quotation Line. UUID. Identifier + A universally unique identifier for an instance of this ABIE. + 0..1 + Request For Quotation Line + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Request For Quotation Line. Note. Text + Free-form text applying to the Request For Quotation Line. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Request For Quotation Line + Note + Text + Text. Type + + + + + + + + + BBIE + Request For Quotation Line. Optional_ Line Item Indicator. Indicator + An indicator to identify wheter the Request For Quotation line is optional (true) or not (false) in the Quotation. + 0..1 + Request For Quotation Line + Optional + Line Item Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Request For Quotation Line. Privacy Code. Code + Statement of the level of confidential of the Request For Quotataion Line. + 0..1 + Request For Quotation Line + Privacy Code + Code + Code. Type + + + + + + + + + BBIE + Request For Quotation Line. Security Classification Code. Code + + 0..1 + Request For Quotation Line + Security Classification Code + Code + Code. Type + + + + + + + + + ASBIE + Request For Quotation Line. Document Reference + An association to Document Reference. + 0..n + Request For Quotation Line + Document Reference + Document Reference + + + + + + + + + ASBIE + Request For Quotation Line. Line Item + An association to Line Item. + 1 + Request For Quotation Line + Line Item + Line Item + + + + + + + + + + + ABIE + Request For Tender Line. Details + Specific goods or services expected to be delivered in this procurement project. + Request For Tender Line + + + + + + + + + BBIE + Request For Tender Line. Identifier + The identifier for the request for tender line. + 0..1 + Request For Tender Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Request For Tender Line. UUID. Identifier + The unique identification for the request for tender line. + 0..1 + Request For Tender Line + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Request For Tender Line. Note. Text + Additional information for this request for tender line. + 0..n + Request For Tender Line + Note + Text + Text. Type + + + + + + + + + BBIE + Request For Tender Line. Quantity + The quantity of the item in this line. + 0..1 + Request For Tender Line + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Request For Tender Line. Minimum_ Quantity. Quantity + The minimum quantity for this item. + 0..1 + Request For Tender Line + Minimum + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Request For Tender Line. Maximum_ Quantity. Quantity + The maximum quantity for this item. + 0..1 + Request For Tender Line + Maximum + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Request For Tender Line. Maximum_ Tax Exclusive Amount. Amount + The maximum total amount exclusive of taxes + 0..1 + Request For Tender Line + Maximum + Tax Exclusive Amount + Amount + Amount. Type + + + + + + + + + BBIE + Request For Tender Line. Maximum_ Tax Inclusive Amount. Amount + The maximum total amount inclusive of taxes + 0..1 + Request For Tender Line + Maximum + Tax Inclusive Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Request For Tender Line. Document Reference + An association to Document Reference. + 0..n + Request For Tender Line + Document Reference + Document Reference + + + + + + + + + ASBIE + Request For Tender Line. Delivery_ Period. Period + An applicable period for the deliverable or set of deliverables in this tendering process. + 0..n + Request For Tender Line + Delivery + Period + Period + + + + + + + + + ASBIE + Request For Tender Line. Required_ Item Location Quantity. Item Location Quantity + An association to the description of properties related to locations and quantities of the item. + 0..n + Request For Tender Line + Required + Item Location Quantity + Item Location Quantity + + + + + + + + + ASBIE + Request For Tender Line. Warranty Validity_ Period. Period + Association with a period to indicate the guarantee for the work, service or goods. + 0..1 + Request For Tender Line + Warranty Validity + Period + Period + + + + + + + + + ASBIE + Request For Tender Line. Item + An association to Item. + 1 + Request For Tender Line + Item + Item + + + + + + + + + ASBIE + Request For Tender Line. Sub_ Request For Tender Line. Request For Tender Line + An association to a Request For Tender Line. + 0..n + Request For Tender Line + Sub + Request For Tender Line + Request For Tender Line + + + + + + + + + + + ABIE + Response. Details + Information about responses to a document (at the application level). + Response + + + + + + + + + BBIE + Response. Reference. Identifier + Identifies the section (or line) of the document to which the response applies. + 0..1 + Response + Reference + Identifier + Identifier. Type + + + + + + + + + BBIE + Response. Response Code. Code + A code for the description of the response to the transaction document. + 0..1 + Response + Response Code + Code + Code. Type + + + + + + + + + BBIE + Response. Description. Text + The description of the response to the transaction document. + 0..n + Response + Description + Text + Text. Type + + + + + + + + + BBIE + Response. Effective Date. Date + The effective date for which the response is valid. + 0..1 + Response + Effective Date + Date + Date. Type + + + + + + + + + BBIE + Response. Effective Time. Time + The effective time for which the response is valid. + 0..1 + Response + Effective Time + Time + Time. Type + + + + + + + + + ASBIE + Response. Status + An association to Status + 0..1 + Response + Status + Status + + + + + + + + + + + ABIE + Result Of Verification. Details + Information about the result of a process of verification of a signature. + Result Of Verification + + + + + + + + + BBIE + Result Of Verification. Validator. Identifier + Identifier of the validator system. + 0..1 + Result Of Verification + Validator + Identifier + Identifier. Type + + + + + + + + + BBIE + Result Of Verification. Validation_ Result Code. Code + Code describing the result of the validation. + 0..1 + Result Of Verification + Validation + Result Code + Code + Code. Type + + + + + + + + + BBIE + Result Of Verification. Validation Date. Date + Date when the validation was done. + 0..1 + Result Of Verification + Validation Date + Date + Date. Type + + + + + + + + + BBIE + Result Of Verification. Validation Time. Time + Time when the validation was done. + 0..1 + Result Of Verification + Validation Time + Time + Time. Type + + + + + + + + + BBIE + Result Of Verification. Validate_ Process. Text + Textual description of the process of validation. + 0..1 + Result Of Verification + Validate + Process + Text + Text. Type + + + + + + + + + BBIE + Result Of Verification. Validate_ Tool. Text + Textual description of the tool used to validate the signature. + 0..1 + Result Of Verification + Validate + Tool + Text + Text. Type + + + + + + + + + BBIE + Result Of Verification. Validate_ Tool Version. Text + Textual descrition of the version of the tool used to validate the signature. + 0..1 + Result Of Verification + Validate + Tool Version + Text + Text. Type + + + + + + + + + ASBIE + Result Of Verification. Signatory_ Party. Party + An association to the signing Party. + 0..1 + Result Of Verification + Signatory + Party + Party + + + + + + + + + + + ABIE + Retail Planned Impact. Details + Effect of the discrete activity affecting supply or demand in the supply chain (eg. Promotion, inventory policy change) + Retail Planned Impact + + + + + + + + + BBIE + Retail Planned Impact. Amount + Monetary value assigned to a specific sub line within the planning of the estimated impact of a retail event + 1 + Retail Planned Impact + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Retail Planned Impact. Forecast_ Purpose Code. Code + A description of the purpose for the forecast that is assigned to each forecast data item exception criterion. + 1 + Retail Planned Impact + Forecast + Purpose Code + Code + Code. Type + + + + + + + + + BBIE + Retail Planned Impact. Forecast Type Code. Code + A description of a forecast selected from a list + 1 + Retail Planned Impact + Forecast Type Code + Code + Code. Type + + + + + + + + + ASBIE + Retail Planned Impact. Period + An association to period + 0..1 + Retail Planned Impact + Period + Period + + + + + + + + + + + ABIE + Road Transport. Details + Describes a road transport vehicle. + Road Transport + + + + + + + + + BBIE + Road Transport. License Plate Identifier. Identifier + Identifies a specific vehicle. + 1 + Road Transport + License Plate Identifier + Identifier + Identifier. Type + Vehicle registration number (WCO ID 167) + + + + + + + + + + + ABIE + Sales Item. Details + Information about a Sales Item. + Sales Item + + + + + + + + + BBIE + Sales Item. Quantity + The sold quantity. + 1 + Sales Item + Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Sales Item. Activity Property + An association to Activity Property. + 0..n + Sales Item + Activity Property + Activity Property + + + + + + + + + ASBIE + Sales Item. Tax Exclusive_ Price. Price + An association to an Item. + 0..n + Sales Item + Tax Exclusive + Price + Price + + + + + + + + + ASBIE + Sales Item. Tax Inclusive_ Price. Price + An association to an Item. + 0..n + Sales Item + Tax Inclusive + Price + Price + + + + + + + + + ASBIE + Sales Item. Item + An association to an Item. + 1 + Sales Item + Item + Item + + + + + + + + + + + ABIE + Secondary Hazard. Details + Information about Secondary Hazard (related to a Hazardous Item). + Secondary Hazard + + + + + + + + + BBIE + Secondary Hazard. Identifier + Identifies the Secondary Hazard. + 0..1 + Secondary Hazard + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Secondary Hazard. Placard Notation. Text + The placard notation corresponding to the hazard class of the hazardous commodity. Can also be the hazard identification number of the orange placard (upper part) required on the means of transport. + 0..1 + Secondary Hazard + Placard Notation + Text + Text. Type + 5.1 + + + + + + + + + BBIE + Secondary Hazard. Placard Endorsement. Text + The placard endorsement that is to be shown on the shipping papers for the hazardous commodity. Can also be used for the number of the orange placard (lower part) required on the means of transport. + 0..1 + Secondary Hazard + Placard Endorsement + Text + Text. Type + 2 + + + + + + + + + BBIE + Secondary Hazard. Emergency Procedures Code. Code + Emergency procedures for hazardous goods, expressed as a code. + 0..1 + Secondary Hazard + Emergency Procedures Code + Code + Code. Type + EMG code, EMS Page Number + + + + + + + + + BBIE + Secondary Hazard. Extension. Text + Additional information about the hazardous substance. Can be used to specify information such as the type of regulatory requirements that apply to a description. + 0..1 + Secondary Hazard + Extension + Text + Text. Type + N.O.S. or a Waste Characteristics Code in conjunction with an EPA Waste Stream code + + + + + + + + + + + ABIE + Service Point. Details + A service point or stage in a transportation service. + Service Point + + + + + + + + + BBIE + Service Point. Sequence Number. Identifier + Sequence number differentiating one Service Point from another. + 1 + Service Point + Sequence Number + Identifier + Identifier. Type + + + + + + + + + BBIE + Service Point. Transport Mode Code. Code + The method of transport used from this service point to another. + 0..1 + Service Point + Transport Mode Code + Code + Transport Mode_ Code. Type + + + + + + + + + BBIE + Service Point. Remarks. Text + Any remarks relevant for this service point. + 0..n + Service Point + Remarks + Text + Text. Type + + + + + + + + + ASBIE + Service Point. Service Point_ Location. Location + Information about a location. + 0..1 + Service Point + Service Point + Location + Location + + + + + + + + + ASBIE + Service Point. Transport Means + The particular vehicle used for the transport of goods or persons. + 0..1 + Service Point + Transport Means + Transport Means + + + + + + + + + ASBIE + Service Point. Planned Departure_ Period. Period + Information about a period of time. + 0..1 + Service Point + Planned Departure + Period + Period + + + + + + + + + ASBIE + Service Point. Planned Arrival_ Period. Period + Information about a period of time. + 0..1 + Service Point + Planned Arrival + Period + Period + + + + + + + + + ASBIE + Service Point. Despatch_ Period. Period + Information about a period of time. + 0..1 + Service Point + Despatch + Period + Period + + + + + + + + + ASBIE + Service Point. Delivery_ Period. Period + Information about a period of time. + 0..1 + Service Point + Delivery + Period + Period + + + + + + + + + + + ABIE + Service Provider Party. Details + Information about the Service Provider Party. + Service Provider Party + + + + + + + + + BBIE + Service Provider Party. Identifier + The identifier for the Service Provider Party. + 0..1 + Service Provider Party + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Service Provider Party. Service Type Code. Code + + 0..1 + Service Provider Party + Service Type Code + Code + Code. Type + + + + + + + + + BBIE + Service Provider Party. Service Type. Text + + 0..n + Service Provider Party + Service Type + Text + Text. Type + + + + + + + + + ASBIE + Service Provider Party. Party + An association to Party. + 1 + Service Provider Party + Party + Party + + + + + + + + + ASBIE + Service Provider Party. Seller_ Contact. Contact + An association to Service Contact. + 0..1 + Service Provider Party + Seller + Contact + Contact + + + + + + + + + + + ABIE + Shareholder Party. Details + Information about the shareholder. + Shareholder Party + + + + + + + + + BBIE + Shareholder Party. Partecipation. Percent + Percentage. + 0..1 + Shareholder Party + Partecipation + Percent + Percent. Type + + + + + + + + + ASBIE + Shareholder Party. Party + An association to a shareholder. + 0..1 + Shareholder Party + Party + Party + + + + + + + + + + + ABIE + Shipment. Details + An identifiable collection of one or more goods items to be transported between the seller party and the buyer party. This information may be defined within a commercial contract. A shipment can be transported in different consignments (e.g., split for logistical purposes). + Shipment + + + + + + + + + BBIE + Shipment. Identifier + Identifies a shipment. + 1 + Shipment + Identifier + Identifier + Identifier. Type + Waybill Number + + + + + + + + + BBIE + Shipment. Shipping Priority Level Code. Code + The priority or level of service required for a shipment, expressed as a code. + 0..1 + Shipment + Shipping Priority Level Code + Code + Code. Type + Service Level, Service Priority + + + + + + + + + BBIE + Shipment. Handling Code. Code + The handling required for a shipment, expressed as a code. + 0..1 + Shipment + Handling Code + Code + Code. Type + Special Handling + + + + + + + + + BBIE + Shipment. Handling_ Instructions. Text + Free-form text describing Handling Instructions for a shipment. + 0..1 + Shipment + Handling + Instructions + Text + Text. Type + + + + + + + + + BBIE + Shipment. Information. Text + Free-form text applying to a shipment. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..1 + Shipment + Information + Text + Text. Type + + + + + + + + + BBIE + Shipment. Gross_ Weight. Measure + The total gross weight of a shipment; the weight of the goods plus packaging plus transport equipment. + 0..1 + Shipment + Gross + Weight + Measure + Measure. Type + + + + + + + + + BBIE + Shipment. Net_ Weight. Measure + The total net weight of a shipment; the weight of the goods plus packaging. + 0..1 + Shipment + Net + Weight + Measure + Measure. Type + + + + + + + + + BBIE + Shipment. Net Net_ Weight. Measure + The weight of the goods net of packaging and transport equipment. + 0..1 + Shipment + Net Net + Weight + Measure + Measure. Type + + + + + + + + + BBIE + Shipment. Gross_ Volume. Measure + The total volume of the goods in a shipment plus packaging. + 0..1 + Shipment + Gross + Volume + Measure + Measure. Type + + + + + + + + + BBIE + Shipment. Net_ Volume. Measure + The volume of a shipment net of packaging and transport equipment. + 0..1 + Shipment + Net + Volume + Measure + Measure. Type + + + + + + + + + BBIE + Shipment. Total_ Goods Item Quantity. Quantity + Count of the total number of goods items within a shipment. + 0..1 + Shipment + Total + Goods Item Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Shipment. Total_ Transport Handling Unit Quantity. Quantity + Count of the number of pieces of transport handling equipment in a shipment, such as pallets, boxes, and cases. + 0..1 + Shipment + Total + Transport Handling Unit Quantity + Quantity + Quantity. Type + Number of THUs + + + + + + + + + BBIE + Shipment. Insurance_ Value. Amount + The total sum covered by an insurance for the shipment. + 0..1 + Shipment + Insurance + Value + Amount + Amount. Type + Value Insured + + + + + + + + + BBIE + Shipment. Declared Customs_ Value. Amount + Amount declared for customs purposes of those goods in a shipment which are subject to the same customs procedure, and have the same tariff/statistical heading, country information, and duty regime. + 0..1 + Shipment + Declared Customs + Value + Amount + Amount. Type + + + + + + + + + BBIE + Shipment. Declared For Carriage_ Value. Amount + Value, declared by the shipper or his agent solely for the purpose of varying the carrier s level of liability from that provided in the contract of carriage, in case of loss or damage to goods or delayed delivery. + 0..1 + Shipment + Declared For Carriage + Value + Amount + Amount. Type + Declared value for carriage, Interest in delivery + + + + + + + + + BBIE + Shipment. Declared Statistics_ Value. Amount + Value declared for statistical purposes of those goods in a consignment which have the same statistical heading. + 0..1 + Shipment + Declared Statistics + Value + Amount + Amount. Type + Statistical Value + + + + + + + + + BBIE + Shipment. Free On Board_ Value. Amount + Monetary amount that has to be or has been paid as calculated under the applicable trade delivery. + 0..1 + Shipment + Free On Board + Value + Amount + Amount. Type + FOB Value + + + + + + + + + BBIE + Shipment. Special_ Instructions. Text + Special instructions relating to a shipment. + 0..n + Shipment + Special + Instructions + Text + Text. Type + + + + + + + + + BBIE + Shipment. Delivery_ Instructions. Text + Delivery instructions relating to a shipment. + 0..n + Shipment + Delivery + Instructions + Text + Text. Type + + + + + + + + + BBIE + Shipment. Split Consignment_ Indicator. Indicator + Indicates whether the consignment has been split in transit. + 0..1 + Shipment + Split Consignment + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Shipment. Consignment_ Quantity. Quantity + Count of the total number of consignments items within a shipment. + 0..1 + Shipment + Consignment + Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Shipment. Consignment + An association to Consignment covering the shipment. + 1..n + Shipment + Consignment + Consignment + + + + + + + + + ASBIE + Shipment. Goods Item + An association to Goods Item (for Bulk Goods). + 0..n + Shipment + Goods Item + Goods Item + + + + + + + + + ASBIE + Shipment. Shipment Stage + An association to Shipment Stage. + 0..n + Shipment + Shipment Stage + Shipment Stage + + + + + + + + + ASBIE + Shipment. Delivery + An association to Delivery. + 0..1 + Shipment + Delivery + Delivery + + + + + + + + + ASBIE + Shipment. Transport Handling Unit + An association to Transport Handling Unit used for loose and containerized goods. + 0..n + Shipment + Transport Handling Unit + Transport Handling Unit + + + + + + + + + ASBIE + Shipment. Return_ Address. Address + An association to the region in which the goods have been produced or manufactured, according to criteria laid down for the purposes of application of the Customs tariff, or quantitative restrictions, or of any other measure related to trade. + 0..1 + Shipment + Return + Address + Address + + + + + + + + + ASBIE + Shipment. Origin_ Address. Address + An association to the address to which a shipment would be returned. + 0..1 + Shipment + Origin + Address + Address + + + + + + + + + ASBIE + Shipment. First Arrival Port_ Location. Location + Identifies the first arrival location. This would be a port for sea, airport for air, and border post for land crossing. + 0..1 + Shipment + First Arrival Port + Location + Location + + + + + + + + + ASBIE + Shipment. Last Exit Port_ Location. Location + Identifies the final exporting location. This would be a port for sea, airport for air, and border post for land crossing. + 0..1 + Shipment + Last Exit Port + Location + Location + + + + + + + + + ASBIE + Shipment. Export_ Country. Country + Identifies the country from which the goods are originally exported without any commercial transaction taking place in intermediate countries. + 0..1 + Shipment + Export + Country + Country + + + + + + + + + ASBIE + Shipment. Freight_ Allowance Charge. Allowance Charge + Costs incurred by the shipper in moving goods, by whatever means, from one place to another under the terms of the contract of carriage. In addition to transport costs, this may include such elements as packing, documentation, loading, unloading, and insurance (to the extent that they relate to the freight costs). + 0..n + Shipment + Freight + Allowance Charge + Allowance Charge + + + + + + + + + + + ABIE + Shipment Stage. Details + Information about a shipment stage. + Shipment Stage + + + + + + + + + BBIE + Shipment Stage. Identifier + Identifies a shipment stage. + 0..1 + Shipment Stage + Identifier + Identifier + Identifier. Type + 1 , 2 , etc.. + + + + + + + + + BBIE + Shipment Stage. Transport Mode Code. Code + The method of transport used for a shipment stage. + 0..1 + Shipment Stage + Transport Mode Code + Code + Transport Mode_ Code. Type + + + + + + + + + BBIE + Shipment Stage. Transport Means Type Code. Code + The type of vehicle used for a shipment stage. + 0..1 + Shipment Stage + Transport Means Type Code + Code + Code. Type + + + + + + + + + BBIE + Shipment Stage. Transit_ Direction Code. Code + The direction of transit for a shipment stage. + 0..1 + Shipment Stage + Transit + Direction Code + Code + Code. Type + + + + + + + + + BBIE + Shipment Stage. Pre Carriage_ Indicator. Indicator + Indicates whether the stage is before the main carriage of the shipment. + 1 + Shipment Stage + Pre Carriage + Indicator + Indicator + Indicator. Type + Truck delivery to wharf + + + + + + + + + BBIE + Shipment Stage. On Carriage_ Indicator. Indicator + Indicates whether the stage is after the main carriage of the shipment. + 1 + Shipment Stage + On Carriage + Indicator + Indicator + Indicator. Type + Truck delivery from wharf + + + + + + + + + BBIE + Shipment Stage. Estimated_ Delivery Date. Date + The estimated delivery date. + 0..1 + Shipment Stage + Estimated + Delivery Date + Date + Date. Type + + + + + + + + + BBIE + Shipment Stage. Estimated_ Delivery Time. Time + The estimated delivery time. + 0..1 + Shipment Stage + Estimated + Delivery Time + Time + Time. Type + + + + + + + + + BBIE + Shipment Stage. Required_ Delivery Date. Date + The required delivery date by the buyer. + 0..1 + Shipment Stage + Required + Delivery Date + Date + Date. Type + + + + + + + + + BBIE + Shipment Stage. Required_ Delivery Time. Time + The required delivery time by the buyer. + 0..1 + Shipment Stage + Required + Delivery Time + Time + Time. Type + + + + + + + + + BBIE + Shipment Stage. Loading_ Sequence Identifier. Identifier + The identifier for the loading sequence of this consignment. + 0..1 + Shipment Stage + Loading + Sequence Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Shipment Stage. Successive_ Sequence Identifier. Identifier + The identifier for the successive loading sequence for this consignment. + 0..1 + Shipment Stage + Successive + Sequence Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Shipment Stage. Instructions. Text + Instructions for loading expressed as text. + 0..1 + Shipment Stage + Instructions + Text + Text. Type + + + + + + + + + BBIE + Shipment Stage. Demurrage_ Instructions. Text + Demurrage instructions expressed as text. + 0..1 + Shipment Stage + Demurrage + Instructions + Text + Text. Type + + + + + + + + + ASBIE + Shipment Stage. Transit_ Period. Period + An association to Transit Period. + 0..1 + Shipment Stage + Transit + Period + Period + + + + + + + + + ASBIE + Shipment Stage. Carrier_ Party. Party + An association to Carrier. + 0..n + Shipment Stage + Carrier + Party + Party + + + + + + + + + ASBIE + Shipment Stage. Transport Means + An association to the means of transport. + 0..1 + Shipment Stage + Transport Means + Transport Means + + + + + + + + + ASBIE + Shipment Stage. Loading Port_ Location. Location + An association to the port location of loading. + 0..1 + Shipment Stage + Loading Port + Location + Location + + + + + + + + + ASBIE + Shipment Stage. Unloading Port_ Location. Location + An association to the port location of unloading. + 0..1 + Shipment Stage + Unloading Port + Location + Location + + + + + + + + + ASBIE + Shipment Stage. Transship Port_ Location. Location + An association to the port location of transshipment. + 0..1 + Shipment Stage + Transship Port + Location + Location + + + + + + + + + ASBIE + Shipment Stage. Loading_ Transport Event. Transport Event + An association to the transport event of loading. + 0..1 + Shipment Stage + Loading + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Examination_ Transport Event. Transport Event + An association to the transport event of examination. + 0..1 + Shipment Stage + Examination + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Availability_ Transport Event. Transport Event + An association to the transport event of Availability. + 0..1 + Shipment Stage + Availability + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Exportation_ Transport Event. Transport Event + An assoiciaton to the transport event of Exportation. + 0..1 + Shipment Stage + Exportation + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Discharge_ Transport Event. Transport Event + An association to the transport event of Discharge. + 0..1 + Shipment Stage + Discharge + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Warehousing_ Transport Event. Transport Event + An assoication to the transport event of Warehousing. + 0..1 + Shipment Stage + Warehousing + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Takeover_ Transport Event. Transport Event + An association to the transport event of Takeover. + 0..1 + Shipment Stage + Takeover + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Optional Takeover_ Transport Event. Transport Event + An association to the transport event of Optional Takeover. + 0..1 + Shipment Stage + Optional Takeover + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Dropoff_ Transport Event. Transport Event + An association to the transport event of dropoff. + 0..1 + Shipment Stage + Dropoff + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Actual Pickup_ Transport Event. Transport Event + An association to the transport event of actual pickup. + 0..1 + Shipment Stage + Actual Pickup + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Delivery_ Transport Event. Transport Event + An association to the transport event of delivery. + 0..1 + Shipment Stage + Delivery + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Receipt_ Transport Event. Transport Event + An association to the transport eent of receipt. + 0..1 + Shipment Stage + Receipt + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Storage_ Transport Event. Transport Event + An assoiciation to the transport event of storage. + 0..1 + Shipment Stage + Storage + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Acceptance_ Transport Event. Transport Event + An association to the transport event of acceptance. + 0..1 + Shipment Stage + Acceptance + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Terminal Operator_ Party. Party + An association to the Terminal operator party. + 0..1 + Shipment Stage + Terminal Operator + Party + Party + + + + + + + + + ASBIE + Shipment Stage. Customs Agent_ Party. Party + An association to the Customs agent party. + 0..1 + Shipment Stage + Customs Agent + Party + Party + + + + + + + + + + + ABIE + Signature. Details + Information about signature. A placeholder for signature. + Signature + + + + + + + + + BBIE + Signature. Identifier + An identifier for the Signature. + 1 + Signature + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Signature. Note. Text + Free form text about the signature or the circumstances where the signature has been used. + 0..n + Signature + Note + Text + Text. Type + + + + + + + + + BBIE + Signature. Validation Date. Date + Specifies the date when the signature was approved. + 0..1 + Signature + Validation Date + Date + Date. Type + + + + + + + + + BBIE + Signature. Validation Time. Time + Specifies the time when the signature was approved. + 0..1 + Signature + Validation Time + Time + Time. Type + + + + + + + + + BBIE + Signature. Validator. Identifier + Identifies the organization, person, service or server that has validated the signature. + 0..1 + Signature + Validator + Identifier + Identifier. Type + + + + + + + + + BBIE + Signature. Canonicalization Method. Text + The mathematical logic method used by the Signature. + 0..1 + Signature + Canonicalization Method + Text + Text. Type + + + + + + + + + BBIE + Signature. Signature Method. Text + The method of signature. + 0..1 + Signature + Signature Method + Text + Text. Type + + + + + + + + + ASBIE + Signature. Signatory_ Party. Party + An association to the signing Party. + 0..1 + Signature + Signatory + Party + Party + + + + + + + + + ASBIE + Signature. Digital Signature_ Attachment. Attachment + Refers to the actual encoded signature (e.g., in XMLDSIG format). + 0..1 + Signature + Digital Signature + Attachment + Attachment + + + + + + + + + ASBIE + Signature. Original_ Document Reference. Document Reference + A reference to the actual document that the signature applies to. For evidentiary purposes, this may be the document image that the signatory party saw when applying their signature. + 0..1 + Signature + Original + Document Reference + Document Reference + + + + + + + + + + + ABIE + Statement Line. Details + Information about a Line on a Statement of Account. + Statement Line + + + + + + + + + BBIE + Statement Line. Identifier + Identifies the Statement Line. + 1 + Statement Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Statement Line. Note. Text + Free-form text applying to the Statement Line. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Statement Line + Note + Text + Text. Type + + + + + + + + + BBIE + Statement Line. UUID. Identifier + A universally unique identifier for an instance of this ABIE. + 0..1 + Statement Line + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Statement Line. Balance Brought Forward_ Indicator. Indicator + If true, indicates that the Statement Line has a balance outstanding from the previous bill(s). + 0..1 + Statement Line + Balance Brought Forward + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Statement Line. Debit_ Line Amount. Amount + The amount debited on the Statement Line. + 0..1 + Statement Line + Debit + Line Amount + Amount + Amount. Type + + + + + + + + + BBIE + Statement Line. Credit_ Line Amount. Amount + The amount credited on the Statement Line. + 0..1 + Statement Line + Credit + Line Amount + Amount + Amount. Type + + + + + + + + + BBIE + Statement Line. Balance Amount. Amount + The balance amount on the Statement Line. + 0..1 + Statement Line + Balance Amount + Amount + Amount. Type + + + + + + + + + BBIE + Statement Line. Payment Purpose Code. Code + The business purposes for payment express as code. + 0..1 + Statement Line + Payment Purpose Code + Code + Code. Type + + + + + + + + + ASBIE + Statement Line. Payment Means + An association to Payment Means. + 0..1 + Statement Line + Payment Means + Payment Means + + + + + + + + + ASBIE + Statement Line. Payment Terms + An association to Payment Terms. + 0..n + Statement Line + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Statement Line. Buyer_ Customer Party. Customer Party + An association to Buyer. + 0..1 + Statement Line + Buyer + Customer Party + Customer Party + + + + + + + + + ASBIE + Statement Line. Seller_ Supplier Party. Supplier Party + An association to Seller. + 0..1 + Statement Line + Seller + Supplier Party + Supplier Party + + + + + + + + + ASBIE + Statement Line. Originator_ Customer Party. Customer Party + An association to Originator. + 0..1 + Statement Line + Originator + Customer Party + Customer Party + + + + + + + + + ASBIE + Statement Line. Accounting_ Customer Party. Customer Party + An association to Accounting Customer Party. + 0..1 + Statement Line + Accounting + Customer Party + Customer Party + + + + + + + + + ASBIE + Statement Line. Accounting_ Supplier Party. Supplier Party + An association to Accounting Supplier Party. + 0..1 + Statement Line + Accounting + Supplier Party + Supplier Party + + + + + + + + + ASBIE + Statement Line. Payee_ Party. Party + An association to Payee. + 0..1 + Statement Line + Payee + Party + Party + + + + + + + + + ASBIE + Statement Line. Invoice_ Period. Period + An association to Invoice Period. + 0..n + Statement Line + Invoice + Period + Period + + + + + + + + + ASBIE + Statement Line. Billing Reference + An association to Billing Reference. + 0..n + Statement Line + Billing Reference + Billing Reference + + + + + + + + + ASBIE + Statement Line. Document Reference + An association to Document Reference. + 0..n + Statement Line + Document Reference + Document Reference + + + + + + + + + ASBIE + Statement Line. Exchange Rate + An association to Exchange Rate (between the Statement Line currency and the Related Document Currency). + 0..1 + Statement Line + Exchange Rate + Exchange Rate + + + + + + + + + ASBIE + Statement Line. Allowance Charge + Information about a charge or discount price component. + 0..n + Statement Line + Allowance Charge + Allowance Charge + + + + + + + + + + + ABIE + Status. Details + The information relevant to a condition or a position of an object. + Status + + + + + + + + + BBIE + Status. Condition Code. Code + A code specifying the status condition of the related object. + 0..1 + Status + Condition Code + Code + Code. Type + UN/ECE Rec 24 + + + + + + + + + BBIE + Status. Reference Date. Date + A reference date value for this status. + 0..1 + Status + Reference Date + Date + Date. Type + + + + + + + + + BBIE + Status. Reference Time. Time + A reference time value for this status. + 0..1 + Status + Reference Time + Time + Time. Type + + + + + + + + + BBIE + Status. Description. Text + A textual description of this status. + 0..n + Status + Description + Text + Text. Type + + + + + + + + + BBIE + Status. Status Reason Code. Code + A code specifying a reason for a status condition. + 0..1 + Status + Status Reason Code + Code + Code. Type + + + + + + + + + BBIE + Status. Status_ Reason. Text + The reason, expressed as text, for this status condition or position. + 0..n + Status + Status + Reason + Text + Text. Type + + + + + + + + + BBIE + Status. Sequence Identifier. Identifier + A unique identifier of the sequence of this status. + 0..1 + Status + Sequence Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Status. Text + Provides any textual information related to this status. + 0..n + Status + Text + Text + Text. Type + + + + + + + + + BBIE + Status. Indication_ Indicator. Indicator + Specifies an indicator relevant to a specific status. + 0..1 + Status + Indication + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Status. Percent + Specifies a percentage relevant to a specific status. + 0..1 + Status + Percent + Percent + Percent. Type + + + + + + + + + BBIE + Status. Condition Value. Measure + Provides a measurement of the condition. For example if it is the temperature condition, then this measurement could be degrees celcius or fahrenheit. + 0..n + Status + Condition Value + Measure + Measure. Type + + + + + + + + + BBIE + Status. Reliability Percent. Percent + Indicates the reliability of the status in percent + 0..1 + Status + Reliability Percent + Percent + Percent. Type + + + + + + + + + + + ABIE + Stock Availability Report Line. Details + Information about a Stock Availability Report Line. + Stock Availability Report Line + + + + + + + + + BBIE + Stock Availability Report Line. Identifier + An identifier for the Stock Availability Report Line. + 1 + Stock Availability Report Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Stock Availability Report Line. Note. Text + Free-form text applying to the Catalogue. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Stock Availability Report Line + Note + Text + Text. Type + + + + + + + + + BBIE + Stock Availability Report Line. Quantity + The quantity that is currently on stock. + 1 + Stock Availability Report Line + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Stock Availability Report Line. Value. Amount + The amount of the stock quantity. + 0..1 + Stock Availability Report Line + Value + Amount + Amount. Type + + + + + + + + + BBIE + Stock Availability Report Line. Availability Date. Date + The date from which the goods will be available. If not present, the goods are available now. + 0..1 + Stock Availability Report Line + Availability Date + Date + Date. Type + + + + + + + + + BBIE + Stock Availability Report Line. Availability Status Code. Code + A code that classifies the availability level of the good. + 0..1 + Stock Availability Report Line + Availability Status Code + Code + Code. Type + + + + + + + + + ASBIE + Stock Availability Report Line. Item + Information directly relating to an item. + 1 + Stock Availability Report Line + Item + Item + + + + + + + + + + + ABIE + Stowage. Details + A location on board a means of transport where specified goods or transport equipment have been or are to be stowed. + Stowage + + + + + + + + + BBIE + Stowage. Location Identifier. Identifier + Identifies a location on board a means of transport where specified goods or transport equipment have been or are to be stowed. + 0..1 + Stowage + Location Identifier + Identifier + Identifier. Type + Cell Location, coded + + + + + + + + + BBIE + Stowage. Location. Text + Describes a location on board a means of transport where specified goods or transport equipment have been or are to be stowed. + 0..n + Stowage + Location + Text + Text. Type + Cell Location + + + + + + + + + ASBIE + Stowage. Measurement_ Dimension. Dimension + Associates any measurements (including lengths, mass, and volume) for this stowage. + 0..n + Stowage + Measurement + Dimension + Dimension + + + + + + + + + + + ABIE + Subcontract Terms. Details + Information about the subcontract terms for this tendering process. + Subcontract Terms + + + + + + + + + BBIE + Subcontract Terms. Rate + The rate assigned to the subcontracted task. + 0..1 + Subcontract Terms + Rate + Rate + Rate. Type + + + + + + + + + BBIE + Subcontract Terms. Unknown_ Price. Indicator + The indication of whether or not the subcontract price is known. + 0..1 + Subcontract Terms + Unknown + Price + Indicator + Indicator. Type + + + + + + + + + BBIE + Subcontract Terms. Description. Text + A textual description of this subcontracted task rate + 0..n + Subcontract Terms + Description + Text + Text. Type + + + + + + + + + BBIE + Subcontract Terms. Amount + The amount assigned to the subcontracted task. + 0..1 + Subcontract Terms + Amount + Amount + Amount. Type + + + + + + + + + + + ABIE + Subscriber Consumption. Details + This class contain the Statement for the consumptionpoint. Is there a need for specify more than one consumptionpoint, then use one UtilityChargeableConsumption for each consumptionpoint, so you have several instance of UtilityChargeableConsumption. This could for exampel be a big company, there have severals branches. + Subscriber Consumption + + + + + + + + + BBIE + Subscriber Consumption. Consumption Identifier. Identifier + The identifier tor this specification. + 0..1 + Subscriber Consumption + Consumption Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Subscriber Consumption. Specification Type Code. Code + The code who specifices the type of this specification. + 0..1 + Subscriber Consumption + Specification Type Code + Code + Code. Type + + + + + + + + + BBIE + Subscriber Consumption. Note. Text + Free form text applying to the utility Energy Water Supply . This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Subscriber Consumption + Note + Text + Text. Type + This is how we have calculating your yearly statement + + + + + + + + + BBIE + Subscriber Consumption. Total Metered Quantity. Quantity + The total amount for the consumpted quantity - calculated from the meterreadings + 0..1 + Subscriber Consumption + Total Metered Quantity + Quantity + Quantity. Type + 2000.0 + + + + + + + + + ASBIE + Subscriber Consumption. Subscriber_ Party. Party + Contact and address information about the Subscriber + 0..1 + Subscriber Consumption + Subscriber + Party + Party + + + + + + + + + ASBIE + Subscriber Consumption. Utility_ Consumption Point. Consumption Point + Content information about UtilityConsumptionPoint + 1 + Subscriber Consumption + Utility + Consumption Point + Consumption Point + + + + + + + + + ASBIE + Subscriber Consumption. On Account Payment + The coming planed a conto payments + 0..n + Subscriber Consumption + On Account Payment + On Account Payment + + + + + + + + + ASBIE + Subscriber Consumption. Consumption + Contain the sub Statement for one and only one supplier + 0..1 + Subscriber Consumption + Consumption + Consumption + + + + + + + + + ASBIE + Subscriber Consumption. Supplier Consumption + Contain the sub Statement for one and only one supplier + 0..n + Subscriber Consumption + Supplier Consumption + Supplier Consumption + + + + + + + + + + + ABIE + Supplier Consumption. Details + Contain the sub Statement for one and only one supplier + Supplier Consumption + + + + + + + + + BBIE + Supplier Consumption. Description. Text + Free form text for information there isn t direcly in another structure + 0..1 + Supplier Consumption + Description + Text + Text. Type + This is what you pay for electricity to DONG Energy North Utility + + + + + + + + + ASBIE + Supplier Consumption. Utility Supplier_ Party. Party + Contact and address information about the Supplier + 0..1 + Supplier Consumption + Utility Supplier + Party + Party + + + + + + + + + ASBIE + Supplier Consumption. Utility Customer_ Party. Party + Contact and address information about the Customer + 0..1 + Supplier Consumption + Utility Customer + Party + Party + + + + + + + + + ASBIE + Supplier Consumption. Consumption + Contain the sub Statement for one and only one supplier + 1 + Supplier Consumption + Consumption + Consumption + + + + + + + + + ASBIE + Supplier Consumption. Consumption Line + Statement of one product. + 1..n + Supplier Consumption + Consumption Line + Consumption Line + + + + + + + + + + + ABIE + Supplier Party. Details + Information about the Supplier Party. + Supplier Party + + + + + + + + + BBIE + Supplier Party. Customer Assigned_ Account Identifier. Identifier + The customer s internal identifier for the supplier. + 0..1 + Supplier Party + Customer Assigned + Account Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Supplier Party. Additional_ Account Identifier. Identifier + The customer s internal identifier for the supplier. + 0..n + Supplier Party + Additional + Account Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Supplier Party. Data Sending Capability. Text + Capability to send invoice data via the purchase card provider (VISA/MasterCard/American Express). + 0..1 + Supplier Party + Data Sending Capability + Text + Text. Type + + + + + + + + + ASBIE + Supplier Party. Party + An association to Party. + 0..1 + Supplier Party + Party + Party + + + + + + + + + ASBIE + Supplier Party. Despatch_ Contact. Contact + An association to Despatch Contact. + 0..1 + Supplier Party + Despatch + Contact + Contact + + + + + + + + + ASBIE + Supplier Party. Accounting_ Contact. Contact + An association to Supplier Accounting Contact. + 0..1 + Supplier Party + Accounting + Contact + Contact + + + + + + + + + ASBIE + Supplier Party. Seller_ Contact. Contact + An association to Seller Contact. + 0..1 + Supplier Party + Seller + Contact + Contact + + + + + + + + + + + ABIE + Tax Category. Details + Information about a tax category. + Tax Category + + + + + + + + + BBIE + Tax Category. Identifier + Identifies the tax category. + 0..1 + Tax Category + Identifier + Identifier + Identifier. Type + ZeroRatedGoods NotTaxable Standard Rate + + + + + + + + + BBIE + Tax Category. Name + The name of the tax category. + 0..1 + Tax Category + Name + Name + Name. Type + Luxury Goods , Wine Equalization , Exempt + + + + + + + + + BBIE + Tax Category. Percent + The tax rate for the category, expressed as a percentage. + 0..1 + Tax Category + Percent + Percent + Percent. Type + + + + + + + + + BBIE + Tax Category. Base Unit Measure. Measure + Where a tax is applied at a certain rate per unit, the measure of units on which the tax calculation is based. + 0..1 + Tax Category + Base Unit Measure + Measure + Measure. Type + + + + + + + + + BBIE + Tax Category. Per Unit_ Amount. Amount + Where a tax is applied at a certain rate per unit, the rate per unit applied. + 0..1 + Tax Category + Per Unit + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Tax Category. Tax Exemption Reason Code. Code + The reason for tax being exempted expressed as a code. + 0..1 + Tax Category + Tax Exemption Reason Code + Code + Code. Type + + + + + + + + + BBIE + Tax Category. Tax Exemption Reason. Text + The reason for tax being exempted. + 0..1 + Tax Category + Tax Exemption Reason + Text + Text. Type + + + + + + + + + BBIE + Tax Category. Tier Range. Text + Where a tax is tiered, the range of tiers applied in the calculation of the tax subtotal for the tax category. + 0..1 + Tax Category + Tier Range + Text + Text. Type + + + + + + + + + BBIE + Tax Category. Tier Rate. Percent + Where a tax is tiered, the rate of tax applied to the range of tiers in the calculation of the tax subtotal for the tax category. + 0..1 + Tax Category + Tier Rate + Percent + Percent. Type + + + + + + + + + ASBIE + Tax Category. Tax Scheme + An association to Tax Scheme. + 1 + Tax Category + Tax Scheme + Tax Scheme + + + + + + + + + + + ABIE + Tax Scheme. Details + Information about a tax scheme. + Tax Scheme + + + + + + + + + BBIE + Tax Scheme. Identifier + Identifies the tax scheme. + 0..1 + Tax Scheme + Identifier + Identifier + Identifier. Type + VAT , GST + + + + + + + + + BBIE + Tax Scheme. Name + The name of the tax scheme. + 0..1 + Tax Scheme + Name + Name + Name. Type + Value Added Tax , Wholesale Tax , Sales Tax , State Tax + + + + + + + + + BBIE + Tax Scheme. Tax Type Code. Code + An identifier for the tax type. + 0..1 + Tax Scheme + Tax Type Code + Code + Code. Type + Consumption , Sales + + + + + + + + + BBIE + Tax Scheme. Currency Code. Code + The currency in which the tax is collected and reported, expressed as a code. + 0..1 + Tax Scheme + Currency Code + Code + Currency_ Code. Type + + + + + + + + + ASBIE + Tax Scheme. Jurisdiction Region_ Address. Address + An association with Address (of taxation jurisdiction). + 0..n + Tax Scheme + Jurisdiction Region + Address + Address + + + + + + + + + + + ABIE + Tax Subtotal. Details + Information about the subtotal for a particular tax category within a tax scheme, such as standard rate within VAT. + Tax Subtotal + + + + + + + + + BBIE + Tax Subtotal. Taxable_ Amount. Amount + The net amount to which the tax percent (rate) is applied to calculate the tax amount. + 0..1 + Tax Subtotal + Taxable + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Tax Subtotal. Tax Amount. Amount + The amount of tax stated explicitly. + 1 + Tax Subtotal + Tax Amount + Amount + Amount. Type + + + + + + + + + BBIE + Tax Subtotal. Calculation Sequence. Numeric + Identifies the numerical order sequence in which taxes are applied when multiple taxes are attracted. If all taxes apply to the same taxable amount, CalculationSequenceNumeric will be 1 for all taxes. + 0..1 + Tax Subtotal + Calculation Sequence + Numeric + Numeric. Type + + + + + + + + + BBIE + Tax Subtotal. Transaction Currency_ Tax Amount. Amount + The tax amount, expressed in the currency used for invoicing. + 0..1 + Tax Subtotal + Transaction Currency + Tax Amount + Amount + Amount. Type + + + + + + + + + BBIE + Tax Subtotal. Percent + The tax rate for the category, expressed as a percentage. + 0..1 + Tax Subtotal + Percent + Percent + Percent. Type + + + + + + + + + BBIE + Tax Subtotal. Base Unit Measure. Measure + Where a tax is applied at a certain rate per unit, the measure of units on which the tax calculation is based. + 0..1 + Tax Subtotal + Base Unit Measure + Measure + Measure. Type + + + + + + + + + BBIE + Tax Subtotal. Per Unit_ Amount. Amount + Where a tax is applied at a certain rate per unit, the rate per unit applied. + 0..1 + Tax Subtotal + Per Unit + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Tax Subtotal. Tier Range. Text + Where a tax is tiered, the range of tiers applied in the calculation of the tax subtotal for the tax category. + 0..1 + Tax Subtotal + Tier Range + Text + Text. Type + + + + + + + + + BBIE + Tax Subtotal. Tier Rate. Percent + Where a tax is tiered, the rate of tax applied to the range of tiers in the calculation of the tax subtotal for the tax category. + 0..1 + Tax Subtotal + Tier Rate + Percent + Percent. Type + + + + + + + + + ASBIE + Tax Subtotal. Tax Category + An association to Tax Category. + 1 + Tax Subtotal + Tax Category + Tax Category + + + + + + + + + + + ABIE + Tax Total. Details + Information about a total amount of a particular type of tax. + Tax Total + + + + + + + + + BBIE + Tax Total. Tax Amount. Amount + The total tax amount for particular tax scheme e.g. VAT; the sum of each of the tax subtotals for each tax category within the tax scheme. + 1 + Tax Total + Tax Amount + Amount + Amount. Type + + + + + + + + + BBIE + Tax Total. Rounding Amount. Amount + The rounding amount (positive or negative) added to the calculated tax total to produce the rounded TotalTaxAmount. + 0..1 + Tax Total + Rounding Amount + Amount + Amount. Type + + + + + + + + + BBIE + Tax Total. Tax Evidence_ Indicator. Indicator + An indicator as to whether these totals are recognized as legal evidence for taxation purposes. + 0..1 + Tax Total + Tax Evidence + Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Tax Total. Tax Included_ Indicator. Indicator + An indicator to tell whether tax is included in the calculation. + 0..1 + Tax Total + Tax Included + Indicator + Indicator + Indicator. Type + + + + + + + + + ASBIE + Tax Total. Tax Subtotal + An association to Tax Subtotal. + 0..n + Tax Total + Tax Subtotal + Tax Subtotal + + + + + + + + + + + ABIE + Telecommunications Service. Details + Informations about each Telecommunications Service + Telecommunications Service + + + + + + + + + BBIE + Telecommunications Service. Identifier + Identifies the Telecommunications Service. + 0..1 + Telecommunications Service + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Telecommunications Service. Call_ Date. Date + Information about the date for the call + 1 + Telecommunications Service + Call + Date + Date + Date. Type + 2008-01-01 + + + + + + + + + BBIE + Telecommunications Service. Call_ Time. Time + Information about the time for the call + 1 + Telecommunications Service + Call + Time + Time + Time. Type + 00:01:00 + + + + + + + + + BBIE + Telecommunications Service. Service Number Called. Text + Information about the phone number called + 1 + Telecommunications Service + Service Number Called + Text + Text. Type + 12345679 + + + + + + + + + BBIE + Telecommunications Service. Telecommunications Service Category. Text + Information about the tele category + 0..1 + Telecommunications Service + Telecommunications Service Category + Text + Text. Type + Subscription + + + + + + + + + BBIE + Telecommunications Service. Telecommunications Service Category Code. Code + Statement of the tele category code + 0..1 + Telecommunications Service + Telecommunications Service Category Code + Code + Code. Type + Subscription + + + + + + + + + BBIE + Telecommunications Service. Movie Title. Text + Information about a movie title + 0..1 + Telecommunications Service + Movie Title + Text + Text. Type + The Matrix + + + + + + + + + BBIE + Telecommunications Service. Roaming Partner Name. Text + Statement of the roaming partner name. + 0..n + Telecommunications Service + Roaming Partner Name + Text + Text. Type + + + + + + + + + BBIE + Telecommunications Service. Pay Per View. Text + Note about the pay per view + 0..1 + Telecommunications Service + Pay Per View + Text + Text. Type + + + + + + + + + BBIE + Telecommunications Service. Quantity + Information about number of calls + 0..1 + Telecommunications Service + Quantity + Quantity + Quantity. Type + 5761 + + + + + + + + + BBIE + Telecommunications Service. Telecommunications Service Call. Text + Information about tele calls + 0..1 + Telecommunications Service + Telecommunications Service Call + Text + Text. Type + CallAttempt + + + + + + + + + BBIE + Telecommunications Service. Telecommunications Service Call Code. Code + Statement of the tele call code + 0..1 + Telecommunications Service + Telecommunications Service Call Code + Code + Code. Type + CallAttempt + + + + + + + + + BBIE + Telecommunications Service. Call Base_ Amount. Amount + The amount to be payed as the base for one call + 0..1 + Telecommunications Service + Call Base + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Telecommunications Service. Call Extension_ Amount. Amount + The amount to be payed for the call + 0..1 + Telecommunications Service + Call Extension + Amount + Amount + Amount. Type + 542.44 + + + + + + + + + ASBIE + Telecommunications Service. Price + The duty for the time consumption + 0..1 + Telecommunications Service + Price + Price + + + + + + + + + ASBIE + Telecommunications Service. Country + An association to Country. + 0..1 + Telecommunications Service + Country + Country + + + + + + + + + ASBIE + Telecommunications Service. Exchange Rate + Information related to tele exchange rate + 0..n + Telecommunications Service + Exchange Rate + Exchange Rate + + + + + + + + + ASBIE + Telecommunications Service. Allowance Charge + An association to Allowances and Charges that apply to the UtilityStatement as a whole. + 0..n + Telecommunications Service + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Telecommunications Service. Tax Total + An association to tax total for specific tax types/rates + 0..n + Telecommunications Service + Tax Total + Tax Total + + + + + + + + + ASBIE + Telecommunications Service. Call_ Duty. Duty + The duty for calls + 0..n + Telecommunications Service + Call + Duty + Duty + + + + + + + + + ASBIE + Telecommunications Service. Time_ Duty. Duty + The duty for the time consumption + 0..n + Telecommunications Service + Time + Duty + Duty + + + + + + + + + + + ABIE + Telecommunications Supply. Details + The class contain the detailed / Telecommunications Supply. + Telecommunications Supply + + + + + + + + + BBIE + Telecommunications Supply. Telecommunications Supply Type. Text + Specifying the type of the Telecommunications Supply. + 0..1 + Telecommunications Supply + Telecommunications Supply Type + Text + Text. Type + Itemized tele Statement + + + + + + + + + BBIE + Telecommunications Supply. Telecommunications Supply Type Code. Code + Code specifying the type of the Telecommunications Supply. + 0..1 + Telecommunications Supply + Telecommunications Supply Type Code + Code + Code. Type + TeleExtended + + + + + + + + + BBIE + Telecommunications Supply. Privacy Code. Code + Statement of the level of confidential of the UtilityStatement. + 1 + Telecommunications Supply + Privacy Code + Code + Code. Type + CompanyLevel + + + + + + + + + BBIE + Telecommunications Supply. Description. Text + Description of the Statement. + 0..1 + Telecommunications Supply + Description + Text + Text. Type + Extended conversation Statement January quarter 2008. + + + + + + + + + BBIE + Telecommunications Supply. Total_ Amount. Amount + The total amount. + 0..1 + Telecommunications Supply + Total + Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Telecommunications Supply. Telecommunications Supply Line + This class contain a tele specifikation on line level. Here you can make up unitprice /itemprice related each service. + 1..n + Telecommunications Supply + Telecommunications Supply Line + Telecommunications Supply Line + + + + + + + + + + + ABIE + Telecommunications Supply Line. Details + This class contain a tele specifikation on line level. Here you can make up unitprice /itemprice related each service. + Telecommunications Supply Line + + + + + + + + + BBIE + Telecommunications Supply Line. Identifier + Identification of the TeleStatement line. + 1 + Telecommunications Supply Line + Identifier + Identifier + Identifier. Type + 1 + + + + + + + + + BBIE + Telecommunications Supply Line. Phone Number. Text + The number witch is specified. One phonenumber can have many calls. + 1 + Telecommunications Supply Line + Phone Number + Text + Text. Type + 12345678 + + + + + + + + + BBIE + Telecommunications Supply Line. Description. Text + Description. + 0..1 + Telecommunications Supply Line + Description + Text + Text. Type + Additional informations + + + + + + + + + BBIE + Telecommunications Supply Line. Line Extension Amount. Amount + Statement of the line amount. + 0..1 + Telecommunications Supply Line + Line Extension Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Telecommunications Supply Line. Exchange Rate + Information related to tele exchange rate. + 0..n + Telecommunications Supply Line + Exchange Rate + Exchange Rate + + + + + + + + + ASBIE + Telecommunications Supply Line. Allowance Charge + An association to Allowances and Charges that apply to the UtilityStatement as a whole. + 0..n + Telecommunications Supply Line + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Telecommunications Supply Line. Tax Total + An association to tax total for specific tax types/rates. + 0..n + Telecommunications Supply Line + Tax Total + Tax Total + + + + + + + + + ASBIE + Telecommunications Supply Line. Telecommunications Service + Informations about each call. + 1..n + Telecommunications Supply Line + Telecommunications Service + Telecommunications Service + + + + + + + + + + + ABIE + Temperature. Details + Information about temperature. + Temperature + + + + + + + + + BBIE + Temperature. Attribute Identifier. Identifier + An identifier for temperature. + 1 + Temperature + Attribute Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Temperature. Measure + The temperature measurement value. + 1 + Temperature + Measure + Measure + Measure. Type + + + + + + + + + BBIE + Temperature. Description. Text + A description of the temperature measurement. + 0..n + Temperature + Description + Text + Text. Type + at sea level + + + + + + + + + + + ABIE + Tender Line. Details + Reference to a line on a Tender. + Tender Line + + + + + + + + + BBIE + Tender Line. Identifier + The identifier for the Tender Line. + 0..1 + Tender Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Tender Line. Note. Text + Free form text applying to the Tender Line. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Tender Line + Note + Text + Text. Type + + + + + + + + + BBIE + Tender Line. Quantity + The quantity of the Item quoted + 0..1 + Tender Line + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Tender Line. Line Extension Amount. Amount + The total amount for the Tender Line including Allowance Charges but net of taxes. + 0..1 + Tender Line + Line Extension Amount + Amount + Amount. Type + + + + + + + + + BBIE + Tender Line. Total_ Tax Amount. Amount + The total tax amount for the Tender Line + 0..1 + Tender Line + Total + Tax Amount + Amount + Amount. Type + + + + + + + + + BBIE + Tender Line. Orderable_ Unit. Text + The unit that can be ordered. + 0..n + Tender Line + Orderable + Unit + Text + Text. Type + + + + + + + + + BBIE + Tender Line. Content Unit. Quantity + The quantity of the order unit of measure of the line. + 0..1 + Tender Line + Content Unit + Quantity + Quantity. Type + If order unit measure identifier is each , then content unit quantity is 1 . + + + + + + + + + BBIE + Tender Line. Order Quantity Increment. Numeric + The number of items that can set the order quantity increments. + 0..1 + Tender Line + Order Quantity Increment + Numeric + Numeric. Type + + + + + + + + + BBIE + Tender Line. Minimum_ Order Quantity. Quantity + The minimum amount of items that can be ordered. + 0..1 + Tender Line + Minimum + Order Quantity + Quantity + Quantity. Type + 10 boxes + + + + + + + + + BBIE + Tender Line. Maximum_ Order Quantity. Quantity + The maximum amount of items that can be ordered. + 0..1 + Tender Line + Maximum + Order Quantity + Quantity + Quantity. Type + 1 tonne + + + + + + + + + BBIE + Tender Line. Warranty_ Information. Text + Information regarding the warranty for the good or service. Warranty may be provided by any Party (can be described in the assiciation to Warranty Party). + 0..n + Tender Line + Warranty + Information + Text + Text. Type + Unless specified otherwise and in addition to any rights the Customer may have under statute, Dell warrants to the Customer that Dell branded Products (excluding third party products and software), will be free from defects in materials and workmanship affecting normal use for a period of one year from invoice date ( Standard Warranty ). + + + + + + + + + BBIE + Tender Line. Pack Level Code. Code + The level of packaging involved. + 0..1 + Tender Line + Pack Level Code + Code + Code. Type + Consumer Unit, Trading Unit + level 2 , Group 4 + + + + + + + + + ASBIE + Tender Line. Document Reference + An association to Document Reference + 0..n + Tender Line + Document Reference + Document Reference + + + + + + + + + ASBIE + Tender Line. Item + An association to Item + 0..1 + Tender Line + Item + Item + + + + + + + + + ASBIE + Tender Line. Offered_ Item Location Quantity. Item Location Quantity + An association to the description of properties related to locations and quantities of the Item. + 0..n + Tender Line + Offered + Item Location Quantity + Item Location Quantity + + + + + + + + + ASBIE + Tender Line. Replacement_ Related Item. Related Item + An association that describes any catalogue items that may be replacements for this Item. + 0..n + Tender Line + Replacement + Related Item + Related Item + + + + + + + + + ASBIE + Tender Line. Warranty_ Party. Party + The party responsible for the Warranty. + 0..1 + Tender Line + Warranty + Party + Party + + + + + + + + + ASBIE + Tender Line. Warranty Validity_ Period. Period + The period for which the Warranty is valid. + 0..1 + Tender Line + Warranty Validity + Period + Period + + + + + + + + + ASBIE + Tender Line. Sub_ Tender Line. Tender Line + An association to a Sub Tender Line + 0..n + Tender Line + Sub + Tender Line + Tender Line + + + + + + + + + + + ABIE + Tender Preparation. Details + Information about how to prepare a tender. + Tender Preparation + + + + + + + + + BBIE + Tender Preparation. Tender_ Envelope Identifier. Identifier + Identifier of the tender envelope. + 1 + Tender Preparation + Tender + Envelope Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Tender Preparation. Tender_ Envelope Type Code. Code + A code to specify the type of tender envelope (economical or objective criteria versus technical or subjective criteria). + 0..1 + Tender Preparation + Tender + Envelope Type Code + Code + Code. Type + + + + + + + + + BBIE + Tender Preparation. Description. Text + Textual description of the tender envelope. + 0..n + Tender Preparation + Description + Text + Text. Type + + + + + + + + + BBIE + Tender Preparation. Open Tender Identifier. Identifier + Identifier of the open tender event to which this Tender Praparation is related to. + 0..1 + Tender Preparation + Open Tender Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Tender Preparation. Procurement Project Lot. Identifier + Identifier of the Procurement project lot to which this tenderer is accepted or rejected. + 0..n + Tender Preparation + Procurement Project Lot + Identifier + Identifier. Type + + + + + + + + + ASBIE + Tender Preparation. Document_ Tender Requirement. Tender Requirement + Documents required to annex to this tender for this tendering process. + 0..n + Tender Preparation + Document + Tender Requirement + Tender Requirement + Curricula required, Experience required, .... + + + + + + + + + + + ABIE + Tender Requirement. Details + An action or statement that is imperative in a tender. + Tender Requirement + + + + + + + + + BBIE + Tender Requirement. Name + Name of the requirement. + 0..n + Tender Requirement + Name + Name + Name. Type + + + + + + + + + BBIE + Tender Requirement. Description. Text + A textual description of the requirement. + 0..n + Tender Requirement + Description + Text + Text. Type + + + + + + + + + ASBIE + Tender Requirement. Template_ Document Reference. Document Reference + An associative reference to template to fulfill the requirement. + 0..1 + Tender Requirement + Template + Document Reference + Document Reference + + + + + + + + + + + ABIE + Tender Result. Details + The result of the bid opening in the tendering process + Tender Result + + + + + + + + + BBIE + Tender Result. Tender_ Result Code. Code + The code specifiying the tender result for this tendering process. + 0..1 + Tender Result + Tender + Result Code + Code + Code. Type + + + + + + + + + BBIE + Tender Result. Description. Text + The textual description for this tender result for this tendering process. + 0..n + Tender Result + Description + Text + Text. Type + + + + + + + + + BBIE + Tender Result. Advertisement. Amount + The monetary value of the advertisement for this tendering process. + 0..1 + Tender Result + Advertisement + Amount + Amount. Type + + + + + + + + + BBIE + Tender Result. Award Date. Date + The date at which awarding has been formalized + 1 + Tender Result + Award Date + Date + Date. Type + + + + + + + + + BBIE + Tender Result. Award Time. Time + The time at which awarding has been formalized + 0..1 + Tender Result + Award Time + Time + Time. Type + + + + + + + + + BBIE + Tender Result. Received_ Tender. Quantity + The total number of tenders received in this tendering process. + 0..1 + Tender Result + Received + Tender + Quantity + Quantity. Type + + + + + + + + + BBIE + Tender Result. Lower_ Tender. Amount + The most economical tender received in this tendering process. + 0..1 + Tender Result + Lower + Tender + Amount + Amount. Type + + + + + + + + + BBIE + Tender Result. Higher_ Tender. Amount + The most expensive tender received in this tendering process. + 0..1 + Tender Result + Higher + Tender + Amount + Amount. Type + + + + + + + + + BBIE + Tender Result. Start Date. Date + The date on which this contract starts. + 0..1 + Tender Result + Start Date + Date + Date. Type + + + + + + + + + ASBIE + Tender Result. Contract + A contract that is identified in this tender result. + 0..1 + Tender Result + Contract + Contract + + + + + + + + + ASBIE + Tender Result. Winning_ Party. Party + A party that is identified as the awarded by this tender result. + 0..1 + Tender Result + Winning + Party + Party + + + + + + + + + ASBIE + Tender Result. Awarded_ Tendered Project. Tendered Project + The awarded tendered project for this tender result. + 0..1 + Tender Result + Awarded + Tendered Project + Tendered Project + + + + + + + + + ASBIE + Tender Result. Contract Formalization_ Period. Period + Information about the period of time to formalize the contract. + 0..1 + Tender Result + Contract Formalization + Period + Period + + + + + + + + + ASBIE + Tender Result. Subcontract Terms + The actual subcontract information for this tender result. + 0..n + Tender Result + Subcontract Terms + Subcontract Terms + + + + + + + + + + + ABIE + Tendered Project. Details + A set of lines of a tender refering to the same procurement project lot in the tendering process. + Tendered Project + + + + + + + + + BBIE + Tendered Project. Procurement Project Lot. Identifier + The identifier for the procurement project lot to which this Tender Line refers to. If there are no lots, this identifier should not be defined. + 0..1 + Tendered Project + Procurement Project Lot + Identifier + Identifier. Type + + + + + + + + + BBIE + Tendered Project. Variant. Identifier + Identifies the variant of this tendered project + 0..1 + Tendered Project + Variant + Identifier + Identifier. Type + + + + + + + + + BBIE + Tendered Project. Fee. Amount + The fee amount for tendered projects. + 0..1 + Tendered Project + Fee + Amount + Amount. Type + + + + + + + + + BBIE + Tendered Project. Fee_ Description. Text + Textual description of the fee amount for tendered projects. + 0..n + Tendered Project + Fee + Description + Text + Text. Type + + + + + + + + + ASBIE + Tendered Project. Tax Total + An association to the total tax amount. + 0..n + Tendered Project + Tax Total + Tax Total + + + + + + + + + ASBIE + Tendered Project. Legal_ Monetary Total. Monetary Total + An assocation to the total amounts for the tender. + 0..1 + Tendered Project + Legal + Monetary Total + Monetary Total + + + + + + + + + ASBIE + Tendered Project. Tender Line + An association to a set of Tender Lines. + 0..n + Tendered Project + Tender Line + Tender Line + + + + + + + + + ASBIE + Tendered Project. Awarding Criteria Response + An association to a set of Awarding Criteria Responses. + 0..n + Tendered Project + Awarding Criteria Response + Awarding Criteria Response + + + + + + + + + + + ABIE + Tenderer Party Qualification. Details + Information about the tenderer party qualifications + Tenderer Party Qualification + + + + + + + + + BBIE + Tenderer Party Qualification. Interested Procurement Lots Identifier. Identifier + Identifier for the procurement project lot the party is interested in. + 0..n + Tenderer Party Qualification + Interested Procurement Lots Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Tenderer Party Qualification. Main_ Qualifying Party. Qualifying Party + Main party qualifications. + 1 + Tenderer Party Qualification + Main + Qualifying Party + Qualifying Party + + + + + + + + + ASBIE + Tenderer Party Qualification. Additional_ Qualifying Party. Qualifying Party + Additional party qualifications when the bidding in a consortium. + 0..n + Tenderer Party Qualification + Additional + Qualifying Party + Qualifying Party + + + + + + + + + + + ABIE + Tenderer Qualification Request. Details + The evaluation that the Contracting Authority party requests to fulfill to the tenderers. + Tenderer Qualification Request + + + + + + + + + BBIE + Tenderer Qualification Request. Legal Form. Text + Textual description of the legal form requested for potential tenderers. + 0..n + Tenderer Qualification Request + Legal Form + Text + Text. Type + + + + + + + + + BBIE + Tenderer Qualification Request. Personal Situation. Text + Textual description of the personal situation of the economic operators in this tendering process. + 0..n + Tenderer Qualification Request + Personal Situation + Text + Text. Type + + + + + + + + + BBIE + Tenderer Qualification Request. Operating Years. Quantity + The minimum number of years that the business in this tendering business profile has been in operation. + 0..1 + Tenderer Qualification Request + Operating Years + Quantity + Quantity. Type + + + + + + + + + BBIE + Tenderer Qualification Request. Employee. Quantity + The minimum number of employees of the business in this tendering business profile. + 0..1 + Tenderer Qualification Request + Employee + Quantity + Quantity. Type + + + + + + + + + BBIE + Tenderer Qualification Request. Description. Text + Textual information stating the evaluation requirements for this tenderer. + 0..n + Tenderer Qualification Request + Description + Text + Text. Type + + + + + + + + + ASBIE + Tenderer Qualification Request. Required Business_ Classification Scheme. Classification Scheme + An association to a classification scheme for the business profile. + 0..n + Tenderer Qualification Request + Required Business + Classification Scheme + Classification Scheme + + + + + + + + + ASBIE + Tenderer Qualification Request. Technical_ Evaluation Criteria. Evaluation Criteria + Technical evaluation criteria required for an economic operator in a tendering process. + 0..n + Tenderer Qualification Request + Technical + Evaluation Criteria + Evaluation Criteria + + + + + + + + + ASBIE + Tenderer Qualification Request. Financial_ Evaluation Criteria. Evaluation Criteria + Financial evaluation criteria required for an economic operator in a tendering process. + 0..n + Tenderer Qualification Request + Financial + Evaluation Criteria + Evaluation Criteria + + + + + + + + + ASBIE + Tenderer Qualification Request. Specific_ Tenderer Requirement. Tenderer Requirement + Specific requirements that shall be met by the tenderer. + 0..n + Tenderer Qualification Request + Specific + Tenderer Requirement + Tenderer Requirement + Preregistration in a Business Registry + + + + + + + + + + + ABIE + Tenderer Requirement. Details + An action or statement imperative for an economic operator participating in a tendering process. + Tenderer Requirement + + + + + + + + + BBIE + Tenderer Requirement. Name + Name of the requirement. + 0..n + Tenderer Requirement + Name + Name + Name. Type + + + + + + + + + BBIE + Tenderer Requirement. Tenderer Requirement_ Type Code. Code + A code specifying the requirement for the tenderer. + 0..1 + Tenderer Requirement + Tenderer Requirement + Type Code + Code + Code. Type + + + + + + + + + BBIE + Tenderer Requirement. Description. Text + A textual description of the requirement. + 0..n + Tenderer Requirement + Description + Text + Text. Type + + + + + + + + + ASBIE + Tenderer Requirement. Suggested_ Evidence. Evidence + Evidence that is suggested to be used to fulfil the criteria. + 0..n + Tenderer Requirement + Suggested + Evidence + Evidence + + + + + + + + + + + ABIE + Tendering Process. Details + The process of a formal offer and response to execute work or supply goods at a stated price. + Tendering Process + + + + + + + + + BBIE + Tendering Process. Identifier + A unique identifier of the process. + 0..1 + Tendering Process + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Tendering Process. Original_ Contracting System. Identifier + Identifier for the Framework Agreement or DPS when reopening for competition. + 0..1 + Tendering Process + Original + Contracting System + Identifier + Identifier. Type + + + + + + + + + BBIE + Tendering Process. Description. Text + A textual description of the process. + 0..n + Tendering Process + Description + Text + Text. Type + + + + + + + + + BBIE + Tendering Process. Negotiation_ Description. Text + The textual description of the negotiation to be followed during the tendering process. + 0..n + Tendering Process + Negotiation + Description + Text + Text. Type + + + + + + + + + BBIE + Tendering Process. Procedure Code. Code + A code specifying the type of this tendering procedure. + 0..1 + Tendering Process + Procedure Code + Code + Code. Type + Open, Restricted, Negotiated + + + + + + + + + BBIE + Tendering Process. Urgency Code. Code + A code specifying the urgency for this tendering process. + 0..1 + Tendering Process + Urgency Code + Code + Code. Type + Urgent, Normal, Emergency + + + + + + + + + BBIE + Tendering Process. Expense Code. Code + A code specifying the type of expense for this tendering process. + 0..1 + Tendering Process + Expense Code + Code + Code. Type + Normal, Anticipated + + + + + + + + + BBIE + Tendering Process. Part Presentation Code. Code + A code specifying the type of presentation of tenders required, such as one lot, multiple lots or all the lots. + 0..1 + Tendering Process + Part Presentation Code + Code + Code. Type + One Lot, Multiple Lots, All Lots + + + + + + + + + BBIE + Tendering Process. Contracting System Code. Code + The code specifying the type of contracting system such as framework agreement or dynamic purchasing system. If not present, the procedure is individual, i.e. Not repetitive. + 0..1 + Tendering Process + Contracting System Code + Code + Code. Type + Framework Agreement, Dynamic Purchasing System + + + + + + + + + BBIE + Tendering Process. Submission Method Code. Code + A code specifying how the tenders should be submitted. + 0..1 + Tendering Process + Submission Method Code + Code + Code. Type + Manual, Electronically, etc. + + + + + + + + + BBIE + Tendering Process. Candidate Reduction_ Constraint. Indicator + An indicator that states the reduction of the number of operators during the negotiation or dialogue. + 0..1 + Tendering Process + Candidate Reduction + Constraint + Indicator + Indicator. Type + + + + + + + + + BBIE + Tendering Process. Government Agreement_ Constraint. Indicator + The indication of whether or not the project is constrained by the Government Procurement Agreement. + 0..1 + Tendering Process + Government Agreement + Constraint + Indicator + Indicator. Type + + + + + + + + + ASBIE + Tendering Process. Document Availability_ Period. Period + The period of completion (deadline) for getting the tender information documents. + 0..1 + Tendering Process + Document Availability + Period + Period + + + + + + + + + ASBIE + Tendering Process. Tender Submission Deadline_ Period. Period + The period of completion (deadline) for delivering (accepting) tenders. + 0..1 + Tendering Process + Tender Submission Deadline + Period + Period + + + + + + + + + ASBIE + Tendering Process. Invitation Submission_ Period. Period + The period of completion (deadline) for sending invitations to tender. + 0..1 + Tendering Process + Invitation Submission + Period + Period + + + + + + + + + ASBIE + Tendering Process. Participation Request Reception_ Period. Period + The period of completion (deadline) for delivering request for participation. + 0..1 + Tendering Process + Participation Request Reception + Period + Period + + + + + + + + + ASBIE + Tendering Process. Notice_ Document Reference. Document Reference + An reference to a previous notices. + 0..n + Tendering Process + Notice + Document Reference + Document Reference + + + + + + + + + ASBIE + Tendering Process. Additional_ Document Reference. Document Reference + An reference to additional relevant documents. + 0..n + Tendering Process + Additional + Document Reference + Document Reference + + + + + + + + + ASBIE + Tendering Process. Process Justification + Justification of the selection of the process. + 0..n + Tendering Process + Process Justification + Process Justification + + + + + + + + + ASBIE + Tendering Process. Economic Operator Short List + A set of objective criteria to create the short list of candidates. + 0..1 + Tendering Process + Economic Operator Short List + Economic Operator Short List + + + + + + + + + ASBIE + Tendering Process. Open Tender_ Event. Event + Tender Opening event. + 0..n + Tendering Process + Open Tender + Event + Event + + + + + + + + + ASBIE + Tendering Process. Auction Terms + The information about a terms for running an auction. + 0..1 + Tendering Process + Auction Terms + Auction Terms + + + + + + + + + ASBIE + Tendering Process. Framework Agreement + The information about a tendering framework agreement. + 0..1 + Tendering Process + Framework Agreement + Framework Agreement + + + + + + + + + + + ABIE + Tendering Terms. Details + General tendering terms for this tendering process + Tendering Terms + + + + + + + + + BBIE + Tendering Terms. Awarding Method Type Code. Code + A code specifying the awarding criteria in the tendering process, such as lowest price or the most economically advantageous tender. + 0..1 + Tendering Terms + Awarding Method Type Code + Code + Code. Type + Price, Multiple criteria + + + + + + + + + BBIE + Tendering Terms. Price Evaluation Code. Code + A code specifying the type of valoration of tenders required. + 0..1 + Tendering Terms + Price Evaluation Code + Code + Code. Type + Unit prices, global price + + + + + + + + + BBIE + Tendering Terms. Maximum Variant_ Quantity. Quantity + Maximum number of variants allowed. + 0..1 + Tendering Terms + Maximum Variant + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Tendering Terms. Variant_ Constraint. Indicator + It is used to indicate that variants are allowed but you do not constraint the number of variants. + 0..1 + Tendering Terms + Variant + Constraint + Indicator + Indicator. Type + + + + + + + + + BBIE + Tendering Terms. Accepted Variants_ Description. Text + Textual description to specify the things for which variants are accepted. + 0..n + Tendering Terms + Accepted Variants + Description + Text + Text. Type + + + + + + + + + BBIE + Tendering Terms. Price Revision_ Formula Description. Text + Textual description of the formula to revise the prices. + 0..n + Tendering Terms + Price Revision + Formula Description + Text + Text. Type + + + + + + + + + BBIE + Tendering Terms. Funding_ Program Code. Code + Coded description of the program that funds this tendering process such as "European","National", etc. + 0..1 + Tendering Terms + Funding + Program Code + Code + Code. Type + + + + + + + + + BBIE + Tendering Terms. Funding_ Program. Text + Textual description of the program that funds this tendering process such as |EU 6th Framework Program|. + 0..n + Tendering Terms + Funding + Program + Text + Text. Type + + + + + + + + + BBIE + Tendering Terms. Maximum_ Advertisement. Amount + The maximum monetary value of the advertisement for this tendering process. + 0..1 + Tendering Terms + Maximum + Advertisement + Amount + Amount. Type + + + + + + + + + BBIE + Tendering Terms. Note. Text + Additional information. + 0..n + Tendering Terms + Note + Text + Text. Type + + + + + + + + + BBIE + Tendering Terms. Payment Frequency Code. Code + The payment frequency for this tendering process. + 0..1 + Tendering Terms + Payment Frequency Code + Code + Code. Type + + + + + + + + + BBIE + Tendering Terms. Economic Operator Registry_ URI. Identifier + Uniform Resource Identifier (URI) communication information to find electronic registry applicable to this tendering process. + 0..1 + Tendering Terms + Economic Operator Registry + URI + Identifier + Identifier. Type + Web site + + + + + + + + + BBIE + Tendering Terms. Penalty Clauses. Text + Textual description of the penalty clauses. + 0..n + Tendering Terms + Penalty Clauses + Text + Text. Type + + + + + + + + + BBIE + Tendering Terms. Required Curricula. Indicator + It is used to indicate if the curricula is required or not. + 0..1 + Tendering Terms + Required Curricula + Indicator + Indicator. Type + + + + + + + + + ASBIE + Tendering Terms. Required_ Financial Guarantee. Financial Guarantee + The Information about the bond guarantee of a tender or bid submitter to actually enter into a contract if they are the successful bidder. + 0..n + Tendering Terms + Required + Financial Guarantee + Financial Guarantee + + + + + + + + + ASBIE + Tendering Terms. Procurement Legislation_ Document Reference. Document Reference + References to information to find procurement legislation applicable to this tendering process. + 0..1 + Tendering Terms + Procurement Legislation + Document Reference + Document Reference + + + + + + + + + ASBIE + Tendering Terms. Fiscal Legislation_ Document Reference. Document Reference + References to information to find fiscal legislation applicable to this tendering process. + 0..1 + Tendering Terms + Fiscal Legislation + Document Reference + Document Reference + + + + + + + + + ASBIE + Tendering Terms. Environmental Legislation_ Document Reference. Document Reference + References to information to find environmental legislation applicable to this tendering process. + 0..1 + Tendering Terms + Environmental Legislation + Document Reference + Document Reference + + + + + + + + + ASBIE + Tendering Terms. Employment Legislation_ Document Reference. Document Reference + References to information to find employment legislation applicable to this tendering process. + 0..1 + Tendering Terms + Employment Legislation + Document Reference + Document Reference + + + + + + + + + ASBIE + Tendering Terms. Contractual_ Document Reference. Document Reference + References to documents that will be part of the future contract. + 0..n + Tendering Terms + Contractual + Document Reference + Document Reference + + + + + + + + + ASBIE + Tendering Terms. Call For Tender_ Document Reference. Document Reference + References to the call for tender document. + 0..1 + Tendering Terms + Call For Tender + Document Reference + Document Reference + + + + + + + + + ASBIE + Tendering Terms. Warranty Validity_ Period. Period + Association with a period to indicate the guarantee for the work, service or goods. + 0..1 + Tendering Terms + Warranty Validity + Period + Period + + + + + + + + + ASBIE + Tendering Terms. Payment Terms + Payment terms for this tendering process. + 0..n + Tendering Terms + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Tendering Terms. Tenderer Qualification Request + Required qualification for a tenderer in this tendering process. + 0..1 + Tendering Terms + Tenderer Qualification Request + Tenderer Qualification Request + + + + + + + + + ASBIE + Tendering Terms. Allowed_ Subcontract Terms. Subcontract Terms + Allowed subcontract terms for this tendering process. + 0..n + Tendering Terms + Allowed + Subcontract Terms + Subcontract Terms + + + + + + + + + ASBIE + Tendering Terms. Tender Preparation + Requirements to prepare a tender for this tendering process. + 0..n + Tendering Terms + Tender Preparation + Tender Preparation + Curricula required, Experience required, .... + + + + + + + + + ASBIE + Tendering Terms. Contract Execution Requirement + Specified requirements for the execution of the contract when this tendering process is awarded. + 0..n + Tendering Terms + Contract Execution Requirement + Contract Execution Requirement + + + + + + + + + ASBIE + Tendering Terms. Awarding Terms + Awarding terms for awarding this project in this tendering process. + 0..1 + Tendering Terms + Awarding Terms + Awarding Terms + + + + + + + + + ASBIE + Tendering Terms. Additional Information_ Party. Party + A party that has additional information about this tendering process. + 0..1 + Tendering Terms + Additional Information + Party + Party + + + + + + + + + ASBIE + Tendering Terms. Document Provider_ Party. Party + A party that has the contract documents for this tendering process. + 0..1 + Tendering Terms + Document Provider + Party + Party + + + + + + + + + ASBIE + Tendering Terms. Tender Recipient_ Party. Party + A party to whom tenderers should present their tenders. + 0..1 + Tendering Terms + Tender Recipient + Party + Party + + + + + + + + + ASBIE + Tendering Terms. Contract Responsible_ Party. Party + A party responsible for the execution of the contract. + 0..1 + Tendering Terms + Contract Responsible + Party + Party + + + + + + + + + ASBIE + Tendering Terms. Tender Evaluation_ Party. Party + A party responsible for the evaluation of the received tenders in the contracting authority. + 0..n + Tendering Terms + Tender Evaluation + Party + Party + + + + + + + + + ASBIE + Tendering Terms. Tender Validity_ Period. Period + The period of completion (deadline) for the validity of tenders. + 0..1 + Tendering Terms + Tender Validity + Period + Period + + + + + + + + + ASBIE + Tendering Terms. Contract Acceptance_ Period. Period + The period of time the Contracting Authority has to accept the contract. + 0..1 + Tendering Terms + Contract Acceptance + Period + Period + + + + + + + + + ASBIE + Tendering Terms. Appeal Terms + Information about the terms to present an appeal. + 0..1 + Tendering Terms + Appeal Terms + Appeal Terms + + + + + + + + + ASBIE + Tendering Terms. Language + Default languages specified for this tendering process. + 0..n + Tendering Terms + Language + Language + + + + + + + + + ASBIE + Tendering Terms. Budget Account Line + Budget Account lines for this tendering process + 0..n + Tendering Terms + Budget Account Line + Budget Account Line + + + + + + + + + + + ABIE + Trade Financing. Details + Information about the Financing instrument supporting this Trade or part of it (see instalments). + Trade Financing + + + + + + + + + BBIE + Trade Financing. Identifier + An identifier for the Trade Financing. + 0..1 + Trade Financing + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Trade Financing. Financing Instrument Code. Code + The Financing Instrument adopted into this Trade + 0..1 + Trade Financing + Financing Instrument Code + Code + Code. Type + Factoring , Invoice Financing , Pre-shipment Financing , Letter of Credit , Irrevocable Letter of Credit . + + + + + + + + + BBIE + Trade Financing. Clause Code. Code + Contract clauses, expressed as code. + 0..n + Trade Financing + Clause Code + Code + Code. Type + + + + + + + + + BBIE + Trade Financing. Clause. Text + Contract clauses, expressed as text. + 0..n + Trade Financing + Clause + Text + Text. Type + + + + + + + + + ASBIE + Trade Financing. Contract_ Document Reference. Document Reference + An associative reference to Contract Document. + 0..1 + Trade Financing + Contract + Document Reference + Document Reference + + + + + + + + + ASBIE + Trade Financing. Document Reference + An association to Document Reference + 0..n + Trade Financing + Document Reference + Document Reference + + + + + + + + + ASBIE + Trade Financing. Financing_ Party. Party + An association to a Financing Party (could be a Bank or other enabled Party). + 1 + Trade Financing + Financing + Party + Party + + + + + + + + + ASBIE + Trade Financing. Financing_ Financial Account. Financial Account + An association to an Internal bank account used by the Bank or its First Agent to manage the line of credit granted to Financing Requestor + 0..1 + Trade Financing + Financing + Financial Account + Financial Account + + + + + + + + + + + ABIE + Trading Terms. Details + Information about the terms of a trade agreement. + Trading Terms + + + + + + + + + BBIE + Trading Terms. Information. Text + The terms in text. + 0..n + Trading Terms + Information + Text + Text. Type + Unless credit terms have been expressly agreed by Dell, payment for the products or services shall be made in full before physical delivery of products or services. Customer shall pay for all shipping and handling charges. + + + + + + + + + BBIE + Trading Terms. Reference. Text + A reference to the terms. + 0..1 + Trading Terms + Reference + Text + Text. Type + http://www1.ap.dell.com/content/topics/topic.aspx/ap/policy/en/au/sales_terms_au?c=au&l=en&s=gen + + + + + + + + + ASBIE + Trading Terms. Applicable_ Address. Address + An association to the address at which the trading terms apply. + 0..1 + Trading Terms + Applicable + Address + Address + + + + + + + + + + + ABIE + Transaction Conditions. Details + Information about purchasing, sales, or payment conditions. + Transaction Conditions + Payment Conditions, Sales Conditions + + + + + + + + + BBIE + Transaction Conditions. Identifier + Identifies conditions of the transaction, typically Purchase/Sales Conditions. + 0..1 + Transaction Conditions + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Transaction Conditions. Action Code. Code + An action relating to sales or payment conditions, expressed as a code. + 0..1 + Transaction Conditions + Action Code + Code + Code. Type + + + + + + + + + BBIE + Transaction Conditions. Description. Text + The description of the transaction conditions. + 0..n + Transaction Conditions + Description + Text + Text. Type + + + + + + + + + ASBIE + Transaction Conditions. Document Reference + An association to Document Reference. + 0..n + Transaction Conditions + Document Reference + Document Reference + + + + + + + + + + + ABIE + Transport Equipment. Details + Information about Transport Equipment; a piece of equipment used to transport goods. + Transport Equipment + Shipping Container, Sea Container, Rail Wagon, Pallet, Trailer, Unit Load Device, ULD + + + + + + + + + BBIE + Transport Equipment. Identifier + Identifies the transport equipment. + 0..1 + Transport Equipment + Identifier + Identifier + Identifier. Type + OCLU 1234567 + + + + + + + + + BBIE + Transport Equipment. Referenced_ Consignment Identifier. Identifier + An identifier for the referenced consignment. + 0..1 + Transport Equipment + Referenced + Consignment Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Transport Equipment. Transport Equipment Type Code. Code + Identifies the type of the transport equipment. + 0..1 + Transport Equipment + Transport Equipment Type Code + Code + Transport Equipment Type_ Code. Type + + + + + + + + + BBIE + Transport Equipment. Provider Type Code. Code + Identifies the type of provider of the transport equipment. + 0..1 + Transport Equipment + Provider Type Code + Code + Code. Type + + + + + + + + + BBIE + Transport Equipment. Owner Type Code. Code + Identifies the type of owner of a piece of transport equipment. + 0..1 + Transport Equipment + Owner Type Code + Code + Code. Type + + + + + + + + + BBIE + Transport Equipment. Size Type Code. Code + The size and type of a piece of transport equipment, expressed as a code. When the transport equipment is a shipping container, it is recommended to use ContainerSizeTypeCode for validation. + 0..1 + Transport Equipment + Size Type Code + Code + Code. Type + Container Size Type Code + + + + + + + + + BBIE + Transport Equipment. Disposition Code. Code + The current disposition of the transport equipment, expressed as a code. + 0..1 + Transport Equipment + Disposition Code + Code + Code. Type + Status + + + + + + + + + BBIE + Transport Equipment. Fullness Indication Code. Code + A code indicating whether a piece of transport equipment is full, partially full, or empty. + 0..1 + Transport Equipment + Fullness Indication Code + Code + Code. Type + + + + + + + + + BBIE + Transport Equipment. Refrigeration On_ Indicator. Indicator + Indicates whether the transport equipment s refrigeration is on (true) or off (false). + 0..1 + Transport Equipment + Refrigeration On + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Transport Equipment. Information. Text + Additional information about the transport equipment. + 0..1 + Transport Equipment + Information + Text + Text. Type + + + + + + + + + BBIE + Transport Equipment. Returnability_ Indicator. Indicator + Indicates whether a particular item of transport equipment is returnable. + 0..1 + Transport Equipment + Returnability + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Transport Equipment. Legal Status_ Indicator. Indicator + Legal status of the transport equipment with respect to the Container Convention code. + 0..1 + Transport Equipment + Legal Status + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Transport Equipment. Air Flow Percent. Percent + The percent of the airflow within the transport equipment. + 0..1 + Transport Equipment + Air Flow Percent + Percent + Percent. Type + + + + + + + + + BBIE + Transport Equipment. Humidity Percent. Percent + The percent humidity within the transport equipment. + 0..1 + Transport Equipment + Humidity Percent + Percent + Percent. Type + + + + + + + + + BBIE + Transport Equipment. Animal Food_ Approved Indicator. Indicator + The indication of whether or not the transport equipment is approved for animal food. + 0..1 + Transport Equipment + Animal Food + Approved Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Transport Equipment. Human Food_ Approved Indicator. Indicator + The indication of whether or not the transport equipment is approved for human food. + 0..1 + Transport Equipment + Human Food + Approved Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Transport Equipment. Dangerous Goods_ Approved Indicator. Indicator + The indication that the transport equipment is approved for dangerous goods. + 0..1 + Transport Equipment + Dangerous Goods + Approved Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Transport Equipment. Refrigerated_ Indicator. Indicator + The indication that the transport equipment is refrigerated. + 0..1 + Transport Equipment + Refrigerated + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Transport Equipment. Characteristics. Text + Characteristics of the transport equipment expresssed as text. + 0..1 + Transport Equipment + Characteristics + Text + Text. Type + + + + + + + + + BBIE + Transport Equipment. Damage_ Remarks. Text + Damage remarks expressed as text. + 0..1 + Transport Equipment + Damage + Remarks + Text + Text. Type + + + + + + + + + BBIE + Transport Equipment. Description. Text + Description of the transprort equipment expressed as text. + 0..1 + Transport Equipment + Description + Text + Text. Type + + + + + + + + + BBIE + Transport Equipment. Special_ Transport Requirments. Text + Special transport requirements expressed as text. + 0..1 + Transport Equipment + Special + Transport Requirments + Text + Text. Type + + + + + + + + + BBIE + Transport Equipment. Gross_ Weight. Measure + The measure of the gross weight for this transport equipment. + 0..1 + Transport Equipment + Gross + Weight + Measure + Measure. Type + + + + + + + + + BBIE + Transport Equipment. Gross_ Volume. Measure + The measure of the gross volume for this transport equipment. + 0..1 + Transport Equipment + Gross + Volume + Measure + Measure. Type + + + + + + + + + BBIE + Transport Equipment. Tare_ Weight. Measure + The measure of the tare weight for this transport equipment. + 0..1 + Transport Equipment + Tare + Weight + Measure + Measure. Type + + + + + + + + + BBIE + Transport Equipment. Tracking Device Code. Code + The code specifiying the tracking device for this tranpsort equipment. + 0..1 + Transport Equipment + Tracking Device Code + Code + Code. Type + + + + + + + + + BBIE + Transport Equipment. Power. Indicator + Indicates whether a Transport Equipment has power supply. + 0..1 + Transport Equipment + Power + Indicator + Indicator. Type + + + + + + + + + BBIE + Transport Equipment. Trace_ Identifier. Identifier + An identifier used for tracing the tranpsort equipment such as the EPC number used in RFID. + 0..1 + Transport Equipment + Trace + Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Transport Equipment. Measurement_ Dimension. Dimension + An association to Dimension. + 0..n + Transport Equipment + Measurement + Dimension + Dimension + + + + + + + + + ASBIE + Transport Equipment. Transport Equipment Seal + An association to Transport Equipment Seal. + 0..n + Transport Equipment + Transport Equipment Seal + Transport Equipment Seal + + + + + + + + + ASBIE + Transport Equipment. Minimum_ Temperature. Temperature + The minimum required operating temperature for the container (reefer). + 0..1 + Transport Equipment + Minimum + Temperature + Temperature + + + + + + + + + ASBIE + Transport Equipment. Maximum_ Temperature. Temperature + The maximum required operating temperature for the container (reefer). + 0..1 + Transport Equipment + Maximum + Temperature + Temperature + + + + + + + + + ASBIE + Transport Equipment. Provider_ Party. Party + The party that provides the transport equipment. + 0..1 + Transport Equipment + Provider + Party + Party + + + + + + + + + ASBIE + Transport Equipment. Loading Proof_ Party. Party + The authorized party responsible for certifying that the goods were loaded into the transport equipment. + 0..1 + Transport Equipment + Loading Proof + Party + Party + + + + + + + + + ASBIE + Transport Equipment. Supplier Party + The supplier party associated to this transport equipment. + 0..1 + Transport Equipment + Supplier Party + Supplier Party + + + + + + + + + ASBIE + Transport Equipment. Owner_ Party. Party + The owner party associated to this transport equipment. + 0..1 + Transport Equipment + Owner + Party + Party + + + + + + + + + ASBIE + Transport Equipment. Operating_ Party. Party + The operating party associated to this transport equipment. + 0..1 + Transport Equipment + Operating + Party + Party + + + + + + + + + ASBIE + Transport Equipment. Loading_ Location. Location + Identifies the location where the goods are loaded into the transport equipment. + 0..1 + Transport Equipment + Loading + Location + Location + + + + + + + + + ASBIE + Transport Equipment. Unloading_ Location. Location + The undloading location associated to this transprt equipment. + 0..1 + Transport Equipment + Unloading + Location + Location + + + + + + + + + ASBIE + Transport Equipment. Storage_ Location. Location + The storage location associated to this transport equipment. + 0..1 + Transport Equipment + Storage + Location + Location + + + + + + + + + ASBIE + Transport Equipment. Positioning_ Transport Event. Transport Event + The prositioning transport event associated to this transport equipment. + 0..n + Transport Equipment + Positioning + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Equipment. Quarantine_ Transport Event. Transport Event + The quarantine transport event associated to this transport equipment. + 0..n + Transport Equipment + Quarantine + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Equipment. Delivery_ Transport Event. Transport Event + The delivery transport event associated to this transport equipment. + 0..n + Transport Equipment + Delivery + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Equipment. Pickup_ Transport Event. Transport Event + The pickup transport event associated to this transport equipment. + 0..n + Transport Equipment + Pickup + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Equipment. Handling_ Transport Event. Transport Event + The handling transport event associated to this transport equipment. + 0..n + Transport Equipment + Handling + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Equipment. Loading_ Transport Event. Transport Event + The loading transport event associated to this transport equipment. + 0..n + Transport Equipment + Loading + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Equipment. Transport Event + The transport event associated to this transport equipment. + 0..n + Transport Equipment + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Equipment. Applicable_ Transport Means. Transport Means + The applicable transport means associated to this transport equipment. + 0..1 + Transport Equipment + Applicable + Transport Means + Transport Means + + + + + + + + + ASBIE + Transport Equipment. Haulage_ Trading Terms. Trading Terms + The haulage trading terms associated to this transprort equipment. + 0..n + Transport Equipment + Haulage + Trading Terms + Trading Terms + + + + + + + + + ASBIE + Transport Equipment. Hazardous Goods Transit + The hazardous goods transit associated to this transport equipment. + 0..n + Transport Equipment + Hazardous Goods Transit + Hazardous Goods Transit + + + + + + + + + ASBIE + Transport Equipment. Packaged_ Transport Handling Unit. Transport Handling Unit + The packing transport handling unit associated to this transport equipment. + 0..n + Transport Equipment + Packaged + Transport Handling Unit + Transport Handling Unit + + + + + + + + + ASBIE + Transport Equipment. Service_ Allowance Charge. Allowance Charge + The service allowance charge associated to this transport equipment. + 0..n + Transport Equipment + Service + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Transport Equipment. Freight_ Allowance Charge. Allowance Charge + The freight allowance charge associated to this transport equipment. + 0..n + Transport Equipment + Freight + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Transport Equipment. Attached_ Transport Equipment. Transport Equipment + The attached transport equipment associated to this transport equipment. + 0..n + Transport Equipment + Attached + Transport Equipment + Transport Equipment + + + + + + + + + ASBIE + Transport Equipment. Goods Item + An association to Goods Item. + 0..n + Transport Equipment + Goods Item + Goods Item + + + + + + + + + ASBIE + Transport Equipment. Delivery + An association to Delivery. + 0..1 + Transport Equipment + Delivery + Delivery + + + + + + + + + ASBIE + Transport Equipment. Contained In_ Transport Equipment. Transport Equipment + A transport equipment may contain other transport equipments. + 0..n + Transport Equipment + Contained In + Transport Equipment + Transport Equipment + e.g. pallets inside containers + + + + + + + + + ASBIE + Transport Equipment. Pickup + An association to Pickup. + 0..1 + Transport Equipment + Pickup + Pickup + + + + + + + + + ASBIE + Transport Equipment. Despatch + An association to Despatch. + 0..1 + Transport Equipment + Despatch + Despatch + + + + + + + + + ASBIE + Transport Equipment. Shipment_ Document Reference. Document Reference + A reference to any shipment documents this transport equipment is associated with. + 0..1 + Transport Equipment + Shipment + Document Reference + Document Reference + + + + + + + + + + + ABIE + Transport Equipment Seal. Details + Information about a transport equipment seal (a security device attached to the doors of a shipping container). + Transport Equipment Seal + Container Seal + + + + + + + + + BBIE + Transport Equipment Seal. Identifier + Identifies the seal. + 1 + Transport Equipment Seal + Identifier + Identifier + Identifier. Type + ACS1234 + + + + + + + + + BBIE + Transport Equipment Seal. Seal Issuer Type Code. Code + The type of party that issues and is responsible for a seal, expressed as a code. + 0..1 + Transport Equipment Seal + Seal Issuer Type Code + Code + Code. Type + + + + + + + + + BBIE + Transport Equipment Seal. Condition. Text + Information about the condition of a seal. + 0..1 + Transport Equipment Seal + Condition + Text + Text. Type + + + + + + + + + BBIE + Transport Equipment Seal. Seal Status Code. Code + The status of a seal, expressed as a code. + 0..1 + Transport Equipment Seal + Seal Status Code + Code + Code. Type + + + + + + + + + BBIE + Transport Equipment Seal. Sealing Party Type. Text + Textual description of the role of a sealing party. + 0..1 + Transport Equipment Seal + Sealing Party Type + Text + Text. Type + Sealing Party + + + + + + + + + + + ABIE + Transport Event. Details + A significant occurrence or happening related to the transportation of goods. + Transport Event + + + + + + + + + BBIE + Transport Event. Identification. Identifier + An identifier for the event. + 0..1 + Transport Event + Identification + Identifier + Identifier. Type + + + + + + + + + BBIE + Transport Event. Occurrence Date. Date + The date of an occurrence of the event. + 0..1 + Transport Event + Occurrence Date + Date + Date. Type + + + + + + + + + BBIE + Transport Event. Occurrence Time. Time + The time of an occurrence of the event. + 0..1 + Transport Event + Occurrence Time + Time + Time. Type + + + + + + + + + BBIE + Transport Event. Transport Event Type Code. Code + A code specifying the type of event. + 0..1 + Transport Event + Transport Event Type Code + Code + Code. Type + + + + + + + + + BBIE + Transport Event. Description. Text + A textual description of the event. + 0..1 + Transport Event + Description + Text + Text. Type + + + + + + + + + BBIE + Transport Event. Completion_ Indicator. Indicator + Indicates if this event is completed. + 0..1 + Transport Event + Completion + Indicator + Indicator + Indicator. Type + + + + + + + + + ASBIE + Transport Event. Reported_ Shipment. Shipment + Information about the separately identifiable collection of goods items (available to be) transported from one consignor to one consignee via one or more modes of transport. + 0..1 + Transport Event + Reported + Shipment + Shipment + + + + + + + + + ASBIE + Transport Event. Current_ Status. Status + The status of the event. + 1..n + Transport Event + Current + Status + Status + + + + + + + + + ASBIE + Transport Event. Contact + Any contacts for the event. + 0..n + Transport Event + Contact + Contact + + + + + + + + + ASBIE + Transport Event. Location + + 0..1 + Transport Event + Unqualified + Location + Location + + + + + + + + + + + ABIE + Transport Execution Terms. Details + Information about terms related to the Transport Execution Plan + Transport Execution Terms + + + + + + + + + BBIE + Transport Execution Terms. Transport User_ Special Terms. Text + Special terms from the Transport User + 0..n + Transport Execution Terms + Transport User + Special Terms + Text + Text. Type + + + + + + + + + BBIE + Transport Execution Terms. Transport Service Provider_ Special Terms. Text + Special terms from the Transport Service Provider + 0..n + Transport Execution Terms + Transport Service Provider + Special Terms + Text + Text. Type + + + + + + + + + BBIE + Transport Execution Terms. Change Conditions. Text + Conditions related to the ability to change the terms for the Transport Execution Plan + 0..n + Transport Execution Terms + Change Conditions + Text + Text. Type + + + + + + + + + ASBIE + Transport Execution Terms. Payment Terms + An association to Payment Terms. + 1 + Transport Execution Terms + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Transport Execution Terms. Delivery Terms + Delivery Terms related to the transport service. For example Incoterms. + 0..n + Transport Execution Terms + Delivery Terms + Delivery Terms + + + + + + + + + ASBIE + Transport Execution Terms. Bonus_ Payment Terms. Payment Terms + Terms related to bonuses which may apply. + 0..1 + Transport Execution Terms + Bonus + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Transport Execution Terms. Commission_ Payment Terms. Payment Terms + Payment Terms related to commission that may apply in the Transport Execution Plan + 0..1 + Transport Execution Terms + Commission + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Transport Execution Terms. Penalty_ Payment Terms. Payment Terms + Terms related to penalties which may apply + 0..1 + Transport Execution Terms + Penalty + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Transport Execution Terms. Environmental Emission + Environmental impact or footprint of this transport service. + 0..n + Transport Execution Terms + Environmental Emission + Environmental Emission + + + + + + + + + ASBIE + Transport Execution Terms. Notification Requirement + Notification Requirements related to the transport service. For example that the Transport User should be notified when goods ready for pickup. + 0..n + Transport Execution Terms + Notification Requirement + Notification Requirement + + + + + + + + + + + ABIE + Transport Handling Unit. Details + A uniquely identifiable physical unit consisting of one or more packages (not necessarily containing the same articles) for enabling physical handling during the transport process. + Transport Handling Unit + Logistics Unit, Handling Unit, THU + + + + + + + + + BBIE + Transport Handling Unit. Identifier + Identifies the transport handling unit. + 0..1 + Transport Handling Unit + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Transport Handling Unit. Transport Handling Unit Type Code. Code + The type of transport handling unit, expressed as a code. + 0..1 + Transport Handling Unit + Transport Handling Unit Type Code + Code + Code. Type + + + + + + + + + BBIE + Transport Handling Unit. Handling Code. Code + The handling required for a shipment, expressed as a code. + 0..1 + Transport Handling Unit + Handling Code + Code + Code. Type + Special Handling + + + + + + + + + BBIE + Transport Handling Unit. Handling_ Instructions. Text + Free-form text describing handling instructions for a shipment. + 0..1 + Transport Handling Unit + Handling + Instructions + Text + Text. Type + + + + + + + + + BBIE + Transport Handling Unit. Hazardous Risk_ Indicator. Indicator + Indicates whether the shipment contains hazardous materials. + 0..1 + Transport Handling Unit + Hazardous Risk + Indicator + Indicator + Indicator. Type + Default is negative + + + + + + + + + BBIE + Transport Handling Unit. Total_ Goods Item Quantity. Quantity + The total number of goods items in the transport handling unit. + 0..1 + Transport Handling Unit + Total + Goods Item Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Transport Handling Unit. Total_ Package Quantity. Quantity + The total number of packages in the transport handling unit. + 0..1 + Transport Handling Unit + Total + Package Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Transport Handling Unit. Damage_ Remarks. Text + Description of a type of damage. + 0..n + Transport Handling Unit + Damage + Remarks + Text + Text. Type + + + + + + + + + BBIE + Transport Handling Unit. Shipping_ Marks. Text + Free-form description of the marks and numbers on a transport unit or package. + 0..n + Transport Handling Unit + Shipping + Marks + Text + Text. Type + Marks and Numbers, Shipping Marks + + + + + + + + + ASBIE + Transport Handling Unit. Handling Unit_ Despatch Line. Despatch Line + An association to Handling Unit Despatch Line. + 0..n + Transport Handling Unit + Handling Unit + Despatch Line + Despatch Line + + + + + + + + + ASBIE + Transport Handling Unit. Actual_ Package. Package + An association to Actual Package. + 0..n + Transport Handling Unit + Actual + Package + Package + + + + + + + + + ASBIE + Transport Handling Unit. Received Handling Unit_ Receipt Line. Receipt Line + An association to Receipt Line. + 0..n + Transport Handling Unit + Received Handling Unit + Receipt Line + Receipt Line + + + + + + + + + ASBIE + Transport Handling Unit. Transport Equipment + An association to Transport Equipment. + 0..n + Transport Handling Unit + Transport Equipment + Transport Equipment + + + + + + + + + ASBIE + Transport Handling Unit. Transport Means + An association to Transport Means carrying this Transport Handling Unit. + 0..n + Transport Handling Unit + Transport Means + Transport Means + + + + + + + + + ASBIE + Transport Handling Unit. Hazardous Goods Transit + An association to information about the transportation of hazardous goods. + 0..n + Transport Handling Unit + Hazardous Goods Transit + Hazardous Goods Transit + + + + + + + + + ASBIE + Transport Handling Unit. Measurement_ Dimension. Dimension + An association to Dimension. + 0..n + Transport Handling Unit + Measurement + Dimension + Dimension + + + + + + + + + ASBIE + Transport Handling Unit. Minimum_ Temperature. Temperature + The minimum required operating temperature. + 0..1 + Transport Handling Unit + Minimum + Temperature + Temperature + + + + + + + + + ASBIE + Transport Handling Unit. Maximum_ Temperature. Temperature + The maximum required operating temperature. + 0..1 + Transport Handling Unit + Maximum + Temperature + Temperature + + + + + + + + + ASBIE + Transport Handling Unit. Goods Item + The contained goods item associated to this transport handlng unit. + 0..n + Transport Handling Unit + Goods Item + Goods Item + + + + + + + + + ASBIE + Transport Handling Unit. Floor Space Measurement_ Dimension. Dimension + The floor space measurement dimension associated to this transport handling unit. + 0..1 + Transport Handling Unit + Floor Space Measurement + Dimension + Dimension + + + + + + + + + ASBIE + Transport Handling Unit. Pallet Space Measurement_ Dimension. Dimension + The pallet space measurement dimension associated to this transport handling unit. + 0..1 + Transport Handling Unit + Pallet Space Measurement + Dimension + Dimension + + + + + + + + + ASBIE + Transport Handling Unit. Shipment_ Document Reference. Document Reference + A reference to any shipment documents this transport handling unit is associated with. + 0..n + Transport Handling Unit + Shipment + Document Reference + Document Reference + + + + + + + + + ASBIE + Transport Handling Unit. Status + The status of a Transport Handling Unit. + 0..n + Transport Handling Unit + Status + Status + + + + + + + + + + + ABIE + Transport Location. Details + A location specifically used in transport. + Transport Location + + + + + + + + + ASBIE + Transport Location. Planned Departure_ Period. Period + The planned departure from this transport location. During the communication of the Transport Execution Plan this may be revised. + 0..1 + Transport Location + Planned Departure + Period + Period + + + + + + + + + ASBIE + Transport Location. Planned Arrival_ Period. Period + The planned arrival at this transport location. During the communication of the Transport Execution Plan this may be revised. + 0..1 + Transport Location + Planned Arrival + Period + Period + + + + + + + + + ASBIE + Transport Location. Estimated Departure_ Period. Period + An estimate from the Transport Service Provider for when the transport will depart from this transport location. + 0..1 + Transport Location + Estimated Departure + Period + Period + + + + + + + + + ASBIE + Transport Location. Estimated Arrival_ Period. Period + An estimate from the Transport Service Provider for when the transport will arrive at this transport location. + 0..1 + Transport Location + Estimated Arrival + Period + Period + + + + + + + + + ASBIE + Transport Location. Actual Departure_ Transport Event. Transport Event + When the departure actually took place from this transport location. + 0..1 + Transport Location + Actual Departure + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Location. Transport Event + When the arrival actually took place at this transport location. + 0..1 + Transport Location + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Location. Location + Information about a location. + 1 + Transport Location + Location + Location + + + + + + + + + + + ABIE + Transport Means. Details + The particular vehicle used for the transport of goods or persons. + Transport Means + Conveyance + + + + + + + + + BBIE + Transport Means. Journey Identifier. Identifier + An identifier assigned to a regularly scheduled service of a means of transport. + 0..1 + Transport Means + Journey Identifier + Identifier + Identifier. Type + Voyage Number, Scheduled Conveyance Identifier (WCO ID 205), Flight Number + + + + + + + + + BBIE + Transport Means. Registration_ Nationality Identifier. Identifier + Formal identification of the country in which a means of transport is registered. + 0..1 + Transport Means + Registration + Nationality Identifier + Identifier + Identifier. Type + Nationality of Means of Transport (WCO 175, 178 and 179) + LIB + + + + + + + + + BBIE + Transport Means. Registration_ Nationality. Text + Name of the country in which a means of transport is registered. + 0..n + Transport Means + Registration + Nationality + Text + Text. Type + Flag of Vessel, Nationality of Ship + Liberia + + + + + + + + + BBIE + Transport Means. Direction Code. Code + The direction of the transport means. + 0..1 + Transport Means + Direction Code + Code + Code. Type + Transit Direction + North , East + + + + + + + + + BBIE + Transport Means. Transport Means Type Code. Code + A code indicating what kind of transport means this is. E.g. Vessel, Truck, etc. + 0..1 + Transport Means + Transport Means Type Code + Code + Code. Type + + + + + + + + + BBIE + Transport Means. Trade Service Code. Code + Information showing the regular service provided by that carrier. + 0..1 + Transport Means + Trade Service Code + Code + Code. Type + + + + + + + + + ASBIE + Transport Means. Stowage + Association to a location on board a means of transport where specified goods or transport equipment have been or are to be stowed. + 0..1 + Transport Means + Stowage + Stowage + + + + + + + + + ASBIE + Transport Means. Air Transport + Association to identify an aircraft. + 0..1 + Transport Means + Air Transport + Air Transport + + + + + + + + + ASBIE + Transport Means. Road Transport + Association to identify a road vehicle. + 0..1 + Transport Means + Road Transport + Road Transport + + + + + + + + + ASBIE + Transport Means. Rail Transport + Association to identify a train. + 0..1 + Transport Means + Rail Transport + Rail Transport + + + + + + + + + ASBIE + Transport Means. Maritime Transport + Association to identify a ship. + 0..1 + Transport Means + Maritime Transport + Maritime Transport + + + + + + + + + ASBIE + Transport Means. Owner_ Party. Party + Association to the party owning the means of transport. + 0..1 + Transport Means + Owner + Party + Party + + + + + + + + + ASBIE + Transport Means. Operator_ Party. Party + The operator(s) of the Transport Means. + 0..n + Transport Means + Operator + Party + Party + + + + + + + + + + + ABIE + Transport Schedule. Details + to be done + Transport Schedule + + + + + + + + + BBIE + Transport Schedule. Sequence Number. Identifier + A sequence number to differentiate the transport schedule statuses. + 1 + Transport Schedule + Sequence Number + Identifier + Identifier. Type + + + + + + + + + BBIE + Transport Schedule. Reference Date. Date + The reference date for the transport schedule status. + 1 + Transport Schedule + Reference Date + Date + Date. Type + + + + + + + + + BBIE + Transport Schedule. Reference Time. Time + The reference time for the transport schedule status. + 1 + Transport Schedule + Reference Time + Time + Time. Type + + + + + + + + + BBIE + Transport Schedule. Reliability Percent. Percent + Indicates the reliability of the transport schedule status. + 0..1 + Transport Schedule + Reliability Percent + Percent + Percent. Type + + + + + + + + + BBIE + Transport Schedule. Remarks. Text + Textual remarks related to the transport schedule status. + 0..n + Transport Schedule + Remarks + Text + Text. Type + + + + + + + + + ASBIE + Transport Schedule. Status_ Location. Location + The location where the event leading to a status is read. + 1 + Transport Schedule + Status + Location + Location + + + + + + + + + ASBIE + Transport Schedule. Estimated Arrival_ Period. Period + Specifies the estimated arrival at a location. + 0..1 + Transport Schedule + Estimated Arrival + Period + Period + + + + + + + + + ASBIE + Transport Schedule. Estimated Departure_ Period. Period + Specifies the estimated departure from a location. + 0..1 + Transport Schedule + Estimated Departure + Period + Period + + + + + + + + + ASBIE + Transport Schedule. Actual Arrival_ Transport Event. Transport Event + Describes the actual arrival at a location. + 0..1 + Transport Schedule + Actual Arrival + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Schedule. Actual Departure_ Transport Event. Transport Event + Describes the actual departure from a location. + 0..1 + Transport Schedule + Actual Departure + Transport Event + Transport Event + + + + + + + + + + + ABIE + Transport Status. Details + Status of individual transport items + Transport Status + + + + + + + + + BBIE + Transport Status. Time Deviation. Indicator + Indicates whether the status reports of a time deviation. + 1 + Transport Status + Time Deviation + Indicator + Indicator. Type + + + + + + + + + BBIE + Transport Status. Condition Deviation. Indicator + Indicates whether the status reports of a condition deviation. + 1 + Transport Status + Condition Deviation + Indicator + Indicator. Type + + + + + + + + + ASBIE + Transport Status. Updated_ Delivery. Delivery + Specifies an updated delivery time for the transport items in question. + 0..1 + Transport Status + Updated + Delivery + Delivery + + + + + + + + + ASBIE + Transport Status. Updated_ Despatch. Despatch + Specifies an updated despatch time for the transport items in question. + 0..1 + Transport Status + Updated + Despatch + Despatch + + + + + + + + + ASBIE + Transport Status. Status_ Location. Location + The location where the event leading to a status is read. + 0..1 + Transport Status + Status + Location + Location + + + + + + + + + ASBIE + Transport Status. Referenced_ Transport Handling Unit. Transport Handling Unit + A reference to a transport handling unit being transported. + 0..n + Transport Status + Referenced + Transport Handling Unit + Transport Handling Unit + + + + + + + + + + + ABIE + Transportation Segment. Details + A Transportation Segment is defined as one segment or leg in a transport service + Transportation Segment + + + + + + + + + BBIE + Transportation Segment. Sequence Number. Identifier + Sequence number differentiating one Transportation Segment from another + 1 + Transportation Segment + Sequence Number + Identifier + Identifier. Type + + + + + + + + + BBIE + Transportation Segment. Transport Execution Plan Reference. Identifier + A reference to the identifier of a Transport Execution Plan document. + 1 + Transportation Segment + Transport Execution Plan Reference + Identifier + Identifier. Type + + + + + + + + + BBIE + Transportation Segment. Transport Mode Code. Code + The method of transport used for a Transportation Segment. + 0..1 + Transportation Segment + Transport Mode Code + Code + Transport Mode_ Code. Type + + + + + + + + + BBIE + Transportation Segment. Transport Means Type Code. Code + Defines the type of transport means being used at this Transportation Segment. + 0..1 + Transportation Segment + Transport Means Type Code + Code + Code. Type + + + + + + + + + ASBIE + Transportation Segment. Transportation Service + The transportation service used in this transportation segment. + 1 + Transportation Segment + Transportation Service + Transportation Service + + + + + + + + + ASBIE + Transportation Segment. Transport Service Provider_ Party. Party + The transport service provider responsible for carrying out transport services at this transportation segment. + 1 + Transportation Segment + Transport Service Provider + Party + Party + + + + + + + + + ASBIE + Transportation Segment. Carrying_ Transport Equipment. Transport Equipment + The transport equipment used to contain a particular goods item or package at this transportation segment. + 0..1 + Transportation Segment + Carrying + Transport Equipment + Transport Equipment + + + + + + + + + ASBIE + Transportation Segment. Carrying_ Package. Package + The package used to contain a particular goods item or package at this transportation segment. + 0..1 + Transportation Segment + Carrying + Package + Package + + + + + + + + + ASBIE + Transportation Segment. Carrying_ Transport Means. Transport Means + The transport means used to carry a particular goods item or package at this transportation segment. + 0..1 + Transportation Segment + Carrying + Transport Means + Transport Means + + + + + + + + + ASBIE + Transportation Segment. Departure_ Transport Location. Transport Location + The departure location at this transportation segment. + 0..1 + Transportation Segment + Departure + Transport Location + Transport Location + + + + + + + + + ASBIE + Transportation Segment. Intermediate_ Transport Location. Transport Location + An intermediate location (e.g. customs office, intermediate storage location, etc.) at this transportation segment. + 0..n + Transportation Segment + Intermediate + Transport Location + Transport Location + + + + + + + + + ASBIE + Transportation Segment. Arrival_ Transport Location. Transport Location + The arrival location for this transportation segment. + 0..1 + Transportation Segment + Arrival + Transport Location + Transport Location + + + + + + + + + + + ABIE + Transportation Service. Details + Transport service details. + Transportation Service + + + + + + + + + BBIE + Transportation Service. Transport Service Code. Code + A code which describes the general type of service required for the transportation of goods. Specifically, it identifies the extent of the transportation service, e.g., door-to-door, port-to-port. + 1 + Transportation Service + Transport Service Code + Code + Code. Type + + + + + + + + + BBIE + Transportation Service. Tariff Class Code. Code + Specification of a tariff class applicable to a transportation service. + 0..1 + Transportation Service + Tariff Class Code + Code + Code. Type + Tariff Class Specifier + + + + + + + + + BBIE + Transportation Service. Priority. Text + Statement indicating priority of requested transportation service. + 0..1 + Transportation Service + Priority + Text + Text. Type + + + + + + + + + BBIE + Transportation Service. Freight Rate Class Code. Code + Code to indicate applicable rate class for freight. + 0..1 + Transportation Service + Freight Rate Class Code + Code + Code. Type + Charge Basis + + + + + + + + + BBIE + Transportation Service. Transportation Service Description. Text + A textual description of the transportation service + 0..1 + Transportation Service + Transportation Service Description + Text + Text. Type + + + + + + + + + BBIE + Transportation Service. Transportation Service Details URI. Identifier + An URI to additional specification of the transportation service, e.g. a company website with service specifications + 0..1 + Transportation Service + Transportation Service Details URI + Identifier + Identifier. Type + + + + + + + + + BBIE + Transportation Service. Nomination Date. Date + The deadline date for which this service has to be booked. For example if this service is executed Wednesday February 16th 2011 at 10 a.m. CET, the Nomination Date might be Tuesday February 15th 2011. + 0..1 + Transportation Service + Nomination Date + Date + Date. Type + + + + + + + + + BBIE + Transportation Service. Nomination Time. Time + The deadline time for which this service has to be booked. For example if this service is executed Wednesday February 16th 2011 at 10 a.m. CET, the Nomination Date might be Tuesday February 15th 2011 and Nomination Time 4 p.m. latest. + 0..1 + Transportation Service + Nomination Time + Time + Time. Type + + + + + + + + + + + ABIE + Unstructured Price. Details + This class is a alternative to the class Price, and it contain a Tele line + Unstructured Price + + + + + + + + + BBIE + Unstructured Price. Price Amount. Amount + Statement for the price amount + 0..1 + Unstructured Price + Price Amount + Amount + Amount. Type + 23.45 + + + + + + + + + BBIE + Unstructured Price. Time Amount. Text + Statement for the time amount. + 0..1 + Unstructured Price + Time Amount + Text + Text. Type + + + + + + + + + + + ABIE + Utility Item. Details + Informations about a product of consumption + Utility Item + + + + + + + + + BBIE + Utility Item. Identifier + Identification of the consumption product + 1 + Utility Item + Identifier + Identifier + Identifier. Type + 1 + + + + + + + + + BBIE + Utility Item. Subscriber Identifier. Identifier + Identification of the subscriber + 0..1 + Utility Item + Subscriber Identifier + Identifier + Identifier. Type + 98143211 + + + + + + + + + BBIE + Utility Item. Subscriber ID Type. Text + Identification of the subscriber type + 0..1 + Utility Item + Subscriber ID Type + Text + Text. Type + APL + + + + + + + + + BBIE + Utility Item. Subscriber ID Type Code. Code + The code for the service type + 0..1 + Utility Item + Subscriber ID Type Code + Code + Code. Type + APL + + + + + + + + + BBIE + Utility Item. Description. Text + Desciption of the consumption product + 0..n + Utility Item + Description + Text + Text. Type + Basis price quarter (5.761 kWh per 35,58 cents), Transport of electricity, etc. + + + + + + + + + BBIE + Utility Item. Pack Quantity. Quantity + The unit packaging quantity + 0..1 + Utility Item + Pack Quantity + Quantity + Quantity. Type + 1 + + + + + + + + + BBIE + Utility Item. Pack Size. Numeric + The number of items in a pack + 0..1 + Utility Item + Pack Size + Numeric + Numeric. Type + + + + + + + + + BBIE + Utility Item. Consumption Type. Text + Description of the of the consumption product type + 0..1 + Utility Item + Consumption Type + Text + Text. Type + Consumption + + + + + + + + + BBIE + Utility Item. Consumption Type Code. Code + Description of the of the consumption product type as a code + 0..1 + Utility Item + Consumption Type Code + Code + Code. Type + Consumption + + + + + + + + + BBIE + Utility Item. Current_ Charge Type. Text + Information of the actual paymentstype + 0..1 + Utility Item + Current + Charge Type + Text + Text. Type + + + + + + + + + BBIE + Utility Item. Current_ Charge Type Code. Code + Information of the actual paymentstype code + 0..1 + Utility Item + Current + Charge Type Code + Code + Code. Type + + + + + + + + + BBIE + Utility Item. One Time_ Charge Type. Text + Information about the one-time payment type + 0..1 + Utility Item + One Time + Charge Type + Text + Text. Type + + + + + + + + + BBIE + Utility Item. One Time_ Charge Type Code. Code + Information about the one-time payment type code + 0..1 + Utility Item + One Time + Charge Type Code + Code + Code. Type + + + + + + + + + ASBIE + Utility Item. Tax Category + An association to Tax Category + 0..1 + Utility Item + Tax Category + Tax Category + + + + + + + + + ASBIE + Utility Item. Contract + Informations about the contract. + 0..1 + Utility Item + Contract + Contract + + + + + + + + + + + ABIE + WebSiteAccess. Details + Information about how to access the suppliere website. + WebSiteAccess + + + + + + + + + BBIE + WebSiteAccess. URI. Identifier + Website address. + 0..1 + WebSiteAccess + URI + Identifier + Identifier. Type + + + + + + + + + BBIE + WebSiteAccess. Password. Text + The customers password to login to the suppliers website. + 1 + WebSiteAccess + Password + Text + Text. Type + confidence + + + + + + + + + BBIE + WebSiteAccess. Login. Text + Login information . + 1 + WebSiteAccess + Login + Text + Text. Type + Utsuser + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/UBL-CommonBasicComponents-2.1.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/UBL-CommonBasicComponents-2.1.xsd new file mode 100644 index 000000000..c9fed0068 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/UBL-CommonBasicComponents-2.1.xsd @@ -0,0 +1,5151 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/UBL-QualifiedDataTypes-2.1.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/UBL-QualifiedDataTypes-2.1.xsd new file mode 100644 index 000000000..cca8b40f6 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/UBL-QualifiedDataTypes-2.1.xsd @@ -0,0 +1,69 @@ + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/UBL-UnqualifiedDataTypes-2.1.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/UBL-UnqualifiedDataTypes-2.1.xsd new file mode 100644 index 000000000..d381f90b4 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/message/UBL-UnqualifiedDataTypes-2.1.xsd @@ -0,0 +1,435 @@ + + + + + + + + + + UBLUDT000001 + UDT + Amount. Type + 1.0 + A number of monetary units specified in a currency where the unit of the currency is explicit or implied. + Amount + + + + + + + + + + + UBLUDT000002 + UDT + Binary Object. Type + 1.0 + A set of finite-length sequences of binary octets. + Binary Object + binary + + + + + + + + + + + UBLUDT000003 + UDT + Graphic. Type + 1.0 + A diagram, graph, mathematical curves, or similar representation. + Graphic + binary + + + + + + + + + + + UBLUDT000004 + UDT + Picture. Type + 1.0 + A diagram, graph, mathematical curves, or similar representation. + Picture + binary + + + + + + + + + + + UBLUDT000005 + UDT + Sound. Type + 1.0 + A diagram, graph, mathematical curves, or similar representation. + Sound + binary + + + + + + + + + + + UBLUDT000006 + UDT + Video. Type + 1.0 + A diagram, graph, mathematical curves, or similar representation. + Graphic + binary + + + + + + + + + + + UBLUDT000007 + UDT + Code. Type + 1.0 + A character string (letters, figures, or symbols) that for brevity and/or languange independence may be used to represent or replace a definitive value or text of an attribute together with relevant supplementary information. + Code + string + Other supplementary components in the CCT are captured as part of the token and name for the schema module containing the code list and thus, are not declared as attributes. + + + + + + + + + + + UBLUDT000008 + UDT + Date Time. Type + 1.0 + A particular point in the progression of time together with the relevant supplementary information. + Date Time + string + Can be used for a date and/or time. + + + + + + + + + + + UBLUDT000009 + UDT + Date. Type + 1.0 + One calendar day according the Gregorian calendar. + Date + string + + + + + + + + + + + UBLUDT0000010 + UDT + Time. Type + 1.0 + The instance of time that occurs every day. + Time + string + + + + + + + + + + + UBLUDT0000011 + UDT + Identifier. Type + 1.0 + A character string to identify and distinguish uniquely, one instance of an object in an identification scheme from all other objects in the same scheme together with relevant supplementary information. + Identifier + string + Other supplementary components in the CCT are captured as part of the token and name for the schema module containing the identifer list and thus, are not declared as attributes. + + + + + + + + + + + UBLUDT0000012 + UDT + Indicator. Type + 1.0 + A list of two mutually exclusive Boolean values that express the only possible states of a property. + Indicator + string + + + + + + + + + + + UBLUDT0000013 + UDT + Measure. Type + 1.0 + A numeric value determined by measuring an object along with the specified unit of measure. + Measure + Type + decimal + + + + + + + + + + + UBLUDT0000014 + UDT + Numeric. Type + 1.0 + Numeric information that is assigned or is determined by calculation, counting, or sequencing. It does not require a unit of quantity or unit of measure. + Numeric + string + + + + + + + + + + + UBLUDT0000015 + UDT + 1.0 + Value. Type + Numeric information that is assigned or is determined by calculation, counting, or sequencing. It does not require a unit of quantity or unit of measure. + Value + string + + + + + + + + + + + UBLUDT0000016 + UDT + 1.0 + Percent. Type + Numeric information that is assigned or is determined by calculation, counting, or sequencing. It does not require a unit of quantity or unit of measure. + Percent + string + + + + + + + + + + + UBLUDT0000017 + UDT + 1.0 + Rate. Type + Numeric information that is assigned or is determined by calculation, counting, or sequencing. It does not require a unit of quantity or unit of measuret. + Rate + string + + + + + + + + + + + UBLUDT0000018 + UDT + Quantity. Type + 1.0 + A counted number of non-monetary units possibly including fractions. + Quantity + decimal + + + + + + + + + + + UBLUDT0000019 + UDT + Text. Type + 1.0 + A character string (i.e. a finite set of characters) generally in the form of words of a language. + Text + string + + + + + + + + + + + UBLUDT0000020 + UDT + Name. Type + 1.0 + A character string that consititues the distinctive designation of a person, place, thing or concept. + Name + string + + + + + + + \ No newline at end of file diff --git a/TrueFilingEcf4/src/main/resources/wsdl/Schema/substitution/ImageSoft.xsd b/TrueFilingEcf4/src/main/resources/wsdl/Schema/substitution/ImageSoft.xsd new file mode 100644 index 000000000..0e1acfc7e --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/Schema/substitution/ImageSoft.xsd @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/WebServices/ECF-4-0-WebServicesProfile-v2-1-DOC-LIT-WRAP-soapui-project.xml b/TrueFilingEcf4/src/main/resources/wsdl/WebServices/ECF-4-0-WebServicesProfile-v2-1-DOC-LIT-WRAP-soapui-project.xml new file mode 100644 index 000000000..92b126c63 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/WebServices/ECF-4-0-WebServicesProfile-v2-1-DOC-LIT-WRAP-soapui-project.xml @@ -0,0 +1,138576 @@ + +file:/C:/src/beanstalksvn/internalapps/JusticeTech/ECF/Artifacts/trunk/webservices/ECF-4.0-FilingReviewMDEService-DOC-LIT-WRAP.wsdl + + + + + + +]]>http://schemas.xmlsoap.org/wsdl/file:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\webservices\ECF-4.0-WebServicesProfile-Definitions-v2.1-DOC-LIT-WRAP.wsdl + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +]]>http://schemas.xmlsoap.org/wsdl/file:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\webservices\ECF-4.0-WebServicesProfile-Definitions-v2.1-DOC-LIT-WRAP.xsd + + + + WS-SIP Types + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + + Multi-part message type (required for conformance with WS-I Basic Profile 1.1 + + + + + + + + + Multi-part message (required for conformance with WS-I Basic Profile 1.1 + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + + Multi-part message type (required for conformance with WS-I Basic Profile 1.1 + + + + + + + + + Multi-part message (required for conformance with WS-I Basic Profile 1.1 + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + + Multi-part message type (required for conformance with WS-I Basic Profile 1.1 + + + + + + + + + Multi-part message (required for conformance with WS-I Basic Profile 1.1 + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\constraint\niem\appinfo\2.0\appinfo.xsd + + The appinfo schema provides support for high level + data model concepts and additional syntax to support the NIEM + conceptual model and validation of NIEM-conformant + instances. + + + + The Resource element provides a method for + application information to define a name within a schema, without the + name being bound to a schema component. This is used by the + structures schema to define names for structures:Object and + structures:Association. + + + + + + + + The Deprecated element provides a method for + identifying components as being deprecated. A deprecated component is + one which is provided, but whose use is not + recommended. + + + + + + + + + + + + + + The Base element provides a mechanism for + indicating base types and base elements in schema, for the cases in + which XML Schema mechanisms are insufficient. For example, it is used + to indicate Object or Association bases. + + + + + + + + + The ReferenceTarget element indicates a NIEM type + which may be a target (that is, a destination) of a NIEM reference + element. It may be used in combinations to indicate a set of valid + types. + + + + + + + + + The AppliesTo element is used in two ways. First, + it indicates the set of types to which a metadata type may be + applied. Second, it indicates the set of types to which an + augmentation element may be applied. + + + + + + + + + The ConformantIndicator element may be used in two + ways. First, it is included as application information for a schema + document element to indicate that the schema is NIEM-conformant. + Second, it is used as application information of a namespace import + to indicate that the schema is not + NIEM-conformant. + + + + + The ExternalAdapterTypeIndicator element indicates + that a complex type is an external adapter type. Such a type is one + that is composed of elements and attributes from non-NIEM-conformant + schemas. The indicator allows schema processors to switch to + alternative processing modes when processing NIEM-conformant versus + non-NIEM-conformant content. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\isi\ImageSoft.xsd + + + + + + + + + + Extended CaseAugmentationType + + + + + + + + + + + + + A Docket type to provide more information than just the DocketID + + + + + + + + + + + + + + An identifier for the type of case, i.e. Civil, Domestic or codes specific to the current juristiction + + + + + Provides docket information typically found in a court's Registier of Actions as well as any documents associated with that Docket entry. + + + + + Provides additional case information including related docket data for the case. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\common\ECF-4.0-CommonTypes.xsd + + + + CommonTypes + + true + + + + + + + + + + + A name other than an official name used by a person or organization. + + + + + + + + + + + + + + + + A document or other piece of information filed by someone or something involved in a case. + + + + + + + + + + + + + The role played by an attorney in this case. + + + + + + + A reference to a person organization or property represented by an attorney. + + + + + + + + + Information about a case participant. + + + + + + + + + + + + + Additional information needed to initiate a court case. + + + + + + + + + + + + + + + + + + + + + The actor who performed the action as set forth in the docket entry. E.g. the person who filed the document. Does not include the name of the court clerk composing the docket entry. + + + + + + + + + + + + The actor on whose behalf the filing was submitted to the court as set forth in the docket entry.. + + + + + + + + + + + + Document descriptors (title, type description, etc.) for the Document. This is meant to include all the information about the document that is needed to index it into the Case Management System and enter it into the Document Management System. + + + + + + + + + + + + Details about an event on the court calendar. + + + + + + + + + + + + + + + + + + + + Information describing an attachment included within an ECF 4.0 base message. An attachment can be a binary file representing the document to be filed, an XML document, a digital signature, or other MIME file. + + + + + + + + + + + + Descriptors for a rendition of a Document. This is meant to include all the information about the document that is needed to enter it into the Document Management System. + + + + + + + + + + + + + + A rendition or version of a Document. + + + + + + + + + + + + + Information describing or constituting the signature on a document submitted to a court for filing. + + + + + + + + + + + + + Document descriptors (title, type description, etc.) for the Document. This is meant to include all the information about the document that is needed to index it into the Case Management System and enter it into the Document Management System. + + + + + + + + + + + + + + + + + + A Lead document that is the pleading, motion or order that is the main document in a Filing or a Connected Document. A Lead Document may have Connected Documents, which are "appendices" or "exhibits" that are intended for filing only in the context of the Lead Document. + + + + + + + + + + + + + The asynchronous message returned by the Filing Review MDE to the filing assembly MDE conveying information on the court's actions on the documents submitted for filing in the FilingReviewMessage. + + + + + + + + + + + + + + + + The base message for an electronic filing using ECF 4.0. + + + + + + + + + + + + The structure for the information needed to electronically serve other parties to the case. + + + + + + + + + + + + + + Representation of an error that occured when synchronously processing the message. + + + + + + + + + + + + + Status of the filing as determined by the system sending the callback. + + + + + + + + + + + + Details about a coverage by contract whereby one party agrees to indemnify or guarantee another against loss by a specified contingent event or peril. + + + + + + + + + + + + The relationship between two organizations. Example: subsidiary corporation. + + + + + + + + + + + + Additional information about an organization. + + + + + + + + + + + + + + Additional information about an organization. + + + + + + + + + + + + + A code for the type of relationship between two persons, between two organizations, or between a person and an organization in a case. Allowable values are set forth in Court Policy. Examples include parent/child, subsidiary corporation, and chief executive officer. + + + + + + + + + + + + Additional information about a person. + + + + + + + + + + + + + + + + A code for the type of relationship between two persons, between two organizations, or between a person and an organization in a case. Allowable values are set forth in Court Policy. Examples include parent/child, subsidiary corporation, and chief executive officer. + + + + + + + + + + + + Additional information about a person. + + + + + + + + + + + + A message returned synchronously as a response to a query. + + + + + + + + + + + + + + + A message returned synchronously as a response to a query. + + + + + + + + + + + + + + + Case or cases sharing characteristics, such as common parties or events, with this case. + + + + + + + + + + + + A document that has been reviewed through the clerk review process, and that potentially has been or will be reocrded in the court record system. + + + + + + + + + + + + + + A container for the data or information representating a signature. + + + + + + + + + + + + Additional information about a subject. + + + + + + + + + + + + + A name other than an official name used by a person or organization in this case. + + + + + An alternative name by which this person or organization is known. + + + + + A description of the type of the alternate name. Allowable values set forth in Court Policy. Examples: doing business as, formerly known as, also known as. + + true + + + + + + + An identifier that determines the attachment order in a set of related attachments. + + + + + Nature of the relationship between the current case and the related case. Allowable values to be set forth in Court Policy. + + true + + + + + + + Additional information needed to initiate a court case. + + + + + + + + An entry in the docket or register of actions for this case. + + + + + The abbreviated name of a case. + + + + + The classification used by a court to denote the type of case for purposes of statistical categorization, court record keeping, or case assignment. Allowable values set forth in Court Policy. + + true + + + + + + The role played by an attorney in this case. + + + + + Attorney representing a "other party" in this case. + + + + + Information about a case participant. + + + + + A code that describes the role played by a person or organization in a case. Allowed values are set forth in Court Policy. Examples: Lead attorney, guardian ad litem, friend of court, court appointed special advocate (CASA), caseworker, probation officer, bail bondsman, interested person, interested party, intervenor, heir, trustee or beneficiary (e.g., of a trust). + + true + + + + + + + A reference to a person or organization represented by an attorney. + + + + + + + + The legal ground on which the request for relief is based. Allowed values set forth in court policy. Example: the basis(es) for relief in a civil case; the grounds for divorce in a state that does not recognize no-fault divorce; grounds for entry of an order of protection in a domestic violence case. + + true + + + + + + A reference to an entry on the docket or register of actions that is a child of the current docket entry. + + + + + Indicates whether color is or is not relevant for the presentation of the document. + + + + + A document included in a Filing that supports the lead Document. This document is not separately entered on the docket or register of actions. + + + + + The actor who performed the action as set forth in the docket entry. E.g. the person who filed the document. Does not include the name of the court clerk composing the docket entry. + + + + + The pleading, motion or order that is the subject of this docket entry. + + + + + A reference to a pleading, motion or order that is the subject of this docket entry. + + + + + + + + Date of entry into the court record. + + + + + A code referring to the location in a court of the calendar event. Allowable values set forth in court policy. + + true + + + + + + A textual description of the location in a court of the calendar event. + + + + + The actor on whose behalf the filing was submitted to the court as set forth in the docket entry. + + + + + Code to categorize the docket entry. E.g. motion, hearing, complaint. Allowable values set forth in court policy. + + true + + + + + + A Lead document that is the pleading, motion or order that is the main document in a Filing or a Connected Document + + + + + Information describing an attachment included within an ECF 4.0 base message. An attachment can be a binary file representing the document to be filed, an XML document, a digital signature, or other MIME file. + + + + + The identifier from the court record system used to identify the document. This attribute is populated by the MDE/process that is authorized to create docket identifiers; the attribute will not be present before that creation takes place. For example, if the clerk review process creates docket identifiers, then this attribute will be present in the RecordDocketingMessage that goes to the court record MDE. However, if the court record process creates docket identifiers, then this attribute will not be present in the RecordDocketingMessage, but will be present in subsequent callbacks. This attribute will be absent in callbacks when the ReviewedDocument was rejected, either by clerk review or the court record system. + + + + + A hash of the document as it appears in the court record. This attribute will be populated by either the clerk review process or the court record system. If the latter, then it will be absent in the RecordDocketingMessage. It will also be absent in callbacks for rejected documents. + + + + + Document descriptors (title, type description, etc.) for the Document. This is meant to include all the information about the document that is needed to index it into the Case Management System and enter it into the Document Management System. + + + + + Descriptors for a rendition of a Document. This is meant to include all the information about the document that is needed to enter it into the Document Management System. + + + + + A rendition or version of a document. + + + + + Information describing or constituting the signature on a document submitted to a court for filing. + + + + + Information provided by the filing assembly MDE to the court identifying a person or organization for purposes of being served electronically with a copy of a document. + + + + + A code for the type of relationship between two persons, between two organizations, or between a person and an organization in a case. Allowable values are set forth in Court Policy. Examples include parent/child, subsidiary corporation, and chief executive officer. + + true + + + + + + + + + A property capable of bearing legal rights and responsibilities. + + + + + A property capable of bearing legal rights and responsibilities. + + + + + + + + + + + + An organization capable of bearing legal rights and responsibilities. + + + + + + + + A person capable of bearing legal rights and responsibilities. + + + + + Representation of an error that occured when synchronously processing the message. + + + + + A code that uniquely identifies an error. A value of '0' indicates no error. Other allowable values set forth in court policy. + + true + + + + + + + A more "user friendly" description of the error. + + + + + ID recognized by the court as being unique within this case,and used to identify the attorney who is filing this document. Not present for pro se litigants. + + + + + The date and time on which the Court Record MDE filing process was completed following the acceptance by the Filing Review MDE + + + + + ID recognized by the court as being unique within this case,and used to identify the party on whose behalf this document is being filed. + + + + + Status of the filing as determined by the system sending the callback. + + + + + Status of the filing as determined by the system sending the callback. Allowable values defined in ECF-4.0-FilingStatusCode.gc. + + + + + + + + Indicates whether the respondent has demonstrated a proof of insurance. + + + + + The relationship between two organizations. Example: subsidiary corporation. + + + + + Additional information about an organization. + + + + + Only present for supporting documents; indicates the identifier of the corresponding lead document. + + + + + + + + The relationship of a person to another person in a case. Allowable values set forth in Court Policy.. + + + + + Additional information about a person. + + + + + Information about a license issued by a state or federal entity authorizing operation of a motor vehicle on public streets and highways. + + + + + Details about a coverage by contract whereby one party agrees to indemnify or guarantee another against loss by a specified contingent event or peril. + + + + + The relationship between two organizations. Example: subsidiary corporation. + + + + + Person's organizational position or title. + + + + + An identifier of a related document that was previously filed in this case. For instance, the document to which this document is a response. + + + + + An entity that submits a query. + + + + + Indicator by the filer that the document must be redacted by the court. + + + + + An indicator that sensitive information has been removed from this rendition of the document. + + + + + Case or cases sharing characteristics, such as common parties or events, with this case. + + + + + Location for the MDE to which service messages can be sent. + + + + + Code identifying the service interaction profile being used by the MDE receiving service. + + + + + This association will be present for a lead document that is reviewed by clerk review. For documents that were rejected by the clerk review process or the court record system, only the documentStatusCode, originalDocumentID, and (optionally) the documentStatusReasonDescription will be present. For documents that were accepted and recorded, all attributes will be present, except for documentStatusReasonDescription, which may or may not be present. + + + + + This association will be present for each connected document that is reviewed by clerk review. For documents that were rejected by the clerk review process or the court record system, only the documentStatusCode, originalDocumentID, and (optionally) the documentStatusReasonDescription will be present. For documents that were accepted and recorded, all attributes will be present, except for documentStatusReasonDescription, which may or may not be present. + + + + + Clerk's instruction to court record system to seal this document. + + + + + Location for the MDE to which asynchronous and service messages can be sent. This unique location is self-assigned by the MDE. + + + + + Code identifying the service interaction profile being used by the sending filing assembly MDE. This list should be extensible to accommodate future messaging profiles. Each code value is specified within the message profile approved for use with ECF 4.0. + + + + + A unique identifier assigned by the filing assembly MDE for the person who is managing the interface between the filer and the filing assembly MDE. This person will receive secondary service on behalf of the filer. This is also the submitterID for filings in this case, and asynchronous responses to filings. + + + + + The data or information representing this signature. It must be valid according to the profile identified by the associated signatureProfileID. + + + + + An identifier from the Court Filing specification that indicates the Signature Profile governing the structure of this signature. + + + + + Any additional instructions for printing of a document (such as printing on front and back of the same page or printing on a particular color paper). + + + + + ID assigned by the Immigration and Customs Enforcement Bureau of the U.S. Department of Homeland Security. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\constraint\niem\niem-core\2.0\niem-core.xsd + + NIEM Core includes both Universal (U) and Common (C) components. The identities for U and C components in Core are maintained with metadata. + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A version of a computer application. + + + + + A unit of money or exchange. + + + + + A unit of money or exchange. + + + + + A language in which a character string is recorded. + + + + + A comment about a kind of name for a person. + + + + + A single or set of related actions, events, or process steps. + + + + + + + + A date of an activity. + + + + + + + + A period of time over which an activity occurs. + + + + + + + + A date an activity occurs. + + + + + A description of an activity. + + + + + A result or outcome of an activity. + + + + + An identification that references an activity. + + + + + A status of an activity. + + + + + A postal location to which paper mail can be directed. + + + + + A single place or unit at which mail is delivered. + + + + + An identifier of a single place or unit at which mail is delivered. + + + + + + + + A single place or unit at which mail is delivered. + + + + + + + + A complete address. + + + + + + + + A private mailbox within a company. + + + + + + + + A name of a person, organization, or other recipient to whom physical mail may be sent. + + + + + A representation of an address. + + + + + A particular unit within a larger unit or grouping at a location. + + + + + + + + A connection, relationship, or involvement somehow linking people and/or things together. + + + + + A binary attachment to a report or document. + + + + + A binary encoding of data. + + + + + + + + A date on which a binary object is captured or created. + + + + + An entity which captured or created a binary object. + + + + + A kind of object that has been encoded. + + + + + A description of a binary object. + + + + + A name of a standard or protocol used to classify binary content. + + + + + A URL or file reference of a binary object. + + + + + A binary encoding of data. + + + + + A size of a binary object in kilobytes. + + + + + Information used to measurable a biological or behavioral characteristic, which can reliably recognize the identity, or verify the claimed identity, of a person. + + + + + An entity that collected a biometric sample. + + + + + A picture of a biometric sample. + + + + + A description of a capacity or ability. + + + + + An aggregation of information about a set of related activities and events. + + + + + A kind of case. + + + + + An outcome or processing of a case. + + + + + + + + A case disposition occurring as a result of some decision. + + + + + A date that all charges in a case were disposed. + + + + + An identifier used to reference a case docket. + + + + + A document or other piece of information filed by someone or something involved in a case. + + + + + An official name of a case. + + + + + An identifier used to track a case. + + + + + An electronic mailing address by which a person or organization may be contacted. + + + + + + + + An entity that may be contacted by using the given contact information. + + + + + A description, title or function of a person with the given contact information. + + + + + A telephone number for a facsimile device by which a person or organization may be contacted. + + + + + + + + Details about how to contact a person or an organization. + + + + + + + + Details about how to contact a person or an organization. + + + + + A description of the methods available to contact a person or organization. + + + + + True if the contact information is the daytime contact information; false otherwise. + + + + + True if the contact information is the emergency contact information; false otherwise. + + + + + True if the contact information is the late day / early night contact information; false otherwise. + + + + + True if the contact information is the home contact information; false otherwise. + + + + + True if the contact information is the late night contact information; false otherwise. + + + + + True if the contact information is the primary method for contact; false otherwise. + + + + + True if the contact information is the employment contact information; false otherwise. + + + + + A postal address by which a person or organization may be contacted. + + + + + + + + A means of contacting someone. + + + + + A third party person who answers a call and connects or directs the caller to the intended person. + + + + + A telephone number for a telecommunication device by which a person or organization may be contacted. + + + + + + + + A means of transport from place to place. + + + + + + + + A single, upper-most, front-most, or majority color of a conveyance. + + + + + + + + An identification on a metal plate fixed to a conveyance. + + + + + An image of a DNA strand. + + + + + Location specific information regarding a person's DNA. + + + + + A location within a strand of DNA that a value is determined. + + + + + A value string for a DNA locus. + + + + + A full date. + + + + + + + + A time period measured by a starting and ending point. + + + + + A representation of a date. + + + + + A full date and time. + + + + + + + + A result or outcome that is the product of handling, processing, or finalizing something. + + + + + A kind of disposition. + + + + + A date a disposition occurred. + + + + + A description of a disposition. + + + + + A result or outcome of a disposition. + + + + + A paper or electronic document. + + + + + + + + A paper or electronic document. + + + + + A name of an application used to create and/or display an electronic document. + + + + + A binary encoding of the content of a document. + + + + + A kind of document; a nature or genre of the content. + + + + + A description of the content of a document. + + + + + A date the information in a document takes effect. + + + + + An identifier assigned to a document to locate it within a file control system. + + + + + A date a document was filed. + + + + + An identification that references a document. + + + + + A date after which contributions to the content of a document will no longer be accepted. + + + + + A language of the intellectual content of the resource. + + + + + A language of the intellectual content of the resource. + + + + + + + + A date a document is posted to an information system or network. + + + + + A date a transmitted document was received. + + + + + An identifier that determines the document order in a set of related documents. + + + + + A status of a document. + + + + + A fee or price required to submit a document. + + + + + An entity responsible for making the resource available. + + + + + A name given to a document. + + + + + Details about a license issued to a person granting driving privileges. + + + + + + + + Details about a license issued to a person granting driving privileges. + + + + + Details about an authorization issued to a driver granting driving privileges. + + + + + A kind of commercial vehicle that a licensed driver has been examined on and approved to operate. + + + + + A kind of commercial vehicle that a licensed driver has been examined on and approved to operate. + + + + + + + + The date after which a driver license or driver license permit is no longer valid. + + + + + Details about a driver license identifier or driver license permit identifier, including the number and state. + + + + + The date when a driver license or driver license permit is issued or renewed. + + + + + A restriction on a driver license or driver license permit. + + + + + Details regarding a driver license withdrawal. + + + + + A date on which a driver license withdrawal becomes effective. + + + + + A category of a driving restriction. + + + + + + + + A date on which a special restriction ends. + + + + + A category of a driving restriction. + + + + + + + + A driving restriction. + + + + + A date that information take effect. + + + + + A person who works for a business or a person. + + + + + + + + A business or person which employs a person. + + + + + An end date. + + + + + A person, organization, or thing capable of bearing legal rights and responsibilities. + + + + + + + + A person, organization, or thing capable of bearing legal rights and responsibilities. + + + + + An organization capable of bearing legal rights and responsibilities. + + + + + + + + + An organization capable of bearing legal rights and responsibilities. + + + + + + + + A person capable of bearing legal rights and responsibilities. + + + + + + + + + A person capable of bearing legal rights and responsibilities. + + + + + + + + A person, organization, or thing capable of bearing legal rights and responsibilities. + + + + + An identification assigned to a facility. + + + + + A kind of relationship between family members. + + + + + A kind of relationship between family members. + + + + + + + + A kind of relationship between family members. + + + + + + + + An amount of an exemption from a payment obligation. + + + + + A representation or an encoding of the identifying characteristics of a persons fingerprints. + + + + + A full telephone number. + + + + + + + + An association between a guardian and a dependent. + + + + + A representation of an identity. + + + + + A kind of identification. + + + + + A kind of identification. + + + + + + + + A value that identifies something. + + + + + An area, region, or unit in which a unique identification is issued. + + + + + A person, organization, or locale which issues an identification. + + + + + A picture or visual representation of something. + + + + + An association between parents and children. + + + + + An occurrence or an event that may require a response. + + + + + + + + A location where an incident occurred. + + + + + An association between an incident and a vehicle. + + + + + A coverage by a contract whereby one party agrees to indemnify or guarantee another against loss by a specified contingent event or peril. + + + + + True if an insurance policy is active; false otherwise. + + + + + A name of a company which underwrites an insurance policy. + + + + + A kind of insurance coverage. + + + + + A kind of insurance coverage. + + + + + + + + An international telephone number. + + + + + + + + An article or thing. + + + + + A color of an item. + + + + + A description of an item. + + + + + A year in which an item was manufactured or produced. + + + + + An identification assigned to an item. + + + + + A style of an item. + + + + + An evaluation of the monetary worth of an item. + + + + + A system of words or symbols used for communication. + + + + + A system of words or symbols used for communication. + + + + + + + + A unit of measure of a length value. + + + + + Details about a physical location. + + + + + + + + Details about a physical location. + + + + + A geophysical location described by postal information. + + + + + A name of a city or town. + + + + + A country, territory, dependency, or other such geopolitical subdivision of a location. + + + + + A country, territory, dependency, or other such geopolitical subdivision of a location. + + + + + + + + A country, territory, dependency, or other such geopolitical subdivision of a location. + + + + + + + + A county, parish, vicinage, or other such geopolitical subdivision of a state. + + + + + A county, parish, vicinage, or other such geopolitical subdivision of a state. + + + + + + + + A county, parish, vicinage, or other such geopolitical subdivision of a state. + + + + + + + + A description of a location. + + + + + A name of a location. + + + + + An identifier of a post office-assigned zone for an address. + + + + + An identifier of a smaller area within a post office-assigned zone for an address. + + + + + A name and number of a postal route. + + + + + + + + A state, commonwealth, province, or other such geopolitical subdivision of a country. + + + + + A state, commonwealth, province, or other such geopolitical subdivision of a country. + + + + + + + + A state, commonwealth, province, or other such geopolitical subdivision of a country. + + + + + + + + A road, thoroughfare or highway. + + + + + + + + An association between two persons who are legally married to each other. + + + + + A measurement. + + + + + A measurement value. + + + + + + + + A unit that qualifies the measurement value. + + + + + A measurement value. + + + + + Information that further qualifies primary data; data about data. + + + + + A North American Numbering Plan telephone number. + + + + + + + + A thing that is owed to someone else. + + + + + A kind of obligation. + + + + + An amount of money or quantity of time still required to be spent in order to fulfill an obligation. + + + + + An amount of a payment obligation that has not been made. + + + + + + + + A date on which an obligation ends. + + + + + An entity that must fulfill an obligation. + + + + + A waival or dismissal of an obligation. + + + + + A description of an exemption from an obligation. + + + + + An interval or period at which an obligation is required to be fulfilled. + + + + + An entity to whom an obligation must be fulfilled. + + + + + A periodic basis on which an obligation must be met. + + + + + A description of what is necessary in order to fulfill an obligation. + + + + + A date on which an obligation begins. + + + + + A unit which conducts some sort of business or operations. + + + + + + + + A unit which conducts some sort of business or operations. + + + + + An association between an organization and another organization. + + + + + An association between an organization and contact information. + + + + + An identification that references an organization. + + + + + A location of an organization. + + + + + A name of an organization. + + + + + A preferred means of contacting an organization. + + + + + A name of a subdivision of an organization. + + + + + A tax identification assigned to an organization. + + + + + A name of a high-level division of an organization. + + + + + A human being. + + + + + + + + A human being. + + + + + An association between people. + + + + + A date a person was born. + + + + + A capacity or ability of a person for something. + + + + + A son or daughter of a person. + + + + + + + + A county that assigns rights, duties, and privileges to a person because of the birth or naturalization of the person in that country. + + + + + A county that assigns rights, duties, and privileges to a person because of the birth or naturalization of the person in that country. + + + + + + + + An association between a person and contact information. + + + + + A representation or an encoding of the identifying characteristics of a person's DNA. + + + + + A date a person died or was declared legally dead. + + + + + A person dependent upon the guardianship of another. + + + + + + + + An employment of a person. + + + + + A cultural lineage of a person. + + + + + A cultural lineage of a person. + + + + + + + + A cultural lineage of a person. + + + + + + + + A color of the eyes of a person. + + + + + A color of the eyes of a person. + + + + + + + + A representation or an encoding of the identifying characteristics of a set of a persons fingerprints. + + + + + A complete name of a person. + + + + + An association between a person and a gang. + + + + + A first name of a person. + + + + + A person with guardianship over another. + + + + + + + + A color of the hair of a person. + + + + + A color of the hair of a person. + + + + + + + + A measurement of the height of a person. + + + + + True if a person understands and speaks English; false otherwise. + + + + + An original surname of a person before changed by marriage. + + + + + A middle name of a person. + + + + + A combination of names and/or titles by which a person is known. + + + + + A title or honorific used by a person. + + + + + A term appended after the family name that qualifies the name. + + + + + An association between a person and an organization. + + + + + Information about an identifier with a kind that is not explicitly defined in the standard that refers to a person within a certain domain. + + + + + A father or mother of a person. + + + + + + + + A prominent or easily identifiable aspect of a person. + + + + + A capacity of a person for a language with which that person has the strongest familiarity. + + + + + A classification of a person based on factors such as geographical locations and genetics. + + + + + A classification of a person based on factors such as geographical locations and genetics. + + + + + + + + A classification of a person based on factors such as geographical locations and genetics. + + + + + + + + A gender or sex of a person. + + + + + A gender or sex of a person. + + + + + + + + An identification of a person based on a state-issued ID card. + + + + + A last name or family name of a person. + + + + + An identification used to refer to a specific person within the tax system of a country. + + + + + A kind of union between two people. + + + + + A kind of union between two people. + + + + + + + + A status of a union between two people. + + + + + A measurement of the weight of a person. + + + + + A specific kind of physical feature. + + + + + A specific kind of physical feature. + + + + + + + + A specific kind of physical feature. + + + + + + + + A state or other jurisdictional unit where a property registration was issued. + + + + + An association between related cases. + + + + + A property of a role object. This specifies the base object, of which the role object is a function. + + + + + An entity of whom the role object is a function. + + + + + + + + + An organization of whom the role object is a function. + + + + + + + + + A person of whom the role object is a function. + + + + + + + + + An activity planned to occur on a certain date and time. + + + + + A date for which an activity is scheduled. + + + + + A time at which an activity is scheduled to end. + + + + + A time at which an activity is scheduled to begin. + + + + + A sensitivity level of the information. + + + + + A unit of measurement of speed. + + + + + A date on which something begins. + + + + + A date a status was set, effected, or reported. + + + + + A description of a status or condition of something or someone. + + + + + A status or condition of something or someone. + + + + + A kind of street. + + + + + Any additional parts of a street reference that follows the street category and post directional. + + + + + A complete reference for a street. + + + + + A name of a street. + + + + + A number that identifies a particular unit or location within a street. + + + + + A direction that appears after a street name. + + + + + A direction that appears before a street name. + + + + + An address. + + + + + + + + A process of overseeing, supervising, or keeping track in some capacity of a person. + + + + + A status of the custody of a person under supervision. + + + + + A facility at which a subject is being supervised. + + + + + A dialing code for a state or province for phone numbers in the USA, Canada, Mexico, and the Caribbean. + + + + + An international dialing code for a country. + + + + + A portion of a telephone number that usually represents a central telephone switch. + + + + + A portion of a telephone number that identifies the individual circuit within an exchange. + + + + + A telephone number for a telecommunication device. + + + + + A complete telephone number. + + + + + A telephone number. + + + + + A telephone number. + + + + + Additional numbers to be entered after a call connects to be directed to the appropriate place. + + + + + A motor-driven conveyance designed to carry its operator, and optionally passengers and cargo, over land. + + + + + A single, upper-most, front-most, or majority color of a vehicle. + + + + + + + + A unique combination of alphanumeric characters that identifies a specific vehicle. + + + + + A manufacturer of a vehicle. + + + + + A specific design or class of vehicle made by a manufacturer. + + + + + A style of a vehicle. + + + + + + + + A unit of measure of the weight value. + + + + + A year. + + + + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\constraint\niem\structures\2.0\structures.xsd + + The structures schema provides support for + fundamental NIEM linking mechanisms, as well as providing base types + for definition of NIEM-conformant types. + + + + The Object resource defines an identifier which acts + as a conceptual base for objects in NIEM-conformant + schemas. + + + + + + The Association resource defines an identifier which + acts as a conceptual base for association in NIEM-conformant + schemas. + + + + + + + The id attribute is used to define XML IDs for + NIEM objects. These IDs may be targets of reference elements, + metadata attributes, and link metadata + attributes. + + + + + The linkMetadata attribute allows an element to + point to metadata that affects the relationship between the context + and the value of the object. + + + + + The attribute metadata allows an object to point + to metadata that affects itself. + + + + + The ref attribute is used by reference elements in + NIEM to refer to an object via an ID reference, rather than including + the object itself as element content. + + + + + The sequenceID attribute allows a series of + elements to define a sequence for content that does not correspond to + the order of element declarations within a type. This attribute may + override the sequence of elements appearing within an + instance. + + + + + The SimpleObjectAttributeGroup attribute group + provides a collection of attributes which are appropriate for + definition of object types. + + + + + + + + The Augmentation element provides a substitution + group head for augmentations. The designer of a message or object may + use this element within an object definition. This will allow the + selection of augmentations dynamically, at run time (or at least + schema selection time) rather than at schema authoring + time. + + + + + The Metadata element provides a substitution group + head for metadata. Like the substitution group head for + augmentations, this allows selection of metadata to be decided late + in message creation, rather than at schema authoring time. This + element may also be used to provide a single point in a container + where all metadata for a message may be + deposited. + + + + + The AugmentationType type is a base type for all + augmentations. An augmentation may have metadata and an ID, but may + not have link metadata, as it does not establish a relationship + between its value and its context. The individual element contents of + an augmentation, however, do establish a relationship between the + context of the augmentation and the values of the individual + elements. + + + + + + + The ComplexObjectType type provides a base class + for object definition, association definitions, and external adapter + type definitions. An instance of one of these types may have an ID. + It may have metadata as it establishes the existence of an object + (maybe a conceptual object). It may also have link metadata, as an + element of one of these types establishes a relationship between its + value and its context. + + + + + + + + The MetadataType type is a base class for metadata + type definition. This type provides only an ID, as the metadata may + be referenced. It does not itself have metadata, and does not have + link metadata. + + + + + + The ReferenceType type is the type of all + reference elements within NIEM-conformant schemas. This type provides + a reference attribute, to reference an object defined elsewhere. It + includes an ID, as the link established by a reference element may + need to be identified, and it includes link metadata, as an element + of this type establishes a relationship between its context and the + referenced object. It does not contain metadata, as it does not + itself establish the existence of an object; it relies on a + definition located elsewhere. + + + + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\constraint\niem\ansi-nist\2.0\ansi-nist.xsd + + ANSI/NIST Fingerprint and Biometric standard. + + true + + + + + + + + + Plain left thumb + + + + + Left little + + + + + Right thumb + + + + + Unused field value in record types 3-6 + + + + + Plain right four + + + + + Right middle + + + + + Left and right thumbs + + + + + Right index + + + + + Left ring + + + + + Left middle + + + + + Right little + + + + + Complete friction ridge exemplars + + + + + Left index + + + + + Plain right thumb + + + + + Plain left four + + + + + Unknown, or every finger 1-10 + + + + + Left thumb + + + + + Right ring + + + + + + + + + + + + + + + + + + + + + + + Set of possible finger position codes, most probable position first. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\constraint\niem\ansi_d20\2.0\ansi_d20.xsd + + Motor vehicle administration codes from ANSI D20, the Data Dictionary for Traffic Record Systems, maintained by AAMVA, the American Association of Motor Vehicle Administrators. + + true + + + + + + + + + Non-incapacitating Evident Injury + + + + + Incapacitating Injury Accident + + + + + Unknown + + + + + Non-injury Accident + + + + + Possible Injury Accident + + + + + Fatal Accident + + + + + + + + + + + + + + + + Class "M" vehicles - Motorcycles, Mopeds, Motor-driven Cycles. + + + + + Class "B" vehicles - any single vehicle with a GVWR of 26,001 or more pounds, or any such vehicle towing a vehicle not in excess of 10,000 pounds GVWR [49 CFR 383.91(a)(2)]. (Holders of a Class B license may, with the appropriate endorsement, operate all Class C vehicles). + + + + + Class "C" vehicles - any single vehicle, or combination of vehicles, that meets neither the definition of Group A nor that of Group B, but that either is designed to transport 16 or more passengers including the driver, or is used in the transportation of materials found to be hazardous for the purposes of the Hazardous Materials Transportation Act and which require the motor vehicle to be placarded under the Hazardous Materials Regulations (49 CFR part 172, subpart F) [49 CFR 383.91(a)(3)]. + + + + + Class "A" vehicles - any combination of vehicles with a GCWR of 26,001 or more pounds, provided the GVWR of the vehicle(s) being towed is in excess of 10,000 pounds [49 CFR 383.91(a)(1)]. (Holders of a Class A license may, with the appropriate endorsement, operate all Class B & C vehicles). + + + + + + + + + + + + + + + + Other + + + + + Limited - other + + + + + Farm Waiver + + + + + Vehicles without Air Brakes + + + + + Mechanical Aid + + + + + Except Tractor-Trailer + + + + + Corrective lenses must be worn + + + + + CDL Intrastate Only + + + + + Outside Mirror + + + + + Automatic Transmission + + + + + Prosthetic Aid + + + + + Limit to Daylight Only + + + + + + + + + + + + + + + + Hazardous Materials + + + + + Unknown + + + + + No Hazardous Materials + + + + + + + + + + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\constraint\niem\fbi\2.0\fbi.xsd + + FBI code lists for National Crime and Information Center (NCIC-2000), National Incident-Based Reporting System (NIBRS), and National Law Enforcement Data Exchange (N-DEx). + + true + + + + + + + + + FULL EXTRADITION UNLESS OTHERWISE NOTED IN THE MIS FIELD + + + + + FULL EXTRADITION UNLESS OTHERWISE NOTED IN THE MIS FIELD (default value) + + + + + EXTRADITION - SURROUNDING STATES ONLY + + + + + EXTRADITION - SURROUNDING STATES ONLY + + + + + NO EXTRADITION + + + + + PENDING EXTRADITION - SEE MIS FIELD + + + + + LIMITED EXTRADITION - SEE MIS FIELD + + + + + FULL EXTRADITION + + + + + EXTRADITION - SURROUNDING STATES ONLY + + + + + NO EXTRADITION + + + + + LIMITED EXTRADITION SEE MIS FIELD (requires data in the MIS Field) + + + + + LIMITED EXTRADITION SEE MIS FIELD (requires data in the MIS Field) + + + + + NO EXTRADITION + + + + + PENDING EXTRADITION SEE MIS FIELD (requires data in the MIS Field) + + + + + PENDING EXTRADITION SEE MIS FIELD (requires data in the MIS Field) + + + + + + + + + + + + + + + + MULTICOLORED + + + + + GRAY + + + + + BLACK + + + + + MAROON + + + + + GREEN + + + + + BLUE + + + + + HAZEL + + + + + BROWN + + + + + UNKNOWN + + + + + PINK + + + + + + + + + + + + + + + + unknown + + + + + Hispanic + + + + + non Hispanic + + + + + + + + + + + + + + + + Orange + + + + + Pink + + + + + Blond or Strawberry + + + + + Gray or Partially Gray + + + + + UNKNOWN OR COMPLETELY BALD + + + + + Sandy + + + + + Brown + + + + + Blue + + + + + Black + + + + + Red or Auburn + + + + + White + + + + + Green + + + + + Purple + + + + + + + + + + + + + + + + British Virgin Islands + + + + + West Bank + + + + + Lithuania + + + + + Bassas Da India (French possession) + + + + + CITIZEN BAND POTTAWATOMIE TRIBE + + + + + Morelos + + + + + Bonaire (Netherlands Antilles) + + + + + Guam + + + + + Libya + + + + + Guatemala + + + + + Ukraine + + + + + California + + + + + Tajikistan + + + + + New Zealand + + + + + Slovenia + + + + + French Guiana + + + + + Saudi Arabia + + + + + Howland Island + + + + + Iran + + + + + Bolivia + + + + + North Carolina + + + + + Martinique + + + + + Wisconsin + + + + + Kingman Reef + + + + + French Southern and Antartic Lands + + + + + Indonesia (now includes Portuguese Timor) + + + + + Sonora + + + + + Midway Islands + + + + + Alaska + + + + + New Brunswick + + + + + Mauritius + + + + + Mariana Islands + + + + + Armenia + + + + + Maryland + + + + + Macao (now spelled Macau) + + + + + South Africa + + + + + Prince Edward Island + + + + + Guyana + + + + + Liberia + + + + + Mayotte + + + + + Uganda + + + + + Chile + + + + + Hong Kong + + + + + Queretaro + + + + + District of Columbia + + + + + Manahiki Island + + + + + Ireland (does not include NorthernIreland, see Northern Ireland) + + + + + Japan + + + + + Seychelles + + + + + Cape Verde Islands + + + + + Luxembourg + + + + + Republic of Congo, Brazzaville + + + + + Costa Rica + + + + + India + + + + + Fiji + + + + + Tonga + + + + + Svalbard + + + + + Tamaulipas + + + + + Ellice Islands (now Tuvalu) + + + + + Saint Helena + + + + + Parcel Islands + + + + + Brunei + + + + + Tunisia + + + + + Nicaragua + + + + + Devil's Lake Sioux Tribe + + + + + South Dakota + + + + + Liechtenstein + + + + + Niue + + + + + Gabon + + + + + Russia + + + + + Northern Ireland + + + + + Dominican Republic + + + + + New Guinea (now Papua New Guinea) + + + + + Arkansas + + + + + Slovakia + + + + + CHEYENNE & ARAPAHO TRIBES + + + + + Coral Sea Islands (Australian territory) + + + + + Qatar + + + + + Saint Vincent and the Grenadines + + + + + Israel + + + + + Equatorial Guinea + + + + + Sweden + + + + + Chihuahua + + + + + Philippines + + + + + Jordan + + + + + Gambia, The + + + + + WYANDOTTE TRIBE + + + + + Hungary + + + + + SEMINOLE NATION + + + + + Pennsylvania + + + + + Maldives + + + + + U.S. Virgin Islands + + + + + Spain + + + + + Kenya + + + + + Utah + + + + + Tromelin Island (French possession) + + + + + Nayarit + + + + + Rhodesia (now Zimbabwe) + + + + + Cyprus + + + + + Belgium + + + + + Nevada + + + + + PAWNEE TRIBE + + + + + Alberta + + + + + Togo + + + + + Michoacan + + + + + Madagascar (included in Malagasy Republic) + + + + + Nepal + + + + + Socialist Republic of Vietnam + + + + + Europa Island (French possession) + + + + + Czech Republic + + + + + Mexico (State) + + + + + Ontario + + + + + Okinawa + + + + + Clipperton Island (French possession) + + + + + APACHE TRIBE + + + + + Eretria + + + + + Caroline Islands + + + + + Taiwan, Republic of China + + + + + Baker Island + + + + + Puebla + + + + + Leech Lake Band of Chippewa + + + + + Colombia + + + + + Idaho + + + + + Palmyra Atoll + + + + + Sinaloa + + + + + Palau, Republic of + + + + + West Virginia + + + + + Benin (formerly Dahomey) + + + + + Aruba (now independent of NetherlandsAntilles) + + + + + Iraq + + + + + French Polynesia + + + + + Western Samoa + + + + + Djibouti + + + + + New Caledonia + + + + + Louisiana + + + + + Monaco + + + + + New Hampshire + + + + + Quintana Roo + + + + + Syria + + + + + Sac & Fox + + + + + Iowa + + + + + Central African Republic + + + + + Burma + + + + + Guinea + + + + + Pitcairn,Henderson, Ducie, and OenoIslands + + + + + Nevis and Saint Christopher "Kitts" + + + + + Norway + + + + + Kuwait + + + + + Trucial States (now United Arab Emirates) + + + + + Egypt (formerly United Arab Republic) + + + + + Jersey + + + + + Bahrain/Bahrein + + + + + Reunion + + + + + Dominica + + + + + Maine + + + + + North Dakota + + + + + Yukon (Territory) + + + + + Gilbert Islands (now Kiribati) + + + + + Honduras + + + + + Namibia (South-West Africa) + + + + + OTOE-MISSOURIA TRIBE + + + + + PONCA TRIBE + + + + + Rhode Island + + + + + Ceylon (Now Sri Lanka) + + + + + Botswana + + + + + Marshall Islands + + + + + MIAMI TRIBE + + + + + Poland + + + + + Gibraltar + + + + + Burkina Faso (known as Burkina,formerly Upper Volta) + + + + + Kiowa + + + + + OSAGE NATION + + + + + Tennessee + + + + + Greenland + + + + + Falkland Islands + + + + + North Korea + + + + + Red Lake + + + + + Guernsey + + + + + San Marino + + + + + England + + + + + Argentina + + + + + Malta + + + + + New York + + + + + Croatia + + + + + Cayman Islands + + + + + Absentee Shawnee + + + + + Oregon + + + + + South Carolina + + + + + Jan Mayen + + + + + Swaziland + + + + + New Mexico + + + + + Kentucky + + + + + Cook Islands + + + + + British Solomon Islands (now SolomonIslands) + + + + + Baja California (Northern Section) + + + + + Vermont + + + + + Bahamas, The + + + + + Panama + + + + + Cameroon + + + + + Bermuda + + + + + Portugal + + + + + Chad + + + + + Iceland + + + + + Colorado + + + + + Navassa Island + + + + + Cuba + + + + + Federated States of Micronesia + + + + + Rwanda + + + + + San Luis Potosi + + + + + Sao Tome and Principe + + + + + Bhutan + + + + + Congo Kinshasa, now Zaire + + + + + Macedonia + + + + + Comoros (or Comoros Islands) + + + + + Morocco + + + + + Nigeria + + + + + Senegal + + + + + Guadeloupe + + + + + Shakopee + + + + + Georgia + + + + + Ethiopia + + + + + Pakistan + + + + + United States of America (USA) (Should beused in the following circumstances:1. To indicate the LIS + + + + + Delaware + + + + + Jalisco + + + + + Washington + + + + + Switzerland + + + + + Yucatan + + + + + Menominee + + + + + Thailand + + + + + Lesotho + + + + + Manitoba + + + + + Russian Federation + + + + + Georgia + + + + + Algeria + + + + + Chiapas + + + + + Spratly Islands + + + + + Connecticut + + + + + Faroe Islands + + + + + Surinam + + + + + Andorra + + + + + Baja California (Southern Section) + + + + + Uzbekistan + + + + + Missouri + + + + + Balearic Islands + + + + + Florida + + + + + Bosnia and Hercegovenia + + + + + Ashmore and Cartier Islands + + + + + Republic of Yemen + + + + + El Salvador + + + + + France + + + + + Albania + + + + + Michigan + + + + + Hawaii + + + + + Antigua and Barbuda (formerly Antigua) + + + + + Mexico (See separate list of MexicanStates; use code MM only when state isunknown) + + + + + Hidalgo + + + + + Angola + + + + + Tanzania, United Republic of + + + + + LATVIA + + + + + Austria + + + + + Kansas + + + + + Tuamotu Archipelago + + + + + Sierre Leone (Sierra Leone) + + + + + Malawi + + + + + Cote d'Ivoire (Ivory Coast) + + + + + Peru + + + + + Haiti + + + + + Oglala Sioux + + + + + Burundi + + + + + Laos + + + + + Bulgaria + + + + + Indiana + + + + + Oaxaca + + + + + Byelarus + + + + + Oklahoma + + + + + West Indies (for West Indies Islands notfound separately listed) + + + + + Azores Islands + + + + + Mozambique + + + + + Glorioso Islands (French possession) + + + + + South Korea + + + + + Johnston Island + + + + + Ohio + + + + + Turtle Mtn. Band of Chipewa + + + + + Newfoundland (includes Labrador) + + + + + South Georgia and the South SandwichIslands + + + + + Scotland + + + + + Niger + + + + + Guerrero + + + + + Christmas Island + + + + + Saint Lucia + + + + + Singapore + + + + + Colima + + + + + Distrito Federal (Mexico, D. F.) + + + + + Jamaica + + + + + Australia + + + + + Kyrgyzstan + + + + + IOWA TRIBE + + + + + Isle of Man + + + + + Venezuela + + + + + Juan de Nova Island + + + + + Nauru + + + + + WICHITA TRIBE + + + + + All others (Any foreign country/dependency/territory not included inthe above abbreviation list is t + + + + + Nova Scotia + + + + + Canal Zone + + + + + Veracruz + + + + + Somalia + + + + + MUSCOGEE (CREEK) TRIBE + + + + + Illinois + + + + + Canada(See separate list of CanadianProvinces; use code CD only whenprovince is unknown.) + + + + + Germany (East Germany: 1945-1989,for reference only)(West Germany: 1945-1989, for referenceonly) + + + + + Grenada + + + + + Italy (includes Sicily and Sardinia) + + + + + Azerbaijan + + + + + Coahuila + + + + + Uruguay + + + + + Malaysia + + + + + COMANCHE NATION + + + + + Cambodia (formerly Khmer Republic& Kampuchea) + + + + + KICKAPOO TRIBE + + + + + Belize (formerly British Honduras) + + + + + Norfolk Island + + + + + Guinea-Bissau (formerly Portuguese Guinea) + + + + + Canary Islands + + + + + Mille Lacs + + + + + Saint Pierre and Miquelon + + + + + Lac du Flambeau Band of Lake SuperiorChippewa + + + + + Madeira Islands + + + + + Tlaxcala + + + + + New Hebrides (now Vanuatu) + + + + + SENECA-CAYUGA TRIBES + + + + + Denmark + + + + + Sudan + + + + + Greece + + + + + Zambia + + + + + Romania/Rumania + + + + + Massachusetts + + + + + Wyoming + + + + + Holland (Netherlands) + + + + + Bangladesh + + + + + Lebanon + + + + + Nebraska + + + + + Virginia + + + + + British Indian Ocean Territory + + + + + Afghanistan + + + + + Wake Island + + + + + Alabama + + + + + Oman + + + + + New Jersey + + + + + Turkmenistan + + + + + Anguilla + + + + + Spanish Sahara (now Western Sahara) + + + + + Saskatchewan + + + + + Brazil + + + + + Puerto Rico + + + + + Kazakhstan + + + + + Tabasco + + + + + Turkey + + + + + Arizona + + + + + White Earth + + + + + Heard Island and McDonald Island + + + + + Nuevo Leon + + + + + Oneida Tribe of Indians of Wisconsin + + + + + Ecuador + + + + + Vatican City + + + + + Durango + + + + + Zacatecas + + + + + Trinidad and Tobago + + + + + Unknown Place of Birth (for use in IIIrecords only) + + + + + Mali + + + + + Estonia + + + + + Campeche + + + + + Texas + + + + + Trust Territory of the Pacific Islands + + + + + Mauritania + + + + + Guanajuato + + + + + Aguascalientes + + + + + Moldova + + + + + British Columbia + + + + + Turks and Calcos Islands + + + + + Barbados + + + + + Yugoslavia + + + + + Wallis and Futuna (French territory) + + + + + Tokelau + + + + + Montana + + + + + Montserrat + + + + + Fond du Lac + + + + + Mississippi + + + + + Northwest Territories + + + + + People's Republic of China + + + + + Jarvis Island + + + + + Paraquay + + + + + Ghana + + + + + Finland + + + + + Gaza + + + + + American Samoa (Islands) + + + + + Mongolia + + + + + Wales + + + + + Quebec + + + + + Bouvet Island (Norwegian territory) + + + + + Cocos (Keeling) Islands (Australiandependency) + + + + + Minnesota + + + + + + + + + + + + + + + + NORTH DAKOTA + + + + + VERMONT + + + + + BRITISH COLUMBIA + + + + + NEVADA + + + + + ITALY + + + + + ILLINOIS + + + + + MEXICO CITY + + + + + PUERTO RICO + + + + + MASSACHUSETTS + + + + + OKLAHOMA + + + + + PENNSYLVANIA + + + + + MONTANA + + + + + SOUTH CAROLINA + + + + + IOWA + + + + + HAWAII + + + + + FLORIDA + + + + + MISSOURI + + + + + NEW YORK + + + + + CALIFORNIA + + + + + WEST VIRGINIA + + + + + COLORADO + + + + + UTAH + + + + + TENNESSEE + + + + + MICHIGAN + + + + + VIRGINIA + + + + + ALABAMA + + + + + ROYAL CANADIAN MP + + + + + NEW BRUNSWICK + + + + + ALASKA + + + + + SOUTH DAKOTA + + + + + IDAHO + + + + + TEXAS + + + + + ARIZONA + + + + + ALBERTA + + + + + SASKATCHEWAN + + + + + NEW HAMPSHIRE + + + + + LOUISIANA + + + + + GEORGIA + + + + + MINNESOTA + + + + + MAINE + + + + + NEW MEXICO + + + + + QUEBEC + + + + + WASHINGTON + + + + + NORTH CAROLINA + + + + + ARKANSAS + + + + + OTHER CANADA + + + + + KENTUCKY + + + + + GUAM + + + + + WYOMING + + + + + MISSISSIPPI + + + + + VIRGIN ISLANDS + + + + + NORTHWEST TERRITORIES + + + + + MARYLAND + + + + + YUKON + + + + + OREGON + + + + + DELAWARE + + + + + NEW JERSEY + + + + + PRINCE EDWARD ISLAND + + + + + CONNECTICUT + + + + + WASHINGTON D.C. + + + + + NEWFOUNDLAND + + + + + MANITOBA + + + + + UNITED STATES + + + + + KANSAS + + + + + RHODE ISLAND + + + + + NEBRASKA + + + + + ONTARIO + + + + + INDIANA + + + + + OHIO + + + + + WISCONSIN + + + + + ENGLAND + + + + + NOVA SCOTIA + + + + + + + + + + + + + + + + SEX ASSLT - SODOMY-GIRL-STGARM + + + + + DRIVING UNDER INFLUENCE ALCOHOL + + + + + EXPLOITATION/ENTICEMENT + + + + + KICKBACK - GIVING + + + + + SPORTS TAMPERING + + + + + OBSCENE MATERIAL - MFR + + + + + HOMICIDE - WILLFUL KILL-PUB OFF-WEAPON + + + + + DRUGS - MISBRANDED + + + + + ESTABLISH GAMBLING PLACE + + + + + MARIJUANA - POSSESS + + + + + KIDNAP ADULT TO SEXUALLY ASSLT + + + + + SEX ASSAULT-ELDERLY + + + + + EMBEZZLE - PUBLIC PROP + + + + + NEGLECT ELDERLY + + + + + MARIJUANA - PRODUCING + + + + + PERJURY - SUBORNATION OF + + + + + SEX OFFENSE + + + + + THEFT OF US GOVT PROP + + + + + THEFT VEH BY BAILEE + + + + + FRAUD - FALSE STATEMENT + + + + + EXPLOSIVES - POSSESSING + + + + + KIDNAP MINOR + + + + + RAPE WITH WEAPON + + + + + HOMICIDE - WILLFUL KILL-FAMILY-GUN + + + + + CARD GAME + + + + + COMPOUNDING CRIME + + + + + AGGRAV ASSLT - PUB OFF-STGARM + + + + + COSMETICS - ADULTERATED + + + + + LIQUOR TAX + + + + + FORGERY + + + + + CONDIT RELEASE VIOLATION + + + + + ROBBERY - BUSINESS-STGARM + + + + + PROSTITUTION + + + + + LIQUOR - TRANSPORT + + + + + HALLUCINOGEN - POSSESS + + + + + THREAT - FEDERAL PROTECTEES + + + + + RIOT - ENGAGING IN + + + + + MANDATORY RELEASE VIOLATION + + + + + HOMICIDE - NEGLIG MANSL-WEAPON + + + + + INCEST WITH MINOR + + + + + OPIUM OR DERIV - POSSESS + + + + + SEXUAL EXPLOITATION OF MINOR-EXHIBITION OF MINOR + + + + + DAMAGE PROPERTY + + + + + KIDNAP ADULT + + + + + LOTTERY - OPERATING + + + + + HOMOSEXUAL ACT WITH WOMAN + + + + + WITNESS - DECEIVING + + + + + SEX ASSLT - SODOMY-MAN-WEAPON + + + + + TRANSPORT TOOLS FOR FORGERY/COUNTERFEITING + + + + + SEXUAL EXPLOITATION OF MINOR-VIA TELECOMMUNICATIONS + + + + + VEHICLE THEFT + + + + + PUBLIC ORDER CRIMES SEE MIS + + + + + SMUGGLE CONTRABAND INTO PRISON + + + + + RESISTING OFFICER + + + + + DIVULGE MESSAGE CONTENTS + + + + + OPIUM OR DERIV - SELL + + + + + BESTIALITY + + + + + FORCIBLE PURSE SNATCHING + + + + + MISCONDUCT - JUDIC OFFICER + + + + + MILITARY + + + + + RAPE - GUN + + + + + AGGRAV ASSLT - FAMILY-STGARM + + + + + DAMAGE PROP - PRIVATE + + + + + MILITARY DESERTION + + + + + SEXUAL EXPLOITATION OF MINOR-MATERIAL-PHOTOGRAPH + + + + + ROBBERY - RESID-GUN + + + + + RIOT - INCITING + + + + + EXTORT - THREAT DAMAGE PROP + + + + + SALES TAX + + + + + PASS FORGED + + + + + LIQUOR - MFR + + + + + LARC - FROM AUTO + + + + + OBSCENE MATERIAL - DISTRIB + + + + + ARSON - BUSINESS-DEFRAUD INSURER + + + + + LICENSING - REGISTRATION WEAPON + + + + + ARSON - PUB-BLDG + + + + + SABOTAGE + + + + + ENTICEMENT OF MINOR FOR INDECENT PURPOSES-VIA TELECOMMUNICATIONS + + + + + CARRYING CONCEALED WEAPON + + + + + DISORD CONDUCT + + + + + GAMBLING DEVICE + + + + + SYNTH NARCOTIC - SMUGGL + + + + + FORGERY OF CHECKS + + + + + FREQUENT HOUSE ILL FAME + + + + + DIVULGE EAVESDROP INFO + + + + + POSSESS TOOLS FOR FORGERY/COUNTERFEITING + + + + + CRUELTY TOWARD DISABLED + + + + + RECEIV STOLEN VEH + + + + + AGGRAV ASSLT - POL OFF-WEAPON + + + + + AGGRAV ASSLT - NONFAMILY-GUN + + + + + SYNTH NARCOTIC + + + + + RAPE - STRONGARM + + + + + COMMERCIAL SEX - HOMOSEXUAL PROSTITUTION + + + + + HIT AND RUN + + + + + AGGRAV ASSLT - POL OFF-GUN + + + + + BURGL TOOLS - POSSESS + + + + + ABORTIFACIENT + + + + + OBSTRUCT POLICE + + + + + EXTORTION + + + + + CONSERVATION - BIRDS + + + + + ESCAPE SEE MIS + + + + + LARC - PARTS FROM VEH + + + + + RECEIVE STOLEN PROP + + + + + SEX ASSAULT-DISABLED + + + + + TRANSPORT INTERSTATE FOR COMMERCIALIZED SEX + + + + + COCAINE - SELL + + + + + OBSCENE MATERIAL + + + + + CONSERVATION - LICENSE-STAMP + + + + + POSSESS STOLEN PROP + + + + + COUNTERFEITING + + + + + AIDING PRISONER ESCAPE SEE MIS + + + + + HOMICIDE - WILLFUL KILL-WEAPON + + + + + ARSON - RESID-DEFRAUD INSURER + + + + + HALLUCINOGEN - MFR + + + + + CONSERVATION - ANIMALS + + + + + NEGLECT FAMILY + + + + + SMUGGLE CONTRABAND + + + + + BURNING OF-SEE MIS + + + + + KIDNAP MINOR-PARENTAL + + + + + STOLEN PROPERTY + + + + + INTIMIDATION (INCLUDES STALKING) + + + + + HOMOSEXUAL ACT WITH MAN + + + + + INDECENT EXPOSURE TO MINOR + + + + + DICE GAME - OPERATING + + + + + ABSCOND WHILE ON PROBATION + + + + + SOUGHT FOR VIOLATION OF NATIONAL SECURITY REGISTRATION + + + + + FRAUD - ILLEG USE CREDIT CARDS + + + + + ABORTION + + + + + ALTERING IDENTIFICATION ON WEAPON + + + + + UNAUTH USE OF VEH + + + + + BARBITURATE - POSSESS + + + + + INDECENT EXPOSURE TO ADULT + + + + + HOMICIDE - WILLFUL KILL-POL OFF-WEAPON + + + + + CONSERVATION + + + + + HOMICIDE - WILLFUL KILL-POL OFF-GUN + + + + + DRUGS - HEALTH OR SAFETY + + + + + ESCAPE FROM CUSTODY + + + + + SEX ASSLT - SODOMY-GIRL-GUN + + + + + DAMAGE PROP - BUSINESS-WITH EXPLOSIVE + + + + + PROCURE FOR PROSTITUTE WHO IS AN ADULT + + + + + FAMILY OFFENSE + + + + + BURGL - FORCED ENTRY-NONRESID + + + + + NONPAYMENT OF ALIMONY + + + + + THREAT TO BURN + + + + + OBSTRUCT SEE MIS + + + + + SYNTH NARCOTIC - SELL + + + + + BARBITURATE - MFR + + + + + LIQUOR + + + + + OBSCENITY + + + + + BURGL - BANKING-TYPE INST + + + + + AGGRAV ASSLT - GUN + + + + + TRANSPORT FORGED - SEE MIS + + + + + TRANSMIT WAGER INFORMATION + + + + + KICKBACK - RECEIVING + + + + + ABORTIONAL ACT ON OTHER + + + + + SEX ASSLT - SODOMY-WOMAN-STGARM + + + + + KICKBACK - OFFERING + + + + + FALSE IMPRISONMENT-MINOR-NONPARENTAL + + + + + NEGLECT DISABLED + + + + + SMUGGLING ALIENS + + + + + MARIJUANA + + + + + SEX OFFENSE-ELDERLY + + + + + AGGRAV ASSLT - FAMILY-WEAPON + + + + + THEFT AND SALE VEH + + + + + KIDNAP MINOR FOR RANSOM + + + + + CARJACKING - ARMED + + + + + HEROIN - SELL + + + + + GRATUITY - RECEIVING + + + + + CIVIL RIGHTS + + + + + FRAUD + + + + + BURGLARY + + + + + AGGRAV ASSLT - POL OFF-STGARM + + + + + SEDITION + + + + + GAMBLING DEVICE - NOT REGISTERED + + + + + ROBBERY - BUSINESS-GUN + + + + + TAX REVENUE + + + + + RAPE-DRUG-INDUCED + + + + + PROPERTY CRIMES SEE MIS + + + + + CRUELTY TOWARD CHILD + + + + + FAILURE TO MOVE ON + + + + + DRUGS - ADULTERATED + + + + + LARC - FROM SHIPMENT + + + + + BRIBE + + + + + EVIDENCE - DESTROYING + + + + + INCENDIARY DEVICE - TEACHING USE + + + + + SEX ASSLT - SODOMY-MAN-STGARM + + + + + BURGL - FORCED ENTRY-RESID + + + + + RIOT - INTERFERE FIREMAN + + + + + WEAPON OFFENSE + + + + + HALLUCINOGEN + + + + + EXPLOSIVES - TRANSPORTING + + + + + GRATUITY - GIVING + + + + + AGGRAV ASSLT - FAMILY-GUN + + + + + LARC - FROM BANKING-TYPE INST + + + + + SUBMISSION TO ABORTIONAL ACT + + + + + STAT RAPE - NO FORCE + + + + + BRIBE - GIVING + + + + + ROBBERY - RESID-WEAPON + + + + + SEXUAL EXPLOITATION OF MINOR-MATERIAL-FILM + + + + + CRIMES AGAINST PERSON SEE MIS + + + + + EXPLOSIVES - USING + + + + + THEFT AND STRIP VEH + + + + + EXTORT - THREAT INJURE PERSON + + + + + SMUGGLING + + + + + COSMETICS - MISBRANDED + + + + + HOMICIDE - WILLFUL KILL-GUN + + + + + LARCENY + + + + + WEAPON TRAFFICKING + + + + + KIDNAP MINOR-NONPARENTAL + + + + + ARSON - BUSINESS + + + + + EMBEZZLE - BUSINESS PROP + + + + + ABSCOND WHILE ON PAROLE + + + + + FALSE IMPRISONMENT-MINOR-PARENTAL + + + + + OBSTRUCTING JUSTICE + + + + + PEEPING TOM + + + + + COCAINE + + + + + OBSCENE MATERIAL - TRANSPORT + + + + + AMPHETAMINE - MFR + + + + + CONTEMPT OF CONGRESS + + + + + MARIJUANA - SELL + + + + + ASSEMBLY - UNLAWFUL + + + + + EMBEZZLE - POSTAL + + + + + IMMIGRATION + + + + + CROSSING POLICE LINES + + + + + STATE/LOCAL - MATERIAL WITNESS + + + + + SELECTIVE SERVICE + + + + + ARSON + + + + + LARC - FROM BLDG + + + + + SALE OF STOLEN PROP + + + + + NARCOTIC EQUIP - POSSESS + + + + + BRIBERY + + + + + RIOT - INTERFERE OFFICER + + + + + SEX ASSLT - SODOMY-BOY-WEAPON + + + + + DRIVING UNDER INFLUENCE DRUGS + + + + + ROBBERY - STREET-GUN + + + + + FRAUD - IMPERSON + + + + + CONTEMPT OF COURT - SEE MIS + + + + + FLIGHT-ESCAPE + + + + + INCENDIARY DEVICE - USING + + + + + SEX OFFENDER REGISTRATION VIOLATION(SEE MIS) + + + + + EXTORT - THREAT OF INFORMING OF VIO + + + + + OBSCENE MATERIAL - SELL + + + + + INCEST WITH ADULT + + + + + HOMICIDE - WILLFUL KILL-PUB OFF-GUN + + + + + BRIBE - OFFERING + + + + + PAROLE VIOLATION - SEE MIS + + + + + INCENDIARY DEVICE - POSSESS + + + + + ASSAULT + + + + + SEX ASSLT - CARNAL ABUSE + + + + + NEGLECT CHILD + + + + + ROBBERY - STREET-STGARM + + + + + COMMERCIAL SEX + + + + + EMBEZZLE + + + + + BURGL - NO FORCED ENTRY-RESID + + + + + ILLEGAL ENTRY + + + + + FOOD - MISBRANDED + + + + + GAMBLING GOODS + + + + + SEX OFFENSE-DISABLED + + + + + PASS COUNTERFEITED + + + + + GRATUITY - OFFERING + + + + + DAMAGE PROP - PUBLIC-WITH EXPLOSIVE + + + + + AGGRAV ASSLT - PUB OFF-WEAPON + + + + + SEXUAL EXPLOITATION OF MINOR-PROSTITUTION + + + + + THREAT - TERRORISTIC - STATE OFFENSES + + + + + HARASSING COMMUNICATION + + + + + LARC - FROM YARDS + + + + + SEX ASSLT - SODOMY-WOMAN-GUN + + + + + SEX ASSLT - SODOMY-BOY-GUN + + + + + OPIUM OR DERIV - SMUGGL + + + + + DAMAGE PROP - BUSINESS + + + + + GAMBLING DEVICE - TRANSPORT + + + + + SEXUAL EXPLOITATION OF MINOR-MATERIAL-TRANSPORT + + + + + COSMETICS - HEALTH OR SAFETY + + + + + GRATUITY + + + + + VOYEURISM + + + + + ROBBERY - RESID-STGARM + + + + + AGGRAV ASSLT - WEAPON + + + + + POSSESS STOLEN VEHICLE + + + + + KIDNAP MINOR TO SEXUALLY ASSLT + + + + + GAMBLING + + + + + PROB VIOLATION - SEE MIS + + + + + CONCEAL STOLEN PROP + + + + + AMPHETAMINE + + + + + GAMBLING GOODS - TRANSPORT + + + + + AGGRAV ASSLT - NONFAMILY-STGARM + + + + + DIVULGE EAVESDROP ORDER + + + + + HOMOSEXUAL ACT WITH GIRL + + + + + FAILURE TO REGISTER AS A SEX OFFENDER + + + + + BOOKMAKING + + + + + ANTITRUST + + + + + FRAUD - SWINDLE + + + + + CONTRIB DELINQ MINOR + + + + + ALIEN UNLAWFULLY PRESENT DUE TO ORDER OF REMOVAL OR EXCLUSION FROM THE USA + + + + + AIRCRAFT THEFT + + + + + RAPE-ELDERLY + + + + + ABDUCT - NO RANSOM OR ASSLT + + + + + THREAT TO BOMB + + + + + HOMOSEXUAL ACT WITH BOY + + + + + TREASON MISPRISION + + + + + DANGEROUS DRUGS + + + + + STOLEN VEHICLE + + + + + EMBEZZLE - INTERSTATE SHIPMENT + + + + + FOOD - ADULTERATED + + + + + DESECRATING FLAG + + + + + SEXUAL ASSAULT-DRUG-INDUCED + + + + + FEDERAL - MATERIAL WITNESS + + + + + HOMICIDE - JOHN OR JANE DOE - NO WARRANT + + + + + MAIL FRAUD + + + + + PROCURE FOR PROSTITUTE WHO IS A MINOR + + + + + ELECTION LAWS + + + + + MARIJUANA - SMUGGL + + + + + SEXUAL EXPLOITATION OF MINOR-SEX PERFORMANCE + + + + + FALSE CITIZENSHIP + + + + + LARC ON US GOVT RESERV + + + + + BAIL - PERSONAL RECOG + + + + + WIRETAP - FAILURE TO REPORT + + + + + AMPHETAMINE - POSSESS + + + + + INCOME TAX + + + + + HEROIN - SMUGGL + + + + + OBSTRUCT CRIMINAL INVEST + + + + + COCAINE - POSSESS + + + + + FAILURE REPORT CRIME + + + + + LARC - FROM MAILS + + + + + BIGAMY + + + + + TRANSPORT INTERSTATE STOLEN PROP + + + + + KIDNAP ADULT FOR RANSOM + + + + + AGGRAV ASSLT - PUB OFF-GUN + + + + + GAMBLING GOODS - POSSESS + + + + + UNAUTH COMMUNICATION WITH PRISONER + + + + + KIDNAPPING + + + + + TRANSPORT COUNTERFEITED - SEE MIS + + + + + LIQUOR - SELL + + + + + ENTICEMENT OF MINOR FOR PROSTITUTION + + + + + OBSTRUCTING COURT ORDER + + + + + MORALS - DECENCY CRIMES SEE MIS + + + + + RIOT + + + + + CONTEMPT OF LEGISLATURE + + + + + TRANSP DANGEROUS MATERIAL + + + + + ABORTIONAL ACT ON SELF + + + + + EMBEZZLE - BANKING-TYPE INST + + + + + FRAUD - INSUFF FUNDS CHECK + + + + + TRAFFIC OFFENSE + + + + + LARC - FROM COIN MACHINE + + + + + ROBBERY - BANKING-TYPE INST + + + + + LIQUOR - POSSESS + + + + + WITNESS - DISSUADING + + + + + ARSON - RESID-ENDANGERED LIFE + + + + + SEX ASSAULT + + + + + BURGL - NO FORCED ENTRY-NONRESID + + + + + DAMAGE PROP - PUBLIC + + + + + SUBJECT IS A DEPORTED CRIMINAL/AGGRAVATED FELON + + + + + FOOD - HEALTH OR SAFETY + + + + + TRESPASSING + + + + + SYNTH NARCOTIC - POSSESS + + + + + FLIGHT TO AVOID SEE MIS + + + + + ROBBERY - BUSINESS-WEAPON + + + + + HEROIN + + + + + PROCURE FOR PROSTITUTE (PIMPING) + + + + + LARC - POSTAL + + + + + EXPLOSIVES - TEACHING USE + + + + + HOMICIDE - NEGLIG MANSL-VEH + + + + + HEROIN - POSSESS + + + + + LOTTERY + + + + + EAVESDROP EQUIP + + + + + PURSE SNATCHING - NO FORCE + + + + + BRIBE - RECEIVING + + + + + BARBITURATE - SELL + + + + + FORGERY OF + + + + + KIDNAP HOSTAGE FOR ESCAPE + + + + + ILLEGAL ARREST + + + + + RAPE-DISABLED + + + + + MONEY LAUNDERING + + + + + SEDUCTION OF ADULT + + + + + ESPIONAGE + + + + + FRAUD AND ABUSE, COMPUTER + + + + + OPENING SEALED COMMUNICATION + + + + + HALLUCINOGEN - SELL + + + + + POCKETPICKING + + + + + BURGL - SAFE-VAULT + + + + + PUBLIC PEACE + + + + + HOMICIDE + + + + + GAMBLING DEVICE - POSSESS + + + + + CONFLICT OF INTEREST + + + + + FAILURE TO APPEAR - SEE MIS + + + + + AMPHETAMINE - SELL + + + + + CARD GAME - OPERATING + + + + + CARRYING PROHIBITED WEAPON + + + + + HALLUCINOGEN - DISTRIB + + + + + SELLING WEAPON + + + + + ENTICEMENT OF MINOR FOR INDECENT PURPOSES + + + + + STRIP STOLEN VEH + + + + + VIOLATION OF A COURT ORDER + + + + + SMUGGLE TO AVOID PAYING DUTY + + + + + FRAUD - CONFIDENCE GAME + + + + + HOMICIDE - WILLFUL KILL-NONFAMILY-GUN + + + + + SEXUALLY VIOLATE HUMAN REMAINS/NECROPHILIA + + + + + EAVESDROPPING + + + + + HOMICIDE - WILLFUL KILL-FAMILY-WEAPON + + + + + BARBITURATE + + + + + CRUELTY TOWARD ELDERLY + + + + + ARSON - PUB-BLDG-ENDANGERED LIFE + + + + + OBSCENE COMMUNICATION + + + + + ROBBERY + + + + + SEX OFFENSE - AGAINST CHILD-FONDLING + + + + + DICE GAME + + + + + ARSON - BUSINESS-ENDANGERED LIFE + + + + + TRANSPORT INTERSTATE FOR SEXUAL ACTIVITY + + + + + SEX ASSLT - SODOMY-MAN-GUN + + + + + LARC - FROM INTERSTATE SHIPMENT + + + + + CONSERVATION - ENVIRONMENT + + + + + KICKBACK + + + + + HOMICIDE - WILLFUL KILL-NONFAMILY-WEAPON + + + + + CONSERVATION - FISH + + + + + OPIUM OR DERIV + + + + + OBSCENE MATERIAL - POSSESS + + + + + TREASON + + + + + INTERSTATE TRANSP STOLEN VEH + + + + + ARSON - RESID + + + + + ANARCHISM + + + + + NONSUPPORT OF PARENT + + + + + SHOPLIFTING + + + + + EXTORT - THREAT ACCUSE PERSON OF CRIME + + + + + SEX ASSLT - SODOMY-GIRL-WEAPON + + + + + COUNTERFEITING OF + + + + + POSSESS COUNTERFEITED - SEE MIS + + + + + INVADE PRIVACY + + + + + POSSESS FORGED - SEE MIS + + + + + MOLESTATION OF MINOR + + + + + LOTTERY - RUNNER + + + + + BAIL - SECURED BOND + + + + + FRAUD - BY WIRE + + + + + KIDNAP - HIJACK AIRCRAFT + + + + + POSSESSION OF WEAPON + + + + + EXTORT - THREAT INJURE REPUTATION + + + + + PERJURY + + + + + CRUELTY TOWARD WIFE + + + + + REFUSING TO AID OFFICER + + + + + SEX ASSLT - SODOMY-BOY-STGARM + + + + + FIRING WEAPON + + + + + DAMAGE PROP - PRIVATE-WITH EXPLOSIVE + + + + + LEWD OR LASCIVIOUS ACTS WITH MINOR + + + + + ROBBERY - STREET-WEAPON + + + + + INDECENT EXPOSURE (TO MINORS AND ADULTS) + + + + + HARBORING ESCAPE/FUGITIVE + + + + + OBSCENE MATERIAL - MAILING + + + + + KEEPING HOUSE ILL FAME + + + + + RAPE + + + + + OBSTRUCT CORRESPONDENCE + + + + + MAKING FALSE REPORT + + + + + SUBJECT IS A THREAT TO A U.S. SECRET SERVICE PROTECTEE + + + + + SIMPLE ASSLT + + + + + COCAINE - SMUGGL + + + + + AGGRAV ASSLT - NONFAMILY-WEAPON + + + + + SEX ASSLT - SODOMY-WOMAN-WEAPON + + + + + HEALTH - SAFETY + + + + + THEFT AND USE VEH OTHER CRIME + + + + + SOVEREIGNTY + + + + + TRNSP FEMALE INTERSTATE FOR IMMORAL PURP + + + + + + + + + + + + + + + + BLACK + + + + + AMERICAN INDIAN + + + + + UNKNOWN + + + + + WHITE + + + + + ASIAN + + + + + + + + + + + + + + + + UNKNOWN - FOR UNIDENTIFIED ONLY + + + + + FEMALE + + + + + MALE + + + + + + + + + + + + + + + + Toe(s), nonspecific, tattoo + + + + + Amphetamines (includes stimulants,speed, etc.) + + + + + Artificial hip joint + + + + + Ear, right + + + + + Foot, nonspecific + + + + + Breast, left + + + + + Forearm, nonspecific, discolored + + + + + Hand, right + + + + + Stomach + + + + + Buttocks, nonspecific + + + + + Extra toe(s), left + + + + + Buttocks, nonspecific + + + + + Toe(s), nonspecific, scar + + + + + Crippled finger(s), right hand(includes webbed fingers) + + + + + Elbow, nonspecific, needle mark + + + + + Leg, nonspecific, artificial + + + + + Hand, nonspecific, artificial + + + + + Brace, right arm + + + + + Head, nonspecific (Use the MIS fieldo further describe location) + + + + + Toe(s), nonspecific + + + + + Ankle, nonspecific, needle mark + + + + + Missing Penis + + + + + Pierced abdomen + + + + + Breast, nonspecific + + + + + Extra nipple, right + + + + + Cleft chin + + + + + Knee, left + + + + + Ankle, left + + + + + Orthopedic plate + + + + + Left Toe, remove tattoo + + + + + Arm, left + + + + + Skin Disorders(includes psoriasis and eczema) + + + + + Finger(s), nonspecific, extra + + + + + Thigh, nonspecific + + + + + Tube in left ear + + + + + Knee, right + + + + + Ear, left, artificial + + + + + Foot, left, artificial + + + + + Arm, left, nonspecific + + + + + Ear, nonspecific + + + + + Penis + + + + + Ankle, right + + + + + Pierced left eyebrow + + + + + Arm, right upper + + + + + Spine + + + + + Groin area + + + + + Toe(s), left foot + + + + + Buttock, right + + + + + Groin area + + + + + Groin, nonspecific, discolored + + + + + Protruding lower jaw + + + + + Right Shoulder, artificial + + + + + Wrist, nonspecific, needle mark + + + + + Testis, left + + + + + Buttocks, nonspecific + + + + + Eye, left + + + + + Right forearm, mole + + + + + Lip, nonspecific + + + + + Hand, left + + + + + Finger joint(s), right hand + + + + + Nose + + + + + Hand, right + + + + + Buttocks + + + + + Wrist, nonspecific + + + + + Arm, lower left + + + + + Calf, nonspecific, needle mark + + + + + Breast, left + + + + + Knee, nonspecific + + + + + Hand, nonspecific + + + + + Ritalin + + + + + Leg, left + + + + + Elbow, nonspecific, discolored + + + + + Right Hip, fractured + + + + + Forearm, nonspecific + + + + + Glaucoma + + + + + Finger, nonspecific + + + + + Ear, nonspecific, missing + + + + + Right Forearm, discolored + + + + + Foot, right + + + + + Nose + + + + + Ankle, left + + + + + Rohypnol(Brand name for Flunitrazepam.Also referred to as "rophies","roofies", "ruffies", and "roche + + + + + Rib(s), right + + + + + Eyebrow, right/right eye area + + + + + Foot, left + + + + + Foot, left + + + + + Knee, nonspecific + + + + + Hand, right + + + + + Foot, nonspecific + + + + + Foot, right + + + + + Finger(s), left hand + + + + + Crippled hand, left + + + + + Pelvis + + + + + Pierced left ear + + + + + Marijuana + + + + + Ear, nonspecific + + + + + Right Elbow, artificial + + + + + Pierced right eyebrow + + + + + Upper Left Arm, discolored + + + + + Wire sutures + + + + + Finger(s), right + + + + + Ear, left + + + + + Forehead + + + + + Hand, left, artificial + + + + + Brace, one arm, nonspecific + + + + + Upper Left Arm, needle mark + + + + + Buttock, left + + + + + Thigh, nonspecific + + + + + Ear, right + + + + + Elbow, right + + + + + Spine + + + + + Hand, nonspecific + + + + + Thyroid Conditions or Diseases + + + + + Crippled toe(s), right(includes webbed toes) + + + + + Foot, nonspecific, missing + + + + + Drug Abuse + + + + + Brace, left and right arms + + + + + Leg, right, nonspecific + + + + + Back + + + + + Foot, nonspecific + + + + + Elbow, nonspecific, fractured + + + + + Leg, nonspecific + + + + + Leg, nonspecific + + + + + Cheek, nonspecific, dimple + + + + + Buttocks, right + + + + + Neck + + + + + Thigh, left + + + + + Breast, left + + + + + Lip, lower + + + + + Extra finger(s), left hand + + + + + Cocaine (includes crack) + + + + + Foot, right + + + + + Shoulder, left + + + + + Cauliflower ear, left + + + + + Elbow, right + + + + + Forehead + + + + + Left Toe, scar + + + + + Hip, left + + + + + Arm, right + + + + + Hip, left + + + + + Knee, right + + + + + Lip, lower + + + + + Wrist, left + + + + + Cataract, (nonspecified) + + + + + Skull plate + + + + + Clavicle, right + + + + + Hip, left + + + + + Leg, lower right + + + + + Ritalin + + + + + Right Toe, discolored + + + + + Cauliflower Ear + + + + + Thigh, nonspecific + + + + + Ankle, nonspecific + + + + + Shoulder, nonspecific + + + + + Ankle, left + + + + + Ear, nonspecific + + + + + Finger(s), nonspecific, needle mark + + + + + Jaw, upper right + + + + + Pierced nipple, left + + + + + Extra toe(s), right + + + + + Deviated septum + + + + + Buttocks, right + + + + + Hand, left + + + + + Leg, right + + + + + Knee, left + + + + + Hand, right + + + + + Right Toe, needle mark + + + + + Blind, both eyes + + + + + Left Toe, needle mark + + + + + Toe(s), nonspecific, remove tattoo + + + + + Shunt, cerebral ventricule + + + + + Ankle, left + + + + + Right Elbow, discolored + + + + + Penis + + + + + Foot, nonspecific, crippled + + + + + Ankle, nonspecific + + + + + Buttocks, nonspecific + + + + + Arm, left upper + + + + + Antibiotics + + + + + Hand, right + + + + + Shoulder, right + + + + + Humpbacked + + + + + Ear, left + + + + + Back + + + + + Knee, right + + + + + Calf, left + + + + + Wrist, left + + + + + Forearm, right + + + + + Nose + + + + + Alcoholism + + + + + Extra breast, nonspecific + + + + + Leg, nonspecific, crippled + + + + + Foot, right + + + + + Thigh, left + + + + + Finger(s), left hand + + + + + Hair implants + + + + + Eye, nonspecific, mole + + + + + Right Calf, discolored + + + + + Face, mole + + + + + Lip, upper + + + + + Eye, nonspecific, remove tattoo + + + + + Wrist, left + + + + + Wrist, right + + + + + Leg, left + + + + + Calf, nonspecific + + + + + Elbow, right + + + + + Lung, nonspecific, missing + + + + + Left Calf, needle mark + + + + + Arm, left + + + + + Breast, left + + + + + Cancer + + + + + Shoulder, right + + + + + Left Knee, needle mark + + + + + Crosseyed + + + + + Leg, upper left + + + + + Deaf, one ear (nonspecific) + + + + + Shoulder, nonspecific + + + + + Arm, left, artificial + + + + + Finger joint(s), left hand + + + + + Abdomen + + + + + Ear, left + + + + + Groin, nonspecific, needle mark + + + + + Antidepressants (mood-lifters -(Mood lifters - includes: Amitriptylene, Elavil, Norpramine, Prozac,T + + + + + Ear, right + + + + + Leg, right + + + + + Finger(s), right hand + + + + + Finger, nonspecific + + + + + Leg, right + + + + + Nose + + + + + Finger(s), right hand + + + + + Ankle, right + + + + + Extra nipple, center + + + + + Hip, nonspecific + + + + + Skull + + + + + Hip, nonspecific, healed fractured + + + + + Hip, right + + + + + Finger(s), right hand + + + + + Brace, teeth + + + + + Ear, right + + + + + Calf, right + + + + + Lip, upper + + + + + Leg, left, nonspecific + + + + + Eyebrow, left/left eye area + + + + + Thigh, right + + + + + Missing Cervical Vertebra(e) + + + + + Right Ankle, needle mark + + + + + Toe(s), nonspecific + + + + + Leg, nonspecific + + + + + Right Hip, artificial + + + + + Right Leg, fractured + + + + + Toe(s), nonspecific, discolored + + + + + Wrist, right + + + + + Calf, nonspecific, mole + + + + + Hematological Diseases (disease ofthe blood - includes: anemia,hemophilia, leukemia, and sicklecell + + + + + Leg, nonspecific, short + + + + + Hip, right + + + + + Leg, nonspecific + + + + + Ear, left + + + + + Toe(s), nonspecific, mole + + + + + Eating Disorders(Includes Anorexia Nervosa andBulimia) + + + + + Breast, nonspecific + + + + + Toe(s), nonspecific, missing + + + + + Left Leg, fractured + + + + + Toe(s), nonspecific, extra + + + + + Extra breast, left + + + + + Ovary, left + + + + + Left Elbow, needle mark + + + + + Leg, left + + + + + Leg, left, artificial + + + + + Wrist, nonspecific + + + + + Chest + + + + + Ankle, nonspecific + + + + + Pulmonary (Lung) Diseases(includes Emphesyma, CysticFibrosis) + + + + + Upper Right Arm, mole + + + + + Paraplegic + + + + + Leg, lower right + + + + + Arm, nonspecific, crippled + + + + + Ear, right + + + + + Buttocks, left + + + + + Jaw, nonspecific, protruding + + + + + Hand, left + + + + + Buttock, right + + + + + Finger(s), right hand + + + + + Finger(s), nonspecific, missing + + + + + Breast implant, left and right + + + + + Arm, upper left + + + + + Arm, nonspecific + + + + + Face, nonspecific(use MIS field to further describelocation) + + + + + Leg, left + + + + + Kidney, right + + + + + Neck + + + + + Intestines + + + + + Right Leg, healed fractured + + + + + Lip, upper + + + + + Ankle, right + + + + + Artificial knee joint + + + + + Elbow, nonspecific, mole + + + + + Pierced nipple, right + + + + + Cheek (face), nonspecific + + + + + Right Elbow, fractured + + + + + Cleft Lip + + + + + Buttock, left + + + + + Artificial elbow joint + + + + + Wrist, left + + + + + Ear, right + + + + + Penis + + + + + Leg, left + + + + + Hand, left + + + + + Wrist, nonspecific + + + + + Arm, nonspecific + + + + + Eye, left, artificial + + + + + Wrist, right + + + + + Leg, nonspecific + + + + + Nose + + + + + Extra vertebrae, lumbar + + + + + Diabetic + + + + + Foot, left + + + + + Left Shoulder, needle mark + + + + + Right Toe, scar + + + + + Shoulder, right + + + + + Right Arm, healed fractured + + + + + Left Arm, fractured + + + + + Breast implant, left + + + + + Hand, right + + + + + Forearm, nonspecific, mole + + + + + Eye, nonspecific, missing + + + + + Foot, left + + + + + Skull + + + + + Calf, nonspecific + + + + + Clavicle, right + + + + + Arm, right upper + + + + + Shoulder, left + + + + + Protruding upper jaw + + + + + Left Forearm, discolored + + + + + Anticonvulsants (seizuremedicines - includes: DilantinMysoline, Phenobarbital, etc.) + + + + + Intrauterine device + + + + + Nervous conditions including:seizures, stroke, senility, andmental retardation + + + + + Denture, upper only + + + + + Thigh, right + + + + + Pierced eyebrow, nonspecific + + + + + Extra breast, center + + + + + Penis, needle mark + + + + + Jaw, lower left + + + + + Arm, lower left + + + + + Knee, left + + + + + Right Knee, artificial + + + + + Arm, upper right + + + + + Foot, left + + + + + Hand, left + + + + + Arm, nonspecific + + + + + Silver tooth + + + + + Wheelchair + + + + + Adenoids + + + + + Knee, nonspecific + + + + + Shoulder, right + + + + + Crippled leg, left + + + + + Finger, nonspecific + + + + + Left Leg, healed fractured + + + + + Left Knee, artificial + + + + + Right Calf, mole + + + + + Insulin + + + + + Ankle, nonspecific + + + + + Pancreas + + + + + Chin + + + + + Foot, left + + + + + Breast implant, right + + + + + Hip, left + + + + + Breast, left + + + + + Finger Joint, nonspecific, missing + + + + + Hearing Aid + + + + + Foot, nonspecific, needle mark + + + + + Finger(s), right hand + + + + + Neck + + + + + Angle, right + + + + + Brace, back + + + + + Quadriplegic + + + + + Left Calf, mole + + + + + Penile implant + + + + + Hand, nonspecific, missing + + + + + Lip, nonspecific + + + + + Chest + + + + + Knee, nonspecific + + + + + Freckles + + + + + Thigh, left + + + + + Hand, nonspecific, crippled + + + + + Ovary, nonspecific, missing + + + + + Arm, right + + + + + Finger, nonspecific + + + + + Leg, left + + + + + Calf, right + + + + + Lip, nonspecific + + + + + Shoulder, nonspecific, needle mark + + + + + Hypnotics (sleeping aides -includes: Barbiturates,Chloral Hydrate, Glutethemide,etc.) + + + + + Cheek (face), right + + + + + Hand, left + + + + + Full Body(Use only when the entire body - arms, legs, chest, and back are covered with tattoos.) + + + + + Hip, right + + + + + Spleen + + + + + Groin area + + + + + Foot, nonspecific + + + + + Arm, upper right + + + + + Right Hip, healed fractured + + + + + Buttock, nonspecific, needle mark + + + + + Finger(s), left + + + + + Tooth/Teeth, nonspecific, extra + + + + + Hip, nonspecific + + + + + Jaw, lower left + + + + + Pierced genitalia + + + + + Denture, lower only + + + + + Arm, left + + + + + EXTRA TOOTH/TEETH (LOWER JAW) + + + + + Narcotics (includes Heroin,Morphine, Dilaudid, Methadone,etc.) + + + + + Leg, right (Use the MIS field tourther describe location) + + + + + Buttocks, left + + + + + Chest + + + + + Thigh, right + + + + + Gallbladder + + + + + Left Hip, fractured + + + + + Arm, nonspecific, artificial + + + + + Buttock, right + + + + + Brace, left and right legs + + + + + Right Eye, tattoo + + + + + Left Toe, tattoo + + + + + Denture, upper and lower + + + + + Lip, lower + + + + + Artificial shoulder joint + + + + + Calf, left + + + + + Arthritis + + + + + Cardiac (heart medications -includes: Digitalis,Digoxin, etc.) + + + + + Abdomen + + + + + Right Calf, needle mark + + + + + Brace, left leg + + + + + Leg, right, artificial + + + + + Arm, lower right + + + + + Cheek (face), left + + + + + Cardiac pacemaker + + + + + Missing Vertebra(e),nonspecific + + + + + Extra vertebrae, nonspecific + + + + + Arm, left upper + + + + + Thigh, right + + + + + Blind, right eye + + + + + Hip, nonspecific + + + + + Chin + + + + + Full body + + + + + Buttock, left + + + + + Ankle, nonspecific + + + + + Arm, lower left + + + + + Thigh, right + + + + + Eyebrow, left/left eye area + + + + + Wrist, nonspecific + + + + + Calf, left + + + + + Breasts + + + + + Thigh, left + + + + + Deaf, left and right ears + + + + + Toe(s), right foot + + + + + Eye, right, artificial + + + + + Foot, right + + + + + Crippled leg, right + + + + + Pierced ear, one nonspecific + + + + + Leg, upper left + + + + + Hand, nonspecific + + + + + Hip, right + + + + + Breast + + + + + Neck + + + + + Head, nonspecific(use MIS field to further describelocation) + + + + + Cheek (face), left + + + + + Arm, upper left + + + + + Eyebrow, nonspecific + + + + + Staples + + + + + Cleft palate + + + + + Neck + + + + + Stutters + + + + + Back + + + + + Forearm, left + + + + + Cauliflower ear, right + + + + + Rib(s), nonspecific + + + + + Foot, right + + + + + Shoulder, nonspecific + + + + + Tuberculosis + + + + + Breast, right + + + + + Ear, nonspecific + + + + + Wrist, right + + + + + Knee, right + + + + + Breast, right + + + + + Uterus + + + + + Shoulder, left + + + + + Thigh, right + + + + + Shoulder, right + + + + + Nose + + + + + Liver Disease(Including cirrhosis andhepatitis) + + + + + Intramedullary rod + + + + + Clavicle, nonspecific + + + + + Jaw, upper left + + + + + Hand, left + + + + + Pierced right ear + + + + + Pierced tongue + + + + + Forearm, left + + + + + Knee, left + + + + + Back + + + + + Right Hip, needle mark + + + + + Mute (To be used if person is mutebut not deaf.) + + + + + Left Elbow, artificial + + + + + Leg, lower left + + + + + Foot, nonspecific + + + + + Finger(s), nonspecific, crippled + + + + + Back + + + + + Left Hip, needle mark + + + + + Down's Syndrome + + + + + Eyebrow, right/right eye area + + + + + Leg, nonspecific + + + + + Finger(s), nonspecific + + + + + Crippled foot, right(includes clubfoot) + + + + + Appendix + + + + + Chin + + + + + Left Elbow, mole + + + + + Extra vertebrae, cervical + + + + + Ear, right, artificial + + + + + Lip, lower + + + + + Neurological Conditions or Diseases(includes Cerebral Palsy, Epilepsy, Multiple Sclerosis, Parkinson + + + + + Jaw, nonspecific + + + + + Left Elbow, discolored + + + + + Pierced nose + + + + + Hip, right + + + + + Foot, right + + + + + Wrist, left + + + + + Behavior Disorder(includes Autism, Depression,Schizophrenia, Suicidal Tendencies(past and present) + + + + + Face, nonspecific(use MIS field to further describelocation) + + + + + Hand, nonspecific, discolored + + + + + Testis, right + + + + + Toe(s), nonspecific, needle mark + + + + + Shunt, arterial vascular + + + + + Pelvis bone, left + + + + + Breast, nonspecific + + + + + Breast, right + + + + + Arm, lower right + + + + + Lower Right Arm, needle mark + + + + + Gold tooth + + + + + Kidney, left + + + + + Leg, upper right + + + + + Pierced nipple, nonspecific + + + + + Breast, right + + + + + Crippled arm, right + + + + + Crippled foot, left(includes clubfoot) + + + + + Dimples, left cheek (face) + + + + + Jaw, nonspecific + + + + + Calf, right + + + + + Arm, right, nonspecific + + + + + Larynx + + + + + Abdomen + + + + + Ear, left + + + + + Arm, nonspecific, missing + + + + + Sternum + + + + + Barbiturates + + + + + Arm, left + + + + + Finger(s), left hand + + + + + Pierced ears + + + + + Knee, left + + + + + Arm, right, artificial + + + + + Knee, nonspecific + + + + + Cane + + + + + Finger(s), left hand + + + + + Right Arm, fractured + + + + + Heart or circulatory diseasesincluding: high blood pressure,heart failure, heart attack,hardening o + + + + + Deaf-mute + + + + + Artificial larynx + + + + + Arm, nonspecific + + + + + Finger(s), right hand + + + + + Forearm, left + + + + + Arm, left + + + + + Leg, lower left + + + + + Leg, lower left + + + + + Leg, nonspecific, missing + + + + + Ankle, right + + + + + Ear, nonspecific + + + + + Lip, lower + + + + + Shorter left leg + + + + + Contact lenses + + + + + Dimples, right cheek (face) + + + + + Arm, right upper + + + + + Penis + + + + + Chest + + + + + Anti-Inflammatory Medication + + + + + Shoulder, left + + + + + Clavicle, left + + + + + Finger(s), left hand + + + + + Bronchial Dilators(Includes inhalers) + + + + + Abdomen + + + + + Hip, nonspecific + + + + + Left Hip, healed fractured + + + + + Hand, nonspecific, needle mark + + + + + Hand, nonspecific + + + + + Prostate Gland + + + + + Foot, nonspecific + + + + + Elbow, nonspecific + + + + + Pelvis + + + + + Hand + + + + + Toes(s), right foot + + + + + Ear, nonspecific, artificial + + + + + Left forearm, mole + + + + + Tube in right ear + + + + + Extra finger(s), right hand + + + + + Hallucinogens + + + + + Deaf, left ear + + + + + Eyebrow, nonspecific + + + + + Finger, nonspecific + + + + + Right Eye, remove tattoo + + + + + Ankle, left + + + + + Cheek (face), nonspecific + + + + + Thyroid + + + + + Dimples, chin + + + + + Hand, right + + + + + Elbow, nonspecific, healed fractured + + + + + Hip, nonspecific, needle mark + + + + + Left Toe, discolored + + + + + Cheek (face), left + + + + + Knee, left + + + + + Rib(s), right + + + + + Hip, left + + + + + Leg, nonspecific, needle mark + + + + + Arm, right (Use the MIS field tofurther describe location) + + + + + Leg, right + + + + + Leg, right + + + + + Chin + + + + + Breast, right + + + + + Arm, right + + + + + Arm, nonspecific, needle mark + + + + + Extra nipple, nonspecific + + + + + Calf, nonspecific, discolored + + + + + Clavicle, nonspecific + + + + + Cheek (face), right + + + + + Tourette's Syndrome + + + + + Tranquilizers (includes:Valium, Thorazine, Stellazine,etc.) + + + + + Kidney, nonspecific, missing + + + + + Cheek, right + + + + + Elbow, left + + + + + Head + + + + + Shoulder, nonspecific + + + + + Forearm, right + + + + + Wrist, nonspecific + + + + + Brace, right leg + + + + + Arm, right + + + + + Jaw, upper right + + + + + Ankle, nonspecific + + + + + Leg, upper right + + + + + Toe(s), nonspecific, crippled + + + + + Breast, left + + + + + Shoulder, left + + + + + Left Hip, artificial + + + + + Back + + + + + Shoulder, nonspecific + + + + + Pierced back + + + + + Elbow, left + + + + + Pierced lip, lower + + + + + Tongue + + + + + Sternum + + + + + Brace, one leg, nonspecific + + + + + Left Eye, tattoo + + + + + Colostomy appliances + + + + + Finger(s), right + + + + + Right Toe, tattoo + + + + + Kidney Conditions or Diseases + + + + + Breast, nonspecific + + + + + Knee, right + + + + + Left Toe, mole + + + + + Buttock, left + + + + + Lip, upper + + + + + Arm, nonspecific + + + + + Penis + + + + + Left Elbow, healed fractured + + + + + Buttock, right + + + + + Wrist, left + + + + + Right Knee, needle mark + + + + + Finger(s), right hand + + + + + Left Calf, discolored + + + + + Eyebrow, right/right eye area + + + + + Paint (includes thinner) + + + + + Groin Area + + + + + Extra nipple, left + + + + + Face, dimple + + + + + Leg, lower right + + + + + Ear, left + + + + + Vascular prosthesis + + + + + Nose + + + + + Cheek (face), right + + + + + Attention Deficit Disorder + + + + + Breast, nonspecific, missing + + + + + Rib(s), left + + + + + Head, nonspecific + + + + + Arm, left upper + + + + + Elbow, nonspecific + + + + + Lower Left Arm, needle mark + + + + + Allergies including asthma + + + + + Deaf, right ear + + + + + Thigh, left + + + + + Hip, nonspecific, fractured + + + + + Ovary, right + + + + + Crutches + + + + + Forehead + + + + + Lip, right + + + + + Thigh, left + + + + + Forearm, nonspecific + + + + + Jaw, lower left + + + + + Crippled toe(s), left(includes webbed toes) + + + + + Neck + + + + + Analgesics (pain relievers -includes: Darvon, Acetominophen,Aspirin, etc.) + + + + + Elbow, left + + + + + Leg, nonspecific + + + + + Face, nonspecific (Use the MIS fieldo further describe location) + + + + + Pelvis bone, right + + + + + Arm, lower right + + + + + Orthopedic nail or pin + + + + + Upper Right Arm, needle mark + + + + + Crippled arm, left + + + + + Left Elbow, fractured + + + + + Cheek, left + + + + + Upper Left Arm, mole + + + + + Pelvis bone, right + + + + + Wrist, right + + + + + Blind, left eye + + + + + Transsexual(Miscellaneous field should indicate what the individual was at birth and what they are a + + + + + Pockmarks + + + + + Shoulder, right + + + + + Foot, left + + + + + Right Toe, mole + + + + + Foot, right, artificial + + + + + Left Arm, healed fractured + + + + + Foot, left + + + + + Ankle, right + + + + + Lung, left + + + + + Calf, nonspecific + + + + + Wrist, right + + + + + Shoulder, nonspecific + + + + + Shoulder, left + + + + + Crippled finger(s), left hand(includes webbed fingers) + + + + + Transvestite + + + + + Nose + + + + + Knee, right + + + + + Glue + + + + + Right Elbow, mole + + + + + Finger(s), left hand + + + + + Arm, right + + + + + Shoulder, right + + + + + Toe(s), left foot + + + + + Jaw, upper left + + + + + Crippled hand, right + + + + + Alzheimer's Disease + + + + + Toes(s), left foot + + + + + Knee, nonspecific + + + + + Left Eye, remove tattoo + + + + + Cheek (face), left + + + + + Breast, right + + + + + Pierced lip, nonspecific + + + + + Other therapeutic medicationsnot listed above, identify inthe MIS Field. + + + + + Alcohol + + + + + Ankle, nonspecific + + + + + Thigh, nonspecific, needle mark + + + + + Forearm, nonspecific + + + + + Left Ankle, needle mark + + + + + Bald/Balding + + + + + Knee, nonspecific, needle mark + + + + + Pregnancy - Present + + + + + Shoulder, nonspecific + + + + + Foot, nonspecific, artificial + + + + + Toe(s), right foot + + + + + Finger(s), left + + + + + Eyebrow, left/left eye area + + + + + Cheek (face), right + + + + + Knee, nonspecific + + + + + Foot, right + + + + + Hand, left + + + + + Eye, nonspecific, artificial + + + + + Tubes in ears, left and right + + + + + EXTRA TOOTH/TEETH (UPPER JAW) + + + + + Ankle, right + + + + + Hand, nonspecific + + + + + Arm, left + + + + + Rib(s), left + + + + + Chin + + + + + Right Elbow, needle mark + + + + + Wrist, nonspecific + + + + + Wrist, nonspecific, mole + + + + + Glasses (prescription) + + + + + Pierced lip, upper + + + + + Finger(s), left hand + + + + + Hip, nonspecific + + + + + Jaw, lower left + + + + + Forehead + + + + + Thigh, nonspecific + + + + + Cataract, right eye + + + + + Wrist, left + + + + + Eye, right + + + + + Elbow, nonspecific + + + + + Eye, nonspecific, tattoo + + + + + Wrist, right + + + + + Lung, right + + + + + Cataract, left eye + + + + + Blind, one eye, nonspecific + + + + + Abdomen + + + + + Wrist, left + + + + + Extra breast, right + + + + + Shoulder, left + + + + + Upper Right Arm, discolored + + + + + Right Shoulder, needle mark + + + + + Hand, right + + + + + Finger(s), nonspecific + + + + + Thigh, nonspecific + + + + + Arm, nonspecific + + + + + Missing Lumbar Vertebra(e) + + + + + Cheek, nonspecific + + + + + Lip, nonspecific + + + + + Knee, right + + + + + Hand, right + + + + + Face, nonspecific + + + + + Testical, nonspecific, missing + + + + + Ovaries + + + + + Chest + + + + + Forearm, right + + + + + Breast, nonspecific, artificial + + + + + Back + + + + + Clavicle, left + + + + + Other drugs of abuse not listedabove, identify in themiscellaneous (MIS) field + + + + + Cheek (face), nonspecific + + + + + Left Shoulder, artificial + + + + + Foot, left + + + + + Right Elbow, healed fractured + + + + + Knee, left + + + + + Head, nonspecific(use MIS field to further describelocation) + + + + + Rib(s), nonspecific + + + + + Hand, right, artificial + + + + + Forehead + + + + + Right Toe, remove tattoo + + + + + Lip, nonspecific + + + + + Cheek (face), nonspecific + + + + + Brace, left arm + + + + + Pelvis bone, left + + + + + Foot, nonspecific + + + + + Ankle, left + + + + + Arm, nonspecific, mole + + + + + Foot, right + + + + + Acne + + + + + Hand, left + + + + + Pregnancy - Past + + + + + Wrist, right + + + + + Neck + + + + + Ankle, left + + + + + Tonsils + + + + + Orthopedic screw + + + + + Other medical disorders/conditionsnot listed above, identify in theMiscellaneous (MIS) Field + + + + + Brace, neck + + + + + Shorter right leg + + + + + + + + + + + + + + + + CHROME, STAINLESS STEEL + + + + + BRONZE + + + + + MAUVE + + + + + GREEN, DARK + + + + + COPPER + + + + + BLACK + + + + + TURQUOISE (BLUE) + + + + + MAROON, BURGUNDY (PURPLE) + + + + + BLUE, DARK + + + + + BROWN + + + + + GOLD + + + + + SILVER + + + + + TAUPE + + + + + RED + + + + + CREAM, IVORY + + + + + CAMOUFLAGE + + + + + AMETHYST + + + + + BLUE + + + + + GRAY + + + + + ORANGE + + + + + PINK + + + + + TAN + + + + + TEAL + + + + + YELLOW + + + + + MULTICOLORED + + + + + GREEN + + + + + PURPLE + + + + + WHITE + + + + + GREEN, LIGHT + + + + + BLUE, LIGHT + + + + + LAVENDER (PURPLE) + + + + + BEIGE + + + + + + + + + + + + + + + + Friendship Mobile Homes + + + + + Augustana + + + + + Taylor Mfg. Co., Inc. + + + + + Evanston Coach Co. + + + + + Rover + + + + + Lee + + + + + Dave Hicks Co., Inc. + + + + + Rolite, Inc. + + + + + Capacity of Texas, Inc.Longview, Texas + + + + + American Steel Works + + + + + Harvest Motor Home + + + + + Imperial(for model years 1955-1983, useVMA/IMPE; for models prior to 1955and model years 1990-1993, + + + + + Caldweld Div., Smith International,Inc. + + + + + Kings Highway + + + + + Active Homes Corp. + + + + + Mobilemanor, Inc. + + + + + ShipmateSemek Mfg., Inc. + + + + + Holly Industries (or Coach Co.) + + + + + Craftsman (also see make Sears,Roebuck & Co.) + + + + + Top Kat + + + + + Panoz Auto Development Co. + + + + + Rockwell + + + + + Hairgrove Industries, Inc.Longview, Texas + + + + + Milwaukee Motorcycle Co. + + + + + Mustang Trailer Mfg., Inc.Quitman, Arkansas + + + + + S & M Trailer Co. + + + + + Bombardier Inc.Valcourt, Quebec; Ski-Doo/Moto Ski + + + + + Chaparral + + + + + Zollinger Trailer Co. + + + + + Wallstrong Boat Trailer + + + + + Aurora + + + + + CHEROKEE MANUFACTURING COMPANY; SWEETWATER, TN + + + + + Bowen Mobile Homes, Inc.Mfd. by Bowen Mobile Homes, Inc. + + + + + Onan Corp.Minneapolis, Minnesota + + + + + Sportmasters of Tennessee, Inc. + + + + + Corsair Div.Div. Divco-Wayne Industries + + + + + Amphicar + + + + + Colt + + + + + Goldenvale, Inc. + + + + + Quality Trailer + + + + + Cox Trailers + + + + + Asplundh Manufacturing Div.,Asplundh Tree Expert Co. + + + + + Ferrari + + + + + Scamper Coach Trailer + + + + + Aircap Manufacturers, Inc.Tupelo, Mississippi--mfrs. power mowers + + + + + Trojan + + + + + Scotsman Industries, Inc. + + + + + Galbreath, Inc.Mfrs. refuse containers and trailers--Winimac, Indiana + + + + + Jaclen Mfg. Co. + + + + + Bellamy's Mfr. & Research ProductsHiltons, Virginia + + + + + Chrysler Outboard CorporationHartford, WI + + + + + A & M Boat Trailer + + + + + Drive On Trailer Mfg.Mishawaka, Indiana + + + + + Hahn Motors, Inc. + + + + + Challenge-Cook Brothers, Inc.Industry, California + + + + + Butterfield Musketeer + + + + + World Trailers, Inc.Ocala, Florida + + + + + Peterson + + + + + Hollywood Mobile Homes + + + + + Fostron's Factory Outlet Trailers + + + + + Cruiser RV, LLC + + + + + Horseman Camper + + + + + Franklin Equipment Co. + + + + + GRM + + + + + Sachs + + + + + Nissan + + + + + Caravan Industries + + + + + Blackwell Burner Co.San Antonio, Texas . + + + + + Bricklin + + + + + B.FOSTER & COMPANY, INC.; WAYNESBORO,PA + + + + + Birmingham Mfg. Co., Inc.Springfield, Alabama + + + + + Lyncoach & Truck Co. + + + + + Bass Trail Trailer Co., Inc.Mfrs. boat trailers--Midway, Arkansas + + + + + Empress Industries + + + + + Schevelle Homes Sales Corp. of Alabama + + + + + RAYCO MANUFACTURING,INC.; WOOSTER, OH ; EQUIPMENT & TRAILERS + + + + + Puzey Bros., Inc.Fairmont, Illinois + + + + + Brentwood Mobile HomesSubsidiary DeRose Industries, Inc. + + + + + Vertex + + + + + Saturn Corporation + + + + + Roofmaster + + + + + Trail Aire, Inc. + + + + + New Idea Electric Lawn Garden Tractor + + + + + Prebuilt Mfg. + + + + + Classic Aluminum Trailer Corp. + + + + + Funliner Mfg. Co. + + + + + Biot Camping Trailer + + + + + Manitou Mobile HomesMfd. by Rochester Homes, Inc. + + + + + Victorian Homes, Inc.Middlebury, Indiana + + + + + Ajax Trailer Co. + + + + + Neckover Trailer Mfg. Co.Troup, Texas + + + + + U-HaulPhoenix, AZ; utility trailers + + + + + MCIsee Motor Coach Industries, Inc. + + + + + Alloy Machine Products Corp. + + + + + Automatic Drilling Machines, Inc. + + + + + Santa Fe Trailer Co. + + + + + Schantz & Sons, Inc.Marine, Illinois + + + + + Franklin Coach Co. + + + + + Tow Mor ProductsCanon, Georgia + + + + + Gardner, Inc.Mfrs. travel trailers--Bristol, Indiana + + + + + Silver Streak Trailer Co. + + + + + Mercury Coach Corp. + + + + + Buick + + + + + Trail-Easy Travel Trailer + + + + + FN + + + + + Fat City Choppers + + + + + Advanced Vehicle SystemChattanooga, TN; electric shuttle bus + + + + + Racmac Trailer + + + + + Original Equipment Manufacturing, LTD.Sudbury, Ontario + + + + + Dandy Mobile HomesMfd. by Dan's Trailer Supply, Inc. + + + + + Barcraft Homes, Inc. + + + + + Delta Homes Corp. + + + + + Bo-Mar Mfg. Co. + + + + + Chem-Farm, Inc. + + + + + B & J Enterprises, Inc.Sikeston, Mo; mfg. utility trailers + + + + + Big Valley Trailers, Inc.Wynne, Arkansas + + + + + Foremost (also see make J.C.Penney) + + + + + Oasis Travel Trailer + + + + + California Mobile Homes + + + + + Speed + + + + + Pinifarina + + + + + Vespa + + + + + Pierce Arrow + + + + + Trail Horse + + + + + Hitching Rail Trailer + + + + + COACH HOUSE,INC.; NOKOMIS,FL;CLASS B MOTORHOME + + + + + Blanco (model of Intramotor) + + + + + Skycraft Trailer + + + + + R & G + + + + + Sportsman's Dream Mfg. Co. + + + + + Leisure Home TrailerManufacturer-Leisure Time + + + + + Stoughton Trailers, Inc.Stoughton, Wisconsin + + + + + Cruisaire Motor Corp. + + + + + Black Knight (model of Vincent) + + + + + Poclain Div., J. I. Case + + + + + Skipper B Trailer Co., Inc.Div. of Anderson Ind., Inc., Burleson,(formerly Brown Ind.)Texas + + + + + Country EstateMfd. by Redman Homes, Inc. + + + + + TOMOS/TOMAS; BULLET, SPRINT & OTHER MODELS + + + + + WELDTITE TRAILERS; HUNTERSVILLE, NC + + + + + Jerry's Welding Service (JWS)Freeport, Illinois + + + + + Kanzol Enterprises, Inc. + + + + + Twilite Mobile Home Mfg. + + + + + R & H Horse Trailer + + + + + KMG INTERNATIONAL; TANGO TRADE NAME + + + + + Wrangler Recreational ProductsFlorence, Alabama + + + + + EXPEDITION MOTORHOMES; MANUFACTURED BY FLEETWOOD + + + + + Gin Ray Mfg. Co.Nicollet, Minnesota + + + + + LONE STAR MANUFACTURING; VALLEY VIEW , TEXAS + + + + + Warrenville Trailer Mfg., Inc.Warrenville, Illinois + + + + + Single Tilt Trailer + + + + + Superformance International (Maker of replica vehicles) + + + + + B & B Trailer Mfg., Inc.Wapanuck, Oklahoma + + + + + Quality Steel & Aluminum Products + + + + + Cony Truck (Japan) + + + + + Horizon Motor Home + + + + + Snapper + + + + + Aztec Mobile Homes + + + + + Herter + + + + + Raes Utility Trailer + + + + + Syrena + + + + + Nuttall Trailers + + + + + Clapper Camper + + + + + International Trailer Corp. + + + + + Junior Camping Trailer + + + + + Hiawatha Mobile Homes + + + + + Haban/Agri-Fab or Agri-Fab/Haban + + + + + JINSCENG MOTORCYCLES/MINIBIKES, CHINA + + + + + Wonder Land Camper + + + + + Safeway Mobile Homes Div.Div. Commodore Corporation + + + + + Crown + + + + + Goodyear Camper Mfg., Inc.Lincoln, Nebraska + + + + + American Aluminum Co. + + + + + Parkwood Mobile Homes of Florida + + + + + Nissan Diesel Motor Co. (for reference + + + + + Rutt + + + + + Travelmaster, Inc. + + + + + Peddlers Choice + + + + + Easy Rider Trailer + + + + + BERING TRUCK DISTRIBUTION, LLC FRONT ROYAL, VA + + + + + Circle J Stock TrailerMfd. by Western World Inc., previouslyknown as Western Trailers Works, Inc. + + + + + Wildcat + + + + + Motel Mobile Corporation of America + + + + + OZBIKE; CYCLE IMPORTS; MIAMI,FL + + + + + Powell + + + + + Demco + + + + + Steelco, Inc.Alto Loma, Texas + + + + + OCI MANUFACTURING CO.; OREGON, IL + + + + + L & D TRAILERS INCORPORATED; SIKESTON,MO + + + + + Teton Travel Trailer + + + + + McClenny Machine Co. of Virginia, Inc.Suffolk, Virginia + + + + + CONTRACT MANUFACTURERS INC ALSO KNOWN AS :CM TRAILERS; MADILL, OK + + + + + Shasta Industries + + + + + HEARTLAND TRAILER MANUFACTURING & SALES, INC.; SIKESTON, MO BARLOW TRAILERS + + + + + AAA Mobile Home Mfg. Co. + + + + + Mid States Camping Trailer + + + + + Cloud Electric Vehicles + + + + + Hycaloader Co., Inc. + + + + + L & L Trailers + + + + + Travco Corp. + + + + + Stockland + + + + + Brantley Mfg. Co.Fredrick, Oklahoma + + + + + Hill Country Homes, Inc. + + + + + Emmert Mfg. Co., Inc. + + + + + All Star Coach, Inc. + + + + + Hall, R.D. Mfg., Inc. + + + + + Graco, Inc. + + + + + Silverline + + + + + Southern Classic Trailer Mfg., Inc. + + + + + Ada Horse Trailer + + + + + Melvin Manufacturing Corp.See Whip It Snowmobiles + + + + + Rea Trailer Co.Elgin, Illinois + + + + + Coach Craft, Inc. + + + + + Luv-It Mfg. + + + + + Edsel + + + + + KENNY BOYCE MOTORCYCLES + + + + + U.S. AIRFORCE VEHICLE; MAKE IS UNKNOWN + + + + + Trailblazer Trailer + + + + + Envirotech Corp., EIMCO ProcessMachinery Div. + + + + + Vought Industries + + + + + Theurer Atlantic, Inc.Newark, New Jersey + + + + + Wolseley + + + + + CCM/Clews + + + + + Custom Craft Mfg. Co. + + + + + Mobile Office, Inc. + + + + + Electric Vehicle Systems, Inc. + + + + + Graciela + + + + + Allied + + + + + K & O MANUFACTURING CO., INC.;HULL, IA + + + + + Bell's Custom Coaches + + + + + Clark-Wilcox + + + + + Autobieu + + + + + Passport + + + + + UTILITY TOOL & BODY CO., INC. CLINTONVILLE, WI + + + + + Laconia Custom Cycles + + + + + Carson Trailer IncCarson, CA; utility trailers + + + + + All States Trailer Co. + + + + + Marco + + + + + Double Shuffle Mobile Home + + + + + Commander Motor Home + + + + + Kargo TrailersIvyland, Pennsylvania + + + + + Encore + + + + + Foxi + + + + + Palace Corp. + + + + + Norse Trailer + + + + + DuAl Mfg. Co. + + + + + Golden State Mobile Homes + + + + + Daytona + + + + + Florida Trailer Co. + + + + + Waverly StructuresNorth Carolina + + + + + North Country + + + + + Swan Industries + + + + + United Motors + + + + + HIGH-LITE RIDES, INC.; GREER, SC + + + + + Allied Steel and Tractor Products,Inc. + + + + + Luxury Homes, Inc. + + + + + Dickirson Equipment Corp.Salem, Illinois + + + + + HAWN FREEWAY TRAILER SALES (HAWN TRAILERS); DALLAS, TEXAS + + + + + Bolinger Flatbed Trailer + + + + + Corey Enterprises + + + + + ABC Coach Co.From 1960 on, see Vought Industries + + + + + Cadet Coach Corp. + + + + + Orbit Industries, Inc. + + + + + Appleton Trailer + + + + + Kampers Kabin + + + + + ISHIKAWAJIMA-HARIMA HEAVY INDURSTRIES CO, LTD.; JAPAN + + + + + Fiesta (imported by Ford) + + + + + Travel Mate Trailer + + + + + Bullet Trailers, Inc.Boat Trailers, Glen Burnie, Maryland + + + + + AMERICAN YARD PRODUCTS, RIDING MOWERS, MOWERS;WEEDEATER & ELECTOLUX BRAND PRODUCTS + + + + + Osterlund, Inc.Harrisburg, Pennsylvania + + + + + National Mobile Homes + + + + + Ascort + + + + + Windjammer Motorcoach + + + + + Gary Carolina Co. + + + + + Tri-Rod + + + + + Layton Mfg. Co., Inc.Salem, Oregon + + + + + Henderson Mfg. Co. + + + + + Gemtop + + + + + Born Free + + + + + White GMC + + + + + Bell Mfg. Corp. + + + + + Lorak, Inc. + + + + + Williams Craft, Inc. + + + + + Hy-line Enterprises, Inc.Elkhart, Indiana + + + + + Mitsubishi + + + + + Waymatic Welding & Fabricating Co.Fulton, Kentucky + + + + + Martco Waste System Equipment + + + + + Harris Honker Camper Mfg. + + + + + Felburn Flatbed Trailer + + + + + Camelot Camper Trailer + + + + + Marathon Homes Corp.Elkhart, Indiana + + + + + JAMIE'S WELDING; OKLAHOMA + + + + + Carl A. Johnson & Sons + + + + + Kden-Craft Products, Inc. + + + + + FIAT KOBELCO; CONSTRUCTION EQUIPMENT/MACHINERY + + + + + Royal Cargo Trailers, Inc. + + + + + Vacation Homes + + + + + STANLEY YARD & GARDEN TRACTOR/MOWER ETC. + + + + + Blaine's Custom Mfg. ServiceJackson, Mississippi + + + + + Felber + + + + + Sho-Me Campers Co. + + + + + Vogue Motor Home + + + + + Pathfinder Mobile Homes + + + + + Alabama Trailer Co.Birmingham, Alabama + + + + + Low Boy Trailer + + + + + F & H Mfg. Co. + + + + + Italtelai Mfg. Co. (Italy) + + + + + Rycsa + + + + + Allied Mfg. Co. + + + + + WTM, INC.; HALEYVILLE, AL + + + + + Tuk-A-Way-Trailer + + + + + Zeta + + + + + Dan Dee Industries, Inc. + + + + + Blue Gator Boat Trailer + + + + + Star + + + + + Pleasuremate Industries + + + + + FWD Corp. + + + + + Owatonna Manufacturing Co., Inc. + + + + + Crawler Trailer + + + + + Rokon + + + + + I.D.E.C.O. + + + + + Park Estates Homes + + + + + Carter Trailer Co., Inc.Newport, Arkansas + + + + + Sabra + + + + + Maxim Ind., Inc.Mfr. of Maxim Fire Trucks, Middleboro,Massachusetts + + + + + Scenic Campers Co. + + + + + SIMPSON WELDING & CUSTOM TRAILERS / HOWBOY TRAILERS; HUGO, OK + + + + + Telsmith Div., Subsidiary of Barber-Greene Co. + + + + + Comanche Mobile Homes + + + + + Langley Mfg. Div., M.D. Knowlton Co. + + + + + Squire Travel Trailer + + + + + HAWK TRAILERS, LLC; MANAWA, WI + + + + + UAZ (Ulianovsk Automobile Zavod) + + + + + Glasride Trailer + + + + + Essix + + + + + Allmand, Inc.Holdrege, Nebraska + + + + + Rootes + + + + + Apex Travelers, Inc.Elkhart, Indiana + + + + + Western Dynamics Corp. + + + + + Glastron, Inc.New Braunfels, Texas + + + + + Richland Homes Mfg. Co.Subsidiary Magnolia Mobile Home + + + + + Lichty's Blacksmithing, Inc.Silverton, Oregon + + + + + Vac-Con + + + + + Ontario Bus Industries, Inc.Mississauga, Ontario, Canada; bus. + + + + + Massey-Ferguson, Inc.Des Moines, IA + + + + + DeSoto + + + + + Flasko Mfg. Co. + + + + + Tennant Co. + + + + + Sun Devil Trailers, Inc.Boat trailers--Tulsa, Oklahoma + + + + + Beechcraft Mobile Home + + + + + BantamDiv. of Koehring Co., Waverly, Iowa + + + + + LES MACHINERIES PRONOVOST, INC; CANADA + + + + + Feldman Engineering & Mfg., Co. + + + + + Flamingo Trailer Mfg. + + + + + General Trailer Co., Inc.Springfield, Oregon + + + + + Holsclaw Brothers, Inc.Evansville, Indiana + + + + + Barnes Pump Drain Unit + + + + + Frost Trailer Co.West Monroe, Louisiana + + + + + VM Boat Trailer + + + + + Thomas Conveyor Co. + + + + + Boatel Trailer + + + + + GENIE CONSTRUCTION EQUIPMENT; AERIAL,SCISSOR LIFTS ETC. + + + + + Trans Canada Rent-A-Trailer System + + + + + Giddings Machine Co., Inc.Fort Collins, Colorado + + + + + Monroe Tractor + + + + + Highway Trailer of Wisconsin &California + + + + + Prairie Trailer Sales & Service + + + + + Hackney & Sons, Inc. + + + + + Bebe + + + + + Pilgrim Mfg. Co. + + + + + CHEROKEE MOTORCYCLE COMPANY; OKLAHOMA FORMERLY KNOWN AS ''FAST TRAC MANUFACTURING '' OUT OF CALIFORN + + + + + Victoria + + + + + Ditch Witch Div.Div. of Charles Machine Works, DIWTfor reference only + + + + + Orthman Mfg., Inc. + + + + + Chippewa Mobile Homes Corp. + + + + + Dutec Trailer + + + + + Taylor Machine Works, Inc. + + + + + RED HORSE MOTORWORKS; LENEXA, KS + + + + + Draglite Trailer + + + + + HME, INCORPORATED; WYOMING, MI + + + + + Wylie Manufacturing Co.Subsidiary E. D. Etynre & Co.--Oregon,Illinois + + + + + Mack Trucks, Inc. + + + + + DAWSON ENTERPRISES; ELKHART, IN + + + + + Falcon Coach Co. + + + + + Miller & Smith + + + + + U.S. COAST GUARD; MAKE IS UNKNOWN + + + + + Clark-Gravely Corp.Gravely tractors + + + + + MJM Enterprises, Inc. + + + + + Randolph Coach + + + + + Checker + + + + + Marine Camper Trailer + + + + + AquaforgeWentzville, Missouri + + + + + Cliff Hall, Inc. + + + + + Skylark Industries, Inc.Bristol, Indiana + + + + + PW Trailer + + + + + Eastern-Bilt, Inc. + + + + + Curbmaster of America, Inc. + + + + + Kiefer Built, Inc.Kanawha, Iowa + + + + + Empire Plow Co. + + + + + SMPMfd. by Sweetwater Metal Products Co.,Inc. + + + + + Bizzarrini + + + + + Dynacruiser Mount Trailer + + + + + Brandt Trailers, Inc. + + + + + Russco Lowboy Trailer + + + + + Sunshine HomesRed Bay, Alabama + + + + + Piqua Engineering, Inc. + + + + + Trans-Sport + + + + + Highway IndustriesEdgerton, Wisconsin + + + + + Independent Products Co. + + + + + Tote Co.Lenox, Iowa + + + + + Super Flea + + + + + Pre-Built Structures + + + + + FINN CORPORATION; FAIRFIELD, OH + + + + + Artcraft Mobile Homes Mfg. Co. + + + + + Azalea Homes + + + + + Robinhood Motor Homes, Inc.Redondo Beach, California + + + + + TRAILS WEST MANUFACTURING OF IDAHO, INC.; PRESTON, ID + + + + + Travis + + + + + Cycle-MateMfd. by T & T Industries + + + + + Burnup and Sims, Inc.West Palm Beach, Florida + + + + + Degelman Industries, Ltd. (Canada) + + + + + Ultra, Inc. + + + + + Fleming Equipment Co.Ashdown, Arkansas + + + + + Over-Lowe Co. + + + + + Willys-Overland + + + + + Travel Industries + + + + + Essick Trailer + + + + + WORKHORSE CUSTOM CHASIS + + + + + Renault + + + + + Quincy Compressor Div.Colt Ind, Inc., Quincy, Illinois + + + + + MastercraftBryan Metal Products, Inc. + + + + + Ajax Electric Motor Corp. + + + + + Volkswagen + + + + + Linville Horse Trailer + + + + + Ryder + + + + + Snow Tri Scat + + + + + Exco Boat Trailers + + + + + Brandywine Travel Trailer + + + + + Big Horn Trailer + + + + + Griffith + + + + + Astro Mobile Homes Mfg. Co. + + + + + CAR MATE TRAILERS; LEEPER, PENNSYLVANIA + + + + + Ag-Tronic, Inc. + + + + + Brigadier Mobile HomesDiv. Brigadier Industries, Inc. + + + + + CHEROKEE FABRICATION, INC.; OCALA, FLORIDA + + + + + Arista + + + + + Academy Mobile HomesMfd. by Skyline Motorized Div. + + + + + Gorman-Rupp Company, TheMansfield, Ohio + + + + + Dragon ESP, Ltd., or Environmental Service Products + + + + + AVANTI CYCLES,MOPEDS & SCOOTERS + + + + + Fortune Homes Corp. + + + + + NORTHWOOD OF VIRGINIA; WINCHESTER VIRGINIA + + + + + Norcal Boat Trailer + + + + + DMH Co.Div. of National Gypsum Co., St. Louis,Michigan + + + + + Commercial Vehicles, Inc.Tulsa, Oklahoma + + + + + Austin-Healy + + + + + COMPETITIVE TRAILERS, INC.; BELLFLOWER CALIFORNIA + + + + + Bug + + + + + Tama + + + + + WARRIOR TRAILERS, ONTARIO, CA + + + + + Century Engineering Corp. + + + + + Crimson HomesDiv. Winston Industries, Inc. + + + + + YARD MACHINE; SUBSIDIARY OF MTD INDUSTRIES (MOWERS ETC) + + + + + Newell Coach Corp.Miami, Oklahoma + + + + + Great Lakes Mobile HomesDiv. of Guerdon Industries + + + + + Ja-Mar Manufacturing IncSikeston, MO + + + + + Short Go, Inc. + + + + + Mobile Home Industries, Inc.Tallahassee, Florida + + + + + B & B Custom Built TrailersNewport, Arkansas + + + + + Zar Car + + + + + Enterprise Motor Home + + + + + Brewer Utility + + + + + Twin Grove Mfg., Inc.Verona, Wisconsin + + + + + Kenskill Trailer Corp. + + + + + KTM + + + + + CCCCrane Carrier (A CCI Co.) + + + + + Motobic + + + + + B & W Custom Trailers, Inc. + + + + + L & M Trailer Mfg. + + + + + Lonnie's Trailer Sales + + + + + Stoner Trail + + + + + DillyNelson-Dykes Co., Inc. + + + + + Haulmark Industries, Inc. + + + + + White Motor Corp. + + + + + Black Diamond Trailer, Inc.New Tazewell, Tennessee + + + + + Hus-Key Mfg., Inc. + + + + + CHASSIS KING, LLC; CLEARWATER, FL + + + + + Royal Crest Co. + + + + + Fountain Flatbed Trailer + + + + + Utopia Coach Corp. + + + + + Kropf Mfg. Co., Inc. + + + + + Chevallero Motor Home + + + + + DENCO MANUFACTURING + + + + + LOAD TRAIL, INC.; SUMNER, TX + + + + + Young Corp. + + + + + ROCKIN L. RIGGIN CORP.; GRAHAM, TEXAS + + + + + Murray Marine Corp. + + + + + Borella + + + + + Bros. Div.American Hoist Derrick Co., St. Paul,Minnesota + + + + + Phillips TrailersChickasha, Oklahoma + + + + + Eversman Mfg. Co. + + + + + TN TRAILERS, LLC; SHIPSHEWANA, INDIANA + + + + + Roadway Trailer, Ltd. + + + + + W & W White Horse Trailer + + + + + WORTHINGTON WELDING, INC. TRAILERS; PENNSYLVANIA 4MV OR 1W9/OO3 + + + + + R & A MANUFACTURING PARTENRS, LTD.; HOUSTON, TX + + + + + Bi-Motor Stallion + + + + + Hagon + + + + + Kal-Custom Boat Trailer + + + + + Millan Flatdeck + + + + + Supertrail Mfg. Co., Inc.Aberdeen, Misssippi + + + + + C&C MANUFACTURING & FAB; HAZLETON, PA + + + + + Malheur Mobile Homes, Inc. + + + + + Empire Corp., Inc. + + + + + Baker Equipment & Engineering Co. + + + + + AMC Trailer + + + + + Scepter Utility Trailer + + + + + General Engines Co., Inc.Throfare, New Jersey + + + + + Delavan Trailer + + + + + Gardner-Pacific-Sunrader, Inc.Vallejo, California + + + + + TRAILMANOR, INC.; LAKE CITY, TN + + + + + ADLER + + + + + Girard's Mfg. Co. + + + + + Valley TrailersCynthiana, Ohio + + + + + Insley Manufacturing Co.Subsidiary AMCA International Corp. + + + + + Jet + + + + + Chausse Manufacturing Co., Inc. + + + + + Gerard Lowboy Trailer + + + + + Lone Star Boat Mfg. + + + + + Titan Trailer Corp.Div. Concord Mobile Homes--Woodland,California + + + + + Tawas Trailers, Inc. + + + + + Crowley Mfg.Mathiston, Mississippi + + + + + Construction Machinery Div., ClarkEquipment Co. + + + + + Hornet Flatbed Trailer + + + + + Lintzcraft Travel Trailer + + + + + Watt Camper + + + + + Desperado Motor Racing & Motorcycles, Inc. + + + + + MADAMI MOTOR SCOOTERS, ETC. + + + + + BolensMfd. by Outdoor Power Equipment Div.,FMC + + + + + Camp-N-All Co. + + + + + Donahue Corp., The + + + + + Dana Truck Mount Camper + + + + + Conner Industries, Inc. + + + + + TROPHY HOMES, INC.; ELKHART, IN + + + + + Com-Fab, Inc. + + + + + Toyoco + + + + + Deere and CompanyMoline, IL + + + + + Klassic Trailer Mfg. + + + + + Clinton Engine Corp. + + + + + Lone Star Classics + + + + + Cyclescoot + + + + + Custom Bond Mfg. Co.Lansing, Michigan + + + + + Regis Corp. + + + + + Watsonian + + + + + Springcycle + + + + + C.M.Cub (mfd. by SWI Tong Corp.,imported by Convenience Machines) + + + + + Citroen + + + + + Italian Ford + + + + + Bullmobile Trailer, Inc.Caldwell, Kansas + + + + + A. J. Travelute Trailer Mfg. Co. + + + + + BRADTEC, LTD.; DERBY, KS + + + + + R. O. Corp. + + + + + WILKENS MANUFACTURING, INC.; STOCKTON, KANSAS + + + + + XYZ Trailer + + + + + Conestega Mfg. Co. + + + + + Wolfe Mfg. Co. + + + + + Raymond Products Co. + + + + + CARRY ON TRAILER CORP + + + + + Blair HouseMfd. by Manufactured Housing ManagementCorp. + + + + + Charlie Perkins Trailer Company, IncHamshire, TX + + + + + Howard Rotavator Co., Inc., Subsidi-ary of Howard Machinery, Ltd. + + + + + Kent Air Tool Co. + + + + + Herter's, Inc.Waseca, MN + + + + + Calis Travel Trailer + + + + + Commuter Vehicles, Inc. + + + + + Pontiac (Canadian) (Also see makePontiac) + + + + + Hallmark Motor Home + + + + + Jack's Trailer Mfg. + + + + + Craftmade Homes, Inc. + + + + + North American Shipbuilding + + + + + Winston IndustriesMobile homes--Double Springs, Alabama + + + + + Rance Aluminum, Inc. + + + + + GENERAL ENGINES CO. INC.; FLORIDA EAGER BEAVER & INTERSTATE + + + + + Strale + + + + + Beechwood Motor Home + + + + + GLENDALE RECREATIONAL VEHICLES; STRATHROY, ONTARIO, CANADA + + + + + Clayton Homes, Inc.Div. of Clayton Industries, Inc.,Knoxville, Tennessee + + + + + Thiele, Inc.Windber, Pennsylvania + + + + + Prior Products, Inc.Dallas, Texas + + + + + Oklahoma Horse Trailer + + + + + Bushog/Loadcraft (Div. Allied ProductsBrady, TexasCorp.) + + + + + Tuffy + + + + + Sears, Wendell + + + + + Bethany Fellowship + + + + + Zhejiang Lingyun Motorcycle Co., Ltd. + + + + + Trail Mate Trailer Co.Bellingham, Washington + + + + + Cooper + + + + + Sprite + + + + + BYSON TRAILERS + + + + + General Motors Corp. + + + + + Trailer Coach Metal Spec.Vancouver, Washington + + + + + Envoy + + + + + Interstate Trailers, Inc.Arlington, Texas + + + + + Caravel IndustriesWylliesburg, Virginia + + + + + GrasshopperMfd. by Moridge Mfg., Inc. + + + + + Navistar + + + + + Blix Coach + + + + + Riverdale Steel Works + + + + + Can-Car(Canadian Car Trailer Sales Div.)Rexdale, Ontario--Div. of Hawker-Siddeley, Canada + + + + + Cheston & Eshelman Co. + + + + + A & B Trailer Mfg. Co., Inc.Crown Point, Indiana + + + + + Perone Trailer + + + + + Three C's, Inc. + + + + + ZHONGYU GROUP; MOTORCYCLES ETC. + + + + + Speedway + + + + + Morgan Equipment Co. + + + + + Winpower Corp.Newton, Iowa + + + + + Sisu USA Inc. + + + + + Field Office Mfg. Co. + + + + + EXMARK RIDING LAWN MOWER + + + + + Chin Yuan Chi Casting Corp.Paichung, Taiwan + + + + + Eric Enterprises, Inc.Coventry, Connecticut + + + + + Gruendler Crusher and Pulverizer Co. + + + + + POWER TRAC MACHINERY + + + + + Red Arrow Trailer Co. + + + + + HAMPTON AMUSEMENT RIDES, LLC; MISSOURI + + + + + Pamco Trailer + + + + + Pauli Cooling Systems, Inc. + + + + + Asuna + + + + + Kioti + + + + + Huber-Warco + + + + + Peugeot + + + + + Batavus Mo-ped + + + + + American Hauler Ind. + + + + + Huntsman, Inc.Chetopa, Kansas + + + + + Lippert Components Mfg., Inc. + + + + + VAL + + + + + Taylor Made Choppers + + + + + Gator Products, Inc.Jacksonville, Florida + + + + + JOHN KERR MANUFACTURING, CO. + + + + + Carnes Welding & Fabricating Co.Crescent, Oklahoma + + + + + Kaj'n Homes, Inc. + + + + + USTS MANUFACTURING. INC; CANTON, OHIO + + + + + Willys + + + + + Connell Industries, Inc.Phil Campbell, Alabama + + + + + Hitachi + + + + + HRG + + + + + Loadmaster Trailer Co., Ltd. + + + + + Seagrave Fire ApparatusClintonville, Wisconsin + + + + + Sopko Mfg., Inc. + + + + + Dawes Products Co. + + + + + Dong Feng (East Wind) + + + + + Ioni-A-Home Mfg. Co. + + + + + Escape Trailer + + + + + Bass TrackerMfd. by JLM Industries + + + + + Trevco Enterprises + + + + + Pick-Up Top Mfg. + + + + + Zimmerman Automobiles + + + + + PEMBERTON FABRICATORS, INC.; RANCOCAS, NJ + + + + + American Jenbach Corp. + + + + + Hino + + + + + Nelson-Dykes Co. + + + + + Husqvarna + + + + + Lazer + + + + + Load Max Trailers, Ltd. + + + + + Scott Midland Div.Div. A-T-O, Inc. + + + + + Ponycycle + + + + + Circle S Star RouteSulphur Springs, Texas + + + + + Hyundai Trailers + + + + + Ikarus Buses and Coaches + + + + + WES-TEX MANUFACTURING, INC.; LUBBOCK, TX + + + + + Newman Trailers + + + + + Sellers Trailer + + + + + Rocket Trailer, Ltd. + + + + + Park Lane Mobile Homes + + + + + Northway Trailer + + + + + Westinghouse Equipped Mobile Home + + + + + IRONDOG TRAILERS + + + + + E-Max Motorcycles/GGC-Global Generation Cult GMBH + + + + + Wain-Roy, Inc. + + + + + Steyr-Puch + + + + + Bremen Sport Equipment, Inc.(Bremen,IN) + + + + + Wiggins Lifts Co., Inc.Mfgs. Forklifts + + + + + Lynnton Mfg. Co. + + + + + The Broyhill Co. + + + + + XPLORER MOTOR HOME DIV OF FRANK INDUSTRIES + + + + + Clenet Coach Works + + + + + Aluma-liteMfd. by Holiday Rambler Corp. + + + + + Cherokee Mobile Homes + + + + + Big Joe Manufacturing Co. + + + + + Kar-Go Metal Stamping Co.Willow Grove, Pennsylvania + + + + + Sierra Campers Mfg. + + + + + Elliott Mobile Home Mfg. + + + + + Krager Kustom Koach, Inc. + + + + + Acorn Equipment Corp. + + + + + Wenger Mfg. + + + + + Opel (imported by Buick) + + + + + Marcos + + + + + Elcar Mobile Homes, Inc.Div. Divco-Wayne Industries + + + + + Wisconsin Tag-A-Long Trailer + + + + + Reconstructed Motorcycle (SeeOperating Manual,Part 1) + + + + + Cadillac + + + + + Tanckon FRP, Inc. + + + + + Tem Ken Trailers Mfg. + + + + + Allen Engineering Corp. + + + + + Hoosier Mobile Homes + + + + + Yenko + + + + + Citicar (electric car) + + + + + Camp Equipment Co., Inc + + + + + Rhino Tool Company + + + + + WSK + + + + + Five-K Trailer Co., Inc.Bethalto, Illinois + + + + + California Camper Mfg. + + + + + Melroe Tractor Truck + + + + + Time OutT.O. Corp. + + + + + Grady-White Boat Co. + + + + + Milwaukee Electric Tool Corp. + + + + + Versa Two Wheel Trailer + + + + + (Generic Code--for use only whenmanufacturer is not listed) + + + + + Carrie-Craft Div.Div. Thrift Cts. of America + + + + + Argo + + + + + Canoga Mfg. Co., Inc.Mfg. Cement Mixer + + + + + Allied American Builders Corp. + + + + + Georgia Trailer & Equipment Corp.Macon, Georgia + + + + + Little Chum Mfg. Co. + + + + + Penn-Cupit Industries Ltd. + + + + + Pacific Boat Trailers, Inc.Anaheim, California + + + + + Bridge Mfg. and Equipment Co.Woodburn, Indiana + + + + + Comet Mobile Homes + + + + + Barrington HomesSubsidiary Fleetwood Interprises + + + + + Golfmobile + + + + + Transit + + + + + Joseph Thatcher + + + + + Sani-Cruiser Co. + + + + + CMI Corp. + + + + + Bowsman TrailersThree Rivers, Michigan + + + + + New Style Homes, Inc.Pineville, Missouri + + + + + U.S. COACHWORKS, INC.;ZEIGLER, IL + + + + + Wilray ManufacturingFt. Benton, Montana + + + + + The Highland GroupBeachwood, OH; utility trailers + + + + + TEC + + + + + Grove Mfg. Co.Affiliated with Kidde, Inc.,Shady Grove,Pennsylvania + + + + + Hoffman + + + + + COUNTRY CLIPPER; RIDING MOWERS; JAZEE MODEL DIVISION OF SHIVVERS MANUFACTURING + + + + + All A Cart Mfg., Inc. + + + + + Chrysler Boat Co. + + + + + Torch IndustriesElkhart, Indiana + + + + + Pama Camper + + + + + Road King Travel Trailer + + + + + Hide-A-Way Camper + + + + + Shivvers, Inc. + + + + + Aircraft (see Operating Manual,Part 1, Section 2.) + + + + + Gold Leaf Engineering Co. + + + + + GREAT DANE INCORPORATED; FARM & GARDEN EQUIP + + + + + Four Seasons Travel Trailer + + + + + Midway Engineering Co. + + + + + Traveliner Travel Trailer + + + + + Airflyte Mfg. Co. + + + + + Young Spring & Wire + + + + + Wagon Train, Inc. + + + + + Coyote Mfg. Corp.Corona, California + + + + + Copco Steel & EngineeringSouthbend, Indiana + + + + + Eager Beaver Trailer + + + + + Wigwam Motor Home + + + + + Graffin Wellpoint Corp. + + + + + Trailite Trailer + + + + + Neoplan USA CorporationLamar, CO; transit buses + + + + + Debonair + + + + + GAZ + + + + + Lee Coaches + + + + + Magnum Custom Trailer Mfg. Co.Boat utility trailers--Austin, Texas + + + + + Sportsman + + + + + Rockne + + + + + ColumbiaSee MTD Products, Inc. + + + + + Darvon Double Trailer + + + + + Indio Trailer Mfg. Corp. + + + + + Harlow Travel Trailer + + + + + Mercury Boat Co. + + + + + Stillwater Supply Co. + + + + + DKR + + + + + HITCH-HIKER MANUFACTURING, INC., NEW MIDDLETOWN, OH + + + + + Sloat Mfg. Co. + + + + + Pegaso + + + + + Meade + + + + + Countryside Mobile HomeMfd. by Remic Industries, Inc. + + + + + Hellwood Trailer + + + + + Flag Ship Boat Trailer + + + + + TEAM SPIRIT TRAILERS; ELKHART, INDIANA + + + + + Brookwood Mobile Home + + + + + WOOD-MIZER PRODUCTS, INC.; INDIANAPOLIS, IN + + + + + CROSS COUNTRY MANUFACTURING; GREENE, NEW YORK (TRAILERS) + + + + + Modern + + + + + Olympic Trailers + + + + + Excelsior + + + + + Clifford B. Hanney & Sons, Inc. + + + + + Karson Industries, Inc. + + + + + Great Escape + + + + + Montgomery Ward + + + + + R-VISION, INC. INDIANA; MANUFACTURER OF TRAIL BAY TRAVEL TRAILER AND OTHER BRANDS + + + + + Hampton Homes, Inc.Edwardsburg, Michigan + + + + + Sherwood Baronet Tent Trailer + + + + + CANNONDALE CORPORATION, MAKER OF MOTORCYCLES + + + + + Monarch Boat Co.Camper Division + + + + + D.B. + + + + + Magic Touch, Inc. + + + + + Wishbone Trailers, Inc.Hot Springs, Arkansas + + + + + Star Fire, Inc. + + + + + Part (Generic Code--for use onlywhen manufacturer is not listed) + + + + + Travel Supreme, Inc. + + + + + Custom Engineering + + + + + Ginetta + + + + + C & W Truck & Equip. Co., Inc. + + + + + Ruchmore Homes + + + + + Dutchman ManufacturingMiddlebury, IN + + + + + Ransome + + + + + G & F TrailerBoat trailer mfd. in Bainbridge, Georgia + + + + + Target Coach Mfg. Co.Div. Central Builders Supply + + + + + Contessa + + + + + Komatsu American Corp. + + + + + Kitty HawkMfd. by Wright Brothers, Inc. + + + + + Canton Trailer Co. + + + + + Pioneer Coach Mfg. + + + + + ULTIMA MOTORCYCLE + + + + + Roadliner Mfg. Division + + + + + Superior Mfg., Inc. + + + + + SCAG POWER EQUIPMENT, DIVISION OF MTEALCRAFT OF MAYVILLE,WI MAKER OF POWER RIDING MOWERS + + + + + LBTDiv. Fruehauf Corp. + + + + + CZ Engineering, Inc.Dixon, Missouri + + + + + Federal Trailer Co. + + + + + Genuine Scooter Co. + + + + + Harklau Industries, Ind.Humboldt, Iowa + + + + + Ben Hur + + + + + Tornado (British) + + + + + Ossa (Spain) + + + + + King Midget + + + + + Toro Co. + + + + + THOMAS EQUIPMENT LTD.; NEW BRUNSWICK, CANADA + + + + + Cozad Trailer SalesStockton, California + + + + + BANDIT INDUSTRIES; MICHIGAN + + + + + Hainan-Sundiro + + + + + M-System, Inc. + + + + + Shopmade Flatbed Trailer + + + + + Trojan Homes + + + + + Redstone Coach Co. + + + + + Kipco + + + + + Vito Mfg. Co.Hazleton, Pennsylvania + + + + + AMCO Products + + + + + Truco + + + + + Challenger Homes, Inc.Columbia, Tennessee + + + + + Larson Machine, Inc.Princeville, Illinois + + + + + Sahara Mobile Homes + + + + + Virginia Homes Mfg. Corp.Boydton, Virginia + + + + + Terramite Corp. + + + + + Eco-Bike Elec Motorcycle + + + + + Reliart Trailer Mfg. Co. + + + + + Sightseer Motor Home + + + + + Pride Heavy Vehicle Ind. & Pride Enterprises + + + + + Chappy (mfd. by Yamaha Motor Corp.) + + + + + Xkeleton Motorcycles, LLC + + + + + STOLL TRAILERS, INC; ABBEVILLE, SC + + + + + Aros + + + + + Aeta + + + + + Western Trailers IncCo-Tem Corp. Boise, Idaho + + + + + Ranger Boats & Trailers + + + + + Odyssey Trailer Co. + + + + + Air-O-Corp. + + + + + Trillium Trailer + + + + + THUNDER MOUNTAIN CUSTON CYCLES; LOVELAND, COLORADO + + + + + Welchel Enterprises, LLC + + + + + BROWN CARGO VAN, INC.; LAWRENCE, KS + + + + + Pyle Haul-It-All Flatbed + + + + + Buck Camper Co. + + + + + AMERICAN DIRT BIKE, INC.; CALIFORNIA + + + + + Athey Products Corp. + + + + + Fort Lupton Campers + + + + + PRATT INDUSTRIES, INC.; BELLEAIR BLUFFS, FL + + + + + Pacific Campers + + + + + Conestoga Mobile Homes + + + + + Nevlen Company Inc.Wakefield, Massachusetts + + + + + Long Trailer Co., Inc.Tarboro, North Carolina + + + + + Senora TrailersYuma, AZ; trailers + + + + + Van Tech + + + + + Lamborghini + + + + + Talbert Mfg. Inc.Rensselaer, Indiana + + + + + Performance Products, Inc. + + + + + Crescent Trailers, Inc. + + + + + TLC Carrossiers + + + + + Built Rite Trailer + + + + + Stewart Engineering & Equipment Co. + + + + + Trail King Travel Trailer + + + + + Barret + + + + + Break + + + + + Thompson Concrete Pump Trailer + + + + + Beall, Inc.Billings, Montana + + + + + Troy Industries + + + + + Christianson Industries, Inc.Edwardsburg, Michigan + + + + + Carley + + + + + Gooseneck Trailer Mfg. Co., Inc.Bryan, Texas + + + + + Travelcraft Motor Home + + + + + Big Bear (mfd. by Flexo Products Co) + + + + + Duke Mobile Homes + + + + + QUALITY BUILT TRAILER, INC.; NEW MARKET, TN + + + + + Skamper Corp. + + + + + Hendrickson Manufacturing Co. + + + + + Sportcoach Motor HomeMfd. by Sportscoach Corp. of America,Chatsworth, California + + + + + Kentucky Mfg. Co.Louisville, Kentucky + + + + + VENTURE TRAILERS + + + + + River Run + + + + + Beijing Jeep + + + + + Model A and Model T Motor CarReproduction Corp. + + + + + Kensington Welding & Trailer Co.Kensington, Connecticut + + + + + Nomanco, Inc. + + + + + FAST TRAC MANUFACTURING; MOTORCYCLES, CALIFORNIA AS OF 5/2002 KNOWN AS CHEROKEE MOTORCYCLE COMPANY, + + + + + Bills Welding Model Trailer + + + + + Iben Boat Trailer + + + + + Super CookerMfd. by Deep South Sales Co. + + + + + Tecumseh Products Co., Engine Div. + + + + + Cavalier Trailer Mfg. Co. + + + + + Belshe TrailerTecumseh, Oklahoma + + + + + Downey Sheet Metal Shop + + + + + Ber-Vac (Canada) + + + + + Les Autobus M.C.I. + + + + + W. F. Larson, Inc. + + + + + TCI,Inc.Benson, Minnesota + + + + + Galactic Corp. + + + + + U.S. CARGO, INC + + + + + American Duralite Corp. + + + + + Snyder Trailer Co. + + + + + Vacationar Motor Home Truck + + + + + Ampco Mfg. + + + + + Forest City Industries, Inc. + + + + + Mini-CruiserMfd. by R.B.R. Corp. + + + + + YENTES BROTHERS WELDING; LANCASTER, CALIFORNIA + + + + + Capriolo + + + + + Smalley Mfg. Co. + + + + + Feldman Custom TrailersBowling Green, Kentucky + + + + + Wynona Corp.Nappanee, Indiana + + + + + Bankhead Welding Service + + + + + Morger Welding & Mfg., Inc.Bakersfield, California + + + + + Wagon-Haven, Inc. + + + + + Parson Co. Div.Div. of Koehring Co. + + + + + Catalina Amphibious Homes + + + + + General Coach Works, Inc. + + + + + LaSalle HomesDiv. of Tidwell Industries, Inc.,Ripley, Mississippi + + + + + Bowie Industries Corp.Bowie, Texas + + + + + Homemade motorcycle code (seeOperating Manual, Part 1,Section 2.) + + + + + GULF STREAM + + + + + Lectracan + + + + + Multition Hydraulic Truck + + + + + RIDGELINE, INC; WASHBURN, TN + + + + + Comet Construction Co. + + + + + Ford (also see English, French,German, and Italian Ford) + + + + + H. & W. Mfg. Co. + + + + + Kenworth Northwest, Inc.Seattle, Washington + + + + + Triggs-Miner Corp. + + + + + Pryer Industries (Ada, Ohio) + + + + + Stoner Totter Trailer + + + + + Cambridge Mfg. Co., Inc. + + + + + Namco., Inc. + + + + + Speedster Motorcars + + + + + Sea Lion Utility Trailer + + + + + Bertone + + + + + Parkhurst + + + + + FAST ; SNOWMOBILES (TO INCLUDE BLADE MODEL) + + + + + Vanden Plas + + + + + PARIS CUSTOM TRAILER CO.; TEXAS + + + + + Oliver + + + + + Arps Div.Div. Chromalloy American Corp. + + + + + FIBERGLASS INTERNATIONAL, INC.; SCHALLER, IS + + + + + Muntz + + + + + MULTITEK, INC; PRENTICE, WI TRAILER & CONST EQUIP + + + + + GARDEN STATE CHASSIS REMANUFACTURING, INC + + + + + Mankato Mobile Homes, Inc. + + + + + Reids Trailers, Inc.Pleasant Garden, North Carolina + + + + + Baughman Mfg. Co. + + + + + United Fiberglass + + + + + Ring-o-matic Mfg. Co.Pella, Iowa + + + + + Mustang + + + + + Austin Products, Inc.Subsidiary Austin Industries, Inc. + + + + + Butler, L. T. + + + + + McBurnie Coach Craft, Inc. + + + + + SOUDRE KERR, INC.; COOKSHIRE, QUEBEC CANADA + + + + + Anderson Coach Co. + + + + + RETTIG ENTERPRISES; SIKESTON, MO + + + + + Flexi-Coil Ltd. + + + + + Johnny Lightning + + + + + Royal Land Yacht + + + + + McNamee Coach Corp. + + + + + Ohta + + + + + Bay Trailers + + + + + LIEBHERR COMPANIES; CRANES & CONSTRUCTION EQUIPMENT + + + + + SunBird, Inc. + + + + + Precision Cycle Works + + + + + Holland Camper Co. + + + + + Dico Co.Des Moines, Iowa + + + + + Hartman-Fabco, Inc. + + + + + Mobile of Marysville + + + + + Cascade Corp. + + + + + A D BOIVIN SNOWMOBILES; SNOW HAWK MODELS + + + + + Trivellato + + + + + Medford Industries + + + + + Pro-Trail, Inc.Nashville, Tennessee + + + + + Erie City Welding & Spring + + + + + HUTCO BOAT TRAILER + + + + + Mid-Atlantic Homes Co. + + + + + Arrowhead Trailers + + + + + Classic Roadsters, Ltd. + + + + + NorthlandMagline, Inc. + + + + + FlamencoMfd. by Sundancer Div. of WinstonIndustries + + + + + Jude Tent Trailer + + + + + EMERSON TRAILERS, INC., FLORIDA + + + + + Hester Plow Co., Inc. + + + + + Mark Line Industries, Inc.Bristol, Indiana + + + + + Trail Breaker + + + + + Noel Mfg. + + + + + Clypso Motor Home + + + + + Travel Car Motor Home + + + + + MCN Mobile Homes Corp. + + + + + K-D Mfg. Co. + + + + + Centurion International, Inc.Waco, Texas + + + + + Vada Open Top Cattle Trailer + + + + + Abbot, Paul Co., Inc. + + + + + Fuji Robbt Jr (Mfd. by H-MVehicles, Inc.) + + + + + Baker Material Handling Corp. + + + + + Longhorn Trailers; Also see McKinley Enterprises + + + + + Rivercraft Boat Trailers + + + + + Calvacade Industries, Inc.White Pigeon, Michigan + + + + + Target Products Division, Federal-Mogul Corp. + + + + + Star Meteor FloridaDiv. of Divco-Wayne Industries + + + + + MZ + + + + + Adventure Wheels Motor Home + + + + + Westways Mfg. + + + + + Pacemaker Boat Trailer + + + + + Thomas Built Bus Co. + + + + + Gates, Walter C. + + + + + Nova Bus + + + + + Beechwood Industries, Inc. + + + + + Gee-Bee-Dee Manufacturing & Supply Co. + + + + + Mid-West Choppers, Inc. + + + + + G & H Manufacturing, Inc.Arlington, TX; trailers. + + + + + New McGrath + + + + + Horch Limousine + + + + + Wayside Campers + + + + + K-Mart Camper Foldup + + + + + DORT MOTOR CAR COMPANY; FLINT, MICHIGAN + + + + + Whiteman Ind. + + + + + Rach WeldingSt. Joseph, Michigan + + + + + Shelby Mobile HomesDiv. Commodore Corporation + + + + + Taunus (German Ford) + + + + + Pitman Div., Emerson Electric Co. + + + + + All Around Horse Trailer + + + + + Sweepster, Inc. + + + + + Sterling + + + + + Aston-Martin + + + + + Hatfield Welding & TrailerSales, Inc.Mt. Pleasant, Texas + + + + + Penn Trailer + + + + + Chrysler + + + + + Colony Mfg. & Sales Corp. + + + + + Longlife + + + + + Maserati + + + + + PTV + + + + + Kinroad Xintian Motorcycle Mfg. Co., Ltd. + + + + + Bonanza + + + + + King Richards, Inc. + + + + + Steury Trailer + + + + + P.J. Trailer Manufacturing, IncSumner, TX; utility trailer + + + + + Bobbi-Kar + + + + + Gallatin HomesBelgrade, Montana + + + + + TWIST N GO MOTOR SCOOTERS & CYCLES + + + + + Condor Coach + + + + + Bond + + + + + PDV + + + + + Woodill Wildfire + + + + + Skyteam Corp., Ltd. + + + + + Number One + + + + + TBC + + + + + Kris Kraft Mobile Homes + + + + + Wells Western Trailers; Also see Western Recreation Mfg., Inc. + + + + + Darcell Industries, Inc. + + + + + ArgoSee Onatario Drive & Gear Ltd. + + + + + Enfield India LimitedMadras, India + + + + + Space Motor Home + + + + + Hitch HikerMfd.by R. V. Kompacts, Inc. + + + + + BSA (United Kingdom) + + + + + M.B.M. + + + + + Mountain Manufacturing Co., Inc. + + + + + Work-N-Play + + + + + Stew-Gar, Inc. + + + + + Portable Elevator Mfg. Div.,Dynamics Corp. of America + + + + + Buell Motor Co. + + + + + Scootalong + + + + + R-Anell Homes, Inc.Denver, Colorado + + + + + H.N.L. CORP AND OR HENRY L. LANCIANI CORP. + + + + + Go-Tel Leasing Corp. + + + + + G & G TRAILERS; GILLIAND & GILLIAND; PRESTON GILLIAND, HALLS, TN + + + + + Klein Products, Inc. + + + + + Highway Sleeper Corp. + + + + + Down (2) Earth Trailers + + + + + Plains Industries, Inc. + + + + + Islander Motor Home + + + + + Stuart + + + + + Cord + + + + + Towmaster + + + + + Badger Construction Equipment Co.,Division of Burro-Badger Corp. + + + + + Hyundai + + + + + Speedex Tractor Co.Ravenna, Ohio + + + + + Coose Trailer Mfg. Co.Lockwood, Missouri + + + + + Jec Ro + + + + + Leader Horse Trailer + + + + + Kountryaire Travel Trailer + + + + + HomeliteDiv. Textron, Inc. + + + + + Jays Hy Lift Manufacturing Co. + + + + + Essick/Hadco Div.Div. A-T-O, Inc. (Formerly EssickMfg. Co.) + + + + + Kempf Car Hauler + + + + + Happy Travl'r Coaches, Inc. + + + + + Reeves Roofing Equipment Co. + + + + + Lance Truck Mount Camper + + + + + Joplin + + + + + Derbi Motor Corp. + + + + + Skyjack + + + + + Jim Dandy, Inc.Chickasha, Oklahoma + + + + + Kodiak Coach & Mfg. Co. + + + + + CHOPPER WORKS, PERFORMANCE, INC.; HAMPSTESD, NH + + + + + JENNINGS TRAILERS, INC; EMORY, TEXAS + + + + + Wise-Craft Mfg. + + + + + BECKHAM TRAILERS, INC.; WICHITA , KANSAS + + + + + Phillips Mfg. Co., Inc.Lehi, Utah + + + + + Lufkin TrailersDiv. of Lufkin Industries--Lufkin, Texas + + + + + CARGOMATE TRAILER ; CAMPING + + + + + Glen Manor Homes, Inc. + + + + + Constructore Trailers, Inc.Sarasota, Florida + + + + + Lee Boy Construction Equipment + + + + + Zhejiang Xingfu Motorcycle Machine Co., Ltd. + + + + + Panhard + + + + + Nordic + + + + + Hylton Homes, Inc.Phil Campbell, Alabama + + + + + Bucko, Inc.Buhl, Indiana + + + + + Malaguti + + + + + Siata + + + + + Murray Ohio Manufacturing Co.Brentwood, Tennessee + + + + + New Horizons or Horizons, Inc. + + + + + Daewoo + + + + + Krown Camper + + + + + Hines Mfg. Co.Rocky Mount, North Carolina + + + + + Neosho Custom Coach Co.Div. Gearhart's Building Materials + + + + + Universal Camper Mfg. + + + + + Tatra + + + + + American Road Machinery, Inc. + + + + + Gafner Machine, Inc.Escanaba, Michigan + + + + + Buckeye Flatbed Trailer + + + + + Lady Bea TrailersMalden, Massachusetts + + + + + Dura-Craft Mobile Homes + + + + + Yenco + + + + + Medical Coaches, Inc. + + + + + Harnischfegar Corp.Subsidiary of Harnischfeger P&H + + + + + Triumph Motor Co. (TRIU for autoentry) + + + + + Maverick Mobile Home + + + + + H & H SnowmobilesCleveland, OH + + + + + Seabring Home, Inc. + + + + + Schertzer Equipment Co. + + + + + Jupiter + + + + + Dropbox, Inc. + + + + + Jahn Flatbed Trailer + + + + + Avalair Corp. + + + + + MINI DIVISION OF BMW MAKER OF COOPER & COOPER-S + + + + + Lakewood + + + + + Ernest Holmes Div. + + + + + J B EnterprisesElkhart, IN + + + + + Romae IndustriesMountain View, Missouri + + + + + Kasten Mfg. Co.Allenton, Wisconsin + + + + + Southwind Motor Home + + + + + Clemco Industries + + + + + Roam-A-Bout Camper + + + + + Omni Motorsports, Inc. + + + + + Rice & Woolard Mfg., IncNaylor, MO + + + + + Foreman Mfg. Co. + + + + + Audi + + + + + FeedlinerMfd. by Globe Fabricators, Inc. + + + + + Yanmar Tractor USA, Inc.Bensenville, Illinois + + + + + Salsbury + + + + + BETTER-WAY PRODUCTS, INC; INDIANA (BISSON) + + + + + TransporterAmerican Trailer & Mfg. Co. + + + + + FOUR H MFG., INC; SUMNER, IA + + + + + Hanson Camping Trailer + + + + + Escapade Motor Home + + + + + Highway Cruisers, Inc. + + + + + Middlesex Equipment Co. + + + + + Long Chih Industrial Co., LtdTaipai, Taiwan + + + + + Rabbit, Jr. + + + + + WTM, Inc. + + + + + Pace Arrow + + + + + Cardinal Homes, Inc. + + + + + BrockwayDiscontinued production in 1977 + + + + + Circle LMfd. by Well-Built Trailers, Inc. + + + + + Agricultural Machinery Div.Div. FMC--mfrs the Bean sprayer + + + + + Lincoln-Continental + + + + + Deluxe Homes, Inc. + + + + + Tel Star Trailers + + + + + Renaissance Motors + + + + + Herzig Mfg. Co. + + + + + New Paris Traveler Corp.New Paris, Indiana + + + + + Safari Motor Coaches, Inc.Harrisburg, OR + + + + + Pipestone Tandem Boat Trailer + + + + + Glasstite, Inc.Dunnell, Minnesota + + + + + Mondial + + + + + Badger Machine Div.Ronco Engineering Co. + + + + + Bantam Camp Trailer + + + + + AlsportSee Boa-Ski Alsport Ltd. + + + + + Dexter Trailer, Inc. + + + + + Presidential Mobile HomesDiv. U. S. Aluminum Company + + + + + Daffin Mfg. Co. + + + + + Carolina Mobile Homes + + + + + Belvedere Mobile Homes + + + + + Opel + + + + + Karl M. Neufeld + + + + + CARRON TRUCK REPAIR, LTD; GRANITE CITY ILLINOIS + + + + + DARDON, INC. + + + + + East Texas Longhorn Trailers, LLC + + + + + Camper Corp. of America + + + + + Urili Flatbed Trailer + + + + + Biltrite Mobile Homes + + + + + Kari Cool Trailer + + + + + Speedway Products, Inc.Mansfield, OH + + + + + Trailcraft Boat Trailer + + + + + THINK ELECTRIC VEHICLES; DIVISION OF FORD MOTOR COMPANY + + + + + Muhlberg + + + + + Pull A Long Mfg. & Sales + + + + + Cimatti + + + + + Amco Boat Trailer + + + + + Macanismos Ensamblados S. A. De C. V.Mexico; tank trailers + + + + + ZIMMERMAN TRAILERS + + + + + Carsons Mfg., Inc. + + + + + FMC Corp. + + + + + Trike + + + + + MayberryMfd. by Rollohome Corp. + + + + + Elgin Sweeper CompanyElgin, Illinois + + + + + B-M-B. Mfg. Co. + + + + + Marque, Inc.Bristol, Indiana + + + + + Suzuki + + + + + Marion Power Shovel Co., IncDiv. of Dresser Ind. + + + + + Aluminum + + + + + BRUSH ROADSTER + + + + + Piper Industries, Inc. + + + + + T&E ENTERPRISES OF HERSCHER, INC.; HERSCHER.IL + + + + + Fabricated Alloy Building Co., LLC + + + + + Richards Utility Trailer + + + + + Andrea Mobile Homes + + + + + Cleasby + + + + + Case, J. I., Co.Subsidiary Tenneco. Inc. + + + + + Trail It Horse Trailer + + + + + Necedah FlyersMfd. by Twin City Racing + + + + + FASTLINE; KANSAS + + + + + Chaika + + + + + Davenport Trailer or Mobile Home Co. + + + + + SEWER EQUIPMENT CO. OF AMERICA + + + + + General Moped Co. (New York,New York) + + + + + All Steel Mfg. Co. + + + + + Corbin Electric + + + + + JI-EE Ind., Co., Ltd. + + + + + Power Curber, Inc. + + + + + Vicon Farm Machinery, Inc. + + + + + Italvelo + + + + + Essex + + + + + Rebel Boat Trailer + + + + + Holandia Holder + + + + + Sensation + + + + + Ashland Industries, Inc. + + + + + Sabre Equipment Div.Div. Sabre Metal Products + + + + + Marshfield Homes, Inc. + + + + + Worthington Champ + + + + + Modern Mobile Homes + + + + + TRANSPORT TRAILERS; FENNVILLE, MI + + + + + AlyMfd. by Skyline Corp. + + + + + Dressen Custom Trailers, Inc. + + + + + Colonial Flatbed Trailer + + + + + APPALACHIAN MFG. INC.;ELKHART, IN + + + + + Air Support IndustriesGlassboro, New Jersey + + + + + BJ Mfg. Co.Harrison, Arkansas + + + + + Clark Mfg. Co. + + + + + Kent Industries, Inc.Bristol, Indiana + + + + + Fieldacre Horse Trailer + + + + + Ace Enterprises, Inc.Miami, Florida + + + + + Hummel + + + + + Atlantic Coast Camper + + + + + Trac-Machinery Corp.Subsidiary of E. D. Etnyre & Co. + + + + + All Seasons Motor Home + + + + + Wabash National CorporationLafayette, Indiana + + + + + Competitive Boat Trailer + + + + + Victory Motorcycles + + + + + Sila Autoretta + + + + + ASM TRAILERS; MOUNTAINBURG, AR + + + + + Phelps Horse Trailer + + + + + Henslee Mobile Homes, Inc. + + + + + Ducati + + + + + Joy Mfg. Co. (Air Power Group)Montgomeryville, Pennsylvania + + + + + Rebel Mobile HomeDiv. Skyline Homes + + + + + Guidon Camper Trailer + + + + + Broderson Manufacturing Corp. + + + + + Hy-Dynamic Div.Bucyrus-Erie Co. + + + + + Dart + + + + + Cullip Industries + + + + + Byers Mfg. Inc.Lawton, Michigan + + + + + Mid-Equipment Corp. + + + + + MLBLT + + + + + Ag-Chem Equipment Co. Inc.Edina, Minnesota + + + + + Tara Products, Inc.White Pigeon, Michigan + + + + + Aalite Co. + + + + + Farm Shop, Inc.Congerville, Illinois + + + + + Zanella + + + + + Budd Co. Trailer Division, TheFormerly Ginchy Mfg. Corp.--Downingtown,Pennsylvania + + + + + EHM Mfg. Co. + + + + + Stone Construction Equipment Inc.Honeyoye, New York + + + + + Western (NEV) Neighborhood Electric Vehicles + + + + + West Wind Trailer Co. + + + + + SpacemasterColumbia, Tennessee + + + + + Destiny Industries, Inc.Moultrie, Georgia + + + + + BoatoterMfd. by Thomas Mfg. + + + + + Futura Mobile Home + + + + + ROOSE MANUFACTURING; PELLA, IA + + + + + American Lifan Ind., Inc. + + + + + Swift Motorsports, Inc. + + + + + Atlas Hoist & Body, Inc. + + + + + Rite-Bilt + + + + + Thomas & Co. + + + + + Vance Campers, Inc. + + + + + Prew Proco Travel Trailer + + + + + Barker Trailer Manufacturers, Inc.Phoenix, Arizona + + + + + Bradley GT + + + + + Mazda + + + + + Hank's Mobile Home Service + + + + + Plastic Forming Co. + + + + + DOUBLETREE RV, LLC; LAGRANGE, INDIANA + + + + + Kayout-Forester Travel Trailer + + + + + Knowles Mfg. Co. + + + + + Steed-Pollak Mfg. Co. + + + + + Lovebug Travel Trailer + + + + + Howe Engineered Sales Co.Waterloo, Iowa + + + + + V. E. Enterprises + + + + + ExhibitorMfd. by Miley Trailer Co., Inc. + + + + + M.T. Trailers, Inc. + + + + + J & L Tank, Inc.Saginaw, Texas + + + + + Big Well Industries + + + + + Trainliner + + + + + Soni II + + + + + Lazy J Horse Trailer + + + + + PRO LINE TRAILERS; COCOA, FL + + + + + Steyr-Daimler-Puch + + + + + STROHL CORPORATION; MISHAWAKA,IN ; VARIOUS STYLES TRAILERS + + + + + Lindsay Co., Inc., P. K.Deerfield, New Hampshire + + + + + Paughco, Inc.Carson City, NV + + + + + Can-Am + + + + + Huron Industries, Inc. + + + + + Whitehaul Kaler Trailer + + + + + Lincoln Park Mobile Homes, Inc.Shipshewana, Indiana + + + + + American Trailer Specialists + + + + + TOP HAT INDUSTRIES, MT. PLEASANT, TX (TRAILERS) + + + + + Carey Trailers, Inc.Weatherford, Texas + + + + + Bertran Trailer + + + + + Fleetcraft Corp. + + + + + Dunham Lehr, Inc. + + + + + Parmiter, P. J. & Sons Ltd. + + + + + Novae Corp. + + + + + Wise Welding, Inc. + + + + + Masterline Co., Inc. + + + + + Summers Mfg. Co. + + + + + Road Roamer Campers + + + + + Bertolini Container Co.Butler, New Jersey + + + + + Conmaco, Inc. + + + + + Frazier + + + + + H & S Mfg. Co., Inc. + + + + + River Trail TrailersLittle Rock, Arkansas + + + + + Raymur Acceptance Corp. + + + + + Burch Trailer + + + + + MECOX RESOURCES SA DE CV; MEXICO + + + + + CMI Load KingElk Point, SD; commercial trailers + + + + + Darwin + + + + + AVENGER CORPORATION; MICHIGAN + + + + + Southwest Truck Body Co.St. Louis, Missouri + + + + + Dual-Wide, Inc. + + + + + JAMMER CYCLE PRODUCTS, INC BURBANK, CA + + + + + Otterbacher Mfg., Inc.Crestline, Ohio + + + + + CEI EQUIPMENT COMPANY, INC; CEDAR RAPIDS, IA + + + + + Universal Tractor Foreign Trade Co. + + + + + Seemore Flatbed Trailer + + + + + DMP + + + + + Brutt + + + + + Warner & Swasey Co. + + + + + Acura + + + + + CMWC Trailer Co., Inc. + + + + + Ferris Ind. + + + + + Long Haul, TheMfd. by Mark Fore Vatco Ind. (M.F.V.) + + + + + K & M Mfg. Co.Renville, Minnesota + + + + + Cleavers of BismarkBismark, Arkansas + + + + + Mobile Products, Inc. + + + + + Port Trailer Mfg. Co.City of Industry, California + + + + + Roll-O-Flex, LTD.Regina, Saskatchewan + + + + + Ramlin + + + + + Puch + + + + + C & S Trailer WorldFort Worth, Texas + + + + + Coon Custom Coach Mfg. + + + + + AMERICAN CRUISER MOTORHOME, NAPPANEE, IN + + + + + Arrow Campers, Inc. + + + + + Buckskin Trailer Mfg. Co.Boosier City, Lousisiana + + + + + Chromalloy American Corp., FarmSystems Division + + + + + Rexnord, Inc. + + + + + Idaho Norland Co. + + + + + Bo Cats, Inc.Garden City, Kansas + + + + + Pinson Truck Equipment Co. + + + + + Private CoachDiv. F & L Construction + + + + + Peerless DivisionDiv. of Lear Siegler--Tualatin, Oregon + + + + + Northern Star Mobile Home + + + + + Facellia + + + + + Terraplane + + + + + Multiquip + + + + + Trail Boss + + + + + Heritage by Abel Corp. or Franklin Coach Co., Inc. + + + + + Portland Wire & Iron Works + + + + + Madden TrailerAshdown, Arkansas + + + + + Elder Trailer & Body + + + + + Kolberg Mfg. Corp., Subsidiary ofPortec, Inc. + + + + + Reinell Boat Trailer + + + + + Tri-Way HD Snowmobile Trailer + + + + + Berkshire Industries + + + + + Klassen Homes, Ltd. + + + + + Balkan + + + + + Custom Plumbing Co. + + + + + ALFAB INC.; TRAILERS + + + + + Italia + + + + + Emergency One, Inc. + + + + + Creightons TrailerMaryland + + + + + MARTINS ENTERPRISES; DONALDS, SC + + + + + Estevan Industries, Ltd. + + + + + Right Products, Inc. + + + + + E-Z-GoSee Polaris Industries Inc. + + + + + Admiration HomesElkhart, Indiana + + + + + B & S Boat Trailer Mfg. Co.Gainesville, Florida + + + + + Christie, J. W. Bill, Inc.Collin County, Texas + + + + + Platt Trailer Co. + + + + + Woodsmen Camper + + + + + Don-A-Bell Homes, Inc. + + + + + Northwestern Motor Co.Subsidiary Fairmont Railway Motors, Inc. + + + + + Bilken EnterprisesMfr. of Specialty Trailer (bought out byAmerican Enterprises) + + + + + Sharratt Mobile Homes & Supplies + + + + + Liftall ForkliftMfg. by Lion Mfg. Co., Inc. + + + + + C & C TRAILERS, INC. NORMAN OKLAHOMA + + + + + Atlas Tool & Mfg. Co. + + + + + Brobts & Associates + + + + + Silver Star Trailer + + + + + Sea Breeze Trailer + + + + + CommandoYard tractor--mfd. by Daybrook-OttawaDiv. + + + + + Range Rover of North America + + + + + Delto Homes, Inc. + + + + + Barco Mfg. Co.Johnstown, Pennsylvania + + + + + Stam Mfg. Co. + + + + + Bel-Aire Campers or Coaches + + + + + TIMBERKING, INC + + + + + Thompson + + + + + Crown Coach or Crown Cargo Coach + + + + + Chunfeng Holding Group Co., Ltd. + + + + + Antique & Collectible Autos, Inc. + + + + + Lear SieglerMfd. by Signal Div. of Lear Siegler,Inc. + + + + + Gazelle + + + + + Dennison Utility Trailer + + + + + Mountain Valley Enterprises + + + + + Cambridge Homes, Inc. + + + + + Open Road Industries + + + + + M. P. McCaffrey + + + + + Sage Mfg. Co. + + + + + Bee Bob Trailers + + + + + Little Giant Crane & Shovel, Inc.Des Moines, Iowa + + + + + HOMESTEADER, INC.; NEW TAZEWELL, TN + + + + + Courthouse Camper Trailer + + + + + BMW + + + + + TMC Inc.Poskin, WI; mfg. pontoon trailers + + + + + Load Rite TrailersDiv. of Pennsbury Mfg., Inc. + + + + + Columbia Mfg. Co. (subsidiary Yard-Man Co. - Columbia Commuter) + + + + + Bingham + + + + + Bray Trailers + + + + + Sportsliner Camping Trailer + + + + + Safari + + + + + Yampa Coach Mfg. + + + + + Mascot Homes, Inc. + + + + + Dixon Industries, Inc.Coffeyville, Kansas + + + + + Cam-Pact Co., Inc. + + + + + Didier Mfg. Co.Franksville, Wisconsin + + + + + SterlingSterling-Salem Corp. + + + + + Crossroads + + + + + Chaparral Mfg., Inc. + + + + + Heron Travel Campers + + + + + Artcraft of Georgia + + + + + Yankee + + + + + Roadmaster Mfg. Co. + + + + + Circle H Horse Trailer + + + + + Carlisle + + + + + Scott Equipment Co. + + + + + MOFFETT ENGINEERING, LTD; FORKLIFTS ETC + + + + + Arnolt-Bristol + + + + + Howard Commercial Turf Equipment Co.Mfrs. Mowers--St. Louis, Missouri + + + + + Bedford + + + + + Alex Fiegelson Co. + + + + + Obrect Trailer + + + + + Lazy Daze Motor HomeMfd. in Pomona, California + + + + + Rambler-manufactured prior to 1966(1966 and later Ramblers manufac-tured by American Motors - seeAme + + + + + Brandy IndustriesColon, MI; white tail camping trailers. + + + + + Penn RoyalMfd. by Wisconsin Homes, Inc. + + + + + Tecumseh + + + + + Aero Glass Boat Co. + + + + + Tanden Boat Trailer + + + + + James + + + + + Sun Belt Energy Housing, Inc. + + + + + CompanionMfd. by Kit Mfg. Co. + + + + + Lighter-Bilt Trailers, Inc.Durham, California + + + + + U.S. Bus Corp. + + + + + Carabela (Mexico) + + + + + Selma Trailer & Mfg. Co. + + + + + Centurion Travel Trailer + + + + + GOLD STAR ENTERPRISES; SIKESTON, MO + + + + + ALLEN MANUFACTURING, INC; FORT MORGAN, CO; TRAILERS + + + + + Warrior Mfr.Henderson, Texas + + + + + How-Lo Campers Co. + + + + + LOAD-EAZ Trailer Inc.Bensalem, Pennsylvania + + + + + MPC Cruiser Camper Trailer + + + + + Irabeck & Co.Harrington, Delaware + + + + + Lambretta + + + + + SOUTHWEST GOOSENECK; SAN ANTONIO, TX + + + + + McCollough CorporationBrookfield, MO + + + + + Twilight Coach Mfg. + + + + + Showco Nomad Trailer + + + + + Wynn Trailer Works + + + + + JZ Riders Custom Motorcycles + + + + + Van American, Inc.Goshen, Indiana + + + + + EAST TENNESSEE TRAILERS LLC; MOSHEIM, TN + + + + + Red Gooser Horse Trailer + + + + + Holstein Mfg., Inc.Holstein, Iowa + + + + + Montebello Mobile Home Trailer + + + + + Olds Trails Trailer + + + + + Crossland Industries + + + + + Falco Mfg. Co. + + + + + SMB Teleiamotre (Bologna, Italy) + + + + + REMEQ, INC.; PRINCEVILLE, QUEBEC CANADA + + + + + Rolls International TrailerMobile Home + + + + + Double J Horse Trailer + + + + + Great Lakes Cargo, LLC + + + + + Iowa Mold Tooling Co., Inc. + + + + + Ken Craft Trailer + + + + + McCabe-Powers Body Co. + + + + + Eagle Crusher Co., Inc. + + + + + Cub Cadet Corp.Subsidiary of MTD Products, Inc.Purchased Cub Cadet tractor line fromInternational Ha + + + + + Stidham Horse Trailer + + + + + Hilltop Mfg., Inc.El Dorado, Arkansas + + + + + Bobby's Custom Camper Mfg. + + + + + Lewaub Trailer Mfg. + + + + + White Pine Campers, Inc.Waupaca, Wisconsin + + + + + Cooper Alpine Motor Home + + + + + Eljay Mfg. Co. + + + + + ASM TRAILERS; MOUNTAINBURG, AR + + + + + Kingston Horse Trailer + + + + + Token Flatbed Trailer + + + + + Clayton Craft + + + + + AMFSee Harley-Davidson + + + + + Metropolitan + + + + + Monroe Motors Inc., Wally-Mo DivisionHolladay, Tennessee; manufactures carcarriers and utility trail + + + + + Heathkit + + + + + Dairy Equipment Co.Madison, Wisconsin + + + + + Comanche Trailer Corp. + + + + + Autocarrier and A.C. + + + + + Fischer + + + + + C & C IndustriesMfg. of Master Track F.B. Trailer;Gaithersburg, MD + + + + + TK Sterling + + + + + PREMCO PRODUCTS, INC.; LA VERNE, CA; TRIPLE L TRIALERS + + + + + Columbia Mobile Homes, Inc. + + + + + Star Transport Trailers, Inc.Sunnyside, Washington + + + + + Pollock Industries + + + + + Cumberland CoachesH & W Mfg. Co. + + + + + Taylor-Dunn Industrial Electric VehiclesAnaheim, California + + + + + Beiler Hydraulics, Inc. + + + + + Beatrice Motor Mart Mfg. & Easy-Haul + + + + + Royer Foundry and Machine Co.Kingston, Pennsylvania + + + + + Reco Goliath Tent Trailer + + + + + Simek Mfg., Inc. + + + + + CORNELIUS MANUFACTURING, INC.; ELNORA, IN + + + + + Indiana + + + + + Y W + + + + + J-Rod Trailer Co.Red Oak, Texas + + + + + Oelrich Mfg. Co. + + + + + Ride-On, Inc.Mfrs. boat trailers--Ceres, California + + + + + Mauldin Mfg. Co., Inc. + + + + + Monte Carlo Mobile Homes + + + + + CARGO CRAFT, INC.; GEORGIA + + + + + Jay-Kee Mfg., Inc.State Center, Iowa + + + + + T & T Industtries, Inc. + + + + + Cline + + + + + Holden + + + + + Kar-Rite CorporationFranklin Park, Illinois + + + + + Pacemaker Mobile Homes & Travel TrailerDiv. Lonergan Corporation + + + + + Capital Industries, Inc. + + + + + Ryobi + + + + + New Flyer + + + + + Swinger Camper Mobile Home + + + + + Intrapid Trailer + + + + + Duplex Truck Div.Div. of The Nolan Co., Midvale, Ohio + + + + + Keystone Trailer & Equipment Co.Kansas City, Missouri + + + + + Talbot-Carlson, Inc.Audubon, Iowa + + + + + Grenadier Mobile HomesMfd. by Statler Homes Mfg. + + + + + SCOTT'S RIDING MOWERS/TRACTORS MFG FOR SCOTTS BY JOHN DEERE + + + + + Baker-York Forklift + + + + + Commodore Corp.Syracuse, Indiana + + + + + JD HANDLING SYSTEMS OR D.J. STEELE & CONSTRUCTION + + + + + Cortez House Trailer + + + + + Trail-It Coach Mfg. Co. + + + + + I. A. M. E. + + + + + Bergantine + + + + + INMAN TRAILERS; INMAN, KS + + + + + Breeze Camping Travel Trailer + + + + + Champion Pneumatic Machinery Co.,Inc. + + + + + Bigfoot Ind., Inc. + + + + + RIDLEY MOTORCYCLE COMPANY; OKLAHOMA CITY, OK + + + + + Powerline ProductsDiv. of White Oak, Inc.--Washington,Indiana + + + + + Simca + + + + + REINKE MFG. INC; DESCHLER, NEBRASKA + + + + + HICO Corp. of America + + + + + Arctco, Inc.See Arctic Enterprises + + + + + Kannon Motorcycles, LLC or SJH Mfg., Inc. + + + + + Sunbird Boat CompanyColumbia, SC; boat trailers.Haleyville, Alabama + + + + + G & L Utility Trailers + + + + + Arnold Travel Trailer Mfg. Co. + + + + + Jeep (for model years prior to 1970) + + + + + Car Caddy + + + + + KEARNEY TRAILERS CO. GRNADSALINE, TX + + + + + Popcycle Motors, LLC + + + + + Monson & Sons Trailer + + + + + Huffy + + + + + Boone Trailers, Inc.Palmer, Massachusetts + + + + + BrindleLaOtto Metal Fobricating Co., Inc. + + + + + Infinity Trailer Sales + + + + + Morgan Mobile, Inc. + + + + + Snake River Trailers + + + + + Dynamark Tractor Mower + + + + + Economy Camper Co. + + + + + Bounder Motor HomeMfd. by Fleetwood, Decatur, Indiana + + + + + Odyssey + + + + + McFarlane Mfg. Co., Inc. + + + + + MiddleburyMfd. by Coachmen Homes Div.Coachman Industries, Inc. + + + + + Holiday Royal Travel Trailer + + + + + Texan Trailer Mfg. Co. + + + + + CAREFREE CUSTOM CYCLES, LLC + + + + + Pace American, Inc.White Pigeon, Michigan (throughMarch, 1988)Middlebury, Indiana (EffectiveApril, 1 + + + + + DKW + + + + + ARSENAL TRAILER MANUFACTURING, INC; HARRISONBURG, VA + + + + + EXISS ALUMINAM TRAILERS, INC.; EL RENO, OK + + + + + Alcan American, Inc. + + + + + Sun Valley Car Carriers + + + + + Western Auto Supply Co.Also see make Wizard + + + + + Sunbeam + + + + + Camper De Ville, Inc. + + + + + CataphoteDiv. Ferro Corp., Jackson, Mississippi + + + + + Unpublished farm or garden equipment mfr(See Operating Manual, Part 1,Section 2) + + + + + Circle Supreme Mfg.Knowville, Tennessee + + + + + Advance Machine Co. + + + + + Polar Mfg. Co.Holdingford, Minnesota + + + + + Badger Trailer Co. + + + + + Rex Mobile HomesDiv. of Divco-Wayne Industries + + + + + Schult Mobile Homes Corp.Middlebury, Indiana + + + + + Whitehead & Kales + + + + + Starcraft Mfg. Co. + + + + + Gill Mfg. Co. + + + + + Dempster + + + + + Daihatsu + + + + + Continental + + + + + Autobianchi + + + + + E-Z Loader Boat Trailer + + + + + Firestone Tractor + + + + + Oriole Trailer Mfg. Co. + + + + + Cavco Ind. + + + + + CHARLY ELECTRIC MOTOR SCOOTERS ETC. + + + + + Chevrolet + + + + + A & C Knight, Ltd. + + + + + HUMMER; FORMERLY CODED AS AMGN/AMERICAN GENERAL CORP. AS OF 3/1/02 PART OF THE GENERAL MOTORS (GM) V + + + + + Dixie Chopper + + + + + Western Coach Corp. + + + + + Blue, John Co.Huntsville, Alabama + + + + + Golden Isle Trailers, Inc. + + + + + Roadmaster Rail, Inc. + + + + + Bulk-Hauler TrailerSee Kellebrew Mfg. Co. + + + + + Puma Camper SalesDiv. American Sterling Enterprises + + + + + ROLLS RITE TRAILERS, INC; MARIANNE, FL + + + + + Campfire Travel Trailer + + + + + Chibi + + + + + LEISURE TRAVEL VANS, LTD.; MORDEN, ME + + + + + RHEA'S TRAILER SALES, INC.; TEXAS + + + + + Bridgeville Trailers, Inc. + + + + + Pointer + + + + + M-B Co., Inc. of Wisconsin + + + + + Com-Camp + + + + + Charger Pick-up Campers + + + + + Starline Trailer Mfg. Co. + + + + + Schiebout Mfg. Co. + + + + + Ecohl Trailers + + + + + Nordine Mfg. Co. + + + + + Rugg Manufacturing Co. + + + + + Apache Corp. + + + + + Wisconsin Body & Hoist + + + + + Tiger Trailer + + + + + J. C. Penney + + + + + Peabody Solid Waste Management + + + + + Toyocar Van Container Trailer + + + + + Bloom, Inc. + + + + + Freeway, Inc. + + + + + Trail-Wide Corp. + + + + + Correct Craft, Inc. + + + + + Excel Industries, Inc.Hesston, Kansas + + + + + Beemer Trailer Mfg. & Sales + + + + + Calvade Trailer + + + + + Jason Mfg. + + + + + WeMac Mfg. Co.North Kansas City, Missouri + + + + + Tahiti Ski Trailers + + + + + Country-BoyMfd. by Reid's Mfg. & Welding Co. + + + + + Susquehanna-Santee Boat Works, Inc.Boat Trailers; Willow Street,Pennsylvania + + + + + Federal + + + + + Caulkins Boat Trailer + + + + + Butler Mfg. Co. + + + + + TRAILERS EXPRESS, INC. SIKESTON, MO + + + + + Fontenelle Homes, Inc. + + + + + Hi-U-Trailer Mfg. + + + + + Argosy Travel TrailerVersailles, Ohio--Sub. of Airstream + + + + + English Industries + + + + + Baron Motorcycle Co. + + + + + Erie-Sprayer Co. + + + + + Pierce Lowboy Trailer + + + + + Bultaco (Spain) + + + + + Merhow Industries + + + + + Briggs & Stratton Corp. + + + + + Wedgewood Homes + + + + + Excell Travel Trailer + + + + + Longrun + + + + + WRIGHT; STANDER & SENTAR MOWER MODELS;FARM & GARDEN EQUIPMENT + + + + + Roulette Caravan Co. + + + + + Manet + + + + + ASA + + + + + Byerly Trailer & Mfg. Co. + + + + + Unpublished trailer mfr. + + + + + T & L TrailersSikeston, MO; utility trailers + + + + + Gleason Corp. + + + + + R.E. Custom Boat TrailersWest Columbia, South Carolina + + + + + Highstone Trailer + + + + + Carolina Travel Trailers + + + + + TOP BRAND TRAILERS + + + + + J & J Flatbed Trailer + + + + + Mini-Marcellino + + + + + City Dump Trailer + + + + + Fruin + + + + + Heco Boat Trailer + + + + + Jay Wren Trailer + + + + + Ramses + + + + + Honorbuilt Trailer Mfg. + + + + + HYOSUNG MOTORCYCLES & MOPEDS; CHINA + + + + + Silver Eagle Travel Trailer + + + + + MID AMERICA MFG.; INC.; BERTRAND, MO + + + + + Solo Motors, Inc. + + + + + Bowman & Sons + + + + + Six Pac Camper + + + + + MDS + + + + + Realite Trailer + + + + + Pennsbury Manufacturing CorpBensalem, PA; boat trailers + + + + + ROYAL RIDER MOTORCYCLE MANUFACTURING CO., INC.; HUDSON, FL + + + + + MARINE TRANSPORTATION CO., INC.; NORWELL, MA + + + + + Magna American Corp. + + + + + Black Diamond Enterprises + + + + + E-Bus + + + + + Seiden Mobile Homes + + + + + Montgomery Ward (Riverside)MONT for reference only + + + + + Tyler Coach Mfg. + + + + + Rimer, Inc. + + + + + Circle K KennimoreOklahoma City, Oklahoma + + + + + Hill Dump Trailer + + + + + El Do-Craft Boat Co., Inc.Boat trailers--Smackover, Arkansas + + + + + Smily + + + + + Beall Trans-Liner, Inc.Portland, Oregon + + + + + Champion Home Builders Co.Dryden, Michigan + + + + + River Oaks Homes, Inc.Boaz, Alabama + + + + + Betten France TransportationKentucky + + + + + Page Trailer + + + + + Jacobsen Trailers, Inc. + + + + + Homeway Mobile Homes + + + + + Ebony Line Products + + + + + Mgnol Tandem Boat Trailer + + + + + Wicks Engineering & Construction Co. + + + + + Tempe Trailers + + + + + Seminole Boat Trailer + + + + + DAYTEC CENTER; HESPERIA, CA ; MOTORCYCLE FRAMES & PARTS + + + + + Borgward + + + + + Stilo Trailer + + + + + Electric Vehicle Corp. (mfrs. ofreplicas, Minneapolis, MN) + + + + + Davey Compressor Co. + + + + + Santa Cruz Trailer Mfg. Co. + + + + + Donnell Boat Trailer + + + + + Gad-About Trailers + + + + + Tigerline Trailer + + + + + Playmate Coaches + + + + + Biltwell (or Builtwell) + + + + + Ingersoll-Rand Co.Woodcliff Lake, New Jersey + + + + + Caribou Craft Pickup Camper & TrailerMfg. Co. + + + + + Parker + + + + + Silver Leaf Mfg. Co. + + + + + Del Rey Industries, Inc. + + + + + MK 5-1400 Motor Home + + + + + Rancho Trailers, Inc. + + + + + Duro Mobile Homes + + + + + Everybody's Motor Car Mfg. + + + + + RECREATION BY DESIGN LLC.; ELKHART, IN + + + + + Tejas Trailers, Inc.Bellville, Texas + + + + + Monon Trailer Div.Div. of Evans Products Co.--Monon,Indiana + + + + + Lola + + + + + Reo + + + + + Sparrowhawk Trailer Co. + + + + + Roust-About + + + + + Strick Trailers Corp.Fort Washington, Pennsylvania + + + + + Kato Engineering, Subsidiary ofReliance Electric + + + + + GENERAL WELDING & FAB., ELMA,NEW YORK + + + + + Gordon + + + + + Diamond City Trailer Mfg.Murfreesboro, Arkansas + + + + + Same & Lamborghini Tractors of NorthAmerica, Inc. + + + + + Suburban Motors, Inc. + + + + + Module, Inc. + + + + + SkeeterMfd. by Trailers, Inc. + + + + + Fox Better Built Trailers + + + + + Knox Homes Corp. + + + + + INDEPENDENCE MOTORCYCLE COMPANY + + + + + Cunningham + + + + + Travel Queen Motor Home + + + + + NEDLAND INDUSTRIES, INC.; RIDGELAND, WI + + + + + HoosierBoat Trailer--mfd. by Spreuer and Son,c. + + + + + New Bame Trailer + + + + + Zundapp + + + + + Drag Master Utility Trailer + + + + + Aero Liner Co. + + + + + International Mobile Homes of California + + + + + Ghieapy Jol Trailer + + + + + T & M EnterprisesCookville, Texas + + + + + MQ Power + + + + + Kit House Trailer + + + + + Mar-Val Industries, Inc. + + + + + Eagle Trailer Mfg., Inc. + + + + + Shippette Mobile Homes + + + + + CUSTOM AMUSEMENT PRODUCTS, COMPANY; DOVER, FLORIDA + + + + + Cimarron Mfg. Co.Oklahoma City, Oklahoma + + + + + Willborn Brothers + + + + + Landau Motor HomeAnaheim, Claifornia + + + + + Quaker City Iron Works, Inc.Philadelphia, Pennsylvania + + + + + Parkhurst Mfg. Co., Inc.Sedalia, Missouri + + + + + Tempo + + + + + PRO-TRAK TTRAILERS, INC.; CANTON, TX + + + + + AM General Corporation + + + + + Dynasty Electric Car Corp. + + + + + Weaver & SonsDiv. Ventoura Corporation + + + + + Wolverine Camper + + + + + Brooks Brothers Trailers, Inc. + + + + + Helmers Custom Coach + + + + + CLASSIC MANUFACTURING, INC. OR OWENS-CLASSIC MANUFACTURING, INC.; STURGIS, MI + + + + + Chevelle Mobile Homes, Inc. + + + + + J.F.W. Mfg., Inc.Wichita, Kansas + + + + + Unit Crane & Shovel Corp. + + + + + Soil Mover Mfd. Div. + + + + + Sebring Home Corp. + + + + + McCoy/Taylor, Inc. + + + + + Conway + + + + + Reddick Equipment Co., Inc. + + + + + Bonanza Travel Coach, Inc. + + + + + Lifetime Custom Coach + + + + + John T. Wydro + + + + + KINZE; FARM & GARDEN EQUIPMENT + + + + + Sea BirdMfd. by Sno-Bird Trailer Co., Inc. + + + + + Manatee HomesCommerce, Texas + + + + + Nothsway Tandem Trailer + + + + + Darian Mobile HomesMfd. by Richardson Div. GreatSouthwestern Corp. + + + + + Tradewind Industries, Inc.Formerly J. H. Holland Co. + + + + + Summitt Trailer + + + + + York Modern Corp. + + + + + Detroit Tool, Inc. + + + + + Bobcat Skid Steer LoaderManufactured by Melroe Div. + + + + + Chinook + + + + + Roaminghome Co., Inc. + + + + + TRANSTEQ (Transportation Techniques, LLC) + + + + + Blanchard Foundry Co. + + + + + Singer + + + + + Neville Welding, Inc. + + + + + Pullman TrailmobileDiv. of Pullman, Inc.--Chicago, Illinois + + + + + Design StructuresMfrs. office and special purposetrailers--Lombard, Illinois + + + + + HM + + + + + Gas Gas Motors of America, LLC + + + + + Kellogg-American, Inc. + + + + + Empire Trailer, Inc. + + + + + MGS, Inc. + + + + + DeCourville + + + + + Winter Weiss Co. + + + + + Kaiser + + + + + Truckin TrailerMfd. by V.W.T. Corp. + + + + + TransglobalNew York; flatbed trailers + + + + + Maico (West Germany) + + + + + Olson + + + + + Voloci + + + + + Tow Go TrailersTonganoxie, Kansas + + + + + Cagiva + + + + + Owen Div., Anvil Attachments, Inc. + + + + + Leisure Craft + + + + + General Coach Mfg. Co.Div. of Divco-Wayne Industries + + + + + Rotech, Inc. + + + + + Firma LenkoSee Larvin + + + + + Globe Camper Mfg. + + + + + Dynahoe Truck + + + + + Ti-Brook, Inc.Brookville, Pennsylvania + + + + + Coastal Mfg. Co. or Coastal Building Systems + + + + + Air-Flo Mfg. Co., Inc.Fort Worth, Texas + + + + + Monarch Mobile Homes + + + + + Holmes-Craft + + + + + Kontiki Camper Trailer + + + + + Kingsway Travel Trailer + + + + + Beaver Mfg. Corp. + + + + + Bradford IndustriesBradford, Illinois + + + + + Lawn FliteMfd. by MTD Products, Inc. + + + + + Arabi Homes, Inc.Arabi, Georgia + + + + + En Route, Inc.Elkhart, Indiana + + + + + SOUTH BAY TRAILERS; LOUISVILLE, KY + + + + + Brighton Built TrailersBrighton, Iowa + + + + + Concord Products, Inc. + + + + + GSM + + + + + Trail Haven Div. + + + + + CMW (Custom Metal Works) + + + + + ISO + + + + + J & J TRAILER MANUFACTURING OR J.D.J. TRAILER MANUFACTURING, ONTARIO, CANADA + + + + + Design Intennt, Inc.Livingston, Tennessee + + + + + Pull-Do Trailers + + + + + Cleveland Trencher Co.Div. American Hoist & Derrick Co. + + + + + Power Dyne + + + + + Jay Dee IndustriesCassopolis, Michigan + + + + + Leisure Manor, Inc. + + + + + Enzmann + + + + + Wago Campers + + + + + LamplighterMfd. by Moduline International, Inc. + + + + + Mate, Inc.Katy, Texas + + + + + Triple R TrailerStockton, Missouri + + + + + Johnson Corp. + + + + + Rockwood, Inc.Millersburg, Indiana + + + + + Holiday Trailer Sales & Mfg. Co. + + + + + Dart Truck Co., PACCAR, Inc. + + + + + National Crane Corporation, Subsidi-ary of Walter Kidde & Co., Inc. + + + + + Sun-RayMfd. by Wilson Trailer Mart + + + + + Cottage-Ette Mfg. + + + + + Revcon + + + + + K & G Mfg. Co.Decatur, Illinois + + + + + CUSTOM BUILT TRAILERS AN OR CUSTOM TRIKES, INC. + + + + + Velocette + + + + + Fairmont Steel Products + + + + + Atlantic Mobile Corp. + + + + + Spyker Motorcars + + + + + Snatcher Trailer CompanyBettendorf, Louisiana + + + + + Anton Mfg. Co. + + + + + Foster Flatbed Trailer + + + + + Avalon Mobile Homes + + + + + Ben Pearson Mfg. Co., Inc. + + + + + Westholt Mfg. + + + + + Vac-Tec + + + + + ScorpionCrosby, MN + + + + + Warren Mfg. Co. + + + + + Calumet Coach Co. + + + + + OUTLAW TRAILER, MFG.; ST. JOSEPH, MO + + + + + Classic Motor Carriages, Inc.(Hallandale, FL) + + + + + CapreCarrocerias Preconstruidas SASan Nicholas, Mexico, bus trailers + + + + + Malyette + + + + + Medallion Mobile Homes + + + + + Quickload + + + + + Zil + + + + + Wayne SweeperSweeper Div., FMC, Pomona, California + + + + + TZ + + + + + LOAD BOSS,INC/CHARLES H BURKETTS AUTORAMA INC; MANNS CHOICE,PENNSYLVANIA + + + + + Torino + + + + + Shaw-Wynn Homes Corp. + + + + + Meteor (Canadian Mercury) + + + + + J & W TRAILERS; LAMAR, MO + + + + + Little Prince Travel TrailerMfrs. boat trailers + + + + + Sureload + + + + + I.R. Witzer Company, Inc. + + + + + Chilton Trailer Co., Inc. + + + + + Classic Mfg., Inc. + + + + + Mangar Co. + + + + + SCI Trailer + + + + + Nationwide + + + + + Santeler Brothers + + + + + Rosemont Mobile HomeDiv. DeRose Industries + + + + + Aurora Mobile Homes + + + + + Molloy Mobile Crafts + + + + + Diva + + + + + Zhejiang Leike Machinery Co., Ltd. + + + + + AJW + + + + + Huffy Corp. (Dayton, Ohio) + + + + + Lucky + + + + + English Ford (British) + + + + + Bill James Trailer SalesWinfield, Texas + + + + + MEB TRAILER SALES; WALNUT RIDGE, ARKANSAS + + + + + Triton Trailer Corp.Allentown, Wisconsin; manufacturestrailers including snowmobile trailers + + + + + Shovel Supply Co., Inc. + + + + + Halliburton Co. + + + + + Hotchkiss + + + + + Thule Trailers, Inc. + + + + + LIBERTY INDUSTRIES; CLAYTON, INDIANA + + + + + CZ (Czechoslavakia--also see makeJawa/CZ) + + + + + Figura, MikeBruce, Wisconsin + + + + + Ventura Tent Camper + + + + + D.M.F. Trailer Mfg., Inc. + + + + + Thunderbird CastlesDiv. Thunderbird Products + + + + + Mair & Son., Inc. + + + + + Safet Camper + + + + + Bar-A-Horse Trailer + + + + + R.T.R. Trailers, Inc. + + + + + Vermeer Manufacturing Co. + + + + + Maxon EagleMfd. by Maxon Industries, Inc. + + + + + Alumna-Weld, Inc.Friendship, Arkansas + + + + + Interstate Products + + + + + Blitz Mfg. Co. + + + + + GLOBAL ELECTRIC MOTOR CARS, LLC, FARGO,NORTH DAKOTA 2 & 4 PASSENGER, LONG & SHORT UTILITY TYPE VEHIC + + + + + Humes Truck & Trailer Mfg. Co + + + + + Scoutboat Trailer + + + + + Car Camp + + + + + Sparta + + + + + Matrette + + + + + Tow Mobile Forklift + + + + + Wasp + + + + + Officer, TheElkhart, Indiana + + + + + American Trailer & Mfg. Co.See also Transporter, Downey, California + + + + + LIBERTY, INC. MAKER OF TRAV-A LONG TRAILER, LITTLE RIVER,SC + + + + + Pedalpower Electroped + + + + + CharismaMfd, by Merrimac Corp. + + + + + Northern Cruisers + + + + + Taylor Metal Works, Inc.Milan, Tennessee + + + + + Takeuchi Manufacturing (U.S.) Ltd.Atlanta, GA; manufactures compact trackequipment + + + + + Mighty MidgetMfd. by Owens-Classis, Inc. + + + + + Frank Motor Homes, Inc. + + + + + Golden West Mobile Homes + + + + + Silver Trail + + + + + Walker Stainless Equipment Co.New Lisbon, Wisconsin + + + + + Rex + + + + + Compact Equipment Co. + + + + + TOWRITE MANUFACTURING; BUNN LEVEL, NC; TTRAILERS & DOLLIES + + + + + Wanderer Camper + + + + + Pacesetter + + + + + Daimler + + + + + Yanger Mobile Homes + + + + + SKYTRAK; CONSTRUCTION EQUIPMENT;FORKLIFT ETC. + + + + + Transco Trailer + + + + + HORTON VANS, INC.; EATONTON, GO + + + + + A C (Great Britian) + + + + + Rec-Sha Trailer + + + + + Mobilaire Mobile Homes + + + + + Jerrytime Camper + + + + + SmallwoodCounty Line Co. + + + + + POLINI MOTORCYCLES + + + + + AquariusBoat trailers--mfd. by Trail-Rite, Inc. + + + + + Saturn + + + + + Brown + + + + + Mars Camper Co. + + + + + Zim + + + + + Jac-Trac, Inc.Marshfield, WI + + + + + Rush Industries, Inc.Elkhart, Indiana + + + + + MONSOON (ATV'S) ALL TERRAIN VEHICLES + + + + + Harley-Davidson + + + + + Promark Products Corp. + + + + + Budson Knobby Flatbed Trailer + + + + + Thunderbikes, Inc. + + + + + Olathe Mfg. Co., Inc. + + + + + Kinlon or Chongqing Kinlon Science & Tech. Grp. + + + + + Navajo Horse Trailer + + + + + Kenway Campers, Inc. + + + + + Pleasureway Mfg. + + + + + China Jiangmen Group Co., Ltd. + + + + + Dreamer + + + + + ATLAS SPECIALITY_PRODUCTS/TRAILERS + + + + + Brute Equipment Inc.Glen Alan, Mississippi + + + + + Bravo Trailer + + + + + Erskine + + + + + Monte + + + + + Canadian Trailmobile Ltd. + + + + + Apache Coach Co. + + + + + Transliner Insulated Tank Trailer + + + + + Baker Trailer & Body Co. + + + + + Wonder State Boat Trailer + + + + + D & D FABRICATIONS, ST LOUISS, MICHIGAN / TRAIL-TECH TRAILERS + + + + + Gronewegen B.V.Netherlands + + + + + LEVIS MOTORCYCLES; GREAT BRITAIN + + + + + WHEEL ESTATE SALES & SERVICE, INC; TRADE NAME/STEWART LODGES + + + + + Lotus + + + + + Jayco, Inc. + + + + + Meyer Morton Co. + + + + + Skim Air Trailer + + + + + Venus + + + + + Frolic Homes, Inc. + + + + + Semo Tank/Baker Equip. Co. + + + + + LOADMASTER INC; INDIANA + + + + + DISCOUNT TRAILERS; FORT WORTH, TX + + + + + Rosco Mfg. Co.Minneapolis, Minnesota + + + + + Landmaster + + + + + MOTOBECANE; SCOOTERS & CYCLES + + + + + Meitian Motorcycle Co., Ltd. Or Shanghai Meitian Motorcycle Co., Ltd. + + + + + Nevada Air Products Co. + + + + + Dodge + + + + + ConvertoCambridge City, Indiana--Div. Golay &Co., Inc. + + + + + Keel-HaulerMfd. by Precision Deburring &Fabricating, Inc. + + + + + Cotton + + + + + Wayne Corp.Richmond, IN + + + + + Evans-Plugge Co., Inc.Columbus, Nebraska + + + + + Metal Fabrication, IncWinchester, TN + + + + + Broncco (Italy) + + + + + Kaywood Homes, Inc. + + + + + ASI Trailer + + + + + General Marine Industries + + + + + Dormi Industries, Inc. + + + + + Ottawa Truck Div., Gulf & WesternMfg., Co. + + + + + Corbitt + + + + + Gulf States Mfg. Corp. + + + + + Alsport/Steen (also see Tri-Sport/Steen) + + + + + Silent Hoist & Crane Co. + + + + + Ken Trailer + + + + + Midmark + + + + + Moore Equipment Co. + + + + + Holly Parks, Inc.Mobile Homes + + + + + Triangle-K Trailer Co.Drumright, Oklahoma + + + + + Tri-State Homes, Inc. + + + + + Hooper Trailer Sales, Inc.Monticello, GA; flatbed trailers. + + + + + Pioneer Sales & Mfg. Co. + + + + + Furatell IndustriesBruce, Wisconsin + + + + + New Era Trans Co. + + + + + Scamp + + + + + Amerigo Travel Trailer + + + + + Penton (KTM--Austria) + + + + + Boulder Trailer + + + + + North American Mfg. Co. + + + + + WE-HAUL TRAILERS; DIVISION OF FOREST RIVER, INC. GOSHEN. IN + + + + + MountaineerLawn & Garden tractor--mfd. by UnitedFarm Tools, Inc. + + + + + Travette Mfg. + + + + + Truck Trailer Sales & ServiceYankton, South Dakota, Inc. + + + + + Scott + + + + + AlouetteSee Alouette Recreation Products, Ltd. + + + + + J. M. Huber Corp. + + + + + Pennstyle Campers, Inc. + + + + + Wendax + + + + + Cleveland Mfg. Co., Inc. (CMC) + + + + + Shanghai Jialing Vehicle Business Co., Ltd. + + + + + Bar-C Horse Trailer + + + + + VULCAN WORKS, INC; MANCHESTER, NEW HAMPSHIRE; MOTORCYCLES + + + + + Culpepper Trailer Co.Clinton, Arkansas + + + + + Poloron ProductsMfrs. riding mowers--Harrison, New York + + + + + Colony Factory Crafted HomesShippenville, PA + + + + + Gypsum Express LTDBaldwinsville, NY; makes convertordollies + + + + + Jersey Trailer + + + + + Glass Stream TrailersNashville, Georgia + + + + + ARMOR CHASSIS, LLC; RIDGELAND, SC + + + + + General Homes Div.Div. of Divco-Wayne Industries + + + + + Drifter Mfg. Co. + + + + + Volga + + + + + Ashdown Mfg. Corp.Ashdown, Arkansas + + + + + Carry Craft Trailers + + + + + Beaver Trailer + + + + + Seco Mfg. Co. + + + + + Allard + + + + + Explorer + + + + + Burlington Mfg. Co. + + + + + Big AMfd. by Rickel Mfg. Corp. + + + + + Pontiac + + + + + Sportliner Tent Trailer + + + + + Fox + + + + + Atwood Mobile Home + + + + + Starlite Mfg. Co. + + + + + Marion Trailer SalesMarion, Indiana + + + + + Florida Wholesale Distributor + + + + + Pannonia + + + + + BIG DOG CUSTOM MOTORCYCLES, INC. + + + + + Nu-Wa Campers, Inc. + + + + + Away We Go Travel Trailer + + + + + Pardonnet Mfg. Co.Livonia, Michigan + + + + + Dekco Mobile Mfg.Menahga, Minnesota + + + + + Bendix Corp.Mfr. of mobile homes and recreationalvehicles + + + + + Greeves + + + + + Pitman Brothers Co. + + + + + Ranger Mobile HomesMfd. by Ritz-Craft, Inc. of Indiana(see Ritz-Craft of Pa., Inc.) + + + + + CassMfd. by Custom Assembly + + + + + Rockin-Bar Trailers Ltd.Durant, Oklahoma + + + + + L & S LINE MFG.; BRISTOL, TENNESSEE + + + + + LaforzaUtility vehicle; Hayward, California + + + + + Rolco Mfg. Co. + + + + + Goliath + + + + + TERRY'S UTILITY TRAILER OR TERRY W. BECK; WARRENVILLE, SC + + + + + Stanley Hydraulic Tools + + + + + Gator Trailers Corp. + + + + + Country-Aire Travel Trailer + + + + + Boles-Aero, Inc. + + + + + WILD WEST MOTOR COMPANY; POWAY, CA. (PEACEMAKER MODEL) + + + + + Southwest Welding & Mfg. Co. + + + + + BonnavillaMfd. by Chief Industries + + + + + Denzel + + + + + Ravens-Metal Products, Inc.Parkersburg, West Virginia + + + + + Yazoo Mfg. Co., Inc.Jackson, Mississippi + + + + + Dolan Corp. + + + + + Keystone Coach Mfg. Co. + + + + + Hongki or Hong-Chi + + + + + Zoboda + + + + + McCulloch Mite-E-Lite, Inc.,McCulloch Corp. + + + + + Action Industries + + + + + Royal Brothers + + + + + Phelan Mfg. Co.Nashville, Tennessee + + + + + Winco Div.Dyna Technology, Inc., Minneapolis,Minnesota + + + + + Stewart Park Homes, Inc. + + + + + Aspes + + + + + Westward Coach Mfg. + + + + + Chateau Mfg. Co., Inc. + + + + + Country Coach Motor HomeJunction City, Oregon + + + + + Ski-Tow Mfg. Co., Inc.Elkhart, Indiana + + + + + Coleman + + + + + Broadmore Mobile HomesSubsidiary of Fleetwood Trailers &Mobile Homes + + + + + NorthwaySee Northway Snowmobiles + + + + + Trail-Et Horse Trailer + + + + + Sunset Mobile Homes + + + + + Steelcraft Log Trailer + + + + + Fanc Motor Home Truck + + + + + Rickman + + + + + Coastal Trailer Corp. + + + + + Bird Engineering, Inc. + + + + + AMERICAN TRANSPORTATION; BUS + + + + + C-Mor + + + + + Avco Corp. + + + + + Kenworth Motor Truck Co.Div. of Paccar, Inc. Also includesKenworth Glider. + + + + + Conceptor Industries, Inc. + + + + + Prince Motors + + + + + McQuerry Horse Trailer + + + + + Durabilt Industries, Inc. + + + + + Pennsylvania Furnace and IronMfrs. tankers--company bought out byDairy Equipment, Madison, Wisconsin + + + + + Nickel & HolmanFenton, Michigan + + + + + Caprice Homes Mfs. Co. + + + + + ASPT + + + + + Vista Queen Trailer + + + + + Greenhaven Mobile House Trailer + + + + + Allis Chalmers + + + + + Poloron + + + + + Amtec Trailer + + + + + Benlo Co. + + + + + MAX-ATLAS EQUIPMENT INTERNATIONAL, INC.; ST-JEAN-SUR-RICHELIEU, QUEBEC CANADA + + + + + I.S.E., Inc.Denver, Colorado + + + + + Doolittle + + + + + American DreamMfd. by American Family Homes, Inc. + + + + + Mobilux + + + + + Dart, KW + + + + + Turnbow Trailer + + + + + Kilgore IndustriesPomona, California + + + + + Fleet Cap'n Trailers + + + + + ULTRA MOTORCYCLE CO. + + + + + U-Dump, Inc.Ocala, Florida + + + + + EMW + + + + + Griswold IndustriesSee Swinger Snowmobiles + + + + + Pride & Joy Mini Motor Home + + + + + Auto Union + + + + + Shelby American + + + + + MacDonald's Mobile Homes + + + + + ATK America Inc + + + + + Traveliner Motor Home + + + + + Concord Mobile Homes + + + + + Condor + + + + + Centaur + + + + + AGCO INC. FORMERLY ALLIS CHALMERS & K-H DEUTZ OF GERMANY + + + + + Malro USA DistributorsHeber, CA; recreational trailer + + + + + Perris Valley Campers + + + + + Norman + + + + + Argonaut State Limousine + + + + + Mobile Freeze + + + + + Camel Camper Trailer + + + + + KTMMEX Motorcycle Mfg. + + + + + Branstrator Engineering Corp. + + + + + Champion Trailers + + + + + General Engines Co., Inc.Throfare, New Jersey + + + + + Run-About + + + + + Rainbow Camper Co. + + + + + FWT, Inc. + + + + + Bee-Line Travel Trailers or MobileHomes, Inc. + + + + + Peel + + + + + Vulcan Trailer Mfg. Co.Birmingham, Alabama + + + + + Trail Car Boat Trailer + + + + + Sunset Travelers + + + + + Trojan Industries, Inc. + + + + + Semlac Corp. + + + + + Saling Mfg. Co. + + + + + Demo Horse Trailer + + + + + Dazon, Inc. + + + + + Main Line, Inc. + + + + + Copperstate Coach Co. + + + + + American Pipe & Steel Corp. + + + + + Sun L Group, Inc. + + + + + Cub Camper Trailers + + + + + Lafayette Motor Home + + + + + Cleveland Brothers Equipment Co.D & B Products + + + + + Alloway Mfg. Co., Inc. + + + + + TRL ENTERPRISES TRAILERS LOVELAND, COLORADO + + + + + Generac Corp. + + + + + EvinrudeSee Outboard Marine Corporation + + + + + LORANGER ENTERPRISES, INC.; SAN ANTONIO, TX + + + + + McClain Trailer Mfg. Co.Boat trailers--Houston, Texas + + + + + Ellis Mfg. Co., Inc. + + + + + Eagle + + + + + Remington HomesDallas, Texas (Division of SunrizonHomes, Inc.) + + + + + Burris Stock Trailer + + + + + David Mfg. Co.Mason City, Iowa + + + + + Horizon Mobile Homes + + + + + Stage Coach Mfg. Co. + + + + + Whizzer + + + + + Champ Corp. + + + + + DIAMOND G TRAILER COMPANY /GRAHAM FABRICATIONS, INC.; PURVIS, MISSISSIPPI; MANUFACTURING HOME OF DRE + + + + + Charmac Trailers + + + + + Jenkins Equipment Co., Inc. Subsidi-ary of Sweepster, Inc. + + + + + Drydock Trailer, Inc.Boat trailers--Freeport, Florida + + + + + CHAMPION BUS, INC. MICHIGAN + + + + + United Mfg. Co. + + + + + Deville Industries, Inc. + + + + + M.G.M., Inc. + + + + + Rabbit + + + + + Coburn Industries, Inc. + + + + + Ag-Systems, Inc.Hutchinson, Minnesota + + + + + DurobiltEl Monte, California + + + + + BOAT TRAILERS, WAUKEGAN, ILLINOIS + + + + + A-A WELDING SERVICEMOUNT PLEASANT, TEXAS_; ANS OR CLINT R. WOODS INC + + + + + Mercury Trailer Industries + + + + + Holden Trailer Mfg. Co.Holiday House, Inc. + + + + + Contempori Mobile Homes, Inc. + + + + + Autokraft + + + + + Henry J. + + + + + Maple Leaf, Inc.Middlebury, Indiana + + + + + Commuter Industries, Inc. + + + + + Olympia Motor Home + + + + + All Lakes Trailer + + + + + Abarth + + + + + Tampo Manufacturing Co. Inc. + + + + + Edwards Trailer + + + + + Mayco Pump Corp.Los Angeles, California + + + + + Kuhn Farm Machinery, Inc. + + + + + Simenson Mfg. Co. + + + + + Magnolia Travel Trailer + + + + + St. Joseph Marine Trailer + + + + + Kent Mfg. Co., Inc. + + + + + Westerwalder EisenwerkWest Germany + + + + + Ching-Kan-Shan + + + + + Porta-Kamp Mfg. + + + + + Lincoln Electric Co.Cleveland, Ohio + + + + + Springtrail Mfg. Co.Springfield, Missouri + + + + + Savage Coach Mfg., Inc. + + + + + Euclid, Inc., Subsidiary of WhiteMotor Corp. + + + + + Stucco Trailer + + + + + SOUTHERN SALES, INC; TRAVELERS REST,SC + + + + + Wagner + + + + + TET + + + + + XTREME ATVS + + + + + Whitley Mfg. Co. + + + + + Mercury (See Mercury Marine) + + + + + CIRCLE C MANUFACTURER; LIVINGSTON, TX + + + + + Caterpillar Tractor Co. + + + + + AMERICAN QUANTUM CYCLES, INC. ; MELBOURNE, FL + + + + + American Way Homes Corp. + + + + + Jetmobile + + + + + L. A. Woods Co., Inc.Lawrenceville, Illinois + + + + + CPI U.S.A. + + + + + Muv-All Trailers Multech Corp. + + + + + House of Architecture + + + + + Midwest Mini-Tote Co.Muskego, Wisconsin + + + + + Holva Travel Trailer + + + + + GEO + + + + + Triple Crown Trailers, Inc. + + + + + Binks Mfg. Co.Franklin Park, Illinois + + + + + DINLI ATV'S + + + + + Benelli (Italy) + + + + + Good Mfg. Co. + + + + + Zipper, Inc. + + + + + Richardson Mfg. Co., Inc. + + + + + KNL Holdings, LLC + + + + + Hudson Trailer + + + + + Moling Corp. and Car King Dolly Trailers + + + + + Titleist Travel Trailer + + + + + KIDRON; TRAILERS + + + + + Maverick + + + + + Weld-It CompanyLos Angeles, California + + + + + Marmon + + + + + Raider + + + + + Armstrong Siddeley + + + + + MANGMfd. by Oregon Mfg. Co., Inc. + + + + + Custom Coach Co. + + + + + Coventry Mobile HomeMfd. by Great Southwest Corp. + + + + + King Fish Boat Trailer + + + + + Kut-Kwick Corp.Mfrs. industrial mowers--Brunswick,Georgia + + + + + Tohatsu + + + + + Texarkana Div.Div. of Divco-Wayne Industries + + + + + Powell Mfg. Co., Inc. + + + + + Lexus + + + + + W.F. Mickey Body Co., Inc. + + + + + Mohawk, Inc. + + + + + Art James Mfg. + + + + + Adams Engineering Co. + + + + + Lee Enterprises Mfg. Co., Inc. + + + + + DALTON ENTERPRISES INC. + + + + + Covered Wagon Trailer + + + + + Sprayline Two Wheel Trailer + + + + + Pettibone Mercury, SubsidiaryMercury Mfg. Co. + + + + + Wil-Trail Corp. + + + + + Davis + + + + + Rollfast + + + + + Wayfarer Coach Mfg.Div. St. Paul Fence & Iron Works + + + + + Northwestern Mobile HomesDiv. Rainway Manufacturing Company + + + + + AMERICAN TRAVEL SYSTEMS, INC.; ELKHART, IN + + + + + Liberty Homes, Inc.Goshen, Indiana + + + + + Nu-Life Environmental, Inc. + + + + + MAC-LANDER, INC; OSCEOLA, FL + + + + + Star Custom Trailers, Inc.Lebanon, Tennessee + + + + + Braughms Travel Trailer + + + + + Total Performance, Inc. + + + + + Carpenter Manufacturing, IncMitchell, IN + + + + + Motom + + + + + Damon Industries, Inc.Elkhart, Indiana + + + + + Lemco Tool Corp.Cogan Station, Pennsylvania + + + + + East Se Trailer + + + + + OBERBILT TRAILER COMPANY DRUMRIGHT, OK + + + + + Avanti + + + + + Traxcavator Tract + + + + + Diamond G EquipmentOklahoma City, Oklahoma + + + + + McCrabb Mfg., Inc.West Liberty, Iowa + + + + + Ottawa Truck, Inc. + + + + + SAUK CENTRE WELDING & MACHINE WORKS, INC. FELLING TRAILERS + + + + + HogerMfd. by Sundowner Trailer Co. + + + + + Hiab Cranes and Loaders, Inc.Newark, Delaware + + + + + Monticlaire Mobile Homes + + + + + Lodal, Inc.Kinsford, Michigan + + + + + Trav-L-Homes + + + + + Elite Mfg.Camper Shells--Merced, California + + + + + BLUE RIDGE TRAILERS + + + + + International Harvester Co. + + + + + BPMfd, by SS Trailer Co. + + + + + Smokey Trailer + + + + + Piazio + + + + + Omsteel Products Corp. + + + + + Arctic Enterprises, Inc.Thief River Falls, Minnesota + + + + + Hostar Marine Transport Systems, Inc. + + + + + Schetzky Equipment Corp. + + + + + Cam-O-Tel Corp. + + + + + Hough Brothers, Inc. + + + + + Loncin Group Import & Export Co., Ltd. + + + + + Load King Trailer Co.Div. of CMI Corp.--Elk Point, SouthDakota + + + + + Ayr-Way CampersDiv. K. V. Molded Products, Inc. + + + + + E-Z Camper (or Kamper) + + + + + Sanker Mfg. & Supply + + + + + Thames + + + + + Travelaire Trailer Mfg. + + + + + Ventura Mfg. and Implement Co.Oxnard, California + + + + + + Hobbs TrailersDiv. of Fruehauf Corp.--Fort Worth,Texas + + + + + Kohler Co. + + + + + General Electric + + + + + Prevost Car, Inc.Mfrs. of "Prevost Bus"--Sainte Claire,Quebec, Canada + + + + + Aztec Products Inc.Mansfield, Texas + + + + + S M Moon + + + + + Float-On of FloridaBoat Trailers--Ft. Pierce, Florida + + + + + Panterra + + + + + Treasure Chest Products + + + + + Adette + + + + + Speicher Brothers, Inc.Auger products + + + + + Dynaweld Trailer + + + + + Dalton, Inc. + + + + + Advance MixerFt. Wayne, IN; truck, front dischargetransit mix + + + + + Brunswick Travel Trailer + + + + + Rockland Homes, Inc. + + + + + Decamp Homes, Inc. + + + + + Volunteer Mfg. Corp. + + + + + HerculiftMfd. by TCI Power Products, Inc. + + + + + High Country Trailer Sales & Mfg. + + + + + Inger-Teco Corp. + + + + + Schramm, Inc.West Chester, Pennsylvania + + + + + WALTRON LIMITED/ALDURA; RIDGETOWN, ONTARIO CANADA + + + + + Hillco, Inc. + + + + + Air-Flo Mobile HomeMfd. by Gregory Mfg. Co. + + + + + Road Clipper + + + + + U.S. MARINE CORPS; MAKE IS UNKNOWN + + + + + NEWMAR CORPORATION; NAPPANEE, IN_ + + + + + Itasca Motor HomesDiv. Winnebago Ind., Inc.,Forest City, Iowa + + + + + Sea Stallion TrailersKlamath Falls, Oregon + + + + + CARPENTER INDUSTRIES INC. + + + + + Mistral + + + + + Buffalo-Bomag Div.Div. of Koehring Co. + + + + + EnerexMfd. by Hayes Equip. Corp. + + + + + Jaeger Machine co.Columbus, Ohio + + + + + Comet Motorcycle TrailerMfd. by Yarbrough Mfg. Co., Inc. + + + + + Corn Belt Manufacturing, Inc.Early, Iowa + + + + + Yuchi Mobile Homes + + + + + Bluebird International + + + + + Custom Fab Body Bodies andTrailers, Inc.Indiana, Pennsylvania + + + + + CARGO PRO TRAILERS + + + + + Chukar, Inc.Phoenix, Arizona + + + + + Lagusa Motor Coach + + + + + Sovam + + + + + Brown Trencher Div., Rivinius, Inc. + + + + + MODULAR SYSTEMS, INC; INDIANA + + + + + First American Coach + + + + + Skat (or Skat-Kitty) + + + + + Shertzer Dump Trailer + + + + + Braco Custom ProductsCassopolis, Michigan + + + + + Levco Manufacturers, Inc. + + + + + Utah Mobile Homes + + + + + Standard + + + + + Terravac Corp.Stockton, California + + + + + Trailco-Norwin + + + + + Weeres Trailer + + + + + Brooten Fabricating, Inc. + + + + + Hop Cap P/U Camper Trailer + + + + + J.P. Utility Trailers & Welding + + + + + Rainway Mfg. Co. + + + + + Rushmore Homes + + + + + Roper Outdoor Power ProductsKankakee, Illinois + + + + + Ledwell & Son Enterprises, Inc.Texarkana, Texas + + + + + Travelpak Car Topper Sales + + + + + Landis Steel Co. + + + + + Boise Mobile Equipment + + + + + Burrito (also see make J.C.Penney) + + + + + Johnson's Trailer Building & Repair + + + + + Linco Trailer Home + + + + + ANDERSON MANUFACTURING; CAMILLA, GA + + + + + Hibdon Mfg. Co. + + + + + Pelican Aluminum Mfg. + + + + + Van Art, Inc. + + + + + Yacht Club + + + + + Trailorama + + + + + AG-Rain, Inc. + + + + + Simpson Enterprises, Inc. + + + + + FallsRiding lawn mower + + + + + Detroiter Homes + + + + + Chris Craft Corp. + + + + + Luedtke Mfg., Inc.Allenton, Wisconsin + + + + + Tru-Tow Trailers + + + + + Gitane + + + + + Pincor Products + + + + + Westland Trailer Co.Portland, Oregon + + + + + PORTA-DOCK, INC + + + + + SEXTON MOTORCYCLE COMPANY + + + + + All American Campers + + + + + Criterion Homes Mfg. Inc.Largo, Florida + + + + + Sportsman + + + + + Byers + + + + + URAL MOTORCYCLES OF AMERICA; PREVIOUSLY OR ALSO KNOWN AS: IRBIT MOTORWORKS OF AMERICA; REDMOND, WA + + + + + Stack Truck, Inc. + + + + + Monark + + + + + Three-Dimensional Mobiles + + + + + Four Star Coach Co. + + + + + Venus Coaches + + + + + MacGregor Yacht Corp.Costa Mesa, California + + + + + New England Homes or Trailers + + + + + ALL-AMERICAN TRAILER MFG. CO., INC.; SELMA, AL + + + + + I. M. P. (U.S.) + + + + + PEQUAGordonville, Pennsylvania + + + + + Marvell Mobile Home + + + + + Rinso Forklift + + + + + Chaperalle Horse Trailer + + + + + Bilt-Rite Trailers, Inc. + + + + + Swanson Tilt trailer + + + + + Low Pro Custom Trailer + + + + + Sherwood Sentry Horse Trailer + + + + + Uteliner Motor Home + + + + + Digmor Equipment & Engineering Co., Inc. + + + + + Melody Home Mfg. Co. + + + + + Western + + + + + Walter Motor Truck Co. + + + + + Pacemaker + + + + + Calvia Brothers Trailer Mfg. + + + + + Auto Trailer Co. + + + + + Embassy HomesDiv. of Guerdon Industries + + + + + Komar + + + + + Cliff Office Trailer + + + + + Dillon Enterprises, Inc.North Liberty, Indiana + + + + + Toura Products + + + + + Satoh Japanese Tractor + + + + + Dayton Electric Mfg. Co.Mfrs. air compressors--Chicago, Illinois + + + + + White Materials Handling, SubsidiaryWhite Motor Corp. + + + + + Parilla + + + + + FORCE MANUFACTURING, INC. AND/OR HARVEY; BANGOR MAINE, NANCY HARVEY + + + + + R.C. Industries, Inc.Goshen, Indiana + + + + + Haul-A-Day Trailers + + + + + Dolphin HomesDiv. Tidwell Ind., Inc., Haleyville,Alabama + + + + + Cuke, Inc.Mendota, Illinois + + + + + Ramada Tent Camping Trailer + + + + + International Coach Mfg. + + + + + Sunflower Mfg. Co., Inc. + + + + + Black and Decker + + + + + Malibu Campers + + + + + Rayne Plane, Inc. + + + + + Bentley + + + + + Space Assemblies, Inc.Middlebury, Indiana + + + + + Villager Travel Trailer + + + + + Dynamic Industries, Inc. + + + + + Bob Coons + + + + + Jim Glo TrailersWilcox, AZ + + + + + Ace (model of Hodaka) + + + + + BEHNKE ENTERPRISES, INC; FARLEY, IA + + + + + Royco Mfg. Co. + + + + + Hindustan + + + + + Florig Equipment Co., Inc.Conshohocken, Pennsylvania + + + + + Walter Products & Engineering Co. + + + + + Office Master, Inc.Hampshire, Tennessee + + + + + Beaver Monterey Motor Home + + + + + Schnure Ho' Trailer + + + + + Mercantile Mfg. Co., Inc. + + + + + Independent Mfg. Co., Inc. + + + + + Jalldee, Inc.Spencer, Wisconsin + + + + + Globemaster Mobile Homes + + + + + Troxell Trailer Mfg.Ft. Worth, Texas + + + + + Skippy Trailer + + + + + Avenger + + + + + Zaporozhets + + + + + LMC + + + + + Red River Custom TrailerClarksville, Texas + + + + + Lawn BoyMfrd. by Outboard Marine Corp. + + + + + Cushman Turf-OMC Lincoln + + + + + Cameo Travel Trailer + + + + + Beemer & Grubb Enterprises + + + + + Fiat-Abarth + + + + + Isuzu + + + + + Loodcraft + + + + + GEELY OF SHANGHAI CHINA; MOTORCYCLES,MOPEDS & PASSENGER CARS + + + + + Scamp Trailer + + + + + COMPETITION TRAILERS, INC HENDERSON, TEXAS + + + + + Martin Trailers, Ltd.St. Laurent, Montreal + + + + + Superior Trailer WorksLos Angeles, California + + + + + Bowers Mfg. Co. + + + + + J.S. Mobile Homes + + + + + JOHNSTON SWEEPER CO., CHINO, CA + + + + + Mzma + + + + + CAMPAGNA MOTO SPORT, INC; PLESSISVILLE, QUEBEC, CANADA + + + + + Sun Blazer Travel Trailer + + + + + Twin Trailer + + + + + Tioga Motor Home + + + + + Gordon Smith & Co., Inc.Bowling Green, Kentucky + + + + + Indian Campers, Inc. + + + + + Hilltopper Mfg. Corp. + + + + + A & M Coach + + + + + Deep Sanderson + + + + + Aloha Trailer Co. + + + + + Nsu-Fiat + + + + + Delhi Metal Products, Ltd.Delhi, Ontario, Canada--mfrs. boattrailers + + + + + Univision Industries Ltd. + + + + + Custom Trailers, Inc.Springfield, Missouri + + + + + HARRIMAN SALES, INC.; DEKALB JCT, NEW YORK + + + + + Gentry + + + + + Remke Trailer + + + + + Mobility, Inc.Minneapolis, Minnesota + + + + + Master View + + + + + AJS (United Kingdom) + + + + + Martinez Trailer + + + + + Cinderella Mobile HomesMfd. by Mobile Structures, Inc. + + + + + Lift Truck, Inc. + + + + + Moody Mfg. Co. + + + + + LINHAI MOPEDS, POWERMAX; CHINA + + + + + All South Equipment Corp. + + + + + Great Lake + + + + + ElktonMfd. by Price-Meyers Corp. + + + + + Dunbar KappleBatavia, Illinois + + + + + Big Tex + + + + + Royal Industries Noble Div. + + + + + Swisher Mower & Machine Co.Warrensburg, Missouri + + + + + Ogle + + + + + D & P Welding Co. + + + + + D.M. & V. Enterprises, Inc. + + + + + Monaco Motor Home + + + + + Monitor Coach Co. + + + + + Casa Manana Mfg. Corp. + + + + + Becker, Charles H., Inc. + + + + + Superior Equipment Co.Buckeye Products + + + + + AA WELDING SERVICE/CLINT R. WOODS, INC.; MT. PLEASANT, TX + + + + + Mech Handling Co. + + + + + NOVA FABRICATING, INC.; AVON, MN + + + + + C. B. Mfg. Co., Inc. + + + + + Gregory Trailer Sales + + + + + LEBEAU ENTERPRISES; LEXINGTON, NC + + + + + Cruzmaster Camper + + + + + Highway Trailer + + + + + Kurmann Trailer Mfg. Co. + + + + + Ziegler + + + + + Broken Arrow Mobile Home + + + + + Custom Camper Co. + + + + + Davron Traveler, Inc. + + + + + Aardvark Co.Waxahachie, Texas + + + + + BJ'S CUSTOM TRAILERS; WOODSTOCK, AL + + + + + Westank Industries, Inc. + + + + + Society Coach Builders + + + + + Park Royal + + + + + Ransome Lift Equipment Co., Subsidi-ary of Giles & Ransome, Inc. + + + + + Turtle Top + + + + + Amerind-Mackissic, Inc. + + + + + Master HouseMfd. by Highlander + + + + + GreenvillaMfd. by Greenville Mobile Homes + + + + + Cricket Corp.Elkhart, Indiana + + + + + CALIFORNIA MOTORCYCLE COMPANY; GILROY,CA; VENTANA,CABRILLO KING & DIABLO MOTORCYCLES + + + + + Micro Concept Cars + + + + + Cullison Mfg., Inc. + + + + + Schlemmer Boat Co. + + + + + Kelley ManufacturingBogata, Texas + + + + + American La FranceDiv. of A-T-O, Inc. + + + + + GILLIG CORPORATION HAYWARD, CALIFORNIA , BUS + + + + + LandlordMfd. by Simplicity Mfg. Co., Inc. + + + + + Osage Trailer Mfg. Co., Inc. + + + + + Speed King Mfg. Co., Inc. + + + + + Pioneer Div., Portec, Inc. + + + + + ABC HomesDiv. Divco-Wayne Industries + + + + + Mayrath Industries, Inc. + + + + + Clement-Braswell + + + + + Paris Trailer Co. + + + + + Chuck Beck Motorsports + + + + + AMF Lawn & Garden Div.AMF, Inc. + + + + + Bantam + + + + + Xplorer Enterprises of Constantine + + + + + Laser + + + + + Brown, Dave L., Inc. + + + + + Ohio Body Mfg. Co.New London, Ohio + + + + + Bushcraft Trailer + + + + + Lundell Mfg. Co., Inc. + + + + + Liberty Travel Trailers + + + + + Sun ChaserMfd. by Sun Recreational Industries, Ltd + + + + + SUPERIOR TRAILERS OF GA. INC.; DANIELSVILLE, GA + + + + + Electric Vehicle Technologies + + + + + EXCELSIOR-HENDERSON MOTORCYCLES + + + + + Dorsey Trailers Inc.Elba, Alabama + + + + + Virginian Coach Camper Corp. + + + + + Alpine + + + + + Elcona Homes Corp + + + + + Maybach (Brand within Mercedes-Benz) + + + + + Ashby Brothers + + + + + Alaskan Camper + + + + + Heald, Inc. + + + + + Joshua Trailer + + + + + Sunflower Travel Trailer + + + + + Fiesta + + + + + Mobley Metal Works + + + + + Maxcraft Trailer Mfg. + + + + + VANTAGE DUMP TRAILERS, INC.; KATY, TX + + + + + De Soto Coach Co. + + + + + Clua . + + + + + HORSE CREEK MANUFACTURING; COOKVILLE, TX + + + + + Travel Queen Coaches + + + + + McCoy Mfg. & Sales Co. + + + + + Rainbow Corp. + + + + + Hinomoto Tractor Sales USA, Inc.Houston, Texas + + + + + SearsSears, Roebuck & Company + + + + + Robin Mfg. Co. + + + + + Guizzo + + + + + Messerschmitt + + + + + Kozy Coach Co. + + + + + Southern Missouri Trailer Sales + + + + + Francis-Barnett + + + + + Beta + + + + + Driftwood Homes Corp. + + + + + Century Auto Body & Trailer Mfg. Co. + + + + + Hyster Co. + + + + + Rockland Mfg. Co., Inc. + + + + + Nashua Mfg. Co. + + + + + IndependenceMfd. by Patriot Homes, Inc. + + + + + Superior Office Trailer + + + + + Fairthorpe + + + + + Giannini + + + + + Specialty Mfg. Co.Red Bay, Alabama + + + + + JLG Ind., Inc. + + + + + Miller Tilt-Top Trailer Inc.Milwaukee, Wisconsin + + + + + Tailgater + + + + + Grizzly Corp. + + + + + Hearthside Mobile HomesDiv. Moduline International, Inc. + + + + + AvionMfd. by Fleetwood Enterprises + + + + + Newport Homes, Inc. + + + + + Eidal International Corp. + + + + + Arctic Cat + + + + + Moto Beta + + + + + Chicago Pneumatic Equipment Div.Chicago Pneumatic Tool Co., FranklinPennsylvania + + + + + Hendrix Manufacturing Co. + + + + + Kamp King Utopian + + + + + Connell Industries, Inc.Greene, New York + + + + + Hunter's DreamMfd. by Wright Industries, Inc. + + + + + Ecstasy Trikes of Allentown, Inc + + + + + MONGOOSE TRAILERS;TEXAS + + + + + Luxor-Leffingwell Coach + + + + + Volvo + + + + + Dresser Industries, Inc. + + + + + Trail Blazer + + + + + Castle Enterprises, Inc. + + + + + Electric Vehicles Northwest, Inc. + + + + + E-Z Utility TrailerMfd. by Dutchie, Leola, Pennsylvania + + + + + Lil Indian + + + + + Banner Industries, Inc. + + + + + Allis-Chalmers Corp. + + + + + Unverferth-McCurdy Mfg. Co., Inc. + + + + + American Custom Electric Cars and Golf Carts + + + + + Timken Bearing Boat Trailer + + + + + Isetta + + + + + Houle Industries, Inc. + + + + + Savannah Homes, Inc.Savannah, Tennessee + + + + + Alcoa Trailer + + + + + Goff Mfg. Corp. + + + + + Pro One + + + + + MASTER TOW INC. FAYETTEVILLE, NC + + + + + Valkrie + + + + + Prestige HousingConway, Arkansas + + + + + Bucita Pop Top Trailer + + + + + Gabriel Auto Carrier + + + + + Hauler-TrailerMfd. by Nodine Mfg. + + + + + Manor Homes, Inc. + + + + + Richardson Homes Corp. + + + + + Marbrough Boat Trailer + + + + + Vista Liner Coach & Trailer + + + + + CLASSIC ACQUISITIONS/CLASSIC VENTURES; HERNANDO,FLORIDA + + + + + Cherne Industrial, Inc.Edina, Minnesota + + + + + Trihawk Inc. + + + + + COBRA MOTORCYCLES + + + + + Mobile Home Co. + + + + + Mikasa + + + + + Forester + + + + + WILD SIDE LLC; FRANKLIN, TN + + + + + COLLINS BUS + + + + + Kenron Corp. + + + + + American Coach Co.Div. Detroiter Homes + + + + + Attex + + + + + MoserSee also Vim Trailer + + + + + Apeco Mobile HomesDiv. Apeco Corp. + + + + + Alpine Mfg. Co. + + + + + Unpublished motorcycle mfr. (seeOperating Manual, Part 1,Section 2) + + + + + Kay Park-Rec Corp. + + + + + Downer Industries + + + + + Camp Cruiser Mfg. Co. + + + + + Morgan + + + + + Gustafson Mfg. Co., Inc. + + + + + Thorns Trailer + + + + + Outdoor Power Equipment + + + + + Capco Flatbed + + + + + Barrentine Mfg. Co.Greenwood, Mississippi + + + + + Smith, T. L., Co.Div. A-T-O, Inc. + + + + + Salem Mobile Home Trailer + + + + + Darby Industries + + + + + UNIMOG + + + + + Brooks Horse Trailer + + + + + Al Tucker Trailer Co. + + + + + Eshelman Sportabout + + + + + Great Bend Mfg. Co., Inc. + + + + + Star Mobile Homes + + + + + Travel World, Inc.Utility Trailers; Hope Hill,North Carolina + + + + + Puma + + + + + Fruehauf Corp.Detroit, Michigan + + + + + The Lely Corp. + + + + + Shadow TrailersShadow Boat Trailer, Glencoe, OK + + + + + Van Camp Equipment + + + + + Atlantic Mobile Sales + + + + + McDonald Camper Kit Distributor + + + + + Pettibone Michigan Corp., SubsidiaryMercury Mfg., Co. + + + + + BunkhouseModel of Siesta--mfd.by Park Homes, Inc. + + + + + Aire-Line Mobile Homes + + + + + Cal Trailer ManufacturingSan Fernando, California + + + + + Tracer Horse Trailer + + + + + Hunter Custom TrailersKingsbury, Indiana + + + + + Hustler Boat TrailerPowell, Tennessee + + + + + Roycraft Coach Co. + + + + + Northwest Trailers + + + + + Snowflake Coach Industry + + + + + COBRA TRAILERS, GERMANY; ALFRED SPINDELBERGER + + + + + Southlane Horse Trailer + + + + + Heafty Trailer Mfg. & Sales + + + + + Luger Industries + + + + + Wildgoose + + + + + Dillis Trailer Mfg. + + + + + Beaird PaylinerShreveport, Louisiana + + + + + BUCK DANDY COMPANY; TEXAS + + + + + Worthington Compressors, Inc.Holyoke, Massachusetts + + + + + Pierce Mfg., Inc.Mfr. of Pierce Duplex,Appleton, Wisconsin + + + + + Maxwell Trailers & Pickup AccessoriesMexico, MO + + + + + Esquire + + + + + General Motors + + + + + Stardust Travel Trailer + + + + + Consort Mobile HomesMfd. by Zimmer Homes Corp. + + + + + Ockelbo Industry AB + + + + + Brent IndustriesShell Rock, Iowa + + + + + Palm Trailers + + + + + Sears, Roebuck & Co. + + + + + Spyder + + + + + Mitchell Camper Trailer + + + + + Clar-Mont Mfg. Co. + + + + + Aberdeen Boat Trailer + + + + + Beachcomber Industries Ltd.Morden, Manitoba + + + + + LOCKE ENTERPRISES OF NEW YORK, INC; LOCKE,NEW YORK + + + + + TIFFIN MOTORHOMES, INC; RED BAY, ALABAMA; ALLEGRO, PHAETON, ZEPHER MODELS + + + + + KEYSTONE RV COMPANY, GOSHEN, IN. (SPRINGDALE TRAILER MODEL) + + + + + Carrier King Trailer + + + + + Four State Industries, Inc.Elkhart, Indiana + + + + + Kwick Kit Cement Mixer + + + + + Triad Trailers Ltd.New Milford, Connecticut + + + + + Wildfire + + + + + Marauder Travelers, Inc. + + + + + AMERICAN PERFORMANCE CYCLE;BULLHEAD CITY, AZ; SPIRIT AND BIG BOY CYCLES + + + + + Brown TrailerDiv. Clark Equipment Co. + + + + + Kama + + + + + Kill Bros.Delphos, Ohio + + + + + Bell's Camp Trailers + + + + + Surf-Rider, Inc. + + + + + SCHIFSKY TRAILERS + + + + + Bill Rivers + + + + + Ranch King Enterprises, Inc.Bellville, Texas + + + + + Adams Trailer Mfg. + + + + + Falcon (British) + + + + + Larsen Lapline Trailer + + + + + Cummins Engine Co., Inc. + + + + + Cheetah + + + + + Hamilton Trailer + + + + + Trail King IndustriesDiv. W.A.S., Inc., Mitchell,South Dakota + + + + + Vengeance Motorcycle; Div. of Vengeance Performance Products, LLC + + + + + Gadabout + + + + + Easom Engineering + + + + + Neptune Corp. + + + + + Ono, Inc. + + + + + Claxton + + + + + SMART + + + + + Duesenberg + + + + + Daco Trailer Corp.Pocahontas, Arkansas + + + + + Vegas Mfg. Co. + + + + + Bandera Trailer + + + + + Pan American Mobile HomesDiv. of Divco-Wayne Industries + + + + + Doonan Trailer Corp.Great Bend, Kansas + + + + + Leer, Inc.Elkhart, Indiana + + + + + Dons Boat Trailer + + + + + Suvega Tiger + + + + + Big Inch Bikes + + + + + TM Trailer + + + + + All State + + + + + Garber Seeders, Inc. + + + + + Woods Div., Hesston Corp. + + + + + Merry Mfg. Corp.Marysville,Washington--mfrs. cultivators + + + + + Lane Flatbed Trailer + + + + + Norris Homes, Inc. + + + + + Tow Pro, Inc.McKinney, Texas + + + + + Rockford + + + + + Academy Mobile Home Corp. + + + + + Hickey Trail-Blazer + + + + + Porsche + + + + + AC Cobra + + + + + METAVIC TRAILERS; ST. PIERRE-BAPTISTE, QUEBEC CANADA + + + + + Nobility Homes, Inc.Ocala, Florida + + + + + Arndt TrailersHorse trailers + + + + + Cortez Motor Home + + + + + Spen & Co. + + + + + Multi Trailer + + + + + United Trailer Service & Supply Co. + + + + + HOLIDAY HOUSE + + + + + Lynn-Towtruck + + + + + Ratco WeldingBillings, Montana + + + + + New Dimension + + + + + W & M ENTERPRISES, INC.; LAWRENCEBURG, INDIANA + + + + + Vermette Machine Co. + + + + + Montgomery Ward - Snowmobiles + + + + + GRAND PRIX TRAILER MANUFACTURING, CO.; FREDERICK, MD + + + + + GradallDiv. of Warner & Swasey Co. + + + + + Hart Mfg., Inc.Chickasha, Oklahoma + + + + + Boanza Mobile Homes + + + + + Tow-Rite Mfg. + + + + + Harbortown Mobile HomeLeola, Pennsylvania + + + + + Vet Boat Trailer + + + + + Craft Weld Trailer + + + + + Nash-Healy + + + + + AMRAD PRODUCTS & SUPPLY (SNOWMOBILE & UTILITY TRAILERS) + + + + + Marquette Custom Boat Trailer + + + + + C. D. Osborn & SonGrand Rapids, Michigan + + + + + Thomsen Equipment Co. + + + + + Stopover Traveler & Camper Co. + + + + + KMMKoffel Machine & Metal Fabricating, Inc. + + + + + Monarch + + + + + Motocicletas Carabela SA + + + + + G. & C. Mfg. Co. + + + + + Sun-Lite, Inc.Bristol, Indiana + + + + + Red Cat Motors + + + + + Troyer Mfg. Co. + + + + + Scad-A-Bout Mfg. & Aluminum Co. + + + + + Freightliner Corp. + + + + + Continental of Colorado, Inc. + + + + + Spartan Motors, Inc.Mfd. in Charlotte, Michigan + + + + + Ellis Trailer Co.Sylmar, California + + + + + Forest ParkMfd. by Gerring Industries, Inc. + + + + + Tessy + + + + + Harrison Trailer Mfg. Co. + + + + + Tryco Mfg. Co., Inc.Decatur, Illinois + + + + + READI-BUILT TRAILERS; THOMASVILLE, NC + + + + + FNM + + + + + Kamasura (U.S.A.) + + + + + Woodland Camper Co. + + + + + Startrek + + + + + G & F HORSE TRAILER REPAIR; RIVERSIDE, CALIFORNIA + + + + + Sperry Rand + + + + + Qvale Automotive Group + + + + + Nelson Mfg. Co.Ottawa, Ohio + + + + + Maxwell + + + + + UNILLI ATVS ETC + + + + + Bivouac Industries, Inc.Vandalia, Michigan + + + + + Lloyd + + + + + Leland Engineering, Inc. + + + + + Finger Lakes Trailer + + + + + Hein-Werner Corp. + + + + + Towner Mfg. Co. + + + + + Easy Lawn, Inc. + + + + + Connaught + + + + + Jen Sell Corp.Elkhart, Indiana + + + + + Richard Piche, Inc.Quebec, Canada + + + + + OK Horse Trailer + + + + + Besasie Automobile Co., Inc + + + + + Caveman Industries + + + + + Argyle + + + + + Plymouth + + + + + Associated Truck & TrailerTigard, Oregon + + + + + Shalimar Mobile HomesMfd. by Sportcraft Homes + + + + + Walker Tractor Mfg. + + + + + Rich Industries + + + + + Harben, Inc. + + + + + Heckaman Mfg., Inc. + + + + + Por Trailer + + + + + Westgo Industries, Inc. + + + + + Husky + + + + + CANADIAN MOTORHOME + + + + + Harmon Tank Co.Lubbock, Texas + + + + + Pickwick + + + + + Tufby Converter Dolly + + + + + Overland Mfg. Co. + + + + + Easton Car & Construction + + + + + Ford's Mobile Home Mfg. + + + + + Ward LaFrance International Inc. + + + + + Auto Ski IncLevis, Quebec + + + + + Magnolia Mobile Homes Mfg. + + + + + Stewart, Inc. + + + + + Daytona Mobile HomesMfd. by Monarch Industries + + + + + Lubbock + + + + + Wartburg + + + + + Acro Tank Co.Springfield, Missouri + + + + + Poole, Inc. + + + + + Kelson Engineering Co. + + + + + Chevron Corp.Elkhart, Indiana + + + + + Moritz, Inc.Mansfield, Ohio + + + + + Balboa Motor Home + + + + + Lawrence Trailer + + + + + Sams + + + + + U.S. NAVY; MAKE IS UNKNOWN + + + + + Linde + + + + + Riverside Trailer Mfg. Co. + + + + + Tonco Lowboy Trailer + + + + + Simplex + + + + + American Microcar, Inc. + + + + + Bellaire Products + + + + + Condor Motor Home + + + + + Load Star Corp.Macon, Georgia + + + + + Fuller Mfg. Co. + + + + + ZAP (Zero Air Pollution) + + + + + Neal Mfg. Co., Inc. + + + + + Blue Bird Body Co. + + + + + Oberlin Trailers, Inc. + + + + + Advance Mfg. Co. + + + + + Swanee Trailer Mfg. Co. + + + + + Lesco, Inc. + + + + + IRD + + + + + Palmetto Sales of Laurens + + + + + Hickory King Horse Trailer + + + + + Croft-INS + + + + + Southern Trailers + + + + + Energy Mfg. Co. + + + + + Valiant Mobile Homes + + + + + Otasco + + + + + P & H + + + + + Titan Trailers, Inc. + + + + + Puller-TensionerMfd. by Sherman & Reilly, Inc. + + + + + Gorilla Electric Vehicles + + + + + Safti + + + + + Jack's Trailer Mfg. of Florida + + + + + Light Equipment Div.Div. of J. I. Case Co. + + + + + Alloy Trailers, Inc.Spokane, Washington + + + + + Lomac Boat Trailer + + + + + Car-Tel Corp. + + + + + Buffalo-Springfield Div.Div. of Koehring Co. + + + + + Glitsch + + + + + Plastic Engs. & Consultants + + + + + Camp Four Industries, Inc. + + + + + IMEIndustrial & Municipal Engineering, Inc. + + + + + Gibraltar Industries, Inc. + + + + + Jeraco Enterprises, Inc.Milton, Pennsylvania + + + + + Big Bear Choppers + + + + + SNUB-HARBOR OR DAY'S DRYDOCK TRAILERS; INDIANA + + + + + Holiday Marine Sales, Inc. + + + + + Harrell Mfr.North Carolina + + + + + Friggstad Mfg., Ltd., (Canada) + + + + + El-Jay Div. Iowa Mfg. Co. + + + + + Melmak Motor Home + + + + + Steadman Containers Ltd.Brampton, Ontario + + + + + Schuler Mfg. & Equipment Co., Inc. + + + + + Patz Co. + + + + + Travoy Motor Home + + + + + Cherokee Camper + + + + + Metzendorf Trailer Mfg. + + + + + USA Motor Corp.Bremen, IN; manufactures motor homes + + + + + Columbia Trailer Co., Ltd.Vancouver, Canada + + + + + Calico TrailersQuitman, Arkansas + + + + + Gindy Mfg. Corp.Downingtown, Pennsylvania + + + + + JamaicaMfd. by Marion Homes, Inc. + + + + + Roadrunner Mfg. Corp. + + + + + Italjet + + + + + Columbine Camp & Coach + + + + + Hilo Snyder Travel Trailer + + + + + Big SurMfg. by Vacation Industries + + + + + ZIMMER MOTOR CAR COMPANY; SYRACUSE, NY + + + + + Frazer-Nash + + + + + American Pride HomesDiv. Challenger Homes + + + + + Monte Aluminum Trailer Dump + + + + + Yangzhou Tonghua Semi-Trailer Co., Ltd. + + + + + Hillman + + + + + Alpha + + + + + J-J-N ENTERPRISES; SISKETON,MO + + + + + Lundgreen Flatbed + + + + + Haynes Mfg. Co., Inc.Chickasha, Oklahoma + + + + + PLATINUM MANUFACTURING LLC; OKLAHOMA CITY, OK + + + + + Multech Corp.Canton, South Dakota and Souix City,Iowa + + + + + Open Roadsters of Texas + + + + + Colt Camper, Inc. + + + + + Kazuma (Stannic Mfg. Co., Ltd.) + + + + + DEW Eze Mfg., Inc. + + + + + Appleby Camper Trailer + + + + + DRAKE TRUCK BODIES, VERNON BRIDGE, PRINCE EDWARD ISLAND , CANADA + + + + + Fey, Frank & Co. + + + + + Arrow Motor Homes + + + + + CADILLAC FABRICATION INC + + + + + Rogers Trailers, Inc. + + + + + Creekside Welding and Jamar Trailers + + + + + Cree Coaches, Inc.Div. of Southwest Michigan Ind.,Marcellus, Michigan + + + + + Blue-Ridge Pre-Built Mobile Homes + + + + + SUGGS MANUFACTURING CO., INC.; LAGRANGE, NC + + + + + Apollo Homes + + + + + RAPTOR; ATV + + + + + Lanchester + + + + + VACTRON TRAILERS, MANUFACTURED BY: A COMPLETE ASSEMBLY;MASCOTTE, FL + + + + + Golden Coach Mfg. Co. + + + + + Littleford Brothers, Inc.Mfrs. rollers + + + + + Henred-Fruehauf (Pty.) Ltd.South Africa + + + + + Kensington Motor + + + + + Unger Motor Home + + + + + Motobee + + + + + Ammex + + + + + LONE WOLF TTRAILER CO. INC.; FALKVILLE, AL + + + + + Bering + + + + + Park Trailer Corp. + + + + + Mayfairer Motor Home + + + + + AKTIVSee Tucker Sno-Cat Corporation + + + + + Chipmore Mfg. Co., Inc.Mfrs. chippers--Bay City, Michigan + + + + + Calcinator + + + + + Jowett + + + + + Terry Industries of Virginia + + + + + M & M Mfg. Co. + + + + + Mobile Unit Mfg., Inc. + + + + + Austin-Western Div.Clark Equipment Co. + + + + + Acton Mobile Industries, Inc.Elburn, Illinois + + + + + Calypso + + + + + Dorsett Mobile HomesMfd. by Silvercrest Industries, Inc. + + + + + FECHTNER TRAILERS, ELBOW LAKE, MN + + + + + Sprayrite Mfg. Co. + + + + + Feterl Mfg. Co. + + + + + Hartford Homes, Inc. + + + + + King of the Road Trailer Co.Conyers, Georgia + + + + + Factory Outlet Trailers + + + + + HAULIN TRAILERS LLC, MUSKEGON, MI TRAILERS + + + + + Harding Trailer Co.Fort Myers, Florida + + + + + Phoenix + + + + + Worrell Trailer Mfg. + + + + + Pixie Piker Travel Trailer + + + + + SHL + + + + + ULTRA ACQUISITION CORPORATION; RIVERSIDE, CA + + + + + Daton + + + + + Boat Master TrailersFt. Myers, FL + + + + + Catolac Corp. + + + + + Detrail Trailer + + + + + Pasquali, USAVerona, Wisconsin + + + + + Concord Travelers + + + + + Allentown Brake & Wheel Service, Inc.Allentown, Pennsylvania + + + + + Halco Co. + + + + + BILLY GOAT LAWN VACUUM + + + + + JAMCO TRAILERS; BRUCEFIELD, ONTARIO, CANADA + + + + + J & L'S CARGO EXPRESS, INC.; BRISTOL, INDIANA + + + + + LaSalleDiv. Globemaster M.H. + + + + + Yellowstone, Inc. + + + + + Deico Auto Carrier Trailer + + + + + Osi + + + + + NUWA Horizon Camper Trailer + + + + + Peerless + + + + + Gilson Brothers Co. + + + + + Golden Nugget Travel Trailer + + + + + Wheeler Truck TrailerMorley, Missouri + + + + + Howdan Mfg. Co. + + + + + Mobile Sweeper Div.Div. of Athey Products Corp. + + + + + Denver Trailer Supply, Inc. + + + + + Carriage, Inc. + + + + + ABCO Trailer Mfg. Co. + + + + + EXTREME CYCLES (MOTORCYCLES) + + + + + Formaloy Flat Snowmobile Trailer + + + + + Transportation Manufacturing CorporationRoswell, New Mexico + + + + + Carry-AllScrapers, rooters and chisels--mfd. byMurray Mfg. Co. + + + + + ARISTOCRAT INDUSTRIES, INC.; GOSHEN, IN + + + + + Moto Morini + + + + + LML Corp. + + + + + Reed Mfg. Co. + + + + + Kawasaki Motors Corp., U.S.A.Santa Ana, CA + + + + + Glenhill Road Machinery + + + + + Double Delight, Inc. + + + + + Air-O-Motor Home + + + + + Gehl Co. + + + + + K & K Mobile Homes + + + + + CHARLESTON MARINE CONTAINERS, INC. CHARLESTON, SC + + + + + Wrangler Trailers + + + + + Poloron Homes of Pa., Inc.Middleburg, Pennsylvania + + + + + Trailerette Trailer + + + + + Specialized Trailers + + + + + Fuerst Brothers, Inc. + + + + + M-D Trailer Co.Fort Worth, Texas + + + + + Rapid Traveler Coaches + + + + + J. E. Love Co. + + + + + Dynapac Mfg., Inc. + + + + + Glider Mobile Homes Corp + + + + + Trailer Wheel and Frame Co.Bellville, Texas + + + + + Ander-Ett, Inc. + + + + + Frederick-Willys + + + + + Rallymaster Travel TrailerArlington, Texas + + + + + HAYSHED TRAILERS; ALBERTA CANADA + + + + + Land Rover + + + + + Vauxhall + + + + + Kalyn Co. + + + + + THOROUGHBRED INDUSTRIES, INC; RIDGELAND, SC STARLITE MODEL + + + + + Capri + + + + + Mikrus + + + + + Travois Trailer + + + + + C & W TrailersGolden, MS + + + + + Trailco Mfg. & Sales Co.Div. of Dorsey Trailers--Hummels Wharf,Pennsylvania + + + + + Montgomery Mfg. Co. + + + + + Reliant + + + + + Watson Tractor Co., Inc.Danielsville, Georgia + + + + + Ashton Trailer + + + + + Marmon Harrington + + + + + BuckinghamMfd. by King Homes, Inc., Elkhart,Indiana + + + + + M.V. Agusta + + + + + Royals InternationalMillersburg, Indiana + + + + + Cash Trailers, Inc.Troy, Alabama + + + + + Rent-A-Trailer Corp. + + + + + Leisure Products, Inc. + + + + + Bitter + + + + + Mallard + + + + + EconorollMfd. by Stow Mfg. Co. + + + + + Easy Traveler Trailer + + + + + American BeautyMfd. by American Shelter Systems, Inc. + + + + + Presvac Systems (Burlington) Ltd. + + + + + Mobile Traveler + + + + + Alois Kober (AL-KO) + + + + + Vador + + + + + Devil Travel Trailer + + + + + Garrett-Weldco Industries, Inc. + + + + + Randall's VIP Trailers, IncTempe, AZ; boat and utilitytrailers + + + + + PANZER MOTORCYCLE WORKS, LLC COLORADO + + + + + Horner-Golem Co. + + + + + Seaman Digz-AllMerrill, Iowa + + + + + Transport Trailers, Inc.Cedar Rapids, Iowa + + + + + Plattsburg Mfg. + + + + + Kross KountryLittle Chute, Wisconsin + + + + + Allen Camper Mfg. Co., Inc. + + + + + CrestlaneMfd. by Lonergan Corp. + + + + + Linwood Mfg., Inc. + + + + + Bedell Trailers + + + + + Taylor Mobile HomesDiv. Troy Lumber Company + + + + + Murena + + + + + Foretravel, Inc.Nacogdoches, Texas + + + + + Flair Industries of Illinois, Inc.Macomb, Illinois + + + + + Stampings, Inc. + + + + + Boise Cascade Mobile HOmeBoise, Idaho + + + + + Niceson Boat Trailer + + + + + Budger Mfg. Co. + + + + + HUSKEE LAWN & GARDEN EQUIPMENT + + + + + Randall, Walter + + + + + Pines Trailer Corp.Pine Grove, Pennsylvania + + + + + Country Comfort Trailers + + + + + Bermar Mfg. Corp. + + + + + Coachmen Homes Corp.Subsidiary Coachmen Industries, Inc.,Middlebury, Indiana + + + + + Oneida Coach Mfg.Grand Ledge, Michigan + + + + + Spencer Sports Products + + + + + Auto Homes Industries + + + + + U.S. Electricar Corp. + + + + + Imperial Mobile Homes + + + + + Starcrest Motor Home + + + + + Morgan Trailer Mfg. CoMorgantown, Pennsylvania + + + + + Acme Trailer Mfg. Co. + + + + + Bucyrus-Erie Co. + + + + + Frank Russell Mfg. Co. + + + + + Journey Motor Homes, Inc.Elkhart, Indiana + + + + + Toyota + + + + + Canoga Classic Campers + + + + + JCB Excavators, Inc.Whitemarsh, Maryland + + + + + Salvaco, Inc.Columbus, Ohio + + + + + United Mobile Sales + + + + + IC CORPORATION;FORMERLY AMERICAN TRANSPORTATION CORPORATION + + + + + Fast Load + + + + + Great Dane Trailers, Inc.Savannah, Georgia + + + + + Mobile Holding Corp. + + + + + Camper City Coach Craft + + + + + Trailmaster Tanks, Inc.Ft. Worth, Texas + + + + + American Augers, Inc. + + + + + Osca + + + + + Rustler Horse Trailer + + + + + Pal Mfg. Co., Inc. + + + + + Pines Trailer CorpChicago, Illinios + + + + + Holmes Trailers + + + + + Thimsen Mfg. Co. + + + + + Bod-Eze + + + + + Trail Tramp + + + + + Danuvia + + + + + K Line Trailer + + + + + Zieman + + + + + ENCORE; RIDING LAWNMOWERS + + + + + CAVALLO + + + + + Kan Haul Trailer Sales + + + + + Lull Engineering Co.Subsidiary N. Marshal Seeburg & Sons,Inc. + + + + + Roadcraft Mfg. & Leasing + + + + + Lancer + + + + + Estate Mfg., Inc.Motor homes--Elkhart, Indiana + + + + + Parkway Mfg. Co. + + + + + FloTrailMfd. by Lynch Manufacturing + + + + + Starbuck Trailer + + + + + Butler, C. Trailer Mfg. Co.Greensboro, North Carolina + + + + + Graham + + + + + Tide Craft, Inc. + + + + + Ava Travel Trailer + + + + + Givens Mfg. Co. + + + + + Bunyan, Paul Co. + + + + + SIEMS ENTERPRISES; SHELLEY, IDAHO TRAILERS + + + + + Neckar + + + + + Letourneau, R. G. + + + + + Spartan Aircraft Co. + + + + + Riviera Mfg. Co. + + + + + Pointer-Willamette + + + + + Tru-Trailer Co. + + + + + Duplex Mill & Manufacturing Co. + + + + + Campus Bike + + + + + Windham Mfg. Co., Inc.Mfgs. loaders + + + + + Rockie Mountain Mfg., Inc. + + + + + Oklahoma Trailer, Inc.Mfrs. boat trailers--Kingfisher,Oklahoma + + + + + Pilgrim Intl., Inc. + + + + + B & B Cozy-Home + + + + + RON'S TRAILERS INC.; OREGON, OH + + + + + Angelus Trailer Mfg. Co. + + + + + Grumman-Olsen + + + + + Flintstone IndustriesOcilla, Georgia + + + + + Diamond T + + + + + Mc Kee Roughrider + + + + + Sprite + + + + + Elgin + + + + + Mahoning Homes, Inc. + + + + + SHIJIAZHUANG MFG MOTORCYCLES AND ATV'S + + + + + Lane Horse Trailer + + + + + Sunhome Mfg. + + + + + CommuneMfd. by Community Homes, Inc. + + + + + Bainbridge Motor Home + + + + + Mountain View Campers + + + + + Martin Lowboy Semi Trailer + + + + + Dreamliner Trailer + + + + + Cat + + + + + Ownahome, Inc. + + + + + Hupmobile + + + + + Tag-A-Long Trailers + + + + + Cavalier Homes, Inc. + + + + + Brae Trailers, IncStoughton, WI; piggyback semi-trailers + + + + + Schrader Dump Trailer + + + + + Dynacycle + + + + + American Eagle (also see make Eagle) + + + + + Windward Enterprises + + + + + Precision Fire Apparatus + + + + + Arkansas TravelerMfd. by Rawhide Stock & Horse TrailerMfr., Inc. + + + + + Tex Willett Co. + + + + + Oakland + + + + + Farmhand, Inc. + + + + + Fontaine Truck Equipment Co.Birmingham, Alabama + + + + + Cheney Weeder, Inc. + + + + + Gogomobile + + + + + Mid-Cal Forklift, Inc. + + + + + Chisolm Trailers, Inc.Chickasha, Oklahoma + + + + + Bellew's Perris Balley Campers + + + + + Saab + + + + + Mark V Trailer + + + + + Ballien Mfg. Co. + + + + + Garelli + + + + + TARASPORT TRAILERS, INC.; SWEETWATER, TN + + + + + DOUBLE D DISTRIBUTORS, INC; PINK HILL, NORTH CAROLINA + + + + + French Horse Trailer + + + + + High View, Inc. + + + + + Pittsburgh Forging Co., Farm ToolsDiv. + + + + + FabcoDiv. of Kelsey-Hayes Co. + + + + + Acme Mfg. Co., Inc. + + + + + M-B-W, Inc. + + + + + TRAILERMAN TRAILERS,INC/INLOW CUSTOM TRAILERS; LOUISIANA, MISSOURI + + + + + Tote Gote + + + + + Allied Leisure, Inc. + + + + + Nomad Trailers & Mobile HomesDewey, Oklahoma + + + + + Tourite Mobile Homes Mfg. + + + + + Bristol HomesDiv. Tidwell Ind., Inc., Goshen, Indiana + + + + + Morse Horse Trailer + + + + + Paris + + + + + American Coupler Systems, Inc. + + + + + TotemallMfd. by Birmingham Mfg. Co., Inc. + + + + + Starmaster Camping Trailer + + + + + Panorama Homes, Inc. + + + + + B & M Mfg. Co.South Camdenton, Missouri + + + + + BAJA USA MOPEDS, CYCLES & 3 WHEELERS + + + + + Alforge Metals Corp.Ontario, Canada + + + + + Nash Mfg. + + + + + Aqualand TrailersDiv. Mid-Atlantic Metal Distributors + + + + + Iveco Trucks of North America, Inc.Mfrs. of Magirus Tractors + + + + + Marvin Landplane + + + + + Gemini + + + + + Impala Mobile Homes & Travel Trailers + + + + + BRADCO; DIVISION OF ATTACHMENT TECHNOLOGIES, INC.IOWA + + + + + GMR Enterprises, Inc. + + + + + Tramper Travel Trailer + + + + + Cosmo + + + + + City Welding & Mfg. Co.Aluminum truck bodies & steel chassis + + + + + TVR + + + + + Cody Motorcycle Trailer + + + + + Clough Equipment Co.Seattle, Washington + + + + + Marion Metal Products Co. + + + + + Trail Master Trailers, Inc.Coleman, Oklahoma + + + + + Contrail International + + + + + Malanca + + + + + Wheel Campers Corp. + + + + + Progress + + + + + CREW CHIEF MOTORHOME/HAULER + + + + + Forte Trailer + + + + + Lional Enterprises, Inc. + + + + + Tecnica AutomotrizDel Noroeste SAMexico; trailers + + + + + RC Motor Home + + + + + HORTON TRAILERS + + + + + Montesa (Spain) + + + + + Tracpac Snowmobile Trailer + + + + + Brenner Tank, Inc.Fond du Lac, Wisconsin + + + + + Miller Trailers Inc.Bradenton, Florida + + + + + Lilliston Corp.Albany, Georgia + + + + + Master Liner Mfg. Co. + + + + + Holland Trailers + + + + + SOUTHMAYD EQUIPMENT CORPORATION + + + + + Bartolini Chassis Trailer + + + + + Gerlinger Foundry Machine Works + + + + + C & C DISTRIBUTORS, INC.; WINSLOW, ME + + + + + McKee Farm Technologies, Inc. + + + + + Speedway Trailer Div.Div. Dunphy Boat Corp. + + + + + Tailor Maid Industries + + + + + Scotsman Mfg. Co. + + + + + Vindale Corp. + + + + + Studebaker + + + + + Will Craft Camper Trailer + + + + + Diamond B + + + + + Circle R, Inc. + + + + + Attachment Technologies, Inc. (ATI) + + + + + Dot + + + + + Benson Truck Bodies, Inc.Mineral Wells, West Virginia + + + + + Seat + + + + + Columbia + + + + + Dina Camiones S. A. De C. V. + + + + + Modena + + + + + PEAGUSAS + + + + + Agrolina SAMexicali, Baha, CA; trailers + + + + + Assembled Vehicle (for furtherexplanation see Operating Manual,Part 1, Section 2.) + + + + + HullcoSikeson, Missouri (Sikeston TrailerSales) + + + + + Hewitt-Robins Crushing & VibratingDiv. Litton Systems, Inc.Equipment Div. + + + + + Valiant + + + + + Key Industries, Inc. + + + + + Nsu Prinz + + + + + FairwayMfd. by Holiday Homes, Div. of BeatriceFoods + + + + + Klinger Products + + + + + Thoroughbred Boat Trailer + + + + + Traveleze Industries, Inc. + + + + + Pyramid Mobil Homes + + + + + Lawndale Homes, Inc. + + + + + Brougham Industries, Inc. + + + + + Jimglo Trailers & ProductsPhoenix, AZ; car trailers andutility trailers + + + + + Southern Lifestyle Homes, Inc.Addison, Alabama + + + + + Tuff-N-Lite + + + + + Erickson Corp. + + + + + Shiloh HomesDouble Springs, Alabama + + + + + Crystal Welding Inc. + + + + + Flow Boy, Inc.Norman, Oklahoma + + + + + American Motors (see make Ramblerfor Ramblers manufactured priorto 1966) + + + + + Yamaha Motor Company, Ltd.Cypress, CA + + + + + Oak Coach Co. + + + + + Triple B Mfg. Co., Inc.Mascoutah, Illinois + + + + + LafayetteLowboy trailers + + + + + Philift Equipment Sales Co. + + + + + Elec-Trac + + + + + Alma Trailer Co. + + + + + AAA Trailer SalesMt. Pleasant, TX + + + + + KMN Modern Farm Equipment, Inc. + + + + + Space-Craft Trailers Mfg. + + + + + LA NEW INDUSTRIES, INC; MINNESOTA + + + + + Crest Mobile Homes, Inc. + + + + + Campers, Inc. + + + + + Hamby Co. + + + + + Truck Equipment Service Co.Lincoln, Nebraska + + + + + Rockett TrailersMedley, FL; boat trailers + + + + + Jamboree Motor Home Truck + + + + + KAUFMAN TRAILERS INC. + + + + + CSM Manufacturing Co.Oklahoma City, Oklahoma + + + + + Aly AllianceMfd. by Homette Corp. + + + + + Del RioMfd. by Madrid Homes + + + + + Road Runner + + + + + DM Utility TrailerGoodfield, Illinois + + + + + Mojave + + + + + French Ford + + + + + White Line Mfg. & Dist. Co. + + + + + Dugan Trailer, Inc.Groesbeck, Texas + + + + + JIANSHE MOTORCYCLES & MOTORSCOOTERS, CHINA + + + + + Scotty SportsmanMfd. by Serro Travel Trailer Co. + + + + + Michigan Central Airlines + + + + + Wells Cargo, IncElkhart, IN; commercial trailers + + + + + ParkmasterDiv. American Sterling Enterprises + + + + + Indies House, Inc.Hackleburg, Alabama + + + + + Maurell Trailer + + + + + Can-Car Inc.Tree-farming equipment--Div. Hawker-Siddeley Canada, Ontario, Canada + + + + + Herd Seeder Co., Inc. + + + + + HanoverKingfisher, Oklahoma + + + + + JERR-DAN + + + + + Princess Homes + + + + + New Holland Haybine + + + + + JEHM POWERSPORTS; MOTOR SCOOTERS, MOTORCYCLES, ATVS, ETC. + + + + + Texoma, Inc. + + + + + King-Co + + + + + Fiberfab, Inc. (Minneapolis, MN) + + + + + Ariel (British) + + + + + Honda + + + + + Easy RiderMfd. by Landoll Corp. + + + + + NISSAN DIESEL MOTOR CO. + + + + + J & R MANUFACTURING CO., LLC; TRINITY AL. + + + + + Babetta (mfd. by Jawa, imported byAmerican Jawa, Ltd., Plainview,New York) + + + + + Gardner-Denver Cooper Industries, Inc.Denver, Colorado (formerly Gardener-Denver Co.) + + + + + Racine Construction Tool Div.,Racine Federated, Inc. + + + + + C/P Products Corp. + + + + + Citation Travel Trailer + + + + + Play-Mor Trailers, Inc.Westphalia, Missouri + + + + + Marusho + + + + + REEL TRAILERS + + + + + Hale Horse Trailer + + + + + Job Site Trailer + + + + + Kromag (Subs. of Puch) + + + + + Glen-L TrailersLewiston, Idaho + + + + + Liberty Coach Co. + + + + + Travel Long Inc. + + + + + Sportcoach Corporation of America + + + + + Echelon Motorcycles + + + + + ICL Cargo Trailer + + + + + Fat CatMfd. by R & R Mfg. Co. + + + + + DWS Storeway TrailerCrossville, Tennessee + + + + + Heil Co. + + + + + Gilbern + + + + + DO-MOR Equipment, Inc. + + + + + La Crosse + + + + + Tinker Clubs of America, Inc. + + + + + Globestar Industries, Inc. + + + + + Taube Tool Corp.Mfd. Taube n Taube Trailer,Richmond, Indiana + + + + + CORN PRO TRAILERS + + + + + Minelli + + + + + Cezetta + + + + + VOR ENDURO MOTORCYCLE, ITALY + + + + + Meyer Mfg. Corp. + + + + + EBY, M.H., Inc.Blue Ball, Pennsylvania + + + + + West Coach Mfg. Co. + + + + + Campers Unlimited + + + + + Kami + + + + + Buckeye Mobile Homes, Inc. + + + + + Sport King Campers + + + + + Baillie's Tri-R Welding + + + + + P/D + + + + + Don May EnterprisesRichardson, Texas + + + + + Johnson Welding & Steel SupplyPhilo, Illinois + + + + + Commercial StructuresNappanee, Indiana + + + + + Newham Enterprises + + + + + APRILIA MOTORCYCLES + + + + + QUALITY MFG. CO., INC.; ROME, NEW YORK + + + + + Nardi-Danese + + + + + Ashley + + + + + NuWay Mobile Home Mfg. Co. + + + + + Armadillo Trailers, Inc.Utility Trailer, Deport, Texas + + + + + Williamsen Truck Equipment Corp.Mfr. "Williamsen Dump & Special Trailer"Salt Lake City, Utah + + + + + Rogers Brothers Corp. + + + + + Fertilizer Dealer Supply, Inc.Philo, Illinois + + + + + RemcoMfd. by Rome Engineering & Mfg. Co. + + + + + Unpublished truck mfr.(see Operating Manual, Part 1,Section 2) + + + + + Lancia + + + + + Triumph Machinery Co. + + + + + Yukon Delta + + + + + Lonaire Mfg. Corp. + + + + + W.C. Manufacturing & Specialty Co. + + + + + Marking Mfg. + + + + + Unipower + + + + + Ferrara Fire Apparatus + + + + + Fort Smith Camper Mfg. Co. + + + + + Gast Manufacturing Co. + + + + + Rumi + + + + + C & V Welding and Fabricating + + + + + Tjaarda + + + + + D & D Trailer Inc.Trenton, New Jersey + + + + + Komfort Travel Trailer + + + + + Coleman Camping Trailers + + + + + Ken-Bar + + + + + Lyman Metal Products Corp. + + + + + Prarie Schooner, Inc.Elkhart, Indiana + + + + + Chubbs, Inc. + + + + + Layton Homes Corp. + + + + + Magline, Inc.Pinconning, Michigan + + + + + Rolls-Royce + + + + + Ranchette Travel Trailer + + + + + Herrli Industries, Inc. + + + + + Biltmore Mobile Homes + + + + + Biewer Industries + + + + + Drott Manufacturing Co.Div. J. I. Case Co. + + + + + ABC (Aluminum Body Corp.) + + + + + Leesburg Div.Div. of Divco-Wayne Industries + + + + + CIRCLE M TRAILERS + + + + + TOPLINE MANUFACTURING, CO., INC.; TREMONT, MISSISSIPPI + + + + + DELOUPE, INC.; QUEBEC, CANADA + + + + + Snowbear, Ltd. + + + + + Erectors & Fabricators, Inc.Tonganoxie, Kansas + + + + + Jantz Mfg., Inc. + + + + + Viva Motor Home + + + + + Brock Star Trailer + + + + + EXCEL EZLOAD TRAILERS, LLC; AMARILLO,TX + + + + + Sol Cat Boat Trailer + + + + + Ferree Trailer Corp.Climax, North Carolina + + + + + Gold Star Mobile Homes, Inc. + + + + + Klimek Welding and ManufacturingMaple Lake, MN; manufactures trailers. + + + + + MOND INDUSTRIES, INC.MISSISSAUGA, ONTARIO, CANADA; PURCHASED BY TRAILMOBILE IN 1999 TRAILEMOBILE IN + + + + + Stow and GoMfd. by TRV Corp. + + + + + Motor Homes of America, Inc. + + + + + Rhino Trailer Mfg. + + + + + RFC Mfg., Inc. + + + + + Badger-Northland, Inc.Subsidiary Massey-Ferguson, Inc. + + + + + Bomag Trailer + + + + + Happy Wanderer Industry, Inc. + + + + + MUSTANG; CONSTRUCTION EQUIPMENT ETC. + + + + + TimberwolfElkhart, Indiana + + + + + Callahan Engineering Co. + + + + + Siefmund Werner + + + + + Erin Truck and Body EquipmentDolton, Illinois + + + + + Dupont Service Center, Inc. + + + + + Charlamor Corp. + + + + + Conwed Trailer + + + + + DUN-RITE MANUFACTURING LLC; DENVER, CO + + + + + ROLLINGSTAR, MFG., INC. ; BARNEVELD, NY + + + + + Hahn, Inc.Evansville, Indiana + + + + + Lac St-Jean Motoneige, Ltd.See Montagnais + + + + + Donhal, Inc. + + + + + PERFECTION ARCHITECTURAL SYSTEMS, INC.; BOYNTON BEACH, FL + + + + + Witzco Trailers, Inc. + + + + + Aristocrat Trailer SalesDiv. I. B. Perch Company + + + + + Pendlay + + + + + K-Bar Industries, IncSavage, MN; utility trailers + + + + + MOBILE CONCEPTS BY SCOTTY; MT. PLEASANT, PA + + + + + Bulk Resources, Inc., doing business as Bulk Mfg. Co. + + + + + Norjack, Incl + + + + + Murphy Engineering Co., Inc. + + + + + X-CEL TRAILERS, INC.; FORNEY, TX + + + + + C & B CUSTOM MODULAR, INC.; BRISTOL, TENNESSEE + + + + + International Industries, Inc. + + + + + Briggs Manufacturing, Inc. + + + + + Seal MateDiv. of Tateco, Inc. + + + + + Craftsman Ind., Inc. + + + + + Allen, R. L. Company, Inc.Battle Creek, Michigan + + + + + Holland Transplanter Co. + + + + + Panther Westwinds, Ltd. + + + + + General + + + + + Mallard Coach Corp. + + + + + BOURGET'S BIKE WORKS + + + + + DeTomaso + + + + + Woodline Custom Camper + + + + + Rink Mfg. Co. + + + + + Unicar + + + + + White Star Trailer + + + + + El Dorado Mfg., Ltd. + + + + + AMERICAN IRONHORSE MOTORCYCLES FT. WORTH, TEXAS + + + + + London Taxi + + + + + E Z Tow Manufacturing Co.Madison, Connecticut + + + + + A.Claeys Flandria (Belgium,imported by Saint Tropez) + + + + + Lechmere Construction + + + + + Caper Cycle + + + + + Comet Riding Mower + + + + + ONYX FLYER + + + + + ELKHART, INDIANA + + + + + Tacoma Trailer + + + + + Alexander-Reynolds Corp. + + + + + Eagle Equipment + + + + + Redi-Go Traveler + + + + + Milco Tank & Boat Co. + + + + + WESTERN RECREATIONAL VEHICLES, INC.; YAKIMA, WA + + + + + Santa Fe Springs Div.Div. of Divco-Wayne Industries + + + + + Robin Hood Travel Trailers + + + + + Van Guard Trailer, Ltd. + + + + + TRINITY TRAILER MEG., INC. BOISE, ID + + + + + Armor Mobile Homes Mfg. Co.Subsidiary Magnolia Mobile Home + + + + + King Horse Trailer + + + + + Raynell Campers + + + + + Ponderosa Industries + + + + + North River HomesHamilton, Alabama + + + + + Pure Steel Custom Cycles, Inc. + + + + + Werts BiltMfd. by Werts Welding Service + + + + + Kartote + + + + + Travel Equipment Corp. + + + + + Security Industries + + + + + Clay Camper Co. + + + + + Hyde Corp.Hurst, Texas + + + + + Tule Trooper + + + + + Double E Trailer Mfg.Commanche, Oklahoma + + + + + Kovatch + + + + + U-Save TrailersPomona, California + + + + + American Trencher, Inc. + + + + + Berkley + + + + + Midwest Industries, Inc.Ida Grove, Iowa + + + + + Zastavia (ZCZ-Yugoslavia) + + + + + Establishment + + + + + PROTAINER, INC; PROTRAILER (TRADE NAME) ALEXANDRIA, MN + + + + + Mobile Facility Engineering Co. + + + + + SHERCO MOTORCYCLE + + + + + PALM AIRE, INC.; ELKHART, IN + + + + + Zeligson + + + + + INNO VAN; MORAINE, OHIO/MERC HOLDING CO. + + + + + Haulette Trailer + + + + + Dively Mfg. Co.Claysburg, Pennsylvania + + + + + Cardinal Industries + + + + + Rembrant Mobile Home + + + + + Boyd, E.G., Trailer Co. + + + + + Circle V Horse Trailer + + + + + Kory Farm Equipment Div. + + + + + Yard-Man Co. + + + + + Bantam + + + + + Campbell-Hausfeld Div., Scott &Fetzer Co. + + + + + Allegro Motor Home + + + + + Diamond SWalters, Oklahoma + + + + + Green Mfg., Inc. + + + + + Merkur + + + + + Sabine Mfg., Inc. + + + + + Blake TrailersStar, Idaho + + + + + M.J.M. Trailer Mfg., Inc. + + + + + Kismet Mfg. Co. + + + + + Tilton-Hilton + + + + + Colorado Mobile Homes + + + + + Gore Trailer + + + + + Lark Trailer + + + + + Bombardier Ltd. + + + + + Viking + + + + + Unlisted Snowmobile Manufacturer + + + + + Leon Manufacturing Co., Ltd.,(Canada) + + + + + Gannon Manufacturing Co., Inc. + + + + + Discover 25 Motor Home + + + + + BEAVER CREK ENT. ; MOKENA, IL + + + + + McCain Industries + + + + + Seacamper Boat Trailer + + + + + DIAMOND C MT. PLEASANT,TX, CAR HAULER + + + + + Bellview Camper + + + + + Kon Kwest Mfg. + + + + + Terex Div.Euclid & Terex products + + + + + Lancer Mobile Homes + + + + + Centreville Trailer + + + + + Kempter Trailer + + + + + Star Tank & Trailer Mfg. Co. + + + + + Prairie Schooner + + + + + Wil-Ro, Inc.Gallatin, Tennessee + + + + + NICHOLS CUSTOM WELDING; HOME OF NICHOLS TRAILERS; FARMINGTON, ME + + + + + Wagon Master Trailer + + + + + International Jet Boats De Mexico S.A.De C. V.Mexico; trailers + + + + + Chance Coach IncWitchita, KS, city transit buses + + + + + All Purpose Trailer Co., Inc.Jefferson, South Dakota + + + + + American Body & Trailer Co. + + + + + Solo Electra + + + + + Todco + + + + + GiantManufactured by Caldwell & Sons + + + + + RC COMPONENTS + + + + + Stoddard Mfg. Co.Waterloo, Iowa + + + + + Four Winds + + + + + EPI Erwin Precision Inc. & EPI Custom Cycles + + + + + DIAMOND TRAILERS, INC. SHANDON,OH + + + + + T & M MANUFACTURING, INC.; PRINCETON, ONTARIO CANADA + + + + + Page Engineering Co. + + + + + Iowa Manufacturing Co.Cedar Rapids, Iowa + + + + + Gonard Enterprises, Inc. + + + + + Breeze Motor Home + + + + + Logan Coach, Inc.Logan, Utah + + + + + Lakeland Camper & Mfg.Drayton Plains, Michigan + + + + + SAM PATTON INDUSTRIES + + + + + Maginniss Vibrator Equip Co. + + + + + Bella Casa Co. + + + + + RV Industries, Inc. + + + + + Marathon Le Tourneau Co. + + + + + Equipment Pro or Milron Co., Inc. + + + + + Qianjiang Motorcycle Group Corp. + + + + + Red Dale Coach Co. + + + + + Craftsman + + + + + Jacobsen Mobile Homes + + + + + CONFEDERATE MOTOR WORKS, INC. + + + + + Comet Corp.Spokane, Washington + + + + + ELK AUTOMOTIVE; ELKHART, IN + + + + + Perma Tent Camper + + + + + VENTURI PARIS S. A. + + + + + Subaru + + + + + Aristocrat Motor Home + + + + + Idle-Time Cabover Camper Trailer + + + + + MILLENIUM TRAILERS, INC.; ADDISON, AL + + + + + Nash + + + + + Turner + + + + + EcsaMexico; trailers + + + + + Scout Motor Home + + + + + BULK MANUFACTURING COMPANY; PLANT CITY, FLORIDA + + + + + B & Z Electric Car Co. + + + + + Helm Mfg. Co. + + + + + Pleasure Homes Mfg. + + + + + Canadian Electric Vehicles, Ltd. + + + + + BaleMuvr + + + + + Aragon Distributing Co., Inc. + + + + + Fiat-Allis Construction Machinery, Inc. + + + + + Farm King, Ltd., (Canada) + + + + + Hustler-Rustler + + + + + C & S + + + + + Tartan Corp.Div. American Duralite Corporation + + + + + Classic Trailer Mfg. + + + + + Reliable Tank Inc.Rhone, Texas + + + + + Galion Manufacturing Div.Div. Dresser Industries, Inc. + + + + + CHINA QINGQI GROUP, INC; MOTORCYCLES, MOPEDS, SCOOTERS, ETC + + + + + Sampson + + + + + Marine Venture Enterprisers, Inc.Baltimore, Maryland + + + + + Ana-Log + + + + + Challenger Trailer + + + + + Alta + + + + + Holiday Industries, Inc. + + + + + Ridge Runner Industries, Inc.Fairmount, West Virginia + + + + + John A. McKay + + + + + Van Veen + + + + + Larado Mobile Homes + + + + + Mesa III Travel Trailer + + + + + Chicago Pneumatic Tool Co. + + + + + Warhawk Mfg. Co. + + + + + Altec IndustriesIndianapolis, Indiana + + + + + SPECTRUM STEEL, HYRUM, UTAH + + + + + Mitts-Merrill, Inc. + + + + + D & A Vehicles, Inc. + + + + + Playcat Industries, Inc.Polar BearSee Raybon Manufacturing CompanyPolar Bear/Whip ItSee Raybon Manuf + + + + + Austin + + + + + Douglas Homes, Inc. + + + + + Snowton Trailer + + + + + Seagull + + + + + HERITAGE CUSTOM TRAILERS; BENTON,ILLINOIS + + + + + Moto Guzzi (Italy) + + + + + Ace Traveler Corp. + + + + + Extreme Custom Trailers + + + + + Magic Tilt Trailer Mfg. Co., Inc.Boat trailers--Clearwater, Florida + + + + + UNITED EXPRESS LINE,INC; BRISTOL INDIANA + + + + + Selby Mfg. Co.Nicollet, Minnesota + + + + + King Trailer Co., Inc. + + + + + Wood/Chuck Chipper Corp.Mfrs. brushchippers--Shelby, NorthCarolina + + + + + COR-TECH MFG., INC., LUVERNE, MN + + + + + Nallej of Florida + + + + + Roll-A-Long & Sterling Coach Co. + + + + + Invader Travel Trailer + + + + + Tora (Imported by Rockford) + + + + + Crofton Cub + + + + + Lilac + + + + + Gilson + + + + + Viking Snowmobiles, Inc.Twin Valley, MN + + + + + Lislet Foundries, Ltd. + + + + + Eagle International, Inc.Mfrs. buses--Brownsville, Texas + + + + + Sprinter + + + + + Aerocar + + + + + Babcock's Mobile Home Mfg. Co. + + + + + SUN INTERNATIONAL RACING CORPORATION; CALIFORNIA + + + + + Remolques Tanques Y Equipos S.A. DE C.V. + + + + + Horex + + + + + SAUBER MANUFACTURING COMPANY; VIRGIL, IL + + + + + Easy Loader Trailer + + + + + Moretti + + + + + Graham-Paige + + + + + Raygo, Inc.Minneapolis, Minnesota + + + + + Hicks + + + + + Parkwood Homes, Inc. + + + + + Frye + + + + + Marvin A. Spears Co. + + + + + Little Prospector Motor Home + + + + + L & G Trailer + + + + + American Clipper Corp.Morgan Hill, California + + + + + Valley Foundry & Machine Works + + + + + Fost Joe Dog + + + + + Radamacher Trailer + + + + + Cascade Coach Co. + + + + + Spector Manufacturing, Inc. + + + + + Wy Frame Corp.Elkhart, Indiana + + + + + Bugatti + + + + + DovekieMfd. by Edey & Duff + + + + + Robert Horse Trailer + + + + + Star Trans + + + + + Pike Trailer CoSouth Gate, California + + + + + Panther + + + + + Batavia Trailers, Inc. + + + + + Chateau Recreational Vehicle Div.Christiana, Pennsylvania + + + + + Stepper Trailer + + + + + Ruttman + + + + + Streamline Trailer Co. + + + + + Oldsmobile + + + + + Cross Hill Mobile Homes + + + + + Tri-Pak Systems Co.Louisville, Kentucky + + + + + Dynamics Corp. of America + + + + + Tow Low + + + + + Transmobile Trailer + + + + + MARINE GROUP LLC; MURFREESBORO, TN (PRO-CRAFT) + + + + + Inland Equipment Corp.St. Charles, Illinois + + + + + Kayot, Inc. + + + + + Bon-Aire Homes, Inc. + + + + + Jim's Trailer ShopPortland, Oregon + + + + + Kurtis Kraft + + + + + Blue Ribbon Coach Co. + + + + + CurtisDiv. Globemaster Mobile Homes + + + + + HI-WAY STAR, INC; ODESSA, FL + + + + + Mack Trailer Mfg. Co., Inc.Detroit, Michigan + + + + + Texas Bragg EnterprisesMt. Pleasant, TX; utility trailers + + + + + Chatham Enterprises Custom Mfg. & Sales + + + + + Kallio Co.Fremont, Nebraska + + + + + LAND PRIDE FARM & GARDENING EQUIPMENT; MOWERS, ETC. + + + + + TIMBERLAND RV COMPANY; PERU, IN + + + + + Intermeccanica + + + + + Victor Mobile HomesDiv. DeRose Industries + + + + + Davenco, Inc.Roscoe, Illinois + + + + + Ariens Co. + + + + + Fawn Corp. + + + + + ULTIMATE TRAILERS; LAKEVIEW TERRACE, CA + + + + + Diamond-BiltMfd. by Diamond Steel Co., Inc. + + + + + Hylander Utility Trailer + + + + + Waldon, Inc. + + + + + Care-Free Camper Mfg. Co. + + + + + Motoroam Industries, Inc.Galva, Illinois + + + + + AlanMfd. by Giles Industries + + + + + Legendary Luxury Coach, LLC + + + + + Deutz-Allis Corporation + + + + + Tuff Thom Trailers, Inc.Brunswick, Georgia + + + + + Logic Motor Co. + + + + + Shipbuilt Van Trailer + + + + + Blazer + + + + + Super Two + + + + + Winder Liberator Camper + + + + + Geering Industries, Inc. + + + + + Riviera + + + + + Binkley Co., The + + + + + TC Industries, Inc.Crystal Lake, Illinois + + + + + Electra Vacation Home + + + + + Beach-Craft Motor Homes Corp.Elkhart, Indiana + + + + + Smartlee + + + + + COUNTRY BLACKSMITH LLC + + + + + Ski Kart + + + + + Ryan Mfg. + + + + + Fellwon Trailer + + + + + YLN (Yue Loong Motor Co.) + + + + + Trailers Y Casetas Bonanza S. A.Mexico; trailers + + + + + Tourhome Camper Trailer + + + + + Boxer Trailer + + + + + IPSCO-Lambton Steel + + + + + Lake & Shore Camper + + + + + Evinrude Motors + + + + + Trans-Trail Trailer + + + + + Supreme Industries, Inc.Louisville, Tennessee + + + + + Mobile InternationalTulsa, Oklahoma + + + + + Pennco Industries, Inc.Subsidiary of DEC International, Inc.--Warren, Pennsylvania + + + + + M & W Gear Co., Inc. + + + + + Ramsey Trailers + + + + + Mo Trailer Corp.Goshen, Indiana + + + + + Mobile Engineering Co. + + + + + Delmar Mfg. Co., Inc. + + + + + L & E Enterprises + + + + + Welch Mfg. & Engineering Co. + + + + + Wacker Corp.Milwaukee, Wisconsin + + + + + Tracker Marine, Inc.Nixa, Missouri + + + + + Yetter Mfg. Co. + + + + + Raybon Manufacturing CompanyWallingford, CT + + + + + Bulk Equipment Mfr. Inc.Bulkiner Feed Trailer + + + + + B.M. Clark Co., Inc. + + + + + Northwest Custom TrailerRochester, Washington + + + + + Detroit Trailer Co.Detroit, Michigan + + + + + MANCO PRODUCTS, INC + + + + + Paiute Trailers + + + + + Dusgo Trailer + + + + + Asbury Industries, Inc. + + + + + Buck Dragster Flatbed + + + + + VENTO MOTORCYCLES + + + + + Forage King Industries Inc. + + + + + George White & Sons Co., Ltd.,(Canada) + + + + + Hire Dump Trailer + + + + + Goebel Trailer Co. + + + + + Sutphen Corp.Amlin, Ohio + + + + + Avia + + + + + Holmes Wrecker + + + + + T.E.S. (Truck Equipment & Sales Co.) + + + + + Holman + + + + + Gar-Bro Manufacturing Co. + + + + + Boardman Co. + + + + + Sabre JetSee Sno*Jet, Inc. + + + + + BIBB WELDING & TRAILERS, LLC; MACON, GEORGIA + + + + + VERTEMATI MOTORCYCLES + + + + + HADDOX QUALITY TRAILERS; OKLAHOMA + + + + + Mirage Motorhomes, Inc. + + + + + Sera + + + + + Lil' Cat, Inc.Elkhart, Indiana + + + + + Devine's Machine & Design, Inc.Grantville, Pennsylvania + + + + + Hercules + + + + + F.A.B. Mfg. Co. + + + + + Buccaneer Mobile HomesDiv. Brigadier Industries, Inc. + + + + + Joe's Custom Boat Trailer + + + + + Atlas + + + + + Saturn HomesDiv. Harrelson Corporation + + + + + Monarch (Sweden) + + + + + Orcon Incustries + + + + + MODERN, INC. TEXAS + + + + + Charger + + + + + Stewart & Stevenson + + + + + Lagonda + + + + + R/S Truck Body Co., Inc.Allen, Kentucky + + + + + Selox Mfg., Ltd.Toronto, Ontario, Canada + + + + + Danny Boy Trailer + + + + + Continental Homes, Inc. + + + + + Show-Me Trailers, Inc.Smithton, Missouri + + + + + Lem + + + + + Son-Dyke Trailer Co.Boat Trailers--Calico Rock, Arakansas + + + + + Fleet-Aire Camper Co. + + + + + Rogue River Trailer Mfg. Co. + + + + + MG + + + + + Cozy CraftMfd. by Travelcraft, Inc. + + + + + RUSH & SON, INC; LENOIR CITY, TENNESSEE + + + + + Spano Crane Sales & Service Corp. + + + + + Viscount Trailers + + + + + Johns Corp. + + + + + AljoDiv. Skyline Homes + + + + + VAN HOOL BUSES & MOTOR COACHES + + + + + PCM Div.Div. of Koehring Co. + + + + + Midas International Corp. + + + + + BeeBee Sales Co. + + + + + LONG CHANG; USA ATVS + + + + + Hudson + + + + + Insley Four Wheel Tag Trailer + + + + + Heilite Trailers, Inc. + + + + + Alma + + + + + Mercedes-Benz + + + + + Corvette Travel Trailer + + + + + Versatile Manufacturing Co.Div. Versatile Cornat Corp., KansasCity, Missouri + + + + + Northern Hydrolics, Inc. + + + + + Ezzy Load Boat Trailer + + + + + Diplomat Motor Home + + + + + Dean Industries, Inc. + + + + + Miller + + + + + Bartlett Trailer Corp.Chicago, Illinois--Predecessor toBartlett Lifting Devices + + + + + Wa-Nee Homes Corp. + + + + + Shamrock CampersDiv. Classic Mfg. Co. + + + + + INTERMOUNTAIN WHOLESALE, INC. ;COMMERCE CITY, CO + + + + + Transmission (Generic Code--for useonly when manufacturer is notlisted) + + + + + Kassborth + + + + + Delahaye + + + + + Major Way + + + + + Hillsboro Industries, Inc. + + + + + Rotocraft Boat TrailerGrants Pass, Oregon + + + + + Catalina Motor Home + + + + + Brown Industries + + + + + Francis Travel Trailer + + + + + MacDonald Camper Kit + + + + + Mono + + + + + Dominion Road Machinery Co., Ltd. + + + + + Boyer Industries + + + + + Trek, Inc.Elkhart, Indiana + + + + + Dorado Mobile HomesMfd. by Tidwell Industries, Inc. + + + + + A & J Industries Custom Fiberglassing + + + + + Hadley Trailer Mfg. Co.North Carolina + + + + + Bristol + + + + + Bristol Mfg. Co. + + + + + Bunton CompanyLouisville, Kentucky + + + + + Yamoto + + + + + Mount Vernon Mobile HomeDiv. Concord Mobile Homes + + + + + Colonial Mobile Homes Mfg. + + + + + Merit Tank & BodyBerkeley, California + + + + + STEPHENS PNEUMATICS, INC.; HASLET, TEXAS + + + + + EconomyGarden tractor--mfd. by EngineeringProducts Co., Inc. + + + + + Integrity Custom Trailers or R & D Fabrication + + + + + W.W. TRAILER MANUFACTURERS, INC; OKLAHOMA + + + + + Victory Implement Co. + + + + + Sangyong + + + + + Executive Industries, Inc. + + + + + Moto Rumi + + + + + Vanette + + + + + Airstream Travel TrailersJackson Center, Ohio + + + + + LEITCHFIELD TRUCK EQUIPMENT, INC,; LEITCHFIELD, KY + + + + + Sycamore Mobile Homes + + + + + E. D. Etnyre & CompanyOregon, Illinois + + + + + Interstate Travel Trailer + + + + + Reed Enterprises, Inc. + + + + + ENVASES DE ACERO, S.A. DE C.V. MEXICO; TRAILER + + + + + DixieFruehauf Corp. Plant + + + + + SCION; NEW LINE/MAKE OF VEHICLE UNDER THE TOYOTA BRAND ______MODELS INCLUDE THE XA & AB + + + + + Angel + + + + + MAUER MANUFACTURER, INC.; IOWA, TRAILERS + + + + + High Chaparral, Inc.Ft. Worth, Texas + + + + + New Comer Industries, Inc.Goshen, Indiana + + + + + Peek + + + + + Jaguar + + + + + Nabors Trailers, Inc.Mansfield, Louisiana + + + + + Vector Aeromotive Corporation + + + + + Shoops Horse Trailer + + + + + Ozark TrailwayMfd. by Tri-Lakes Mfg. Co., Inc. + + + + + LEGEND TRAILERS, INC + + + + + Sun State Mobile Homes + + + + + Rolling Homes, Ltd. + + + + + Bocar + + + + + Bonnieville Mfg. Co. + + + + + SNOW Co. + + + + + Saracen + + + + + Hewitt-Lucas Body Co. + + + + + Jet Stream Camping Trailer + + + + + American Transportation Corp. + + + + + Joe's Welding ServiceSalem, Illinois + + + + + WADE SERVICES, INC.; ELLISVILLE, MS + + + + + Packard + + + + + Red Ewald, Inc. + + + + + Utah King Motor Home + + + + + Highway Manufacturing Co.Div. of Motac, Inc. + + + + + Conroy IndustriesNew Braunfels, Texas + + + + + Foot Hill Horse Trailer + + + + + Field & StreamManufacturer Vacation Industries + + + + + PACE AMERICAN OF UTAH, INC.; HURRICAN UTAH + + + + + Ensenada Mobile Homes + + + + + Special Endeavors, Inc.Omaha, Nebraska + + + + + Herter Snowmobile Trailer + + + + + Chamberlin TrailersHampton, Iowa + + + + + Inline Southwest Horse Trailer + + + + + Auranthetic Charger + + + + + Arnold Mfg. Co. + + + + + Haul-It-All-Flatbed Trailer + + + + + Aqua Cruiser, Inc.Columbia, Tennessee + + + + + Danco Trailers, Inc. + + + + + ECONOLINE TRAILERS, INC. ; DOUBLE SPRINGS, ALABAMA + + + + + The Salem Tool Co. + + + + + Modernistic Industries + + + + + Diamond ReoDiscontinued production in 1974 + + + + + Kosch Co. + + + + + Owens Mfg. Co. + + + + + Foland Enterprises + + + + + Topper Mobile Homes, Inc. + + + + + New Heights, LLC + + + + + Trophy Travel Trailer + + + + + Harvard (model of Negrini) + + + + + Hairgrove Construction Equipment + + + + + RAPSURE, INC; NAPPANEE, IN UTILITY & OTHER TYPE TRAILERS + + + + + Aeroil Products Co., Inc.Bensenville, Illinois + + + + + Getman Brothers Mfg. Co.Marion, Ohio + + + + + Muncy Homes, Inc.Muncy, Pennsylvania + + + + + Callen Camper Co. + + + + + ChanceyMfd. by Trail-O-Matic + + + + + Big Bubba's + + + + + Sundial Motor Home + + + + + Prowler Industries + + + + + QE Mfg. Co., Inc.New Berlin, Pennsylvania + + + + + Doepker Industries Ltd. + + + + + Recreative Industries, Inc. + + + + + Lanes Pacesetter Trailer + + + + + CAM SUPERLINE, INC.; GREENCASTLE,PA + + + + + AUTOCAR & AUTOCAR LLC CARS & TRUCKS + + + + + Dellow + + + + + Twister + + + + + Valley Campers + + + + + Brillion Iron Works Div., BeatriceFoods Co. + + + + + Hartline Travel Trailers + + + + + G. S. Industries, Inc. + + + + + Heinkel + + + + + G.T.Wolfe Mobile Homes + + + + + Erie-Go Mfg., Inc. + + + + + Brooklyn Trailer + + + + + Tennessee Trailer + + + + + Speed Bird + + + + + Trav Otel Industries + + + + + Lewis-Shepard + + + + + Bame Three Axle Trailer + + + + + SWM + + + + + Jackson Trailer + + + + + Hunter Structures Trailer + + + + + Richards & Clark Mfg. Co. + + + + + Alberta Trailer Co., Ltd. + + + + + Gibraltar Coach Mfg. Co. + + + + + TRAILER WHEEL & FRAME COMPANY; TEXAS + + + + + Triumph Sales & Service + + + + + Bushog Div.Subsidary of Allied Products Corp.Selma, Alabama + + + + + Lanheim, Inc. + + + + + Mitchell Industrial Tire Co., Inc.Chattanooga, Tennessee + + + + + Scorpion + + + + + Melges Boat Works, Inc.Zenda, Wisconsin + + + + + Capitol Trailer Coach Co. + + + + + Gladding Travel Trailer + + + + + Flaherty Manufacturing Co.Div. of Koehring Co. + + + + + Custom Frames, Inc.Normandy, Tennessee + + + + + Balderson, Inc. + + + + + Felps Mfg. Corp.Johnson City, Texas + + + + + Honeywell Motor Prods., Honeywell,Inc. + + + + + Streamline Motor Home + + + + + Corner Utility Trailer + + + + + Motorette + + + + + SCAT TRAK; CONSTRUCTION EQUIPMENT + + + + + Winnebago Industries, Inc. + + + + + B-Line Farm EQuip.Mfrs. Cartow & Snowmobile trailersBristol, Virginia + + + + + Downs Clark Trailer + + + + + AriensSee Skiroule Ltd + + + + + Trotwood Trailer + + + + + Dalesman (United Kingdom) + + + + + Warwick + + + + + Zongshen Motorcycle Co., Ltd., or Cixi Zongshen Motorcycle Co., Ltd. + + + + + Mark Twain Mfg. Co. + + + + + Hurst Trailers, Inc.Washburn, Tennessee + + + + + ROBB KAUFMAN, INC.; LEXINGTON, NORTH CAROLINA + + + + + Lombard + + + + + GalwayMfd. by Shamrock Homes + + + + + Co Corp. + + + + + Peterbilt Motors Co.Div. of Paccar, Inc. + + + + + Kelly-Creswall Co., Inc.Xenia, Ohio + + + + + Traveler Mfg. Inc.Concordia, Missouri + + + + + ELK RIVER MACHINE CO.; ELK RIVER, MN + + + + + Burkhart Trailer Mfg. Co. + + + + + Thor California, Inc. + + + + + Space Age Campers + + + + + Glover Plastic Sprayer + + + + + Rockford Welding & Machine + + + + + Aluma Craft + + + + + Ameri-Camp + + + + + Arlberg + + + + + Hayes Log Truck + + + + + MANN MADE PRODUCTS INC. TRAILMANN TRAILERS (TRADE NAME) + + + + + Superior Ideal, Inc.Oskaloosa, Iowa + + + + + Montgomery, Bill + + + + + Coynco Products + + + + + EstatePower mowers--mfd. by Jacobsen Manu-facturing Co. + + + + + Gem Industries, Inc.Grand Rapids, Michigan + + + + + Balzer Manufacturing Corp. + + + + + Reeves Trailer + + + + + MercurySee Mercury Marine + + + + + Boerne Trailer Mfg. or Inter-National Crane & Trailer, Inc. + + + + + Koehn Mfg., Inc. + + + + + TWINKLE; HEARSES + + + + + Bear Trailer Mfg., Inc.Lebanon, Missouri + + + + + Wilson Trailer Co., Inc.Grain, livestock trailers--Sioux City,Iowa + + + + + PEGASUS VANS & TRAILERS, INC SANDUSKY, OH + + + + + Darf Corp. + + + + + Bee Trailers, Inc. + + + + + Tri-Star Corp. + + + + + Custom Homes, Inc. + + + + + Marquez Mfg., Ltd.Sunnyside, Washington + + + + + Southeastern + + + + + Husqvarna + + + + + MI-JACK PRODUCTS; HAZEL CREST, IL + + + + + CARGO KING, LLC; WHITE PEGEON, MICHIGAN + + + + + Reynolds Mfg. Co. + + + + + U.S. Suzuki Motor Corp., Inc.Santa Fe Springs, CA + + + + + Trail-Or-Floats + + + + + Huntington Distributors + + + + + Wheel Horse Products, Inc.Subsidiary American Motors Corp., SouthBend, Indiana + + + + + Peninsula Camper Mfg. + + + + + Central Industries, Inc. + + + + + Spirit Eagle + + + + + DeGeest Mfg. Co.Sioux Falls, South Dakota + + + + + Bock Products, Inc.Elkhart, Indiana + + + + + Grycner + + + + + Cook Semi Trailer + + + + + Fargo + + + + + Taizhou Hisource Intl. Trade Co., Ltd. + + + + + FOREST RIVER, INC.; GOSHEN, INDIANA TRAILERS + + + + + Lea-Francis + + + + + York Forklift + + + + + LONE WOLFE + + + + + Double Horse Trailer + + + + + Veritas + + + + + Star Machine Shop Co. Ltd. + + + + + Nichols Mfg. Co., Inc. + + + + + McQuerry Tan Trailer + + + + + Califfo + + + + + De Rose Industries Inc.Indianapolis, Indiana + + + + + Sterline Flatbed Trailer + + + + + Broce Manufacturing Co. + + + + + Liquid & Bulk Tank Div.Div. of Fruehauf Corp.--Omaha, Nebraska + + + + + Longmark Mobile Homes + + + + + E-One + + + + + KARD CO, RENSSELAER, INDIANA + + + + + Evans Mfg. Co., Inc., JohnSumter, South Carolina + + + + + Matlock Trailer Corp.Nashville, Tennessee + + + + + Encore Motorcycle Co., USA + + + + + Kubota Tractor Corp.Compton, California + + + + + Trabant + + + + + Reliance Trailer Mfg.Div. Redwood Reliance Sales Co.,Cotati, California + + + + + Hiawatha + + + + + Diamond Mobile Home Mfg. + + + + + Majestic Rides Mfg., Inc.New Waterford, Ohio + + + + + VagabondDiv. Guerdon Industries + + + + + Walker + + + + + MIGHTY MOVER TRAILERS, INC; CALIFORNIA + + + + + Excalibur + + + + + Midwest Mobile Homes & Trailer Mfg. Co. + + + + + Lorain Div.Div. of Koehring Co. + + + + + Omaha Standard Flatbed Trailer + + + + + Wanamaker Trailer + + + + + Orange County Choppers + + + + + Prime Mover + + + + + Super Vacuuming Mfg. Co., Inc. + + + + + ChaparralSee Chaparral Industries, Inc. + + + + + HUSABERG MOTORCYCLES, SWEDEN + + + + + Emmco Trailer + + + + + De-Lar, Inc. + + + + + Economy-Wisconsin + + + + + Berkeley Pump Co. + + + + + Baron Homes, Inc. (old code CGC)Formerly C&G Corp., Elhart, Indiana + + + + + Mayflower Trailers or Homes + + + + + Rowse Hydraulic Rake Co. + + + + + Minneapolis-Moline (MOTEC), Inc. + + + + + X-L SPECIALIZED TRAILERS; OELWIN, IA.; SD,DDE,MFG,HDG,LSD TRAILERS + + + + + Cisitalia + + + + + Calkins Trailer + + + + + Transport Systems, Inc.Denton, Texas + + + + + Foremost Mobile Home Mfg. + + + + + W-W TrailersStock Trailers + + + + + Week-N-Der Pickup Camper + + + + + Thiermann Utility Equipment Div.Milwaukee, Wisconsin + + + + + AZTX or Az-Tex Trailers + + + + + Jerry James TrailersSikeston, MO; utility trailers + + + + + Marlette Homes, Inc.Marlette, Michigan (formerly MarletteCoach Co.) + + + + + Sprout, Waldron & Co., Inc. + + + + + Five Star Engineering, Inc. + + + + + FHL + + + + + BOYDSTUN METAL WORKS, INC.PORTLAND, OREGON + + + + + Royal Enfield + + + + + Atlas DivisionDiv. Lonergan Corporation + + + + + Vintage Homes + + + + + Alair Coach Corp. + + + + + Sun Trailer & UtilitiesMid-West City, Oklahoma + + + + + Ace Trailer of America + + + + + M & R Enterprises, Inc., or Honeysuckle Enterprises, Inc. + + + + + Heltzel Co. + + + + + Thor Power Tool Co. + + + + + Ripco, Inc. + + + + + My-Way Corp.Longwood, Florida + + + + + Hopkins Mfg. Corp. + + + + + Moskovitch + + + + + Glas + + + + + AAPEX TRAILERS, INC.; CHICAGO, IL + + + + + Mobile Scout Mfg. Corp.Arlington, Texas + + + + + Work Horse Mfg. + + + + + Otosan + + + + + Belarus Machinery, Inc. + + + + + Frontier Homes Corp. + + + + + Mean + + + + + Flote-Aire Corp. + + + + + E-TON DYNAMICS TECHNOLOGY INDUSTRY CO., LTD + + + + + Di Tella + + + + + D & E WELDING; LYONS, GA + + + + + Mal Tractor + + + + + Jialing Ind., Co., Ltd. Group + + + + + Johnson Motors + + + + + Durcholz Trailer + + + + + Ronco Coaches, Inc. + + + + + Ideal Industries + + + + + Tri-Way Trailer + + + + + Strahan Mfg. Co. + + + + + Haul-A-Fame, Inc. + + + + + Trac + + + + + Morris + + + + + Beaird-Poulan Div., Emerson ElectricCo. + + + + + Majestic Corp. + + + + + Eight Point + + + + + Green & Green Mfg. Co., Inc.Lancaster, Texas + + + + + Dual Evans Corp. + + + + + Zetor/Zetor North America + + + + + Elva + + + + + Allen Coachworks Inc.(Mexican Manufacturer) + + + + + Villiers + + + + + Lemoped (model of Motobecane) + + + + + Towncrier Camper + + + + + Bimota Motorcycles + + + + + Tebben Mfg. Co., Inc. + + + + + Werts Corp., Inc. + + + + + Auburn + + + + + R & I IndustriesCity of Industry, California + + + + + Andrews Payloader + + + + + Lori Engineering Corp. + + + + + Marlin Mfg. + + + + + United States Aluminum Co. + + + + + Recreatives, Inc.See Sabre + + + + + Fantic + + + + + Camp-A-While Homes Mfg. Co. + + + + + Suzulight Su + + + + + Garway Homes, Inc. + + + + + Hornet Industries, Inc. + + + + + Trailex, Inc.Canfield, Ohio + + + + + De Lorean (imported from Belfast,Northern Ireland, UK) + + + + + C.C. Kelley & Son + + + + + Twentieth Century Mfg. Co.or 20th Century Mfg. Co. + + + + + Mobile Mfg. Corp. + + + + + B & W Homes, Inc. + + + + + Ute Trailer + + + + + Innocenti + + + + + MILLER INDUSTRIES, INC., OOLTEWAH, TENNESSEE + + + + + Corona Coach Co. + + + + + Tear Drop, Inc. + + + + + BestrailMfd. by Lakeside Industries + + + + + Schwinn Motor Scooters + + + + + Huss Sales, Inc. + + + + + Pederson + + + + + United States Mobile Homes (Florida) + + + + + American Hoist & Derrick Co. + + + + + HYDRO TEK CORP.; REDLANDS, CA + + + + + Excellance, Inc. + + + + + Dakota Mfg. Co., Inc.Mitchell, South Dakota + + + + + Bridgestone + + + + + Wabco Construction & Mining EquipmentSubsidiary of American Standard, Inc.Group + + + + + ALUTREC INC. STE-AGATHE, QUEBEC CANADA + + + + + Imperial Industries + + + + + Thunderbolt Trailer + + + + + A-Z MANUFACTURING; MADERA, CA + + + + + American Road EquipmentOmaha, Nebraska + + + + + Henke Manufacturing Corp. + + + + + Acadian (GM of Canada) + + + + + SANDPIPER + + + + + Hesse Corp.Kansas City, Missouri + + + + + Travel Home, Inc. + + + + + Bianchi + + + + + Forrest City Machine Works, Inc. + + + + + Fife Trailer + + + + + Miller Equip. Div., Miller Equip. Co + + + + + Taka (Imported by Rockford) + + + + + John Pitzer Mfg. Co.Glenwood, Iowa + + + + + MASSON'S WELDING + + + + + Tropicana Mfg. Co. + + + + + Grizzly Mfg. Co., Inc. + + + + + H & B Trailer Co.Damascus, Arkansas + + + + + Fleming Mfg. Co., Inc.Long Lake, Minnesota + + + + + Camp-Mor, Inc. + + + + + Leyland TractorsBritish Leyland - Dist. by UniversalTractor-Equipment Corp. Richmond,Virginia + + + + + Forlyn Engineering Co. + + + + + Ceva Mfg. Co. + + + + + Stutz + + + + + Busse Brown Trailer + + + + + Kamp-A-While Industries + + + + + Blazon Mobile Homes Corp. + + + + + American Trailers, Inc.Div. Polar Mfg. Co. + + + + + Belmont Machine + + + + + Globe + + + + + Grace, W. E., Manufacturing Co. + + + + + Nuell Coach Corp. + + + + + Columbia Tractor Mower + + + + + Weber + + + + + RAZORBACK TRAILERS; PENNSYLVANIA + + + + + Jackel Motorsports or China Jialing Ind. Co., Ltd. + + + + + Ferguson Mfg. Co., Inc. + + + + + Ysob Co. + + + + + Hawthorne + + + + + Kevco Ind. + + + + + Siebert Trailers, Inc.Stockton, California + + + + + Glassic + + + + + Indian (Taiwan) + + + + + Beck Camping Trailer + + + + + Bob S Trailer + + + + + Lil'ZManufactured by Zieman Products + + + + + Crown Line + + + + + JB + + + + + Bird + + + + + Vanguard National Trailer Corp. + + + + + Sterling Industrial Corp. + + + + + Vermont Traveler + + + + + Tracker Corp.Boat trailers--Winchester, Tennessee + + + + + Bond Mobile Homes, Inc. + + + + + Arrow Trailers, Inc.Affiliated with Great Dane Trailers--Memphis, Tennessee + + + + + Peerless International Co., Inc. + + + + + Killer Chopper Cycle Fabrication, LLC + + + + + Pinto + + + + + Starcraft Corp. + + + + + Grimmer-Schmidt Corp.Franklin, Indiana + + + + + Baretta + + + + + Tybex Corp.Bangor, Pennsylvania & Belvidere, N.J. + + + + + CapellaMfd. by Midland Industries, Inc. + + + + + Sunliner Motor Home + + + + + ACCU-TEK,INC.; SHREWSBURY, MASSACHUSETTS + + + + + Tannehill Trailer + + + + + Toddy Custom Built TrailersMfrs. stock trailers--Bradford, Arizona + + + + + E Z HaulDiv. of Parkhurst Manufacturing Co. + + + + + Macoma Engineering, Inc. + + + + + Ira Jorgenson + + + + + Tacquito + + + + + J.H. Ross Co. + + + + + INDIANA TRAILER MANUFACTURING + + + + + Eidal International Corp. + + + + + Al-Mac Products, Inc. + + + + + Open Road Campers, Inc. + + + + + Marliss Industries, Inc. + + + + + Kruz, Inc. + + + + + KESLER MANUFACTURING, INC; LOYAL, WISCONSIN;TRAILERS + + + + + Hardee Mfg. Co.Affiliated with Harsco Corp., PlantCity, Florida + + + + + Sunline Coach Co. + + + + + Ho-Bo Trailers + + + + + Materials Handling Div., Eaton Corp. + + + + + Realco Trailer + + + + + Swinger + + + + + Van Bibber Enterprises + + + + + Addison HomesDiv. of Penthouse Industries, Inc.Addison, Alabama + + + + + Garson Flatbed Trailer + + + + + Little Dude Trailer Co.Affiliated with Texas Dude, Inc.(Formerly Texas Royal Mfg. Co.)Fort Worth, Te + + + + + Hilbilt Mfg. Co.Benton, Arkansas + + + + + Torrot + + + + + Rexhall + + + + + AERO MANUFACTURING, INC.; SYRACUSE, INDIANA + + + + + Barth corp. + + + + + Roketa Powersports + + + + + Tucker + + + + + Cross Lander + + + + + Pak-Mor Mfg. Co. + + + + + Mobile Chapel Trailer + + + + + TITAN MOTORCYCLE + + + + + Custom King Horse Trailer + + + + + Jim & Dave's Trailer Mfg. + + + + + Knight Mfg. Corp. + + + + + Jensen + + + + + Elgin-Leach Corp. + + + + + ODell Mfg. Co. + + + + + Vanson Boat Trailer + + + + + Style-Craft Mobile HomesMfd. by Wickes Homes + + + + + Trinity Products + + + + + Lawn Chief + + + + + Surveyor Motor Home + + + + + Windsor Mobile Homes (old code WIND) + + + + + Premier + + + + + Specialized Vehicles Corp. + + + + + Topline Trailers ManufacturingFort Worth, TX + + + + + Corder Mfg. Co., Inc. + + + + + Katolight Corp. + + + + + Amen + + + + + Utility Trailer Mfg. Co.City of Industry, California + + + + + Masterbilt Trailers, Inc. + + + + + Wesco Truck & Trailer SalesWoodland, California + + + + + TRIPLE "J" CUSTOM TRAILERS, GANSEVOORT, NY + + + + + Cochran Western Corp.Subsidiary of Western Gear Corp. + + + + + Testi + + + + + Cross Truck Equipment Co., Inc.Canton, Ohio + + + + + Festival Homes of Ohio, Inc.Greenwich, Ohio + + + + + Sooner Mfg. + + + + + Starcraft Corporation + + + + + Broadlane Homes, Inc. of Indiana + + + + + NVT America (moped) + + + + + Smith-Roles Ltd. + + + + + Ponderosa Homes, Inc. + + + + + KBH CORPORATION; CLARKSDALE, MS + + + + + Nerco Trailer + + + + + Cuyler Corp. + + + + + Warszawa + + + + + PRESTON AMUSEMENTS, INC.; ALVARADO, TX + + + + + General Coach Works of CanadaDiv. of Divco-Wayne Industries + + + + + Green Boat Trailer + + + + + Loprofile Boat Trailer + + + + + A-T-O Construction Equipment Div.,A-T-O, Inc. + + + + + HAULRITE, INC.; MT. JULIET, TENNESSEE **(NOT HAULRITE OF MISSOURI VMA/BMMF)** + + + + + TROY-BILT FARM & GARDEN EQUIPMENT + + + + + Master Craft Industrial Equip. Corp. + + + + + Bankhead Enterprises, Inc.Atlanta, Georgia + + + + + Hi-Lo Travel Trailer + + + + + Puckett Brothers Mfd. Div. Co. Inc.Lithonia, Georgia + + + + + American Tractor Equipment Corp. + + + + + Lieber Industries, Inc. + + + + + Muller Machinery Co.Metuchen, New Jersey + + + + + Watson Industries + + + + + Union Machine & Tool Works + + + + + Troyler Corp. + + + + + Sun + + + + + Excel Motor Home Truck + + + + + Murray TrailersCaldwell, Idaho + + + + + Escort Trailer Corp.Seattle, Washington + + + + + Harrington Mfg. Co., Inc.Mfr. of Roanoke-Hustler, Lewiston, NorthCarolina + + + + + Scully Coach Co., Inc. + + + + + SPRINTER MOTORCYCLE + + + + + Dutton-Lainson Co., Mfg. Div.Mfrs. of boat trailers, + + + + + Construction Machinery Co. + + + + + ApacheMfd. by Lindig Mfg. Corp. + + + + + Manning, Richard + + + + + Hanson Machinery Co. + + + + + Bomford & Evershed, Ltd. (England) + + + + + Gran Spree Mini Camper + + + + + VANGUARD INDUSTRIES OF MICHIGAN, INC.; COLON, MI + + + + + Southern Energy Homes, Inc.Addison, Alabama + + + + + ScaniaOrange, Connecticut (Saab-Scania ofAmerica, Inc.) + + + + + Frisky + + + + + Blizzard Mfg., Inc. + + + + + Elkhart Mfg. Co. + + + + + Maxi Products Co., Inc. + + + + + Trombly Woodworking Co. + + + + + EE-ZY Trailer Co. + + + + + Fayette Trailer + + + + + A-OK Trailers + + + + + Country Squire Travel Trailer + + + + + Tee Nee Trailer Co.Youngstown, Ohio + + + + + Elk River Corp. + + + + + TWN + + + + + Haflinger + + + + + Axle & Equipment Sales Co.Naperville, Indiana + + + + + Travelo Homes Co.Div. Saginaw Products + + + + + Buhl Machine Works + + + + + Burro, Inc.Plymouth, Minnesota + + + + + Ridgecraft Corp.Breckenridge, Texas + + + + + Marshall + + + + + Road Rescue + + + + + Palliser (racing car) + + + + + Omega (Italian) + + + + + American Road Trailer Camper + + + + + Allied ProductsDiv. Lonergan Corporation + + + + + Allied Tank + + + + + MCCLOSKEY BROTHERS MANUFACTURING; CANADA LIT.ONTARIO + + + + + Boatel Ski + + + + + Special (Go-cart, Golf Cart, seeOperating Manual, Part 1,Section 2) + + + + + Santo + + + + + Rome Industries, Inc. + + + + + Hartman + + + + + Transcraft Corp.Anna, Illinois + + + + + Mobile Home Service + + + + + Top Campers + + + + + Ingerson Mfg. Co. + + + + + Kane TrailersGreeley, Colorado + + + + + Gorbett BrothersFort Worth, Texas + + + + + Spartan ProductsWest St. Paul, Minnesota + + + + + Wallstrom Boat Trailer + + + + + Rite-On TrailersDiv. of Windward Marketing + + + + + Tramco, Inc.Mfrs. liquid propane gas transport--Dallas, Texas + + + + + Duel + + + + + Cushman + + + + + Cruisemaster Motor HomeMfd. by Georgie Boy Mfg., Inc.Edwardsburg, Michigan + + + + + X-Tra Camper Co. + + + + + M-R-S Manufacturing Co. + + + + + Eaton Corp.Cleveland, Ohio + + + + + Orlando Boar Co. + + + + + Fireball Trailer Mfg. + + + + + Panda Motor Home + + + + + Kompak Camping Trailer + + + + + Sigame Corp.Gardena, California + + + + + Rear's Mfg. Co. + + + + + St. Clair Custom Built + + + + + Embassy Mobile HomesDiv. of Guerdon Industries + + + + + Dude Trailer + + + + + Edwins + + + + + Bobko, IncMichigan City, Indiana + + + + + DMI, Inc.Goodfield, Illinois + + + + + GIGI Industries, Inc.Motor homes + + + + + Delta Truck Trailer Co., Inc.Camden, Arkansas + + + + + Bear Cat Mfg., Inc.Wickenburg, Arizona + + + + + Tour-A-Lodge + + + + + PANDA MOTOR SPORTS NORTH AMERICA, INC. + + + + + Capitol + + + + + Landola Homes, Inc. + + + + + Consolidated Mobile Industries + + + + + I. K. A. + + + + + QUIK MANUFACTURING, CO; FOUNTAIN VALLEY, CA + + + + + The Tye Co., Inc. + + + + + Allisons Fiberglass mfg.,Inc. + + + + + Merritt Equipment Co.Portland, Oregon + + + + + Fotografix Boat Trailers + + + + + L. B. Smith, Inc.Manufacturer of Smithco. Trailers + + + + + Peace + + + + + Blair Horse Trailer + + + + + OMC JohnsonBoat trailers--Waukegan, Illinois + + + + + Husky Farm Equipment Ltd.Ontario, Canada + + + + + Dille & McGuire Mfg. Co.Richmond, Indiana + + + + + Freeway Travelers, Inc. + + + + + Locomobile + + + + + Wig-A-Wam, Inc. + + + + + Beardmore + + + + + Funtime Camper Trailer + + + + + Veglia + + + + + Clipper Mfg. Co. + + + + + Guest Industries, Inc. + + + + + Gelt Trailers + + + + + Crest Trailer + + + + + SOUTHWEST EXPRESSLINE, WHITE PIGEON,MICHIGAN + + + + + Porta-Built Industries + + + + + Indiana Phoenix + + + + + Loftness Mfg. Co. + + + + + Portable Structures + + + + + Outdoor Equipment + + + + + Servicycle + + + + + NU-CENTURY; MADERA, CA + + + + + Air BuoyBoat trailers--mfd. by Firestone Tire &bber Products + + + + + Planet Plows, Inc. + + + + + Casal + + + + + Forney Horse Trailer + + + + + Yadro TrailersMilwaukee, Wisconsin + + + + + Burkeen Equipment & Supply Co.Memphis, Tennessee + + + + + Americana Mobile Homes, Inc. + + + + + Alfa Romeo + + + + + Travel Cruiser + + + + + Koster Mfg., Inc. + + + + + Vivian Industrial PlasticsVivian, Louisiana + + + + + West Texas Dollies + + + + + United Rock Picker Co. + + + + + American Economobile Hilif + + + + + Franklin + + + + + Extend-Ell Industries + + + + + McCarthy Trailers + + + + + Vesely Co. + + + + + HODGES CUSTOM HAULERS; BENTON, KY + + + + + Guthrie Trailer Sales, Inc.Great Bend, Kansas + + + + + WHISPERING PINE CAMPER TRAILER + + + + + Massey + + + + + Revella Camping Trailer + + + + + Morris Brothers + + + + + Overland + + + + + Avant + + + + + Wilson + + + + + PiedmontDiv. of Concord Mobile Homes + + + + + Continental World MarineMexico; trailers + + + + + B M C + + + + + Armor Homes of Virginia + + + + + Silver Pigeon + + + + + Flying Dutchman + + + + + Jeep (for model years 1989 throughresent) + + + + + Leisure Vehicles, Inc.Troy, MI + + + + + Mowett Sales Co., Inc. + + + + + New CastleMfd. by Town & Country Mfg. Co. + + + + + Go-Tag-Along + + + + + Bay City Shovels, Inc. + + + + + Cubster + + + + + Pastime Mfg. Co. + + + + + Gilmore-Tatge Mfg. Co., Inc. + + + + + Better Built + + + + + DOLPHIN MOTORHOMES + + + + + Crosley + + + + + John R. Kovar Mfg. Co., Inc. + + + + + Interconsult Mfg. Co. + + + + + Whites/Keene Mfg. + + + + + Evens Trailer Mfg., Inc. + + + + + Go Kart + + + + + J.T. Ind., Ltd.Lenox, Iowa + + + + + Herbst Brothers + + + + + KARAVAN TRAILERS, INC. + + + + + Little Sport Enterprises + + + + + Garlock Equipment Co. + + + + + Country R. V. Mfg., Inc.Elkhart, Indiana + + + + + Solectria + + + + + Mays Industries, Inc.Boaz, Alabama + + + + + Tuff Cat Trailers, Inc.Tekonsha, Michigan + + + + + Mississippi Tank Co., Inc.Hattiesburg, Mississippi + + + + + Brall Motor Home + + + + + Long Mfg. N.C., Inc., Const. & Ind. Div.Tarboro, North Carolina + + + + + Tiara Industries + + + + + Central Trailer Corp. + + + + + Regent Homes Corp. + + + + + World Wide Industries + + + + + BirchwoodMfd. by Conchemco Homes Group + + + + + Lear Siegler, Inc., Hutchinson Div. + + + + + Western Products Div., DouglasDynamics, Inc. + + + + + Weirs Trailer Sales + + + + + Hinson Mfg. Co., Inc. + + + + + KometicSee Moto Kometik + + + + + Vanguard (Canada) + + + + + Dupage Coach Co. + + + + + EK-CHOR MOTORCYCLE COMPANY; SHANGHAI, CHINA + + + + + Hobart Brothers Co.Troy, Ohio + + + + + Smeal + + + + + Deere, JohnDeere & Co. + + + + + House of Harmony, Inc. + + + + + Melmar Motor Home + + + + + Eaglerock Trailers, Inc. + + + + + Free-Way II, (Mfd. by H-MVehicles, Inc.) + + + + + MAHINDRA; TOMBALL,TX;MAKER OF VARIOUS SIZES TRACTORS & OTHER FARM/GARDEN EQUIPMENT + + + + + Schien Body & Equipment Co.Carlinville, Illinois + + + + + Metal Craft ManufacturingGreenville, North Carolina + + + + + Util-I-VanMfd. by Utilimaster Div. HolidayRambler Corp. + + + + + Aly Travel TrailersDiv. Layton Homes Corp. + + + + + Simson + + + + + Bender-Florin + + + + + Vehiculos Automares Mexacano S. A.De C. V. (Mexican manufacturer) + + + + + Almac Industries, Ltd.Ville D'Anjou, Quebec + + + + + International Truck & Engine Corp. + + + + + Chickasha Mobile Homes + + + + + Tyson Skylark Trailer + + + + + Denzin & Rahn Mfg. Co., Inc. + + + + + SANDS WELDING INC; ALBANY,MN + + + + + M & W Mfg. Co. + + + + + Loudo Enterprises, LLC + + + + + Available + + + + + Geer Co. + + + + + Mitsubishi FUSO Truck of America, IncFor vehicles with gross vehicle weight(GVW) of over 7,000 pound + + + + + West Coaster Mailster3 wheels + + + + + Schenkel Brothers Mfg. Co. + + + + + SANTEE INDUSTRIES SYLMAR, CA + + + + + Countryside Industries, Inc. + + + + + Cabana Motor Home + + + + + Liftmaster, Inc. + + + + + New Yorker Homes Corp. + + + + + Peter Pirsch & Sons Co.Kenosha, Wisconsin + + + + + Dalewood Manufacturing Co., Inc.Lauderdale, Mississippi + + + + + H. D. Hudson Manufacturing Co. + + + + + Tankraft Trailer + + + + + Flexible + + + + + Tchaika + + + + + Electric Vehicles of Texas + + + + + Optima Ind., LLC + + + + + BrutanzaSee Brutanza Engineering, Inc. + + + + + Esco Corp. + + + + + Fulton Boat Trailer + + + + + Master Div., Koehring Co. + + + + + Mod Cycles Corp. + + + + + FIRST LINE REFINISHING; CORINTH, NY + + + + + KIA Motors Corporation + + + + + Five-Star ST, LTD Edition. or C2(mfd. by Juili Entp. Co., Ltd.,imported by General Moped Co. Inc) + + + + + Art Roll Mfg. Co., Inc.New name is Trail-R-Craft, Inc. + + + + + Mai Mfg. Co. + + + + + Evergreen Log Trailer + + + + + Mobile Traveler + + + + + Braun Ind., Inc. + + + + + Pfaudler Co. + + + + + Continental Wheel & Trailer + + + + + Hawkeye Camping Trailer + + + + + Glendale Mobile Homes + + + + + Rockport Trailer Mfg. Corp. + + + + + Southeast Mfg. Co., Inc. + + + + + Cable Crane and Excavator Div.FMC Corp. + + + + + Vacationeer Trail trailer + + + + + Glen & Cecil Mobile Home Manufacturing& Sales + + + + + Trail Star Tent Trailer + + + + + Calumet Co., Inc. + + + + + TrailevatorDiv. Magline, Inc. + + + + + Oshkosh Trailer DivisionBradenton, FL; manufactures trailers + + + + + KUTZ FARM EQUIPMENT; PINE GROVE, PA + + + + + LaSalle + + + + + Carma Mfg. Co. + + + + + Wilderness Travel Trailer + + + + + JINDO CORPORATION; SEOUL,SOUTH KOREA + + + + + Lada (imported from USSR) + + + + + Balko, Inc. + + + + + Humbee Surrey + + + + + Le Roi Div.Dresser Ind., Inc., Sidney, Ohio + + + + + Matchless + + + + + Padgett, Inc. + + + + + KRISTI TRAILER INDUSTRIES, INC; CANASTOTA, NY + + + + + Nimrod Tent Trailer + + + + + Continental Mfg. Co., Inc. + + + + + Skyhomes, Inc.Div. Skyline Homes + + + + + McCord Manufacturing Co. + + + + + Deep South Sales Co.Valdosta, Georgia + + + + + Dauphin + + + + + AhoyMfd. by Anchor Homes, Inc. + + + + + Whiteman Mfg. Co. + + + + + Road Motor Home + + + + + Pitman Div., A. B. Chance Co. + + + + + Kaydel, Inc. + + + + + Gilmore Trailer, Inc.Seneca, Pennsylvania + + + + + Divco + + + + + Anderson Mobile Homes Mfg. Co. + + + + + Versatile Power Corp.Grantsburg, Wisconsin + + + + + The Thackery Co., Inc. + + + + + Terra Cruiser Div.Div, of Divco-Wayne Industries + + + + + Easyown Mfg. Co. + + + + + TRAILTECH; GRAVELBOURG,SASKATCHEWAN CANADA + + + + + Continental Cargo + + + + + Hillcrest Homes, Inc.Div. Skyline Homes + + + + + Fleetwing Mobile Homes + + + + + Rolling Thunder + + + + + Totem Total Trailer + + + + + Star TrailMfd. by Stark Bros. Motor Sales + + + + + Trail Hawk + + + + + Road Ranger Camper Trailer + + + + + E. L. Caldwell & Sons, Inc. + + + + + Paccar IncorporatedBellvue, WA + + + + + Bel-Aire Mobile Homes + + + + + Wisconsin Trailer Co., Inc.Richfield, Wisconsin + + + + + Great Divide Coach Mfg. + + + + + Nasan Trailer + + + + + Circle D Trailer + + + + + Prestige Custom TrailersChristopher,I1 + + + + + Olgen Mfg. Co. + + + + + Black Built + + + + + Michalke Mfg. Corp. + + + + + Proper Chopper Motorcycles + + + + + Howse Implement Co., Inc. + + + + + Charlevoix Mobile HomesMfd. by Dickinson Homes, Inc. + + + + + Cycle Kamp, Inc.Anaheim, California + + + + + Ingram Manufacturing Co. + + + + + Aloutte + + + + + Blaw-Knox Construction Equipment Co.Div. of White Consolidated Industries,Inc. Matoon, Illinois + + + + + Brasinca + + + + + Crane & Hoist OperationsSubsidiary of Dresser Industries, Inc. + + + + + EZZ PullMfd. by Glass-Wood Products, Inc. + + + + + C. S. Johnson Co. + + + + + Krause Plow Corp., Inc. + + + + + Dodd Mfg. Co., Inc. + + + + + Baldwin Enterprises + + + + + Gray-Velle Mobile HomesDiv. of Stahan Manufacturing Co. + + + + + United States Mobile Homes + + + + + Mobile Tops, Inc. + + + + + Sullair Corp.Michigan City, Indiana + + + + + Jarco, Inc.Newport Beach, California + + + + + CONSTRUCTION TRAILER SPECIALISTS, INC.; SIKESTON, MO + + + + + All-State Trailer Co. + + + + + Anthony Co. + + + + + Motoc Semi Flatbed Trailer + + + + + MANAC, Inc. + + + + + Buddy Mobile Homes, Inc.Div. Skyline Homes + + + + + Montone Mfg. Co.Hazelton, Pennsylvania + + + + + Campsite Mfg. Co.Seminole, Texas + + + + + Hart Mobile Homes Corp. + + + + + Transvair + + + + + Rucker Performance Motorcycle Co. + + + + + I.B. Perch Co. + + + + + LONGHORN TANK & TRAILER, INC; GRAVETTE, ARKANSAS + + + + + DANZER INDUSTRIES & DANZER/MORRISON; HAGERSTOWN, MD + + + + + DAF + + + + + Gilera + + + + + Artex Fabricators, Ltd. + + + + + Armor Mobile Systems, Inc. + + + + + IRON HORSE TRAILER MANUFACTURING; TEXAS + + + + + Armet Armored Vehicles + + + + + Four Winns + + + + + Watford + + + + + Phill Trailer + + + + + Magnum ManufacturingHarrisburg, OR; recreational vehicles + + + + + Chesapeake Mobile Homes + + + + + Thru-Air Trailers, LLC + + + + + Hill Mfg. Co. + + + + + Westcraft Mobile Homes + + + + + Electric Cycle + + + + + THE ALUMINUM TRAILER COMPANY; NAPPANEE, INDIANA + + + + + Avion Coach Corp. + + + + + Heritage Mobile Homes + + + + + Zwickau + + + + + TUFF/LUGG MANUFACTURING + + + + + Sleep Easy Trailer + + + + + Selburn Flatbed Trailer + + + + + Tyran + + + + + Vaquero Trailer + + + + + Northwest Engineering Co. + + + + + Fiat + + + + + Playboy + + + + + Schwartz Mfg. Co. + + + + + Skoda + + + + + Apacheon Coach Co. + + + + + Cane River Trailer Co., Inc.Natchitoches, Louisiana + + + + + Greencastle Coach Co. + + + + + Matra + + + + + COMPTANK, CORP.; BOTHWELL, ONTARIO, CANADA + + + + + Rochdale + + + + + Franklin Homes, Inc.Russellville, Alabama + + + + + Deutz Tractor + + + + + Garwood + + + + + Shaver Mfg. Co. + + + + + Niagara Trailer Co. + + + + + Coos-Bilt Trailers + + + + + Aspen Camper, Inc. + + + + + Lektracycle + + + + + CARTER BROTHERS + + + + + Arrow + + + + + Glenbrook Homes Of Tennesee + + + + + Massey-Ferguson, Inc. + + + + + Hamlite + + + + + Leisuretime Motor Home + + + + + Van Car Corp. + + + + + BRI-MAR MANUFACTURING; CHAMBERSBURG, PA + + + + + Transfer + + + + + Western Star + + + + + Relco Corp.Mfd. in North Billerica, Massachusetts + + + + + Hole Pumps + + + + + Pullers Pride, Inc., or Murphy's Welding + + + + + Vacation Wagon, Inc. + + + + + TRIPLR R TRAILERS INC. BOONEVILLE,MISSISSIPPI + + + + + Claster Trailer + + + + + Myco Industries + + + + + Capri (imported by Mercury priorto 1979) + + + + + Johnson Mfg. Co., Inc. + + + + + Mays Enterprises, Inc.Albertville, Alabama + + + + + Artie + + + + + Electric Wheel Co. + + + + + Peco, Inc. + + + + + General Amer Aero Coach + + + + + Itom + + + + + Tex Mex Trailers + + + + + Barrett Trailers, Inc.Oklahoma City, Oklahoma--(See Circle BLivestock Trailer) + + + + + Colonnade Mobile HomesMfd. by Fairmont Homes, Inc. + + + + + NORTHERN BAY CO. INC. ; PENOBSCOT, ME + + + + + Maxey Mfg., Inc. + + + + + Gypsy Campers, Inc. + + + + + Eagle (also see make American Eagle) + + + + + Delphi Body Works, Inc. + + + + + Nevadan Mfg. Co. + + + + + Tri-Sport/Steen (formerly Alsport/Steen) + + + + + Veenema & Wiegers, Inc.Mfrs. "V & W" trailers--No. Haledon,New Jersey + + + + + Poirier + + + + + Farenwald Boat Trailer + + + + + Soderstrom Machine ShopCanton, South Dakota + + + + + Facel-Vega + + + + + BOSS HOSS CYCLE, INC. ; DYERSBURG, TN + + + + + Kinetic + + + + + DUTCH PARK HOMES, INC.; GOSHEN, IN + + + + + Laverda + + + + + ABF, INDUSTRIES; NEBRASKA + + + + + Concrete Surfacing Machinery Div.,Stewart Industries, Inc. + + + + + Hed-Way, Inc. + + + + + SFM + + + + + Durant + + + + + Atlas Copco, Inc.Wayne, New Jersey + + + + + Futurama + + + + + Grove + + + + + Manitowc Engineering Co., Inc. + + + + + Riley + + + + + Empire Generator Corp. + + + + + Tahoe Motor Home + + + + + Metoo Travel Trailer + + + + + KIBBI, INC.; ELKHART, INDIANA + + + + + Cycle-SleeperMfd. by Howard Mfg. Co. + + + + + Triumph + + + + + reconstructed trailers + + + + + Walker Mobile Homes + + + + + Lloyd's Trailer Finishing + + + + + Sweetheart Motor Home + + + + + Adspa Mobile HomeMfd. by Ad Space, Inc., Pomona, CA + + + + + Tecnoma, Ltd., (Canada) + + + + + HRI (Heartland Rig) + + + + + Champ Horse Trailer + + + + + Norwin Trailer + + + + + TOP-3 TRAILERS; TEXAS + + + + + Dixie Craft Trailers, Inc.Eupora, Mississippi + + + + + TRAILERS DE MONTERREY, S.A. NUEVO LEON, MEXICO + + + + + PRO LITE TRAILERS; PECULIAR, MISSOURI + + + + + ABI Leisure Inc.Ontario, Canada + + + + + MantaSee Three R Industries, Inc. + + + + + Woodland Park, Inc.Middleberry, Iowa + + + + + Arcos Boat Trailer + + + + + Baja Custom Trailers + + + + + Kools Brothers, Inc. + + + + + Timpte, Inc.Denver, Colorado + + + + + Oshkosh Motor Truck Co. + + + + + Gramm + + + + + Lincraft Industries + + + + + Allied + + + + + Searover TC Camper + + + + + PEAK MANUFACTURING, INC. NORTH BATLEFORD, SK CANADA + + + + + Ozark Trailer & Mobile Homes + + + + + Mountaineer Mfg. Co. + + + + + Chief Ocala Trailer Mfg. + + + + + Trader Horn Trailer Supply + + + + + Western Trailer Coach + + + + + Toyopet + + + + + BLOOMERTRAILER MANUFACTURING, INC.; LAMARQUE, TX + + + + + A.A.B. Co., Inc. + + + + + Swiss Colony Travelers, Inc.Div. Herrli Industries + + + + + SETRA OF NORTH AMERICA + + + + + Kingham + + + + + Steco Trailer Co. + + + + + Tandom Boat Trailer + + + + + Monarc + + + + + Borg Co. + + + + + Kreidler + + + + + COASTAL METAL FAB, INC.; TOPSHAM, ME + + + + + Aladdin Trailer Co. + + + + + General Coach of FloridaDiv. of Divco-Wayne Industries + + + + + Humber + + + + + All Terrain Vehicle (for furtherexplanation--see OperatingManual, Part 1, Section 2.) + + + + + Lacey, W.E. & Sons + + + + + Winger Mfg. Co. + + + + + DMB Trailers + + + + + Ambassador + + + + + Vista Custom TrailerJane, Missouri + + + + + Datsun + + + + + North American Bus Ind. + + + + + Cushman + + + + + Certified Boat Trailer + + + + + Spokane Travel Homes + + + + + Miniscooter + + + + + Go-Lite, Inc. + + + + + S & H Trailer Mfg. Co., Inc.Madill, Oklahoma + + + + + Eagle Custom Coach Mfg. Co. + + + + + Friess Trailer + + + + + Auburn Homes + + + + + Infiniti + + + + + U.S. ARMY VEHICLE; MAKE IS UNKNOWN + + + + + DELKRON TRANSMISSION + + + + + Whippet + + + + + A-1 Trailer + + + + + Mr. Ed. Boat Trailer + + + + + Econo Flo Bulk Service + + + + + Timberline Mfg. Co. + + + + + Nolena Foster Trailer + + + + + Hunt's Trailer Mfg. + + + + + Norton (England) + + + + + BEACON METAL WORKS + + + + + Hughes + + + + + DNEPR/Kiev Motorzykly Zavod + + + + + Noble Cultivators Ltd. + + + + + L-Cart, Inc. + + + + + Trailmobile + + + + + Day's DrydockNorth Webster, IN; trailers. + + + + + EML + + + + + Guerdon Industries + + + + + KISSEL MOTOR CAR COMPANY OR KISSEL INDUSTRIES + + + + + Campbell Coach Co., Inc.Mfrs. horse trailes--Cheney, Kansas + + + + + KASEA MOTORCYCLES + + + + + McKay Mfg. Co., Inc. + + + + + Dodge Woodcraft + + + + + Trail Flight + + + + + Simon Utility Trailer + + + + + Dynastar/Dynastar Motorsports, Inc. + + + + + Consulier + + + + + SPORT HAULER BY SPORT CHASSIS AT FREIGHTRLINER IN TULSA, OK___MAKER OF SPORT HAULER TRUCK & TRAILER + + + + + De Muth Steel Products Co. + + + + + EVERLITE, INC.; LONGVIEW, TX - FLEETRITE & OTHER MODEL OR SERIES + + + + + Miller Electric Mfg. Co.Manufactures arc welders + + + + + Kawasaki (Japan) + + + + + Terra-Marina Mfg. Co. + + + + + Odom Boyd Trailer Mfg. Co.Conroe, Texas + + + + + H & H TRAILER CO. + + + + + Kasey + + + + + Fahrzeugwerke GMBHKarls Kaessbohrer, Germany + + + + + Fields Mfg. Co. + + + + + Little Giant Products, Inc.Peoria, Illinois + + + + + Kustom Kraft + + + + + J.J.J., Inc. + + + + + Landcraft Corp. + + + + + Ranger Trail TrailersMfd. by Wood Mfg. Co., Inc. + + + + + Sylvan Double Snowmobile Trailer + + + + + Sun Valley + + + + + Alvis + + + + + Mud Cat Div., National Car RentalSystem, Inc. + + + + + CURRAHEE TRAILERS + + + + + WAYNE METAL PRODUCTS;MARKLE,INDIANA + + + + + Fuqua Homes, Inc.Div. Fuqua Industries--Arlington, Texas + + + + + Rupp + + + + + LEINARD ALUMINUM BUILDINGS, UTILITY TRAILERS; MT. AIRY, NC + + + + + Easy Trail, IncBoat Trailers - Madison, Alabama + + + + + Walsh Body & Trailer + + + + + Jewel Trailer, Inc. + + + + + KYMCO SCOOTERS & MOTORCYCLES + + + + + Virginia Mobile Homes Industries + + + + + PINE-HILL MANUFACTURING, CO.; GAP, PENNSYLVANIA + + + + + Holt Trailer + + + + + CWC Feather-Lite Mfg. Co.El Reno, Oklahoma + + + + + F. A. Long + + + + + East Dump Trailer + + + + + Dethmers Manufacturing CompanyBoyden, IA + + + + + Divco-Wayne Industries + + + + + Sno-CatMfd. by Tucker-Sno-Cat Corp. + + + + + Unpublished construction equipment mfr.(See Operating Manual, Part 1,Section 2) + + + + + McCook Mfg. Co. + + + + + Gabbianno + + + + + Dargo Mfg. + + + + + FLOE INTERNATIONAL + + + + + CIMC HEAVY INDUSTRIES, LTD.; SHENZHEN, CHINA + + + + + Heckendorn Mfg. Co.Cedar Point, Kansas + + + + + E.Z.A. Mfg. Co. + + + + + Doo Snowmobile Trailer + + + + + Auto-Mate + + + + + Palmer Machine Works, Inc.Armory, Mississippi + + + + + Superior Motor Home + + + + + Standard Steel + + + + + Alexandria Mobile HomeMfd. by Marietta Homes + + + + + Towmotor Corp.Subsidiary Caterpillar Tractor Co. + + + + + Agri-Supply Co. + + + + + London Motors + + + + + Neval Motorcycles Ltd. + + + + + Broward Trailer + + + + + Guazzoni + + + + + Ventoura Corp. + + + + + EZ Dumper + + + + + Hilton Mobile Homes, Inc. + + + + + Lowe IndustriesLebanon, Missouri + + + + + Blaze Industries + + + + + Willmar ManufacturingWillmar, Minnesota + + + + + McCoy Miller + + + + + Classic (model of Motron) + + + + + Mobile Garage Mfg. Co. + + + + + Three-Way Campers Mfg. + + + + + N & Ha Mfg. Co. + + + + + Bear Industrial Trailers + + + + + Beeat Truck Mount Camper + + + + + Pagsta + + + + + Gilson Brothers Company + + + + + Baltz Industries, Inc.Pocahontas, Arizona + + + + + Star Electric Cars + + + + + Amphicat + + + + + Cleveland T-Trike Mfg., Inc. + + + + + Dunham Mfg. Co., Inc.Minden, Louisiana + + + + + Palamino Camping Trailer + + + + + Universal Trailers, Inc. + + + + + Homemade Trailer code (See OperatingManual, Part 1, Section 2.)page 1-33) + + + + + Mayfair Mobile HomeDiv. of DeRose Ind., Inc.,Indianapolis, Indiana + + + + + Sperry New HollandDiv. Sperry Corp., New Holland,Pennsylvania + + + + + GENERAL SHELTERS; CENTER, TX CARGO TRAILERS ETC. + + + + + Kitty Cat (Kit Kat) + + + + + Flying L Trailer, Inc.Falls City, Nebraska + + + + + + + + + + + + + + + + (DKW) F102, DKW + + + + + (ALFA) Milano, Alfa Romeo; (MAZD) Millenia, Mazda + + + + + (DETO) Pantera, DeTomaso + + + + + (FORD) Granada, Ford (see English, French, German, and Italian Ford); (PONT) Grand Prix, Pontiac; (STU) Grand Turismo, Studebaker + + + + + L200 + + + + + (BMW) 545i, BMW + + + + + (INFI) I30, Infiniti + + + + + (VOLV) 765 Series, Volvo + + + + + (OLDS) Delmont 88, Oldsmobile + + + + + (OPEL) Kapitan, Opel (imported by Buick) + + + + + (BMW) X3, BMW + + + + + (CHEV) C10, Chevrolet + + + + + (FORD) Ranch Wagon, Ford (see English, French, German, and Italian Ford); (METE) Ranch Wagon, Meteor (Canadian Mercury) + + + + + (AERO) Hot Air Balloon + + + + + (ACUR) SLX (sport utility), Acura + + + + + (RENA) Gordini, Renault + + + + + (PACK) Request, Packard + + + + + (VAUX) Viva, Vauxhall + + + + + (SAA) 95, Saab + + + + + (MERK) XR4Ti, Merkur + + + + + (MAZD) Cosmo, Mazda + + + + + (HYUN) Elantra, Hyundai + + + + + (AMER) Eagle, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (ROV) Land Rover, Rover + + + + + (ASTO) DB7 (Coupe), Volante (DB7), Aston Martin + + + + + (SIM) GLS, Simca + + + + + (HYUN) Excel, Hyundai; (FORD) Excursion, Ford (see English, French, German, and Italian Ford) + + + + + Construction Equipment + + + + + (FORD) Customline, Ford (see English, French, German, and Italian Ford); (TOYT) Celica, Toyota + + + + + (SUZI) X-90 (sport utility), Suzuki + + + + + (AUHE) Saxon, Austin-Healy + + + + + (VOLK) 411/412, Volkswagen + + + + + (GMC) Sierra, General Motors Corp. + + + + + (BMW) Bavaria, BMW + + + + + (HOND) Prelude, Honda; (EGIL) Premier, Eagle; (LINC) Premiere, Lincoln-Continental; (MITS) Precis, Mitsubishi; (STU) President, Studebaker; (TOYT) Pre Runner, Toyota + + + + + (BUIC) Reatta, Buick + + + + + (OPEL) Rallye, Opel (imported by Buick) + + + + + (FIAT) Rimto, Fiat + + + + + RDX + + + + + (VOLK) Variant, Volkswagen + + + + + (BUIC) Apollo, Buick + + + + + (FORD) Fairlane, Ford (see English, French, German, and Italian Ford) + + + + + (MERC) LN7, Mercury + + + + + (FORD) Club Wagon E350, Ford (see English, French, German, and Italian Ford) + + + + + (MAZD) B2600, Mazda + + + + + (AUDI) Quattro, Audi + + + + + (AMER) Gremlin, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (STRN) Ion, Saturn + + + + + (CHEV) Monte Carlo, Chevrolet + + + + + (VOLV) S80, Volvo + + + + + (GMC) Jimmy, General Motors Corp. + + + + + (HYUN) Atos, Hyundai + + + + + (DATS) 710, Datsun + + + + + (AMER) Encore, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (BUIC) Enclave, Buick + + + + + (DATS) 510, Datsun + + + + + (BMW) 328i, BMW + + + + + (PASS) Optima, Passport; (KIA) Optima, Kia; (CHEV) Optra, Chevrolet + + + + + (BMW) Z8, BMW + + + + + (CHEV) Blazer, Chevrolet + + + + + (TOYT) SR5, Toyota + + + + + (SAA) 900, Saab + + + + + (ISU) Trooper, Isuzu + + + + + (ROL) Phantom, Rolls-Royce + + + + + (VOLK) R32, Volkswagen + + + + + (RENA) 18i, Renault + + + + + (ISU) Impulse, Isuzu; (CHEV) Impala, Chevrolet; (HILL) IMP, Hillman; (ROOT) Imp, Rootes; (SUBA) Impreza, Outback Impreza, Subaru; (SUNB) IMP, Sunbeam + + + + + (SAA) 9000, Saab + + + + + (SUBA) Baja, Subaru + + + + + (MAZD) Mazda 3, Mazda + + + + + (AUDI) S8, Audi + + + + + (ROL) Flying Spur, Rolls-Royce + + + + + (STRN) SC, Saturn + + + + + (ASUN) Sunfire, Asuna + + + + + (VOLK) Fastback, Volkswagen + + + + + (FORD) Econoline E-450, Ford + + + + + (MNNI) Cooper/Cooper-S (rights bought by BMW), Mini + + + + + (AMER) Javelin, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (AUST) 1100, Austin; (DATS) 110, Datsun; (FIAT) 1100 - D or R, Fiat; (MORR) 1100, Morris; (NSU) 110 Type, Nsu Prinz; (SUBA) 1100 Series, Subaru + + + + + Fusion + + + + + (MITS) Sigma, Mitsubishi; (PLYM) Signet (Valiant), Plymouth + + + + + (MERZ) 190 Series, Mercedes-Benz; (OPEL) 1900, Opel (imported by Buick); (VOLV) P1900, Volvo + + + + + (CITR) ID-19, Citroen + + + + + (FERR) 348, Ferrari + + + + + (CHEV) Express (full-size van), Chevrolet; (FORD) EXP, Ford (see English, French, German, and Italian Ford); (MITS) Expo, Mitsubishi; (RENA) Export, Renault + + + + + (DATS) 280ZX, Datsun + + + + + (KIA) Clarus, Kia Motors Corp. + + + + + (MERC) S-33, Mercury; (METE) S-33, Meteor (Canadian Mercury) + + + + + (EDSE) Ranger, Edsel; (FORD) Ranchero, Ford (see English, French, German, and Italian Ford) + + + + + (PEUG) 505 Series, Peugeot + + + + + (AUDI) RS6, Audi + + + + + (AUDI) S4, Audi + + + + + (PONT) G4, Pontiac + + + + + (AUHE) Sprite, Austin-Healy; (CHEV) Sprint, Chevrolet; (MG) Sprite, MG; (ROL) Silver Spur, Rolls-Royce; (MERZ) Sprinter, Mercedes-Benz ; (DODG) Sprinter, Dodge + + + + + (LOTU) Plus Two, Lotus + + + + + (HOND) FCX (Fuel Cell Vehicle), Honda + + + + + (ALFA) Giulia Sprint, Alfa Romeo + + + + + (ASUN) GT, Asuna; (ENGF) GT, English Ford (British); (OPEL) GT, Opel (imported by Buick); (TRIU) GT Series, Triumph; (FORD) GT, Ford + + + + + (DODG) 440 Series, Dodge + + + + + (MAZD) 616, Mazda + + + + + (DODG) Ram 1500 (pickup), Dodge; (RENA) R-15, Renault + + + + + (CHRY) E Class, Chrysler; (LOTU) Eclat, Lotus; (MITS) Eclipse, Eclipse Spyder GS-T, Mitsubishi + + + + + (LEXS) GS430, Lexus + + + + + (IMPE) Crown, Imperial (for vehicle years 1955-1983, use VMA/IMPE; for vehicle years prior to 1955 and vehicle years 1990-1993, see make Chrysler); (TOYT) Crown, Toyota + + + + + (JEEP) CJ-7, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) CJ-7, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) CJ-7, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (BMW) 325, BMW; (BMW) 325Xi, BMW + + + + + (DODG) 330 Series, Dodge; (BMW) 330I, BMW; (LEXS) ES330, Lexus; (BMW) 330Xi, BMW + + + + + (ACUR) Legend, Acura; (DAEW) Leganza, Daewoo; (SUBA) Legacy, Outback Legacy, Subaru + + + + + (HUMB) Hawk, Humber; (STU) Hawk Series, Studebaker + + + + + (HUDS) Italia, Hudson + + + + + A3 (Sportback) + + + + + (DODG) Swinger (Dart), Dodge + + + + + Replica + + + + + (BUIC) Skylark, Buick; (PONT) Sky Chief, Pontiac; (STRN) Sky, Saturn + + + + + (DODG) Power Ram, Dodge + + + + + (METE) Niagara, Meteor (Canadian Mercury) + + + + + (AUST) A99 & 110, Austin + + + + + (JAGU) Sovereign, Jaguar + + + + + (LNDR) Range Rover, Land Rover + + + + + (MERZ) SL600, Mercedes-Benz + + + + + (RENA) R-12, Renault + + + + + (AUDI) 4000, Audi; (DODG) 400 Series, Dodge; (LEXS) LS400, Lexus; (MASE) 4000 (series), Maserati; (MERZ) 400 Series, Mercedes-Benz + + + + + (BMW) L7, BMW + + + + + (ROL) Phantom, Rolls-Royce; (VOLK) Phaeton, Volkswagen + + + + + (GMC) Yukon, General Motors Corp. + + + + + (OLDS) Alero, Oldsmobile + + + + + (CADI) DeVille, Cadillac; (PANE) DeVille, Panther Westwinds, Ltd. + + + + + (ROOT) Alpine, Rootes; (SUNB) Alpine, Sunbeam + + + + + (MERZ) CLK55, Mercedes-Benz + + + + + (LAMO) Murcielago, Lamborghini ; (NISS) Murano, Nissan + + + + + (MERZ) SL500, Mercedes-Benz + + + + + (ENGF) Thames, English Ford (British) + + + + + (GEO) Storm, GEO + + + + + (CHRY) New Yorker, Chrysler + + + + + SLS (Badged Separately Beginning 7/2003) + + + + + (BMW) 524 Series, BMW + + + + + (ACUR) EL, Acura (Import from Canada) + + + + + (GLAS) Goggomobile, Glas + + + + + (CHEV) Style Master, Chevrolet + + + + + (HUMB) Snipe, Humber; (HILL) Snipe, Hillman + + + + + (ROL) Silver Wraith, Rolls-Royce + + + + + (MERC) Country Cruiser, Mercury; (OLDS) Custom Cruiser, Oldsmobile + + + + + (ISU) Oasis (minivan), Isuzu + + + + + (MERZ) 380 Series, Mercedes-Benz + + + + + (BMW) M5, BMW + + + + + (VOLK) Dasher, Volkswagen + + + + + (HOND) CRV, Honda; (OLDS) Caravan, Oldsmobile; (RENA) Caravelle, Renault + + + + + (ACUR) RSX, Acura + + + + + (FERR) Quattrovalvolve, Ferrari; (MASE) Quattroporte, Maserati + + + + + (DODG) Challenger, Dodge + + + + + (SOLE) Force, Solectria; (SUBA) Forrester, Subaru; (SUZI) Forsa, Suzuki + + + + + (CHRY) Newport, Chrysler + + + + + (FERR) 575 MM, Ferrari + + + + + 9-2X + + + + + EL, Acura (Import from Canada) + + + + + (TRIU) TR6, Triumph + + + + + (AUST) Mini, Austin; (BREM) Mini-Mark, Bremen Sport Equipment, Inc. (Bremen, IN); (HILL) Minx, Hillman; (MITS) Minica, Mitsubishi; (MORR) Minor, Morris; (SUNB) Minx, Sunbeam + + + + + (VACR) Vector, Vector Aeromotive Corp. + + + + + (LEXS) SC430, Lexus; (MERZ) S430V, Mercedes-Benz + + + + + (CREL) Merlin, Corbin Motors (electric vehicles) + + + + + (MICC) MC1, Micro Concept Cars + + + + + (CHRY) Saratoga, Chrysler + + + + + (SHEB) Cobra GT500, Shelby American; (MERZ) G500, Mercedes-Benz + + + + + (BUIC) Skyhawk, Buick + + + + + (DODG) Avenger, Dodge + + + + + (FORD) Elite, Ford (see English, French, German, and Italian Ford); (LOTU) Elite, Lotus + + + + + (DESO) Firesweep, DeSoto + + + + + (CHRY) Pacifica (Sport Wagon), Chrysler + + + + + (HUDS) Wasp, Hudson + + + + + (ACUR) CL (sport coupe), Acura + + + + + LR3 + + + + + (TOYT) Land Cruiser, Toyota; (BUIC) Lacrosse, Buick + + + + + (HUMM) Hummer 2, HUMMER + + + + + (GM) EV1, General Motors + + + + + (OLDS) 88, Oldsmobile + + + + + (AUST) Cambridge, Austin + + + + + (VOLK) Vanagon, Volkswagen + + + + + (OLDS) Jetfire, Oldsmobile + + + + + (HYUN) Marcia, Hyundai; (JAGU) Mark V Series, Jaguar; (AMER) Marlin, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (AUST) Marina, Austin; (FERR) F-550 Maranello, Ferrari; (MERC) Marquis, Mercury; (MG) Marina, MG + + + + + (LEXS) RX300, Lexus; (MAZD) RX3 (rotary engine), Mazda + + + + + (PORS) 930, Porsche + + + + + (BMW) 530i, BMW + + + + + (AUDI) 100GL, Audi + + + + + (LNCI) Dedra, Lancia + + + + + (MASE) 228, Maserati + + + + + (SCIO) XA, Scion + + + + + (BREM) Sebring, Bremen Sport Equipment, Inc. (Bremen, IN); (CHRY) Sebring, Chrysler; (MASE) Sebring, Maserati + + + + + (DATS) 310, Datsun + + + + + (MERC) Sable, Mercury + + + + + (BUIC) Grand Sports (G.S.), Buick + + + + + (ROOT) Arrow, Rootes; (SUNB) Arrow, Sunbeam + + + + + (MERC) Montego, Mercury; (METE) Montego, Meteor (Canadian Mercury) + + + + + (BUIC) Estate Wagon, Buick; (CHEV) Estate Wagon, Chevrolet; (RENA) Estafette, Renault; (SUZI) Esteem, Suzuki + + + + + (JAGU) XJ6, Jaguar + + + + + (GMC) Canyon, General Motors Corp. ; (PORS) Cayenne, Porsche + + + + + Raider + + + + + HHR + + + + + (ENGF) 105 E Series, English Ford (British) + + + + + (AUDI) 100LS, Audi + + + + + (MERZ) 230 Series, Mercedes-Benz + + + + + (DAYO) Migi, Daytona + + + + + (MERC) Mountaineer (sport utility), Mercury + + + + + (SUBA) 1400 Series, Subaru; (VOLV) 140 Series, Volvo + + + + + (LAMO) Diablo, Lamborghini; (MITS) Diamante, Mitsubishi + + + + + (DODG) Fleet Special, Dodge; (SOLE) Flash, Solectria + + + + + (TOYT) Highlander (beginning vehicle year 2001), Toyota + + + + + (HYUN) Accent, Hyundai; (HOND) Accord, Honda; (PLYM) Acclaim, Plymouth + + + + + (OLDS) Bravada, Oldsmobile + + + + + (PORS) 911, Porsche + + + + + (SUZI) Swift, Suzuki + + + + + (DATS) 610, Datsun + + + + + (HUDS) Jet, Hudson; (AERO) Jet Propelled; (MUNT) Jet, Muntz; (VOLK) Jetta, Volkswagen + + + + + (VOLV) 960, Volvo + + + + + (JAGU) XJR, Jaguar + + + + + (VOLK) Pointer, Volkswagon + + + + + (NISS) Terrano, Nissan; (OLDS) Trofeo, Oldsmobile + + + + + (RENA) R-8, Renault + + + + + (PLYM) Duster, Plymouth + + + + + (MASE) Shamal, Maserati + + + + + (KIA) Sedona, Kia + + + + + (CHEV) Brookwood, Chevrolet + + + + + (CADI) 62 Series, Cadillac + + + + + (CADI) Allante, Cadillac; (AUDI) Allroad, Audi + + + + + (ACUR) MDX, Acura + + + + + (HOND) Insight, Honda + + + + + (VOLV) V40, Volvo + + + + + 9-7X + + + + + Commander + + + + + (DODG) Viper, Dodge; (PLYM) Vip, Plymouth + + + + + (MASE) Ghibli, Maserati + + + + + (PONT) GT0, Pontiac + + + + + (ACUR) TSX, Acura + + + + + (MERK) Scorpio, Merkur; (STU) Scotsman, Studebaker + + + + + (BMW) 2500 Series, BMW; (LEXS) ES250, Lexus; (MDNA) GT250, Modena; (MERZ) 250 Series, Mercedes-Benz; (TRIU) 250, Triumph; (LEXS) IS250, Lexus + + + + + RS4 + + + + + (BENT) Corniche, Bentley; (CHRY) Cordoba, Chrysler; (DODG) Coronet, Dodge; (EDSE) Corsair, Edsel; (ENGF) Corsair, English Ford (British); (MITS) Cordia, Mitsubishi; (ROL) Corniche, Rolls-Royce; (TOYT) Corona, Toyota; (VOLK) Corrado, Volkswagen + + + + + (RENA) R-4, Renault + + + + + (SUZI) Grand Vitara, Suzuki + + + + + (MAZD) Tribute, Mazda; (SUBA) B9 Tribeca, Subaru + + + + + (LINC) Mark V, Lincoln-Continental; (MORG) 4/4 Mark 5, Morgan + + + + + (FORD) Model T, Ford (see English, French, German, and Italian Ford); (MERC) Montclair, Mercury + + + + + (PORS) Karman, Porsche; (VOLK) Karmann Ghia, Volkswagen + + + + + (LNCI) Fulvia, Lancia + + + + + (LINC) Navigator, Lincoln-Continental; (MAZD) Navajo, Mazda + + + + + (CHEV) U100 (Joint Venture w/Daewoo); (DAEW) U100 (Joint Venture w/Chevrolet) + + + + + (ALFA) Zagato, Alfa Romeo; (LNCI) Zagato, Lancia + + + + + (CHEV) Suburban, Chevrolet; (GMC) Suburban, General Motors Corp.; (PLYM) Suburban, Plymouth + + + + + (PLYM) Plaza, Plymouth + + + + + (STU) Champion, Studebaker + + + + + (DATS) F-10, Datsun; (FORD) F100, Ford (see English, French, German, and Italian Ford) + + + + + (PLYM) Valiant, Plymouth + + + + + (CHRY) Town & Country Minivan, Chrysler + + + + + (MERZ) Smart City Vehicle, Mercedes-Benz + + + + + (BMW) 735 Series, BMW + + + + + (IMPE) Custom, Imperial (for vehicle years 1955-1983, use VMA/IMPE; for vehicle years prior to 1955 and vehicle years 1990-1993, see make Chrysler); (CHEC) Custom, Checker; (DESO) Custom, DeSoto; (FORD) Custom, Ford (see English, French, German, and Italian Ford); (LINC) Custom, Lincoln-Continental; (MERC) Custom, Mercury; (OLDS) Custom, Oldsmobile; (PONT) Custom, Pontiac; (RAMB) Custom, Rambler (mfd. prior to 1966; 1966 and later Ramblers - see make American Motors) + + + + + (LINC) Mark VI, Lincoln-Continental + + + + + (DODG) Shadow, Dodge + + + + + (MERZ) ML500, Mercedes-Benz + + + + + (MESS) KR201, Messerschmitt + + + + + (NISS) XE, Nissan + + + + + (ALFA) 2600 Sprint, Alfa Romeo + + + + + (FORD) Futura, Ford (see English, French, German, and Italian Ford) + + + + + (FORD) KA, Ford (see English, French, German, and Italian Ford) + + + + + (MAZD) MPV, Mazda + + + + + (RENA) Luxe, Renault + + + + + (CITR) DS-19, Citroen + + + + + (DODG) Nitro, Dodge + + + + + (SKOD) Fabia, Skoda + + + + + (PEUG) 504 Series, Peugeot + + + + + (FORD) Victoria, Ford (see English, French, German, and Italian Ford); (VAUX) Victor, Vauxhall + + + + + (CHRY) LHS, Chrysler + + + + + (ATV) Wheels only; (SNOW) Wheels only, Snowmobiles; (SPEC) Motorized Wheelchairs + + + + + (DODG) Mirada, Dodge; (MITS) Mirage, Mitsubishi + + + + + Cayman + + + + + (BMW) L6, BMW + + + + + (GMC) Rally, General Motors Corp.; (SAT) Relay, Saturn + + + + + (LINC) Versailles, Lincoln-Continental + + + + + (MERC) Turnpike Cruiser, Mercury; (PLYM) Turismo, Plymouth + + + + + (MERC) Topaz, Mercury + + + + + (NISS) Titan, Nissan + + + + + (BUIC) GS400, Buick + + + + + (VOLV) 760, Volvo; (BMW) 760 LI, BMW ; (BMW) 760i, BMW + + + + + (PONT) G5, Pontiac + + + + + (DETO) Mangusta, DeTomaso + + + + + (BREM) Creighton, Bremen Sport Equipment, Inc. (Bremen, IN); (FORD) Crestline, Ford (see English, French, German, and Italian Ford); (TOYT) Cressida, Toyota; (VAUX) Cresta, Vauxhall + + + + + (TVR) Vixen, TVR + + + + + NSX + + + + + (MASE) Mexico, Maserati + + + + + (BMW) 840Ci, BMW + + + + + (NISS) Pathfinder (Armada), Nissan + + + + + (NASH) Lafayette, Nash + + + + + (SUZI) XL-7 or XL-7 Grand Vitara, Suzuki + + + + + (AUDI) 80, Audi + + + + + (DAYO) Moya, Daytona + + + + + (ENGF) Zephyr, English Ford (British); (LINC) Zephyr, Lincoln-Continental; (MERC) Zephyr, Mercury + + + + + (MASE) 430, Maserati + + + + + (HUDS) Super, Hudson; (BUIC) Super, Buick; (FORD) Super, Ford (see English, French, German, and Italian Ford); (HILL) Super Minx, Hillman; (LOTU) Super 7, Lotus; (OLDS) Super 88, Oldsmobile; (PONT) Super Chief, Pontiac; (PORS) Super, Porsche; (RAMB) Super, Rambler (mfd. prior to 1966; 1966 and later Ramblers - see make American Motors); (TOYT) Supra, Toyota + + + + + (MERZ) C320, Mercedes-Benz + + + + + (BUIC) Allure, Buick + + + + + (MERZ) E320, Mercedes-Benz + + + + + (GMC) Savanna (full-size van), General Motors Corp.; (PLYM) Savoy, Plymouth + + + + + (BMW) 635 Series, BMW + + + + + (VOLV) 122 Series, Volvo + + + + + (JAGU) XJ12, Jaguar + + + + + (DODG) St. Regis, Dodge; (FIAT) Strada, Fiat; (PONI) Strato Chief, Pontiac (Canadian) (Also see make Pontiac); (PONT) Streamliner, Pontiac + + + + + (TOYT) Sienna (van), Toyota + + + + + (DODG) Daytona, Dodge; (FERR) Daytona, Ferrari; (STU) Daytona, Studebaker + + + + + (MASE) Bora, Maserati + + + + + (CONU) GCP, Consulier + + + + + (DODG) Ram Charger, Dodge + + + + + (FORD) F250 Supercab (pickup), Ford (see English, French, German, and Italian Ford) + + + + + (RAMB) Classic, Rambler (mfd. prior to 1966; 1966 and later Ramblers - see make American Motors); (CHEV) Classic, Chevrolet + + + + + (BUIC) Regal, Buick; (OLDS) Regency (Ninety-eight Series), Oldsmobile + + + + + (STRN) LW-Wagon, Saturn + + + + + (PACK) Predictor, Packard + + + + + (FORD) Econoline E350, Ford (see English, French, German, and Italian Ford) + + + + + (MASE) 3500 (series), Maserati; (ROV) 3500, Rover; (NISS) 350Z, Nissan ; (MERZ) E350 OR SLK350, Mercedes Benz; (MERZ) S350, Mercedes - Benz; (ISU) i350, Isuzu; (LEXS) IS350, Lexus + + + + + (PONT) Chieftain, Pontiac + + + + + (MERZ) C220, Mercedes-Benz + + + + + (MASE) Khamsin, Maserati + + + + + (BUIC) Electra (Park Avenue), Park Avenue (Electra), Buick; (BZEL) Electra-King, B & Z Electric Car Co.; (HOND) Element, Honda + + + + + (PORS) 968, Porsche + + + + + (MERZ) 220 Series, Mercedes-Benz + + + + + (CADI) XLR, Cadillac + + + + + (ATV) Tracks only; (MERC) Tracer, Mercury; (SNOW) Tracks only, Snowmobiles + + + + + (FORD) Galaxie, Ford (see English, French, German, and Italian Ford); (MITS) Galant, Mitsubishi; (LAMO) Gallardo, Lamborghini + + + + + (VOLK) Beetle (Super Beetle or Bug), Volkswagen + + + + + (OLDS) 37350, Oldsmobile + + + + + (MAZD) CX7, Mazda + + + + + (MERC) Monarch, Mercury + + + + + (SPYK) C8 Laviolette, Spyker Motorcars; (SPYK) C8 Spyder, Spyker Motorcars + + + + + (SIM) Aronde, Simca; (SUZI) Aerio, Suzuki + + + + + (SANG) CM600S, Sangyong + + + + + (RENA) R-16, Renault + + + + + (TOYT) T-150, Toyota + + + + + (SUZI) Sidekick, Suzuki + + + + + (VOLK) The Thing, Volkswagen + + + + + (MG) MGB, MG + + + + + (DAIH) Rocky, Daihatsu + + + + + (CHRY) Crossfire, Chrysler + + + + + (FORD) Econoline E150, Ford (see English, French, German, and Italian Ford) + + + + + (SUBA) Loyale, Subaru + + + + + Trailers + + + + + (BMW) 740, BMW; (VOLV) 740 Series, Volvo + + + + + (LINC) Mark III, Lincoln-Continental; (VANG) Mark III, Vanguard (Canada) + + + + + (DODG) Caravan, Dodge; (CHRY) Caravan, Chrysler + + + + + (FERR) 308, Ferrari + + + + + (SCIO) XB, Scion + + + + + (SANG) Jeep, Sangyong + + + + + (NISS) Altima, Nissan + + + + + (BUIC) Roadmaster, Buick; (CLEN) Roadster, Clenet Coach Works; (DECO) Roadster, DeCourville + + + + + (BESA) Baci, Besasie Automobile Co., Inc. + + + + + (OLDS) Firenza, Oldsmobile + + + + + (FORD) Maverick, Ford (see English, French, German, and Italian Ford) + + + + + (ALFA) Montreal, Alfa Romeo; (CHEV) Monza, Chevrolet; (DODG) Monaco, Dodge; (FERR) Mondial, Ferrari; (MERC) Monterey, Mercury; (METE) Montcalm, Meteor (Canadian Mercury); (MITS) Montero/Montero Sport, Mitsubishi + + + + + (JAGU) 3.8 Litre, Jaguar + + + + + (TOYT) Yaris, Toyota + + + + + (CHEV) Camaro, Chevrolet; (PLYM) Cambridge, Plymouth; (ROL) Camargue, Rolls-Royce; (TOYT) Camry, Toyota + + + + + (MAZD) MX6, Mazda + + + + + (CLND) 244X, Cross Lander + + + + + (CHRY) Concorde, Chrysler + + + + + (MERZ) C36, Mercedes-Benz + + + + + (VOLV) V50 (Sport Wagon), Volvo + + + + + (FORD) Taurus, Ford (see English, French, German, and Italian Ford) + + + + + (MERZ) SLR McLaren, Mercedes-Benz + + + + + (CHEV) Equinox, Chevrolet + + + + + (SAA) 93 & 93B, Saab + + + + + (HOND) Odyssey (minivan), Honda + + + + + (CHEV) Cavalier, Chevrolet; (PACK) Cavalier, Packard; (TOYT) Cavalier, Toyota + + + + + (BMW) Z3, BMW + + + + + (RENA) R-5, Renault + + + + + (FORD) Festiva, Ford (see English, French, German, and Italian Ford) + + + + + (CADI) Escalade, Cadillac; (ENGF) Escort, English Ford (British); (FORD) Escort, Ford (see English, French, German, and Italian Ford) + + + + + (DODG) Meadowbrook, Dodge + + + + + (FERR) Enzo, Ferrari + + + + + (DETO) Deauville, DeTomaso + + + + + (VOLK) Golf, Volkswagen + + + + + (ENCR) M151, Encore + + + + + (MERC) Bobcat, Mercury + + + + + (BMW) 533i, BMW + + + + + (USEL) Lectric Leopard, U.S. Electricar Corp. + + + + + (KIA) Opirus, KIA + + + + + (PEUG) 304, Peugeot + + + + + (HYUN) Sonata, Hyundai; (GMC) Sonoma, General Motors Corp.; (SAA) Sonnet, Saab + + + + + (MERZ) CLK500, Mercedes-Benz + + + + + (AUDI) A6, Audi + + + + + (HOND) S2000, Honda + + + + + (CREL) Sparrow, Corbin Motors (electric vehicles) + + + + + (CADI) Catera, Cadillac; (PONT) Catalina, Pontiac + + + + + (DETO) Longchamp, DeTomaso + + + + + (FORD) Falcon, Ford (see English, French, German, and Italian Ford) + + + + + (HOND) Passport, Honda; (TOYT) Paseo, Toyota; (VOLK) Passat, Volkswagen + + + + + (MASE) GTI Series, Maserati; (VOLK) GTI, Volkswagen + + + + + (VOLK) Quantum, Volkswagen + + + + + (FORD) XL, Ford (see English, French, German, and Italian Ford) + + + + + (ACUR) Vigor, Acura + + + + + (FIAT) Brava, Fiat + + + + + (PORS) 914, Porsche + + + + + (SPEC) Dune Buggies + + + + + (MG) Mark II, MG + + + + + Milan + + + + + (VOLV) XC90, Volvo + + + + + (SUBA) Leone GL Coupe, Subaru + + + + + (TOYT) Tundra, Toyota + + + + + (STRN) Vue, Saturn + + + + + (JAGU) Mark Ten Salon, Jaguar + + + + + (BMW) 320i, BMW; (MERZ) 320 Series, Mercedes-Benz + + + + + (PORS) Targa, Porsche + + + + + (FORD) Club Wagon E250, Ford (see English, French, German, and Italian Ford) + + + + + (SUZI) Forenza (S, EX, LX), Suzuki + + + + + (FORD) Explorer Sport Trac, Ford (see English, French, German, and Italian Ford) + + + + + (TOYT) Previa, Toyota + + + + + (DESO) Adventurer, DeSoto + + + + + (FORD) Mustang, Ford (see English, French, German, and Italian Ford) + + + + + (CHRY) Fifth Avenue, Chrysler + + + + + (OLDS) 98, Oldsmobile + + + + + (GZL) Rage (sport utility), Gazelle + + + + + (BMW) M3, BMW + + + + + (FORD) Torino (Fairlane), Ford (see English, French, German, and Italian Ford); (OLDS) Toronado, Oldsmobile; (PONT) Torrent, Pontiac + + + + + (CHEV) Corvette, Chevrolet + + + + + (BMW) 750iL, BMW + + + + + (LEXS) GX470, Lexus + + + + + (CHRY) Voyager, Chrysler; (MERC) Voyager, Mercury; (PLYM) Voyager, Plymouth + + + + + (TOYT) RAV4 (sport utility), Toyota + + + + + (FIAT) 850 Fastback, Fiat + + + + + (ALFA) Duetto, Alfa Romeo + + + + + (ASTO) DB-6, Aston Martin + + + + + (DODG) Ram 3500 (van), Dodge + + + + + (VOLV) GLE, Volvo + + + + + (CHEV) Townsman, Chevrolet; (CHRY) Town & Country, Chrysler; (LINC) Town Car, Lincoln-Continental + + + + + (OLDS) Aurora, Oldsmobile; (STRN) Aura, XE, XR, Saturn + + + + + (BERO) Palinuro, Bertone + + + + + (JAGU) V12, Jaguar + + + + + (ISU) Stylus, Isuzu; (JAGU) S-Type, Jaguar; (CHEV) Style Line, Chevrolet + + + + + (MASE) Biturbo, Maserati + + + + + (MERZ) E430, Mercedes-Benz + + + + + (AUST) A55, Austin + + + + + (LAMO) LM129, Lamborghini + + + + + (DAIH) Charade, Daihatsu; (DODG) Charger (and Shelby Charger), Dodge; (GAZ) Chaika, GAZ; (MITS) Chariot, Mitsubishi; (PLYM) Champ (imported), Plymouth; (SIN) Chamois, Singer; (STU) Challenger, Studebaker + + + + + (VOLV) S70, Volvo + + + + + (CADI) Touring Sedan, Cadillac + + + + + (STLG) 827, Sterling + + + + + (SHEB) CSX, Shelby American; (ACUR) CSX, Acura + + + + + (ALFA) 164, Alfa Romeo; (VOLV) 164 Series, Volvo + + + + + (HYUN) Entourage, Hyundai + + + + + (TVR) Tuscan, TVR + + + + + (BMW) 325i, BMW + + + + + (VOLV) GLT, Volvo + + + + + (OPEL) Olympia, Opel (imported by Buick) + + + + + (FERR) F355, Ferrari; (FORD) F350, Ford (see English, French, German, and Italian Ford) + + + + + (MERZ) ML55, Mercedes-Benz + + + + + (SUZI) Vitara, Suzuki; (TRIU) Vitesse, Triumph + + + + + (AUDI) 100, Audi; (AUHE) 100 Series, Austin-Healy; (DODG) A 100 Compact, Dodge; (ENGF) 100 E Series, English Ford (British); (NSU) 1000, Nsu Prinz; (SIM) 1000 & 1000GL, Simca; (SUBA) 100 Series, Subaru + + + + + Grand Marquis + + + + + (BERO) X19, Bertone; (FIAT) X19, Fiat + + + + + (LINC) Mark VII, Lincoln-Continental + + + + + (ISU) Ascender, Isuzu + + + + + (TOYT) 4-Runner, Highlander (4Runner), Toyota + + + + + (CHEV) Celebrity, Chevrolet + + + + + (CHRY) PT Cabrio, Chrysler + + + + + (BUIC) Park Avenue, Buick; (ROL) Park Ward, Rolls-Royce + + + + + RL + + + + + (MORR) Oxford, Morris + + + + + (AUST) Westminster, Austin + + + + + (SNOW) Skis and Wheels, Snowmobiles + + + + + (FERR) Testarossa, Ferrari + + + + + (AMER) Rambler Rogue, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (FORD) Nevada, Ford (see English, French, German, and Italian Ford) + + + + + (JEEP) Grand Cherokee, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) Grand Cherokee, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) Grand Cherokee, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (FIAT) Uno, Fiat + + + + + (HYUN) Steilar, Hyundai; (DODG) Stealth, Dodge + + + + + (ISU) VehiCross, Isuzu + + + + + (BMW) 535 Series, BMW + + + + + (DODG) Polara, Dodge; (VOLK) Polo, Volkswagen + + + + + (BMW) 645, BMW + + + + + (BMW) 750, BMW; (FIAT) 750, Fiat; (RENA) 750, Renault; (BMW) 750i, BMW; (BMW) 750L, BMW + + + + + (DATS) 260Z, Datsun; (MERZ) 260 Series, Mercedes-Benz; (VOLV) 260 Series, Volvo + + + + + (DODG) Magnum, Dodge; (MG) Magnette, MG + + + + + (NISS) Pulsar, Nissan + + + + + (AUDI) 850, Audi; (AUST) 850, Austin; (BMW) 850i, BMW; (MORR) 850 Series, Morris; (VOLV) 850 Series, Volvo + + + + + (CHEV) Lumina, Chevrolet + + + + + (FERR) Tipo, Ferrari + + + + + (DODG) Aries, Dodge + + + + + FJ Cruiser + + + + + (MITS) 3000 GT, Spyder 3000 GT, Mitsubishi + + + + + (HUDS) Pacemaker, Hudson; (AMER) Pacer, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (EDSE) Pacer, Edsel + + + + + (CITR) SM, Citroen + + + + + (MORG) Plus 4 Series, Morgan + + + + + (ALFA) 2600 Spider, Alfa Romeo + + + + + (DODG) Dynasty, Dodge; (OLDS) Dynamic 88, Oldsmobile; (CHRY) Dynasty, Chrysler + + + + + (CHEV) Matiz, Chevrolet; (PONT) Matiz, Pontiac + + + + + (MERZ) C43, Mercedes-Benz + + + + + (CADI) SRX, Cadillac + + + + + (BUIC) Centurion, Buick; (FORD) Contour, Ford (see English, French, German, and Italian Ford) + + + + + (PONT) Vibe (sport wagon), Pontiac + + + + + (JAGU) X-Type, Jaguar + + + + + (AUDI) 5000, Audi; (MASE) 5000 (series), Maserati; (FORD) Five Hundred (500), Ford; (MERZ) CLS500, Mercedes Benz; (MERZ) S500, Mercedes - Benz + + + + + RX400 or RX400H (Hybrid) + + + + + (CHEV) Tracker (beginning vehicle year 1998), Chevrolet; (GEO) Tracker, GEO + + + + + (VOLV) S60, Volvo + + + + + (ASTO) Lagonda, Aston Martin + + + + + (CADI) 75 Series, Cadillac; (ROV) Rover 75, Rover + + + + + (SUNB) Rapier, Sunbeam + + + + + (JAGU) XJC, Jaguar + + + + + (FERR) F40, Ferrari + + + + + (CHEV) Tahoe, Chevrolet + + + + + (BMW) 600, BMW; (DODG) 600, Dodge; (FIAT) 600D, Fiat; (MERZ) 600 Series, S600, Mercedes-Benz; (PONT) 6000, Pontiac + + + + + (MERZ) E420, Mercedes-Benz + + + + + (AERO) Sailplane (Glider); (CHRY) Salon, Chrysler + + + + + (BORG) Biscayne, Borgward; (CHEV) Biscayne, Chevrolet + + + + + (PLYM) Road Runner, Plymouth + + + + + (FORD) Think Neighbor (Elec. Veh. Model Year 2002), Ford + + + + + (MAZD) B2500, Mazda + + + + + (DESO) Powermaster, DeSoto + + + + + (VOLV) PV544, Volvo + + + + + (CHRY) Windsor, Chrysler; (FORD) Windstar, Ford (see English, French, German, and Italian Ford) + + + + + (CHEV) Astro Van, Chevrolet; (OPEL) Astra, Opel (imported by Buick); (PONT) Astre, Pontiac + + + + + (CHRY) TC, Chrysler; (SCIO) TC, Scion + + + + + (BUIC) Terraza, Buick + + + + + (BUIC) Limited, Buick; (CHRY) Limousine, Chrysler; (PANE) Lima, Panther Westwinds, Ltd. + + + + + (PEUG) 203, Peugeot + + + + + (OPEL) Kadette, Opel (imported by Buick) + + + + + (VAUX) Velox, Vauxhall + + + + + (CHEV) El Camino, Chevrolet + + + + + (INFI) J30, Infiniti + + + + + (PLYM) Scamp (Valiant), Plymouth + + + + + (FIAT) Punto, Fiat + + + + + (ASUN) SE, Asuna; (NISS) SE-V6, Nissan + + + + + (MASE) 425, Maserati + + + + + (MERZ) E55, Mercedes-Benz; (FORD) Econoline E-550, Ford + + + + + (BMW) 525ia, BMW; (BMW) 525i, BMW + + + + + (TOYT) MR2, Toyota + + + + + (SUBA) SVX, Subaru + + + + + (JEEP) Cherokee, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) Cherokee, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) Cherokee, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (HUDS) Commodore, Hudson; (JEEP) Comanche, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) Comanche, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) Comanche, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (CHRY) Commander, Chrysler; (COMV) Comuta-Car, Commuter Vehicles, Inc.; (DODG) Compact Sportsman, Dodge; (FREF) Comete, French Ford; (MERC) Comet, Mercury; (STU) Commander, Studebaker + + + + + (ENGF) Cortina, English Ford (British) + + + + + (DODG) Diplomat, Dodge + + + + + (MERC) Nautica Villager, Villager Minivan, Mercury + + + + + (CITR) DS-21 & D21, Citroen + + + + + (HUDS) Hornet, Hudson; (AMER) Hornet, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (PLYM) Horizon (also TC3), Plymouth + + + + + (ASTO) Saloon (Virage), Virage (Saloon), Aston Martin + + + + + (DATS) Honey Bee, Datsun + + + + + (MASE) Merak, Maserati + + + + + (FORD) Econoline E250, Ford (see English, French, German, and Italian Ford) + + + + + (LINC) LS8, Lincoln-Continental + + + + + (INTL) Scout, International Harvester + + + + + (CHEV) S10, Chevrolet + + + + + (RENA) R-10, Renault + + + + + (BUIC) Special, Buick; (CHEV) Spectrum, Chevrolet; (FORD) Special, Ford (see English, French, German, and Italian Ford) + + + + + (TRIU) 1250, Triumph + + + + + (DAEW) Korando, Daewoo + + + + + (CHEV) Metro (beginning vehicle year 1998), Chevrolet; (GEO) Metro, GEO; (NASH) Metropolitan, Nash + + + + + (AUDI) Cabriolet, Audi; (BERO) Cabrio, Bertone; (GMC) Cabellero, General Motors Corp.; (PORS) Cabriolet, Porsche; (VOLK) Cabriolet, Volkswagen + + + + + (FERR) 512, Ferrari + + + + + (MERZ) 219 Series, Mercedes-Benz + + + + + (PLYM) Fury (also Grand Fury), Plymouth + + + + + (HYUN) Avatar, Hyundai; (AUDI) Avant, Audi; (CHEV) Avalanche, Chevrolet; (NSU) Auto Nova, Nsu Prinz; (STU) Avanti, Studebaker; (TOYT) Avalon, Toyota; (LINC) Aviator, Lincoln + + + + + (CHEV) 210 Series, Chevrolet; (DATS) 210 (or B-210), B-210 (or 210), Datsun + + + + + (FORD) Ranger (pickup), Ford (see English, French, German, and Italian Ford) + + + + + (PONT) SSE, Pontiac + + + + + (MORR) Mini Series, Morris; (TOYT) Mark II, Toyota + + + + + (ISU) Axiom, Isuzu + + + + + (HUDS) Rambler, Hudson; (NASH) Rambler, Nash + + + + + (BMW) Isetta, BMW + + + + + (BENT) Brooklands, Bentley; (CADI) Brougham, Cadillac; (FORD) Bronco/Bronco II, Ford (see English, French, German, and Italian Ford); (MERC) Brougham, Mercury + + + + + (FORD) Escape, Ford (see English, French, German, and Italian Ford) + + + + + (VAUX) Firenza, Vauxhall + + + + + (LOTU) Elan, Lotus + + + + + (ROL) Silver Dawn, Rolls-Royce + + + + + (JENS) Healy, Jensen + + + + + (PLYM) Satellite, Plymouth + + + + + (MAZD) RX8, Mazda + + + + + (RENA) Le Car, Renault + + + + + (MAZD) B2000, Mazda + + + + + (VOLV) V70, Volvo + + + + + (SOLE) Citi Van, Solectria + + + + + (BUIC) GS455, Buick; (LEXS) GS450h, Lexus + + + + + (EXCL) SSK, Excalibur + + + + + 612 Scaglietti + + + + + (TRIU) TR-4 & TR-4A, Triumph + + + + + STS (Badged Separately Beginning 7/2003) + + + + + (BMW) 745i, BMW; (VOLV) 745 Series, Volvo + + + + + (FORD) LTD II, Ford (see English, French, German, and Italian Ford) + + + + + (FREF) Vedette, French Ford; (SIM) Vedette, Simca + + + + + (MERZ) 450 Series, Mercedes-Benz + + + + + Vanquish, Vanquish S + + + + + (CHEV) Corsa (Corvair), Corvair, Chevrolet + + + + + (BMW) 2.8, BMW + + + + + (AUDI) 90, Audi + + + + + (HOND) EVPLUS, Honda + + + + + (PLYM) Sapporo (imported), Plymouth + + + + + (HOND) Pilot, Honda + + + + + (ROL) Silver Cloud, Rolls-Royce + + + + + (MONA) Lucerne, Monarch; (BUIC) Lucerne, Buick + + + + + (BUIC) Somerset, Buick + + + + + (INFI) FX45, Infiniti + + + + + (ALFA) Giulia, Alfa Romeo + + + + + (PONT) Trans Sport/Transport, Pontiac; (VOLK) Transporter, Volkswagen + + + + + (KAIS) Darrin, Kaiser; (DODG) Dart, Dodge + + + + + (BUGA) EB110, Bugatti + + + + + (AMER) Alliance, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (JEEP) Liberty, Jeep + + + + + (PONT) Aztek, Pontiac + + + + + (TOYT) Solara, Toyota; (PONT) Solstice, Pontiac + + + + + (JEEP) Compass, Jeep + + + + + (MAZD) B2300, Mazda + + + + + (CHRY) Executive Sedan, Chrysler; (PONT) Executive, Pontiac + + + + + (MERC) S-22, Mercury + + + + + (OLDS) Delta 88, LSS (Delta 88), Royale, Oldsmobile + + + + + (STU) Lark Series, Studebaker + + + + + (ISU) Rodeo, Isuzu; (DLHY) Roadster, Delahaye; (LAMO) Roadster, Lamborghini; (PANZ) Roadster, Panoz Auto Development Co.; (BRSH) Roadster, Brush (antique vehicles); (SHEB) Roadster, Shelby + + + + + (SAA) 99, Saab + + + + + (AVTI) Series A, Avanti + + + + + (PANE) Killeta, Panther Westwinds, Ltd. + + + + + (STRN) SL, Saturn + + + + + (HILL) Husky, Hillman + + + + + (JAGU) 340, Jaguar + + + + + (LAMO) Jalpa, Lamborghini + + + + + (MERC) Breezeway, Mercury + + + + + (CHEV) Sportvan, Chevrolet; (ENCR) Sport, Encore; (KIA) Sportage (sport utility), Kia Motors Corp.; (SUBA) Outback Sport (station wagon), Subaru + + + + + (FORD) Thunderbird, Ford (see English, French, German, and Italian Ford); (MODE) 1955 Thunderbird, Model A and Model T Motor Car Reproduction Corp. + + + + + (VANG) Ensign, Vanguard (Canada) + + + + + (ISU) I-Mark, Isuzu + + + + + (CHEV) Silverado, Chevrolet + + + + + (MERC) Colony Park, Mercury + + + + + (FORD) ZX2, Ford + + + + + (MG) MGB/GT, MG + + + + + (SUBA) Fe, Subaru + + + + + (PORS) 924, Porsche + + + + + (CITR) AX, Citroen + + + + + (BMW) 328is, BMW; (FERR) 328, Ferrari + + + + + (BMW) 633csi, BMW + + + + + (DATS) 240Z, Datsun + + + + + (JEEP) J-10, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) J-10, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) J-10, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (TRIU) TR-3 & TR-3A, Triumph + + + + + (INFI) Q45, Infiniti + + + + + (CHRY) Lido, Chrysler + + + + + (FORD) Club Wagon E150, Ford (see English, French, German, and Italian Ford) + + + + + (MAZD) B3000, Mazda + + + + + (MERC) Caliente, Mercury; (PACK) Clipper, Packard + + + + + (CHRY) Grand Voyager, Chrysler + + + + + (SAA) GT 750, Saab + + + + + (BMW) 733 Series, BMW + + + + + (SUZI) Verona, Suzuki + + + + + (CHEC) Aerobus, Checker; (FORD) Aerostar, Ford (see English, French, German, and Italian Ford) + + + + + Elise + + + + + (MAZD) B4000, Mazda + + + + + (RENA) Fuego, Renault + + + + + (LINC) Blackwood, Lincoln + + + + + (MASE) Mistrell, Maserati; (MAZD) Miser (piston engine), Mazda + + + + + (STRN) SW, Saturn + + + + + (MAZD) GLC ("Great Little Car"), Mazda + + + + + (INTL) Travelall, International Harvester + + + + + (CHEV) Chevette, Chevrolet + + + + + Mariner + + + + + (OLDS) Jetstar, Oldsmobile + + + + + (GMC) Syclone, General Motors Corp. + + + + + (CHEC) Superba, Checker + + + + + (FORD) Mainline, Ford (see English, French, German, and Italian Ford) + + + + + (BENT) Azure, Bentley + + + + + (CHRY) Imperial (for vehicle years prior to 1955 and for vehicle years 1990-1993; for 1955-1983, see make Imperial), Chrysler + + + + + (BENT) Mulsanne, Bentley; (ROL) Mulsanne, Rolls-Royce + + + + + (PONT) Bonneville, Pontiac + + + + + (JAGU) XKR, Jaguar + + + + + (ROV) Rover 25, Rover + + + + + (BORG) Hansa, Borgward + + + + + (CADI) Seville, Cadillac + + + + + (INFI) QX4, Infiniti + + + + + (PORS) 928, Porsche + + + + + (HUDS) Deluxe, Hudson; (KAIS) Deluxe, Kaiser; (CHEV) Del Ray, Chevrolet; (DESO) Deluxe, DeSoto; (DODG) Deluxe, Dodge; (FORD) Deluxe, Ford (see English, French, German, and Italian Ford); (HILL) Deluxe, Hillman; (MORR) Deluxe, Morris; (OLDS) Deluxe, Oldsmobile; (PONT) Deluxe, Pontiac; (RAMB) Deluxe, Rambler (mfd. prior to 1966; 1966 and later Ramblers - see make American Motors); (SUNB) Deluxe, Sunbeam; (VANG) Deluxe, Vanguard (Canada) + + + + + (BMW) 1600, BMW; (HILL) 1600 Series, Hillman; (MG) 1600, MG; (PORS) 1600, Porsche; (SUBA) 1600 Series, Subaru + + + + + (MERZ) ML430, Mercedes-Benz + + + + + (GMC) Sprint (VMA/GMSP for reference only), General Motors Corp. + + + + + (AMER) Matador, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (BUIC) Riviera, Buick + + + + + (CHEV) Caprice, Chevrolet; (ENGF) Capri, English Ford (British); (MERC) Capri (1979 and later), Mercury + + + + + (DODG) Phoenix, Dodge; (PONT) Phoenix, Pontiac + + + + + (MERZ) CLK430, Mercedes-Benz + + + + + (CHRY) Royal, Chrysler; (DODG) Royal, Dodge + + + + + (AUST) A40, Austin + + + + + (PANE) J72, Panther Westwinds, Ltd. + + + + + (NISS) X-Terra, Nissan + + + + + (DESO) Firedom, DeSoto + + + + + (AMER) Concord, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (BENT) Continental Convertible, Bentley; (CADI) Concours, Cadillac; (CHRY) Conquest (vehicle year 1987 and later), Chrysler; (DODG) Conquest (vehicle year 1986 only), Dodge; (ENGF) Consul, English Ford (British); (LINC) Continental, Lincoln-Continental + + + + + (OLDS) Holiday, Oldsmobile + + + + + (MERZ) C280, Mercedes-Benz + + + + + (VOLK) Squareback, Volkswagen + + + + + (ASUN) Sunrunner, Asuna; (VOLK) Sunroof, Volkswagen + + + + + (ALFA) GT Veloce, Alfa Romeo + + + + + (KAIS) Carolina, Kaiser; (OPEL) Caravan, Opel (imported by Buick); (PACK) Caribbean, Packard; (PORS) Carrera, Porsche; (TOYT) Carina, Toyota + + + + + (FIAT) Ulysse, Fiat + + + + + (PORS) Boxter 986, Porsche + + + + + (CHEV) Parkwood, Chevrolet; (MERC) Parklane, Mercury; (PONI) Parisienne, Pontiac (Canadian) (Also see make Pontiac); (PONT) Parisienne, Pontiac + + + + + (CHEC) Marathon, Checker + + + + + (FORD) Expedition, Ford (see English, French, German, and Italian Ford) + + + + + (ACUR) TL, Acura + + + + + (MAZD) RX7 (rotary engine), Mazda + + + + + (MG) MGC, MG + + + + + (DODG) Neon, Dodge; (PLYM) Neon, Plymouth + + + + + (HYUN) Santa Fe, Hyundai + + + + + (JAGU) 4.2 Litre, Jaguar + + + + + (JAGU) XK-E Series, Jaguar + + + + + (FORD) Tempo, Ford (see English, French, German, and Italian Ford); (PONI) Tempest, Pontiac (Canadian) (Also see make Pontiac) + + + + + (BREM) Laufer, Bremen Sport Equipment, Inc. (Bremen, IN); (PONI) Laurentian, Pontiac (Canadian) (Also see make Pontiac) + + + + + (LINC) Mark VIII, Lincoln-Continental + + + + + (CHEV) Vega, Chevrolet + + + + + (VOLV) 940, Volvo + + + + + (DESO) Firelite, DeSoto + + + + + (CONU) GTP, Consulier + + + + + (DODG) Ram 1500 (van), Dodge + + + + + Farm and Garden Equipment + + + + + (AUDI) S6, Audi + + + + + (SUBA) RX, Subaru + + + + + (MERZ) SLK230, Mercedes-Benz + + + + + (VOLV) C70, Volvo + + + + + (JAGU) XJS, Jaguar + + + + + (LADA) Niva, Lada (imported from USSR) + + + + + (LEXS) LX450 (luxury sport utility), Lexus + + + + + Ridgeline + + + + + (AUST) 1800, Austin; (BMW) 1800, BMW; (MERZ) 180 Series, Mercedes-Benz; (VOLV) 1800 Series, Volvo + + + + + (SUZI) SX4, Suzuki + + + + + (TRIU) Sport "6", Triumph + + + + + (FORD) Pinto, Ford (see English, French, German, and Italian Ford) + + + + + Motorcycles + + + + + (MERC) Cyclone, Mercury + + + + + (FORD) Model A, Ford (see English, French, German, and Italian Ford) + + + + + (OLDS) Achieva, Oldsmobile + + + + + (MESS) KR200, Messerschmitt + + + + + (SUBA) GLF, Subaru + + + + + (BMW) TI, BMW + + + + + (JEEP) Wagoneer, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) Wagoneer, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) Wagoneer, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (STU) Wagonaire, Studebaker + + + + + (VOLV) V90, Volvo + + + + + (ITAF) Anglia, Italian Ford; (ENGF) Anglia, English Ford (British) + + + + + (TOYT) Hi-Lux, Toyota + + + + + (NISS) Versa, Nissan + + + + + (MERZ) C240, Mercedes-Benz + + + + + Wave + + + + + (BUIC) GS350, Buick; (SHEB) Cobra GT350, Shelby American; (INFI) G35, Infiniti + + + + + (LEXS) GS300, Lexus + + + + + (ALFA) Berlina, Alfa Romeo; (BORG) Beretta, Borgward; (CHEV) Beretta, Chevrolet; (LNCI) Berlina, Lancia; (SIM) Bertone, Simca + + + + + (LEXS) IS300, Lexus + + + + + (BENT) Eight, Bentley + + + + + (HYUN) Scoupe, Hyundai; (HILL) Sceptre, Hillman; (MONA) Sceptre, Monarch + + + + + (AUDI) 80 LS (Fox), Audi; (VOLK) Fox, Volkswagen + + + + + (MITS) Tredia, Mitsubishi + + + + + Micra + + + + + (LINC) Mark IV, Lincoln-Continental; (ROV) Mark IV, Rover + + + + + (ALFA) Alfa GT6, Alfa Romeo + + + + + (KAIS) Manhattan, Kaiser; (OPEL) Manta, Opel (imported by Buick); (QVAL) Mangusta, Qvale Automotive Group + + + + + (SIN) Vogue, Singer + + + + + (BUIC) Le Sabre, Buick + + + + + (CADI) CTS, Cadillac + + + + + (FIAT) 131 Series, Fiat + + + + + (AUDI) Super 90, Audi; (VOLV) S90, Volvo + + + + + (MG) Princess 4-R, MG + + + + + Tucson + + + + + Mark LT + + + + + (AERO) Ultralights + + + + + (NISS) ALTRA-EV, Nissan + + + + + (PONI) Grand Parisienne, Pontiac (Canadian) (Also see make Pontiac) + + + + + (ACAD) Canso Series, Acadian (GM of Canada) + + + + + (KIA) Amanti, Kia Motors Corp. + + + + + (VOLK) Touareg, Volkswagen + + + + + (LEXS) SC300, Lexus + + + + + (ISU) Hombre (pickup), Isuzu + + + + + (SAA) 96, Saab + + + + + (CHEV) Trail Blazer, Chevrolet + + + + + (BMW) 630csi, BMW + + + + + (OPEL) Diplomat, Opel (imported by Buick) + + + + + (FERR) 456GT, Ferrari + + + + + (EXCL) SS Phaeton, Excalibur; (ROL) Silver Spirit, Rolls-Royce + + + + + (DODG) Seneca, Dodge; (NISS) Sentra, Nissan + + + + + (BUIC) Wildcat, Buick + + + + + Mazda 5 (Five) + + + + + (FORD) Ranch, Ford (see English, French, German, and Italian Ford) + + + + + (JEEP) CJ-6, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) CJ-6, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) CJ-6, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (EXCL) Cobra, Excalibur; (FORD) Cobra (also see make Shelby American), Ford (see English, French, German, and Italian Ford); (VOLV) Combi, Volvo + + + + + (SPEC) Go-Carts + + + + + (MG) 1100, MG + + + + + (ZCZY) Yugo (series), Zastavia (ZCZ-Yugoslavia) + + + + + (LNCI) Flaminia, Lancia + + + + + (LAMO) Silhouette, Lamborghini + + + + + (BMW) 318ti, BMW + + + + + (FORD) LTD, Ford (see English, French, German, and Italian Ford) + + + + + (BMW) M6, BMW + + + + + (METE) Lemoyne, Meteor (Canadian Mercury); (PONT) LeMans, Pontiac + + + + + (BMW) 850Ci, BMW + + + + + (FORD) F550, Ford (see English, French, German, and Italian Ford) + + + + + (AUDI) A2, Audi + + + + + (DODG) Aspen, Dodge; (FORD) Aspire, Ford (see English, French, German, and Italian Ford); (CHRY) Aspen, Chrysler + + + + + (CADI) 61 Series, Cadillac + + + + + (AMER) Rebel, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (LNDR) Discovery, Land Rover + + + + + (ENGF) Squire, English Ford (British); (FORD) Squire (Falcon or Fairlane), Ford (see English, French, German, and Italian Ford) + + + + + (ACAD) Invader Series, Acadian (GM of Canada); (BUIC) Invicta, Buick + + + + + (VOLK) Touran, Volkswagen + + + + + (VOLK) Scirocco, Volkswagen + + + + + (FORD) Crown Victoria, Ford + + + + + (BUIC) Century, Buick + + + + + (EGIL) Vision, Eagle; (OLDS) Vista Cruiser, Oldsmobile + + + + + (PONT) Tempest GT0, Pontiac + + + + + (CHEV) Chevelle, Concours (Chevelle only), Deluxe (Chevelle), Greenbrier (Chevelle), Nomad (Chevelle), Chevrolet + + + + + (FIAT) 124 Series, Fiat + + + + + (GMC) Typhoon, General Motors Corp.; (RAMB) Typhoon, Rambler (mfd. prior to 1966; 1966 and later Ramblers - see make American Motors) + + + + + (DATS) 1200, Datsun; (FIAT) 1200, Fiat; (SIM) 120, Simca; (TRIU) 1200, Triumph; (VOLK) 1200, Volkswagen + + + + + (CHEV) Nova (Chevy II & Concours), Chevrolet + + + + + (PLYM) GTX, Plymouth + + + + + (FERR) 206, Ferrari + + + + + (LNCI) Beta Series, Lancia + + + + + (DATS) 810, Datsun + + + + + (ENVY) Epic, Envoy; (CHEV) Epica, LS & LT, Chevrolet + + + + + (KAIS) Dragon, Kaiser + + + + + (BMW) 200, BMW + + + + + (ENGF) Lotus, English Ford (British) + + + + + (PONT) Sunfire, Pontiac + + + + + (SUBA) XT6, Subaru + + + + + (EGIL) Talon, Eagle; (TLCC) Talbo, TLC Carrossiers; (TLCC) Talbo Lago, TLC Carrossiers + + + + + (EXCL) JAC 427 Cobra, Excalibur + + + + + (AUDI) V-8, Audi + + + + + (FORD) Econoline 100, Ford (see English, French, German, and Italian Ford); (TOYT) Echo, Toyota + + + + + (CADI) Cimarron, Cadillac + + + + + Gran Sport + + + + + (ALFA) Giulia Spider, Alfa Romeo + + + + + (BMW) 3.0 Si, BMW + + + + + (NISS) Axxess, Nissan + + + + + (ROL) Silver Shadow, Rolls-Royce + + + + + (AUST) Cooper "S", Austin + + + + + (VACR) M12 (sport coupe), Vector Aeromotive Corp. + + + + + (INFI) I35, Infinit + + + + + (LEXS) RX330, Lexus + + + + + (FORD) F450, Ford (see English, French, German, and Italian Ford) + + + + + (SPEC) Golf Carts + + + + + (AMER) Sportabout, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (BUIC) Sportswagon, Buick; (VOLV) Sport, Volvo + + + + + (NISS) Frontier, Nissan + + + + + (CITR) AM16, Citroen + + + + + (PONT) G6, Pontiac + + + + + (FIAT) 1500, Fiat; (PORS) 1500, Porsche; (VOLK) 1500, Volkswagen + + + + + (TRIU) TR8, Triumph + + + + + (DODG) Colt (imported), Dodge; (PLYM) Colt (Canadian), Plymouth + + + + + (DODG) Omni (also 024), Dodge + + + + + (PLYM) Reliant, Plymouth + + + + + DTS (Replaced DeVille Model Name) + + + + + (JAGU) XJ, Jaguar + + + + + (AUDI) 2000 TT-Coupe, 2000 TT-Roadster, Audi + + + + + (AUDI) A8, Audi + + + + + Spyder + + + + + (BMW) 550i, BMW + + + + + (STLG) 825, Sterling; (GLBL) E825, Global Electric Motorcars + + + + + (EGIL) Summit, Eagle + + + + + C55, CLS55 + + + + + (MERZ) CLK320, Mercedes-Benz + + + + + (PONT) T-1000, Pontiac; (TOYT) T-100, Toyota + + + + + (FORD) F650 Super Crew, Ford + + + + + CL65 + + + + + (OPEL) Rekord, Opel (imported by Buick) + + + + + (CHRY) Cirrus, Chrysler + + + + + (DAEW) Nubira, Daewoo + + + + + (DKW) Vemag, DKW + + + + + (TOYT) Tercel, Toyota + + + + + (PLYM) Cricket (imported), Plymouth + + + + + (DODG) 880 Series, Dodge + + + + + (PONT) Pursuit, Pontiac + + + + + (LNDR) Freelander, Land Rover; (FORD) Freestar, Ford + + + + + (LAMO) Miura SV, Lamborghini + + + + + (LEXS) GS400, Lexus + + + + + (BORG) Bel Air, Borgward; (CHEV) Bel Air, Chevrolet; (PLYM) Belvedere, Plymouth + + + + + (BMW) 520, BMW + + + + + (MERC) Commuter, Mercury + + + + + (ROV) 3 Litre, Rover + + + + + (CADI) 60 Series, Cadillac + + + + + (GMC) Denali, General Motors Corp. + + + + + (JEEP) CJ-8, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) CJ-8, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) CJ-8, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (PORS) 1300, Porsche; (SUBA) 1300 Series, Subaru; (TRIU) 1300, Triumph; (VOLK) 1300, Volkswagen + + + + + (FORD) Focus, Ford (see English, French, German, and Italian Ford) + + + + + (LEXS) LS430, Lexus + + + + + (SKOD) Octavia, Skoda + + + + + (KIA) Spectra, Kia Motors Corp. + + + + + (AMER) Rambler Classic, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (VAUX) Epic, Vauxhall + + + + + (JAGU) XK Series, Jaguar + + + + + L300 + + + + + (CHEV) Malibu Maxx + + + + + (LEXS) SC400, Lexus; (VOLV) S40, Volvo + + + + + (FORD) F-150XLT (has third door on passenger side), Ford (see English, French, German, and Italian Ford) + + + + + (DKW) Audi, DKW + + + + + (MG) MGC/GT, MG + + + + + (MERC) Mystique, Mercury + + + + + (BMW) 740i, BMW + + + + + (DODG) Durango, Dodge + + + + + (DODG) Pioneer, Dodge + + + + + (PEUG) 405, Peugeot + + + + + (INFI) M30, Infiniti + + + + + (CHEV) C/K 2500, Chevrolet + + + + + (RENA) R-17, Renault + + + + + (CITR) 2CV, Citroen + + + + + (CHEV) Chevy II, Chevrolet + + + + + Reno + + + + + (AMER) AMX, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (MERZ) CL600, Mercedes-Benz + + + + + (CHRY) Le Baron (for vehicle year 1978 or later), Chrysler + + + + + (FORD) Country Squire, Ford (see English, French, German, and Italian Ford); (PLYM) Conquest (vehicle years 1984-1986), Plymouth + + + + + (LAMO) Espada, Lamborghini; (LOTU) Esprit, Lotus; (PANZ) Esperante, Panoz + + + + + (DATS) 200SX, Datsun + + + + + (ENGF) Perfect, English Ford (British) + + + + + (PEUG) 403, Peugeot + + + + + (SUBA) DL, Subaru; (VOLV) DL, Volvo + + + + + (MITS) Mighty Max, Mitsubishi; (TOYT) Matrix (sport wagon), Toyota + + + + + (OLDS) Omega, Oldsmobile + + + + + (GMC) Envoy, General Motors Corp.; (VAUX) Envoy, Vauxhall + + + + + (MERC) Marauder, Mercury + + + + + (BENT) Turbo R, Bentley + + + + + (MERZ) 240 Series, Mercedes-Benz; (NISS) 240SX, Nissan; (VOLV) 240 Series, Volvo + + + + + Trucks (including heavy-duty trucks, buses, motorized homes, etc.) + + + + + (MAZD) 626, Mazda + + + + + (ALFA) GTV6 2.5, Alfa Romeo + + + + + SL65 + + + + + (RENA) Dauphine, Renault + + + + + (HOND) Civic (and CRX), Del Sol, Honda + + + + + (SUBA) GL, Subaru; (VOLV) GL, Volvo + + + + + (ASTO) DB-5, Aston Martin + + + + + (MAZD) 618, Mazda + + + + + (FORD) Explorer, Ford (see English, French, German, and Italian Ford) + + + + + (VOLK) Rabbit, Volkswagen + + + + + (MERZ) ML350, Mercedes-Benz; (INFI) M35, M35 Sport, M35 X, Infiniti + + + + + (MAZD) 808 Series (piston engine), Mazda + + + + + (MERZ) C230, Mercedes-Benz + + + + + (PONT) 2+2, Pontiac + + + + + (HYUN) Tiburon, Hyundai + + + + + (MERZ) Gelaendewagen (G-Wagen), Mercedes-Benz + + + + + (DODG) Stratus, Dodge; (FORD) Starliner, Ford (see English, French, German, and Italian Ford); (LINC) Standard, Lincoln-Continental; (MITS) Starion, Mitsubishi; (NASH) Statesman, Nash; (NISS) Stanza, Nissan; (OLDS) Starfire, Oldsmobile; (PONT) Star Chief, Pontiac; (PORS) Standard, Porsche; (SUBA) Standard, Subaru; (TOYT) Starlet, Toyota; (TRIU) Stag, Triumph + + + + + (IMPE) Le Baron (for vehicle year thru 1975), Imperial (for vehicle years 1955-1983, use VMA/IMPE; for vehicle years prior to 1955 and vehicle years 1990-1993, see make Chrysler) + + + + + (MERZ) G55, Mercedes-Benz + + + + + (PLYM) Cranbrook, Plymouth + + + + + (PEUG) 604, Peugeot + + + + + (ALFA) Spider Series, Alfa Romeo; (AMER) Spirit, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (DODG) Spirit, Dodge; (FIAT) Spider Series, Fiat; (NSU) Spider (Wankel), Nsu Prinz; (PINI) Spidereuropa, Pinifarina; (TRIU) Spitfire, Triumph + + + + + Armada (Formerly Pathfinder Armada) + + + + + (VOLV) 245 Series, Volvo + + + + + (KIA) Avella, Kia Motors Corp.; (TOYT) Avensis, Toyota + + + + + (HYUN) XG, Hyundai + + + + + (MORG) Plus 8 Series, Morgan + + + + + (DATS) LiL Hustler, Datsun + + + + + (PLYM) Trail Duster, Plymouth + + + + + (MITS) Endeavor, Mitsubishi + + + + + (TOYT) Corolla, Toyota + + + + + (ALFA) Giulietta, Alfa Romeo + + + + + (JENS) Interceptor, Jensen; (ACUR) Integra, Acura; (DODG) Intrepid, Dodge; (OLDS) Intrigue, Oldsmobile; (CHRY) Intrepid, Chrysler + + + + + (AERO) Blimp + + + + + (LOTU) Europa, Lotus; (VOLK) Eurovan, Volkswagen + + + + + (OPEL) Luxus, Opel (imported by Buick); (VANG) Luxury, Vanguard (Canada) + + + + + (MG) Midget, MG + + + + + (ATV) Tracks and Wheels; (SNOW) Tracks and Wheels, Snowmobiles + + + + + (AERO) Propeller Driven; (FORD) Probe, Ford (see English, French, German, and Italian Ford); (MAZD) Familia, Protege, Mazda + + + + + (BMW) X5, BMW + + + + + (MERZ) SLK320 Coupe/Roadster, Mercedes-Benz + + + + + (VOLK) 113, Volkswagen + + + + + (CHEV) Kingswood, Chevrolet + + + + + (MORR) Traveller, Morris + + + + + (PEUG) 404, Peugeot + + + + + (CHRY) Laser, Chrysler; (FORD) Laser (foreign and Puerto Rican distribution only), Ford (see English, French, German, and Italian Ford); (PLYM) Laser, Plymouth + + + + + (PLYM) Prowler, Plymouth + + + + + (BUIC) Ranier, Buick + + + + + (MAZD) B2200, Mazda + + + + + (GMC) Safari, General Motors Corp.; (PONT) Safari, Pontiac + + + + + (MG) MGA, MG + + + + + (PONI) Firefly, Pontiac (Canadian) (Also see make Pontiac) + + + + + (TRIU) TR7, Triumph + + + + + (SUBA) Justy, Subaru + + + + + (SNOW) Skis and Tracks, Snowmobiles + + + + + (CHRY) PT Cruiser, Chrysler; (STU) Cruiser, Studebaker + + + + + (PLYM) Caravelle, Plymouth + + + + + (CHEV) Cobal, Chevrolet + + + + + (ISU) Amigo, Isuzu + + + + + (CHEV) Uplander (Crossover Sport Van), Chevrolet + + + + + (BMW) 540, BMW + + + + + (DODG) Ram 3500 (pickup), Dodge; (LEXS) RX350, Lexus; (MERZ) R350 (Sport Wagon), Mercedes Benz + + + + + Lancer Evolution + + + + + (EXCL) SS Roadster, Excalibur; (CHEV) SSR, Chevrolet + + + + + (CHEV) C/K 3500, Chevrolet; (MERZ) C350, Mercedes Benz + + + + + HU3 + + + + + (BMW) 323i, BMW; (MAZD) 323, Mazda + + + + + (CHEV) Lumina APV, Chevrolet + + + + + (ACAD) Beaumont Series, Acadian (GM of Canada) + + + + + (JEEP) J-20, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) J-20, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) J-20, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (PONT) J2000, Pontiac + + + + + (MAZD) 6 (Six), Mazda + + + + + (MG) TF Series, MG + + + + + Azera + + + + + (MERC) Lynx, Mercury + + + + + (HYUN) Pony, Hyundai + + + + + (PONT) Fiero, Pontiac + + + + + (METE) Rideau, Meteor (Canadian Mercury) + + + + + (OLDS) F-85, Oldsmobile + + + + + (INFI) G20, Infiniti + + + + + (PACK) Balboa, Packard + + + + + (JAGU) 3.4 Litre, Jaguar + + + + + (CHEV) Venture (minivan), Chevrolet; (FREF) Vendome, French Ford; (PONT) Ventura, Pontiac + + + + + (CHEV) Aveo, Chevrolet + + + + + (BREM) Maxi-Taxi, Bremen Sport Equipment, Inc. (Bremen, IN); (DATS) Maxima, Datsun; (NISS) Maxima, Nissan + + + + + (PLYM) Arrow (imported), Plymouth + + + + + (TRIU) Herald, Triumph + + + + + (AMER) Medallion (through vehicle year 1987), American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (EGIL) Medallion (vehicle year 1988), Eagle; (MERC) Medalist, Mercury + + + + + (MODE) Model A, Model A and Model T Motor Car Reproduction Corp. + + + + + (VOLV) XC70, Volvo + + + + + (CHEV) C/K 1500, Chevrolet + + + + + (PORS) 356, Porsche + + + + + (ALFA) Alfetta GT, Alfa Romeo + + + + + (LINC) LS, Lincoln-Continental; (STRN) LS-Sedan, Saturn + + + + + (MERZ) E300, Mercedes-Benz + + + + + (LAMO) Jarma, Lamborghini + + + + + (SUBA) XT Coupe, Subaru + + + + + (JAGU) "E" Type, Jaguar + + + + + (AMGN) Hummer, AM General Corp.; (HUMM) Hummer, HUMMER + + + + + (OLDS) Cutlass/Ciera, Supreme, Oldsmobile + + + + + (ALFA) Arna, Alfa Romeo; (AMER) American, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (BENT) Arnage, Bentley; (RAMB) American (AME for reference only), Rambler (mfd. prior to 1966; 1966 and later Ramblers - see make American Motors) + + + + + (CHEV) Luv, Chevrolet + + + + + (PONT) Grand Ville, Pontiac + + + + + (FORD) Brewster (antique vehicle), Ford + + + + + (KIA) Sorrento, Kia + + + + + (PLYM) Breeze, Plymouth + + + + + (MASE) Indy, Maserati + + + + + (NISS) NX, Nissan + + + + + (ZMCC) Golden Spirit, Zimmer Motor Car Co. + + + + + Freestyle + + + + + (JEEP) CJ-5, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) CJ-5, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) CJ-5, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (DODG) Ram 2500 (pickup), Dodge + + + + + (CHEV) Confederate (antique vehicle), Chevrolet + + + + + (CADI) Eldorado, Cadillac + + + + + (SPEC) Motorized Ride-On Toys + + + + + (BUIC) Rendezvous, Buick + + + + + (ENGF) Mark II, English Ford (British); (LINC) Mark II, Lincoln-Continental + + + + + (BMW) 318i, BMW + + + + + (FERR) 208, Ferrari + + + + + (KIA) Sephia, Kia Motors Corp. + + + + + (MAZD) Miata (MX5), Merlot Mica (Miata), Mazda + + + + + (BEJE) Gang Star, Beijing Jeep + + + + + (BMC) Princess, B M C; (CHEV) Prism (beginning vehicle year 1998), Chevrolet; (GEO) Prizm, GEO; (NSU) Prinz, Nsu Prinz; (TOYT) Prius, Toyota + + + + + (FORD) Country Sedan, Ford (see English, French, German, and Italian Ford); (METE) Country Sedan, Meteor (Canadian Mercury) + + + + + (LNCI) Flavia, Lancia + + + + + (SUBA) Brat, Subaru + + + + + (FORD) Sunliner, Ford (see English, French, German, and Italian Ford); (PLYM) Sundance, Plymouth; (PONT) Sunbird, Pontiac; (SOLE) Sunrise, Solectria + + + + + (INFI) QX56, Infiniti + + + + + (MAZD) 929, Mazda + + + + + (JAGU) XK8, Jaguar + + + + + (DODG) Raider, Dodge + + + + + (LAMO) Countach, Lamborghini; (MERC) Cougar, Mercury + + + + + (FORD) 7 Litre, Ford (see English, French, German, and Italian Ford) + + + + + (PONT) Montana, Pontiac + + + + + (PACK) Patrician, Packard; (JEEP) Patriot, Jeep + + + + + (MERZ) 560 Series, Mercedes-Benz + + + + + (MG) Sports Sedan, MG + + + + + (NISS) Quest, Nissan + + + + + (FORD) Frontenac, Ford (see English, French, German, and Italian Ford) + + + + + (AUDI) A4, Audi + + + + + (SIM) Etoile, Simca + + + + + (LEXS) LX470, Lexus + + + + + (JAGU) 420, Jaguar; (MASE) 4200 GT, Maserati; (MERZ) 420 Series, Mercedes-Benz + + + + + (JAGU) XJ8, Jaguar + + + + + (BMW) 2800 Series, BMW; (DATS) 280Z, Datsun; (MERZ) 280 Series, Mercedes-Benz; (MERZ) SLK280, Mercedes - Benz; (ISU) i280, Isuzu + + + + + (MITS) Outlander, Mitsubishi ; (STRN) Outlook, Saturn; (SUBA) Outback, Subaru + + + + + (OLDS) Standard, Oldsmobile + + + + + (MONA) Richelieu, Monarch + + + + + (CHEV) Colorado, Chevrolet + + + + + (VOLK) Microbus, Volkswagen + + + + + (OLDS) Silhouette, Oldsmobile + + + + + (DODG) Ram 2500 (van), Dodge + + + + + (JEEP) Dakar, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) Dakar, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) Dakar, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (DODG) Dakota, Dodge + + + + + (BUIC) California, Buick; (CADI) Calais, Cadillac; (OLDS) Calais, Oldsmobile; (DODG) Caliber, Dodge + + + + + (DATS) 311, Datsun + + + + + (VOLV) PV444, Volvo + + + + + (CHEV) Citation, Chevrolet; (EDSE) Citation, Edsel + + + + + (INFI) M45, Infiniti + + + + + 360 Challenge Stradale + + + + + (MERZ) E500, Mercedes-Benz + + + + + (JAGU) XJ40, Jaguar + + + + + (PONT) Firebird, Firehawk, Trans Am (Firebird), Pontiac + + + + + (INFI) FX35, Infiniti + + + + + (EDSE) Villager, Edsel; (MERC) Villager, Mercury + + + + + (SUZI) Samurai, Suzuki + + + + + (FORD) Think City (Elec.Veh. Model Year 2002), Ford + + + + + (GAZ) Volga, GAZ; (PLYM) Volare, Plymouth + + + + + (AERO) Helicopters and other Rotor Wing (or rotary- blade drive aircraft) + + + + + (TOYT) Tacoma, Toyota + + + + + (CHEV) Corsica, Chevrolet + + + + + (AMER) Ambassador, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (NASH) Ambassador, Nash; (RAMB) Ambassador, Rambler (mfd. prior to 1966; 1966 and later Ramblers - see make American Motors) + + + + + (ROL) Silver Seraph, Rolls-Royce + + + + + (CADI) Fleetwood, Cadillac; (CHEV) Fleetline, Chevrolet + + + + + (MAZD) MX3, Mazda + + + + + (ROV) Rover 45, Rover + + + + + (MASE) Coupe/Coupe GT, Maserati + + + + + (PONT) Grand AM, Pontiac + + + + + (DODG) Demon (Dart), Dodge + + + + + (DODG) Wayfarer, Dodge + + + + + DB9 + + + + + (FORD) Fairmont, Ford (see English, French, German, and Italian Ford) + + + + + (FIAT) 128 Series, Fiat + + + + + (TOYT) Sequoia, Toyota + + + + + (KIA) RIO, Kia + + + + + Fit + + + + + (VOLK) Kombi, Volkswagen + + + + + (BMW) 2002 Series, BMW + + + + + (JAGU) Vanden Plas, Jaguar; (ASTO) Vantage, Aston Martin; (GMC) Vandura, General Motors Corp. + + + + + (PORS) 912, Porsche + + + + + (JEEP) Wrangler, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) Wrangler, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) Wrangler, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (BMW) 650Ci, BMW; (BMW) 650i, BMW + + + + + (LNDR) Defender 90, Defender 110, Land Rover + + + + + (JAGU) 2.4 Litre, Jaguar + + + + + (AVTI) Series B, Avanti + + + + + (ASVE) Assembled Vehicles + + + + + (ZMCC) Quick Silver, Zimmer Motor Car Co. + + + + + (BORG) Isabella, Borgward + + + + + (PORS) 944, Porsche + + + + + (VOLV) 780 Series, Volvo + + + + + (FERR) Barchetta (or F130), F130 (Barchetta), Ferrari; (PLYM) Barracuda, Plymouth + + + + + (MERZ) ML320 (sport utility), Mercedes-Benz + + + + + (MERZ) CLK350, Mercedes Benz + + + + + (LINC) LS6, Lincoln-Continental + + + + + (MERZ) CL500, Mercedes-Benz + + + + + SLK55 + + + + + (MESS) Tiger, Messerschmitt; (ROOT) Tiger, Rootes; (SUNB) Tiger, Sunbeam + + + + + (MAZD) RX2 (rotary engine), Mazda + + + + + (AMER) Rambler American, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (ENGF) Zodiac, English Ford (British) + + + + + (BMW) 528i, BMW + + + + + + + + + + + + + + + + TrencherAlso known as a ditcher + + + + + Potato Digger + + + + + Garbage or Refuse + + + + + Asphalt Distributor + + + + + Welder + + + + + Utility + + + + + Stump Grinder + + + + + PaverAlso known as a finisher or roadsurfacer. + + + + + Drill, RockAlso known as a drifter drill. + + + + + Hardtop, 4 door. + + + + + Brush Chipper + + + + + Loader + + + + + Beverage Truck + + + + + Moped + + + + + Flatbed or Platform + + + + + HouseMobile home + + + + + Harvester + + + + + Corn Picker + + + + + Backhoe + + + + + Touring Car. + + + + + Twin-Engine, Propeller + + + + + Construction Signal + + + + + Blimp + + + + + Mower, Riding or Garden Tractor + + + + + Tanker + + + + + ShovelAlso known as a power or steamshovel. + + + + + Crane + + + + + SweeperAlso known as a power broom usedto clean streets and parking lots + + + + + Enclosed Body, Removable Enclosure + + + + + GeneratorEnter as a part, if not permanentlymounted. + + + + + Lift Boom (personnel)Also known as an orchard or cherrypicker. + + + + + Log SkidderAlso known as a grappler skidder. + + + + + Ambulance + + + + + Hopper + + + + + Pickup with mounted camperenter as a part or add-on part + + + + + Polealso known as logging trailer-usedto transport logs and pipes + + + + + Lowboy or Lowbed + + + + + Minicycle + + + + + Flotation ChassisAlso known as implement carrier + + + + + Hatchback, 4 door. + + + + + Light Tower (Typically used around or near construction sites and powered by a generator.) + + + + + Enclosed Body, Nonremovableenclosure + + + + + Pallet + + + + + Semiuse only when the specific bodystyle of the semi-trailer isunknown + + + + + Snowmobile + + + + + Mower-ConditionerFor grass or hay + + + + + Armored Truck + + + + + Campingalso known as camper or traveltrailer + + + + + Dump Trailer + + + + + LogUsed to transport logs, poles, orpipe. May be self loading or mayhave a grappling arm or jammer. + + + + + SEDAN, 4 DOOR; TRUCK/PICK-UP 4 DOOR + + + + + Field ChopperAlso known as a sileage cutter + + + + + Snowblower + + + + + Retractable Hardtop. + + + + + Boat + + + + + Bus + + + + + Helicopter + + + + + Coupe. Use this code when unable to determine if vehicle is a two-door sedan or a two-door hardtop. + + + + + Vacuum CleanerHeavy duty ride-on type enter as apart, if not permanently mounted + + + + + Bulk AgricultureBulk transport of raw vegetables.May have live floor, belt, or tiphead. + + + + + Tractor Truck, Gasoline + + + + + Ultralight (including hang gliders) + + + + + Motorbike + + + + + Flatrack + + + + + Tractor Truck, Diesel + + + + + Well Driller + + + + + Detasseling Equipment + + + + + Tractor, Wheel Type + + + + + CombineAlso known as a grain harvester + + + + + Sprayer + + + + + SedanUse this code only if the number ofdoors is unknown. + + + + + Unpublished style of ConstructionEquipmentExplain style in the MIS field + + + + + Backhoe/Loader + + + + + SawUsed in cutting asphalt, concrete,or masonry. + + + + + Horse + + + + + Refrigerated Vanalso known as reefer + + + + + Wagonalso known as Gondola, Cart, orContainer + + + + + Stake or Rack + + + + + Striper + + + + + Tri-Engine, Propeller + + + + + Wood Splitter + + + + + Auto Tow DollyTwo-wheel towing equipment + + + + + Glass Rack + + + + + Hydraulic Dump + + + + + Sailplane + + + + + Lunch Wagon + + + + + Hot Air Ballon + + + + + Tractor, Track Type + + + + + Windrower + + + + + Concrete mixer + + + + + Air CompressorShould be entered as a part if notif not permanently mounted. + + + + + Hardtop. This code is used only when the number of doors is unknown. + + + + + Auxiliary Dolly + + + + + Prime MoverAlso known as a road packer. + + + + + Bulldozer + + + + + Carry-allrugged trail and pleasure vehicles(e.g., Blazaer, Bronco, Jeep, etcetc.) + + + + + Livestock Rack + + + + + Multi-wheeled vehicleManufactured for off-road use, butbut licensed as street legal,e.g., 3-wheel mo + + + + + Single-Engine, Propeller + + + + + Chassis and Cab + + + + + 3-DoorSome truck makes will have twodoors on the drivers side andone on the passenger side. Otherm + + + + + Pickup + + + + + Convertible + + + + + Hay Baler + + + + + Motorcycle Trailer + + + + + Grain + + + + + Motorscooter + + + + + Hammer + + + + + RollerAlso known as a compactor. + + + + + Grader + + + + + Vanette + + + + + Minibike + + + + + Converter Gear + + + + + Roadster. + + + + + Fire Truck + + + + + Sedan, 2 door + + + + + Cotton Picker + + + + + Coach. + + + + + Law Enforcement + + + + + Station Wagon + + + + + Open Body + + + + + Hay Bale Loader + + + + + Tri-Engine, Jet + + + + + Limousine + + + + + Multi-Engine, Propeller + + + + + Multi-Engine, Jet + + + + + Fork LiftAlso known as a lift truck. + + + + + Cotton Stripper + + + + + Tent Trailer + + + + + Tow Truck/Wrecker + + + + + Search and Rescue + + + + + Vanincludes open or closed top boxtrailers + + + + + Motorized Home + + + + + Single-Engine, Jet + + + + + Scraper + + + + + Aerial Platform + + + + + Hardtop, 2 door. + + + + + Hearse + + + + + Biohazard + + + + + Fertilizer SpreaderEnter as a part if not permanentlymounted + + + + + Dump + + + + + Unpublished Style of Farm Equipment + + + + + ExcavatorAlso known as a digger. + + + + + Hatchback/Fastback. Use this code for a vehicle that has a rear door, and the number of side doors is unknown. + + + + + Twin-Engine, Jet + + + + + Hatchback, 2 door. + + + + + Tree HarvesterAlso known as a feller-buncher + + + + + Van Camper + + + + + Auto Carrier + + + + + Motorcycle + + + + + Buggy, ConcreteAlso known as a power cart. + + + + + + + + + + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\constraint\niem\fips_10-4\2.0\fips_10-4.xsd + + Countries, dependencies, areas of special sovereignty, and their principal administrative divisions from the Federal Information Processing Standards (FIPS) 10-4. + + true + + + + + + + + + PORTUGAL + + + + + WEST BANK + + + + + BENIN + + + + + ANTARCTICA + + + + + AMERICAN SAMOA + + + + + PAKISTAN + + + + + SURINAME + + + + + UNDERSEA FEATURES + + + + + COSTA RICA + + + + + ALGERIA + + + + + WALLIS AND FUTUNA + + + + + GUYANA + + + + + EUROPA ISLAND + + + + + ITALY + + + + + TOGO + + + + + PERU + + + + + COLOMBIA + + + + + MALAWI + + + + + FRENCH POLYNESIA + + + + + VANUATU + + + + + SWITZERLAND + + + + + LIBYA + + + + + ARGENTINA + + + + + SEYCHELLES + + + + + GERMANY + + + + + MARSHALL ISLANDS + + + + + BRUNEI + + + + + SOMALIA + + + + + TURKEY + + + + + BAKER ISLAND + + + + + CAMBODIA + + + + + HUNGARY + + + + + HONDURAS + + + + + ZIMBABWE + + + + + ASHMORE AND CARTIER ISLANDS + + + + + CHINA + + + + + FRANCE + + + + + INDIA + + + + + SINGAPORE + + + + + FINLAND + + + + + RWANDA + + + + + OCEANS + + + + + BURMA + + + + + ESTONIA + + + + + COTE D'IVOIRE + + + + + CAPE VERDE + + + + + TONGA + + + + + CAYMAN ISLANDS + + + + + JAMAICA + + + + + CONGO + + + + + ALBANIA + + + + + LITHUANIA + + + + + TAJIKISTAN + + + + + MALI + + + + + NAVASSA ISLAND + + + + + SPRATLY ISLANDS + + + + + TURKMENISTAN + + + + + SVALBARD + + + + + RUSSIA + + + + + CUBA + + + + + BELARUS + + + + + EAST TIMOR + + + + + GABON + + + + + HONG KONG + + + + + BULGARIA + + + + + GUINEA + + + + + JOHNSTON ATOLL + + + + + IRAN + + + + + UGANDA + + + + + TRINIDAD AND TOBAGO + + + + + NETHERLANDS + + + + + JAPAN + + + + + SWEDEN + + + + + LEBANON + + + + + SAUDI ARABIA + + + + + MACAU + + + + + PUERTO RICO + + + + + ROMANIA + + + + + IRAQ + + + + + SAMOA + + + + + CZECH REPUBLIC + + + + + GHANA + + + + + FIJI + + + + + SPAIN + + + + + MOZAMBIQUE + + + + + CENTRAL AFRICAN REPUBLIC + + + + + UZBEKISTAN + + + + + GUAM + + + + + UNITED STATES VIRGIN ISLANDS + + + + + AZERBAIJAN + + + + + ETHIOPIA + + + + + NORWAY + + + + + JERSEY + + + + + JARVIS ISLAND + + + + + IRELAND + + + + + NO MAN'S LAND + + + + + BAHRAIN + + + + + EQUATORIAL GUINEA + + + + + COMOROS + + + + + LIECHTENSTEIN + + + + + GAZA STRIP + + + + + ISLE OF MAN + + + + + PARACEL ISLANDS + + + + + TUNISIA + + + + + EL SALVADOR + + + + + VENEZUELA + + + + + MEXICO + + + + + LATVIA + + + + + AUSTRIA + + + + + GUATEMALA + + + + + PHILIPPINES + + + + + HOWLAND ISLAND + + + + + CHAD + + + + + QATAR + + + + + CORAL SEA ISLANDS + + + + + KUWAIT + + + + + PALMYRA ATOLL + + + + + PAPUA NEW GUINEA + + + + + MIDWAY ISLANDS + + + + + BANGLADESH + + + + + MAURITANIA + + + + + ZAMBIA + + + + + PANAMA + + + + + BRITISH VIRGIN ISLANDS + + + + + VATICAN CITY + + + + + MAURITIUS + + + + + ERITREA + + + + + CROATIA + + + + + SAINT LUCIA + + + + + GIBRALTAR + + + + + VIETNAM + + + + + BRITISH INDIAN OCEAN TERRITORY + + + + + TAIWAN + + + + + GEORGIA + + + + + HAITI + + + + + LESOTHO + + + + + NORTH KOREA + + + + + MADAGASCAR + + + + + BURKINA FASO + + + + + GRENADA + + + + + TUVALU + + + + + NEW ZEALAND + + + + + BHUTAN + + + + + BOLIVIA + + + + + SWAZILAND + + + + + NIGERIA + + + + + ISRAEL + + + + + KINGMAN REEF + + + + + SIERRA LEONE + + + + + EGYPT + + + + + HEARD ISLAND AND MCDONALD ISLANDS + + + + + BAHAMAS, THE + + + + + JORDAN + + + + + CAMEROON + + + + + GREENLAND + + + + + NETHERLANDS ANTILLES + + + + + DOMINICA + + + + + JUAN DE NOVA ISLAND + + + + + ICELAND + + + + + SENEGAL + + + + + ARUBA + + + + + WESTERN SAHARA + + + + + CANADA + + + + + SAINT KITTS AND NEVIS + + + + + BASSAS DA INDIA + + + + + NAURU + + + + + SOLOMON ISLANDS + + + + + TURKS AND CAICOS ISLANDS + + + + + MONACO + + + + + INDONESIA + + + + + SAINT VINCENT AND THE GRENADINES + + + + + FRENCH SOUTHERN AND ANTARCTIC LANDS + + + + + COCOS (KEELING) ISLANDS + + + + + MARTINIQUE + + + + + ANGOLA + + + + + FAROE ISLANDS + + + + + GLORIOSO ISLANDS + + + + + GREECE + + + + + BOUVET ISLAND + + + + + SOUTH AFRICA + + + + + PALAU + + + + + TOKELAU + + + + + SAINT PIERRE AND MIQUELON + + + + + AUSTRALIA + + + + + SYRIA + + + + + NAMIBIA + + + + + FRENCH GUIANA + + + + + REUNION + + + + + BOTSWANA + + + + + KIRIBATI + + + + + MAYOTTE + + + + + BELIZE + + + + + NEW CALEDONIA + + + + + ARMENIA + + + + + OMAN + + + + + NIGER + + + + + ECUADOR + + + + + BARBADOS + + + + + MOLDOVA + + + + + NICARAGUA + + + + + SUDAN + + + + + BURUNDI + + + + + NORFOLK ISLAND + + + + + GUADELOUPE + + + + + SAINT HELENA + + + + + GUERNSEY + + + + + MACEDONIA + + + + + WAKE ISLAND + + + + + CHILE + + + + + TROMELIN ISLAND + + + + + ANDORRA + + + + + MALDIVES + + + + + KYRGYZSTAN + + + + + TANZANIA + + + + + NEPAL + + + + + UNITED KINGDOM + + + + + BOSNIA AND HERZEGOVINA + + + + + NIUE + + + + + MALTA + + + + + ANTIGUA AND BARBUDA + + + + + MONTENEGRO + + + + + URUGUAY + + + + + UKRAINE + + + + + UNITED ARAB EMIRATES + + + + + JAN MAYEN + + + + + LUXEMBOURG + + + + + PARAGUAY + + + + + GUINEA-BISSAU + + + + + UNITED STATES + + + + + KENYA + + + + + SRI LANKA + + + + + MOROCCO + + + + + KAZAKHSTAN + + + + + THAILAND + + + + + GAMBIA, THE + + + + + CYPRUS + + + + + CONGO, DEMOCRATIC REPUBLIC OF THE + + + + + SOUTH GEORGIA AND THE SOUTH SANDWICH ISLANDS + + + + + BRAZIL + + + + + SERBIA + + + + + DJIBOUTI + + + + + CLIPPERTON ISLAND + + + + + MALAYSIA + + + + + AFGHANISTAN + + + + + POLAND + + + + + YEMEN + + + + + MONTSERRAT + + + + + PITCAIRN ISLANDS + + + + + DENMARK + + + + + SOUTH KOREA + + + + + ANGUILLA + + + + + SAN MARINO + + + + + BERMUDA + + + + + LIBERIA + + + + + DOMINICAN REPUBLIC + + + + + CHRISTMAS ISLAND + + + + + MONGOLIA + + + + + SAO TOME AND PRINCIPE + + + + + FALKLAND ISLANDS (ISLAS MALVINAS) + + + + + SLOVAKIA + + + + + MICRONESIA, FEDERATED STATES OF + + + + + COOK ISLANDS + + + + + SLOVENIA + + + + + LAOS + + + + + NORTHERN MARIANA ISLANDS + + + + + BELGIUM + + + + + + + + + + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\constraint\niem\fips_6-4\2.0\fips_6-4.xsd + + Counties and equivalent entities of the U.S., its possessions, and associated areas from the Federal Information Processing Standards (FIPS) 6-4. + + true + + + + + + + + + (02) Ketchikan Gateway, Alaska; (68) Jemo Island, Marshall Islands + + + + + (48) Young, Texas + + + + + (13) Morgan, Georgia; (21) Shelby, Kentucky; (29) Sullivan, Missouri; (48) Hemphill, Texas + + + + + (02) Southeast Fairbanks, Alaska + + + + + (48) Potter, Texas + + + + + (13) Treutlen, Georgia; (48) La Salle, Texas + + + + + (51) Hampton, Virginia + + + + + (48) Somervell, Texas + + + + + (13) Thomas, Georgia; (48) Knox, Texas + + + + + (13) White, Georgia; (48) McMullen, Texas + + + + + (01) Washington, Alabama; (05) Searcy, Arkansas; (12) Wakulla, Florida; (13) Gordon, Georgia; (17) Menard, Illinois; (18) Posey, Indiana; (19) Mills, Iowa; (20) Morton, Kansas; (21) Lee, Kentucky; (26) Ogemaw, Michigan; (27) Renville, Minnesota; (28) Smith, Mississippi; (29) Mercer, Missouri; (31) Nuckolls, Nebraska; (37) New Hanover, North Carolina; (39) Pickaway, Ohio; (40) Roger Mills, Oklahoma; (42) Westmoreland, Pennsylvania; (46) Walworth, South Dakota; (47) Morgan, Tennessee; (48) Donley, Texas; (55) Washburn, Wisconsin; (72) San Lorenzo, Puerto Rico + + + + + (48) Real, Texas; (68) Toke, Marshall Islands + + + + + (01) Autauga, Alabama; (04) Apache, Arizona; (05) Arkansas, Arkansas; (06) Alameda, California; (08) Adams, Colorado; (09) Fairfield, Connecticut; (10) Kent, Delaware; (11) District of Columbia, District of Columbia; (12) Alachua, Florida; (13) Appling, Georgia; (15) Hawaii, Hawaii; (16) Ada, Idaho; (17) Adams, Illinois; (18) Adams, Indiana; (19) Adair, Iowa; (20) Allen, Kansas; (21) Adair, Kentucky; (22) Acadia, Louisiana; (23) Androscoggin, Maine; (24) Allegany, Maryland; (25) Barnstable, Massachusetts; (26) Alcona, Michigan; (27) Aitkin, Minnesota; (28) Adams, Mississippi; (29) Adair, Missouri; (30) Beaverhead, Montana; (31) Adams, Nebraska; (32) Churchill, Nevada; (33) Belknap, New Hampshire; (34) Atlantic, New Jersey; (35) Bernalillo, New Mexico; (36) Albany, New York; (37) Alamance, North Carolina; (38) Adams, North Dakota; (39) Adams, Ohio; (40) Adair, Oklahoma; (41) Baker, Oregon; (42) Adams, Pennsylvania; (44) Bristol, Rhode Island; (45) Abbeville, South Carolina; (46) Armstrong, South Dakota; (47) Anderson, Tennessee; (48) Anderson, Texas; (49) Beaver, Utah; (50) Addison, Vermont; (51) Accomack, Virginia; (53) Adams, Washington; (54) Barbour, West Virginia; (55) Adams, Wisconsin; (56) Albany, Wyoming; (72) Adjuntas, Puerto Rico + + + + + (01) Calhoun, Alabama; (04) Mohave, Arizona; (05) Carroll, Arkansas; (06) Del Norte, California; (08) Chaffee, Colorado; (09) Windham, Connecticut; (12) Charlotte, Florida; (13) Bartow, Georgia; (16) Boise, Idaho; (17) Carroll, Illinois; (18) Carroll, Indiana; (19) Boone, Iowa; (20) Butler, Kansas; (21) Boone, Kentucky; (22) Bossier, Louisiana; (23) Lincoln, Maine; (24) Cecil, Maryland; (25) Hampshire, Massachusetts; (26) Barry, Michigan; (27) Brown, Minnesota; (28) Carroll, Mississippi; (29) Benton, Missouri; (30) Chouteau, Montana; (31) Boyd, Nebraska; (32) Lander, Nevada; (33) Rockingham, New Hampshire; (34) Gloucester, New Jersey; (35) Eddy, New Mexico; (36) Chemung, New York; (37) Bertie, North Carolina; (38) Burleigh, North Dakota; (39) Brown, Ohio; (40) Caddo, Oklahoma; (41) Curry, Oregon; (42) Bradford, Pennsylvania; (45) Berkeley, South Carolina; (46) Brule, South Dakota; (47) Cannon, Tennessee; (48) Austin, Texas; (49) Emery, Utah; (50) Lamoille, Vermont; (51) Augusta, Virginia; (53) Cowlitz, Washington; (54) Clay, West Virginia; (55) Calumet, Wisconsin; (56) Goshen, Wyoming; (72) Arroyo, Puerto Rico + + + + + (13) Liberty, Georgia; (17) Tazewell, Illinois; (18) Wells, Indiana; (19) Wapello, Iowa; (20) Sheridan, Kansas; (21) Nelson, Kentucky; (29) Reynolds, Missouri; (31) Wayne, Nebraska; (37) Union, North Carolina; (47) Washington, Tennessee; (48) Gray, Texas; (51) Stafford, Virginia + + + + + (48) Victoria, Texas + + + + + (24) Baltimore City, Maryland; (29) St Louis City, Missouri; (32) Carson City, Nevada; (51) Alexandria, Virginia + + + + + (01) Randolph, Alabama; (05) Poinsett, Arkansas; (06) Ventura, California; (08) San Juan, Colorado; (12) St Lucie, Florida; (13) Fannin, Georgia; (17) McHenry, Illinois; (18) Newton, Indiana; (19) Lee, Iowa; (20) Lyon, Kansas; (21) Jefferson, Kentucky; (22) Union, Louisiana; (26) Midland, Michigan; (27) Otter Tail, Minnesota; (28) Perry, Mississippi; (29) Lewis, Missouri; (30) Yellowstone, Montana; (31) Lincoln, Nebraska; (36) Ulster, New York; (37) McDowell, North Carolina; (39) Monroe, Ohio; (40) Okmulgee, Oklahoma; (42) Somerset, Pennsylvania; (46) Sanborn, South Dakota; (47) Macon, Tennessee; (48) Dallam, Texas; (51) Lunenburg, Virginia; (55) Sauk, Wisconsin; (72) Penuelas, Puerto Rico + + + + + (68) Ujae, Marshall Islands + + + + + (01) Morgan, Alabama; (05) Ouachita, Arkansas; (06) Tehama, California; (08) Rio Blanco, Colorado; (12) Pinellas, Florida; (13) Effingham, Georgia; (17) Lee, Illinois; (18) Miami, Indiana; (19) Johnson, Iowa; (20) Leavenworth, Kansas; (21) Henry, Kentucky; (22) St Tammany, Louisiana; (26) Marquette, Michigan; (27) Nicollet, Minnesota; (28) Noxubee, Mississippi; (29) Knox, Missouri; (30) Treasure, Montana; (31) Keya Paha, Nebraska; (36) Suffolk, New York; (37) Jones, North Carolina; (38) Wells, North Dakota; (39) Medina, Ohio; (40) Noble, Oklahoma; (42) Pike, Pennsylvania; (46) Pennington, South Dakota; (47) Lincoln, Tennessee; (48) Crane, Texas; (51) Lancaster, Virginia; (54) Wetzel, West Virginia; (55) Richland, Wisconsin; (72) Naguabo, Puerto Rico + + + + + (55) Menominee, Wisconsin + + + + + (05) Van Buren, Arkansas; (13) Hancock, Georgia; (17) Ogle, Illinois; (18) St Joseph, Indiana; (19) O\Brien, Iowa; (20) Osborne, Kansas; (21) Logan, Kentucky; (26) Presque Isle, Michigan; (27) Sherburne, Minnesota; (28) Tishomingo, Mississippi; (29) Morgan, Missouri; (31) Platte, Nebraska; (37) Pender, North Carolina; (39) Ross, Ohio; (40) Tillman, Oklahoma; (47) Putnam, Tennessee; (48) El Paso, Texas; (51) Patrick, Virginia; (55) Wood, Wisconsin; (72) Utuado, Puerto Rico + + + + + (13) Newton, Georgia; (21) Taylor, Kentucky; (29) Vernon, Missouri; (48) Hill, Texas + + + + + (01) Montgomery, Alabama; (05) Newton, Arkansas; (06) Sutter, California; (08) Pueblo, Colorado; (12) Pasco, Florida; (13) Echols, Georgia; (17) Lawrence, Illinois; (18) Martin, Indiana; (19) Jefferson, Iowa; (20) Lane, Kansas; (21) Henderson, Kentucky; (22) St Mary, Louisiana; (26) Manistee, Michigan; (27) Murray, Minnesota; (28) Newton, Mississippi; (29) Johnson, Missouri; (30) Toole, Montana; (31) Keith, Nebraska; (36) Steuben, New York; (37) Johnston, North Carolina; (38) Ward, North Dakota; (39) Marion, Ohio; (40) Muskogee, Oklahoma; (42) Philadelphia, Pennsylvania; (46) Moody, South Dakota; (47) Lewis, Tennessee; (48) Cottle, Texas; (51) King William, Virginia; (54) Webster, West Virginia; (55) Racine, Wisconsin; (72) Morovis, Puerto Rico + + + + + (51) Clifton Forge, Virginia + + + + + (48) Polk, Texas + + + + + (13) Murray, Georgia; (21) Simpson, Kentucky; (29) Taney, Missouri; (48) Henderson, Texas + + + + + (48) Trinity, Texas + + + + + (68) Mili, Marshall Islands + + + + + (13) Jenkins, Georgia; (17) Saline, Illinois; (18) Vermillion, Indiana; (19) Shelby, Iowa; (20) Rush, Kansas; (21) Menifee, Kentucky; (26) Wexford, Michigan; (27) Watonwan, Minnesota; (29) Platte, Missouri; (31) Sioux, Nebraska; (37) Scotland, North Carolina; (39) Warren, Ohio; (47) Sumner, Tennessee; (48) Gaines, Texas; (51) Rockingham, Virginia + + + + + (51) Danville, Virginia + + + + + (48) Van Zandt, Texas + + + + + (13) Paulding, Georgia; (21) Trimble, Kentucky; (29) Wayne, Missouri; (48) Hopkins, Texas; (70) Ngaremlengui, Palau + + + + + (74) Kingman Reef, U.S. Minor Outlying Islands + + + + + (01) Clarke, Alabama; (04) Yavapai, Arizona; (05) Cleveland, Arkansas; (06) Imperial, California; (08) Crowley, Colorado; (12) Dade, Florida; (13) Brantley, Georgia; (16) Camas, Idaho; (17) Clay, Illinois; (18) Crawford, Indiana; (19) Calhoun, Iowa; (20) Clark, Kansas; (21) Breathitt, Kentucky; (22) Catahoula, Louisiana; (23) Somerset, Maine; (24) Harford, Maryland; (25) Suffolk, Massachusetts; (26) Calhoun, Michigan; (27) Chisago, Minnesota; (28) Clay, Mississippi; (29) Caldwell, Missouri; (30) Fallon, Montana; (31) Cass, Nebraska; (34) Monmouth, New Jersey; (35) Lea, New Mexico; (36) Delaware, New York; (37) Cabarrus, North Carolina; (38) Dunn, North Dakota; (39) Clermont, Ohio; (40) Cimarron, Oklahoma; (41) Harney, Oregon; (42) Carbon, Pennsylvania; (45) Chesterfield, South Carolina; (46) Clark, South Dakota; (47) Claiborne, Tennessee; (48) Bee, Texas; (49) Kane, Utah; (50) Windham, Vermont; (51) Brunswick, Virginia; (53) Grant, Washington; (54) Greenbrier, West Virginia; (55) Dane, Wisconsin; (56) Natrona, Wyoming; (72) Caguas, Puerto Rico + + + + + (17) Woodford, Illinois; (20) Wichita, Kansas; (21) Rockcastle, Kentucky; (29) Shannon, Missouri; (48) Harrison, Texas + + + + + (48) Waller, Texas + + + + + (60) Rose Island, American Samoa; (68) Ailuk, Marshall Islands; (75) Trust Territory of the Pacific Islands, ; (78) St. Thomas, Virgin Islands of the U.S. + + + + + (01) Cullman, Alabama; (05) Drew, Arkansas; (06) Mariposa, California; (08) Fremont, Colorado; (12) Glades, Florida; (13) Candler, Georgia; (16) Fremont, Idaho; (17) Du Page, Illinois; (18) Floyd, Indiana; (19) Clayton, Iowa; (20) Doniphan, Kansas; (21) Carter, Kentucky; (22) Grant, Louisiana; (24) Washington, Maryland; (26) Dickinson, Michigan; (27) Faribault, Minnesota; (28) Grenada, Mississippi; (29) Christian, Missouri; (30) Jefferson, Montana; (31) Dakota, Nebraska; (35) Sandoval, New Mexico; (36) Herkimer, New York; (37) Clay, North Carolina; (38) Kidder, North Dakota; (39) Erie, Ohio; (40) Dewey, Oklahoma; (41) Linn, Oregon; (42) Dauphin, Pennsylvania; (45) Georgetown, South Carolina; (46) Douglas, South Dakota; (47) Dickson, Tennessee; (48) Brewster, Texas; (49) Summit, Utah; (51) Clarke, Virginia; (53) Lincoln, Washington; (54) Lincoln, West Virginia; (55) Grant, Wisconsin; (56) Washakie, Wyoming; (72) Coamo, Puerto Rico + + + + + (01) Jefferson, Alabama; (05) Lafayette, Arkansas; (06) San Diego, California; (08) Lincoln, Colorado; (12) Leon, Florida; (13) Columbia, Georgia; (16) Owyhee, Idaho; (17) Henry, Illinois; (18) Jasper, Indiana; (19) Greene, Iowa; (20) Greenwood, Kansas; (21) Franklin, Kentucky; (22) Ouachita, Louisiana; (26) Isabella, Michigan; (27) Lac Qui Parle, Minnesota; (28) Lamar, Mississippi; (29) Gasconade, Missouri; (30) Pondera, Montana; (31) Gosper, Nebraska; (36) Orleans, New York; (37) Gates, North Carolina; (38) Ransom, North Dakota; (39) Hocking, Ohio; (40) Kingfisher, Oklahoma; (42) Lawrence, Pennsylvania; (45) Oconee, South Carolina; (46) Jerauld, South Dakota; (47) Hawkins, Tennessee; (48) Cherokee, Texas; (51) Gloucester, Virginia; (53) Whatcom, Washington; (54) Pleasants, West Virginia; (55) Marathon, Wisconsin; (68) Bokak, Marshall Islands; (72) Jayuya, Puerto Rico + + + + + (13) Telfair, Georgia; (48) Kinney, Texas + + + + + (48) Webb, Texas + + + + + (48) San Saba, Texas + + + + + (13) Richmond, Georgia; (48) Jefferson, Texas + + + + + (13) Jasper, Georgia; (17) Richland, Illinois; (18) Tipton, Indiana; (19) Ringgold, Iowa; (20) Rice, Kansas; (21) Martin, Kentucky; (26) Van Buren, Michigan; (27) Wadena, Minnesota; (28) Winston, Mississippi; (29) Pettis, Missouri; (31) Seward, Nebraska; (37) Rowan, North Carolina; (39) Union, Ohio; (47) Smith, Tennessee; (48) Franklin, Texas; (51) Richmond, Virginia + + + + + (02) Haines, Alaska; (68) Erikub, Marshall Islands; (69) Rota, Northern Mariana Islands; (70) Kayangel, Palau; (74) Howland Island, U.S. Minor Outlying Islands + + + + + (35) Cibola, New Mexico + + + + + (51) Fredericksburg, Virginia + + + + + (01) Marshall, Alabama; (05) Monroe, Arkansas; (06) Solano, California; (08) Phillips, Colorado; (12) Orange, Florida; (13) Dougherty, Georgia; (17) Knox, Illinois; (18) Madison, Indiana; (19) Iowa, Iowa; (20) Kingman, Kansas; (21) Harlan, Kentucky; (22) St John The Baptist, Louisiana; (26) Luce, Michigan; (27) Mille Lacs, Minnesota; (28) Monroe, Mississippi; (29) Jackson, Missouri; (30) Stillwater, Montana; (31) Jefferson, Nebraska; (36) Schoharie, New York; (37) Hyde, North Carolina; (38) Towner, North Dakota; (39) Lucas, Ohio; (40) Marshall, Oklahoma; (42) Northampton, Pennsylvania; (46) Mellette, South Dakota; (47) Lake, Tennessee; (48) Concho, Texas; (51) James City, Virginia; (54) Tyler, West Virginia; (55) Polk, Wisconsin; (72) Maunabo, Puerto Rico + + + + + (48) Titus, Texas + + + + + (01) St Clair, Alabama; (05) Pope, Arkansas; (06) Yuba, California; (08) Sedgwick, Colorado; (12) Sarasota, Florida; (13) Floyd, Georgia; (17) Macon, Illinois; (18) Ohio, Indiana; (19) Louisa, Iowa; (20) Marion, Kansas; (21) Johnson, Kentucky; (22) Vernon, Louisiana; (26) Monroe, Michigan; (27) Pine, Minnesota; (28) Pontotoc, Mississippi; (29) Linn, Missouri; (31) Loup, Nebraska; (36) Washington, New York; (37) Madison, North Carolina; (39) Morgan, Ohio; (40) Ottawa, Oklahoma; (42) Susquehanna, Pennsylvania; (46) Spink, South Dakota; (47) Marion, Tennessee; (48) Dawson, Texas; (51) Mathews, Virginia; (55) Shawano, Wisconsin; (72) Quebradillas, Puerto Rico + + + + + (13) Jeff Davis, Georgia; (17) Rock Island, Illinois; (18) Union, Indiana; (19) Sac, Iowa; (20) Riley, Kansas; (21) Mason, Kentucky; (26) Washtenaw, Michigan; (27) Waseca, Minnesota; (28) Yalobusha, Mississippi; (29) Phelps, Missouri; (31) Sheridan, Nebraska; (37) Rutherford, North Carolina; (39) Van Wert, Ohio; (47) Stewart, Tennessee; (48) Freestone, Texas; (51) Roanoke, Virginia + + + + + (13) Webster, Georgia; (48) McCulloch, Texas + + + + + (48) Wood, Texas + + + + + (05) Union, Arkansas; (13) Hall, Georgia; (17) Moultrie, Illinois; (18) Rush, Indiana; (19) Muscatine, Iowa; (20) Osage, Kansas; (21) Livingston, Kentucky; (26) Ottawa, Michigan; (27) Scott, Minnesota; (28) Tippah, Mississippi; (29) Montgomery, Missouri; (31) Pierce, Nebraska; (37) Pasquotank, North Carolina; (39) Richland, Ohio; (40) Texas, Oklahoma; (47) Polk, Tennessee; (48) Ellis, Texas; (51) Page, Virginia; (55) Winnebago, Wisconsin; (72) Trujillo Alto, Puerto Rico + + + + + (13) Pierce, Georgia; (21) Washington, Kentucky; (29) Wright, Missouri; (48) Hudspeth, Texas + + + + + (48) Milam, Texas + + + + + (51) Manassas, Virginia + + + + + (01) Winston, Alabama; (05) Sevier, Arkansas; (12) Washington, Florida; (13) Greene, Georgia; (17) Monroe, Illinois; (18) Putnam, Indiana; (19) Monona, Iowa; (20) Neosho, Kansas; (21) Letcher, Kentucky; (26) Osceola, Michigan; (27) Rock, Minnesota; (28) Sunflower, Mississippi; (29) Mississippi, Missouri; (31) Pawnee, Nebraska; (37) Onslow, North Carolina; (39) Portage, Ohio; (40) Seminole, Oklahoma; (42) York, Pennsylvania; (46) Washington, South Dakota; (47) Overton, Tennessee; (48) Eastland, Texas; (51) Northumberland, Virginia; (55) Waukesha, Wisconsin; (72) Santa Isabel, Puerto Rico + + + + + (01) Colbert, Alabama; (05) Crawford, Arkansas; (06) Lake, California; (08) Dolores, Colorado; (12) Escambia, Florida; (13) Burke, Georgia; (16) Clark, Idaho; (17) Crawford, Illinois; (18) De Kalb, Indiana; (19) Cerro Gordo, Iowa; (20) Comanche, Kansas; (21) Caldwell, Kentucky; (22) East Baton Rouge, Louisiana; (24) Prince George\s, Maryland; (26) Chippewa, Michigan; (27) Cottonwood, Minnesota; (28) De Soto, Mississippi; (29) Carroll, Missouri; (30) Garfield, Montana; (31) Cheyenne, Nebraska; (32) White Pine, Nevada; (34) Salem, New Jersey; (35) Mora, New Mexico; (36) Franklin, New York; (37) Caswell, North Carolina; (38) Golden Valley, North Dakota; (39) Crawford, Ohio; (40) Cotton, Oklahoma; (41) Josephine, Oregon; (42) Clearfield, Pennsylvania; (45) Dillon, South Carolina; (46) Custer, South Dakota; (47) Crockett, Tennessee; (48) Borden, Texas; (49) Rich, Utah; (51) Caroline, Virginia; (53) King, Washington; (54) Harrison, West Virginia; (55) Dunn, Wisconsin; (56) Sheridan, Wyoming; (72) Catano, Puerto Rico + + + + + (70) Ngatpang, Palau + + + + + (05) Yell, Arkansas; (13) Heard, Georgia; (17) Pike, Illinois; (18) Starke, Indiana; (19) Plymouth, Iowa; (20) Pottawatomie, Kansas; (21) McLean, Kentucky; (26) St Joseph, Michigan; (27) Stevens, Minnesota; (28) Warren, Mississippi; (29) Oregon, Missouri; (31) Rock, Nebraska; (37) Polk, North Carolina; (39) Shelby, Ohio; (40) Washita, Oklahoma; (47) Rutherford, Tennessee; (48) Fayette, Texas; (51) Prince George, Virginia; (72) Villalba, Puerto Rico + + + + + (48) Motley, Texas + + + + + (48) Montague, Texas + + + + + (01) Perry, Alabama; (05) Perry, Arkansas; (06) Trinity, California; (08) Rio Grande, Colorado; (12) Polk, Florida; (13) Elbert, Georgia; (17) Livingston, Illinois; (18) Monroe, Indiana; (19) Jones, Iowa; (20) Lincoln, Kansas; (21) Hickman, Kentucky; (22) Tangipahoa, Louisiana; (26) Mason, Michigan; (27) Nobles, Minnesota; (28) Oktibbeha, Mississippi; (29) Laclede, Missouri; (30) Valley, Montana; (31) Kimball, Nebraska; (36) Sullivan, New York; (37) Lee, North Carolina; (38) Williams, North Dakota; (39) Meigs, Ohio; (40) Nowata, Oklahoma; (42) Potter, Pennsylvania; (46) Perkins, South Dakota; (47) Loudon, Tennessee; (48) Crockett, Texas; (51) Lee, Virginia; (54) Wirt, West Virginia; (55) Rock, Wisconsin; (72) Naranjito, Puerto Rico + + + + + (51) Radford, Virginia + + + + + (13) McDuffie, Georgia; (17) Washington, Illinois; (19) Winnebago, Iowa; (20) Stevens, Kansas; (21) Owsley, Kentucky; (29) St Louis, Missouri; (37) Watauga, North Carolina; (47) Wilson, Tennessee; (48) Hale, Texas + + + + + (48) Nolan, Texas + + + + + (48) Palo Pinto, Texas + + + + + (51) Galax, Virginia + + + + + (48) Parmer, Texas + + + + + (70) Aimeliik, Palau + + + + + (13) Houston, Georgia; (17) Pulaski, Illinois; (18) Sullivan, Indiana; (19) Polk, Iowa; (20) Rawlins, Kansas; (21) Magoffin, Kentucky; (26) Schoolcraft, Michigan; (27) Todd, Minnesota; (28) Wayne, Mississippi; (29) Ozark, Missouri; (31) Sarpy, Nebraska; (37) Richmond, North Carolina; (39) Summit, Ohio; (40) Woodward, Oklahoma; (47) Sequatchie, Tennessee; (48) Floyd, Texas; (51) Prince William, Virginia; (72) Yauco, Puerto Rico + + + + + (13) Washington, Georgia; (48) Lubbock, Texas + + + + + (01) Tallapoosa, Alabama; (05) St Francis, Arkansas; (08) Weld, Colorado; (12) Taylor, Florida; (13) Gilmer, Georgia; (17) Marshall, Illinois; (18) Perry, Indiana; (19) Mahaska, Iowa; (20) Mitchell, Kansas; (21) Larue, Kentucky; (22) West Carroll, Louisiana; (26) Newaygo, Michigan; (27) Ramsey, Minnesota; (28) Scott, Mississippi; (29) Madison, Missouri; (31) Morrill, Nebraska; (36) Yates, New York; (37) Montgomery, North Carolina; (39) Ottawa, Ohio; (40) Pontotoc, Oklahoma; (42) Warren, Pennsylvania; (46) Tripp, South Dakota; (47) Monroe, Tennessee; (48) De Witt, Texas; (51) Nansemond, Virginia; (55) Vernon, Wisconsin; (72) Salinas, Puerto Rico + + + + + (01) Etowah, Alabama; (05) Greene, Arkansas; (06) Napa, California; (08) Huerfano, Colorado; (12) Highlands, Florida; (13) Chattooga, Georgia; (16) Kootenai, Idaho; (17) Franklin, Illinois; (18) Greene, Indiana; (19) Delaware, Iowa; (20) Finney, Kansas; (21) Crittenden, Kentucky; (22) Lafayette, Louisiana; (26) Grand Traverse, Michigan; (27) Houston, Minnesota; (28) Issaquena, Mississippi; (29) Crawford, Missouri; (30) McCone, Montana; (31) Douglas, Nebraska; (35) Taos, New Mexico; (36) Monroe, New York; (37) Dare, North Carolina; (38) McLean, North Dakota; (39) Geauga, Ohio; (40) Greer, Oklahoma; (41) Sherman, Oregon; (42) Franklin, Pennsylvania; (45) Kershaw, South Carolina; (46) Haakon, South Dakota; (47) Giles, Tennessee; (48) Caldwell, Texas; (49) Wayne, Utah; (53) San Juan, Washington; (54) Mercer, West Virginia; (55) Jefferson, Wisconsin; (72) Guanica, Puerto Rico + + + + + (13) Seminole, Georgia; (48) Jones, Texas + + + + + (13) Towns, Georgia; (48) Lampasas, Texas + + + + + (48) Upshur, Texas + + + + + (48) Parker, Texas + + + + + (48) Newton, Texas + + + + + (01) Limestone, Alabama; (05) Logan, Arkansas; (06) Santa Barbara, California; (08) Montezuma, Colorado; (12) Marion, Florida; (13) Dade, Georgia; (16) Twin Falls, Idaho; (17) Jersey, Illinois; (18) Knox, Indiana; (19) Hardin, Iowa; (20) Hodgeman, Kansas; (21) Graves, Kentucky; (22) Richland, Louisiana; (26) Keweenaw, Michigan; (27) Lyon, Minnesota; (28) Leflore, Mississippi; (29) Henry, Missouri; (30) Richland, Montana; (31) Harlan, Nebraska; (36) Rensselaer, New York; (37) Halifax, North Carolina; (38) Sheridan, North Dakota; (39) Knox, Ohio; (40) Logan, Oklahoma; (42) McKean, Pennsylvania; (45) Spartanburg, South Carolina; (46) Lincoln, South Dakota; (47) Houston, Tennessee; (48) Coleman, Texas; (51) Halifax, Virginia; (54) Randolph, West Virginia; (55) Oconto, Wisconsin; (72) Las Marias, Puerto Rico + + + + + (48) Wise, Texas + + + + + (48) Sutton, Texas + + + + + (48) Refugio, Texas + + + + + (01) Tuscaloosa, Alabama; (05) Saline, Arkansas; (08) Yuma, Colorado; (12) Union, Florida; (13) Glascock, Georgia; (17) Mason, Illinois; (18) Pike, Indiana; (19) Marion, Iowa; (20) Montgomery, Kansas; (21) Laurel, Kentucky; (22) West Feliciana, Louisiana; (26) Oakland, Michigan; (27) Red Lake, Minnesota; (28) Sharkey, Mississippi; (29) Maries, Missouri; (31) Nance, Nebraska; (37) Moore, North Carolina; (39) Paulding, Ohio; (40) Pottawatomie, Oklahoma; (42) Washington, Pennsylvania; (46) Turner, South Dakota; (47) Montgomery, Tennessee; (48) Dickens, Texas; (51) Nelson, Virginia; (55) Vilas, Wisconsin; (72) San German, Puerto Rico + + + + + (13) Mitchell, Georgia; (20) Wilson, Kansas; (21) Rowan, Kentucky; (29) Shelby, Missouri; (48) Hartley, Texas + + + + + (13) Wilkes, Georgia; (48) Martin, Texas + + + + + (13) Twiggs, Georgia; (48) Leon, Texas + + + + + (48) Orange, Texas + + + + + (68) Mejit, Marshall Islands + + + + + (01) Lee, Alabama; (05) Little River, Arkansas; (06) San Mateo, California; (08) Moffat, Colorado; (12) Manatee, Florida; (13) Crisp, Georgia; (16) Teton, Idaho; (17) Jefferson, Illinois; (18) Johnson, Indiana; (19) Hancock, Iowa; (20) Haskell, Kansas; (21) Grant, Kentucky; (22) Red River, Louisiana; (26) Kent, Michigan; (27) Lincoln, Minnesota; (28) Lee, Mississippi; (29) Harrison, Missouri; (30) Ravalli, Montana; (31) Hamilton, Nebraska; (36) Queens, New York; (37) Guilford, North Carolina; (38) Sargent, North Dakota; (39) Jefferson, Ohio; (40) Lincoln, Oklahoma; (42) Lycoming, Pennsylvania; (45) Saluda, South Carolina; (46) Lawrence, South Dakota; (47) Hickman, Tennessee; (48) Coke, Texas; (51) Greensville, Virginia; (54) Raleigh, West Virginia; (55) Monroe, Wisconsin; (72) Lares, Puerto Rico + + + + + (51) Norton, Virginia + + + + + (01) Clay, Alabama; (04) Yuma, Arizona; (05) Columbia, Arkansas; (06) Inyo, California; (08) Custer, Colorado; (12) De Soto, Florida; (13) Brooks, Georgia; (16) Canyon, Idaho; (17) Clinton, Illinois; (18) Daviess, Indiana; (19) Carroll, Iowa; (20) Clay, Kansas; (21) Breckinridge, Kentucky; (22) Claiborne, Louisiana; (23) Waldo, Maine; (24) Howard, Maryland; (25) Worcester, Massachusetts; (26) Cass, Michigan; (27) Clay, Minnesota; (28) Coahoma, Mississippi; (29) Callaway, Missouri; (30) Fergus, Montana; (31) Cedar, Nebraska; (32) Pershing, Nevada; (34) Morris, New Jersey; (35) Lincoln, New Mexico; (36) Dutchess, New York; (37) Caldwell, North Carolina; (38) Eddy, North Dakota; (39) Clinton, Ohio; (40) Cleveland, Oklahoma; (41) Hood River, Oregon; (42) Centre, Pennsylvania; (45) Clarendon, South Carolina; (46) Clay, South Dakota; (47) Clay, Tennessee; (48) Bell, Texas; (49) Millard, Utah; (50) Windsor, Vermont; (51) Buchanan, Virginia; (53) Grays Harbor, Washington; (54) Hampshire, West Virginia; (55) Dodge, Wisconsin; (56) Niobrara, Wyoming; (72) Camuy, Puerto Rico + + + + + (02) North Slope, Alaska; (13) Lowndes, Georgia; (17) Wabash, Illinois; (19) Wayne, Iowa; (20) Stafford, Kansas; (21) Oldham, Kentucky; (29) St Clair, Missouri; (31) York, Nebraska; (37) Warren, North Carolina; (47) White, Tennessee; (48) Grimes, Texas; (51) Tazewell, Virginia + + + + + (13) Marion, Georgia; (17) Will, Illinois; (19) Wright, Iowa; (20) Wabaunsee, Kansas; (21) Powell, Kentucky; (29) Schuyler, Missouri; (37) Yadkin, North Carolina; (48) Hardeman, Texas; (51) Wythe, Virginia + + + + + (48) Red River, Texas + + + + + (02) Valdez-Cordova, Alaska; (13) Sumter, Georgia; (48) Kenedy, Texas + + + + + (48) Panola, Texas + + + + + (13) Polk, Georgia; (21) Webster, Kentucky; (48) Hutchinson, Texas + + + + + (48) Shackelford, Texas + + + + + (13) Pickens, Georgia; (21) Warren, Kentucky; (29) Worth, Missouri; (48) Howard, Texas + + + + + (13) Long, Georgia; (17) Vermilion, Illinois; (18) Whitley, Indiana; (19) Washington, Iowa; (20) Smith, Kansas; (21) Ohio, Kentucky; (29) St Charles, Missouri; (31) Wheeler, Nebraska; (37) Wake, North Carolina; (47) Weakley, Tennessee; (48) Gregg, Texas; (51) Sussex, Virginia + + + + + (51) Roanoke, Virginia + + + + + (48) Rockwall, Texas + + + + + (70) Ngardmau, Palau + + + + + (13) Lanier, Georgia; (17) Shelby, Illinois; (18) Warrick, Indiana; (19) Taylor, Iowa; (20) Sedgwick, Kansas; (21) Montgomery, Kentucky; (27) Yellow Medicine, Minnesota; (29) Ralls, Missouri; (31) Thurston, Nebraska; (37) Swain, North Carolina; (39) Wood, Ohio; (47) Union, Tennessee; (48) Glasscock, Texas; (51) Smyth, Virginia + + + + + (48) Starr, Texas + + + + + (13) Monroe, Georgia; (20) Woodson, Kansas; (21) Russell, Kentucky; (29) Stoddard, Missouri; (48) Haskell, Texas + + + + + (48) Nueces, Texas + + + + + (48) Throckmorton, Texas + + + + + (51) Petersburg, Virginia + + + + + (48) Wilbarger, Texas + + + + + (02) Prince of Wales-Outer Ketchikan, Alaska; (13) Miller, Georgia; (17) Winnebago, Illinois; (20) Washington, Kansas; (21) Robertson, Kentucky; (29) Scott, Missouri; (48) Harris, Texas + + + + + (51) Virginia Beach, Virginia + + + + + (48) San Jacinto, Texas + + + + + (01) Jackson, Alabama; (05) Johnson, Arkansas; (06) San Bernardino, California; (08) Las Animas, Colorado; (12) Lee, Florida; (13) Colquitt, Georgia; (16) Oneida, Idaho; (17) Henderson, Illinois; (18) Jackson, Indiana; (19) Fremont, Iowa; (20) Greeley, Kansas; (21) Floyd, Kentucky; (22) Orleans, Louisiana; (26) Iron, Michigan; (27) Koochiching, Minnesota; (28) Lafayette, Mississippi; (29) Franklin, Missouri; (30) Phillips, Montana; (31) Garfield, Nebraska; (36) Orange, New York; (37) Gaston, North Carolina; (38) Ramsey, North Dakota; (39) Highland, Ohio; (40) Kay, Oklahoma; (41) Yamhill, Oregon; (42) Lancaster, Pennsylvania; (45) Newberry, South Carolina; (46) Jackson, South Dakota; (47) Hardin, Tennessee; (48) Chambers, Texas; (51) Giles, Virginia; (53) Walla Walla, Washington; (54) Pendleton, West Virginia; (55) Manitowoc, Wisconsin; (72) Isabela, Puerto Rico + + + + + (13) McIntosh, Georgia; (17) Wayne, Illinois; (19) Winneshiek, Iowa; (20) Sumner, Kansas; (21) Pendleton, Kentucky; (37) Wayne, North Carolina; (48) Hall, Texas; (51) Washington, Virginia + + + + + (01) Escambia, Alabama; (05) Grant, Arkansas; (06) Monterey, California; (08) Hinsdale, Colorado; (12) Hernando, Florida; (13) Chattahoochee, Georgia; (16) Jerome, Idaho; (17) Ford, Illinois; (18) Grant, Indiana; (19) Decatur, Iowa; (20) Ellsworth, Kansas; (21) Clinton, Kentucky; (22) Jefferson Davis, Louisiana; (26) Gogebic, Michigan; (27) Hennepin, Minnesota; (28) Humphreys, Mississippi; (29) Cooper, Missouri; (30) Lincoln, Montana; (31) Dodge, Nebraska; (35) Socorro, New Mexico; (36) Madison, New York; (37) Currituck, North Carolina; (38) McKenzie, North Dakota; (39) Gallia, Ohio; (40) Grant, Oklahoma; (41) Polk, Oregon; (42) Forest, Pennsylvania; (45) Jasper, South Carolina; (46) Gregory, South Dakota; (47) Gibson, Tennessee; (48) Burnet, Texas; (49) Washington, Utah; (51) Dinwiddie, Virginia; (53) Pierce, Washington; (54) Mason, West Virginia; (55) Jackson, Wisconsin; (72) Fajardo, Puerto Rico + + + + + (48) Moore, Texas + + + + + (01) Marion, Alabama; (05) Mississippi, Arkansas; (06) Siskiyou, California; (08) Park, Colorado; (12) Okeechobee, Florida; (13) Dooly, Georgia; (17) Kendall, Illinois; (18) Lawrence, Indiana; (19) Ida, Iowa; (20) Kearny, Kansas; (21) Hardin, Kentucky; (22) St James, Louisiana; (26) Livingston, Michigan; (27) Meeker, Minnesota; (28) Marshall, Mississippi; (29) Iron, Missouri; (30) Silver Bow, Montana; (31) Howard, Nebraska; (36) Schenectady, New York; (37) Hoke, North Carolina; (38) Stutsman, North Dakota; (39) Lorain, Ohio; (40) Major, Oklahoma; (42) Montour, Pennsylvania; (46) Meade, South Dakota; (47) Knox, Tennessee; (48) Comanche, Texas; (51) Isle Of Wight, Virginia; (54) Tucker, West Virginia; (55) Pierce, Wisconsin; (72) Maricao, Puerto Rico + + + + + (13) Irwin, Georgia; (17) Putnam, Illinois; (18) Switzerland, Indiana; (19) Pottawattamie, Iowa; (20) Reno, Kansas; (21) Marion, Kentucky; (26) Shiawassee, Michigan; (27) Traverse, Minnesota; (28) Webster, Mississippi; (29) Pemiscot, Missouri; (31) Saunders, Nebraska; (37) Robeson, North Carolina; (39) Trumbull, Ohio; (47) Sevier, Tennessee; (48) Foard, Texas; (51) Pulaski, Virginia + + + + + (48) Sherman, Texas + + + + + (51) Staunton, Virginia + + + + + (51) Fairfax, Virginia + + + + + (48) Uvalde, Texas + + + + + (68) Jaluit, Marshall Islands; (69) Tinian, Northern Mariana Islands + + + + + (48) Zapata, Texas + + + + + (13) Lee, Georgia; (17) Stephenson, Illinois; (18) Wayne, Indiana; (19) Van Buren, Iowa; (20) Shawnee, Kansas; (21) Muhlenberg, Kentucky; (29) Ray, Missouri; (31) Washington, Nebraska; (37) Tyrrell, North Carolina; (47) Warren, Tennessee; (48) Gonzales, Texas; (51) Spotsylvania, Virginia + + + + + (13) Terrell, Georgia; (48) Kleberg, Texas + + + + + (68) Namu, Marshall Islands + + + + + (01) Lauderdale, Alabama; (05) Lee, Arkansas; (06) San Joaquin, California; (08) Mesa, Colorado; (12) Liberty, Florida; (13) Coweta, Georgia; (16) Power, Idaho; (17) Jackson, Illinois; (18) Jefferson, Indiana; (19) Guthrie, Iowa; (20) Harper, Kansas; (21) Gallatin, Kentucky; (22) Pointe Coupee, Louisiana; (26) Kalamazoo, Michigan; (27) Lake Of The Woods, Minnesota; (28) Lawrence, Mississippi; (29) Greene, Missouri; (30) Powell, Montana; (31) Greeley, Nebraska; (36) Otsego, New York; (37) Granville, North Carolina; (38) Richland, North Dakota; (39) Huron, Ohio; (40) Latimer, Oklahoma; (42) Lehigh, Pennsylvania; (45) Pickens, South Carolina; (46) Kingsbury, South Dakota; (47) Henderson, Tennessee; (48) Clay, Texas; (51) Grayson, Virginia; (53) Yakima, Washington; (54) Preston, West Virginia; (55) Marquette, Wisconsin; (72) Juncos, Puerto Rico + + + + + (13) Oconee, Georgia; (21) Todd, Kentucky; (29) Warren, Missouri; (48) Hockley, Texas + + + + + (01) Baldwin, Alabama; (04) Cochise, Arizona; (05) Ashley, Arkansas; (06) Alpine, California; (08) Alamosa, Colorado; (09) Hartford, Connecticut; (10) New Castle, Delaware; (12) Baker, Florida; (13) Atkinson, Georgia; (15) Honolulu, Hawaii; (16) Adams, Idaho; (17) Alexander, Illinois; (18) Allen, Indiana; (19) Adams, Iowa; (20) Anderson, Kansas; (21) Allen, Kentucky; (22) Allen, Louisiana; (23) Aroostook, Maine; (24) Anne Arundel, Maryland; (25) Berkshire, Massachusetts; (26) Alger, Michigan; (27) Anoka, Minnesota; (28) Alcorn, Mississippi; (29) Andrew, Missouri; (30) Big Horn, Montana; (31) Antelope, Nebraska; (32) Clark, Nevada; (33) Carroll, New Hampshire; (34) Bergen, New Jersey; (35) Catron, New Mexico; (36) Allegany, New York; (37) Alexander, North Carolina; (38) Barnes, North Dakota; (39) Allen, Ohio; (40) Alfalfa, Oklahoma; (41) Benton, Oregon; (42) Allegheny, Pennsylvania; (44) Kent, Rhode Island; (45) Aiken, South Carolina; (46) Aurora, South Dakota; (47) Bedford, Tennessee; (48) Andrews, Texas; (49) Box Elder, Utah; (50) Bennington, Vermont; (51) Albemarle, Virginia; (53) Asotin, Washington; (54) Berkeley, West Virginia; (55) Ashland, Wisconsin; (56) Big Horn, Wyoming; (72) Aguada, Puerto Rico + + + + + (02) Wrangell-Petersburg, Alaska + + + + + (70) Ngiwal, Palau + + + + + (48) Sabine, Texas + + + + + (13) Lincoln, Georgia; (17) Union, Illinois; (18) White, Indiana; (19) Warren, Iowa; (20) Sherman, Kansas; (21) Nicholas, Kentucky; (29) Ripley, Missouri; (31) Webster, Nebraska; (37) Vance, North Carolina; (47) Wayne, Tennessee; (48) Grayson, Texas; (51) Surry, Virginia + + + + + (51) Martinsville, Virginia + + + + + (51) Lexington, Virginia + + + + + (13) Rabun, Georgia; (48) Jasper, Texas + + + + + (01) Cherokee, Alabama; (04) Pima, Arizona; (05) Clark, Arkansas; (06) Fresno, California; (08) Clear Creek, Colorado; (12) Clay, Florida; (13) Berrien, Georgia; (16) Bonneville, Idaho; (17) Champaign, Illinois; (18) Clark, Indiana; (19) Buchanan, Iowa; (20) Chautauqua, Kansas; (21) Boyd, Kentucky; (22) Calcasieu, Louisiana; (23) Penobscot, Maine; (24) Dorchester, Maryland; (25) Nantucket, Massachusetts; (26) Benzie, Michigan; (27) Carver, Minnesota; (28) Choctaw, Mississippi; (29) Boone, Missouri; (30) Daniels, Montana; (31) Buffalo, Nebraska; (32) Lyon, Nevada; (33) Sullivan, New Hampshire; (34) Hunterdon, New Jersey; (35) Guadalupe, New Mexico; (36) Clinton, New York; (37) Brunswick, North Carolina; (38) Cavalier, North Dakota; (39) Carroll, Ohio; (40) Carter, Oklahoma; (41) Douglas, Oregon; (42) Butler, Pennsylvania; (45) Charleston, South Carolina; (46) Butte, South Dakota; (47) Carter, Tennessee; (48) Bandera, Texas; (49) Grand, Utah; (50) Orleans, Vermont; (51) Bedford, Virginia; (53) Ferry, Washington; (54) Fayette, West Virginia; (55) Clark, Wisconsin; (56) Johnson, Wyoming; (72) Barranquitas, Puerto Rico + + + + + (01) Marengo, Alabama; (05) Miller, Arkansas; (06) Sierra, California; (08) Ouray, Colorado; (12) Okaloosa, Florida; (13) Dodge, Georgia; (17) Kankakee, Illinois; (18) La Porte, Indiana; (19) Humboldt, Iowa; (20) Johnson, Kansas; (21) Hancock, Kentucky; (22) St Helena, Louisiana; (26) Lenawee, Michigan; (27) Martin, Minnesota; (28) Marion, Mississippi; (29) Howell, Missouri; (30) Sheridan, Montana; (31) Hooker, Nebraska; (36) Saratoga, New York; (37) Hertford, North Carolina; (38) Steele, North Dakota; (39) Logan, Ohio; (40) McIntosh, Oklahoma; (42) Montgomery, Pennsylvania; (45) York, South Carolina; (46) Marshall, South Dakota; (47) Johnson, Tennessee; (48) Comal, Texas; (51) Highland, Virginia; (54) Taylor, West Virginia; (55) Pepin, Wisconsin; (72) Manati, Puerto Rico + + + + + (13) Jackson, Georgia; (17) Randolph, Illinois; (18) Tippecanoe, Indiana; (19) Poweshiek, Iowa; (20) Republic, Kansas; (21) Marshall, Kentucky; (26) Tuscola, Michigan; (27) Wabasha, Minnesota; (28) Wilkinson, Mississippi; (29) Perry, Missouri; (31) Scotts Bluff, Nebraska; (37) Rockingham, North Carolina; (39) Tuscarawas, Ohio; (47) Shelby, Tennessee; (48) Fort Bend, Texas; (51) Rappahannock, Virginia + + + + + (68) Majuro, Marshall Islands + + + + + (51) Lynchburg, Virginia + + + + + (48) Upton, Texas + + + + + (01) Fayette, Alabama; (05) Hempstead, Arkansas; (06) Nevada, California; (08) Jackson, Colorado; (12) Hillsborough, Florida; (13) Cherokee, Georgia; (16) Latah, Idaho; (17) Fulton, Illinois; (18) Hamilton, Indiana; (19) Des Moines, Iowa; (20) Ford, Kansas; (21) Cumberland, Kentucky; (22) Lafourche, Louisiana; (26) Gratiot, Michigan; (27) Hubbard, Minnesota; (28) Itawamba, Mississippi; (29) Dade, Missouri; (30) Madison, Montana; (31) Dundy, Nebraska; (35) Torrance, New Mexico; (36) Montgomery, New York; (37) Davidson, North Carolina; (38) Mercer, North Dakota; (39) Greene, Ohio; (40) Harmon, Oklahoma; (41) Tillamook, Oregon; (42) Fulton, Pennsylvania; (45) Lancaster, South Carolina; (46) Hamlin, South Dakota; (47) Grainger, Tennessee; (48) Calhoun, Texas; (49) Weber, Utah; (51) Essex, Virginia; (53) Skagit, Washington; (54) Mineral, West Virginia; (55) Juneau, Wisconsin; (72) Guayama, Puerto Rico + + + + + (01) Wilcox, Alabama; (05) Sebastian, Arkansas; (12) Walton, Florida; (13) Grady, Georgia; (17) Mercer, Illinois; (18) Pulaski, Indiana; (19) Mitchell, Iowa; (20) Nemaha, Kansas; (21) Leslie, Kentucky; (26) Ontonagon, Michigan; (27) Rice, Minnesota; (28) Stone, Mississippi; (29) Miller, Missouri; (31) Otoe, Nebraska; (37) Northampton, North Carolina; (39) Pike, Ohio; (40) Rogers, Oklahoma; (42) Wyoming, Pennsylvania; (46) Washabaugh, South Dakota; (47) Obion, Tennessee; (48) Duval, Texas; (51) Northampton, Virginia; (55) Washington, Wisconsin; (72) San Sebastian, Puerto Rico + + + + + (51) Charlottesville, Virginia + + + + + (51) Norfolk, Virginia + + + + + (01) Geneva, Alabama; (05) Howard, Arkansas; (06) Placer, California; (08) Kiowa, Colorado; (12) Indian River, Florida; (13) Clay, Georgia; (16) Lewis, Idaho; (17) Greene, Illinois; (18) Harrison, Indiana; (19) Dubuque, Iowa; (20) Geary, Kansas; (21) Edmonson, Kentucky; (22) Lincoln, Louisiana; (26) Houghton, Michigan; (27) Itasca, Minnesota; (28) Jasper, Mississippi; (29) Daviess, Missouri; (30) Mineral, Montana; (31) Franklin, Nebraska; (35) Valencia, New Mexico; (36) New York, New York; (37) Duplin, North Carolina; (38) Mountrail, North Dakota; (39) Hamilton, Ohio; (40) Haskell, Oklahoma; (41) Union, Oregon; (42) Huntingdon, Pennsylvania; (45) Lee, South Carolina; (46) Hanson, South Dakota; (47) Grundy, Tennessee; (48) Cameron, Texas; (51) Fauquier, Virginia; (53) Snohomish, Washington; (54) Monongalia, West Virginia; (55) Kewaunee, Wisconsin; (72) Guaynabo, Puerto Rico + + + + + (01) Lamar, Alabama; (05) Lawrence, Arkansas; (06) San Francisco, California; (08) Logan, Colorado; (12) Levy, Florida; (13) Cook, Georgia; (16) Payette, Idaho; (17) Iroquois, Illinois; (18) Jay, Indiana; (19) Grundy, Iowa; (20) Hamilton, Kansas; (21) Fulton, Kentucky; (22) Plaquemines, Louisiana; (26) Jackson, Michigan; (27) Lake, Minnesota; (28) Lauderdale, Mississippi; (29) Gentry, Missouri; (30) Powder River, Montana; (31) Grant, Nebraska; (36) Oswego, New York; (37) Graham, North Carolina; (38) Renville, North Dakota; (39) Holmes, Ohio; (40) Kiowa, Oklahoma; (42) Lebanon, Pennsylvania; (45) Orangeburg, South Carolina; (46) Jones, South Dakota; (47) Haywood, Tennessee; (48) Childress, Texas; (51) Goochland, Virginia; (53) Whitman, Washington; (54) Pocahontas, West Virginia; (55) Marinette, Wisconsin; (72) Juana Diaz, Puerto Rico + + + + + (68) Maloelap, Marshall Islands; (70) Palau Islands, Palau; (74) Midway Islands, U.S. Minor Outlying Islands + + + + + (01) De Kalb, Alabama; (05) Fulton, Arkansas; (06) Modoc, California; (08) Grand, Colorado; (12) Hardee, Florida; (13) Charlton, Georgia; (16) Idaho, Idaho; (17) Effingham, Illinois; (18) Fulton, Indiana; (19) Dallas, Iowa; (20) Elk, Kansas; (21) Clark, Kentucky; (22) Jackson, Louisiana; (26) Genesee, Michigan; (27) Goodhue, Minnesota; (28) Hinds, Mississippi; (29) Clinton, Missouri; (30) Lewis And Clark, Montana; (31) Deuel, Nebraska; (35) Santa Fe, New Mexico; (36) Lewis, New York; (37) Craven, North Carolina; (38) McHenry, North Dakota; (39) Franklin, Ohio; (40) Garvin, Oklahoma; (41) Morrow, Oregon; (42) Erie, Pennsylvania; (45) Hampton, South Carolina; (46) Faulk, South Dakota; (47) Fentress, Tennessee; (48) Brown, Texas; (49) Utah, Utah; (51) Cumberland, Virginia; (53) Pacific, Washington; (54) Marion, West Virginia; (55) Iowa, Wisconsin; (72) Culebra, Puerto Rico + + + + + (01) Hale, Alabama; (05) Izard, Arkansas; (06) Riverside, California; (08) Lake, Colorado; (12) Jefferson, Florida; (13) Clinch, Georgia; (16) Madison, Idaho; (17) Hamilton, Illinois; (18) Henry, Indiana; (19) Fayette, Iowa; (20) Graham, Kansas; (21) Estill, Kentucky; (22) Madison, Louisiana; (26) Ingham, Michigan; (27) Kanabec, Minnesota; (28) Jefferson Davis, Mississippi; (29) Dent, Missouri; (30) Musselshell, Montana; (31) Furnas, Nebraska; (36) Oneida, New York; (37) Edgecombe, North Carolina; (38) Oliver, North Dakota; (39) Hardin, Ohio; (40) Jackson, Oklahoma; (41) Wasco, Oregon; (42) Jefferson, Pennsylvania; (45) McCormick, South Carolina; (46) Hughes, South Dakota; (47) Hamilton, Tennessee; (48) Carson, Texas; (51) Fluvanna, Virginia; (53) Stevens, Washington; (54) Morgan, West Virginia; (55) Lafayette, Wisconsin; (72) Hatillo, Puerto Rico + + + + + (13) Quitman, Georgia; (21) Woodford, Kentucky; (48) Jackson, Texas + + + + + (13) Stewart, Georgia; (48) Kendall, Texas + + + + + (48) Val Verde, Texas + + + + + (74) Wake Island, U.S. Minor Outlying Islands + + + + + (48) Robertson, Texas + + + + + (48) Smith, Texas + + + + + (01) Monroe, Alabama; (05) Nevada, Arkansas; (06) Stanislaus, California; (08) Prowers, Colorado; (12) Palm Beach, Florida; (13) Early, Georgia; (17) La Salle, Illinois; (18) Marshall, Indiana; (19) Jasper, Iowa; (20) Labette, Kansas; (21) Hart, Kentucky; (22) St Martin, Louisiana; (26) Macomb, Michigan; (27) Mower, Minnesota; (28) Neshoba, Mississippi; (29) Jefferson, Missouri; (30) Teton, Montana; (31) Kearney, Nebraska; (36) Seneca, New York; (37) Jackson, North Carolina; (38) Walsh, North Dakota; (39) Mahoning, Ohio; (40) Murray, Oklahoma; (42) Perry, Pennsylvania; (46) Minnehaha, South Dakota; (47) Lawrence, Tennessee; (48) Coryell, Texas; (51) King George, Virginia; (54) Wayne, West Virginia; (55) Price, Wisconsin; (72) Moca, Puerto Rico + + + + + (01) Dallas, Alabama; (05) Franklin, Arkansas; (06) Merced, California; (08) Gilpin, Colorado; (12) Hamilton, Florida; (13) Catoosa, Georgia; (16) Gooding, Idaho; (17) Edwards, Illinois; (18) Franklin, Indiana; (19) Crawford, Iowa; (20) Edwards, Kansas; (21) Christian, Kentucky; (22) Iberville, Louisiana; (24) Worcester, Maryland; (26) Emmet, Michigan; (27) Freeborn, Minnesota; (28) Harrison, Mississippi; (29) Clay, Missouri; (30) Lake, Montana; (31) Dawson, Nebraska; (35) San Miguel, New Mexico; (36) Kings, New York; (37) Columbus, North Carolina; (38) Logan, North Dakota; (39) Fayette, Ohio; (40) Garfield, Oklahoma; (41) Marion, Oregon; (42) Elk, Pennsylvania; (45) Greenwood, South Carolina; (46) Fall River, South Dakota; (47) Fayette, Tennessee; (48) Brooks, Texas; (49) Uintah, Utah; (51) Culpeper, Virginia; (53) Okanogan, Washington; (54) McDowell, West Virginia; (55) Green Lake, Wisconsin; (72) Corozal, Puerto Rico + + + + + (51) Bristol, Virginia + + + + + (13) Upson, Georgia; (48) Limestone, Texas + + + + + (05) Washington, Arkansas; (13) Haralson, Georgia; (17) Peoria, Illinois; (18) Scott, Indiana; (19) Osceola, Iowa; (20) Ottawa, Kansas; (21) Lyon, Kentucky; (26) Roscommon, Michigan; (27) Sibley, Minnesota; (28) Tunica, Mississippi; (29) New Madrid, Missouri; (31) Polk, Nebraska; (37) Perquimans, North Carolina; (39) Sandusky, Ohio; (40) Tulsa, Oklahoma; (47) Rhea, Tennessee; (48) Erath, Texas; (51) Pittsylvania, Virginia; (72) Vega Alta, Puerto Rico + + + + + (51) Williamsburg, Virginia + + + + + (51) Emporia, Virginia + + + + + (01) Houston, Alabama; (05) Jefferson, Arkansas; (06) San Benito, California; (08) Larimer, Colorado; (12) Lake, Florida; (13) Coffee, Georgia; (16) Nez Perce, Idaho; (17) Hardin, Illinois; (18) Huntington, Indiana; (19) Franklin, Iowa; (20) Gray, Kansas; (21) Fleming, Kentucky; (22) Natchitoches, Louisiana; (26) Iosco, Michigan; (27) Kittson, Minnesota; (28) Kemper, Mississippi; (29) Dunklin, Missouri; (30) Petroleum, Montana; (31) Garden, Nebraska; (36) Ontario, New York; (37) Franklin, North Carolina; (38) Pierce, North Dakota; (39) Henry, Ohio; (40) Johnston, Oklahoma; (41) Wheeler, Oregon; (42) Lackawanna, Pennsylvania; (45) Marlboro, South Carolina; (46) Hyde, South Dakota; (47) Hardeman, Tennessee; (48) Castro, Texas; (51) Frederick, Virginia; (53) Wahkiakum, Washington; (54) Ohio, West Virginia; (55) Lincoln, Wisconsin; (72) Humacao, Puerto Rico + + + + + (48) Midland, Texas + + + + + (48) Travis, Texas + + + + + (02) Juneau, Alaska; (68) Jabat, Marshall Islands; (69) Saipan, Northern Mariana Islands + + + + + (70) Ngaraard, Palau + + + + + (13) Taylor, Georgia; (48) King, Texas + + + + + (51) Newport News, Virginia + + + + + (13) Laurens, Georgia; (17) Stark, Illinois; (18) Washington, Indiana; (19) Union, Iowa; (20) Seward, Kansas; (21) Morgan, Kentucky; (29) Randolph, Missouri; (31) Valley, Nebraska; (37) Transylvania, North Carolina; (39) Wyandot, Ohio; (47) Van Buren, Tennessee; (48) Goliad, Texas; (51) Southampton, Virginia + + + + + (02) Yukon-Koyukuk, Alaska + + + + + (68) Rongrik, Marshall Islands + + + + + (68) Namorik, Marshall Islands + + + + + (02) Northwest Arctic (Kobuk), Alaska; (68) Kili, Marshall Islands + + + + + (01) Butler, Alabama; (02) Aleutians East, Alaska; (04) Maricopa, Arizona; (05) Calhoun, Arkansas; (06) Contra Costa, California; (08) Boulder, Colorado; (09) Tolland, Connecticut; (12) Calhoun, Florida; (13) Barrow, Georgia; (16) Blaine, Idaho; (17) Calhoun, Illinois; (18) Brown, Indiana; (19) Black Hawk, Iowa; (20) Brown, Kansas; (21) Bell, Kentucky; (22) Bienville, Louisiana; (23) Knox, Maine; (24) Carroll, Maryland; (25) Hampden, Massachusetts; (26) Baraga, Michigan; (27) Blue Earth, Minnesota; (28) Calhoun, Mississippi; (29) Bates, Missouri; (30) Cascade, Montana; (31) Box Butte, Nebraska; (32) Humboldt, Nevada; (33) Merrimack, New Hampshire; (34) Essex, New Jersey; (35) Dona Ana, New Mexico; (36) Chautauqua, New York; (37) Beaufort, North Carolina; (38) Burke, North Dakota; (39) Belmont, Ohio; (40) Bryan, Oklahoma; (41) Crook, Oregon; (42) Blair, Pennsylvania; (45) Beaufort, South Carolina; (46) Brown, South Dakota; (47) Campbell, Tennessee; (48) Atascosa, Texas; (49) Duchesne, Utah; (50) Grand Isle, Vermont; (51) Arlington, Virginia; (53) Columbia, Washington; (54) Calhoun, West Virginia; (55) Burnett, Wisconsin; (56) Fremont, Wyoming; (72) Arecibo, Puerto Rico + + + + + (35) Los Alamos, New Mexico + + + + + (13) Walker, Georgia; (48) Lipscomb, Texas + + + + + (01) Shelby, Alabama; (05) Prairie, Arkansas; (08) Summit, Colorado; (12) Seminole, Florida; (13) Forsyth, Georgia; (17) Macoupin, Illinois; (18) Orange, Indiana; (19) Lucas, Iowa; (20) Marshall, Kansas; (21) Kenton, Kentucky; (22) Washington, Louisiana; (26) Montcalm, Michigan; (27) Pipestone, Minnesota; (28) Prentiss, Mississippi; (29) Livingston, Missouri; (31) McPherson, Nebraska; (36) Wayne, New York; (37) Martin, North Carolina; (39) Morrow, Ohio; (40) Pawnee, Oklahoma; (42) Tioga, Pennsylvania; (46) Stanley, South Dakota; (47) Marshall, Tennessee; (48) Deaf Smith, Texas; (51) Mecklenburg, Virginia; (55) Sheboygan, Wisconsin; (72) Rincon, Puerto Rico + + + + + (51) Salem, Virginia + + + + + (72) Florida, Puerto Rico + + + + + (02) Bristol Bay, Alaska; (64) Yap, Federated States of Micronesia; (68) Bikar, Marshall Islands; (75) Trust Territory of the Pacific Islands, + + + + + (01) Covington, Alabama; (05) Dallas, Arkansas; (06) Madera, California; (08) Elbert, Colorado; (12) Gadsden, Florida; (13) Camden, Georgia; (16) Elmore, Idaho; (17) De Witt, Illinois; (18) Elkhart, Indiana; (19) Clarke, Iowa; (20) Decatur, Kansas; (21) Carlisle, Kentucky; (22) Evangeline, Louisiana; (24) Somerset, Maryland; (26) Crawford, Michigan; (27) Dodge, Minnesota; (28) George, Mississippi; (29) Cedar, Missouri; (30) Granite, Montana; (31) Cuming, Nebraska; (34) Union, New Jersey; (35) Rio Arriba, New Mexico; (36) Greene, New York; (37) Cherokee, North Carolina; (38) Griggs, North Dakota; (39) Defiance, Ohio; (40) Custer, Oklahoma; (41) Lane, Oregon; (42) Crawford, Pennsylvania; (45) Fairfield, South Carolina; (46) Deuel, South Dakota; (47) Decatur, Tennessee; (48) Brazoria, Texas; (49) Sanpete, Utah; (53) Klickitat, Washington; (54) Kanawha, West Virginia; (55) Fond Du Lac, Wisconsin; (56) Teton, Wyoming; (72) Ciales, Puerto Rico + + + + + (13) Screven, Georgia; (48) Johnson, Texas + + + + + (48) Williamson, Texas + + + + + (02) Nome, Alaska; (68) Likiep, Marshall Islands + + + + + (01) Talladega, Alabama; (05) Randolph, Arkansas; (08) Washington, Colorado; (12) Suwannee, Florida; (13) Fulton, Georgia; (17) Marion, Illinois; (18) Parke, Indiana; (19) Madison, Iowa; (20) Miami, Kansas; (21) Knox, Kentucky; (22) West Baton Rouge, Louisiana; (26) Muskegon, Michigan; (27) Pope, Minnesota; (28) Rankin, Mississippi; (29) Macon, Missouri; (31) Merrick, Nebraska; (36) Wyoming, New York; (37) Mitchell, North Carolina; (39) Noble, Ohio; (40) Pittsburg, Oklahoma; (42) Venango, Pennsylvania; (46) Todd, South Dakota; (47) Meigs, Tennessee; (48) Denton, Texas; (51) Montgomery, Virginia; (55) Trempealeau, Wisconsin; (72) Sabana Grande, Puerto Rico + + + + + (01) Coffee, Alabama; (05) Craighead, Arkansas; (06) Kings, California; (08) Denver, Colorado; (12) Duval, Florida; (13) Bulloch, Georgia; (16) Cassia, Idaho; (17) Cook, Illinois; (18) Decatur, Indiana; (19) Cedar, Iowa; (20) Coffey, Kansas; (21) Butler, Kentucky; (22) De Soto, Louisiana; (23) York, Maine; (24) Montgomery, Maryland; (26) Cheboygan, Michigan; (27) Cook, Minnesota; (28) Covington, Mississippi; (29) Cape Girardeau, Missouri; (30) Gallatin, Montana; (31) Cherry, Nebraska; (32) Washoe, Nevada; (34) Passaic, New Jersey; (35) McKinley, New Mexico; (36) Essex, New York; (37) Carteret, North Carolina; (38) Foster, North Dakota; (39) Coshocton, Ohio; (40) Comanche, Oklahoma; (41) Jefferson, Oregon; (42) Clarion, Pennsylvania; (45) Darlington, South Carolina; (46) Corson, South Dakota; (47) Coffee, Tennessee; (48) Blanco, Texas; (49) Piute, Utah; (51) Campbell, Virginia; (53) Jefferson, Washington; (54) Hardy, West Virginia; (55) Douglas, Wisconsin; (56) Platte, Wyoming; (72) Carolina, Puerto Rico + + + + + (13) Taliaferro, Georgia; (48) Kerr, Texas + + + + + (48) Taylor, Texas + + + + + (13) Wilcox, Georgia; (48) Marion, Texas + + + + + (68) Lae, Marshall Islands + + + + + (01) Pickens, Alabama; (05) Phillips, Arkansas; (06) Tulare, California; (08) Routt, Colorado; (12) Putnam, Florida; (13) Emanuel, Georgia; (17) Logan, Illinois; (18) Montgomery, Indiana; (19) Keokuk, Iowa; (20) Linn, Kansas; (21) Hopkins, Kentucky; (22) Tensas, Louisiana; (26) Mecosta, Michigan; (27) Norman, Minnesota; (28) Panola, Mississippi; (29) Lafayette, Missouri; (30) Wheatland, Montana; (31) Knox, Nebraska; (36) Tioga, New York; (37) Lenoir, North Carolina; (39) Mercer, Ohio; (40) Okfuskee, Oklahoma; (42) Schuylkill, Pennsylvania; (46) Potter, South Dakota; (47) McMinn, Tennessee; (48) Crosby, Texas; (51) Loudoun, Virginia; (54) Wood, West Virginia; (55) Rusk, Wisconsin; (72) Orocovis, Puerto Rico + + + + + (51) Franklin, Virginia + + + + + (51) Buena Vista, Virginia + + + + + (13) Troup, Georgia; (48) Lavaca, Texas + + + + + (48) Scurry, Texas + + + + + (01) Chilton, Alabama; (04) Pinal, Arizona; (05) Clay, Arkansas; (06) Glenn, California; (08) Conejos, Colorado; (12) Collier, Florida; (13) Bibb, Georgia; (16) Boundary, Idaho; (17) Christian, Illinois; (18) Clay, Indiana; (19) Buena Vista, Iowa; (20) Cherokee, Kansas; (21) Boyle, Kentucky; (22) Caldwell, Louisiana; (23) Piscataquis, Maine; (24) Frederick, Maryland; (25) Norfolk, Massachusetts; (26) Berrien, Michigan; (27) Cass, Minnesota; (28) Claiborne, Mississippi; (29) Buchanan, Missouri; (30) Dawson, Montana; (31) Burt, Nebraska; (32) Mineral, Nevada; (34) Mercer, New Jersey; (35) Harding, New Mexico; (36) Columbia, New York; (37) Buncombe, North Carolina; (38) Dickey, North Dakota; (39) Champaign, Ohio; (40) Cherokee, Oklahoma; (41) Gilliam, Oregon; (42) Cambria, Pennsylvania; (45) Cherokee, South Carolina; (46) Campbell, South Dakota; (47) Cheatham, Tennessee; (48) Bastrop, Texas; (49) Iron, Utah; (50) Rutland, Vermont; (51) Bland, Virginia; (53) Franklin, Washington; (54) Gilmer, West Virginia; (55) Columbia, Wisconsin; (56) Laramie, Wyoming; (72) Bayamon, Puerto Rico + + + + + (01) Barbour, Alabama; (04) Coconino, Arizona; (05) Baxter, Arkansas; (06) Amador, California; (08) Arapahoe, Colorado; (09) Litchfield, Connecticut; (10) Sussex, Delaware; (12) Bay, Florida; (13) Bacon, Georgia; (15) Kalawao, Hawaii; (16) Bannock, Idaho; (17) Bond, Illinois; (18) Bartholomew, Indiana; (19) Allamakee, Iowa; (20) Atchison, Kansas; (21) Anderson, Kentucky; (22) Ascension, Louisiana; (23) Cumberland, Maine; (24) Baltimore, Maryland; (25) Bristol, Massachusetts; (26) Allegan, Michigan; (27) Becker, Minnesota; (28) Amite, Mississippi; (29) Atchison, Missouri; (30) Blaine, Montana; (31) Arthur, Nebraska; (32) Douglas, Nevada; (33) Cheshire, New Hampshire; (34) Burlington, New Jersey; (35) Chaves, New Mexico; (36) Bronx, New York; (37) Alleghany, North Carolina; (38) Benson, North Dakota; (39) Ashland, Ohio; (40) Atoka, Oklahoma; (41) Clackamas, Oregon; (42) Armstrong, Pennsylvania; (44) Newport, Rhode Island; (45) Allendale, South Carolina; (46) Beadle, South Dakota; (47) Benton, Tennessee; (48) Angelina, Texas; (49) Cache, Utah; (50) Caledonia, Vermont; (51) Alleghany, Virginia; (53) Benton, Washington; (54) Boone, West Virginia; (55) Barron, Wisconsin; (56) Campbell, Wyoming; (64) Kosrae, Federated States of Micronesia; (72) Aguadilla, Puerto Rico; (75) Trust Territory of the Pacific Islands, + + + + + (51) Colonial Heights, Virginia + + + + + (70) Tobi, Palau + + + + + (13) Montgomery, Georgia; (20) Wyandotte, Kansas; (21) Scott, Kentucky; (29) Stone, Missouri; (48) Hays, Texas + + + + + (48) Oldham, Texas + + + + + (01) Russell, Alabama; (05) Polk, Arkansas; (06) Yolo, California; (08) San Miguel, Colorado; (12) Santa Rosa, Florida; (13) Fayette, Georgia; (17) McLean, Illinois; (18) Noble, Indiana; (19) Linn, Iowa; (20) McPherson, Kansas; (21) Jessamine, Kentucky; (22) Vermilion, Louisiana; (26) Missaukee, Michigan; (27) Pennington, Minnesota; (28) Pike, Mississippi; (29) Lincoln, Missouri; (30) Yellowstone Natl Park (part), Montana; (31) Logan, Nebraska; (36) Warren, New York; (37) Macon, North Carolina; (39) Montgomery, Ohio; (40) Osage, Oklahoma; (42) Sullivan, Pennsylvania; (46) Shannon, South Dakota; (47) Madison, Tennessee; (48) Dallas, Texas; (51) Madison, Virginia; (55) Sawyer, Wisconsin; (72) Ponce, Puerto Rico + + + + + (68) Wotho, Marshall Islands + + + + + (48) Menard, Texas + + + + + (02) Matanuska-Susitna, Alaska; (68) Lib, Marshall Islands + + + + + (13) Wayne, Georgia; (48) Lynn, Texas + + + + + (51) Suffolk, Virginia + + + + + (02) Fairbanks North Star, Alaska; (68) Enewetak, Marshall Islands + + + + + (77) US Miscellaneous Pacific Islands, + + + + + (02) Kodiak Island, Alaska; (68) Kwajalein, Marshall Islands; (70) Koror, Palau; (74) Jarvis Island, U.S. Minor Outlying Islands + + + + + (13) Pulaski, Georgia; (21) Whitley, Kentucky; (48) Irion, Texas + + + + + (13) Worth, Georgia; (48) Matagorda, Texas + + + + + (48) Terrell, Texas + + + + + (60) Swains Island, American Samoa; (64) Ponape, Federated States of Micronesia; (68) Arno, Marshall Islands; (75) Trust Territory of the Pacific Islands, + + + + + (48) Swisher, Texas + + + + + (48) Pecos, Texas + + + + + (02) Dillingham, Alaska; (68) Bikini, Marshall Islands + + + + + (05) White, Arkansas; (13) Harris, Georgia; (17) Perry, Illinois; (18) Shelby, Indiana; (19) Page, Iowa; (20) Pawnee, Kansas; (21) McCracken, Kentucky; (26) Saginaw, Michigan; (27) Stearns, Minnesota; (28) Union, Mississippi; (29) Newton, Missouri; (31) Red Willow, Nebraska; (37) Person, North Carolina; (39) Scioto, Ohio; (40) Wagoner, Oklahoma; (47) Roane, Tennessee; (48) Falls, Texas; (51) Powhatan, Virginia; (72) Vega Baja, Puerto Rico + + + + + (48) Sterling, Texas + + + + + (74) Johnston Atoll, U.S. Minor Outlying Islands + + + + + (48) Willacy, Texas + + + + + (13) Oglethorpe, Georgia; (21) Trigg, Kentucky; (29) Washington, Missouri; (48) Hood, Texas + + + + + (01) Lowndes, Alabama; (05) Lonoke, Arkansas; (06) Santa Clara, California; (08) Montrose, Colorado; (12) Martin, Florida; (13) Dawson, Georgia; (16) Valley, Idaho; (17) Jo Daviess, Illinois; (18) Kosciusko, Indiana; (19) Harrison, Iowa; (20) Jackson, Kansas; (21) Grayson, Kentucky; (22) Sabine, Louisiana; (26) Lake, Michigan; (27) McLeod, Minnesota; (28) Lincoln, Mississippi; (29) Hickory, Missouri; (30) Roosevelt, Montana; (31) Hayes, Nebraska; (36) Richmond, New York; (37) Harnett, North Carolina; (38) Sioux, North Dakota; (39) Lake, Ohio; (40) Love, Oklahoma; (42) Mercer, Pennsylvania; (45) Sumter, South Carolina; (46) Lyman, South Dakota; (47) Humphreys, Tennessee; (48) Collin, Texas; (51) Hanover, Virginia; (54) Ritchie, West Virginia; (55) Oneida, Wisconsin; (69) Northern Islands, Northern Mariana Islands; (72) Las Piedras, Puerto Rico + + + + + (13) Schley, Georgia; (48) Jim Wells, Texas + + + + + (68) Ujelang, Marshall Islands; (74) Palmyra Atoll, U.S. Minor Outlying Islands + + + + + (51) Richmond, Virginia + + + + + (13) Lamar, Georgia; (17) Scott, Illinois; (18) Warren, Indiana; (19) Tama, Iowa; (20) Scott, Kansas; (21) Monroe, Kentucky; (27) Wright, Minnesota; (29) Putnam, Missouri; (31) Thomas, Nebraska; (37) Surry, North Carolina; (39) Williams, Ohio; (47) Unicoi, Tennessee; (48) Gillespie, Texas; (51) Shenandoah, Virginia + + + + + (48) Stephens, Texas + + + + + (13) Wheeler, Georgia; (48) McLennan, Texas + + + + + (13) Muscogee, Georgia; (21) Spencer, Kentucky; (29) Texas, Missouri; (48) Hidalgo, Texas + + + + + (48) Mitchell, Texas + + + + + (51) Nansemond, Virginia + + + + + (48) Reeves, Texas + + + + + (01) Macon, Alabama; (05) Madison, Arkansas; (06) Santa Cruz, California; (08) Morgan, Colorado; (12) Monroe, Florida; (13) Decatur, Georgia; (16) Washington, Idaho; (17) Johnson, Illinois; (18) Lagrange, Indiana; (19) Henry, Iowa; (20) Jefferson, Kansas; (21) Green, Kentucky; (22) St Bernard, Louisiana; (26) Lapeer, Michigan; (27) Mahnomen, Minnesota; (28) Lowndes, Mississippi; (29) Holt, Missouri; (30) Rosebud, Montana; (31) Hitchcock, Nebraska; (36) Rockland, New York; (37) Haywood, North Carolina; (38) Slope, North Dakota; (39) Lawrence, Ohio; (40) McClain, Oklahoma; (42) Mifflin, Pennsylvania; (45) Union, South Carolina; (46) McCook, South Dakota; (47) Jackson, Tennessee; (48) Collingsworth, Texas; (51) Henrico, Virginia; (54) Roane, West Virginia; (55) Outagamie, Wisconsin; (72) Loiza, Puerto Rico + + + + + (68) Wotje, Marshall Islands + + + + + (02) Bethel, Alaska; (60) Western, American Samoa; (64) Truk, Federated States of Micronesia; (68) Aur, Marshall Islands; (74) Baker Island, U.S. Minor Outlying Islands; (75) Trust Territory of the Pacific Islands, + + + + + (13) Putnam, Georgia; (21) Wolfe, Kentucky; (48) Jack, Texas + + + + + (13) Warren, Georgia; (48) Loving, Texas + + + + + (13) Talbot, Georgia; (48) Kent, Texas + + + + + (48) Washington, Texas + + + + + (51) Bedford, Virginia + + + + + (04) La Paz, Arizona + + + + + (48) Montgomery, Texas + + + + + (01) Blount, Alabama; (04) Graham, Arizona; (05) Boone, Arkansas; (06) Calaveras, California; (08) Baca, Colorado; (09) New Haven, Connecticut; (12) Brevard, Florida; (13) Baldwin, Georgia; (15) Maui, Hawaii; (16) Benewah, Idaho; (17) Brown, Illinois; (18) Blackford, Indiana; (19) Audubon, Iowa; (20) Barton, Kansas; (21) Barren, Kentucky; (22) Avoyelles, Louisiana; (23) Hancock, Maine; (24) Calvert, Maryland; (25) Essex, Massachusetts; (26) Antrim, Michigan; (27) Benton, Minnesota; (28) Benton, Mississippi; (29) Barry, Missouri; (30) Carbon, Montana; (31) Blaine, Nebraska; (32) Esmeralda, Nevada; (33) Grafton, New Hampshire; (34) Cape May, New Jersey; (35) Curry, New Mexico; (36) Cattaraugus, New York; (37) Ashe, North Carolina; (38) Bottineau, North Dakota; (39) Athens, Ohio; (40) Beckham, Oklahoma; (41) Columbia, Oregon; (42) Bedford, Pennsylvania; (44) Washington, Rhode Island; (45) Bamberg, South Carolina; (46) Bon Homme, South Dakota; (47) Blount, Tennessee; (48) Archer, Texas; (49) Daggett, Utah; (50) Essex, Vermont; (51) Amherst, Virginia; (53) Clallam, Washington; (54) Brooke, West Virginia; (55) Brown, Wisconsin; (56) Converse, Wyoming; (72) Aibonito, Puerto Rico + + + + + (13) Meriwether, Georgia; (17) Williamson, Illinois; (20) Wallace, Kansas; (21) Pulaski, Kentucky; (29) Scotland, Missouri; (37) Yancey, North Carolina; (48) Hardin, Texas; (51) York, Virginia + + + + + (51) Covington, Virginia + + + + + (01) Mobile, Alabama; (05) Montgomery, Arkansas; (06) Sonoma, California; (08) Pitkin, Colorado; (12) Osceola, Florida; (13) Douglas, Georgia; (17) Lake, Illinois; (18) Marion, Indiana; (19) Jackson, Iowa; (20) Kiowa, Kansas; (21) Harrison, Kentucky; (22) St Landry, Louisiana; (26) Mackinac, Michigan; (27) Morrison, Minnesota; (28) Montgomery, Mississippi; (29) Jasper, Missouri; (30) Sweet Grass, Montana; (31) Johnson, Nebraska; (36) Schuyler, New York; (37) Iredell, North Carolina; (38) Traill, North Dakota; (39) Madison, Ohio; (40) Mayes, Oklahoma; (42) Northumberland, Pennsylvania; (46) Miner, South Dakota; (47) Lauderdale, Tennessee; (48) Cooke, Texas; (51) King And Queen, Virginia; (54) Upshur, West Virginia; (55) Portage, Wisconsin; (72) Mayaguez, Puerto Rico + + + + + (01) Cleburne, Alabama; (05) Conway, Arkansas; (06) Kern, California; (08) Delta, Colorado; (12) Dixie, Florida; (13) Bryan, Georgia; (16) Caribou, Idaho; (17) Coles, Illinois; (18) Dearborn, Indiana; (19) Cass, Iowa; (20) Cloud, Kansas; (21) Bullitt, Kentucky; (22) Concordia, Louisiana; (23) Washington, Maine; (24) Kent, Maryland; (26) Charlevoix, Michigan; (27) Clearwater, Minnesota; (28) Copiah, Mississippi; (29) Camden, Missouri; (30) Flathead, Montana; (31) Chase, Nebraska; (32) Storey, Nevada; (34) Ocean, New Jersey; (35) Luna, New Mexico; (36) Erie, New York; (37) Camden, North Carolina; (38) Emmons, North Dakota; (39) Columbiana, Ohio; (40) Coal, Oklahoma; (41) Jackson, Oregon; (42) Chester, Pennsylvania; (45) Colleton, South Carolina; (46) Codington, South Dakota; (47) Cocke, Tennessee; (48) Bexar, Texas; (49) Morgan, Utah; (51) Buckingham, Virginia; (53) Island, Washington; (54) Hancock, West Virginia; (55) Door, Wisconsin; (56) Park, Wyoming; (72) Canovanas, Puerto Rico + + + + + (13) Tattnall, Georgia; (48) Kimble, Texas + + + + + (70) Ngarchelong, Palau + + + + + (02) Aleutian Islands, Alaska; (60) Eastern, American Samoa; (66) Guam, Guam; (68) Ailinglaplap, Marshall Islands; (69) Garapan, Northern Mariana Islands; (70) Angaur, Palau; (78) St. Croix, Virgin Islands of the U.S. + + + + + (05) Sharp, Arkansas; (13) Gwinnett, Georgia; (17) Montgomery, Illinois; (18) Randolph, Indiana; (19) Monroe, Iowa; (20) Ness, Kansas; (21) Lewis, Kentucky; (26) Oscoda, Michigan; (27) Roseau, Minnesota; (28) Tallahatchie, Mississippi; (29) Moniteau, Missouri; (31) Perkins, Nebraska; (37) Orange, North Carolina; (39) Preble, Ohio; (40) Sequoyah, Oklahoma; (46) Yankton, South Dakota; (47) Perry, Tennessee; (48) Ector, Texas; (51) Nottoway, Virginia; (55) Waupaca, Wisconsin; (72) Toa Alta, Puerto Rico + + + + + (13) Jones, Georgia; (17) Schuyler, Illinois; (18) Wabash, Indiana; (19) Story, Iowa; (20) Saline, Kansas; (21) Metcalfe, Kentucky; (27) Winona, Minnesota; (29) Pulaski, Missouri; (31) Thayer, Nebraska; (37) Stokes, North Carolina; (39) Wayne, Ohio; (47) Trousdale, Tennessee; (48) Garza, Texas; (51) Scott, Virginia + + + + + (13) Ware, Georgia; (48) Llano, Texas + + + + + (01) Lawrence, Alabama; (05) Lincoln, Arkansas; (06) San Luis Obispo, California; (08) Mineral, Colorado; (12) Madison, Florida; (13) Crawford, Georgia; (16) Shoshone, Idaho; (17) Jasper, Illinois; (18) Jennings, Indiana; (19) Hamilton, Iowa; (20) Harvey, Kansas; (21) Garrard, Kentucky; (22) Rapides, Louisiana; (26) Kalkaska, Michigan; (27) Le Sueur, Minnesota; (28) Leake, Mississippi; (29) Grundy, Missouri; (30) Prairie, Montana; (31) Hall, Nebraska; (36) Putnam, New York; (37) Greene, North Carolina; (38) Rolette, North Dakota; (39) Jackson, Ohio; (40) Le Flore, Oklahoma; (42) Luzerne, Pennsylvania; (45) Richland, South Carolina; (46) Lake, South Dakota; (47) Henry, Tennessee; (48) Cochran, Texas; (51) Greene, Virginia; (54) Putnam, West Virginia; (55) Milwaukee, Wisconsin; (72) Lajas, Puerto Rico + + + + + (51) Portsmouth, Virginia + + + + + (13) Randolph, Georgia; (48) Jeff Davis, Texas + + + + + (13) Jefferson, Georgia; (17) St Clair, Illinois; (18) Vanderburgh, Indiana; (19) Scott, Iowa; (20) Rooks, Kansas; (21) Meade, Kentucky; (26) Wayne, Michigan; (27) Washington, Minnesota; (28) Yazoo, Mississippi; (29) Pike, Missouri; (31) Sherman, Nebraska; (37) Sampson, North Carolina; (39) Vinton, Ohio; (47) Sullivan, Tennessee; (48) Frio, Texas; (51) Rockbridge, Virginia + + + + + (70) Ngchesar, Palau + + + + + (48) Randall, Texas + + + + + (68) Rongelap, Marshall Islands; (70) Peleliu, Palau; (74) Navassa Island, U.S. Minor Outlying Islands + + + + + (01) Dale, Alabama; (05) Faulkner, Arkansas; (06) Mendocino, California; (08) Garfield, Colorado; (12) Gulf, Florida; (13) Carroll, Georgia; (16) Gem, Idaho; (17) Edgar, Illinois; (18) Fountain, Indiana; (19) Clinton, Iowa; (20) Douglas, Kansas; (21) Casey, Kentucky; (22) Iberia, Louisiana; (24) Wicomico, Maryland; (26) Eaton, Michigan; (27) Fillmore, Minnesota; (28) Hancock, Mississippi; (29) Clark, Missouri; (30) Judith Basin, Montana; (31) Dawes, Nebraska; (35) San Juan, New Mexico; (36) Jefferson, New York; (37) Cleveland, North Carolina; (38) La Moure, North Dakota; (39) Fairfield, Ohio; (40) Ellis, Oklahoma; (41) Malheur, Oregon; (42) Delaware, Pennsylvania; (45) Greenville, South Carolina; (46) Edmunds, South Dakota; (47) Dyer, Tennessee; (48) Briscoe, Texas; (49) Tooele, Utah; (51) Craig, Virginia; (53) Mason, Washington; (54) Logan, West Virginia; (55) Green, Wisconsin; (56) Weston, Wyoming; (72) Comerio, Puerto Rico + + + + + (01) Franklin, Alabama; (05) Hot Spring, Arkansas; (06) Orange, California; (08) Jefferson, Colorado; (12) Holmes, Florida; (13) Clarke, Georgia; (16) Lemhi, Idaho; (17) Gallatin, Illinois; (18) Hancock, Indiana; (19) Dickinson, Iowa; (20) Franklin, Kansas; (21) Daviess, Kentucky; (22) La Salle, Louisiana; (26) Hillsdale, Michigan; (27) Isanti, Minnesota; (28) Jackson, Mississippi; (29) Dallas, Missouri; (30) Meagher, Montana; (31) Fillmore, Nebraska; (35) Union, New Mexico; (36) Nassau, New York; (37) Davie, North Carolina; (38) Morton, North Dakota; (39) Guernsey, Ohio; (40) Harper, Oklahoma; (41) Umatilla, Oregon; (42) Greene, Pennsylvania; (45) Laurens, South Carolina; (46) Hand, South Dakota; (47) Greene, Tennessee; (48) Callahan, Texas; (51) Fairfax, Virginia; (53) Skamania, Washington; (54) Mingo, West Virginia; (55) Kenosha, Wisconsin; (72) Guayanilla, Puerto Rico + + + + + (13) Walton, Georgia; (48) Live Oak, Texas + + + + + (13) Union, Georgia; (48) Liberty, Texas + + + + + (48) Maverick, Texas + + + + + (48) San Augustine, Texas + + + + + (48) Wharton, Texas + + + + + (51) Waynesboro, Virginia + + + + + (48) Navarro, Texas + + + + + (01) Sumter, Alabama; (05) Pulaski, Arkansas; (08) Teller, Colorado; (12) Sumter, Florida; (13) Franklin, Georgia; (17) Madison, Illinois; (18) Owen, Indiana; (19) Lyon, Iowa; (20) Meade, Kansas; (21) Knott, Kentucky; (22) Webster, Louisiana; (26) Montmorency, Michigan; (27) Polk, Minnesota; (28) Quitman, Mississippi; (29) McDonald, Missouri; (31) Madison, Nebraska; (36) Westchester, New York; (37) Mecklenburg, North Carolina; (39) Muskingum, Ohio; (40) Payne, Oklahoma; (42) Union, Pennsylvania; (46) Sully, South Dakota; (47) Maury, Tennessee; (48) Delta, Texas; (51) Middlesex, Virginia; (55) Taylor, Wisconsin; (72) Rio Grande, Puerto Rico + + + + + (01) Chambers, Alabama; (04) Navajo, Arizona; (05) Chicot, Arkansas; (06) El Dorado, California; (08) Cheyenne, Colorado; (12) Citrus, Florida; (13) Ben Hill, Georgia; (16) Bonner, Idaho; (17) Cass, Illinois; (18) Cass, Indiana; (19) Bremer, Iowa; (20) Chase, Kansas; (21) Bourbon, Kentucky; (22) Caddo, Louisiana; (23) Oxford, Maine; (24) Charles, Maryland; (25) Middlesex, Massachusetts; (26) Bay, Michigan; (27) Carlton, Minnesota; (28) Chickasaw, Mississippi; (29) Bollinger, Missouri; (30) Custer, Montana; (31) Brown, Nebraska; (32) Lincoln, Nevada; (33) Strafford, New Hampshire; (34) Hudson, New Jersey; (35) Grant, New Mexico; (36) Chenango, New York; (37) Bladen, North Carolina; (38) Cass, North Dakota; (39) Butler, Ohio; (40) Canadian, Oklahoma; (41) Deschutes, Oregon; (42) Bucks, Pennsylvania; (45) Calhoun, South Carolina; (46) Buffalo, South Dakota; (47) Carroll, Tennessee; (48) Bailey, Texas; (49) Garfield, Utah; (50) Orange, Vermont; (51) Bath, Virginia; (53) Douglas, Washington; (54) Doddridge, West Virginia; (55) Chippewa, Wisconsin; (56) Hot Springs, Wyoming; (72) Barceloneta, Puerto Rico + + + + + (01) Madison, Alabama; (05) Marion, Arkansas; (06) Shasta, California; (08) Otero, Colorado; (12) Nassau, Florida; (13) De Kalb, Georgia; (17) Kane, Illinois; (18) Lake, Indiana; (19) Howard, Iowa; (20) Jewell, Kansas; (21) Greenup, Kentucky; (22) St Charles, Louisiana; (26) Leelanau, Michigan; (27) Marshall, Minnesota; (28) Madison, Mississippi; (29) Howard, Missouri; (30) Sanders, Montana; (31) Holt, Nebraska; (36) St Lawrence, New York; (37) Henderson, North Carolina; (38) Stark, North Dakota; (39) Licking, Ohio; (40) McCurtain, Oklahoma; (42) Monroe, Pennsylvania; (45) Williamsburg, South Carolina; (46) McPherson, South Dakota; (47) Jefferson, Tennessee; (48) Colorado, Texas; (51) Henry, Virginia; (54) Summers, West Virginia; (55) Ozaukee, Wisconsin; (72) Luquillo, Puerto Rico + + + + + (05) Woodruff, Arkansas; (13) Hart, Georgia; (17) Piatt, Illinois; (18) Spencer, Indiana; (19) Palo Alto, Iowa; (20) Phillips, Kansas; (21) McCreary, Kentucky; (26) St Clair, Michigan; (27) Steele, Minnesota; (28) Walthall, Mississippi; (29) Nodaway, Missouri; (31) Richardson, Nebraska; (37) Pitt, North Carolina; (39) Seneca, Ohio; (40) Washington, Oklahoma; (47) Robertson, Tennessee; (48) Fannin, Texas; (51) Prince Edward, Virginia; (72) Vieques, Puerto Rico + + + + + (02) Sitka, Alaska + + + + + (51) Manassas Park, Virginia + + + + + (01) Bullock, Alabama; (04) Greenlee, Arizona; (05) Bradley, Arkansas; (06) Colusa, California; (08) Bent, Colorado; (09) New London, Connecticut; (12) Broward, Florida; (13) Banks, Georgia; (16) Bingham, Idaho; (17) Bureau, Illinois; (18) Boone, Indiana; (19) Benton, Iowa; (20) Bourbon, Kansas; (21) Bath, Kentucky; (22) Beauregard, Louisiana; (23) Kennebec, Maine; (24) Caroline, Maryland; (25) Franklin, Massachusetts; (26) Arenac, Michigan; (27) Big Stone, Minnesota; (28) Bolivar, Mississippi; (29) Barton, Missouri; (30) Carter, Montana; (31) Boone, Nebraska; (32) Eureka, Nevada; (33) Hillsborough, New Hampshire; (34) Cumberland, New Jersey; (35) De Baca, New Mexico; (36) Cayuga, New York; (37) Avery, North Carolina; (38) Bowman, North Dakota; (39) Auglaize, Ohio; (40) Blaine, Oklahoma; (41) Coos, Oregon; (42) Berks, Pennsylvania; (45) Barnwell, South Carolina; (46) Brookings, South Dakota; (47) Bradley, Tennessee; (48) Armstrong, Texas; (49) Davis, Utah; (50) Franklin, Vermont; (51) Appomattox, Virginia; (53) Clark, Washington; (54) Cabell, West Virginia; (55) Buffalo, Wisconsin; (56) Crook, Wyoming; (72) Anasco, Puerto Rico + + + + + (01) Walker, Alabama; (05) Scott, Arkansas; (12) Volusia, Florida; (13) Glynn, Georgia; (17) Massac, Illinois; (18) Porter, Indiana; (19) Marshall, Iowa; (20) Morris, Kansas; (21) Lawrence, Kentucky; (22) Winn, Louisiana; (26) Oceana, Michigan; (27) Redwood, Minnesota; (28) Simpson, Mississippi; (29) Marion, Missouri; (31) Nemaha, Nebraska; (37) Nash, North Carolina; (39) Perry, Ohio; (40) Pushmataha, Oklahoma; (42) Wayne, Pennsylvania; (46) Union, South Dakota; (47) Moore, Tennessee; (48) Dimmit, Texas; (51) New Kent, Virginia; (55) Walworth, Wisconsin; (72) San Juan, Puerto Rico + + + + + (48) Wilson, Texas + + + + + (48) Shelby, Texas + + + + + (48) Morris, Texas + + + + + (02) Kenai Peninsula, Alaska + + + + + (48) Runnels, Texas + + + + + (48) Reagan, Texas + + + + + (01) Crenshaw, Alabama; (05) Desha, Arkansas; (06) Marin, California; (08) El Paso, Colorado; (12) Gilchrist, Florida; (16) Franklin, Idaho; (17) Douglas, Illinois; (18) Fayette, Indiana; (19) Clay, Iowa; (20) Dickinson, Kansas; (21) Carroll, Kentucky; (22) Franklin, Louisiana; (24) Talbot, Maryland; (26) Delta, Michigan; (27) Douglas, Minnesota; (28) Greene, Mississippi; (29) Chariton, Missouri; (30) Hill, Montana; (31) Custer, Nebraska; (34) Warren, New Jersey; (35) Roosevelt, New Mexico; (36) Hamilton, New York; (37) Chowan, North Carolina; (38) Hettinger, North Dakota; (39) Delaware, Ohio; (40) Delaware, Oklahoma; (41) Lincoln, Oregon; (42) Cumberland, Pennsylvania; (45) Florence, South Carolina; (46) Dewey, South Dakota; (47) De Kalb, Tennessee; (48) Brazos, Texas; (49) Sevier, Utah; (51) Chesterfield, Virginia; (53) Lewis, Washington; (54) Lewis, West Virginia; (55) Forest, Wisconsin; (56) Uinta, Wyoming; (72) Cidra, Puerto Rico + + + + + (13) Wilkinson, Georgia; (48) Mason, Texas + + + + + (01) Pike, Alabama; (05) Pike, Arkansas; (06) Tuolumne, California; (08) Saguache, Colorado; (12) St Johns, Florida; (13) Evans, Georgia; (17) McDonough, Illinois; (18) Morgan, Indiana; (19) Kossuth, Iowa; (20) Logan, Kansas; (21) Jackson, Kentucky; (22) Terrebonne, Louisiana; (26) Menominee, Michigan; (27) Olmsted, Minnesota; (28) Pearl River, Mississippi; (29) Lawrence, Missouri; (30) Wibaux, Montana; (31) Lancaster, Nebraska; (36) Tompkins, New York; (37) Lincoln, North Carolina; (39) Miami, Ohio; (40) Oklahoma, Oklahoma; (42) Snyder, Pennsylvania; (46) Roberts, South Dakota; (47) McNairy, Tennessee; (48) Culberson, Texas; (51) Louisa, Virginia; (54) Wyoming, West Virginia; (55) St Croix, Wisconsin; (72) Patillas, Puerto Rico + + + + + (01) Coosa, Alabama; (05) Cross, Arkansas; (06) Los Angeles, California; (08) Eagle, Colorado; (12) Franklin, Florida; (13) Calhoun, Georgia; (16) Custer, Idaho; (17) De Kalb, Illinois; (18) Dubois, Indiana; (19) Chickasaw, Iowa; (20) Crawford, Kansas; (21) Campbell, Kentucky; (22) East Feliciana, Louisiana; (24) St Mary\s, Maryland; (26) Clinton, Michigan; (27) Dakota, Minnesota; (28) Franklin, Mississippi; (29) Cass, Missouri; (30) Golden Valley, Montana; (31) Colfax, Nebraska; (34) Sussex, New Jersey; (35) Quay, New Mexico; (36) Genesee, New York; (37) Chatham, North Carolina; (38) Grant, North Dakota; (39) Darke, Ohio; (40) Creek, Oklahoma; (41) Lake, Oregon; (42) Columbia, Pennsylvania; (45) Edgefield, South Carolina; (46) Day, South Dakota; (47) Davidson, Tennessee; (48) Bowie, Texas; (49) San Juan, Utah; (51) Charlotte, Virginia; (53) Kittitas, Washington; (54) Jefferson, West Virginia; (55) Florence, Wisconsin; (56) Sweetwater, Wyoming; (72) Ceiba, Puerto Rico + + + + + (13) Stephens, Georgia; (48) Kaufman, Texas + + + + + (13) Tift, Georgia; (48) Lamar, Texas + + + + + (02) Wade Hampton, Alaska + + + + + (48) Wichita, Texas + + + + + (13) Whitfield, Georgia; (48) Madison, Texas + + + + + (01) Elmore, Alabama; (05) Garland, Arkansas; (06) Mono, California; (08) Gunnison, Colorado; (12) Hendry, Florida; (13) Chatham, Georgia; (16) Jefferson, Idaho; (17) Fayette, Illinois; (18) Gibson, Indiana; (19) Davis, Iowa; (20) Ellis, Kansas; (21) Clay, Kentucky; (22) Jefferson, Louisiana; (26) Gladwin, Michigan; (27) Grant, Minnesota; (28) Holmes, Mississippi; (29) Cole, Missouri; (30) Liberty, Montana; (31) Dixon, Nebraska; (35) Sierra, New Mexico; (36) Livingston, New York; (37) Cumberland, North Carolina; (38) McIntosh, North Dakota; (39) Fulton, Ohio; (40) Grady, Oklahoma; (41) Multnomah, Oregon; (42) Fayette, Pennsylvania; (45) Horry, South Carolina; (46) Grant, South Dakota; (47) Franklin, Tennessee; (48) Burleson, Texas; (49) Wasatch, Utah; (51) Dickenson, Virginia; (53) Pend Oreille, Washington; (54) Marshall, West Virginia; (55) Iron, Wisconsin; (72) Dorado, Puerto Rico + + + + + (01) Choctaw, Alabama; (04) Santa Cruz, Arizona; (05) Cleburne, Arkansas; (06) Humboldt, California; (08) Costilla, Colorado; (12) Columbia, Florida; (13) Bleckley, Georgia; (16) Butte, Idaho; (17) Clark, Illinois; (18) Clinton, Indiana; (19) Butler, Iowa; (20) Cheyenne, Kansas; (21) Bracken, Kentucky; (22) Cameron, Louisiana; (23) Sagadahoc, Maine; (24) Garrett, Maryland; (25) Plymouth, Massachusetts; (26) Branch, Michigan; (27) Chippewa, Minnesota; (28) Clarke, Mississippi; (29) Butler, Missouri; (30) Deer Lodge, Montana; (31) Butler, Nebraska; (32) Nye, Nevada; (34) Middlesex, New Jersey; (35) Hidalgo, New Mexico; (36) Cortland, New York; (37) Burke, North Carolina; (38) Divide, North Dakota; (39) Clark, Ohio; (40) Choctaw, Oklahoma; (41) Grant, Oregon; (42) Cameron, Pennsylvania; (45) Chester, South Carolina; (46) Charles Mix, South Dakota; (47) Chester, Tennessee; (48) Baylor, Texas; (49) Juab, Utah; (50) Washington, Vermont; (51) Botetourt, Virginia; (53) Garfield, Washington; (54) Grant, West Virginia; (55) Crawford, Wisconsin; (56) Lincoln, Wyoming; (72) Cabo Rojo, Puerto Rico + + + + + (51) Harrisonburg, Virginia + + + + + (02) Skagway-Yakutat-Angoon, Alaska; (13) Pike, Georgia; (21) Wayne, Kentucky; (48) Hunt, Texas + + + + + (13) Toombs, Georgia; (48) Lamb, Texas + + + + + (48) Rains, Texas + + + + + (48) Medina, Texas + + + + + (01) Greene, Alabama; (05) Independence, Arkansas; (06) Plumas, California; (08) Kit Carson, Colorado; (12) Jackson, Florida; (13) Clayton, Georgia; (16) Lincoln, Idaho; (17) Grundy, Illinois; (18) Hendricks, Indiana; (19) Emmet, Iowa; (20) Gove, Kansas; (21) Elliott, Kentucky; (22) Livingston, Louisiana; (26) Huron, Michigan; (27) Jackson, Minnesota; (28) Jefferson, Mississippi; (29) De Kalb, Missouri; (30) Missoula, Montana; (31) Frontier, Nebraska; (36) Niagara, New York; (37) Durham, North Carolina; (38) Nelson, North Dakota; (39) Hancock, Ohio; (40) Hughes, Oklahoma; (41) Wallowa, Oregon; (42) Indiana, Pennsylvania; (45) Lexington, South Carolina; (46) Harding, South Dakota; (47) Hamblen, Tennessee; (48) Camp, Texas; (51) Floyd, Virginia; (53) Spokane, Washington; (54) Monroe, West Virginia; (55) La Crosse, Wisconsin; (72) Gurabo, Puerto Rico + + + + + (48) Ochiltree, Texas + + + + + (51) Charles City, Virginia + + + + + (13) Lumpkin, Georgia; (17) Warren, Illinois; (19) Webster, Iowa; (20) Stanton, Kansas; (21) Owen, Kentucky; (29) St Francois, Missouri; (37) Washington, North Carolina; (47) Williamson, Tennessee; (48) Guadalupe, Texas; (51) Warren, Virginia + + + + + (13) Spalding, Georgia; (48) Karnes, Texas + + + + + (48) Rusk, Texas + + + + + (48) Nacogdoches, Texas + + + + + (48) Roberts, Texas + + + + + (13) Rockdale, Georgia; (48) Jim Hogg, Texas + + + + + (48) Presidio, Texas + + + + + (13) Madison, Georgia; (17) Whiteside, Illinois; (19) Worth, Iowa; (20) Trego, Kansas; (21) Pike, Kentucky; (29) Saline, Missouri; (37) Wilson, North Carolina; (48) Hansford, Texas; (51) Wise, Virginia + + + + + (70) Melekeiok, Palau + + + + + (51) South Boston, Virginia + + + + + (68) Utrik, Marshall Islands + + + + + (02) Anchorage, Alaska; (60) Manu\a, American Samoa; (75) Trust Territory of the Pacific Islands, ; (78) St. John, Virgin Islands of the U.S. + + + + + (01) Conecuh, Alabama; (05) Crittenden, Arkansas; (06) Lassen, California; (08) Douglas, Colorado; (12) Flagler, Florida; (13) Butts, Georgia; (16) Clearwater, Idaho; (17) Cumberland, Illinois; (18) Delaware, Indiana; (19) Cherokee, Iowa; (20) Cowley, Kansas; (21) Calloway, Kentucky; (22) East Carroll, Louisiana; (24) Queen Anne\s, Maryland; (26) Clare, Michigan; (27) Crow Wing, Minnesota; (28) Forrest, Mississippi; (29) Carter, Missouri; (30) Glacier, Montana; (31) Clay, Nebraska; (34) Somerset, New Jersey; (35) Otero, New Mexico; (36) Fulton, New York; (37) Catawba, North Carolina; (38) Grand Forks, North Dakota; (39) Cuyahoga, Ohio; (40) Craig, Oklahoma; (41) Klamath, Oregon; (42) Clinton, Pennsylvania; (45) Dorchester, South Carolina; (46) Davison, South Dakota; (47) Cumberland, Tennessee; (48) Bosque, Texas; (49) Salt Lake, Utah; (51) Carroll, Virginia; (53) Kitsap, Washington; (54) Jackson, West Virginia; (55) Eau Claire, Wisconsin; (56) Sublette, Wyoming; (72) Cayey, Puerto Rico + + + + + (48) Wheeler, Texas + + + + + (13) Henry, Georgia; (17) Pope, Illinois; (18) Steuben, Indiana; (19) Pocahontas, Iowa; (20) Pratt, Kansas; (21) Madison, Kentucky; (26) Sanilac, Michigan; (27) Swift, Minnesota; (28) Washington, Mississippi; (29) Osage, Missouri; (31) Saline, Nebraska; (37) Randolph, North Carolina; (39) Stark, Ohio; (40) Woods, Oklahoma; (47) Scott, Tennessee; (48) Fisher, Texas; (72) Yabucoa, Puerto Rico + + + + + (48) Tom Green, Texas + + + + + (05) Stone, Arkansas; (13) Habersham, Georgia; (17) Morgan, Illinois; (18) Ripley, Indiana; (19) Montgomery, Iowa; (20) Norton, Kansas; (21) Lincoln, Kentucky; (26) Otsego, Michigan; (27) St Louis, Minnesota; (28) Tate, Mississippi; (29) Monroe, Missouri; (31) Phelps, Nebraska; (37) Pamlico, North Carolina; (39) Putnam, Ohio; (40) Stephens, Oklahoma; (46) Ziebach, South Dakota; (47) Pickett, Tennessee; (48) Edwards, Texas; (51) Orange, Virginia; (55) Waushara, Wisconsin; (72) Toa Baja, Puerto Rico + + + + + (51) Winchester, Virginia + + + + + (48) San Patricio, Texas + + + + + (01) Henry, Alabama; (05) Jackson, Arkansas; (06) Sacramento, California; (08) La Plata, Colorado; (12) Lafayette, Florida; (13) Cobb, Georgia; (16) Minidoka, Idaho; (17) Hancock, Illinois; (18) Howard, Indiana; (19) Floyd, Iowa; (20) Grant, Kansas; (21) Fayette, Kentucky; (22) Morehouse, Louisiana; (26) Ionia, Michigan; (27) Kandiyohi, Minnesota; (28) Jones, Mississippi; (29) Douglas, Missouri; (30) Park, Montana; (31) Gage, Nebraska; (36) Onondaga, New York; (37) Forsyth, North Carolina; (38) Pembina, North Dakota; (39) Harrison, Ohio; (40) Jefferson, Oklahoma; (41) Washington, Oregon; (42) Juniata, Pennsylvania; (45) Marion, South Carolina; (46) Hutchinson, South Dakota; (47) Hancock, Tennessee; (48) Cass, Texas; (51) Franklin, Virginia; (53) Thurston, Washington; (54) Nicholas, West Virginia; (55) Langlade, Wisconsin; (72) Hormigueros, Puerto Rico + + + + + (13) Johnson, Georgia; (17) Sangamon, Illinois; (18) Vigo, Indiana; (19) Sioux, Iowa; (20) Russell, Kansas; (21) Mercer, Kentucky; (27) Wilkin, Minnesota; (29) Polk, Missouri; (31) Stanton, Nebraska; (37) Stanly, North Carolina; (39) Washington, Ohio; (47) Tipton, Tennessee; (48) Galveston, Texas; (51) Russell, Virginia + + + + + (02) Northwest Arctic, Alaska + + + + + (13) Peach, Georgia; (21) Union, Kentucky; (29) Webster, Missouri; (48) Houston, Texas + + + + + (48) Winkler, Texas + + + + + (51) Falls Church, Virginia + + + + + (48) Zavala, Texas + + + + + (48) Walker, Texas + + + + + (48) Tyler, Texas + + + + + (13) Turner, Georgia; (48) Lee, Texas + + + + + (51) Poquoson, Virginia + + + + + (48) Mills, Texas + + + + + (51) Hopewell, Virginia + + + + + (13) Macon, Georgia; (17) White, Illinois; (19) Woodbury, Iowa; (20) Thomas, Kansas; (21) Perry, Kentucky; (29) Ste Genevieve, Missouri; (37) Wilkes, North Carolina; (48) Hamilton, Texas; (51) Westmoreland, Virginia + + + + + (48) Terry, Texas + + + + + (70) Sonsorol, Palau + + + + + (01) Bibb, Alabama; (04) Gila, Arizona; (05) Benton, Arkansas; (06) Butte, California; (08) Archuleta, Colorado; (09) Middlesex, Connecticut; (12) Bradford, Florida; (13) Baker, Georgia; (15) Kauai, Hawaii; (16) Bear Lake, Idaho; (17) Boone, Illinois; (18) Benton, Indiana; (19) Appanoose, Iowa; (20) Barber, Kansas; (21) Ballard, Kentucky; (22) Assumption, Louisiana; (23) Franklin, Maine; (25) Dukes, Massachusetts; (26) Alpena, Michigan; (27) Beltrami, Minnesota; (28) Attala, Mississippi; (29) Audrain, Missouri; (30) Broadwater, Montana; (31) Banner, Nebraska; (32) Elko, Nevada; (33) Coos, New Hampshire; (34) Camden, New Jersey; (35) Colfax, New Mexico; (36) Broome, New York; (37) Anson, North Carolina; (38) Billings, North Dakota; (39) Ashtabula, Ohio; (40) Beaver, Oklahoma; (41) Clatsop, Oregon; (42) Beaver, Pennsylvania; (44) Providence, Rhode Island; (45) Anderson, South Carolina; (46) Bennett, South Dakota; (47) Bledsoe, Tennessee; (48) Aransas, Texas; (49) Carbon, Utah; (50) Chittenden, Vermont; (51) Amelia, Virginia; (53) Chelan, Washington; (54) Braxton, West Virginia; (55) Bayfield, Wisconsin; (56) Carbon, Wyoming; (68) Ailinginae, Marshall Islands; (72) Aguas Buenas, Puerto Rico + + + + + (48) Yoakum, Texas + + + + + (48) Schleicher, Texas + + + + + (48) Tarrant, Texas + + + + + (70) Airai, Palau + + + + + (51) Chesapeake, Virginia + + + + + (48) Ward, Texas + + + + + (68) Ebon, Marshall Islands + + + + + (48) Stonewall, Texas + + + + + + + + + + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\constraint\niem\iso_4217\2.0\iso_4217.xsd + + Codes for the representation of currencies and funds from the International Organization for Standardization (ISO) 4217:2001. + + true + + + + + + + + + Mauritius Rupee: Mauritius + + + + + Uzbekistan Sum: Uzbekistan + + + + + New Dinar: Yugoslavia + + + + + Sudanese Dinar: Sudan + + + + + St Helena Pound: St Helena + + + + + European Unit of Account 17 (E.U.A.- 17): Bond Markets Units + + + + + Irish Pound: Ireland + + + + + Schilling: Austria + + + + + Pataca: Macau + + + + + Pakistan Rupee: Pakistan + + + + + Riel: Cambodia + + + + + Gourde: Haiti + + + + + Italian Lira: Italy, San Marino, Vatican City State (Holy See) + + + + + Quetzal: Guatemala + + + + + Russian Ruble: Russian Federation + + + + + Jamaican Dollar: Jamaica + + + + + Trinidad and Tobago Dollar: Trinidad and Tobago + + + + + Zimbabwe Dollar: Zimbabwe + + + + + Tanzanian Shilling: Tanzania, United Republic Of + + + + + Somoni: Tajikistan + + + + + Cape Verde Escudo: Cape Verde + + + + + Tenge: Kazakhstan + + + + + Guyana Dollar: Guyana + + + + + Tala: Samoa + + + + + Dominican Peso: Dominican Republic + + + + + Andorran Peseta: Andorra + + + + + North Korean Won: Korea, Democratic People's Republic Of + + + + + Dalasi: Gambia + + + + + Unidad de Valor Constante (UVC): Ecuador + + + + + Nakfa: Eritrea + + + + + Codes specifically reserved for testing purposes: + + + + + Kwanza Reajustado: Angola + + + + + Unidades de fomento: Chile + + + + + European Unit of Account 9 (E.U.A.- 9): Bond Markets Units + + + + + Pa'anga: Tonga + + + + + Barbados Dollar: Barbados + + + + + Gold Bond Markets Units: + + + + + Sri Lanka Rupee: Sri Lanka + + + + + Maltese Lira: Malta + + + + + Guinea Franc: Guinea + + + + + Lari: Georgia + + + + + Timor Escudo: East Timor + + + + + Liberian Dollar: Liberia + + + + + Latvian Lats: Latvia + + + + + Seychelles Rupee: Seychelles + + + + + French Franc: Andorra, France, French Guiana, French Southern Territories, Guadeloupe, Martinique, Monaco, Reunion, St Pierre and Miquelon + + + + + Mexican Peso: Mexico + + + + + Gold-Franc: Special settlement currencies + + + + + Drachma: Greece + + + + + Moroccan Dirham: Morocco, Western Sahara + + + + + Tunisian Dinar: Tunisia + + + + + Kwacha: Malawi + + + + + Silver: Bond Markets Units + + + + + CFP Franc: French Polynesia, New Caledonia, Wallis and Futuna Islands + + + + + Yen: Japan + + + + + Leone: Sierra Leone + + + + + Afghani: Afghanistan + + + + + Malaysian Ringgit: Malaysia + + + + + Kina: Papua New Guinea + + + + + Naira: Nigeria + + + + + Dobra: Sao Tome and Principe + + + + + Kwacha: Zambia + + + + + East Caribbean Dollar: Anguilla, Antigua and Barbuda, Dominica, Grenada, Montserrat, St Kitts - Nevis, Saint Lucia, Saint Vincent and The Grenadines + + + + + Convertible Marks: Bosnia and Herzegovina + + + + + European Monetary Unit (E.M.U.-6): Bond Markets Units + + + + + Gibraltar Pound: Gibraltar + + + + + Costa Rican Colon: Costa Rica + + + + + Manat: Turkmenistan + + + + + Kenyan Shilling: Kenya + + + + + Euro: + + + + + New Taiwan Dollar: Taiwan, Province Of China + + + + + Saudi Riyal: Saudi Arabia + + + + + Pula: Botswana + + + + + Iraqi Dinar: Iraq + + + + + Canadian Dollar: Canada + + + + + Swiss Franc: Liechtenstein, Switzerland + + + + + Balboa: Panama + + + + + Pound Sterling: United Kingdom + + + + + Colombian Peso: Colombia + + + + + New Israeli Sheqel: Israel + + + + + CFA Franc BEAC: Cameroon, Central African Republic, Chad, Congo, Equatorial Guinea, Gabon + + + + + Cordoba Oro: Nicaragua + + + + + Spanish Peseta: Andorra, Spain + + + + + Jordanian Dinar: Jordan + + + + + Dong: Vietnam + + + + + Libyan Dinar: Libyan Arab Jamahiriya + + + + + Solomon Islands Dollar: Solomon Islands + + + + + Metical: Mozambique + + + + + Kroon: Estonia + + + + + (Same day): United States + + + + + Algerian Dinar: Algeria + + + + + Lebanese Pound: Lebanon + + + + + Belgian Franc: Belgium + + + + + (financial Rand): Lesotho + + + + + Chilean Peso: Chile + + + + + Uganda Shilling: Uganda + + + + + Kuna: Croatia + + + + + Belize Dollar: Belize + + + + + Bahamian Dollar: Bahamas + + + + + Kip: Lao People's Democratic Republic + + + + + Leu: Romania + + + + + Taka: Bangladesh + + + + + Kyat: Myanmar + + + + + Cyprus Pound: Cyprus + + + + + Palladium: Bond Markets Units + + + + + Mexican Unidad de Inversion (UDI): Mexico + + + + + Hong Kong Dollar: Hong Kong + + + + + Somali Shilling: Somalia + + + + + Kuwaiti Dinar: Kuwait + + + + + Won: Korea, Republic Of + + + + + Nuevo Sol: Peru + + + + + New Kwanza: Angola + + + + + Bulgarian LEV: Bulgaria + + + + + Aruban Guilder: Aruba + + + + + Franc Congolais: Congo, The Democratic Republic Of + + + + + Hryvnia: Ukraine + + + + + Netherlands Guilder: Netherlands + + + + + Brazilian Real: Brazil + + + + + Peso Uruguayo: Uruguay + + + + + Rufiyaa: Maldives + + + + + Luxembourg Franc: Luxembourg + + + + + Tajik Ruble (old): Tajikistan (Old) + + + + + Deutsche Mark: Germany + + + + + Pound: Falkland Islands (Malvinas) + + + + + Yemeni Rial: Yemen + + + + + Comoro Franc: Comoros + + + + + Singapore Dollar: Singapore + + + + + Azerbaijanian Manat: Azerbaijan + + + + + Antillian Guilder: Netherlands Antilles + + + + + CFA Franc BCEAO: Benin, Burkina Faso, Cote D'ivoire, Guinea-Bissau, Mali, Niger, Senegal, Togo + + + + + Lilangeni: Swaziland + + + + + Loti: Lesotho + + + + + Czech Koruna: Czech Republic + + + + + SDR: International Monetary Fund (Imf) + + + + + Sucre: Ecuador + + + + + Platinum: Bond Markets Units + + + + + Yuan Renminbi: China + + + + + El Salvador Colon: El Salvador + + + + + Burundi Franc: Burundi + + + + + Cuban Peso: Cuba + + + + + Cayman Islands Dollar: Cayman Islands + + + + + Rupiah: East Timor, Indonesia + + + + + Guarani: Paraguay + + + + + Norwegian Krone: Bouvet Island, Norway, Svalbard and Jan Mayen Islands + + + + + Ouguiya: Mauritania + + + + + Argentine Peso: Argentina + + + + + Portuguese Escudo: Portugal + + + + + Fiji Dollar: Fiji + + + + + Surinam Guilder: Suriname + + + + + Rial Omani: Oman + + + + + Turkish Lira: Turkey + + + + + Slovak Koruna: Slovakia + + + + + Denar: Macedonia, The Former Yugoslav Republic Of + + + + + Ethiopian Birr: Ethiopia + + + + + Namibia Dollar: Namibia + + + + + Bermudian Dollar: Bermuda + + + + + Rand: Lesotho, Namibia, South Africa + + + + + US Dollar: American Samoa, British Indian Ocean Territory,, Guam, Haiti, Marshall Islands, Micronesia, Northern Mariana Islands, Palau, Panama, Puerto Rico, Turks and Caicos Islands, United States, United States Minor Outlaying Islands, Virgin Islands (British), Virgin Islands (U.S.) + + + + + Lek: Albania + + + + + Rwanda Franc: Rwanda + + + + + Tolar: Slovenia + + + + + UAE Dirham: United Arab Emirates + + + + + Qatari Rial: Qatar + + + + + Russian Ruble: Russian Federation + + + + + Belarussian Ruble: Belarus + + + + + New Zealand Dollar: Cook Islands, New Zealand, Niue, Pitcairn, Tokelau + + + + + Tugrik: Mongolia + + + + + Iranian Rial: Iran (Islamic Republic Of) + + + + + Vatu: Vanuatu + + + + + Swedish Krona: Sweden + + + + + Moldovan Leu: Moldova, Republic Of + + + + + Syrian Pound: Syrian Arab Republic + + + + + Indian Rupee: Bhutan, India + + + + + Lempira: Honduras + + + + + Forint: Hungary + + + + + Nepalese Rupee: Nepal + + + + + Baht: Thailand + + + + + Guinea-Bissau Peso: Guinea-Bissau + + + + + Zloty: Poland + + + + + Danish Krone: Denmark, Faeroe Islands, Greenland + + + + + Lithuanian Litas: Lithuania + + + + + Iceland Krona: Iceland + + + + + Cedi: Ghana + + + + + New Zaire: Zaire + + + + + Egyptian Pound: Egypt + + + + + Bolivar: Venezuela + + + + + European Composite Unit (EURCO): Bond Markets Units + + + + + Markka: Finland + + + + + Armenian Dram: Armenia + + + + + Som: Kyrgyzstan + + + + + Lev: Bulgaria + + + + + UIC-Franc: Special settlement currencies + + + + + Djibouti Franc: Djibouti + + + + + Bahraini Dinar: Bahrain + + + + + Australian Dollar: Australia, Christmas Island, Cocos (Keeling) Islands, Heard and Mcdonald Islands, Kiribati, Nauru, Norfolk Island, Tuvalu + + + + + Philippine Peso: Philippines + + + + + Brunei Dollar: Brunei Darussalam + + + + + (Next day): United States + + + + + Malagasy Franc: Madagascar + + + + + Ngultrum: Bhutan + + + + + The codes assigned for transactions where no currency is involved are:: + + + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\constraint\niem\iso_639-3\2.0\iso_639-3.xsd + + Codes for the representation of names of languages - Part 3: Alpha-3 code for comprehensive coverage of languages. + + true + + + + + + + + + Lomavren + + + + + Aghul + + + + + Tuwuli + + + + + Ritarungo + + + + + Tokelau + + + + + Garreh-Ajuran + + + + + Naba + + + + + Danish + + + + + Marghi South + + + + + Moldavian + + + + + Wilawila + + + + + Kinaray-A + + + + + Remun + + + + + Ebira + + + + + South Muyu + + + + + Kaduo + + + + + Thado Chin + + + + + Bisu + + + + + Jarawa (India) + + + + + Western Tawbuid + + + + + Yidgha + + + + + Old Norse + + + + + Dagbani + + + + + Ndaka + + + + + Tugutil + + + + + Kayabi + + + + + Alak + + + + + Citak + + + + + Kabardian + + + + + Kapori + + + + + Kabalai + + + + + Sekpele + + + + + Yalarnnga + + + + + Western Subanon + + + + + Zirenkel + + + + + Cuneiform Luwian + + + + + Sadri + + + + + Ciwogai + + + + + Chrau + + + + + Wolof + + + + + Kako + + + + + Ngomba + + + + + Northern Luri + + + + + Ngando (Central African Republic) + + + + + Roviana + + + + + Worodougou + + + + + Galo Adi + + + + + Sarudu + + + + + Wuvulu-Aua + + + + + Central Sama + + + + + Pele-Ata + + + + + Kadara + + + + + Mono (Cameroon) + + + + + Navarro-Labourdin Basque + + + + + Lala + + + + + Geme + + + + + Sicite Senoufo + + + + + Toura (Cote d'Ivoire) + + + + + Veracruz Huastec + + + + + Ersu + + + + + Pande + + + + + Khezha Naga + + + + + Minica Huitoto + + + + + Vaghua + + + + + Palumata + + + + + Kara-Kalpak + + + + + Playero + + + + + Navut + + + + + Old Kentish Sign Language + + + + + Sanskrit + + + + + Ligbi + + + + + Serawai + + + + + Ili'uun + + + + + Surigaonon + + + + + Southern Tutchone + + + + + Resigaro + + + + + Wambon + + + + + White Gelao + + + + + Dumun + + + + + Dabe + + + + + Minriq + + + + + Achumawi + + + + + Asurini + + + + + Keder + + + + + Varisi + + + + + Tita + + + + + Barama + + + + + Bandjigali + + + + + Cua + + + + + Old Persian + + + + + Borei + + + + + Legenyem + + + + + Vafsi + + + + + Besisi + + + + + Mokole + + + + + Taino + + + + + Woun Meu + + + + + Wageman + + + + + Ninggerum + + + + + Abure + + + + + Biem + + + + + Nanerige Senoufo + + + + + Kwese + + + + + Bumbita Arapesh + + + + + Muluridyi + + + + + Niuafo'ou + + + + + Skou + + + + + Lua' + + + + + Asumboa + + + + + Tay Boi + + + + + Bali Sign Language + + + + + Esuma + + + + + Halang + + + + + Ogbogolo + + + + + Kaivi + + + + + Lenyima + + + + + Pahlavani + + + + + Mankanya + + + + + Birri + + + + + Mountain Koiali + + + + + Dyangadi + + + + + Northern One + + + + + Arequipa-La Union Quechua + + + + + Shuwa-Zamani + + + + + Usan + + + + + Ayi (China) + + + + + Tabaa Zapotec + + + + + Goanese Konkani + + + + + Mpi + + + + + Pemon + + + + + Bwe Karen + + + + + Lahul Lohar + + + + + Tonga (Nyasa) + + + + + Kawi + + + + + Mburku + + + + + Tagalog + + + + + Bangi + + + + + Mogum + + + + + Gawwada + + + + + Sanga (Democratic Republic of Congo) + + + + + Miriti + + + + + Kumam + + + + + Judeo-Tunisian Arabic + + + + + Soi + + + + + North Wemale + + + + + Pochutec + + + + + Mewati + + + + + Ukuriguma + + + + + Dicamay Agta + + + + + Western Karaboro + + + + + Wagi + + + + + Kumba + + + + + Atruahi + + + + + Chinese + + + + + Maragus + + + + + Mbabaram + + + + + Da'a Kaili + + + + + Sunam + + + + + Kamo + + + + + Aweti + + + + + Yucatec Maya Sign Language + + + + + Kala Lagaw Ya + + + + + Khe + + + + + Ngambay + + + + + Mono (Solomon Islands) + + + + + Ngasa + + + + + Old Georgian + + + + + Abaga + + + + + Higaonon + + + + + Remo + + + + + Badaga + + + + + Male (Papua New Guinea) + + + + + Pankarare + + + + + Modole + + + + + Gbii + + + + + Chumburung + + + + + San Juan Atzingo Popoloca + + + + + Zhang-Zhung + + + + + Nagumi + + + + + Wahgi + + + + + Wojenaka + + + + + Ngalakan + + + + + Karadjeri + + + + + Pije + + + + + Lari + + + + + Warembori + + + + + Tlamacazapa Nahuatl + + + + + Miani + + + + + Bitare + + + + + Ulithian + + + + + Hung + + + + + Mubi + + + + + Central Subanen + + + + + Papiamento + + + + + Icelandic Sign Language + + + + + Surui + + + + + Filomena Mata-Coahuitlan Totonac + + + + + Lolak + + + + + Kei + + + + + Gamale Kham + + + + + Amahuaca + + + + + Pataxo-Hahaai + + + + + Suku + + + + + Nipsan + + + + + Sempan + + + + + Ga'anda + + + + + Orizaba Nahuatl + + + + + Cogui + + + + + Mango + + + + + Guinean Sign Language + + + + + Kwanja + + + + + Kw'adza + + + + + Aushiri + + + + + Kelo + + + + + Yakut + + + + + Biete + + + + + Udmurt + + + + + Jumli + + + + + Natioro + + + + + Western Highland Chatino + + + + + Amundava + + + + + Amikoana + + + + + Miskito + + + + + Croatian + + + + + Samaritan Aramaic + + + + + Mama + + + + + Enrekang + + + + + Sembakung Murut + + + + + Balantak + + + + + Cakfem-Mushere + + + + + Mulam + + + + + Aguaruna + + + + + Ulumanda' + + + + + Northern Ohlone + + + + + Western Lawa + + + + + Judeo-Italian + + + + + Migaama + + + + + Baga Mboteni + + + + + Manda (India) + + + + + Hoava + + + + + Seba + + + + + Solano + + + + + Grass Koiari + + + + + Yoloxochitl Mixtec + + + + + Temoaya Otomi + + + + + Ngongo + + + + + Mbara (Australia) + + + + + Koongo + + + + + Cuyonon + + + + + Midob + + + + + Wahau Kenyah + + + + + Shihhi Arabic + + + + + Ende + + + + + Kwang + + + + + Vunjo + + + + + Liv + + + + + Zome + + + + + Tumbuka + + + + + Rapanui + + + + + Southwest Pashayi + + + + + Namo + + + + + Trinidadian Creole English + + + + + Tungag + + + + + Trio + + + + + Baygo + + + + + Palauan + + + + + Ipeka-Tapuia + + + + + Nyore + + + + + German + + + + + Queyu + + + + + Green Gelao + + + + + Inonhan + + + + + Tobanga + + + + + Kulfa + + + + + Minangkabau + + + + + Slovakian Sign Language + + + + + Irula + + + + + Burmeso + + + + + Laka (Chad) + + + + + Kirike + + + + + Ngam + + + + + Kalispel-Pend d'Oreille + + + + + Brek Karen + + + + + Krio + + + + + Kulisusu + + + + + Avestan + + + + + Lakha + + + + + Kott + + + + + Moksela + + + + + Arhuaco + + + + + Tlalitzlipa Nahuatl + + + + + Busa + + + + + Boon + + + + + Kofa + + + + + Pitjantjatjara + + + + + Ghera + + + + + Nsari + + + + + Yine + + + + + Ndasa + + + + + Comecrudo + + + + + Mum + + + + + Maremgi + + + + + Cypriot Arabic + + + + + Walak + + + + + Idon + + + + + Kudmali + + + + + Baure + + + + + Uare + + + + + Musak + + + + + Muduapa + + + + + Ban Khor Sign Language + + + + + Luyia + + + + + Alcozauca Mixtec + + + + + Urningangg + + + + + Assangori + + + + + Edopi + + + + + Kuikuro-Kalapalo + + + + + Ikulu + + + + + Western Acipa + + + + + Gabri + + + + + Khorasani Turkish + + + + + Arua + + + + + Kalao + + + + + Mamusi + + + + + Carolinian + + + + + Tidikelt Tamazight + + + + + Yanahuanca Pasco Quechua + + + + + Manambu + + + + + Nyungwe + + + + + Birgit + + + + + Mahican + + + + + Senara Senoufo + + + + + Desano + + + + + Bubia + + + + + Mandeali + + + + + Nawdm + + + + + Turumsa + + + + + Bidiyo + + + + + Gilyak + + + + + Wejewa + + + + + Kwakum + + + + + Angguruk Yali + + + + + Tanema + + + + + Brokskat + + + + + Sie + + + + + East Tarangan + + + + + Mbunga + + + + + Oluta Popoluca + + + + + Tagoi + + + + + Arutani + + + + + Kawacha + + + + + Eastern Acipa + + + + + Warumungu + + + + + Nathembo + + + + + Ilongot + + + + + Marik + + + + + Nigerian Pidgin + + + + + Saidi Arabic + + + + + Central Kanuri + + + + + Ganggalida + + + + + Karon + + + + + Laragia + + + + + Soyaltepec Mazatec + + + + + Lengilu + + + + + Yiwom + + + + + San Mateo Del Mar Huave + + + + + Sorsogon Ayta + + + + + Plains Miwok + + + + + Ponam + + + + + Tojolabal + + + + + Choapan Zapotec + + + + + Xiang Chinese + + + + + Lisabata-Nuniali + + + + + Dumbea + + + + + Watubela + + + + + Ogbia + + + + + Southwestern Guiyang Hmong + + + + + Bendi + + + + + Souletin Basque + + + + + Sogdian + + + + + Fernando Po Creole English + + + + + Adabe + + + + + Macuna + + + + + Old Breton + + + + + Tomini + + + + + Che + + + + + Pacahuara + + + + + Banda-Ndele + + + + + Kurama + + + + + Tadyawan + + + + + Canichana + + + + + Anyin Morofo + + + + + Asheninka Perene + + + + + Garza + + + + + Oro + + + + + Otoro + + + + + Abron + + + + + Church Slavic + + + + + Sehwi + + + + + Hitu + + + + + Ma (Democratic Republic of Congo) + + + + + Imonda + + + + + Swampy Cree + + + + + Kuku-Muminh + + + + + Ancient Macedonian + + + + + Warrgamay + + + + + Camtho + + + + + Chiquian Ancash Quechua + + + + + Mapos Buang + + + + + Roma + + + + + Kabatei + + + + + Oloma + + + + + Kele + + + + + Papasena + + + + + Nyawaygi + + + + + Tanacross + + + + + Angal + + + + + Dungmali + + + + + Saterfriesisch + + + + + Baima + + + + + Faliscan + + + + + Akrukay + + + + + Karao + + + + + Yafi + + + + + Nyaturu + + + + + Eastern Maninkakan + + + + + Yaeyama + + + + + Kir-Balar + + + + + Guinea Kpelle + + + + + Balti + + + + + Lu + + + + + Pai Tavytera + + + + + Pisidian + + + + + Tajik + + + + + Geba Karen + + + + + Santa Maria Zacatepec Mixtec + + + + + Isthmus-Mecayapan Nahuatl + + + + + Konjo + + + + + Manombai + + + + + Maindo + + + + + Mohegan-Montauk-Narragansett + + + + + Hupla + + + + + Pite Sami + + + + + Asaro'o + + + + + Gor + + + + + Hibito + + + + + Arosi + + + + + Yakan + + + + + Akkadian + + + + + Loarki + + + + + Duruma + + + + + Budukh + + + + + Budza + + + + + Tho + + + + + Maonan + + + + + Sirenik Yupik + + + + + Munsee + + + + + Central Khmer + + + + + Catalonian Sign Language + + + + + Estado de Mexico Otomi + + + + + Maxi Gbe + + + + + Urat + + + + + Western Gurung + + + + + Puluwatese + + + + + Jehai + + + + + Aiklep + + + + + San Felipe Otlaltepec Popoloca + + + + + Dhaiso + + + + + Saudi Arabian Sign Language + + + + + Ahtena + + + + + Binumarien + + + + + Koraku + + + + + Shelta + + + + + Kakanda + + + + + Huixtan Tzotzil + + + + + Zotung Chin + + + + + Gabutamon + + + + + Bekati' + + + + + Kandas + + + + + Ligenza + + + + + Yazgulyam + + + + + Xerente + + + + + Chhintange + + + + + Cataelano Mandaya + + + + + Ugaritic + + + + + Kimaama + + + + + Naxi + + + + + Montagnais + + + + + Zo'e + + + + + Iwaidja + + + + + Bada (Nigeria) + + + + + Sar + + + + + Hmong Do + + + + + Pouye + + + + + Cia-Cia + + + + + Sarua + + + + + Ronga + + + + + Djinba + + + + + Mpur + + + + + Uda + + + + + Iyo'wujwa Chorote + + + + + Lola + + + + + Minokok + + + + + Gikyode + + + + + Bila + + + + + Cun + + + + + Old Spanish + + + + + Tennet + + + + + Mara Chin + + + + + Acoli + + + + + Lala-Bisa + + + + + Dororo + + + + + Southern Bobo Madare + + + + + Tebilung + + + + + Tewe + + + + + Northern Tepehuan + + + + + Ukaan + + + + + Domu + + + + + Baelelea + + + + + Shabak + + + + + Baham + + + + + Ubir + + + + + Inebu One + + + + + Kayong + + + + + Gothic + + + + + Rudbari + + + + + Tobo + + + + + Munggui + + + + + Mbe' + + + + + Totoro + + + + + Meoswar + + + + + Rogo + + + + + Rajasthani + + + + + Wawonii + + + + + Sapo + + + + + Sha + + + + + Kutep + + + + + Irigwe + + + + + Chinook + + + + + Doe + + + + + Alacatlatzala Mixtec + + + + + Tinigua + + + + + Bunaba + + + + + Yeniche + + + + + Para Gaviao + + + + + Sivandi + + + + + Lopa + + + + + Yanomamo + + + + + Hajong + + + + + Pumpokol + + + + + Cumbric + + + + + Jorto + + + + + Namakura + + + + + Banda-Mbres + + + + + Northern Guiyang Hmong + + + + + Khoibu Naga + + + + + Tiruray + + + + + Eastern Highland Chatino + + + + + Krisa + + + + + Bodo Gadaba + + + + + Kohin + + + + + Chenapian + + + + + Tomo Kan Dogon + + + + + Kadaru + + + + + Norwegian Sign Language + + + + + Kutenai + + + + + Panobo + + + + + Bandi + + + + + Pitcairn-Norfolk + + + + + Gbiri-Niragu + + + + + Senggi + + + + + Meroitic + + + + + Limilngan + + + + + Mfumte + + + + + Maeng Itneg + + + + + Southern Pesisir + + + + + Turka + + + + + Atikamekw + + + + + Fataleka + + + + + Westphalien + + + + + Djimini Senoufo + + + + + Semimi + + + + + Kokola + + + + + Tol + + + + + Algonquin + + + + + Musasa + + + + + Medumba + + + + + Columbia-Wenatchi + + + + + Akwa + + + + + Southern Puget Sound Salish + + + + + Ralte + + + + + Boko (Democratic Republic of Congo) + + + + + Japanese + + + + + Ughele + + + + + Syenara Senoufo + + + + + Western Apache + + + + + Northwest Pashayi + + + + + Somali + + + + + Pohnpeian + + + + + Bussa + + + + + Western Lalu Yi + + + + + Veps + + + + + Birale + + + + + Kwambi + + + + + Djeebbana + + + + + Vaghat-Ya-Bijim-Legeri + + + + + Wudu + + + + + Vale + + + + + Tangko + + + + + Rien + + + + + Dzao Min + + + + + Nobiin + + + + + !Xoo + + + + + Kalanga + + + + + Mag-Anchi Ayta + + + + + Sala + + + + + Intha + + + + + Zemgalian + + + + + Kimbu + + + + + Foodo + + + + + Karolanos + + + + + Dem + + + + + Sindhi Bhil + + + + + Safeyoka + + + + + Wangaaybuwan-Ngiyambaa + + + + + Mahei + + + + + Guanche + + + + + Aheu + + + + + Kemak + + + + + Margos-Yarowilca-Lauricocha Quechua + + + + + Katingan + + + + + Mirpur Panjabi + + + + + Wewaw + + + + + Anal + + + + + Momuna + + + + + Southern Rincon Zapotec + + + + + Giiwo + + + + + North Tugen + + + + + Awak + + + + + Sholaga + + + + + Western Abnaki + + + + + Guahibo + + + + + Spokane + + + + + Malinguat + + + + + Nokuku + + + + + Brunei + + + + + Budibud + + + + + Silimo + + + + + Alabat Island Agta + + + + + Dima + + + + + Red Gelao + + + + + Juquila Mixe + + + + + Northeastern Pomo + + + + + Takuu + + + + + Tooro + + + + + Kapingamarangi + + + + + Karipuna + + + + + Papi + + + + + Ndaktup + + + + + Omejes + + + + + Shina + + + + + Kwara'ae + + + + + Laura + + + + + Sedang + + + + + Etruscan + + + + + Cutchi-Swahili + + + + + Lipo + + + + + Shall-Zwall + + + + + Chamari + + + + + Makah + + + + + Lihir + + + + + Lantanai + + + + + Simeulue + + + + + Miju-Mishmi + + + + + Numanggang + + + + + Maiwa (Indonesia) + + + + + Honi + + + + + Kopkaka + + + + + Varli + + + + + Mainfrankisch + + + + + Blang + + + + + Awutu + + + + + Senaya + + + + + Katawixi + + + + + Siksika + + + + + Vestinian + + + + + Lamalera + + + + + Kasem + + + + + Coast Miwok + + + + + Mono (Democratic Republic of Congo) + + + + + Sowanda + + + + + Kaluli + + + + + Belgian Sign Language + + + + + Wa'ema + + + + + Gusii + + + + + Sere + + + + + Budik + + + + + Tay Tac + + + + + Bidyogo + + + + + Bura-Pabir + + + + + Mal Paharia + + + + + Ngad'a + + + + + Tay Sa Pa + + + + + Katabaga + + + + + Turoyo + + + + + Wotapuri-Katarqalai + + + + + San Francisco Matlatzinca + + + + + Northwestern Tamang + + + + + Khakas + + + + + Pongyong + + + + + Nigerian Fulfulde + + + + + Coatlan Zapotec + + + + + Old Mon + + + + + Moose Cree + + + + + Korra Koraga + + + + + Akolet + + + + + Galela + + + + + Bom + + + + + Jebero + + + + + Tunia + + + + + Osatu + + + + + Oko-Juwoi + + + + + Gondi + + + + + Jair Awyu + + + + + Ngbee + + + + + Khua + + + + + Sop + + + + + Zulgo-Gemzek + + + + + Tlacoapa Tlapanec + + + + + Konyak Naga + + + + + Ansus + + + + + Lengo + + + + + Yakima + + + + + Guarani + + + + + Viti + + + + + Esimbi + + + + + Arandai + + + + + Garhwali + + + + + Kupang Malay + + + + + Broome Pearling Lugger Pidgin + + + + + Western Jacalteco + + + + + Hupa + + + + + Venetian + + + + + Semai + + + + + Quechua + + + + + Macedo Romanian + + + + + Maligo + + + + + Jinyu Chinese + + + + + Dongxiang + + + + + Central-Eastern Niger Fulfulde + + + + + Friulian + + + + + Rempi + + + + + Lokaa + + + + + Hiw + + + + + Arin + + + + + Bakumpai + + + + + Yucuna + + + + + Tunggare + + + + + Isthmus-Cosoleacaque Nahuatl + + + + + Papuma + + + + + Tefaro + + + + + Sinaugoro + + + + + Duvle + + + + + Xeta + + + + + Ubang + + + + + North Slavey + + + + + Huba + + + + + Votic + + + + + Tingui-Boto + + + + + Meyah + + + + + American Sign Language + + + + + Selee + + + + + Lydian + + + + + Lombi + + + + + Hittite + + + + + Legbo + + + + + Ngaing + + + + + Wambule + + + + + Anindilyakwa + + + + + Olulumo-Ikom + + + + + Youle Jinuo + + + + + Takelma + + + + + Demisa + + + + + North Mesopotamian Arabic + + + + + Akha + + + + + Labuk-Kinabatangan Kadazan + + + + + Sukur + + + + + Kataang + + + + + Davawenyo + + + + + Keliko + + + + + Bilbil + + + + + Tagal Murut + + + + + Muyang + + + + + Deccan + + + + + Klamath-Modoc + + + + + Sapuan + + + + + Classical Mongolian + + + + + Baltic Romani + + + + + Keuru + + + + + Lufu + + + + + Ncane + + + + + Mamara Senoufo + + + + + Wusa Yi + + + + + Cabecar + + + + + Sikiana + + + + + Mannan + + + + + Savosavo + + + + + Wawa + + + + + Pyen + + + + + Southern One + + + + + Powari + + + + + Sekapan + + + + + Bainouk-Samik + + + + + Chiquihuitlan Mazatec + + + + + Palu + + + + + Pintupi-Luritja + + + + + Sanapana + + + + + Wagdi + + + + + Indonesian Sign Language + + + + + Nyenkha + + + + + Aimaq + + + + + Hamap + + + + + Bagirmi + + + + + Even + + + + + Wunai Bunu + + + + + Palaka Senoufo + + + + + Li'o + + + + + Kasua + + + + + Serua + + + + + Mbesa + + + + + Campidanese Sardinian + + + + + Badui + + + + + Garre + + + + + Amis + + + + + Batak + + + + + Batak Mandailing + + + + + Gey + + + + + Gheg Albanian + + + + + Ngbaka Manza + + + + + Tobelo + + + + + Nalca + + + + + Auwe + + + + + Balanta-Kentohe + + + + + Tai Dam + + + + + Baangi + + + + + Western Katu + + + + + Godwari + + + + + Gaviao Do Jiparana + + + + + Blagar + + + + + Bodo (India) + + + + + Upper Tanana + + + + + Shasta + + + + + Toposa + + + + + Santa Maria Quiegolani Zapotec + + + + + Umbuygamu + + + + + Kemiehua + + + + + Bali (Nigeria) + + + + + Nebaj Ixil + + + + + Tyaraity + + + + + Colorado + + + + + Bathari + + + + + Doghoro + + + + + Pushto + + + + + Tumleo + + + + + Waka + + + + + Larevat + + + + + Lombard + + + + + Juma + + + + + Bongo + + + + + Copala Triqui + + + + + Laopang + + + + + Toma + + + + + Iceve-Maci + + + + + Malayalam + + + + + Ao Naga + + + + + Romano-Serbian + + + + + Sumariup + + + + + Sui + + + + + Arop-Sissano + + + + + Mangole + + + + + Mala (Papua New Guinea) + + + + + Igwe + + + + + Angika + + + + + Nauete + + + + + Dass + + + + + Sharanahua + + + + + Ofo + + + + + Karaga Mandaya + + + + + Pelende + + + + + Kowiai + + + + + Gadang + + + + + Saparua + + + + + Jaya + + + + + Lakota Dida + + + + + Tumtum + + + + + Kadiweu + + + + + Luwo + + + + + Nding + + + + + Kaningdon-Nindem + + + + + Hausa Sign Language + + + + + Bissa + + + + + Giryama + + + + + Tutong 2 + + + + + Oko-Eni-Osayen + + + + + Teke-Tege + + + + + Gogo + + + + + Samaritan + + + + + Cuyamecalco Mixtec + + + + + Logooli + + + + + Nunggubuyu + + + + + Imbabura Highland Quichua + + + + + Nomatsiguenga + + + + + Kado + + + + + Maslam + + + + + Maria (Papua New Guinea) + + + + + Uduk + + + + + Arammba + + + + + Chulym + + + + + Teop + + + + + Mayo + + + + + Turks And Caicos Creole English + + + + + Eastern Lalu Yi + + + + + Toura (Papua New Guinea) + + + + + Orowe + + + + + Tauade + + + + + Abung + + + + + Mursi + + + + + Seke (Vanuatu) + + + + + Uspanteco + + + + + Nen + + + + + Kwamera + + + + + Amganad Ifugao + + + + + Zhire + + + + + Finnish-Swedish Sign Language + + + + + Masiwang + + + + + Mudbura + + + + + Paici + + + + + Nyarafolo Senoufo + + + + + Jara + + + + + Southern Kurdish + + + + + Megleno Romanian + + + + + East Limba + + + + + Yugoslavian Sign Language + + + + + Baoule + + + + + Ajie + + + + + Kangjia + + + + + Mittu + + + + + Waffa + + + + + Uru-Eu-Wau-Wau + + + + + Domaaki + + + + + Mawchi + + + + + To'abaita + + + + + Nume + + + + + Cajonos Zapotec + + + + + Kayapa Kallahan + + + + + Tombelala + + + + + Malango + + + + + Pokanga + + + + + Munduruku + + + + + Tsaangi + + + + + Chicahuaxtla Triqui + + + + + Emiliano-Romagnolo + + + + + Titan + + + + + Tarifit + + + + + Kreye + + + + + Duala + + + + + Tokharian B + + + + + Panoan Katukina + + + + + Labu + + + + + Czech Sign Language + + + + + Gelao + + + + + Xaracuu + + + + + Kamayo + + + + + Kung + + + + + Horo + + + + + Southern Catanduanes Bicolano + + + + + Barbareno + + + + + Ndobo + + + + + Marghi Central + + + + + Udihe + + + + + Santo Domingo Xenacoj Cakchiquel + + + + + Dibiyaso + + + + + Yetfa + + + + + Middle Watut + + + + + Gaam + + + + + Nzakambay + + + + + Romany + + + + + Lavatbura-Lamusong + + + + + Aka-Cari + + + + + Siane + + + + + Tuvalu + + + + + Xipaya + + + + + Kpati + + + + + Jamamadi + + + + + Tadaksahak + + + + + Sepa (Papua New Guinea) + + + + + Tukang Besi South + + + + + Kaian + + + + + Yale + + + + + Limassa + + + + + Livvi + + + + + Albanian + + + + + Indonesian + + + + + Mono (USA) + + + + + Aigon + + + + + Multiple languages + + + + + Kanite + + + + + Quenya + + + + + Northern Tujia + + + + + Eitiep + + + + + Yucatan Maya + + + + + Susuami + + + + + Tuma-Irumu + + + + + Rama + + + + + Torona + + + + + Bandial + + + + + Pendau + + + + + Naasioi + + + + + Old Irish (to 900) + + + + + Vasekela Bushman + + + + + Dezfuli + + + + + Kelinyau Kenyah + + + + + Barrow Point + + + + + Chinali + + + + + Sira + + + + + Huarijio + + + + + Kibet + + + + + Urubu-Kaapor + + + + + Kasiguranin + + + + + Libido + + + + + Kawe + + + + + Woods Cree + + + + + Dilling + + + + + Bilua + + + + + Chuvantsy + + + + + Waritai + + + + + Ikpeng + + + + + Mazatlan Mazatec + + + + + Santo Domingo Albarradas Zapotec + + + + + Ikposo + + + + + Oroqen + + + + + Makayam + + + + + Korean + + + + + Teressa + + + + + Camarines Norte Agta + + + + + Latvian + + + + + Lele (Papua New Guinea) + + + + + Abai Sungai + + + + + Ebughu + + + + + Yareba + + + + + Semnam + + + + + Ocotlan Zapotec + + + + + Mi'kmaq + + + + + Baramu + + + + + Erre + + + + + Beele + + + + + Sonha + + + + + Nete + + + + + Biritai + + + + + Murik + + + + + Mozambican Sign Language + + + + + Yeretuar + + + + + Western Balochi + + + + + Guanyinqiao + + + + + Una + + + + + Mali + + + + + Lungga + + + + + Ron + + + + + Bozaba + + + + + Djauan + + + + + Rawas + + + + + Yerukula + + + + + Jarnango + + + + + Chan Santa Cruz Maya + + + + + Tulu + + + + + Southern Dagaare + + + + + North Mofu + + + + + Dungra Bhil + + + + + Apiaca + + + + + Old Avar + + + + + Czech + + + + + Dewoin + + + + + Maba (Chad) + + + + + Viemo + + + + + Lenca + + + + + Bushi + + + + + Seke (Nepal) + + + + + Ugandan Sign Language + + + + + Cinamiguin Manobo + + + + + Mandan + + + + + Waneci + + + + + Dangaleat + + + + + Daloa Bete + + + + + Kurudu + + + + + Ukwa + + + + + Amba (Solomon Islands) + + + + + Sebob Kenyah + + + + + Madi + + + + + Koke + + + + + Southeast Ijo + + + + + Beng + + + + + Polonombauk + + + + + Arabana + + + + + Pubian + + + + + Suarmin + + + + + Barzani Jewish Neo-Aramaic + + + + + Thu Lao + + + + + Terei + + + + + Romblomanon + + + + + Mt. Iraya Agta + + + + + Moni + + + + + Bukharic + + + + + Ngadjunmaya + + + + + Sonia + + + + + Unserdeutsch + + + + + Nahari + + + + + Kwere + + + + + Latvian Sign Language + + + + + Neko + + + + + Occidental + + + + + Sara Kaba + + + + + Shanga + + + + + Wailapa + + + + + Tso + + + + + Kaur + + + + + Duguri + + + + + Malimpung + + + + + Sa'och + + + + + Brahui + + + + + Atorada + + + + + Mang + + + + + Jemez + + + + + Yonggom + + + + + 'Auhelawa + + + + + Yabem + + + + + Southern Qiandong Hmong + + + + + Lao + + + + + Borgu Fulfulde + + + + + Rapa + + + + + Urali + + + + + Kho'ini + + + + + Xingu Asurini + + + + + Nigeria Mambila + + + + + Guduf-Gava + + + + + Gooniyandi + + + + + Hyam + + + + + North Fali + + + + + Bakairi + + + + + Bete + + + + + Juxtlahuaca Mixtec + + + + + West Kewa + + + + + Moroccan Arabic + + + + + Mor (Mor Islands) + + + + + Ghomara + + + + + Chara + + + + + Bolivian Sign Language + + + + + Swiss-German Sign Language + + + + + Ding + + + + + Coyaima + + + + + Taungyo + + + + + Waigeo + + + + + Kais + + + + + We Western + + + + + Ixtatan Chuj + + + + + Warkay-Bipim + + + + + Maritsaua + + + + + Chazumba Mixtec + + + + + Svan + + + + + Chamicuro + + + + + Tugun + + + + + Basketo + + + + + Southern Mashan Hmong + + + + + Aghem + + + + + Bisorio + + + + + Likuba + + + + + Luna + + + + + Boor + + + + + Masbate Sorsogon + + + + + Elepi + + + + + Molbog + + + + + Tremembe + + + + + Texistepec Popoluca + + + + + Taiwan Sign Language + + + + + Bondum Dom Dogon + + + + + Horom + + + + + Amarasi + + + + + Dhurga + + + + + Krongo + + + + + Harami + + + + + Sorothaptic + + + + + Asheninka Pajonal + + + + + Marsian + + + + + Arha + + + + + Kalabakan + + + + + Teke-Ebo + + + + + Sou + + + + + Kabixi + + + + + Burunge + + + + + Arbereshe Albanian + + + + + Mexican Sign Language + + + + + Darwazi + + + + + Gboloo Grebo + + + + + Min Zhong Chinese + + + + + Humene + + + + + Estonian Sign Language + + + + + Classical Mandaic + + + + + Tanimbili + + + + + Tene Kan Dogon + + + + + Mahou + + + + + Stellingwerfs + + + + + Saafi-Saafi + + + + + Nankina + + + + + Todrah + + + + + Molengue + + + + + Koba + + + + + Parsi-Dari + + + + + Keninjal + + + + + Temacine Tamazight + + + + + Eastern Tzutujil + + + + + Libyan Sign Language + + + + + Pear + + + + + Hattic + + + + + Madukayang Kalinga + + + + + Kxoe + + + + + Taje + + + + + Kriol + + + + + Dugwor + + + + + Amele + + + + + Laki + + + + + Kolom + + + + + Denya + + + + + Doka + + + + + Ngando (Democratic Republic of Congo) + + + + + Belait + + + + + Sabaean + + + + + Arguni + + + + + Southern Cakchiquel + + + + + Mondropolon + + + + + Retta + + + + + Gumalu + + + + + Dangaura Tharu + + + + + Sanglechi-Ishkashimi + + + + + Indri + + + + + Coxima + + + + + Boruca + + + + + Akebu + + + + + Sabine + + + + + Khamyang + + + + + Bhili + + + + + Kosraean + + + + + Welsh + + + + + Tutong 1 + + + + + Kapinawa + + + + + Chalikha + + + + + Geser-Gorom + + + + + Kobon + + + + + Benggoi + + + + + Bolgo + + + + + Samo + + + + + Lenje + + + + + /Gwi + + + + + Tai Daeng + + + + + Wara + + + + + Atsugewi + + + + + Inupiaq + + + + + Kon Keu + + + + + Iku-Gora-Ankwa + + + + + Aka + + + + + Atatlahuca Mixtec + + + + + Maisin + + + + + Abanyom + + + + + Jeri Kuo + + + + + Neapolitan + + + + + Santa Catarina Albarradas Zapotec + + + + + South Watut + + + + + Salasaca Highland Quichua + + + + + Shan + + + + + Tukang Besi North + + + + + Akuku + + + + + Mashco Piro + + + + + Copainala Zoque + + + + + North Junin Quechua + + + + + Neyo + + + + + Yamap + + + + + Sengele + + + + + Fa D'ambu + + + + + Loniu + + + + + Tai Mene + + + + + Kashaya + + + + + Ukhwejo + + + + + Biyom + + + + + Monumbo + + + + + Reunion Creole French + + + + + Palya Bareli + + + + + Nisa + + + + + Etchemin + + + + + Zangskari + + + + + Kombio + + + + + Northeastern Dian Hmong + + + + + Marfa + + + + + Wailaki + + + + + Median + + + + + Kannada + + + + + Lhomi + + + + + Fum + + + + + Bekwarra + + + + + El Nayar Cora + + + + + Siri + + + + + South Tairora + + + + + Buxinhua + + + + + Mortlockese + + + + + Mandandanyi + + + + + Puquina + + + + + Layakha + + + + + Ashtiani + + + + + Awa + + + + + Kamula + + + + + Khamti + + + + + Holoholo + + + + + Mocovi + + + + + Mandjak + + + + + Tulu-Bohuai + + + + + Lango (Uganda) + + + + + Undetermined + + + + + Vanuma + + + + + Isebe + + + + + Mbukushu + + + + + Ogbah + + + + + Malo + + + + + Dyan + + + + + Simba + + + + + Kusu + + + + + Itawit + + + + + Khengkha + + + + + Eastern Katu + + + + + Tarok + + + + + Dibo + + + + + Onjob + + + + + Bandjalang + + + + + Beli (Papua New Guinea) + + + + + Papar + + + + + Pekal + + + + + Jakati + + + + + Gallurese Sardinian + + + + + Virgin Islands Creole English + + + + + Sininkere + + + + + Spanish Sign Language + + + + + Huachipaeri + + + + + Ogea + + + + + Coastal Konjo + + + + + Gronings + + + + + Finallig + + + + + Central Pomo + + + + + Walmajarri + + + + + Low German + + + + + Butbut Kalinga + + + + + Nai + + + + + Kabwa + + + + + Mbelime + + + + + Southern Kalapuya + + + + + Chigmecatitlan Mixtec + + + + + Labo + + + + + South West Bay + + + + + Janji + + + + + Yom + + + + + Ghotuo + + + + + Hadiyya + + + + + Awun + + + + + Yao + + + + + Bungu + + + + + Simbali + + + + + Kabiye + + + + + Hanga Hundi + + + + + Karang + + + + + Mari (Madang Province) + + + + + Parachi + + + + + Tai Loi + + + + + Bugan + + + + + Fuliiru + + + + + Waiwai + + + + + Savara + + + + + Abureni + + + + + Birked + + + + + Rennellese Sign Language + + + + + Talondo' + + + + + Kirmanjki + + + + + Kabwari + + + + + Mlabri + + + + + Mandara + + + + + Sause + + + + + Warlmanpa + + + + + Vasavi + + + + + Wadjiginy + + + + + Dido + + + + + Changriwa + + + + + Kukna + + + + + Rer Bare + + + + + Galeya + + + + + Malvi + + + + + Tepetotutla Chinantec + + + + + Liberia Kpelle + + + + + Guarayu + + + + + Mangbutu + + + + + Runa + + + + + Turiwara + + + + + Bauria + + + + + Belhariya + + + + + Kamu + + + + + Abe + + + + + Elkei + + + + + Nyanga + + + + + Skolt Sami + + + + + Musan + + + + + Bajelani + + + + + Katbol + + + + + Som + + + + + Lithuanian + + + + + Gorovu + + + + + Aore + + + + + Eki + + + + + Ketengban + + + + + Paraguayan Guarani + + + + + Wumeng Yi + + + + + Assan + + + + + Kwesten + + + + + Aer + + + + + Isu (Menchum Division) + + + + + Basa (Cameroon) + + + + + Parakana + + + + + South Levantine Arabic + + + + + Ashkun + + + + + !O!ung + + + + + Ajawa + + + + + Papantla Totonac + + + + + Danish Sign Language + + + + + Toda + + + + + Peve + + + + + Dhimal + + + + + Kunja + + + + + Merlav + + + + + Karo (Brazil) + + + + + Muslim Tat + + + + + Zimbabwe Sign Language + + + + + Yindjilandji + + + + + Jah Hut + + + + + Yuwana + + + + + Turkmen + + + + + Mwaghavul + + + + + Ghanaian Sign Language + + + + + Russia Buriat + + + + + Interlingue + + + + + Kunza + + + + + Mbre + + + + + Tenis + + + + + Queretaro Otomi + + + + + Central Siberian Yupik + + + + + Klingon + + + + + Dari + + + + + Penchal + + + + + Parkwa + + + + + Phake + + + + + Punan Merah + + + + + Amarakaeri + + + + + Xakriaba + + + + + Tayabas Ayta + + + + + Kanashi + + + + + Western Yiddish + + + + + Horuru + + + + + Jutish + + + + + Makhuwa-Moniga + + + + + Tsuvadi + + + + + Esperanto + + + + + Beeke + + + + + Lagwan + + + + + Mota + + + + + Bipi + + + + + Efik + + + + + Atzingo Matlatzinca + + + + + Omaha-Ponca + + + + + Duma + + + + + Southwestern Tamang + + + + + Mubami + + + + + Mann + + + + + Tondano + + + + + Chayahuita + + + + + Cupeno + + + + + Hernican + + + + + Ili Turki + + + + + Upper Grand Valley Dani + + + + + Kamara + + + + + Eastern Abnaki + + + + + Tem + + + + + Moklen + + + + + Nda'nda + + + + + Mendalam Kayan + + + + + Mafa + + + + + Kayan + + + + + Oruma + + + + + Lasi + + + + + Maung + + + + + Kumbainggar + + + + + Middle Cornish + + + + + Ruma + + + + + Bua + + + + + Havu + + + + + Harzani + + + + + Isthmus Zapotec + + + + + Santa Maria De Jesus Cakchiquel + + + + + Bana + + + + + Njen + + + + + Yecuatla Totonac + + + + + Kaba + + + + + Sileibi + + + + + Kosarek Yale + + + + + Sankaran Maninka + + + + + Saliba + + + + + Mandari + + + + + Kis + + + + + Southeastern Nochixtlan Mixtec + + + + + Kalabra + + + + + Fijian + + + + + Luiseno + + + + + San Marcos Tlalcoyalco Popoloca + + + + + Pahari-Potwari + + + + + Mwali Comorian + + + + + Caribbean Hindustani + + + + + Karami + + + + + Hijazi Arabic + + + + + Rembarunga + + + + + Mbere + + + + + Wanap + + + + + Jaruara + + + + + Gweda + + + + + Boano (Sulawesi) + + + + + Burduna + + + + + Southern Sierra Miwok + + + + + Semnani + + + + + Inapang + + + + + Sepen + + + + + Bagheli + + + + + Gone Dau + + + + + Atemble + + + + + Pangasinan + + + + + Boselewa + + + + + Iraqw + + + + + Suba + + + + + Riang (India) + + + + + Edomite + + + + + Wik-Iiyanh + + + + + Nimoa + + + + + Luvale + + + + + Shoshoni + + + + + Hebrew + + + + + Diuwe + + + + + Khao + + + + + Bariai + + + + + Kuku-Ugbanh + + + + + Kakabai + + + + + Gail + + + + + Purum + + + + + Dzuungoo + + + + + Lowa + + + + + Bharia + + + + + Southern Carrier + + + + + Pangutaran Sama + + + + + Zinza + + + + + Mele-Fila + + + + + Maskelynes + + + + + Bwa + + + + + Mambai + + + + + Central Mashan Hmong + + + + + Tokano + + + + + Kaningra + + + + + Yug + + + + + Kari + + + + + Coatzospan Mixtec + + + + + Abom + + + + + Mlomp + + + + + C'lela + + + + + Western Farsi + + + + + Nenets + + + + + Mvuba + + + + + Limbu + + + + + Kele (Democratic Republic of Congo) + + + + + Parawen + + + + + Sihuas Ancash Quechua + + + + + Muna + + + + + Kuni + + + + + Lembak + + + + + Ife + + + + + Lehali + + + + + Amo + + + + + Middle Armenian + + + + + Asturian + + + + + Wadiyara Koli + + + + + North Azerbaijani + + + + + Paama + + + + + Portuguese Sign Language + + + + + Madngele + + + + + Isarog Agta + + + + + Bardi + + + + + Aimol + + + + + Nnam + + + + + Suau + + + + + Tonsawang + + + + + Cherokee + + + + + Babatana + + + + + Keningau Murut + + + + + Ndamba + + + + + Messapic + + + + + Chechen + + + + + Lewo + + + + + Kupia + + + + + Biao Mon + + + + + Southern Nambikuara + + + + + Omotik + + + + + Dargwa + + + + + Tupinikin + + + + + Hema + + + + + Seneca + + + + + Hone + + + + + Gende + + + + + Argentine Sign Language + + + + + Mapun + + + + + Kokata + + + + + Ngombale + + + + + Cashinahua + + + + + Mocheno + + + + + Amanaye + + + + + Vengo + + + + + Abaza + + + + + Kamas + + + + + West Yugur + + + + + Tboli + + + + + Degaru + + + + + Pak-Tong + + + + + Arafundi + + + + + Hadza + + + + + Muinane + + + + + New Zealand Sign Language + + + + + Adap + + + + + Maria (India) + + + + + Waray Sorsogon + + + + + Ontenu + + + + + Kubi + + + + + Maringarr + + + + + Mangerr + + + + + Guambiano + + + + + Biali + + + + + Yekora + + + + + Teke-Kukuya + + + + + Korlai Creole Portuguese + + + + + Gule + + + + + Western Magar + + + + + San Miguel Creole French + + + + + Kinga + + + + + Neme + + + + + Burmbar + + + + + Umbundu + + + + + Bamali + + + + + Yangkam + + + + + Tawara + + + + + Dusun Malang + + + + + Mosiro + + + + + Tay + + + + + Ahe + + + + + Archi + + + + + Nila + + + + + Moraid + + + + + Seze + + + + + Talysh + + + + + Swedish Sign Language + + + + + Gbayi + + + + + Uru + + + + + Bavarian + + + + + Marti Ke + + + + + Guerrero Amuzgo + + + + + Samba + + + + + Salas + + + + + Bauzi + + + + + Malaynon + + + + + Nakara + + + + + Buruwai + + + + + Ambele + + + + + Nekgini + + + + + Katua + + + + + Alladian + + + + + Aka-Kede + + + + + Adang + + + + + Shark Bay + + + + + Chambeali + + + + + Tontemboan + + + + + Lahu + + + + + Namibian Sign Language + + + + + Western Parbate + + + + + Iyayu + + + + + Santa Maria Del Mar Huave + + + + + Mor (Bomberai Peninsula) + + + + + Chayuco Mixtec + + + + + Riverain Sango + + + + + Allar + + + + + Amanab + + + + + Chut + + + + + Katla + + + + + Warnang + + + + + Maritime Sign Language + + + + + Choctaw + + + + + Koenoem + + + + + Dogri (individual language) + + + + + Manchu + + + + + Olekha + + + + + Luwati + + + + + Ali + + + + + Judeo-Tat + + + + + Baga Manduri + + + + + Kaxuiana + + + + + Garig-Ilgar + + + + + Ehueun + + + + + Sampang + + + + + Tula + + + + + Chukwa + + + + + Kayeli + + + + + Sakan + + + + + Bekwil + + + + + Anufo + + + + + Matepi + + + + + Chilean Quechua + + + + + Tajumulco Mam + + + + + Dorze + + + + + Lele (Democratic Republic of Congo) + + + + + Sungkai + + + + + Buru (Nigeria) + + + + + Kauwera + + + + + Borana-Arsi-Guji Oromo + + + + + Zaza + + + + + Rangkas + + + + + Lepki + + + + + Dungan + + + + + Coatecas Altas Zapotec + + + + + Yoba + + + + + Noone + + + + + Olu'bo + + + + + Haya + + + + + Cayuga + + + + + Parsi + + + + + Kaingang + + + + + Guevea De Humboldt Zapotec + + + + + Namonuito + + + + + Dehu + + + + + Indian Sign Language + + + + + Sewa Bay + + + + + Yakaikeke + + + + + Jicarilla Apache + + + + + Kayu Agung + + + + + Ladino + + + + + Uzbek + + + + + Sabu + + + + + Abipon + + + + + Tartessian + + + + + Eastern Balochi + + + + + Simbo + + + + + Glaro-Twabo + + + + + Ndut + + + + + Australian Aborigines Sign Language + + + + + Mbosi + + + + + Ngwaba + + + + + Wakde + + + + + Kakauhua + + + + + Lamaholot + + + + + Maranunggu + + + + + Yuhup + + + + + Western Pokomchi + + + + + East Damar + + + + + Yinbaw Karen + + + + + Jangshung + + + + + Dibabawon Manobo + + + + + Skagit + + + + + Pokoot + + + + + Wedau + + + + + Anambe + + + + + Nottoway + + + + + Tai Hongjin + + + + + Judeo-Georgian + + + + + Asuncion Mixtepec Zapotec + + + + + Latu + + + + + Ware + + + + + Tututni + + + + + Manta + + + + + Ngemba + + + + + Ayoquesco Zapotec + + + + + Zabana + + + + + Sinsauru + + + + + Burumakok + + + + + Enawene-Nawe + + + + + Barai + + + + + Southwest Gbaya + + + + + Kurdish + + + + + Kua + + + + + Bilba + + + + + Nalu + + + + + Hainyaxo Bozo + + + + + Lom + + + + + Bangwinji + + + + + Ayere + + + + + Yil + + + + + Yosondua Mixtec + + + + + Niuean + + + + + Yogad + + + + + Bilakura + + + + + Pinotepa Nacional Mixtec + + + + + Hani + + + + + Enwan (Akwa Ibom State) + + + + + Nomane + + + + + Krache + + + + + Yawanawa + + + + + Zaachila Zapotec + + + + + Sedoa + + + + + Nicaragua Creole English + + + + + Makaa + + + + + Seraiki + + + + + Maykulan + + + + + Balinese + + + + + Konda-Dora + + + + + Laos Sign Language + + + + + Puerto Rican Sign Language + + + + + Komi-Permyak + + + + + Ndai + + + + + Toro Tegu Dogon + + + + + Mefele + + + + + Matis + + + + + Mander + + + + + Uighur + + + + + Tippera + + + + + Nkukoli + + + + + Pwaamei + + + + + Miyobe + + + + + Tolaki + + + + + Yahuna + + + + + Anfillo + + + + + Middle Hittite + + + + + Sulka + + + + + Jiba + + + + + Tuwari + + + + + Musi + + + + + Idu-Mishmi + + + + + Koromira + + + + + Cocos Islands Malay + + + + + Bisis + + + + + Yiddish + + + + + Southern Haida + + + + + Anakalangu + + + + + Santiago del Estero Quichua + + + + + Koibal + + + + + Lanoh + + + + + Italian + + + + + Kwama + + + + + Balanta-Ganja + + + + + Chumash + + + + + Mungaka + + + + + Lehalurup + + + + + Uisai + + + + + Bonerif + + + + + Bomu + + + + + Nyahkur + + + + + Norwegian Bokmal + + + + + Puri + + + + + Mak (Nigeria) + + + + + Lasgerdi + + + + + Tilapa Otomi + + + + + Tase Naga + + + + + Kalenjin + + + + + Botlikh + + + + + Mahasu Pahari + + + + + Cumeral + + + + + Kakabe + + + + + Malas + + + + + Beami + + + + + Arbore + + + + + Jiarong + + + + + Kungarakany + + + + + Idoma + + + + + Kera + + + + + Gula (Chad) + + + + + Miri + + + + + Sheshi Kham + + + + + Guhu-Samane + + + + + Bitur + + + + + Massalat + + + + + Norra + + + + + Tajio + + + + + Kafoa + + + + + Phu Thai + + + + + Auyokawa + + + + + Dhao + + + + + Sighu + + + + + Diriku + + + + + Fulnio + + + + + Wurrugu + + + + + Northern Oaxaca Nahuatl + + + + + Jalapa De Diaz Mazatec + + + + + Sukuma + + + + + Huaylas Ancash Quechua + + + + + Haigwai + + + + + Notsi + + + + + Kamba (Brazil) + + + + + Man Met + + + + + Krevinian + + + + + Gumuz + + + + + Bosngun + + + + + Wallisian + + + + + Chiltepec Chinantec + + + + + Humla + + + + + Adamorobe Sign Language + + + + + Australian Sign Language + + + + + Mangarayi + + + + + Tedim Chin + + + + + Cishingini + + + + + Khamba + + + + + Xiriana + + + + + Cisalpine Gaulish + + + + + South Ucayali Asheninka + + + + + Waja + + + + + Yaka (Congo) + + + + + Tainae + + + + + Blafe + + + + + Mokerang + + + + + Iwam + + + + + Kwer + + + + + Raji + + + + + Rufiji + + + + + Sara + + + + + Moldova Sign Language + + + + + Apali + + + + + Anam + + + + + Tenango Nahuatl + + + + + Kyaka + + + + + Ukrainian Sign Language + + + + + Southwest Tanna + + + + + Mabire + + + + + Pray 3 + + + + + Chacobo + + + + + Tseku + + + + + Nias + + + + + =/Hua + + + + + Karbi + + + + + Nyanja + + + + + Qawasqar + + + + + Alumu-Tesu + + + + + Okpe (Northwestern Edo) + + + + + Dama + + + + + Dengese + + + + + Litzlitz + + + + + Zarma + + + + + Nopala Chatino + + + + + Miltu + + + + + Walamo + + + + + Beti (Cameroon) + + + + + Mwera (Nyasa) + + + + + Armazic + + + + + Pyapun + + + + + Endo + + + + + Smarky Kanum + + + + + Aguano + + + + + Kavalan + + + + + Mato + + + + + Luchazi + + + + + Yaqui + + + + + Dyirbal + + + + + Tikopia + + + + + Texcatepec Otomi + + + + + Comorian + + + + + Tanggu + + + + + Salchuq + + + + + Sarangani Blaan + + + + + Bai + + + + + Pangwali + + + + + Central Puebla Nahuatl + + + + + Kag-Fer-Jiir-Koor-Ror-Us-Zuksun + + + + + Sonsorol + + + + + Pottangi Ollar Gadaba + + + + + Tibea + + + + + Tchumbuli + + + + + Changthang + + + + + Kam + + + + + Embaloh + + + + + Mato Grosso Arara + + + + + Karekare + + + + + Solong + + + + + Lumba-Yakkha + + + + + Uripiv-Wala-Rano-Atchin + + + + + Pongu + + + + + Ibibio + + + + + Nyunga + + + + + Tenggarong Kutai Malay + + + + + Plains Indian Sign Language + + + + + Kagate + + + + + Ufim + + + + + Hunzib + + + + + Tena Lowland Quichua + + + + + Classical Tibetan + + + + + Benyadu' + + + + + Rabinal Achi + + + + + Baga Sitemu + + + + + Hinukh + + + + + Cruzeno + + + + + Malankuravan + + + + + Tomoip + + + + + Tinani + + + + + Pagu + + + + + Karore + + + + + Semandang + + + + + Itonama + + + + + Ineseno + + + + + Bamunka + + + + + Nkutu + + + + + Pilaga + + + + + Skalvian + + + + + Arakanese + + + + + Nusa Laut + + + + + Falam Chin + + + + + Zeem + + + + + Khotanese + + + + + Mokpwe + + + + + Palor + + + + + Lamba + + + + + Sarangani Manobo + + + + + Wiradhuri + + + + + Batak Karo + + + + + Apurina + + + + + Marwari (India) + + + + + Iloko + + + + + Laha (Indonesia) + + + + + Tanguat + + + + + Emerillon + + + + + Angor + + + + + Turi + + + + + Written Oirat + + + + + Ngawn Chin + + + + + Keley-I Kallahan + + + + + Balangao + + + + + Duungooma + + + + + Southern Tiwa + + + + + Gagu + + + + + Bangolan + + + + + E + + + + + Tumbala Chol + + + + + Nyaw + + + + + Perai + + + + + Gulf Arabic + + + + + Nyengo + + + + + Rumai Palaung + + + + + Wayana + + + + + Elotepec Zapotec + + + + + Kuanyama + + + + + Karamojong + + + + + Nanai + + + + + Tetum + + + + + Makasae + + + + + Kol (Papua New Guinea) + + + + + Waci Gbe + + + + + Ndo + + + + + Border Kuna + + + + + Nafi + + + + + Tchitchege + + + + + Gangte + + + + + Western Bru + + + + + Kalagan + + + + + Haisla + + + + + Rayon Zoque + + + + + Yurok + + + + + Usku + + + + + Zakhring + + + + + Eastern Tawbuid + + + + + Tshangla + + + + + Amarag + + + + + Bola + + + + + Lambadi + + + + + Punu + + + + + Centuum + + + + + Bare + + + + + Alngith + + + + + Carijona + + + + + Tobian + + + + + Aka-Kora + + + + + Quileute + + + + + Yassic + + + + + Waddar + + + + + Komso + + + + + Kota Bangun Kutai Malay + + + + + Peere + + + + + Eastern Highland Otomi + + + + + Koguryo + + + + + San Andres Quiche + + + + + Mahongwe + + + + + Ledo Kaili + + + + + Acroa + + + + + Coptic + + + + + Kol (Cameroon) + + + + + Gbanu + + + + + Kono (Nigeria) + + + + + Aruamu + + + + + Wom (Papua New Guinea) + + + + + Turaka + + + + + Burushaski + + + + + Laghu + + + + + Geman Deng + + + + + Evant + + + + + Laru + + + + + Parenga + + + + + Coos + + + + + Jauja Wanca Quechua + + + + + Luxembourgish + + + + + Buru (Indonesia) + + + + + Luri + + + + + Masai + + + + + Pisaflores Tepehua + + + + + Oksapmin + + + + + Guro + + + + + Aghu + + + + + Fon + + + + + Wyandot + + + + + Wirangu + + + + + Kreen-Akarore + + + + + Puinave + + + + + Western Canadian Inuktitut + + + + + West Central Oromo + + + + + Dela-Oenale + + + + + Zhuang + + + + + Bulu (Papua New Guinea) + + + + + Chewong + + + + + Lote + + + + + Baldemu + + + + + Putoh + + + + + Tandia + + + + + Sinasina + + + + + Nhengatu + + + + + Buna + + + + + Yugambal + + + + + Gadsup + + + + + Marubo + + + + + /Xam + + + + + Mwani + + + + + Western Arrarnta + + + + + Armenian + + + + + Gujari + + + + + Nakama + + + + + Bodo (Central African Republic) + + + + + Godie + + + + + Zambian Sign Language + + + + + Baba + + + + + Taabwa + + + + + Manangkari + + + + + Obanliku + + + + + Latin + + + + + Begbere-Ejar + + + + + Reshe + + + + + Sahu + + + + + Hixkaryana + + + + + Krim + + + + + Esselen + + + + + Huitepec Mixtec + + + + + Benabena + + + + + Dakota + + + + + Central Pashto + + + + + Onin + + + + + Potiguara + + + + + Ixcatec + + + + + Sibu + + + + + Ancient Hebrew + + + + + Tangshewi + + + + + Kairak + + + + + Ngindo + + + + + Sindang Kelingi + + + + + Kuku-Mu'inh + + + + + Maskoy Pidgin + + + + + Mingang Doso + + + + + Mabaka Valley Kalinga + + + + + Bishuo + + + + + Bati (Cameroon) + + + + + Burui + + + + + Kami (Nigeria) + + + + + Axamb + + + + + Besoa + + + + + Ladakhi + + + + + Kaamba + + + + + Southern Ohlone + + + + + Maia + + + + + Sobei + + + + + Nobonob + + + + + Ma'anyan + + + + + Kanggape + + + + + Nupe-Nupe-Tako + + + + + Guila Zapotec + + + + + Lutos + + + + + Nyangbo + + + + + Tewa (Indonesia) + + + + + Omi + + + + + Eastern Karaboro + + + + + Soqotri + + + + + Kuman + + + + + Numana-Nunku-Gbantu-Numbu + + + + + Heyo + + + + + Sindhi + + + + + Afitti + + + + + Madak + + + + + Mukulu + + + + + Quinqui + + + + + Malayo + + + + + Lahanan + + + + + Martuyhunira + + + + + Papitalai + + + + + Tareng + + + + + Tirahi + + + + + Seeku + + + + + Agarabi + + + + + Chicomuceltec + + + + + Tajuasohn + + + + + Kurti + + + + + Hanunoo + + + + + Herero + + + + + Tagargrent + + + + + Tsotsitaal + + + + + Old English (ca. 450-1100) + + + + + Elu + + + + + Aklanon + + + + + Pima Bajo + + + + + Fanti + + + + + Buamu + + + + + Ghulfan + + + + + Mbo-Ung + + + + + Kibiri + + + + + Nyabwa + + + + + Tai Hang Tong + + + + + Kugama + + + + + Mairasi + + + + + Kayupulau + + + + + Lauan + + + + + Central Pame + + + + + Sawai + + + + + Kosadle + + + + + Suganga + + + + + Moresada + + + + + Isabi + + + + + Tamagario + + + + + Umbrian + + + + + Principense + + + + + Zenaga + + + + + Tuyuca + + + + + Embera-Catio + + + + + Galice + + + + + Javanese + + + + + Hmong + + + + + North Levantine Arabic + + + + + Wirafed + + + + + Bada (Indonesia) + + + + + Megam + + + + + Buduma + + + + + Molale + + + + + Southern Bai + + + + + Mbe + + + + + Bile + + + + + Koasati + + + + + Comanche + + + + + Murui Huitoto + + + + + Central Mnong + + + + + South Slavey + + + + + Southeastern Tarahumara + + + + + Kati + + + + + Nguon + + + + + Mitla Zapotec + + + + + Kalumpang + + + + + Nsenga + + + + + Kotafon Gbe + + + + + Baga Sobane + + + + + Pakaasnovos + + + + + Kwalhioqua-Tlatskanai + + + + + Wanggamala + + + + + Adhola + + + + + Late Middle Chinese + + + + + Teke-Fuumu + + + + + Moro + + + + + Yakamul + + + + + Forest Enets + + + + + Yamba + + + + + Twents + + + + + Sabah Bisaya + + + + + Paluan + + + + + Kela (Democratic Republic of Congo) + + + + + Tangga + + + + + Karipuna + + + + + Manumanaw Karen + + + + + Kemezung + + + + + Aja (Benin) + + + + + Tlachichilco Tepehua + + + + + Ede Nago + + + + + Bankon + + + + + Madang + + + + + Inapari + + + + + Galindan + + + + + Cebuano + + + + + Sara Dunjo + + + + + Subi + + + + + Wunambal + + + + + Yugh + + + + + Koresh-e Rostam + + + + + Lamatuka + + + + + Tii + + + + + Bawm Chin + + + + + Bahamas Creole English + + + + + Haka Chin + + + + + Kadai + + + + + Petjo + + + + + Ibanag + + + + + Bolo + + + + + Boni + + + + + Sa + + + + + Tuki + + + + + Chiangmai Sign Language + + + + + Thai Sign Language + + + + + Samoan + + + + + Lundayeh + + + + + Nawathinehena + + + + + Moksha + + + + + Buli (Ghana) + + + + + Qabiao + + + + + Batu + + + + + Aiton + + + + + Mapena + + + + + Thompson + + + + + Zay + + + + + Borong + + + + + Kituba (Congo) + + + + + Obulom + + + + + Tutuba + + + + + Northern Mam + + + + + Nyindrou + + + + + Gedeo + + + + + Zimba + + + + + Guerrero Nahuatl + + + + + Maaka + + + + + Jamaican Country Sign Language + + + + + Indo-Portuguese + + + + + Tay Khang + + + + + Bahau River Kenyah + + + + + Bragat + + + + + Tambotalo + + + + + Kabore One + + + + + Ketangalan + + + + + Karkin + + + + + Banawa + + + + + Ormu + + + + + Camling + + + + + Savi + + + + + Warrwa + + + + + Kiput + + + + + Tamazola Mixtec + + + + + Fali Of Baissa + + + + + Warao + + + + + Areba + + + + + Morouas + + + + + Oroha + + + + + Bungku + + + + + Moi (Congo) + + + + + Nhuwala + + + + + Matumbi + + + + + Yaoure + + + + + Yamphe + + + + + Gagauz + + + + + Silt'e + + + + + Wano + + + + + Mbula + + + + + Narango + + + + + Musgu + + + + + Dema + + + + + Tee + + + + + Ntcham + + + + + Guizhou Yi + + + + + Patamona + + + + + Thracian + + + + + Banjar + + + + + Tai Pao + + + + + Taznatit + + + + + Kusunda + + + + + Muyuw + + + + + Petats + + + + + Tonga (Zambia) + + + + + Brazilian Sign Language + + + + + Bahing + + + + + Byep + + + + + Murkim + + + + + Tillamook + + + + + Cree + + + + + Umotina + + + + + Leco + + + + + Bhatri + + + + + Mehri + + + + + Yango + + + + + Kudiya + + + + + Mal + + + + + Nupbikha + + + + + Yamdena + + + + + Cumanagoto + + + + + Soga + + + + + Yuki + + + + + //Gana + + + + + Bilur + + + + + Tofanma + + + + + Laimbue + + + + + Zangwal + + + + + Konai + + + + + Warungu + + + + + Bodo Parja + + + + + Wala + + + + + Mamasa + + + + + Aringa + + + + + Yir Yoront + + + + + Ajyininka Apurucayali + + + + + Sagalla + + + + + Mpuono + + + + + Petapa Zapotec + + + + + Sakam + + + + + Bankagooma + + + + + Furu + + + + + Bondo + + + + + Komo (Sudan) + + + + + Kubo + + + + + Xiri + + + + + Alamblak + + + + + Gumawana + + + + + Enggano + + + + + Chamalal + + + + + Ndoe + + + + + Amdo Tibetan + + + + + Vaagri Booli + + + + + Minigir + + + + + Toba-Maskoy + + + + + Massep + + + + + West Masela + + + + + Durango Nahuatl + + + + + Yuchi + + + + + Yawalapiti + + + + + Kuwaa + + + + + Bassa + + + + + Kwaio + + + + + Serili + + + + + Orokaiva + + + + + Anasi + + + + + Mok + + + + + Ika + + + + + Ghomala' + + + + + Maleku Jaika + + + + + Chuukese + + + + + Chittagonian + + + + + Buol + + + + + Old Marathi + + + + + Ilue + + + + + Akpa + + + + + Dutch + + + + + Pancana + + + + + Baloi + + + + + Northern Cakchiquel + + + + + Lesing-Gelimi + + + + + Antakarinya + + + + + Kashmiri + + + + + British Sign Language + + + + + Car Nicobarese + + + + + Ami + + + + + Yoidik + + + + + Waskia + + + + + Obispeno + + + + + Kono (Guinea) + + + + + Dadibi + + + + + Lapuyan Subanun + + + + + Chonyi + + + + + Dyugun + + + + + Yagwoia + + + + + Tima + + + + + Eggon + + + + + Talieng + + + + + Baluan-Pam + + + + + Fuyug + + + + + Doondo + + + + + Temuan + + + + + Kalam + + + + + Marwari + + + + + Okolod + + + + + Daza + + + + + Boguru + + + + + Cayuse + + + + + Kuy + + + + + Eastern Tamang + + + + + Ifo + + + + + Karitiana + + + + + Nara + + + + + Liberian English + + + + + Bukar Sadong + + + + + Duupa + + + + + Kelon + + + + + Ushojo + + + + + Clallam + + + + + Europanto + + + + + Leningitij + + + + + Babanki + + + + + Southern Nuni + + + + + Ososo + + + + + Orang Kanaq + + + + + Kwadi + + + + + Honduras Sign Language + + + + + Boma + + + + + Iteri + + + + + Paranan + + + + + Lithuanian Sign Language + + + + + Tai Long + + + + + Judeo-Moroccan Arabic + + + + + Kofei + + + + + Zayse-Zergulla + + + + + Southern Kiwai + + + + + Elseng + + + + + San Juan Colorado Mixtec + + + + + Umatilla + + + + + Lenakel + + + + + Songomeno + + + + + Taroko + + + + + Hiberno-Scottish Gaelic + + + + + Northern Tutchone + + + + + Pye Krumen + + + + + Iau + + + + + Cubulco Achi + + + + + Northeastern Thai + + + + + Old Aramaic + + + + + Liburnian + + + + + Dawawa + + + + + Najdi Arabic + + + + + Wanji + + + + + Asho Chin + + + + + Chothe Naga + + + + + Paipai + + + + + Early Tripuri + + + + + Tsoa + + + + + Vunapu + + + + + Dhatki + + + + + Hoti + + + + + Susu + + + + + Iowa-Oto + + + + + Bepour + + + + + Chambri + + + + + Dime + + + + + Rennell-Belona + + + + + Rundi + + + + + Ngombe (Democratic Republic of Congo) + + + + + Majera + + + + + Bung + + + + + Wapan + + + + + Mattole + + + + + Picard + + + + + Alor + + + + + Iwur + + + + + Tamki + + + + + Central Cakchiquel + + + + + Sawi + + + + + Mwan + + + + + Old High German (ca. 750-1050) + + + + + Gusan + + + + + Taman (Indonesia) + + + + + Kwini + + + + + Yinglish + + + + + Mori Atas + + + + + Old Uighur + + + + + Sauri + + + + + Anus + + + + + Bogaya + + + + + Kunimaipa + + + + + Filipino + + + + + Njalgulgule + + + + + Para Arara + + + + + Kumak + + + + + Cauca + + + + + Bohtan Neo-Aramaic + + + + + Lere + + + + + Pengo + + + + + Iha + + + + + Hai//om + + + + + Aequian + + + + + Kujarge + + + + + Eastern Kayah + + + + + Iriga Bicolano + + + + + Urartian + + + + + Maramba + + + + + Lama (Myanmar) + + + + + Mapoyo + + + + + Mazatlan Mixe + + + + + Mangareva + + + + + Persian Sign Language + + + + + Siamou + + + + + Ngbaka Ma'bo + + + + + Sengseng + + + + + Dhanwar (Nepal) + + + + + Atuence + + + + + Hmar + + + + + Guramalum + + + + + Ama (Sudan) + + + + + Illyrian + + + + + Romam + + + + + Kung-Ekoka + + + + + Yahang + + + + + Yevanic + + + + + Safwa + + + + + South African Sign Language + + + + + Old Dutch + + + + + North Moluccan Malay + + + + + Kenga + + + + + Hewa + + + + + Narom + + + + + Chorotega + + + + + Gourmanchema + + + + + Southern Lorung + + + + + Wandala + + + + + Kambera + + + + + Yulu + + + + + Mbati + + + + + Belarusian + + + + + Anuak + + + + + Kambaata + + + + + Jurchen + + + + + Paku + + + + + Emplawas + + + + + Dusun Deyah + + + + + Hermit + + + + + Nukuria + + + + + Langbashe + + + + + Antankarana Malagasy + + + + + Chadian Sign Language + + + + + Were + + + + + Northern Yukaghir + + + + + Shakara + + + + + Nakanai + + + + + Kaike + + + + + Nyindu + + + + + Igo + + + + + Nimanbur + + + + + Zumbun + + + + + Mixtepec Mixtec + + + + + Xiandao + + + + + Central Nahuatl + + + + + Bemba (Democratic Republic of Congo) + + + + + Old Hittite + + + + + Gilaki + + + + + Lelepa + + + + + Gorap + + + + + Ixcatlan Mazatec + + + + + Kamakan + + + + + Karas + + + + + Dixon Reef + + + + + Buhutu + + + + + Southeast Babar + + + + + Southeast Ambrym + + + + + Jalkunan + + + + + Western Cham + + + + + Sangu (Gabon) + + + + + Dhanki + + + + + Bonjo + + + + + Miwa + + + + + Luo (Kenya and Tanzania) + + + + + Old Ossetic + + + + + Adiwasi Garasia + + + + + Koorete + + + + + Banda-Yangere + + + + + Kumalu + + + + + Finnish Sign Language + + + + + Mansoanka + + + + + Koneraw + + + + + Kunama + + + + + Rao + + + + + Maku'a + + + + + Tapirape + + + + + Santa Ines Ahuatempan Popoloca + + + + + Lembena + + + + + Mbulungish + + + + + Tina Sambal + + + + + Likila + + + + + South Lembata + + + + + Macushi + + + + + Northern Roglai + + + + + Bukit Malay + + + + + Xaasongaxango + + + + + Rungwa + + + + + Lamu-Lamu + + + + + Ngong + + + + + Akar-Bale + + + + + Bolia + + + + + Bariji + + + + + Highland Oaxaca Chontal + + + + + Bugawac + + + + + Teribe + + + + + Buya + + + + + West Damar + + + + + Kwoma + + + + + Karaja + + + + + Kamantan + + + + + Kaimbe + + + + + Burarra + + + + + Ghodoberi + + + + + Jora + + + + + Caka + + + + + Makurap + + + + + Min Bei Chinese + + + + + Morelos Nahuatl + + + + + Ambonese Malay + + + + + Kisar + + + + + Kendayan + + + + + Numidian + + + + + Tapiete + + + + + Kerek + + + + + Uruguayan Sign Language + + + + + Djawi + + + + + Lahnda + + + + + Guwamu + + + + + Tasmate + + + + + Samba Daka + + + + + Longuda + + + + + Kachin + + + + + Shixing + + + + + Gwahatike + + + + + Nanticoke + + + + + Meramera + + + + + Ache + + + + + Uri + + + + + Worimi + + + + + Daonda + + + + + Southern Rengma Naga + + + + + Gwamhi-Wuri + + + + + Ama (Papua New Guinea) + + + + + Kapya + + + + + Riantana + + + + + Akurio + + + + + Middle Korean (10th - 16th cent.) + + + + + Gowli + + + + + Hmong Njua + + + + + Baluchi + + + + + Maghdi + + + + + Monsang Naga + + + + + Arawum + + + + + Tumak + + + + + Eteocypriot + + + + + Silopi + + + + + Tigrinya + + + + + Bukwen + + + + + Mbangwe + + + + + Minoan + + + + + Catawba + + + + + Amri + + + + + Geko Karen + + + + + Asu (Nigeria) + + + + + Kombai + + + + + Carutana + + + + + Punan Batu 1 + + + + + Sylheti + + + + + Chokwe + + + + + Achagua + + + + + Tamashek + + + + + Penang Sign Language + + + + + Jagoi + + + + + Bo (Laos) + + + + + Elip + + + + + Sulung + + + + + Deg + + + + + Phuong + + + + + Gyem + + + + + Owiniga + + + + + Varhadi-Nagpuri + + + + + Wotu + + + + + Lele (Guinea) + + + + + Northwestern Ojibwa + + + + + Northeastern Dinka + + + + + Abar + + + + + Bago-Kusuntu + + + + + Thangmi + + + + + Suabo + + + + + Pulabu + + + + + Kwerba Mamberamo + + + + + Far Western Muria + + + + + Kaxarari + + + + + Chemakum + + + + + Tidong + + + + + Southern Aymara + + + + + Choni + + + + + Sheko + + + + + Somray + + + + + Uneapa + + + + + Central Dusun + + + + + Dogri (macrolanguage) + + + + + Aoheng + + + + + Loma (Liberia) + + + + + Yaweyuha + + + + + Faita + + + + + Sajalong + + + + + Monde + + + + + Andaman Creole Hindi + + + + + Merey + + + + + Kosena + + + + + Nocaman + + + + + Lower Ta'oih + + + + + Thudam + + + + + Koshin + + + + + Cuba Sign Language + + + + + Southern Sotho + + + + + Guana (Brazil) + + + + + Land Dayak + + + + + Central Bicolano + + + + + Biatah + + + + + Pirlatapa + + + + + Yalalag Zapotec + + + + + Aramanik + + + + + Paynamar + + + + + Larteh + + + + + Dyaberdyaber + + + + + Huli + + + + + Eloyi + + + + + Bhatola + + + + + Tambas + + + + + Xanaguia Zapotec + + + + + Judeo-Yemeni Arabic + + + + + Fanagalo + + + + + Toromono + + + + + Totomachapan Zapotec + + + + + Kangri + + + + + Kodagu + + + + + Venetic + + + + + Mpiemo + + + + + Comox + + + + + Fwe + + + + + Feroge + + + + + Eastern Jacalteco + + + + + Sena + + + + + Yoron + + + + + Tacanec + + + + + Gaikundi + + + + + Buyang + + + + + Katcha-Kadugli-Miri + + + + + Chala + + + + + Kerewo + + + + + Uzbeki Arabic + + + + + Awbono + + + + + Riung + + + + + Bwisi + + + + + Kildin Sami + + + + + Jamsay Dogon + + + + + Ipulo + + + + + Piapoco + + + + + Lindu + + + + + Apalai + + + + + Nepalese Sign Language + + + + + Capanahua + + + + + Khetrani + + + + + Irarutu + + + + + Tapeba + + + + + Middle High German (ca. 1050-1500) + + + + + Kumhali + + + + + Vili + + + + + Urapmin + + + + + Bafaw-Balong + + + + + Oroch + + + + + Lyele + + + + + Tigon Mbembe + + + + + Bengkulu + + + + + San Miguel Piedras Mixtec + + + + + Samberigi + + + + + Kokota + + + + + Jerung + + + + + Teluti + + + + + Kwaja + + + + + Shumcho + + + + + Kaiep + + + + + Ninzo + + + + + Tindi + + + + + Awa-Cuaiquer + + + + + Western Muria + + + + + Gawar-Bati + + + + + Nateni + + + + + Tangchangya + + + + + Hehe + + + + + Siriono + + + + + Gera + + + + + Nahali + + + + + Bats + + + + + Iguta + + + + + Ndun + + + + + Mpongmpong + + + + + Isekiri + + + + + Ong + + + + + Idi + + + + + Spanish + + + + + Matses + + + + + Kaningi + + + + + Berom + + + + + Tengger + + + + + Buksa + + + + + Barambu + + + + + Ainbai + + + + + Northern Rengma Naga + + + + + Sea Island Creole English + + + + + Kanufi + + + + + Lower Silesian + + + + + Wipi + + + + + Mudhili Gadaba + + + + + Turkic Khalaj + + + + + Neku + + + + + Venustiano Carranza Tzotzil + + + + + Nkem-Nkum + + + + + Alsea + + + + + Lingao + + + + + Bahau + + + + + Yawiyo + + + + + Bedoanas + + + + + Anserma + + + + + Tha + + + + + Lamja-Dengsa-Tola + + + + + Nar Phu + + + + + Sansu + + + + + Ihievbe + + + + + Kota Marudu Tinagas + + + + + Seit-Kaitetu + + + + + Holu + + + + + Aribwatsa + + + + + Katkari + + + + + Ho Chi Minh City Sign Language + + + + + Tigak + + + + + Western Dani + + + + + Phrygian + + + + + Vlax Romani + + + + + Upper Baram Kenyah + + + + + Ririo + + + + + Northern Huishui Hmong + + + + + Miarra + + + + + Sawknah + + + + + Meriam + + + + + Tamil + + + + + Mada (Cameroon) + + + + + Ndzwani Comorian + + + + + Central Sierra Miwok + + + + + Tsuvan + + + + + Jere + + + + + Firan + + + + + Igala + + + + + Eastern Huishui Hmong + + + + + Soli + + + + + Jiamao + + + + + Uma + + + + + Dayao Yi + + + + + Chincha Quechua + + + + + Northern Haida + + + + + Northern Pame + + + + + Ma'ya + + + + + Nanti + + + + + Baraamu + + + + + Lakalei + + + + + Gwere + + + + + Ngatik Men's Creole + + + + + Osage + + + + + Gabrielino-Fernandeno + + + + + Bumaji + + + + + Quiotepec Chinantec + + + + + Kango (Bas-Uele District) + + + + + Lombo + + + + + Okanagan + + + + + Maden + + + + + Lepcha + + + + + Busang Kayan + + + + + Mariyedi + + + + + Kehu + + + + + Chichimeca-Jonaz + + + + + Avau + + + + + Mingrelian + + + + + Alune + + + + + Sansi + + + + + Achuar-Shiwiar + + + + + Meru + + + + + Bhele + + + + + Sikaritai + + + + + Mamulique + + + + + Mazaltepec Zapotec + + + + + Wagawaga + + + + + Japanese Sign Language + + + + + Tsogo + + + + + Pankhu + + + + + Mehek + + + + + Russian + + + + + Maguindanao + + + + + Nindi + + + + + Ito + + + + + Northern Tarahumara + + + + + Chibcha + + + + + Crimean Tatar + + + + + Maii + + + + + Kota Marudu Talantang + + + + + Xokleng + + + + + Urarina + + + + + Polish + + + + + Likum + + + + + Oune + + + + + Bambili-Bambui + + + + + Kwak + + + + + Sakata + + + + + Pamona + + + + + Gros Ventre + + + + + Modang + + + + + Kande + + + + + Tehit + + + + + Ngamini + + + + + Umon + + + + + Sangir + + + + + Yawuru + + + + + Gobu + + + + + Tasmanian + + + + + Surbakhal + + + + + Texmelucan Zapotec + + + + + Isoko + + + + + Southeastern Kolami + + + + + Kyerung + + + + + Gade Lohar + + + + + Khunsari + + + + + Kullu Pahari + + + + + Batak Angkola + + + + + Merei + + + + + Pattani + + + + + Dondo + + + + + Mengisa + + + + + Classical Syriac + + + + + Sanye + + + + + Lower Sorbian + + + + + Bafia + + + + + Margany + + + + + Zaghawa + + + + + Nukuini + + + + + Kunyi + + + + + Angami Naga + + + + + Kapin + + + + + Sausi + + + + + Bangala + + + + + Laz + + + + + Mariri + + + + + Ebrie + + + + + Waura + + + + + Severn Ojibwa + + + + + Pennsylvania German + + + + + Rawang + + + + + Ati + + + + + Eastern Magar + + + + + Pulaar + + + + + Mea + + + + + Eastern Pokomam + + + + + Guguyimidjir + + + + + Huichol + + + + + Kobiana + + + + + Marau + + + + + Dia + + + + + Carolina Algonquian + + + + + Tal + + + + + Southeastern Pomo + + + + + Sika + + + + + Kate + + + + + Wutunhua + + + + + Buwal + + + + + Masbatenyo + + + + + Nagarchal + + + + + Banda-Banda + + + + + Gan Chinese + + + + + Malaccan Creole Malay + + + + + Southeastern Puebla Nahuatl + + + + + Taloki + + + + + Kru'ng 2 + + + + + Chitkuli Kinnauri + + + + + Kaninuwa + + + + + Samre + + + + + Bulu (Cameroon) + + + + + Ixtayutla Mixtec + + + + + Mator-Taygi-Karagas + + + + + Oromo + + + + + Selayar + + + + + Weme Gbe + + + + + Mantsi + + + + + Uya + + + + + Kuri + + + + + Budeh Stieng + + + + + Joyabaj Quiche + + + + + Bannoni + + + + + Wangganguru + + + + + Limburgan + + + + + Lama (Togo) + + + + + Waling + + + + + French Sign Language + + + + + Abidji + + + + + Qashqa'i + + + + + Tetete + + + + + Asoa + + + + + Palu'e + + + + + Alagwa + + + + + Serrano + + + + + Agoi + + + + + Huilliche + + + + + Miu + + + + + Naaba + + + + + Arigidi + + + + + Lintang + + + + + Abadi + + + + + Sierra de Juarez Zapotec + + + + + Gula Iro + + + + + Panamint + + + + + Saxwe Gbe + + + + + Dek + + + + + Manza + + + + + Bolondo + + + + + Na-Meo + + + + + Lemolang + + + + + Jilim + + + + + Moskona + + + + + Omani Arabic + + + + + Snohomish + + + + + Ma (Papua New Guinea) + + + + + Mina (India) + + + + + Gun + + + + + Chipiajes + + + + + Pingelapese + + + + + Dandami Maria + + + + + Komi-Zyrian + + + + + Djamindjung + + + + + Badeshi + + + + + Matal + + + + + Patla-Chicontla Totonac + + + + + Puno Quechua + + + + + Northeast Maidu + + + + + Halbi + + + + + Fala + + + + + Umiray Dumaget Agta + + + + + Ahanta + + + + + Kenyan Sign Language + + + + + Busoa + + + + + Mokilese + + + + + Bamu + + + + + Bangba + + + + + Morigi + + + + + Purubora + + + + + Leelau + + + + + Sangisari + + + + + Kumauni + + + + + Tinoc Kallahan + + + + + Romanian Sign Language + + + + + Upper Sorbian + + + + + Dzando + + + + + Pomo + + + + + Zenzontepec Chatino + + + + + Iha Based Pidgin + + + + + Songe + + + + + Saam + + + + + Dacian + + + + + Lahu Shi + + + + + Tepecano + + + + + North Ndebele + + + + + Pale Palaung + + + + + Okpe (Southwestern Edo) + + + + + Simaa + + + + + Ura (Vanuatu) + + + + + Lower Grand Valley Dani + + + + + Bure + + + + + Wampur + + + + + Homa + + + + + Gungu + + + + + Koro (Cote d'Ivoire) + + + + + Watam + + + + + Dongotono + + + + + Trinitario + + + + + Swiss-Italian Sign Language + + + + + Idun + + + + + Welsh Romani + + + + + Yaben + + + + + Coeur d'Alene + + + + + Isanzu + + + + + Bit + + + + + Classical Nahuatl + + + + + Jahanka + + + + + Makhuwa-Marrevone + + + + + Lasalimu + + + + + San Blas Kuna + + + + + Subiya + + + + + Sengo + + + + + Kwaya + + + + + Romanova + + + + + Kein + + + + + Lealao Chinantec + + + + + Eastern Xwla Gbe + + + + + Dza + + + + + Southern Lolopho Yi + + + + + Bukiyip + + + + + Ginuman + + + + + Amara + + + + + Wumboko + + + + + Kambiwa + + + + + French + + + + + Ekajuk + + + + + Pahlavi + + + + + Harauti + + + + + Camunic + + + + + Yamna + + + + + Western Yi + + + + + Ke'o + + + + + Southern Zhuang + + + + + Guliguli + + + + + Inga + + + + + Ngie + + + + + Mugom + + + + + Kim + + + + + Eastern Bru + + + + + Istro Romanian + + + + + Karnai + + + + + Paniya + + + + + Traveller Danish + + + + + Alekano + + + + + Siwai + + + + + Enepa + + + + + Chickasaw + + + + + Finongan + + + + + Russian Sign Language + + + + + Wiarumus + + + + + Chaura + + + + + Yendang + + + + + Tawoyan + + + + + Kutang Ghale + + + + + Basa-Gurmana + + + + + Zaramo + + + + + Gants + + + + + Hiri Motu + + + + + Aribwaung + + + + + Manipa + + + + + Machinere + + + + + Bulgarian + + + + + Bayali + + + + + Tubatulabal + + + + + Southern Mnong + + + + + Buyu + + + + + Malua Bay + + + + + Urigina + + + + + Kodeoha + + + + + Nali + + + + + Ese + + + + + Utu + + + + + Southern Toussian + + + + + Geez + + + + + Ngarla + + + + + Tsishingini + + + + + Palantla Chinantec + + + + + Banda Malay + + + + + Yinchia + + + + + Jiiddu + + + + + Dhangu + + + + + Fordata + + + + + Mekeo + + + + + Nkongho + + + + + Suma + + + + + Mbangala + + + + + Mumuye + + + + + Ambala Ayta + + + + + Tairuma + + + + + Luimbi + + + + + Momina + + + + + Bende + + + + + Ganzi + + + + + Sangab Mandaya + + + + + Southern Nicobarese + + + + + Hmong Don + + + + + Nimo + + + + + Motlav + + + + + Dengka + + + + + Marwari (Pakistan) + + + + + Sindarin + + + + + Tulishi + + + + + Umeda + + + + + Quetzaltepec Mixe + + + + + Kantosi + + + + + Kuranko + + + + + Ngiemboon + + + + + Mmen + + + + + Yahadian + + + + + Ocotepec Mixtec + + + + + Koyaga + + + + + Tunisian Sign Language + + + + + Yautepec Zapotec + + + + + Burji + + + + + Ucayali-Yurua Asheninka + + + + + Eipomek + + + + + Dii + + + + + Nengone + + + + + Teke-Nzikou + + + + + Vangunu + + + + + Kaiy + + + + + Lardil + + + + + Kaskean + + + + + Gugu Badhun + + + + + Padoe + + + + + Ejamat + + + + + Gagnoa Bete + + + + + Nungu + + + + + Pecheneg + + + + + Atong + + + + + Panang + + + + + Yatzachi Zapotec + + + + + Baiso + + + + + Boano (Maluku) + + + + + Njerep + + + + + Tira + + + + + Old Cornish + + + + + Simbari + + + + + Cacaloxtepec Mixtec + + + + + Ha + + + + + Gudu + + + + + Lozi + + + + + Middle Welsh + + + + + Bentong + + + + + Wab + + + + + Gwich'in + + + + + Phong-Kniang + + + + + Atsam + + + + + Adivasi Oriya + + + + + Chipewyan + + + + + Malapandaram + + + + + Sichuan Yi + + + + + Yonaguni + + + + + Bayot + + + + + Angaatiha + + + + + South Bolivian Quechua + + + + + Sauk + + + + + Ura (Papua New Guinea) + + + + + Orokolo + + + + + Chokri Naga + + + + + Kaansa + + + + + Sagala + + + + + Maru + + + + + Korwa + + + + + Apalik + + + + + Yaur + + + + + Gwa + + + + + Leipon + + + + + Bukitan + + + + + Pwo Northern Karen + + + + + Degenan + + + + + Sursurunga + + + + + Dakpakha + + + + + Wajarri + + + + + Guato + + + + + Wom (Nigeria) + + + + + Nsongo + + + + + Mbwela + + + + + Serudung Murut + + + + + Ngom + + + + + Zaiwa + + + + + Paliyan + + + + + Pa'a + + + + + Mekmek + + + + + Kalmyk + + + + + Tasawaq + + + + + Piya-Kwonci + + + + + Mikasuki + + + + + Yombe + + + + + Novial + + + + + Mongolian + + + + + Mosimo + + + + + Hahon + + + + + Turung + + + + + Termanu + + + + + Yelogu + + + + + Me'en + + + + + Sentani + + + + + Kamberau + + + + + Zande (individual language) + + + + + Ndonde Hamba + + + + + Hungarian + + + + + Kachi Koli + + + + + Polish Sign Language + + + + + Ganglau + + + + + Panao Huanuco Quechua + + + + + Fore + + + + + Chenoua + + + + + Binukid + + + + + Dumpu + + + + + Santa Maria La Alta Nahuatl + + + + + Sakao + + + + + Babine + + + + + Mundang + + + + + Etebi + + + + + Guiqiong + + + + + Salt-Yui + + + + + Kelabit + + + + + Southern Thai + + + + + Wiaki + + + + + Zacatepec Chatino + + + + + Nande + + + + + Kamasau + + + + + San Vicente Coatlan Zapotec + + + + + Bagvalal + + + + + Kerinci + + + + + Fania + + + + + Campalagian + + + + + Koroshi + + + + + Jabuti + + + + + Piame + + + + + Juruna + + + + + Lavukaleve + + + + + Bauwaki + + + + + Chamula Tzotzil + + + + + Mentawai + + + + + Vietnamese + + + + + Tieyaxo Bozo + + + + + Sota Kanum + + + + + Yuqui + + + + + Nganasan + + + + + Urhobo + + + + + Tsimshian + + + + + Gbaya (Central African Republic) + + + + + Bintulu + + + + + Khisa + + + + + Maquiritari + + + + + Phrae Pwo Karen + + + + + Jeng + + + + + Onobasulu + + + + + Temoq + + + + + Bidyara + + + + + Adi + + + + + Mwera (Chimwera) + + + + + South Central Dinka + + + + + Nkhumbi + + + + + Ejagham + + + + + Sechelt + + + + + Sanggau + + + + + Lishan Didan + + + + + Mamanwa + + + + + Mixifore + + + + + Lele (Chad) + + + + + Pacoh + + + + + Oxchuc Tzeltal + + + + + Lole + + + + + Koti + + + + + Boloki + + + + + Longgu + + + + + Horpa + + + + + Disa + + + + + Manda (Tanzania) + + + + + Kanju + + + + + Chuwabu + + + + + Yamphu + + + + + Louisiana Creole French + + + + + Udi + + + + + Ashe + + + + + Umbugarla + + + + + Achinese + + + + + Nyigina + + + + + Gambian Wolof + + + + + Lowland Oaxaca Chontal + + + + + Hrangkhol + + + + + Golin + + + + + Northwest Oaxaca Mixtec + + + + + Mawes + + + + + Kiorr + + + + + Penrhyn + + + + + Batuley + + + + + Bo (Papua New Guinea) + + + + + Guyanese Creole English + + + + + Southern Amami-Oshima + + + + + Chipaya + + + + + Central Huishui Hmong + + + + + Sacapulteco + + + + + Mbula-Bwazza + + + + + Nukumanu + + + + + Glio-Oubi + + + + + Alago + + + + + West Lembata + + + + + Degema + + + + + Tunni + + + + + Sula + + + + + Ronji + + + + + Shughni + + + + + Nshi + + + + + Ibaloi + + + + + Hanga + + + + + Leyigha + + + + + Kemtuik + + + + + Banda (Indonesia) + + + + + Old Provencal (to 1500) + + + + + Lewo Eleng + + + + + Lampung + + + + + San Luis Temalacayuca Popoloca + + + + + China Buriat + + + + + Avikam + + + + + Middle Irish (900-1200) + + + + + Ngizim + + + + + Timucua + + + + + Kerak + + + + + Mochi + + + + + Pwapwa + + + + + Western Cakchiquel + + + + + Kuo + + + + + Nijadali + + + + + Kagulu + + + + + Bube + + + + + Ngulu + + + + + Northern Nambikuara + + + + + Roria + + + + + Old Manipuri + + + + + Mpade + + + + + Ede Ica + + + + + Occitan (post 1500) + + + + + Wamin + + + + + Loloda + + + + + Chilean Sign Language + + + + + Duna + + + + + Standard Arabic + + + + + Interlingua (International Auxiliary Language Association) + + + + + Powhatan + + + + + Shamang + + + + + Nayi + + + + + Guragone + + + + + Mengen + + + + + Baibai + + + + + Koryak + + + + + Ega + + + + + Sa'ban + + + + + Gonja + + + + + Bajan + + + + + To + + + + + Epigraphic Mayan + + + + + Yagnobi + + + + + Giyug + + + + + Tahaggart Tamahaq + + + + + Jonkor Bourmataguil + + + + + Central Awyu + + + + + Tedaga + + + + + Kenati + + + + + Samei + + + + + Marathi + + + + + Trimuris + + + + + Ga'dang + + + + + Paumari + + + + + Chorti + + + + + So (Democratic Republic of Congo) + + + + + Gitonga + + + + + Awara + + + + + Ligurian (Ancient) + + + + + Western Xiangxi Hmong + + + + + Belize Kriol English + + + + + Kare (Papua New Guinea) + + + + + Hausa + + + + + Kalarko + + + + + Pinyin + + + + + Cajun French + + + + + Koda + + + + + Bole + + + + + Merwari + + + + + Casiguran Dumagat Agta + + + + + Mbalanhu + + + + + Klao + + + + + Southwestern Fars + + + + + Ewondo + + + + + Wulna + + + + + Likwala + + + + + Chimborazo Highland Quichua + + + + + Laro + + + + + Central Yupik + + + + + Noiri + + + + + Enga + + + + + Masikoro Malagasy + + + + + Nyemba + + + + + San Pedro Amuzgos Amuzgo + + + + + Yuaga + + + + + Mawayana + + + + + Sikkimese + + + + + Ngawun + + + + + Atayal + + + + + Dumi + + + + + Central Tagbanwa + + + + + Sepa (Indonesia) + + + + + Ampanang + + + + + Bezhta + + + + + Rombo + + + + + Mian + + + + + Yana + + + + + Sindihui Mixtec + + + + + Kaiwa + + + + + Aulua + + + + + Chodri + + + + + Mangbetu + + + + + Hawai'i Creole English + + + + + Sibe + + + + + Bernde + + + + + Dedua + + + + + Wasembo + + + + + Basa-Gumna + + + + + Wersing + + + + + Nuk + + + + + Tolowa + + + + + Topoiyo + + + + + Ede Ije + + + + + Bilaspuri + + + + + Kagoro + + + + + Eastern Ngad'a + + + + + Surajpuri + + + + + Tai Ya + + + + + Swahili (macrolanguage) + + + + + Calderon Highland Quichua + + + + + Benga + + + + + Ormuri + + + + + Western Krahn + + + + + Kumukio + + + + + Nocte Naga + + + + + Cappadocian Greek + + + + + Baras + + + + + Bobot + + + + + Tafi + + + + + Loxicha Zapotec + + + + + Awiyaana + + + + + Isconahua + + + + + Mbunda + + + + + Nyankole + + + + + Karko + + + + + Konomala + + + + + Kakihum + + + + + Southern Dong + + + + + Boikin + + + + + Mogholi + + + + + Mangas + + + + + Old Persian (ca. 600-400 B.C.) + + + + + Gimnime + + + + + Gedaged + + + + + Fipa + + + + + Namuyi + + + + + Nicaraguan Sign Language + + + + + Mituku + + + + + Nihali + + + + + Guya + + + + + Jaqaru + + + + + Angloromani + + + + + Burum-Mindik + + + + + Digo + + + + + Garo + + + + + Zoogocho Zapotec + + + + + Kur + + + + + Lyons Sign Language + + + + + Mufian + + + + + Northwestern Kolami + + + + + Rwa + + + + + Niksek + + + + + Kekchi + + + + + Jakun + + + + + Shuswap + + + + + Sikaiana + + + + + Jilbe + + + + + Kaulong + + + + + Nkoroo + + + + + Rema + + + + + Amapa Creole + + + + + Zigula + + + + + Kove + + + + + Ayautla Mazatec + + + + + Mid-Southern Banda + + + + + Southeastern Tepehuan + + + + + Western Keres + + + + + Erzya + + + + + Bina (Nigeria) + + + + + Desiya Oriya + + + + + Colombian Sign Language + + + + + Talai + + + + + Papavo + + + + + Liangmai Naga + + + + + Ndam + + + + + Machiguenga + + + + + Yangho + + + + + Berawan + + + + + Paranawat + + + + + Miahuatlan Zapotec + + + + + Yagua + + + + + Egyptian (Ancient) + + + + + Banggarla + + + + + Cubeo + + + + + Siroi + + + + + Bini + + + + + Central Asmat + + + + + Poumei Naga + + + + + Magahat + + + + + Wik-Keyangan + + + + + Carabayo + + + + + Melo + + + + + Rajput Garasia + + + + + Matengo + + + + + Maiadomu + + + + + Pawaia + + + + + Judeo-Crimean Tatar + + + + + Tunica + + + + + Han + + + + + Sayula Popoluca + + + + + Hidatsa + + + + + N'Ko + + + + + Kpessi + + + + + Punan Merap + + + + + Adzera + + + + + Suena + + + + + Ono + + + + + Pular + + + + + Nepali Kurux + + + + + Huaylla Wanca Quechua + + + + + Bine + + + + + Saho + + + + + Kunggari + + + + + Celtiberian + + + + + Edolo + + + + + Sarsi + + + + + Dar Sila Daju + + + + + Kwomtari + + + + + Maiwala + + + + + Kare (Central African Republic) + + + + + Sian + + + + + Utarmbung + + + + + Wusi + + + + + Tsakwambo + + + + + Hatam + + + + + Nisenan + + + + + Yala + + + + + Nakwi + + + + + Lak + + + + + Nyam + + + + + Zarphatic + + + + + Ndogo + + + + + Chiquitano + + + + + Southeastern Ixtlan Zapotec + + + + + North Watut + + + + + Tsat + + + + + Tatuyo + + + + + Dombe + + + + + Hre + + + + + Upper Kinabatangan + + + + + Xavante + + + + + Chenalho Tzotzil + + + + + Haroi + + + + + Jad + + + + + Vumbu + + + + + Kete + + + + + Bahonsuai + + + + + Inor + + + + + Papel + + + + + Upper Pokomo + + + + + Attie + + + + + Wik-Ngathana + + + + + Kuijau + + + + + Binongan Itneg + + + + + Bainouk-Gunyaamolo + + + + + Port Sandwich + + + + + Ogan + + + + + Anor + + + + + Kharia + + + + + Dar Daju Daju + + + + + Singa + + + + + Naka'ela + + + + + Eastern Cakchiquel + + + + + Middle French (ca. 1400-1600) + + + + + Ache Yi + + + + + Sarikoli + + + + + Gengle + + + + + Gresi + + + + + Judeo-Tripolitanian Arabic + + + + + Temiar + + + + + Kwerisa + + + + + Kono (Sierra Leone) + + + + + Cholon + + + + + Ngombe (Central African Republic) + + + + + Gilbertese + + + + + Vame + + + + + Deori + + + + + Anyin + + + + + Kagoma + + + + + Mansaka + + + + + Warlpiri + + + + + Classical Quechua + + + + + Takestani + + + + + Siuslaw + + + + + Metlatonoc Mixtec + + + + + Phom Naga + + + + + Makolkol + + + + + Toba + + + + + Baimak + + + + + Kim Mun + + + + + South Azerbaijani + + + + + Tunen + + + + + Gorontalo + + + + + Wappo + + + + + Minaveha + + + + + Mpotovoro + + + + + Glavda + + + + + Chakali + + + + + Owa + + + + + Yelmek + + + + + Wadjigu + + + + + Dumpas + + + + + Kulon-Pazeh + + + + + Akhvakh + + + + + Venezuelan Sign Language + + + + + Futuna-Aniwa + + + + + Lake Miwok + + + + + Salar + + + + + Kunjen + + + + + Huallaga Huanuco Quechua + + + + + Saek + + + + + Malgbe + + + + + Teke-Tsaayi + + + + + Ambai + + + + + Dori'o + + + + + Iko + + + + + Ngul + + + + + Iyive + + + + + Lacandon + + + + + Wali (Sudan) + + + + + Anmatyerre + + + + + Tofin Gbe + + + + + Mansi + + + + + Atohwaim + + + + + Marino + + + + + Bubi + + + + + Marka + + + + + San Dionisio Del Mar Huave + + + + + Alawa + + + + + Noon + + + + + Tangoa + + + + + Pentlatch + + + + + Abkhazian + + + + + Qatabanian + + + + + Sensi + + + + + Dhofari Arabic + + + + + Asilulu + + + + + Kara (Papua New Guinea) + + + + + East Masela + + + + + Lhokpu + + + + + Misima-Paneati + + + + + Holikachuk + + + + + Emok + + + + + Wae Rana + + + + + Seroa + + + + + Shempire Senoufo + + + + + Moroccan Sign Language + + + + + Pogolo + + + + + Northwest Alaska Inupiatun + + + + + Gbagyi + + + + + Nauna + + + + + Northern Nuni + + + + + Tela-Masbuar + + + + + Bahnar + + + + + Koho + + + + + Ponares + + + + + Ringgou + + + + + Sape + + + + + Binandere + + + + + Xamtanga + + + + + Lachi + + + + + Yuruti + + + + + Nage + + + + + Zenag + + + + + Kumbewaha + + + + + Lamnso' + + + + + Owenia + + + + + Guajajara + + + + + Cacaopera + + + + + Upper Chehalis + + + + + Polari + + + + + Vai + + + + + Yatee Zapotec + + + + + Tumi + + + + + Balkan Gagauz Turkish + + + + + Suga + + + + + Hano + + + + + Lishana Deni + + + + + Aneityum + + + + + Malgana + + + + + Tembe + + + + + Folopa + + + + + Bachajon Tzeltal + + + + + Repanbitip + + + + + Kominimung + + + + + Quiavicuzas Zapotec + + + + + Iberian + + + + + Gbati-ri + + + + + Langobardic + + + + + Chagatai + + + + + Panytyima + + + + + Wikngenchera + + + + + Kugbo + + + + + Polabian + + + + + Mori Bawah + + + + + Omok + + + + + Ainu (Japan) + + + + + Dusner + + + + + Hupde + + + + + Surubu + + + + + Shwai + + + + + Yari + + + + + Northern Hindko + + + + + Jirel + + + + + Dogrib + + + + + 'Areare + + + + + Faiwol + + + + + Mobumrin Aizi + + + + + Crow + + + + + Mwatebu + + + + + Warapu + + + + + Kwami + + + + + Santa Lucia Monteverde Mixtec + + + + + Gal + + + + + Molof + + + + + Mosina + + + + + Ujir + + + + + Putai + + + + + Gamo-Gofa-Dawro + + + + + South Ndebele + + + + + Tharaka + + + + + Te'un + + + + + Krenak + + + + + Kalou + + + + + Kraho + + + + + San Miguel El Grande Mixtec + + + + + Waama + + + + + Xaragure + + + + + Kayagar + + + + + Inabaknon + + + + + Mezquital Otomi + + + + + Shehri + + + + + Towei + + + + + Mvanip + + + + + Andegerebinha + + + + + Mangga Buang + + + + + Kulere + + + + + Wichita + + + + + Mapudungun + + + + + Pam + + + + + Lisu + + + + + Romano-Greek + + + + + Mozarabic + + + + + Palikur + + + + + Scots + + + + + Gugadj + + + + + Umpila + + + + + Uamue + + + + + Mangayat + + + + + Guatemalan Sign Language + + + + + Finnish + + + + + Naluo Yi + + + + + Lau + + + + + Yami + + + + + Burate + + + + + Judeo-Iraqi Arabic + + + + + Zauzou + + + + + Karagas + + + + + Ratagnon + + + + + Ipili + + + + + Burun + + + + + Lou + + + + + Western Frisian + + + + + Omati + + + + + Mzieme Naga + + + + + Karelian + + + + + Rarotongan + + + + + Okiek + + + + + Enwan (Edu State) + + + + + Kanembu + + + + + Kepo' + + + + + Vemgo-Mabas + + + + + Efe + + + + + South Efate + + + + + Fiwaga + + + + + Amto + + + + + Piemontese + + + + + Santa Cruz + + + + + Jiongnai Bunu + + + + + Jur Modo + + + + + Rajah Kabunsuwan Manobo + + + + + Arua + + + + + Angoram + + + + + Sudanese Arabic + + + + + Spiti Bhoti + + + + + Southern Tujia + + + + + Ternate + + + + + Kachama-Ganjule + + + + + Northwestern Fars + + + + + Sur + + + + + Kura Ede Nago + + + + + Biloxi + + + + + Cusco Quechua + + + + + Tonjon + + + + + Mayoyao Ifugao + + + + + Thai Song + + + + + N/u + + + + + Komo (Democratic Republic of Congo) + + + + + Daur + + + + + Mossi + + + + + Kathoriya Tharu + + + + + Luang + + + + + Moinba + + + + + Baga Koga + + + + + Guyani + + + + + Nyole + + + + + Northwest Gbaya + + + + + Eastern Muria + + + + + Mindiri + + + + + Ngile + + + + + Tambunan Dusun + + + + + Bakoko + + + + + Zumaya + + + + + Dhundari + + + + + Eastern Pokomchi + + + + + Dutton World Speedwords + + + + + Badimaya + + + + + Bundeli + + + + + Ambelau + + + + + Ngamambo + + + + + Cocama-Cocamilla + + + + + Kato + + + + + S'gaw Karen + + + + + Pa'o Karen + + + + + Yuracare + + + + + Nugunu (Australia) + + + + + Klias River Kadazan + + + + + Tswa + + + + + Pume + + + + + Laal + + + + + West Uvean + + + + + Oriya + + + + + Bari + + + + + Tora + + + + + Kwerba + + + + + Chaima + + + + + Lenkau + + + + + Maltese + + + + + Sulod + + + + + Mapidian + + + + + Purum Naga + + + + + Arma + + + + + Bantawa + + + + + South Giziga + + + + + Khun + + + + + Saluma + + + + + Bambara + + + + + Vamale + + + + + Lalana Chinantec + + + + + Kholok + + + + + Mudu Koraga + + + + + Dagba + + + + + Nukuoro + + + + + Baikeno + + + + + Pech + + + + + Gorowa + + + + + Kendeje + + + + + Marimanindji + + + + + Kravet + + + + + Kensiu + + + + + Ganza + + + + + Teke-Tyee + + + + + Yaka (Democratic Republic of Congo) + + + + + Tae' + + + + + South Nuaulu + + + + + Wik-Epa + + + + + Duhwa + + + + + Lule Sami + + + + + Philippine Sign Language + + + + + Seluwasan + + + + + Ngundi + + + + + Mangseng + + + + + Araona + + + + + Holma + + + + + Mongolia Buriat + + + + + Nyeu + + + + + Dano + + + + + Mwimbi-Muthambi + + + + + Buyuan Jinuo + + + + + Saotomense + + + + + Nuer + + + + + Beezen + + + + + Jordanian Sign Language + + + + + Miriwung + + + + + Northern Tlaxiaco Mixtec + + + + + Igbo + + + + + Aymara + + + + + Ogbronuagum + + + + + Male (Ethiopia) + + + + + Warluwara + + + + + Mintil + + + + + Tiene + + + + + Berakou + + + + + Havasupai-Walapai-Yavapai + + + + + Island Carib + + + + + Hya + + + + + Lendu + + + + + Southern Hindko + + + + + Yangben + + + + + Awing + + + + + Haida + + + + + Tataltepec Chatino + + + + + Bench + + + + + Manyika + + + + + Lafofa + + + + + Goaria + + + + + Taita + + + + + Ngala + + + + + Lotha Naga + + + + + Northwest Maidu + + + + + Upper Tanudan Kalinga + + + + + Songa + + + + + Khlor + + + + + Wiyot + + + + + Sajau Basap + + + + + Semendo + + + + + Dominican Sign Language + + + + + Paasaal + + + + + Tagbu + + + + + Migabac + + + + + Xinca + + + + + Lojban + + + + + Chong + + + + + Busami + + + + + Nde-Gbite + + + + + Atsahuaca + + + + + Kpatili + + + + + Watakataui + + + + + Tektiteko + + + + + Makonde + + + + + Martu Wangka + + + + + Cornish + + + + + Orya + + + + + Berti + + + + + Sikule + + + + + Amharic + + + + + Bhilali + + + + + Nganyaywana + + + + + Iquito + + + + + Tupari + + + + + Northern Khmer + + + + + Prasuni + + + + + Northern Betsimisaraka Malagasy + + + + + Western Neo-Aramaic + + + + + Kusaal + + + + + Ikwere + + + + + Pipil + + + + + Chonganjiang Hmong + + + + + Tehuelche + + + + + Ivatan + + + + + Chamorro + + + + + Tezoatlan Mixtec + + + + + Aekyom + + + + + Gbanziri + + + + + Ruga + + + + + Khehek + + + + + Fataluku + + + + + Pyu (Myanmar) + + + + + Berta + + + + + Tanjong + + + + + Foma + + + + + Torwali + + + + + Wampar + + + + + Kukatja + + + + + Sumbwa + + + + + Yangman + + + + + Lepontic + + + + + Arabic + + + + + Swati + + + + + Sonde + + + + + Shom Peng + + + + + Berik + + + + + Naro + + + + + Duruwa + + + + + Pacaraos Quechua + + + + + Rutul + + + + + Betawi + + + + + Tjurruru + + + + + Wapha + + + + + Puelche + + + + + Daasanach + + + + + Kiowa Apache + + + + + North Efate + + + + + Negeri Sembilan Malay + + + + + Avaric + + + + + Arho + + + + + Ngangam + + + + + Slovak + + + + + Khorezmian + + + + + Burusu + + + + + Thuri + + + + + Chinbon Chin + + + + + Coahuilteco + + + + + Ume Sami + + + + + Gunwinggu + + + + + Mbo (Cameroon) + + + + + Aushi + + + + + Khvarshi + + + + + Dendi (Central African Republic) + + + + + Pana (Burkina Faso) + + + + + Ningye + + + + + Kalabari + + + + + Drung + + + + + Camsa + + + + + Barro Negro Tunebo + + + + + Kinuku + + + + + Angal Enen + + + + + Tsou + + + + + Totontepec Mixe + + + + + Jaru + + + + + Kami (Tanzania) + + + + + Fwai + + + + + Gula'alaa + + + + + Old Chinese + + + + + Phalura + + + + + Tala + + + + + Tomadino + + + + + Cajatambo North Lima Quechua + + + + + Seru + + + + + Mao Naga + + + + + Maasina Fulfulde + + + + + Kven Finnish + + + + + Northern Frisian + + + + + Tanaina + + + + + Adyghe + + + + + Wandji + + + + + Yis + + + + + Arikem + + + + + Kalapuya + + + + + Pasemah + + + + + Dobel + + + + + Carian + + + + + Jamaican Creole English + + + + + Kamaru + + + + + Danau + + + + + Puyuma + + + + + Saint Lucian Creole French + + + + + Oblo + + + + + Kanikkaran + + + + + Iyojwa'ja Chorote + + + + + Salvadoran Sign Language + + + + + Naki + + + + + Dimli + + + + + Lelemi + + + + + Oscan + + + + + Suri + + + + + Gaddi + + + + + Badyara + + + + + Mampruli + + + + + Natchez + + + + + Talmudic Aramaic + + + + + Bokoto + + + + + Ngelima + + + + + Chinese Sign Language + + + + + Taveta + + + + + Bwile + + + + + Nomu + + + + + Mixtepec Zapotec + + + + + Cayubaba + + + + + Kalo Finnish Romani + + + + + Bun + + + + + Ida'an + + + + + Zari + + + + + Martha's Vineyard Sign Language + + + + + Hawai'i Pidgin Sign Language + + + + + Wan + + + + + Juwal + + + + + Mara + + + + + Konni + + + + + Shona + + + + + Tunjung + + + + + Kanyok + + + + + Reel + + + + + Semaq Beri + + + + + Nubi + + + + + Limbum + + + + + Oneida + + + + + Rembong + + + + + Lambya + + + + + Koy Sanjaq Surat + + + + + Yoy + + + + + Boga + + + + + Grenadian Creole English + + + + + Machame + + + + + Ibu + + + + + Keyagana + + + + + Tai Don + + + + + Khiamniungan Naga + + + + + Western Niger Fulfulde + + + + + Yanesha' + + + + + Bebe + + + + + Babalia Creole Arabic + + + + + Yintale Karen + + + + + Western Bukidnon Manobo + + + + + Kuan + + + + + Avatime + + + + + Molmo One + + + + + Konkani (individual language) + + + + + Kembra + + + + + Tonga (Tonga Islands) + + + + + Gupapuyngu + + + + + Ginyanga + + + + + Angosturas Tunebo + + + + + Suya + + + + + Tuxa + + + + + Arapaso + + + + + Naukan Yupik + + + + + Ju + + + + + Esan + + + + + Logol + + + + + Mpoto + + + + + Kumyk + + + + + Amahai + + + + + Italian Sign Language + + + + + Kawaiisu + + + + + Knaanic + + + + + Mandinka + + + + + Fembe + + + + + Guruntum-Mbaaru + + + + + Lumbu + + + + + Namiae + + + + + Rade + + + + + Narrinyeri + + + + + Kachchi + + + + + Rejang + + + + + Kudu-Camo + + + + + Konongo + + + + + Waropen + + + + + Rengao + + + + + Truka + + + + + Od + + + + + Uvbie + + + + + Sened + + + + + English + + + + + Samba Leko + + + + + Rawat + + + + + Paekche + + + + + Jadgali + + + + + Sabum + + + + + Ngwe + + + + + Kobol + + + + + Tetun Dili + + + + + Southeastern Huastec + + + + + Tutelo + + + + + Tuscarora + + + + + Diri + + + + + Abon + + + + + Diuxi-Tilantongo Mixtec + + + + + Malay (macrolanguage) + + + + + Bactrian + + + + + Naskapi + + + + + Bujhyal + + + + + Ake + + + + + Aguna + + + + + Punan Bah-Biau + + + + + Calamian Tagbanwa + + + + + Bhalay + + + + + Ambo-Pasco Quechua + + + + + Southeastern Dinka + + + + + Daba + + + + + Darkhat + + + + + Fungwa + + + + + Kube + + + + + Gurani + + + + + Mofu-Gudur + + + + + Rotokas + + + + + Emae + + + + + Dupaninan Agta + + + + + Girawa + + + + + Straits Salish + + + + + Kgalagadi + + + + + Central Yi + + + + + Baatonum + + + + + Isu (Fako Division) + + + + + Pasi + + + + + Hangaza + + + + + Ngwo + + + + + Eton (Cameroon) + + + + + Tamasheq + + + + + Adonara + + + + + Dirari + + + + + Betaf + + + + + Ayizo Gbe + + + + + Tampias Lobu + + + + + Koronadal Blaan + + + + + Seberuang + + + + + Shangzhai + + + + + Agusan Manobo + + + + + Kuruaya + + + + + Ottawa + + + + + Eastern Arrernte + + + + + Vincentian Creole English + + + + + Rejang Kayan + + + + + Eblan + + + + + Siwu + + + + + Makhuwa + + + + + Kagan Kalagan + + + + + Malavedan + + + + + Quebec Sign Language + + + + + Yemba + + + + + Kurmukar + + + + + Gane + + + + + Izora + + + + + Piro + + + + + Kirghiz + + + + + Northern Ghale + + + + + Koyukon + + + + + Bu-Nao Bunu + + + + + Yau (Morobe Province) + + + + + Waruna + + + + + Putukwam + + + + + Kurukh + + + + + Krui + + + + + Quinault + + + + + Banda-Bambari + + + + + Bakung Kenyah + + + + + Phai + + + + + Barok + + + + + Yoke + + + + + Ilianen Manobo + + + + + Urubu-Kaapor Sign Language + + + + + Oring + + + + + Bamun + + + + + Yamongeri + + + + + Vatrata + + + + + Ndombe + + + + + Asuri + + + + + Kpagua + + + + + North Central Mixe + + + + + Salampasu + + + + + Northern Kalapuya + + + + + Kisi + + + + + Tingal + + + + + Tachelhit + + + + + Gureng Gureng + + + + + Seget + + + + + Olo + + + + + Kabyle + + + + + Talise + + + + + San Andres Larrainzar Tzotzil + + + + + Serbo-Croatian + + + + + Yaul + + + + + Odoodee + + + + + Saruga + + + + + Beti (Cote d'Ivoire) + + + + + Luyana + + + + + Thaypan + + + + + Nigerian Sign Language + + + + + Phula + + + + + Shama-Sambuga + + + + + Vano + + + + + Kafa + + + + + Nusu + + + + + Tembo (Kitembo) + + + + + Hutterite German + + + + + Munkip + + + + + Waxianghua + + + + + Samosa + + + + + Obo Manobo + + + + + Koro (Vanuatu) + + + + + Adele + + + + + Abui + + + + + Leti (Indonesia) + + + + + Kisankasa + + + + + Dutch Sign Language + + + + + Pitta Pitta + + + + + Matigsalug Manobo + + + + + Anamgura + + + + + Njebi + + + + + Safaliba + + + + + Zire + + + + + Ikoma + + + + + Irish + + + + + Hmwaveke + + + + + Kanauji + + + + + Morerebi + + + + + Tswana + + + + + Sora + + + + + Tarpia + + + + + Chhattisgarhi + + + + + Korana + + + + + Ivbie North-Okpela-Arhe + + + + + Doko-Uyanga + + + + + Gowro + + + + + Bierebo + + + + + Plapo Krumen + + + + + Gyele + + + + + Sicanian + + + + + Ancient Greek (to 1453) + + + + + Okodia + + + + + Thangal Naga + + + + + Nooksack + + + + + Nyamwezi + + + + + Singpho + + + + + Uneme + + + + + Asu (Tanzania) + + + + + Domari + + + + + Badi Kanum + + + + + Kendem + + + + + Ndumu + + + + + Mitlatongo Mixtec + + + + + Sumau + + + + + Mape + + + + + Musar + + + + + Oraon Sadri + + + + + Yimchungru Naga + + + + + Dubu + + + + + Bogan + + + + + Hunnic + + + + + Bunama + + + + + Ese Ejja + + + + + Awar + + + + + Djingili + + + + + Ho-Chunk + + + + + Pyu + + + + + Bilma Kanuri + + + + + Vono + + + + + Komyandaret + + + + + Yarawata + + + + + Nimi + + + + + Wuliwuli + + + + + Ir + + + + + Suoy + + + + + Sandawe + + + + + Segai + + + + + Imeraguen + + + + + Ibino + + + + + Yemsa + + + + + Colonia Tovar German + + + + + Malagasy + + + + + Traveller Scottish + + + + + Tonkawa + + + + + Bolango + + + + + Eastern Gurung + + + + + Paraujano + + + + + Sunwar + + + + + Western Penan + + + + + Tangut + + + + + Moabite + + + + + Eastern Quiche + + + + + Lese + + + + + Buriat + + + + + Duriankere + + + + + Central Bontoc + + + + + Kwa + + + + + Engenni + + + + + Creek + + + + + Central Palawano + + + + + Peruvian Sign Language + + + + + Nyambo + + + + + Erokwanas + + + + + Bazigar + + + + + Fasu + + + + + Konkani (macrolanguage) + + + + + Eastern Meohang + + + + + Santa Ana de Tusi Pasco Quechua + + + + + Southern Pashto + + + + + Kalami + + + + + Kabuverdianu + + + + + Central Maewo + + + + + Karon Dori + + + + + Pakistan Sign Language + + + + + Cagua + + + + + Oti + + + + + Gbari + + + + + Forak + + + + + Sowa + + + + + Tangale + + + + + Purik + + + + + Western Tamang + + + + + Bolon + + + + + Shubi + + + + + Cotoname + + + + + Aduge + + + + + Nkari + + + + + Tacana + + + + + Hukumina + + + + + Maram Naga + + + + + Parecis + + + + + Sherdukpen + + + + + Teke-Laali + + + + + Ndunga + + + + + Zeme Naga + + + + + Tandroy-Mahafaly Malagasy + + + + + Laba + + + + + Lugbara + + + + + Bo-Rukul + + + + + Bualkhaw Chin + + + + + Gongduk + + + + + Casuarina Coast Asmat + + + + + Nalik + + + + + Southern Conchucos Ancash Quechua + + + + + Tenango Otomi + + + + + Lingala + + + + + Elamite + + + + + Xicotepec De Juarez Totonac + + + + + Munji + + + + + Wanambre + + + + + Hemba + + + + + Karey + + + + + Kara (Central African Republic) + + + + + Matukar + + + + + Kanowit + + + + + Lodhi + + + + + Niuatoputapu + + + + + Sinicahua Mixtec + + + + + Panchpargania + + + + + Yukpa + + + + + Northern Pomo + + + + + Chang Naga + + + + + Polci + + + + + Rapting + + + + + Bhunjia + + + + + South Picene + + + + + Anglo-Norman + + + + + Niellim + + + + + Suundi + + + + + Bulgarian Sign Language + + + + + Tupi + + + + + Tsikimba + + + + + Akoose + + + + + Timugon Murut + + + + + Nisi + + + + + Nyeng + + + + + Western Bolivian Guarani + + + + + Western Kenyah + + + + + Selangor Sign Language + + + + + Sorkhei + + + + + Northern Kurdish + + + + + Nggem + + + + + Andoa + + + + + Khazar + + + + + Ak + + + + + Southern Uzbek + + + + + Delaware + + + + + West Central Quiche + + + + + Usui + + + + + Stod Bhoti + + + + + Ixtenco Otomi + + + + + Malfaxal + + + + + Beembe + + + + + Unami + + + + + Volapuk + + + + + Tiale + + + + + O'du + + + + + Bugun + + + + + Duke + + + + + Twi + + + + + Nubaca + + + + + Mbandja + + + + + Kurrama + + + + + Abun + + + + + Breton + + + + + Southern Mam + + + + + Ambo + + + + + Woi + + + + + Sanuma + + + + + Mayaguduna + + + + + Zoroastrian Dari + + + + + Simeku + + + + + Edera Awyu + + + + + Ata Manobo + + + + + Jennu Kurumba + + + + + Old Welsh + + + + + Bolgarian + + + + + Bete-Bendi + + + + + Laiyolo + + + + + Bonkiman + + + + + Eastern Krahn + + + + + Haiphong Sign Language + + + + + Galoli + + + + + Kuku-Uwanh + + + + + Embu + + + + + Sangtam Naga + + + + + Urim + + + + + Aragonese + + + + + Inuktitut + + + + + Loma (Cote d'Ivoire) + + + + + Runga + + + + + Puma + + + + + Ukpe-Bayobiri + + + + + Wanggom + + + + + Wiru + + + + + Ullatan + + + + + Kulung (Nigeria) + + + + + Chiripa + + + + + Komi + + + + + Karachay-Balkar + + + + + Basap + + + + + Pampanga + + + + + Lower Tanudan Kalinga + + + + + Tabo + + + + + Mazanderani + + + + + Ramopa + + + + + Mbule + + + + + Tututepec Mixtec + + + + + Au + + + + + Thurawal + + + + + Sasak + + + + + Giangan + + + + + Luba-Lulua + + + + + Gidar + + + + + Koluwawa + + + + + Bondoukou Kulango + + + + + Mullu Kurumba + + + + + Ghadames + + + + + Bunak + + + + + Algerian Sign Language + + + + + Korean Sign Language + + + + + Xwela Gbe + + + + + Pawnee + + + + + Ndonga + + + + + Lalia + + + + + Upper Saxon + + + + + Pimbwe + + + + + Duau + + + + + Mawa (Chad) + + + + + Suki + + + + + Batanga + + + + + Fayu + + + + + Chachapoyas Quechua + + + + + Halang Doan + + + + + Gbaya-Bozoum + + + + + Garifuna + + + + + Waru + + + + + Lehar + + + + + Vehes + + + + + Kaikadi + + + + + Soo + + + + + Northwestern Dinka + + + + + Asas + + + + + Western Ojibwa + + + + + Yambes + + + + + Yaka (Central African Republic) + + + + + Hote + + + + + Punan Tubu + + + + + Usarufa + + + + + West-Central Limba + + + + + Malakote + + + + + Central Bai + + + + + Ashaninka + + + + + Wabo + + + + + Dogoso + + + + + Sardinian + + + + + Antigua and Barbuda Creole English + + + + + Ternateno + + + + + Taman (Myanmar) + + + + + Emumu + + + + + Buhid + + + + + Sidamo + + + + + Kistane + + + + + Libinza + + + + + Ci Gbe + + + + + North Muyu + + + + + Maleu-Kilenge + + + + + Nakai + + + + + Sake + + + + + Lotud + + + + + Ossetian + + + + + Laha (Viet Nam) + + + + + Levuka + + + + + Keapara + + + + + Bengali + + + + + Boko (Benin) + + + + + Northern Subanen + + + + + Yasa + + + + + Classical Armenian + + + + + Inlaod Itneg + + + + + Mt. Iriga Agta + + + + + Wichi Lhamtes Vejoz + + + + + Wa + + + + + Traveller Norwegian + + + + + Wares + + + + + Bolongan + + + + + Margu + + + + + Wongo + + + + + Idakho-Isukha-Tiriki + + + + + Ngeq + + + + + Tupuri + + + + + Chinese Pidgin English + + + + + Kwegu + + + + + Koitabu + + + + + Kansa + + + + + Kinalakna + + + + + We Southern + + + + + Belanda Viri + + + + + Faire Atta + + + + + Cahuilla + + + + + Kunggara + + + + + Kahe + + + + + Lusitanian + + + + + Morori + + + + + Wagaya + + + + + Korandje + + + + + Chitimacha + + + + + Lega-Mwenga + + + + + Elpaputih + + + + + Manda (Australia) + + + + + Mundani + + + + + Takia + + + + + Jola-Kasa + + + + + Kanasi + + + + + Gudanji + + + + + Oki-No-Erabu + + + + + Wichi Lhamtes Guisnay + + + + + Isirawa + + + + + North Babar + + + + + Vlaams + + + + + Datooga + + + + + Koromfe + + + + + Bamwe + + + + + Mun Chin + + + + + Apma + + + + + Maltese Sign Language + + + + + War + + + + + Assiniboine + + + + + Nataoran Amis + + + + + Day + + + + + Shua + + + + + Lemnian + + + + + Embera-Baudo + + + + + Taupota + + + + + Ter Sami + + + + + Ewe + + + + + No linguistic content + + + + + Chilisso + + + + + Swedish + + + + + Gumatj + + + + + Wik-Me'anha + + + + + Nimboran + + + + + San Martin Itunyoso Triqui + + + + + Bomboli + + + + + Ratahan + + + + + Sinagen + + + + + Pal + + + + + Hdi + + + + + Lusengo + + + + + San Francisco Del Mar Huave + + + + + Jiru + + + + + Eastern Cham + + + + + Maya Samo + + + + + Mbuko + + + + + Maleng + + + + + Miship + + + + + Kota (India) + + + + + Nemi + + + + + Dogose + + + + + Abua + + + + + Iwal + + + + + Sicilian + + + + + Tawr Chin + + + + + Pemono + + + + + Mawa (Nigeria) + + + + + Ulukwumi + + + + + Kolbila + + + + + Western Mari + + + + + Bikol + + + + + Abinomn + + + + + Seimat + + + + + Kunda + + + + + Tera + + + + + Mongolian Sign Language + + + + + Nambya + + + + + Northern Bobo Madare + + + + + Sumerian + + + + + Dehwari + + + + + Chepang + + + + + Tomyang + + + + + Maiwa (Papua New Guinea) + + + + + Tubar + + + + + Gahri + + + + + Nyaneka + + + + + Mamboru + + + + + Malecite-Passamaquoddy + + + + + Nafaanra + + + + + West Makian + + + + + Dimir + + + + + Keiga + + + + + Tikar + + + + + Lower Chehalis + + + + + Inari Sami + + + + + Kupsabiny + + + + + Tetela + + + + + Mussau-Emira + + + + + Dzalakha + + + + + Pijin + + + + + Bwaidoka + + + + + Yau (Sandaun Province) + + + + + Baruga + + + + + Lanas Lobu + + + + + Brooke's Point Palawano + + + + + Cocopa + + + + + Kongo + + + + + Banao Itneg + + + + + Gurmana + + + + + Tilquiapan Zapotec + + + + + Pahi + + + + + Cerma + + + + + Ribun + + + + + Tenharim + + + + + Afro-Seminole Creole + + + + + Syriac + + + + + Borna + + + + + Andra-Hus + + + + + Wintu + + + + + Karok + + + + + Toro + + + + + Asue Awyu + + + + + Yabaana + + + + + Ankave + + + + + Arifama-Miniafia + + + + + Lolo + + + + + Iaai + + + + + Ik + + + + + Itik + + + + + Uokha + + + + + Maring Naga + + + + + Coastal Saluan + + + + + Tsakonian + + + + + Ngalkbun + + + + + Orma + + + + + Kembayan + + + + + Fang (Cameroon) + + + + + Mesmes + + + + + Mafea + + + + + Kayan Mahakam + + + + + Labir + + + + + North Asmat + + + + + Jina + + + + + Lame + + + + + Cavinena + + + + + Western Meohang + + + + + Basque + + + + + Harsusi + + + + + Kedang + + + + + Koyra Chiini Songhay + + + + + Akan + + + + + Wushi + + + + + Hadrami Arabic + + + + + Alege + + + + + Bateri + + + + + T'en + + + + + Upper Ta'oih + + + + + Michoacan Mazahua + + + + + Muniche + + + + + Jaunsari + + + + + Senthang Chin + + + + + Maranao + + + + + Nawuri + + + + + Bukusu + + + + + Ziriya + + + + + Mailu + + + + + Teso + + + + + Amaimon + + + + + Bhojpuri + + + + + Saleman + + + + + Telefol + + + + + Hpon + + + + + Langi + + + + + Northern Puebla Nahuatl + + + + + Palembang + + + + + Southern Puebla Mixtec + + + + + Magdalena Penasco Mixtec + + + + + Malinaltepec Tlapanec + + + + + Sabaot + + + + + Mutu + + + + + Waboda + + + + + Manggarai + + + + + Gilima + + + + + Southern Ngbandi + + + + + Lwalu + + + + + Logudorese Sardinian + + + + + Negerhollands + + + + + Mundari + + + + + Haryanvi + + + + + Nedebang + + + + + Masadiit Itneg + + + + + Nend + + + + + Walla Walla + + + + + Gazi + + + + + Menominee + + + + + Gobasi + + + + + Nehan + + + + + Dubli + + + + + Temascaltepec Nahuatl + + + + + Lachiguiri Zapotec + + + + + Siar-Lak + + + + + Dobu + + + + + Monimbo + + + + + Ramoaaina + + + + + Rahambuu + + + + + Efai + + + + + Kanakanabu + + + + + Kaidipang + + + + + Mundat + + + + + Murrinh-Patha + + + + + Nek + + + + + Tonsea + + + + + Northern Kankanay + + + + + White Lachi + + + + + Matagalpa + + + + + Norn + + + + + Biseni + + + + + Bu + + + + + Kele (Papua New Guinea) + + + + + El Alto Zapotec + + + + + Mak (China) + + + + + Kariya + + + + + Kwangali + + + + + Ngumba + + + + + Bwanabwana + + + + + Mongo + + + + + Ts'un-Lao + + + + + Kemi Sami + + + + + Ndom + + + + + Southern Altai + + + + + Pichis Asheninka + + + + + Adynyamathanha + + + + + Manipuri + + + + + Cashibo-Cacataibo + + + + + Nyangga + + + + + Dhanwar (India) + + + + + Manado Malay + + + + + Kela (Papua New Guinea) + + + + + Blablanga + + + + + Banaro + + + + + Baram Kayan + + + + + Mba + + + + + Mendankwe-Nkwen + + + + + Ma'di + + + + + Cheke Holo + + + + + Wambaya + + + + + Purari + + + + + Kolsch + + + + + Longto + + + + + Itu Mbon Uzo + + + + + Mambwe-Lungu + + + + + Scythian + + + + + Mamuju + + + + + Nyamusa-Molo + + + + + Ipalapa Amuzgo + + + + + Sama + + + + + Laa Laa Bwamu + + + + + Dambi + + + + + Kaurna + + + + + Kacipo-Balesi + + + + + Eton (Vanuatu) + + + + + Tswapong + + + + + Busuu + + + + + Hungana + + + + + Dalmatian + + + + + Forest Maninka + + + + + Anuki + + + + + Karahawyana + + + + + Mina (Cameroon) + + + + + Kimre + + + + + Itundujia Mixtec + + + + + Lakkia + + + + + Shi + + + + + She + + + + + Waamwang + + + + + Lamboya + + + + + Kuot + + + + + Kula + + + + + Palaic + + + + + Arawete + + + + + Turkish + + + + + Kalamse + + + + + Old French (842-ca. 1400) + + + + + Cunen Quiche + + + + + Bambam + + + + + Raetic + + + + + Wayu + + + + + Wampanoag + + + + + Cacua + + + + + Bangandu + + + + + Karaim + + + + + Usila Chinantec + + + + + Kubu + + + + + So (Cameroon) + + + + + Chimakum + + + + + Momare + + + + + Nukna + + + + + Con + + + + + Manangba + + + + + Yarsun + + + + + Mesme + + + + + Palpa + + + + + Ditammari + + + + + Tiwi + + + + + Maring + + + + + Lukpa + + + + + Apasco-Apoala Mixtec + + + + + Doso + + + + + Baka (Cameroon) + + + + + Manikion + + + + + Rawo + + + + + Mayogo + + + + + Mbole + + + + + Kplang + + + + + Puyo-Paekche + + + + + Obokuitai + + + + + Austrian Sign Language + + + + + Quioquitani-Quieri Zapotec + + + + + Kairiru + + + + + Tiema Ciewe Bozo + + + + + Umbu-Ungu + + + + + Heiltsuk + + + + + Kahua + + + + + Domung + + + + + Caddo + + + + + Cinda-Regi-Tiyal + + + + + Kwanga + + + + + Pakanha + + + + + Talinga-Bwisi + + + + + Dimasa + + + + + Afade + + + + + Mamvu + + + + + Moi (Indonesia) + + + + + Gbaya (Sudan) + + + + + Tohono O'odham + + + + + Evenki + + + + + Tlazoyaltepec Mixtec + + + + + Aghwan + + + + + Bolinao + + + + + Araki + + + + + Yos + + + + + Nkangala + + + + + Boghom + + + + + Kuria + + + + + Tonga (Thailand) + + + + + Guana (Paraguay) + + + + + Tlingit + + + + + Koonzime + + + + + Marind + + + + + Dan + + + + + Chaungtha + + + + + Doromu + + + + + Sarawak Bisaya + + + + + Xipinawa + + + + + Darling + + + + + Kaska + + + + + Awngi + + + + + Tubarao + + + + + Aleut + + + + + Seko Padang + + + + + Kadar + + + + + Weri + + + + + East Futuna + + + + + Bribri + + + + + Tsum + + + + + Minanibai + + + + + Rajbanshi + + + + + Katukina + + + + + Segeju + + + + + Mapia + + + + + Bughotu + + + + + Aputai + + + + + Central Mam + + + + + Tucano + + + + + Batak Alas-Kluet + + + + + Yandruwandha + + + + + Adioukrou + + + + + Hindi + + + + + Pinigura + + + + + Kusaghe + + + + + Western Kayah + + + + + Central Ojibwa + + + + + Lopi + + + + + Chichicapan Zapotec + + + + + Slovenian + + + + + Guriaso + + + + + Macedonian + + + + + Pambia + + + + + Rampi + + + + + Sinyar + + + + + Bwela + + + + + Kapriman + + + + + Chachi + + + + + Mag-Indi Ayta + + + + + Stoney + + + + + Agatu + + + + + Ukpet-Ehom + + + + + Aquitanian + + + + + Hungarian Sign Language + + + + + Khowar + + + + + Coquille + + + + + Ngkalmpw Kanum + + + + + Mabaale + + + + + Tai + + + + + Galibi Carib + + + + + Jungle Inga + + + + + Boro + + + + + Duwet + + + + + Dieri + + + + + Ganda + + + + + San Martin Quechua + + + + + Pini + + + + + Yele + + + + + Khinalugh + + + + + Duri + + + + + Mandahuaca + + + + + Tepinapa Chinantec + + + + + Opuuo + + + + + Biafada + + + + + Ai-Cham + + + + + Limos Kalinga + + + + + Afrikaans + + + + + Southwestern Tlaxiaco Mixtec + + + + + Makhuwa-Shirima + + + + + Waima'a + + + + + Ngurimi + + + + + Ambulas + + + + + Port Vato + + + + + Nambo + + + + + Daw + + + + + Myene + + + + + Sakalava Malagasy + + + + + Nadeb + + + + + Upper Umpqua + + + + + Berau Malay + + + + + Ngundu + + + + + Cacgia Roglai + + + + + Central Kurdish + + + + + Ibuoro + + + + + Ngbinda + + + + + Judeo-Arabic + + + + + Ede Cabe + + + + + Dohoi + + + + + Saraveca + + + + + Kutto + + + + + Kioko + + + + + Santa Ines Yatzechi Zapotec + + + + + Ta'izzi-Adeni Arabic + + + + + Nayini + + + + + Sokoro + + + + + Hozo + + + + + Cwi Bwamu + + + + + Ukit + + + + + Koireng + + + + + Oorlams + + + + + Ava-Canoeiro + + + + + Numbami + + + + + Ghayavi + + + + + Ayiwo + + + + + Okobo + + + + + Balangingi + + + + + Yela + + + + + Riang (Myanmar) + + + + + Tregami + + + + + Imbongu + + + + + Mongol + + + + + Wamas + + + + + Takpa + + + + + Israeli Sign Language + + + + + Tegali + + + + + Miya + + + + + Biak + + + + + Peripheral Mongolian + + + + + Kenswei Nsei + + + + + Pardhan + + + + + Papora + + + + + Mesqan + + + + + Miyako + + + + + Sissano + + + + + Monom + + + + + Panjabi + + + + + Gana + + + + + El Hugeirat + + + + + Macaguan + + + + + Binahari + + + + + Iresim + + + + + Dirasha + + + + + Puoc + + + + + Yuanjiang-Mojiang Yi + + + + + Kakwa + + + + + Susquehannock + + + + + Chiru + + + + + Laeko-Libuat + + + + + Bantoanon + + + + + Mandarin Chinese + + + + + Anuta + + + + + Hieroglyphic Luwian + + + + + Congo Swahili + + + + + Mlap + + + + + I-Wak + + + + + Yabong + + + + + Costa Rican Sign Language + + + + + Pero + + + + + Taliabu + + + + + Bokyi + + + + + Ngiti + + + + + Tempasuk Dusun + + + + + Baniwa + + + + + Timne + + + + + Ju/'hoan + + + + + Djangun + + + + + Luguru + + + + + Southwest Palawano + + + + + Bieria + + + + + Bakhtiari + + + + + Zinacantan Tzotzil + + + + + Bullom So + + + + + Koro (Papua New Guinea) + + + + + Uruangnirin + + + + + Vandalic + + + + + Northern Conchucos Ancash Quechua + + + + + Nama (Namibia) + + + + + Sa'a + + + + + Bashkir + + + + + Loja Highland Quichua + + + + + South Central Cakchiquel + + + + + Nde-Nsele-Nta + + + + + Tamanaku + + + + + Ingush + + + + + Dhalandji + + + + + Paiwan + + + + + Konyanka Maninka + + + + + Kimbundu + + + + + Konda + + + + + Islander Creole English + + + + + Khumi Awa Chin + + + + + Nisga'a + + + + + Biao + + + + + Akoye + + + + + Birao + + + + + Gata' + + + + + Sihan + + + + + Bongili + + + + + Kirikiri + + + + + Bebele + + + + + Ainu (China) + + + + + Lopit + + + + + Cabiyari + + + + + Djinang + + + + + Pfaelzisch + + + + + Sera + + + + + Bafut + + + + + Yaminahua + + + + + Khandesi + + + + + Idere + + + + + Northern Amami-Oshima + + + + + Aiku + + + + + Seta + + + + + Acheron + + + + + Jarai + + + + + Iranun + + + + + Achterhoeks + + + + + Anaang + + + + + Kire + + + + + Apatani + + + + + Maridan + + + + + Wapishana + + + + + Sok + + + + + Kuturmi + + + + + Pwo Eastern Karen + + + + + Maay + + + + + Galician + + + + + Ari + + + + + Pali + + + + + Otank + + + + + Rasawa + + + + + Moere + + + + + Penesak + + + + + Vinza + + + + + Judeo-Berber + + + + + Vishavan + + + + + Chenchu + + + + + Tampuan + + + + + Bataan Ayta + + + + + Doga + + + + + Noric + + + + + Barakai + + + + + Barbacoas + + + + + Maco + + + + + Toraja-Sa'dan + + + + + Dawera-Daweloor + + + + + Jola-Fonyi + + + + + Southern Luri + + + + + Arop-Lukep + + + + + Kimki + + + + + Worora + + + + + Lezghian + + + + + Eastern Penan + + + + + Winye + + + + + Medebur + + + + + Tombonuwo + + + + + Ghanongga + + + + + Lonwolwol + + + + + Goemai + + + + + Izon + + + + + Yeni + + + + + Dirim + + + + + Teutila Cuicatec + + + + + Waioli + + + + + Ap Ma + + + + + Moikodi + + + + + Ikobi-Mena + + + + + Gaa + + + + + Kikai + + + + + Wahau Kayan + + + + + Isnag + + + + + Masmaje + + + + + Kickapoo + + + + + Tabaru + + + + + Mandobo Atas + + + + + Aura + + + + + Corsican + + + + + Hertevin + + + + + Doyayo + + + + + Hamtai + + + + + Michif + + + + + Hadrami + + + + + Leti (Cameroon) + + + + + Bijori + + + + + Sidetic + + + + + Nangikurrunggurr + + + + + So + + + + + Gbesi Gbe + + + + + Andi + + + + + Loncong + + + + + Macanese + + + + + Baki + + + + + Toram + + + + + Tumzabt + + + + + Kamwe + + + + + Mullukmulluk + + + + + Logba + + + + + Carapana + + + + + Kepkiriwat + + + + + Zaparo + + + + + Mator + + + + + Matya Samo + + + + + Hulaula + + + + + Kesawai + + + + + Saponi + + + + + Punan Aput + + + + + Manigri-Kambole Ede Nago + + + + + Venda + + + + + Korowai + + + + + Patani + + + + + Fas + + + + + Northern Dagara + + + + + Mom Jango + + + + + Jarawa (Nigeria) + + + + + Iamalele + + + + + Ayoreo + + + + + Kagayanen + + + + + Nyong + + + + + Yue Chinese + + + + + Baga Kaloum + + + + + Ninia Yali + + + + + Oku + + + + + Serbian + + + + + Kuk + + + + + Ayacucho Quechua + + + + + Numee + + + + + Tanjijili + + + + + Eastern Keres + + + + + Yukuben + + + + + Limi Yi + + + + + Luba-Katanga + + + + + Danaru + + + + + Kyenga + + + + + Thayore + + + + + Southern Pokomam + + + + + Ido + + + + + Wuzlam + + + + + Japreria + + + + + Morawa + + + + + Fyam + + + + + Seti + + + + + Ruli + + + + + Coastal Kadazan + + + + + Tagakaulu Kalagan + + + + + Gafat + + + + + Ibilo + + + + + Sumbawa + + + + + Tidore + + + + + Jimi (Cameroon) + + + + + Manusela + + + + + Sawila + + + + + Southern Ma'di + + + + + Mekwei + + + + + Dulbu + + + + + Hwana + + + + + Pangseng + + + + + Parauk + + + + + Serui-Laut + + + + + Kambaira + + + + + Mboko + + + + + Ndali + + + + + Koi + + + + + Kaonde + + + + + Dar Fur Daju + + + + + Piru + + + + + Gua + + + + + Dera (Indonesia) + + + + + Are + + + + + Wauyai + + + + + Koya + + + + + Bilin + + + + + Media Lengua + + + + + Tawala + + + + + Armenian Sign Language + + + + + Sasaru + + + + + Lower Tanana + + + + + Teen + + + + + Tabla + + + + + Yaqay + + + + + Ngas + + + + + Rawa + + + + + Eastern Kanjobal + + + + + South Wemale + + + + + Shambala + + + + + Lauje + + + + + Humburi Senni Songhay + + + + + North Awyu + + + + + Mili Yi + + + + + Tiagbamrin Aizi + + + + + Swabian + + + + + Vidunda + + + + + Izere + + + + + Cara + + + + + Tiefo + + + + + Jambi Malay + + + + + Biri + + + + + Moba + + + + + Aka-Jeru + + + + + Lingua Franca + + + + + Turkish Sign Language + + + + + Tacahua Mixtec + + + + + Tutoh Kenyah + + + + + Hijuk + + + + + Washo + + + + + Aukan + + + + + Dzodinka + + + + + Madurese + + + + + Opao + + + + + Loko + + + + + Sudovian + + + + + Tupinamba + + + + + U + + + + + The + + + + + Mon + + + + + Murik Kayan + + + + + Ndau + + + + + Interglossa + + + + + Somrai + + + + + Lubu + + + + + Chakma + + + + + Ekpeye + + + + + Kanuri + + + + + Nachering + + + + + Phangduwali + + + + + Marenje + + + + + Eastern Xiangxi Hmong + + + + + Zizilivakan + + + + + Kanjari + + + + + Majhwar + + + + + Tuamotuan + + + + + Sialum + + + + + Kajali + + + + + Gimi (Eastern Highlands) + + + + + Obolo + + + + + Wannu + + + + + Bashkardi + + + + + Muratayak + + + + + Barapasi + + + + + Francisco Leon Zoque + + + + + Besme + + + + + Larike-Wakasihu + + + + + Igana + + + + + Rajong + + + + + Ayi (Papua New Guinea) + + + + + Dendi (Benin) + + + + + Oya'oya + + + + + Ambakich + + + + + Manem + + + + + Bagusa + + + + + Byangsi + + + + + Sheni + + + + + Icelandic + + + + + Parya + + + + + Duguza + + + + + Sierra Leone Sign Language + + + + + Piamatsina + + + + + Akawaio + + + + + Halh Mongolian + + + + + Wara + + + + + Ngungwel + + + + + Podena + + + + + Anem + + + + + Razajerdi + + + + + Lokoya + + + + + Beaver + + + + + Northern Grebo + + + + + Satere-Mawe + + + + + Wasco-Wishram + + + + + Sio + + + + + Duwai + + + + + Eastern Parbate + + + + + Sangil + + + + + Azerbaijani + + + + + Woccon + + + + + Songoora + + + + + Sudest + + + + + Bafanji + + + + + Tagabawa + + + + + Songo + + + + + Puyo + + + + + Drents + + + + + Cung + + + + + Munit + + + + + A-Pucikwar + + + + + Western Xwla Gbe + + + + + Cameroon Pidgin + + + + + Warduji + + + + + Ticuna + + + + + Brem + + + + + Damal + + + + + Tayo + + + + + Barombi + + + + + Maklew + + + + + Unua + + + + + Chadian Arabic + + + + + Cimbrian + + + + + Eastern Apurimac Quechua + + + + + Ingrian + + + + + Harari + + + + + Lemoro + + + + + Yameo + + + + + Totoli + + + + + Bian Marind + + + + + Bushoong + + + + + Dayi + + + + + Dera (Nigeria) + + + + + Samarokena + + + + + Kupa + + + + + Harijan Kinnauri + + + + + Kumarbhag Paharia + + + + + Majang + + + + + Mende (Papua New Guinea) + + + + + Mahali + + + + + Bassa-Kontagora + + + + + Sabanes + + + + + Yokuts + + + + + Wogamusin + + + + + Marovo + + + + + Lonzo + + + + + Milyan + + + + + Lusi + + + + + Bhoti Kinnauri + + + + + Western Kanjobal + + + + + Cowlitz + + + + + Konkomba + + + + + Pamplona Atta + + + + + Kohistani Shina + + + + + Shekkacho + + + + + Sanaani Arabic + + + + + Chuka + + + + + Mirgan + + + + + Teshenawa + + + + + Malol + + + + + Unde Kaili + + + + + Veddah + + + + + Ranau + + + + + Breri + + + + + Makassar Malay + + + + + East Yugur + + + + + Lunda + + + + + Bulo Stieng + + + + + Namia + + + + + Moo + + + + + Lakota + + + + + Lamkang + + + + + Arta + + + + + Vanimo + + + + + Ancient North Arabian + + + + + Sori-Harengan + + + + + Chiga + + + + + Providencia Sign Language + + + + + Korku + + + + + Jowulu + + + + + Walloon + + + + + Hmong Daw + + + + + Paez + + + + + Menya + + + + + Urdu + + + + + Ngabere + + + + + Tsakhur + + + + + Ibatan + + + + + Moloko + + + + + Laurentian + + + + + Basay + + + + + Remontado Agta + + + + + Puari + + + + + Wane + + + + + Upper Guinea Crioulo + + + + + Kuuku-Ya'u + + + + + Eastern Qiandong Hmong + + + + + Juang + + + + + Southern Gondi + + + + + Ofaye + + + + + Alur + + + + + Tahltan + + + + + Bellari + + + + + Djongkang + + + + + Lilau + + + + + Natanzi + + + + + Selungai Murut + + + + + Gurdjar + + + + + Basa (Nigeria) + + + + + Jwira-Pepesa + + + + + Taworta + + + + + Gowlan + + + + + Tumari Kanuri + + + + + Shahmirzadi + + + + + Roon + + + + + Rana Tharu + + + + + Hula + + + + + Bintauna + + + + + Luhu + + + + + Central Quiche + + + + + Mada (Nigeria) + + + + + Donno So Dogon + + + + + Bouyei + + + + + Bomitaba + + + + + Shoo-Minda-Nye + + + + + Negidal + + + + + Balo + + + + + Agwagwune + + + + + Arvanitika Albanian + + + + + Uruava + + + + + Piu + + + + + Kwa' + + + + + Amerax + + + + + Arabela + + + + + Awyi + + + + + Ngoni + + + + + Inoke-Yate + + + + + Andoque + + + + + Central Pokomam + + + + + Hunde + + + + + Lega-Shabunda + + + + + Lika + + + + + Malayic Dayak + + + + + Ija-Zuba + + + + + Montol + + + + + Highland Puebla Nahuatl + + + + + Zazao + + + + + Muthuvan + + + + + Pnar + + + + + Mehinaku + + + + + Matbat + + + + + Amdang + + + + + Yareni Zapotec + + + + + Gibanawa + + + + + Tu + + + + + Shiki + + + + + Samburu + + + + + Ngarinyin + + + + + Mobilian + + + + + Mabaan + + + + + Tornedalen Finnish + + + + + Kompane + + + + + Poluo Yi + + + + + Andaqui + + + + + Mimi + + + + + Tangkhul Naga + + + + + Kenuzi-Dongola + + + + + Itene + + + + + Kryts + + + + + Gozarkhani + + + + + Maridjabin + + + + + Gugu Warra + + + + + Kasanga + + + + + Kolum So Dogon + + + + + As + + + + + Hamba + + + + + Pass Valley Yali + + + + + Sirmauri + + + + + Mengaka + + + + + Dyaabugay + + + + + Calo + + + + + Lubila + + + + + Pauserna + + + + + Nyoro + + + + + Caramanta + + + + + Lango (Sudan) + + + + + Mbugwe + + + + + Karankawa + + + + + Batad Ifugao + + + + + Bella Coola + + + + + Ekit + + + + + Rerau + + + + + Southern Guiyang Hmong + + + + + Nimadi + + + + + Oirata + + + + + Balkan Romani + + + + + Judeo-Persian + + + + + Fulah + + + + + Zeeuws + + + + + Rerep + + + + + Pontic + + + + + San Pedro Quiatoni Zapotec + + + + + Yansi + + + + + Haruku + + + + + Kuvi + + + + + Yagomi + + + + + Wolani + + + + + Western Maninkakan + + + + + Ghari + + + + + Pu-Xian Chinese + + + + + Jukun Takum + + + + + Yawa + + + + + Birwa + + + + + Bote-Majhi + + + + + Lillooet + + + + + Phunoi + + + + + Catalan + + + + + Weyto + + + + + Semelai + + + + + Ile Ape + + + + + Bay Miwok + + + + + Telugu + + + + + Western Panjabi + + + + + Zhaba + + + + + Upper Kuskokwim + + + + + Siraya + + + + + Aari + + + + + Ottoman Turkish (1500-1928) + + + + + Masimasi + + + + + Orejon + + + + + Ewage-Notu + + + + + Ngete + + + + + Ozolotepec Zapotec + + + + + Kok Borok + + + + + Lemio + + + + + Mangala + + + + + Bimoba + + + + + Cuvok + + + + + Pei + + + + + Galatian + + + + + Ngaanyatjarra + + + + + South Central Banda + + + + + Nabak + + + + + Mo'da + + + + + Kaba Deme + + + + + Tepo Krumen + + + + + Lawangan + + + + + Ibani + + + + + Mulaha + + + + + Pardhi + + + + + Sochiapan Chinantec + + + + + Bari + + + + + Santiago Xanica Zapotec + + + + + Hanoi Sign Language + + + + + Old Burmese + + + + + Musom + + + + + Maxakali + + + + + Bikaru + + + + + Gimme + + + + + Gavar + + + + + Majhi + + + + + Bimin + + + + + Teanu + + + + + Zulu + + + + + Kaba Na + + + + + Rusyn + + + + + Kyak + + + + + Tulehu + + + + + Bangeri Me Dogon + + + + + Lelak + + + + + Tijaltepec Mixtec + + + + + East Nyala + + + + + Nzanyi + + + + + Karkar-Yuri + + + + + Talaud + + + + + Slave (Athapascan) + + + + + Gulay + + + + + Mashi (Zambia) + + + + + North Tanna + + + + + Wasu + + + + + Aneme Wake + + + + + Komering + + + + + Mbya Guarani + + + + + Tilung + + + + + Aruek + + + + + Gadjerawang + + + + + Eleme + + + + + Korupun-Sela + + + + + Northern Alta + + + + + Gen + + + + + Ontong Java + + + + + Anu + + + + + Younuo Bunu + + + + + Bookan + + + + + Quapaw + + + + + Greek Sign Language + + + + + Apinaye + + + + + Dyula + + + + + Yiddish Sign Language + + + + + Kalaallisut + + + + + Sao Paulo Kaingang + + + + + Thulung + + + + + Bamenyam + + + + + Carpathian Romani + + + + + Caluyanun + + + + + Tokharian A + + + + + Ngandyera + + + + + Tuwali Ifugao + + + + + Nottoway-Meherrin + + + + + Tsimihety Malagasy + + + + + Coatlan Mixe + + + + + Mbu' + + + + + Chantyal + + + + + Piratapuyo + + + + + Dongo + + + + + Anca + + + + + Bolyu + + + + + Shekhawati + + + + + Buraka + + + + + Natagaimas + + + + + Baetora + + + + + Dampelas + + + + + Kango (Tshopo District) + + + + + Acatepec Tlapanec + + + + + Northern Dong + + + + + Foi + + + + + Tausug + + + + + Wayampi + + + + + Twendi + + + + + Chopi + + + + + Siriano + + + + + Alabama + + + + + Noy + + + + + Pana (Central African Republic) + + + + + Zanaki + + + + + Gurinji + + + + + Jenaama Bozo + + + + + Matipuhy + + + + + Jawe + + + + + East Ambae + + + + + Askopan + + + + + Bhadrawahi + + + + + Aimele + + + + + Halkomelem + + + + + Pare + + + + + Lambayeque Quechua + + + + + Chhulung + + + + + Ozumacin Chinantec + + + + + Suruaha + + + + + Lumbee + + + + + Loun + + + + + Seki + + + + + Kilivila + + + + + Berinomo + + + + + Machinga + + + + + Axi Yi + + + + + Mandaic + + + + + Santali + + + + + Mundabli + + + + + Akaselem + + + + + Shuadit + + + + + Hazaragi + + + + + Pedi + + + + + Morokodo + + + + + Mukha-Dora + + + + + Goundo + + + + + Huamalies-Dos de Mayo Huanuco Quechua + + + + + Potawatomi + + + + + Sissala + + + + + Warji + + + + + Itelmen + + + + + Kayapo + + + + + Epie + + + + + Kazukuru + + + + + Kochila Tharu + + + + + Waorani + + + + + Tewa (USA) + + + + + Raute + + + + + Aproumu Aizi + + + + + Tamnim Citak + + + + + Pileni + + + + + Kaibobo + + + + + Indus Kohistani + + + + + Kraol + + + + + Amatlan Zapotec + + + + + Guadeloupean Creole French + + + + + Tai Nua + + + + + Yakoma + + + + + Wuding-Luquan Yi + + + + + Eastern Oromo + + + + + Kwamtim One + + + + + Lachixio Zapotec + + + + + Duli + + + + + Canela + + + + + Osing + + + + + Vilela + + + + + Highland Konjo + + + + + Baruya + + + + + Kimaragang + + + + + Moronene + + + + + Beba + + + + + Sam + + + + + Waray (Australia) + + + + + Romkun + + + + + Bomboma + + + + + Jumjum + + + + + Idate + + + + + Gamit + + + + + Northern Catanduanes Bicolano + + + + + Ahom + + + + + Tring + + + + + Swiss German + + + + + Selaru + + + + + Mbato + + + + + Batek + + + + + Balinese Malay + + + + + Georgian + + + + + Jimi (Nigeria) + + + + + Saniyo-Hiyewe + + + + + Lashi + + + + + Fagani + + + + + Ayutla Mixtec + + + + + Degexit'an + + + + + //Xegwi + + + + + Liki + + + + + Jeh + + + + + Anii + + + + + Agavotaguerra + + + + + Sakechep + + + + + Nyali + + + + + Yaaku + + + + + Athpariya + + + + + Malimba + + + + + Loreto-Ucayali Spanish + + + + + Andarum + + + + + Sabah Malay + + + + + Bade + + + + + Krikati-Timbira + + + + + Elymian + + + + + Lowland Tarahumara + + + + + Valley Maidu + + + + + Igede + + + + + Ketum + + + + + Mmaala + + + + + Mandar + + + + + Mohave + + + + + Barikanchi + + + + + Tawallammat Tamajaq + + + + + Puragi + + + + + San Juan Teita Mixtec + + + + + Kalkoti + + + + + Kara (Tanzania) + + + + + Chaldean Neo-Aramaic + + + + + Narak + + + + + Nungali + + + + + Tavringer Romani + + + + + Wolio + + + + + Kariri-Xoco + + + + + Ozumatlan Totonac + + + + + Fyer + + + + + Sundanese + + + + + Kamarian + + + + + Mbara (Chad) + + + + + Makhuwa-Meetto + + + + + Ntomba + + + + + Tajiki Arabic + + + + + Takua + + + + + Daai Chin + + + + + Yangulam + + + + + Nancere + + + + + Daho-Doo + + + + + Yerakai + + + + + Batak Toba + + + + + Cherepon + + + + + Muskum + + + + + Alutor + + + + + Opata + + + + + Mycenaean Greek + + + + + Northern East Cree + + + + + Dai + + + + + Lomwe + + + + + Sherbro + + + + + Chaudangsi + + + + + Moru + + + + + Ngandi + + + + + Caac + + + + + Northern Pashto + + + + + Dizi + + + + + Puimei Naga + + + + + Koch + + + + + Halia + + + + + Panim + + + + + Gurgula + + + + + Huehuetla Tepehua + + + + + Tumulung Sisaala + + + + + Dom + + + + + Kandawo + + + + + Kaure + + + + + Langam + + + + + Zan Gula + + + + + Taulil + + + + + Tachawit + + + + + Tringgus + + + + + Laven + + + + + Beothuk + + + + + Kao + + + + + Lefa + + + + + Rakahanga-Manihiki + + + + + Aasax + + + + + Arapaho + + + + + Guiberoua Bete + + + + + Gude + + + + + Southern Roglai + + + + + Balaesang + + + + + Malaccan Creole Portuguese + + + + + Weh + + + + + Cibak + + + + + Zyphe + + + + + Pamlico + + + + + Gokana + + + + + Andio + + + + + Yimas + + + + + Central Tarahumara + + + + + Canar Highland Quichua + + + + + Loup A + + + + + Mbum + + + + + Mazagway + + + + + Gugubera + + + + + Timbe + + + + + Eten + + + + + Wali (Ghana) + + + + + Wardaman + + + + + Lobi + + + + + Kinnauri + + + + + Naga Pidgin + + + + + Ngarinman + + + + + Sekar + + + + + Betta Kurumba + + + + + Bukat + + + + + Ruund + + + + + Pinji + + + + + El Molo + + + + + Kwinti + + + + + Gamkonora + + + + + Acatenango Southwestern Cakchiquel + + + + + Efutop + + + + + North Alaskan Inupiatun + + + + + Waimaha + + + + + Old Russian + + + + + Chimariko + + + + + Bouna Kulango + + + + + Coyutla Totonac + + + + + Southern Balochi + + + + + Northern Qiang + + + + + Luo + + + + + Tama (Colombia) + + + + + Yankunytjatjara + + + + + Culina + + + + + Arikapu + + + + + Nimbari + + + + + San Jeronimo Tecoatl Mazatec + + + + + Phende + + + + + Chetco + + + + + Middle Mongolian + + + + + Mambae + + + + + German Sign Language + + + + + Brunei Bisaya + + + + + Wanda + + + + + Okpamheri + + + + + Bosnian + + + + + Siyin Chin + + + + + Khirwar + + + + + Shatt + + + + + Bomwali + + + + + Malalamai + + + + + Wantoat + + + + + Bali (Democratic Republic of Congo) + + + + + Adangme + + + + + Southwestern Tepehuan + + + + + Zhoa + + + + + Togbo-Vara Banda + + + + + Alviri-Vidari + + + + + Makhuwa-Saka + + + + + Uradhi + + + + + Pagibete + + + + + Cheyenne + + + + + Logorik + + + + + Sani Yi + + + + + Itutang + + + + + Befang + + + + + Himarima + + + + + Kitja + + + + + Taushiro + + + + + Kalasha + + + + + Joba + + + + + Cochimi + + + + + Tarao Naga + + + + + Awadhi + + + + + Highland Popoluca + + + + + Mysian + + + + + Khasi + + + + + Malakhel + + + + + Scottish Gaelic + + + + + Eastern Yiddish + + + + + Toto + + + + + Biwat + + + + + Saurashtra + + + + + Darang Deng + + + + + Wandarang + + + + + Bwatoo + + + + + Nyamal + + + + + Mocho + + + + + Ngoshie + + + + + Croatia Sign Language + + + + + Kaan + + + + + Bungain + + + + + Makwe + + + + + Qimant + + + + + Shau + + + + + Lamma + + + + + Tetelcingo Nahuatl + + + + + Mbedam + + + + + Rongmei Naga + + + + + Afrihili + + + + + Dahalo + + + + + Yapunda + + + + + Tlacoatzintepec Chinantec + + + + + Monzombo + + + + + Porohanon + + + + + Ngazidja Comorian + + + + + Mirandese + + + + + Pankararu + + + + + Kitan + + + + + Sumo-Mayangna + + + + + Baka (Sudan) + + + + + Menka + + + + + Gaddang + + + + + Notre + + + + + Jamiltepec Mixtec + + + + + Fortsenal + + + + + Curonian + + + + + Puwa Yi + + + + + Helong + + + + + Tanahmerah + + + + + Ningera + + + + + Bulgebi + + + + + Bacama + + + + + South Marquesan + + + + + Nyiha + + + + + Gimi (West New Britain) + + + + + Lishanid Noshan + + + + + Koreguaje + + + + + Buglere + + + + + Lorang + + + + + Muya + + + + + Temi + + + + + Gao + + + + + Sango + + + + + Cotabato Manobo + + + + + Toga + + + + + Hinduri + + + + + Mende (Sierra Leone) + + + + + Nyaheun + + + + + Sherpa + + + + + Coong + + + + + Southwestern Huishui Hmong + + + + + Nilamba + + + + + Bislama + + + + + Komodo + + + + + Nupode Huitoto + + + + + Malay (individual language) + + + + + Walungge + + + + + Assamese + + + + + Macaguaje + + + + + Nyang'i + + + + + Ndolo + + + + + Frankish + + + + + Neo-Hittite + + + + + Sentinel + + + + + San Juan Cotzal Ixil + + + + + Extremaduran + + + + + Gorakor + + + + + Aiome + + + + + Nasarian + + + + + Min Nan Chinese + + + + + Gagadu + + + + + Nafusi + + + + + Buli (Indonesia) + + + + + Biyo + + + + + Kita Maninkakan + + + + + Cahuarano + + + + + Chochotec + + + + + Southeastern Lolo Yi + + + + + Tundra Enets + + + + + Pintiini + + + + + Urak Lawoi' + + + + + Vao + + + + + Agariya + + + + + Southern Pastaza Quechua + + + + + Kuku-Yalanji + + + + + Masaba + + + + + Kinyarwanda + + + + + Chavacano + + + + + Lushootseed + + + + + Epena + + + + + Bena (Nigeria) + + + + + Gizrra + + + + + Dagoman + + + + + Kwato + + + + + Kopar + + + + + Amblong + + + + + Dakaka + + + + + Malaryan + + + + + Zayein Karen + + + + + Berbice Creole Dutch + + + + + Plautdietsch + + + + + Ukwuani-Aboh-Ndoni + + + + + Gwandara + + + + + Bemba (Zambia) + + + + + Central Aymara + + + + + Old Frisian + + + + + Egypt Sign Language + + + + + Walser + + + + + Lingarak + + + + + Mewari + + + + + Ket + + + + + Taiap + + + + + Bainouk-Gunyuno + + + + + Miqie Yi + + + + + Dair + + + + + Alyawarr + + + + + Tiwa + + + + + Central Tunebo + + + + + Nawaru + + + + + Andh + + + + + Sakirabia + + + + + Tila Chol + + + + + Tifal + + + + + Kyenele + + + + + Assyrian Neo-Aramaic + + + + + Todos Santos Cuchumatan Mam + + + + + Akei + + + + + Hun-Saare + + + + + Pochuri Naga + + + + + Mari (Russia) + + + + + Michigamea + + + + + Nyakyusa-Ngonde + + + + + Tinputz + + + + + Pidgin Delaware + + + + + Mlahso + + + + + Holiya + + + + + Usaghade + + + + + West Ambae + + + + + Kumiai + + + + + Piti + + + + + Yace + + + + + Comaltepec Chinantec + + + + + Selkup + + + + + Malba Birifor + + + + + Kaki Ae + + + + + Nabi + + + + + Ibali Teke + + + + + Manna-Dora + + + + + Kazakh + + + + + Northern Lorung + + + + + Saep + + + + + Surui Do Para + + + + + Dhuwal + + + + + Tongwe + + + + + Wamey + + + + + Mese + + + + + Agi + + + + + Bakole + + + + + Big Nambas + + + + + Embera-Tado + + + + + Lubuagan Kalinga + + + + + Egyptian Arabic + + + + + Transalpine Gaulish + + + + + Barasana + + + + + Nama (Papua New Guinea) + + + + + San Baltazar Loxicha Zapotec + + + + + Gamo-Ningi + + + + + Helambu Sherpa + + + + + Nchumbulu + + + + + Koyraboro Senni Songhai + + + + + Pa Di + + + + + Northern Pastaza Quichua + + + + + Southern Pumi + + + + + Kom (Cameroon) + + + + + Yakha + + + + + Darmiya + + + + + Dakka + + + + + Tampulma + + + + + Sumi Naga + + + + + Sekani + + + + + Didinga + + + + + Shahrudi + + + + + Khmu + + + + + Kanoe + + + + + Cameroon Mambila + + + + + Bera + + + + + Yei + + + + + Dogul Dom Dogon + + + + + Sizaki + + + + + Pictish + + + + + Garawa + + + + + Zimakani + + + + + Bau + + + + + Bumthangkha + + + + + Bahinemo + + + + + Rapoisi + + + + + Pauri Bareli + + + + + Bembe + + + + + Southern Samo + + + + + Bongu + + + + + Ojitlan Chinantec + + + + + Kituba (Democratic Republic of Congo) + + + + + Shendu + + + + + Butuanon + + + + + Nadruvian + + + + + Kamasa + + + + + Mawan + + + + + Pa-Hng + + + + + Lematang + + + + + Yoruba + + + + + North Nuaulu + + + + + Franco-Provencal + + + + + Ulch + + + + + Mamaa + + + + + Poyanawa + + + + + Takwane + + + + + Huizhou Chinese + + + + + Orang Seletar + + + + + Mandobo Bawah + + + + + Adasen Itneg + + + + + Ubi + + + + + Tabasco Chontal + + + + + Mushungulu + + + + + Mboi + + + + + Pao + + + + + Pari + + + + + Cao Lan + + + + + Carrier + + + + + Yauyos Quechua + + + + + Kikuyu + + + + + Sauria Paharia + + + + + Burmese + + + + + Ulau-Suain + + + + + Western Fijian + + + + + Wayuu + + + + + Nyamwanga + + + + + Fam + + + + + Mongondow + + + + + Kodia + + + + + Bonggo + + + + + Settla + + + + + Lamang + + + + + Brithenig + + + + + Laua + + + + + Eastern Egyptian Bedawi Arabic + + + + + Navajo + + + + + Lushai + + + + + Bunun + + + + + Mro Chin + + + + + Wakhi + + + + + Siwi + + + + + Umanakaina + + + + + Ojibwa + + + + + Bayono + + + + + Nyulnyul + + + + + Sanga (Nigeria) + + + + + Tigre + + + + + Kerewe + + + + + Kenyi + + + + + Mbonga + + + + + Middle English (1100-1500) + + + + + Kunfal + + + + + Tagbanwa + + + + + Isthmus-Pajapan Nahuatl + + + + + North Giziga + + + + + San Luis Potosi Huastec + + + + + Duduela + + + + + Fijian Hindustani + + + + + Narau + + + + + Wayoro + + + + + Punic + + + + + Ayu + + + + + Baharna Arabic + + + + + Mualang + + + + + Laari + + + + + San Agustin Mixtepec Zapotec + + + + + Reli + + + + + Rungus + + + + + Mesquakie + + + + + Yessan-Mayo + + + + + Lave + + + + + Hiligaynon + + + + + Kintaq + + + + + Paku Karen + + + + + Xishan Lalu Yi + + + + + Poke + + + + + Maek + + + + + Sugut Dusun + + + + + Guianese Creole French + + + + + Defaka + + + + + Nanggu + + + + + Molima + + + + + Panasuan + + + + + North Wahgi + + + + + Candoshi-Shapra + + + + + Namat + + + + + Yamana + + + + + Eastern Frisian + + + + + Melpa + + + + + Khams Tibetan + + + + + Demta + + + + + Kohumono + + + + + Logo + + + + + Nootka + + + + + Old Tibetan + + + + + Itza + + + + + Memoni + + + + + Ngbundu + + + + + Lamenu + + + + + Patep + + + + + Xhosa + + + + + Yong + + + + + Iapama + + + + + Label + + + + + Yeyi + + + + + Awabakal + + + + + Nyangumarta + + + + + Hamer-Banna + + + + + Serer + + + + + Samtao + + + + + Bassari + + + + + North Bolivian Quechua + + + + + Kumzari + + + + + Laghuu + + + + + Chimalapa Zoque + + + + + Mararit + + + + + Tanosy Malagasy + + + + + Mochica + + + + + Bauro + + + + + Laka (Nigeria) + + + + + Ngumbi + + + + + Tunisian Arabic + + + + + Hmong Shua + + + + + Aranama-Tamique + + + + + Lipan Apache + + + + + Teme + + + + + Aka-Bo + + + + + Namosi-Naitasiri-Serua + + + + + Beja + + + + + Solos + + + + + Temein + + + + + Wadaginam + + + + + Patpatar + + + + + Tagish + + + + + Mae + + + + + Cinta Larga + + + + + Gunya + + + + + Bondei + + + + + Ngura + + + + + Tuxinawa + + + + + Bati (Indonesia) + + + + + Southern Qiang + + + + + Skepi Creole Dutch + + + + + Villa Viciosa Agta + + + + + Argobba + + + + + Maiani + + + + + Ngaju + + + + + Northern Embera + + + + + Yucuane Mixtec + + + + + Central Masela + + + + + Maa + + + + + Kalkutung + + + + + Ona + + + + + Kangean + + + + + Fongoro + + + + + Moyon Naga + + + + + Khana + + + + + Tichurong + + + + + Southern Sami + + + + + Yindjibarndi + + + + + Lewotobi + + + + + Soyaltepec Mixtec + + + + + Tabriak + + + + + Talodi + + + + + Hakka Chinese + + + + + Onge + + + + + Lucumi + + + + + =/Kx'au//ein + + + + + Onin Based Pidgin + + + + + Tolomako + + + + + //Ani + + + + + Lingkhim + + + + + Teor + + + + + Letemboi + + + + + Mbangi + + + + + Dwang + + + + + Trumai + + + + + Bassossi + + + + + Seselwa Creole French + + + + + Lumun + + + + + Gusilay + + + + + Ometepec Nahuatl + + + + + Terebu + + + + + Kiowa + + + + + Bamukumbit + + + + + Palenquero + + + + + Western Highland Purepecha + + + + + Mayeka + + + + + Somyev + + + + + Akpes + + + + + Welaung + + + + + Braj + + + + + Yepocapa Southwestern Cakchiquel + + + + + Thai + + + + + Inpui Naga + + + + + Bororo + + + + + Beli (Sudan) + + + + + Ute-Southern Paiute + + + + + Karawa + + + + + Kabola + + + + + Dong + + + + + Bagri + + + + + Ndoola + + + + + West Tarangan + + + + + Saya + + + + + Babuza + + + + + Kohoroxitari + + + + + Kunbarlang + + + + + Mediak + + + + + Tavoyan + + + + + Bima + + + + + Kereho-Uheng + + + + + Bacanese Malay + + + + + Northern Pumi + + + + + Mopan Maya + + + + + Tagwana Senoufo + + + + + Ecuadorian Sign Language + + + + + Faroese + + + + + Eman + + + + + Marba + + + + + Peranakan Indonesian + + + + + Pijao + + + + + Nii + + + + + Tsonga + + + + + Abu + + + + + Chru + + + + + Krobu + + + + + Shabo + + + + + We Northern + + + + + Corongo Ancash Quechua + + + + + Umbindhamu + + + + + Tatana + + + + + Kpala + + + + + Baba Malay + + + + + Shumashti + + + + + Kwakiutl + + + + + Ethiopian Sign Language + + + + + Dibole + + + + + Karanga + + + + + Papapana + + + + + Sebuyau + + + + + Omurano + + + + + Seri + + + + + Wasa + + + + + Toala' + + + + + Central Grebo + + + + + Tami + + + + + Kamba (Kenya) + + + + + Afar + + + + + Baeggu + + + + + Jandavra + + + + + Eshtehardi + + + + + Pukapuka + + + + + Kharia Thar + + + + + Kuku-Mangk + + + + + Kenyang + + + + + Rathwi Bareli + + + + + Zia + + + + + Kang + + + + + Central Nicobarese + + + + + Ngarluma + + + + + Rongpo + + + + + Mauwake + + + + + Khaling + + + + + Busam + + + + + Adangbe + + + + + Nyanga-li + + + + + Saposa + + + + + Tobagonian Creole English + + + + + Mer + + + + + Abenlen Ayta + + + + + Koroni + + + + + Wariyangga + + + + + Mescalero-Chiricahua Apache + + + + + Cemuhi + + + + + Rongga + + + + + Middle Dutch (ca. 1050-1350) + + + + + Malasanga + + + + + Veluws + + + + + Classical Newari + + + + + Hruso + + + + + Barwe + + + + + Huautla Mazatec + + + + + Pela + + + + + Bagupi + + + + + Tahitian + + + + + Nguluwan + + + + + Kuanhua + + + + + West Coast Bajau + + + + + Maca + + + + + Hassaniyya + + + + + Woleaian + + + + + Otuke + + + + + Old Japanese + + + + + Valman + + + + + Izi-Ezaa-Ikwo-Mgbo + + + + + Penoles Mixtec + + + + + Napu + + + + + Parkari Koli + + + + + Chuvash + + + + + Northern Thai + + + + + Ponosakan + + + + + Otuho + + + + + Komba + + + + + Khang + + + + + Sene + + + + + Kachari + + + + + Baniva + + + + + Ipiko + + + + + Aghu Tharnggalu + + + + + Akum + + + + + Kilmeri + + + + + Kuanua + + + + + Pula Yi + + + + + Cofan + + + + + Mfinu + + + + + Ga + + + + + Ngalum + + + + + Tariano + + + + + Sicel + + + + + Phoenician + + + + + Awjilah + + + + + Tukumanfed + + + + + Ludian + + + + + Eastern Mnong + + + + + Idesa + + + + + Pamosu + + + + + Kaytetye + + + + + Kashubian + + + + + Amoltepec Mixtec + + + + + Yekhee + + + + + Banggai + + + + + Awtuw + + + + + Phana' + + + + + Maraghei + + + + + Selian + + + + + Kajakse + + + + + Sudanese Creole Arabic + + + + + Kahumamahon Saluan + + + + + Alu Kurumba + + + + + Mser + + + + + La'bi + + + + + Mundu + + + + + Rumu + + + + + Arawak + + + + + Northern Sierra Miwok + + + + + Tanzanian Sign Language + + + + + Khumi Chin + + + + + Makasar + + + + + Sinte Romani + + + + + Singapore Sign Language + + + + + Koma + + + + + Cuiba + + + + + Chinook jargon + + + + + Laadan + + + + + Galambu + + + + + North Marquesan + + + + + Birhor + + + + + Azoyu Tlapanec + + + + + Korop + + + + + Herde + + + + + Southern Betsimisaraka Malagasy + + + + + Yinggarda + + + + + Kamoro + + + + + Wikalkan + + + + + Churahi + + + + + Volscian + + + + + Northern Bai + + + + + Sranan Tongo + + + + + Qaqet + + + + + Southern Yukaghir + + + + + Dhivehi + + + + + Barein + + + + + Koiwat + + + + + Old Nubian + + + + + Salinan + + + + + Yangbye + + + + + Uhami + + + + + Lomaiviti + + + + + Psikye + + + + + Grebo + + + + + Santiago Lapaguia Zapotec + + + + + Caribbean Javanese + + + + + Wumbvu + + + + + Khalaj + + + + + Chocangacakha + + + + + Khanty + + + + + Kayan River Kayan + + + + + Maricopa + + + + + Isinai + + + + + Eastern Bolivian Guarani + + + + + Xibe + + + + + Kiliwa + + + + + Lala-Roba + + + + + Persian + + + + + South Awyu + + + + + Mombum + + + + + Southwestern Tarahumara + + + + + Pe + + + + + Molo + + + + + Kurtokha + + + + + Central Okinawan + + + + + Old Hungarian + + + + + Kamayura + + + + + Saisiyat + + + + + Northern Uzbek + + + + + Oyda + + + + + Kpelle + + + + + Geruma + + + + + Chuave + + + + + Wanman + + + + + Tayart Tamajeq + + + + + Kajaman + + + + + Hurrian + + + + + Haitian + + + + + Awu Yi + + + + + Cineni + + + + + Ndendeule + + + + + Northern Ngbandi + + + + + Akkala Sami + + + + + Kasseng + + + + + Tok Pisin + + + + + Ukue + + + + + Mbay + + + + + Tomedes + + + + + Mbariman-Gudhinma + + + + + Bantik + + + + + Lamogai + + + + + Min Dong Chinese + + + + + Ninam + + + + + Kamang + + + + + Loup B + + + + + Santa Teresa Cora + + + + + Touo + + + + + Liana-Seti + + + + + Kaco' + + + + + Algerian Saharan Arabic + + + + + Bauchi + + + + + Zuni + + + + + Yopno + + + + + Lachirioag Zapotec + + + + + Maithili + + + + + Bakwe + + + + + Nefamese + + + + + Karipuna Creole French + + + + + Yalahatan + + + + + Wanukaka + + + + + Nubri + + + + + Chilcotin + + + + + Biangai + + + + + Loo + + + + + Haveke + + + + + Kayardild + + + + + Tabasco Zoque + + + + + Kokoda + + + + + Jju + + + + + Gola + + + + + Bebil + + + + + Tsetsaut + + + + + Hulung + + + + + Vagla + + + + + Romanian + + + + + Kola + + + + + Dolpo + + + + + Zaniza Zapotec + + + + + Daga + + + + + Tombulu + + + + + Angolar + + + + + Kutu + + + + + Dura + + + + + Dolgan + + + + + Tocho + + + + + Chane + + + + + Dugun + + + + + Kota (Gabon) + + + + + Epi-Olmec + + + + + Mire + + + + + Rukai + + + + + Tsimane + + + + + Pacific Gulf Yupik + + + + + Coyotepec Popoloca + + + + + Alangan + + + + + Pwo Western Karen + + + + + Kanu + + + + + Nomaande + + + + + Tidaa Mixtec + + + + + Cebaara Senoufo + + + + + Fur + + + + + Old Saxon + + + + + Malawi Sena + + + + + Juray + + + + + Nyangatom + + + + + Old Tamil + + + + + Moingi + + + + + Dimbong + + + + + Nung (Viet Nam) + + + + + Iu Mien + + + + + Barclayville Grebo + + + + + Moken + + + + + Piraha + + + + + Embera-Chami + + + + + Grangali + + + + + Satawalese + + + + + Yabarana + + + + + Butmas-Tur + + + + + Lui + + + + + Ndengereko + + + + + Ila + + + + + Mesaka + + + + + Fe'fe + + + + + Tatar + + + + + Shawnee + + + + + Bofi + + + + + Abishira + + + + + Whitesands + + + + + Plateau Malagasy + + + + + Ere + + + + + Musey + + + + + Mashi (Nigeria) + + + + + Babango + + + + + Etkywan + + + + + Yanomami + + + + + Kunigami + + + + + Bedjond + + + + + Doutai + + + + + Murupi + + + + + Magori + + + + + Tereno + + + + + Nafri + + + + + Samvedi + + + + + Southern Birifor + + + + + Sebat Bet Gurage + + + + + Ikpeshi + + + + + Dungu + + + + + Darlong + + + + + Ladin + + + + + Orok + + + + + Onondaga + + + + + Sri Lankan Creole Malay + + + + + Alanic + + + + + Buginese + + + + + Southern Yi + + + + + Eastern Gorkha Tamang + + + + + Torau + + + + + Rendille + + + + + Northern Tiwa + + + + + Eritai + + + + + Meta' + + + + + Muong + + + + + Paafang + + + + + Northern Kissi + + + + + Bakaka + + + + + Wakawaka + + + + + Kaniet + + + + + East Makian + + + + + Liabuku + + + + + Shinabo + + + + + Narim + + + + + Mari (East Sepik Province) + + + + + Oroko + + + + + Khuen + + + + + Bum + + + + + Chorasmian + + + + + Kuman (Russia) + + + + + Tembo (Motembo) + + + + + Southern Kalinga + + + + + Fang (Equatorial Guinea) + + + + + Binji + + + + + Apalachee + + + + + Shuar + + + + + Nogai + + + + + Swahili (individual language) + + + + + Bonerate + + + + + Eastern Ojibwa + + + + + Tabassaran + + + + + Ayabadhu + + + + + Balau + + + + + Baga Binari + + + + + Wakona + + + + + Maori + + + + + Waigali + + + + + Batak Simalungun + + + + + Irantxe + + + + + Iduna + + + + + Chippewa + + + + + Kuni-Boazi + + + + + Kaimbulawa + + + + + San Salvador Kongo + + + + + Tyap + + + + + Bara Malagasy + + + + + Michoacan Nahuatl + + + + + Mbo (Democratic Republic of Congo) + + + + + Gayo + + + + + Duano' + + + + + Supyire Senoufo + + + + + Lorediakarkar + + + + + Bebeli + + + + + Geji + + + + + Lamet + + + + + Na + + + + + Chukot + + + + + Karo (Ethiopia) + + + + + Wandamen + + + + + Tuvinian + + + + + Odual + + + + + Emai-Iuleha-Ora + + + + + Marshallese + + + + + Eastern Pomo + + + + + Squamish + + + + + North Picene + + + + + Huambisa + + + + + Bikya + + + + + Omagua + + + + + Ombo + + + + + Odut + + + + + Kankanaey + + + + + Kamar + + + + + Toro So Dogon + + + + + Bambalang + + + + + Mohawk + + + + + Morisyen + + + + + Kurichiya + + + + + Cori + + + + + Adamawa Fulfulde + + + + + Ugong + + + + + Miami + + + + + Bakpinka + + + + + Diodio + + + + + Turkana + + + + + Bambassi + + + + + Nkonya + + + + + Djambarrpuyngu + + + + + Motu + + + + + Mezontla Popoloca + + + + + Urimo + + + + + Manam + + + + + Albay Bicolano + + + + + Awera + + + + + Wutung + + + + + Moma + + + + + Northern Gondi + + + + + Yagaria + + + + + Central Cagayan Agta + + + + + Narungga + + + + + Biao-Jiao Mien + + + + + Koyo + + + + + Coatepec Nahuatl + + + + + Gangulu + + + + + Uru-Pa-In + + + + + Huaxcaleca Nahuatl + + + + + Shilluk + + + + + Amal + + + + + Ventureno + + + + + Hlai + + + + + Northern Paiute + + + + + Gitua + + + + + Mbala + + + + + Totela + + + + + Kemberano + + + + + Auye + + + + + Phimbi + + + + + Tutsa Naga + + + + + Mednyj Aleut + + + + + Tiv + + + + + Aramaic + + + + + Chitwania Tharu + + + + + Burak + + + + + Manyawa + + + + + Toaripi + + + + + Eastern Lawa + + + + + Wik-Mungkan + + + + + Gupa-Abawa + + + + + Hasha + + + + + Senhaja De Srair + + + + + Nivacle + + + + + Imroing + + + + + Melanau + + + + + Dusun Witu + + + + + Northern Toussian + + + + + Togoyo + + + + + Chajul Ixil + + + + + Mru + + + + + Atakapa + + + + + Yawarawarga + + + + + Lamam + + + + + Nake + + + + + Avokaya + + + + + Rincon Zapotec + + + + + Northern Qiandong Hmong + + + + + Norwegian + + + + + Cross River Mbembe + + + + + Chamacoco + + + + + Malawi Lomwe + + + + + Xadani Zapotec + + + + + Jita + + + + + Kouya + + + + + Mandingo + + + + + Cakchiquel-Quiche Mixed Language + + + + + North Korowai + + + + + Sarli + + + + + Ocaina + + + + + Ukrainian + + + + + Northern Zhuang + + + + + Kitsai + + + + + Bonan + + + + + Northern Sami + + + + + Kamviri + + + + + Iyo + + + + + Ata + + + + + Nugunu (Cameroon) + + + + + Karingani + + + + + Mahakam Kenyah + + + + + Tause + + + + + Tiri + + + + + Secoya + + + + + Kharam Naga + + + + + North Ambrym + + + + + Pagi + + + + + Haeke + + + + + Kowaki + + + + + Muko-Muko + + + + + Tai Thanh + + + + + Airoran + + + + + Nyalayu + + + + + Ignaciano + + + + + Sangu (Tanzania) + + + + + Irish Sign Language + + + + + Oy + + + + + Brokpake + + + + + Kushi + + + + + Central Atlas Tamazight + + + + + Western Sisaala + + + + + Vaiphei + + + + + Angal Heneng + + + + + Thao + + + + + Yerong + + + + + Wetamut + + + + + Chiapanec + + + + + Istriot + + + + + Manx + + + + + Saaroa + + + + + Enya + + + + + Tepeuxila Cuicatec + + + + + Nez Perce + + + + + Ede Idaca + + + + + Phuan + + + + + Botolan Sambal + + + + + Karata + + + + + Simte + + + + + Piaroa + + + + + Farefare + + + + + Gamilaraay + + + + + Gaina + + + + + Aariya + + + + + Lower Pokomo + + + + + Urum + + + + + Kanga + + + + + Reyesano + + + + + Manga Kanuri + + + + + Nung (Myanmar) + + + + + Pom + + + + + Groma + + + + + Zemba + + + + + Sharwa + + + + + Tanimuca-Retuara + + + + + Ombamba + + + + + Dameli + + + + + Mbowe + + + + + Tuotomb + + + + + Minaean + + + + + Plains Cree + + + + + Southwestern Dinka + + + + + Arikara + + + + + Soninke + + + + + Gogodala + + + + + Yalunka + + + + + Algerian Arabic + + + + + Valpei + + + + + Masana + + + + + Eyak + + + + + Dabarre + + + + + Nga La + + + + + Nzima + + + + + Bamako Sign Language + + + + + Lycian + + + + + Kayort + + + + + Kpasam + + + + + Kulung (Nepal) + + + + + Wu Chinese + + + + + Erave + + + + + Kurumba + + + + + Kom (India) + + + + + Voro + + + + + Ngurmbur + + + + + Alatil + + + + + Middle Breton + + + + + Ikizu + + + + + Masalit + + + + + Biga + + + + + Kahayan + + + + + Dao + + + + + Tai Do + + + + + Guaja + + + + + Aka-Bea + + + + + Vaghri + + + + + Seko Tengah + + + + + Korubo + + + + + Mbongno + + + + + Buso + + + + + Anjam + + + + + Vute + + + + + Tabasco Nahuatl + + + + + Norwegian Nynorsk + + + + + Indonesian Bajau + + + + + Yaosakor Asmat + + + + + Lahta Karen + + + + + Lakona + + + + + Bobongko + + + + + Mouk-Aria + + + + + Dghwede + + + + + Paulohi + + + + + Middle Newar + + + + + Caquinte + + + + + Korak + + + + + Maba (Indonesia) + + + + + Portuguese + + + + + Highland Totonac + + + + + Nzakara + + + + + Gapapaiwa + + + + + Waima + + + + + Darai + + + + + Hu + + + + + North Tairora + + + + + Yavitero + + + + + Eruwa + + + + + Deni + + + + + Aguacateco + + + + + Sri Lankan Sign Language + + + + + Torres Strait Creole + + + + + Mbugu + + + + + Kaiku + + + + + Arem + + + + + Rang + + + + + Paelignian + + + + + Miluk + + + + + Daro-Matu + + + + + Lambichhong + + + + + Uab Meto + + + + + Mid Grand Valley Dani + + + + + Ahirani + + + + + Gungabula + + + + + Omie + + + + + Bangubangu + + + + + New Caledonian Javanese + + + + + Quechan + + + + + Gujarati + + + + + South Fali + + + + + Siang + + + + + Ndyuka-Trio Pidgin + + + + + Iban + + + + + Pannei + + + + + Koalib + + + + + Moyadan Itneg + + + + + Alaba + + + + + Manya + + + + + Garus + + + + + Atampaya + + + + + Aka-Kol + + + + + Hungworo + + + + + Delo + + + + + Eastern Canadian Inuktitut + + + + + Central Mazahua + + + + + Batak Dairi + + + + + Kaburi + + + + + Budong-Budong + + + + + Piscataway + + + + + Saliba + + + + + Shipibo-Conibo + + + + + Tagdal + + + + + Kamano + + + + + Tejalapan Zapotec + + + + + Haruai + + + + + Malaysian Sign Language + + + + + Bonkeng + + + + + Nepali + + + + + Lawunuia + + + + + Northern Altai + + + + + Western Huasteca Nahuatl + + + + + Parthian + + + + + Ekari + + + + + Budu + + + + + Aralle-Tabulahan + + + + + Setaman + + + + + Timor Pidgin + + + + + Ho + + + + + Dagik + + + + + Rabha + + + + + Tauya + + + + + Lijili + + + + + Enim + + + + + Sallands + + + + + Bishnupriya + + + + + Southern Kisi + + + + + Wancho Naga + + + + + Tereweng + + + + + Tsamai + + + + + Nggwahyi + + + + + Pattani Malay + + + + + Heiban + + + + + Rotuman + + + + + Digaro-Mishmi + + + + + Dompo + + + + + Eshan-Xinping Yi + + + + + Gweno + + + + + Fali + + + + + Cafundo Creole + + + + + Oro Win + + + + + Deno + + + + + Suwawa + + + + + Marithiel + + + + + Prussian + + + + + Toku-No-Shima + + + + + Thakali + + + + + Aja (Sudan) + + + + + Phudagi + + + + + Nukak Maku + + + + + Sassarese Sardinian + + + + + East Kewa + + + + + Tobati + + + + + Pinai-Hagahai + + + + + Bokobaru + + + + + Yutanduchi Mixtec + + + + + Huaulu + + + + + Kolibugan Subanon + + + + + Ngamo + + + + + Torricelli + + + + + Dinka + + + + + Lobala + + + + + Gula (Central African Republic) + + + + + Valle Nacional Chinantec + + + + + Tenino + + + + + Kariyarra + + + + + Bon Gula + + + + + Yocoboue Dida + + + + + Hako + + + + + Selako + + + + + Chak + + + + + Yauma + + + + + Bhattiyali + + + + + Yapese + + + + + Xukuru + + + + + Kofyar + + + + + Tlahuitoltepec Mixe + + + + + Aruop + + + + + Monastic Sign Language + + + + + Southeast Pashayi + + + + + Isthmus Mixe + + + + + Capiznon + + + + + Woria + + + + + Bargam + + + + + Gundi + + + + + Urumi + + + + + Aloapam Zapotec + + + + + Wogeo + + + + + Hopi + + + + + Modern Greek (1453-) + + + + + Bonggi + + + + + Luopohe Hmong + + + + + Kedah Malay + + + + + Baan + + + + + Selepet + + + + + Cao Miao + + + + + Curripaco + + + + + Lisela + + + + + Chimila + + + + + Kayan River Kenyah + + + + + Foau + + + + + Purisimeno + + + + + Dijim-Bwilim + + + + + Central Huasteca Nahuatl + + + + + Tlacolulita Zapotec + + + + + Amba (Uganda) + + + + + Sepik Iwam + + + + + Guayabero + + + + + West Central Banda + + + + + Dadiya + + + + + Gitxsan + + + + + Hovongan + + + + + Belanda Bor + + + + + Dagaari Dioula + + + + + Kanamari + + + + + Rikbaktsa + + + + + Kiong + + + + + En + + + + + Old Turkish + + + + + Nkoya + + + + + Ndemli + + + + + Napo Lowland Quechua + + + + + Austral + + + + + Western Juxtlahuaca Mixtec + + + + + Zapotec + + + + + Yeskwa + + + + + Bina (Papua New Guinea) + + + + + Kara (Korea) + + + + + Western Tzutujil + + + + + Uzekwe + + + + + Korafe + + + + + Ouma + + + + + Bena (Tanzania) + + + + + Guntai + + + + + Agob + + + + + Kui (India) + + + + + Malila + + + + + Gbaya-Bossangoa + + + + + Gvoko + + + + + Yidiny + + + + + Pudtol Atta + + + + + Tibetan + + + + + Kwaami + + + + + Gela + + + + + Gade + + + + + Eastern Mari + + + + + Sila + + + + + Gebe + + + + + Vinmavis + + + + + Kuwaataay + + + + + Kuthant + + + + + Bora + + + + + Subtiaba + + + + + Awad Bing + + + + + Saweru + + + + + Odiai + + + + + Magahi + + + + + Saba + + + + + Ko + + + + + Pangwa + + + + + Lengua + + + + + Rathawi + + + + + Lunanakha + + + + + Habu + + + + + Murle + + + + + Kui (Indonesia) + + + + + Madagascar Sign Language + + + + + Nyadu + + + + + Tanapag + + + + + Newari + + + + + Achang + + + + + Abau + + + + + Southern Ghale + + + + + Purepecha + + + + + Western Tunebo + + + + + Walio + + + + + Como Karim + + + + + Kodi + + + + + Ndunda + + + + + Silacayoapan Mixtec + + + + + Muji Yi + + + + + Western Mashan Hmong + + + + + Aranadan + + + + + Shwe Palaung + + + + + Siona + + + + + Gambera + + + + + Mala (Nigeria) + + + + + Wichi Lhamtes Nocten + + + + + Tukudede + + + + + Jibu + + + + + Dhargari + + + + + Kovai + + + + + Mesopotamian Arabic + + + + + Movima + + + + + Nduga + + + + + Southern Sama + + + + + Ngbaka + + + + + Tiang + + + + + Indus Valley Language + + + + + Agutaynen + + + + + Yora + + + + + Hobyot + + + + + Trieng + + + + + Defi Gbe + + + + + Ubaghara + + + + + Tosk Albanian + + + + + Northeast Pashayi + + + + + Djiwarli + + + + + Adai + + + + + Phuie + + + + + Estonian + + + + + Ahan + + + + + Taikat + + + + + Ningil + + + + + Kukele + + + + + Pu Ko + + + + + Lengola + + + + + Twana + + + + + Libyan Arabic + + + + + Mai Brat + + + + + Guanano + + + + + Azhe Yi + + + + + Old Korean (3rd - 9th cent.) + + + + + Talur + + + + + Yambeta + + + + + Sipacapense + + + + + Siliput + + + + + Cajamarca Quechua + + + + + Iatmul + + + + + Swiss-French Sign Language + + + + + Ravula + + + + + Sinhala + + + + + Bagirmi Fulfulde + + + + + Flinders Island + + + + + Southern Pame + + + + + Njyem + + + + + Callawalla + + + + + Kabutra + + + + + Eteocretan + + + + + Ubykh + + + + + San Sebastian Coatan Chuj + + + + + Paite Chin + + + + + Bata + + + + + Waray (Philippines) + + + + + Iraya + + + + + Southern East Cree + + + + + Marrucinian + + + + + Yanyuwa + + + + + Dzongkha + + + + + Guarequena + + + + + Haitian Vodoun Culture Language + + + + + So'a + + + + + Muruwari + + + + + Landoma + + + + + Dazaga + + + + + Kairui-Midiki + + + + + Southern Pomo + + + + + Animere + + + + + Gnau + + + + + Eastern Huasteca Nahuatl + + + + + Southern Grebo + + + + + Waris + + + + + Magoma + + + + + Romansh + + + + + Northeast Kiwai + + + + + Bayungu + + + + + Pisabo + + + + + Tukpa + + + + + Bhaya + + + + + Southern Alta + + + + + A'tong + + + + + Upper Taromi + + + + + Kpan + + + + + Hawaiian + + + + + Lara' + + + + + San Juan Guelavia Zapotec + + + + + Mawak + + + + + Etulo + + + + + Tama (Chad) + + + + + Dhodia + + + + + Tese + + + + + Nauru + + + + + Saramaccan + + + + + Ligurian + + + + + Brokkat + + + + + Weliki + + + + + Shor + + + + + Northern Mashan Hmong + + + + + + + + + + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\constraint\niem\nonauthoritative-code\2.0\nonauthoritative-code.xsd + + Non-authoritative codes for the direction of a person's pose in an image. + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\constraint\niem\proxy\xsd\2.0\xsd.xsd + + Proxy types that carry dictionary metadata and have XML data type simple contents. + + true + + + + + + + + + + + + + + + + + + + A data type for Base64-encoded binary data. + + + + + + + + + + + + + A data type for binary-valued logic (true/false). + + + + + + + + + + + + + A data type for a calendar date with the format CCYY-MM-DD. + + + + + + + + + + + + + + + + + + + + + + + + + A data type for arbitrary precision decimal numbers. + + + + + + + + + + + + + A data type for a duration of time with the format PnYnMnDTnHnMnS, where nY is the number of years, nM is the number of months, nD is the number of days, nH is the number of hours, nM is the number of minutes, and nS is the number of seconds. + + + + + + + + + + + + + A data type for a Gregorian calendar year with the format CCYY. + + + + + + + + + + + + + A data type for character strings in XML. + + + + + + + + + + + + + A data type for an instant of time with the format hh:mm:ss.sss. + + + + + + + + + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\constraint\niem\unece_rec20-misc\2.0\unece_rec20-misc.xsd + + Miscellaneous unit of measure codes from the United Nations Economic Commission for Europe Recommendation No. 20, Codes for Units of Measure used in International Trade. + + true + + + + + + + + + micro-inch + + + + + nautical mile + + + + + parsec + + + + + decimetre + + + + + micrometre (micron) + + + + + foot + + + + + yard + + + + + hectometre + + + + + fathom + + + + + chain + + + + + mile (statute mile) + + + + + kilometre + + + + + milli-inch + + + + + millimetre + + + + + inch + + + + + nanometre + + + + + astronomical unit + + + + + femtometre + + + + + light year + + + + + centimetre + + + + + picometre + + + + + metre + + + + + angstrom + + + + + decametre + + + + + + + + + + + + + + + + centigram + + + + + decigram + + + + + milligram + + + + + microgram + + + + + decagram + + + + + gram + + + + + hundred pounds (cwt) / hundred weight (US) + + + + + megagram + + + + + decitonne + + + + + tonne (metric ton) + + + + + stone (UK) + + + + + grain + + + + + kilotonne + + + + + ton (UK) or long ton (US) + + + + + troy ounce or apothecary ounce + + + + + ton (US) or short ton (UK/US) + + + + + megagram + + + + + pound + + + + + kilogram + + + + + ounce + + + + + hundred weight (UK) + + + + + hectogram + + + + + + + + + + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\constraint\niem\usps_states\2.0\usps_states.xsd + + U.S. state and possession abbreviations from the U.S. Postal Service (USPS). + + true + + + + + + + + + KANSAS + + + + + NORTH DAKOTA + + + + + MASSACHUSETTS + + + + + GEORGIA + + + + + IOWA + + + + + NEW HAMPSHIRE + + + + + MARSHALL ISLANDS + + + + + TEXAS + + + + + NEVADA + + + + + OKLAHOMA + + + + + Armed Forces Americas (except Canada) + + + + + ALASKA + + + + + PUERTO RICO + + + + + IDAHO + + + + + VERMONT + + + + + SOUTH CAROLINA + + + + + AMERICAN SAMOA + + + + + MONTANA + + + + + WEST VIRGINIA + + + + + MISSOURI + + + + + DISTRICT OF COLUMBIA + + + + + WISCONSIN + + + + + ILLINOIS + + + + + COLORADO + + + + + VIRGIN ISLANDS + + + + + DELAWARE + + + + + NEW JERSEY + + + + + Armed Forces Africa, Canada, Europe, Middle East + + + + + NORTHERN MARIANA ISLANDS + + + + + MICHIGAN + + + + + WASHINGTON + + + + + FEDERATED STATES OF MICRONESIA + + + + + CALIFORNIA + + + + + OREGON + + + + + NEW YORK + + + + + NORTH CAROLINA + + + + + KENTUCKY + + + + + UTAH + + + + + MARYLAND + + + + + SOUTH DAKOTA + + + + + PALAU + + + + + CONNECTICUT + + + + + NEBRASKA + + + + + ARIZONA + + + + + MAINE + + + + + OHIO + + + + + HAWAII + + + + + WYOMING + + + + + RHODE ISLAND + + + + + ARKANSAS + + + + + GUAM + + + + + NEW MEXICO + + + + + PENNSYLVANIA + + + + + ALABAMA + + + + + TENNESSEE + + + + + MINNESOTA + + + + + INDIANA + + + + + VIRGINIA + + + + + LOUISIANA + + + + + FLORIDA + + + + + Armed Forces Pacific + + + + + MISSISSIPPI + + + + + + + + + + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\constraint\niem\domains\jxdm\4.0\jxdm.xsd + + Justice + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + An association between an activity and a location. + + + + + Details about a single case heard by the Court of Appeals (Intermediate Court of Appeal) or Supreme Court (The Court of Last Resort). This case does not retry the original case but determines whether the original case was tried properly and the defendant received a fair trial. + + + + + A request filed with an appellate court to start an appellate case. + + + + + A statement explaining the reason for an appeal. + + + + + An original case that is being retried in an appellate court. + + + + + Details about the apprehension of a subject by a peace official based on an observed or a reported violation of a law or ordinance, an outstanding arrest warrant, or probable cause information. + + + + + An agency which employs the arresting official. + + + + + A records management system number of the originating case agency for an arrest. + + + + + A bail amount on a schedule recommended according to the offense(s). + + + + + A blood-alcohol percentage reading from a Blood Alcohol Test (BAC Test). + + + + + A formal allegation of a violation of a statute and/or ordinance in association with an arrest. + + + + + A location where a subject was arrested. + + + + + A peace official who makes an arrest. + + + + + A person who is arrested. + + + + + A court authorized order which commands a peace official to arrest a subject and bring that subject before the court. + + + + + Details about an administrative step taken after an arrested subject is brought to a police station or detention facility, which involves entry of the subject's name and other relevant facts on the police "blotter", and which may also include photographing, fingerprinting, and the like. + + + + + A booking identifier of the originating case agency. + + + + + Additional information about a case. + + + + + + + + A charge or accusation a person is being tried for in a court of law. + + + + + A court of law in which the case is being tried. + + + + + A court occurrence. + + + + + An entity being charged or sued in a court of law. + + + + + An attorney who defends a case. + + + + + The attorney in a court case representing the party that filed a petition for a court order or writ requiring the respondent to take some action, halt an activity or obey a courts direction. Representative of the party seeking action from the court. In such matters the moving party (the one filing the petition) is often called the "petitioner." The attorney representing a person requesting for filing a Request or Petition for Protection filed by a petitioner. + + + + + An entity that brings charges or a suit against another in a court of law. Can be either a victim in a criminal case or a plaintiff in a civil case. + + + + + A judicial official assigned to a case. + + + + + A description of a case at a previous stage. + + + + + Details about a justice official's involvement in a court case. + + + + + A unique identifier a justice official uses to identify a case. + + + + + A role a justice official played in a court case. + + + + + A miscellaneous entity involved in a court case. + + + + + An attorney who prosecutes a case. + + + + + The attorney in a court case representing the party that is required to answer a petition for a court order or writ requiring the respondent to take some action, halt an activity or obey a courts direction. In such matters the moving party (the one filing the petition) is often called the "petitioner." Thus, the respondent is equivalent to a defendant in a lawsuit. On an appeal, the party who must respond to an appeal by the losing party in the trial court (called "appellant") in the appeals court. The accused in a domestic violence case or civil action; a person responding to a Request or Petition for Protection filed by a petitioner. + + + + + An entity in a court case that is required to answer a petition for a court order or writ requiring the respondent to take some action, halt an activity or obey a courts direction. In such matters the moving party (the one filing the petition) is usually called the petitioner. Thus, the respondent is equivalent to a defendant in a lawsuit. On an appeal, the party who must respond to an appeal by the losing party in the trial court (called appellant) in the appeals court. The accused in a domestic violence case or civil action; a person responding to a Request or Petition for Protection filed by a petitioner. + + + + + Details about a formal allegation that a specific person has committed a specific offense. + + + + + + + + Details about a formal allegation that a specific person has committed a specific offense. + + + + + A degree of involvement a person is being charged with committing in an offense. + + + + + A degree of a charge. + + + + + A plain language description of a charge. + + + + + Details about the results or processing of a charge. + + + + + A formal allegation, contained in at least one charging instrument, that a defendant has violated a statute and/or ordinance in association with an incident. + + + + + An offense within the National Crime Information Center (NCIC) system. + + + + + Additional information that clarifies a charge. + + + + + A sequentially assigned number for charge tracking purposes.. + + + + + A severity level of a charge. + + + + + A factor that has enhanced a charge, making it a more serious offense. + + + + + A unique identifier of a law, rule, or ordinance within a jurisdiction that a person is accused of violating. + + + + + Details about an official summons to appear in court or pay a fine given to a subject from a peace official due to a subjects violation or infraction of a law. + + + + + An organization for whom the citation issuing official is employed. + + + + + True if a citation can be dismissed if certain conditions are met; false otherwise. + + + + + A peace official who gives a citation to a subject. + + + + + A person who violates a law and receives a citation. + + + + + An activity that is a violation of a law or ordinance that results in a subject being given a citation. + + + + + Details about a court or a unit of a court responsible for trying justice proceedings. + + + + + + + + Details about an appearance required of a party in a court of law on a certain date. + + + + + A date on which a party must appear in court. + + + + + Details about a court occurrence. + + + + + A judge associated with a court event. + + + + + Details about the days for which a court event is scheduled. + + + + + A unique identifier for a court case event record. + + + + + A name of a unit of a court. + + + + + Details about a direction of a judge not included in a judgement, which determines some point or directs some step in proceedings. + + + + + A state of a court order. + + + + + An association between a document and a court. + + + + + A severity level of an accident, based on the most intense injury to any person or, if none were injured, so designating. + + + + + A severity level of an accident, based on the most intense injury to any person or, if none were injured, so designating. + + + + + + + + Details about an incident involving a vehicle. + + + + + A determination of whether the incident occurred while the driver was operating a commercial vehicle that was carrying hazardous materials (that required a placard). + + + + + A determination of whether the incident occurred while the driver was operating a commercial vehicle that was carrying hazardous materials (that required a placard). + + + + + + + + True if a laser was involved in the detection of an incident; false otherwise. + + + + + A legally designated speed limit in the area where an incident occurred. + + + + + A number of people in a vehicle excluding the driver when an incident occurred. + + + + + True if radar was involved in the detection of an incident; false otherwise. + + + + + A speed a vehicle was moving at when an incident occurred. + + + + + A federal or state organization with jurisdiction over a person's driving privileges. + + + + + + + + An identifier used to refer to an enforcement official. + + + + + Dates and times an enforcement official is unavailable for scheduling. + + + + + An enforcement unit to which an enforcement officer is assigned. + + + + + A name of an enforcement unit. + + + + + An area, region, or unit in which a unique identification is issued. + + + + + + + + Additional information about an incident. + + + + + + + + A property item that was damaged in an incident. + + + + + + + + True if an official was present when an incident occurred; false otherwise. + + + + + True if an incident involved a traffic accident; false otherwise. + + + + + An identifier assigned to a judicial official after meeting the requirement to practice law in a region. + + + + + Details about a legal capacity in which a judicial official is able to practice law. + + + + + An act or a course of action which may constitute a violation of a criminal statute, ordinance or rule that occurred during an incident. + + + + + Additional information about an organization. + + + + + + + + A unique identifier assigned to a justice-related organization by the federal government. + + + + + A number issued by an agency's automatic fingerprint system based on submitted fingerprints other than PersonFBIID and PersonSSID. + + + + + Additional information about a person. + + + + + + + + An association between a person and a charge issued to that person. + + + + + An association between a person and a driver license. + + + + + A number issued by the FBI's Automated Fingerprint Identification System (AFIS) based on submitted fingerprints. + + + + + A representation or an encoding of the identifying characteristics of a person's palm print. + + + + + A number issued by a state Automated Fingerprint Identification System (AFIS) based on submitted fingerprints. + + + + + Additional information about a property item. + + + + + + + + A monetary value or worth of damage that occurred to a property item. + + + + + A description of something that happened in a case in a register of actions entry. + + + + + Identification information identifying a person as a certain kind of registered offender. + + + + + A person who is required to register as a sexual offender. + + + + + Details about a punishment resulting from conviction of charges in a court case. + + + + + A specific charge in a court case resulting in a sentence. + + + + + A description of the sentence being imposed. + + + + + A duration of a sentence. Specified as either a specific term in days-months-years or as a minimum - maximum range. + + + + + A narrative account of a severity level assigned to a charge. + + + + + A unique identifier of a Severity Level. + + + + + Details about a unique identifier of a law, rule, or ordinance within a jurisdiction. + + + + + + + + Details about a unique identifier of a law, rule, or ordinance within a jurisdiction. + + + + + An identifier of a set of laws for a particular jurisdiction. + + + + + An identifier of a section or category within a code book. + + + + + A description of a statute. + + + + + Details about an area in which a statute applies. + + + + + A level of crime a statute applies to. + + + + + An identification of a criminal offense within a code book. + + + + + A person who is involved or suspected of being involved in an incident or criminal activity. + + + + + + + + A person who is involved or suspected of being involved in an incident or criminal activity. + + + + + An assigned number or string that identifies a subject. + + + + + An incarceration, detention, or other form of supervision a subject is currently undergoing. + + + + + Details about a duration length specified as either a specific term in days-months-years or as a minimum - maximum range. + + + + + A specific range or duration of a term. + + + + + Details about a person, organization, or other entity who suffers injury, loss, or death as a result of an incident. + + + + + + + + Details about a statute that has been violated and associated information. + + + + + A limitation placed on the extradition of a subject from an area outside the immediate jurisdiction of the issuing court. + + + + + A kind of limitation placed on the extradition of a subject from an area outside the immediate jurisdiction of the issuing court. + + + + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\common\ECF-4.0-AppInfo.xsd + + + ECF AppInfo + + + + References a genericode code list of acceptable values for an element. + + + + + + + + + + Indicates a code list to be defined in court policy. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-CaseListQueryMessage.xsd + + + + CaseListQueryMessage + + true + + + + + + + + + + + This is a query for a list of cases that match a set of criteria including case participants, case classification, case status, and date of the case was initiated. + + + + + + + + + + + + + + Placeholder for all case participants, i.e. persons or organizations playing a role in a case. This is where all actor details are expressed. + + + + + + + + + + + + + + + Structure for general information about a case used in a query. + + + + + This is a query for a list of cases that match a set of criteria including case participants, case classification, case status, and date of the case was initiated. + + + + + The beginning and ending filing dates/times of cases about which information is sought in this query. + + + + + Information describing a participant when a query seeks information about the cases in which the person or organization is a participant. + + + + + A unique identifier assigned by the filing assembly MDE for the person who is managing the interface between the filer and the filing assembly MDE. This person will receive secondary service on behalf of the filer. This is also the serviceRecipientID for subsequent filings in this case, and asynchronous responses to this filing. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-CaseListResponseMessage.xsd + + + + CaseListResponseMessage + + true + + + + + + + + + + + A synchronous response to a GetCaseListQueryMessage. + + + + + + + + + + + + A synchronous response to a GetCaseListQueryMessage. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-CaseQueryMessage.xsd + + + + CaseQueryMessage + + true + + + + + + + + + + + A message requesting a list of cases from a court's case management information system conforming to the parameter or parameters identified in the message. + + + + + + + + + + + + + A message requesting a list of cases from a court's case management information system conforming to the parameter or parameters identified in the message. + + + + + + + + + + + + + + + + + + A filter criterion for calendar events. If present, the response should only include calendar events that fall between the from and to dates and times. + + + + + Filter criterion indicating that only calendar entries of a specified type are being requested. + + + + + Criteria limiting the case information to be returned. + + + + + A message requesting a list of cases from a court's case management information system conforming to the parameter or parameters identified in the message. + + + + + A filter criterion for docket entries. If present, the response should only include docket entries that fall between the from and to dates and times. + + + + + Filter criterion indicating that only docket entries of a specified type are being requested. + + + + + Indicates whether requester wishes participant information to be included in the response. + + + + + Indicates whether requester wishes docket entry information to be included in the response. + + + + + Indicates whether requester wishes calendar event information to be included in the response. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-CaseResponseMessage.xsd + + + + CaseResponseMessage + + true + + + + + + + + + + The response to a GetCaseInformationQuery. + + + + + + + + + + + + A message requesting a list of cases from a court's case management information system conforming to the parameter or parameters identified in the message. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-CoreFilingMessage.xsd + + + + CoreFilingMessage + + true + + + + + + + + + + The structure of a Filing including any Payment Information will be documented in this section. This describes the filing transaction between the Filing Assembly MDE and the Filing Review MDE. This information will become part of the Record Docketing between the Filing Review MDE and the Court Record MDE but does not necessarily describe the information that is actually stored in the Court Record. + + + + + + + + + + + + + + + The structure of a Filing including any Payment Information will be documented in this section. This describes the filing transaction between the Filing Assembly MDE and the Filing Review MDE. This information will become part of the Record Docketing between the Filing Review MDE and the Court Record MDE but does not necessarily describe the information that is actually stored in the Court Record. + + + + + Indicator by the filer that something in the message requires sensitive or confidential treatment. (This replaces the former "request to seal" document metadata.) + + + + + A document included in a Filing that supports the Document. This document is not separately entered on the docket or register of actions. + + + + + The pleading, motion or order that is the main document in a Filing. A Document may have Attachments. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-CourtPolicyQueryMessage.xsd + + + + CourtPolicyQueryMessage + + true + + + + + + + + + + + A request for a court's Court Policy. + + + + + + + + A request for a court's Court Policy. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-CourtPolicyResponseMessage.xsd + + + + CourtPolicyResponseMessage + + true + + + + + + + + + + + + A type of court case. + + + + + Appellate case type + + + + + Bankruptcy case type + + + + + Citation case type + + + + + Civil case type + + + + + Criminal case type + + + + + Domestic case type + + + + + Juvenile case type + + + + + + + A type of court case. + + + + + + + + + + A Genericode list of valid codes for an element in a particular court to be substituted for an ECF element. + + + + + + + + + + + + + + + A schema that defines a court-specific data structure to be substituted for an ECF element. + + + + + + + + + + + + + A request for a court's Court Policy. + + + + + + + + The response to a request for a court's Court Policy. + + + + + + + + + + + + + + + Within Court Policy, the policies that are accessed by a person or organization developing an applications or configuring an application to interact with a court for the purpose of structuring the interactions with that court. This information is needed once and is not accessed dynamically while interacting with the court. + + + + + + + + + + + + + + + + + + + + + + + + + Name of a major design element. + + + + + CourtRecord MDE + + + + + FilingAssembly MDE + + + + + FilingReview MDE + + + + + Service MDE + + + + + + + Name of a major design element. + + + + + + + + + + Name of an MDE operation. + + + + + GetFeesCalculation query + + + + + GetCase query + + + + + GetFeesCaseList query + + + + + GetDocument query + + + + + GetFilingList query + + + + + GetFilingStatus query + + + + + GetPolicy query + + + + + GetServiceInformation query + + + + + NotifyFilingReview message + + + + + NotifyDocketing message + + + + + RecordFiling message + + + + + ReviewFiling message + + + + + ServeFiling message + + + + + + + Name of an MDE operation. + + + + + + + + + + Symmetric or asymmetric keys used to encrypt and decrypt, or verify signed messages or documents exchanged with the court. + + + + + + + + + + + + Within Court Policy, the policies that are accessed dynamically by applications interacting with a court. + + + + + + + + + + + + + Whether the court will accept electronic filing of documents requiring filing fees. + + + + + Whether the court will accept electronic filing of documents for which the filer requests confidential or sealed treatment by the court. + + + + + Does court accept placing multiple lead documents in a single message + + + + + A Genericode list of valid codes for an element in a particular court to be substituted for an ECF element. The 'code' column of the codelist includes the allowed values. + + + + + A URI reference to a court-specific codelist defined in Genericode. + + + + + A schema that defines a court-specific data structure to be substituted for an ECF element.. + + + + + A URI reference to a court-specific extension. + + + + + The response to a request for a court's Court Policy. + + + + + Within Court Policy, the policies that are accessed by a person or organization developing an applications or configuring an application to interact with a court for the purpose of structuring the interactions with that court. This information is needed once and is not accessed dynamically while interacting with the court. + + + + + The name of an ECF element to be substituted by a court-specific codelist or extension. + + + + + The date on which a court code list or extension became or will become allowed. + + + + + The date on which a court code list or extension was or will be terminated. + + + + + Indicates whether fees may be required for some filings. + + + + + Indicates whether the e-filing system supports the GetFeesCalculation query. + + + + + Indicates whether the e-filing system supports the GetCaseList query. + + + + + Name of a major design element. + + + + + The maximum allowed attachment size, in bytes. Does not appear if there is no maximum. + + + + + Maximum allowed size of the Court Filing Message Stream, in bytes. Does not appear if there is no maximum. + + + + + The date on which a court's Court Policy was last revised. + + + + + The version of court policy reported by this message. Up to the court to define the format of this, and describe in human-readable court policy. + + + + + Symmetric or asymmetric keys used to encrypt and decrypt, or verify signed messages or documents exchanged with the court. + + + + + Within Court Policy, the policies that are accessed dynamically by applications interacting with a court. + + + + + A structure containing indicators that signal support by the e-filing system for each ECF case type. + + + + + A message profile approved for use by the OASIS LegalXML Member Section Electronic Court Filing Technical Committee that is supported by this court. + + true + + + + + + Name of an MDE operation. + + + + + A signature profile approved for use by the OASIS LegalXML Member Section Electronic Court Filing Technical Committee that is supported by this court. + + true + + + + + + Whether court allows attachments via remote URLs. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\common\xmldsig-core-schema.xsd + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-DocumentQueryMessage.xsd + + + + DocumentQueryMessage + + true + + + + + + + + + + + A request for an electronic document in the court's official record. + + + + + + + + + + + + + A request for an electronic document in the court's official record. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-DocumentResponseMessage.xsd + + + + DocumentResponseMessage + + true + + + + + + + + + + + The court's response to a request for an electronic document in the court's official record. + + + + + + + + + + + + The court's response to a request for an electronic document in the court's official record. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-FeesCalculationQueryMessage.xsd + + + + FeesCalculationQueryMessage + + true + + + + + + + + + + + This query is a request for the total amount of court fees required for filing of one or more documents in a case. + + + + + + + + + + + + This query is a request for the total amount of court fees required for filing of one or more documents in a case. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-FeesCalculationResponseMessage.xsd + + + + FeesCalculationResponseMessage + + true + + + + + + + + + + + The response to a FeesCalculationQueryMessage, which may either be "0" indicating no fee is due, a currency amount indicating the fee due upon filing, or "unknown" indicating that the court's case management information system is unable to calculate the fee for the proposed filing. + + + + + + + + + + + + + A fee or price required to submit a document. + + + + + The response to a FeesCalculationQueryMessage, which may either be "0" indicating no fee is due, a currency amount indicating the fee due upon filing, or "unknown" indicating that the court's case management information system is unable to calculate the fee for the proposed filing. + + +]]>http://www.w3.org/2001/XMLSchemahttp://docs.oasis-open.org/ubl/os-UBL-2.1/xsd/common/UBL-CommonAggregateComponents-2.1.xsd + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ABIE + Activity Data Line. Details + A class to associate a time period and locations (activity data) with an item for inventory planning purposes. + Activity Data Line + + + + + + + + + BBIE + Activity Data Line. Identifier + An identifier for this activity data line. + 1 + Activity Data Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Activity Data Line. Supply Chain Activity Type Code. Code + A code signifying the type of supply chain activity. + 1 + Activity Data Line + Supply Chain Activity Type Code + Code + Code. Type + + + + + + + + + ASBIE + Activity Data Line. Buyer_ Customer Party. Customer Party + The buyer of the item. + 0..1 + Activity Data Line + Buyer + Customer Party + Customer Party + Customer Party + + + + + + + + + ASBIE + Activity Data Line. Seller_ Supplier Party. Supplier Party + The seller of the item. + 0..1 + Activity Data Line + Seller + Supplier Party + Supplier Party + Supplier Party + + + + + + + + + ASBIE + Activity Data Line. Activity_ Period. Period + The period during which the activity is realized. + 0..1 + Activity Data Line + Activity + Period + Period + Period + + + + + + + + + ASBIE + Activity Data Line. Activity Origin_ Location. Location + Either the location where the movement of goods is observed or the location from which the goods are moved. + 1 + Activity Data Line + Activity Origin + Location + Location + Location + + + + + + + + + ASBIE + Activity Data Line. Activity Final_ Location. Location + The location to which the goods are moved. + 0..1 + Activity Data Line + Activity Final + Location + Location + Location + + + + + + + + + ASBIE + Activity Data Line. Sales Item + Sales information for an item to which this line applies. + 1..n + Activity Data Line + Sales Item + Sales Item + Sales Item + + + + + + + + + + + ABIE + Activity Property. Details + A class to define a name/value pair for a property of an inventory planning activity. + Activity Property + + + + + + + + + BBIE + Activity Property. Name + The name of this activity property. + 1 + Activity Property + Name + Name + Name. Type + + + + + + + + + BBIE + Activity Property. Value. Text + The value of this activity property. + 1 + Activity Property + Value + Text + Text. Type + + + + + + + + + + + ABIE + Address. Details + A class to define common information related to an address. + Address + + + + + + + + + BBIE + Address. Identifier + An identifier for this address within an agreed scheme of address identifiers. + 0..1 + Address + Identifier + Identifier + Identifier. Type + DetailsKey + + + + + + + + + BBIE + Address. Address Type Code. Code + A mutually agreed code signifying the type of this address. + 0..1 + Address + Address Type Code + Code + Code. Type + + + + + + + + + BBIE + Address. Address Format Code. Code + A mutually agreed code signifying the format of this address. + 0..1 + Address + Address Format Code + Code + Code. Type + + + + + + + + + BBIE + Address. Postbox. Text + A post office box number registered for postal delivery by a postal service provider. + 0..1 + Address + Postbox + Text + Text. Type + PostBox, PO Box + 123 + + + + + + + + + BBIE + Address. Floor. Text + An identifiable floor of a building. + 0..1 + Address + Floor + Text + Text. Type + SubPremiseNumber + 30 + + + + + + + + + BBIE + Address. Room. Text + An identifiable room, suite, or apartment of a building. + 0..1 + Address + Room + Text + Text. Type + SubPremiseNumber + Reception + + + + + + + + + BBIE + Address. Street Name. Name + The name of the street, road, avenue, way, etc. to which the number of the building is attached. + 0..1 + Address + Street Name + Name + Name. Type + Thoroughfare + Kwun Tong Road + + + + + + + + + BBIE + Address. Additional_ Street Name. Name + An additional street name used to further clarify the address. + 0..1 + Address + Additional + Street Name + Name + Name. Type + Thoroughfare + Cnr Aberdeen Road + + + + + + + + + BBIE + Address. Block Name. Name + The name of the block (an area surrounded by streets and usually containing several buildings) in which this address is located. + 0..1 + Address + Block Name + Name + Name. Type + Seabird + + + + + + + + + BBIE + Address. Building Name. Name + The name of a building. + 0..1 + Address + Building Name + Name + Name. Type + BuildingName + Plot 421 + + + + + + + + + BBIE + Address. Building Number. Text + The number of a building within the street. + 0..1 + Address + Building Number + Text + Text. Type + PremiseNumber + 388 + + + + + + + + + BBIE + Address. Inhouse_ Mail. Text + The specific identifable location within a building where mail is delivered. + 0..1 + Address + Inhouse + Mail + Text + Text. Type + MailStop + + + + + + + + + BBIE + Address. Department. Text + The department of the addressee. + 0..1 + Address + Department + Text + Text. Type + Department + Accounts Payable + + + + + + + + + BBIE + Address. Mark Attention. Text + The name, expressed as text, of a person or department in an organization to whose attention incoming mail is directed; corresponds to the printed forms "for the attention of", "FAO", and ATTN:". + 0..1 + Address + Mark Attention + Text + Text. Type + + + + + + + + + BBIE + Address. Mark Care. Text + The name, expressed as text, of a person or organization at this address into whose care incoming mail is entrusted; corresponds to the printed forms "care of" and "c/o". + 0..1 + Address + Mark Care + Text + Text. Type + + + + + + + + + BBIE + Address. Plot Identification. Text + An identifier (e.g., a parcel number) for the piece of land associated with this address. + 0..1 + Address + Plot Identification + Text + Text. Type + + + + + + + + + BBIE + Address. City Subdivision Name. Name + The name of the subdivision of a city, town, or village in which this address is located, such as the name of its district or borough. + 0..1 + Address + City Subdivision Name + Name + Name. Type + + + + + + + + + BBIE + Address. City Name. Name + The name of a city, town, or village. + 0..1 + Address + City Name + Name + Name. Type + LocalityName + Hong Kong + + + + + + + + + BBIE + Address. Postal_ Zone. Text + The postal identifier for this address according to the relevant national postal service, such as a ZIP code or Post Code. + 0..1 + Address + Postal + Zone + Text + Text. Type + PostalCodeNumber + SW11 4EW 2500 GG + + + + + + + + + BBIE + Address. Country Subentity. Text + The political or administrative division of a country in which this address is located, such as the name of its county, province, or state, expressed as text. + 0..1 + Address + Country Subentity + Text + Text. Type + AdministrativeArea, State, Country, Shire, Canton + Florida , Tamilnadu + + + + + + + + + BBIE + Address. Country Subentity Code. Code + The political or administrative division of a country in which this address is located, such as a county, province, or state, expressed as a code (typically nationally agreed). + 0..1 + Address + Country Subentity Code + Code + Code. Type + AdministrativeAreaCode, State Code + + + + + + + + + BBIE + Address. Region. Text + The recognized geographic or economic region or group of countries in which this address is located. + 0..1 + Address + Region + Text + Text. Type + LocalityName, Economic Zone + European Union + + + + + + + + + BBIE + Address. District. Text + The district or geographical division of a country or region in which this address is located. + 0..1 + Address + District + Text + Text. Type + LocalityName, Area + East Coast + + + + + + + + + BBIE + Address. Timezone Offset. Text + The time zone in which this address is located (as an offset from Universal Coordinated Time (UTC)) at the time of exchange. + 0..1 + Address + Timezone Offset + Text + Text. Type + +8:00 -3:00 + + + + + + + + + ASBIE + Address. Address Line + An unstructured address line. + 0..n + Address + Address Line + Address Line + Address Line + + + + + + + + + ASBIE + Address. Country + The country in which this address is situated. + 0..1 + Address + Country + Country + Country + + + + + + + + + ASBIE + Address. Location Coordinate + The geographical coordinates of this address. + 0..n + Address + Location Coordinate + Location Coordinate + Location Coordinate + + + + + + + + + + + ABIE + Address Line. Details + A class to define an unstructured address line. + Address Line + + + + + + + + + BBIE + Address Line. Line. Text + An address line expressed as unstructured text. + 1 + Address Line + Line + Text + Text. Type + 123 Standard Chartered Tower + + + + + + + + + + + ABIE + Air Transport. Details + A class to identify a specific aircraft used for transportation. + Air Transport + + + + + + + + + BBIE + Air Transport. Aircraft Identifier. Identifier + An identifer for a specific aircraft. + 1 + Air Transport + Aircraft Identifier + Identifier + Identifier. Type + + + + + + + + + + + ABIE + Allowance Charge. Details + A class to describe information about a charge or discount as applied to a price component. + Allowance Charge + + + + + + + + + BBIE + Allowance Charge. Identifier + An identifier for this allowance or charge. + 0..1 + Allowance Charge + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Allowance Charge. Charge_ Indicator. Indicator + An indicator that this AllowanceCharge describes a charge (true) or a discount (false). + 1 + Allowance Charge + Charge + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Allowance Charge. Allowance Charge Reason Code. Code + A mutually agreed code signifying the reason for this allowance or charge. + 0..1 + Allowance Charge + Allowance Charge Reason Code + Code + Allowance Charge Reason + Allowance Charge Reason_ Code. Type + + + + + + + + + BBIE + Allowance Charge. Allowance Charge_ Reason. Text + The reason for this allowance or charge. + 0..n + Allowance Charge + Allowance Charge + Reason + Text + Text. Type + + + + + + + + + BBIE + Allowance Charge. Multiplier_ Factor. Numeric + A number by which the base amount is multiplied to calculate the actual amount of this allowance or charge. + 0..1 + Allowance Charge + Multiplier + Factor + Numeric + Numeric. Type + 0.20 + + + + + + + + + BBIE + Allowance Charge. Prepaid_ Indicator. Indicator + An indicator that this allowance or charge is prepaid (true) or not (false). + 0..1 + Allowance Charge + Prepaid + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Allowance Charge. Sequence. Numeric + A number indicating the order of this allowance or charge in the sequence of calculations applied when there are multiple allowances or charges. + 0..1 + Allowance Charge + Sequence + Numeric + Numeric. Type + 1, 2, 3, 4, etc. + + + + + + + + + BBIE + Allowance Charge. Amount + The monetary amount of this allowance or charge to be applied. + 1 + Allowance Charge + Amount + Amount + Amount. Type + 35,23 + + + + + + + + + BBIE + Allowance Charge. Base_ Amount. Amount + The monetary amount to which the multiplier factor is applied in calculating the amount of this allowance or charge. + 0..1 + Allowance Charge + Base + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Allowance Charge. Accounting Cost Code. Code + The accounting cost centre used by the buyer to account for this allowance or charge, expressed as a code. + 0..1 + Allowance Charge + Accounting Cost Code + Code + Code. Type + + + + + + + + + BBIE + Allowance Charge. Accounting Cost. Text + The accounting cost centre used by the buyer to account for this allowance or charge, expressed as text. + 0..1 + Allowance Charge + Accounting Cost + Text + Text. Type + + + + + + + + + BBIE + Allowance Charge. Per Unit_ Amount. Amount + The allowance or charge per item; the total allowance or charge is calculated by multiplying the per unit amount by the quantity of items, either at the level of the individual transaction line or for the total number of items in the document, depending on the context in which it appears. + 0..1 + Allowance Charge + Per Unit + Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Allowance Charge. Tax Category + A tax category applicable to this allowance or charge. + 0..n + Allowance Charge + Tax Category + Tax Category + Tax Category + + + + + + + + + ASBIE + Allowance Charge. Tax Total + The total of all the taxes applicable to this allowance or charge. + 0..1 + Allowance Charge + Tax Total + Tax Total + Tax Total + + + + + + + + + ASBIE + Allowance Charge. Payment Means + A means of payment for this allowance or charge. + 0..n + Allowance Charge + Payment Means + Payment Means + Payment Means + + + + + + + + + + + ABIE + Appeal Terms. Details + A class to describe the terms and conditions, set by the contracting authority, under which an appeal can be lodged for a tender award. + Appeal Terms + + + + + + + + + BBIE + Appeal Terms. Description. Text + Text describing the terms of an appeal. + 0..n + Appeal Terms + Description + Text + Text. Type + + + + + + + + + ASBIE + Appeal Terms. Presentation_ Period. Period + The period during which an appeal can be presented. + 0..1 + Appeal Terms + Presentation + Period + Period + Period + + + + + + + + + ASBIE + Appeal Terms. Appeal Information_ Party. Party + The party presenting the information for an appeal. + 0..1 + Appeal Terms + Appeal Information + Party + Party + Party + + + + + + + + + ASBIE + Appeal Terms. Appeal Receiver_ Party. Party + The party to whom an appeal should be presented. + 0..1 + Appeal Terms + Appeal Receiver + Party + Party + Party + + + + + + + + + ASBIE + Appeal Terms. Mediation_ Party. Party + The party that has been appointed to mediate any appeal. + 0..1 + Appeal Terms + Mediation + Party + Party + Party + + + + + + + + + + + ABIE + Attachment. Details + A class to describe an attached document. An attachment can refer to an external document or be included with the document being exchanged. + Attachment + + + + + + + + + BBIE + Attachment. Embedded_ Document. Binary Object + A binary large object containing an attached document. + 0..1 + Attachment + Embedded + Document + Binary Object + Binary Object. Type + + + + + + + + + ASBIE + Attachment. External Reference + A reference to an attached document that is external to the document(s) being exchanged. + 0..1 + Attachment + External Reference + External Reference + External Reference + + + + + + + + + + + ABIE + Auction Terms. Details + A class to describe the terms to be fulfilled by tenderers if an auction is to be executed before the awarding of a tender. + Auction Terms + + + + + + + + + BBIE + Auction Terms. Auction_ Constraint. Indicator + Indicates whether an electronic auction will be used before the awarding of a contract (true) or not (false). + 0..1 + Auction Terms + Auction + Constraint + Indicator + Indicator. Type + + + + + + + + + BBIE + Auction Terms. Justification_ Description. Text + Text describing a justification for the use of an auction in awarding the tender. + 0..n + Auction Terms + Justification + Description + Text + Text. Type + + + + + + + + + BBIE + Auction Terms. Description. Text + Text for tenderers describing terms governing the auction. + 0..n + Auction Terms + Description + Text + Text. Type + + + + + + + + + BBIE + Auction Terms. Process_ Description. Text + Text describing the auction process. + 0..n + Auction Terms + Process + Description + Text + Text. Type + + + + + + + + + BBIE + Auction Terms. Conditions_ Description. Text + Text describing the conditions under which the tenderers will be able to bid as part of the auction. + 0..n + Auction Terms + Conditions + Description + Text + Text. Type + + + + + + + + + BBIE + Auction Terms. Electronic Device_ Description. Text + Text describing an electronic device used for the auction, including associated connectivity specifications. + 0..n + Auction Terms + Electronic Device + Description + Text + Text. Type + + + + + + + + + BBIE + Auction Terms. Auction_ URI. Identifier + The Uniform Resource Identifier (URI) of the electronic device used for the auction. + 0..1 + Auction Terms + Auction + URI + Identifier + Identifier. Type + + + + + + + + + + + ABIE + Awarding Criterion. Details + A class to define a criterion from the contracting party that will be taken into account when awarding a contract. An awarding criterion can be objective, when it can be evaluated following a formula, or subjective, when human analysis is required. + Awarding Criterion + + + + + + + + + BBIE + Awarding Criterion. Identifier + Identifies a specific awarding criterion. + 0..1 + Awarding Criterion + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Awarding Criterion. Awarding Criterion Type Code. Code + A code used to define this awarding criterion. + 0..1 + Awarding Criterion + Awarding Criterion Type Code + Code + Code. Type + + + + + + + + + BBIE + Awarding Criterion. Description. Text + A description of the awarding criterion. + 0..n + Awarding Criterion + Description + Text + Text. Type + + + + + + + + + BBIE + Awarding Criterion. Weight Numeric. Numeric + A number defining the comparative weighting assigned to this awarding criterion, to enable formulaic evaluation. + 0..1 + Awarding Criterion + Weight Numeric + Numeric + Numeric. Type + + + + + + + + + BBIE + Awarding Criterion. Weight. Text + A description of the comparative weighting for this awarding criterion. + 0..n + Awarding Criterion + Weight + Text + Text. Type + + + + + + + + + BBIE + Awarding Criterion. Calculation Expression. Text + The mathematical expression that will be used to evaluate this criterion. + 0..n + Awarding Criterion + Calculation Expression + Text + Text. Type + + + + + + + + + BBIE + Awarding Criterion. Calculation Expression Code. Code + A code identifying the mathematical expression that will be used to evaluate this criterion. + 0..1 + Awarding Criterion + Calculation Expression Code + Code + Code. Type + + + + + + + + + BBIE + Awarding Criterion. Minimum_ Quantity. Quantity + The minimum quantity for an awarding criterion. + 0..1 + Awarding Criterion + Minimum + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Awarding Criterion. Maximum_ Quantity. Quantity + The maximum quantity for an awarding criterion. + 0..1 + Awarding Criterion + Maximum + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Awarding Criterion. Minimum_ Amount. Amount + The minimum monetary amount for an awarding criterion. + 0..1 + Awarding Criterion + Minimum + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Awarding Criterion. Maximum_ Amount. Amount + The maximum monetary amount for an awarding criterion. + 0..1 + Awarding Criterion + Maximum + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Awarding Criterion. Minimum Improvement Bid. Text + Describes the minimum improvement bid for this awarding criterion when used in an auction. + 0..n + Awarding Criterion + Minimum Improvement Bid + Text + Text. Type + + + + + + + + + ASBIE + Awarding Criterion. Subordinate_ Awarding Criterion. Awarding Criterion + Defines any subsidiary awarding criterion. + 0..n + Awarding Criterion + Subordinate + Awarding Criterion + Awarding Criterion + Awarding Criterion + + + + + + + + + + + ABIE + Awarding Criterion Response. Details + Defines the response for an awarding criterion from the tendering party. + Awarding Criterion Response + + + + + + + + + BBIE + Awarding Criterion Response. Identifier + An identification of this awarding criterion response. + 0..1 + Awarding Criterion Response + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Awarding Criterion Response. Awarding Criterion Identifier. Identifier + An identifer of the awarding criterion being referred to. + 0..1 + Awarding Criterion Response + Awarding Criterion Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Awarding Criterion Response. Awarding Criterion_ Description. Text + Describes the awarding criterion. + 0..n + Awarding Criterion Response + Awarding Criterion + Description + Text + Text. Type + + + + + + + + + BBIE + Awarding Criterion Response. Description. Text + Describes the awarding criterion response. + 0..n + Awarding Criterion Response + Description + Text + Text. Type + + + + + + + + + BBIE + Awarding Criterion Response. Quantity + Specifies the quantity tendered for this awarding criterion. + 0..1 + Awarding Criterion Response + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Awarding Criterion Response. Amount + Specifies the monetary amount tendered for this awarding criterion. + 0..1 + Awarding Criterion Response + Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Awarding Criterion Response. Subordinate_ Awarding Criterion Response. Awarding Criterion Response + Defines responses to any subsidiary awarding criterion. + 0..n + Awarding Criterion Response + Subordinate + Awarding Criterion Response + Awarding Criterion Response + Awarding Criterion Response + + + + + + + + + + + ABIE + Awarding Terms. Details + A class to define the terms for awarding a contract. + Awarding Terms + + + + + + + + + BBIE + Awarding Terms. Weighting Algorithm Code. Code + A code signifying the weighting algorithm for awarding criteria. When multiple awarding criteria is used, different weighting and choices management algorithms based upon scores and weights of all award criteria can be used. An algorithm for weighting criteria shall be reported in the call for tenders document. It is used to determine how to perform the final management of tenders based on the results in each of the established award criteria + 0..1 + Awarding Terms + Weighting Algorithm Code + Code + Code. Type + + + + + + + + + BBIE + Awarding Terms. Description. Text + Text describing terms under which the contract is to be awarded. + 0..n + Awarding Terms + Description + Text + Text. Type + + + + + + + + + BBIE + Awarding Terms. Technical Committee_ Description. Text + Text describing the committee of experts evaluating the subjective criteria for awarding the contract. + 0..n + Awarding Terms + Technical Committee + Description + Text + Text. Type + + + + + + + + + BBIE + Awarding Terms. Low Tenders_ Description. Text + Text describing the exclusion criterion for abnormally low tenders. + 0..n + Awarding Terms + Low Tenders + Description + Text + Text. Type + + + + + + + + + BBIE + Awarding Terms. Prize Indicator. Indicator + Indicates whether a prize will be awarded (true) or not (false). + 0..1 + Awarding Terms + Prize Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Awarding Terms. Prize Description. Text + Number and value of the prizes to be awarded. + 0..n + Awarding Terms + Prize Description + Text + Text. Type + + + + + + + + + BBIE + Awarding Terms. Payment Description. Text + Details of payments to all participants. + 0..n + Awarding Terms + Payment Description + Text + Text. Type + + + + + + + + + BBIE + Awarding Terms. Followup Contract Indicator. Indicator + Indicates if any service contract following the contest will be awarded to the winner or one of the winners of the contest (true) or not (false). + 0..1 + Awarding Terms + Followup Contract Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Awarding Terms. Binding On Buyer Indicator. Indicator + Indicates if the decision is binding on the buyer (true) or not (false). + 0..1 + Awarding Terms + Binding On Buyer Indicator + Indicator + Indicator. Type + + + + + + + + + ASBIE + Awarding Terms. Awarding Criterion + Defines a criterion for awarding this tender. + 0..n + Awarding Terms + Awarding Criterion + Awarding Criterion + Awarding Criterion + + + + + + + + + ASBIE + Awarding Terms. Technical Committee_ Person. Person + A member of a committee of experts evaluating the subjective criteria for awarding the contract. + 0..n + Awarding Terms + Technical Committee + Person + Person + Person + + + + + + + + + + + ABIE + Billing Reference. Details + A class to define a reference to a billing document. + Billing Reference + + + + + + + + + ASBIE + Billing Reference. Invoice_ Document Reference. Document Reference + A reference to an invoice. + 0..1 + Billing Reference + Invoice + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Billing Reference. Self Billed Invoice_ Document Reference. Document Reference + A reference to a self billed invoice. + 0..1 + Billing Reference + Self Billed Invoice + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Billing Reference. Credit Note_ Document Reference. Document Reference + A reference to a credit note. + 0..1 + Billing Reference + Credit Note + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Billing Reference. Self Billed Credit Note_ Document Reference. Document Reference + A reference to a self billed credit note. + 0..1 + Billing Reference + Self Billed Credit Note + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Billing Reference. Debit Note_ Document Reference. Document Reference + A reference to a debit note. + 0..1 + Billing Reference + Debit Note + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Billing Reference. Reminder_ Document Reference. Document Reference + A reference to a billing reminder. + 0..1 + Billing Reference + Reminder + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Billing Reference. Additional_ Document Reference. Document Reference + A reference to an additional document. + 0..1 + Billing Reference + Additional + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Billing Reference. Billing Reference Line + A reference to a transaction line in the billing document. + 0..n + Billing Reference + Billing Reference Line + Billing Reference Line + Billing Reference Line + + + + + + + + + + + ABIE + Billing Reference Line. Details + A class to define a reference to a transaction line in a billing document. + Billing Reference Line + + + + + + + + + BBIE + Billing Reference Line. Identifier + An identifier for this transaction line in a billing document. + 1 + Billing Reference Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Billing Reference Line. Amount + The monetary amount of the transaction line, including any allowances and charges but excluding taxes. + 0..1 + Billing Reference Line + Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Billing Reference Line. Allowance Charge + An allowance or charge applicable to the transaction line. + 0..n + Billing Reference Line + Allowance Charge + Allowance Charge + Allowance Charge + + + + + + + + + + + ABIE + Branch. Details + A class to describe a branch or a division of an organization. + Branch + + + + + + + + + BBIE + Branch. Identifier + An identifier for this branch or division of an organization. + 0..1 + Branch + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Branch. Name + The name of this branch or division of an organization. + 0..1 + Branch + Name + Name + Name. Type + + + + + + + + + ASBIE + Branch. Financial Institution + The financial institution that this branch belongs to (if applicable). + 0..1 + Branch + Financial Institution + Financial Institution + Financial Institution + + + + + + + + + ASBIE + Branch. Address + The address of this branch or division. + 0..1 + Branch + Address + Address + Address + + + + + + + + + + + ABIE + Budget Account. Details + A class to define a budget account. + Budget Account + + + + + + + + + BBIE + Budget Account. Identifier + An identifier for the budget account, typically an internal accounting reference. + 0..1 + Budget Account + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Budget Account. Budget Year. Numeric + The number of the year for this budget account, e.g. 2012 + 0..1 + Budget Account + Budget Year + Numeric + Numeric. Type + + + + + + + + + ASBIE + Budget Account. Required_ Classification Scheme. Classification Scheme + A classification scheme required for this budget account. + 0..1 + Budget Account + Required + Classification Scheme + Classification Scheme + Classification Scheme + + + + + + + + + + + ABIE + Budget Account Line. Details + A class to define a budget account line. + Budget Account Line + + + + + + + + + BBIE + Budget Account Line. Identifier + An identifier for this budget account line. + 0..1 + Budget Account Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Budget Account Line. Total_ Amount. Amount + The total monetary amount for this budget account line. + 0..1 + Budget Account Line + Total + Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Budget Account Line. Budget Account + An account covering this budget account line. + 0..n + Budget Account Line + Budget Account + Budget Account + Budget Account + + + + + + + + + + + ABIE + Capability. Details + A class to describe a specific capability of an organization. + Capability + + + + + + + + + BBIE + Capability. Capability Type Code. Code + This class can be used as Financial or Technical capabilities. For instance, "Turnover" or "Qualified Engineers" are two possible codes. + 0..1 + Capability + Capability Type Code + Code + Code. Type + + + + + + + + + BBIE + Capability. Description. Text + Text describing this capability. + 0..n + Capability + Description + Text + Text. Type + + + + + + + + + BBIE + Capability. Value. Amount + A monetary amount as a measure of this capability. + 0..1 + Capability + Value + Amount + Amount. Type + + + + + + + + + BBIE + Capability. Value_ Quantity. Quantity + A quantity as a measure of this capability. + 0..1 + Capability + Value + Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Capability. Evidence Supplied + The evidence that supports the capability claim. + 0..n + Capability + Evidence Supplied + Evidence Supplied + Evidence Supplied + + + + + + + + + ASBIE + Capability. Validity_ Period. Period + The period of time for which this capability is (or has been) valid. + 0..1 + Capability + Validity + Period + Period + Period + + + + + + + + + + + ABIE + Card Account. Details + A class to define a credit card, debit card, or charge card account. + Card Account + + + + + + + + + BBIE + Card Account. Primary_ Account Number. Identifier + An identifier of the card (e.g., the Primary Account Number (PAN)). + 1 + Card Account + Primary + Account Number + Identifier + Identifier. Type + 4558 XXXX XXXX XXXX (a real card number) + + + + + + + + + BBIE + Card Account. Network. Identifier + An identifier for the financial service network provider of the card. + 1 + Card Account + Network + Identifier + Identifier. Type + VISA, MasterCard, American Express + + + + + + + + + BBIE + Card Account. Card Type Code. Code + A mutually agreed code signifying the type of card. Examples of types are "debit", "credit" and "purchasing" + 0..1 + Card Account + Card Type Code + Code + Code. Type + Debit Card, Credit Card, Procurement Card + + + + + + + + + BBIE + Card Account. Validity Start Date. Date + The date from which the card is valid. + 0..1 + Card Account + Validity Start Date + Date + Date. Type + + + + + + + + + BBIE + Card Account. Expiry Date. Date + The date on which the card expires. + 0..1 + Card Account + Expiry Date + Date + Date. Type + + + + + + + + + BBIE + Card Account. Issuer. Identifier + An identifier for the institution issuing the card. + 0..1 + Card Account + Issuer + Identifier + Identifier. Type + + + + + + + + + BBIE + Card Account. Issue Number. Identifier + An identifier for the card, specified by the issuer. + 0..1 + Card Account + Issue Number + Identifier + Identifier. Type + + + + + + + + + BBIE + Card Account. CV2. Identifier + An identifier for the Card Verification Value (often found on the reverse of the card itself). + 0..1 + Card Account + CV2 + Identifier + Identifier. Type + + + + + + + + + BBIE + Card Account. Card Chip Code. Code + A mutually agreed code to distinguish between CHIP and MAG STRIPE cards. + 0..1 + Card Account + Card Chip Code + Code + Chip + Chip_ Code. Type + + + + + + + + + BBIE + Card Account. Chip_ Application. Identifier + An identifier on the chip card for the application that provides the quoted information; an AID (application ID). + 0..1 + Card Account + Chip + Application + Identifier + Identifier. Type + + + + + + + + + BBIE + Card Account. Holder. Name + The name of the cardholder. + 0..1 + Card Account + Holder + Name + Name. Type + + + + + + + + + + + ABIE + Catalogue Item Specification Update Line. Details + A class to define a line describing the transaction that updates the specification of an item in a catalogue. + Catalogue Item Specification Update Line + + + + + + + + + BBIE + Catalogue Item Specification Update Line. Identifier + An identifier for the line to be updated in a catalogue. + 1 + Catalogue Item Specification Update Line + Identifier + Identifier + Identifier. Type + 1 + + + + + + + + + ASBIE + Catalogue Item Specification Update Line. Contractor_ Customer Party. Customer Party + The customer responsible for the contract associated with the catalogue item. + 0..1 + Catalogue Item Specification Update Line + Contractor + Customer Party + Customer Party + Customer Party + + + + + + + + + ASBIE + Catalogue Item Specification Update Line. Seller_ Supplier Party. Supplier Party + The seller/supplier responsible for the contract associated with the catalogue item. + 0..1 + Catalogue Item Specification Update Line + Seller + Supplier Party + Supplier Party + Supplier Party + + + + + + + + + ASBIE + Catalogue Item Specification Update Line. Item + The catalogue item to be updated. + 1 + Catalogue Item Specification Update Line + Item + Item + Item + + + + + + + + + + + ABIE + Catalogue Line. Details + A class to define a line in a Catalogue describing a purchasable item. + Catalogue Line + + + + + + + + + BBIE + Catalogue Line. Identifier + An identifier for the line in the catalogue. + 1 + Catalogue Line + Identifier + Identifier + Identifier. Type + 1 + + + + + + + + + BBIE + Catalogue Line. Action Code. Code + A code signifying the action required to synchronize this catalogue line. Recommend codes (delete, update, add) + 0..1 + Catalogue Line + Action Code + Code + Code. Type + Replace , Update , Delete , Add + + + + + + + + + BBIE + Catalogue Line. Life Cycle Status Code. Code + A code signifying the life cycle status of this catalogue line. Examples are pre-order, end of production + 0..1 + Catalogue Line + Life Cycle Status Code + Code + Code. Type + new - announcement only , new and available , deleted - announcement only + + + + + + + + + BBIE + Catalogue Line. Contract Subdivision. Text + A subdivision of a contract or tender covering this catalogue line. + 0..1 + Catalogue Line + Contract Subdivision + Text + Text. Type + Installation , Phase One , Support and Maintenance + + + + + + + + + BBIE + Catalogue Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Catalogue Line + Note + Text + Text. Type + + + + + + + + + BBIE + Catalogue Line. Orderable_ Indicator. Indicator + An indicator that this catalogue line describes an orderable item (true) or is included for reference purposes only (false). + 0..1 + Catalogue Line + Orderable + Indicator + Indicator + Indicator. Type + TRUE means orderable, FALSE means not orderable + + + + + + + + + BBIE + Catalogue Line. Orderable_ Unit. Text + A textual description of the units in which the item described in this catalogue line can be ordered. + 0..1 + Catalogue Line + Orderable + Unit + Text + Text. Type + + + + + + + + + BBIE + Catalogue Line. Content Unit. Quantity + The numeric quantity of the ordering unit (and units of measure) of the catalogue line. + 0..1 + Catalogue Line + Content Unit + Quantity + Quantity. Type + If order unit measure identifier is each , then content unit quantity is 1 . + + + + + + + + + BBIE + Catalogue Line. Order Quantity Increment. Numeric + The number of items that can set the order quantity increments. + 0..1 + Catalogue Line + Order Quantity Increment + Numeric + Numeric. Type + + + + + + + + + BBIE + Catalogue Line. Minimum_ Order Quantity. Quantity + The minimum amount of the item described in this catalogue line that can be ordered. + 0..1 + Catalogue Line + Minimum + Order Quantity + Quantity + Quantity. Type + 10 boxes + + + + + + + + + BBIE + Catalogue Line. Maximum_ Order Quantity. Quantity + The maximum amount of the item described in this catalogue line that can be ordered. + 0..1 + Catalogue Line + Maximum + Order Quantity + Quantity + Quantity. Type + 1 tonne + + + + + + + + + BBIE + Catalogue Line. Warranty_ Information. Text + Text about a warranty (provided by WarrantyParty) for the good or service described in this catalogue line. + 0..n + Catalogue Line + Warranty + Information + Text + Text. Type + Unless specified otherwise and in addition to any rights the Customer may have under statute, Dell warrants to the Customer that Dell branded Products (excluding third party products and software), will be free from defects in materials and workmanship affecting normal use for a period of one year from invoice date ( Standard Warranty ). + + + + + + + + + BBIE + Catalogue Line. Pack Level Code. Code + A mutually agreed code signifying the level of packaging associated with the item described in this catalogue line. + 0..1 + Catalogue Line + Pack Level Code + Code + Code. Type + Consumer Unit, Trading Unit + level 2 , Group 4 + + + + + + + + + ASBIE + Catalogue Line. Contractor_ Customer Party. Customer Party + The customer responsible for the contract with which this catalogue line is associated. + 0..1 + Catalogue Line + Contractor + Customer Party + Customer Party + Customer Party + + + + + + + + + ASBIE + Catalogue Line. Seller_ Supplier Party. Supplier Party + The seller/supplier responsible for the contract with which this catalogue line is associated. + 0..1 + Catalogue Line + Seller + Supplier Party + Supplier Party + Supplier Party + + + + + + + + + ASBIE + Catalogue Line. Warranty_ Party. Party + The party responsible for any warranty associated with the item described in this catalogue line. + 0..1 + Catalogue Line + Warranty + Party + Party + Party + + + + + + + + + ASBIE + Catalogue Line. Warranty Validity_ Period. Period + The period for which a warranty associated with the item in this catalogue line is valid. + 0..1 + Catalogue Line + Warranty Validity + Period + Period + Period + + + + + + + + + ASBIE + Catalogue Line. Line Validity_ Period. Period + The period for which the information in this catalogue line is valid. + 0..1 + Catalogue Line + Line Validity + Period + Period + Period + + + + + + + + + ASBIE + Catalogue Line. Item Comparison + A combination of price and quantity used to provide price comparisons based on different sizes of order. + 0..n + Catalogue Line + Item Comparison + Item Comparison + Item Comparison + + + + + + + + + ASBIE + Catalogue Line. Component_ Related Item. Related Item + An item that may be a component of the item in this catalogue line. + 0..n + Catalogue Line + Component + Related Item + Related Item + Related Item + + + + + + + + + ASBIE + Catalogue Line. Accessory_ Related Item. Related Item + An item that may be an optional accessory of the item in this catalogue line. + 0..n + Catalogue Line + Accessory + Related Item + Related Item + Related Item + + + + + + + + + ASBIE + Catalogue Line. Required_ Related Item. Related Item + An item that may be required for the item in this catalogue line. + 0..n + Catalogue Line + Required + Related Item + Related Item + Related Item + + + + + + + + + ASBIE + Catalogue Line. Replacement_ Related Item. Related Item + An item that may be a replacement for the item in this catalogue line. + 0..n + Catalogue Line + Replacement + Related Item + Related Item + Related Item + + + + + + + + + ASBIE + Catalogue Line. Complementary_ Related Item. Related Item + An item that may complement the item in this catalogue line. + 0..n + Catalogue Line + Complementary + Related Item + Related Item + Related Item + + + + + + + + + ASBIE + Catalogue Line. Replaced_ Related Item. Related Item + An item in an existing catalogue that is being replaced by the item in this catalogue line. + 0..n + Catalogue Line + Replaced + Related Item + Related Item + Related Item + + + + + + + + + ASBIE + Catalogue Line. Required_ Item Location Quantity. Item Location Quantity + Properties of the item in this catalogue line that are dependent on location and quantity. + 0..n + Catalogue Line + Required + Item Location Quantity + Item Location Quantity + Item Location Quantity + + + + + + + + + ASBIE + Catalogue Line. Document Reference + A reference to a document associated with this catalogue line. + 0..n + Catalogue Line + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Catalogue Line. Item + A specification of the item itself. + 1 + Catalogue Line + Item + Item + Item + + + + + + + + + ASBIE + Catalogue Line. Keyword_ Item Property. Item Property + A property of the item in this catalogue line. + 0..n + Catalogue Line + Keyword + Item Property + Item Property + Item Property + + + + + + + + + ASBIE + Catalogue Line. Call For Tenders_ Line Reference. Line Reference + Reference to a Line on a Call For Tenders document. + 0..1 + Catalogue Line + Call For Tenders + Line Reference + Line Reference + Line Reference + + + + + + + + + ASBIE + Catalogue Line. Call For Tenders_ Document Reference. Document Reference + A class defining references to a Call For Tenders document. + 0..1 + Catalogue Line + Call For Tenders + Document Reference + Document Reference + Document Reference + + + + + + + + + + + ABIE + Catalogue Pricing Update Line. Details + A class to define a line describing a pricing update to a catalogue line. + Catalogue Pricing Update Line + + + + + + + + + BBIE + Catalogue Pricing Update Line. Identifier + An identifier for the catalogue line to be updated. + 1 + Catalogue Pricing Update Line + Identifier + Identifier + Identifier. Type + 1 + + + + + + + + + ASBIE + Catalogue Pricing Update Line. Contractor_ Customer Party. Customer Party + The customer responsible for the contract associated with the catalogue line being updated. + 0..1 + Catalogue Pricing Update Line + Contractor + Customer Party + Customer Party + Customer Party + + + + + + + + + ASBIE + Catalogue Pricing Update Line. Seller_ Supplier Party. Supplier Party + The seller/supplier responsible for the contract associated with the catalogue line being updated. + 0..1 + Catalogue Pricing Update Line + Seller + Supplier Party + Supplier Party + Supplier Party + + + + + + + + + ASBIE + Catalogue Pricing Update Line. Required_ Item Location Quantity. Item Location Quantity + Updated properties of the item in this catalogue line that are dependent on location and quantity. + 0..n + Catalogue Pricing Update Line + Required + Item Location Quantity + Item Location Quantity + Item Location Quantity + + + + + + + + + + + ABIE + Catalogue Reference. Details + A class to define a reference to a catalogue. + Catalogue Reference + + + + + + + + + BBIE + Catalogue Reference. Identifier + An identifier for a specific catalogue. + 1 + Catalogue Reference + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Catalogue Reference. UUID. Identifier + A universally unique identifier for a specific catalogue. + 0..1 + Catalogue Reference + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Catalogue Reference. Issue Date. Date + The date on which the catalogue was issued. + 0..1 + Catalogue Reference + Issue Date + Date + Date. Type + + + + + + + + + BBIE + Catalogue Reference. Issue Time. Time + The time at which the catalogue was issued. + 0..1 + Catalogue Reference + Issue Time + Time + Time. Type + + + + + + + + + BBIE + Catalogue Reference. Revision Date. Date + The date on which the information in the catalogue was last revised. + 0..1 + Catalogue Reference + Revision Date + Date + Date. Type + + + + + + + + + BBIE + Catalogue Reference. Revision Time. Time + The time at which the information in the catalogue was last revised. + 0..1 + Catalogue Reference + Revision Time + Time + Time. Type + + + + + + + + + BBIE + Catalogue Reference. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Catalogue Reference + Note + Text + Text. Type + + + + + + + + + BBIE + Catalogue Reference. Description. Text + Text describing the catalogue. + 0..n + Catalogue Reference + Description + Text + Text. Type + computer accessories for laptops + + + + + + + + + BBIE + Catalogue Reference. Version. Identifier + An identifier for the current version of the catalogue. + 0..1 + Catalogue Reference + Version + Identifier + Identifier. Type + 1.1 + + + + + + + + + BBIE + Catalogue Reference. Previous_ Version. Identifier + An identifier for the previous version of the catalogue that is superseded by this version. + 0..1 + Catalogue Reference + Previous + Version + Identifier + Identifier. Type + 1.0 + + + + + + + + + + + ABIE + Catalogue Request Line. Details + A class to define a line describing a request for a catalogue line. + Catalogue Request Line + + + + + + + + + BBIE + Catalogue Request Line. Identifier + An identifier for the requested catalogue line. + 1 + Catalogue Request Line + Identifier + Identifier + Identifier. Type + 1 + + + + + + + + + BBIE + Catalogue Request Line. Contract Subdivision. Text + A subdivision of a contract or tender covering the line being requested. + 0..1 + Catalogue Request Line + Contract Subdivision + Text + Text. Type + Installation , Phase One , Support and Maintenance + + + + + + + + + BBIE + Catalogue Request Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Catalogue Request Line + Note + Text + Text. Type + + + + + + + + + ASBIE + Catalogue Request Line. Line Validity_ Period. Period + The period for which the information in the requested catalogue line is valid. + 0..1 + Catalogue Request Line + Line Validity + Period + Period + Period + + + + + + + + + ASBIE + Catalogue Request Line. Required_ Item Location Quantity. Item Location Quantity + Properties of the item in the requested catalogue line that are dependent on location and quantity. + 0..n + Catalogue Request Line + Required + Item Location Quantity + Item Location Quantity + Item Location Quantity + + + + + + + + + ASBIE + Catalogue Request Line. Item + The item associated with the requested catalogue line. + 1 + Catalogue Request Line + Item + Item + Item + + + + + + + + + + + ABIE + Certificate. Details + A class to define a certificate applied to the item. Certificated can be a requirement to sell goods or services in a jurisdiction. + Certificate + + + + + + + + + BBIE + Certificate. Identifier + An identifier for this certificate. + 1 + Certificate + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Certificate. Certificate Type Code. Code + The type of this certificate, expressed as a code. The type specifies what array it belongs to, e.g.. Environmental, security, health improvement etc. + 1 + Certificate + Certificate Type Code + Code + Code. Type + + + + + + + + + BBIE + Certificate. Certificate Type. Text + The type of this certificate, expressed as a code. The type specifies what array it belongs to, e.g.. Environmental, security, health improvement etc. + 1 + Certificate + Certificate Type + Text + Text. Type + + + + + + + + + BBIE + Certificate. Remarks. Text + Remarks by the applicant for this certificate. + 0..n + Certificate + Remarks + Text + Text. Type + + + + + + + + + ASBIE + Certificate. Issuer_ Party. Party + The authorized organization that issued this certificate, the provider of the certificate. + 1 + Certificate + Issuer + Party + Party + Party + + + + + + + + + ASBIE + Certificate. Document Reference + A reference to a document relevant to this certificate or an application for this certificate. + 0..n + Certificate + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Certificate. Signature + A signature applied to this certificate. + 0..n + Certificate + Signature + Signature + Signature + + + + + + + + + + + ABIE + Certificate Of Origin Application. Details + A class to define an application for a Certificate of Origin (CoO). + Certificate Of Origin Application + + + + + + + + + BBIE + Certificate Of Origin Application. Reference. Identifier + An identifier for a reference as part of the CoO application. + 1 + Certificate Of Origin Application + Reference + Identifier + Identifier. Type + + + + + + + + + BBIE + Certificate Of Origin Application. Certificate Type. Text + The type of CoO being applied for (Ordinary, Re-export, Commonwealth Preferential, etc.). + 1 + Certificate Of Origin Application + Certificate Type + Text + Text. Type + + + + + + + + + BBIE + Certificate Of Origin Application. Application Status Code. Code + A code signifying the status of the application (revision, replacement, etc.). + 0..1 + Certificate Of Origin Application + Application Status Code + Code + Code. Type + + + + + + + + + BBIE + Certificate Of Origin Application. Original_ Job Identifier. Identifier + The latest job number given to the CoO application. This is used by the system to keep track of amendments to or cancellation of any earlier applications. + 1 + Certificate Of Origin Application + Original + Job Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Certificate Of Origin Application. Previous_ Job Identifier. Identifier + An identifier for the previous job used in case the application requires query or change. + 0..1 + Certificate Of Origin Application + Previous + Job Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Certificate Of Origin Application. Remarks. Text + Remarks by the applicant for the CoO. + 0..n + Certificate Of Origin Application + Remarks + Text + Text. Type + + + + + + + + + ASBIE + Certificate Of Origin Application. Shipment + The shipment of goods covered by the CoO. + 1 + Certificate Of Origin Application + Shipment + Shipment + Shipment + + + + + + + + + ASBIE + Certificate Of Origin Application. Endorser Party + A party providing an endorsement to the CoO. + 1..n + Certificate Of Origin Application + Endorser Party + Endorser Party + Endorser Party + + + + + + + + + ASBIE + Certificate Of Origin Application. Preparation_ Party. Party + The party (individual, group, or body) that prepared this CoO application. + 1 + Certificate Of Origin Application + Preparation + Party + Party + Party + + + + + + + + + ASBIE + Certificate Of Origin Application. Issuer_ Party. Party + The organization authorized to issue the CoO requested by this application. + 1 + Certificate Of Origin Application + Issuer + Party + Party + Party + + + + + + + + + ASBIE + Certificate Of Origin Application. Exporter_ Party. Party + The party making an export declaration, or on behalf of which the export declaration is made, and that is the owner of the goods or has similar right of disposal over them at the time when the declaration is accepted. + 0..1 + Certificate Of Origin Application + Exporter + Party + Party + Party + Exporter (WCO ID 41 and 42) + + + + + + + + + ASBIE + Certificate Of Origin Application. Importer_ Party. Party + The party making an import declaration, or on behalf of which a customs clearing agent or other authorized person makes an import declaration. This may include a person who has possession of the goods or to whom the goods are consigned. + 0..1 + Certificate Of Origin Application + Importer + Party + Party + Party + Importer (WCO ID 39 and 40) + + + + + + + + + ASBIE + Certificate Of Origin Application. Issuing_ Country. Country + The country where the requested CoO will be issued. + 1 + Certificate Of Origin Application + Issuing + Country + Country + Country + + + + + + + + + ASBIE + Certificate Of Origin Application. Document Distribution + An interested party to which the CoO is to be distributed. + 0..n + Certificate Of Origin Application + Document Distribution + Document Distribution + Document Distribution + + + + + + + + + ASBIE + Certificate Of Origin Application. Supporting_ Document Reference. Document Reference + A reference to a document supporting this application. + 0..n + Certificate Of Origin Application + Supporting + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Certificate Of Origin Application. Signature + A signature applied to this application. + 0..n + Certificate Of Origin Application + Signature + Signature + Signature + + + + + + + + + + + ABIE + Classification Category. Details + A class to define a category within a classification scheme. + Classification Category + + + + + + + + + BBIE + Classification Category. Name + The name of this category within the classification scheme. + 0..1 + Classification Category + Name + Name + Name. Type + Code List Name + UNSPSC Class , UNSPSC Segment , UNSPSC Family + + + + + + + + + BBIE + Classification Category. Code Value. Text + The value of a code used to identify this category within the classification scheme. + 0..1 + Classification Category + Code Value + Text + Text. Type + Code Value + 3420001, 3273666, HSJJD-213 + + + + + + + + + BBIE + Classification Category. Description. Text + Text describing this category. + 0..n + Classification Category + Description + Text + Text. Type + Code Name + Electrical Goods , Wooden Toys + + + + + + + + + ASBIE + Classification Category. Categorizes_ Classification Category. Classification Category + A recursive description of a subcategory of this category. + 0..n + Classification Category + Categorizes + Classification Category + Classification Category + Classification Category + + + + + + + + + + + ABIE + Classification Scheme. Details + A class to define a classification scheme, such as a taxonomy for classifying goods or services. + Classification Scheme + + + + + + + + + BBIE + Classification Scheme. Identifier + An identifier for this classification scheme. + 1 + Classification Scheme + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Classification Scheme. UUID. Identifier + A universally unique identifier for this classification scheme. + 0..1 + Classification Scheme + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Classification Scheme. Last_ Revision Date. Date + The date on which this classification scheme was last revised. + 0..1 + Classification Scheme + Last + Revision Date + Date + Date. Type + + + + + + + + + BBIE + Classification Scheme. Last_ Revision Time. Time + The time at which this classification scheme was last revised. + 0..1 + Classification Scheme + Last + Revision Time + Time + Time. Type + + + + + + + + + BBIE + Classification Scheme. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Classification Scheme + Note + Text + Text. Type + + + + + + + + + BBIE + Classification Scheme. Name + The name of this classification scheme. + 0..1 + Classification Scheme + Name + Name + Name. Type + UNSPSC + + + + + + + + + BBIE + Classification Scheme. Description. Text + Text describing this classification scheme. + 0..n + Classification Scheme + Description + Text + Text. Type + an open, global multi-sector standard for classification of products and services + + + + + + + + + BBIE + Classification Scheme. Agency Identifier. Identifier + An identifier for the agency that maintains this classification scheme. + 0..1 + Classification Scheme + Agency Identifier + Identifier + Identifier. Type + Defaults to the UN/EDIFACT data element 3055 code list. + + + + + + + + + BBIE + Classification Scheme. Agency Name. Text + The name of the agency that maintains the classification scheme. + 0..1 + Classification Scheme + Agency Name + Text + Text. Type + + + + + + + + + BBIE + Classification Scheme. Version. Identifier + An identifier for the version of this classification scheme. + 0..1 + Classification Scheme + Version + Identifier + Identifier. Type + + + + + + + + + BBIE + Classification Scheme. URI. Identifier + The Uniform Resource Identifier (URI) of the documentation for this classification scheme. + 0..1 + Classification Scheme + URI + Identifier + Identifier. Type + + + + + + + + + BBIE + Classification Scheme. Scheme_ URI. Identifier + The Uniform Resource Identifier (URI) of this classification scheme. + 0..1 + Classification Scheme + Scheme + URI + Identifier + Identifier. Type + + + + + + + + + BBIE + Classification Scheme. Language. Identifier + An identifier for the language of this classification scheme. + 0..1 + Classification Scheme + Language + Identifier + Identifier. Type + + + + + + + + + ASBIE + Classification Scheme. Classification Category + A description of a category within this classification scheme. + 1..n + Classification Scheme + Classification Category + Classification Category + Classification Category + + + + + + + + + + + ABIE + Clause. Details + A class to define a clause (a distinct article or provision) in a contract, treaty, will, or other formal or legal written document requiring compliance. + Clause + + + + + + + + + BBIE + Clause. Identifier + An identifier for this clause. + 0..1 + Clause + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Clause. Content. Text + The text of this clause. + 0..n + Clause + Content + Text + Text. Type + + + + + + + + + + + ABIE + Commodity Classification. Details + A class to describe the classification of a commodity. + Commodity Classification + + + + + + + + + BBIE + Commodity Classification. Nature Code. Code + A code defined by a specific maintenance agency signifying the high-level nature of the commodity. + 0..1 + Commodity Classification + Nature Code + Code + Code. Type + wooden products + + + + + + + + + BBIE + Commodity Classification. Cargo Type Code. Code + A mutually agreed code signifying the type of cargo for purposes of commodity classification. + 0..1 + Commodity Classification + Cargo Type Code + Code + Code. Type + Refrigerated + + + + + + + + + BBIE + Commodity Classification. Commodity Code. Code + The harmonized international commodity code for cross border and regulatory (customs and trade statistics) purposes. + 0..1 + Commodity Classification + Commodity Code + Code + Code. Type + Harmonized Code + 1102222883 + + + + + + + + + BBIE + Commodity Classification. Item Classification Code. Code + A code signifying the trade classification of the commodity. + 0..1 + Commodity Classification + Item Classification Code + Code + Code. Type + UN/SPSC Code + 3440234 + + + + + + + + + + + ABIE + Communication. Details + A class to describe a means of communication. + Communication + + + + + + + + + BBIE + Communication. Channel Code. Code + The method of communication, expressed as a code. + 0..1 + Communication + Channel Code + Code + Channel + Channel_ Code. Type + Phone Fax Email + + + + + + + + + BBIE + Communication. Channel. Text + The method of communication, expressed as text. + 0..1 + Communication + Channel + Text + Text. Type + Skype + + + + + + + + + BBIE + Communication. Value. Text + An identifying value (phone number, email address, etc.) for this channel of communication + 0..1 + Communication + Value + Text + Text. Type + +44 1 2345 6789 president@whitehouse.com + + + + + + + + + + + ABIE + Completed Task. Details + A class to describe the completion of a specific task in the tendering process. + Completed Task + + + + + + + + + BBIE + Completed Task. Annual_ Average. Amount + The average monetary amount of a task such as this completed task. + 0..1 + Completed Task + Annual + Average + Amount + Amount. Type + + + + + + + + + BBIE + Completed Task. Total Task. Amount + The actual total monetary amount of this completed task. + 0..1 + Completed Task + Total Task + Amount + Amount. Type + + + + + + + + + BBIE + Completed Task. Party Capacity. Amount + A monetary amount corresponding to the financial capacity of the party that carried out this completed task. + 0..1 + Completed Task + Party Capacity + Amount + Amount. Type + + + + + + + + + BBIE + Completed Task. Description. Text + Text describing this completed task. + 0..n + Completed Task + Description + Text + Text. Type + + + + + + + + + ASBIE + Completed Task. Evidence Supplied + The evidence justifying a designation of "complete" for this task. + 0..n + Completed Task + Evidence Supplied + Evidence Supplied + Evidence Supplied + + + + + + + + + ASBIE + Completed Task. Period + The period in which this completed task was performed. + 0..1 + Completed Task + Period + Period + Period + + + + + + + + + ASBIE + Completed Task. Recipient_ Customer Party. Customer Party + The original customer for this completed task. + 0..1 + Completed Task + Recipient + Customer Party + Customer Party + Customer Party + + + + + + + + + + + ABIE + Condition. Details + A class to define a measurable condition of an object. + Condition + + + + + + + + + BBIE + Condition. Attribute Identifier. Identifier + An identifier for the attribute that applies to the condition. + 1 + Condition + Attribute Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Condition. Measure + The measurement value. + 0..1 + Condition + Measure + Measure + Measure. Type + + + + + + + + + BBIE + Condition. Description. Text + Text describing the attribute that applies to the condition. + 0..n + Condition + Description + Text + Text. Type + + + + + + + + + BBIE + Condition. Minimum_ Measure. Measure + The minimum value in a range of measurement for this condition. + 0..1 + Condition + Minimum + Measure + Measure + Measure. Type + + + + + + + + + BBIE + Condition. Maximum_ Measure. Measure + The maximum value in a range of measurement for this condition. + 0..1 + Condition + Maximum + Measure + Measure + Measure. Type + + + + + + + + + + + ABIE + Consignment. Details + A class to describe an identifiable collection of one or more goods items to be transported between the consignor and the consignee. This information may be defined within a transport contract. A consignment may comprise more than one shipment (e.g., when consolidated by a freight forwarder). + Consignment + + + + + + + + + BBIE + Consignment. Identifier + An identifier assigned to a collection of goods for both import and export. + 1 + Consignment + Identifier + Identifier + Identifier. Type + Unique consignment reference number (UCR) + + + + + + + + + BBIE + Consignment. Carrier Assigned_ Identifier. Identifier + An identifier for this consignment, assigned by the carrier. + 0..1 + Consignment + Carrier Assigned + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Consignment. Consignee Assigned_ Identifier. Identifier + An identifier for this consignment, assigned by the consignee. + 0..1 + Consignment + Consignee Assigned + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Consignment. Consignor Assigned_ Identifier. Identifier + An identifier for this consignment, assigned by the consignor. + 0..1 + Consignment + Consignor Assigned + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Consignment. Freight Forwarder Assigned_ Identifier. Identifier + An identifier for this consignment, assigned by the freight forwarder. + 0..1 + Consignment + Freight Forwarder Assigned + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Consignment. Broker Assigned_ Identifier. Identifier + An identifier for this consignment, assigned by the broker. + 0..1 + Consignment + Broker Assigned + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Consignment. Contracted Carrier Assigned_ Identifier. Identifier + An identifier for this consignment, assigned by the contracted carrier. + 0..1 + Consignment + Contracted Carrier Assigned + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Consignment. Performing Carrier Assigned_ Identifier. Identifier + An identifier for this consignment, assigned by the performing carrier. + 0..1 + Consignment + Performing Carrier Assigned + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Consignment. Summary_ Description. Text + A textual summary description of the consignment. + 0..n + Consignment + Summary + Description + Text + Text. Type + + + + + + + + + BBIE + Consignment. Total_ Invoice Amount. Amount + The total of all invoice amounts declared in this consignment. + 0..1 + Consignment + Total + Invoice Amount + Amount + Amount. Type + + + + + + + + + BBIE + Consignment. Declared Customs_ Value. Amount + The total declared value for customs purposes of all the goods in this consignment, regardless of whether they are subject to the same customs procedure, tariff/statistical categorization, country information, or duty regime. + 0..1 + Consignment + Declared Customs + Value + Amount + Amount. Type + + + + + + + + + BBIE + Consignment. Tariff Description. Text + Text describing the tariff applied to this consignment. + 0..n + Consignment + Tariff Description + Text + Text. Type + + + + + + + + + BBIE + Consignment. Tariff Code. Code + A code signifying the tariff applied to this consignment. + 0..1 + Consignment + Tariff Code + Code + Code. Type + Tariff code number (WCO ID 145) + + + + + + + + + BBIE + Consignment. Insurance Premium Amount. Amount + The amount of the premium payable to an insurance company for insuring the goods contained in this consignment. + 0..1 + Consignment + Insurance Premium Amount + Amount + Amount. Type + Insurance Cost + + + + + + + + + BBIE + Consignment. Gross_ Weight. Measure + The total declared weight of the goods in this consignment, including packaging but excluding the carrier's equipment. + 0..1 + Consignment + Gross + Weight + Measure + Measure. Type + Total gross weight (WCO ID 131) + Total cube of all goods items referred to as one consignment. + + + + + + + + + BBIE + Consignment. Net_ Weight. Measure + The total net weight of all the goods items referred to as one consignment. + 0..1 + Consignment + Net + Weight + Measure + Measure. Type + + + + + + + + + BBIE + Consignment. Net Net_ Weight. Measure + The total net weight of the goods in this consignment, exclusive of packaging. + 0..1 + Consignment + Net Net + Weight + Measure + Measure. Type + + + + + + + + + BBIE + Consignment. Chargeable_ Weight. Measure + The weight upon which a charge is to be based. + 0..1 + Consignment + Chargeable + Weight + Measure + Measure. Type + Chargeable Weight. Basis.Measure + + + + + + + + + BBIE + Consignment. Gross_ Volume. Measure + The total volume of the goods referred to as one consignment. + 0..1 + Consignment + Gross + Volume + Measure + Measure. Type + Cube + + + + + + + + + BBIE + Consignment. Net_ Volume. Measure + The total net volume of all goods items referred to as one consignment. + 0..1 + Consignment + Net + Volume + Measure + Measure. Type + + + + + + + + + BBIE + Consignment. Loading_ Length. Measure + The total length in a means of transport or a piece of transport equipment which, given the width and height of the transport means, will accommodate all of the consignments in a single consolidation. + 0..1 + Consignment + Loading + Length + Measure + Measure. Type + + + + + + + + + BBIE + Consignment. Remarks. Text + Remarks concerning the complete consignment, to be printed on the transport document. + 0..n + Consignment + Remarks + Text + Text. Type + + + + + + + + + BBIE + Consignment. Hazardous Risk_ Indicator. Indicator + An indication that the transported goods in this consignment are subject to an international regulation concerning the carriage of dangerous goods (true) or not (false). + 0..1 + Consignment + Hazardous Risk + Indicator + Indicator + Indicator. Type + Dangerous Goods RID Indicator + default is negative + + + + + + + + + BBIE + Consignment. Animal_ Food Indicator. Indicator + An indication that the transported goods in this consignment are animal foodstuffs (true) or not (false). + 0..1 + Consignment + Animal + Food Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Consignment. Human_ Food Indicator. Indicator + An indication that the transported goods in this consignment are for human consumption (true) or not (false). + 0..1 + Consignment + Human + Food Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Consignment. Livestock_ Indicator. Indicator + An indication that the transported goods are livestock (true) or not (false). + 0..1 + Consignment + Livestock + Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Consignment. Bulk Cargo_ Indicator. Indicator + An indication that the transported goods in this consignment are bulk cargoes (true) or not (false). + 0..1 + Consignment + Bulk Cargo + Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Consignment. Containerized_ Indicator. Indicator + An indication that the transported goods in this consignment are containerized cargoes (true) or not (false). + 0..1 + Consignment + Containerized + Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Consignment. General Cargo_ Indicator. Indicator + An indication that the transported goods in this consignment are general cargoes (true) or not (false). + 0..1 + Consignment + General Cargo + Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Consignment. Special_ Security Indicator. Indicator + An indication that the transported goods in this consignment require special security (true) or not (false). + 0..1 + Consignment + Special + Security Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Consignment. Third Party Payer_ Indicator. Indicator + An indication that this consignment will be paid for by a third party (true) or not (false). + 0..1 + Consignment + Third Party Payer + Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Consignment. Carrier Service_ Instructions. Text + Service instructions to the carrier, expressed as text. + 0..n + Consignment + Carrier Service + Instructions + Text + Text. Type + + + + + + + + + BBIE + Consignment. Customs Clearance Service_ Instructions. Text + Service instructions for customs clearance, expressed as text. + 0..n + Consignment + Customs Clearance Service + Instructions + Text + Text. Type + + + + + + + + + BBIE + Consignment. Forwarder Service_ Instructions. Text + Service instructions for the forwarder, expressed as text. + 0..n + Consignment + Forwarder Service + Instructions + Text + Text. Type + + + + + + + + + BBIE + Consignment. Special Service_ Instructions. Text + Special service instructions, expressed as text. + 0..n + Consignment + Special Service + Instructions + Text + Text. Type + + + + + + + + + BBIE + Consignment. Sequence Identifier. Identifier + A sequence identifier for this consignment. + 0..1 + Consignment + Sequence Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Consignment. Shipping Priority Level Code. Code + A code signifying the priority or level of service required for this consignment. + 0..1 + Consignment + Shipping Priority Level Code + Code + Code. Type + + + + + + + + + BBIE + Consignment. Handling Code. Code + The handling required for this consignment, expressed as a code. + 0..1 + Consignment + Handling Code + Code + Code. Type + Special Handling + + + + + + + + + BBIE + Consignment. Handling_ Instructions. Text + The handling required for this consignment, expressed as text. + 0..n + Consignment + Handling + Instructions + Text + Text. Type + + + + + + + + + BBIE + Consignment. Information. Text + Free-form text pertinent to this consignment, conveying information that is not contained explicitly in other structures. + 0..n + Consignment + Information + Text + Text. Type + + + + + + + + + BBIE + Consignment. Total_ Goods Item Quantity. Quantity + The total number of goods items in this consignment. + 0..1 + Consignment + Total + Goods Item Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Consignment. Total_ Transport Handling Unit Quantity. Quantity + The number of pieces of transport handling equipment (pallets, boxes, cases, etc.) in this consignment. + 0..1 + Consignment + Total + Transport Handling Unit Quantity + Quantity + Quantity. Type + Number of THUs + + + + + + + + + BBIE + Consignment. Insurance_ Value. Amount + The amount covered by insurance for this consignment. + 0..1 + Consignment + Insurance + Value + Amount + Amount. Type + Value Insured + + + + + + + + + BBIE + Consignment. Declared For Carriage_ Value. Amount + The value of this consignment, declared by the shipper or his agent solely for the purpose of varying the carrier's level of liability from that provided in the contract of carriage, in case of loss or damage to goods or delayed delivery. + 0..1 + Consignment + Declared For Carriage + Value + Amount + Amount. Type + Declared value for carriage, Interest in delivery + + + + + + + + + BBIE + Consignment. Declared Statistics_ Value. Amount + The value, declared for statistical purposes, of those goods in this consignment that have the same statistical heading. + 0..1 + Consignment + Declared Statistics + Value + Amount + Amount. Type + Statistical Value + + + + + + + + + BBIE + Consignment. Free On Board_ Value. Amount + The monetary amount that has to be or has been paid as calculated under the applicable trade delivery. + 0..1 + Consignment + Free On Board + Value + Amount + Amount. Type + FOB Value + + + + + + + + + BBIE + Consignment. Special_ Instructions. Text + Special instructions relating to this consignment. + 0..n + Consignment + Special + Instructions + Text + Text. Type + + + + + + + + + BBIE + Consignment. Split Consignment_ Indicator. Indicator + An indicator that this consignment has been split in transit (true) or not (false). + 0..1 + Consignment + Split Consignment + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Consignment. Delivery_ Instructions. Text + A set of delivery instructions relating to this consignment. + 0..n + Consignment + Delivery + Instructions + Text + Text. Type + + + + + + + + + BBIE + Consignment. Consignment_ Quantity. Quantity + The count in this consignment considering goods items, child consignments, shipments + 0..1 + Consignment + Consignment + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Consignment. Consolidatable_ Indicator. Indicator + An indicator that this consignment can be consolidated (true) or not (false). + 0..1 + Consignment + Consolidatable + Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Consignment. Haulage_ Instructions. Text + Instructions regarding haulage of this consignment, expressed as text. + 0..n + Consignment + Haulage + Instructions + Text + Text. Type + + + + + + + + + BBIE + Consignment. Loading_ Sequence Identifier. Identifier + An identifier for the loading sequence of this consignment. + 0..1 + Consignment + Loading + Sequence Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Consignment. Child Consignment Quantity. Quantity + The quantity of (consolidated) child consignments + 0..1 + Consignment + Child Consignment Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Consignment. Total_ Packages Quantity. Quantity + The total number of packages associated with a Consignment. + 0..1 + Consignment + Total + Packages Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Consignment. Consolidated_ Shipment. Shipment + A consolidated shipment (a shipment created by an act of consolidation). + 0..n + Consignment + Consolidated + Shipment + Shipment + Shipment + + + + + + + + + ASBIE + Consignment. Customs Declaration + A class describing identifiers or references relating to customs procedures. + 0..n + Consignment + Customs Declaration + Customs Declaration + Customs Declaration + + + + + + + + + ASBIE + Consignment. Requested Pickup_ Transport Event. Transport Event + The pickup of this consignment requested by the party requesting a transportation service (the transport user). + 0..1 + Consignment + Requested Pickup + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Consignment. Requested Delivery_ Transport Event. Transport Event + The delivery of this consignment requested by the party requesting a transportation service (the transport user). + 0..1 + Consignment + Requested Delivery + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Consignment. Planned Pickup_ Transport Event. Transport Event + The pickup of this consignment planned by the party responsible for providing the transportation service (the transport service provider). + 0..1 + Consignment + Planned Pickup + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Consignment. Planned Delivery_ Transport Event. Transport Event + The delivery of this consignment planned by the party responsible for providing the transportation service (the transport service provider). + 0..1 + Consignment + Planned Delivery + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Consignment. Status + The status of a particular condition associated with this consignment. + 0..n + Consignment + Status + Status + Status + + + + + + + + + ASBIE + Consignment. Child_ Consignment. Consignment + One of the child consignments of which a consolidated consignment is composed. + 0..n + Consignment + Child + Consignment + Consignment + Consignment + + + + + + + + + ASBIE + Consignment. Consignee_ Party. Party + A party to which goods are consigned. + 0..1 + Consignment + Consignee + Party + Party + Party + Consignee (WCO ID 51 and 52) + + + + + + + + + ASBIE + Consignment. Exporter_ Party. Party + The party that makes the export declaration, or on behalf of which the export declaration is made, and that is the owner of the goods in this consignment or has similar right of disposal over them at the time when the declaration is accepted. + 0..1 + Consignment + Exporter + Party + Party + Party + Exporter (WCO ID 41 and 42) + + + + + + + + + ASBIE + Consignment. Consignor_ Party. Party + The party consigning goods, as stipulated in the transport contract by the party ordering transport. + 0..1 + Consignment + Consignor + Party + Party + Party + Consignor (WCO ID 71 and 72) + + + + + + + + + ASBIE + Consignment. Importer_ Party. Party + The party that makes an import declaration regarding this consignment, or on behalf of which a customs clearing agent or other authorized person makes an import declaration regarding this consignment. This may include a person who has possession of the goods or to whom the goods are consigned. + 0..1 + Consignment + Importer + Party + Party + Party + Importer (WCO ID 39 and 40) + + + + + + + + + ASBIE + Consignment. Carrier_ Party. Party + The party providing the transport of goods in this consignment between named points. + 0..1 + Consignment + Carrier + Party + Party + Party + Transport Company, Shipping Line, NVOCC, Airline, Haulier, Courier, Carrier (WCO ID 49 and 50) + + + + + + + + + ASBIE + Consignment. Freight Forwarder_ Party. Party + The party combining individual smaller consignments into a single larger shipment (the consolidated shipment), which is sent to a counterpart that mirrors the consolidator's activity by dividing the consolidated consignment into its original components. + 0..1 + Consignment + Freight Forwarder + Party + Party + Party + Consolidator (WCO ID 192 AND 193) + + + + + + + + + ASBIE + Consignment. Notify_ Party. Party + The party to be notified upon arrival of goods and when special occurrences (usually pre-defined) take place during a transportation service. + 0..1 + Consignment + Notify + Party + Party + Party + WCO ID 57 and 58 + + + + + + + + + ASBIE + Consignment. Original Despatch_ Party. Party + The original despatch (sender) party for this consignment. + 0..1 + Consignment + Original Despatch + Party + Party + Party + + + + + + + + + ASBIE + Consignment. Final Delivery_ Party. Party + The final delivery party for this consignment. + 0..1 + Consignment + Final Delivery + Party + Party + Party + + + + + + + + + ASBIE + Consignment. Performing Carrier_ Party. Party + The party performing the carriage of this consignment. + 0..1 + Consignment + Performing Carrier + Party + Party + Party + + + + + + + + + ASBIE + Consignment. Substitute Carrier_ Party. Party + A substitute party performing the carriage of this consignment. + 0..1 + Consignment + Substitute Carrier + Party + Party + Party + + + + + + + + + ASBIE + Consignment. Logistics Operator_ Party. Party + The logistics operator party for this consignment. + 0..1 + Consignment + Logistics Operator + Party + Party + Party + + + + + + + + + ASBIE + Consignment. Transport Advisor_ Party. Party + The party providing transport advice this consignment. + 0..1 + Consignment + Transport Advisor + Party + Party + Party + + + + + + + + + ASBIE + Consignment. Hazardous Item Notification_ Party. Party + The party that would be notified of a hazardous item in this consignment. + 0..1 + Consignment + Hazardous Item Notification + Party + Party + Party + + + + + + + + + ASBIE + Consignment. Insurance_ Party. Party + The party holding the insurance for this consignment. + 0..1 + Consignment + Insurance + Party + Party + Party + + + + + + + + + ASBIE + Consignment. Mortgage Holder_ Party. Party + The party holding the mortgage for this consignment. + 0..1 + Consignment + Mortgage Holder + Party + Party + Party + + + + + + + + + ASBIE + Consignment. Bill Of Lading Holder_ Party. Party + The party holding the bill of lading for this consignment. + 0..1 + Consignment + Bill Of Lading Holder + Party + Party + Party + + + + + + + + + ASBIE + Consignment. Original Departure_ Country. Country + The country from which the goods in this consignment were originally exported, without any commercial transaction taking place in intermediate countries. + 0..1 + Consignment + Original Departure + Country + Country + Country + Country of origin (WCO ID 062) + + + + + + + + + ASBIE + Consignment. Final Destination_ Country. Country + The country in which the goods in this consignment are to be delivered to the final consignee or buyer. + 0..1 + Consignment + Final Destination + Country + Country + Country + Ultimate Destination Country, Country of Final Arrival, Country of Destination + + + + + + + + + ASBIE + Consignment. Transit_ Country. Country + One of the countries through which goods or passengers in this consignment are routed between the country of original departure and the country of final destination. + 0..n + Consignment + Transit + Country + Country + Country + Country(ies) of routing (WCO ID 064) + + + + + + + + + ASBIE + Consignment. Transport_ Contract. Contract + A transport contract relating to this consignment. + 0..1 + Consignment + Transport + Contract + Contract + Contract + + + + + + + + + ASBIE + Consignment. Transport Event + A class describing a significant occurrence or happening related to the transportation of goods. + 0..n + Consignment + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Consignment. Original Despatch_ Transportation Service. Transportation Service + The service for pickup from the consignor under the transport contract for this consignment. + 0..1 + Consignment + Original Despatch + Transportation Service + Transportation Service + Transportation Service + Door-to-door , Pier-to-door + + + + + + + + + ASBIE + Consignment. Final Delivery_ Transportation Service. Transportation Service + The service for delivery to the consignee under the transport contract for this consignment. + 0..1 + Consignment + Final Delivery + Transportation Service + Transportation Service + Transportation Service + Door-to-door , Pier-to-door + + + + + + + + + ASBIE + Consignment. Delivery Terms + The conditions agreed upon between a seller and a buyer with regard to the delivery of goods and/or services (e.g., CIF, FOB, or EXW from the INCOTERMS Terms of Delivery). + 0..1 + Consignment + Delivery Terms + Delivery Terms + Delivery Terms + Trade Terms, INCOTERMS + + + + + + + + + ASBIE + Consignment. Payment Terms + The terms of payment between the parties (such as logistics service client, logistics service provider) in a transaction. + 0..1 + Consignment + Payment Terms + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Consignment. Collect_ Payment Terms. Payment Terms + The terms of payment that apply to the collection of this consignment. + 0..1 + Consignment + Collect + Payment Terms + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Consignment. Disbursement_ Payment Terms. Payment Terms + The terms of payment for disbursement. + 0..1 + Consignment + Disbursement + Payment Terms + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Consignment. Prepaid_ Payment Terms. Payment Terms + The terms of payment for prepayment. + 0..1 + Consignment + Prepaid + Payment Terms + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Consignment. Freight_ Allowance Charge. Allowance Charge + A cost incurred by the shipper in moving goods, by whatever means, from one place to another under the terms of the contract of carriage for this consignment. In addition to transport costs, this may include such elements as packing, documentation, loading, unloading, and insurance to the extent that they relate to the freight costs. + 0..n + Consignment + Freight + Allowance Charge + Allowance Charge + Allowance Charge + Freight Costs + + + + + + + + + ASBIE + Consignment. Extra_ Allowance Charge. Allowance Charge + A charge for extra allowance. + 0..n + Consignment + Extra + Allowance Charge + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Consignment. Main Carriage_ Shipment Stage. Shipment Stage + A shipment stage during main carriage. + 0..n + Consignment + Main Carriage + Shipment Stage + Shipment Stage + Shipment Stage + + + + + + + + + ASBIE + Consignment. Pre Carriage_ Shipment Stage. Shipment Stage + A shipment stage during precarriage (usually refers to movement activity that takes place prior to the container being loaded at a port of loading). + 0..n + Consignment + Pre Carriage + Shipment Stage + Shipment Stage + Shipment Stage + + + + + + + + + ASBIE + Consignment. On Carriage_ Shipment Stage. Shipment Stage + A shipment stage during on-carriage (usually refers to movement activity that takes place after the container is discharged at a port of discharge). + 0..n + Consignment + On Carriage + Shipment Stage + Shipment Stage + Shipment Stage + + + + + + + + + ASBIE + Consignment. Transport Handling Unit + A transport handling unit used for loose and containerized goods. + 0..n + Consignment + Transport Handling Unit + Transport Handling Unit + Transport Handling Unit + + + + + + + + + ASBIE + Consignment. First Arrival Port_ Location. Location + The first arrival location in a transport. This would be a port for sea, an airport for air, a terminal for rail, or a border post for land crossing. + 0..1 + Consignment + First Arrival Port + Location + Location + Location + + + + + + + + + ASBIE + Consignment. Last Exit Port_ Location. Location + The final exporting location in a transport. This would be a port for sea, an airport for air, a terminal for rail, or a border post for land crossing. + 0..1 + Consignment + Last Exit Port + Location + Location + Location + + + + + + + + + + + ABIE + Consumption. Details + A class to describe the consumption of a utility. + Consumption + + + + + + + + + BBIE + Consumption. Utility Statement Type Code. Code + A code identifying the type of the Utility Statement required for this consumption. Explains the kind of utility the statement is about, e.g.. "gas", "electricity", "telephone" + 0..1 + Consumption + Utility Statement Type Code + Code + Code. Type + Electricity + + + + + + + + + ASBIE + Consumption. Main_ Period. Period + The period of consumption. + 0..1 + Consumption + Main + Period + Period + Period + + + + + + + + + ASBIE + Consumption. Allowance Charge + An allowance or charges that may apply with this consumption. + 0..n + Consumption + Allowance Charge + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Consumption. Tax Total + The total of taxes for each tax type covering the consumption. + 0..n + Consumption + Tax Total + Tax Total + Tax Total + + + + + + + + + ASBIE + Consumption. Energy Water Supply + The details of any energy or water consumption. + 0..1 + Consumption + Energy Water Supply + Energy Water Supply + Energy Water Supply + + + + + + + + + ASBIE + Consumption. Telecommunications Supply + The details of any telecommunications consumption. + 0..1 + Consumption + Telecommunications Supply + Telecommunications Supply + Telecommunications Supply + + + + + + + + + ASBIE + Consumption. Legal_ Monetary Total. Monetary Total + The total amount payable on this consumption, including any allowances, charges, or taxes. + 1 + Consumption + Legal + Monetary Total + Monetary Total + Monetary Total + + + + + + + + + + + ABIE + Consumption Average. Details + A class to define an average consumption as a monetary amount. + Consumption Average + + + + + + + + + BBIE + Consumption Average. Average_ Amount. Amount + The average monetary amount of the consumption. + 0..1 + Consumption Average + Average + Amount + Amount + Amount. Type + 1.65 + + + + + + + + + BBIE + Consumption Average. Description. Text + A description of the average consumed. + 0..n + Consumption Average + Description + Text + Text. Type + Average price incl. value added tax per kilowatt-hour in the billing period. + + + + + + + + + + + ABIE + Consumption Correction. Details + The Statement of correction, for examples heating correction. + Consumption Correction + + + + + + + + + BBIE + Consumption Correction. Correction Type. Text + Statement for the correction type. + 0..1 + Consumption Correction + Correction Type + Text + Text. Type + Heating Correction + + + + + + + + + BBIE + Consumption Correction. Correction Type Code. Code + Statement at the code for the correction type. + 0..1 + Consumption Correction + Correction Type Code + Code + Code. Type + HeatingCorrection + + + + + + + + + BBIE + Consumption Correction. Meter Number. Text + Statement for meter number. + 0..1 + Consumption Correction + Meter Number + Text + Text. Type + 530071575 + + + + + + + + + BBIE + Consumption Correction. Gas Pressure. Quantity + Correction of the gas pressure. + 0..1 + Consumption Correction + Gas Pressure + Quantity + Quantity. Type + + + + + + + + + BBIE + Consumption Correction. Actual_ Temperature Reduction. Quantity + Statement for the actuel heating correction temperature. + 0..1 + Consumption Correction + Actual + Temperature Reduction + Quantity + Quantity. Type + -36.69 + + + + + + + + + BBIE + Consumption Correction. Normal_ Temperature Reduction. Quantity + Statement for the standard for heating correction temperature. + 0..1 + Consumption Correction + Normal + Temperature Reduction + Quantity + Quantity. Type + -37.00 + + + + + + + + + BBIE + Consumption Correction. Difference_ Temperature Reduction. Quantity + Deviation from standard heating correction. + 0..1 + Consumption Correction + Difference + Temperature Reduction + Quantity + Quantity. Type + 0.31 + + + + + + + + + BBIE + Consumption Correction. Description. Text + Description related to the corrections. + 0..n + Consumption Correction + Description + Text + Text. Type + + + + + + + + + BBIE + Consumption Correction. Correction Unit Amount. Amount + Correction per MWH per degree C. + 0..1 + Consumption Correction + Correction Unit Amount + Amount + Amount. Type + 0.0000 + + + + + + + + + BBIE + Consumption Correction. Consumption Energy. Quantity + Your consumpt for district heating energy. + 0..1 + Consumption Correction + Consumption Energy + Quantity + Quantity. Type + 563.6240 + + + + + + + + + BBIE + Consumption Correction. Consumption Water. Quantity + Your consumpt for district heating water. + 0..1 + Consumption Correction + Consumption Water + Quantity + Quantity. Type + 13212.14 + + + + + + + + + BBIE + Consumption Correction. Correction Amount. Amount + Your correction for heating correction. + 0..1 + Consumption Correction + Correction Amount + Amount + Amount. Type + 0.00 + + + + + + + + + + + ABIE + Consumption History. Details + A class to describe the measurement of a type of consumption during a particular period, used for the subscriber to get an overview of his consumption + Consumption History + + + + + + + + + BBIE + Consumption History. Meter Number. Text + A text identifier for the meter measuring the consumption. + 0..1 + Consumption History + Meter Number + Text + Text. Type + 61722x + + + + + + + + + BBIE + Consumption History. Quantity + The quantity consumed. + 1 + Consumption History + Quantity + Quantity + Quantity. Type + 7621.00 + + + + + + + + + BBIE + Consumption History. Amount + The monetary amount to be charged for the quantity consumed. + 0..1 + Consumption History + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Consumption History. Consumption Level Code. Code + The consumption level, expressed as a code used explain the consumption quantity, e.g.. diversion from the normal. + 0..1 + Consumption History + Consumption Level Code + Code + Code. Type + B + + + + + + + + + BBIE + Consumption History. Consumption Level Text. Text + The consumption level, expressed as text, used explain the consumption quantity, e.g.. diversion from the normal. + 0..1 + Consumption History + Consumption Level Text + Text + Text. Type + Average + + + + + + + + + BBIE + Consumption History. Description. Text + Text describing the consumption itself. + 0..n + Consumption History + Description + Text + Text. Type + 2004/2005 + + + + + + + + + ASBIE + Consumption History. Period + The period during which the consumption took place. + 1 + Consumption History + Period + Period + Period + + + + + + + + + + + ABIE + Consumption Line. Details + A class to describe a line item for utility consumption. To specify more than one utility item, use separate consumption lines. + Consumption Line + + + + + + + + + BBIE + Consumption Line. Identifier + An identifier for this consumption line. + 1 + Consumption Line + Identifier + Identifier + Identifier. Type + 1 + + + + + + + + + BBIE + Consumption Line. Parent_ Document Line Reference Identifier. Identifier + An identifier for the transaction line on a related document (such as an invoice) that covers this consumption line. + 0..1 + Consumption Line + Parent + Document Line Reference Identifier + Identifier + Identifier. Type + Consumption + + + + + + + + + BBIE + Consumption Line. Invoiced_ Quantity. Quantity + The quantity invoiced. + 1 + Consumption Line + Invoiced + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Consumption Line. Line Extension Amount. Amount + The monetary amount, including discount, to be charged for this consumption line. + 1 + Consumption Line + Line Extension Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Consumption Line. Period + The period of time covered by this consumption line. + 0..1 + Consumption Line + Period + Period + Period + + + + + + + + + ASBIE + Consumption Line. Delivery + A delivery of the utility item on this consumption line. + 0..n + Consumption Line + Delivery + Delivery + Delivery + + + + + + + + + ASBIE + Consumption Line. Allowance Charge + An allowance or charge that applies to this consumption line. + 0..n + Consumption Line + Allowance Charge + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Consumption Line. Tax Total + A total amount of taxes of a particular kind applicable to this consumption line. + 0..n + Consumption Line + Tax Total + Tax Total + Tax Total + + + + + + + + + ASBIE + Consumption Line. Utility Item + The utility item consumed. + 1 + Consumption Line + Utility Item + Utility Item + Utility Item + + + + + + + + + ASBIE + Consumption Line. Price + The price associated with this consumption line, expressed in a data structure containing multiple properties. + 0..1 + Consumption Line + Price + Price + Price + + + + + + + + + ASBIE + Consumption Line. Unstructured Price + The price associated with this consumption line expressed in a less structured form that includes just the amount and the time of use. + 0..1 + Consumption Line + Unstructured Price + Unstructured Price + Unstructured Price + + + + + + + + + + + ABIE + Consumption Point. Details + A class to define the point of consumption for a utility, such as a meter. + Consumption Point + + + + + + + + + BBIE + Consumption Point. Identifier + An identifier for this point of consumption. + 1 + Consumption Point + Identifier + Identifier + Identifier. Type + 7411013716x + + + + + + + + + BBIE + Consumption Point. Description. Text + Text describing this consumption point. + 0..n + Consumption Point + Description + Text + Text. Type + Additional informations concerning the consumption point + + + + + + + + + BBIE + Consumption Point. Subscriber Identifier. Identifier + An identifier for the subscriber responsible for the consumption at this consumption point. + 0..1 + Consumption Point + Subscriber Identifier + Identifier + Identifier. Type + 98143211 + + + + + + + + + BBIE + Consumption Point. Subscriber Type. Text + The type of subscriber, expressed as text. + 0..1 + Consumption Point + Subscriber Type + Text + Text. Type + + + + + + + + + BBIE + Consumption Point. Subscriber Type Code. Code + The type of subscriber, expressed as a code. + 0..1 + Consumption Point + Subscriber Type Code + Code + Code. Type + APL + + + + + + + + + BBIE + Consumption Point. Total_ Delivered Quantity. Quantity + The total quantity delivered, calculated at this consumption point. + 0..1 + Consumption Point + Total + Delivered Quantity + Quantity + Quantity. Type + 5761.00 + + + + + + + + + ASBIE + Consumption Point. Address + The address of this consumption point. + 0..1 + Consumption Point + Address + Address + Address + + + + + + + + + ASBIE + Consumption Point. Web Site Access + Access information for the website of this consumption point. + 0..1 + Consumption Point + Web Site Access + Web Site Access + Web Site Access + + + + + + + + + ASBIE + Consumption Point. Utility_ Meter. Meter + A meter at this consumption point. + 0..n + Consumption Point + Utility + Meter + Meter + Meter + + + + + + + + + + + ABIE + Consumption Report. Details + A class to describe utility consumption, including details of the environment in which consumption takes place. + Consumption Report + + + + + + + + + BBIE + Consumption Report. Identifier + An identifier for this consumption report. + 1 + Consumption Report + Identifier + Identifier + Identifier. Type + n/a + + + + + + + + + BBIE + Consumption Report. Consumption Type. Text + The type of consumption, expressed as text. + 0..1 + Consumption Report + Consumption Type + Text + Text. Type + Consumption + + + + + + + + + BBIE + Consumption Report. Consumption Type Code. Code + The type of consumption, expressed as a code. + 0..1 + Consumption Report + Consumption Type Code + Code + Code. Type + Consumption + + + + + + + + + BBIE + Consumption Report. Description. Text + Text reporting utility consumption. + 0..n + Consumption Report + Description + Text + Text. Type + This report contain the latest year consumption + + + + + + + + + BBIE + Consumption Report. Total_ Consumed Quantity. Quantity + The total quantity consumed. + 0..1 + Consumption Report + Total + Consumed Quantity + Quantity + Quantity. Type + 20479.00 + + + + + + + + + BBIE + Consumption Report. Basic_ Consumed Quantity. Quantity + The basic quantity consumed, excluding additional consumption. + 0..1 + Consumption Report + Basic + Consumed Quantity + Quantity + Quantity. Type + 20000.00 + + + + + + + + + BBIE + Consumption Report. Resident_ Occupants Numeric. Numeric + The number of people occupying the residence covered by this report. + 0..1 + Consumption Report + Resident + Occupants Numeric + Numeric + Numeric. Type + 4.0 + + + + + + + + + BBIE + Consumption Report. Consumers_ Energy Level Code. Code + The level of energy consumed, compared to the average for this residence type and the number of people living in the residence, expressed as a code. + 0..1 + Consumption Report + Consumers + Energy Level Code + Code + Code. Type + B + + + + + + + + + BBIE + Consumption Report. Consumers_ Energy Level. Text + The level of energy consumed, compared to the average for this residence type and the number of people living in the residence, expressed as text. + 0..1 + Consumption Report + Consumers + Energy Level + Text + Text. Type + Middel + + + + + + + + + BBIE + Consumption Report. Residence Type. Text + The type of residence (house, apartment, etc.) covered in this report, expressed as text. + 0..1 + Consumption Report + Residence Type + Text + Text. Type + House + + + + + + + + + BBIE + Consumption Report. Residence Type Code. Code + The type of residence (house, apartment, etc.) covered in this report, expressed as a code. + 0..1 + Consumption Report + Residence Type Code + Code + Code. Type + House + + + + + + + + + BBIE + Consumption Report. Heating Type. Text + The type of heating in the residence covered in this report, expressed as text. + 0..1 + Consumption Report + Heating Type + Text + Text. Type + District heating + + + + + + + + + BBIE + Consumption Report. Heating Type Code. Code + The type of heating in the residence covered in this report, expressed as a code. + 0..1 + Consumption Report + Heating Type Code + Code + Code. Type + DistrictHeating + + + + + + + + + ASBIE + Consumption Report. Period + The period of consumption covered in this report. + 0..1 + Consumption Report + Period + Period + Period + + + + + + + + + ASBIE + Consumption Report. Guidance_ Document Reference. Document Reference + A reference to a document providing an explanation of this kind of report. + 0..1 + Consumption Report + Guidance + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Consumption Report. Document Reference + A reference to some other document (for example, this report in another format). + 0..1 + Consumption Report + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Consumption Report. Consumption Report Reference + A reference to a previous consumption report. + 0..n + Consumption Report + Consumption Report Reference + Consumption Report Reference + Consumption Report Reference + + + + + + + + + ASBIE + Consumption Report. Consumption History + A report describing historical parameters relating to a specific instance of consumption. + 0..n + Consumption Report + Consumption History + Consumption History + Consumption History + + + + + + + + + + + ABIE + Consumption Report Reference. Details + A class to define a reference to an earlier consumption report (e.g., last year's consumption). + Consumption Report Reference + + + + + + + + + BBIE + Consumption Report Reference. Consumption_ Report Identifier. Identifier + An identifier for the referenced consumption report. + 1 + Consumption Report Reference + Consumption + Report Identifier + Identifier + Identifier. Type + n/a + + + + + + + + + BBIE + Consumption Report Reference. Consumption Type. Text + The reported consumption type, expressed as text. + 0..1 + Consumption Report Reference + Consumption Type + Text + Text. Type + Consumption + + + + + + + + + BBIE + Consumption Report Reference. Consumption Type Code. Code + The reported consumption type, expressed as a code. + 0..1 + Consumption Report Reference + Consumption Type Code + Code + Code. Type + Consumption + + + + + + + + + BBIE + Consumption Report Reference. Total_ Consumed Quantity. Quantity + The total quantity consumed during the period of the referenced report. + 1 + Consumption Report Reference + Total + Consumed Quantity + Quantity + Quantity. Type + 20479.00 + + + + + + + + + ASBIE + Consumption Report Reference. Period + The period of consumption covered by the referenced report. + 1 + Consumption Report Reference + Period + Period + Period + + + + + + + + + + + ABIE + Contact. Details + A class to describe a contactable person or department in an organization. + Contact + + + + + + + + + BBIE + Contact. Identifier + An identifier for this contact. + 0..1 + Contact + Identifier + Identifier + Identifier. Type + Receivals Clerk + + + + + + + + + BBIE + Contact. Name + The name of this contact. It is recommended that this be used for a functional name and not a personal name. + 0..1 + Contact + Name + Name + Name. Type + Delivery Dock + + + + + + + + + BBIE + Contact. Telephone. Text + The primary telephone number of this contact. + 0..1 + Contact + Telephone + Text + Text. Type + + + + + + + + + BBIE + Contact. Telefax. Text + The primary fax number of this contact. + 0..1 + Contact + Telefax + Text + Text. Type + + + + + + + + + BBIE + Contact. Electronic_ Mail. Text + The primary email address of this contact. + 0..1 + Contact + Electronic + Mail + Text + Text. Type + + + + + + + + + BBIE + Contact. Note. Text + Free-form text conveying information that is not contained explicitly in other structures; in particular, a textual description of the circumstances under which this contact can be used (e.g., "emergency" or "after hours"). + 0..n + Contact + Note + Text + Text. Type + + + + + + + + + ASBIE + Contact. Other_ Communication. Communication + Another means of communication with this contact. + 0..n + Contact + Other + Communication + Communication + Communication + + + + + + + + + + + ABIE + Contract. Details + A class to describe a contract. + Contract + + + + + + + + + BBIE + Contract. Identifier + An identifier for this contract. + 0..1 + Contract + Identifier + Identifier + Identifier. Type + CC23 + + + + + + + + + BBIE + Contract. Issue Date. Date + The date on which this contract was issued. + 0..1 + Contract + Issue Date + Date + Date. Type + + + + + + + + + BBIE + Contract. Issue Time. Time + The time at which this contract was issued. + 0..1 + Contract + Issue Time + Time + Time. Type + + + + + + + + + BBIE + Contract. Nomination Date. Date + In a transportation contract, the deadline date by which the services referred to in the transport execution plan have to be booked. For example, if this service is a carrier service scheduled for Wednesday 16 February 2011 at 10 a.m. CET, the nomination date might be Tuesday15 February 2011. + 0..1 + Contract + Nomination Date + Date + Date. Type + + + + + + + + + BBIE + Contract. Nomination Time. Time + In a transportation contract, the deadline time by which the services referred to in the transport execution plan have to be booked. For example, if this service is a carrier service scheduled for Wednesday 16 February 2011 at 10 a.m. CET, the nomination date might be Tuesday15 February 2011 and the nomination time 4 p.m. at the latest. + 0..1 + Contract + Nomination Time + Time + Time. Type + + + + + + + + + BBIE + Contract. Contract Type Code. Code + The type of this contract, expressed as a code, such as "Cost plus award fee" and "Cost plus fixed fee" from UNCEFACT Contract Type code list. + 0..1 + Contract + Contract Type Code + Code + Code. Type + + + + + + + + + BBIE + Contract. Contract Type. Text + The type of this contract, expressed as text, such as "Cost plus award fee" and "Cost plus fixed fee" from UNCEFACT Contract Type code list. + 0..1 + Contract + Contract Type + Text + Text. Type + + + + + + + + + BBIE + Contract. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Contract + Note + Text + Text. Type + Remarks + + + + + + + + + BBIE + Contract. Version. Identifier + An identifier for the current version of this contract. + 0..1 + Contract + Version + Identifier + Identifier. Type + + + + + + + + + BBIE + Contract. Description. Text + Text describing this contract. + 0..n + Contract + Description + Text + Text. Type + + + + + + + + + ASBIE + Contract. Validity_ Period. Period + The period during which this contract is valid. + 0..1 + Contract + Validity + Period + Period + Period + + + + + + + + + ASBIE + Contract. Contract_ Document Reference. Document Reference + A reference to a contract document. + 0..n + Contract + Contract + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Contract. Nomination_ Period. Period + In a transportation contract, the period required to book the services specified in the contract before the services can begin. + 0..1 + Contract + Nomination + Period + Period + Period + + + + + + + + + ASBIE + Contract. Contractual_ Delivery. Delivery + In a transportation contract, the delivery of the services required to book the services specified in the contract. + 0..1 + Contract + Contractual + Delivery + Delivery + Delivery + + + + + + + + + + + ABIE + Contract Execution Requirement. Details + A class to describe a requirement for execution of a contract. + Contract Execution Requirement + + + + + + + + + BBIE + Contract Execution Requirement. Name + A name for this requirement. + 0..n + Contract Execution Requirement + Name + Name + Name. Type + + + + + + + + + BBIE + Contract Execution Requirement. Execution Requirement Code. Code + A code signifying the type of party independent of its role. + 0..1 + Contract Execution Requirement + Execution Requirement Code + Code + Code. Type + + + + + + + + + BBIE + Contract Execution Requirement. Description. Text + Text describing this requirement. + 0..n + Contract Execution Requirement + Description + Text + Text. Type + + + + + + + + + + + ABIE + Contract Extension. Details + A class to describe possible extensions to a contract. + Contract Extension + + + + + + + + + BBIE + Contract Extension. Options Description. Text + A description for the possible options that can be carried out during the execution of the contract. + 0..n + Contract Extension + Options Description + Text + Text. Type + + + + + + + + + BBIE + Contract Extension. Minimum_ Number. Numeric + The fixed minimum number of contract extensions or renewals. + 0..1 + Contract Extension + Minimum + Number + Numeric + Numeric. Type + + + + + + + + + BBIE + Contract Extension. Maximum_ Number. Numeric + The maximum allowed number of contract extensions. + 0..1 + Contract Extension + Maximum + Number + Numeric + Numeric. Type + + + + + + + + + ASBIE + Contract Extension. Option Validity_ Period. Period + The period during which the option for extending the contract is available. + 0..1 + Contract Extension + Option Validity + Period + Period + Period + + + + + + + + + ASBIE + Contract Extension. Renewal + The period allowed for each contract extension. + 0..n + Contract Extension + Renewal + Renewal + Renewal + + + + + + + + + + + ABIE + Contracting Activity. Details + The nature of the type of business of the organization. + Contracting Activity + + + + + + + + + BBIE + Contracting Activity. Activity Type Code. Code + A code specifying the nature of the type of business of the organization. + 0..1 + Contracting Activity + Activity Type Code + Code + Code. Type + + + + + + + + + BBIE + Contracting Activity. Activity Type. Text + The nature of the type of business of the organization, expressed as text. + 0..1 + Contracting Activity + Activity Type + Text + Text. Type + + + + + + + + + + + ABIE + Contracting Party. Details + A class to describe an individual, a group, or a body having a procurement role in a tendering process. + Contracting Party + + + + + + + + + BBIE + Contracting Party. Buyer Profile_ URI. Identifier + The buyer profile is typically located on a web site where the contracting party publishes its procurement opportunities + 0..1 + Contracting Party + Buyer Profile + URI + Identifier + Identifier. Type + Buyer Profile + + + + + + + + + ASBIE + Contracting Party. Contracting Party Type + The type of contracting party that is independent of its role. + 0..n + Contracting Party + Contracting Party Type + Contracting Party Type + Contracting Party Type + + + + + + + + + ASBIE + Contracting Party. Contracting Activity + The nature of the type of business of the organization + 0..n + Contracting Party + Contracting Activity + Contracting Activity + Contracting Activity + + + + + + + + + ASBIE + Contracting Party. Party + The contracting party itself. + 1 + Contracting Party + Party + Party + Party + + + + + + + + + + + ABIE + Contracting Party Type. Details + The type of contracting party that is independent of its role. + Contracting Party Type + + + + + + + + + BBIE + Contracting Party Type. Party Type Code. Code + A code specifying the type of party that is independent of its role. + 0..1 + Contracting Party Type + Party Type Code + Code + Code. Type + + + + + + + + + BBIE + Contracting Party Type. Party Type. Text + The type of party that is independent of its role, expressed as text. + 0..1 + Contracting Party Type + Party Type + Text + Text. Type + + + + + + + + + + + ABIE + Corporate Registration Scheme. Details + A class to describe a scheme for corporate registration. + Corporate Registration Scheme + + + + + + + + + BBIE + Corporate Registration Scheme. Identifier + An identifier for this registration scheme. + 0..1 + Corporate Registration Scheme + Identifier + Identifier + Identifier. Type + ASIC in Australia + + + + + + + + + BBIE + Corporate Registration Scheme. Name + The name of this registration scheme. + 0..1 + Corporate Registration Scheme + Name + Name + Name. Type + Australian Securities and Investment Commission in Australia + + + + + + + + + BBIE + Corporate Registration Scheme. Corporate Registration Type Code. Code + A code signifying the type of this registration scheme. + 0..1 + Corporate Registration Scheme + Corporate Registration Type Code + Code + Code. Type + ACN + + + + + + + + + ASBIE + Corporate Registration Scheme. Jurisdiction Region_ Address. Address + A geographic area in which this registration scheme applies. + 0..n + Corporate Registration Scheme + Jurisdiction Region + Address + Address + Address + England , Wales + + + + + + + + + + + ABIE + Country. Details + A class to describe a country. + Country + + + + + + + + + BBIE + Country. Identification Code. Code + A code signifying this country. + 0..1 + Country + Identification Code + Code + Country Identification + Country Identification_ Code. Type + + + + + + + + + BBIE + Country. Name + The name of this country. + 0..1 + Country + Name + Name + Name. Type + SOUTH AFRICA + + + + + + + + + + + ABIE + Credit Account. Details + A class to identify a credit account for sales on account. + Credit Account + + + + + + + + + BBIE + Credit Account. Account Identifier. Identifier + An identifier for this credit account. + 1 + Credit Account + Account Identifier + Identifier + Identifier. Type + Customer Code 29 + + + + + + + + + + + ABIE + Credit Note Line. Details + A class to define a line in a Credit Note or Self Billed Credit Note. + Credit Note Line + + + + + + + + + BBIE + Credit Note Line. Identifier + An identifier for this credit note line. + 1 + Credit Note Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Credit Note Line. UUID. Identifier + A universally unique identifier for this credit note line. + 0..1 + Credit Note Line + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Credit Note Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Credit Note Line + Note + Text + Text. Type + + + + + + + + + BBIE + Credit Note Line. Credited_ Quantity. Quantity + The quantity of items credited in this credit note line. + 0..1 + Credit Note Line + Credited + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Credit Note Line. Line Extension Amount. Amount + The total amount for this credit note line, including allowance charges but exclusive of taxes. + 0..1 + Credit Note Line + Line Extension Amount + Amount + Amount. Type + + + + + + + + + BBIE + Credit Note Line. Tax Point Date. Date + The date of this credit note line, used to indicate the point at which tax becomes applicable. + 0..1 + Credit Note Line + Tax Point Date + Date + Date. Type + + + + + + + + + BBIE + Credit Note Line. Accounting Cost Code. Code + The buyer's accounting cost centre for this credit note line, expressed as a code. + 0..1 + Credit Note Line + Accounting Cost Code + Code + Code. Type + + + + + + + + + BBIE + Credit Note Line. Accounting Cost. Text + The buyer's accounting cost centre for this credit note line, expressed as text. + 0..1 + Credit Note Line + Accounting Cost + Text + Text. Type + + + + + + + + + BBIE + Credit Note Line. Payment Purpose Code. Code + A code signifying the business purpose for this payment. + 0..1 + Credit Note Line + Payment Purpose Code + Code + Code. Type + + + + + + + + + BBIE + Credit Note Line. Free Of Charge_ Indicator. Indicator + An indicator that this credit note line is free of charge (true) or not (false). The default is false. + 0..1 + Credit Note Line + Free Of Charge + Indicator + Indicator + Indicator. Type + + + + + + + + + ASBIE + Credit Note Line. Invoice_ Period. Period + An invoice period to which this credit note line applies. + 0..n + Credit Note Line + Invoice + Period + Period + Period + + + + + + + + + ASBIE + Credit Note Line. Order Line Reference + A reference to an order line associated with this credit note line. + 0..n + Credit Note Line + Order Line Reference + Order Line Reference + Order Line Reference + + + + + + + + + ASBIE + Credit Note Line. Discrepancy_ Response. Response + A reason for the credit. + 0..n + Credit Note Line + Discrepancy + Response + Response + Response + + + + + + + + + ASBIE + Credit Note Line. Despatch_ Line Reference. Line Reference + A reference to a despatch line associated with this credit note line. + 0..n + Credit Note Line + Despatch + Line Reference + Line Reference + Line Reference + + + + + + + + + ASBIE + Credit Note Line. Receipt_ Line Reference. Line Reference + A reference to a receipt line associated with this credit note line. + 0..n + Credit Note Line + Receipt + Line Reference + Line Reference + Line Reference + + + + + + + + + ASBIE + Credit Note Line. Billing Reference + A reference to a billing document associated with this credit note line. + 0..n + Credit Note Line + Billing Reference + Billing Reference + Billing Reference + + + + + + + + + ASBIE + Credit Note Line. Document Reference + A reference to a document associated with this credit note line. + 0..n + Credit Note Line + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Credit Note Line. Pricing Reference + A reference to pricing and item location information associated with this credit note line. + 0..1 + Credit Note Line + Pricing Reference + Pricing Reference + Pricing Reference + + + + + + + + + ASBIE + Credit Note Line. Originator_ Party. Party + The party who originated the Order to which the Credit Note is related. + 0..1 + Credit Note Line + Originator + Party + Party + Party + + + + + + + + + ASBIE + Credit Note Line. Delivery + A delivery associated with this credit note line. + 0..n + Credit Note Line + Delivery + Delivery + Delivery + + + + + + + + + ASBIE + Credit Note Line. Payment Terms + A specification of payment terms associated with this credit note line. + 0..n + Credit Note Line + Payment Terms + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Credit Note Line. Tax Total + A total amount of taxes of a particular kind applicable to this credit note line. + 0..n + Credit Note Line + Tax Total + Tax Total + Tax Total + + + + + + + + + ASBIE + Credit Note Line. Allowance Charge + An allowance or charge associated with this credit note. + 0..n + Credit Note Line + Allowance Charge + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Credit Note Line. Item + The item associated with this credit note line. + 0..1 + Credit Note Line + Item + Item + Item + + + + + + + + + ASBIE + Credit Note Line. Price + The price of the item associated with this credit note line. + 0..1 + Credit Note Line + Price + Price + Price + Unit Price, Base Price + + + + + + + + + ASBIE + Credit Note Line. Delivery Terms + Terms and conditions of a delivery associated with this credit note line. + 0..n + Credit Note Line + Delivery Terms + Delivery Terms + Delivery Terms + + + + + + + + + ASBIE + Credit Note Line. Sub_ Credit Note Line. Credit Note Line + A class defining one or more Credit Note Lines detailing the credit note line. + 0..n + Credit Note Line + Sub + Credit Note Line + Credit Note Line + Credit Note Line + + + + + + + + + ASBIE + Credit Note Line. Item_ Price Extension. Price Extension + The price extension, calculated by multiplying the price per unit by the quantity of items on this credit note line. + 0..1 + Credit Note Line + Item + Price Extension + Price Extension + Price Extension + + + + + + + + + + + ABIE + Customer Party. Details + A class to describe a customer party. + Customer Party + + + + + + + + + BBIE + Customer Party. Customer Assigned_ Account Identifier. Identifier + An identifier for the customer's account, assigned by the customer itself. + 0..1 + Customer Party + Customer Assigned + Account Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Customer Party. Supplier Assigned_ Account Identifier. Identifier + An identifier for the customer's account, assigned by the supplier. + 0..1 + Customer Party + Supplier Assigned + Account Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Customer Party. Additional_ Account Identifier. Identifier + An identifier for the customer's account, assigned by a third party. + 0..n + Customer Party + Additional + Account Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Customer Party. Party + The customer party itself. + 0..1 + Customer Party + Party + Party + Party + + + + + + + + + ASBIE + Customer Party. Delivery_ Contact. Contact + A customer contact for deliveries. + 0..1 + Customer Party + Delivery + Contact + Contact + Contact + + + + + + + + + ASBIE + Customer Party. Accounting_ Contact. Contact + A customer contact for accounting. + 0..1 + Customer Party + Accounting + Contact + Contact + Contact + + + + + + + + + ASBIE + Customer Party. Buyer_ Contact. Contact + A customer contact for purchasing. + 0..1 + Customer Party + Buyer + Contact + Contact + Contact + + + + + + + + + + + ABIE + Customs Declaration. Details + A class describing identifiers or references relating to customs procedures. + Customs Declaration + Movement Reference Number, Local Reference Number + + + + + + + + + BBIE + Customs Declaration. Identifier + An identifier associated with customs related procedures. + 1 + Customs Declaration + Identifier + Identifier + Identifier. Type + CUST001 3333-44-123 + + + + + + + + + ASBIE + Customs Declaration. Issuer_ Party. Party + Describes the party issuing the customs declaration. + 0..1 + Customs Declaration + Issuer + Party + Party + Party + + + + + + + + + + + ABIE + Debit Note Line. Details + A class to define a line in a Debit Note. + Debit Note Line + + + + + + + + + BBIE + Debit Note Line. Identifier + An identifier for this debit note line. + 1 + Debit Note Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Debit Note Line. UUID. Identifier + A universally unique identifier for this debit note line. + 0..1 + Debit Note Line + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Debit Note Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Debit Note Line + Note + Text + Text. Type + + + + + + + + + BBIE + Debit Note Line. Debited_ Quantity. Quantity + The quantity of Items debited in this debit note line. + 0..1 + Debit Note Line + Debited + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Debit Note Line. Line Extension Amount. Amount + The total amount for this debit note line, including allowance charges but net of taxes. + 1 + Debit Note Line + Line Extension Amount + Amount + Amount. Type + + + + + + + + + BBIE + Debit Note Line. Tax Point Date. Date + The date of this debit note line, used to indicate the point at which tax becomes applicable. + 0..1 + Debit Note Line + Tax Point Date + Date + Date. Type + + + + + + + + + BBIE + Debit Note Line. Accounting Cost Code. Code + The buyer's accounting cost centre for this debit note line, expressed as a code. + 0..1 + Debit Note Line + Accounting Cost Code + Code + Code. Type + + + + + + + + + BBIE + Debit Note Line. Accounting Cost. Text + The buyer's accounting cost centre for this debit note line, expressed as text. + 0..1 + Debit Note Line + Accounting Cost + Text + Text. Type + + + + + + + + + BBIE + Debit Note Line. Payment Purpose Code. Code + A code signifying the business purpose for this payment. + 0..1 + Debit Note Line + Payment Purpose Code + Code + Code. Type + + + + + + + + + ASBIE + Debit Note Line. Discrepancy_ Response. Response + A reason for the debit. + 0..n + Debit Note Line + Discrepancy + Response + Response + Response + + + + + + + + + ASBIE + Debit Note Line. Despatch_ Line Reference. Line Reference + A reference to a despatch line associated with this debit note line. + 0..n + Debit Note Line + Despatch + Line Reference + Line Reference + Line Reference + + + + + + + + + ASBIE + Debit Note Line. Receipt_ Line Reference. Line Reference + A reference to a receipt line associated with this debit note line. + 0..n + Debit Note Line + Receipt + Line Reference + Line Reference + Line Reference + + + + + + + + + ASBIE + Debit Note Line. Billing Reference + A reference to a billing document associated with this debit note line. + 0..n + Debit Note Line + Billing Reference + Billing Reference + Billing Reference + + + + + + + + + ASBIE + Debit Note Line. Document Reference + A reference to a document associated with this debit note line. + 0..n + Debit Note Line + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Debit Note Line. Pricing Reference + A reference to pricing and item location information associated with this debit note line. + 0..1 + Debit Note Line + Pricing Reference + Pricing Reference + Pricing Reference + + + + + + + + + ASBIE + Debit Note Line. Delivery + A delivery associated with this debit note line. + 0..n + Debit Note Line + Delivery + Delivery + Delivery + + + + + + + + + ASBIE + Debit Note Line. Tax Total + A total amount of taxes of a particular kind applicable to this debit note line. + 0..n + Debit Note Line + Tax Total + Tax Total + Tax Total + + + + + + + + + ASBIE + Debit Note Line. Allowance Charge + An allowance or charge associated with this debit note. + 0..n + Debit Note Line + Allowance Charge + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Debit Note Line. Item + The item associated with this debit note line. + 0..1 + Debit Note Line + Item + Item + Item + + + + + + + + + ASBIE + Debit Note Line. Price + The price of the item associated with this debit note line. + 0..1 + Debit Note Line + Price + Price + Price + Unit Price, Base Price + + + + + + + + + ASBIE + Debit Note Line. Sub_ Debit Note Line. Debit Note Line + A recursive description of a debit note line subsidiary to this debit note line. + 0..n + Debit Note Line + Sub + Debit Note Line + Debit Note Line + Debit Note Line + + + + + + + + + + + ABIE + Declaration. Details + A class to describe a declaration by an economic operator of certain characteristics or capabilities in fulfilment of requirements specified in a call for tenders. + Declaration + + + + + + + + + BBIE + Declaration. Name + The name of this declaration. + 0..n + Declaration + Name + Name + Name. Type + + + + + + + + + BBIE + Declaration. Declaration Type Code. Code + A code signifying the type of this declaration. + 0..1 + Declaration + Declaration Type Code + Code + Code. Type + + + + + + + + + BBIE + Declaration. Description. Text + Text describing this declaration. + 0..n + Declaration + Description + Text + Text. Type + + + + + + + + + ASBIE + Declaration. Evidence Supplied + The evidence supporting this declaration. + 0..n + Declaration + Evidence Supplied + Evidence Supplied + Evidence Supplied + + + + + + + + + + + ABIE + Delivery. Details + A class to describe a delivery. + Delivery + + + + + + + + + BBIE + Delivery. Identifier + An identifier for this delivery. + 0..1 + Delivery + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Delivery. Quantity + The quantity of items, child consignments, shipments in this delivery. + 0..1 + Delivery + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Delivery. Minimum_ Quantity. Quantity + The minimum quantity of items, child consignments, shipments in this delivery. + 0..1 + Delivery + Minimum + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Delivery. Maximum_ Quantity. Quantity + The maximum quantity of items, child consignments, shipments in this delivery. + 0..1 + Delivery + Maximum + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Delivery. Actual_ Delivery Date. Date + The actual date of delivery. + 0..1 + Delivery + Actual + Delivery Date + Date + Date. Type + + + + + + + + + BBIE + Delivery. Actual_ Delivery Time. Time + The actual time of delivery. + 0..1 + Delivery + Actual + Delivery Time + Time + Time. Type + + + + + + + + + BBIE + Delivery. Latest_ Delivery Date. Date + The latest date of delivery allowed by the buyer. + 0..1 + Delivery + Latest + Delivery Date + Date + Date. Type + + + + + + + + + BBIE + Delivery. Latest_ Delivery Time. Time + The latest time of delivery allowed by the buyer. + 0..1 + Delivery + Latest + Delivery Time + Time + Time. Type + + + + + + + + + BBIE + Delivery. Release. Identifier + An identifier used for approval of access to delivery locations (e.g., port terminals). + 0..1 + Delivery + Release + Identifier + Identifier. Type + + + + + + + + + BBIE + Delivery. Tracking Identifier. Identifier + The delivery Tracking ID (for transport tracking). + 0..1 + Delivery + Tracking Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Delivery. Delivery_ Address. Address + The delivery address. + 0..1 + Delivery + Delivery + Address + Address + Address + + + + + + + + + ASBIE + Delivery. Delivery_ Location. Location + The delivery location. + 0..1 + Delivery + Delivery + Location + Location + Location + + + + + + + + + ASBIE + Delivery. Alternative Delivery_ Location. Location + An alternative delivery location. + 0..1 + Delivery + Alternative Delivery + Location + Location + Location + + + + + + + + + ASBIE + Delivery. Requested Delivery_ Period. Period + The period requested for delivery. + 0..1 + Delivery + Requested Delivery + Period + Period + Period + + + + + + + + + ASBIE + Delivery. Promised Delivery_ Period. Period + The period promised for delivery. + 0..1 + Delivery + Promised Delivery + Period + Period + Period + + + + + + + + + ASBIE + Delivery. Estimated Delivery_ Period. Period + The period estimated for delivery. + 0..1 + Delivery + Estimated Delivery + Period + Period + Period + + + + + + + + + ASBIE + Delivery. Carrier_ Party. Party + The party responsible for delivering the goods. + 0..1 + Delivery + Carrier + Party + Party + Party + + + + + + + + + ASBIE + Delivery. Delivery_ Party. Party + The party to whom the goods are delivered. + 0..1 + Delivery + Delivery + Party + Party + Party + + + + + + + + + ASBIE + Delivery. Notify_ Party. Party + A party to be notified of this delivery. + 0..n + Delivery + Notify + Party + Party + Party + + + + + + + + + ASBIE + Delivery. Despatch + The despatch (pickup) associated with this delivery. + 0..1 + Delivery + Despatch + Despatch + Despatch + + + + + + + + + ASBIE + Delivery. Delivery Terms + Terms and conditions relating to the delivery. + 0..n + Delivery + Delivery Terms + Delivery Terms + Delivery Terms + + + + + + + + + ASBIE + Delivery. Minimum_ Delivery Unit. Delivery Unit + The minimum delivery unit for this delivery. + 0..1 + Delivery + Minimum + Delivery Unit + Delivery Unit + Delivery Unit + + + + + + + + + ASBIE + Delivery. Maximum_ Delivery Unit. Delivery Unit + The maximum delivery unit for this delivery. + 0..1 + Delivery + Maximum + Delivery Unit + Delivery Unit + Delivery Unit + + + + + + + + + ASBIE + Delivery. Shipment + The shipment being delivered. + 0..1 + Delivery + Shipment + Shipment + Shipment + + + + + + + + + + + ABIE + Delivery Terms. Details + A class for describing the terms and conditions applying to the delivery of goods. + Delivery Terms + + + + + + + + + BBIE + Delivery Terms. Identifier + An identifier for this description of delivery terms. + 0..1 + Delivery Terms + Identifier + Identifier + Identifier. Type + CIF, FOB, or EXW from the INCOTERMS Terms of Delivery. (2000 version preferred.) + + + + + + + + + BBIE + Delivery Terms. Special_ Terms. Text + A description of any terms or conditions relating to the delivery items. + 0..n + Delivery Terms + Special + Terms + Text + Text. Type + + + + + + + + + BBIE + Delivery Terms. Loss Risk Responsibility Code. Code + A code that identifies one of various responsibilities for loss risk in the execution of the delivery. + 0..1 + Delivery Terms + Loss Risk Responsibility Code + Code + Code. Type + + + + + + + + + BBIE + Delivery Terms. Loss Risk. Text + A description of responsibility for risk of loss in execution of the delivery, expressed as text. + 0..n + Delivery Terms + Loss Risk + Text + Text. Type + + + + + + + + + BBIE + Delivery Terms. Amount + The monetary amount covered by these delivery terms. + 0..1 + Delivery Terms + Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Delivery Terms. Delivery_ Location. Location + The location for the contracted delivery. + 0..1 + Delivery Terms + Delivery + Location + Location + Location + + + + + + + + + ASBIE + Delivery Terms. Allowance Charge + An allowance or charge covered by these delivery terms. + 0..1 + Delivery Terms + Allowance Charge + Allowance Charge + Allowance Charge + + + + + + + + + + + ABIE + Delivery Unit. Details + A class to describe a delivery unit. + Delivery Unit + + + + + + + + + BBIE + Delivery Unit. Batch Quantity. Quantity + The quantity of ordered Items that constitutes a batch for delivery purposes. + 1 + Delivery Unit + Batch Quantity + Quantity + Quantity. Type + 100 units , by the dozen + + + + + + + + + BBIE + Delivery Unit. Consumer_ Unit. Quantity + The quantity of units in the Delivery Unit expressed in the units used by the consumer. + 0..1 + Delivery Unit + Consumer + Unit + Quantity + Quantity. Type + packs of 10 + + + + + + + + + BBIE + Delivery Unit. Hazardous Risk_ Indicator. Indicator + An indication that the transported goods are subject to an international regulation concerning the carriage of dangerous goods (true) or not (false). + 0..1 + Delivery Unit + Hazardous Risk + Indicator + Indicator + Indicator. Type + Default is negative + + + + + + + + + + + ABIE + Dependent Price Reference. Details + A class to define the price of an item as a percentage of the price of a different item. + Dependent Price Reference + + + + + + + + + BBIE + Dependent Price Reference. Percent + The percentage by which the price of the different item is multiplied to calculate the price of the item. + 0..1 + Dependent Price Reference + Percent + Percent + Percent. Type + + + + + + + + + ASBIE + Dependent Price Reference. Location_ Address. Address + The reference location for this dependent price reference. + 0..1 + Dependent Price Reference + Location + Address + Address + Address + + + + + + + + + ASBIE + Dependent Price Reference. Dependent_ Line Reference. Line Reference + A reference to a line that the price is depended of. + 0..1 + Dependent Price Reference + Dependent + Line Reference + Line Reference + Line Reference + + + + + + + + + + + ABIE + Despatch. Details + A class to describe the despatching of goods (their pickup for delivery). + Despatch + + + + + + + + + BBIE + Despatch. Identifier + An identifier for this despatch event. + 0..1 + Despatch + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Despatch. Requested_ Despatch Date. Date + The despatch (pickup) date requested, normally by the buyer. + 0..1 + Despatch + Requested + Despatch Date + Date + Date. Type + + + + + + + + + BBIE + Despatch. Requested_ Despatch Time. Time + The despatch (pickup) time requested, normally by the buyer. + 0..1 + Despatch + Requested + Despatch Time + Time + Time. Type + + + + + + + + + BBIE + Despatch. Estimated_ Despatch Date. Date + The estimated despatch (pickup) date. + 0..1 + Despatch + Estimated + Despatch Date + Date + Date. Type + + + + + + + + + BBIE + Despatch. Estimated_ Despatch Time. Time + The estimated despatch (pickup) time. + 0..1 + Despatch + Estimated + Despatch Time + Time + Time. Type + + + + + + + + + BBIE + Despatch. Actual_ Despatch Date. Date + The actual despatch (pickup) date. + 0..1 + Despatch + Actual + Despatch Date + Date + Date. Type + + + + + + + + + BBIE + Despatch. Actual_ Despatch Time. Time + The actual despatch (pickup) time. + 0..1 + Despatch + Actual + Despatch Time + Time + Time. Type + + + + + + + + + BBIE + Despatch. Guaranteed_ Despatch Date. Date + The date guaranteed for the despatch (pickup). + 0..1 + Despatch + Guaranteed + Despatch Date + Date + Date. Type + + + + + + + + + BBIE + Despatch. Guaranteed_ Despatch Time. Time + The time guaranteed for the despatch (pickup). + 0..1 + Despatch + Guaranteed + Despatch Time + Time + Time. Type + + + + + + + + + BBIE + Despatch. Release. Identifier + An identifier for the release of the despatch used as security control or cargo control (pick-up). + 0..1 + Despatch + Release + Identifier + Identifier. Type + + + + + + + + + BBIE + Despatch. Instructions. Text + Text describing any special instructions applying to the despatch (pickup). + 0..n + Despatch + Instructions + Text + Text. Type + + + + + + + + + ASBIE + Despatch. Despatch_ Address. Address + The address of the despatch (pickup). + 0..1 + Despatch + Despatch + Address + Address + Address + + + + + + + + + ASBIE + Despatch. Despatch_ Location. Location + The location of the despatch (pickup). + 0..1 + Despatch + Despatch + Location + Location + Location + + + + + + + + + ASBIE + Despatch. Despatch_ Party. Party + The party despatching the goods. + 0..1 + Despatch + Despatch + Party + Party + Party + + + + + + + + + ASBIE + Despatch. Carrier_ Party. Party + The party carrying the goods. + 0..1 + Despatch + Carrier + Party + Party + Party + + + + + + + + + ASBIE + Despatch. Notify_ Party. Party + A party to be notified of this despatch (pickup). + 0..n + Despatch + Notify + Party + Party + Party + + + + + + + + + ASBIE + Despatch. Contact + The primary contact for this despatch (pickup). + 0..1 + Despatch + Contact + Contact + Contact + + + + + + + + + ASBIE + Despatch. Estimated Despatch_ Period. Period + The period estimated for the despatch (pickup) of goods. + 0..1 + Despatch + Estimated Despatch + Period + Period + Period + + + + + + + + + ASBIE + Despatch. Requested Despatch_ Period. Period + The period requested for the despatch (pickup) of goods. + 0..1 + Despatch + Requested Despatch + Period + Period + Period + + + + + + + + + + + ABIE + Despatch Line. Details + A class to define a line in a Despatch Advice. + Despatch Line + + + + + + + + + BBIE + Despatch Line. Identifier + An identifier for this despatch line. + 1 + Despatch Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Despatch Line. UUID. Identifier + A universally unique identifier for this despatch line. + 0..1 + Despatch Line + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Despatch Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Despatch Line + Note + Text + Text. Type + + + + + + + + + BBIE + Despatch Line. Line Status Code. Code + A code signifying the status of this despatch line with respect to its original state. + 0..1 + Despatch Line + Line Status Code + Code + Line Status + Line Status_ Code. Type + + + + + + + + + BBIE + Despatch Line. Delivered_ Quantity. Quantity + The quantity despatched (picked up). + 0..1 + Despatch Line + Delivered + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Despatch Line. Backorder_ Quantity. Quantity + The quantity on back order at the supplier. + 0..1 + Despatch Line + Backorder + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Despatch Line. Backorder_ Reason. Text + The reason for the back order. + 0..n + Despatch Line + Backorder + Reason + Text + Text. Type + + + + + + + + + BBIE + Despatch Line. Outstanding_ Quantity. Quantity + The quantity outstanding (which will follow in a later despatch). + 0..1 + Despatch Line + Outstanding + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Despatch Line. Outstanding_ Reason. Text + The reason for the outstanding quantity. + 0..n + Despatch Line + Outstanding + Reason + Text + Text. Type + + + + + + + + + BBIE + Despatch Line. Oversupply_ Quantity. Quantity + The quantity over-supplied, i.e., the quantity over and above that ordered. + 0..1 + Despatch Line + Oversupply + Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Despatch Line. Order Line Reference + A reference to an order line associated with this despatch line. + 1..n + Despatch Line + Order Line Reference + Order Line Reference + Order Line Reference + + + + + + + + + ASBIE + Despatch Line. Document Reference + A reference to a document associated with this despatch line. + 0..n + Despatch Line + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Despatch Line. Item + The item associated with this despatch line. + 1 + Despatch Line + Item + Item + Item + + + + + + + + + ASBIE + Despatch Line. Shipment + A shipment associated with this despatch line. + 0..n + Despatch Line + Shipment + Shipment + Shipment + + + + + + + + + + + ABIE + Dimension. Details + A class to define a measurable dimension (length, mass, weight, volume, or area) of an item. + Dimension + + + + + + + + + BBIE + Dimension. Attribute Identifier. Identifier + An identifier for the attribute to which the measure applies. + 1 + Dimension + Attribute Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Dimension. Measure + The measurement value. + 0..1 + Dimension + Measure + Measure + Measure. Type + + + + + + + + + BBIE + Dimension. Description. Text + Text describing the measurement attribute. + 0..n + Dimension + Description + Text + Text. Type + + + + + + + + + BBIE + Dimension. Minimum_ Measure. Measure + The minimum value in a range of measurement of this dimension. + 0..1 + Dimension + Minimum + Measure + Measure + Measure. Type + + + + + + + + + BBIE + Dimension. Maximum_ Measure. Measure + The maximum value in a range of measurement of this dimension. + 0..1 + Dimension + Maximum + Measure + Measure + Measure. Type + + + + + + + + + + + ABIE + Document Distribution. Details + A class to describe the distribution of a document to an interested party. + Document Distribution + + + + + + + + + BBIE + Document Distribution. Print_ Qualifier. Text + Text describing the interested party's distribution rights. + 1 + Document Distribution + Print + Qualifier + Text + Text. Type + + + + + + + + + BBIE + Document Distribution. Maximum_ Copies. Numeric + The maximum number of printed copies of the document that the interested party is allowed to make. + 1 + Document Distribution + Maximum + Copies + Numeric + Numeric. Type + + + + + + + + + ASBIE + Document Distribution. Party + The interested party to which the document should be distributed. + 1 + Document Distribution + Party + Party + Party + + + + + + + + + + + ABIE + Document Reference. Details + A class to define a reference to a document. + Document Reference + + + + + + + + + BBIE + Document Reference. Identifier + An identifier for the referenced document. + 1 + Document Reference + Identifier + Identifier + Identifier. Type + PO-001 3333-44-123 + + + + + + + + + BBIE + Document Reference. Copy_ Indicator. Indicator + An indicator that the referenced document is a copy (true) or the original (false). + 0..1 + Document Reference + Copy + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Document Reference. UUID. Identifier + A universally unique identifier for this document reference. + 0..1 + Document Reference + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Document Reference. Issue Date. Date + The date, assigned by the sender of the referenced document, on which the document was issued. + 0..1 + Document Reference + Issue Date + Date + Date. Type + + + + + + + + + BBIE + Document Reference. Issue Time. Time + The time, assigned by the sender of the referenced document, at which the document was issued. + 0..1 + Document Reference + Issue Time + Time + Time. Type + + + + + + + + + BBIE + Document Reference. Document Type Code. Code + The type of document being referenced, expressed as a code. + 0..1 + Document Reference + Document Type Code + Code + Code. Type + + + + + + + + + BBIE + Document Reference. Document Type. Text + The type of document being referenced, expressed as text. + 0..1 + Document Reference + Document Type + Text + Text. Type + + + + + + + + + BBIE + Document Reference. XPath. Text + A reference to another place in the same XML document instance in which DocumentReference appears. + 0..n + Document Reference + XPath + Text + Text. Type + + + + + + + + + BBIE + Document Reference. Language. Identifier + An identifier for the language used in the referenced document. + 0..1 + Document Reference + Language + Identifier + Identifier. Type + + + + + + + + + BBIE + Document Reference. Locale Code. Code + A code signifying the locale in which the language in the referenced document is used. + 0..1 + Document Reference + Locale Code + Code + Code. Type + + + + + + + + + BBIE + Document Reference. Version. Identifier + An identifier for the current version of the referenced document. + 0..1 + Document Reference + Version + Identifier + Identifier. Type + 1.1 + + + + + + + + + BBIE + Document Reference. Document Status Code. Code + A code signifying the status of the reference document with respect to its original state. + 0..1 + Document Reference + Document Status Code + Code + Document Status + Document Status_ Code. Type + + + + + + + + + BBIE + Document Reference. Document_ Description. Text + Text describing the referenced document. + 0..n + Document Reference + Document + Description + Text + Text. Type + stock no longer provided + + + + + + + + + ASBIE + Document Reference. Attachment + The referenced document as an attachment to the document from which it is referenced. + 0..1 + Document Reference + Attachment + Attachment + Attachment + + + + + + + + + ASBIE + Document Reference. Validity_ Period. Period + The period for which this document reference is valid. + 0..1 + Document Reference + Validity + Period + Period + Period + + + + + + + + + ASBIE + Document Reference. Issuer_ Party. Party + The party who issued the referenced document. + 0..1 + Document Reference + Issuer + Party + Party + Party + + + + + + + + + ASBIE + Document Reference. Result Of Verification + The result of an attempt to verify a signature associated with the referenced document. + 0..1 + Document Reference + Result Of Verification + Result Of Verification + Result Of Verification + + + + + + + + + + + ABIE + Document Response. Details + A class to describe an application-level response to a document. + Document Response + + + + + + + + + ASBIE + Document Response. Response + A response to the document as a whole. + 1 + Document Response + Response + Response + Response + + + + + + + + + ASBIE + Document Response. Document Reference + A referenced document. + 1..n + Document Response + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Document Response. Issuer_ Party. Party + The party that issued the document. + 0..1 + Document Response + Issuer + Party + Party + Party + + + + + + + + + ASBIE + Document Response. Recipient_ Party. Party + The party for which the document is intended. + 0..1 + Document Response + Recipient + Party + Party + Party + + + + + + + + + ASBIE + Document Response. Line Response + A response to a particular line in the document. + 0..n + Document Response + Line Response + Line Response + Line Response + + + + + + + + + + + ABIE + Duty. Details + The charging rate used for both call charging and time dependent charging + Duty + + + + + + + + + BBIE + Duty. Amount + The amount of this duty. + 1 + Duty + Amount + Amount + Amount. Type + 88.23 + + + + + + + + + BBIE + Duty. Duty. Text + Text describing this duty. + 0..1 + Duty + Duty + Text + Text. Type + ConnectionFee + + + + + + + + + BBIE + Duty. Duty Code. Code + The type of this charge rate, expressed as a code. + 0..1 + Duty + Duty Code + Code + Code. Type + ConnectionFee + + + + + + + + + ASBIE + Duty. Tax Category + The tax category applicable to this duty. + 0..1 + Duty + Tax Category + Tax Category + Tax Category + + + + + + + + + + + ABIE + Economic Operator Role. Details + A class to describe the tenderer contracting role. + Economic Operator Role + + + + + + + + + BBIE + Economic Operator Role. Role Code. Code + A code specifying the role of the party. + 0..1 + Economic Operator Role + Role Code + Code + Code. Type + + + + + + + + + BBIE + Economic Operator Role. Role Description. Text + A textual description of the party role. + 0..n + Economic Operator Role + Role Description + Text + Text. Type + + + + + + + + + + + ABIE + Economic Operator Short List. Details + A class to provide information about the preselection of a short list of economic operators for consideration as possible candidates in a tendering process. + Economic Operator Short List + + + + + + + + + BBIE + Economic Operator Short List. Limitation_ Description. Text + Text describing the criteria used to restrict the number of candidates. + 0..n + Economic Operator Short List + Limitation + Description + Text + Text. Type + + + + + + + + + BBIE + Economic Operator Short List. Expected_ Quantity. Quantity + The number of economic operators expected to be on the short list. + 0..1 + Economic Operator Short List + Expected + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Economic Operator Short List. Maximum_ Quantity. Quantity + The maximum number of economic operators on the short list. + 0..1 + Economic Operator Short List + Maximum + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Economic Operator Short List. Minimum_ Quantity. Quantity + The minimum number of economic operators on the short list. + 0..1 + Economic Operator Short List + Minimum + Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Economic Operator Short List. Pre Selected_ Party. Party + The parties pre-selected allowed to submit tenders in a negotiated procedure. Negotiated procedure is a type of procedure where the contracting authorities can set the parties to be invited in the procurement project + 0..n + Economic Operator Short List + Pre Selected + Party + Party + Party + + + + + + + + + + + ABIE + Emission Calculation Method. Details + A class to define how an environmental emission is calculated. + Emission Calculation Method + + + + + + + + + BBIE + Emission Calculation Method. Calculation Method Code. Code + A code signifying the method used to calculate the emission. + 0..1 + Emission Calculation Method + Calculation Method Code + Code + Code. Type + + + + + + + + + BBIE + Emission Calculation Method. Fullness Indication Code. Code + A code signifying whether a piece of transport equipment is full, partially full, or empty. This indication is used as a parameter when calculating the environmental emission. + 0..1 + Emission Calculation Method + Fullness Indication Code + Code + Code. Type + + + + + + + + + ASBIE + Emission Calculation Method. Measurement From_ Location. Location + A start location from which an environmental emission is calculated. + 0..1 + Emission Calculation Method + Measurement From + Location + Location + Location + + + + + + + + + ASBIE + Emission Calculation Method. Measurement To_ Location. Location + An end location to which an environmental emission is calculated. + 0..1 + Emission Calculation Method + Measurement To + Location + Location + Location + + + + + + + + + + + ABIE + Endorsement. Details + A class to describe an endorsement of a document. + Endorsement + + + + + + + + + BBIE + Endorsement. Document. Identifier + An identifier for this endorsement. + 1 + Endorsement + Document + Identifier + Identifier. Type + + + + + + + + + BBIE + Endorsement. Approval Status. Text + The status of this endorsement. + 1 + Endorsement + Approval Status + Text + Text. Type + Authentication Code + + + + + + + + + BBIE + Endorsement. Remarks. Text + Remarks provided by the endorsing party. + 0..n + Endorsement + Remarks + Text + Text. Type + + + + + + + + + ASBIE + Endorsement. Endorser Party + The type of party providing this endorsement. + 1 + Endorsement + Endorser Party + Endorser Party + Endorser Party + + + + + + + + + ASBIE + Endorsement. Signature + A signature applied to this endorsement. + 0..n + Endorsement + Signature + Signature + Signature + + + + + + + + + + + ABIE + Endorser Party. Details + A class to describe the party endorsing a document. + Endorser Party + + + + + + + + + BBIE + Endorser Party. Role Code. Code + A code specifying the role of the party providing the endorsement (e.g., issuer, embassy, insurance, etc.). + 1 + Endorser Party + Role Code + Code + Code. Type + + + + + + + + + BBIE + Endorser Party. Sequence. Numeric + A number indicating the order of the endorsement provided by this party in the sequence in which endorsements are to be applied. + 1 + Endorser Party + Sequence + Numeric + Numeric. Type + + + + + + + + + ASBIE + Endorser Party. Party + The party endorsing the application. + 1 + Endorser Party + Party + Party + Party + + + + + + + + + ASBIE + Endorser Party. Signatory_ Contact. Contact + The individual representing the exporter who signs the Certificate of Origin application before submitting it to the issuer party. + 1 + Endorser Party + Signatory + Contact + Contact + Contact + + + + + + + + + + + ABIE + Energy Tax Report. Details + A class to describe energy taxes. + Energy Tax Report + + + + + + + + + BBIE + Energy Tax Report. Tax Energy Amount. Amount + The monetary amount of taxes (and duties). + 0..1 + Energy Tax Report + Tax Energy Amount + Amount + Amount. Type + 3087.90 + + + + + + + + + BBIE + Energy Tax Report. Tax Energy_ On Account Amount. Amount + The monetary amount of taxes (and duties) paid on account. + 0..1 + Energy Tax Report + Tax Energy + On Account Amount + Amount + Amount. Type + 2855.40 + + + + + + + + + BBIE + Energy Tax Report. Tax Energy Balance. Amount + The monetary amount of the balance of taxes owing. + 0..1 + Energy Tax Report + Tax Energy Balance + Amount + Amount. Type + 232.49 + + + + + + + + + ASBIE + Energy Tax Report. Tax Scheme + The relevant taxation scheme. + 1 + Energy Tax Report + Tax Scheme + Tax Scheme + Tax Scheme + + + + + + + + + + + ABIE + Energy Water Supply. Details + A class to describe the supply (and therefore consumption) of an amount of energy or water. + Energy Water Supply + + + + + + + + + ASBIE + Energy Water Supply. Consumption Report + An amount of energy or water consumed. + 0..n + Energy Water Supply + Consumption Report + Consumption Report + Consumption Report + + + + + + + + + ASBIE + Energy Water Supply. Energy Tax Report + A tax on the consumption of energy or water. + 0..n + Energy Water Supply + Energy Tax Report + Energy Tax Report + Energy Tax Report + + + + + + + + + ASBIE + Energy Water Supply. Consumption Average + A consumption average. + 0..n + Energy Water Supply + Consumption Average + Consumption Average + Consumption Average + + + + + + + + + ASBIE + Energy Water Supply. Energy Water_ Consumption Correction. Consumption Correction + Describes any corrections or adjustments to the supply of energy or water. + 0..n + Energy Water Supply + Energy Water + Consumption Correction + Consumption Correction + Consumption Correction + + + + + + + + + + + ABIE + Environmental Emission. Details + A class to describe an environmental emission. + Environmental Emission + + + + + + + + + BBIE + Environmental Emission. Environmental Emission Type Code. Code + A code specifying the type of environmental emission. + 1 + Environmental Emission + Environmental Emission Type Code + Code + Code. Type + + + + + + + + + BBIE + Environmental Emission. Value. Measure + A value measurement for the environmental emission. + 1 + Environmental Emission + Value + Measure + Measure. Type + + + + + + + + + BBIE + Environmental Emission. Description. Text + Text describing this environmental emission. + 0..n + Environmental Emission + Description + Text + Text. Type + + + + + + + + + ASBIE + Environmental Emission. Emission Calculation Method + A method used to calculate the amount of this emission. + 0..n + Environmental Emission + Emission Calculation Method + Emission Calculation Method + Emission Calculation Method + + + + + + + + + + + ABIE + Evaluation Criterion. Details + A class defining the required criterion for a tenderer to be elligible in a tendering process. + Evaluation Criterion + + + + + + + + + BBIE + Evaluation Criterion. Evaluation Criterion Type Code. Code + A code that specifies the criterion; it may be financial, technical or organizational. + 0..1 + Evaluation Criterion + Evaluation Criterion Type Code + Code + Code. Type + + + + + + + + + BBIE + Evaluation Criterion. Description. Text + A description of the criterion. + 0..n + Evaluation Criterion + Description + Text + Text. Type + + + + + + + + + BBIE + Evaluation Criterion. Threshold_ Amount. Amount + Estimated monetary amount of the threshold for the criterion. + 0..1 + Evaluation Criterion + Threshold + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Evaluation Criterion. Threshold_ Quantity. Quantity + Estimated quantity of the threshold for the criterion. + 0..1 + Evaluation Criterion + Threshold + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Evaluation Criterion. Expression Code. Code + A code identifying the expression that will be used to evaluate the criterion. + 0..1 + Evaluation Criterion + Expression Code + Code + Code. Type + + + + + + + + + BBIE + Evaluation Criterion. Expression. Text + The expression that will be used to evaluate the criterion. + 0..n + Evaluation Criterion + Expression + Text + Text. Type + + + + + + + + + ASBIE + Evaluation Criterion. Duration_ Period. Period + Describes the period for which the evaluation criterion is valid. + 0..1 + Evaluation Criterion + Duration + Period + Period + Period + + + + + + + + + ASBIE + Evaluation Criterion. Suggested_ Evidence. Evidence + Describes any evidences that should be used to satisfy the criterion. + 0..n + Evaluation Criterion + Suggested + Evidence + Evidence + Evidence + + + + + + + + + + + ABIE + Event. Details + A class to describe a significant occurrence relating to an object, process, or person. + Event + + + + + + + + + BBIE + Event. Identification. Identifier + An identifier for this event within an agreed event identification scheme. + 0..1 + Event + Identification + Identifier + Identifier. Type + + + + + + + + + BBIE + Event. Occurrence Date. Date + The date of this event. + 0..1 + Event + Occurrence Date + Date + Date. Type + + + + + + + + + BBIE + Event. Occurrence Time. Time + The time of this event. + 0..1 + Event + Occurrence Time + Time + Time. Type + + + + + + + + + BBIE + Event. Type Code. Code + A code signifying the type of this event. + 0..1 + Event + Type Code + Code + Code. Type + + + + + + + + + BBIE + Event. Description. Text + Text describing this event. + 0..n + Event + Description + Text + Text. Type + + + + + + + + + BBIE + Event. Completion_ Indicator. Indicator + An indicator that this event has been completed (true) or not (false). + 0..1 + Event + Completion + Indicator + Indicator + Indicator. Type + + + + + + + + + ASBIE + Event. Current_ Status. Status + The current status of this event. + 0..n + Event + Current + Status + Status + Status + + + + + + + + + ASBIE + Event. Contact + Contacts associated with this event. + 0..n + Event + Contact + Contact + Contact + + + + + + + + + ASBIE + Event. Occurence_ Location. Location + The location of this event. + 0..1 + Event + Occurence + Location + Location + Location + + + + + + + + + + + ABIE + Event Comment. Details + A class to define comments about a retail event. + Event Comment + + + + + + + + + BBIE + Event Comment. Comment. Text + Text commenting on the event. + 1 + Event Comment + Comment + Text + Text. Type + + + + + + + + + BBIE + Event Comment. Issue Date. Date + The date on which this comment was made. + 0..1 + Event Comment + Issue Date + Date + Date. Type + + + + + + + + + BBIE + Event Comment. Issue Time. Time + The time at which this comment was made. + 0..1 + Event Comment + Issue Time + Time + Time. Type + + + + + + + + + + + ABIE + Event Line Item. Details + A class to define a line item describing the expected impacts associated with a retail event involving a specific product at a specific location. + Event Line Item + + + + + + + + + BBIE + Event Line Item. Line Number. Numeric + The number of this event line item. + 0..1 + Event Line Item + Line Number + Numeric + Numeric. Type + + + + + + + + + ASBIE + Event Line Item. Participating Locations_ Location. Location + The location of the stores involved in the event described in this line item. + 0..1 + Event Line Item + Participating Locations + Location + Location + Location + + + + + + + + + ASBIE + Event Line Item. Retail Planned Impact + A planned impact of the event described in this line item. + 0..n + Event Line Item + Retail Planned Impact + Retail Planned Impact + Retail Planned Impact + + + + + + + + + ASBIE + Event Line Item. Supply_ Item. Item + The product with which the event is associated. + 1 + Event Line Item + Supply + Item + Item + Item + + + + + + + + + + + ABIE + Event Tactic. Details + A class defining a specific type of action or situation arranged by the Buyer or the Seller to promote the product or products. + Event Tactic + + + + + + + + + BBIE + Event Tactic. Comment. Text + Generic field to add additional information or to specify mutually defined eventTacticTypes that are not currently listed. + 0..1 + Event Tactic + Comment + Text + Text. Type + + + + + + + + + BBIE + Event Tactic. Quantity + The currencies, units, etc. that describes what is need for the event or promotion Usage example: Number of pallets per store for a stack display + 0..1 + Event Tactic + Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Event Tactic. Event Tactic Enumeration + The set of codes that describes this event tactic. + 1 + Event Tactic + Event Tactic Enumeration + Event Tactic Enumeration + Event Tactic Enumeration + + + + + + + + + ASBIE + Event Tactic. Period + The period covered by this event tactic. + 0..1 + Event Tactic + Period + Period + Period + + + + + + + + + + + ABIE + Event Tactic Enumeration. Details + A class to define a set of codes that describes a retail tactic. + Event Tactic Enumeration + + + + + + + + + BBIE + Event Tactic Enumeration. Consumer Incentive Tactic Type Code. Code + A code signifying the type of consumer incentive. Examples include:Free Item, Temporary Price reduction + 0..1 + Event Tactic Enumeration + Consumer Incentive Tactic Type Code + Code + Code. Type + + + + + + + + + BBIE + Event Tactic Enumeration. Display Tactic Type Code. Code + A code signifying the type of display. Examples Include: ON_COUNTER_DISPLAY, FLOOR_GRAPHICS FLOOR_STACK_DISPLAY + 0..1 + Event Tactic Enumeration + Display Tactic Type Code + Code + Code. Type + + + + + + + + + BBIE + Event Tactic Enumeration. Feature Tactic Type Code. Code + A code signifying a special feature. Examples Include: BILLBOARD DIRECT_MAIL_AD, FLYER + 0..1 + Event Tactic Enumeration + Feature Tactic Type Code + Code + Code. Type + + + + + + + + + BBIE + Event Tactic Enumeration. Trade Item Packing Labeling Type Code. Code + A code signifying the type of trade item packing and labeling. Examples Include: BONUS_SIZE CO_BRANDED_TRADE_ITEM + 0..1 + Event Tactic Enumeration + Trade Item Packing Labeling Type Code + Code + Code. Type + + + + + + + + + + + ABIE + Evidence. Details + A class to describe an item of evidentiary support for representations of capabilities or the ability to meet tendering requirements, which an economic operator must provide for acceptance into a tendering process. + Evidence + + + + + + + + + BBIE + Evidence. Identifier + An identifier for this item of evidentiary support. + 0..1 + Evidence + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Evidence. Evidence Type Code. Code + A code signifying the type of evidence. + 0..1 + Evidence + Evidence Type Code + Code + Code. Type + + + + + + + + + BBIE + Evidence. Description. Text + The textual description for this Evidence. + 0..n + Evidence + Description + Text + Text. Type + + + + + + + + + BBIE + Evidence. Candidate_ Statement. Text + Information about a candidate statement that the contracting authority accepts as a sufficient response. + 0..n + Evidence + Candidate + Statement + Text + Text. Type + + + + + + + + + ASBIE + Evidence. Evidence Issuing_ Party. Party + A class to describe a party issuing an evidentiary document. + 0..1 + Evidence + Evidence Issuing + Party + Party + Party + + + + + + + + + ASBIE + Evidence. Document Reference + A reference to the evidentiary document. + 0..1 + Evidence + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Evidence. Language + Information about a required translation to be part of the response, i.e. the language. + 0..1 + Evidence + Language + Language + Language + + + + + + + + + + + ABIE + Evidence Supplied. Details + A reference to evidence. + Evidence Supplied + + + + + + + + + BBIE + Evidence Supplied. Identifier + The identifier of the referenced evidence. + 1 + Evidence Supplied + Identifier + Identifier + Identifier. Type + + + + + + + + + + + ABIE + Exception Criteria Line. Details + A class to define a line in an ExceptionCriteria document that specifies a threshold for forecast variance, product activity, or performance history, the exceeding of which should trigger an exception message. + Exception Criteria Line + + + + + + + + + BBIE + Exception Criteria Line. Identifier + An identifier for this exception criteria line. + 1 + Exception Criteria Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Exception Criteria Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Exception Criteria Line + Note + Text + Text. Type + + + + + + + + + BBIE + Exception Criteria Line. Threshold Value Comparison Code. Code + Type of comparison to be carried out in reference to the set threshold." Allowed values are: EXCEEDS_EXCEPTION_VALUE FALLS_BELOW_EXCEPTION_VALUE + 1 + Exception Criteria Line + Threshold Value Comparison Code + Code + Code. Type + + + + + + + + + BBIE + Exception Criteria Line. Threshold_ Quantity. Quantity + A quantity beyond which an exception will be triggered. + 1 + Exception Criteria Line + Threshold + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Exception Criteria Line. Exception Status Code. Code + A code signifying status specific to a shipment exception. + 0..1 + Exception Criteria Line + Exception Status Code + Code + Code. Type + + + + + + + + + BBIE + Exception Criteria Line. Collaboration_ Priority Code. Code + A collaboratively assigned code signifying priority of the Exception. Possible values are: HIGH, LOW, MEDIUM + 0..1 + Exception Criteria Line + Collaboration + Priority Code + Code + Code. Type + + + + + + + + + BBIE + Exception Criteria Line. Exception_ Resolution Code. Code + Coded representation of possible resolution methods". Possible values are: DEFAULT_TO_AVERAGE_OF_COMPARED_VALUES DEFAULT_TO_BUYERS_VALUE DEFAULT_TO_HIGH_VALUE DEFAULT_TO_LOW_VALUE DEFAULT_TO_SELLERS_VALUE MANUAL_RESOLUTION MUTUALLY_DEFINED + 0..1 + Exception Criteria Line + Exception + Resolution Code + Code + Code. Type + + + + + + + + + BBIE + Exception Criteria Line. Supply Chain Activity Type Code. Code + Establishes the criterion for one of the three types of exceptions. There can be three types of exception criteria: Operational, Metric and Forecast Exceptions. This will be set if this Exception is about an Operational Exception. Description could be: A code used to identify an operational exception. Possible values are: CANCELED_ORDERS EMERGENCY_ORDERS ON_HAND ORDERS RECEIPTS SALES SHIPMENTS + 0..1 + Exception Criteria Line + Supply Chain Activity Type Code + Code + Code. Type + + + + + + + + + BBIE + Exception Criteria Line. Performance Metric Type Code. Code + A code signifying a measure of performance. + 0..1 + Exception Criteria Line + Performance Metric Type Code + Code + Code. Type + + + + + + + + + ASBIE + Exception Criteria Line. Effective_ Period. Period + The period during which this exception criteria line is in effect. + 0..1 + Exception Criteria Line + Effective + Period + Period + Period + + + + + + + + + ASBIE + Exception Criteria Line. Supply_ Item. Item + The Trade Item that is the subject of the Exception Criterion. + 1..n + Exception Criteria Line + Supply + Item + Item + Item + + + + + + + + + ASBIE + Exception Criteria Line. Forecast Exception Criterion Line + Establishes the criterion for one of the three types of exceptions. This class provides the criterion for the kind of forecast exception, the identification of the purpose of the forecast, the source of data and the time basis criterion for the exception. + 0..1 + Exception Criteria Line + Forecast Exception Criterion Line + Forecast Exception Criterion Line + Forecast Exception Criterion Line + + + + + + + + + + + ABIE + Exception Notification Line. Details + A class to define a line in an Exception Notification. + Exception Notification Line + + + + + + + + + BBIE + Exception Notification Line. Identifier + An identifier for this exception notification line. + 1 + Exception Notification Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Exception Notification Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Exception Notification Line + Note + Text + Text. Type + + + + + + + + + BBIE + Exception Notification Line. Description. Text + Text describing the exception. + 0..n + Exception Notification Line + Description + Text + Text. Type + + + + + + + + + BBIE + Exception Notification Line. Exception Status Code. Code + A code signifying status specific to a shipment exception. + 0..1 + Exception Notification Line + Exception Status Code + Code + Code. Type + + + + + + + + + BBIE + Exception Notification Line. Collaboration_ Priority Code. Code + Priority of Exception. + 0..1 + Exception Notification Line + Collaboration + Priority Code + Code + Code. Type + + + + + + + + + BBIE + Exception Notification Line. Resolution Code. Code + Coded representation of possible resolution methods". Possible values are: DEFAULT_TO_AVERAGE_OF_COMPARED_VALUES DEFAULT_TO_BUYERS_VALUE DEFAULT_TO_HIGH_VALUE DEFAULT_TO_LOW_VALUE DEFAULT_TO_SELLERS_VALUE MANUAL_RESOLUTION MUTUALLY_DEFINED + 0..1 + Exception Notification Line + Resolution Code + Code + Code. Type + + + + + + + + + BBIE + Exception Notification Line. Compared Value. Measure + The value that was compared with the source value that resulted in the exception + 1 + Exception Notification Line + Compared Value + Measure + Measure. Type + + + + + + + + + BBIE + Exception Notification Line. Source Value. Measure + The value used as the basis of comparison + 1 + Exception Notification Line + Source Value + Measure + Measure. Type + + + + + + + + + BBIE + Exception Notification Line. Variance. Quantity + The variance of a data item from an expected value during a particular time interval. + 0..1 + Exception Notification Line + Variance + Quantity + Quantity. Type + + + + + + + + + BBIE + Exception Notification Line. Supply Chain Activity Type Code. Code + Establishes the criterion for one of the three types of exceptions: Operational, performance metric and forecast. This reports an exception notification about an operational exception. Description could be: A code used to identify an operational exception. Possible values are: CANCELED_ORDERS EMERGENCY_ORDERS ON_HAND ORDERS RECEIPTS SALES SHIPMENTS + 0..1 + Exception Notification Line + Supply Chain Activity Type Code + Code + Code. Type + + + + + + + + + BBIE + Exception Notification Line. Performance Metric Type Code. Code + A code used to identify a measure of performance. It defines the type of the Performance Metric on which an exception criteria is being defined + 0..1 + Exception Notification Line + Performance Metric Type Code + Code + Code. Type + + + + + + + + + ASBIE + Exception Notification Line. Exception Observation_ Period. Period + The period (start-end date) when this exception is observed + 0..1 + Exception Notification Line + Exception Observation + Period + Period + Period + + + + + + + + + ASBIE + Exception Notification Line. Document Reference + A reference to Exception Criteria document can be provided. + 0..n + Exception Notification Line + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Exception Notification Line. Forecast Exception + A forecast accuracy or comparison exception. + 0..1 + Exception Notification Line + Forecast Exception + Forecast Exception + Forecast Exception + + + + + + + + + ASBIE + Exception Notification Line. Supply_ Item. Item + The product associated with this exception notification line. + 1 + Exception Notification Line + Supply + Item + Item + Item + + + + + + + + + + + ABIE + Exchange Rate. Details + A class to define an exchange rate. + Exchange Rate + + + + + + + + + BBIE + Exchange Rate. Source_ Currency Code. Code + The reference currency for this exchange rate; the currency from which the exchange is being made. + 1 + Exchange Rate + Source + Currency Code + Code + Currency + Currency_ Code. Type + + + + + + + + + BBIE + Exchange Rate. Source_ Currency Base Rate. Rate + In the case of a source currency with denominations of small value, the unit base. + 0..1 + Exchange Rate + Source + Currency Base Rate + Rate + Rate. Type + + + + + + + + + BBIE + Exchange Rate. Target_ Currency Code. Code + The target currency for this exchange rate; the currency to which the exchange is being made. + 1 + Exchange Rate + Target + Currency Code + Code + Currency + Currency_ Code. Type + + + + + + + + + BBIE + Exchange Rate. Target_ Currency Base Rate. Rate + In the case of a target currency with denominations of small value, the unit base. + 0..1 + Exchange Rate + Target + Currency Base Rate + Rate + Rate. Type + + + + + + + + + BBIE + Exchange Rate. Exchange Market Identifier. Identifier + An identifier for the currency exchange market used as the source of this exchange rate. + 0..1 + Exchange Rate + Exchange Market Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Exchange Rate. Calculation Rate. Rate + The factor applied to the source currency to calculate the target currency. + 0..1 + Exchange Rate + Calculation Rate + Rate + Rate. Type + + + + + + + + + BBIE + Exchange Rate. Mathematic Operator Code. Code + A code signifying whether the calculation rate is a multiplier or a divisor. + 0..1 + Exchange Rate + Mathematic Operator Code + Code + Operator + Operator_ Code. Type + + + + + + + + + BBIE + Exchange Rate. Date + The date on which the exchange rate was established. + 0..1 + Exchange Rate + Date + Date + Date. Type + + + + + + + + + ASBIE + Exchange Rate. Foreign Exchange_ Contract. Contract + A contract for foreign exchange. + 0..1 + Exchange Rate + Foreign Exchange + Contract + Contract + Contract + + + + + + + + + + + ABIE + External Reference. Details + A class to describe an external object, such as a document stored at a remote location. + External Reference + + + + + + + + + BBIE + External Reference. URI. Identifier + The Uniform Resource Identifier (URI) that identifies the external object as an Internet resource. + 0..1 + External Reference + URI + Identifier + Identifier. Type + + + + + + + + + BBIE + External Reference. Document Hash. Text + A hash value for the externally stored object. + 0..1 + External Reference + Document Hash + Text + Text. Type + + + + + + + + + BBIE + External Reference. Hash Algorithm Method. Text + A hash algorithm used to calculate the hash value of the externally stored object. + 0..1 + External Reference + Hash Algorithm Method + Text + Text. Type + + + + + + + + + BBIE + External Reference. Expiry Date. Date + The date on which availability of the resource can no longer be relied upon. + 0..1 + External Reference + Expiry Date + Date + Date. Type + + + + + + + + + BBIE + External Reference. Expiry Time. Time + The time after which availability of the resource can no longer be relied upon. + 0..1 + External Reference + Expiry Time + Time + Time. Type + + + + + + + + + BBIE + External Reference. Mime Code. Code + A code signifying the mime type of the external object. + 0..1 + External Reference + Mime Code + Code + Code. Type + + + + + + + + + BBIE + External Reference. Format Code. Code + A code signifying the format of the external object. + 0..1 + External Reference + Format Code + Code + Code. Type + + + + + + + + + BBIE + External Reference. Encoding Code. Code + A code signifying the encoding/decoding algorithm used with the external object. + 0..1 + External Reference + Encoding Code + Code + Code. Type + + + + + + + + + BBIE + External Reference. Character Set Code. Code + A code signifying the character set of an external document. + 0..1 + External Reference + Character Set Code + Code + Code. Type + + + + + + + + + BBIE + External Reference. File Name. Name + The file name of the external object. + 0..1 + External Reference + File Name + Name + Name. Type + + + + + + + + + BBIE + External Reference. Description. Text + Text describing the external object. + 0..n + External Reference + Description + Text + Text. Type + computer accessories for laptops + + + + + + + + + + + ABIE + Financial Account. Details + A class to describe a financial account. + Financial Account + + + + + + + + + BBIE + Financial Account. Identifier + The identifier for this financial account; the bank account number. + 0..1 + Financial Account + Identifier + Identifier + Identifier. Type + SWIFT(BIC) and IBAN are defined in ISO 9362 and ISO 13616. + + + + + + + + + BBIE + Financial Account. Name + The name of this financial account. + 0..1 + Financial Account + Name + Name + Name. Type + + + + + + + + + BBIE + Financial Account. Alias_ Name. Name + An alias for the name of this financial account, to be used in place of the actual account name for security reasons. + 0..1 + Financial Account + Alias + Name + Name + Name. Type + + + + + + + + + BBIE + Financial Account. Account Type Code. Code + A code signifying the type of this financial account. + 0..1 + Financial Account + Account Type Code + Code + Code. Type + + + + + + + + + BBIE + Financial Account. Account Format Code. Code + A code signifying the format of this financial account. + 0..1 + Financial Account + Account Format Code + Code + Code. Type + ISO20022 Clearing System Identification Code + + + + + + + + + BBIE + Financial Account. Currency Code. Code + A code signifying the currency in which this financial account is held. + 0..1 + Financial Account + Currency Code + Code + Currency + Currency_ Code. Type + + + + + + + + + BBIE + Financial Account. Payment_ Note. Text + Free-form text applying to the Payment for the owner of this account. + 0..n + Financial Account + Payment + Note + Text + Text. Type + + + + + + + + + ASBIE + Financial Account. Financial Institution_ Branch. Branch + The branch of the financial institution associated with this financial account. + 0..1 + Financial Account + Financial Institution + Branch + Branch + Branch + + + + + + + + + ASBIE + Financial Account. Country + The country in which the holder of the financial account is domiciled. + 0..1 + Financial Account + Country + Country + Country + + + + + + + + + + + ABIE + Financial Guarantee. Details + A class to describe the bond guarantee of a tenderer or bid submitter's actual entry into a contract in the event that it is the successful bidder. + Financial Guarantee + + + + + + + + + BBIE + Financial Guarantee. Guarantee Type Code. Code + A code signifying the type of financial guarantee. For instance "Provisional Guarantee" or "Final Guarantee" + 1 + Financial Guarantee + Guarantee Type Code + Code + Code. Type + + + + + + + + + BBIE + Financial Guarantee. Description. Text + Text describing this financial guarantee. + 0..n + Financial Guarantee + Description + Text + Text. Type + + + + + + + + + BBIE + Financial Guarantee. Liability. Amount + The amount of liability in this financial guarantee. + 0..1 + Financial Guarantee + Liability + Amount + Amount. Type + + + + + + + + + BBIE + Financial Guarantee. Amount. Rate + The rate used to calculate the amount of liability in this financial guarantee. + 0..1 + Financial Guarantee + Amount + Rate + Rate. Type + + + + + + + + + ASBIE + Financial Guarantee. Constitution_ Period. Period + The period during the tendering process to which this financial guarantee has to be settled. + 0..1 + Financial Guarantee + Constitution + Period + Period + Period + + + + + + + + + + + ABIE + Financial Institution. Details + A class to describe a financial institution. + Financial Institution + + + + + + + + + BBIE + Financial Institution. Identifier + An identifier for this financial institution. It is recommended that the ISO 9362 Bank Identification Code (BIC) be used as the ID. + 0..1 + Financial Institution + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Financial Institution. Name + The name of this financial institution. + 0..1 + Financial Institution + Name + Name + Name. Type + + + + + + + + + ASBIE + Financial Institution. Address + The address of this financial institution. + 0..1 + Financial Institution + Address + Address + Address + + + + + + + + + + + ABIE + Forecast Exception. Details + As explained in Exception Criteria Line: Three types of exception criteria can be defined, Operational, Metric or Forecast Exceptions. This class provides criteria for forecast exception type: the identification of the purpose of the forecast, the source of data and the time basis criteria for the exception. + Forecast Exception + + + + + + + + + BBIE + Forecast Exception. Forecast_ Purpose Code. Code + It is either Sales forecast or Order Forecast. Definition can be changed like: "The purpose of the Forecast (either sales or order), about which an exception criteria is being defined". + 1 + Forecast Exception + Forecast + Purpose Code + Code + Code. Type + + + + + + + + + BBIE + Forecast Exception. Forecast Type Code. Code + A code signifying the type of forecast. Example of values are:BASE PROMOTIONAL SEASONAL TOTAL + 1 + Forecast Exception + Forecast Type Code + Code + Code. Type + + + + + + + + + BBIE + Forecast Exception. Issue Date. Date + The date on which the forecast was issued. + 1 + Forecast Exception + Issue Date + Date + Date. Type + + + + + + + + + BBIE + Forecast Exception. Issue Time. Time + The time at which the forecast was issued. + 0..1 + Forecast Exception + Issue Time + Time + Time. Type + + + + + + + + + BBIE + Forecast Exception. Data Source Code. Code + A code signifying the partner who provides this information. + 1 + Forecast Exception + Data Source Code + Code + Code. Type + + + + + + + + + BBIE + Forecast Exception. Comparison Data Code. Code + A code signifying the partner providing the information in this forecast exception. + 0..1 + Forecast Exception + Comparison Data Code + Code + Code. Type + + + + + + + + + BBIE + Forecast Exception. Comparison Forecast Issue Time. Time + The time at which this comparison forecast was issued. + 0..1 + Forecast Exception + Comparison Forecast Issue Time + Time + Time. Type + + + + + + + + + BBIE + Forecast Exception. Comparison Forecast Issue Date. Date + The date on which this comparison forecast was issued. + 0..1 + Forecast Exception + Comparison Forecast Issue Date + Date + Date. Type + + + + + + + + + + + ABIE + Forecast Exception Criterion Line. Details + Establishes the criterion for one of the three types of exceptions. This class provides criteria for the kind of forecast exception, the identification of the purpose of the forecast, the source of data and the time basis criterion for the exception. + Forecast Exception Criterion Line + + + + + + + + + BBIE + Forecast Exception Criterion Line. Forecast_ Purpose Code. Code + A description of the purpose for the forecast that is assigned to each forecast data item exception criterion. + 1 + Forecast Exception Criterion Line + Forecast + Purpose Code + Code + Code. Type + + + + + + + + + BBIE + Forecast Exception Criterion Line. Forecast Type Code. Code + A description of a Forecast selected from a list. + 1 + Forecast Exception Criterion Line + Forecast Type Code + Code + Code. Type + + + + + + + + + BBIE + Forecast Exception Criterion Line. Comparison Data Source Code. Code + If it is a forecast comparison exception, this value indicates the other source of information. + 0..1 + Forecast Exception Criterion Line + Comparison Data Source Code + Code + Code. Type + + + + + + + + + BBIE + Forecast Exception Criterion Line. Data Source Code. Code + Indication of the partner who provides the information. + 1 + Forecast Exception Criterion Line + Data Source Code + Code + Code. Type + + + + + + + + + BBIE + Forecast Exception Criterion Line. Time Delta Days Quantity. Quantity + Time basis in days for the Exception. + 0..1 + Forecast Exception Criterion Line + Time Delta Days Quantity + Quantity + Quantity. Type + + + + + + + + + + + ABIE + Forecast Line. Details + Detailed information about a particular Forecast Line within a Forecast Document + Forecast Line + + + + + + + + + BBIE + Forecast Line. Identifier + An identifier for this forecast line. + 1 + Forecast Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Forecast Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Forecast Line + Note + Text + Text. Type + + + + + + + + + BBIE + Forecast Line. Frozen Document Indicator. Indicator + An indicator that the status of the forecast is modifiable (true) or not (false). + 0..1 + Forecast Line + Frozen Document Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Forecast Line. Forecast Type Code. Code + A code signifying the type of forecast. Examples: BASE PROMOTIONAL SEASONAL TOTAL + 1 + Forecast Line + Forecast Type Code + Code + Code. Type + seasonal, total + + + + + + + + + ASBIE + Forecast Line. Forecast_ Period. Period + The period to which the forecast applies. + 0..1 + Forecast Line + Forecast + Period + Period + Period + + + + + + + + + ASBIE + Forecast Line. Sales Item + Sales information for the item to which this line applies. + 0..1 + Forecast Line + Sales Item + Sales Item + Sales Item + + + + + + + + + + + ABIE + Forecast Revision Line. Details + A class to define a line in a Forecast Revision describing a revision to a line in a Forecast. + Forecast Revision Line + + + + + + + + + BBIE + Forecast Revision Line. Identifier + An identifier for this forecast revision line. + 1 + Forecast Revision Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Forecast Revision Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Forecast Revision Line + Note + Text + Text. Type + + + + + + + + + BBIE + Forecast Revision Line. Description. Text + Text describing the revision to this line. + 0..n + Forecast Revision Line + Description + Text + Text. Type + + + + + + + + + BBIE + Forecast Revision Line. Revised_ Forecast Line Identifier. Identifier + An identifier for the revised forecast line. + 1 + Forecast Revision Line + Revised + Forecast Line Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Forecast Revision Line. Source Forecast_ Issue Date. Date + The date on which the forecast modified by this revision was generated or created. + 1 + Forecast Revision Line + Source Forecast + Issue Date + Date + Date. Type + + + + + + + + + BBIE + Forecast Revision Line. Source Forecast_ Issue Time. Time + The time at which the forecast modified by this revision was generated or created. + 1 + Forecast Revision Line + Source Forecast + Issue Time + Time + Time. Type + + + + + + + + + BBIE + Forecast Revision Line. Adjustment Reason Code. Code + A code signifying the reason for the adjustment specified in this forecast revision line. + 0..1 + Forecast Revision Line + Adjustment Reason Code + Code + Code. Type + + + + + + + + + ASBIE + Forecast Revision Line. Forecast_ Period. Period + The period to which this forecast revision line applies. + 0..1 + Forecast Revision Line + Forecast + Period + Period + Period + + + + + + + + + ASBIE + Forecast Revision Line. Sales Item + Sales information for the item to which this line applies. + 0..1 + Forecast Revision Line + Sales Item + Sales Item + Sales Item + + + + + + + + + + + ABIE + Framework Agreement. Details + A class to describe a tendering framework agreement. + Framework Agreement + + + + + + + + + BBIE + Framework Agreement. Expected_ Operator. Quantity + The number of economic operators expected to participate in this framework agreement. + 0..1 + Framework Agreement + Expected + Operator + Quantity + Quantity. Type + + + + + + + + + BBIE + Framework Agreement. Maximum_ Operator. Quantity + The maximum number of economic operators allowed to participate in this framework agreement. + 0..1 + Framework Agreement + Maximum + Operator + Quantity + Quantity. Type + + + + + + + + + BBIE + Framework Agreement. Justification. Text + Text describing the justification for this framework agreement. + 0..n + Framework Agreement + Justification + Text + Text. Type + + + + + + + + + BBIE + Framework Agreement. Frequency. Text + Text describing the frequency with which subsequent contracts will be awarded. + 0..n + Framework Agreement + Frequency + Text + Text. Type + + + + + + + + + ASBIE + Framework Agreement. Duration_ Period. Period + The period during which this framework agreement applies. + 0..1 + Framework Agreement + Duration + Period + Period + Period + + + + + + + + + ASBIE + Framework Agreement. Subsequent Process_ Tender Requirement. Tender Requirement + A tender requirement intended for consumption by downstream tendering processes derived from the establishment of this framework agreement. + 0..n + Framework Agreement + Subsequent Process + Tender Requirement + Tender Requirement + Tender Requirement + Curricula required + + + + + + + + + + + ABIE + Goods Item. Details + A class to describe a separately identifiable quantity of goods of a single product type. + Goods Item + + + + + + + + + BBIE + Goods Item. Identifier + An identifier for this goods item. + 0..1 + Goods Item + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Goods Item. Sequence Number. Identifier + A sequence number differentiating a specific goods item within a consignment. + 0..1 + Goods Item + Sequence Number + Identifier + Identifier. Type + + + + + + + + + BBIE + Goods Item. Description. Text + Text describing this goods item to identify it for customs, statistical, or transport purposes. + 0..n + Goods Item + Description + Text + Text. Type + Description of goods (WCO ID 137) + + + + + + + + + BBIE + Goods Item. Hazardous Risk_ Indicator. Indicator + An indication that the transported goods item is subject to an international regulation concerning the carriage of dangerous goods (true) or not (false). + 0..1 + Goods Item + Hazardous Risk + Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Goods Item. Declared Customs_ Value. Amount + The total declared value for customs purposes of the goods item. + 0..1 + Goods Item + Declared Customs + Value + Amount + Amount. Type + For Customs Value (WCO ID 108) + + + + + + + + + BBIE + Goods Item. Declared For Carriage_ Value. Amount + The value of this goods item, declared by the shipper or his agent solely for the purpose of varying the carrier's level of liability from that provided in the contract of carriage, in case of loss or damage to goods or delayed delivery. + 0..1 + Goods Item + Declared For Carriage + Value + Amount + Amount. Type + Interest in delivery, declared value for carriage + + + + + + + + + BBIE + Goods Item. Declared Statistics_ Value. Amount + The total declared value of all the goods items in the same consignment with this goods item that have the same statistical heading. + 0..1 + Goods Item + Declared Statistics + Value + Amount + Amount. Type + Statistical Value (WCO ID 114) + + + + + + + + + BBIE + Goods Item. Free On Board_ Value. Amount + The monetary amount that has to be or has been paid as calculated under the applicable trade delivery. + 0..1 + Goods Item + Free On Board + Value + Amount + Amount. Type + FOB Value + + + + + + + + + BBIE + Goods Item. Insurance_ Value. Amount + The amount covered by insurance for this goods item. + 0..1 + Goods Item + Insurance + Value + Amount + Amount. Type + Value Insured + + + + + + + + + BBIE + Goods Item. Value. Amount + The amount on which a duty, tax, or fee will be assessed. + 0..1 + Goods Item + Value + Amount + Amount. Type + + + + + + + + + BBIE + Goods Item. Gross_ Weight. Measure + The weight of this goods item, including packing and packaging but excluding the carrier's equipment. + 0..1 + Goods Item + Gross + Weight + Measure + Measure. Type + Actual Gross Weight + + + + + + + + + BBIE + Goods Item. Net_ Weight. Measure + The weight of this goods item, excluding packing but including packaging that normally accompanies the goods. + 0..1 + Goods Item + Net + Weight + Measure + Measure. Type + + + + + + + + + BBIE + Goods Item. Net Net_ Weight. Measure + The total weight of this goods item, excluding all packing and packaging. + 0..1 + Goods Item + Net Net + Weight + Measure + Measure. Type + Customs Weight (WCO ID 128) + + + + + + + + + BBIE + Goods Item. Chargeable_ Weight. Measure + The weight on which a charge is to be based. + 0..1 + Goods Item + Chargeable + Weight + Measure + Measure. Type + + + + + + + + + BBIE + Goods Item. Gross_ Volume. Measure + The volume of this goods item, normally calculated by multiplying its maximum length, width, and height. + 0..1 + Goods Item + Gross + Volume + Measure + Measure. Type + Volume, Gross Measurement Cube (GMC), Cube (WCO ID 134) + + + + + + + + + BBIE + Goods Item. Net_ Volume. Measure + The volume contained by a goods item, excluding the volume of any packaging material. + 0..1 + Goods Item + Net + Volume + Measure + Measure. Type + + + + + + + + + BBIE + Goods Item. Quantity + The number of units making up this goods item. + 0..1 + Goods Item + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Goods Item. Preference Criterion Code. Code + A code signifying the treatment preference for this goods item according to international trading agreements. + 0..1 + Goods Item + Preference Criterion Code + Code + Code. Type + Preference Criterion is used in the following manner in the paper CO of another country (e.g.): +A - The good is wholly obtained or produced entirely in the territory of one or more of the NAFTA countries as reference in Article 415. Note: The purchase of a good in the territory does not necessarily render it wholly obtained or produced . If the good is an agricultural good, see also criterion F and Annex 703.2. (Reference: Article 401(a), 415). +B - ... +C - ... +D - ... +E - ... +F - The good is an originating agricultural good under preference criterion A,B, or C above and is not subjected to quantitative restriction in the importing NAFTA country because.... +Thus, the column Preference Criterion will indicate either A, B, C,... + + + + + + + + + BBIE + Goods Item. Required_ Customs Identifier. Identifier + An identifier for a set of tariff codes required to specify a type of goods for customs, transport, statistical, or other regulatory purposes. + 0..1 + Goods Item + Required + Customs Identifier + Identifier + Identifier. Type + Tariff code extensions (WCO ID 255) + + + + + + + + + BBIE + Goods Item. Customs Status Code. Code + A code assigned by customs to signify the status of this goods item. + 0..1 + Goods Item + Customs Status Code + Code + Code. Type + Customs status of goods (WCO ID 094) + + + + + + + + + BBIE + Goods Item. Customs Tariff Quantity. Quantity + Quantity of the units in this goods item as required by customs for tariff, statistical, or fiscal purposes. + 0..1 + Goods Item + Customs Tariff Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Goods Item. Customs Import_ Classified Indicator. Indicator + An indicator that this goods item has been classified for import by customs (true) or not (false). + 0..1 + Goods Item + Customs Import + Classified Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Goods Item. Chargeable_ Quantity. Quantity + The number of units in the goods item to which charges apply. + 0..1 + Goods Item + Chargeable + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Goods Item. Returnable_ Quantity. Quantity + The number of units in the goods item that may be returned. + 0..1 + Goods Item + Returnable + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Goods Item. Trace_ Identifier. Identifier + An identifier for use in tracing this goods item, such as the EPC number used in RFID. + 0..1 + Goods Item + Trace + Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Goods Item. Item + Product information relating to a goods item. + 0..n + Goods Item + Item + Item + Item + + + + + + + + + ASBIE + Goods Item. Goods Item Container + The transporting of a goods item in a unit of transport equipment (e.g., container). + 0..n + Goods Item + Goods Item Container + Goods Item Container + Goods Item Container + + + + + + + + + ASBIE + Goods Item. Freight_ Allowance Charge. Allowance Charge + A cost incurred by the shipper in moving goods, by whatever means, from one place to another under the terms of the contract of carriage. In addition to transport costs, this may include such elements as packing, documentation, loading, unloading, and insurance to the extent that they relate to the freight costs. + 0..n + Goods Item + Freight + Allowance Charge + Allowance Charge + Allowance Charge + Freight Costs + + + + + + + + + ASBIE + Goods Item. Invoice Line + Information about an invoice line relating to this goods item. + 0..n + Goods Item + Invoice Line + Invoice Line + Invoice Line + + + + + + + + + ASBIE + Goods Item. Temperature + The temperature of the goods item. + 0..n + Goods Item + Temperature + Temperature + Temperature + maximum, storage, minimum + + + + + + + + + ASBIE + Goods Item. Contained_ Goods Item. Goods Item + A goods item contained in this goods item. + 0..n + Goods Item + Contained + Goods Item + Goods Item + Goods Item + + + + + + + + + ASBIE + Goods Item. Origin_ Address. Address + The region in which the goods have been produced or manufactured, according to criteria laid down for the purposes of application of the customs tariff, or of quantitative restrictions, or of any other measure related to trade. + 0..1 + Goods Item + Origin + Address + Address + Address + Region of origin (WCO ID 066) + + + + + + + + + ASBIE + Goods Item. Delivery + The delivery of this goods item. + 0..1 + Goods Item + Delivery + Delivery + Delivery + + + + + + + + + ASBIE + Goods Item. Pickup + The pickup of this goods item. + 0..1 + Goods Item + Pickup + Pickup + Pickup + + + + + + + + + ASBIE + Goods Item. Despatch + The despatch of this goods item. + 0..1 + Goods Item + Despatch + Despatch + Despatch + + + + + + + + + ASBIE + Goods Item. Measurement_ Dimension. Dimension + A measurable dimension (length, mass, weight, or volume) of this goods item. + 0..n + Goods Item + Measurement + Dimension + Dimension + Dimension + + + + + + + + + ASBIE + Goods Item. Containing_ Package. Package + A package containing this goods item. + 0..n + Goods Item + Containing + Package + Package + Package + + + + + + + + + ASBIE + Goods Item. Shipment_ Document Reference. Document Reference + A reference to a shipping document associated with this goods item. + 0..1 + Goods Item + Shipment + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Goods Item. Minimum_ Temperature. Temperature + Information about minimum temperature. + 0..1 + Goods Item + Minimum + Temperature + Temperature + Temperature + + + + + + + + + ASBIE + Goods Item. Maximum_ Temperature. Temperature + Information about maximum temperature. + 0..1 + Goods Item + Maximum + Temperature + Temperature + Temperature + + + + + + + + + + + ABIE + Goods Item Container. Details + A class defining how goods items are split across transport equipment. + Goods Item Container + + + + + + + + + BBIE + Goods Item Container. Identifier + An identifier for this goods item container. + 1 + Goods Item Container + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Goods Item Container. Quantity + The number of goods items loaded into or onto one piece of transport equipment as a total consignment or part of a consignment. + 0..1 + Goods Item Container + Quantity + Quantity + Quantity. Type + Number of packages stuffed + + + + + + + + + ASBIE + Goods Item Container. Transport Equipment + A piece of transport equipment used to contain a single goods item. + 0..n + Goods Item Container + Transport Equipment + Transport Equipment + Transport Equipment + + + + + + + + + + + ABIE + Hazardous Goods Transit. Details + A class to describe hazardous goods in transit. + Hazardous Goods Transit + + + + + + + + + BBIE + Hazardous Goods Transit. Transport Emergency Card Code. Code + An identifier for a transport emergency card describing the actions to be taken in an emergency in transporting the hazardous goods. It may be the identity number of a hazardous emergency response plan assigned by the appropriate authority. + 0..1 + Hazardous Goods Transit + Transport Emergency Card Code + Code + Code. Type + TREM card + + + + + + + + + BBIE + Hazardous Goods Transit. Packing Criteria Code. Code + A code signifying the packaging requirement for transportation of the hazardous goods as assigned by IATA, IMDB, ADR, RID etc. + 0..1 + Hazardous Goods Transit + Packing Criteria Code + Code + Code. Type + Packing Group + + + + + + + + + BBIE + Hazardous Goods Transit. Hazardous Regulation Code. Code + A code signifying the set of legal regulations governing the transportation of the hazardous goods. + 0..1 + Hazardous Goods Transit + Hazardous Regulation Code + Code + Code. Type + + + + + + + + + BBIE + Hazardous Goods Transit. Inhalation Toxicity Zone Code. Code + A code signifying the Inhalation Toxicity Hazard Zone for the hazardous goods, as defined by the US Department of Transportation. + 0..1 + Hazardous Goods Transit + Inhalation Toxicity Zone Code + Code + Code. Type + + + + + + + + + BBIE + Hazardous Goods Transit. Transport Authorization Code. Code + A code signifying authorization for the transportation of hazardous cargo. + 0..1 + Hazardous Goods Transit + Transport Authorization Code + Code + Code. Type + Permission for Transport + + + + + + + + + ASBIE + Hazardous Goods Transit. Maximum_ Temperature. Temperature + The maximum temperature at which the hazardous goods can safely be transported. + 0..1 + Hazardous Goods Transit + Maximum + Temperature + Temperature + Temperature + + + + + + + + + ASBIE + Hazardous Goods Transit. Minimum_ Temperature. Temperature + The minimum temperature at which the hazardous goods can safely be transported. + 0..1 + Hazardous Goods Transit + Minimum + Temperature + Temperature + Temperature + + + + + + + + + + + ABIE + Hazardous Item. Details + A class to describe a hazardous item. + Hazardous Item + + + + + + + + + BBIE + Hazardous Item. Identifier + An identifier for this hazardous item. + 0..1 + Hazardous Item + Identifier + Identifier + Identifier. Type + Round Up + + + + + + + + + BBIE + Hazardous Item. Placard Notation. Text + Text of the placard notation corresponding to the hazard class of this hazardous item. Can also be the hazard identification number of the orange placard (upper part) required on the means of transport. + 0..1 + Hazardous Item + Placard Notation + Text + Text. Type + 5.1 + + + + + + + + + BBIE + Hazardous Item. Placard Endorsement. Text + Text of the placard endorsement that is to be shown on the shipping papers for this hazardous item. Can also be used for the number of the orange placard (lower part) required on the means of transport. + 0..1 + Hazardous Item + Placard Endorsement + Text + Text. Type + 2 + + + + + + + + + BBIE + Hazardous Item. Additional_ Information. Text + Text providing further information about the hazardous substance. + 0..n + Hazardous Item + Additional + Information + Text + Text. Type + Must be stored away from flammable materials N.O.S. or a Waste Characteristics Code in conjunction with an EPA Waste Stream code + + + + + + + + + BBIE + Hazardous Item. UNDG Code. Code + The UN code for this kind of hazardous item. + 0..1 + Hazardous Item + UNDG Code + Code + Code. Type + UN Code + + + + + + + + + BBIE + Hazardous Item. Emergency Procedures Code. Code + A code signifying the emergency procedures for this hazardous item. + 0..1 + Hazardous Item + Emergency Procedures Code + Code + Code. Type + EMG code, EMS Page Number + + + + + + + + + BBIE + Hazardous Item. Medical First Aid Guide Code. Code + A code signifying a medical first aid guide appropriate to this hazardous item. + 0..1 + Hazardous Item + Medical First Aid Guide Code + Code + Code. Type + MFAG page number + + + + + + + + + BBIE + Hazardous Item. Technical_ Name. Name + The full technical name of a specific hazardous substance contained in this goods item. + 0..1 + Hazardous Item + Technical + Name + Name + Name. Type + Granular Sodium Chlorate WeedKiller + + + + + + + + + BBIE + Hazardous Item. Category. Name + The name of the category of hazard that applies to the Item. + 0..1 + Hazardous Item + Category + Name + Name. Type + + + + + + + + + BBIE + Hazardous Item. Hazardous Category Code. Code + A code signifying a kind of hazard for a material. + 0..1 + Hazardous Item + Hazardous Category Code + Code + Code. Type + Hazardous material class code + + + + + + + + + BBIE + Hazardous Item. Upper_ Orange Hazard Placard Identifier. Identifier + The number for the upper part of the orange hazard placard required on the means of transport. + 0..1 + Hazardous Item + Upper + Orange Hazard Placard Identifier + Identifier + Identifier. Type + Hazard identification number (upper part) + + + + + + + + + BBIE + Hazardous Item. Lower_ Orange Hazard Placard Identifier. Identifier + The number for the lower part of the orange hazard placard required on the means of transport. + 0..1 + Hazardous Item + Lower + Orange Hazard Placard Identifier + Identifier + Identifier. Type + Substance identification number (lower part) + + + + + + + + + BBIE + Hazardous Item. Marking Identifier. Identifier + An identifier to the marking of the Hazardous Item + 0..1 + Hazardous Item + Marking Identifier + Identifier + Identifier. Type + Dangerous goods label marking + + + + + + + + + BBIE + Hazardous Item. Hazard Class Identifier. Identifier + An identifier for the hazard class applicable to this hazardous item as defined by the relevant regulation authority (e.g., the IMDG Class Number of the SOLAS Convention of IMO and the ADR/RID Class Number for the road/rail environment). + 0..1 + Hazardous Item + Hazard Class Identifier + Identifier + Identifier. Type + IMDG Class Number, ADR/RID Class Number + + + + + + + + + BBIE + Hazardous Item. Net_ Weight. Measure + The net weight of this hazardous item, excluding packaging. + 0..1 + Hazardous Item + Net + Weight + Measure + Measure. Type + + + + + + + + + BBIE + Hazardous Item. Net_ Volume. Measure + The volume of this hazardous item, excluding packaging and transport equipment. + 0..1 + Hazardous Item + Net + Volume + Measure + Measure. Type + + + + + + + + + BBIE + Hazardous Item. Quantity + The quantity of goods items in this hazardous item that are hazardous. + 0..1 + Hazardous Item + Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Hazardous Item. Contact_ Party. Party + The individual, group, or body to be contacted in case of a hazardous incident associated with this item. + 0..1 + Hazardous Item + Contact + Party + Party + Party + + + + + + + + + ASBIE + Hazardous Item. Secondary Hazard + A secondary hazard associated with this hazardous item. + 0..n + Hazardous Item + Secondary Hazard + Secondary Hazard + Secondary Hazard + + + + + + + + + ASBIE + Hazardous Item. Hazardous Goods Transit + Information related to the transit of this kind of hazardous goods. + 0..n + Hazardous Item + Hazardous Goods Transit + Hazardous Goods Transit + Hazardous Goods Transit + + + + + + + + + ASBIE + Hazardous Item. Emergency_ Temperature. Temperature + The threshold temperature at which emergency procedures apply in the handling of temperature-controlled goods. + 0..1 + Hazardous Item + Emergency + Temperature + Temperature + Temperature + + + + + + + + + ASBIE + Hazardous Item. Flashpoint_ Temperature. Temperature + The flashpoint temperature of this hazardous item; i.e., the lowest temperature at which vapors above a volatile combustible substance ignite in air when exposed to flame. + 0..1 + Hazardous Item + Flashpoint + Temperature + Temperature + Temperature + + + + + + + + + ASBIE + Hazardous Item. Additional_ Temperature. Temperature + Another temperature relevant to the handling of this hazardous item. + 0..n + Hazardous Item + Additional + Temperature + Temperature + Temperature + + + + + + + + + + + ABIE + Immobilized Security. Details + A class to describe an immobilized security to be used as a guarantee. + Immobilized Security + + + + + + + + + BBIE + Immobilized Security. Immobilization Certificate Identifier. Identifier + An identifier for the certificate of this immobilized security. + 0..1 + Immobilized Security + Immobilization Certificate Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Immobilized Security. Security Identifier. Identifier + An identifier for the security being immobilized. + 0..1 + Immobilized Security + Security Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Immobilized Security. Issue Date. Date + The date on which this immobilized security was issued. + 0..1 + Immobilized Security + Issue Date + Date + Date. Type + + + + + + + + + BBIE + Immobilized Security. Face Value. Amount + The value of the security on the day it was immobilized. + 0..1 + Immobilized Security + Face Value + Amount + Amount. Type + + + + + + + + + BBIE + Immobilized Security. Market Value. Amount + The current market value of the immobilized security. + 0..1 + Immobilized Security + Market Value + Amount + Amount. Type + + + + + + + + + BBIE + Immobilized Security. Shares Number. Quantity + The number of shares immobilized. + 0..1 + Immobilized Security + Shares Number + Quantity + Quantity. Type + + + + + + + + + ASBIE + Immobilized Security. Issuer_ Party. Party + The party issuing the immobilized security certificate. + 0..1 + Immobilized Security + Issuer + Party + Party + Party + + + + + + + + + + + ABIE + Instruction For Returns Line. Details + A class to define a line in an Instruction for Returns. + Instruction For Returns Line + + + + + + + + + BBIE + Instruction For Returns Line. Identifier + An identifier for this instruction for returns line. + 1 + Instruction For Returns Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Instruction For Returns Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Instruction For Returns Line + Note + Text + Text. Type + + + + + + + + + BBIE + Instruction For Returns Line. Quantity + The quantity of goods being returned. + 1 + Instruction For Returns Line + Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Instruction For Returns Line. Manufacturer_ Party. Party + The manufacturer of the goods being returned. + 0..1 + Instruction For Returns Line + Manufacturer + Party + Party + Party + + + + + + + + + ASBIE + Instruction For Returns Line. Item + A description of the item being returned. + 1 + Instruction For Returns Line + Item + Item + Item + + + + + + + + + + + ABIE + Inventory Report Line. Details + A class to define a line in an Inventory Report. + Inventory Report Line + + + + + + + + + BBIE + Inventory Report Line. Identifier + An identifier for this inventory report line. + 1 + Inventory Report Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Inventory Report Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Inventory Report Line + Note + Text + Text. Type + + + + + + + + + BBIE + Inventory Report Line. Quantity + The quantity of the item reported that is currently in stock. + 1 + Inventory Report Line + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Inventory Report Line. Inventory_ Value. Amount + The value of the quantity of the item reported that is currently in stock. + 0..1 + Inventory Report Line + Inventory + Value + Amount + Amount. Type + + + + + + + + + BBIE + Inventory Report Line. Availability Date. Date + The date from which the goods will be available. If not present, the goods are available now. + 0..1 + Inventory Report Line + Availability Date + Date + Date. Type + + + + + + + + + BBIE + Inventory Report Line. Availability Status Code. Code + A code signifying the item's level of availability. + 0..1 + Inventory Report Line + Availability Status Code + Code + Code. Type + + + + + + + + + ASBIE + Inventory Report Line. Item + The item associated with this inventory report line. + 1 + Inventory Report Line + Item + Item + Item + + + + + + + + + ASBIE + Inventory Report Line. Inventory_ Location. Location + The location of the reported quantity of goods. + 0..1 + Inventory Report Line + Inventory + Location + Location + Location + + + + + + + + + + + ABIE + Invoice Line. Details + A class to define a line in an Invoice. + Invoice Line + + + + + + + + + BBIE + Invoice Line. Identifier + An identifier for this invoice line. + 1 + Invoice Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Invoice Line. UUID. Identifier + A universally unique identifier for this invoice line. + 0..1 + Invoice Line + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Invoice Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Invoice Line + Note + Text + Text. Type + + + + + + + + + BBIE + Invoice Line. Invoiced_ Quantity. Quantity + The quantity (of items) on this invoice line. + 0..1 + Invoice Line + Invoiced + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Invoice Line. Line Extension Amount. Amount + The total amount for this invoice line, including allowance charges but net of taxes. + 1 + Invoice Line + Line Extension Amount + Amount + Amount. Type + + + + + + + + + BBIE + Invoice Line. Tax Point Date. Date + The date of this invoice line, used to indicate the point at which tax becomes applicable. + 0..1 + Invoice Line + Tax Point Date + Date + Date. Type + + + + + + + + + BBIE + Invoice Line. Accounting Cost Code. Code + The buyer's accounting cost centre for this invoice line, expressed as a code. + 0..1 + Invoice Line + Accounting Cost Code + Code + Code. Type + + + + + + + + + BBIE + Invoice Line. Accounting Cost. Text + The buyer's accounting cost centre for this invoice line, expressed as text. + 0..1 + Invoice Line + Accounting Cost + Text + Text. Type + + + + + + + + + BBIE + Invoice Line. Payment Purpose Code. Code + A code signifying the business purpose for this payment. + 0..1 + Invoice Line + Payment Purpose Code + Code + Code. Type + + + + + + + + + BBIE + Invoice Line. Free Of Charge_ Indicator. Indicator + An indicator that this invoice line is free of charge (true) or not (false). The default is false. + 0..1 + Invoice Line + Free Of Charge + Indicator + Indicator + Indicator. Type + + + + + + + + + ASBIE + Invoice Line. Invoice_ Period. Period + An invoice period to which this invoice line applies. + 0..n + Invoice Line + Invoice + Period + Period + Period + + + + + + + + + ASBIE + Invoice Line. Order Line Reference + A reference to an order line associated with this invoice line. + 0..n + Invoice Line + Order Line Reference + Order Line Reference + Order Line Reference + + + + + + + + + ASBIE + Invoice Line. Despatch_ Line Reference. Line Reference + A reference to a despatch line associated with this invoice line. + 0..n + Invoice Line + Despatch + Line Reference + Line Reference + Line Reference + + + + + + + + + ASBIE + Invoice Line. Receipt_ Line Reference. Line Reference + A reference to a receipt line associated with this invoice line. + 0..n + Invoice Line + Receipt + Line Reference + Line Reference + Line Reference + + + + + + + + + ASBIE + Invoice Line. Billing Reference + A reference to a billing document associated with this invoice line. + 0..n + Invoice Line + Billing Reference + Billing Reference + Billing Reference + + + + + + + + + ASBIE + Invoice Line. Document Reference + A reference to a document associated with this invoice line. + 0..n + Invoice Line + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Invoice Line. Pricing Reference + A reference to pricing and item location information associated with this invoice line. + 0..1 + Invoice Line + Pricing Reference + Pricing Reference + Pricing Reference + + + + + + + + + ASBIE + Invoice Line. Originator_ Party. Party + The party who originated the Order to which the Invoice is related. + 0..1 + Invoice Line + Originator + Party + Party + Party + + + + + + + + + ASBIE + Invoice Line. Delivery + A delivery associated with this invoice line. + 0..n + Invoice Line + Delivery + Delivery + Delivery + + + + + + + + + ASBIE + Invoice Line. Payment Terms + A specification of payment terms associated with this invoice line. + 0..n + Invoice Line + Payment Terms + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Invoice Line. Allowance Charge + An allowance or charge associated with this invoice line. + 0..n + Invoice Line + Allowance Charge + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Invoice Line. Tax Total + A total amount of taxes of a particular kind applicable to this invoice line. + 0..n + Invoice Line + Tax Total + Tax Total + Tax Total + + + + + + + + + ASBIE + Invoice Line. Withholding_ Tax Total. Tax Total + A reference to a TaxTotal class describing the amount that has been withhold by the authorities, e.g. if the creditor is in dept because of non paid taxes. + 0..n + Invoice Line + Withholding + Tax Total + Tax Total + Tax Total + + + + + + + + + ASBIE + Invoice Line. Item + The item associated with this invoice line. + 1 + Invoice Line + Item + Item + Item + + + + + + + + + ASBIE + Invoice Line. Price + The price of the item associated with this invoice line. + 0..1 + Invoice Line + Price + Price + Price + Unit Price, Base Price + + + + + + + + + ASBIE + Invoice Line. Delivery Terms + Terms and conditions of the delivery associated with this invoice line. + 0..1 + Invoice Line + Delivery Terms + Delivery Terms + Delivery Terms + + + + + + + + + ASBIE + Invoice Line. Sub_ Invoice Line. Invoice Line + An invoice line subsidiary to this invoice line. + 0..n + Invoice Line + Sub + Invoice Line + Invoice Line + Invoice Line + + + + + + + + + ASBIE + Invoice Line. Item_ Price Extension. Price Extension + The price extension, calculated by multiplying the price per unit by the quantity of items on this invoice line. + 0..1 + Invoice Line + Item + Price Extension + Price Extension + Price Extension + + + + + + + + + + + ABIE + Item. Details + A class to describe an item of trade. It includes a generic description applicable to all examples of the item together with optional subsidiary descriptions of any number of actual instances of the type. + Item + article, product, goods item + + + + + + + + + BBIE + Item. Description. Text + Text describing this item. + 0..n + Item + Description + Text + Text. Type + + + + + + + + + BBIE + Item. Pack Quantity. Quantity + The unit packaging quantity; the number of subunits making up this item. + 0..1 + Item + Pack Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Item. Pack Size. Numeric + The number of items in a pack of this item. + 0..1 + Item + Pack Size + Numeric + Numeric. Type + + + + + + + + + BBIE + Item. Catalogue_ Indicator. Indicator + An indicator that this item was ordered from a catalogue (true) or not (false). + 0..1 + Item + Catalogue + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Item. Name + A short name optionally given to this item, such as a name from a catalogue, as distinct from a description. + 0..1 + Item + Name + Name + Name. Type + + + + + + + + + BBIE + Item. Hazardous Risk_ Indicator. Indicator + An indication that the transported item, as delivered, is subject to an international regulation concerning the carriage of dangerous goods (true) or not (false). + 0..1 + Item + Hazardous Risk + Indicator + Indicator + Indicator. Type + Default is negative + + + + + + + + + BBIE + Item. Additional_ Information. Text + Further details regarding this item (e.g., the URL of a relevant web page). + 0..n + Item + Additional + Information + Text + Text. Type + + + + + + + + + BBIE + Item. Keyword. Text + A keyword (search string) for this item, assigned by the seller party. Can also be a synonym for the name of the item. + 0..n + Item + Keyword + Text + Text. Type + + + + + + + + + BBIE + Item. Brand Name. Name + A brand name of this item. + 0..n + Item + Brand Name + Name + Name. Type + Coca-Cola + + + + + + + + + BBIE + Item. Model Name. Name + A model name of this item. + 0..n + Item + Model Name + Name + Name. Type + VW Beetle + + + + + + + + + ASBIE + Item. Buyers_ Item Identification. Item Identification + Identifying information for this item, assigned by the buyer. + 0..1 + Item + Buyers + Item Identification + Item Identification + Item Identification + + + + + + + + + ASBIE + Item. Sellers_ Item Identification. Item Identification + Identifying information for this item, assigned by the seller. + 0..1 + Item + Sellers + Item Identification + Item Identification + Item Identification + + + + + + + + + ASBIE + Item. Manufacturers_ Item Identification. Item Identification + Identifying information for this item, assigned by the manufacturer. + 0..n + Item + Manufacturers + Item Identification + Item Identification + Item Identification + + + + + + + + + ASBIE + Item. Standard_ Item Identification. Item Identification + Identifying information for this item, assigned according to a standard system. + 0..1 + Item + Standard + Item Identification + Item Identification + Item Identification + + + + + + + + + ASBIE + Item. Catalogue_ Item Identification. Item Identification + Identifying information for this item, assigned according to a cataloguing system. + 0..1 + Item + Catalogue + Item Identification + Item Identification + Item Identification + + + + + + + + + ASBIE + Item. Additional_ Item Identification. Item Identification + An additional identifier for this item. + 0..n + Item + Additional + Item Identification + Item Identification + Item Identification + + + + + + + + + ASBIE + Item. Catalogue_ Document Reference. Document Reference + A reference to the catalogue in which this item appears. + 0..1 + Item + Catalogue + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Item. Item Specification_ Document Reference. Document Reference + A reference to a specification document for this item. + 0..n + Item + Item Specification + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Item. Origin_ Country. Country + The country of origin of this item. + 0..1 + Item + Origin + Country + Country + Country + + + + + + + + + ASBIE + Item. Commodity Classification + A classification of this item according to a specific system for classifying commodities. + 0..n + Item + Commodity Classification + Commodity Classification + Commodity Classification + + + + + + + + + ASBIE + Item. Transaction Conditions + A set of sales conditions applying to this item. + 0..n + Item + Transaction Conditions + Transaction Conditions + Transaction Conditions + + + + + + + + + ASBIE + Item. Hazardous Item + Information pertaining to this item as a hazardous item. + 0..n + Item + Hazardous Item + Hazardous Item + Hazardous Item + + + + + + + + + ASBIE + Item. Classified_ Tax Category. Tax Category + A tax category applicable to this item. + 0..n + Item + Classified + Tax Category + Tax Category + Tax Category + + + + + + + + + ASBIE + Item. Additional_ Item Property. Item Property + An additional property of this item. + 0..n + Item + Additional + Item Property + Item Property + Item Property + + + + + + + + + ASBIE + Item. Manufacturer_ Party. Party + The manufacturer of this item. + 0..n + Item + Manufacturer + Party + Party + Party + + + + + + + + + ASBIE + Item. Information Content Provider_ Party. Party + The party responsible for specification of this item. + 0..1 + Item + Information Content Provider + Party + Party + Party + + + + + + + + + ASBIE + Item. Origin_ Address. Address + A region (not country) of origin of this item. + 0..n + Item + Origin + Address + Address + Address + + + + + + + + + ASBIE + Item. Item Instance + A trackable, unique instantiation of this item. + 0..n + Item + Item Instance + Item Instance + Item Instance + + + + + + + + + ASBIE + Item. Certificate + A certificate associated with this item. + 0..n + Item + Certificate + Certificate + Certificate + + + + + + + + + ASBIE + Item. Dimension + One of the measurable dimensions (length, mass, weight, or volume) of this item. + 0..n + Item + Dimension + Dimension + Dimension + + + + + + + + + + + ABIE + Item Comparison. Details + A class to provide information about price and quantity of an item for use in price comparisons based on price, quantity, or measurements. + Item Comparison + + + + + + + + + BBIE + Item Comparison. Price Amount. Amount + The price for the Item Comparison + 0..1 + Item Comparison + Price Amount + Amount + Amount. Type + + + + + + + + + BBIE + Item Comparison. Quantity + The quantity for which this comparison is valid. + 0..1 + Item Comparison + Quantity + Quantity + Quantity. Type + per unit + + + + + + + + + + + ABIE + Item Identification. Details + A class for assigning identifying information to an item. + Item Identification + + + + + + + + + BBIE + Item Identification. Identifier + An identifier for the item. + 1 + Item Identification + Identifier + Identifier + Identifier. Type + CUST001 3333-44-123 + + + + + + + + + BBIE + Item Identification. Extended_ Identifier. Identifier + An extended identifier for the item that identifies the item with specific properties, e.g., Item 123 = Chair / Item 123 Ext 45 = brown chair. Two chairs can have the same item number, but one is brown. The other is white. + 0..1 + Item Identification + Extended + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Item Identification. Barcode_ Symbology Identifier. Identifier + An identifier for a system of barcodes. + 0..1 + Item Identification + Barcode + Symbology Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Item Identification. Physical Attribute + A physical attribute of the item. + 0..n + Item Identification + Physical Attribute + Physical Attribute + Physical Attribute + + + + + + + + + ASBIE + Item Identification. Measurement_ Dimension. Dimension + A measurable dimension (length, mass, weight, or volume) of the item. + 0..n + Item Identification + Measurement + Dimension + Dimension + Dimension + + + + + + + + + ASBIE + Item Identification. Issuer_ Party. Party + The party that issued this item identification. + 0..1 + Item Identification + Issuer + Party + Party + Party + + + + + + + + + + + ABIE + Item Information Request Line. Details + A class to define a line in an Item Information Request asking a trading partner for item information. + Item Information Request Line + + + + + + + + + BBIE + Item Information Request Line. Time Frequency Code. Code + A code signifying the frequency with which item information should be sent to the requester. + 0..1 + Item Information Request Line + Time Frequency Code + Code + Code. Type + + + + + + + + + BBIE + Item Information Request Line. Supply Chain Activity Type Code. Code + A code used to identify the type of supply chain activity about which information request is issued. Examples: CANCELED_ORDERS EMERGENCY_ORDERS ON_HAND ORDERS + 0..1 + Item Information Request Line + Supply Chain Activity Type Code + Code + Code. Type + + + + + + + + + BBIE + Item Information Request Line. Forecast Type Code. Code + The information request can be either about supply chain activity or about forecasts or about performance metrics, so it should be optional + 0..1 + Item Information Request Line + Forecast Type Code + Code + Code. Type + + + + + + + + + BBIE + Item Information Request Line. Performance Metric Type Code. Code + A code signifying a measure of performance. + 0..1 + Item Information Request Line + Performance Metric Type Code + Code + Code. Type + + + + + + + + + ASBIE + Item Information Request Line. Period + A period for which this information is requested. + 1..n + Item Information Request Line + Period + Period + Period + + + + + + + + + ASBIE + Item Information Request Line. Sales Item + Sales information for the item to which this line applies. + 1..n + Item Information Request Line + Sales Item + Sales Item + Sales Item + + + + + + + + + + + ABIE + Item Instance. Details + A class to describe a specific, trackable instance of an item. + Item Instance + + + + + + + + + BBIE + Item Instance. Product Trace_ Identifier. Identifier + An identifier used for tracing this item instance, such as the EPC number used in RFID. + 0..1 + Item Instance + Product Trace + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Item Instance. Manufacture Date. Date + The date on which this item instance was manufactured. + 0..1 + Item Instance + Manufacture Date + Date + Date. Type + + + + + + + + + BBIE + Item Instance. Manufacture Time. Time + The time at which this item instance was manufactured. + 0..1 + Item Instance + Manufacture Time + Time + Time. Type + + + + + + + + + BBIE + Item Instance. Best Before Date. Date + The date before which it is best to use this item instance. + 0..1 + Item Instance + Best Before Date + Date + Date. Type + + + + + + + + + BBIE + Item Instance. Registration Identifier. Identifier + The registration identifier of this item instance. + 0..1 + Item Instance + Registration Identifier + Identifier + Identifier. Type + car registration or licensing number + + + + + + + + + BBIE + Item Instance. Serial Identifier. Identifier + The serial number of this item instance. + 0..1 + Item Instance + Serial Identifier + Identifier + Identifier. Type + chassis number of a car + + + + + + + + + ASBIE + Item Instance. Additional_ Item Property. Item Property + An additional property of this item instance. + 0..n + Item Instance + Additional + Item Property + Item Property + Item Property + + + + + + + + + ASBIE + Item Instance. Lot Identification + The lot identifier of this item instance (the identifier that allows recall of the item if necessary). + 0..1 + Item Instance + Lot Identification + Lot Identification + Lot Identification + + + + + + + + + + + ABIE + Item Location Quantity. Details + A class for information about pricing structure, lead time, and location associated with an item. + Item Location Quantity + + + + + + + + + BBIE + Item Location Quantity. Lead Time. Measure + The lead time, i.e., the time taken from the time at which an item is ordered to the time of its delivery. + 0..1 + Item Location Quantity + Lead Time + Measure + Measure. Type + 2 days , 24 hours + + + + + + + + + BBIE + Item Location Quantity. Minimum_ Quantity. Quantity + The minimum quantity that can be ordered to qualify for a specific price. + 0..1 + Item Location Quantity + Minimum + Quantity + Quantity + Quantity. Type + 10 boxes , 1 carton , 1000 sheets + + + + + + + + + BBIE + Item Location Quantity. Maximum_ Quantity. Quantity + The maximum quantity that can be ordered to qualify for a specific price. + 0..1 + Item Location Quantity + Maximum + Quantity + Quantity + Quantity. Type + 10 boxes , 1 carton , 1000 sheets + + + + + + + + + BBIE + Item Location Quantity. Hazardous Risk_ Indicator. Indicator + An indication that the transported item, as delivered, in the stated quantity to the stated location, is subject to an international regulation concerning the carriage of dangerous goods (true) or not (false). + 0..1 + Item Location Quantity + Hazardous Risk + Indicator + Indicator + Indicator. Type + Default is negative + + + + + + + + + BBIE + Item Location Quantity. Trading Restrictions. Text + Text describing trade restrictions on the quantity of this item or on the item itself. + 0..n + Item Location Quantity + Trading Restrictions + Text + Text. Type + not for export + + + + + + + + + ASBIE + Item Location Quantity. Applicable Territory_ Address. Address + The applicable sales territory. + 0..n + Item Location Quantity + Applicable Territory + Address + Address + Address + + + + + + + + + ASBIE + Item Location Quantity. Price + The price associated with the given location. + 0..1 + Item Location Quantity + Price + Price + Price + + + + + + + + + ASBIE + Item Location Quantity. Delivery Unit + A delivery unit in which the item is located. + 0..n + Item Location Quantity + Delivery Unit + Delivery Unit + Delivery Unit + + + + + + + + + ASBIE + Item Location Quantity. Applicable_ Tax Category. Tax Category + A tax category applicable to this item location quantity. + 0..n + Item Location Quantity + Applicable + Tax Category + Tax Category + Tax Category + + + + + + + + + ASBIE + Item Location Quantity. Package + The package to which this price applies. + 0..1 + Item Location Quantity + Package + Package + Package + + + + + + + + + ASBIE + Item Location Quantity. Allowance Charge + An allowance or charge associated with this item location quantity. + 0..n + Item Location Quantity + Allowance Charge + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Item Location Quantity. Dependent Price Reference + The price of the item as a percentage of the price of some other item. + 0..1 + Item Location Quantity + Dependent Price Reference + Dependent Price Reference + Dependent Price Reference + + + + + + + + + + + ABIE + Item Management Profile. Details + A class to define a management profile for an item. + Item Management Profile + + + + + + + + + BBIE + Item Management Profile. Frozen Period Days. Numeric + The number of days in the future that an order forecast quantity automatically becomes a confirmed order for a product. + 0..1 + Item Management Profile + Frozen Period Days + Numeric + Numeric. Type + + + + + + + + + BBIE + Item Management Profile. Minimum_ Inventory Quantity. Quantity + The quantity of the item that should trigger a replenishment order to avoid depleting the safety stock. + 0..1 + Item Management Profile + Minimum + Inventory Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Item Management Profile. Multiple_ Order Quantity. Quantity + The order quantity multiples in which the product may be ordered. + 0..1 + Item Management Profile + Multiple + Order Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Item Management Profile. Order Interval Days. Numeric + The number of days between regular replenishment orders for the product. + 0..1 + Item Management Profile + Order Interval Days + Numeric + Numeric. Type + + + + + + + + + BBIE + Item Management Profile. Replenishment Owner Description. Text + The trading partner maintaining this item management profile. + 0..n + Item Management Profile + Replenishment Owner Description + Text + Text. Type + + + + + + + + + BBIE + Item Management Profile. Target Service Percent. Percent + The Unit Service Level the trading partners expect to be maintained, expressed as a percentage. Unite Service Level (USL) is a term used in Inventory Management, which is sometimes known as "fill rate", counts the average number of units short expressed as the percentage of the order quantity. + 0..1 + Item Management Profile + Target Service Percent + Percent + Percent. Type + + + + + + + + + BBIE + Item Management Profile. Target_ Inventory Quantity. Quantity + The target inventory quantity. + 0..1 + Item Management Profile + Target + Inventory Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Item Management Profile. Effective_ Period. Period + The period during which this profile is effective. + 1 + Item Management Profile + Effective + Period + Period + Period + + + + + + + + + ASBIE + Item Management Profile. Item + The item associated with this item management profile. + 1 + Item Management Profile + Item + Item + Item + + + + + + + + + ASBIE + Item Management Profile. Item Location Quantity + A set of location-specific properties (e.g., price and quantity) associated with the item. + 0..1 + Item Management Profile + Item Location Quantity + Item Location Quantity + Item Location Quantity + + + + + + + + + + + ABIE + Item Property. Details + A class to describe a specific property of an item. + Item Property + + + + + + + + + BBIE + Item Property. Identifier + An identifier for this property of an item. + 0..1 + Item Property + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Item Property. Name + The name of this item property. + 1 + Item Property + Name + Name + Name. Type + Energy Rating , Collar Size , Fat Content + + + + + + + + + BBIE + Item Property. Name Code. Code + The name of this item property, expressed as a code. + 0..1 + Item Property + Name Code + Code + Code. Type + + + + + + + + + BBIE + Item Property. Test Method. Text + The method of testing the value of this item property. + 0..1 + Item Property + Test Method + Text + Text. Type + 100 watts , 15 European , 20% +/- 5% + + + + + + + + + BBIE + Item Property. Value. Text + The value of this item property, expressed as text. + 0..1 + Item Property + Value + Text + Text. Type + 100 watts , 15 European , 20% +/- 5% + + + + + + + + + BBIE + Item Property. Value_ Quantity. Quantity + The value of this item property, expressed as a quantity. + 0..1 + Item Property + Value + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Item Property. Value Qualifier. Text + Text qualifying the value of the property. + 0..n + Item Property + Value Qualifier + Text + Text. Type + + + + + + + + + BBIE + Item Property. Importance Code. Code + A code signifying the importance of this property in using it to describe a related Item. + 0..1 + Item Property + Importance Code + Code + Code. Type + + + + + + + + + BBIE + Item Property. List Value. Text + The value expressed as a text in case the property is a value in a list. For example, a colour. + 0..n + Item Property + List Value + Text + Text. Type + + + + + + + + + ASBIE + Item Property. Usability_ Period. Period + The period during which this item property is valid. + 0..1 + Item Property + Usability + Period + Period + Period + + + + + + + + + ASBIE + Item Property. Item Property Group + A description of the property group to which this item property belongs. + 0..n + Item Property + Item Property Group + Item Property Group + Item Property Group + + + + + + + + + ASBIE + Item Property. Range_ Dimension. Dimension + The range of values for the dimensions of this property. + 0..1 + Item Property + Range + Dimension + Dimension + Dimension + + + + + + + + + ASBIE + Item Property. Item Property Range + A range of values for this item property. + 0..1 + Item Property + Item Property Range + Item Property Range + Item Property Range + + + + + + + + + + + ABIE + Item Property Group. Details + A class to describe a property group or classification. + Item Property Group + + + + + + + + + BBIE + Item Property Group. Identifier + An identifier for this group of item properties. + 1 + Item Property Group + Identifier + Identifier + Identifier. Type + 233-004 + + + + + + + + + BBIE + Item Property Group. Name + The name of this item property group. + 0..1 + Item Property Group + Name + Name + Name. Type + Electrical Specifications , Dietary Content + + + + + + + + + BBIE + Item Property Group. Importance Code. Code + A code signifying the importance of this property group in using it to describe a required Item. + 0..1 + Item Property Group + Importance Code + Code + Code. Type + + + + + + + + + + + ABIE + Item Property Range. Details + A class to describe a range of values for an item property. + Item Property Range + + + + + + + + + BBIE + Item Property Range. Minimum_ Value. Text + The minimum value in this range of values. + 0..1 + Item Property Range + Minimum + Value + Text + Text. Type + + + + + + + + + BBIE + Item Property Range. Maximum_ Value. Text + The maximum value in this range of values. + 0..1 + Item Property Range + Maximum + Value + Text + Text. Type + + + + + + + + + + + ABIE + Language. Details + A class to describe a language. + Language + + + + + + + + + BBIE + Language. Identifier + An identifier for this language. + 0..1 + Language + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Language. Name + The name of this language. + 0..1 + Language + Name + Name + Name. Type + + + + + + + + + BBIE + Language. Locale Code. Code + A code signifying the locale in which this language is used. + 0..1 + Language + Locale Code + Code + Code. Type + + + + + + + + + + + ABIE + Line Item. Details + A class to describe a line item. + Line Item + + + + + + + + + BBIE + Line Item. Identifier + An identifier for this line item, assigned by the buyer. + 1 + Line Item + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Line Item. Sales_ Order Identifier. Identifier + An identifier for this line item, assigned by the seller. + 0..1 + Line Item + Sales + Order Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Line Item. UUID. Identifier + A universally unique identifier for this line item. + 0..1 + Line Item + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Line Item. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Line Item + Note + Text + Text. Type + + + + + + + + + BBIE + Line Item. Line Status Code. Code + A code signifying the status of this line item with respect to its original state. + 0..1 + Line Item + Line Status Code + Code + Line Status + Line Status_ Code. Type + + + + + + + + + BBIE + Line Item. Quantity + The quantity of items associated with this line item. + 0..1 + Line Item + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Line Item. Line Extension Amount. Amount + The total amount for this line item, including allowance charges but net of taxes. + 0..1 + Line Item + Line Extension Amount + Amount + Amount. Type + + + + + + + + + BBIE + Line Item. Total_ Tax Amount. Amount + The total tax amount for this line item. + 0..1 + Line Item + Total + Tax Amount + Amount + Amount. Type + + + + + + + + + BBIE + Line Item. Minimum_ Quantity. Quantity + The minimum quantity of the item associated with this line. + 0..1 + Line Item + Minimum + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Line Item. Maximum_ Quantity. Quantity + The maximum quantity of the item associated with this line. + 0..1 + Line Item + Maximum + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Line Item. Minimum_ Backorder. Quantity + The minimum back order quantity of the item associated with this line (where back order is allowed). + 0..1 + Line Item + Minimum + Backorder + Quantity + Quantity. Type + + + + + + + + + BBIE + Line Item. Maximum_ Backorder. Quantity + The maximum back order quantity of the item associated with this line (where back order is allowed). + 0..1 + Line Item + Maximum + Backorder + Quantity + Quantity. Type + + + + + + + + + BBIE + Line Item. Inspection Method Code. Code + A code signifying the inspection requirements for the item associated with this line item. + 0..1 + Line Item + Inspection Method Code + Code + Code. Type + + + + + + + + + BBIE + Line Item. Partial Delivery Indicator. Indicator + An indicator that a partial delivery is allowed (true) or not (false). + 0..1 + Line Item + Partial Delivery Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Line Item. Back Order Allowed Indicator. Indicator + An indicator that back order is allowed (true) or not (false). + 0..1 + Line Item + Back Order Allowed Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Line Item. Accounting Cost Code. Code + The buyer's accounting cost centre for this line item, expressed as a code. + 0..1 + Line Item + Accounting Cost Code + Code + Code. Type + + + + + + + + + BBIE + Line Item. Accounting Cost. Text + The buyer's accounting cost centre for this line item, expressed as text. + 0..1 + Line Item + Accounting Cost + Text + Text. Type + + + + + + + + + BBIE + Line Item. Warranty_ Information. Text + Text describing a warranty (provided by WarrantyParty) for the good or service described in this line item. + 0..n + Line Item + Warranty + Information + Text + Text. Type + Unless specified otherwise and in addition to any rights the Customer may have under statute, Dell warrants to the Customer that Dell branded Products (excluding third party products and software), will be free from defects in materials and workmanship affecting normal use for a period of one year from invoice date ( Standard Warranty ). + + + + + + + + + ASBIE + Line Item. Delivery + A delivery associated with this line item. + 0..n + Line Item + Delivery + Delivery + Delivery + + + + + + + + + ASBIE + Line Item. Delivery Terms + Terms and conditions of the delivery associated with this line item. + 0..1 + Line Item + Delivery Terms + Delivery Terms + Delivery Terms + + + + + + + + + ASBIE + Line Item. Originator_ Party. Party + The party who originated the Order associated with this line item. + 0..1 + Line Item + Originator + Party + Party + Party + + + + + + + + + ASBIE + Line Item. Ordered Shipment + An ordered shipment associated with this line item. + 0..n + Line Item + Ordered Shipment + Ordered Shipment + Ordered Shipment + + + + + + + + + ASBIE + Line Item. Pricing Reference + A reference to pricing and item location information associated with this line item. + 0..1 + Line Item + Pricing Reference + Pricing Reference + Pricing Reference + + + + + + + + + ASBIE + Line Item. Allowance Charge + An allowance or charge associated with this line item. + 0..n + Line Item + Allowance Charge + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Line Item. Price + The price of the item of trade associated with this line item. + 0..1 + Line Item + Price + Price + Price + + + + + + + + + ASBIE + Line Item. Item + The item of trade associated with this line item. + 1 + Line Item + Item + Item + Item + + + + + + + + + ASBIE + Line Item. Sub_ Line Item. Line Item + The subsidiary line items that constitute the main line item, such as in a bill of materials. + 0..n + Line Item + Sub + Line Item + Line Item + Line Item + + + + + + + + + ASBIE + Line Item. Warranty Validity_ Period. Period + The period during which the warranty associated with this line item is valid. + 0..1 + Line Item + Warranty Validity + Period + Period + Period + + + + + + + + + ASBIE + Line Item. Warranty_ Party. Party + The party responsible for any warranty associated with this line item. + 0..1 + Line Item + Warranty + Party + Party + Party + + + + + + + + + ASBIE + Line Item. Tax Total + A total amount of taxes of a particular kind applicable to this item. + 0..n + Line Item + Tax Total + Tax Total + Tax Total + + + + + + + + + ASBIE + Line Item. Item_ Price Extension. Price Extension + The price extension, calculated by multiplying the price per unit by the quantity of items. + 0..1 + Line Item + Item + Price Extension + Price Extension + Price Extension + + + + + + + + + ASBIE + Line Item. Line Reference + A reference to a line in a document associated with this line item. + 0..n + Line Item + Line Reference + Line Reference + Line Reference + + + + + + + + + + + ABIE + Line Reference. Details + A class to define a reference to a line in a document. + Line Reference + + + + + + + + + BBIE + Line Reference. Line Identifier. Identifier + Identifies the referenced line in the document. + 1 + Line Reference + Line Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Line Reference. UUID. Identifier + A universally unique identifier for this line reference. + 0..1 + Line Reference + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Line Reference. Line Status Code. Code + A code signifying the status of the referenced line with respect to its original state. + 0..1 + Line Reference + Line Status Code + Code + Line Status + Line Status_ Code. Type + + + + + + + + + ASBIE + Line Reference. Document Reference + A reference to the document containing the referenced line. + 0..1 + Line Reference + Document Reference + Document Reference + Document Reference + + + + + + + + + + + ABIE + Line Response. Details + A class to describe responses to a line in a document. + Line Response + + + + + + + + + ASBIE + Line Response. Line Reference + A reference to the line being responded to. + 1 + Line Response + Line Reference + Line Reference + Line Reference + + + + + + + + + ASBIE + Line Response. Response + A response to the referenced line. + 1..n + Line Response + Response + Response + Response + + + + + + + + + + + ABIE + Location. Details + A class to describe a location. + Location + + + + + + + + + BBIE + Location. Identifier + An identifier for this location, e.g., the EAN Location Number, GLN. + 0..1 + Location + Identifier + Identifier + Identifier. Type + 5790002221134 + + + + + + + + + BBIE + Location. Description. Text + Text describing this location. + 0..n + Location + Description + Text + Text. Type + + + + + + + + + BBIE + Location. Conditions. Text + Free-form text describing the physical conditions of the location. + 0..n + Location + Conditions + Text + Text. Type + + + + + + + + + BBIE + Location. Country Subentity. Text + A territorial division of a country, such as a county or state, expressed as text. + 0..1 + Location + Country Subentity + Text + Text. Type + AdministrativeArea, State, Country, Shire, Canton + Florida , Tamilnadu + + + + + + + + + BBIE + Location. Country Subentity Code. Code + A territorial division of a country, such as a county or state, expressed as a code. + 0..1 + Location + Country Subentity Code + Code + Code. Type + AdministrativeAreaCode, State Code + + + + + + + + + BBIE + Location. Location Type Code. Code + A code signifying the type of location. + 0..1 + Location + Location Type Code + Code + Code. Type + + + + + + + + + BBIE + Location. Information_ URI. Identifier + The Uniform Resource Identifier (URI) of a document providing information about this location. + 0..1 + Location + Information + URI + Identifier + Identifier. Type + + + + + + + + + BBIE + Location. Name + The name of this location. + 0..1 + Location + Name + Name + Name. Type + winter 2005 collection + + + + + + + + + ASBIE + Location. Validity_ Period. Period + A period during which this location can be used (e.g., for delivery). + 0..n + Location + Validity + Period + Period + Period + + + + + + + + + ASBIE + Location. Address + The address of this location. + 0..1 + Location + Address + Address + Address + + + + + + + + + ASBIE + Location. Subsidiary_ Location. Location + A location subsidiary to this location. + 0..n + Location + Subsidiary + Location + Location + Location + + + + + + + + + ASBIE + Location. Location Coordinate + The geographical coordinates of this location. + 0..n + Location + Location Coordinate + Location Coordinate + Location Coordinate + + + + + + + + + + + ABIE + Location Coordinate. Details + A class for defining a set of geographical coordinates (apparently misnamed). + Location Coordinate + + + + + + + + + BBIE + Location Coordinate. Coordinate System Code. Code + A code signifying the location system used. + 0..1 + Location Coordinate + Coordinate System Code + Code + Code. Type + + + + + + + + + BBIE + Location Coordinate. Latitude_ Degrees. Measure + The degree component of a latitude measured in degrees and minutes. + 0..1 + Location Coordinate + Latitude + Degrees + Measure + Measure. Type + + + + + + + + + BBIE + Location Coordinate. Latitude_ Minutes. Measure + The minutes component of a latitude measured in degrees and minutes (modulo 60). + 0..1 + Location Coordinate + Latitude + Minutes + Measure + Measure. Type + + + + + + + + + BBIE + Location Coordinate. Latitude Direction Code. Code + A code signifying the direction of latitude measurement from the equator (north or south). + 0..1 + Location Coordinate + Latitude Direction Code + Code + Latitude Direction + Latitude Direction_ Code. Type + + + + + + + + + BBIE + Location Coordinate. Longitude_ Degrees. Measure + The degree component of a longitude measured in degrees and minutes. + 0..1 + Location Coordinate + Longitude + Degrees + Measure + Measure. Type + + + + + + + + + BBIE + Location Coordinate. Longitude_ Minutes. Measure + The minutes component of a longitude measured in degrees and minutes (modulo 60). + 0..1 + Location Coordinate + Longitude + Minutes + Measure + Measure. Type + + + + + + + + + BBIE + Location Coordinate. Longitude Direction Code. Code + A code signifying the direction of longitude measurement from the prime meridian (east or west). + 0..1 + Location Coordinate + Longitude Direction Code + Code + Longitude Direction + Longitude Direction_ Code. Type + + + + + + + + + BBIE + Location Coordinate. Altitude. Measure + The altitude of the location. + 0..1 + Location Coordinate + Altitude + Measure + Measure. Type + + + + + + + + + + + ABIE + Lot Identification. Details + A class for defining a lot identifier (the identifier of a set of item instances that would be used in case of a recall of that item). + Lot Identification + + + + + + + + + BBIE + Lot Identification. Lot Number. Identifier + An identifier for the lot. + 0..1 + Lot Identification + Lot Number + Identifier + Identifier. Type + + + + + + + + + BBIE + Lot Identification. Expiry Date. Date + The expiry date of the lot. + 0..1 + Lot Identification + Expiry Date + Date + Date. Type + + + + + + + + + ASBIE + Lot Identification. Additional_ Item Property. Item Property + An additional property of the lot. + 0..n + Lot Identification + Additional + Item Property + Item Property + Item Property + + + + + + + + + + + ABIE + Maritime Transport. Details + A class to describe a vessel used for transport by water (including sea, river, and canal). + Maritime Transport + + + + + + + + + BBIE + Maritime Transport. Vessel Identifier. Identifier + An identifier for a specific vessel. + 0..1 + Maritime Transport + Vessel Identifier + Identifier + Identifier. Type + Lloyds Number, Registration Number (WCO ID 167) + International Maritime Organisation number of a vessel + + + + + + + + + BBIE + Maritime Transport. Vessel Name. Name + The name of the vessel. + 0..1 + Maritime Transport + Vessel Name + Name + Name. Type + Ships Name + + + + + + + + + BBIE + Maritime Transport. Radio Call Sign Identifier. Identifier + The radio call sign of the vessel. + 0..1 + Maritime Transport + Radio Call Sign Identifier + Identifier + Identifier. Type + NES + + + + + + + + + BBIE + Maritime Transport. Ships Requirements. Text + Information about what services a vessel will require when it arrives at a port, such as refueling, maintenance, waste disposal etc. + 0..n + Maritime Transport + Ships Requirements + Text + Text. Type + + + + + + + + + BBIE + Maritime Transport. Gross Tonnage. Measure + Gross tonnage is calculated by measuring a ship's volume (from keel to funnel, to the outside of the hull framing) and applying a mathematical formula and is used to determine things such as a ship's manning regulations, safety rules, registration fees and port dues. + 0..1 + Maritime Transport + Gross Tonnage + Measure + Measure. Type + + + + + + + + + BBIE + Maritime Transport. Net Tonnage. Measure + Net tonnage is calculated by measuring a ship's internal volume and applying a mathematical formula and is used to calculate the port duties. + 0..1 + Maritime Transport + Net Tonnage + Measure + Measure. Type + + + + + + + + + ASBIE + Maritime Transport. Registry Certificate_ Document Reference. Document Reference + The certificate issued to the ship by the ships registry in a given flag state. + 0..1 + Maritime Transport + Registry Certificate + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Maritime Transport. Registry Port_ Location. Location + The port in which a vessel is registered or permanently based. + 0..1 + Maritime Transport + Registry Port + Location + Location + Location + + + + + + + + + + + ABIE + Meter. Details + A class to describe a meter and its readings. + Meter + + + + + + + + + BBIE + Meter. Meter Number. Text + The meter number, expressed as text. + 0..1 + Meter + Meter Number + Text + Text. Type + 61722x + + + + + + + + + BBIE + Meter. Meter Name. Text + The name of this meter, which serves as an identifier to distinguish a main meter from a submeter. + 0..1 + Meter + Meter Name + Text + Text. Type + + + + + + + + + BBIE + Meter. Meter Constant. Text + The factor by which readings of this meter must be multiplied to calculate consumption, expressed as text. + 0..1 + Meter + Meter Constant + Text + Text. Type + 1.000 + + + + + + + + + BBIE + Meter. Meter Constant Code. Code + A code signifying the formula to be used in applying the meter constant. + 0..1 + Meter + Meter Constant Code + Code + Code. Type + Factor + + + + + + + + + BBIE + Meter. Total_ Delivered Quantity. Quantity + The quantity delivered; the total quantity consumed as calculated from the meter readings. + 0..1 + Meter + Total + Delivered Quantity + Quantity + Quantity. Type + 5761.00 + + + + + + + + + ASBIE + Meter. Meter Reading + A reading of this meter. + 0..n + Meter + Meter Reading + Meter Reading + Meter Reading + + + + + + + + + ASBIE + Meter. Meter Property + A property of this meter. + 0..n + Meter + Meter Property + Meter Property + Meter Property + + + + + + + + + + + ABIE + Meter Property. Details + The name of this meter property. + Meter Property + + + + + + + + + BBIE + Meter Property. Name + The name of this meter property, expressed as a code. + 0..1 + Meter Property + Name + Name + Name. Type + Energy Rating , Collar Size , Fat Content + + + + + + + + + BBIE + Meter Property. Name Code. Code + The value of this meter property, expressed as text. + 0..1 + Meter Property + Name Code + Code + Code. Type + + + + + + + + + BBIE + Meter Property. Value. Text + The value of this meter property, expressed as a quantity. + 0..1 + Meter Property + Value + Text + Text. Type + 100 watts , 15 European , 20% +/- 5% + + + + + + + + + BBIE + Meter Property. Value_ Quantity. Quantity + The value of this meter property, expressed as a quantity. + 0..1 + Meter Property + Value + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Meter Property. Value Qualifier. Text + An additional value to qualify the value of the meter + 0..n + Meter Property + Value Qualifier + Text + Text. Type + + + + + + + + + + + ABIE + Meter Reading. Details + A class to describe a meter reading. + Meter Reading + + + + + + + + + BBIE + Meter Reading. Identifier + An identifier for this meter reading. + 0..1 + Meter Reading + Identifier + Identifier + Identifier. Type + 7411013716x + + + + + + + + + BBIE + Meter Reading. Meter Reading Type. Text + The type of this meter reading, expressed as text. + 0..1 + Meter Reading + Meter Reading Type + Text + Text. Type + Electricity + + + + + + + + + BBIE + Meter Reading. Meter Reading Type Code. Code + The type of this meter reading, expressed as a code. + 0..1 + Meter Reading + Meter Reading Type Code + Code + Code. Type + Electricity + + + + + + + + + BBIE + Meter Reading. Previous_ Meter Reading Date. Date + The date of the previous meter reading. + 1 + Meter Reading + Previous + Meter Reading Date + Date + Date. Type + 2006-09-01 + + + + + + + + + BBIE + Meter Reading. Previous_ Meter Quantity. Quantity + The quantity of the previous meter reading. + 1 + Meter Reading + Previous + Meter Quantity + Quantity + Quantity. Type + 122604.00 + + + + + + + + + BBIE + Meter Reading. Latest_ Meter Reading Date. Date + The date of the latest meter reading. + 1 + Meter Reading + Latest + Meter Reading Date + Date + Date. Type + 2006-09-01 + + + + + + + + + BBIE + Meter Reading. Latest_ Meter Quantity. Quantity + The quantity of the latest meter reading. + 1 + Meter Reading + Latest + Meter Quantity + Quantity + Quantity. Type + 128365.00 + + + + + + + + + BBIE + Meter Reading. Previous Meter Reading_ Method. Text + The method used for the previous meter reading, expressed as text. + 0..1 + Meter Reading + Previous Meter Reading + Method + Text + Text. Type + Manuel + + + + + + + + + BBIE + Meter Reading. Previous Meter Reading_ Method Code. Code + The method used for the previous meter reading, expressed as a code. + 0..1 + Meter Reading + Previous Meter Reading + Method Code + Code + Code. Type + Estimated + + + + + + + + + BBIE + Meter Reading. Latest Meter Reading_ Method. Text + The method used for the latest meter reading, expressed as text. + 0..1 + Meter Reading + Latest Meter Reading + Method + Text + Text. Type + Manuel + + + + + + + + + BBIE + Meter Reading. Latest Meter Reading_ Method Code. Code + The method used for the latest meter reading, expressed as a code. + 0..1 + Meter Reading + Latest Meter Reading + Method Code + Code + Code. Type + Estimated + + + + + + + + + BBIE + Meter Reading. Meter Reading_ Comments. Text + Text containing comments on this meter reading. + 0..n + Meter Reading + Meter Reading + Comments + Text + Text. Type + The last stated meterstand is estimated + + + + + + + + + BBIE + Meter Reading. Delivered_ Quantity. Quantity + Consumption in the period from PreviousMeterReadingDate to LatestMeterReadingDate. + 1 + Meter Reading + Delivered + Quantity + Quantity + Quantity. Type + + + + + + + + + + + ABIE + Miscellaneous Event. Details + A class to describe a miscellaneous event associated with a retail event. + Miscellaneous Event + + + + + + + + + BBIE + Miscellaneous Event. Miscellaneous Event Type Code. Code + A code signifying the type of this miscellaneous event. Examples are: ASSORTMENT_CHARGE DISASTER FORECAST_DECREASE FORECAST_INCREASE FREIGHT_FLOW_ALLOCATION INVENTORY_POLICY_CHANGE LOCATION_CLOSING LOCATION_OPENING OTHER OUT_OF_STOCK PACKAGING_LABELING_CHANGE PRICE_DECREASE PRICE_INCREASE STORE_FORMAT_OR_PLANOGRAM_CHANGE TEST_MARKET WEATHER + 1 + Miscellaneous Event + Miscellaneous Event Type Code + Code + Code. Type + + + + + + + + + ASBIE + Miscellaneous Event. Event Line Item + An event line item for this miscellaneous retail event. + 1..n + Miscellaneous Event + Event Line Item + Event Line Item + Event Line Item + + + + + + + + + + + ABIE + Monetary Total. Details + A class to define a monetary total. + Monetary Total + + + + + + + + + BBIE + Monetary Total. Line Extension Amount. Amount + The monetary amount of an extended transaction line, net of tax and settlement discounts, but inclusive of any applicable rounding amount. + 0..1 + Monetary Total + Line Extension Amount + Amount + Amount. Type + + + + + + + + + BBIE + Monetary Total. Tax Exclusive Amount. Amount + The monetary amount of an extended transaction line, exclusive of taxes. + 0..1 + Monetary Total + Tax Exclusive Amount + Amount + Amount. Type + + + + + + + + + BBIE + Monetary Total. Tax Inclusive Amount. Amount + The monetary amount including taxes; the sum of payable amount and prepaid amount. + 0..1 + Monetary Total + Tax Inclusive Amount + Amount + Amount. Type + + + + + + + + + BBIE + Monetary Total. Allowance_ Total Amount. Amount + The total monetary amount of all allowances. + 0..1 + Monetary Total + Allowance + Total Amount + Amount + Amount. Type + + + + + + + + + BBIE + Monetary Total. Charge_ Total Amount. Amount + The total monetary amount of all charges. + 0..1 + Monetary Total + Charge + Total Amount + Amount + Amount. Type + + + + + + + + + BBIE + Monetary Total. Prepaid Amount. Amount + The total prepaid monetary amount. + 0..1 + Monetary Total + Prepaid Amount + Amount + Amount. Type + + + + + + + + + BBIE + Monetary Total. Payable_ Rounding Amount. Amount + The rounding amount (positive or negative) added to produce the line extension amount. + 0..1 + Monetary Total + Payable + Rounding Amount + Amount + Amount. Type + + + + + + + + + BBIE + Monetary Total. Payable_ Amount. Amount + The amount of the monetary total to be paid. + 1 + Monetary Total + Payable + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Monetary Total. Payable_ Alternative Amount. Amount + The amount of the monetary total to be paid, expressed in an alternative currency. + 0..1 + Monetary Total + Payable + Alternative Amount + Amount + Amount. Type + + + + + + + + + + + ABIE + Notification Requirement. Details + A class to describe a notification requirement. + Notification Requirement + + + + + + + + + BBIE + Notification Requirement. Notification Type Code. Code + A code signifying the type of notification (e.g., pickup status). + 1 + Notification Requirement + Notification Type Code + Code + Code. Type + + + + + + + + + BBIE + Notification Requirement. Post Event Notification Duration. Measure + The length of time between the occurrence of a given event and the issuance of a notification. + 0..1 + Notification Requirement + Post Event Notification Duration + Measure + Measure. Type + + + + + + + + + BBIE + Notification Requirement. Pre Event Notification Duration. Measure + The length of time to elapse between the issuance of a notification and the occurrence of the event it relates to. + 0..1 + Notification Requirement + Pre Event Notification Duration + Measure + Measure. Type + + + + + + + + + ASBIE + Notification Requirement. Notify_ Party. Party + A party to be notified. + 0..n + Notification Requirement + Notify + Party + Party + Party + + + + + + + + + ASBIE + Notification Requirement. Notification_ Period. Period + A period during which a notification should be issued. + 0..n + Notification Requirement + Notification + Period + Period + Period + + + + + + + + + ASBIE + Notification Requirement. Notification_ Location. Location + A location at which a notification should be issued. + 0..n + Notification Requirement + Notification + Location + Location + Location + + + + + + + + + + + ABIE + On Account Payment. Details + A scheduled prepayment (on-account payment) for a estimated utility consumption + On Account Payment + + + + + + + + + BBIE + On Account Payment. Estimated_ Consumed Quantity. Quantity + The estimated consumed quantity covered by the payment. + 1 + On Account Payment + Estimated + Consumed Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + On Account Payment. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + On Account Payment + Note + Text + Text. Type + We make a reservation for price regulations. You will receive you next yearly statement about one year from today. + + + + + + + + + ASBIE + On Account Payment. Payment Terms + A specification of payment terms associated with this payment. + 1..n + On Account Payment + Payment Terms + Payment Terms + Payment Terms + + + + + + + + + + + ABIE + Order Line. Details + A class to define a line in an order document (e.g., Order, Order Change, or Order Response) describing an item being ordered. + Order Line + + + + + + + + + BBIE + Order Line. Substitution Status Code. Code + A code signifying the substitution status of the item on this order line. The order line may indicate that the substitute is proposed by the buyer (in Order) or by the seller (in Order Response) or that a substitution has been made by the seller (in Order Response). + 0..1 + Order Line + Substitution Status Code + Code + Substitution Status + Substitution Status_ Code. Type + + + + + + + + + BBIE + Order Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Order Line + Note + Text + Text. Type + + + + + + + + + ASBIE + Order Line. Line Item + The line item itself. + 1 + Order Line + Line Item + Line Item + Line Item + + + + + + + + + ASBIE + Order Line. Seller Proposed Substitute_ Line Item. Line Item + In Order Response, a line item proposed by the seller describing a product that might substitute for the product described in this order line. + 0..n + Order Line + Seller Proposed Substitute + Line Item + Line Item + Line Item + + + + + + + + + ASBIE + Order Line. Seller Substituted_ Line Item. Line Item + In Order Response, a line item that has replaced the original order line item. The specified quantity and pricing may differ from those in the original line item, but when a line item is substituted by the seller, it is assumed that other information, such as shipment details, will remain the same. + 0..n + Order Line + Seller Substituted + Line Item + Line Item + Line Item + + + + + + + + + ASBIE + Order Line. Buyer Proposed Substitute_ Line Item. Line Item + A description of an item proposed by the buyer as a possible alternative to the item associated with this order line. + 0..n + Order Line + Buyer Proposed Substitute + Line Item + Line Item + Line Item + + + + + + + + + ASBIE + Order Line. Catalogue_ Line Reference. Line Reference + A reference to a catalogue line associated with this order line. + 0..1 + Order Line + Catalogue + Line Reference + Line Reference + Line Reference + + + + + + + + + ASBIE + Order Line. Quotation_ Line Reference. Line Reference + A reference to a quotation line associated with this order line. + 0..1 + Order Line + Quotation + Line Reference + Line Reference + Line Reference + + + + + + + + + ASBIE + Order Line. Order Line Reference + A reference to another order line, such as in a replacement order or another line on the same order that is related. + 0..n + Order Line + Order Line Reference + Order Line Reference + Order Line Reference + + + + + + + + + ASBIE + Order Line. Document Reference + A reference to a document associated with this order line. + 0..n + Order Line + Document Reference + Document Reference + Document Reference + + + + + + + + + + + ABIE + Order Line Reference. Details + A class to define a reference to an order line. + Order Line Reference + + + + + + + + + BBIE + Order Line Reference. Line Identifier. Identifier + An identifier for the referenced order line, assigned by the buyer. + 1 + Order Line Reference + Line Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Order Line Reference. Sales Order_ Line Identifier. Identifier + An identifier for the referenced order line, assigned by the seller. + 0..1 + Order Line Reference + Sales Order + Line Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Order Line Reference. UUID. Identifier + A universally unique identifier for this order line reference. + 0..1 + Order Line Reference + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Order Line Reference. Line Status Code. Code + A code signifying the status of the referenced order line with respect to its original state. + 0..1 + Order Line Reference + Line Status Code + Code + Line Status + Line Status_ Code. Type + + + + + + + + + ASBIE + Order Line Reference. Order Reference + A reference to the Order containing the referenced order line. + 0..1 + Order Line Reference + Order Reference + Order Reference + Order Reference + + + + + + + + + + + ABIE + Order Reference. Details + A class to define a reference to an Order. + Order Reference + + + + + + + + + BBIE + Order Reference. Identifier + An identifier for this order reference, assigned by the buyer. + 1 + Order Reference + Identifier + Identifier + Identifier. Type + PO-001 3333-44-123 + + + + + + + + + BBIE + Order Reference. Sales_ Order Identifier. Identifier + An identifier for this order reference, assigned by the seller. + 0..1 + Order Reference + Sales + Order Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Order Reference. Copy_ Indicator. Indicator + Indicates whether the referenced Order is a copy (true) or the original (false). + 0..1 + Order Reference + Copy + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Order Reference. UUID. Identifier + A universally unique identifier for this order reference. + 0..1 + Order Reference + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Order Reference. Issue Date. Date + The date on which the referenced Order was issued. + 0..1 + Order Reference + Issue Date + Date + Date. Type + + + + + + + + + BBIE + Order Reference. Issue Time. Time + The time at which the referenced Order was issued. + 0..1 + Order Reference + Issue Time + Time + Time. Type + + + + + + + + + BBIE + Order Reference. Customer_ Reference. Text + Text used for tagging purchasing card transactions. + 0..1 + Order Reference + Customer + Reference + Text + Text. Type + + + + + + + + + BBIE + Order Reference. Order Type Code. Code + A code signifying the type of the referenced Order. + 0..1 + Order Reference + Order Type Code + Code + Code. Type + + + + + + + + + ASBIE + Order Reference. Document Reference + A document associated with this reference to an Order. + 0..1 + Order Reference + Document Reference + Document Reference + Document Reference + + + + + + + + + + + ABIE + Ordered Shipment. Details + A class to describe an ordered shipment. + Ordered Shipment + + + + + + + + + ASBIE + Ordered Shipment. Shipment + The ordered shipment. + 1 + Ordered Shipment + Shipment + Shipment + Shipment + + + + + + + + + ASBIE + Ordered Shipment. Package + A package in this ordered shipment. + 0..n + Ordered Shipment + Package + Package + Package + + + + + + + + + + + ABIE + Package. Details + A class to describe a package. + Package + + + + + + + + + BBIE + Package. Identifier + An identifier for this package. + 0..1 + Package + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Package. Quantity + The quantity of items contained in this package. + 0..1 + Package + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Package. Returnable Material_ Indicator. Indicator + An indicator that the packaging material is returnable (true) or not (false). + 0..1 + Package + Returnable Material + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Package. Package Level Code. Code + A code signifying a level of packaging. + 0..1 + Package + Package Level Code + Code + Code. Type + + + + + + + + + BBIE + Package. Packaging Type Code. Code + A code signifying a type of packaging. + 0..1 + Package + Packaging Type Code + Code + Packaging Type + Packaging Type_ Code. Type + Package classification code + + + + + + + + + BBIE + Package. Packing Material. Text + Text describing the packaging material. + 0..n + Package + Packing Material + Text + Text. Type + + + + + + + + + BBIE + Package. Trace_ Identifier. Identifier + An identifier for use in tracing this package, such as the EPC number used in RFID. + 0..1 + Package + Trace + Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Package. Contained_ Package. Package + A package contained within this package. + 0..n + Package + Contained + Package + Package + Package + + + + + + + + + ASBIE + Package. Containing_ Transport Equipment. Transport Equipment + The piece of transport equipment containing this package. + 0..1 + Package + Containing + Transport Equipment + Transport Equipment + Transport Equipment + + + + + + + + + ASBIE + Package. Goods Item + A goods item included in this package. + 0..n + Package + Goods Item + Goods Item + Goods Item + + + + + + + + + ASBIE + Package. Measurement_ Dimension. Dimension + A measurable dimension (length, mass, weight, or volume) of this package. + 0..n + Package + Measurement + Dimension + Dimension + Dimension + + + + + + + + + ASBIE + Package. Delivery Unit + A delivery unit within this package. + 0..n + Package + Delivery Unit + Delivery Unit + Delivery Unit + + + + + + + + + ASBIE + Package. Delivery + The delivery of this package. + 0..1 + Package + Delivery + Delivery + Delivery + + + + + + + + + ASBIE + Package. Pickup + The pickup of this package. + 0..1 + Package + Pickup + Pickup + Pickup + + + + + + + + + ASBIE + Package. Despatch + The despatch of this package. + 0..1 + Package + Despatch + Despatch + Despatch + + + + + + + + + + + ABIE + Party. Details + A class to describe an organization, sub-organization, or individual fulfilling a role in a business process. + Party + + + + + + + + + BBIE + Party. Mark Care_ Indicator. Indicator + An indicator that this party is "care of" (c/o) (true) or not (false). + 0..1 + Party + Mark Care + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Party. Mark Attention_ Indicator. Indicator + An indicator that this party is "for the attention of" (FAO) (true) or not (false). + 0..1 + Party + Mark Attention + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Party. Website_ URI. Identifier + The Uniform Resource Identifier (URI) that identifies this party's web site; i.e., the web site's Uniform Resource Locator (URL). + 0..1 + Party + Website + URI + Identifier + Identifier. Type + + + + + + + + + BBIE + Party. Logo Reference. Identifier + An identifier for this party's logo. + 0..1 + Party + Logo Reference + Identifier + Identifier. Type + http://www2.coca-cola.com/images/logo.gif + + + + + + + + + BBIE + Party. Endpoint Identifier. Identifier + An identifier for the end point of the routing service (e.g., EAN Location Number, GLN). + 0..1 + Party + Endpoint Identifier + Identifier + Identifier. Type + 5790002221134 + + + + + + + + + BBIE + Party. Industry Classification Code. Code + This party's Industry Classification Code. + 0..1 + Party + Industry Classification Code + Code + Code. Type + Public authority , NAIC codes + + + + + + + + + ASBIE + Party. Party Identification + An identifier for this party. + 0..n + Party + Party Identification + Party Identification + Party Identification + + + + + + + + + ASBIE + Party. Party Name + A name for this party. + 0..n + Party + Party Name + Party Name + Party Name + + + + + + + + + ASBIE + Party. Language + The language associated with this party. + 0..1 + Party + Language + Language + Language + + + + + + + + + ASBIE + Party. Postal_ Address. Address + The party's postal address. + 0..1 + Party + Postal + Address + Address + Address + + + + + + + + + ASBIE + Party. Physical_ Location. Location + The physical location of this party. + 0..1 + Party + Physical + Location + Location + Location + + + + + + + + + ASBIE + Party. Party Tax Scheme + A tax scheme applying to this party. + 0..n + Party + Party Tax Scheme + Party Tax Scheme + Party Tax Scheme + + + + + + + + + ASBIE + Party. Party Legal Entity + A description of this party as a legal entity. + 0..n + Party + Party Legal Entity + Party Legal Entity + Party Legal Entity + + + + + + + + + ASBIE + Party. Contact + The primary contact for this party. + 0..1 + Party + Contact + Contact + Contact + + + + + + + + + ASBIE + Party. Person + A person associated with this party. + 0..n + Party + Person + Person + Person + + + + + + + + + ASBIE + Party. Agent_ Party. Party + A party who acts as an agent for this party. + 0..1 + Party + Agent + Party + Party + Party + Customs Broker + + + + + + + + + ASBIE + Party. Service Provider Party + A party providing a service to this party. + 0..n + Party + Service Provider Party + Service Provider Party + Service Provider Party + + + + + + + + + ASBIE + Party. Power Of Attorney + A power of attorney associated with this party. + 0..n + Party + Power Of Attorney + Power Of Attorney + Power Of Attorney + + + + + + + + + ASBIE + Party. Financial Account + The financial account associated with this party. + 0..1 + Party + Financial Account + Financial Account + Financial Account + + + + + + + + + + + ABIE + Party Identification. Details + A class to define an identifier for a party. + Party Identification + + + + + + + + + BBIE + Party Identification. Identifier + An identifier for the party. + 1 + Party Identification + Identifier + Identifier + Identifier. Type + + + + + + + + + + + ABIE + Party Legal Entity. Details + A class to describe a party as a legal entity. + Party Legal Entity + + + + + + + + + BBIE + Party Legal Entity. Registration_ Name. Name + The name of the party as registered with the relevant legal authority. + 0..1 + Party Legal Entity + Registration + Name + Name + Name. Type + Microsoft Corporation + + + + + + + + + BBIE + Party Legal Entity. Company Identifier. Identifier + An identifier for the party as registered within a company registration scheme. + 0..1 + Party Legal Entity + Company Identifier + Identifier + Identifier. Type + Business Registration Number, Company Number + 3556625 + + + + + + + + + BBIE + Party Legal Entity. Registration_ Date. Date + The registration date of the CompanyID. + 0..1 + Party Legal Entity + Registration + Date + Date + Date. Type + + + + + + + + + BBIE + Party Legal Entity. Registration Expiration_ Date. Date + The date upon which a registration expires (e.g., registration for an import/export license). + 0..1 + Party Legal Entity + Registration Expiration + Date + Date + Date. Type + + + + + + + + + BBIE + Party Legal Entity. Company Legal Form Code. Code + A code signifying the party's legal status. + 0..1 + Party Legal Entity + Company Legal Form Code + Code + Code. Type + Legal Status + + + + + + + + + BBIE + Party Legal Entity. Company Legal Form. Text + The company legal status, expressed as a text. + 0..1 + Party Legal Entity + Company Legal Form + Text + Text. Type + + + + + + + + + BBIE + Party Legal Entity. Sole Proprietorship Indicator. Indicator + An indicator that the company is owned and controlled by one person (true) or not (false). + 0..1 + Party Legal Entity + Sole Proprietorship Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Party Legal Entity. Company Liquidation Status Code. Code + A code signifying the party's liquidation status. + 0..1 + Party Legal Entity + Company Liquidation Status Code + Code + Code. Type + + + + + + + + + BBIE + Party Legal Entity. Corporate Stock_ Amount. Amount + The number of shares in the capital stock of a corporation. + 0..1 + Party Legal Entity + Corporate Stock + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Party Legal Entity. Fully Paid Shares Indicator. Indicator + An indicator that all shares of corporate stock have been paid by shareholders (true) or not (false). + 0..1 + Party Legal Entity + Fully Paid Shares Indicator + Indicator + Indicator. Type + + + + + + + + + ASBIE + Party Legal Entity. Registration_ Address. Address + The registered address of the party within a corporate registration scheme. + 0..1 + Party Legal Entity + Registration + Address + Address + Address + + + + + + + + + ASBIE + Party Legal Entity. Corporate Registration Scheme + The corporate registration scheme used to register the party. + 0..1 + Party Legal Entity + Corporate Registration Scheme + Corporate Registration Scheme + Corporate Registration Scheme + + + + + + + + + ASBIE + Party Legal Entity. Head Office_ Party. Party + The head office of the legal entity + 0..1 + Party Legal Entity + Head Office + Party + Party + Party + + + + + + + + + ASBIE + Party Legal Entity. Shareholder Party + A party owning shares in this legal entity. + 0..n + Party Legal Entity + Shareholder Party + Shareholder Party + Shareholder Party + + + + + + + + + + + ABIE + Party Name. Details + A class for defining the name of a party. + Party Name + + + + + + + + + BBIE + Party Name. Name + The name of the party. + 1 + Party Name + Name + Name + Name. Type + Microsoft + + + + + + + + + + + ABIE + Party Tax Scheme. Details + A class to describe a taxation scheme applying to a party. + Party Tax Scheme + + + + + + + + + BBIE + Party Tax Scheme. Registration_ Name. Name + The name of the party as registered with the relevant fiscal authority. + 0..1 + Party Tax Scheme + Registration + Name + Name + Name. Type + Microsoft Corporation + + + + + + + + + BBIE + Party Tax Scheme. Company Identifier. Identifier + An identifier for the party assigned for tax purposes by the taxation authority. + 0..1 + Party Tax Scheme + Company Identifier + Identifier + Identifier. Type + VAT Number + 3556625 + + + + + + + + + BBIE + Party Tax Scheme. Tax Level Code. Code + A code signifying the tax level applicable to the party within this taxation scheme. + 0..1 + Party Tax Scheme + Tax Level Code + Code + Code. Type + + + + + + + + + BBIE + Party Tax Scheme. Exemption Reason Code. Code + A reason for the party's exemption from tax, expressed as a code. + 0..1 + Party Tax Scheme + Exemption Reason Code + Code + Code. Type + + + + + + + + + BBIE + Party Tax Scheme. Exemption_ Reason. Text + A reason for the party's exemption from tax, expressed as text. + 0..n + Party Tax Scheme + Exemption + Reason + Text + Text. Type + + + + + + + + + ASBIE + Party Tax Scheme. Registration_ Address. Address + The address of the party as registered for tax purposes. + 0..1 + Party Tax Scheme + Registration + Address + Address + Address + + + + + + + + + ASBIE + Party Tax Scheme. Tax Scheme + The taxation scheme applicable to the party. + 1 + Party Tax Scheme + Tax Scheme + Tax Scheme + Tax Scheme + + + + + + + + + + + ABIE + Payment. Details + A class to describe a payment. + Payment + + + + + + + + + BBIE + Payment. Identifier + An identifier for this payment. + 0..1 + Payment + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Payment. Paid_ Amount. Amount + The amount of this payment. + 0..1 + Payment + Paid + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Payment. Received_ Date. Date + The date on which this payment was received. + 0..1 + Payment + Received + Date + Date + Date. Type + + + + + + + + + BBIE + Payment. Paid_ Date. Date + The date on which this payment was made. + 0..1 + Payment + Paid + Date + Date + Date. Type + + + + + + + + + BBIE + Payment. Paid_ Time. Time + The time at which this payment was made. + 0..1 + Payment + Paid + Time + Time + Time. Type + + + + + + + + + BBIE + Payment. Instruction Identifier. Identifier + An identifier for the payment instruction. + 0..1 + Payment + Instruction Identifier + Identifier + Identifier. Type + + + + + + + + + + + ABIE + Payment Mandate. Details + A class to describe a payment mandate. + Payment Mandate + + + + + + + + + BBIE + Payment Mandate. Identifier + An identifier for this payment mandate. + 0..1 + Payment Mandate + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Payment Mandate. Mandate Type Code. Code + A code signifying the type of this payment mandate. + 0..1 + Payment Mandate + Mandate Type Code + Code + Code. Type + + + + + + + + + BBIE + Payment Mandate. Maximum Payment Instructions. Numeric + The number of maximum payment instructions allowed within the validity period. + 0..1 + Payment Mandate + Maximum Payment Instructions + Numeric + Numeric. Type + + + + + + + + + BBIE + Payment Mandate. Maximum_ Paid Amount. Amount + The maximum amount to be paid within a single instruction. + 0..1 + Payment Mandate + Maximum + Paid Amount + Amount + Amount. Type + + + + + + + + + BBIE + Payment Mandate. Signature Identifier. Identifier + An identifier for a signature applied by a signatory party. + 0..1 + Payment Mandate + Signature Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Payment Mandate. Payer_ Party. Party + The payer party (if different from the debtor). + 0..1 + Payment Mandate + Payer + Party + Party + Party + + + + + + + + + ASBIE + Payment Mandate. Payer_ Financial Account. Financial Account + The payer's financial account. + 0..1 + Payment Mandate + Payer + Financial Account + Financial Account + Financial Account + + + + + + + + + ASBIE + Payment Mandate. Validity_ Period. Period + The period during which this mandate is valid. + 0..1 + Payment Mandate + Validity + Period + Period + Period + + + + + + + + + ASBIE + Payment Mandate. Payment Reversal_ Period. Period + The period of the reverse payment. + 0..1 + Payment Mandate + Payment Reversal + Period + Period + Period + + + + + + + + + ASBIE + Payment Mandate. Clause + A clause applicable to this payment mandate. + 0..n + Payment Mandate + Clause + Clause + Clause + + + + + + + + + + + ABIE + Payment Means. Details + A class to describe a means of payment. + Payment Means + + + + + + + + + BBIE + Payment Means. Identifier + An identifier for this means of payment. + 0..1 + Payment Means + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Payment Means. Payment Means Code. Code + A code signifying the type of this means of payment. + 1 + Payment Means + Payment Means Code + Code + Payment Means + Payment Means_ Code. Type + + + + + + + + + BBIE + Payment Means. Payment Due Date. Date + The date on which payment is due for this means of payment. + 0..1 + Payment Means + Payment Due Date + Date + Date. Type + + + + + + + + + BBIE + Payment Means. Payment Channel Code. Code + A code signifying the payment channel for this means of payment. + 0..1 + Payment Means + Payment Channel Code + Code + Code. Type + + + + + + + + + BBIE + Payment Means. Instruction Identifier. Identifier + An identifier for the payment instruction. + 0..1 + Payment Means + Instruction Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Payment Means. Instruction_ Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Payment Means + Instruction + Note + Text + Text. Type + + + + + + + + + BBIE + Payment Means. Payment Identifier. Identifier + An identifier for a payment made using this means of payment. + 0..n + Payment Means + Payment Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Payment Means. Card Account + A credit card, debit card, or charge card account that constitutes this means of payment. + 0..1 + Payment Means + Card Account + Card Account + Card Account + + + + + + + + + ASBIE + Payment Means. Payer_ Financial Account. Financial Account + The payer's financial account. + 0..1 + Payment Means + Payer + Financial Account + Financial Account + Financial Account + + + + + + + + + ASBIE + Payment Means. Payee_ Financial Account. Financial Account + The payee's financial account. + 0..1 + Payment Means + Payee + Financial Account + Financial Account + Financial Account + + + + + + + + + ASBIE + Payment Means. Credit Account + A credit account associated with this means of payment. + 0..1 + Payment Means + Credit Account + Credit Account + Credit Account + + + + + + + + + ASBIE + Payment Means. Payment Mandate + The payment mandate associated with this means of payment. + 0..1 + Payment Means + Payment Mandate + Payment Mandate + Payment Mandate + + + + + + + + + ASBIE + Payment Means. Trade Financing + A trade finance agreement applicable to this means of payment. + 0..1 + Payment Means + Trade Financing + Trade Financing + Trade Financing + + + + + + + + + + + ABIE + Payment Terms. Details + A class to describe a set of payment terms. + Payment Terms + + + + + + + + + BBIE + Payment Terms. Identifier + An identifier for this set of payment terms. + 0..1 + Payment Terms + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Payment Terms. Payment Means Identifier. Identifier + An identifier for a means of payment associated with these payment terms. + 0..n + Payment Terms + Payment Means Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Payment Terms. Prepaid Payment Reference Identifier. Identifier + An identifier for a reference to a prepaid payment. + 0..1 + Payment Terms + Prepaid Payment Reference Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Payment Terms. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Payment Terms + Note + Text + Text. Type + + + + + + + + + BBIE + Payment Terms. Reference_ Event Code. Code + A code signifying the event during which these terms are offered. + 0..1 + Payment Terms + Reference + Event Code + Code + Code. Type + + + + + + + + + BBIE + Payment Terms. Settlement_ Discount Percent. Percent + The percentage for the settlement discount that is offered for payment under these payment terms. + 0..1 + Payment Terms + Settlement + Discount Percent + Percent + Percent. Type + + + + + + + + + BBIE + Payment Terms. Penalty_ Surcharge Percent. Percent + The penalty for payment after the settlement period, expressed as a percentage of the payment. + 0..1 + Payment Terms + Penalty + Surcharge Percent + Percent + Percent. Type + + + + + + + + + BBIE + Payment Terms. Payment Percent. Percent + The part of a payment, expressed as a percent, relevant for these payment terms. + 0..1 + Payment Terms + Payment Percent + Percent + Percent. Type + + + + + + + + + BBIE + Payment Terms. Amount + The monetary amount covered by these payment terms. + 0..1 + Payment Terms + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Payment Terms. Settlement_ Discount Amount. Amount + The amount of a settlement discount offered for payment under these payment terms. + 0..1 + Payment Terms + Settlement + Discount Amount + Amount + Amount. Type + + + + + + + + + BBIE + Payment Terms. Penalty_ Amount. Amount + The monetary amount of the penalty for payment after the settlement period. + 0..1 + Payment Terms + Penalty + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Payment Terms. Payment Terms Details URI. Identifier + The Uniform Resource Identifier (URI) of a document providing additional details regarding these payment terms. + 0..1 + Payment Terms + Payment Terms Details URI + Identifier + Identifier. Type + + + + + + + + + BBIE + Payment Terms. Payment Due Date. Date + The due date for these payment terms. + 0..1 + Payment Terms + Payment Due Date + Date + Date. Type + + + + + + + + + BBIE + Payment Terms. Installment Due Date. Date + The due date for an installment payment for these payment terms. + 0..1 + Payment Terms + Installment Due Date + Date + Date. Type + + + + + + + + + BBIE + Payment Terms. Invoicing Party_ Reference. Text + A reference to the payment terms used by the invoicing party. This may have been requested of the payer by the payee to accompany its remittance. + 0..1 + Payment Terms + Invoicing Party + Reference + Text + Text. Type + + + + + + + + + ASBIE + Payment Terms. Settlement_ Period. Period + The period during which settlement may occur. + 0..1 + Payment Terms + Settlement + Period + Period + Period + + + + + + + + + ASBIE + Payment Terms. Penalty_ Period. Period + The period during which penalties may apply. + 0..1 + Payment Terms + Penalty + Period + Period + Period + + + + + + + + + ASBIE + Payment Terms. Exchange Rate + The currency exchange rate for purposes of these payment terms. + 0..1 + Payment Terms + Exchange Rate + Exchange Rate + Exchange Rate + + + + + + + + + ASBIE + Payment Terms. Validity_ Period. Period + The period during which these payment terms are valid. + 0..1 + Payment Terms + Validity + Period + Period + Period + + + + + + + + + + + ABIE + Performance Data Line. Details + A class to define a line in a Performance History. + Performance Data Line + + + + + + + + + BBIE + Performance Data Line. Identifier + An identifier for this performance data line. + 1 + Performance Data Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Performance Data Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Performance Data Line + Note + Text + Text. Type + + + + + + + + + BBIE + Performance Data Line. Performance Value. Quantity + The value of the reported attribute. + 1 + Performance Data Line + Performance Value + Quantity + Quantity. Type + + + + + + + + + BBIE + Performance Data Line. Performance Metric Type Code. Code + A code signifying the measure of performance applicable to the reported attribute. + 1 + Performance Data Line + Performance Metric Type Code + Code + Code. Type + + + + + + + + + ASBIE + Performance Data Line. Period + The period to which this performance data line applies. + 0..1 + Performance Data Line + Period + Period + Period + + + + + + + + + ASBIE + Performance Data Line. Item + The item whose performance is reported in this data line. + 0..1 + Performance Data Line + Item + Item + Item + + + + + + + + + + + ABIE + Period. Details + A class to describe a period of time. + Period + + + + + + + + + BBIE + Period. Start Date. Date + The date on which this period begins. + 0..1 + Period + Start Date + Date + Date. Type + + + + + + + + + BBIE + Period. Start Time. Time + The time at which this period begins. + 0..1 + Period + Start Time + Time + Time. Type + + + + + + + + + BBIE + Period. End Date. Date + The date on which this period ends. + 0..1 + Period + End Date + Date + Date. Type + + + + + + + + + BBIE + Period. End Time. Time + The time at which this period ends. + 0..1 + Period + End Time + Time + Time. Type + + + + + + + + + BBIE + Period. Duration. Measure + The duration of this period, expressed as an ISO 8601 code. + 0..1 + Period + Duration + Measure + Measure. Type + + + + + + + + + BBIE + Period. Description Code. Code + A description of this period, expressed as a code. + 0..n + Period + Description Code + Code + Code. Type + + + + + + + + + BBIE + Period. Description. Text + A description of this period, expressed as text. + 0..n + Period + Description + Text + Text. Type + + + + + + + + + + + ABIE + Person. Details + A class to describe a person. + Person + + + + + + + + + BBIE + Person. Identifier + An identifier for this person. + 0..1 + Person + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Person. First_ Name. Name + This person's given name. + 0..1 + Person + First + Name + Name + Name. Type + + + + + + + + + BBIE + Person. Family_ Name. Name + This person's family name. + 0..1 + Person + Family + Name + Name + Name. Type + + + + + + + + + BBIE + Person. Title. Text + This person's title of address (e.g., Mr, Ms, Dr, Sir). + 0..1 + Person + Title + Text + Text. Type + + + + + + + + + BBIE + Person. Middle_ Name. Name + This person's middle name(s) or initials. + 0..1 + Person + Middle + Name + Name + Name. Type + + + + + + + + + BBIE + Person. Other_ Name. Name + This person's second family name. + 0..1 + Person + Other + Name + Name + Name. Type + Delivery Dock + + + + + + + + + BBIE + Person. Name Suffix. Text + A suffix to this person's name (e.g., PhD, OBE, Jr). + 0..1 + Person + Name Suffix + Text + Text. Type + + + + + + + + + BBIE + Person. Job Title. Text + This person's job title (for a particular role) within an organization. + 0..1 + Person + Job Title + Text + Text. Type + + + + + + + + + BBIE + Person. Nationality. Identifier + An identifier for this person's nationality. + 0..1 + Person + Nationality + Identifier + Identifier. Type + + + + + + + + + BBIE + Person. Gender Code. Code + A code (e.g., ISO 5218) signifying the gender of this person. + 0..1 + Person + Gender Code + Code + Code. Type + + + + + + + + + BBIE + Person. Birth Date. Date + This person's date of birth. + 0..1 + Person + Birth Date + Date + Date. Type + + + + + + + + + BBIE + Person. Birthplace Name. Text + The name of the place where this person was born, expressed as text. + 0..1 + Person + Birthplace Name + Text + Text. Type + + + + + + + + + BBIE + Person. Organization_ Department. Text + The department or subdivision of an organization that this person belongs to (in a particular role). + 0..1 + Person + Organization + Department + Text + Text. Type + + + + + + + + + ASBIE + Person. Contact + Contact information for this person. + 0..1 + Person + Contact + Contact + Contact + + + + + + + + + ASBIE + Person. Financial Account + The financial account associated with this person. + 0..1 + Person + Financial Account + Financial Account + Financial Account + + + + + + + + + ASBIE + Person. Identity_ Document Reference. Document Reference + A reference to a document that can precisely identify this person (e.g., a driver's license). + 0..n + Person + Identity + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Person. Residence_ Address. Address + This person's address of residence. + 0..1 + Person + Residence + Address + Address + Address + + + + + + + + + + + ABIE + Physical Attribute. Details + A class to describe a physical attribute. + Physical Attribute + + + + + + + + + BBIE + Physical Attribute. Attribute Identifier. Identifier + An identifier for this physical attribute. + 1 + Physical Attribute + Attribute Identifier + Identifier + Identifier. Type + colour style + + + + + + + + + BBIE + Physical Attribute. Position Code. Code + A code signifying the position of this physical attribute. + 0..1 + Physical Attribute + Position Code + Code + Code. Type + + + + + + + + + BBIE + Physical Attribute. Description Code. Code + A description of the physical attribute, expressed as a code. + 0..1 + Physical Attribute + Description Code + Code + Code. Type + XXL , Small + + + + + + + + + BBIE + Physical Attribute. Description. Text + A description of the physical attribute, expressed as text. + 0..n + Physical Attribute + Description + Text + Text. Type + + + + + + + + + + + ABIE + Pickup. Details + A class to describe a pickup for delivery. + Pickup + Collection + + + + + + + + + BBIE + Pickup. Identifier + An identifier for this pickup. + 0..1 + Pickup + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Pickup. Actual_ Pickup Date. Date + The actual pickup date. + 0..1 + Pickup + Actual + Pickup Date + Date + Date. Type + + + + + + + + + BBIE + Pickup. Actual_ Pickup Time. Time + The actual pickup time. + 0..1 + Pickup + Actual + Pickup Time + Time + Time. Type + + + + + + + + + BBIE + Pickup. Earliest_ Pickup Date. Date + The earliest pickup date. + 0..1 + Pickup + Earliest + Pickup Date + Date + Date. Type + + + + + + + + + BBIE + Pickup. Earliest_ Pickup Time. Time + The earliest pickup time. + 0..1 + Pickup + Earliest + Pickup Time + Time + Time. Type + + + + + + + + + BBIE + Pickup. Latest_ Pickup Date. Date + The latest pickup date. + 0..1 + Pickup + Latest + Pickup Date + Date + Date. Type + + + + + + + + + BBIE + Pickup. Latest_ Pickup Time. Time + The latest pickup time. + 0..1 + Pickup + Latest + Pickup Time + Time + Time. Type + + + + + + + + + ASBIE + Pickup. Pickup_ Location. Location + The pickup location. + 0..1 + Pickup + Pickup + Location + Location + Location + + + + + + + + + ASBIE + Pickup. Pickup_ Party. Party + The party responsible for picking up a delivery. + 0..1 + Pickup + Pickup + Party + Party + Party + + + + + + + + + + + ABIE + Power Of Attorney. Details + A class to describe a power of attorney. + Power Of Attorney + + + + + + + + + BBIE + Power Of Attorney. Identifier + An identifier for this power of attorney. + 0..1 + Power Of Attorney + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Power Of Attorney. Issue Date. Date + The date on which this power of attorney was issued. + 0..1 + Power Of Attorney + Issue Date + Date + Date. Type + + + + + + + + + BBIE + Power Of Attorney. Issue Time. Time + The time at which this power of attorney was issued. + 0..1 + Power Of Attorney + Issue Time + Time + Time. Type + + + + + + + + + BBIE + Power Of Attorney. Description. Text + Text describing this power of attorney. + 0..n + Power Of Attorney + Description + Text + Text. Type + + + + + + + + + ASBIE + Power Of Attorney. Notary_ Party. Party + The party notarizing this power of attorney. + 0..1 + Power Of Attorney + Notary + Party + Party + Party + + + + + + + + + ASBIE + Power Of Attorney. Agent_ Party. Party + The party who acts as an agent or fiduciary for the principal and who holds this power of attorney on behalf of the principal. + 1 + Power Of Attorney + Agent + Party + Party + Party + + + + + + + + + ASBIE + Power Of Attorney. Witness_ Party. Party + An association to a WitnessParty. + 0..n + Power Of Attorney + Witness + Party + Party + Party + + + + + + + + + ASBIE + Power Of Attorney. Mandate_ Document Reference. Document Reference + A reference to a mandate associated with this power of attorney. + 0..n + Power Of Attorney + Mandate + Document Reference + Document Reference + Document Reference + + + + + + + + + + + ABIE + Price. Details + A class to describe a price, expressed in a data structure containing multiple properties (compare with UnstructuredPrice). + Price + + + + + + + + + BBIE + Price. Price Amount. Amount + The amount of the price. + 1 + Price + Price Amount + Amount + Amount. Type + unit price + 23.45 + + + + + + + + + BBIE + Price. Base_ Quantity. Quantity + The quantity at which this price applies. + 0..1 + Price + Base + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Price. Price Change_ Reason. Text + A reason for a price change. + 0..n + Price + Price Change + Reason + Text + Text. Type + Clearance of old stock , New contract applies + + + + + + + + + BBIE + Price. Price Type Code. Code + The type of price, expressed as a code. + 0..1 + Price + Price Type Code + Code + Code. Type + + + + + + + + + BBIE + Price. Price Type. Text + The type of price, expressed as text. + 0..1 + Price + Price Type + Text + Text. Type + retail, wholesale, discount, contract + + + + + + + + + BBIE + Price. Orderable Unit Factor. Rate + The factor by which the base price unit can be converted to the orderable unit. + 0..1 + Price + Orderable Unit Factor + Rate + Rate. Type + Nails are priced by weight but ordered by quantity. So this would say how many nails per kilo + + + + + + + + + ASBIE + Price. Validity_ Period. Period + A period during which this price is valid. + 0..n + Price + Validity + Period + Period + Period + + + + + + + + + ASBIE + Price. Price List + Information about a price list applicable to this price. + 0..1 + Price + Price List + Price List + Price List + + + + + + + + + ASBIE + Price. Allowance Charge + An allowance or charge associated with this price. + 0..n + Price + Allowance Charge + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Price. Pricing_ Exchange Rate. Exchange Rate + The exchange rate applicable to this price, if it differs from the exchange rate applicable to the document as a whole. + 0..1 + Price + Pricing + Exchange Rate + Exchange Rate + Exchange Rate + + + + + + + + + + + ABIE + Price Extension. Details + A class to describe a price extension, calculated by multiplying the price per unit by the quantity of items. + Price Extension + + + + + + + + + BBIE + Price Extension. Amount + The amount of this price extension. + 1 + Price Extension + Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Price Extension. Tax Total + A total amount of taxes of a particular kind applicable to this price extension. + 0..n + Price Extension + Tax Total + Tax Total + Tax Total + + + + + + + + + + + ABIE + Price List. Details + A class to describe a price list. + Price List + + + + + + + + + BBIE + Price List. Identifier + An identifier for this price list. + 0..1 + Price List + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Price List. Status Code. Code + A code signifying whether this price list is an original, copy, revision, or cancellation. + 0..1 + Price List + Status Code + Code + Code. Type + new - announcement only , new and available , deleted - announcement only + + + + + + + + + ASBIE + Price List. Validity_ Period. Period + A period during which this price list is valid. + 0..n + Price List + Validity + Period + Period + Period + + + + + + + + + ASBIE + Price List. Previous_ Price List. Price List + The previous price list. + 0..1 + Price List + Previous + Price List + Price List + Price List + + + + + + + + + + + ABIE + Pricing Reference. Details + A reference to the basis for pricing. This may be based on a catalogue or a quoted amount from a price list and include some alternative pricing conditions. + Pricing Reference + + + + + + + + + ASBIE + Pricing Reference. Original_ Item Location Quantity. Item Location Quantity + An original set of location-specific properties (e.g., price and quantity) associated with this item. + 0..1 + Pricing Reference + Original + Item Location Quantity + Item Location Quantity + Item Location Quantity + + + + + + + + + ASBIE + Pricing Reference. Alternative Condition_ Price. Price + The price expressed in terms other than the actual price, e.g., the list price v. the contracted price, or the price in bags v. the price in kilos, or the list price in bags v. the contracted price in kilos. + 0..n + Pricing Reference + Alternative Condition + Price + Price + Price + + + + + + + + + + + ABIE + Process Justification. Details + A class to describe a justification for the choice of tendering process. + Process Justification + + + + + + + + + BBIE + Process Justification. Previous_ Cancellation Reason Code. Code + A code signifying the type of the previous tendering process (which is now being cancelled). + 0..1 + Process Justification + Previous + Cancellation Reason Code + Code + Code. Type + + + + + + + + + BBIE + Process Justification. Process_ Reason Code. Code + The reason why the contracting authority has followed a particular tendering procedure for the awarding of a contract, expressed as a code. + 0..1 + Process Justification + Process + Reason Code + Code + Code. Type + + + + + + + + + BBIE + Process Justification. Process_ Reason. Text + The reason why the contracting authority has followed a particular tendering procedure for the awarding of a contract, expressed as text. + 0..n + Process Justification + Process + Reason + Text + Text. Type + + + + + + + + + BBIE + Process Justification. Description. Text + Text providing justification for the selection of this process. + 0..n + Process Justification + Description + Text + Text. Type + + + + + + + + + + + ABIE + Procurement Project. Details + A class to describe a project to procure goods, works, or services. + Procurement Project + + + + + + + + + BBIE + Procurement Project. Identifier + An identifier for this procurement project. + 0..1 + Procurement Project + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Procurement Project. Name + A name of this procurement project. + 1..n + Procurement Project + Name + Name + Name. Type + + + + + + + + + BBIE + Procurement Project. Description. Text + Text describing this procurement project. + 0..n + Procurement Project + Description + Text + Text. Type + + + + + + + + + BBIE + Procurement Project. Procurement_ Type Code. Code + A code signifying the type of procurement project (e.g., goods, works, services). + 0..1 + Procurement Project + Procurement + Type Code + Code + Code. Type + + + + + + + + + BBIE + Procurement Project. Procurement Sub_ Type Code. Code + A code signifying the subcategory of the type of work for this project (e.g., land surveying, IT consulting). + 0..1 + Procurement Project + Procurement Sub + Type Code + Code + Code. Type + + + + + + + + + BBIE + Procurement Project. Quality Control Code. Code + The indication of whether or not the control quality is included in the works project. + 0..1 + Procurement Project + Quality Control Code + Code + Code. Type + + + + + + + + + BBIE + Procurement Project. Required_ Fee. Amount + The amount of the reimbursement fee for concession procurement projects. + 0..1 + Procurement Project + Required + Fee + Amount + Amount. Type + + + + + + + + + BBIE + Procurement Project. Fee_ Description. Text + Text describing the reimbursement fee for concession procurement projects. + 0..n + Procurement Project + Fee + Description + Text + Text. Type + + + + + + + + + BBIE + Procurement Project. Requested_ Delivery Date. Date + The requested delivery date for this procurement project. + 0..1 + Procurement Project + Requested + Delivery Date + Date + Date. Type + + + + + + + + + BBIE + Procurement Project. Estimated_ Overall Contract. Quantity + The estimated overall quantity for this procurement project. + 0..1 + Procurement Project + Estimated + Overall Contract + Quantity + Quantity. Type + + + + + + + + + BBIE + Procurement Project. Note. Text + Free-form text applying to the Procurement Project. This element may contain additional information about the lot/contract that is not contained explicitly in another structure. + 0..n + Procurement Project + Note + Text + Text. Type + + + + + + + + + ASBIE + Procurement Project. Requested Tender Total + Budget monetary amounts for the project as whole. + 0..1 + Procurement Project + Requested Tender Total + Requested Tender Total + Requested Tender Total + + + + + + + + + ASBIE + Procurement Project. Main_ Commodity Classification. Commodity Classification + An association to the main classification category for the deliverable requested. + 0..1 + Procurement Project + Main + Commodity Classification + Commodity Classification + Commodity Classification + + + + + + + + + ASBIE + Procurement Project. Additional_ Commodity Classification. Commodity Classification + An association to additional classification categories for the deliverable requested. + 0..n + Procurement Project + Additional + Commodity Classification + Commodity Classification + Commodity Classification + + + + + + + + + ASBIE + Procurement Project. Realized_ Location. Location + A place where this procurement project will be physically realized. + 0..n + Procurement Project + Realized + Location + Location + Location + + + + + + + + + ASBIE + Procurement Project. Planned_ Period. Period + The period during which this procurement project is planned to take place. + 0..1 + Procurement Project + Planned + Period + Period + Period + + + + + + + + + ASBIE + Procurement Project. Contract Extension + The contract extension for this tendering process. + 0..1 + Procurement Project + Contract Extension + Contract Extension + Contract Extension + + + + + + + + + ASBIE + Procurement Project. Request For Tender Line + A good or service this project is intended to procure. + 0..n + Procurement Project + Request For Tender Line + Request For Tender Line + Request For Tender Line + + + + + + + + + + + ABIE + Procurement Project Lot. Details + A class to describe one of the parts of a procurement project that is being subdivided to allow the contracting party to award different lots to different economic operators under different contracts. + Procurement Project Lot + + + + + + + + + BBIE + Procurement Project Lot. Identifier + An identifier for this procurement project lot. + 1 + Procurement Project Lot + Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Procurement Project Lot. Tendering Terms + Tendering terms for this procurement project lot. + 0..1 + Procurement Project Lot + Tendering Terms + Tendering Terms + Tendering Terms + + + + + + + + + ASBIE + Procurement Project Lot. Procurement Project + A description of the procurement project to be divided. + 0..1 + Procurement Project Lot + Procurement Project + Procurement Project + Procurement Project + + + + + + + + + + + ABIE + Project Reference. Details + A class to define a reference to a procurement project. + Project Reference + + + + + + + + + BBIE + Project Reference. Identifier + An identifier for the referenced project. + 1 + Project Reference + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Project Reference. UUID. Identifier + A universally unique identifier for the referenced project. + 0..1 + Project Reference + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Project Reference. Issue Date. Date + The date on which the referenced project was issued. + 0..1 + Project Reference + Issue Date + Date + Date. Type + + + + + + + + + ASBIE + Project Reference. Work Phase Reference + A specific phase of work in the referenced project. + 0..n + Project Reference + Work Phase Reference + Work Phase Reference + Work Phase Reference + + + + + + + + + + + ABIE + Promotional Event. Details + Agree can be renamed as PromotionalEvents + Promotional Event + + + + + + + + + BBIE + Promotional Event. Promotional Event Type Code. Code + A code signifying the type of this promotional event. Examples can be: Holiday, Seasonal Event, Store Closing, Trade Item Introduction + 1 + Promotional Event + Promotional Event Type Code + Code + Code. Type + + + + + + + + + BBIE + Promotional Event. Submission. Date + The date on which a proposal for this promotional event was submitted. + 0..1 + Promotional Event + Submission + Date + Date. Type + + + + + + + + + BBIE + Promotional Event. First Shipment Availibility Date. Date + The first day that products will be available to ship from buyer to seller if the proposal for this promotional event is accepted. + 0..1 + Promotional Event + First Shipment Availibility Date + Date + Date. Type + + + + + + + + + BBIE + Promotional Event. Latest_ Proposal Acceptance Date. Date + The deadline for acceptance of this promotional event. + 0..1 + Promotional Event + Latest + Proposal Acceptance Date + Date + Date. Type + + + + + + + + + ASBIE + Promotional Event. Promotional Specification + A specification for a promotional event. + 1..n + Promotional Event + Promotional Specification + Promotional Specification + Promotional Specification + + + + + + + + + + + ABIE + Promotional Event Line Item. Details + A class to describe a line item associated with a promotional event. + Promotional Event Line Item + + + + + + + + + BBIE + Promotional Event Line Item. Amount + The amount associated with this promotional event line item. + 1 + Promotional Event Line Item + Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Promotional Event Line Item. Event Line Item + A line item describing the expected impacts associated with this promotional event for a specific product at a specific location. + 1 + Promotional Event Line Item + Event Line Item + Event Line Item + Event Line Item + + + + + + + + + + + ABIE + Promotional Specification. Details + A class to describe a promotional event as a set of item locations that share a set of promotional tactics. + Promotional Specification + + + + + + + + + BBIE + Promotional Specification. Specification Identifier. Identifier + An identifier for this promotional specification. + 0..1 + Promotional Specification + Specification Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Promotional Specification. Promotional Event Line Item + A line item for a promotional event involving a specific product at a specific location; it describes the expected impacts associated with the event and specifies the promotional price of the item." + 1..n + Promotional Specification + Promotional Event Line Item + Promotional Event Line Item + Promotional Event Line Item + + + + + + + + + ASBIE + Promotional Specification. Event Tactic + An event tactic associated with this promotion. + 0..n + Promotional Specification + Event Tactic + Event Tactic + Event Tactic + + + + + + + + + + + ABIE + Qualification Resolution. Details + A class to describe the acceptance or rejection of an economic operator in a tendering process. + Qualification Resolution + + + + + + + + + BBIE + Qualification Resolution. Admission Code. Code + An indicator that the economic operator has been accepted into the tendering process (true) or rejected from the tendering process (false). + 1 + Qualification Resolution + Admission Code + Code + Code. Type + + + + + + + + + BBIE + Qualification Resolution. Exclusion Reason. Text + Text describing a reason for an exclusion from the tendering process. + 0..n + Qualification Resolution + Exclusion Reason + Text + Text. Type + + + + + + + + + BBIE + Qualification Resolution. Resolution. Text + Text describing this qualification resolution. + 0..n + Qualification Resolution + Resolution + Text + Text. Type + + + + + + + + + BBIE + Qualification Resolution. Resolution Date. Date + The date on which this qualification resolution was formalized. + 1 + Qualification Resolution + Resolution Date + Date + Date. Type + + + + + + + + + BBIE + Qualification Resolution. Resolution Time. Time + The time at which this qualification resolution was formalized. + 0..1 + Qualification Resolution + Resolution Time + Time + Time. Type + + + + + + + + + ASBIE + Qualification Resolution. Procurement Project Lot + The Procurement project lot to which this tenderer is accepted or rejected. + 0..1 + Qualification Resolution + Procurement Project Lot + Procurement Project Lot + Procurement Project Lot + + + + + + + + + + + ABIE + Qualifying Party. Details + A class to describe the distinctive features or characteristics qualifying an economic operator to be a party in a tendering process (e.g., number of employees, number of operating units, type of business, technical and financial capabilities, completed projects). + Qualifying Party + + + + + + + + + BBIE + Qualifying Party. Participation. Percent + The extent to which this party is expected to participate in the tendering process, expressed as a percentage. + 0..1 + Qualifying Party + Participation + Percent + Percent. Type + + + + + + + + + BBIE + Qualifying Party. Personal Situation. Text + Text describing the personal situation of the qualifying party. + 0..n + Qualifying Party + Personal Situation + Text + Text. Type + + + + + + + + + BBIE + Qualifying Party. Operating Years. Quantity + The number of years that this qualifying party has been in operation. + 0..1 + Qualifying Party + Operating Years + Quantity + Quantity. Type + + + + + + + + + BBIE + Qualifying Party. Employee. Quantity + The number of people employed by this qualifying party. + 0..1 + Qualifying Party + Employee + Quantity + Quantity. Type + + + + + + + + + BBIE + Qualifying Party. Business Classification Evidence. Identifier + An identifier for an item of evidence to support the classification of this qualifying party. + 0..1 + Qualifying Party + Business Classification Evidence + Identifier + Identifier. Type + + + + + + + + + BBIE + Qualifying Party. Business Identity Evidence. Identifier + An identifier for an item of evidence to support the business identity of this qualifying party. + 0..1 + Qualifying Party + Business Identity Evidence + Identifier + Identifier. Type + + + + + + + + + BBIE + Qualifying Party. Tenderer Role Code. Code + A code stating the Tenderer Role. + 0..1 + Qualifying Party + Tenderer Role Code + Code + Code. Type + + + + + + + + + ASBIE + Qualifying Party. Business_ Classification Scheme. Classification Scheme + The classification scheme used for the business profile. + 0..1 + Qualifying Party + Business + Classification Scheme + Classification Scheme + Classification Scheme + + + + + + + + + ASBIE + Qualifying Party. Technical_ Capability. Capability + A technical capability of this qualifying party. + 0..n + Qualifying Party + Technical + Capability + Capability + Capability + + + + + + + + + ASBIE + Qualifying Party. Financial_ Capability. Capability + A financial capability of this qualifying party. + 0..n + Qualifying Party + Financial + Capability + Capability + Capability + + + + + + + + + ASBIE + Qualifying Party. Completed Task + A former task completed by this qualifying party. + 0..n + Qualifying Party + Completed Task + Completed Task + Completed Task + + + + + + + + + ASBIE + Qualifying Party. Declaration + A declaration by this qualifying party. of certain characteristics or capabilities in fulfilment of requirements specified in a call for tenders. + 0..n + Qualifying Party + Declaration + Declaration + Declaration + + + + + + + + + ASBIE + Qualifying Party. Party + The qualifying party itself. + 0..1 + Qualifying Party + Party + Party + Party + + + + + + + + + ASBIE + Qualifying Party. Economic Operator Role + A class to describe the tenderer contracting role. + 0..1 + Qualifying Party + Economic Operator Role + Economic Operator Role + Economic Operator Role + + + + + + + + + + + ABIE + Quotation Line. Details + A class to define a line in a Quotation. + Quotation Line + + + + + + + + + BBIE + Quotation Line. Identifier + An identifier for this quotation line. + 0..1 + Quotation Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Quotation Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Quotation Line + Note + Text + Text. Type + + + + + + + + + BBIE + Quotation Line. Quantity + The quantity of the item quoted. + 0..1 + Quotation Line + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Quotation Line. Line Extension Amount. Amount + The total amount for this quotation line, including allowance charges but net of taxes. + 0..1 + Quotation Line + Line Extension Amount + Amount + Amount. Type + + + + + + + + + BBIE + Quotation Line. Total_ Tax Amount. Amount + The total tax amount for this quotation line. + 0..1 + Quotation Line + Total + Tax Amount + Amount + Amount. Type + + + + + + + + + BBIE + Quotation Line. Request For Quotation Line Identifier. Identifier + An identifier for the line in the Request for Quotation to which this line is a response. + 0..1 + Quotation Line + Request For Quotation Line Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Quotation Line. Document Reference + A reference to a document associated with this quotation line. + 0..n + Quotation Line + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Quotation Line. Line Item + The item that is the subject of this quotation line. + 1 + Quotation Line + Line Item + Line Item + Line Item + + + + + + + + + ASBIE + Quotation Line. Seller Proposed Substitute_ Line Item. Line Item + An item proposed by the seller as a substitute for the item that is the subject of this quotation line. + 0..n + Quotation Line + Seller Proposed Substitute + Line Item + Line Item + Line Item + + + + + + + + + ASBIE + Quotation Line. Alternative_ Line Item. Line Item + An item proposed by the seller as an alternative to the item that is the subject of this quotation line. + 0..n + Quotation Line + Alternative + Line Item + Line Item + Line Item + + + + + + + + + ASBIE + Quotation Line. Request_ Line Reference. Line Reference + A reference to the line in the Request for Quotation to which this line is a response. + 0..1 + Quotation Line + Request + Line Reference + Line Reference + Line Reference + + + + + + + + + + + ABIE + Rail Transport. Details + A class defining details about a train wagon used as a means of transport. + Rail Transport + + + + + + + + + BBIE + Rail Transport. Train Identifier. Identifier + An identifier for the train used as the means of transport. + 1 + Rail Transport + Train Identifier + Identifier + Identifier. Type + Train Number (WCO ID 167) + + + + + + + + + BBIE + Rail Transport. Rail Car Identifier. Identifier + An identifier for the rail car on the train used as the means of transport. + 0..1 + Rail Transport + Rail Car Identifier + Identifier + Identifier. Type + + + + + + + + + + + ABIE + Receipt Line. Details + A class to define a line in a Receipt Advice. + Receipt Line + + + + + + + + + BBIE + Receipt Line. Identifier + An identifier for this receipt line. + 1 + Receipt Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Receipt Line. UUID. Identifier + A universally unique identifier for this receipt line. + 0..1 + Receipt Line + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Receipt Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Receipt Line + Note + Text + Text. Type + + + + + + + + + BBIE + Receipt Line. Received_ Quantity. Quantity + The quantity received. + 0..1 + Receipt Line + Received + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Receipt Line. Short_ Quantity. Quantity + The quantity received short; the difference between the quantity reported despatched and the quantity actually received. + 0..1 + Receipt Line + Short + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Receipt Line. Shortage Action Code. Code + A code signifying the action that the delivery party wishes the despatch party to take as the result of a shortage. + 0..1 + Receipt Line + Shortage Action Code + Code + Code. Type + + + + + + + + + BBIE + Receipt Line. Rejected_ Quantity. Quantity + The quantity rejected. + 0..1 + Receipt Line + Rejected + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Receipt Line. Reject Reason Code. Code + The reason for a rejection, expressed as a code. + 0..1 + Receipt Line + Reject Reason Code + Code + Code. Type + + + + + + + + + BBIE + Receipt Line. Reject_ Reason. Text + The reason for a rejection, expressed as text. + 0..n + Receipt Line + Reject + Reason + Text + Text. Type + + + + + + + + + BBIE + Receipt Line. Reject Action Code. Code + A code signifying the action that the delivery party wishes the despatch party to take as the result of a rejection. + 0..1 + Receipt Line + Reject Action Code + Code + Code. Type + + + + + + + + + BBIE + Receipt Line. Quantity Discrepancy Code. Code + A code signifying the type of a discrepancy in quantity. + 0..1 + Receipt Line + Quantity Discrepancy Code + Code + Code. Type + + + + + + + + + BBIE + Receipt Line. Oversupply_ Quantity. Quantity + The quantity over-supplied, i.e., the quantity over and above the quantity ordered. + 0..1 + Receipt Line + Oversupply + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Receipt Line. Received_ Date. Date + The date on which the goods or services were received. + 0..1 + Receipt Line + Received + Date + Date + Date. Type + + + + + + + + + BBIE + Receipt Line. Timing Complaint Code. Code + A complaint about the timing of delivery, expressed as a code. + 0..1 + Receipt Line + Timing Complaint Code + Code + Code. Type + + + + + + + + + BBIE + Receipt Line. Timing Complaint. Text + A complaint about the timing of delivery, expressed as text. + 0..1 + Receipt Line + Timing Complaint + Text + Text. Type + + + + + + + + + ASBIE + Receipt Line. Order Line Reference + A reference to the order line associated with this receipt line. + 0..1 + Receipt Line + Order Line Reference + Order Line Reference + Order Line Reference + + + + + + + + + ASBIE + Receipt Line. Despatch_ Line Reference. Line Reference + A reference to a despatch line associated with this receipt line. + 0..n + Receipt Line + Despatch + Line Reference + Line Reference + Line Reference + + + + + + + + + ASBIE + Receipt Line. Document Reference + A reference to a document associated with this receipt line. + 0..n + Receipt Line + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Receipt Line. Item + An item associated with this receipt line. + 0..n + Receipt Line + Item + Item + Item + + + + + + + + + ASBIE + Receipt Line. Shipment + A shipment associated with this receipt line. + 0..n + Receipt Line + Shipment + Shipment + Shipment + + + + + + + + + + + ABIE + Regulation. Details + A class to describe a regulation. + Regulation + Points to regulation at atomic level + + + + + + + + + BBIE + Regulation. Name + A name for this regulation. + 1 + Regulation + Name + Name + Name. Type + + + + + + + + + BBIE + Regulation. Legal Reference. Text + Text describing a legal reference. + 0..1 + Regulation + Legal Reference + Text + Text. Type + Art. 45 2 b + + + + + + + + + BBIE + Regulation. Ontology URI. Identifier + The Uniform Resource Identifier (URI) of an ontology related to this regulation. + 0..1 + Regulation + Ontology URI + Identifier + Identifier. Type + + + + + + + + + + + ABIE + Related Item. Details + A class to describe the relationship to an item different from the item associated with the item line in which RelatedItem is used. + Related Item + + + + + + + + + BBIE + Related Item. Identifier + An identifier for the related item. + 0..1 + Related Item + Identifier + Identifier + Identifier. Type + First , Second + + + + + + + + + BBIE + Related Item. Quantity + The quantity that applies to the relationship. + 0..1 + Related Item + Quantity + Quantity + Quantity. Type + 6 , 10mg per Kilo + + + + + + + + + BBIE + Related Item. Description. Text + Text describing the relationship. + 0..n + Related Item + Description + Text + Text. Type + If used in wet conditions or extreme environments + + + + + + + + + + + ABIE + Reminder Line. Details + A class to define a line in a Reminder document. + Reminder Line + + + + + + + + + BBIE + Reminder Line. Identifier + An identifier for this reminder line. + 1 + Reminder Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Reminder Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Reminder Line + Note + Text + Text. Type + + + + + + + + + BBIE + Reminder Line. UUID. Identifier + A universally unique identifier for this reminder line. + 0..1 + Reminder Line + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Reminder Line. Balance Brought Forward_ Indicator. Indicator + An indication that this reminder line contains a balance brought forward (true) or does not (false). + 0..1 + Reminder Line + Balance Brought Forward + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Reminder Line. Debit_ Line Amount. Amount + The amount debited on this reminder line. + 0..1 + Reminder Line + Debit + Line Amount + Amount + Amount. Type + + + + + + + + + BBIE + Reminder Line. Credit_ Line Amount. Amount + The amount credited on this reminder line. + 0..1 + Reminder Line + Credit + Line Amount + Amount + Amount. Type + + + + + + + + + BBIE + Reminder Line. Accounting Cost Code. Code + The buyer's accounting cost centre for this reminder line, expressed as a code. + 0..1 + Reminder Line + Accounting Cost Code + Code + Code. Type + + + + + + + + + BBIE + Reminder Line. Accounting Cost. Text + The buyer's accounting cost centre for this reminder line, expressed as text. + 0..1 + Reminder Line + Accounting Cost + Text + Text. Type + + + + + + + + + BBIE + Reminder Line. Penalty_ Surcharge Percent. Percent + The penalty for late payment, expressed as a percentage. + 0..1 + Reminder Line + Penalty + Surcharge Percent + Percent + Percent. Type + + + + + + + + + BBIE + Reminder Line. Amount + The amount on this reminder line. + 0..1 + Reminder Line + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Reminder Line. Payment Purpose Code. Code + A code signifying the business purpose for this payment. + 0..1 + Reminder Line + Payment Purpose Code + Code + Code. Type + + + + + + + + + ASBIE + Reminder Line. Reminder_ Period. Period + A period to which this reminder line applies. + 0..n + Reminder Line + Reminder + Period + Period + Period + + + + + + + + + ASBIE + Reminder Line. Billing Reference + A reference to a billing document associated with this reminder line. + 0..n + Reminder Line + Billing Reference + Billing Reference + Billing Reference + + + + + + + + + ASBIE + Reminder Line. Exchange Rate + The rate of exchange between the currency of the Reminder and the currency of the document described in the BillingReference. + 0..1 + Reminder Line + Exchange Rate + Exchange Rate + Exchange Rate + + + + + + + + + + + ABIE + Remittance Advice Line. Details + A class to define a line in a Remittance Advice. + Remittance Advice Line + + + + + + + + + BBIE + Remittance Advice Line. Identifier + An identifier for this remittance advice line. + 1 + Remittance Advice Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Remittance Advice Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Remittance Advice Line + Note + Text + Text. Type + + + + + + + + + BBIE + Remittance Advice Line. UUID. Identifier + A universally unique identifier for this remittance advice line. + 0..1 + Remittance Advice Line + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Remittance Advice Line. Debit_ Line Amount. Amount + The amount debited on this remittance advice line. + 0..1 + Remittance Advice Line + Debit + Line Amount + Amount + Amount. Type + + + + + + + + + BBIE + Remittance Advice Line. Credit_ Line Amount. Amount + The amount credited on this remittance advice line. + 0..1 + Remittance Advice Line + Credit + Line Amount + Amount + Amount. Type + + + + + + + + + BBIE + Remittance Advice Line. Balance Amount. Amount + The monetary balance associated with this remittance advice line. + 0..1 + Remittance Advice Line + Balance Amount + Amount + Amount. Type + + + + + + + + + BBIE + Remittance Advice Line. Payment Purpose Code. Code + A code signifying the business purpose for this payment. + 0..1 + Remittance Advice Line + Payment Purpose Code + Code + Code. Type + + + + + + + + + BBIE + Remittance Advice Line. Invoicing Party_ Reference. Text + A reference to the order for payment used by the invoicing party. This may have been requested of the payer by the payee to accompany its remittance. + 0..1 + Remittance Advice Line + Invoicing Party + Reference + Text + Text. Type + + + + + + + + + ASBIE + Remittance Advice Line. Accounting_ Supplier Party. Supplier Party + The Accounting Supplier Party related to the remittance information reported on this Remittance Advice Line. + 0..1 + Remittance Advice Line + Accounting + Supplier Party + Supplier Party + Supplier Party + + + + + + + + + ASBIE + Remittance Advice Line. Accounting_ Customer Party. Customer Party + The Accounting Customer Party related to the remittance information reported on this Remittance Advice Line. + 0..1 + Remittance Advice Line + Accounting + Customer Party + Customer Party + Customer Party + + + + + + + + + ASBIE + Remittance Advice Line. Buyer_ Customer Party. Customer Party + The buyer associated with this remittance advice line. + 0..1 + Remittance Advice Line + Buyer + Customer Party + Customer Party + Customer Party + + + + + + + + + ASBIE + Remittance Advice Line. Seller_ Supplier Party. Supplier Party + The seller/supplier associated with this remittance advice line. + 0..1 + Remittance Advice Line + Seller + Supplier Party + Supplier Party + Supplier Party + + + + + + + + + ASBIE + Remittance Advice Line. Originator_ Customer Party. Customer Party + The originating party. + 0..1 + Remittance Advice Line + Originator + Customer Party + Customer Party + Customer Party + + + + + + + + + ASBIE + Remittance Advice Line. Payee_ Party. Party + The payee. + 0..1 + Remittance Advice Line + Payee + Party + Party + Party + + + + + + + + + ASBIE + Remittance Advice Line. Invoice_ Period. Period + An invoice period to which this remittance advice line applies. + 0..n + Remittance Advice Line + Invoice + Period + Period + Period + + + + + + + + + ASBIE + Remittance Advice Line. Billing Reference + A reference to a billing document associated with this remittance advice line. + 0..n + Remittance Advice Line + Billing Reference + Billing Reference + Billing Reference + + + + + + + + + ASBIE + Remittance Advice Line. Document Reference + A reference to a document associated with this remittance advice line. + 0..n + Remittance Advice Line + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Remittance Advice Line. Exchange Rate + The rate of exchange between the currency of the Remittance Advice and the currency of the document described in the BillingReference. + 0..1 + Remittance Advice Line + Exchange Rate + Exchange Rate + Exchange Rate + + + + + + + + + + + ABIE + Renewal. Details + A class to describe the renewal of a commercial arrangement, such as a contract or licence fee. + Renewal + + + + + + + + + BBIE + Renewal. Amount + The monetary amount of this renewal. + 0..1 + Renewal + Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Renewal. Period + The period for which the arrangement is now valid + 0..1 + Renewal + Period + Period + Period + + + + + + + + + + + ABIE + Request For Quotation Line. Details + A class to define a line in a Request for Quotation. + Request For Quotation Line + + + + + + + + + BBIE + Request For Quotation Line. Identifier + An identifier for this line in the request for quotation. + 0..1 + Request For Quotation Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Request For Quotation Line. UUID. Identifier + A universally unique identifier for this line in the request for quotation. + 0..1 + Request For Quotation Line + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Request For Quotation Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Request For Quotation Line + Note + Text + Text. Type + + + + + + + + + BBIE + Request For Quotation Line. Optional_ Line Item Indicator. Indicator + An indication whether this line is optional (true) or not (false) for purposes of this request for quotation. + 0..1 + Request For Quotation Line + Optional + Line Item Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Request For Quotation Line. Privacy Code. Code + A code signifying the level of confidentiality of this request for quotation line. + 0..1 + Request For Quotation Line + Privacy Code + Code + Code. Type + + + + + + + + + BBIE + Request For Quotation Line. Security Classification Code. Code + A code signifying the security classification of this request for quotation line. + 0..1 + Request For Quotation Line + Security Classification Code + Code + Code. Type + + + + + + + + + ASBIE + Request For Quotation Line. Document Reference + A document associated with this request for quotation line. + 0..n + Request For Quotation Line + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Request For Quotation Line. Line Item + A description of the item for which a quotation is requested. + 1 + Request For Quotation Line + Line Item + Line Item + Line Item + + + + + + + + + + + ABIE + Request For Tender Line. Details + A class to define a line in a Request for Tender describing an item of goods or a service solicited in the Request for Tender. + Request For Tender Line + + + + + + + + + BBIE + Request For Tender Line. Identifier + An identifier for this request for tender line. + 0..1 + Request For Tender Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Request For Tender Line. UUID. Identifier + A universally unique identifier for this request for tender line. + 0..1 + Request For Tender Line + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Request For Tender Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Request For Tender Line + Note + Text + Text. Type + + + + + + + + + BBIE + Request For Tender Line. Quantity + The quantity of the item for which a tender is requested in this line. + 0..1 + Request For Tender Line + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Request For Tender Line. Minimum_ Quantity. Quantity + The minimum quantity of the item associated with this request for tender line. + 0..1 + Request For Tender Line + Minimum + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Request For Tender Line. Maximum_ Quantity. Quantity + The maximum quantity of the item associated with this request for tender line. + 0..1 + Request For Tender Line + Maximum + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Request For Tender Line. Tax Included_ Indicator. Indicator + Indicates whether the amounts are taxes included (true) or not (false). + 0..1 + Request For Tender Line + Tax Included + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Request For Tender Line. Minimum_ Amount. Amount + The minimum amount allowed for this deliverable. + 0..1 + Request For Tender Line + Minimum + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Request For Tender Line. Maximum_ Amount. Amount + The maximum amount allowed for this deliverable. + 0..1 + Request For Tender Line + Maximum + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Request For Tender Line. Estimated_ Amount. Amount + The estimated total amount of the deliverable. + 0..1 + Request For Tender Line + Estimated + Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Request For Tender Line. Document Reference + A reference to a document associated with this request for tender line. + 0..n + Request For Tender Line + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Request For Tender Line. Delivery_ Period. Period + An applicable period for the deliverable or set of deliverables in this tendering process. + 0..n + Request For Tender Line + Delivery + Period + Period + Period + + + + + + + + + ASBIE + Request For Tender Line. Required_ Item Location Quantity. Item Location Quantity + Properties of the item specified in this request for tender line that are dependent on location and quantity. + 0..n + Request For Tender Line + Required + Item Location Quantity + Item Location Quantity + Item Location Quantity + + + + + + + + + ASBIE + Request For Tender Line. Warranty Validity_ Period. Period + The period during which a warranty to be associated with this request for tender line must apply. + 0..1 + Request For Tender Line + Warranty Validity + Period + Period + Period + + + + + + + + + ASBIE + Request For Tender Line. Item + An item for which a tender is requested. + 1 + Request For Tender Line + Item + Item + Item + + + + + + + + + ASBIE + Request For Tender Line. Sub_ Request For Tender Line. Request For Tender Line + A subsidiary request for tender line. + 0..n + Request For Tender Line + Sub + Request For Tender Line + Request For Tender Line + Request For Tender Line + + + + + + + + + + + ABIE + Requested Tender Total. Details + A class defining budgeted monetary amounts. + Requested Tender Total + + + + + + + + + BBIE + Requested Tender Total. Estimated_ Overall Contract. Amount + The estimated overall monetary amount of a contract. + 0..1 + Requested Tender Total + Estimated + Overall Contract + Amount + Amount. Type + + + + + + + + + BBIE + Requested Tender Total. Total_ Amount. Amount + The monetary amount of the total budget including net amount, taxes, and material and instalment costs. + 0..1 + Requested Tender Total + Total + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Requested Tender Total. Tax Included_ Indicator. Indicator + Indicates whether the amounts are taxes included (true) or not (false). + 0..1 + Requested Tender Total + Tax Included + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Requested Tender Total. Minimum_ Amount. Amount + The minimum monetary amount of the budget. + 0..1 + Requested Tender Total + Minimum + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Requested Tender Total. Maximum_ Amount. Amount + The maximum monetary amount of the budget. + 0..1 + Requested Tender Total + Maximum + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Requested Tender Total. Monetary Scope. Text + A description of the monetary scope of the budget. + 0..n + Requested Tender Total + Monetary Scope + Text + Text. Type + + + + + + + + + BBIE + Requested Tender Total. Average_ Subsequent Contract. Amount + The average monetary amount for the subsequent contracts following this budget amount. + 0..1 + Requested Tender Total + Average + Subsequent Contract + Amount + Amount. Type + + + + + + + + + ASBIE + Requested Tender Total. Applicable_ Tax Category. Tax Category + Describes the categories of taxes that apply to the budget amount. + 0..n + Requested Tender Total + Applicable + Tax Category + Tax Category + Tax Category + + + + + + + + + + + ABIE + Response. Details + A class to describe an application-level response to a document. + Response + + + + + + + + + BBIE + Response. Reference. Identifier + An identifier for the section (or line) of the document to which this response applies. + 0..1 + Response + Reference + Identifier + Identifier. Type + + + + + + + + + BBIE + Response. Response Code. Code + A code signifying the type of response. + 0..1 + Response + Response Code + Code + Code. Type + + + + + + + + + BBIE + Response. Description. Text + Text describing this response. + 0..n + Response + Description + Text + Text. Type + + + + + + + + + BBIE + Response. Effective Date. Date + The date upon which this response is valid. + 0..1 + Response + Effective Date + Date + Date. Type + + + + + + + + + BBIE + Response. Effective Time. Time + The time at which this response is valid. + 0..1 + Response + Effective Time + Time + Time. Type + + + + + + + + + ASBIE + Response. Status + A status report associated with this response. + 0..n + Response + Status + Status + Status + + + + + + + + + + + ABIE + Result Of Verification. Details + A class to describe the result of an attempt to verify a signature. + Result Of Verification + + + + + + + + + BBIE + Result Of Verification. Validator. Identifier + An identifier for the organization, person, service, or server that verified the signature. + 0..1 + Result Of Verification + Validator + Identifier + Identifier. Type + + + + + + + + + BBIE + Result Of Verification. Validation_ Result Code. Code + A code signifying the result of the verification. + 0..1 + Result Of Verification + Validation + Result Code + Code + Code. Type + + + + + + + + + BBIE + Result Of Verification. Validation Date. Date + The date upon which verification took place. + 0..1 + Result Of Verification + Validation Date + Date + Date. Type + + + + + + + + + BBIE + Result Of Verification. Validation Time. Time + The time at which verification took place. + 0..1 + Result Of Verification + Validation Time + Time + Time. Type + + + + + + + + + BBIE + Result Of Verification. Validate_ Process. Text + The verification process. + 0..1 + Result Of Verification + Validate + Process + Text + Text. Type + + + + + + + + + BBIE + Result Of Verification. Validate_ Tool. Text + The tool used to verify the signature. + 0..1 + Result Of Verification + Validate + Tool + Text + Text. Type + + + + + + + + + BBIE + Result Of Verification. Validate_ Tool Version. Text + The version of the tool used to verify the signature. + 0..1 + Result Of Verification + Validate + Tool Version + Text + Text. Type + + + + + + + + + ASBIE + Result Of Verification. Signatory_ Party. Party + The signing party. + 0..1 + Result Of Verification + Signatory + Party + Party + Party + + + + + + + + + + + ABIE + Retail Planned Impact. Details + A class to describe a planned effect of a retail event (e.g., a promotion or a change in inventory policy) upon supply or demand. + Retail Planned Impact + + + + + + + + + BBIE + Retail Planned Impact. Amount + Estimated monetary value of the planned event as an impact + 1 + Retail Planned Impact + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Retail Planned Impact. Forecast_ Purpose Code. Code + It will have impact on either Sales forecast or Order Forecast + 1 + Retail Planned Impact + Forecast + Purpose Code + Code + Code. Type + + + + + + + + + BBIE + Retail Planned Impact. Forecast Type Code. Code + A code signifying the type of forecast. Examples of values are: BASE PROMOTIONAL SEASONAL TOTAL + 1 + Retail Planned Impact + Forecast Type Code + Code + Code. Type + + + + + + + + + ASBIE + Retail Planned Impact. Period + The period to which this impact applies. + 0..1 + Retail Planned Impact + Period + Period + Period + + + + + + + + + + + ABIE + Road Transport. Details + A class for identifying a vehicle used for road transport. + Road Transport + + + + + + + + + BBIE + Road Transport. License Plate Identifier. Identifier + The license plate identifier of this vehicle. + 1 + Road Transport + License Plate Identifier + Identifier + Identifier. Type + Vehicle registration number (WCO ID 167) + + + + + + + + + + + ABIE + Sales Item. Details + A class to describe information related to an item in a sales context + Sales Item + + + + + + + + + BBIE + Sales Item. Quantity + The quantity the given information are related to + 1 + Sales Item + Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Sales Item. Activity Property + A class to describe the activity (for example "sales", "movement", ...) related to the item. + 0..n + Sales Item + Activity Property + Activity Property + Activity Property + + + + + + + + + ASBIE + Sales Item. Tax Exclusive_ Price. Price + A price for this sales item, exclusive of tax. + 0..n + Sales Item + Tax Exclusive + Price + Price + Price + + + + + + + + + ASBIE + Sales Item. Tax Inclusive_ Price. Price + A price for this sales item, including tax. + 0..n + Sales Item + Tax Inclusive + Price + Price + Price + + + + + + + + + ASBIE + Sales Item. Item + The sales item itself. + 1 + Sales Item + Item + Item + Item + + + + + + + + + + + ABIE + Secondary Hazard. Details + A class to describe a secondary hazard associated with a hazardous item. + Secondary Hazard + + + + + + + + + BBIE + Secondary Hazard. Identifier + An identifier for this secondary hazard. + 0..1 + Secondary Hazard + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Secondary Hazard. Placard Notation. Text + Text of the placard notation corresponding to the hazard class of this secondary hazard. Can also be the hazard identification number of the orange placard (upper part) required on the means of transport. + 0..1 + Secondary Hazard + Placard Notation + Text + Text. Type + 5.1 + + + + + + + + + BBIE + Secondary Hazard. Placard Endorsement. Text + Text of the placard endorsement for this secondary hazard that is to be shown on the shipping papers for a hazardous item. Can also be used for the number of the orange placard (lower part) required on the means of transport. + 0..1 + Secondary Hazard + Placard Endorsement + Text + Text. Type + 2 + + + + + + + + + BBIE + Secondary Hazard. Emergency Procedures Code. Code + A code signifying the emergency procedures for this secondary hazard. + 0..1 + Secondary Hazard + Emergency Procedures Code + Code + Code. Type + EMG code, EMS Page Number + + + + + + + + + BBIE + Secondary Hazard. Extension. Text + Additional information about the hazardous substance, which can be used (for example) to specify the type of regulatory requirements that apply to this secondary hazard. + 0..n + Secondary Hazard + Extension + Text + Text. Type + N.O.S. or a Waste Characteristics Code in conjunction with an EPA Waste Stream code + + + + + + + + + + + ABIE + Service Frequency. Details + A class to specify which day of the week a transport service is operational. + Service Frequency + + + + + + + + + BBIE + Service Frequency. Week Day. Code + A day of the week, expressed as code. + 1 + Service Frequency + Week Day + Code + Week Day + Week Day_ Code. Type + + + + + + + + + + + ABIE + Service Provider Party. Details + A class to describe a party contracting to provide services, such as transportation, finance, etc. + Service Provider Party + + + + + + + + + BBIE + Service Provider Party. Identifier + An identifier for this service provider. + 0..1 + Service Provider Party + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Service Provider Party. Service Type Code. Code + The type of service provided, expressed as a code. + 0..1 + Service Provider Party + Service Type Code + Code + Code. Type + + + + + + + + + BBIE + Service Provider Party. Service Type. Text + The type of service provided, expressed as text. + 0..n + Service Provider Party + Service Type + Text + Text. Type + + + + + + + + + ASBIE + Service Provider Party. Party + The party providing the service. + 1 + Service Provider Party + Party + Party + Party + + + + + + + + + ASBIE + Service Provider Party. Seller_ Contact. Contact + The contact for the service provider. + 0..1 + Service Provider Party + Seller + Contact + Contact + Contact + + + + + + + + + + + ABIE + Shareholder Party. Details + A class to describe a shareholder party. + Shareholder Party + + + + + + + + + BBIE + Shareholder Party. Partecipation. Percent + The shareholder participation, expressed as a percentage. + 0..1 + Shareholder Party + Partecipation + Percent + Percent. Type + + + + + + + + + ASBIE + Shareholder Party. Party + The shareholder party. + 0..1 + Shareholder Party + Party + Party + Party + + + + + + + + + + + ABIE + Shipment. Details + A class defining an identifiable collection of one or more goods items to be transported between the seller party and the buyer party. This information may be defined within a commercial contract. A shipment can be transported in different consignments (e.g., split for logistical purposes). + Shipment + + + + + + + + + BBIE + Shipment. Identifier + An identifier for this shipment. + 1 + Shipment + Identifier + Identifier + Identifier. Type + Waybill Number + + + + + + + + + BBIE + Shipment. Shipping Priority Level Code. Code + A code signifying the priority or level of service required for this shipment. + 0..1 + Shipment + Shipping Priority Level Code + Code + Code. Type + Service Level, Service Priority + + + + + + + + + BBIE + Shipment. Handling Code. Code + The handling required for this shipment, expressed as a code. + 0..1 + Shipment + Handling Code + Code + Code. Type + Special Handling + + + + + + + + + BBIE + Shipment. Handling_ Instructions. Text + The handling required for this shipment, expressed as text. + 0..n + Shipment + Handling + Instructions + Text + Text. Type + + + + + + + + + BBIE + Shipment. Information. Text + Free-form text pertinent to this shipment, conveying information that is not contained explicitly in other structures. + 0..n + Shipment + Information + Text + Text. Type + + + + + + + + + BBIE + Shipment. Gross_ Weight. Measure + The total gross weight of a shipment; the weight of the goods plus packaging plus transport equipment. + 0..1 + Shipment + Gross + Weight + Measure + Measure. Type + + + + + + + + + BBIE + Shipment. Net_ Weight. Measure + The net weight of this shipment, excluding packaging. + 0..1 + Shipment + Net + Weight + Measure + Measure. Type + + + + + + + + + BBIE + Shipment. Net Net_ Weight. Measure + The total net weight of this shipment, excluding packaging and transport equipment. + 0..1 + Shipment + Net Net + Weight + Measure + Measure. Type + + + + + + + + + BBIE + Shipment. Gross_ Volume. Measure + The total volume of the goods in this shipment, including packaging. + 0..1 + Shipment + Gross + Volume + Measure + Measure. Type + + + + + + + + + BBIE + Shipment. Net_ Volume. Measure + The total volume of the goods in this shipment, excluding packaging and transport equipment. + 0..1 + Shipment + Net + Volume + Measure + Measure. Type + + + + + + + + + BBIE + Shipment. Total_ Goods Item Quantity. Quantity + The total number of goods items in this shipment. + 0..1 + Shipment + Total + Goods Item Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Shipment. Total_ Transport Handling Unit Quantity. Quantity + The number of pieces of transport handling equipment (pallets, boxes, cases, etc.) in this shipment. + 0..1 + Shipment + Total + Transport Handling Unit Quantity + Quantity + Quantity. Type + Number of THUs + + + + + + + + + BBIE + Shipment. Insurance_ Value. Amount + The amount covered by insurance for this shipment. + 0..1 + Shipment + Insurance + Value + Amount + Amount. Type + Value Insured + + + + + + + + + BBIE + Shipment. Declared Customs_ Value. Amount + The total declared value for customs purposes of those goods in this shipment that are subject to the same customs procedure and have the same tariff/statistical heading, country information, and duty regime. + 0..1 + Shipment + Declared Customs + Value + Amount + Amount. Type + + + + + + + + + BBIE + Shipment. Declared For Carriage_ Value. Amount + The value of this shipment, declared by the shipper or his agent solely for the purpose of varying the carrier's level of liability from that provided in the contract of carriage, in case of loss or damage to goods or delayed delivery. + 0..1 + Shipment + Declared For Carriage + Value + Amount + Amount. Type + Declared value for carriage, Interest in delivery + + + + + + + + + BBIE + Shipment. Declared Statistics_ Value. Amount + The value, declared for statistical purposes, of those goods in this shipment that have the same statistical heading. + 0..1 + Shipment + Declared Statistics + Value + Amount + Amount. Type + Statistical Value + + + + + + + + + BBIE + Shipment. Free On Board_ Value. Amount + The monetary amount that has to be or has been paid as calculated under the applicable trade delivery. + 0..1 + Shipment + Free On Board + Value + Amount + Amount. Type + FOB Value + + + + + + + + + BBIE + Shipment. Special_ Instructions. Text + Special instructions relating to this shipment. + 0..n + Shipment + Special + Instructions + Text + Text. Type + + + + + + + + + BBIE + Shipment. Delivery_ Instructions. Text + Delivery instructions relating to this shipment. + 0..n + Shipment + Delivery + Instructions + Text + Text. Type + + + + + + + + + BBIE + Shipment. Split Consignment_ Indicator. Indicator + An indicator that the consignment has been split in transit (true) or not (false). + 0..1 + Shipment + Split Consignment + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Shipment. Consignment_ Quantity. Quantity + The total number of consignments within this shipment. + 0..1 + Shipment + Consignment + Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Shipment. Consignment + A consignment covering this shipment. + 0..n + Shipment + Consignment + Consignment + Consignment + + + + + + + + + ASBIE + Shipment. Goods Item + A goods item included in this shipment. + 0..n + Shipment + Goods Item + Goods Item + Goods Item + + + + + + + + + ASBIE + Shipment. Shipment Stage + A stage in the transport movement of this shipment. + 0..n + Shipment + Shipment Stage + Shipment Stage + Shipment Stage + + + + + + + + + ASBIE + Shipment. Delivery + The delivery of this shipment. + 0..1 + Shipment + Delivery + Delivery + Delivery + + + + + + + + + ASBIE + Shipment. Transport Handling Unit + A transport handling unit associated with this shipment. + 0..n + Shipment + Transport Handling Unit + Transport Handling Unit + Transport Handling Unit + + + + + + + + + ASBIE + Shipment. Return_ Address. Address + The address to which a shipment should be returned. + 0..1 + Shipment + Return + Address + Address + Address + + + + + + + + + ASBIE + Shipment. Origin_ Address. Address + The region in which the goods have been produced or manufactured, according to criteria laid down for the purposes of application of the customs tariff, or of quantitative restrictions, or of any other measure related to trade. + 0..1 + Shipment + Origin + Address + Address + Address + + + + + + + + + ASBIE + Shipment. First Arrival Port_ Location. Location + The first arrival location of a shipment. This would be a port for sea, an airport for air, a terminal for rail, or a border post for land crossing. + 0..1 + Shipment + First Arrival Port + Location + Location + Location + + + + + + + + + ASBIE + Shipment. Last Exit Port_ Location. Location + The final exporting location for a shipment. This would be a port for sea, an airport for air, a terminal for rail, or a border post for land crossing. + 0..1 + Shipment + Last Exit Port + Location + Location + Location + + + + + + + + + ASBIE + Shipment. Export_ Country. Country + The country from which the goods were originally exported, without any commercial transaction taking place in intermediate countries. + 0..1 + Shipment + Export + Country + Country + Country + Country of exportation (WCO ID 062) + + + + + + + + + ASBIE + Shipment. Freight_ Allowance Charge. Allowance Charge + A cost incurred by the shipper in moving goods, by whatever means, from one place to another under the terms of the contract of carriage. In addition to transport costs, this may include such elements as packing, documentation, loading, unloading, and insurance to the extent that they relate to the freight costs. + 0..n + Shipment + Freight + Allowance Charge + Allowance Charge + Allowance Charge + Freight Costs + + + + + + + + + + + ABIE + Shipment Stage. Details + A class to describe one stage of movement in a transport of goods. + Shipment Stage + + + + + + + + + BBIE + Shipment Stage. Identifier + An identifier for this shipment stage. + 0..1 + Shipment Stage + Identifier + Identifier + Identifier. Type + 1 , 2 , etc.. + + + + + + + + + BBIE + Shipment Stage. Transport Mode Code. Code + A code signifying the method of transport used for this shipment stage. + 0..1 + Shipment Stage + Transport Mode Code + Code + Transport Mode + Transport Mode_ Code. Type + + + + + + + + + BBIE + Shipment Stage. Transport Means Type Code. Code + A code signifying the kind of transport means (truck, vessel, etc.) used for this shipment stage. + 0..1 + Shipment Stage + Transport Means Type Code + Code + Code. Type + + + + + + + + + BBIE + Shipment Stage. Transit_ Direction Code. Code + A code signifying the direction of transit in this shipment stage. + 0..1 + Shipment Stage + Transit + Direction Code + Code + Code. Type + + + + + + + + + BBIE + Shipment Stage. Pre Carriage_ Indicator. Indicator + An indicator that this stage takes place before the main carriage of the shipment (true) or not (false). + 0..1 + Shipment Stage + Pre Carriage + Indicator + Indicator + Indicator. Type + Truck delivery to wharf + + + + + + + + + BBIE + Shipment Stage. On Carriage_ Indicator. Indicator + An indicator that this stage takes place after the main carriage of the shipment (true) or not (false). + 0..1 + Shipment Stage + On Carriage + Indicator + Indicator + Indicator. Type + Truck delivery from wharf + + + + + + + + + BBIE + Shipment Stage. Estimated_ Delivery Date. Date + The estimated date of delivery in this shipment stage. + 0..1 + Shipment Stage + Estimated + Delivery Date + Date + Date. Type + + + + + + + + + BBIE + Shipment Stage. Estimated_ Delivery Time. Time + The estimated time of delivery in this shipment stage. + 0..1 + Shipment Stage + Estimated + Delivery Time + Time + Time. Type + + + + + + + + + BBIE + Shipment Stage. Required_ Delivery Date. Date + The delivery date required by the buyer in this shipment stage. + 0..1 + Shipment Stage + Required + Delivery Date + Date + Date. Type + + + + + + + + + BBIE + Shipment Stage. Required_ Delivery Time. Time + The delivery time required by the buyer in this shipment stage. + 0..1 + Shipment Stage + Required + Delivery Time + Time + Time. Type + + + + + + + + + BBIE + Shipment Stage. Loading_ Sequence Identifier. Identifier + An identifier for the loading sequence (of consignments) associated with this shipment stage. + 0..1 + Shipment Stage + Loading + Sequence Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Shipment Stage. Successive_ Sequence Identifier. Identifier + Identifies the successive loading sequence (of consignments) associated with a shipment stage. + 0..1 + Shipment Stage + Successive + Sequence Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Shipment Stage. Instructions. Text + Text of instructions applicable to a shipment stage. + 0..n + Shipment Stage + Instructions + Text + Text. Type + + + + + + + + + BBIE + Shipment Stage. Demurrage_ Instructions. Text + Text of instructions relating to demurrage (the case in which a vessel is prevented from loading or discharging cargo within the stipulated laytime). + 0..n + Shipment Stage + Demurrage + Instructions + Text + Text. Type + + + + + + + + + BBIE + Shipment Stage. Crew Quantity. Quantity + The total number of crew aboard a transport means. + 0..1 + Shipment Stage + Crew Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Shipment Stage. Passenger Quantity. Quantity + The total number of passengers aboard a transport means. + 0..1 + Shipment Stage + Passenger Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Shipment Stage. Transit_ Period. Period + The period during which this shipment stage actually took place. + 0..1 + Shipment Stage + Transit + Period + Period + Period + + + + + + + + + ASBIE + Shipment Stage. Carrier_ Party. Party + A carrier party responsible for this shipment stage. + 0..n + Shipment Stage + Carrier + Party + Party + Party + + + + + + + + + ASBIE + Shipment Stage. Transport Means + The means of transport used in this shipment stage. + 0..1 + Shipment Stage + Transport Means + Transport Means + Transport Means + + + + + + + + + ASBIE + Shipment Stage. Loading Port_ Location. Location + The location of loading for a shipment stage. + 0..1 + Shipment Stage + Loading Port + Location + Location + Location + + + + + + + + + ASBIE + Shipment Stage. Unloading Port_ Location. Location + The location of unloading for a shipment stage. + 0..1 + Shipment Stage + Unloading Port + Location + Location + Location + + + + + + + + + ASBIE + Shipment Stage. Transship Port_ Location. Location + The location of transshipment relating to a shipment stage. + 0..1 + Shipment Stage + Transship Port + Location + Location + Location + + + + + + + + + ASBIE + Shipment Stage. Loading_ Transport Event. Transport Event + The loading of goods in this shipment stage. + 0..1 + Shipment Stage + Loading + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Examination_ Transport Event. Transport Event + The examination of shipments in this shipment stage. + 0..1 + Shipment Stage + Examination + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Availability_ Transport Event. Transport Event + The making available of shipments in this shipment stage. + 0..1 + Shipment Stage + Availability + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Exportation_ Transport Event. Transport Event + The export event associated with this shipment stage. + 0..1 + Shipment Stage + Exportation + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Discharge_ Transport Event. Transport Event + The discharge event associated with this shipment stage. + 0..1 + Shipment Stage + Discharge + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Warehousing_ Transport Event. Transport Event + The warehousing event associated with this shipment stage. + 0..1 + Shipment Stage + Warehousing + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Takeover_ Transport Event. Transport Event + The receiver's takeover of the goods in this shipment stage. + 0..1 + Shipment Stage + Takeover + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Optional Takeover_ Transport Event. Transport Event + The optional takeover of the goods in this shipment stage. + 0..1 + Shipment Stage + Optional Takeover + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Dropoff_ Transport Event. Transport Event + The dropping off of goods in this shipment stage. + 0..1 + Shipment Stage + Dropoff + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Actual Pickup_ Transport Event. Transport Event + The pickup of goods in this shipment stage. + 0..1 + Shipment Stage + Actual Pickup + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Delivery_ Transport Event. Transport Event + The delivery of goods in this shipment stage. + 0..1 + Shipment Stage + Delivery + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Receipt_ Transport Event. Transport Event + The receipt of goods in this shipment stage. + 0..1 + Shipment Stage + Receipt + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Storage_ Transport Event. Transport Event + The storage of goods in this shipment stage. + 0..1 + Shipment Stage + Storage + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Acceptance_ Transport Event. Transport Event + The acceptance of goods in this shipment stage. + 0..1 + Shipment Stage + Acceptance + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Terminal Operator_ Party. Party + A terminal operator associated with this shipment stage. + 0..1 + Shipment Stage + Terminal Operator + Party + Party + Party + + + + + + + + + ASBIE + Shipment Stage. Customs Agent_ Party. Party + A customs agent associated with this shipment stage. + 0..1 + Shipment Stage + Customs Agent + Party + Party + Party + + + + + + + + + ASBIE + Shipment Stage. Estimated Transit_ Period. Period + The estimated transit period of this shipment stage. + 0..1 + Shipment Stage + Estimated Transit + Period + Period + Period + + + + + + + + + ASBIE + Shipment Stage. Freight_ Allowance Charge. Allowance Charge + A freight allowance charge for this shipment stage. + 0..n + Shipment Stage + Freight + Allowance Charge + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Shipment Stage. Freight Charge_ Location. Location + The location associated with a freight charge related to this shipment stage. + 0..1 + Shipment Stage + Freight Charge + Location + Location + Location + + + + + + + + + ASBIE + Shipment Stage. Detention_ Transport Event. Transport Event + The detention of a transport means during loading and unloading operations. + 0..n + Shipment Stage + Detention + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Requested Departure_ Transport Event. Transport Event + The departure requested by the party requesting a transportation service. + 0..1 + Shipment Stage + Requested Departure + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Requested Arrival_ Transport Event. Transport Event + The arrival requested by the party requesting a transportation service. + 0..1 + Shipment Stage + Requested Arrival + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Requested Waypoint_ Transport Event. Transport Event + A waypoint requested by the party requesting a transportation service. + 0..n + Shipment Stage + Requested Waypoint + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Planned Departure_ Transport Event. Transport Event + The departure planned by the party providing a transportation service. + 0..1 + Shipment Stage + Planned Departure + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Planned Arrival_ Transport Event. Transport Event + The arrival planned by the party providing a transportation service. + 0..1 + Shipment Stage + Planned Arrival + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Planned Waypoint_ Transport Event. Transport Event + A waypoint planned by the party providing a transportation service. + 0..n + Shipment Stage + Planned Waypoint + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Actual Departure_ Transport Event. Transport Event + The actual departure from a specific location during a transportation service. + 0..1 + Shipment Stage + Actual Departure + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Actual Waypoint_ Transport Event. Transport Event + The location of an actual waypoint during a transportation service. + 0..1 + Shipment Stage + Actual Waypoint + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Actual Arrival_ Transport Event. Transport Event + The actual arrival at a specific location during a transportation service. + 0..1 + Shipment Stage + Actual Arrival + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Transport Event + A significant occurrence in the course of this shipment of goods. + 0..n + Shipment Stage + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Estimated Departure_ Transport Event. Transport Event + Describes an estimated departure at a location during a transport service. + 0..1 + Shipment Stage + Estimated Departure + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Estimated Arrival_ Transport Event. Transport Event + Describes an estimated arrival at a location during a transport service. + 0..1 + Shipment Stage + Estimated Arrival + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Passenger_ Person. Person + A person who travels in a conveyance without participating in its operation. + 0..n + Shipment Stage + Passenger + Person + Person + Person + + + + + + + + + ASBIE + Shipment Stage. Driver_ Person. Person + Describes a person responsible for driving the transport means. + 0..n + Shipment Stage + Driver + Person + Person + Person + + + + + + + + + ASBIE + Shipment Stage. Reporting_ Person. Person + Describes a person being responsible for providing the required administrative reporting relating to a transport. + 0..1 + Shipment Stage + Reporting + Person + Person + Person + + + + + + + + + ASBIE + Shipment Stage. Crew Member_ Person. Person + A person operating or serving aboard a transport means. + 0..n + Shipment Stage + Crew Member + Person + Person + Person + + + + + + + + + ASBIE + Shipment Stage. Security Officer_ Person. Person + The person on board the vessel, accountable to the master, designated by the company as responsible for the security of the ship, including implementation and maintenance of the ship security plan and for the liaison with the company security officer and the port facility security officers. + 0..1 + Shipment Stage + Security Officer + Person + Person + Person + + + + + + + + + ASBIE + Shipment Stage. Master_ Person. Person + The person responsible for the ship's safe and efficient operation, including cargo operations, navigation, crew management and for ensuring that the vessel complies with local and international laws, as well as company and flag state policies. + 0..1 + Shipment Stage + Master + Person + Person + Person + + + + + + + + + ASBIE + Shipment Stage. Ships Surgeon_ Person. Person + The person responsible for the health of the people aboard a ship at sea. + 0..1 + Shipment Stage + Ships Surgeon + Person + Person + Person + + + + + + + + + + + ABIE + Signature. Details + A class to define a signature. + Signature + + + + + + + + + BBIE + Signature. Identifier + An identifier for this signature. + 1 + Signature + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Signature. Note. Text + Free-form text conveying information that is not contained explicitly in other structures; in particular, information regarding the circumstances in which the signature is being used. + 0..n + Signature + Note + Text + Text. Type + + + + + + + + + BBIE + Signature. Validation Date. Date + The date upon which this signature was verified. + 0..1 + Signature + Validation Date + Date + Date. Type + + + + + + + + + BBIE + Signature. Validation Time. Time + The time at which this signature was verified. + 0..1 + Signature + Validation Time + Time + Time. Type + + + + + + + + + BBIE + Signature. Validator. Identifier + An identifier for the organization, person, service, or server that verified this signature. + 0..1 + Signature + Validator + Identifier + Identifier. Type + + + + + + + + + BBIE + Signature. Canonicalization Method. Text + The method used to perform XML canonicalization of this signature. + 0..1 + Signature + Canonicalization Method + Text + Text. Type + + + + + + + + + BBIE + Signature. Signature Method. Text + Text describing the method of signature. + 0..1 + Signature + Signature Method + Text + Text. Type + + + + + + + + + ASBIE + Signature. Signatory_ Party. Party + The signing party. + 0..1 + Signature + Signatory + Party + Party + Party + + + + + + + + + ASBIE + Signature. Digital Signature_ Attachment. Attachment + The actual encoded signature (e.g., in XMLDsig format). + 0..1 + Signature + Digital Signature + Attachment + Attachment + Attachment + + + + + + + + + ASBIE + Signature. Original_ Document Reference. Document Reference + A reference to the document that the signature applies to. For evidentiary purposes, this may be the document image that the signatory party saw when applying their signature. + 0..1 + Signature + Original + Document Reference + Document Reference + Document Reference + + + + + + + + + + + ABIE + Statement Line. Details + A class to define a line in a Statement of account. + Statement Line + + + + + + + + + BBIE + Statement Line. Identifier + An identifier for this statement line. + 1 + Statement Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Statement Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Statement Line + Note + Text + Text. Type + + + + + + + + + BBIE + Statement Line. UUID. Identifier + A universally unique identifier for this statement line. + 0..1 + Statement Line + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Statement Line. Balance Brought Forward_ Indicator. Indicator + An indication that this statement line contains an outstanding balance from the previous bill(s) (true) or does not (false). + 0..1 + Statement Line + Balance Brought Forward + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Statement Line. Debit_ Line Amount. Amount + The amount debited on this statement line. + 0..1 + Statement Line + Debit + Line Amount + Amount + Amount. Type + + + + + + + + + BBIE + Statement Line. Credit_ Line Amount. Amount + The amount credited on this statement line. + 0..1 + Statement Line + Credit + Line Amount + Amount + Amount. Type + + + + + + + + + BBIE + Statement Line. Balance Amount. Amount + The balance amount on this statement line. + 0..1 + Statement Line + Balance Amount + Amount + Amount. Type + + + + + + + + + BBIE + Statement Line. Payment Purpose Code. Code + A code signifying the business purpose for this payment. + 0..1 + Statement Line + Payment Purpose Code + Code + Code. Type + + + + + + + + + ASBIE + Statement Line. Payment Means + A means of payment associated with this statement line. + 0..1 + Statement Line + Payment Means + Payment Means + Payment Means + + + + + + + + + ASBIE + Statement Line. Payment Terms + A specification of payment terms associated with this statement line. + 0..n + Statement Line + Payment Terms + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Statement Line. Buyer_ Customer Party. Customer Party + The buyer associated with this statement line. + 0..1 + Statement Line + Buyer + Customer Party + Customer Party + Customer Party + + + + + + + + + ASBIE + Statement Line. Seller_ Supplier Party. Supplier Party + The seller/supplier associated with this statement line. + 0..1 + Statement Line + Seller + Supplier Party + Supplier Party + Supplier Party + + + + + + + + + ASBIE + Statement Line. Originator_ Customer Party. Customer Party + The originating party. + 0..1 + Statement Line + Originator + Customer Party + Customer Party + Customer Party + + + + + + + + + ASBIE + Statement Line. Accounting_ Customer Party. Customer Party + The Accounting Customer Party related to the statement information reported on this Statement Line. + 0..1 + Statement Line + Accounting + Customer Party + Customer Party + Customer Party + + + + + + + + + ASBIE + Statement Line. Accounting_ Supplier Party. Supplier Party + The Accounting Supplier Party related to the statement information reported on this Statement Line. + 0..1 + Statement Line + Accounting + Supplier Party + Supplier Party + Supplier Party + + + + + + + + + ASBIE + Statement Line. Payee_ Party. Party + The payee. + 0..1 + Statement Line + Payee + Party + Party + Party + + + + + + + + + ASBIE + Statement Line. Invoice_ Period. Period + An invoice period to which this statement line applies. + 0..n + Statement Line + Invoice + Period + Period + Period + + + + + + + + + ASBIE + Statement Line. Billing Reference + A reference to a billing document associated with this statement line. + 0..n + Statement Line + Billing Reference + Billing Reference + Billing Reference + + + + + + + + + ASBIE + Statement Line. Document Reference + A reference to a document associated with this statement line. + 0..n + Statement Line + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Statement Line. Exchange Rate + The rate of exchange between the currency of the Statement and the currency of the document described in the BillingReference. + 0..1 + Statement Line + Exchange Rate + Exchange Rate + Exchange Rate + + + + + + + + + ASBIE + Statement Line. Allowance Charge + A charge or discount price component associated with this statement line. + 0..n + Statement Line + Allowance Charge + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Statement Line. Collected_ Payment. Payment + A collected payment. + 0..n + Statement Line + Collected + Payment + Payment + Payment + + + + + + + + + + + ABIE + Status. Details + A class to describe the condition or position of an object. + Status + + + + + + + + + BBIE + Status. Condition Code. Code + Specifies the status condition of the related object. + 0..1 + Status + Condition Code + Code + Code. Type + + + + + + + + + BBIE + Status. Reference Date. Date + The reference date for this status. + 0..1 + Status + Reference Date + Date + Date. Type + + + + + + + + + BBIE + Status. Reference Time. Time + The reference time for this status. + 0..1 + Status + Reference Time + Time + Time. Type + + + + + + + + + BBIE + Status. Description. Text + Text describing this status. + 0..n + Status + Description + Text + Text. Type + + + + + + + + + BBIE + Status. Status Reason Code. Code + The reason for this status condition or position, expressed as a code. + 0..1 + Status + Status Reason Code + Code + Code. Type + + + + + + + + + BBIE + Status. Status_ Reason. Text + The reason for this status condition or position, expressed as text. + 0..n + Status + Status + Reason + Text + Text. Type + + + + + + + + + BBIE + Status. Sequence Identifier. Identifier + A sequence identifier for this status. + 0..1 + Status + Sequence Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Status. Text + Provides any textual information related to this status. + 0..n + Status + Text + Text + Text. Type + + + + + + + + + BBIE + Status. Indication_ Indicator. Indicator + Specifies an indicator relevant to a specific status. + 0..1 + Status + Indication + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Status. Percent + A percentage meaningful in the context of this status. + 0..1 + Status + Percent + Percent + Percent. Type + + + + + + + + + BBIE + Status. Reliability Percent. Percent + The reliability of this status, expressed as a percentage. + 0..1 + Status + Reliability Percent + Percent + Percent. Type + + + + + + + + + ASBIE + Status. Condition + Measurements that quantify the condition of the objects covered by the status. + 0..n + Status + Condition + Condition + Condition + + + + + + + + + + + ABIE + Stock Availability Report Line. Details + A class to define a line in a Stock Availability Report describing the availability of an item of sale. + Stock Availability Report Line + + + + + + + + + BBIE + Stock Availability Report Line. Identifier + An identifier for this stock availability line. + 1 + Stock Availability Report Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Stock Availability Report Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Stock Availability Report Line + Note + Text + Text. Type + + + + + + + + + BBIE + Stock Availability Report Line. Quantity + The quantity of the item currently in stock. + 1 + Stock Availability Report Line + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Stock Availability Report Line. Value. Amount + The monetary value of the quantity of the item currently in stock. + 0..1 + Stock Availability Report Line + Value + Amount + Amount. Type + + + + + + + + + BBIE + Stock Availability Report Line. Availability Date. Date + The date from which the item will be available. A date identical to or earlier than the IssueDate of the Stock Availability Report means that the item is available now + 0..1 + Stock Availability Report Line + Availability Date + Date + Date. Type + + + + + + + + + BBIE + Stock Availability Report Line. Availability Status Code. Code + A code signifying the level of availability of the item. + 0..1 + Stock Availability Report Line + Availability Status Code + Code + Code. Type + + + + + + + + + ASBIE + Stock Availability Report Line. Item + The item associated with this stock availability report line. + 1 + Stock Availability Report Line + Item + Item + Item + + + + + + + + + + + ABIE + Stowage. Details + A class to describe a location on board a means of transport where specified goods or transport equipment have been stowed or are to be stowed. + Stowage + + + + + + + + + BBIE + Stowage. Location Identifier. Identifier + An identifier for the location. + 0..1 + Stowage + Location Identifier + Identifier + Identifier. Type + Cell Location, coded + + + + + + + + + BBIE + Stowage. Location. Text + Text describing the location. + 0..n + Stowage + Location + Text + Text. Type + Cell Location + + + + + + + + + ASBIE + Stowage. Measurement_ Dimension. Dimension + A measurable dimension (length, mass, weight, or volume) of this stowage. + 0..n + Stowage + Measurement + Dimension + Dimension + Dimension + + + + + + + + + + + ABIE + Subcontract Terms. Details + A class to describe subcontract terms for a tendering process. + Subcontract Terms + + + + + + + + + BBIE + Subcontract Terms. Rate + MF: I agree with the query. Rate? + 0..1 + Subcontract Terms + Rate + Rate + Rate. Type + + + + + + + + + BBIE + Subcontract Terms. Unknown_ Price. Indicator + An indicator that the subcontract price is known (true) or not (false). + 0..1 + Subcontract Terms + Unknown + Price + Indicator + Indicator. Type + + + + + + + + + BBIE + Subcontract Terms. Description. Text + Text describing the subcontract terms. + 0..n + Subcontract Terms + Description + Text + Text. Type + + + + + + + + + BBIE + Subcontract Terms. Amount + The monetary amount assigned to the subcontracted task. + 0..1 + Subcontract Terms + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Subcontract Terms. Subcontracting Conditions Code. Code + A code specifying the conditions for subcontracting. + 0..1 + Subcontract Terms + Subcontracting Conditions Code + Code + Code. Type + + + + + + + + + BBIE + Subcontract Terms. Maximum_ Percent. Percent + The maximum percentage allowed to be subcontracted. + 0..1 + Subcontract Terms + Maximum + Percent + Percent + Percent. Type + + + + + + + + + BBIE + Subcontract Terms. Minimum_ Percent. Percent + The minimum percentage allowed to be subcontracted. + 0..1 + Subcontract Terms + Minimum + Percent + Percent + Percent. Type + + + + + + + + + + + ABIE + Subscriber Consumption. Details + The consumption for a specific party for given consumption point provided by a numbers of suppliers. An enterprise can have one utility statement for several parties (e.g. a ministry of defence receiving a telephone bill). In this way each subscriber consumption represent a sub utility statement. + Subscriber Consumption + + + + + + + + + BBIE + Subscriber Consumption. Consumption Identifier. Identifier + The identifier tor this specification. + 0..1 + Subscriber Consumption + Consumption Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Subscriber Consumption. Specification Type Code. Code + The code which specifies the type of this specification, e.g. an on account specification or the yearly specification. + 0..1 + Subscriber Consumption + Specification Type Code + Code + Code. Type + + + + + + + + + BBIE + Subscriber Consumption. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Subscriber Consumption + Note + Text + Text. Type + This is how we have calculating your yearly statement + + + + + + + + + BBIE + Subscriber Consumption. Total Metered Quantity. Quantity + The total quantity consumed, as calculated from meter readings. + 0..1 + Subscriber Consumption + Total Metered Quantity + Quantity + Quantity. Type + 2000.0 + + + + + + + + + ASBIE + Subscriber Consumption. Subscriber_ Party. Party + The party subscribing to the utility. + 0..1 + Subscriber Consumption + Subscriber + Party + Party + Party + + + + + + + + + ASBIE + Subscriber Consumption. Utility_ Consumption Point. Consumption Point + The point at which the utility is consumed. + 1 + Subscriber Consumption + Utility + Consumption Point + Consumption Point + Consumption Point + + + + + + + + + ASBIE + Subscriber Consumption. On Account Payment + The planned prepayments (on account) regarding this subscription. + 0..n + Subscriber Consumption + On Account Payment + On Account Payment + On Account Payment + + + + + + + + + ASBIE + Subscriber Consumption. Consumption + The consumption in case the consumption is from one and only one supplier. + 0..1 + Subscriber Consumption + Consumption + Consumption + Consumption + + + + + + + + + ASBIE + Subscriber Consumption. Supplier Consumption + The consumption in case the consumption is from more than one supplier. + 0..n + Subscriber Consumption + Supplier Consumption + Supplier Consumption + Supplier Consumption + + + + + + + + + + + ABIE + Supplier Consumption. Details + The consumption in case the consumption is for one and only one supplier. + Supplier Consumption + + + + + + + + + BBIE + Supplier Consumption. Description. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Supplier Consumption + Description + Text + Text. Type + This is what you pay for electricity to DONG Energy North Utility + + + + + + + + + ASBIE + Supplier Consumption. Utility Supplier_ Party. Party + The party supplying the utility. + 0..1 + Supplier Consumption + Utility Supplier + Party + Party + Party + + + + + + + + + ASBIE + Supplier Consumption. Utility Customer_ Party. Party + The utility customer. + 0..1 + Supplier Consumption + Utility Customer + Party + Party + Party + + + + + + + + + ASBIE + Supplier Consumption. Consumption + The consumption regarding this supplier + 1 + Supplier Consumption + Consumption + Consumption + Consumption + + + + + + + + + ASBIE + Supplier Consumption. Contract + A contract setting forth conditions regulating the consumption. + 0..1 + Supplier Consumption + Contract + Contract + Contract + + + + + + + + + ASBIE + Supplier Consumption. Consumption Line + The consumption of a utility product. + 1..n + Supplier Consumption + Consumption Line + Consumption Line + Consumption Line + + + + + + + + + + + ABIE + Supplier Party. Details + A class to describe a supplier party. + Supplier Party + + + + + + + + + BBIE + Supplier Party. Customer Assigned_ Account Identifier. Identifier + An identifier for this supplier party, assigned by the customer. + 0..1 + Supplier Party + Customer Assigned + Account Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Supplier Party. Additional_ Account Identifier. Identifier + An additional identifier for this supplier party. + 0..n + Supplier Party + Additional + Account Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Supplier Party. Data Sending Capability. Text + Text describing the supplier's ability to send invoice data via a purchase card provider (e.g., VISA, MasterCard, American Express). + 0..1 + Supplier Party + Data Sending Capability + Text + Text. Type + + + + + + + + + ASBIE + Supplier Party. Party + The supplier party itself. + 0..1 + Supplier Party + Party + Party + Party + + + + + + + + + ASBIE + Supplier Party. Despatch_ Contact. Contact + A contact at this supplier party for despatches (pickups). + 0..1 + Supplier Party + Despatch + Contact + Contact + Contact + + + + + + + + + ASBIE + Supplier Party. Accounting_ Contact. Contact + A contact at this supplier party for accounting. + 0..1 + Supplier Party + Accounting + Contact + Contact + Contact + + + + + + + + + ASBIE + Supplier Party. Seller_ Contact. Contact + The primary contact for this supplier party. + 0..1 + Supplier Party + Seller + Contact + Contact + Contact + + + + + + + + + + + ABIE + Tax Category. Details + A class to describe one of the tax categories within a taxation scheme (e.g., High Rate VAT, Low Rate VAT). + Tax Category + + + + + + + + + BBIE + Tax Category. Identifier + An identifier for this tax category. + 0..1 + Tax Category + Identifier + Identifier + Identifier. Type + http://www.unece.org/uncefact/codelist/standard/UNECE_DutyorTaxorFeeCategoryCode_D09B.xsd + + + + + + + + + BBIE + Tax Category. Name + The name of this tax category. + 0..1 + Tax Category + Name + Name + Name. Type + Luxury Goods , Wine Equalization , Exempt + + + + + + + + + BBIE + Tax Category. Percent + The tax rate for this category, expressed as a percentage. + 0..1 + Tax Category + Percent + Percent + Percent. Type + + + + + + + + + BBIE + Tax Category. Base Unit Measure. Measure + A Unit of Measures used as the basic for the tax calculation applied at a certain rate per unit. + 0..1 + Tax Category + Base Unit Measure + Measure + Measure. Type + + + + + + + + + BBIE + Tax Category. Per Unit_ Amount. Amount + Where a tax is applied at a certain rate per unit, the rate per unit applied. + 0..1 + Tax Category + Per Unit + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Tax Category. Tax Exemption Reason Code. Code + The reason for tax being exempted, expressed as a code. + 0..1 + Tax Category + Tax Exemption Reason Code + Code + Code. Type + http://www.unece.org/uncefact/codelist/standard/UNECE_DutyTaxFeeTypeCode_D09B.xsd + + + + + + + + + BBIE + Tax Category. Tax Exemption Reason. Text + The reason for tax being exempted, expressed as text. + 0..n + Tax Category + Tax Exemption Reason + Text + Text. Type + + + + + + + + + BBIE + Tax Category. Tier Range. Text + Where a tax is tiered, the range of taxable amounts that determines the rate of tax applicable to this tax category. + 0..1 + Tax Category + Tier Range + Text + Text. Type + + + + + + + + + BBIE + Tax Category. Tier Rate. Percent + Where a tax is tiered, the tax rate that applies within the specified range of taxable amounts for this tax category. + 0..1 + Tax Category + Tier Rate + Percent + Percent. Type + + + + + + + + + ASBIE + Tax Category. Tax Scheme + The taxation scheme within which this tax category is defined. + 1 + Tax Category + Tax Scheme + Tax Scheme + Tax Scheme + + + + + + + + + + + ABIE + Tax Scheme. Details + A class to describe a taxation scheme (e.g., VAT, State tax, County tax). + Tax Scheme + + + + + + + + + BBIE + Tax Scheme. Identifier + An identifier for this taxation scheme. + 0..1 + Tax Scheme + Identifier + Identifier + Identifier. Type + http://www.unece.org/uncefact/codelist/standard/EDIFICASEU_TaxExemptionReason_D09B.xsd + + + + + + + + + BBIE + Tax Scheme. Name + The name of this taxation scheme. + 0..1 + Tax Scheme + Name + Name + Name. Type + Value Added Tax , Wholesale Tax , Sales Tax , State Tax + + + + + + + + + BBIE + Tax Scheme. Tax Type Code. Code + A code signifying the type of tax. + 0..1 + Tax Scheme + Tax Type Code + Code + Code. Type + Consumption , Sales + + + + + + + + + BBIE + Tax Scheme. Currency Code. Code + A code signifying the currency in which the tax is collected and reported. + 0..1 + Tax Scheme + Currency Code + Code + Currency + Currency_ Code. Type + + + + + + + + + ASBIE + Tax Scheme. Jurisdiction Region_ Address. Address + A geographic area in which this taxation scheme applies. + 0..n + Tax Scheme + Jurisdiction Region + Address + Address + Address + + + + + + + + + + + ABIE + Tax Subtotal. Details + A class to define the subtotal for a particular tax category within a particular taxation scheme, such as standard rate within VAT. + Tax Subtotal + + + + + + + + + BBIE + Tax Subtotal. Taxable_ Amount. Amount + The net amount to which the tax percent (rate) is applied to calculate the tax amount. + 0..1 + Tax Subtotal + Taxable + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Tax Subtotal. Tax Amount. Amount + The amount of this tax subtotal. + 1 + Tax Subtotal + Tax Amount + Amount + Amount. Type + + + + + + + + + BBIE + Tax Subtotal. Calculation Sequence. Numeric + The number of this tax subtotal in the sequence of subtotals corresponding to the order in which multiple taxes are applied. If all taxes are applied to the same taxable amount (i.e., their order of application is inconsequential), then CalculationSequenceNumeric is 1 for all tax subtotals applied to a given amount. + 0..1 + Tax Subtotal + Calculation Sequence + Numeric + Numeric. Type + + + + + + + + + BBIE + Tax Subtotal. Transaction Currency_ Tax Amount. Amount + The amount of this tax subtotal, expressed in the currency used for invoicing. + 0..1 + Tax Subtotal + Transaction Currency + Tax Amount + Amount + Amount. Type + + + + + + + + + BBIE + Tax Subtotal. Percent + The tax rate of the tax category applied to this tax subtotal, expressed as a percentage. + 0..1 + Tax Subtotal + Percent + Percent + Percent. Type + + + + + + + + + BBIE + Tax Subtotal. Base Unit Measure. Measure + The unit of measure on which the tax calculation is based + 0..1 + Tax Subtotal + Base Unit Measure + Measure + Measure. Type + + + + + + + + + BBIE + Tax Subtotal. Per Unit_ Amount. Amount + Where a tax is applied at a certain rate per unit, the rate per unit applied. + 0..1 + Tax Subtotal + Per Unit + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Tax Subtotal. Tier Range. Text + Where a tax is tiered, the range of taxable amounts that determines the rate of tax applicable to this tax subtotal. + 0..1 + Tax Subtotal + Tier Range + Text + Text. Type + + + + + + + + + BBIE + Tax Subtotal. Tier Rate. Percent + Where a tax is tiered, the tax rate that applies within a specified range of taxable amounts for this tax subtotal. + 0..1 + Tax Subtotal + Tier Rate + Percent + Percent. Type + + + + + + + + + ASBIE + Tax Subtotal. Tax Category + The tax category applicable to this subtotal. + 1 + Tax Subtotal + Tax Category + Tax Category + Tax Category + + + + + + + + + + + ABIE + Tax Total. Details + A class to describe the total tax for a particular taxation scheme. + Tax Total + + + + + + + + + BBIE + Tax Total. Tax Amount. Amount + The total tax amount for a particular taxation scheme, e.g., VAT; the sum of the tax subtotals for each tax category within the taxation scheme. + 1 + Tax Total + Tax Amount + Amount + Amount. Type + + + + + + + + + BBIE + Tax Total. Rounding Amount. Amount + The rounding amount (positive or negative) added to the calculated tax total to produce the rounded TaxAmount. + 0..1 + Tax Total + Rounding Amount + Amount + Amount. Type + + + + + + + + + BBIE + Tax Total. Tax Evidence_ Indicator. Indicator + An indicator that this total is recognized as legal evidence for taxation purposes (true) or not (false). + 0..1 + Tax Total + Tax Evidence + Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Tax Total. Tax Included_ Indicator. Indicator + An indicator that tax is included in the calculation (true) or not (false). + 0..1 + Tax Total + Tax Included + Indicator + Indicator + Indicator. Type + + + + + + + + + ASBIE + Tax Total. Tax Subtotal + One of the subtotals the sum of which equals the total tax amount for a particular taxation scheme. + 0..n + Tax Total + Tax Subtotal + Tax Subtotal + Tax Subtotal + + + + + + + + + + + ABIE + Telecommunications Service. Details + A class to describe a telecommunications service (e.g., a telephone call or a video on demand service). + Telecommunications Service + + + + + + + + + BBIE + Telecommunications Service. Identifier + An identifier for this telecommunications service. + 0..1 + Telecommunications Service + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Telecommunications Service. Call_ Date. Date + In the case of a telephone call, the date of the call. + 1 + Telecommunications Service + Call + Date + Date + Date. Type + 2008-01-01 + + + + + + + + + BBIE + Telecommunications Service. Call_ Time. Time + In the case of a telephone call, the time of the call. + 1 + Telecommunications Service + Call + Time + Time + Time. Type + 00:01:00 + + + + + + + + + BBIE + Telecommunications Service. Service Number Called. Text + In the case of a telephone call, the phone number called. + 1 + Telecommunications Service + Service Number Called + Text + Text. Type + 12345679 + + + + + + + + + BBIE + Telecommunications Service. Telecommunications Service Category. Text + The telecommunications category, expressed as text. + 0..1 + Telecommunications Service + Telecommunications Service Category + Text + Text. Type + Subscription + + + + + + + + + BBIE + Telecommunications Service. Telecommunications Service Category Code. Code + The telecommunications category, expressed as a code. + 0..1 + Telecommunications Service + Telecommunications Service Category Code + Code + Code. Type + Subscription + + + + + + + + + BBIE + Telecommunications Service. Movie Title. Text + The title of a movie delivered via this telecommunications service. + 0..1 + Telecommunications Service + Movie Title + Text + Text. Type + The Matrix + + + + + + + + + BBIE + Telecommunications Service. Roaming Partner Name. Name + Statement of the roaming partner name. + 0..1 + Telecommunications Service + Roaming Partner Name + Name + Name. Type + + + + + + + + + BBIE + Telecommunications Service. Pay Per View. Text + A pay-per-view delivered via this telecommunications service. + 0..1 + Telecommunications Service + Pay Per View + Text + Text. Type + + + + + + + + + BBIE + Telecommunications Service. Quantity + The number of calls. + 0..1 + Telecommunications Service + Quantity + Quantity + Quantity. Type + 5761 + + + + + + + + + BBIE + Telecommunications Service. Telecommunications Service Call. Text + The telecommunications call described as a text + 0..1 + Telecommunications Service + Telecommunications Service Call + Text + Text. Type + CallAttempt + + + + + + + + + BBIE + Telecommunications Service. Telecommunications Service Call Code. Code + The telecommunications call described as a code + 0..1 + Telecommunications Service + Telecommunications Service Call Code + Code + Code. Type + CallAttempt + + + + + + + + + BBIE + Telecommunications Service. Call Base_ Amount. Amount + The amount to be payed as the base for one call + 0..1 + Telecommunications Service + Call Base + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Telecommunications Service. Call Extension_ Amount. Amount + The amount to be payed for the call + 0..1 + Telecommunications Service + Call Extension + Amount + Amount + Amount. Type + 542.44 + + + + + + + + + ASBIE + Telecommunications Service. Price + The price for using the telecommunication service + 0..1 + Telecommunications Service + Price + Price + Price + + + + + + + + + ASBIE + Telecommunications Service. Country + The country to which the service is provided. In case of a telephone call it is the country where the receiver is located. + 0..1 + Telecommunications Service + Country + Country + Country + + + + + + + + + ASBIE + Telecommunications Service. Exchange Rate + A exchanges rates used in the pricing e.g.. when phone calls has crossed border lines. + 0..n + Telecommunications Service + Exchange Rate + Exchange Rate + Exchange Rate + + + + + + + + + ASBIE + Telecommunications Service. Allowance Charge + An allowance or charge that applies to the UtilityStatement as a whole. + 0..n + Telecommunications Service + Allowance Charge + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Telecommunications Service. Tax Total + A total amount of taxes of a particular kind applicable to this telecommunications service. + 0..n + Telecommunications Service + Tax Total + Tax Total + Tax Total + + + + + + + + + ASBIE + Telecommunications Service. Call_ Duty. Duty + In the case of a telephone call, a duty on this call. + 0..n + Telecommunications Service + Call + Duty + Duty + Duty + + + + + + + + + ASBIE + Telecommunications Service. Time_ Duty. Duty + A duty on a consumption of time. + 0..n + Telecommunications Service + Time + Duty + Duty + Duty + + + + + + + + + + + ABIE + Telecommunications Supply. Details + A class describing the supply of a telecommunication service, e.g., providing telephone calls. + Telecommunications Supply + + + + + + + + + BBIE + Telecommunications Supply. Telecommunications Supply Type. Text + The type of telecommunications supply, expressed as text. + 0..1 + Telecommunications Supply + Telecommunications Supply Type + Text + Text. Type + Itemized tele Statement + + + + + + + + + BBIE + Telecommunications Supply. Telecommunications Supply Type Code. Code + The type of telecommunications supply, expressed as a code. + 0..1 + Telecommunications Supply + Telecommunications Supply Type Code + Code + Code. Type + TeleExtended + + + + + + + + + BBIE + Telecommunications Supply. Privacy Code. Code + A code signifying the level of confidentiality of this information for this telecommunication supply. + 1 + Telecommunications Supply + Privacy Code + Code + Code. Type + CompanyLevel + + + + + + + + + BBIE + Telecommunications Supply. Description. Text + Text describing the telecommunications supply. + 0..n + Telecommunications Supply + Description + Text + Text. Type + Extended conversation Statement January quarter 2008. + + + + + + + + + BBIE + Telecommunications Supply. Total_ Amount. Amount + The total amount associated with this telecommunications supply. + 0..1 + Telecommunications Supply + Total + Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Telecommunications Supply. Telecommunications Supply Line + Outlines the provided telecommunication supply + 1..n + Telecommunications Supply + Telecommunications Supply Line + Telecommunications Supply Line + Telecommunications Supply Line + + + + + + + + + + + ABIE + Telecommunications Supply Line. Details + A class that outlines the telecommunication supply in details + Telecommunications Supply Line + + + + + + + + + BBIE + Telecommunications Supply Line. Identifier + An identifier for this telecommunications supply line. + 1 + Telecommunications Supply Line + Identifier + Identifier + Identifier. Type + 1 + + + + + + + + + BBIE + Telecommunications Supply Line. Phone Number. Text + The phone number used for this telecommunication supply line + 1 + Telecommunications Supply Line + Phone Number + Text + Text. Type + 12345678 + + + + + + + + + BBIE + Telecommunications Supply Line. Description. Text + The description of the telecommunication supply line + 0..n + Telecommunications Supply Line + Description + Text + Text. Type + Additional informations + + + + + + + + + BBIE + Telecommunications Supply Line. Line Extension Amount. Amount + An amount specifying the cost of this telecommunication line + 0..1 + Telecommunications Supply Line + Line Extension Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Telecommunications Supply Line. Exchange Rate + Exchanges rates used to calculate the amount for this line. + 0..n + Telecommunications Supply Line + Exchange Rate + Exchange Rate + Exchange Rate + + + + + + + + + ASBIE + Telecommunications Supply Line. Allowance Charge + An allowance or charge that applies to this telecommunication supply line. + 0..n + Telecommunications Supply Line + Allowance Charge + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Telecommunications Supply Line. Tax Total + A total amount of taxes of a particular kind applicable to this telecommunications supply line + 0..n + Telecommunications Supply Line + Tax Total + Tax Total + Tax Total + + + + + + + + + ASBIE + Telecommunications Supply Line. Telecommunications Service + A telecommunications service (e.g., a telephone call). + 1..n + Telecommunications Supply Line + Telecommunications Service + Telecommunications Service + Telecommunications Service + + + + + + + + + + + ABIE + Temperature. Details + A class to describe a measurement of temperature. + Temperature + + + + + + + + + BBIE + Temperature. Attribute Identifier. Identifier + An identifier for this temperature measurement. + 1 + Temperature + Attribute Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Temperature. Measure + The value of this temperature measurement. + 1 + Temperature + Measure + Measure + Measure. Type + + + + + + + + + BBIE + Temperature. Description. Text + Text describing this temperature measurement. + 0..n + Temperature + Description + Text + Text. Type + at sea level + + + + + + + + + + + ABIE + Tender Line. Details + A class to define a line in a Tender. + Tender Line + + + + + + + + + BBIE + Tender Line. Identifier + An identifier for this tender line. + 0..1 + Tender Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Tender Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Tender Line + Note + Text + Text. Type + + + + + + + + + BBIE + Tender Line. Quantity + The quantity of the item quoted in this tender line. + 0..1 + Tender Line + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Tender Line. Line Extension Amount. Amount + The total amount for this tender line, including allowance charges but net of taxes. + 0..1 + Tender Line + Line Extension Amount + Amount + Amount. Type + + + + + + + + + BBIE + Tender Line. Total_ Tax Amount. Amount + The total tax amount for this tender line. + 0..1 + Tender Line + Total + Tax Amount + Amount + Amount. Type + + + + + + + + + BBIE + Tender Line. Orderable_ Unit. Text + Text describing a unit in which the item described in this tender line can be ordered. + 0..1 + Tender Line + Orderable + Unit + Text + Text. Type + + + + + + + + + BBIE + Tender Line. Content Unit. Quantity + The unit of measure and quantity of the orderable unit. + 0..1 + Tender Line + Content Unit + Quantity + Quantity. Type + If order unit measure identifier is each , then content unit quantity is 1 . + + + + + + + + + BBIE + Tender Line. Order Quantity Increment. Numeric + The number of items that can set the order quantity increments. + 0..1 + Tender Line + Order Quantity Increment + Numeric + Numeric. Type + + + + + + + + + BBIE + Tender Line. Minimum_ Order Quantity. Quantity + The minimum number of items described in this tender line that can be ordered. + 0..1 + Tender Line + Minimum + Order Quantity + Quantity + Quantity. Type + 10 boxes + + + + + + + + + BBIE + Tender Line. Maximum_ Order Quantity. Quantity + The maximum number of items described in this tender line that can be ordered. + 0..1 + Tender Line + Maximum + Order Quantity + Quantity + Quantity. Type + 1 tonne + + + + + + + + + BBIE + Tender Line. Warranty_ Information. Text + Text about a warranty (provided by WarrantyParty) for the good or service described in this tender line. + 0..n + Tender Line + Warranty + Information + Text + Text. Type + Unless specified otherwise and in addition to any rights the Customer may have under statute, Dell warrants to the Customer that Dell branded Products (excluding third party products and software), will be free from defects in materials and workmanship affecting normal use for a period of one year from invoice date ( Standard Warranty ). + + + + + + + + + BBIE + Tender Line. Pack Level Code. Code + A mutually agreed code signifying the level of packaging associated with the item described in this tender line. + 0..1 + Tender Line + Pack Level Code + Code + Code. Type + Consumer Unit, Trading Unit + level 2 , Group 4 + + + + + + + + + ASBIE + Tender Line. Document Reference + A reference to a document associated with this tender line. + 0..n + Tender Line + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Tender Line. Item + The item associated with this tender line. + 0..1 + Tender Line + Item + Item + Item + + + + + + + + + ASBIE + Tender Line. Offered_ Item Location Quantity. Item Location Quantity + A set of location-specific properties (e.g., price, quantity, lead time) associated with the item described in this tender line. + 0..n + Tender Line + Offered + Item Location Quantity + Item Location Quantity + Item Location Quantity + + + + + + + + + ASBIE + Tender Line. Replacement_ Related Item. Related Item + A catalogue item that may be a replacement for the item described in this tender line. + 0..n + Tender Line + Replacement + Related Item + Related Item + Related Item + + + + + + + + + ASBIE + Tender Line. Warranty_ Party. Party + The party responsible for any warranty described in this tender line. + 0..1 + Tender Line + Warranty + Party + Party + Party + + + + + + + + + ASBIE + Tender Line. Warranty Validity_ Period. Period + The period for which a warranty associated with the item described in this tender line is valid. + 0..1 + Tender Line + Warranty Validity + Period + Period + Period + + + + + + + + + ASBIE + Tender Line. Sub_ Tender Line. Tender Line + An association to a Sub Tender Line + 0..n + Tender Line + Sub + Tender Line + Tender Line + Tender Line + + + + + + + + + ASBIE + Tender Line. Call For Tenders_ Line Reference. Line Reference + Reference to a Line on a Call For Tenders document. + 0..1 + Tender Line + Call For Tenders + Line Reference + Line Reference + Line Reference + + + + + + + + + ASBIE + Tender Line. Call For Tenders_ Document Reference. Document Reference + A class defining references to a Call For Tenders document. + 0..1 + Tender Line + Call For Tenders + Document Reference + Document Reference + Document Reference + + + + + + + + + + + ABIE + Tender Preparation. Details + A class to describe directions for preparing a tender. + Tender Preparation + + + + + + + + + BBIE + Tender Preparation. Tender Envelope Identifier. Identifier + An identifier for the tender envelope to be used with the tender. + 1 + Tender Preparation + Tender Envelope Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Tender Preparation. Tender Envelope Type Code. Code + A code signifying the type of tender envelope (economical or objective criteria versus technical or subjective criteria). + 0..1 + Tender Preparation + Tender Envelope Type Code + Code + Code. Type + + + + + + + + + BBIE + Tender Preparation. Description. Text + Text describing the tender envelope. + 0..n + Tender Preparation + Description + Text + Text. Type + + + + + + + + + BBIE + Tender Preparation. Open Tender Identifier. Identifier + An identifier for the open tender associated with this tender preparation. + 0..1 + Tender Preparation + Open Tender Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Tender Preparation. Procurement Project Lot + The procurement project lot associated with a particular tenderer. + 0..n + Tender Preparation + Procurement Project Lot + Procurement Project Lot + Procurement Project Lot + + + + + + + + + ASBIE + Tender Preparation. Document_ Tender Requirement. Tender Requirement + A reference to the template for a required document in a tendering process. + 0..n + Tender Preparation + Document + Tender Requirement + Tender Requirement + Tender Requirement + Curricula required, Experience required, .... + + + + + + + + + + + ABIE + Tender Requirement. Details + A template for a required document in a tendering process. + Tender Requirement + + + + + + + + + BBIE + Tender Requirement. Name + A name of this tender requirement. + 1 + Tender Requirement + Name + Name + Name. Type + + + + + + + + + BBIE + Tender Requirement. Description. Text + Text describing this tender requirement. + 0..n + Tender Requirement + Description + Text + Text. Type + + + + + + + + + ASBIE + Tender Requirement. Template_ Document Reference. Document Reference + A reference to the template for a required document. + 0..1 + Tender Requirement + Template + Document Reference + Document Reference + Document Reference + + + + + + + + + + + ABIE + Tender Result. Details + A class to describe the awarding of a tender in a tendering process. + Tender Result + + + + + + + + + BBIE + Tender Result. Tender_ Result Code. Code + A code signifying the result of the tendering process. + 0..1 + Tender Result + Tender + Result Code + Code + Code. Type + + + + + + + + + BBIE + Tender Result. Description. Text + Text describing the result of the tendering process. + 0..n + Tender Result + Description + Text + Text. Type + + + + + + + + + BBIE + Tender Result. Advertisement. Amount + The monetary value of the advertisement for this tendering process. + 0..1 + Tender Result + Advertisement + Amount + Amount. Type + + + + + + + + + BBIE + Tender Result. Award Date. Date + The date on which this result was formalized. + 1 + Tender Result + Award Date + Date + Date. Type + + + + + + + + + BBIE + Tender Result. Award Time. Time + The time at which this result was formalized. + 0..1 + Tender Result + Award Time + Time + Time. Type + + + + + + + + + BBIE + Tender Result. Received_ Tender. Quantity + The total number of tenders received in this tendering process. + 0..1 + Tender Result + Received + Tender + Quantity + Quantity. Type + + + + + + + + + BBIE + Tender Result. Lower_ Tender. Amount + The least expensive tender received in the tendering process. + 0..1 + Tender Result + Lower + Tender + Amount + Amount. Type + + + + + + + + + BBIE + Tender Result. Higher_ Tender. Amount + The most expensive tender received in this tendering process. + 0..1 + Tender Result + Higher + Tender + Amount + Amount. Type + + + + + + + + + BBIE + Tender Result. Start Date. Date + The date on which the awarded contract begins. + 0..1 + Tender Result + Start Date + Date + Date. Type + + + + + + + + + BBIE + Tender Result. Received_ Electronic Tender Quantity. Quantity + The number of electronic tenders received. + 0..1 + Tender Result + Received + Electronic Tender Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Tender Result. Received_ Foreign Tender Quantity. Quantity + The number of foreing tenders received. + 0..1 + Tender Result + Received + Foreign Tender Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Tender Result. Contract + A contract governing this tender result. + 0..1 + Tender Result + Contract + Contract + Contract + + + + + + + + + ASBIE + Tender Result. Awarded_ Tendered Project. Tendered Project + The awarded tendered project associated with this tender result. + 0..1 + Tender Result + Awarded + Tendered Project + Tendered Project + Tendered Project + + + + + + + + + ASBIE + Tender Result. Contract Formalization_ Period. Period + The period during which a contract associated with the awarded project is to be formalized. + 0..1 + Tender Result + Contract Formalization + Period + Period + Period + + + + + + + + + ASBIE + Tender Result. Subcontract Terms + Subcontract terms for this tender result. + 0..n + Tender Result + Subcontract Terms + Subcontract Terms + Subcontract Terms + + + + + + + + + ASBIE + Tender Result. Winning Party + A party that is identified as the awarded by a tender result. + 0..n + Tender Result + Winning Party + Winning Party + Winning Party + + + + + + + + + + + ABIE + Tendered Project. Details + A class to describe a tendered project or project lot. + Tendered Project + + + + + + + + + BBIE + Tendered Project. Variant. Identifier + An identifier for this variant of a tendered project. + 0..1 + Tendered Project + Variant + Identifier + Identifier. Type + + + + + + + + + BBIE + Tendered Project. Fee. Amount + The fee amount for tendered projects. + 0..1 + Tendered Project + Fee + Amount + Amount. Type + + + + + + + + + BBIE + Tendered Project. Fee_ Description. Text + Text describing the fee amount for tendered projects. + 0..n + Tendered Project + Fee + Description + Text + Text. Type + + + + + + + + + BBIE + Tendered Project. Tender Envelope Identifier. Identifier + An identifier for the tender envelope this tendered project belongs to. + 0..1 + Tendered Project + Tender Envelope Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Tendered Project. Tender Envelope Type Code. Code + A code signifying the type of tender envelope this tendered project belongs to. + 0..1 + Tendered Project + Tender Envelope Type Code + Code + Code. Type + + + + + + + + + ASBIE + Tendered Project. Procurement Project Lot + The procurement project lot to which this Tender Line refers to. If there are no lots, this should not be defined. + 0..1 + Tendered Project + Procurement Project Lot + Procurement Project Lot + Procurement Project Lot + + + + + + + + + ASBIE + Tendered Project. Evidence_ Document Reference. Document Reference + A reference to a non-structured evidentiary document supporting this tendered project. + 0..n + Tendered Project + Evidence + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Tendered Project. Tax Total + A total amount of taxes of a particular kind applicable to the monetary total for this tendered project. + 0..n + Tendered Project + Tax Total + Tax Total + Tax Total + + + + + + + + + ASBIE + Tendered Project. Legal_ Monetary Total. Monetary Total + The total amount for this tendered project. + 0..1 + Tendered Project + Legal + Monetary Total + Monetary Total + Monetary Total + + + + + + + + + ASBIE + Tendered Project. Tender Line + A line in the tender for this tendered project. + 0..n + Tendered Project + Tender Line + Tender Line + Tender Line + + + + + + + + + ASBIE + Tendered Project. Awarding Criterion Response + An association to an Awarding Criterion Response. + 0..n + Tendered Project + Awarding Criterion Response + Awarding Criterion Response + Awarding Criterion Response + + + + + + + + + + + ABIE + Tenderer Party Qualification. Details + A class to describe the qualifications of a tenderer party. + Tenderer Party Qualification + + + + + + + + + ASBIE + Tenderer Party Qualification. Interested_ Procurement Project Lot. Procurement Project Lot + The procurement project lot the party is interested in. + 0..n + Tenderer Party Qualification + Interested + Procurement Project Lot + Procurement Project Lot + Procurement Project Lot + + + + + + + + + ASBIE + Tenderer Party Qualification. Main_ Qualifying Party. Qualifying Party + The qualifications of the main tenderer party. + 1 + Tenderer Party Qualification + Main + Qualifying Party + Qualifying Party + Qualifying Party + + + + + + + + + ASBIE + Tenderer Party Qualification. Additional_ Qualifying Party. Qualifying Party + The qualifications of a tenderer party other than the main tenderer party when bidding as a consortium. + 0..n + Tenderer Party Qualification + Additional + Qualifying Party + Qualifying Party + Qualifying Party + + + + + + + + + + + ABIE + Tenderer Qualification Request. Details + The evaluation that the Contracting Authority party requests to fulfill to the tenderers. + Tenderer Qualification Request + + + + + + + + + BBIE + Tenderer Qualification Request. Company Legal Form Code. Code + The legal status requested for potential tenderers, expressed as a code. + 0..1 + Tenderer Qualification Request + Company Legal Form Code + Code + Code. Type + + + + + + + + + BBIE + Tenderer Qualification Request. Company Legal Form. Text + The legal status requested for potential tenderers, expressed as text + 0..1 + Tenderer Qualification Request + Company Legal Form + Text + Text. Type + + + + + + + + + BBIE + Tenderer Qualification Request. Personal Situation. Text + Text describing the personal situation of the economic operators in this tendering process. + 0..n + Tenderer Qualification Request + Personal Situation + Text + Text. Type + + + + + + + + + BBIE + Tenderer Qualification Request. Operating Years. Quantity + Textual description of the legal form required for potential tenderers. + 0..1 + Tenderer Qualification Request + Operating Years + Quantity + Quantity. Type + + + + + + + + + BBIE + Tenderer Qualification Request. Employee. Quantity + Textual description of the legal form required for potential tenderers. + 0..1 + Tenderer Qualification Request + Employee + Quantity + Quantity. Type + + + + + + + + + BBIE + Tenderer Qualification Request. Description. Text + Text describing the evaluation requirements for this tenderer. + 0..n + Tenderer Qualification Request + Description + Text + Text. Type + + + + + + + + + ASBIE + Tenderer Qualification Request. Required Business_ Classification Scheme. Classification Scheme + A classification scheme for the business profile. + 0..n + Tenderer Qualification Request + Required Business + Classification Scheme + Classification Scheme + Classification Scheme + + + + + + + + + ASBIE + Tenderer Qualification Request. Technical_ Evaluation Criterion. Evaluation Criterion + A technical evaluation criterion required for an economic operator in a tendering process. + 0..n + Tenderer Qualification Request + Technical + Evaluation Criterion + Evaluation Criterion + Evaluation Criterion + + + + + + + + + ASBIE + Tenderer Qualification Request. Financial_ Evaluation Criterion. Evaluation Criterion + A financial evaluation criterion required for an economic operator in a tendering process. + 0..n + Tenderer Qualification Request + Financial + Evaluation Criterion + Evaluation Criterion + Evaluation Criterion + + + + + + + + + ASBIE + Tenderer Qualification Request. Specific_ Tenderer Requirement. Tenderer Requirement + A requirement to be met by a tenderer. + 0..n + Tenderer Qualification Request + Specific + Tenderer Requirement + Tenderer Requirement + Tenderer Requirement + Preregistration in a Business Registry + + + + + + + + + ASBIE + Tenderer Qualification Request. Economic Operator Role + A class to describe the tenderer contracting role. + 0..n + Tenderer Qualification Request + Economic Operator Role + Economic Operator Role + Economic Operator Role + + + + + + + + + + + ABIE + Tenderer Requirement. Details + A class to describe an action or statement required of an economic operator participating in a tendering process. + Tenderer Requirement + + + + + + + + + BBIE + Tenderer Requirement. Name + A name of this tenderer requirement. + 0..n + Tenderer Requirement + Name + Name + Name. Type + + + + + + + + + BBIE + Tenderer Requirement. Tenderer Requirement_ Type Code. Code + A code signifying this requirement. + 0..1 + Tenderer Requirement + Tenderer Requirement + Type Code + Code + Code. Type + + + + + + + + + BBIE + Tenderer Requirement. Description. Text + Text describing this requirement. + 0..n + Tenderer Requirement + Description + Text + Text. Type + + + + + + + + + BBIE + Tenderer Requirement. Legal Reference. Text + The legal reference of the exclusion criterion. + 0..1 + Tenderer Requirement + Legal Reference + Text + Text. Type + Art. 45 2 b + + + + + + + + + ASBIE + Tenderer Requirement. Suggested_ Evidence. Evidence + An item of evidence that should be submitted to satisfy this requirement. + 0..n + Tenderer Requirement + Suggested + Evidence + Evidence + Evidence + + + + + + + + + + + ABIE + Tendering Process. Details + A class to describe the process of a formal offer and response to execute work or supply goods at a stated price. + Tendering Process + + + + + + + + + BBIE + Tendering Process. Identifier + An identifier for this tendering process. + 0..1 + Tendering Process + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Tendering Process. Original_ Contracting System. Identifier + When reopening a tendering process, the identifier of the original framework agreement or dynamic purchasing system. + 0..1 + Tendering Process + Original + Contracting System + Identifier + Identifier. Type + + + + + + + + + BBIE + Tendering Process. Description. Text + Text describing the tendering process. + 0..n + Tendering Process + Description + Text + Text. Type + + + + + + + + + BBIE + Tendering Process. Negotiation_ Description. Text + Text describing the negotiation to be followed during the tendering process. + 0..n + Tendering Process + Negotiation + Description + Text + Text. Type + + + + + + + + + BBIE + Tendering Process. Procedure Code. Code + A code signifying the type of this tendering procedure. + 0..1 + Tendering Process + Procedure Code + Code + Code. Type + Open, Restricted, Negotiated + + + + + + + + + BBIE + Tendering Process. Urgency Code. Code + A code signifying the urgency of this tendering process. + 0..1 + Tendering Process + Urgency Code + Code + Code. Type + Urgent, Normal, Emergency + + + + + + + + + BBIE + Tendering Process. Expense Code. Code + A code signifying the type of expense for this tendering process. + 0..1 + Tendering Process + Expense Code + Code + Code. Type + Normal, Anticipated + + + + + + + + + BBIE + Tendering Process. Part Presentation Code. Code + A code signifying the type of presentation of tenders required (e.g., one lot, multiple lots, or all the lots). + 0..1 + Tendering Process + Part Presentation Code + Code + Code. Type + One Lot, Multiple Lots, All Lots + + + + + + + + + BBIE + Tendering Process. Contracting System Code. Code + A code signifying the type of contracting system (e.g., framework agreement, dynamic purchasing system). If the procedure is individual (nonrepetitive), this code should be omitted. + 0..1 + Tendering Process + Contracting System Code + Code + Code. Type + Framework Agreement, Dynamic Purchasing System + + + + + + + + + BBIE + Tendering Process. Submission Method Code. Code + A code signifying the method to be followed in submitting tenders. + 0..1 + Tendering Process + Submission Method Code + Code + Code. Type + Manual, Electronically, etc. + + + + + + + + + BBIE + Tendering Process. Candidate Reduction_ Constraint. Indicator + An indicator that the number of candidates participating in this process has been reduced (true) or not (false). + 0..1 + Tendering Process + Candidate Reduction + Constraint + Indicator + Indicator. Type + + + + + + + + + BBIE + Tendering Process. Government Agreement_ Constraint. Indicator + An indicator that the project associated with this tendering process is constrained by a government procurement agreement (true) or not (false). + 0..1 + Tendering Process + Government Agreement + Constraint + Indicator + Indicator. Type + + + + + + + + + ASBIE + Tendering Process. Document Availability_ Period. Period + The period during which documents relating to this tendering process must be completed. + 0..1 + Tendering Process + Document Availability + Period + Period + Period + + + + + + + + + ASBIE + Tendering Process. Tender Submission Deadline_ Period. Period + The period during which tenders must be delivered. + 0..1 + Tendering Process + Tender Submission Deadline + Period + Period + Period + + + + + + + + + ASBIE + Tendering Process. Invitation Submission_ Period. Period + The period during which invitations to tender must be completed and delivered. + 0..1 + Tendering Process + Invitation Submission + Period + Period + Period + + + + + + + + + ASBIE + Tendering Process. Participation Request Reception_ Period. Period + The period during which requests for participation must be completed and delivered. + 0..1 + Tendering Process + Participation Request Reception + Period + Period + Period + + + + + + + + + ASBIE + Tendering Process. Notice_ Document Reference. Document Reference + A reference to a notice pertaining to this tendering process. + 0..n + Tendering Process + Notice + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Tendering Process. Additional_ Document Reference. Document Reference + A reference to an additional document. + 0..n + Tendering Process + Additional + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Tendering Process. Process Justification + A justification for the selection of this tendering process. + 0..n + Tendering Process + Process Justification + Process Justification + Process Justification + + + + + + + + + ASBIE + Tendering Process. Economic Operator Short List + A set of criteria used to create a short list of candidates. + 0..1 + Tendering Process + Economic Operator Short List + Economic Operator Short List + Economic Operator Short List + + + + + + + + + ASBIE + Tendering Process. Open Tender_ Event. Event + Textual description of the legal form required for potential tenderers. + 0..n + Tendering Process + Open Tender + Event + Event + Event + + + + + + + + + ASBIE + Tendering Process. Auction Terms + The terms to be fulfilled by tenderers if an auction is to be executed before the awarding of a tender. + 0..1 + Tendering Process + Auction Terms + Auction Terms + Auction Terms + + + + + + + + + ASBIE + Tendering Process. Framework Agreement + A tendering framework agreement. + 0..1 + Tendering Process + Framework Agreement + Framework Agreement + Framework Agreement + + + + + + + + + + + ABIE + Tendering Terms. Details + A class to describe tendering terms for a tendering process. + Tendering Terms + + + + + + + + + BBIE + Tendering Terms. Awarding Method Type Code. Code + A code signifying the awarding method in a tendering process (e.g., a method favoring the tender with the lowest price or the tender that is most economically advantageous). + 0..1 + Tendering Terms + Awarding Method Type Code + Code + Code. Type + Price, Multiple criteria + + + + + + + + + BBIE + Tendering Terms. Price Evaluation Code. Code + Textual description of the legal form required for potential tenderers. + 0..1 + Tendering Terms + Price Evaluation Code + Code + Code. Type + Unit prices, global price + + + + + + + + + BBIE + Tendering Terms. Maximum Variant_ Quantity. Quantity + Maximum number of variants the tenderer is allowed to present for this tendering project. + 0..1 + Tendering Terms + Maximum Variant + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Tendering Terms. Variant_ Constraint. Indicator + An indicator that variants are allowed and unconstrained in number (true) or not allowed (false). + 0..1 + Tendering Terms + Variant + Constraint + Indicator + Indicator. Type + + + + + + + + + BBIE + Tendering Terms. Accepted Variants_ Description. Text + Text specifying the things for which variants are accepted. + 0..n + Tendering Terms + Accepted Variants + Description + Text + Text. Type + + + + + + + + + BBIE + Tendering Terms. Price Revision_ Formula Description. Text + Text describing the formula for price revision. + 0..n + Tendering Terms + Price Revision + Formula Description + Text + Text. Type + + + + + + + + + BBIE + Tendering Terms. Funding_ Program Code. Code + The program that funds the tendering process (e.g., "National", "European"), expressed as a code. + 0..1 + Tendering Terms + Funding + Program Code + Code + Code. Type + + + + + + + + + BBIE + Tendering Terms. Funding_ Program. Text + The program that funds the tendering process (e.g., EU 6th Framework Program) expressed as text. + 0..n + Tendering Terms + Funding + Program + Text + Text. Type + + + + + + + + + BBIE + Tendering Terms. Maximum_ Advertisement. Amount + The maximum advertised monetary value of the tendering process. + 0..1 + Tendering Terms + Maximum + Advertisement + Amount + Amount. Type + + + + + + + + + BBIE + Tendering Terms. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Tendering Terms + Note + Text + Text. Type + + + + + + + + + BBIE + Tendering Terms. Payment Frequency Code. Code + A code signifying the frequency of payment in the contract associated with the tendering process. + 0..1 + Tendering Terms + Payment Frequency Code + Code + Code. Type + + + + + + + + + BBIE + Tendering Terms. Economic Operator Registry_ URI. Identifier + The Uniform Resource Identifier (URI) of an electronic registry of economic operators. + 0..1 + Tendering Terms + Economic Operator Registry + URI + Identifier + Identifier. Type + Web site + + + + + + + + + BBIE + Tendering Terms. Required Curricula. Indicator + An indicator that tenderers are required to provide a curriculum vitae for each participant in the project (true) or are not so required (false). + 0..1 + Tendering Terms + Required Curricula + Indicator + Indicator. Type + + + + + + + + + BBIE + Tendering Terms. Other_ Conditions. Indicator + Indicates whether other conditions exist (true) or not (false). If the indicator is true, the description may be provided. + 0..1 + Tendering Terms + Other + Conditions + Indicator + Indicator. Type + + + + + + + + + BBIE + Tendering Terms. Additional_ Conditions. Text + Other existing conditions. + 0..n + Tendering Terms + Additional + Conditions + Text + Text. Type + + + + + + + + + BBIE + Tendering Terms. Latest_ Security Clearance Date. Date + The end date until which the candidates can obtain the necessary level of security clearance. + 0..1 + Tendering Terms + Latest + Security Clearance Date + Date + Date. Type + + + + + + + + + BBIE + Tendering Terms. Documentation Fee Amount. Amount + The amount to be paid to obtain the contract documents and additional documentation. + 0..1 + Tendering Terms + Documentation Fee Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Tendering Terms. Penalty_ Clause. Clause + The penalty clauses + 0..n + Tendering Terms + Penalty + Clause + Clause + Clause + + + + + + + + + ASBIE + Tendering Terms. Required_ Financial Guarantee. Financial Guarantee + A financial guarantee of a tenderer or bid submitter's actual entry into a contract in the event that it is the successful bidder. + 0..n + Tendering Terms + Required + Financial Guarantee + Financial Guarantee + Financial Guarantee + + + + + + + + + ASBIE + Tendering Terms. Procurement Legislation_ Document Reference. Document Reference + A reference to a document providing references to procurement legislation applicable to the tendering process. + 0..1 + Tendering Terms + Procurement Legislation + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Tendering Terms. Fiscal Legislation_ Document Reference. Document Reference + A reference to a document providing references to fiscal legislation applicable to the tendering process. + 0..1 + Tendering Terms + Fiscal Legislation + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Tendering Terms. Environmental Legislation_ Document Reference. Document Reference + A reference to a document providing references to environmental legislation applicable to the tendering process. + 0..1 + Tendering Terms + Environmental Legislation + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Tendering Terms. Employment Legislation_ Document Reference. Document Reference + A reference to a document providing references to employment legislation applicable to the tendering process. + 0..1 + Tendering Terms + Employment Legislation + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Tendering Terms. Contractual_ Document Reference. Document Reference + A reference to a document that will become part of the awarded contract. + 0..n + Tendering Terms + Contractual + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Tendering Terms. Call For Tenders_ Document Reference. Document Reference + A reference to the Call for Tender associated with these tendering terms. + 0..1 + Tendering Terms + Call For Tenders + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Tendering Terms. Warranty Validity_ Period. Period + The period during which a warranty for work, service, or goods associated with these tendering terms is valid. + 0..1 + Tendering Terms + Warranty Validity + Period + Period + Period + + + + + + + + + ASBIE + Tendering Terms. Payment Terms + A specification of payment terms associated with the tendering process. + 0..n + Tendering Terms + Payment Terms + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Tendering Terms. Tenderer Qualification Request + Required set of qualifications for a tenderer in this tendering process. + 0..n + Tendering Terms + Tenderer Qualification Request + Tenderer Qualification Request + Tenderer Qualification Request + + + + + + + + + ASBIE + Tendering Terms. Allowed_ Subcontract Terms. Subcontract Terms + Subcontract terms for the tendering process. + 0..n + Tendering Terms + Allowed + Subcontract Terms + Subcontract Terms + Subcontract Terms + + + + + + + + + ASBIE + Tendering Terms. Tender Preparation + Directions for preparing a tender for the+D2057 tendering process. + 0..n + Tendering Terms + Tender Preparation + Tender Preparation + Tender Preparation + Curricula required, Experience required, .... + + + + + + + + + ASBIE + Tendering Terms. Contract Execution Requirement + A requirement relating to execution of the contract that will be awarded as a result of the tendering process. + 0..n + Tendering Terms + Contract Execution Requirement + Contract Execution Requirement + Contract Execution Requirement + + + + + + + + + ASBIE + Tendering Terms. Awarding Terms + The terms in the tendering process for awarding the contract for a project. + 0..1 + Tendering Terms + Awarding Terms + Awarding Terms + Awarding Terms + + + + + + + + + ASBIE + Tendering Terms. Additional Information_ Party. Party + A party that has additional information about the tendering process. + 0..1 + Tendering Terms + Additional Information + Party + Party + Party + + + + + + + + + ASBIE + Tendering Terms. Document Provider_ Party. Party + The party that has the contract documents for the tendering process. + 0..1 + Tendering Terms + Document Provider + Party + Party + Party + + + + + + + + + ASBIE + Tendering Terms. Tender Recipient_ Party. Party + The party to which tenders should be presented. + 0..1 + Tendering Terms + Tender Recipient + Party + Party + Party + + + + + + + + + ASBIE + Tendering Terms. Contract Responsible_ Party. Party + The party responsible for the execution of the contract. + 0..1 + Tendering Terms + Contract Responsible + Party + Party + Party + + + + + + + + + ASBIE + Tendering Terms. Tender Evaluation_ Party. Party + A party in the contracting authority responsible for evaluating tenders received. + 0..n + Tendering Terms + Tender Evaluation + Party + Party + Party + + + + + + + + + ASBIE + Tendering Terms. Tender Validity_ Period. Period + The period during which tenders submitted for this tendering process must remain valid. + 0..1 + Tendering Terms + Tender Validity + Period + Period + Period + + + + + + + + + ASBIE + Tendering Terms. Contract Acceptance_ Period. Period + The period of time during which the contracting authority may accept a contract. + 0..1 + Tendering Terms + Contract Acceptance + Period + Period + Period + + + + + + + + + ASBIE + Tendering Terms. Appeal Terms + Information about the terms to present for an appeal against a tender award. + 0..1 + Tendering Terms + Appeal Terms + Appeal Terms + Appeal Terms + + + + + + + + + ASBIE + Tendering Terms. Language + One of the default languages specified for the tendering process. + 0..n + Tendering Terms + Language + Language + Language + + + + + + + + + ASBIE + Tendering Terms. Budget Account Line + A budget account line associated with the tendering process. + 0..n + Tendering Terms + Budget Account Line + Budget Account Line + Budget Account Line + + + + + + + + + ASBIE + Tendering Terms. Replaced Notice_ Document Reference. Document Reference + A class defining a reference to the notice that is being replaced. + 0..1 + Tendering Terms + Replaced Notice + Document Reference + Document Reference + Document Reference + + + + + + + + + + + ABIE + Trade Financing. Details + A class to describe a trade financing instrument. + Trade Financing + + + + + + + + + BBIE + Trade Financing. Identifier + An identifier for this trade financing instrument. + 0..1 + Trade Financing + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Trade Financing. Financing Instrument Code. Code + A code signifying the type of this financing instrument. + 0..1 + Trade Financing + Financing Instrument Code + Code + Code. Type + Factoring , Invoice Financing , Pre-shipment Financing , Letter of Credit , Irrevocable Letter of Credit . + + + + + + + + + ASBIE + Trade Financing. Contract_ Document Reference. Document Reference + A reference to a contract document. + 0..1 + Trade Financing + Contract + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Trade Financing. Document Reference + A reference to a document associated with this trade financing instrument. + 0..n + Trade Financing + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Trade Financing. Financing_ Party. Party + The financing party (bank or other enabled party). + 1 + Trade Financing + Financing + Party + Party + Party + + + + + + + + + ASBIE + Trade Financing. Financing_ Financial Account. Financial Account + An internal bank account used by the bank or its first agent to manage the line of credit granted to the financing requester. + 0..1 + Trade Financing + Financing + Financial Account + Financial Account + Financial Account + + + + + + + + + ASBIE + Trade Financing. Clause + A clause applicable to this trade financing instrument. + 0..n + Trade Financing + Clause + Clause + Clause + + + + + + + + + + + ABIE + Trading Terms. Details + A class for describing the terms of a trade agreement. + Trading Terms + + + + + + + + + BBIE + Trading Terms. Information. Text + Text describing the terms of a trade agreement. + 0..n + Trading Terms + Information + Text + Text. Type + Unless credit terms have been expressly agreed by Dell, payment for the products or services shall be made in full before physical delivery of products or services. Customer shall pay for all shipping and handling charges. + + + + + + + + + BBIE + Trading Terms. Reference. Text + A reference quoting the basis of the terms + 0..1 + Trading Terms + Reference + Text + Text. Type + http://www1.ap.dell.com/content/topics/topic.aspx/ap/policy/en/au/sales_terms_au?c=au&l=en&s=gen + + + + + + + + + ASBIE + Trading Terms. Applicable_ Address. Address + The address at which these trading terms apply. + 0..1 + Trading Terms + Applicable + Address + Address + Address + + + + + + + + + + + ABIE + Transaction Conditions. Details + A class to describe purchasing, sales, or payment conditions. + Transaction Conditions + Payment Conditions, Sales Conditions + + + + + + + + + BBIE + Transaction Conditions. Identifier + An identifier for conditions of the transaction, typically purchase/sales conditions. + 0..1 + Transaction Conditions + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Transaction Conditions. Action Code. Code + A code signifying a type of action relating to sales or payment conditions. + 0..1 + Transaction Conditions + Action Code + Code + Code. Type + + + + + + + + + BBIE + Transaction Conditions. Description. Text + Text describing the transaction conditions. + 0..n + Transaction Conditions + Description + Text + Text. Type + + + + + + + + + ASBIE + Transaction Conditions. Document Reference + A document associated with these transaction conditions. + 0..n + Transaction Conditions + Document Reference + Document Reference + Document Reference + + + + + + + + + + + ABIE + Transport Equipment. Details + A class to describe a piece of equipment used to transport goods. + Transport Equipment + Shipping Container, Sea Container, Rail Wagon, Pallet, Trailer, Unit Load Device, ULD + + + + + + + + + BBIE + Transport Equipment. Identifier + An identifier for this piece of transport equipment. + 0..1 + Transport Equipment + Identifier + Identifier + Identifier. Type + OCLU 1234567 + + + + + + + + + BBIE + Transport Equipment. Referenced_ Consignment Identifier. Identifier + An identifier for the consignment contained by this piece of transport equipment. + 0..n + Transport Equipment + Referenced + Consignment Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Transport Equipment. Transport Equipment Type Code. Code + A code signifying the type of this piece of transport equipment. + 0..1 + Transport Equipment + Transport Equipment Type Code + Code + Transport Equipment Type + Transport Equipment Type_ Code. Type + + + + + + + + + BBIE + Transport Equipment. Provider Type Code. Code + A code signifying the type of provider of this piece of transport equipment. + 0..1 + Transport Equipment + Provider Type Code + Code + Code. Type + + + + + + + + + BBIE + Transport Equipment. Owner Type Code. Code + A code signifying the type of owner of this piece of transport equipment. + 0..1 + Transport Equipment + Owner Type Code + Code + Code. Type + + + + + + + + + BBIE + Transport Equipment. Size Type Code. Code + A code signifying the size and type of this piece of piece of transport equipment. When the piece of transport equipment is a shipping container, it is recommended to use ContainerSizeTypeCode for validation. + 0..1 + Transport Equipment + Size Type Code + Code + Code. Type + Container Size Type Code + + + + + + + + + BBIE + Transport Equipment. Disposition Code. Code + A code signifying the current disposition of this piece of transport equipment. + 0..1 + Transport Equipment + Disposition Code + Code + Code. Type + Status + + + + + + + + + BBIE + Transport Equipment. Fullness Indication Code. Code + A code signifying whether this piece of transport equipment is full, partially full, or empty. + 0..1 + Transport Equipment + Fullness Indication Code + Code + Code. Type + + + + + + + + + BBIE + Transport Equipment. Refrigeration On_ Indicator. Indicator + An indicator that this piece of transport equipment's refrigeration is on (true) or off (false). + 0..1 + Transport Equipment + Refrigeration On + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Transport Equipment. Information. Text + Additional information about this piece of transport equipment. + 0..n + Transport Equipment + Information + Text + Text. Type + + + + + + + + + BBIE + Transport Equipment. Returnability_ Indicator. Indicator + An indicator that this piece of transport equipment is returnable (true) or not (false). + 0..1 + Transport Equipment + Returnability + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Transport Equipment. Legal Status_ Indicator. Indicator + An indication of the legal status of this piece of transport equipment with respect to the Container Convention Code. + 0..1 + Transport Equipment + Legal Status + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Transport Equipment. Air Flow Percent. Percent + The percent of the airflow within this piece of transport equipment. + 0..1 + Transport Equipment + Air Flow Percent + Percent + Percent. Type + + + + + + + + + BBIE + Transport Equipment. Humidity Percent. Percent + The percent humidity within this piece of transport equipment. + 0..1 + Transport Equipment + Humidity Percent + Percent + Percent. Type + + + + + + + + + BBIE + Transport Equipment. Animal Food_ Approved Indicator. Indicator + An indicator that this piece of transport equipment is approved for animal food (true) or not (false). + 0..1 + Transport Equipment + Animal Food + Approved Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Transport Equipment. Human Food_ Approved Indicator. Indicator + An indicator that this piece of transport equipment is approved for human food (true) or not (false). + 0..1 + Transport Equipment + Human Food + Approved Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Transport Equipment. Dangerous Goods_ Approved Indicator. Indicator + An indicator that this piece of transport equipment is approved for dangerous goods (true) or not (false). + 0..1 + Transport Equipment + Dangerous Goods + Approved Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Transport Equipment. Refrigerated_ Indicator. Indicator + An indicator that this piece of transport equipment is refrigerated (true) or not (false). + 0..1 + Transport Equipment + Refrigerated + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Transport Equipment. Characteristics. Text + Characteristics of this piece of transport equipment. + 0..1 + Transport Equipment + Characteristics + Text + Text. Type + + + + + + + + + BBIE + Transport Equipment. Damage_ Remarks. Text + Damage associated with this piece of transport equipment. + 0..n + Transport Equipment + Damage + Remarks + Text + Text. Type + + + + + + + + + BBIE + Transport Equipment. Description. Text + Text describing this piece of transport equipment. + 0..n + Transport Equipment + Description + Text + Text. Type + + + + + + + + + BBIE + Transport Equipment. Special_ Transport Requirements. Text + Special transport requirements expressed as text. + 0..n + Transport Equipment + Special + Transport Requirements + Text + Text. Type + + + + + + + + + BBIE + Transport Equipment. Gross_ Weight. Measure + The gross weight of this piece of transport equipment. + 0..1 + Transport Equipment + Gross + Weight + Measure + Measure. Type + + + + + + + + + BBIE + Transport Equipment. Gross_ Volume. Measure + The gross volume of this piece of transport equipment. + 0..1 + Transport Equipment + Gross + Volume + Measure + Measure. Type + + + + + + + + + BBIE + Transport Equipment. Tare_ Weight. Measure + The weight of this piece of transport equipment when empty. + 0..1 + Transport Equipment + Tare + Weight + Measure + Measure. Type + + + + + + + + + BBIE + Transport Equipment. Tracking Device Code. Code + A code signifying the tracking device for this piece of transport equipment. + 0..1 + Transport Equipment + Tracking Device Code + Code + Code. Type + + + + + + + + + BBIE + Transport Equipment. Power. Indicator + An indicator that this piece of transport equipment can supply power (true) or not (false). + 0..1 + Transport Equipment + Power + Indicator + Indicator. Type + + + + + + + + + BBIE + Transport Equipment. Trace_ Identifier. Identifier + An identifier for use in tracing this piece of transport equipment, such as the EPC number used in RFID. + 0..1 + Transport Equipment + Trace + Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Transport Equipment. Measurement_ Dimension. Dimension + A measurable dimension (length, mass, weight, or volume) of this piece of transport equipment. + 0..n + Transport Equipment + Measurement + Dimension + Dimension + Dimension + + + + + + + + + ASBIE + Transport Equipment. Transport Equipment Seal + A seal securing the door of a piece of transport equipment. + 0..n + Transport Equipment + Transport Equipment Seal + Transport Equipment Seal + Transport Equipment Seal + + + + + + + + + ASBIE + Transport Equipment. Minimum_ Temperature. Temperature + In the case of a refrigeration unit, the minimum allowable operating temperature for this container. + 0..1 + Transport Equipment + Minimum + Temperature + Temperature + Temperature + + + + + + + + + ASBIE + Transport Equipment. Maximum_ Temperature. Temperature + In the case of a refrigeration unit, the maximum allowable operating temperature for this container. + 0..1 + Transport Equipment + Maximum + Temperature + Temperature + Temperature + + + + + + + + + ASBIE + Transport Equipment. Provider_ Party. Party + The party providing this piece of transport equipment. + 0..1 + Transport Equipment + Provider + Party + Party + Party + + + + + + + + + ASBIE + Transport Equipment. Loading Proof_ Party. Party + The authorized party responsible for certifying that the goods were loaded into this piece of transport equipment. + 0..1 + Transport Equipment + Loading Proof + Party + Party + Party + Party responsible for proof of vanning (WCO ID 059) + + + + + + + + + ASBIE + Transport Equipment. Supplier Party + The party that supplies this piece of transport equipment. + 0..1 + Transport Equipment + Supplier Party + Supplier Party + Supplier Party + Party responsible for proof of vanning (WCO ID 059) + + + + + + + + + ASBIE + Transport Equipment. Owner_ Party. Party + The party that owns this piece of transport equipment. + 0..1 + Transport Equipment + Owner + Party + Party + Party + Party responsible for proof of vanning (WCO ID 059) + + + + + + + + + ASBIE + Transport Equipment. Operating_ Party. Party + The party that operates this piece of transport equipment. + 0..1 + Transport Equipment + Operating + Party + Party + Party + Party responsible for proof of vanning (WCO ID 059) + + + + + + + + + ASBIE + Transport Equipment. Loading_ Location. Location + The location where this piece of transport equipment is loaded. + 0..1 + Transport Equipment + Loading + Location + Location + Location + Vanning address (WCO ID 068), Stuffing location + + + + + + + + + ASBIE + Transport Equipment. Unloading_ Location. Location + The location where this piece of transport equipment is unloaded. + 0..1 + Transport Equipment + Unloading + Location + Location + Location + + + + + + + + + ASBIE + Transport Equipment. Storage_ Location. Location + The location where this piece of transport equipment is being stored. + 0..1 + Transport Equipment + Storage + Location + Location + Location + + + + + + + + + ASBIE + Transport Equipment. Positioning_ Transport Event. Transport Event + A positioning of this piece of transport equipment. + 0..n + Transport Equipment + Positioning + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Equipment. Quarantine_ Transport Event. Transport Event + A quarantine of this piece of transport equipment. + 0..n + Transport Equipment + Quarantine + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Equipment. Delivery_ Transport Event. Transport Event + A delivery of this piece of transport equipment. + 0..n + Transport Equipment + Delivery + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Equipment. Pickup_ Transport Event. Transport Event + A pickup of this piece of transport equipment. + 0..n + Transport Equipment + Pickup + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Equipment. Handling_ Transport Event. Transport Event + A handling of this piece of transport equipment. + 0..n + Transport Equipment + Handling + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Equipment. Loading_ Transport Event. Transport Event + A loading of this piece of transport equipment. + 0..n + Transport Equipment + Loading + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Equipment. Transport Event + A transport event associated with this piece of transport equipment. + 0..n + Transport Equipment + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Equipment. Applicable_ Transport Means. Transport Means + The applicable transport means associated with this piece of transport equipment. + 0..1 + Transport Equipment + Applicable + Transport Means + Transport Means + Transport Means + + + + + + + + + ASBIE + Transport Equipment. Haulage_ Trading Terms. Trading Terms + A set of haulage trading terms associated with this piece of transport equipment. + 0..n + Transport Equipment + Haulage + Trading Terms + Trading Terms + Trading Terms + + + + + + + + + ASBIE + Transport Equipment. Hazardous Goods Transit + Transit-related information regarding a type of hazardous goods contained in this piece of transport equipment. + 0..n + Transport Equipment + Hazardous Goods Transit + Hazardous Goods Transit + Hazardous Goods Transit + + + + + + + + + ASBIE + Transport Equipment. Packaged_ Transport Handling Unit. Transport Handling Unit + A packaged transport handling unit associated with this piece of transport equipment. + 0..n + Transport Equipment + Packaged + Transport Handling Unit + Transport Handling Unit + Transport Handling Unit + + + + + + + + + ASBIE + Transport Equipment. Service_ Allowance Charge. Allowance Charge + A service allowance charge associated with this piece of transport equipment. + 0..n + Transport Equipment + Service + Allowance Charge + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Transport Equipment. Freight_ Allowance Charge. Allowance Charge + A freight allowance charge associated with this piece of transport equipment. + 0..n + Transport Equipment + Freight + Allowance Charge + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Transport Equipment. Attached_ Transport Equipment. Transport Equipment + A piece of transport equipment attached to this piece of transport equipment. + 0..n + Transport Equipment + Attached + Transport Equipment + Transport Equipment + Transport Equipment + + + + + + + + + ASBIE + Transport Equipment. Delivery + The delivery of this piece of transport equipment. + 0..1 + Transport Equipment + Delivery + Delivery + Delivery + + + + + + + + + ASBIE + Transport Equipment. Pickup + The pickup of this piece of transport equipment. + 0..1 + Transport Equipment + Pickup + Pickup + Pickup + + + + + + + + + ASBIE + Transport Equipment. Despatch + The despatch of this piece of transport equipment. + 0..1 + Transport Equipment + Despatch + Despatch + Despatch + + + + + + + + + ASBIE + Transport Equipment. Shipment_ Document Reference. Document Reference + A reference to a shipping document associated with this piece of transport equipment. + 0..n + Transport Equipment + Shipment + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Transport Equipment. Contained In_ Transport Equipment. Transport Equipment + A piece of transport equipment contained in this piece of transport equipment. + 0..n + Transport Equipment + Contained In + Transport Equipment + Transport Equipment + Transport Equipment + e.g. pallets inside containers + + + + + + + + + ASBIE + Transport Equipment. Package + A package contained in this piece of transport equipment. + 0..n + Transport Equipment + Package + Package + Package + + + + + + + + + ASBIE + Transport Equipment. Goods Item + A goods item contained in this piece of transport equipment. + 0..n + Transport Equipment + Goods Item + Goods Item + Goods Item + + + + + + + + + + + ABIE + Transport Equipment Seal. Details + A class to describe a device (a transport equipment seal) for securing the doors of a shipping container. + Transport Equipment Seal + Container Seal + + + + + + + + + BBIE + Transport Equipment Seal. Identifier + An identifier for this transport equipment seal. + 1 + Transport Equipment Seal + Identifier + Identifier + Identifier. Type + ACS1234 + + + + + + + + + BBIE + Transport Equipment Seal. Seal Issuer Type Code. Code + A code signifying the type of party that issues and is responsible for this transport equipment seal. + 0..1 + Transport Equipment Seal + Seal Issuer Type Code + Code + Code. Type + + + + + + + + + BBIE + Transport Equipment Seal. Condition. Text + The condition of this transport equipment seal. + 0..1 + Transport Equipment Seal + Condition + Text + Text. Type + + + + + + + + + BBIE + Transport Equipment Seal. Seal Status Code. Code + A code signifying the condition of this transport equipment seal. + 0..1 + Transport Equipment Seal + Seal Status Code + Code + Code. Type + + + + + + + + + BBIE + Transport Equipment Seal. Sealing Party Type. Text + The role of the sealing party. + 0..1 + Transport Equipment Seal + Sealing Party Type + Text + Text. Type + Sealing Party + + + + + + + + + + + ABIE + Transport Event. Details + A class to describe a significant occurrence or happening related to the transportation of goods. + Transport Event + + + + + + + + + BBIE + Transport Event. Identification. Identifier + An identifier for this transport event within an agreed event identification scheme. + 0..1 + Transport Event + Identification + Identifier + Identifier. Type + + + + + + + + + BBIE + Transport Event. Occurrence Date. Date + The date of this transport event. + 0..1 + Transport Event + Occurrence Date + Date + Date. Type + + + + + + + + + BBIE + Transport Event. Occurrence Time. Time + The time of this transport event. + 0..1 + Transport Event + Occurrence Time + Time + Time. Type + + + + + + + + + BBIE + Transport Event. Transport Event Type Code. Code + A code signifying the type of this transport event. + 0..1 + Transport Event + Transport Event Type Code + Code + Code. Type + + + + + + + + + BBIE + Transport Event. Description. Text + Text describing this transport event. + 0..n + Transport Event + Description + Text + Text. Type + + + + + + + + + BBIE + Transport Event. Completion_ Indicator. Indicator + An indicator that this transport event has been completed (true) or not (false). + 0..1 + Transport Event + Completion + Indicator + Indicator + Indicator. Type + + + + + + + + + ASBIE + Transport Event. Reported_ Shipment. Shipment + The shipment involved in this transport event. + 0..1 + Transport Event + Reported + Shipment + Shipment + Shipment + + + + + + + + + ASBIE + Transport Event. Current_ Status. Status + The current status of this transport event. + 0..n + Transport Event + Current + Status + Status + Status + + + + + + + + + ASBIE + Transport Event. Contact + A contact associated with this transport event. + 0..n + Transport Event + Contact + Contact + Contact + + + + + + + + + ASBIE + Transport Event. Location + The location associated with this transport event. + 0..1 + Transport Event + Location + Location + Location + + + + + + + + + ASBIE + Transport Event. Signature + A signature that can be used to sign for an entry or an exit at a transport location (e.g., port terminal). + 0..1 + Transport Event + Signature + Signature + Signature + + + + + + + + + ASBIE + Transport Event. Period + A period of time associated with this transport event. + 0..n + Transport Event + Period + Period + Period + + + + + + + + + + + ABIE + Transport Execution Terms. Details + A class to describe terms applying to a transport execution plan. + Transport Execution Terms + + + + + + + + + BBIE + Transport Execution Terms. Transport User_ Special Terms. Text + Text describing special terms specified by the transport user. + 0..n + Transport Execution Terms + Transport User + Special Terms + Text + Text. Type + + + + + + + + + BBIE + Transport Execution Terms. Transport Service Provider_ Special Terms. Text + Text describing special terms specified by the transport service provider. + 0..n + Transport Execution Terms + Transport Service Provider + Special Terms + Text + Text. Type + + + + + + + + + BBIE + Transport Execution Terms. Change Conditions. Text + Text describing conditions applying to a change of these transport execution terms. + 0..n + Transport Execution Terms + Change Conditions + Text + Text. Type + + + + + + + + + ASBIE + Transport Execution Terms. Payment Terms + Payment terms associated with the transportation service. + 0..n + Transport Execution Terms + Payment Terms + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Transport Execution Terms. Delivery Terms + Delivery terms (e.g., Incoterms) associated with the transportation service. + 0..n + Transport Execution Terms + Delivery Terms + Delivery Terms + Delivery Terms + + + + + + + + + ASBIE + Transport Execution Terms. Bonus_ Payment Terms. Payment Terms + Terms relating to payment of applicable bonuses associated with the transport service. + 0..1 + Transport Execution Terms + Bonus + Payment Terms + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Transport Execution Terms. Commission_ Payment Terms. Payment Terms + Terms of payment applying to a commission specified in the transport execution plan. + 0..1 + Transport Execution Terms + Commission + Payment Terms + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Transport Execution Terms. Penalty_ Payment Terms. Payment Terms + Terms of payment applying to a penalty specified in the transport execution plan. + 0..1 + Transport Execution Terms + Penalty + Payment Terms + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Transport Execution Terms. Environmental Emission + An environmental emission resulting from the transportation service. + 0..n + Transport Execution Terms + Environmental Emission + Environmental Emission + Environmental Emission + + + + + + + + + ASBIE + Transport Execution Terms. Notification Requirement + A notification requirement related to the transportation service; e.g., a requirement that the transport user should be notified when goods are ready for pickup. + 0..n + Transport Execution Terms + Notification Requirement + Notification Requirement + Notification Requirement + + + + + + + + + ASBIE + Transport Execution Terms. Service Charge_ Payment Terms. Payment Terms + Payment terms for the service charge associated with the transport service. + 0..1 + Transport Execution Terms + Service Charge + Payment Terms + Payment Terms + Payment Terms + + + + + + + + + + + ABIE + Transport Handling Unit. Details + A class to describe a uniquely identifiable unit consisting of one or more packages, goods items, or pieces of transport equipment. + Transport Handling Unit + Logistics Unit, Handling Unit, THU + + + + + + + + + BBIE + Transport Handling Unit. Identifier + An identifier for this transport handling unit. + 0..1 + Transport Handling Unit + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Transport Handling Unit. Transport Handling Unit Type Code. Code + A code signifying the type of this transport handling unit. + 0..1 + Transport Handling Unit + Transport Handling Unit Type Code + Code + Code. Type + + + + + + + + + BBIE + Transport Handling Unit. Handling Code. Code + The handling required for this transport handling unit, expressed as a code. + 0..1 + Transport Handling Unit + Handling Code + Code + Code. Type + Special Handling + + + + + + + + + BBIE + Transport Handling Unit. Handling_ Instructions. Text + The handling required for this transport handling unit, expressed as text. + 0..n + Transport Handling Unit + Handling + Instructions + Text + Text. Type + + + + + + + + + BBIE + Transport Handling Unit. Hazardous Risk_ Indicator. Indicator + An indicator that the materials contained in this transport handling unit are subject to an international regulation concerning the carriage of dangerous goods (true) or not (false). + 0..1 + Transport Handling Unit + Hazardous Risk + Indicator + Indicator + Indicator. Type + Default is negative + + + + + + + + + BBIE + Transport Handling Unit. Total_ Goods Item Quantity. Quantity + The total number of goods items in this transport handling unit. + 0..1 + Transport Handling Unit + Total + Goods Item Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Transport Handling Unit. Total_ Package Quantity. Quantity + The total number of packages in this transport handling unit. + 0..1 + Transport Handling Unit + Total + Package Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Transport Handling Unit. Damage_ Remarks. Text + Text describing damage associated with this transport handling unit. + 0..n + Transport Handling Unit + Damage + Remarks + Text + Text. Type + + + + + + + + + BBIE + Transport Handling Unit. Shipping_ Marks. Text + Text describing the marks and numbers on this transport handling unit. + 0..n + Transport Handling Unit + Shipping + Marks + Text + Text. Type + Marks and Numbers, Shipping Marks + + + + + + + + + BBIE + Transport Handling Unit. Trace_ Identifier. Identifier + An identifier for use in tracing this transport handling unit, such as the EPC number used in RFID. + 0..1 + Transport Handling Unit + Trace + Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Transport Handling Unit. Handling Unit_ Despatch Line. Despatch Line + A despatch line associated with this transport handling unit. + 0..n + Transport Handling Unit + Handling Unit + Despatch Line + Despatch Line + Despatch Line + + + + + + + + + ASBIE + Transport Handling Unit. Actual_ Package. Package + A package contained in this transport handling unit. + 0..n + Transport Handling Unit + Actual + Package + Package + Package + + + + + + + + + ASBIE + Transport Handling Unit. Received Handling Unit_ Receipt Line. Receipt Line + A receipt line associated with this transport handling unit. + 0..n + Transport Handling Unit + Received Handling Unit + Receipt Line + Receipt Line + Receipt Line + + + + + + + + + ASBIE + Transport Handling Unit. Transport Equipment + A piece of transport equipment associated with this transport handling unit. + 0..n + Transport Handling Unit + Transport Equipment + Transport Equipment + Transport Equipment + + + + + + + + + ASBIE + Transport Handling Unit. Transport Means + A means of transport associated with this transport handling unit. + 0..n + Transport Handling Unit + Transport Means + Transport Means + Transport Means + + + + + + + + + ASBIE + Transport Handling Unit. Hazardous Goods Transit + Transit-related information regarding a type of hazardous goods contained in this transport handling unit. + 0..n + Transport Handling Unit + Hazardous Goods Transit + Hazardous Goods Transit + Hazardous Goods Transit + + + + + + + + + ASBIE + Transport Handling Unit. Measurement_ Dimension. Dimension + A measurable dimension (length, mass, weight, or volume) of this transport handling unit. + 0..n + Transport Handling Unit + Measurement + Dimension + Dimension + Dimension + + + + + + + + + ASBIE + Transport Handling Unit. Minimum_ Temperature. Temperature + The minimum required operating temperature of this transport handling unit. + 0..1 + Transport Handling Unit + Minimum + Temperature + Temperature + Temperature + + + + + + + + + ASBIE + Transport Handling Unit. Maximum_ Temperature. Temperature + The maximum allowable operating temperature of this transport handling unit. + 0..1 + Transport Handling Unit + Maximum + Temperature + Temperature + Temperature + + + + + + + + + ASBIE + Transport Handling Unit. Goods Item + A goods item contained in this transport handling unit. + 0..n + Transport Handling Unit + Goods Item + Goods Item + Goods Item + + + + + + + + + ASBIE + Transport Handling Unit. Floor Space Measurement_ Dimension. Dimension + The floor space measurement dimension associated with this transport handling unit. + 0..1 + Transport Handling Unit + Floor Space Measurement + Dimension + Dimension + Dimension + + + + + + + + + ASBIE + Transport Handling Unit. Pallet Space Measurement_ Dimension. Dimension + The pallet space measurement dimension associated to this transport handling unit. + 0..1 + Transport Handling Unit + Pallet Space Measurement + Dimension + Dimension + Dimension + + + + + + + + + ASBIE + Transport Handling Unit. Shipment_ Document Reference. Document Reference + A reference to a shipping document associated with this transport handling unit. + 0..n + Transport Handling Unit + Shipment + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Transport Handling Unit. Status + The status of this transport handling unit. + 0..n + Transport Handling Unit + Status + Status + Status + + + + + + + + + ASBIE + Transport Handling Unit. Customs Declaration + Describes identifiers or references relating to customs procedures. + 0..n + Transport Handling Unit + Customs Declaration + Customs Declaration + Customs Declaration + + + + + + + + + ASBIE + Transport Handling Unit. Referenced_ Shipment. Shipment + A shipment associated with this transport handling unit. + 0..n + Transport Handling Unit + Referenced + Shipment + Shipment + Shipment + + + + + + + + + ASBIE + Transport Handling Unit. Package + A package contained in this transport handling unit. + 0..n + Transport Handling Unit + Package + Package + Package + + + + + + + + + + + ABIE + Transport Means. Details + A class to describe a particular vehicle or vessel used for the conveyance of goods or persons. + Transport Means + Conveyance + + + + + + + + + BBIE + Transport Means. Journey Identifier. Identifier + An identifier for the regular service schedule of this means of transport. + 0..1 + Transport Means + Journey Identifier + Identifier + Identifier. Type + Voyage Number, Scheduled Conveyance Identifier (WCO ID 205), Flight Number + + + + + + + + + BBIE + Transport Means. Registration_ Nationality Identifier. Identifier + An identifier for the country in which this means of transport is registered. + 0..1 + Transport Means + Registration + Nationality Identifier + Identifier + Identifier. Type + Nationality of Means of Transport (WCO 175, 178 and 179) + LIB + + + + + + + + + BBIE + Transport Means. Registration_ Nationality. Text + Text describing the country in which this means of transport is registered. + 0..n + Transport Means + Registration + Nationality + Text + Text. Type + Flag of Vessel, Nationality of Ship + Liberia + + + + + + + + + BBIE + Transport Means. Direction Code. Code + A code signifying the direction of this means of transport. + 0..1 + Transport Means + Direction Code + Code + Code. Type + Transit Direction + North , East + + + + + + + + + BBIE + Transport Means. Transport Means Type Code. Code + A code signifying the type of this means of transport (truck, vessel, etc.). + 0..1 + Transport Means + Transport Means Type Code + Code + Code. Type + + + + + + + + + BBIE + Transport Means. Trade Service Code. Code + A code signifying the service regularly provided by the carrier operating this means of transport. + 0..1 + Transport Means + Trade Service Code + Code + Code. Type + + + + + + + + + ASBIE + Transport Means. Stowage + The location within the means of transport where goods are to be or have been stowed. + 0..1 + Transport Means + Stowage + Stowage + Stowage + + + + + + + + + ASBIE + Transport Means. Air Transport + An aircraft used for transport. + 0..1 + Transport Means + Air Transport + Air Transport + Air Transport + + + + + + + + + ASBIE + Transport Means. Road Transport + A vehicle used for road transport. + 0..1 + Transport Means + Road Transport + Road Transport + Road Transport + + + + + + + + + ASBIE + Transport Means. Rail Transport + Equipment used for rail transport. + 0..1 + Transport Means + Rail Transport + Rail Transport + Rail Transport + + + + + + + + + ASBIE + Transport Means. Maritime Transport + A vessel used for transport by water (not only by sea). + 0..1 + Transport Means + Maritime Transport + Maritime Transport + Maritime Transport + + + + + + + + + ASBIE + Transport Means. Owner_ Party. Party + The party that owns this means of transport. + 0..1 + Transport Means + Owner + Party + Party + Party + + + + + + + + + ASBIE + Transport Means. Measurement_ Dimension. Dimension + A measurable dimension (length, mass, weight, or volume) of this means of transport. + 0..n + Transport Means + Measurement + Dimension + Dimension + Dimension + + + + + + + + + + + ABIE + Transport Schedule. Details + Describes the location and schedule relating to a transport means. + Transport Schedule + + + + + + + + + BBIE + Transport Schedule. Sequence. Numeric + A number indicating the order of this status in the sequence in which statuses are to be presented. + 1 + Transport Schedule + Sequence + Numeric + Numeric. Type + + + + + + + + + BBIE + Transport Schedule. Reference Date. Date + The reference date for the transport schedule status. + 0..1 + Transport Schedule + Reference Date + Date + Date. Type + + + + + + + + + BBIE + Transport Schedule. Reference Time. Time + The reference time for the transport schedule status. + 0..1 + Transport Schedule + Reference Time + Time + Time. Type + + + + + + + + + BBIE + Transport Schedule. Reliability Percent. Percent + The reliability of the transport schedule status, expressed as a percentage. + 0..1 + Transport Schedule + Reliability Percent + Percent + Percent. Type + + + + + + + + + BBIE + Transport Schedule. Remarks. Text + Remarks related to the transport schedule status. + 0..n + Transport Schedule + Remarks + Text + Text. Type + + + + + + + + + ASBIE + Transport Schedule. Status_ Location. Location + The location for which status is reported. + 1 + Transport Schedule + Status + Location + Location + Location + + + + + + + + + ASBIE + Transport Schedule. Actual Arrival_ Transport Event. Transport Event + The actual arrival at a location. + 0..1 + Transport Schedule + Actual Arrival + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Schedule. Actual Departure_ Transport Event. Transport Event + The actual departure from a location. + 0..1 + Transport Schedule + Actual Departure + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Schedule. Estimated Departure_ Transport Event. Transport Event + An estimated departure from a specified location. + 0..1 + Transport Schedule + Estimated Departure + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Schedule. Estimated Arrival_ Transport Event. Transport Event + An estimated arrival at a specified location. + 0..1 + Transport Schedule + Estimated Arrival + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Schedule. Planned Departure_ Transport Event. Transport Event + The planned departure from a specified location. + 0..1 + Transport Schedule + Planned Departure + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Schedule. Planned Arrival_ Transport Event. Transport Event + The planned arrival at a specified location. + 0..1 + Transport Schedule + Planned Arrival + Transport Event + Transport Event + Transport Event + + + + + + + + + + + ABIE + Transportation Segment. Details + A class to describe one segment or leg in a transportation service. + Transportation Segment + + + + + + + + + BBIE + Transportation Segment. Sequence. Numeric + A number indicating the order of this segment in the sequence of transportation segments making up a transportation service. + 1 + Transportation Segment + Sequence + Numeric + Numeric. Type + 1, 2, 3, 4, etc. + + + + + + + + + BBIE + Transportation Segment. Transport Execution Plan Reference. Identifier + An identifier for the transport execution plan governing this transportation segment. + 0..1 + Transportation Segment + Transport Execution Plan Reference + Identifier + Identifier. Type + + + + + + + + + ASBIE + Transportation Segment. Transportation Service + The transportation service used in this transportation segment. + 1 + Transportation Segment + Transportation Service + Transportation Service + Transportation Service + + + + + + + + + ASBIE + Transportation Segment. Transport Service Provider_ Party. Party + The transport service provider responsible for carrying out transportation services in this transportation segment. + 1 + Transportation Segment + Transport Service Provider + Party + Party + Party + + + + + + + + + ASBIE + Transportation Segment. Referenced_ Consignment. Consignment + A consignment referenced in this transportation segment. Such a consignment may have different identifiers than the consignment identifiers being used in the transportation service agreed between the transport user and the transport service provider. + 0..1 + Transportation Segment + Referenced + Consignment + Consignment + Consignment + + + + + + + + + ASBIE + Transportation Segment. Shipment Stage + The shipment stage associated with this transportation segment. + 0..n + Transportation Segment + Shipment Stage + Shipment Stage + Shipment Stage + + + + + + + + + + + ABIE + Transportation Service. Details + A class to describe a transportation service. + Transportation Service + + + + + + + + + BBIE + Transportation Service. Transport Service Code. Code + A code signifying the extent of this transportation service (e.g., door-to-door, port-to-port). + 1 + Transportation Service + Transport Service Code + Code + Code. Type + + + + + + + + + BBIE + Transportation Service. Tariff Class Code. Code + A code signifying the tariff class applicable to this transportation service. + 0..1 + Transportation Service + Tariff Class Code + Code + Code. Type + Tariff Class Specifier + + + + + + + + + BBIE + Transportation Service. Priority. Text + The priority of this transportation service. + 0..1 + Transportation Service + Priority + Text + Text. Type + + + + + + + + + BBIE + Transportation Service. Freight Rate Class Code. Code + A code signifying the rate class for freight in this transportation service. + 0..1 + Transportation Service + Freight Rate Class Code + Code + Code. Type + Charge Basis + + + + + + + + + BBIE + Transportation Service. Transportation Service Description. Text + Text describing this transportation service. + 0..n + Transportation Service + Transportation Service Description + Text + Text. Type + + + + + + + + + BBIE + Transportation Service. Transportation Service Details URI. Identifier + The Uniform Resource Identifier (URI) of a document providing additional details regarding this transportation service. + 0..1 + Transportation Service + Transportation Service Details URI + Identifier + Identifier. Type + + + + + + + + + BBIE + Transportation Service. Nomination Date. Date + In a transport contract, the deadline date by which this transportation service has to be booked. For example, if this service is scheduled for Wednesday 16 February 2011 at 10 a.m. CET, the nomination date might be Tuesday15 February 2011. + 0..1 + Transportation Service + Nomination Date + Date + Date. Type + + + + + + + + + BBIE + Transportation Service. Nomination Time. Time + In a transport contract, the deadline time by which this transportation service has to be booked. For example, if this service is scheduled for Wednesday 16 February 2011 at 10 a.m. CET, the nomination date might be Tuesday15 February 2011 and the nomination time 4 p.m. at the latest. + 0..1 + Transportation Service + Nomination Time + Time + Time. Type + + + + + + + + + BBIE + Transportation Service. Name + The name of this transportation service. + 0..1 + Transportation Service + Name + Name + Name. Type + + + + + + + + + BBIE + Transportation Service. Sequence. Numeric + A number indicating the order of this transportation service in a sequence of transportation services. + 0..1 + Transportation Service + Sequence + Numeric + Numeric. Type + + + + + + + + + ASBIE + Transportation Service. Transport Equipment + A piece of transport equipment used in this transportation service. + 0..n + Transportation Service + Transport Equipment + Transport Equipment + Transport Equipment + + + + + + + + + ASBIE + Transportation Service. Supported_ Transport Equipment. Transport Equipment + A piece of transport equipment supported in this transportation service. + 0..n + Transportation Service + Supported + Transport Equipment + Transport Equipment + Transport Equipment + + + + + + + + + ASBIE + Transportation Service. Unsupported_ Transport Equipment. Transport Equipment + A piece of transport equipment that is not supported in this transportation service. + 0..n + Transportation Service + Unsupported + Transport Equipment + Transport Equipment + Transport Equipment + + + + + + + + + ASBIE + Transportation Service. Commodity Classification + A classification of this transportation service. + 0..n + Transportation Service + Commodity Classification + Commodity Classification + Commodity Classification + + + + + + + + + ASBIE + Transportation Service. Supported_ Commodity Classification. Commodity Classification + A classification (e.g., general cargo) for commodities that can be handled in this transportation service. + 0..n + Transportation Service + Supported + Commodity Classification + Commodity Classification + Commodity Classification + + + + + + + + + ASBIE + Transportation Service. Unsupported_ Commodity Classification. Commodity Classification + A classification for commodities that cannot be handled in this transportation service. + 0..n + Transportation Service + Unsupported + Commodity Classification + Commodity Classification + Commodity Classification + + + + + + + + + ASBIE + Transportation Service. Total Capacity_ Dimension. Dimension + The total capacity or volume available in this transportation service. + 0..1 + Transportation Service + Total Capacity + Dimension + Dimension + Dimension + + + + + + + + + ASBIE + Transportation Service. Shipment Stage + One of the stages of shipment in this transportation service. + 0..n + Transportation Service + Shipment Stage + Shipment Stage + Shipment Stage + + + + + + + + + ASBIE + Transportation Service. Transport Event + One of the transport events taking place in this transportation service. + 0..n + Transportation Service + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Transportation Service. Responsible Transport Service Provider_ Party. Party + The transport service provider responsible for this transportation service. + 0..1 + Transportation Service + Responsible Transport Service Provider + Party + Party + Party + + + + + + + + + ASBIE + Transportation Service. Environmental Emission + An environmental emission resulting from this transportation service. + 0..n + Transportation Service + Environmental Emission + Environmental Emission + Environmental Emission + + + + + + + + + ASBIE + Transportation Service. Estimated Duration_ Period. Period + The estimated duration of this transportation service. + 0..1 + Transportation Service + Estimated Duration + Period + Period + Period + + + + + + + + + ASBIE + Transportation Service. Scheduled_ Service Frequency. Service Frequency + A class to specify which day of the week a transport service is operational. + 0..n + Transportation Service + Scheduled + Service Frequency + Service Frequency + Service Frequency + + + + + + + + + + + ABIE + Unstructured Price. Details + A simplified version of the Price class intended for applications such as telephone billing. + Unstructured Price + + + + + + + + + BBIE + Unstructured Price. Price Amount. Amount + The price amount. + 0..1 + Unstructured Price + Price Amount + Amount + Amount. Type + 23.45 + + + + + + + + + BBIE + Unstructured Price. Time Amount. Text + The usage time upon which the price is based. + 0..1 + Unstructured Price + Time Amount + Text + Text. Type + + + + + + + + + + + ABIE + Utility Item. Details + A class to describe the consumption of a utility product. + Utility Item + + + + + + + + + BBIE + Utility Item. Identifier + An identifier for this utility item. + 1 + Utility Item + Identifier + Identifier + Identifier. Type + 1 + + + + + + + + + BBIE + Utility Item. Subscriber Identifier. Identifier + An identifier for the subscriber to the utility. + 0..1 + Utility Item + Subscriber Identifier + Identifier + Identifier. Type + 98143211 + + + + + + + + + BBIE + Utility Item. Subscriber Type. Text + Identification of the subscriber type, expressed as text.. + 0..1 + Utility Item + Subscriber Type + Text + Text. Type + + + + + + + + + BBIE + Utility Item. Subscriber Type Code. Code + The code identifying for the service type. + 0..1 + Utility Item + Subscriber Type Code + Code + Code. Type + + + + + + + + + BBIE + Utility Item. Description. Text + Text describing the consumption product. + 0..n + Utility Item + Description + Text + Text. Type + Basis price quarter (5.761 kWh per 35,58 cents), Transport of electricity, etc. + + + + + + + + + BBIE + Utility Item. Pack Quantity. Quantity + The unit packaging quantity. + 0..1 + Utility Item + Pack Quantity + Quantity + Quantity. Type + 1 + + + + + + + + + BBIE + Utility Item. Pack Size. Numeric + The number of items in a pack. + 0..1 + Utility Item + Pack Size + Numeric + Numeric. Type + + + + + + + + + BBIE + Utility Item. Consumption Type. Text + The type of product consumed, expressed as text. + 0..1 + Utility Item + Consumption Type + Text + Text. Type + Consumption + + + + + + + + + BBIE + Utility Item. Consumption Type Code. Code + The type of product consumed, expressed as a code. + 0..1 + Utility Item + Consumption Type Code + Code + Code. Type + Consumption + + + + + + + + + BBIE + Utility Item. Current_ Charge Type. Text + Information of the actual payments type for the utility Item + 0..1 + Utility Item + Current + Charge Type + Text + Text. Type + + + + + + + + + BBIE + Utility Item. Current_ Charge Type Code. Code + Information of the actual payments type code expressed as a code + 0..1 + Utility Item + Current + Charge Type Code + Code + Code. Type + + + + + + + + + BBIE + Utility Item. One Time_ Charge Type. Text + Information about the one-time payment type in case everything is paid One time + 0..1 + Utility Item + One Time + Charge Type + Text + Text. Type + + + + + + + + + BBIE + Utility Item. One Time_ Charge Type Code. Code + Information about the one-time payment type code + 0..1 + Utility Item + One Time + Charge Type Code + Code + Code. Type + + + + + + + + + ASBIE + Utility Item. Tax Category + The tax category applicable to this utility item. + 0..1 + Utility Item + Tax Category + Tax Category + Tax Category + + + + + + + + + ASBIE + Utility Item. Contract + A contract setting forth conditions applicable to this utility item. + 0..1 + Utility Item + Contract + Contract + Contract + + + + + + + + + + + ABIE + Web Site Access. Details + A class to describe access to a web site. + Web Site Access + + + + + + + + + BBIE + Web Site Access. URI. Identifier + The Uniform Resource Identifier (URI) for this web site; i.e., its Uniform Resource Locator (URL). + 0..1 + Web Site Access + URI + Identifier + Identifier. Type + + + + + + + + + BBIE + Web Site Access. Password. Text + A password to the web site. + 1 + Web Site Access + Password + Text + Text. Type + confidence + + + + + + + + + BBIE + Web Site Access. Login. Text + Text describing login details. + 1 + Web Site Access + Login + Text + Text. Type + Utsuser + + + + + + + + + + + ABIE + Winning Party. Details + A party that is identified as the awarded by a tender result. + Winning Party + + + + + + + + + BBIE + Winning Party. Rank. Text + Indicates the rank obtained in the award. + 0..1 + Winning Party + Rank + Text + Text. Type + + + + + + + + + ASBIE + Winning Party. Party + Information about an organization, sub-organization, or individual fulfilling a role in a business process. + 1 + Winning Party + Party + Party + Party + + + + + + + + + + + ABIE + Work Phase Reference. Details + A class that refers to a phase of work. Used for instance to specify what part of the contract the billing is referring to. + Work Phase Reference + + + + + + + + + BBIE + Work Phase Reference. Identifier + An identifier for this phase of work. + 0..1 + Work Phase Reference + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Work Phase Reference. Work Phase Code. Code + A code signifying this phase of work. + 0..1 + Work Phase Reference + Work Phase Code + Code + Code. Type + + + + + + + + + BBIE + Work Phase Reference. Work Phase. Text + Text describing this phase of work. + 0..n + Work Phase Reference + Work Phase + Text + Text. Type + + + + + + + + + BBIE + Work Phase Reference. Progress Percent. Percent + The progress percentage of the work phase. + 0..1 + Work Phase Reference + Progress Percent + Percent + Percent. Type + + + + + + + + + BBIE + Work Phase Reference. Start Date. Date + The date on which this phase of work begins. + 0..1 + Work Phase Reference + Start Date + Date + Date. Type + + + + + + + + + BBIE + Work Phase Reference. End Date. Date + The date on which this phase of work ends. + 0..1 + Work Phase Reference + End Date + Date + Date. Type + + + + + + + + + ASBIE + Work Phase Reference. Work Order_ Document Reference. Document Reference + A reference to a document regarding the work order for the project in which this phase of work takes place. + 0..n + Work Phase Reference + Work Order + Document Reference + Document Reference + Document Reference + + + + + + + + +]]>http://www.w3.org/2001/XMLSchemahttp://docs.oasis-open.org/ubl/os-UBL-2.1/xsd/common/UBL-CommonBasicComponents-2.1.xsd + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +]]>http://www.w3.org/2001/XMLSchemahttp://docs.oasis-open.org/ubl/os-UBL-2.1/xsd/common/UBL-QualifiedDataTypes-2.1.xsd + + + + + + + +]]>http://www.w3.org/2001/XMLSchemahttp://docs.oasis-open.org/ubl/os-UBL-2.1/xsd/common/UBL-UnqualifiedDataTypes-2.1.xsd + + + + + + + + UBLUDT000001 + UDT + Amount. Type + 1.0 + A number of monetary units specified using a given unit of currency. + Amount + + + + + + + + UNDT000001-SC2 + SC + Amount. Currency. Identifier + The currency of the amount. + Amount Currency + Identification + Identifier + string + Reference UNECE Rec 9, using 3-letter alphabetic codes. + + + + + + + + + + UBLUDT000002 + UDT + Binary Object. Type + 1.0 + A set of finite-length sequences of binary octets. + Binary Object + binary + + + + + + + + UNDT000002-SC3 + SC + Binary Object. Mime. Code + The mime type of the binary object. + Binary Object + Mime + Code + string + + + + + + + + + + UBLUDT000003 + UDT + Graphic. Type + 1.0 + A diagram, graph, mathematical curve, or similar representation. + Graphic + binary + + + + + + + + UNDT000003-SC3 + SC + Graphic. Mime. Code + The mime type of the graphic object. + Graphic + Mime + Code + normalizedString + + + + + + + + + + UBLUDT000004 + UDT + Picture. Type + 1.0 + A diagram, graph, mathematical curve, or similar representation. + Picture + binary + + + + + + + + UNDT000004-SC3 + SC + Picture. Mime. Code + The mime type of the picture object. + Picture + Mime + Code + normalizedString + + + + + + + + + + UBLUDT000005 + UDT + Sound. Type + 1.0 + An audio representation. + Sound + binary + + + + + + + + UNDT000005-SC3 + SC + Sound. Mime. Code + The mime type of the sound object. + Sound + Mime + Code + normalizedString + + + + + + + + + + UBLUDT000006 + UDT + Video. Type + 1.0 + A video representation. + Video + binary + + + + + + + + UNDT000006-SC3 + SC + Video. Mime. Code + The mime type of the video object. + Video + Mime + Code + normalizedString + + + + + + + + + + UBLUDT000007 + UDT + Code. Type + 1.0 + A character string (letters, figures, or symbols) that for brevity and/or language independence may be used to represent or replace a definitive value or text of an attribute, together with relevant supplementary information. + Code + string + Other supplementary components in the CCT are captured as part of the token and name for the schema module containing the code list and thus, are not declared as attributes. + + + + + + + + + + UBLUDT000008 + UDT + Date Time. Type + 1.0 + A particular point in the progression of time, together with relevant supplementary information. + Date Time + string + Can be used for a date and/or time. + + + + + + + + + + UBLUDT000009 + UDT + Date. Type + 1.0 + One calendar day according the Gregorian calendar. + Date + string + + + + + + + + + + UBLUDT0000010 + UDT + Time. Type + 1.0 + An instance of time that occurs every day. + Time + string + + + + + + + + + + UBLUDT0000011 + UDT + Identifier. Type + 1.0 + A character string to identify and uniquely distinguish one instance of an object in an identification scheme from all other objects in the same scheme, together with relevant supplementary information. + Identifier + string + Other supplementary components in the CCT are captured as part of the token and name for the schema module containing the identifier list and thus, are not declared as attributes. + + + + + + + + + + UBLUDT0000012 + UDT + Indicator. Type + 1.0 + A list of two mutually exclusive Boolean values that express the only possible states of a property. + Indicator + string + + + + + + + + + + UBLUDT0000013 + UDT + Measure. Type + 1.0 + A numeric value determined by measuring an object using a specified unit of measure. + Measure + Type + decimal + + + + + + + + UNDT000013-SC2 + SC + Measure. Unit. Code + The type of unit of measure. + Measure Unit + Code + Code + normalizedString + Reference UNECE Rec. 20 and X12 355 + + + + + + + + + + UBLUDT0000014 + UDT + Numeric. Type + 1.0 + Numeric information that is assigned or is determined by calculation, counting, or sequencing. It does not require a unit of quantity or unit of measure. + Numeric + string + + + + + + + + + + UBLUDT0000015 + UDT + 1.0 + Value. Type + Numeric information that is assigned or is determined by calculation, counting, or sequencing. It does not require a unit of quantity or unit of measure. + Value + string + + + + + + + + + + UBLUDT0000016 + UDT + 1.0 + Percent. Type + Numeric information that is assigned or is determined by calculation, counting, or sequencing and is expressed as a percentage. It does not require a unit of quantity or unit of measure. + Percent + string + + + + + + + + + + UBLUDT0000017 + UDT + 1.0 + Rate. Type + A numeric expression of a rate that is assigned or is determined by calculation, counting, or sequencing. It does not require a unit of quantity or unit of measure. + Rate + string + + + + + + + + + + UBLUDT0000018 + UDT + Quantity. Type + 1.0 + A counted number of non-monetary units, possibly including a fractional part. + Quantity + decimal + + + + + + + + + + UBLUDT0000019 + UDT + Text. Type + 1.0 + A character string (i.e. a finite set of characters), generally in the form of words of a language. + Text + string + + + + + + + + + + UBLUDT0000020 + UDT + Name. Type + 1.0 + A character string that constitutes the distinctive designation of a person, place, thing or concept. + Name + string + + + + + + + + +]]>http://www.w3.org/2001/XMLSchemahttp://docs.oasis-open.org/ubl/os-UBL-2.1/xsd/common/CCTS_CCT_SchemaModule-2.1.xsd + + + + + + + + + + + + UNDT000001 + CCT + Amount. Type + 1.0 + A number of monetary units specified in a currency where the unit of the currency is explicit or implied. + Amount + decimal + + + + + + + + UNDT000001-SC2 + SC + Amount Currency. Identifier + The currency of the amount. + Amount Currency + Identification + Identifier + string + Reference UNECE Rec 9, using 3-letter alphabetic codes. + + + + + + + UNDT000001-SC3 + SC + Amount Currency. Code List Version. Identifier + The VersionID of the UN/ECE Rec9 code list. + Amount Currency + Code List Version + Identifier + string + + + + + + + + + + + + UNDT000002 + CCT + Binary Object. Type + 1.0 + A set of finite-length sequences of binary octets. + Binary Object + binary + + + + + + + + UNDT000002-SC2 + SC + Binary Object. Format. Text + The format of the binary content. + Binary Object + Format + Text + string + + + + + + + UNDT000002-SC3 + SC + Binary Object. Mime. Code + The mime type of the binary object. + Binary Object + Mime + Code + string + + + + + + + UNDT000002-SC4 + SC + Binary Object. Encoding. Code + Specifies the decoding algorithm of the binary object. + Binary Object + Encoding + Code + string + + + + + + + UNDT000002-SC5 + SC + Binary Object. Character Set. Code + The character set of the binary object if the mime type is text. + Binary Object + Character Set + Code + string + + + + + + + UNDT000002-SC6 + SC + Binary Object. Uniform Resource. Identifier + The Uniform Resource Identifier that identifies where the binary object is located. + Binary Object + Uniform Resource Identifier + Identifier + string + + + + + + + UNDT000002-SC7 + SC + Binary Object. Filename.Text + The filename of the binary object. + Binary Object + Filename + Text + string + + + + + + + + + + + + UNDT000007 + CCT + Code. Type + 1.0 + A character string (letters, figures, or symbols) that for brevity and/or languange independence may be used to represent or replace a definitive value or text of an attribute together with relevant supplementary information. + Code + string + Should not be used if the character string identifies an instance of an object class or an object in the real world, in which case the Identifier. Type should be used. + + + + + + + + UNDT000007-SC2 + SC + Code List. Identifier + The identification of a list of codes. + Code List + Identification + Identifier + string + + + + + + + UNDT000007-SC3 + SC + Code List. Agency. Identifier + An agency that maintains one or more lists of codes. + Code List + Agency + Identifier + string + Defaults to the UN/EDIFACT data element 3055 code list. + + + + + + + UNDT000007-SC4 + SC + Code List. Agency Name. Text + The name of the agency that maintains the list of codes. + Code List + Agency Name + Text + string + + + + + + + UNDT000007-SC5 + SC + Code List. Name. Text + The name of a list of codes. + Code List + Name + Text + string + + + + + + + UNDT000007-SC6 + SC + Code List. Version. Identifier + The version of the list of codes. + Code List + Version + Identifier + string + + + + + + + UNDT000007-SC7 + SC + Code. Name. Text + The textual equivalent of the code content component. + Code + Name + Text + string + + + + + + + UNDT000007-SC8 + SC + Language. Identifier + The identifier of the language used in the code name. + Language + Identification + Identifier + string + + + + + + + UNDT000007-SC9 + SC + Code List. Uniform Resource. Identifier + The Uniform Resource Identifier that identifies where the code list is located. + Code List + Uniform Resource Identifier + Identifier + string + + + + + + + UNDT000007-SC10 + SC + Code List Scheme. Uniform Resource. Identifier + The Uniform Resource Identifier that identifies where the code list scheme is located. + Code List Scheme + Uniform Resource Identifier + Identifier + string + + + + + + + + + + + + UNDT000008 + CCT + Date Time. Type + 1.0 + A particular point in the progression of time together with the relevant supplementary information. + Date Time + string + Can be used for a date and/or time. + + + + + + + + UNDT000008-SC1 + SC + Date Time. Format. Text + The format of the date time content + Date Time + Format + Text + string + + + + + + + + + + + + UNDT000011 + CCT + Identifier. Type + 1.0 + A character string to identify and distinguish uniquely, one instance of an object in an identification scheme from all other objects in the same scheme together with relevant supplementary information. + Identifier + string + + + + + + + + UNDT000011-SC2 + SC + Identification Scheme. Identifier + The identification of the identification scheme. + Identification Scheme + Identification + Identifier + string + + + + + + + UNDT000011-SC3 + SC + Identification Scheme. Name. Text + The name of the identification scheme. + Identification Scheme + Name + Text + string + + + + + + + UNDT000011-SC4 + SC + Identification Scheme Agency. Identifier + The identification of the agency that maintains the identification scheme. + Identification Scheme Agency + Identification + Identifier + string + Defaults to the UN/EDIFACT data element 3055 code list. + + + + + + + UNDT000011-SC5 + SC + Identification Scheme Agency. Name. Text + The name of the agency that maintains the identification scheme. + Identification Scheme Agency + Agency Name + Text + string + + + + + + + UNDT000011-SC6 + SC + Identification Scheme. Version. Identifier + The version of the identification scheme. + Identification Scheme + Version + Identifier + string + + + + + + + UNDT000011-SC7 + SC + Identification Scheme Data. Uniform Resource. Identifier + The Uniform Resource Identifier that identifies where the identification scheme data is located. + Identification Scheme Data + Uniform Resource Identifier + Identifier + string + + + + + + + UNDT000011-SC8 + SC + Identification Scheme. Uniform Resource. Identifier + The Uniform Resource Identifier that identifies where the identification scheme is located. + Identification Scheme + Uniform Resource Identifier + Identifier + string + + + + + + + + + + + + UNDT000012 + CCT + Indicator. Type + 1.0 + A list of two mutually exclusive Boolean values that express the only possible states of a Property. + Indicator + string + + + + + + + + UNDT000012-SC2 + SC + Indicator. Format. Text + Whether the indicator is numeric, textual or binary. + Indicator + Format + Text + string + + + + + + + + + + + + UNDT000013 + CCT + Measure. Type + 1.0 + A numeric value determined by measuring an object along with the specified unit of measure. + Measure + decimal + + + + + + + + UNDT000013-SC2 + SC + Measure Unit. Code + The type of unit of measure. + Measure Unit + Code + Code + string + Reference UNECE Rec. 20 and X12 355 + + + + + + + UNDT000013-SC3 + SC + Measure Unit. Code List Version. Identifier + The version of the measure unit code list. + Measure Unit + Code List Version + Identifier + string + + + + + + + + + + + + UNDT000014 + CCT + Numeric. Type + 1.0 + Numeric information that is assigned or is determined by calculation, counting, or sequencing. It does not require a unit of quantity or unit of measure. + Numeric + string + + + + + + + + UNDT000014-SC2 + SC + Numeric. Format. Text + Whether the number is an integer, decimal, real number or percentage. + Numeric + Format + Text + string + + + + + + + + + + + + UNDT000018 + CCT + Quantity. Type + 1.0 + A counted number of non-monetary units possibly including fractions. + Quantity + decimal + + + + + + + + UNDT000018-SC2 + SC + Quantity. Unit. Code + The unit of the quantity + Quantity + Unit Code + Code + string + + + + + + + UNDT000018-SC3 + SC + Quantity Unit. Code List. Identifier + The quantity unit code list. + Quantity Unit + Code List + Identifier + string + + + + + + + UNDT000018-SC4 + SC + Quantity Unit. Code List Agency. Identifier + The identification of the agency that maintains the quantity unit code list + Quantity Unit + Code List Agency + Identifier + string + Defaults to the UN/EDIFACT data element 3055 code list. + + + + + + + UNDT000018-SC5 + SC + Quantity Unit. Code List Agency Name. Text + The name of the agency which maintains the quantity unit code list. + Quantity Unit + Code List Agency Name + Text + string + + + + + + + + + + + + UNDT000019 + CCT + Text. Type + 1.0 + A character string (i.e. a finite set of characters) generally in the form of words of a language. + Text + string + + + + + + + + UNDT000019-SC2 + SC + Language. Identifier + The identifier of the language used in the content component. + Language + Identification + Identifier + string + + + + + + + UNDT000019-SC3 + SC + Language. Locale. Identifier + The identification of the locale of the language. + Language + Locale + Identifier + string + + + + + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-FilingListQueryMessage.xsd + + + + FilingListQueryMessage + + true + + + + + + + + + + + This is query to get a list of filings by Filer Identification, Case ID, and/or time period. + + + + + + + + + + + + + + This is query to get a list of filings by Filer Identification, Case ID, or time period. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-FilingListResponseMessage.xsd + + + + FilingListResponseMessage + + true + + + + + + + + + + + A court's response to a FilingListQueryMessage. + + + + + + + + + + + + A court's response to a FilingListQueryMessage. + + + + + + + + + + + + + A court's response to a FilingListQueryMessage. + + + + + A filing that matches the criteria in a FilingListQueryMessage. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-FilingStatusQueryMessage.xsd + + + + FilingStatusQueryMessage + + true + + + + + + + + + + + This is query to get a filing’s status by Filing Number. + + + + + + + + + + + + This is query to get a filing's status by Filer Identification, Case ID, or Filing Number. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-FilingStatusResponseMessage.xsd + + + + FilingStatusResponseMessage + + true + + + + + + + + + + + A court's response to a FilingStatusQueryMessage. + + + + + + + + + + + + + + A court's response to a FilingStatusQueryMessage. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-MessageReceiptMessage.xsd + + + + MessageReceiptMessage + + true + + + + + + + + + + + A message returned synchronously to indicate receipt by an MDE of another message. The intent is that this will serve as the synchronous reply to all MDE operations that have an additional asynchronous callback. + + + + + + + + + + + + + A message returned synchronously to indicate receipt by an MDE of another message. The intent is that this will serve as the synchronous reply to all MDE operations that have an additional asynchronous callback. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-PaymentMessage.xsd + + + + + + + + The payment submitted with a filing. The payment may consist of a fee for filing of the document(s) submitted, or for a fine or other payment due to the court. + + + + + + + + + + + + + A code for the reason why a filer does not have to pay an otherwise applicable payment. Allowable values set forth in Court Policy. Examples are in forma pauperis status granted or a fee waiver application submitted with the filing.. + + true + + + + + + Any text needed to support the exemption assertion (reference to a court order, etc.) + + + + + The payment submitted with a filing. The payment may consist of a fee for filing of the document(s) submitted, or for a fine or other payment due to the court. + + + + + Name of the payer of the FilingPayment. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-PaymentReceiptMessage.xsd + + + + + + + + A receipt to the payment submitted with a filing. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-RecordDocketingCallbackMessage.xsd + + + + RecordDocketingCallbackMessage + + true + + + + + + + + + + + The message returned from the Court Record MDE to the Filing Review MDE when the functions of entering information onto the docket or register of actions and commiting a filed document(s) to the official court record have been completed, conveying the results of those functions. + + + + + + + + The message returned from the Court Record MDE to the Filing Review MDE when the functions of entering information onto the docket or register of actions and commiting a filed document(s) to the official court record have been completed, conveying the results of those functions. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-RecordDocketingMessage.xsd + + + + RecordDocketingMessage + + true + + + + + + + + + + + Message resulting from clerk review and edit of a CoreFilingMessage. + + + + + + + + + + + + + + + + + Comments provided by the clerk to the court record system during review. + + + + + Message resulting from clerk review and edit of a CoreFilingMessage. + + + + + Instruction from the clerk to the court record to represent this case as "sealed." + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-ReviewFilingCallbackMessage.xsd + + + + ReviewFilingCallbackMessage + + true + + + + + + + + + + + The asynchronous message from the Filing Review MDE to the Filing Assembly MDE conveying information concerning the court's actions on the documents submitted for filing in a CoreFilingMessage. + + + + + + + + The asynchronous message from the Filing Review MDE to the Filing Assembly MDE conveying information concerning the court's actions on the documents submitted for filing in a CoreFilingMessage. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-ServiceInformationQueryMessage.xsd + + + + ServiceInformationQueryMessage + + true + + + + + + + + + + + A message requesting information concerning the persons entitled to services of filings in a particular court case, together with the electronic addresses and message profiles of their Filing Assembly MDEs and their physical addresses if they are not currently using a Filing Assembly MDE. + + + + + + + + + + + + A message requesting information concerning the persons entitled to services of filings in a particular court case, together with the electronic addresses and message profiles of their Filing Assembly MDEs and their physical addresses if they are not currently using a Filing Assembly MDE. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-ServiceInformationResponseMessage.xsd + + + + ServiceInformationResponseMessage + + true + + + + + + + + + + + The response to a serviceInformationQueryMessage, setting forth the requested information. + + + + + + + + + + + + + The response to a serviceInformationQueryMessage, setting forth the requested information. + + + + + The person or organization to be served in this case + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-ServiceReceiptMessage.xsd + + + + ServiceReceiptMessage + + true + + + + + + + + + + + + + A synchronous response by a Filing Assembly MDE acknowledging receipt of a service message for one of its clients. + + + + + + + + + + + + A value describing the status of electronic service on a particular recipient. + + + + + + + + + + + + + A synchronous response by a Filing Assembly MDE acknowledging receipt of a service message for one of its clients. + + + + + A value describing the status of electronic service on a particular recipient. + + + + + Status of the service as determined by the system receiving the service. Allowable values defined in ECF-4.0-ValueLevelCode.gc. + + + + + +]]>http://www.w3.org/2001/XMLSchemahttps://localhost/...<xml-fragment/>UTF-8http://ecfhost:8733/Design_Time_Addresses/Service.JusticeTech/Service1 + + + + + + filing-cce6676b + + + TBD + + urn:oasis:names:tc:legalxml-courtfiling:schema:xsd:WebServicesMessaging-2.0 + + KING V. MAPLES + CZP + 2013-208435-CZP + 35764 + + + + ACS + + + + + + 0 + false + + false + + + + accepted + + + + + cce6676b-b399-4741-b597-6d19e933d79f + + + + + + + + + + + + + + + +]]>BasicBasicGlobal HTTP SettingsJT-SecuritytruetruePasswordDigest \ No newline at end of file diff --git a/TrueFilingEcf4/src/main/resources/wsdl/WebServices/ECF-4-0-WebServicesProfile-v2-1-soapui-project.xml b/TrueFilingEcf4/src/main/resources/wsdl/WebServices/ECF-4-0-WebServicesProfile-v2-1-soapui-project.xml new file mode 100644 index 000000000..adb509d44 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/WebServices/ECF-4-0-WebServicesProfile-v2-1-soapui-project.xml @@ -0,0 +1,138673 @@ + +file:/C:/src/beanstalksvn/internalapps/JusticeTech/ECF/Artifacts/trunk/webservices/ECF-4.0-WebServicesProfile-Definitions-v2.1.wsdl + + + + + + + + + + + ECF 4.0 Web services SIP WSDL Schema + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Multi-part message type (required for conformance with WS-I Basic Profile 1.1 + + + + + + + + + + + + + Multi-part message (required for conformance with WS-I Basic Profile 1.1 + + + + + Multi-part message type (required for conformance with WS-I Basic Profile 1.1 + + + + + + + + + + + + + Multi-part message (required for conformance with WS-I Basic Profile 1.1 + + + + + Multi-part message type (required for conformance with WS-I Basic Profile 1.1 + + + + + + + + + + + + + Multi-part message (required for conformance with WS-I Basic Profile 1.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +]]>http://schemas.xmlsoap.org/wsdl/file:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\casetype\ECF-4.0-CivilCase.xsd + + + + CivilCase + + true + + + + + + + + + + + + + Information required to initiate a new civil case in a court. "Civil" includes conservatorships, guardianships, mental health and probate. + + + + + + + + + + + + + + + + + + + + + + + Information about a case administering and distributing the assets of a testate or intestate decedent. + + + + + + + + + + + + + + Information about a guardianship, conservatorship, trust, or mental health case. + + + + + + + + + + + + + Description of a person's relationship to the fiduciary (e.g., the initiating party). + + + + + + + + + + + + The amount set forth in an ad damnum clause in a complaint, counter claim, or cross complaint. + + + + + Whether the filer is requesting that this case proceed as a class action. + + + + + Information required to initiate a new civil case in a court. "Civil" includes conservatorships, guardianships, mental health and probate. + + + + + + + + Information about a case administering and distributing the assets of a testate or intestate decedent. + + + + + Information about a guardianship, conservatorship, trust, or mental health case. + + + + + Legal description of the role of the fiduciary. This is needed in addition to the Case Role Code (in the Review Filing message structure) because that code only defines the roles of other actors and other parties; the fiduciary per the specification is the initiating party. Examples: guardian, trustee, conservator of the person, conservator of the estate. + + true + + + + + + + The grounds for invoking the jurisdiction of a limited jurisdiction court. Allowed values set forth in Court policy. Not used in general jurisdiction courts. + + true + + + + + + Whether filer invokes the right to trial by jury. + + + + + Description of this person's relationship to the fiduciary (i.e., the initiating party). + + + + + Description of this person's relationship to the fiduciary (i.e., the initiating party). + + + + + Indicator of the type of relief requested in the case, e.g., damages, equitable relief (injunction). Allowable values defined in Court Policy. + + true + + + + + + Date on which the deceased person's will was filed in the court. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\constraint\niem\niem-core\2.0\niem-core.xsd + + NIEM Core includes both Universal (U) and Common (C) components. The identities for U and C components in Core are maintained with metadata. + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A version of a computer application. + + + + + A unit of money or exchange. + + + + + A unit of money or exchange. + + + + + A language in which a character string is recorded. + + + + + A comment about a kind of name for a person. + + + + + A single or set of related actions, events, or process steps. + + + + + + + + A date of an activity. + + + + + + + + A period of time over which an activity occurs. + + + + + + + + A date an activity occurs. + + + + + A description of an activity. + + + + + A result or outcome of an activity. + + + + + An identification that references an activity. + + + + + A status of an activity. + + + + + A postal location to which paper mail can be directed. + + + + + A single place or unit at which mail is delivered. + + + + + An identifier of a single place or unit at which mail is delivered. + + + + + + + + A single place or unit at which mail is delivered. + + + + + + + + A complete address. + + + + + + + + A private mailbox within a company. + + + + + + + + A name of a person, organization, or other recipient to whom physical mail may be sent. + + + + + A representation of an address. + + + + + A particular unit within a larger unit or grouping at a location. + + + + + + + + A connection, relationship, or involvement somehow linking people and/or things together. + + + + + A binary attachment to a report or document. + + + + + A binary encoding of data. + + + + + + + + A date on which a binary object is captured or created. + + + + + An entity which captured or created a binary object. + + + + + A kind of object that has been encoded. + + + + + A description of a binary object. + + + + + A name of a standard or protocol used to classify binary content. + + + + + A URL or file reference of a binary object. + + + + + A binary encoding of data. + + + + + A size of a binary object in kilobytes. + + + + + Information used to measurable a biological or behavioral characteristic, which can reliably recognize the identity, or verify the claimed identity, of a person. + + + + + An entity that collected a biometric sample. + + + + + A picture of a biometric sample. + + + + + A description of a capacity or ability. + + + + + An aggregation of information about a set of related activities and events. + + + + + A kind of case. + + + + + An outcome or processing of a case. + + + + + + + + A case disposition occurring as a result of some decision. + + + + + A date that all charges in a case were disposed. + + + + + An identifier used to reference a case docket. + + + + + A document or other piece of information filed by someone or something involved in a case. + + + + + An official name of a case. + + + + + An identifier used to track a case. + + + + + An electronic mailing address by which a person or organization may be contacted. + + + + + + + + An entity that may be contacted by using the given contact information. + + + + + A description, title or function of a person with the given contact information. + + + + + A telephone number for a facsimile device by which a person or organization may be contacted. + + + + + + + + Details about how to contact a person or an organization. + + + + + + + + Details about how to contact a person or an organization. + + + + + A description of the methods available to contact a person or organization. + + + + + True if the contact information is the daytime contact information; false otherwise. + + + + + True if the contact information is the emergency contact information; false otherwise. + + + + + True if the contact information is the late day / early night contact information; false otherwise. + + + + + True if the contact information is the home contact information; false otherwise. + + + + + True if the contact information is the late night contact information; false otherwise. + + + + + True if the contact information is the primary method for contact; false otherwise. + + + + + True if the contact information is the employment contact information; false otherwise. + + + + + A postal address by which a person or organization may be contacted. + + + + + + + + A means of contacting someone. + + + + + A third party person who answers a call and connects or directs the caller to the intended person. + + + + + A telephone number for a telecommunication device by which a person or organization may be contacted. + + + + + + + + A means of transport from place to place. + + + + + + + + A single, upper-most, front-most, or majority color of a conveyance. + + + + + + + + An identification on a metal plate fixed to a conveyance. + + + + + An image of a DNA strand. + + + + + Location specific information regarding a person's DNA. + + + + + A location within a strand of DNA that a value is determined. + + + + + A value string for a DNA locus. + + + + + A full date. + + + + + + + + A time period measured by a starting and ending point. + + + + + A representation of a date. + + + + + A full date and time. + + + + + + + + A result or outcome that is the product of handling, processing, or finalizing something. + + + + + A kind of disposition. + + + + + A date a disposition occurred. + + + + + A description of a disposition. + + + + + A result or outcome of a disposition. + + + + + A paper or electronic document. + + + + + + + + A paper or electronic document. + + + + + A name of an application used to create and/or display an electronic document. + + + + + A binary encoding of the content of a document. + + + + + A kind of document; a nature or genre of the content. + + + + + A description of the content of a document. + + + + + A date the information in a document takes effect. + + + + + An identifier assigned to a document to locate it within a file control system. + + + + + A date a document was filed. + + + + + An identification that references a document. + + + + + A date after which contributions to the content of a document will no longer be accepted. + + + + + A language of the intellectual content of the resource. + + + + + A language of the intellectual content of the resource. + + + + + + + + A date a document is posted to an information system or network. + + + + + A date a transmitted document was received. + + + + + An identifier that determines the document order in a set of related documents. + + + + + A status of a document. + + + + + A fee or price required to submit a document. + + + + + An entity responsible for making the resource available. + + + + + A name given to a document. + + + + + Details about a license issued to a person granting driving privileges. + + + + + + + + Details about a license issued to a person granting driving privileges. + + + + + Details about an authorization issued to a driver granting driving privileges. + + + + + A kind of commercial vehicle that a licensed driver has been examined on and approved to operate. + + + + + A kind of commercial vehicle that a licensed driver has been examined on and approved to operate. + + + + + + + + The date after which a driver license or driver license permit is no longer valid. + + + + + Details about a driver license identifier or driver license permit identifier, including the number and state. + + + + + The date when a driver license or driver license permit is issued or renewed. + + + + + A restriction on a driver license or driver license permit. + + + + + Details regarding a driver license withdrawal. + + + + + A date on which a driver license withdrawal becomes effective. + + + + + A category of a driving restriction. + + + + + + + + A date on which a special restriction ends. + + + + + A category of a driving restriction. + + + + + + + + A driving restriction. + + + + + A date that information take effect. + + + + + A person who works for a business or a person. + + + + + + + + A business or person which employs a person. + + + + + An end date. + + + + + A person, organization, or thing capable of bearing legal rights and responsibilities. + + + + + + + + A person, organization, or thing capable of bearing legal rights and responsibilities. + + + + + An organization capable of bearing legal rights and responsibilities. + + + + + + + + + An organization capable of bearing legal rights and responsibilities. + + + + + + + + A person capable of bearing legal rights and responsibilities. + + + + + + + + + A person capable of bearing legal rights and responsibilities. + + + + + + + + A person, organization, or thing capable of bearing legal rights and responsibilities. + + + + + An identification assigned to a facility. + + + + + A kind of relationship between family members. + + + + + A kind of relationship between family members. + + + + + + + + A kind of relationship between family members. + + + + + + + + An amount of an exemption from a payment obligation. + + + + + A representation or an encoding of the identifying characteristics of a persons fingerprints. + + + + + A full telephone number. + + + + + + + + An association between a guardian and a dependent. + + + + + A representation of an identity. + + + + + A kind of identification. + + + + + A kind of identification. + + + + + + + + A value that identifies something. + + + + + An area, region, or unit in which a unique identification is issued. + + + + + A person, organization, or locale which issues an identification. + + + + + A picture or visual representation of something. + + + + + An association between parents and children. + + + + + An occurrence or an event that may require a response. + + + + + + + + A location where an incident occurred. + + + + + An association between an incident and a vehicle. + + + + + A coverage by a contract whereby one party agrees to indemnify or guarantee another against loss by a specified contingent event or peril. + + + + + True if an insurance policy is active; false otherwise. + + + + + A name of a company which underwrites an insurance policy. + + + + + A kind of insurance coverage. + + + + + A kind of insurance coverage. + + + + + + + + An international telephone number. + + + + + + + + An article or thing. + + + + + A color of an item. + + + + + A description of an item. + + + + + A year in which an item was manufactured or produced. + + + + + An identification assigned to an item. + + + + + A style of an item. + + + + + An evaluation of the monetary worth of an item. + + + + + A system of words or symbols used for communication. + + + + + A system of words or symbols used for communication. + + + + + + + + A unit of measure of a length value. + + + + + Details about a physical location. + + + + + + + + Details about a physical location. + + + + + A geophysical location described by postal information. + + + + + A name of a city or town. + + + + + A country, territory, dependency, or other such geopolitical subdivision of a location. + + + + + A country, territory, dependency, or other such geopolitical subdivision of a location. + + + + + + + + A country, territory, dependency, or other such geopolitical subdivision of a location. + + + + + + + + A county, parish, vicinage, or other such geopolitical subdivision of a state. + + + + + A county, parish, vicinage, or other such geopolitical subdivision of a state. + + + + + + + + A county, parish, vicinage, or other such geopolitical subdivision of a state. + + + + + + + + A description of a location. + + + + + A name of a location. + + + + + An identifier of a post office-assigned zone for an address. + + + + + An identifier of a smaller area within a post office-assigned zone for an address. + + + + + A name and number of a postal route. + + + + + + + + A state, commonwealth, province, or other such geopolitical subdivision of a country. + + + + + A state, commonwealth, province, or other such geopolitical subdivision of a country. + + + + + + + + A state, commonwealth, province, or other such geopolitical subdivision of a country. + + + + + + + + A road, thoroughfare or highway. + + + + + + + + An association between two persons who are legally married to each other. + + + + + A measurement. + + + + + A measurement value. + + + + + + + + A unit that qualifies the measurement value. + + + + + A measurement value. + + + + + Information that further qualifies primary data; data about data. + + + + + A North American Numbering Plan telephone number. + + + + + + + + A thing that is owed to someone else. + + + + + A kind of obligation. + + + + + An amount of money or quantity of time still required to be spent in order to fulfill an obligation. + + + + + An amount of a payment obligation that has not been made. + + + + + + + + A date on which an obligation ends. + + + + + An entity that must fulfill an obligation. + + + + + A waival or dismissal of an obligation. + + + + + A description of an exemption from an obligation. + + + + + An interval or period at which an obligation is required to be fulfilled. + + + + + An entity to whom an obligation must be fulfilled. + + + + + A periodic basis on which an obligation must be met. + + + + + A description of what is necessary in order to fulfill an obligation. + + + + + A date on which an obligation begins. + + + + + A unit which conducts some sort of business or operations. + + + + + + + + A unit which conducts some sort of business or operations. + + + + + An association between an organization and another organization. + + + + + An association between an organization and contact information. + + + + + An identification that references an organization. + + + + + A location of an organization. + + + + + A name of an organization. + + + + + A preferred means of contacting an organization. + + + + + A name of a subdivision of an organization. + + + + + A tax identification assigned to an organization. + + + + + A name of a high-level division of an organization. + + + + + A human being. + + + + + + + + A human being. + + + + + An association between people. + + + + + A date a person was born. + + + + + A capacity or ability of a person for something. + + + + + A son or daughter of a person. + + + + + + + + A county that assigns rights, duties, and privileges to a person because of the birth or naturalization of the person in that country. + + + + + A county that assigns rights, duties, and privileges to a person because of the birth or naturalization of the person in that country. + + + + + + + + An association between a person and contact information. + + + + + A representation or an encoding of the identifying characteristics of a person's DNA. + + + + + A date a person died or was declared legally dead. + + + + + A person dependent upon the guardianship of another. + + + + + + + + An employment of a person. + + + + + A cultural lineage of a person. + + + + + A cultural lineage of a person. + + + + + + + + A cultural lineage of a person. + + + + + + + + A color of the eyes of a person. + + + + + A color of the eyes of a person. + + + + + + + + A representation or an encoding of the identifying characteristics of a set of a persons fingerprints. + + + + + A complete name of a person. + + + + + An association between a person and a gang. + + + + + A first name of a person. + + + + + A person with guardianship over another. + + + + + + + + A color of the hair of a person. + + + + + A color of the hair of a person. + + + + + + + + A measurement of the height of a person. + + + + + True if a person understands and speaks English; false otherwise. + + + + + An original surname of a person before changed by marriage. + + + + + A middle name of a person. + + + + + A combination of names and/or titles by which a person is known. + + + + + A title or honorific used by a person. + + + + + A term appended after the family name that qualifies the name. + + + + + An association between a person and an organization. + + + + + Information about an identifier with a kind that is not explicitly defined in the standard that refers to a person within a certain domain. + + + + + A father or mother of a person. + + + + + + + + A prominent or easily identifiable aspect of a person. + + + + + A capacity of a person for a language with which that person has the strongest familiarity. + + + + + A classification of a person based on factors such as geographical locations and genetics. + + + + + A classification of a person based on factors such as geographical locations and genetics. + + + + + + + + A classification of a person based on factors such as geographical locations and genetics. + + + + + + + + A gender or sex of a person. + + + + + A gender or sex of a person. + + + + + + + + An identification of a person based on a state-issued ID card. + + + + + A last name or family name of a person. + + + + + An identification used to refer to a specific person within the tax system of a country. + + + + + A kind of union between two people. + + + + + A kind of union between two people. + + + + + + + + A status of a union between two people. + + + + + A measurement of the weight of a person. + + + + + A specific kind of physical feature. + + + + + A specific kind of physical feature. + + + + + + + + A specific kind of physical feature. + + + + + + + + A state or other jurisdictional unit where a property registration was issued. + + + + + An association between related cases. + + + + + A property of a role object. This specifies the base object, of which the role object is a function. + + + + + An entity of whom the role object is a function. + + + + + + + + + An organization of whom the role object is a function. + + + + + + + + + A person of whom the role object is a function. + + + + + + + + + An activity planned to occur on a certain date and time. + + + + + A date for which an activity is scheduled. + + + + + A time at which an activity is scheduled to end. + + + + + A time at which an activity is scheduled to begin. + + + + + A sensitivity level of the information. + + + + + A unit of measurement of speed. + + + + + A date on which something begins. + + + + + A date a status was set, effected, or reported. + + + + + A description of a status or condition of something or someone. + + + + + A status or condition of something or someone. + + + + + A kind of street. + + + + + Any additional parts of a street reference that follows the street category and post directional. + + + + + A complete reference for a street. + + + + + A name of a street. + + + + + A number that identifies a particular unit or location within a street. + + + + + A direction that appears after a street name. + + + + + A direction that appears before a street name. + + + + + An address. + + + + + + + + A process of overseeing, supervising, or keeping track in some capacity of a person. + + + + + A status of the custody of a person under supervision. + + + + + A facility at which a subject is being supervised. + + + + + A dialing code for a state or province for phone numbers in the USA, Canada, Mexico, and the Caribbean. + + + + + An international dialing code for a country. + + + + + A portion of a telephone number that usually represents a central telephone switch. + + + + + A portion of a telephone number that identifies the individual circuit within an exchange. + + + + + A telephone number for a telecommunication device. + + + + + A complete telephone number. + + + + + A telephone number. + + + + + A telephone number. + + + + + Additional numbers to be entered after a call connects to be directed to the appropriate place. + + + + + A motor-driven conveyance designed to carry its operator, and optionally passengers and cargo, over land. + + + + + A single, upper-most, front-most, or majority color of a vehicle. + + + + + + + + A unique combination of alphanumeric characters that identifies a specific vehicle. + + + + + A manufacturer of a vehicle. + + + + + A specific design or class of vehicle made by a manufacturer. + + + + + A style of a vehicle. + + + + + + + + A unit of measure of the weight value. + + + + + A year. + + + + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\constraint\niem\structures\2.0\structures.xsd + + The structures schema provides support for + fundamental NIEM linking mechanisms, as well as providing base types + for definition of NIEM-conformant types. + + + + The Object resource defines an identifier which acts + as a conceptual base for objects in NIEM-conformant + schemas. + + + + + + The Association resource defines an identifier which + acts as a conceptual base for association in NIEM-conformant + schemas. + + + + + + + The id attribute is used to define XML IDs for + NIEM objects. These IDs may be targets of reference elements, + metadata attributes, and link metadata + attributes. + + + + + The linkMetadata attribute allows an element to + point to metadata that affects the relationship between the context + and the value of the object. + + + + + The attribute metadata allows an object to point + to metadata that affects itself. + + + + + The ref attribute is used by reference elements in + NIEM to refer to an object via an ID reference, rather than including + the object itself as element content. + + + + + The sequenceID attribute allows a series of + elements to define a sequence for content that does not correspond to + the order of element declarations within a type. This attribute may + override the sequence of elements appearing within an + instance. + + + + + The SimpleObjectAttributeGroup attribute group + provides a collection of attributes which are appropriate for + definition of object types. + + + + + + + + The Augmentation element provides a substitution + group head for augmentations. The designer of a message or object may + use this element within an object definition. This will allow the + selection of augmentations dynamically, at run time (or at least + schema selection time) rather than at schema authoring + time. + + + + + The Metadata element provides a substitution group + head for metadata. Like the substitution group head for + augmentations, this allows selection of metadata to be decided late + in message creation, rather than at schema authoring time. This + element may also be used to provide a single point in a container + where all metadata for a message may be + deposited. + + + + + The AugmentationType type is a base type for all + augmentations. An augmentation may have metadata and an ID, but may + not have link metadata, as it does not establish a relationship + between its value and its context. The individual element contents of + an augmentation, however, do establish a relationship between the + context of the augmentation and the values of the individual + elements. + + + + + + + The ComplexObjectType type provides a base class + for object definition, association definitions, and external adapter + type definitions. An instance of one of these types may have an ID. + It may have metadata as it establishes the existence of an object + (maybe a conceptual object). It may also have link metadata, as an + element of one of these types establishes a relationship between its + value and its context. + + + + + + + + The MetadataType type is a base class for metadata + type definition. This type provides only an ID, as the metadata may + be referenced. It does not itself have metadata, and does not have + link metadata. + + + + + + The ReferenceType type is the type of all + reference elements within NIEM-conformant schemas. This type provides + a reference attribute, to reference an object defined elsewhere. It + includes an ID, as the link established by a reference element may + need to be identified, and it includes link metadata, as an element + of this type establishes a relationship between its context and the + referenced object. It does not contain metadata, as it does not + itself establish the existence of an object; it relies on a + definition located elsewhere. + + + + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\constraint\niem\appinfo\2.0\appinfo.xsd + + The appinfo schema provides support for high level + data model concepts and additional syntax to support the NIEM + conceptual model and validation of NIEM-conformant + instances. + + + + The Resource element provides a method for + application information to define a name within a schema, without the + name being bound to a schema component. This is used by the + structures schema to define names for structures:Object and + structures:Association. + + + + + + + + The Deprecated element provides a method for + identifying components as being deprecated. A deprecated component is + one which is provided, but whose use is not + recommended. + + + + + + + + + + + + + + The Base element provides a mechanism for + indicating base types and base elements in schema, for the cases in + which XML Schema mechanisms are insufficient. For example, it is used + to indicate Object or Association bases. + + + + + + + + + The ReferenceTarget element indicates a NIEM type + which may be a target (that is, a destination) of a NIEM reference + element. It may be used in combinations to indicate a set of valid + types. + + + + + + + + + The AppliesTo element is used in two ways. First, + it indicates the set of types to which a metadata type may be + applied. Second, it indicates the set of types to which an + augmentation element may be applied. + + + + + + + + + The ConformantIndicator element may be used in two + ways. First, it is included as application information for a schema + document element to indicate that the schema is NIEM-conformant. + Second, it is used as application information of a namespace import + to indicate that the schema is not + NIEM-conformant. + + + + + The ExternalAdapterTypeIndicator element indicates + that a complex type is an external adapter type. Such a type is one + that is composed of elements and attributes from non-NIEM-conformant + schemas. The indicator allows schema processors to switch to + alternative processing modes when processing NIEM-conformant versus + non-NIEM-conformant content. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\constraint\niem\ansi-nist\2.0\ansi-nist.xsd + + ANSI/NIST Fingerprint and Biometric standard. + + true + + + + + + + + + Plain left thumb + + + + + Left little + + + + + Right thumb + + + + + Unused field value in record types 3-6 + + + + + Plain right four + + + + + Right middle + + + + + Left and right thumbs + + + + + Right index + + + + + Left ring + + + + + Left middle + + + + + Right little + + + + + Complete friction ridge exemplars + + + + + Left index + + + + + Plain right thumb + + + + + Plain left four + + + + + Unknown, or every finger 1-10 + + + + + Left thumb + + + + + Right ring + + + + + + + + + + + + + + + + + + + + + + + Set of possible finger position codes, most probable position first. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\constraint\niem\ansi_d20\2.0\ansi_d20.xsd + + Motor vehicle administration codes from ANSI D20, the Data Dictionary for Traffic Record Systems, maintained by AAMVA, the American Association of Motor Vehicle Administrators. + + true + + + + + + + + + Non-incapacitating Evident Injury + + + + + Incapacitating Injury Accident + + + + + Unknown + + + + + Non-injury Accident + + + + + Possible Injury Accident + + + + + Fatal Accident + + + + + + + + + + + + + + + + Class "M" vehicles - Motorcycles, Mopeds, Motor-driven Cycles. + + + + + Class "B" vehicles - any single vehicle with a GVWR of 26,001 or more pounds, or any such vehicle towing a vehicle not in excess of 10,000 pounds GVWR [49 CFR 383.91(a)(2)]. (Holders of a Class B license may, with the appropriate endorsement, operate all Class C vehicles). + + + + + Class "C" vehicles - any single vehicle, or combination of vehicles, that meets neither the definition of Group A nor that of Group B, but that either is designed to transport 16 or more passengers including the driver, or is used in the transportation of materials found to be hazardous for the purposes of the Hazardous Materials Transportation Act and which require the motor vehicle to be placarded under the Hazardous Materials Regulations (49 CFR part 172, subpart F) [49 CFR 383.91(a)(3)]. + + + + + Class "A" vehicles - any combination of vehicles with a GCWR of 26,001 or more pounds, provided the GVWR of the vehicle(s) being towed is in excess of 10,000 pounds [49 CFR 383.91(a)(1)]. (Holders of a Class A license may, with the appropriate endorsement, operate all Class B & C vehicles). + + + + + + + + + + + + + + + + Other + + + + + Limited - other + + + + + Farm Waiver + + + + + Vehicles without Air Brakes + + + + + Mechanical Aid + + + + + Except Tractor-Trailer + + + + + Corrective lenses must be worn + + + + + CDL Intrastate Only + + + + + Outside Mirror + + + + + Automatic Transmission + + + + + Prosthetic Aid + + + + + Limit to Daylight Only + + + + + + + + + + + + + + + + Hazardous Materials + + + + + Unknown + + + + + No Hazardous Materials + + + + + + + + + + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\constraint\niem\fbi\2.0\fbi.xsd + + FBI code lists for National Crime and Information Center (NCIC-2000), National Incident-Based Reporting System (NIBRS), and National Law Enforcement Data Exchange (N-DEx). + + true + + + + + + + + + FULL EXTRADITION UNLESS OTHERWISE NOTED IN THE MIS FIELD + + + + + FULL EXTRADITION UNLESS OTHERWISE NOTED IN THE MIS FIELD (default value) + + + + + EXTRADITION - SURROUNDING STATES ONLY + + + + + EXTRADITION - SURROUNDING STATES ONLY + + + + + NO EXTRADITION + + + + + PENDING EXTRADITION - SEE MIS FIELD + + + + + LIMITED EXTRADITION - SEE MIS FIELD + + + + + FULL EXTRADITION + + + + + EXTRADITION - SURROUNDING STATES ONLY + + + + + NO EXTRADITION + + + + + LIMITED EXTRADITION SEE MIS FIELD (requires data in the MIS Field) + + + + + LIMITED EXTRADITION SEE MIS FIELD (requires data in the MIS Field) + + + + + NO EXTRADITION + + + + + PENDING EXTRADITION SEE MIS FIELD (requires data in the MIS Field) + + + + + PENDING EXTRADITION SEE MIS FIELD (requires data in the MIS Field) + + + + + + + + + + + + + + + + MULTICOLORED + + + + + GRAY + + + + + BLACK + + + + + MAROON + + + + + GREEN + + + + + BLUE + + + + + HAZEL + + + + + BROWN + + + + + UNKNOWN + + + + + PINK + + + + + + + + + + + + + + + + unknown + + + + + Hispanic + + + + + non Hispanic + + + + + + + + + + + + + + + + Orange + + + + + Pink + + + + + Blond or Strawberry + + + + + Gray or Partially Gray + + + + + UNKNOWN OR COMPLETELY BALD + + + + + Sandy + + + + + Brown + + + + + Blue + + + + + Black + + + + + Red or Auburn + + + + + White + + + + + Green + + + + + Purple + + + + + + + + + + + + + + + + British Virgin Islands + + + + + West Bank + + + + + Lithuania + + + + + Bassas Da India (French possession) + + + + + CITIZEN BAND POTTAWATOMIE TRIBE + + + + + Morelos + + + + + Bonaire (Netherlands Antilles) + + + + + Guam + + + + + Libya + + + + + Guatemala + + + + + Ukraine + + + + + California + + + + + Tajikistan + + + + + New Zealand + + + + + Slovenia + + + + + French Guiana + + + + + Saudi Arabia + + + + + Howland Island + + + + + Iran + + + + + Bolivia + + + + + North Carolina + + + + + Martinique + + + + + Wisconsin + + + + + Kingman Reef + + + + + French Southern and Antartic Lands + + + + + Indonesia (now includes Portuguese Timor) + + + + + Sonora + + + + + Midway Islands + + + + + Alaska + + + + + New Brunswick + + + + + Mauritius + + + + + Mariana Islands + + + + + Armenia + + + + + Maryland + + + + + Macao (now spelled Macau) + + + + + South Africa + + + + + Prince Edward Island + + + + + Guyana + + + + + Liberia + + + + + Mayotte + + + + + Uganda + + + + + Chile + + + + + Hong Kong + + + + + Queretaro + + + + + District of Columbia + + + + + Manahiki Island + + + + + Ireland (does not include NorthernIreland, see Northern Ireland) + + + + + Japan + + + + + Seychelles + + + + + Cape Verde Islands + + + + + Luxembourg + + + + + Republic of Congo, Brazzaville + + + + + Costa Rica + + + + + India + + + + + Fiji + + + + + Tonga + + + + + Svalbard + + + + + Tamaulipas + + + + + Ellice Islands (now Tuvalu) + + + + + Saint Helena + + + + + Parcel Islands + + + + + Brunei + + + + + Tunisia + + + + + Nicaragua + + + + + Devil's Lake Sioux Tribe + + + + + South Dakota + + + + + Liechtenstein + + + + + Niue + + + + + Gabon + + + + + Russia + + + + + Northern Ireland + + + + + Dominican Republic + + + + + New Guinea (now Papua New Guinea) + + + + + Arkansas + + + + + Slovakia + + + + + CHEYENNE & ARAPAHO TRIBES + + + + + Coral Sea Islands (Australian territory) + + + + + Qatar + + + + + Saint Vincent and the Grenadines + + + + + Israel + + + + + Equatorial Guinea + + + + + Sweden + + + + + Chihuahua + + + + + Philippines + + + + + Jordan + + + + + Gambia, The + + + + + WYANDOTTE TRIBE + + + + + Hungary + + + + + SEMINOLE NATION + + + + + Pennsylvania + + + + + Maldives + + + + + U.S. Virgin Islands + + + + + Spain + + + + + Kenya + + + + + Utah + + + + + Tromelin Island (French possession) + + + + + Nayarit + + + + + Rhodesia (now Zimbabwe) + + + + + Cyprus + + + + + Belgium + + + + + Nevada + + + + + PAWNEE TRIBE + + + + + Alberta + + + + + Togo + + + + + Michoacan + + + + + Madagascar (included in Malagasy Republic) + + + + + Nepal + + + + + Socialist Republic of Vietnam + + + + + Europa Island (French possession) + + + + + Czech Republic + + + + + Mexico (State) + + + + + Ontario + + + + + Okinawa + + + + + Clipperton Island (French possession) + + + + + APACHE TRIBE + + + + + Eretria + + + + + Caroline Islands + + + + + Taiwan, Republic of China + + + + + Baker Island + + + + + Puebla + + + + + Leech Lake Band of Chippewa + + + + + Colombia + + + + + Idaho + + + + + Palmyra Atoll + + + + + Sinaloa + + + + + Palau, Republic of + + + + + West Virginia + + + + + Benin (formerly Dahomey) + + + + + Aruba (now independent of NetherlandsAntilles) + + + + + Iraq + + + + + French Polynesia + + + + + Western Samoa + + + + + Djibouti + + + + + New Caledonia + + + + + Louisiana + + + + + Monaco + + + + + New Hampshire + + + + + Quintana Roo + + + + + Syria + + + + + Sac & Fox + + + + + Iowa + + + + + Central African Republic + + + + + Burma + + + + + Guinea + + + + + Pitcairn,Henderson, Ducie, and OenoIslands + + + + + Nevis and Saint Christopher "Kitts" + + + + + Norway + + + + + Kuwait + + + + + Trucial States (now United Arab Emirates) + + + + + Egypt (formerly United Arab Republic) + + + + + Jersey + + + + + Bahrain/Bahrein + + + + + Reunion + + + + + Dominica + + + + + Maine + + + + + North Dakota + + + + + Yukon (Territory) + + + + + Gilbert Islands (now Kiribati) + + + + + Honduras + + + + + Namibia (South-West Africa) + + + + + OTOE-MISSOURIA TRIBE + + + + + PONCA TRIBE + + + + + Rhode Island + + + + + Ceylon (Now Sri Lanka) + + + + + Botswana + + + + + Marshall Islands + + + + + MIAMI TRIBE + + + + + Poland + + + + + Gibraltar + + + + + Burkina Faso (known as Burkina,formerly Upper Volta) + + + + + Kiowa + + + + + OSAGE NATION + + + + + Tennessee + + + + + Greenland + + + + + Falkland Islands + + + + + North Korea + + + + + Red Lake + + + + + Guernsey + + + + + San Marino + + + + + England + + + + + Argentina + + + + + Malta + + + + + New York + + + + + Croatia + + + + + Cayman Islands + + + + + Absentee Shawnee + + + + + Oregon + + + + + South Carolina + + + + + Jan Mayen + + + + + Swaziland + + + + + New Mexico + + + + + Kentucky + + + + + Cook Islands + + + + + British Solomon Islands (now SolomonIslands) + + + + + Baja California (Northern Section) + + + + + Vermont + + + + + Bahamas, The + + + + + Panama + + + + + Cameroon + + + + + Bermuda + + + + + Portugal + + + + + Chad + + + + + Iceland + + + + + Colorado + + + + + Navassa Island + + + + + Cuba + + + + + Federated States of Micronesia + + + + + Rwanda + + + + + San Luis Potosi + + + + + Sao Tome and Principe + + + + + Bhutan + + + + + Congo Kinshasa, now Zaire + + + + + Macedonia + + + + + Comoros (or Comoros Islands) + + + + + Morocco + + + + + Nigeria + + + + + Senegal + + + + + Guadeloupe + + + + + Shakopee + + + + + Georgia + + + + + Ethiopia + + + + + Pakistan + + + + + United States of America (USA) (Should beused in the following circumstances:1. To indicate the LIS + + + + + Delaware + + + + + Jalisco + + + + + Washington + + + + + Switzerland + + + + + Yucatan + + + + + Menominee + + + + + Thailand + + + + + Lesotho + + + + + Manitoba + + + + + Russian Federation + + + + + Georgia + + + + + Algeria + + + + + Chiapas + + + + + Spratly Islands + + + + + Connecticut + + + + + Faroe Islands + + + + + Surinam + + + + + Andorra + + + + + Baja California (Southern Section) + + + + + Uzbekistan + + + + + Missouri + + + + + Balearic Islands + + + + + Florida + + + + + Bosnia and Hercegovenia + + + + + Ashmore and Cartier Islands + + + + + Republic of Yemen + + + + + El Salvador + + + + + France + + + + + Albania + + + + + Michigan + + + + + Hawaii + + + + + Antigua and Barbuda (formerly Antigua) + + + + + Mexico (See separate list of MexicanStates; use code MM only when state isunknown) + + + + + Hidalgo + + + + + Angola + + + + + Tanzania, United Republic of + + + + + LATVIA + + + + + Austria + + + + + Kansas + + + + + Tuamotu Archipelago + + + + + Sierre Leone (Sierra Leone) + + + + + Malawi + + + + + Cote d'Ivoire (Ivory Coast) + + + + + Peru + + + + + Haiti + + + + + Oglala Sioux + + + + + Burundi + + + + + Laos + + + + + Bulgaria + + + + + Indiana + + + + + Oaxaca + + + + + Byelarus + + + + + Oklahoma + + + + + West Indies (for West Indies Islands notfound separately listed) + + + + + Azores Islands + + + + + Mozambique + + + + + Glorioso Islands (French possession) + + + + + South Korea + + + + + Johnston Island + + + + + Ohio + + + + + Turtle Mtn. Band of Chipewa + + + + + Newfoundland (includes Labrador) + + + + + South Georgia and the South SandwichIslands + + + + + Scotland + + + + + Niger + + + + + Guerrero + + + + + Christmas Island + + + + + Saint Lucia + + + + + Singapore + + + + + Colima + + + + + Distrito Federal (Mexico, D. F.) + + + + + Jamaica + + + + + Australia + + + + + Kyrgyzstan + + + + + IOWA TRIBE + + + + + Isle of Man + + + + + Venezuela + + + + + Juan de Nova Island + + + + + Nauru + + + + + WICHITA TRIBE + + + + + All others (Any foreign country/dependency/territory not included inthe above abbreviation list is t + + + + + Nova Scotia + + + + + Canal Zone + + + + + Veracruz + + + + + Somalia + + + + + MUSCOGEE (CREEK) TRIBE + + + + + Illinois + + + + + Canada(See separate list of CanadianProvinces; use code CD only whenprovince is unknown.) + + + + + Germany (East Germany: 1945-1989,for reference only)(West Germany: 1945-1989, for referenceonly) + + + + + Grenada + + + + + Italy (includes Sicily and Sardinia) + + + + + Azerbaijan + + + + + Coahuila + + + + + Uruguay + + + + + Malaysia + + + + + COMANCHE NATION + + + + + Cambodia (formerly Khmer Republic& Kampuchea) + + + + + KICKAPOO TRIBE + + + + + Belize (formerly British Honduras) + + + + + Norfolk Island + + + + + Guinea-Bissau (formerly Portuguese Guinea) + + + + + Canary Islands + + + + + Mille Lacs + + + + + Saint Pierre and Miquelon + + + + + Lac du Flambeau Band of Lake SuperiorChippewa + + + + + Madeira Islands + + + + + Tlaxcala + + + + + New Hebrides (now Vanuatu) + + + + + SENECA-CAYUGA TRIBES + + + + + Denmark + + + + + Sudan + + + + + Greece + + + + + Zambia + + + + + Romania/Rumania + + + + + Massachusetts + + + + + Wyoming + + + + + Holland (Netherlands) + + + + + Bangladesh + + + + + Lebanon + + + + + Nebraska + + + + + Virginia + + + + + British Indian Ocean Territory + + + + + Afghanistan + + + + + Wake Island + + + + + Alabama + + + + + Oman + + + + + New Jersey + + + + + Turkmenistan + + + + + Anguilla + + + + + Spanish Sahara (now Western Sahara) + + + + + Saskatchewan + + + + + Brazil + + + + + Puerto Rico + + + + + Kazakhstan + + + + + Tabasco + + + + + Turkey + + + + + Arizona + + + + + White Earth + + + + + Heard Island and McDonald Island + + + + + Nuevo Leon + + + + + Oneida Tribe of Indians of Wisconsin + + + + + Ecuador + + + + + Vatican City + + + + + Durango + + + + + Zacatecas + + + + + Trinidad and Tobago + + + + + Unknown Place of Birth (for use in IIIrecords only) + + + + + Mali + + + + + Estonia + + + + + Campeche + + + + + Texas + + + + + Trust Territory of the Pacific Islands + + + + + Mauritania + + + + + Guanajuato + + + + + Aguascalientes + + + + + Moldova + + + + + British Columbia + + + + + Turks and Calcos Islands + + + + + Barbados + + + + + Yugoslavia + + + + + Wallis and Futuna (French territory) + + + + + Tokelau + + + + + Montana + + + + + Montserrat + + + + + Fond du Lac + + + + + Mississippi + + + + + Northwest Territories + + + + + People's Republic of China + + + + + Jarvis Island + + + + + Paraquay + + + + + Ghana + + + + + Finland + + + + + Gaza + + + + + American Samoa (Islands) + + + + + Mongolia + + + + + Wales + + + + + Quebec + + + + + Bouvet Island (Norwegian territory) + + + + + Cocos (Keeling) Islands (Australiandependency) + + + + + Minnesota + + + + + + + + + + + + + + + + NORTH DAKOTA + + + + + VERMONT + + + + + BRITISH COLUMBIA + + + + + NEVADA + + + + + ITALY + + + + + ILLINOIS + + + + + MEXICO CITY + + + + + PUERTO RICO + + + + + MASSACHUSETTS + + + + + OKLAHOMA + + + + + PENNSYLVANIA + + + + + MONTANA + + + + + SOUTH CAROLINA + + + + + IOWA + + + + + HAWAII + + + + + FLORIDA + + + + + MISSOURI + + + + + NEW YORK + + + + + CALIFORNIA + + + + + WEST VIRGINIA + + + + + COLORADO + + + + + UTAH + + + + + TENNESSEE + + + + + MICHIGAN + + + + + VIRGINIA + + + + + ALABAMA + + + + + ROYAL CANADIAN MP + + + + + NEW BRUNSWICK + + + + + ALASKA + + + + + SOUTH DAKOTA + + + + + IDAHO + + + + + TEXAS + + + + + ARIZONA + + + + + ALBERTA + + + + + SASKATCHEWAN + + + + + NEW HAMPSHIRE + + + + + LOUISIANA + + + + + GEORGIA + + + + + MINNESOTA + + + + + MAINE + + + + + NEW MEXICO + + + + + QUEBEC + + + + + WASHINGTON + + + + + NORTH CAROLINA + + + + + ARKANSAS + + + + + OTHER CANADA + + + + + KENTUCKY + + + + + GUAM + + + + + WYOMING + + + + + MISSISSIPPI + + + + + VIRGIN ISLANDS + + + + + NORTHWEST TERRITORIES + + + + + MARYLAND + + + + + YUKON + + + + + OREGON + + + + + DELAWARE + + + + + NEW JERSEY + + + + + PRINCE EDWARD ISLAND + + + + + CONNECTICUT + + + + + WASHINGTON D.C. + + + + + NEWFOUNDLAND + + + + + MANITOBA + + + + + UNITED STATES + + + + + KANSAS + + + + + RHODE ISLAND + + + + + NEBRASKA + + + + + ONTARIO + + + + + INDIANA + + + + + OHIO + + + + + WISCONSIN + + + + + ENGLAND + + + + + NOVA SCOTIA + + + + + + + + + + + + + + + + SEX ASSLT - SODOMY-GIRL-STGARM + + + + + DRIVING UNDER INFLUENCE ALCOHOL + + + + + EXPLOITATION/ENTICEMENT + + + + + KICKBACK - GIVING + + + + + SPORTS TAMPERING + + + + + OBSCENE MATERIAL - MFR + + + + + HOMICIDE - WILLFUL KILL-PUB OFF-WEAPON + + + + + DRUGS - MISBRANDED + + + + + ESTABLISH GAMBLING PLACE + + + + + MARIJUANA - POSSESS + + + + + KIDNAP ADULT TO SEXUALLY ASSLT + + + + + SEX ASSAULT-ELDERLY + + + + + EMBEZZLE - PUBLIC PROP + + + + + NEGLECT ELDERLY + + + + + MARIJUANA - PRODUCING + + + + + PERJURY - SUBORNATION OF + + + + + SEX OFFENSE + + + + + THEFT OF US GOVT PROP + + + + + THEFT VEH BY BAILEE + + + + + FRAUD - FALSE STATEMENT + + + + + EXPLOSIVES - POSSESSING + + + + + KIDNAP MINOR + + + + + RAPE WITH WEAPON + + + + + HOMICIDE - WILLFUL KILL-FAMILY-GUN + + + + + CARD GAME + + + + + COMPOUNDING CRIME + + + + + AGGRAV ASSLT - PUB OFF-STGARM + + + + + COSMETICS - ADULTERATED + + + + + LIQUOR TAX + + + + + FORGERY + + + + + CONDIT RELEASE VIOLATION + + + + + ROBBERY - BUSINESS-STGARM + + + + + PROSTITUTION + + + + + LIQUOR - TRANSPORT + + + + + HALLUCINOGEN - POSSESS + + + + + THREAT - FEDERAL PROTECTEES + + + + + RIOT - ENGAGING IN + + + + + MANDATORY RELEASE VIOLATION + + + + + HOMICIDE - NEGLIG MANSL-WEAPON + + + + + INCEST WITH MINOR + + + + + OPIUM OR DERIV - POSSESS + + + + + SEXUAL EXPLOITATION OF MINOR-EXHIBITION OF MINOR + + + + + DAMAGE PROPERTY + + + + + KIDNAP ADULT + + + + + LOTTERY - OPERATING + + + + + HOMOSEXUAL ACT WITH WOMAN + + + + + WITNESS - DECEIVING + + + + + SEX ASSLT - SODOMY-MAN-WEAPON + + + + + TRANSPORT TOOLS FOR FORGERY/COUNTERFEITING + + + + + SEXUAL EXPLOITATION OF MINOR-VIA TELECOMMUNICATIONS + + + + + VEHICLE THEFT + + + + + PUBLIC ORDER CRIMES SEE MIS + + + + + SMUGGLE CONTRABAND INTO PRISON + + + + + RESISTING OFFICER + + + + + DIVULGE MESSAGE CONTENTS + + + + + OPIUM OR DERIV - SELL + + + + + BESTIALITY + + + + + FORCIBLE PURSE SNATCHING + + + + + MISCONDUCT - JUDIC OFFICER + + + + + MILITARY + + + + + RAPE - GUN + + + + + AGGRAV ASSLT - FAMILY-STGARM + + + + + DAMAGE PROP - PRIVATE + + + + + MILITARY DESERTION + + + + + SEXUAL EXPLOITATION OF MINOR-MATERIAL-PHOTOGRAPH + + + + + ROBBERY - RESID-GUN + + + + + RIOT - INCITING + + + + + EXTORT - THREAT DAMAGE PROP + + + + + SALES TAX + + + + + PASS FORGED + + + + + LIQUOR - MFR + + + + + LARC - FROM AUTO + + + + + OBSCENE MATERIAL - DISTRIB + + + + + ARSON - BUSINESS-DEFRAUD INSURER + + + + + LICENSING - REGISTRATION WEAPON + + + + + ARSON - PUB-BLDG + + + + + SABOTAGE + + + + + ENTICEMENT OF MINOR FOR INDECENT PURPOSES-VIA TELECOMMUNICATIONS + + + + + CARRYING CONCEALED WEAPON + + + + + DISORD CONDUCT + + + + + GAMBLING DEVICE + + + + + SYNTH NARCOTIC - SMUGGL + + + + + FORGERY OF CHECKS + + + + + FREQUENT HOUSE ILL FAME + + + + + DIVULGE EAVESDROP INFO + + + + + POSSESS TOOLS FOR FORGERY/COUNTERFEITING + + + + + CRUELTY TOWARD DISABLED + + + + + RECEIV STOLEN VEH + + + + + AGGRAV ASSLT - POL OFF-WEAPON + + + + + AGGRAV ASSLT - NONFAMILY-GUN + + + + + SYNTH NARCOTIC + + + + + RAPE - STRONGARM + + + + + COMMERCIAL SEX - HOMOSEXUAL PROSTITUTION + + + + + HIT AND RUN + + + + + AGGRAV ASSLT - POL OFF-GUN + + + + + BURGL TOOLS - POSSESS + + + + + ABORTIFACIENT + + + + + OBSTRUCT POLICE + + + + + EXTORTION + + + + + CONSERVATION - BIRDS + + + + + ESCAPE SEE MIS + + + + + LARC - PARTS FROM VEH + + + + + RECEIVE STOLEN PROP + + + + + SEX ASSAULT-DISABLED + + + + + TRANSPORT INTERSTATE FOR COMMERCIALIZED SEX + + + + + COCAINE - SELL + + + + + OBSCENE MATERIAL + + + + + CONSERVATION - LICENSE-STAMP + + + + + POSSESS STOLEN PROP + + + + + COUNTERFEITING + + + + + AIDING PRISONER ESCAPE SEE MIS + + + + + HOMICIDE - WILLFUL KILL-WEAPON + + + + + ARSON - RESID-DEFRAUD INSURER + + + + + HALLUCINOGEN - MFR + + + + + CONSERVATION - ANIMALS + + + + + NEGLECT FAMILY + + + + + SMUGGLE CONTRABAND + + + + + BURNING OF-SEE MIS + + + + + KIDNAP MINOR-PARENTAL + + + + + STOLEN PROPERTY + + + + + INTIMIDATION (INCLUDES STALKING) + + + + + HOMOSEXUAL ACT WITH MAN + + + + + INDECENT EXPOSURE TO MINOR + + + + + DICE GAME - OPERATING + + + + + ABSCOND WHILE ON PROBATION + + + + + SOUGHT FOR VIOLATION OF NATIONAL SECURITY REGISTRATION + + + + + FRAUD - ILLEG USE CREDIT CARDS + + + + + ABORTION + + + + + ALTERING IDENTIFICATION ON WEAPON + + + + + UNAUTH USE OF VEH + + + + + BARBITURATE - POSSESS + + + + + INDECENT EXPOSURE TO ADULT + + + + + HOMICIDE - WILLFUL KILL-POL OFF-WEAPON + + + + + CONSERVATION + + + + + HOMICIDE - WILLFUL KILL-POL OFF-GUN + + + + + DRUGS - HEALTH OR SAFETY + + + + + ESCAPE FROM CUSTODY + + + + + SEX ASSLT - SODOMY-GIRL-GUN + + + + + DAMAGE PROP - BUSINESS-WITH EXPLOSIVE + + + + + PROCURE FOR PROSTITUTE WHO IS AN ADULT + + + + + FAMILY OFFENSE + + + + + BURGL - FORCED ENTRY-NONRESID + + + + + NONPAYMENT OF ALIMONY + + + + + THREAT TO BURN + + + + + OBSTRUCT SEE MIS + + + + + SYNTH NARCOTIC - SELL + + + + + BARBITURATE - MFR + + + + + LIQUOR + + + + + OBSCENITY + + + + + BURGL - BANKING-TYPE INST + + + + + AGGRAV ASSLT - GUN + + + + + TRANSPORT FORGED - SEE MIS + + + + + TRANSMIT WAGER INFORMATION + + + + + KICKBACK - RECEIVING + + + + + ABORTIONAL ACT ON OTHER + + + + + SEX ASSLT - SODOMY-WOMAN-STGARM + + + + + KICKBACK - OFFERING + + + + + FALSE IMPRISONMENT-MINOR-NONPARENTAL + + + + + NEGLECT DISABLED + + + + + SMUGGLING ALIENS + + + + + MARIJUANA + + + + + SEX OFFENSE-ELDERLY + + + + + AGGRAV ASSLT - FAMILY-WEAPON + + + + + THEFT AND SALE VEH + + + + + KIDNAP MINOR FOR RANSOM + + + + + CARJACKING - ARMED + + + + + HEROIN - SELL + + + + + GRATUITY - RECEIVING + + + + + CIVIL RIGHTS + + + + + FRAUD + + + + + BURGLARY + + + + + AGGRAV ASSLT - POL OFF-STGARM + + + + + SEDITION + + + + + GAMBLING DEVICE - NOT REGISTERED + + + + + ROBBERY - BUSINESS-GUN + + + + + TAX REVENUE + + + + + RAPE-DRUG-INDUCED + + + + + PROPERTY CRIMES SEE MIS + + + + + CRUELTY TOWARD CHILD + + + + + FAILURE TO MOVE ON + + + + + DRUGS - ADULTERATED + + + + + LARC - FROM SHIPMENT + + + + + BRIBE + + + + + EVIDENCE - DESTROYING + + + + + INCENDIARY DEVICE - TEACHING USE + + + + + SEX ASSLT - SODOMY-MAN-STGARM + + + + + BURGL - FORCED ENTRY-RESID + + + + + RIOT - INTERFERE FIREMAN + + + + + WEAPON OFFENSE + + + + + HALLUCINOGEN + + + + + EXPLOSIVES - TRANSPORTING + + + + + GRATUITY - GIVING + + + + + AGGRAV ASSLT - FAMILY-GUN + + + + + LARC - FROM BANKING-TYPE INST + + + + + SUBMISSION TO ABORTIONAL ACT + + + + + STAT RAPE - NO FORCE + + + + + BRIBE - GIVING + + + + + ROBBERY - RESID-WEAPON + + + + + SEXUAL EXPLOITATION OF MINOR-MATERIAL-FILM + + + + + CRIMES AGAINST PERSON SEE MIS + + + + + EXPLOSIVES - USING + + + + + THEFT AND STRIP VEH + + + + + EXTORT - THREAT INJURE PERSON + + + + + SMUGGLING + + + + + COSMETICS - MISBRANDED + + + + + HOMICIDE - WILLFUL KILL-GUN + + + + + LARCENY + + + + + WEAPON TRAFFICKING + + + + + KIDNAP MINOR-NONPARENTAL + + + + + ARSON - BUSINESS + + + + + EMBEZZLE - BUSINESS PROP + + + + + ABSCOND WHILE ON PAROLE + + + + + FALSE IMPRISONMENT-MINOR-PARENTAL + + + + + OBSTRUCTING JUSTICE + + + + + PEEPING TOM + + + + + COCAINE + + + + + OBSCENE MATERIAL - TRANSPORT + + + + + AMPHETAMINE - MFR + + + + + CONTEMPT OF CONGRESS + + + + + MARIJUANA - SELL + + + + + ASSEMBLY - UNLAWFUL + + + + + EMBEZZLE - POSTAL + + + + + IMMIGRATION + + + + + CROSSING POLICE LINES + + + + + STATE/LOCAL - MATERIAL WITNESS + + + + + SELECTIVE SERVICE + + + + + ARSON + + + + + LARC - FROM BLDG + + + + + SALE OF STOLEN PROP + + + + + NARCOTIC EQUIP - POSSESS + + + + + BRIBERY + + + + + RIOT - INTERFERE OFFICER + + + + + SEX ASSLT - SODOMY-BOY-WEAPON + + + + + DRIVING UNDER INFLUENCE DRUGS + + + + + ROBBERY - STREET-GUN + + + + + FRAUD - IMPERSON + + + + + CONTEMPT OF COURT - SEE MIS + + + + + FLIGHT-ESCAPE + + + + + INCENDIARY DEVICE - USING + + + + + SEX OFFENDER REGISTRATION VIOLATION(SEE MIS) + + + + + EXTORT - THREAT OF INFORMING OF VIO + + + + + OBSCENE MATERIAL - SELL + + + + + INCEST WITH ADULT + + + + + HOMICIDE - WILLFUL KILL-PUB OFF-GUN + + + + + BRIBE - OFFERING + + + + + PAROLE VIOLATION - SEE MIS + + + + + INCENDIARY DEVICE - POSSESS + + + + + ASSAULT + + + + + SEX ASSLT - CARNAL ABUSE + + + + + NEGLECT CHILD + + + + + ROBBERY - STREET-STGARM + + + + + COMMERCIAL SEX + + + + + EMBEZZLE + + + + + BURGL - NO FORCED ENTRY-RESID + + + + + ILLEGAL ENTRY + + + + + FOOD - MISBRANDED + + + + + GAMBLING GOODS + + + + + SEX OFFENSE-DISABLED + + + + + PASS COUNTERFEITED + + + + + GRATUITY - OFFERING + + + + + DAMAGE PROP - PUBLIC-WITH EXPLOSIVE + + + + + AGGRAV ASSLT - PUB OFF-WEAPON + + + + + SEXUAL EXPLOITATION OF MINOR-PROSTITUTION + + + + + THREAT - TERRORISTIC - STATE OFFENSES + + + + + HARASSING COMMUNICATION + + + + + LARC - FROM YARDS + + + + + SEX ASSLT - SODOMY-WOMAN-GUN + + + + + SEX ASSLT - SODOMY-BOY-GUN + + + + + OPIUM OR DERIV - SMUGGL + + + + + DAMAGE PROP - BUSINESS + + + + + GAMBLING DEVICE - TRANSPORT + + + + + SEXUAL EXPLOITATION OF MINOR-MATERIAL-TRANSPORT + + + + + COSMETICS - HEALTH OR SAFETY + + + + + GRATUITY + + + + + VOYEURISM + + + + + ROBBERY - RESID-STGARM + + + + + AGGRAV ASSLT - WEAPON + + + + + POSSESS STOLEN VEHICLE + + + + + KIDNAP MINOR TO SEXUALLY ASSLT + + + + + GAMBLING + + + + + PROB VIOLATION - SEE MIS + + + + + CONCEAL STOLEN PROP + + + + + AMPHETAMINE + + + + + GAMBLING GOODS - TRANSPORT + + + + + AGGRAV ASSLT - NONFAMILY-STGARM + + + + + DIVULGE EAVESDROP ORDER + + + + + HOMOSEXUAL ACT WITH GIRL + + + + + FAILURE TO REGISTER AS A SEX OFFENDER + + + + + BOOKMAKING + + + + + ANTITRUST + + + + + FRAUD - SWINDLE + + + + + CONTRIB DELINQ MINOR + + + + + ALIEN UNLAWFULLY PRESENT DUE TO ORDER OF REMOVAL OR EXCLUSION FROM THE USA + + + + + AIRCRAFT THEFT + + + + + RAPE-ELDERLY + + + + + ABDUCT - NO RANSOM OR ASSLT + + + + + THREAT TO BOMB + + + + + HOMOSEXUAL ACT WITH BOY + + + + + TREASON MISPRISION + + + + + DANGEROUS DRUGS + + + + + STOLEN VEHICLE + + + + + EMBEZZLE - INTERSTATE SHIPMENT + + + + + FOOD - ADULTERATED + + + + + DESECRATING FLAG + + + + + SEXUAL ASSAULT-DRUG-INDUCED + + + + + FEDERAL - MATERIAL WITNESS + + + + + HOMICIDE - JOHN OR JANE DOE - NO WARRANT + + + + + MAIL FRAUD + + + + + PROCURE FOR PROSTITUTE WHO IS A MINOR + + + + + ELECTION LAWS + + + + + MARIJUANA - SMUGGL + + + + + SEXUAL EXPLOITATION OF MINOR-SEX PERFORMANCE + + + + + FALSE CITIZENSHIP + + + + + LARC ON US GOVT RESERV + + + + + BAIL - PERSONAL RECOG + + + + + WIRETAP - FAILURE TO REPORT + + + + + AMPHETAMINE - POSSESS + + + + + INCOME TAX + + + + + HEROIN - SMUGGL + + + + + OBSTRUCT CRIMINAL INVEST + + + + + COCAINE - POSSESS + + + + + FAILURE REPORT CRIME + + + + + LARC - FROM MAILS + + + + + BIGAMY + + + + + TRANSPORT INTERSTATE STOLEN PROP + + + + + KIDNAP ADULT FOR RANSOM + + + + + AGGRAV ASSLT - PUB OFF-GUN + + + + + GAMBLING GOODS - POSSESS + + + + + UNAUTH COMMUNICATION WITH PRISONER + + + + + KIDNAPPING + + + + + TRANSPORT COUNTERFEITED - SEE MIS + + + + + LIQUOR - SELL + + + + + ENTICEMENT OF MINOR FOR PROSTITUTION + + + + + OBSTRUCTING COURT ORDER + + + + + MORALS - DECENCY CRIMES SEE MIS + + + + + RIOT + + + + + CONTEMPT OF LEGISLATURE + + + + + TRANSP DANGEROUS MATERIAL + + + + + ABORTIONAL ACT ON SELF + + + + + EMBEZZLE - BANKING-TYPE INST + + + + + FRAUD - INSUFF FUNDS CHECK + + + + + TRAFFIC OFFENSE + + + + + LARC - FROM COIN MACHINE + + + + + ROBBERY - BANKING-TYPE INST + + + + + LIQUOR - POSSESS + + + + + WITNESS - DISSUADING + + + + + ARSON - RESID-ENDANGERED LIFE + + + + + SEX ASSAULT + + + + + BURGL - NO FORCED ENTRY-NONRESID + + + + + DAMAGE PROP - PUBLIC + + + + + SUBJECT IS A DEPORTED CRIMINAL/AGGRAVATED FELON + + + + + FOOD - HEALTH OR SAFETY + + + + + TRESPASSING + + + + + SYNTH NARCOTIC - POSSESS + + + + + FLIGHT TO AVOID SEE MIS + + + + + ROBBERY - BUSINESS-WEAPON + + + + + HEROIN + + + + + PROCURE FOR PROSTITUTE (PIMPING) + + + + + LARC - POSTAL + + + + + EXPLOSIVES - TEACHING USE + + + + + HOMICIDE - NEGLIG MANSL-VEH + + + + + HEROIN - POSSESS + + + + + LOTTERY + + + + + EAVESDROP EQUIP + + + + + PURSE SNATCHING - NO FORCE + + + + + BRIBE - RECEIVING + + + + + BARBITURATE - SELL + + + + + FORGERY OF + + + + + KIDNAP HOSTAGE FOR ESCAPE + + + + + ILLEGAL ARREST + + + + + RAPE-DISABLED + + + + + MONEY LAUNDERING + + + + + SEDUCTION OF ADULT + + + + + ESPIONAGE + + + + + FRAUD AND ABUSE, COMPUTER + + + + + OPENING SEALED COMMUNICATION + + + + + HALLUCINOGEN - SELL + + + + + POCKETPICKING + + + + + BURGL - SAFE-VAULT + + + + + PUBLIC PEACE + + + + + HOMICIDE + + + + + GAMBLING DEVICE - POSSESS + + + + + CONFLICT OF INTEREST + + + + + FAILURE TO APPEAR - SEE MIS + + + + + AMPHETAMINE - SELL + + + + + CARD GAME - OPERATING + + + + + CARRYING PROHIBITED WEAPON + + + + + HALLUCINOGEN - DISTRIB + + + + + SELLING WEAPON + + + + + ENTICEMENT OF MINOR FOR INDECENT PURPOSES + + + + + STRIP STOLEN VEH + + + + + VIOLATION OF A COURT ORDER + + + + + SMUGGLE TO AVOID PAYING DUTY + + + + + FRAUD - CONFIDENCE GAME + + + + + HOMICIDE - WILLFUL KILL-NONFAMILY-GUN + + + + + SEXUALLY VIOLATE HUMAN REMAINS/NECROPHILIA + + + + + EAVESDROPPING + + + + + HOMICIDE - WILLFUL KILL-FAMILY-WEAPON + + + + + BARBITURATE + + + + + CRUELTY TOWARD ELDERLY + + + + + ARSON - PUB-BLDG-ENDANGERED LIFE + + + + + OBSCENE COMMUNICATION + + + + + ROBBERY + + + + + SEX OFFENSE - AGAINST CHILD-FONDLING + + + + + DICE GAME + + + + + ARSON - BUSINESS-ENDANGERED LIFE + + + + + TRANSPORT INTERSTATE FOR SEXUAL ACTIVITY + + + + + SEX ASSLT - SODOMY-MAN-GUN + + + + + LARC - FROM INTERSTATE SHIPMENT + + + + + CONSERVATION - ENVIRONMENT + + + + + KICKBACK + + + + + HOMICIDE - WILLFUL KILL-NONFAMILY-WEAPON + + + + + CONSERVATION - FISH + + + + + OPIUM OR DERIV + + + + + OBSCENE MATERIAL - POSSESS + + + + + TREASON + + + + + INTERSTATE TRANSP STOLEN VEH + + + + + ARSON - RESID + + + + + ANARCHISM + + + + + NONSUPPORT OF PARENT + + + + + SHOPLIFTING + + + + + EXTORT - THREAT ACCUSE PERSON OF CRIME + + + + + SEX ASSLT - SODOMY-GIRL-WEAPON + + + + + COUNTERFEITING OF + + + + + POSSESS COUNTERFEITED - SEE MIS + + + + + INVADE PRIVACY + + + + + POSSESS FORGED - SEE MIS + + + + + MOLESTATION OF MINOR + + + + + LOTTERY - RUNNER + + + + + BAIL - SECURED BOND + + + + + FRAUD - BY WIRE + + + + + KIDNAP - HIJACK AIRCRAFT + + + + + POSSESSION OF WEAPON + + + + + EXTORT - THREAT INJURE REPUTATION + + + + + PERJURY + + + + + CRUELTY TOWARD WIFE + + + + + REFUSING TO AID OFFICER + + + + + SEX ASSLT - SODOMY-BOY-STGARM + + + + + FIRING WEAPON + + + + + DAMAGE PROP - PRIVATE-WITH EXPLOSIVE + + + + + LEWD OR LASCIVIOUS ACTS WITH MINOR + + + + + ROBBERY - STREET-WEAPON + + + + + INDECENT EXPOSURE (TO MINORS AND ADULTS) + + + + + HARBORING ESCAPE/FUGITIVE + + + + + OBSCENE MATERIAL - MAILING + + + + + KEEPING HOUSE ILL FAME + + + + + RAPE + + + + + OBSTRUCT CORRESPONDENCE + + + + + MAKING FALSE REPORT + + + + + SUBJECT IS A THREAT TO A U.S. SECRET SERVICE PROTECTEE + + + + + SIMPLE ASSLT + + + + + COCAINE - SMUGGL + + + + + AGGRAV ASSLT - NONFAMILY-WEAPON + + + + + SEX ASSLT - SODOMY-WOMAN-WEAPON + + + + + HEALTH - SAFETY + + + + + THEFT AND USE VEH OTHER CRIME + + + + + SOVEREIGNTY + + + + + TRNSP FEMALE INTERSTATE FOR IMMORAL PURP + + + + + + + + + + + + + + + + BLACK + + + + + AMERICAN INDIAN + + + + + UNKNOWN + + + + + WHITE + + + + + ASIAN + + + + + + + + + + + + + + + + UNKNOWN - FOR UNIDENTIFIED ONLY + + + + + FEMALE + + + + + MALE + + + + + + + + + + + + + + + + Toe(s), nonspecific, tattoo + + + + + Amphetamines (includes stimulants,speed, etc.) + + + + + Artificial hip joint + + + + + Ear, right + + + + + Foot, nonspecific + + + + + Breast, left + + + + + Forearm, nonspecific, discolored + + + + + Hand, right + + + + + Stomach + + + + + Buttocks, nonspecific + + + + + Extra toe(s), left + + + + + Buttocks, nonspecific + + + + + Toe(s), nonspecific, scar + + + + + Crippled finger(s), right hand(includes webbed fingers) + + + + + Elbow, nonspecific, needle mark + + + + + Leg, nonspecific, artificial + + + + + Hand, nonspecific, artificial + + + + + Brace, right arm + + + + + Head, nonspecific (Use the MIS fieldo further describe location) + + + + + Toe(s), nonspecific + + + + + Ankle, nonspecific, needle mark + + + + + Missing Penis + + + + + Pierced abdomen + + + + + Breast, nonspecific + + + + + Extra nipple, right + + + + + Cleft chin + + + + + Knee, left + + + + + Ankle, left + + + + + Orthopedic plate + + + + + Left Toe, remove tattoo + + + + + Arm, left + + + + + Skin Disorders(includes psoriasis and eczema) + + + + + Finger(s), nonspecific, extra + + + + + Thigh, nonspecific + + + + + Tube in left ear + + + + + Knee, right + + + + + Ear, left, artificial + + + + + Foot, left, artificial + + + + + Arm, left, nonspecific + + + + + Ear, nonspecific + + + + + Penis + + + + + Ankle, right + + + + + Pierced left eyebrow + + + + + Arm, right upper + + + + + Spine + + + + + Groin area + + + + + Toe(s), left foot + + + + + Buttock, right + + + + + Groin area + + + + + Groin, nonspecific, discolored + + + + + Protruding lower jaw + + + + + Right Shoulder, artificial + + + + + Wrist, nonspecific, needle mark + + + + + Testis, left + + + + + Buttocks, nonspecific + + + + + Eye, left + + + + + Right forearm, mole + + + + + Lip, nonspecific + + + + + Hand, left + + + + + Finger joint(s), right hand + + + + + Nose + + + + + Hand, right + + + + + Buttocks + + + + + Wrist, nonspecific + + + + + Arm, lower left + + + + + Calf, nonspecific, needle mark + + + + + Breast, left + + + + + Knee, nonspecific + + + + + Hand, nonspecific + + + + + Ritalin + + + + + Leg, left + + + + + Elbow, nonspecific, discolored + + + + + Right Hip, fractured + + + + + Forearm, nonspecific + + + + + Glaucoma + + + + + Finger, nonspecific + + + + + Ear, nonspecific, missing + + + + + Right Forearm, discolored + + + + + Foot, right + + + + + Nose + + + + + Ankle, left + + + + + Rohypnol(Brand name for Flunitrazepam.Also referred to as "rophies","roofies", "ruffies", and "roche + + + + + Rib(s), right + + + + + Eyebrow, right/right eye area + + + + + Foot, left + + + + + Foot, left + + + + + Knee, nonspecific + + + + + Hand, right + + + + + Foot, nonspecific + + + + + Foot, right + + + + + Finger(s), left hand + + + + + Crippled hand, left + + + + + Pelvis + + + + + Pierced left ear + + + + + Marijuana + + + + + Ear, nonspecific + + + + + Right Elbow, artificial + + + + + Pierced right eyebrow + + + + + Upper Left Arm, discolored + + + + + Wire sutures + + + + + Finger(s), right + + + + + Ear, left + + + + + Forehead + + + + + Hand, left, artificial + + + + + Brace, one arm, nonspecific + + + + + Upper Left Arm, needle mark + + + + + Buttock, left + + + + + Thigh, nonspecific + + + + + Ear, right + + + + + Elbow, right + + + + + Spine + + + + + Hand, nonspecific + + + + + Thyroid Conditions or Diseases + + + + + Crippled toe(s), right(includes webbed toes) + + + + + Foot, nonspecific, missing + + + + + Drug Abuse + + + + + Brace, left and right arms + + + + + Leg, right, nonspecific + + + + + Back + + + + + Foot, nonspecific + + + + + Elbow, nonspecific, fractured + + + + + Leg, nonspecific + + + + + Leg, nonspecific + + + + + Cheek, nonspecific, dimple + + + + + Buttocks, right + + + + + Neck + + + + + Thigh, left + + + + + Breast, left + + + + + Lip, lower + + + + + Extra finger(s), left hand + + + + + Cocaine (includes crack) + + + + + Foot, right + + + + + Shoulder, left + + + + + Cauliflower ear, left + + + + + Elbow, right + + + + + Forehead + + + + + Left Toe, scar + + + + + Hip, left + + + + + Arm, right + + + + + Hip, left + + + + + Knee, right + + + + + Lip, lower + + + + + Wrist, left + + + + + Cataract, (nonspecified) + + + + + Skull plate + + + + + Clavicle, right + + + + + Hip, left + + + + + Leg, lower right + + + + + Ritalin + + + + + Right Toe, discolored + + + + + Cauliflower Ear + + + + + Thigh, nonspecific + + + + + Ankle, nonspecific + + + + + Shoulder, nonspecific + + + + + Ankle, left + + + + + Ear, nonspecific + + + + + Finger(s), nonspecific, needle mark + + + + + Jaw, upper right + + + + + Pierced nipple, left + + + + + Extra toe(s), right + + + + + Deviated septum + + + + + Buttocks, right + + + + + Hand, left + + + + + Leg, right + + + + + Knee, left + + + + + Hand, right + + + + + Right Toe, needle mark + + + + + Blind, both eyes + + + + + Left Toe, needle mark + + + + + Toe(s), nonspecific, remove tattoo + + + + + Shunt, cerebral ventricule + + + + + Ankle, left + + + + + Right Elbow, discolored + + + + + Penis + + + + + Foot, nonspecific, crippled + + + + + Ankle, nonspecific + + + + + Buttocks, nonspecific + + + + + Arm, left upper + + + + + Antibiotics + + + + + Hand, right + + + + + Shoulder, right + + + + + Humpbacked + + + + + Ear, left + + + + + Back + + + + + Knee, right + + + + + Calf, left + + + + + Wrist, left + + + + + Forearm, right + + + + + Nose + + + + + Alcoholism + + + + + Extra breast, nonspecific + + + + + Leg, nonspecific, crippled + + + + + Foot, right + + + + + Thigh, left + + + + + Finger(s), left hand + + + + + Hair implants + + + + + Eye, nonspecific, mole + + + + + Right Calf, discolored + + + + + Face, mole + + + + + Lip, upper + + + + + Eye, nonspecific, remove tattoo + + + + + Wrist, left + + + + + Wrist, right + + + + + Leg, left + + + + + Calf, nonspecific + + + + + Elbow, right + + + + + Lung, nonspecific, missing + + + + + Left Calf, needle mark + + + + + Arm, left + + + + + Breast, left + + + + + Cancer + + + + + Shoulder, right + + + + + Left Knee, needle mark + + + + + Crosseyed + + + + + Leg, upper left + + + + + Deaf, one ear (nonspecific) + + + + + Shoulder, nonspecific + + + + + Arm, left, artificial + + + + + Finger joint(s), left hand + + + + + Abdomen + + + + + Ear, left + + + + + Groin, nonspecific, needle mark + + + + + Antidepressants (mood-lifters -(Mood lifters - includes: Amitriptylene, Elavil, Norpramine, Prozac,T + + + + + Ear, right + + + + + Leg, right + + + + + Finger(s), right hand + + + + + Finger, nonspecific + + + + + Leg, right + + + + + Nose + + + + + Finger(s), right hand + + + + + Ankle, right + + + + + Extra nipple, center + + + + + Hip, nonspecific + + + + + Skull + + + + + Hip, nonspecific, healed fractured + + + + + Hip, right + + + + + Finger(s), right hand + + + + + Brace, teeth + + + + + Ear, right + + + + + Calf, right + + + + + Lip, upper + + + + + Leg, left, nonspecific + + + + + Eyebrow, left/left eye area + + + + + Thigh, right + + + + + Missing Cervical Vertebra(e) + + + + + Right Ankle, needle mark + + + + + Toe(s), nonspecific + + + + + Leg, nonspecific + + + + + Right Hip, artificial + + + + + Right Leg, fractured + + + + + Toe(s), nonspecific, discolored + + + + + Wrist, right + + + + + Calf, nonspecific, mole + + + + + Hematological Diseases (disease ofthe blood - includes: anemia,hemophilia, leukemia, and sicklecell + + + + + Leg, nonspecific, short + + + + + Hip, right + + + + + Leg, nonspecific + + + + + Ear, left + + + + + Toe(s), nonspecific, mole + + + + + Eating Disorders(Includes Anorexia Nervosa andBulimia) + + + + + Breast, nonspecific + + + + + Toe(s), nonspecific, missing + + + + + Left Leg, fractured + + + + + Toe(s), nonspecific, extra + + + + + Extra breast, left + + + + + Ovary, left + + + + + Left Elbow, needle mark + + + + + Leg, left + + + + + Leg, left, artificial + + + + + Wrist, nonspecific + + + + + Chest + + + + + Ankle, nonspecific + + + + + Pulmonary (Lung) Diseases(includes Emphesyma, CysticFibrosis) + + + + + Upper Right Arm, mole + + + + + Paraplegic + + + + + Leg, lower right + + + + + Arm, nonspecific, crippled + + + + + Ear, right + + + + + Buttocks, left + + + + + Jaw, nonspecific, protruding + + + + + Hand, left + + + + + Buttock, right + + + + + Finger(s), right hand + + + + + Finger(s), nonspecific, missing + + + + + Breast implant, left and right + + + + + Arm, upper left + + + + + Arm, nonspecific + + + + + Face, nonspecific(use MIS field to further describelocation) + + + + + Leg, left + + + + + Kidney, right + + + + + Neck + + + + + Intestines + + + + + Right Leg, healed fractured + + + + + Lip, upper + + + + + Ankle, right + + + + + Artificial knee joint + + + + + Elbow, nonspecific, mole + + + + + Pierced nipple, right + + + + + Cheek (face), nonspecific + + + + + Right Elbow, fractured + + + + + Cleft Lip + + + + + Buttock, left + + + + + Artificial elbow joint + + + + + Wrist, left + + + + + Ear, right + + + + + Penis + + + + + Leg, left + + + + + Hand, left + + + + + Wrist, nonspecific + + + + + Arm, nonspecific + + + + + Eye, left, artificial + + + + + Wrist, right + + + + + Leg, nonspecific + + + + + Nose + + + + + Extra vertebrae, lumbar + + + + + Diabetic + + + + + Foot, left + + + + + Left Shoulder, needle mark + + + + + Right Toe, scar + + + + + Shoulder, right + + + + + Right Arm, healed fractured + + + + + Left Arm, fractured + + + + + Breast implant, left + + + + + Hand, right + + + + + Forearm, nonspecific, mole + + + + + Eye, nonspecific, missing + + + + + Foot, left + + + + + Skull + + + + + Calf, nonspecific + + + + + Clavicle, right + + + + + Arm, right upper + + + + + Shoulder, left + + + + + Protruding upper jaw + + + + + Left Forearm, discolored + + + + + Anticonvulsants (seizuremedicines - includes: DilantinMysoline, Phenobarbital, etc.) + + + + + Intrauterine device + + + + + Nervous conditions including:seizures, stroke, senility, andmental retardation + + + + + Denture, upper only + + + + + Thigh, right + + + + + Pierced eyebrow, nonspecific + + + + + Extra breast, center + + + + + Penis, needle mark + + + + + Jaw, lower left + + + + + Arm, lower left + + + + + Knee, left + + + + + Right Knee, artificial + + + + + Arm, upper right + + + + + Foot, left + + + + + Hand, left + + + + + Arm, nonspecific + + + + + Silver tooth + + + + + Wheelchair + + + + + Adenoids + + + + + Knee, nonspecific + + + + + Shoulder, right + + + + + Crippled leg, left + + + + + Finger, nonspecific + + + + + Left Leg, healed fractured + + + + + Left Knee, artificial + + + + + Right Calf, mole + + + + + Insulin + + + + + Ankle, nonspecific + + + + + Pancreas + + + + + Chin + + + + + Foot, left + + + + + Breast implant, right + + + + + Hip, left + + + + + Breast, left + + + + + Finger Joint, nonspecific, missing + + + + + Hearing Aid + + + + + Foot, nonspecific, needle mark + + + + + Finger(s), right hand + + + + + Neck + + + + + Angle, right + + + + + Brace, back + + + + + Quadriplegic + + + + + Left Calf, mole + + + + + Penile implant + + + + + Hand, nonspecific, missing + + + + + Lip, nonspecific + + + + + Chest + + + + + Knee, nonspecific + + + + + Freckles + + + + + Thigh, left + + + + + Hand, nonspecific, crippled + + + + + Ovary, nonspecific, missing + + + + + Arm, right + + + + + Finger, nonspecific + + + + + Leg, left + + + + + Calf, right + + + + + Lip, nonspecific + + + + + Shoulder, nonspecific, needle mark + + + + + Hypnotics (sleeping aides -includes: Barbiturates,Chloral Hydrate, Glutethemide,etc.) + + + + + Cheek (face), right + + + + + Hand, left + + + + + Full Body(Use only when the entire body - arms, legs, chest, and back are covered with tattoos.) + + + + + Hip, right + + + + + Spleen + + + + + Groin area + + + + + Foot, nonspecific + + + + + Arm, upper right + + + + + Right Hip, healed fractured + + + + + Buttock, nonspecific, needle mark + + + + + Finger(s), left + + + + + Tooth/Teeth, nonspecific, extra + + + + + Hip, nonspecific + + + + + Jaw, lower left + + + + + Pierced genitalia + + + + + Denture, lower only + + + + + Arm, left + + + + + EXTRA TOOTH/TEETH (LOWER JAW) + + + + + Narcotics (includes Heroin,Morphine, Dilaudid, Methadone,etc.) + + + + + Leg, right (Use the MIS field tourther describe location) + + + + + Buttocks, left + + + + + Chest + + + + + Thigh, right + + + + + Gallbladder + + + + + Left Hip, fractured + + + + + Arm, nonspecific, artificial + + + + + Buttock, right + + + + + Brace, left and right legs + + + + + Right Eye, tattoo + + + + + Left Toe, tattoo + + + + + Denture, upper and lower + + + + + Lip, lower + + + + + Artificial shoulder joint + + + + + Calf, left + + + + + Arthritis + + + + + Cardiac (heart medications -includes: Digitalis,Digoxin, etc.) + + + + + Abdomen + + + + + Right Calf, needle mark + + + + + Brace, left leg + + + + + Leg, right, artificial + + + + + Arm, lower right + + + + + Cheek (face), left + + + + + Cardiac pacemaker + + + + + Missing Vertebra(e),nonspecific + + + + + Extra vertebrae, nonspecific + + + + + Arm, left upper + + + + + Thigh, right + + + + + Blind, right eye + + + + + Hip, nonspecific + + + + + Chin + + + + + Full body + + + + + Buttock, left + + + + + Ankle, nonspecific + + + + + Arm, lower left + + + + + Thigh, right + + + + + Eyebrow, left/left eye area + + + + + Wrist, nonspecific + + + + + Calf, left + + + + + Breasts + + + + + Thigh, left + + + + + Deaf, left and right ears + + + + + Toe(s), right foot + + + + + Eye, right, artificial + + + + + Foot, right + + + + + Crippled leg, right + + + + + Pierced ear, one nonspecific + + + + + Leg, upper left + + + + + Hand, nonspecific + + + + + Hip, right + + + + + Breast + + + + + Neck + + + + + Head, nonspecific(use MIS field to further describelocation) + + + + + Cheek (face), left + + + + + Arm, upper left + + + + + Eyebrow, nonspecific + + + + + Staples + + + + + Cleft palate + + + + + Neck + + + + + Stutters + + + + + Back + + + + + Forearm, left + + + + + Cauliflower ear, right + + + + + Rib(s), nonspecific + + + + + Foot, right + + + + + Shoulder, nonspecific + + + + + Tuberculosis + + + + + Breast, right + + + + + Ear, nonspecific + + + + + Wrist, right + + + + + Knee, right + + + + + Breast, right + + + + + Uterus + + + + + Shoulder, left + + + + + Thigh, right + + + + + Shoulder, right + + + + + Nose + + + + + Liver Disease(Including cirrhosis andhepatitis) + + + + + Intramedullary rod + + + + + Clavicle, nonspecific + + + + + Jaw, upper left + + + + + Hand, left + + + + + Pierced right ear + + + + + Pierced tongue + + + + + Forearm, left + + + + + Knee, left + + + + + Back + + + + + Right Hip, needle mark + + + + + Mute (To be used if person is mutebut not deaf.) + + + + + Left Elbow, artificial + + + + + Leg, lower left + + + + + Foot, nonspecific + + + + + Finger(s), nonspecific, crippled + + + + + Back + + + + + Left Hip, needle mark + + + + + Down's Syndrome + + + + + Eyebrow, right/right eye area + + + + + Leg, nonspecific + + + + + Finger(s), nonspecific + + + + + Crippled foot, right(includes clubfoot) + + + + + Appendix + + + + + Chin + + + + + Left Elbow, mole + + + + + Extra vertebrae, cervical + + + + + Ear, right, artificial + + + + + Lip, lower + + + + + Neurological Conditions or Diseases(includes Cerebral Palsy, Epilepsy, Multiple Sclerosis, Parkinson + + + + + Jaw, nonspecific + + + + + Left Elbow, discolored + + + + + Pierced nose + + + + + Hip, right + + + + + Foot, right + + + + + Wrist, left + + + + + Behavior Disorder(includes Autism, Depression,Schizophrenia, Suicidal Tendencies(past and present) + + + + + Face, nonspecific(use MIS field to further describelocation) + + + + + Hand, nonspecific, discolored + + + + + Testis, right + + + + + Toe(s), nonspecific, needle mark + + + + + Shunt, arterial vascular + + + + + Pelvis bone, left + + + + + Breast, nonspecific + + + + + Breast, right + + + + + Arm, lower right + + + + + Lower Right Arm, needle mark + + + + + Gold tooth + + + + + Kidney, left + + + + + Leg, upper right + + + + + Pierced nipple, nonspecific + + + + + Breast, right + + + + + Crippled arm, right + + + + + Crippled foot, left(includes clubfoot) + + + + + Dimples, left cheek (face) + + + + + Jaw, nonspecific + + + + + Calf, right + + + + + Arm, right, nonspecific + + + + + Larynx + + + + + Abdomen + + + + + Ear, left + + + + + Arm, nonspecific, missing + + + + + Sternum + + + + + Barbiturates + + + + + Arm, left + + + + + Finger(s), left hand + + + + + Pierced ears + + + + + Knee, left + + + + + Arm, right, artificial + + + + + Knee, nonspecific + + + + + Cane + + + + + Finger(s), left hand + + + + + Right Arm, fractured + + + + + Heart or circulatory diseasesincluding: high blood pressure,heart failure, heart attack,hardening o + + + + + Deaf-mute + + + + + Artificial larynx + + + + + Arm, nonspecific + + + + + Finger(s), right hand + + + + + Forearm, left + + + + + Arm, left + + + + + Leg, lower left + + + + + Leg, lower left + + + + + Leg, nonspecific, missing + + + + + Ankle, right + + + + + Ear, nonspecific + + + + + Lip, lower + + + + + Shorter left leg + + + + + Contact lenses + + + + + Dimples, right cheek (face) + + + + + Arm, right upper + + + + + Penis + + + + + Chest + + + + + Anti-Inflammatory Medication + + + + + Shoulder, left + + + + + Clavicle, left + + + + + Finger(s), left hand + + + + + Bronchial Dilators(Includes inhalers) + + + + + Abdomen + + + + + Hip, nonspecific + + + + + Left Hip, healed fractured + + + + + Hand, nonspecific, needle mark + + + + + Hand, nonspecific + + + + + Prostate Gland + + + + + Foot, nonspecific + + + + + Elbow, nonspecific + + + + + Pelvis + + + + + Hand + + + + + Toes(s), right foot + + + + + Ear, nonspecific, artificial + + + + + Left forearm, mole + + + + + Tube in right ear + + + + + Extra finger(s), right hand + + + + + Hallucinogens + + + + + Deaf, left ear + + + + + Eyebrow, nonspecific + + + + + Finger, nonspecific + + + + + Right Eye, remove tattoo + + + + + Ankle, left + + + + + Cheek (face), nonspecific + + + + + Thyroid + + + + + Dimples, chin + + + + + Hand, right + + + + + Elbow, nonspecific, healed fractured + + + + + Hip, nonspecific, needle mark + + + + + Left Toe, discolored + + + + + Cheek (face), left + + + + + Knee, left + + + + + Rib(s), right + + + + + Hip, left + + + + + Leg, nonspecific, needle mark + + + + + Arm, right (Use the MIS field tofurther describe location) + + + + + Leg, right + + + + + Leg, right + + + + + Chin + + + + + Breast, right + + + + + Arm, right + + + + + Arm, nonspecific, needle mark + + + + + Extra nipple, nonspecific + + + + + Calf, nonspecific, discolored + + + + + Clavicle, nonspecific + + + + + Cheek (face), right + + + + + Tourette's Syndrome + + + + + Tranquilizers (includes:Valium, Thorazine, Stellazine,etc.) + + + + + Kidney, nonspecific, missing + + + + + Cheek, right + + + + + Elbow, left + + + + + Head + + + + + Shoulder, nonspecific + + + + + Forearm, right + + + + + Wrist, nonspecific + + + + + Brace, right leg + + + + + Arm, right + + + + + Jaw, upper right + + + + + Ankle, nonspecific + + + + + Leg, upper right + + + + + Toe(s), nonspecific, crippled + + + + + Breast, left + + + + + Shoulder, left + + + + + Left Hip, artificial + + + + + Back + + + + + Shoulder, nonspecific + + + + + Pierced back + + + + + Elbow, left + + + + + Pierced lip, lower + + + + + Tongue + + + + + Sternum + + + + + Brace, one leg, nonspecific + + + + + Left Eye, tattoo + + + + + Colostomy appliances + + + + + Finger(s), right + + + + + Right Toe, tattoo + + + + + Kidney Conditions or Diseases + + + + + Breast, nonspecific + + + + + Knee, right + + + + + Left Toe, mole + + + + + Buttock, left + + + + + Lip, upper + + + + + Arm, nonspecific + + + + + Penis + + + + + Left Elbow, healed fractured + + + + + Buttock, right + + + + + Wrist, left + + + + + Right Knee, needle mark + + + + + Finger(s), right hand + + + + + Left Calf, discolored + + + + + Eyebrow, right/right eye area + + + + + Paint (includes thinner) + + + + + Groin Area + + + + + Extra nipple, left + + + + + Face, dimple + + + + + Leg, lower right + + + + + Ear, left + + + + + Vascular prosthesis + + + + + Nose + + + + + Cheek (face), right + + + + + Attention Deficit Disorder + + + + + Breast, nonspecific, missing + + + + + Rib(s), left + + + + + Head, nonspecific + + + + + Arm, left upper + + + + + Elbow, nonspecific + + + + + Lower Left Arm, needle mark + + + + + Allergies including asthma + + + + + Deaf, right ear + + + + + Thigh, left + + + + + Hip, nonspecific, fractured + + + + + Ovary, right + + + + + Crutches + + + + + Forehead + + + + + Lip, right + + + + + Thigh, left + + + + + Forearm, nonspecific + + + + + Jaw, lower left + + + + + Crippled toe(s), left(includes webbed toes) + + + + + Neck + + + + + Analgesics (pain relievers -includes: Darvon, Acetominophen,Aspirin, etc.) + + + + + Elbow, left + + + + + Leg, nonspecific + + + + + Face, nonspecific (Use the MIS fieldo further describe location) + + + + + Pelvis bone, right + + + + + Arm, lower right + + + + + Orthopedic nail or pin + + + + + Upper Right Arm, needle mark + + + + + Crippled arm, left + + + + + Left Elbow, fractured + + + + + Cheek, left + + + + + Upper Left Arm, mole + + + + + Pelvis bone, right + + + + + Wrist, right + + + + + Blind, left eye + + + + + Transsexual(Miscellaneous field should indicate what the individual was at birth and what they are a + + + + + Pockmarks + + + + + Shoulder, right + + + + + Foot, left + + + + + Right Toe, mole + + + + + Foot, right, artificial + + + + + Left Arm, healed fractured + + + + + Foot, left + + + + + Ankle, right + + + + + Lung, left + + + + + Calf, nonspecific + + + + + Wrist, right + + + + + Shoulder, nonspecific + + + + + Shoulder, left + + + + + Crippled finger(s), left hand(includes webbed fingers) + + + + + Transvestite + + + + + Nose + + + + + Knee, right + + + + + Glue + + + + + Right Elbow, mole + + + + + Finger(s), left hand + + + + + Arm, right + + + + + Shoulder, right + + + + + Toe(s), left foot + + + + + Jaw, upper left + + + + + Crippled hand, right + + + + + Alzheimer's Disease + + + + + Toes(s), left foot + + + + + Knee, nonspecific + + + + + Left Eye, remove tattoo + + + + + Cheek (face), left + + + + + Breast, right + + + + + Pierced lip, nonspecific + + + + + Other therapeutic medicationsnot listed above, identify inthe MIS Field. + + + + + Alcohol + + + + + Ankle, nonspecific + + + + + Thigh, nonspecific, needle mark + + + + + Forearm, nonspecific + + + + + Left Ankle, needle mark + + + + + Bald/Balding + + + + + Knee, nonspecific, needle mark + + + + + Pregnancy - Present + + + + + Shoulder, nonspecific + + + + + Foot, nonspecific, artificial + + + + + Toe(s), right foot + + + + + Finger(s), left + + + + + Eyebrow, left/left eye area + + + + + Cheek (face), right + + + + + Knee, nonspecific + + + + + Foot, right + + + + + Hand, left + + + + + Eye, nonspecific, artificial + + + + + Tubes in ears, left and right + + + + + EXTRA TOOTH/TEETH (UPPER JAW) + + + + + Ankle, right + + + + + Hand, nonspecific + + + + + Arm, left + + + + + Rib(s), left + + + + + Chin + + + + + Right Elbow, needle mark + + + + + Wrist, nonspecific + + + + + Wrist, nonspecific, mole + + + + + Glasses (prescription) + + + + + Pierced lip, upper + + + + + Finger(s), left hand + + + + + Hip, nonspecific + + + + + Jaw, lower left + + + + + Forehead + + + + + Thigh, nonspecific + + + + + Cataract, right eye + + + + + Wrist, left + + + + + Eye, right + + + + + Elbow, nonspecific + + + + + Eye, nonspecific, tattoo + + + + + Wrist, right + + + + + Lung, right + + + + + Cataract, left eye + + + + + Blind, one eye, nonspecific + + + + + Abdomen + + + + + Wrist, left + + + + + Extra breast, right + + + + + Shoulder, left + + + + + Upper Right Arm, discolored + + + + + Right Shoulder, needle mark + + + + + Hand, right + + + + + Finger(s), nonspecific + + + + + Thigh, nonspecific + + + + + Arm, nonspecific + + + + + Missing Lumbar Vertebra(e) + + + + + Cheek, nonspecific + + + + + Lip, nonspecific + + + + + Knee, right + + + + + Hand, right + + + + + Face, nonspecific + + + + + Testical, nonspecific, missing + + + + + Ovaries + + + + + Chest + + + + + Forearm, right + + + + + Breast, nonspecific, artificial + + + + + Back + + + + + Clavicle, left + + + + + Other drugs of abuse not listedabove, identify in themiscellaneous (MIS) field + + + + + Cheek (face), nonspecific + + + + + Left Shoulder, artificial + + + + + Foot, left + + + + + Right Elbow, healed fractured + + + + + Knee, left + + + + + Head, nonspecific(use MIS field to further describelocation) + + + + + Rib(s), nonspecific + + + + + Hand, right, artificial + + + + + Forehead + + + + + Right Toe, remove tattoo + + + + + Lip, nonspecific + + + + + Cheek (face), nonspecific + + + + + Brace, left arm + + + + + Pelvis bone, left + + + + + Foot, nonspecific + + + + + Ankle, left + + + + + Arm, nonspecific, mole + + + + + Foot, right + + + + + Acne + + + + + Hand, left + + + + + Pregnancy - Past + + + + + Wrist, right + + + + + Neck + + + + + Ankle, left + + + + + Tonsils + + + + + Orthopedic screw + + + + + Other medical disorders/conditionsnot listed above, identify in theMiscellaneous (MIS) Field + + + + + Brace, neck + + + + + Shorter right leg + + + + + + + + + + + + + + + + CHROME, STAINLESS STEEL + + + + + BRONZE + + + + + MAUVE + + + + + GREEN, DARK + + + + + COPPER + + + + + BLACK + + + + + TURQUOISE (BLUE) + + + + + MAROON, BURGUNDY (PURPLE) + + + + + BLUE, DARK + + + + + BROWN + + + + + GOLD + + + + + SILVER + + + + + TAUPE + + + + + RED + + + + + CREAM, IVORY + + + + + CAMOUFLAGE + + + + + AMETHYST + + + + + BLUE + + + + + GRAY + + + + + ORANGE + + + + + PINK + + + + + TAN + + + + + TEAL + + + + + YELLOW + + + + + MULTICOLORED + + + + + GREEN + + + + + PURPLE + + + + + WHITE + + + + + GREEN, LIGHT + + + + + BLUE, LIGHT + + + + + LAVENDER (PURPLE) + + + + + BEIGE + + + + + + + + + + + + + + + + Friendship Mobile Homes + + + + + Augustana + + + + + Taylor Mfg. Co., Inc. + + + + + Evanston Coach Co. + + + + + Rover + + + + + Lee + + + + + Dave Hicks Co., Inc. + + + + + Rolite, Inc. + + + + + Capacity of Texas, Inc.Longview, Texas + + + + + American Steel Works + + + + + Harvest Motor Home + + + + + Imperial(for model years 1955-1983, useVMA/IMPE; for models prior to 1955and model years 1990-1993, + + + + + Caldweld Div., Smith International,Inc. + + + + + Kings Highway + + + + + Active Homes Corp. + + + + + Mobilemanor, Inc. + + + + + ShipmateSemek Mfg., Inc. + + + + + Holly Industries (or Coach Co.) + + + + + Craftsman (also see make Sears,Roebuck & Co.) + + + + + Top Kat + + + + + Panoz Auto Development Co. + + + + + Rockwell + + + + + Hairgrove Industries, Inc.Longview, Texas + + + + + Milwaukee Motorcycle Co. + + + + + Mustang Trailer Mfg., Inc.Quitman, Arkansas + + + + + S & M Trailer Co. + + + + + Bombardier Inc.Valcourt, Quebec; Ski-Doo/Moto Ski + + + + + Chaparral + + + + + Zollinger Trailer Co. + + + + + Wallstrong Boat Trailer + + + + + Aurora + + + + + CHEROKEE MANUFACTURING COMPANY; SWEETWATER, TN + + + + + Bowen Mobile Homes, Inc.Mfd. by Bowen Mobile Homes, Inc. + + + + + Onan Corp.Minneapolis, Minnesota + + + + + Sportmasters of Tennessee, Inc. + + + + + Corsair Div.Div. Divco-Wayne Industries + + + + + Amphicar + + + + + Colt + + + + + Goldenvale, Inc. + + + + + Quality Trailer + + + + + Cox Trailers + + + + + Asplundh Manufacturing Div.,Asplundh Tree Expert Co. + + + + + Ferrari + + + + + Scamper Coach Trailer + + + + + Aircap Manufacturers, Inc.Tupelo, Mississippi--mfrs. power mowers + + + + + Trojan + + + + + Scotsman Industries, Inc. + + + + + Galbreath, Inc.Mfrs. refuse containers and trailers--Winimac, Indiana + + + + + Jaclen Mfg. Co. + + + + + Bellamy's Mfr. & Research ProductsHiltons, Virginia + + + + + Chrysler Outboard CorporationHartford, WI + + + + + A & M Boat Trailer + + + + + Drive On Trailer Mfg.Mishawaka, Indiana + + + + + Hahn Motors, Inc. + + + + + Challenge-Cook Brothers, Inc.Industry, California + + + + + Butterfield Musketeer + + + + + World Trailers, Inc.Ocala, Florida + + + + + Peterson + + + + + Hollywood Mobile Homes + + + + + Fostron's Factory Outlet Trailers + + + + + Cruiser RV, LLC + + + + + Horseman Camper + + + + + Franklin Equipment Co. + + + + + GRM + + + + + Sachs + + + + + Nissan + + + + + Caravan Industries + + + + + Blackwell Burner Co.San Antonio, Texas . + + + + + Bricklin + + + + + B.FOSTER & COMPANY, INC.; WAYNESBORO,PA + + + + + Birmingham Mfg. Co., Inc.Springfield, Alabama + + + + + Lyncoach & Truck Co. + + + + + Bass Trail Trailer Co., Inc.Mfrs. boat trailers--Midway, Arkansas + + + + + Empress Industries + + + + + Schevelle Homes Sales Corp. of Alabama + + + + + RAYCO MANUFACTURING,INC.; WOOSTER, OH ; EQUIPMENT & TRAILERS + + + + + Puzey Bros., Inc.Fairmont, Illinois + + + + + Brentwood Mobile HomesSubsidiary DeRose Industries, Inc. + + + + + Vertex + + + + + Saturn Corporation + + + + + Roofmaster + + + + + Trail Aire, Inc. + + + + + New Idea Electric Lawn Garden Tractor + + + + + Prebuilt Mfg. + + + + + Classic Aluminum Trailer Corp. + + + + + Funliner Mfg. Co. + + + + + Biot Camping Trailer + + + + + Manitou Mobile HomesMfd. by Rochester Homes, Inc. + + + + + Victorian Homes, Inc.Middlebury, Indiana + + + + + Ajax Trailer Co. + + + + + Neckover Trailer Mfg. Co.Troup, Texas + + + + + U-HaulPhoenix, AZ; utility trailers + + + + + MCIsee Motor Coach Industries, Inc. + + + + + Alloy Machine Products Corp. + + + + + Automatic Drilling Machines, Inc. + + + + + Santa Fe Trailer Co. + + + + + Schantz & Sons, Inc.Marine, Illinois + + + + + Franklin Coach Co. + + + + + Tow Mor ProductsCanon, Georgia + + + + + Gardner, Inc.Mfrs. travel trailers--Bristol, Indiana + + + + + Silver Streak Trailer Co. + + + + + Mercury Coach Corp. + + + + + Buick + + + + + Trail-Easy Travel Trailer + + + + + FN + + + + + Fat City Choppers + + + + + Advanced Vehicle SystemChattanooga, TN; electric shuttle bus + + + + + Racmac Trailer + + + + + Original Equipment Manufacturing, LTD.Sudbury, Ontario + + + + + Dandy Mobile HomesMfd. by Dan's Trailer Supply, Inc. + + + + + Barcraft Homes, Inc. + + + + + Delta Homes Corp. + + + + + Bo-Mar Mfg. Co. + + + + + Chem-Farm, Inc. + + + + + B & J Enterprises, Inc.Sikeston, Mo; mfg. utility trailers + + + + + Big Valley Trailers, Inc.Wynne, Arkansas + + + + + Foremost (also see make J.C.Penney) + + + + + Oasis Travel Trailer + + + + + California Mobile Homes + + + + + Speed + + + + + Pinifarina + + + + + Vespa + + + + + Pierce Arrow + + + + + Trail Horse + + + + + Hitching Rail Trailer + + + + + COACH HOUSE,INC.; NOKOMIS,FL;CLASS B MOTORHOME + + + + + Blanco (model of Intramotor) + + + + + Skycraft Trailer + + + + + R & G + + + + + Sportsman's Dream Mfg. Co. + + + + + Leisure Home TrailerManufacturer-Leisure Time + + + + + Stoughton Trailers, Inc.Stoughton, Wisconsin + + + + + Cruisaire Motor Corp. + + + + + Black Knight (model of Vincent) + + + + + Poclain Div., J. I. Case + + + + + Skipper B Trailer Co., Inc.Div. of Anderson Ind., Inc., Burleson,(formerly Brown Ind.)Texas + + + + + Country EstateMfd. by Redman Homes, Inc. + + + + + TOMOS/TOMAS; BULLET, SPRINT & OTHER MODELS + + + + + WELDTITE TRAILERS; HUNTERSVILLE, NC + + + + + Jerry's Welding Service (JWS)Freeport, Illinois + + + + + Kanzol Enterprises, Inc. + + + + + Twilite Mobile Home Mfg. + + + + + R & H Horse Trailer + + + + + KMG INTERNATIONAL; TANGO TRADE NAME + + + + + Wrangler Recreational ProductsFlorence, Alabama + + + + + EXPEDITION MOTORHOMES; MANUFACTURED BY FLEETWOOD + + + + + Gin Ray Mfg. Co.Nicollet, Minnesota + + + + + LONE STAR MANUFACTURING; VALLEY VIEW , TEXAS + + + + + Warrenville Trailer Mfg., Inc.Warrenville, Illinois + + + + + Single Tilt Trailer + + + + + Superformance International (Maker of replica vehicles) + + + + + B & B Trailer Mfg., Inc.Wapanuck, Oklahoma + + + + + Quality Steel & Aluminum Products + + + + + Cony Truck (Japan) + + + + + Horizon Motor Home + + + + + Snapper + + + + + Aztec Mobile Homes + + + + + Herter + + + + + Raes Utility Trailer + + + + + Syrena + + + + + Nuttall Trailers + + + + + Clapper Camper + + + + + International Trailer Corp. + + + + + Junior Camping Trailer + + + + + Hiawatha Mobile Homes + + + + + Haban/Agri-Fab or Agri-Fab/Haban + + + + + JINSCENG MOTORCYCLES/MINIBIKES, CHINA + + + + + Wonder Land Camper + + + + + Safeway Mobile Homes Div.Div. Commodore Corporation + + + + + Crown + + + + + Goodyear Camper Mfg., Inc.Lincoln, Nebraska + + + + + American Aluminum Co. + + + + + Parkwood Mobile Homes of Florida + + + + + Nissan Diesel Motor Co. (for reference + + + + + Rutt + + + + + Travelmaster, Inc. + + + + + Peddlers Choice + + + + + Easy Rider Trailer + + + + + BERING TRUCK DISTRIBUTION, LLC FRONT ROYAL, VA + + + + + Circle J Stock TrailerMfd. by Western World Inc., previouslyknown as Western Trailers Works, Inc. + + + + + Wildcat + + + + + Motel Mobile Corporation of America + + + + + OZBIKE; CYCLE IMPORTS; MIAMI,FL + + + + + Powell + + + + + Demco + + + + + Steelco, Inc.Alto Loma, Texas + + + + + OCI MANUFACTURING CO.; OREGON, IL + + + + + L & D TRAILERS INCORPORATED; SIKESTON,MO + + + + + Teton Travel Trailer + + + + + McClenny Machine Co. of Virginia, Inc.Suffolk, Virginia + + + + + CONTRACT MANUFACTURERS INC ALSO KNOWN AS :CM TRAILERS; MADILL, OK + + + + + Shasta Industries + + + + + HEARTLAND TRAILER MANUFACTURING & SALES, INC.; SIKESTON, MO BARLOW TRAILERS + + + + + AAA Mobile Home Mfg. Co. + + + + + Mid States Camping Trailer + + + + + Cloud Electric Vehicles + + + + + Hycaloader Co., Inc. + + + + + L & L Trailers + + + + + Travco Corp. + + + + + Stockland + + + + + Brantley Mfg. Co.Fredrick, Oklahoma + + + + + Hill Country Homes, Inc. + + + + + Emmert Mfg. Co., Inc. + + + + + All Star Coach, Inc. + + + + + Hall, R.D. Mfg., Inc. + + + + + Graco, Inc. + + + + + Silverline + + + + + Southern Classic Trailer Mfg., Inc. + + + + + Ada Horse Trailer + + + + + Melvin Manufacturing Corp.See Whip It Snowmobiles + + + + + Rea Trailer Co.Elgin, Illinois + + + + + Coach Craft, Inc. + + + + + Luv-It Mfg. + + + + + Edsel + + + + + KENNY BOYCE MOTORCYCLES + + + + + U.S. AIRFORCE VEHICLE; MAKE IS UNKNOWN + + + + + Trailblazer Trailer + + + + + Envirotech Corp., EIMCO ProcessMachinery Div. + + + + + Vought Industries + + + + + Theurer Atlantic, Inc.Newark, New Jersey + + + + + Wolseley + + + + + CCM/Clews + + + + + Custom Craft Mfg. Co. + + + + + Mobile Office, Inc. + + + + + Electric Vehicle Systems, Inc. + + + + + Graciela + + + + + Allied + + + + + K & O MANUFACTURING CO., INC.;HULL, IA + + + + + Bell's Custom Coaches + + + + + Clark-Wilcox + + + + + Autobieu + + + + + Passport + + + + + UTILITY TOOL & BODY CO., INC. CLINTONVILLE, WI + + + + + Laconia Custom Cycles + + + + + Carson Trailer IncCarson, CA; utility trailers + + + + + All States Trailer Co. + + + + + Marco + + + + + Double Shuffle Mobile Home + + + + + Commander Motor Home + + + + + Kargo TrailersIvyland, Pennsylvania + + + + + Encore + + + + + Foxi + + + + + Palace Corp. + + + + + Norse Trailer + + + + + DuAl Mfg. Co. + + + + + Golden State Mobile Homes + + + + + Daytona + + + + + Florida Trailer Co. + + + + + Waverly StructuresNorth Carolina + + + + + North Country + + + + + Swan Industries + + + + + United Motors + + + + + HIGH-LITE RIDES, INC.; GREER, SC + + + + + Allied Steel and Tractor Products,Inc. + + + + + Luxury Homes, Inc. + + + + + Dickirson Equipment Corp.Salem, Illinois + + + + + HAWN FREEWAY TRAILER SALES (HAWN TRAILERS); DALLAS, TEXAS + + + + + Bolinger Flatbed Trailer + + + + + Corey Enterprises + + + + + ABC Coach Co.From 1960 on, see Vought Industries + + + + + Cadet Coach Corp. + + + + + Orbit Industries, Inc. + + + + + Appleton Trailer + + + + + Kampers Kabin + + + + + ISHIKAWAJIMA-HARIMA HEAVY INDURSTRIES CO, LTD.; JAPAN + + + + + Fiesta (imported by Ford) + + + + + Travel Mate Trailer + + + + + Bullet Trailers, Inc.Boat Trailers, Glen Burnie, Maryland + + + + + AMERICAN YARD PRODUCTS, RIDING MOWERS, MOWERS;WEEDEATER & ELECTOLUX BRAND PRODUCTS + + + + + Osterlund, Inc.Harrisburg, Pennsylvania + + + + + National Mobile Homes + + + + + Ascort + + + + + Windjammer Motorcoach + + + + + Gary Carolina Co. + + + + + Tri-Rod + + + + + Layton Mfg. Co., Inc.Salem, Oregon + + + + + Henderson Mfg. Co. + + + + + Gemtop + + + + + Born Free + + + + + White GMC + + + + + Bell Mfg. Corp. + + + + + Lorak, Inc. + + + + + Williams Craft, Inc. + + + + + Hy-line Enterprises, Inc.Elkhart, Indiana + + + + + Mitsubishi + + + + + Waymatic Welding & Fabricating Co.Fulton, Kentucky + + + + + Martco Waste System Equipment + + + + + Harris Honker Camper Mfg. + + + + + Felburn Flatbed Trailer + + + + + Camelot Camper Trailer + + + + + Marathon Homes Corp.Elkhart, Indiana + + + + + JAMIE'S WELDING; OKLAHOMA + + + + + Carl A. Johnson & Sons + + + + + Kden-Craft Products, Inc. + + + + + FIAT KOBELCO; CONSTRUCTION EQUIPMENT/MACHINERY + + + + + Royal Cargo Trailers, Inc. + + + + + Vacation Homes + + + + + STANLEY YARD & GARDEN TRACTOR/MOWER ETC. + + + + + Blaine's Custom Mfg. ServiceJackson, Mississippi + + + + + Felber + + + + + Sho-Me Campers Co. + + + + + Vogue Motor Home + + + + + Pathfinder Mobile Homes + + + + + Alabama Trailer Co.Birmingham, Alabama + + + + + Low Boy Trailer + + + + + F & H Mfg. Co. + + + + + Italtelai Mfg. Co. (Italy) + + + + + Rycsa + + + + + Allied Mfg. Co. + + + + + WTM, INC.; HALEYVILLE, AL + + + + + Tuk-A-Way-Trailer + + + + + Zeta + + + + + Dan Dee Industries, Inc. + + + + + Blue Gator Boat Trailer + + + + + Star + + + + + Pleasuremate Industries + + + + + FWD Corp. + + + + + Owatonna Manufacturing Co., Inc. + + + + + Crawler Trailer + + + + + Rokon + + + + + I.D.E.C.O. + + + + + Park Estates Homes + + + + + Carter Trailer Co., Inc.Newport, Arkansas + + + + + Sabra + + + + + Maxim Ind., Inc.Mfr. of Maxim Fire Trucks, Middleboro,Massachusetts + + + + + Scenic Campers Co. + + + + + SIMPSON WELDING & CUSTOM TRAILERS / HOWBOY TRAILERS; HUGO, OK + + + + + Telsmith Div., Subsidiary of Barber-Greene Co. + + + + + Comanche Mobile Homes + + + + + Langley Mfg. Div., M.D. Knowlton Co. + + + + + Squire Travel Trailer + + + + + HAWK TRAILERS, LLC; MANAWA, WI + + + + + UAZ (Ulianovsk Automobile Zavod) + + + + + Glasride Trailer + + + + + Essix + + + + + Allmand, Inc.Holdrege, Nebraska + + + + + Rootes + + + + + Apex Travelers, Inc.Elkhart, Indiana + + + + + Western Dynamics Corp. + + + + + Glastron, Inc.New Braunfels, Texas + + + + + Richland Homes Mfg. Co.Subsidiary Magnolia Mobile Home + + + + + Lichty's Blacksmithing, Inc.Silverton, Oregon + + + + + Vac-Con + + + + + Ontario Bus Industries, Inc.Mississauga, Ontario, Canada; bus. + + + + + Massey-Ferguson, Inc.Des Moines, IA + + + + + DeSoto + + + + + Flasko Mfg. Co. + + + + + Tennant Co. + + + + + Sun Devil Trailers, Inc.Boat trailers--Tulsa, Oklahoma + + + + + Beechcraft Mobile Home + + + + + BantamDiv. of Koehring Co., Waverly, Iowa + + + + + LES MACHINERIES PRONOVOST, INC; CANADA + + + + + Feldman Engineering & Mfg., Co. + + + + + Flamingo Trailer Mfg. + + + + + General Trailer Co., Inc.Springfield, Oregon + + + + + Holsclaw Brothers, Inc.Evansville, Indiana + + + + + Barnes Pump Drain Unit + + + + + Frost Trailer Co.West Monroe, Louisiana + + + + + VM Boat Trailer + + + + + Thomas Conveyor Co. + + + + + Boatel Trailer + + + + + GENIE CONSTRUCTION EQUIPMENT; AERIAL,SCISSOR LIFTS ETC. + + + + + Trans Canada Rent-A-Trailer System + + + + + Giddings Machine Co., Inc.Fort Collins, Colorado + + + + + Monroe Tractor + + + + + Highway Trailer of Wisconsin &California + + + + + Prairie Trailer Sales & Service + + + + + Hackney & Sons, Inc. + + + + + Bebe + + + + + Pilgrim Mfg. Co. + + + + + CHEROKEE MOTORCYCLE COMPANY; OKLAHOMA FORMERLY KNOWN AS ''FAST TRAC MANUFACTURING '' OUT OF CALIFORN + + + + + Victoria + + + + + Ditch Witch Div.Div. of Charles Machine Works, DIWTfor reference only + + + + + Orthman Mfg., Inc. + + + + + Chippewa Mobile Homes Corp. + + + + + Dutec Trailer + + + + + Taylor Machine Works, Inc. + + + + + RED HORSE MOTORWORKS; LENEXA, KS + + + + + Draglite Trailer + + + + + HME, INCORPORATED; WYOMING, MI + + + + + Wylie Manufacturing Co.Subsidiary E. D. Etynre & Co.--Oregon,Illinois + + + + + Mack Trucks, Inc. + + + + + DAWSON ENTERPRISES; ELKHART, IN + + + + + Falcon Coach Co. + + + + + Miller & Smith + + + + + U.S. COAST GUARD; MAKE IS UNKNOWN + + + + + Clark-Gravely Corp.Gravely tractors + + + + + MJM Enterprises, Inc. + + + + + Randolph Coach + + + + + Checker + + + + + Marine Camper Trailer + + + + + AquaforgeWentzville, Missouri + + + + + Cliff Hall, Inc. + + + + + Skylark Industries, Inc.Bristol, Indiana + + + + + PW Trailer + + + + + Eastern-Bilt, Inc. + + + + + Curbmaster of America, Inc. + + + + + Kiefer Built, Inc.Kanawha, Iowa + + + + + Empire Plow Co. + + + + + SMPMfd. by Sweetwater Metal Products Co.,Inc. + + + + + Bizzarrini + + + + + Dynacruiser Mount Trailer + + + + + Brandt Trailers, Inc. + + + + + Russco Lowboy Trailer + + + + + Sunshine HomesRed Bay, Alabama + + + + + Piqua Engineering, Inc. + + + + + Trans-Sport + + + + + Highway IndustriesEdgerton, Wisconsin + + + + + Independent Products Co. + + + + + Tote Co.Lenox, Iowa + + + + + Super Flea + + + + + Pre-Built Structures + + + + + FINN CORPORATION; FAIRFIELD, OH + + + + + Artcraft Mobile Homes Mfg. Co. + + + + + Azalea Homes + + + + + Robinhood Motor Homes, Inc.Redondo Beach, California + + + + + TRAILS WEST MANUFACTURING OF IDAHO, INC.; PRESTON, ID + + + + + Travis + + + + + Cycle-MateMfd. by T & T Industries + + + + + Burnup and Sims, Inc.West Palm Beach, Florida + + + + + Degelman Industries, Ltd. (Canada) + + + + + Ultra, Inc. + + + + + Fleming Equipment Co.Ashdown, Arkansas + + + + + Over-Lowe Co. + + + + + Willys-Overland + + + + + Travel Industries + + + + + Essick Trailer + + + + + WORKHORSE CUSTOM CHASIS + + + + + Renault + + + + + Quincy Compressor Div.Colt Ind, Inc., Quincy, Illinois + + + + + MastercraftBryan Metal Products, Inc. + + + + + Ajax Electric Motor Corp. + + + + + Volkswagen + + + + + Linville Horse Trailer + + + + + Ryder + + + + + Snow Tri Scat + + + + + Exco Boat Trailers + + + + + Brandywine Travel Trailer + + + + + Big Horn Trailer + + + + + Griffith + + + + + Astro Mobile Homes Mfg. Co. + + + + + CAR MATE TRAILERS; LEEPER, PENNSYLVANIA + + + + + Ag-Tronic, Inc. + + + + + Brigadier Mobile HomesDiv. Brigadier Industries, Inc. + + + + + CHEROKEE FABRICATION, INC.; OCALA, FLORIDA + + + + + Arista + + + + + Academy Mobile HomesMfd. by Skyline Motorized Div. + + + + + Gorman-Rupp Company, TheMansfield, Ohio + + + + + Dragon ESP, Ltd., or Environmental Service Products + + + + + AVANTI CYCLES,MOPEDS & SCOOTERS + + + + + Fortune Homes Corp. + + + + + NORTHWOOD OF VIRGINIA; WINCHESTER VIRGINIA + + + + + Norcal Boat Trailer + + + + + DMH Co.Div. of National Gypsum Co., St. Louis,Michigan + + + + + Commercial Vehicles, Inc.Tulsa, Oklahoma + + + + + Austin-Healy + + + + + COMPETITIVE TRAILERS, INC.; BELLFLOWER CALIFORNIA + + + + + Bug + + + + + Tama + + + + + WARRIOR TRAILERS, ONTARIO, CA + + + + + Century Engineering Corp. + + + + + Crimson HomesDiv. Winston Industries, Inc. + + + + + YARD MACHINE; SUBSIDIARY OF MTD INDUSTRIES (MOWERS ETC) + + + + + Newell Coach Corp.Miami, Oklahoma + + + + + Great Lakes Mobile HomesDiv. of Guerdon Industries + + + + + Ja-Mar Manufacturing IncSikeston, MO + + + + + Short Go, Inc. + + + + + Mobile Home Industries, Inc.Tallahassee, Florida + + + + + B & B Custom Built TrailersNewport, Arkansas + + + + + Zar Car + + + + + Enterprise Motor Home + + + + + Brewer Utility + + + + + Twin Grove Mfg., Inc.Verona, Wisconsin + + + + + Kenskill Trailer Corp. + + + + + KTM + + + + + CCCCrane Carrier (A CCI Co.) + + + + + Motobic + + + + + B & W Custom Trailers, Inc. + + + + + L & M Trailer Mfg. + + + + + Lonnie's Trailer Sales + + + + + Stoner Trail + + + + + DillyNelson-Dykes Co., Inc. + + + + + Haulmark Industries, Inc. + + + + + White Motor Corp. + + + + + Black Diamond Trailer, Inc.New Tazewell, Tennessee + + + + + Hus-Key Mfg., Inc. + + + + + CHASSIS KING, LLC; CLEARWATER, FL + + + + + Royal Crest Co. + + + + + Fountain Flatbed Trailer + + + + + Utopia Coach Corp. + + + + + Kropf Mfg. Co., Inc. + + + + + Chevallero Motor Home + + + + + DENCO MANUFACTURING + + + + + LOAD TRAIL, INC.; SUMNER, TX + + + + + Young Corp. + + + + + ROCKIN L. RIGGIN CORP.; GRAHAM, TEXAS + + + + + Murray Marine Corp. + + + + + Borella + + + + + Bros. Div.American Hoist Derrick Co., St. Paul,Minnesota + + + + + Phillips TrailersChickasha, Oklahoma + + + + + Eversman Mfg. Co. + + + + + TN TRAILERS, LLC; SHIPSHEWANA, INDIANA + + + + + Roadway Trailer, Ltd. + + + + + W & W White Horse Trailer + + + + + WORTHINGTON WELDING, INC. TRAILERS; PENNSYLVANIA 4MV OR 1W9/OO3 + + + + + R & A MANUFACTURING PARTENRS, LTD.; HOUSTON, TX + + + + + Bi-Motor Stallion + + + + + Hagon + + + + + Kal-Custom Boat Trailer + + + + + Millan Flatdeck + + + + + Supertrail Mfg. Co., Inc.Aberdeen, Misssippi + + + + + C&C MANUFACTURING & FAB; HAZLETON, PA + + + + + Malheur Mobile Homes, Inc. + + + + + Empire Corp., Inc. + + + + + Baker Equipment & Engineering Co. + + + + + AMC Trailer + + + + + Scepter Utility Trailer + + + + + General Engines Co., Inc.Throfare, New Jersey + + + + + Delavan Trailer + + + + + Gardner-Pacific-Sunrader, Inc.Vallejo, California + + + + + TRAILMANOR, INC.; LAKE CITY, TN + + + + + ADLER + + + + + Girard's Mfg. Co. + + + + + Valley TrailersCynthiana, Ohio + + + + + Insley Manufacturing Co.Subsidiary AMCA International Corp. + + + + + Jet + + + + + Chausse Manufacturing Co., Inc. + + + + + Gerard Lowboy Trailer + + + + + Lone Star Boat Mfg. + + + + + Titan Trailer Corp.Div. Concord Mobile Homes--Woodland,California + + + + + Tawas Trailers, Inc. + + + + + Crowley Mfg.Mathiston, Mississippi + + + + + Construction Machinery Div., ClarkEquipment Co. + + + + + Hornet Flatbed Trailer + + + + + Lintzcraft Travel Trailer + + + + + Watt Camper + + + + + Desperado Motor Racing & Motorcycles, Inc. + + + + + MADAMI MOTOR SCOOTERS, ETC. + + + + + BolensMfd. by Outdoor Power Equipment Div.,FMC + + + + + Camp-N-All Co. + + + + + Donahue Corp., The + + + + + Dana Truck Mount Camper + + + + + Conner Industries, Inc. + + + + + TROPHY HOMES, INC.; ELKHART, IN + + + + + Com-Fab, Inc. + + + + + Toyoco + + + + + Deere and CompanyMoline, IL + + + + + Klassic Trailer Mfg. + + + + + Clinton Engine Corp. + + + + + Lone Star Classics + + + + + Cyclescoot + + + + + Custom Bond Mfg. Co.Lansing, Michigan + + + + + Regis Corp. + + + + + Watsonian + + + + + Springcycle + + + + + C.M.Cub (mfd. by SWI Tong Corp.,imported by Convenience Machines) + + + + + Citroen + + + + + Italian Ford + + + + + Bullmobile Trailer, Inc.Caldwell, Kansas + + + + + A. J. Travelute Trailer Mfg. Co. + + + + + BRADTEC, LTD.; DERBY, KS + + + + + R. O. Corp. + + + + + WILKENS MANUFACTURING, INC.; STOCKTON, KANSAS + + + + + XYZ Trailer + + + + + Conestega Mfg. Co. + + + + + Wolfe Mfg. Co. + + + + + Raymond Products Co. + + + + + CARRY ON TRAILER CORP + + + + + Blair HouseMfd. by Manufactured Housing ManagementCorp. + + + + + Charlie Perkins Trailer Company, IncHamshire, TX + + + + + Howard Rotavator Co., Inc., Subsidi-ary of Howard Machinery, Ltd. + + + + + Kent Air Tool Co. + + + + + Herter's, Inc.Waseca, MN + + + + + Calis Travel Trailer + + + + + Commuter Vehicles, Inc. + + + + + Pontiac (Canadian) (Also see makePontiac) + + + + + Hallmark Motor Home + + + + + Jack's Trailer Mfg. + + + + + Craftmade Homes, Inc. + + + + + North American Shipbuilding + + + + + Winston IndustriesMobile homes--Double Springs, Alabama + + + + + Rance Aluminum, Inc. + + + + + GENERAL ENGINES CO. INC.; FLORIDA EAGER BEAVER & INTERSTATE + + + + + Strale + + + + + Beechwood Motor Home + + + + + GLENDALE RECREATIONAL VEHICLES; STRATHROY, ONTARIO, CANADA + + + + + Clayton Homes, Inc.Div. of Clayton Industries, Inc.,Knoxville, Tennessee + + + + + Thiele, Inc.Windber, Pennsylvania + + + + + Prior Products, Inc.Dallas, Texas + + + + + Oklahoma Horse Trailer + + + + + Bushog/Loadcraft (Div. Allied ProductsBrady, TexasCorp.) + + + + + Tuffy + + + + + Sears, Wendell + + + + + Bethany Fellowship + + + + + Zhejiang Lingyun Motorcycle Co., Ltd. + + + + + Trail Mate Trailer Co.Bellingham, Washington + + + + + Cooper + + + + + Sprite + + + + + BYSON TRAILERS + + + + + General Motors Corp. + + + + + Trailer Coach Metal Spec.Vancouver, Washington + + + + + Envoy + + + + + Interstate Trailers, Inc.Arlington, Texas + + + + + Caravel IndustriesWylliesburg, Virginia + + + + + GrasshopperMfd. by Moridge Mfg., Inc. + + + + + Navistar + + + + + Blix Coach + + + + + Riverdale Steel Works + + + + + Can-Car(Canadian Car Trailer Sales Div.)Rexdale, Ontario--Div. of Hawker-Siddeley, Canada + + + + + Cheston & Eshelman Co. + + + + + A & B Trailer Mfg. Co., Inc.Crown Point, Indiana + + + + + Perone Trailer + + + + + Three C's, Inc. + + + + + ZHONGYU GROUP; MOTORCYCLES ETC. + + + + + Speedway + + + + + Morgan Equipment Co. + + + + + Winpower Corp.Newton, Iowa + + + + + Sisu USA Inc. + + + + + Field Office Mfg. Co. + + + + + EXMARK RIDING LAWN MOWER + + + + + Chin Yuan Chi Casting Corp.Paichung, Taiwan + + + + + Eric Enterprises, Inc.Coventry, Connecticut + + + + + Gruendler Crusher and Pulverizer Co. + + + + + POWER TRAC MACHINERY + + + + + Red Arrow Trailer Co. + + + + + HAMPTON AMUSEMENT RIDES, LLC; MISSOURI + + + + + Pamco Trailer + + + + + Pauli Cooling Systems, Inc. + + + + + Asuna + + + + + Kioti + + + + + Huber-Warco + + + + + Peugeot + + + + + Batavus Mo-ped + + + + + American Hauler Ind. + + + + + Huntsman, Inc.Chetopa, Kansas + + + + + Lippert Components Mfg., Inc. + + + + + VAL + + + + + Taylor Made Choppers + + + + + Gator Products, Inc.Jacksonville, Florida + + + + + JOHN KERR MANUFACTURING, CO. + + + + + Carnes Welding & Fabricating Co.Crescent, Oklahoma + + + + + Kaj'n Homes, Inc. + + + + + USTS MANUFACTURING. INC; CANTON, OHIO + + + + + Willys + + + + + Connell Industries, Inc.Phil Campbell, Alabama + + + + + Hitachi + + + + + HRG + + + + + Loadmaster Trailer Co., Ltd. + + + + + Seagrave Fire ApparatusClintonville, Wisconsin + + + + + Sopko Mfg., Inc. + + + + + Dawes Products Co. + + + + + Dong Feng (East Wind) + + + + + Ioni-A-Home Mfg. Co. + + + + + Escape Trailer + + + + + Bass TrackerMfd. by JLM Industries + + + + + Trevco Enterprises + + + + + Pick-Up Top Mfg. + + + + + Zimmerman Automobiles + + + + + PEMBERTON FABRICATORS, INC.; RANCOCAS, NJ + + + + + American Jenbach Corp. + + + + + Hino + + + + + Nelson-Dykes Co. + + + + + Husqvarna + + + + + Lazer + + + + + Load Max Trailers, Ltd. + + + + + Scott Midland Div.Div. A-T-O, Inc. + + + + + Ponycycle + + + + + Circle S Star RouteSulphur Springs, Texas + + + + + Hyundai Trailers + + + + + Ikarus Buses and Coaches + + + + + WES-TEX MANUFACTURING, INC.; LUBBOCK, TX + + + + + Newman Trailers + + + + + Sellers Trailer + + + + + Rocket Trailer, Ltd. + + + + + Park Lane Mobile Homes + + + + + Northway Trailer + + + + + Westinghouse Equipped Mobile Home + + + + + IRONDOG TRAILERS + + + + + E-Max Motorcycles/GGC-Global Generation Cult GMBH + + + + + Wain-Roy, Inc. + + + + + Steyr-Puch + + + + + Bremen Sport Equipment, Inc.(Bremen,IN) + + + + + Wiggins Lifts Co., Inc.Mfgs. Forklifts + + + + + Lynnton Mfg. Co. + + + + + The Broyhill Co. + + + + + XPLORER MOTOR HOME DIV OF FRANK INDUSTRIES + + + + + Clenet Coach Works + + + + + Aluma-liteMfd. by Holiday Rambler Corp. + + + + + Cherokee Mobile Homes + + + + + Big Joe Manufacturing Co. + + + + + Kar-Go Metal Stamping Co.Willow Grove, Pennsylvania + + + + + Sierra Campers Mfg. + + + + + Elliott Mobile Home Mfg. + + + + + Krager Kustom Koach, Inc. + + + + + Acorn Equipment Corp. + + + + + Wenger Mfg. + + + + + Opel (imported by Buick) + + + + + Marcos + + + + + Elcar Mobile Homes, Inc.Div. Divco-Wayne Industries + + + + + Wisconsin Tag-A-Long Trailer + + + + + Reconstructed Motorcycle (SeeOperating Manual,Part 1) + + + + + Cadillac + + + + + Tanckon FRP, Inc. + + + + + Tem Ken Trailers Mfg. + + + + + Allen Engineering Corp. + + + + + Hoosier Mobile Homes + + + + + Yenko + + + + + Citicar (electric car) + + + + + Camp Equipment Co., Inc + + + + + Rhino Tool Company + + + + + WSK + + + + + Five-K Trailer Co., Inc.Bethalto, Illinois + + + + + California Camper Mfg. + + + + + Melroe Tractor Truck + + + + + Time OutT.O. Corp. + + + + + Grady-White Boat Co. + + + + + Milwaukee Electric Tool Corp. + + + + + Versa Two Wheel Trailer + + + + + (Generic Code--for use only whenmanufacturer is not listed) + + + + + Carrie-Craft Div.Div. Thrift Cts. of America + + + + + Argo + + + + + Canoga Mfg. Co., Inc.Mfg. Cement Mixer + + + + + Allied American Builders Corp. + + + + + Georgia Trailer & Equipment Corp.Macon, Georgia + + + + + Little Chum Mfg. Co. + + + + + Penn-Cupit Industries Ltd. + + + + + Pacific Boat Trailers, Inc.Anaheim, California + + + + + Bridge Mfg. and Equipment Co.Woodburn, Indiana + + + + + Comet Mobile Homes + + + + + Barrington HomesSubsidiary Fleetwood Interprises + + + + + Golfmobile + + + + + Transit + + + + + Joseph Thatcher + + + + + Sani-Cruiser Co. + + + + + CMI Corp. + + + + + Bowsman TrailersThree Rivers, Michigan + + + + + New Style Homes, Inc.Pineville, Missouri + + + + + U.S. COACHWORKS, INC.;ZEIGLER, IL + + + + + Wilray ManufacturingFt. Benton, Montana + + + + + The Highland GroupBeachwood, OH; utility trailers + + + + + TEC + + + + + Grove Mfg. Co.Affiliated with Kidde, Inc.,Shady Grove,Pennsylvania + + + + + Hoffman + + + + + COUNTRY CLIPPER; RIDING MOWERS; JAZEE MODEL DIVISION OF SHIVVERS MANUFACTURING + + + + + All A Cart Mfg., Inc. + + + + + Chrysler Boat Co. + + + + + Torch IndustriesElkhart, Indiana + + + + + Pama Camper + + + + + Road King Travel Trailer + + + + + Hide-A-Way Camper + + + + + Shivvers, Inc. + + + + + Aircraft (see Operating Manual,Part 1, Section 2.) + + + + + Gold Leaf Engineering Co. + + + + + GREAT DANE INCORPORATED; FARM & GARDEN EQUIP + + + + + Four Seasons Travel Trailer + + + + + Midway Engineering Co. + + + + + Traveliner Travel Trailer + + + + + Airflyte Mfg. Co. + + + + + Young Spring & Wire + + + + + Wagon Train, Inc. + + + + + Coyote Mfg. Corp.Corona, California + + + + + Copco Steel & EngineeringSouthbend, Indiana + + + + + Eager Beaver Trailer + + + + + Wigwam Motor Home + + + + + Graffin Wellpoint Corp. + + + + + Trailite Trailer + + + + + Neoplan USA CorporationLamar, CO; transit buses + + + + + Debonair + + + + + GAZ + + + + + Lee Coaches + + + + + Magnum Custom Trailer Mfg. Co.Boat utility trailers--Austin, Texas + + + + + Sportsman + + + + + Rockne + + + + + ColumbiaSee MTD Products, Inc. + + + + + Darvon Double Trailer + + + + + Indio Trailer Mfg. Corp. + + + + + Harlow Travel Trailer + + + + + Mercury Boat Co. + + + + + Stillwater Supply Co. + + + + + DKR + + + + + HITCH-HIKER MANUFACTURING, INC., NEW MIDDLETOWN, OH + + + + + Sloat Mfg. Co. + + + + + Pegaso + + + + + Meade + + + + + Countryside Mobile HomeMfd. by Remic Industries, Inc. + + + + + Hellwood Trailer + + + + + Flag Ship Boat Trailer + + + + + TEAM SPIRIT TRAILERS; ELKHART, INDIANA + + + + + Brookwood Mobile Home + + + + + WOOD-MIZER PRODUCTS, INC.; INDIANAPOLIS, IN + + + + + CROSS COUNTRY MANUFACTURING; GREENE, NEW YORK (TRAILERS) + + + + + Modern + + + + + Olympic Trailers + + + + + Excelsior + + + + + Clifford B. Hanney & Sons, Inc. + + + + + Karson Industries, Inc. + + + + + Great Escape + + + + + Montgomery Ward + + + + + R-VISION, INC. INDIANA; MANUFACTURER OF TRAIL BAY TRAVEL TRAILER AND OTHER BRANDS + + + + + Hampton Homes, Inc.Edwardsburg, Michigan + + + + + Sherwood Baronet Tent Trailer + + + + + CANNONDALE CORPORATION, MAKER OF MOTORCYCLES + + + + + Monarch Boat Co.Camper Division + + + + + D.B. + + + + + Magic Touch, Inc. + + + + + Wishbone Trailers, Inc.Hot Springs, Arkansas + + + + + Star Fire, Inc. + + + + + Part (Generic Code--for use onlywhen manufacturer is not listed) + + + + + Travel Supreme, Inc. + + + + + Custom Engineering + + + + + Ginetta + + + + + C & W Truck & Equip. Co., Inc. + + + + + Ruchmore Homes + + + + + Dutchman ManufacturingMiddlebury, IN + + + + + Ransome + + + + + G & F TrailerBoat trailer mfd. in Bainbridge, Georgia + + + + + Target Coach Mfg. Co.Div. Central Builders Supply + + + + + Contessa + + + + + Komatsu American Corp. + + + + + Kitty HawkMfd. by Wright Brothers, Inc. + + + + + Canton Trailer Co. + + + + + Pioneer Coach Mfg. + + + + + ULTIMA MOTORCYCLE + + + + + Roadliner Mfg. Division + + + + + Superior Mfg., Inc. + + + + + SCAG POWER EQUIPMENT, DIVISION OF MTEALCRAFT OF MAYVILLE,WI MAKER OF POWER RIDING MOWERS + + + + + LBTDiv. Fruehauf Corp. + + + + + CZ Engineering, Inc.Dixon, Missouri + + + + + Federal Trailer Co. + + + + + Genuine Scooter Co. + + + + + Harklau Industries, Ind.Humboldt, Iowa + + + + + Ben Hur + + + + + Tornado (British) + + + + + Ossa (Spain) + + + + + King Midget + + + + + Toro Co. + + + + + THOMAS EQUIPMENT LTD.; NEW BRUNSWICK, CANADA + + + + + Cozad Trailer SalesStockton, California + + + + + BANDIT INDUSTRIES; MICHIGAN + + + + + Hainan-Sundiro + + + + + M-System, Inc. + + + + + Shopmade Flatbed Trailer + + + + + Trojan Homes + + + + + Redstone Coach Co. + + + + + Kipco + + + + + Vito Mfg. Co.Hazleton, Pennsylvania + + + + + AMCO Products + + + + + Truco + + + + + Challenger Homes, Inc.Columbia, Tennessee + + + + + Larson Machine, Inc.Princeville, Illinois + + + + + Sahara Mobile Homes + + + + + Virginia Homes Mfg. Corp.Boydton, Virginia + + + + + Terramite Corp. + + + + + Eco-Bike Elec Motorcycle + + + + + Reliart Trailer Mfg. Co. + + + + + Sightseer Motor Home + + + + + Pride Heavy Vehicle Ind. & Pride Enterprises + + + + + Chappy (mfd. by Yamaha Motor Corp.) + + + + + Xkeleton Motorcycles, LLC + + + + + STOLL TRAILERS, INC; ABBEVILLE, SC + + + + + Aros + + + + + Aeta + + + + + Western Trailers IncCo-Tem Corp. Boise, Idaho + + + + + Ranger Boats & Trailers + + + + + Odyssey Trailer Co. + + + + + Air-O-Corp. + + + + + Trillium Trailer + + + + + THUNDER MOUNTAIN CUSTON CYCLES; LOVELAND, COLORADO + + + + + Welchel Enterprises, LLC + + + + + BROWN CARGO VAN, INC.; LAWRENCE, KS + + + + + Pyle Haul-It-All Flatbed + + + + + Buck Camper Co. + + + + + AMERICAN DIRT BIKE, INC.; CALIFORNIA + + + + + Athey Products Corp. + + + + + Fort Lupton Campers + + + + + PRATT INDUSTRIES, INC.; BELLEAIR BLUFFS, FL + + + + + Pacific Campers + + + + + Conestoga Mobile Homes + + + + + Nevlen Company Inc.Wakefield, Massachusetts + + + + + Long Trailer Co., Inc.Tarboro, North Carolina + + + + + Senora TrailersYuma, AZ; trailers + + + + + Van Tech + + + + + Lamborghini + + + + + Talbert Mfg. Inc.Rensselaer, Indiana + + + + + Performance Products, Inc. + + + + + Crescent Trailers, Inc. + + + + + TLC Carrossiers + + + + + Built Rite Trailer + + + + + Stewart Engineering & Equipment Co. + + + + + Trail King Travel Trailer + + + + + Barret + + + + + Break + + + + + Thompson Concrete Pump Trailer + + + + + Beall, Inc.Billings, Montana + + + + + Troy Industries + + + + + Christianson Industries, Inc.Edwardsburg, Michigan + + + + + Carley + + + + + Gooseneck Trailer Mfg. Co., Inc.Bryan, Texas + + + + + Travelcraft Motor Home + + + + + Big Bear (mfd. by Flexo Products Co) + + + + + Duke Mobile Homes + + + + + QUALITY BUILT TRAILER, INC.; NEW MARKET, TN + + + + + Skamper Corp. + + + + + Hendrickson Manufacturing Co. + + + + + Sportcoach Motor HomeMfd. by Sportscoach Corp. of America,Chatsworth, California + + + + + Kentucky Mfg. Co.Louisville, Kentucky + + + + + VENTURE TRAILERS + + + + + River Run + + + + + Beijing Jeep + + + + + Model A and Model T Motor CarReproduction Corp. + + + + + Kensington Welding & Trailer Co.Kensington, Connecticut + + + + + Nomanco, Inc. + + + + + FAST TRAC MANUFACTURING; MOTORCYCLES, CALIFORNIA AS OF 5/2002 KNOWN AS CHEROKEE MOTORCYCLE COMPANY, + + + + + Bills Welding Model Trailer + + + + + Iben Boat Trailer + + + + + Super CookerMfd. by Deep South Sales Co. + + + + + Tecumseh Products Co., Engine Div. + + + + + Cavalier Trailer Mfg. Co. + + + + + Belshe TrailerTecumseh, Oklahoma + + + + + Downey Sheet Metal Shop + + + + + Ber-Vac (Canada) + + + + + Les Autobus M.C.I. + + + + + W. F. Larson, Inc. + + + + + TCI,Inc.Benson, Minnesota + + + + + Galactic Corp. + + + + + U.S. CARGO, INC + + + + + American Duralite Corp. + + + + + Snyder Trailer Co. + + + + + Vacationar Motor Home Truck + + + + + Ampco Mfg. + + + + + Forest City Industries, Inc. + + + + + Mini-CruiserMfd. by R.B.R. Corp. + + + + + YENTES BROTHERS WELDING; LANCASTER, CALIFORNIA + + + + + Capriolo + + + + + Smalley Mfg. Co. + + + + + Feldman Custom TrailersBowling Green, Kentucky + + + + + Wynona Corp.Nappanee, Indiana + + + + + Bankhead Welding Service + + + + + Morger Welding & Mfg., Inc.Bakersfield, California + + + + + Wagon-Haven, Inc. + + + + + Parson Co. Div.Div. of Koehring Co. + + + + + Catalina Amphibious Homes + + + + + General Coach Works, Inc. + + + + + LaSalle HomesDiv. of Tidwell Industries, Inc.,Ripley, Mississippi + + + + + Bowie Industries Corp.Bowie, Texas + + + + + Homemade motorcycle code (seeOperating Manual, Part 1,Section 2.) + + + + + GULF STREAM + + + + + Lectracan + + + + + Multition Hydraulic Truck + + + + + RIDGELINE, INC; WASHBURN, TN + + + + + Comet Construction Co. + + + + + Ford (also see English, French,German, and Italian Ford) + + + + + H. & W. Mfg. Co. + + + + + Kenworth Northwest, Inc.Seattle, Washington + + + + + Triggs-Miner Corp. + + + + + Pryer Industries (Ada, Ohio) + + + + + Stoner Totter Trailer + + + + + Cambridge Mfg. Co., Inc. + + + + + Namco., Inc. + + + + + Speedster Motorcars + + + + + Sea Lion Utility Trailer + + + + + Bertone + + + + + Parkhurst + + + + + FAST ; SNOWMOBILES (TO INCLUDE BLADE MODEL) + + + + + Vanden Plas + + + + + PARIS CUSTOM TRAILER CO.; TEXAS + + + + + Oliver + + + + + Arps Div.Div. Chromalloy American Corp. + + + + + FIBERGLASS INTERNATIONAL, INC.; SCHALLER, IS + + + + + Muntz + + + + + MULTITEK, INC; PRENTICE, WI TRAILER & CONST EQUIP + + + + + GARDEN STATE CHASSIS REMANUFACTURING, INC + + + + + Mankato Mobile Homes, Inc. + + + + + Reids Trailers, Inc.Pleasant Garden, North Carolina + + + + + Baughman Mfg. Co. + + + + + United Fiberglass + + + + + Ring-o-matic Mfg. Co.Pella, Iowa + + + + + Mustang + + + + + Austin Products, Inc.Subsidiary Austin Industries, Inc. + + + + + Butler, L. T. + + + + + McBurnie Coach Craft, Inc. + + + + + SOUDRE KERR, INC.; COOKSHIRE, QUEBEC CANADA + + + + + Anderson Coach Co. + + + + + RETTIG ENTERPRISES; SIKESTON, MO + + + + + Flexi-Coil Ltd. + + + + + Johnny Lightning + + + + + Royal Land Yacht + + + + + McNamee Coach Corp. + + + + + Ohta + + + + + Bay Trailers + + + + + LIEBHERR COMPANIES; CRANES & CONSTRUCTION EQUIPMENT + + + + + SunBird, Inc. + + + + + Precision Cycle Works + + + + + Holland Camper Co. + + + + + Dico Co.Des Moines, Iowa + + + + + Hartman-Fabco, Inc. + + + + + Mobile of Marysville + + + + + Cascade Corp. + + + + + A D BOIVIN SNOWMOBILES; SNOW HAWK MODELS + + + + + Trivellato + + + + + Medford Industries + + + + + Pro-Trail, Inc.Nashville, Tennessee + + + + + Erie City Welding & Spring + + + + + HUTCO BOAT TRAILER + + + + + Mid-Atlantic Homes Co. + + + + + Arrowhead Trailers + + + + + Classic Roadsters, Ltd. + + + + + NorthlandMagline, Inc. + + + + + FlamencoMfd. by Sundancer Div. of WinstonIndustries + + + + + Jude Tent Trailer + + + + + EMERSON TRAILERS, INC., FLORIDA + + + + + Hester Plow Co., Inc. + + + + + Mark Line Industries, Inc.Bristol, Indiana + + + + + Trail Breaker + + + + + Noel Mfg. + + + + + Clypso Motor Home + + + + + Travel Car Motor Home + + + + + MCN Mobile Homes Corp. + + + + + K-D Mfg. Co. + + + + + Centurion International, Inc.Waco, Texas + + + + + Vada Open Top Cattle Trailer + + + + + Abbot, Paul Co., Inc. + + + + + Fuji Robbt Jr (Mfd. by H-MVehicles, Inc.) + + + + + Baker Material Handling Corp. + + + + + Longhorn Trailers; Also see McKinley Enterprises + + + + + Rivercraft Boat Trailers + + + + + Calvacade Industries, Inc.White Pigeon, Michigan + + + + + Target Products Division, Federal-Mogul Corp. + + + + + Star Meteor FloridaDiv. of Divco-Wayne Industries + + + + + MZ + + + + + Adventure Wheels Motor Home + + + + + Westways Mfg. + + + + + Pacemaker Boat Trailer + + + + + Thomas Built Bus Co. + + + + + Gates, Walter C. + + + + + Nova Bus + + + + + Beechwood Industries, Inc. + + + + + Gee-Bee-Dee Manufacturing & Supply Co. + + + + + Mid-West Choppers, Inc. + + + + + G & H Manufacturing, Inc.Arlington, TX; trailers. + + + + + New McGrath + + + + + Horch Limousine + + + + + Wayside Campers + + + + + K-Mart Camper Foldup + + + + + DORT MOTOR CAR COMPANY; FLINT, MICHIGAN + + + + + Whiteman Ind. + + + + + Rach WeldingSt. Joseph, Michigan + + + + + Shelby Mobile HomesDiv. Commodore Corporation + + + + + Taunus (German Ford) + + + + + Pitman Div., Emerson Electric Co. + + + + + All Around Horse Trailer + + + + + Sweepster, Inc. + + + + + Sterling + + + + + Aston-Martin + + + + + Hatfield Welding & TrailerSales, Inc.Mt. Pleasant, Texas + + + + + Penn Trailer + + + + + Chrysler + + + + + Colony Mfg. & Sales Corp. + + + + + Longlife + + + + + Maserati + + + + + PTV + + + + + Kinroad Xintian Motorcycle Mfg. Co., Ltd. + + + + + Bonanza + + + + + King Richards, Inc. + + + + + Steury Trailer + + + + + P.J. Trailer Manufacturing, IncSumner, TX; utility trailer + + + + + Bobbi-Kar + + + + + Gallatin HomesBelgrade, Montana + + + + + TWIST N GO MOTOR SCOOTERS & CYCLES + + + + + Condor Coach + + + + + Bond + + + + + PDV + + + + + Woodill Wildfire + + + + + Skyteam Corp., Ltd. + + + + + Number One + + + + + TBC + + + + + Kris Kraft Mobile Homes + + + + + Wells Western Trailers; Also see Western Recreation Mfg., Inc. + + + + + Darcell Industries, Inc. + + + + + ArgoSee Onatario Drive & Gear Ltd. + + + + + Enfield India LimitedMadras, India + + + + + Space Motor Home + + + + + Hitch HikerMfd.by R. V. Kompacts, Inc. + + + + + BSA (United Kingdom) + + + + + M.B.M. + + + + + Mountain Manufacturing Co., Inc. + + + + + Work-N-Play + + + + + Stew-Gar, Inc. + + + + + Portable Elevator Mfg. Div.,Dynamics Corp. of America + + + + + Buell Motor Co. + + + + + Scootalong + + + + + R-Anell Homes, Inc.Denver, Colorado + + + + + H.N.L. CORP AND OR HENRY L. LANCIANI CORP. + + + + + Go-Tel Leasing Corp. + + + + + G & G TRAILERS; GILLIAND & GILLIAND; PRESTON GILLIAND, HALLS, TN + + + + + Klein Products, Inc. + + + + + Highway Sleeper Corp. + + + + + Down (2) Earth Trailers + + + + + Plains Industries, Inc. + + + + + Islander Motor Home + + + + + Stuart + + + + + Cord + + + + + Towmaster + + + + + Badger Construction Equipment Co.,Division of Burro-Badger Corp. + + + + + Hyundai + + + + + Speedex Tractor Co.Ravenna, Ohio + + + + + Coose Trailer Mfg. Co.Lockwood, Missouri + + + + + Jec Ro + + + + + Leader Horse Trailer + + + + + Kountryaire Travel Trailer + + + + + HomeliteDiv. Textron, Inc. + + + + + Jays Hy Lift Manufacturing Co. + + + + + Essick/Hadco Div.Div. A-T-O, Inc. (Formerly EssickMfg. Co.) + + + + + Kempf Car Hauler + + + + + Happy Travl'r Coaches, Inc. + + + + + Reeves Roofing Equipment Co. + + + + + Lance Truck Mount Camper + + + + + Joplin + + + + + Derbi Motor Corp. + + + + + Skyjack + + + + + Jim Dandy, Inc.Chickasha, Oklahoma + + + + + Kodiak Coach & Mfg. Co. + + + + + CHOPPER WORKS, PERFORMANCE, INC.; HAMPSTESD, NH + + + + + JENNINGS TRAILERS, INC; EMORY, TEXAS + + + + + Wise-Craft Mfg. + + + + + BECKHAM TRAILERS, INC.; WICHITA , KANSAS + + + + + Phillips Mfg. Co., Inc.Lehi, Utah + + + + + Lufkin TrailersDiv. of Lufkin Industries--Lufkin, Texas + + + + + CARGOMATE TRAILER ; CAMPING + + + + + Glen Manor Homes, Inc. + + + + + Constructore Trailers, Inc.Sarasota, Florida + + + + + Lee Boy Construction Equipment + + + + + Zhejiang Xingfu Motorcycle Machine Co., Ltd. + + + + + Panhard + + + + + Nordic + + + + + Hylton Homes, Inc.Phil Campbell, Alabama + + + + + Bucko, Inc.Buhl, Indiana + + + + + Malaguti + + + + + Siata + + + + + Murray Ohio Manufacturing Co.Brentwood, Tennessee + + + + + New Horizons or Horizons, Inc. + + + + + Daewoo + + + + + Krown Camper + + + + + Hines Mfg. Co.Rocky Mount, North Carolina + + + + + Neosho Custom Coach Co.Div. Gearhart's Building Materials + + + + + Universal Camper Mfg. + + + + + Tatra + + + + + American Road Machinery, Inc. + + + + + Gafner Machine, Inc.Escanaba, Michigan + + + + + Buckeye Flatbed Trailer + + + + + Lady Bea TrailersMalden, Massachusetts + + + + + Dura-Craft Mobile Homes + + + + + Yenco + + + + + Medical Coaches, Inc. + + + + + Harnischfegar Corp.Subsidiary of Harnischfeger P&H + + + + + Triumph Motor Co. (TRIU for autoentry) + + + + + Maverick Mobile Home + + + + + H & H SnowmobilesCleveland, OH + + + + + Seabring Home, Inc. + + + + + Schertzer Equipment Co. + + + + + Jupiter + + + + + Dropbox, Inc. + + + + + Jahn Flatbed Trailer + + + + + Avalair Corp. + + + + + MINI DIVISION OF BMW MAKER OF COOPER & COOPER-S + + + + + Lakewood + + + + + Ernest Holmes Div. + + + + + J B EnterprisesElkhart, IN + + + + + Romae IndustriesMountain View, Missouri + + + + + Kasten Mfg. Co.Allenton, Wisconsin + + + + + Southwind Motor Home + + + + + Clemco Industries + + + + + Roam-A-Bout Camper + + + + + Omni Motorsports, Inc. + + + + + Rice & Woolard Mfg., IncNaylor, MO + + + + + Foreman Mfg. Co. + + + + + Audi + + + + + FeedlinerMfd. by Globe Fabricators, Inc. + + + + + Yanmar Tractor USA, Inc.Bensenville, Illinois + + + + + Salsbury + + + + + BETTER-WAY PRODUCTS, INC; INDIANA (BISSON) + + + + + TransporterAmerican Trailer & Mfg. Co. + + + + + FOUR H MFG., INC; SUMNER, IA + + + + + Hanson Camping Trailer + + + + + Escapade Motor Home + + + + + Highway Cruisers, Inc. + + + + + Middlesex Equipment Co. + + + + + Long Chih Industrial Co., LtdTaipai, Taiwan + + + + + Rabbit, Jr. + + + + + WTM, Inc. + + + + + Pace Arrow + + + + + Cardinal Homes, Inc. + + + + + BrockwayDiscontinued production in 1977 + + + + + Circle LMfd. by Well-Built Trailers, Inc. + + + + + Agricultural Machinery Div.Div. FMC--mfrs the Bean sprayer + + + + + Lincoln-Continental + + + + + Deluxe Homes, Inc. + + + + + Tel Star Trailers + + + + + Renaissance Motors + + + + + Herzig Mfg. Co. + + + + + New Paris Traveler Corp.New Paris, Indiana + + + + + Safari Motor Coaches, Inc.Harrisburg, OR + + + + + Pipestone Tandem Boat Trailer + + + + + Glasstite, Inc.Dunnell, Minnesota + + + + + Mondial + + + + + Badger Machine Div.Ronco Engineering Co. + + + + + Bantam Camp Trailer + + + + + AlsportSee Boa-Ski Alsport Ltd. + + + + + Dexter Trailer, Inc. + + + + + Presidential Mobile HomesDiv. U. S. Aluminum Company + + + + + Daffin Mfg. Co. + + + + + Carolina Mobile Homes + + + + + Belvedere Mobile Homes + + + + + Opel + + + + + Karl M. Neufeld + + + + + CARRON TRUCK REPAIR, LTD; GRANITE CITY ILLINOIS + + + + + DARDON, INC. + + + + + East Texas Longhorn Trailers, LLC + + + + + Camper Corp. of America + + + + + Urili Flatbed Trailer + + + + + Biltrite Mobile Homes + + + + + Kari Cool Trailer + + + + + Speedway Products, Inc.Mansfield, OH + + + + + Trailcraft Boat Trailer + + + + + THINK ELECTRIC VEHICLES; DIVISION OF FORD MOTOR COMPANY + + + + + Muhlberg + + + + + Pull A Long Mfg. & Sales + + + + + Cimatti + + + + + Amco Boat Trailer + + + + + Macanismos Ensamblados S. A. De C. V.Mexico; tank trailers + + + + + ZIMMERMAN TRAILERS + + + + + Carsons Mfg., Inc. + + + + + FMC Corp. + + + + + Trike + + + + + MayberryMfd. by Rollohome Corp. + + + + + Elgin Sweeper CompanyElgin, Illinois + + + + + B-M-B. Mfg. Co. + + + + + Marque, Inc.Bristol, Indiana + + + + + Suzuki + + + + + Marion Power Shovel Co., IncDiv. of Dresser Ind. + + + + + Aluminum + + + + + BRUSH ROADSTER + + + + + Piper Industries, Inc. + + + + + T&E ENTERPRISES OF HERSCHER, INC.; HERSCHER.IL + + + + + Fabricated Alloy Building Co., LLC + + + + + Richards Utility Trailer + + + + + Andrea Mobile Homes + + + + + Cleasby + + + + + Case, J. I., Co.Subsidiary Tenneco. Inc. + + + + + Trail It Horse Trailer + + + + + Necedah FlyersMfd. by Twin City Racing + + + + + FASTLINE; KANSAS + + + + + Chaika + + + + + Davenport Trailer or Mobile Home Co. + + + + + SEWER EQUIPMENT CO. OF AMERICA + + + + + General Moped Co. (New York,New York) + + + + + All Steel Mfg. Co. + + + + + Corbin Electric + + + + + JI-EE Ind., Co., Ltd. + + + + + Power Curber, Inc. + + + + + Vicon Farm Machinery, Inc. + + + + + Italvelo + + + + + Essex + + + + + Rebel Boat Trailer + + + + + Holandia Holder + + + + + Sensation + + + + + Ashland Industries, Inc. + + + + + Sabre Equipment Div.Div. Sabre Metal Products + + + + + Marshfield Homes, Inc. + + + + + Worthington Champ + + + + + Modern Mobile Homes + + + + + TRANSPORT TRAILERS; FENNVILLE, MI + + + + + AlyMfd. by Skyline Corp. + + + + + Dressen Custom Trailers, Inc. + + + + + Colonial Flatbed Trailer + + + + + APPALACHIAN MFG. INC.;ELKHART, IN + + + + + Air Support IndustriesGlassboro, New Jersey + + + + + BJ Mfg. Co.Harrison, Arkansas + + + + + Clark Mfg. Co. + + + + + Kent Industries, Inc.Bristol, Indiana + + + + + Fieldacre Horse Trailer + + + + + Ace Enterprises, Inc.Miami, Florida + + + + + Hummel + + + + + Atlantic Coast Camper + + + + + Trac-Machinery Corp.Subsidiary of E. D. Etnyre & Co. + + + + + All Seasons Motor Home + + + + + Wabash National CorporationLafayette, Indiana + + + + + Competitive Boat Trailer + + + + + Victory Motorcycles + + + + + Sila Autoretta + + + + + ASM TRAILERS; MOUNTAINBURG, AR + + + + + Phelps Horse Trailer + + + + + Henslee Mobile Homes, Inc. + + + + + Ducati + + + + + Joy Mfg. Co. (Air Power Group)Montgomeryville, Pennsylvania + + + + + Rebel Mobile HomeDiv. Skyline Homes + + + + + Guidon Camper Trailer + + + + + Broderson Manufacturing Corp. + + + + + Hy-Dynamic Div.Bucyrus-Erie Co. + + + + + Dart + + + + + Cullip Industries + + + + + Byers Mfg. Inc.Lawton, Michigan + + + + + Mid-Equipment Corp. + + + + + MLBLT + + + + + Ag-Chem Equipment Co. Inc.Edina, Minnesota + + + + + Tara Products, Inc.White Pigeon, Michigan + + + + + Aalite Co. + + + + + Farm Shop, Inc.Congerville, Illinois + + + + + Zanella + + + + + Budd Co. Trailer Division, TheFormerly Ginchy Mfg. Corp.--Downingtown,Pennsylvania + + + + + EHM Mfg. Co. + + + + + Stone Construction Equipment Inc.Honeyoye, New York + + + + + Western (NEV) Neighborhood Electric Vehicles + + + + + West Wind Trailer Co. + + + + + SpacemasterColumbia, Tennessee + + + + + Destiny Industries, Inc.Moultrie, Georgia + + + + + BoatoterMfd. by Thomas Mfg. + + + + + Futura Mobile Home + + + + + ROOSE MANUFACTURING; PELLA, IA + + + + + American Lifan Ind., Inc. + + + + + Swift Motorsports, Inc. + + + + + Atlas Hoist & Body, Inc. + + + + + Rite-Bilt + + + + + Thomas & Co. + + + + + Vance Campers, Inc. + + + + + Prew Proco Travel Trailer + + + + + Barker Trailer Manufacturers, Inc.Phoenix, Arizona + + + + + Bradley GT + + + + + Mazda + + + + + Hank's Mobile Home Service + + + + + Plastic Forming Co. + + + + + DOUBLETREE RV, LLC; LAGRANGE, INDIANA + + + + + Kayout-Forester Travel Trailer + + + + + Knowles Mfg. Co. + + + + + Steed-Pollak Mfg. Co. + + + + + Lovebug Travel Trailer + + + + + Howe Engineered Sales Co.Waterloo, Iowa + + + + + V. E. Enterprises + + + + + ExhibitorMfd. by Miley Trailer Co., Inc. + + + + + M.T. Trailers, Inc. + + + + + J & L Tank, Inc.Saginaw, Texas + + + + + Big Well Industries + + + + + Trainliner + + + + + Soni II + + + + + Lazy J Horse Trailer + + + + + PRO LINE TRAILERS; COCOA, FL + + + + + Steyr-Daimler-Puch + + + + + STROHL CORPORATION; MISHAWAKA,IN ; VARIOUS STYLES TRAILERS + + + + + Lindsay Co., Inc., P. K.Deerfield, New Hampshire + + + + + Paughco, Inc.Carson City, NV + + + + + Can-Am + + + + + Huron Industries, Inc. + + + + + Whitehaul Kaler Trailer + + + + + Lincoln Park Mobile Homes, Inc.Shipshewana, Indiana + + + + + American Trailer Specialists + + + + + TOP HAT INDUSTRIES, MT. PLEASANT, TX (TRAILERS) + + + + + Carey Trailers, Inc.Weatherford, Texas + + + + + Bertran Trailer + + + + + Fleetcraft Corp. + + + + + Dunham Lehr, Inc. + + + + + Parmiter, P. J. & Sons Ltd. + + + + + Novae Corp. + + + + + Wise Welding, Inc. + + + + + Masterline Co., Inc. + + + + + Summers Mfg. Co. + + + + + Road Roamer Campers + + + + + Bertolini Container Co.Butler, New Jersey + + + + + Conmaco, Inc. + + + + + Frazier + + + + + H & S Mfg. Co., Inc. + + + + + River Trail TrailersLittle Rock, Arkansas + + + + + Raymur Acceptance Corp. + + + + + Burch Trailer + + + + + MECOX RESOURCES SA DE CV; MEXICO + + + + + CMI Load KingElk Point, SD; commercial trailers + + + + + Darwin + + + + + AVENGER CORPORATION; MICHIGAN + + + + + Southwest Truck Body Co.St. Louis, Missouri + + + + + Dual-Wide, Inc. + + + + + JAMMER CYCLE PRODUCTS, INC BURBANK, CA + + + + + Otterbacher Mfg., Inc.Crestline, Ohio + + + + + CEI EQUIPMENT COMPANY, INC; CEDAR RAPIDS, IA + + + + + Universal Tractor Foreign Trade Co. + + + + + Seemore Flatbed Trailer + + + + + DMP + + + + + Brutt + + + + + Warner & Swasey Co. + + + + + Acura + + + + + CMWC Trailer Co., Inc. + + + + + Ferris Ind. + + + + + Long Haul, TheMfd. by Mark Fore Vatco Ind. (M.F.V.) + + + + + K & M Mfg. Co.Renville, Minnesota + + + + + Cleavers of BismarkBismark, Arkansas + + + + + Mobile Products, Inc. + + + + + Port Trailer Mfg. Co.City of Industry, California + + + + + Roll-O-Flex, LTD.Regina, Saskatchewan + + + + + Ramlin + + + + + Puch + + + + + C & S Trailer WorldFort Worth, Texas + + + + + Coon Custom Coach Mfg. + + + + + AMERICAN CRUISER MOTORHOME, NAPPANEE, IN + + + + + Arrow Campers, Inc. + + + + + Buckskin Trailer Mfg. Co.Boosier City, Lousisiana + + + + + Chromalloy American Corp., FarmSystems Division + + + + + Rexnord, Inc. + + + + + Idaho Norland Co. + + + + + Bo Cats, Inc.Garden City, Kansas + + + + + Pinson Truck Equipment Co. + + + + + Private CoachDiv. F & L Construction + + + + + Peerless DivisionDiv. of Lear Siegler--Tualatin, Oregon + + + + + Northern Star Mobile Home + + + + + Facellia + + + + + Terraplane + + + + + Multiquip + + + + + Trail Boss + + + + + Heritage by Abel Corp. or Franklin Coach Co., Inc. + + + + + Portland Wire & Iron Works + + + + + Madden TrailerAshdown, Arkansas + + + + + Elder Trailer & Body + + + + + Kolberg Mfg. Corp., Subsidiary ofPortec, Inc. + + + + + Reinell Boat Trailer + + + + + Tri-Way HD Snowmobile Trailer + + + + + Berkshire Industries + + + + + Klassen Homes, Ltd. + + + + + Balkan + + + + + Custom Plumbing Co. + + + + + ALFAB INC.; TRAILERS + + + + + Italia + + + + + Emergency One, Inc. + + + + + Creightons TrailerMaryland + + + + + MARTINS ENTERPRISES; DONALDS, SC + + + + + Estevan Industries, Ltd. + + + + + Right Products, Inc. + + + + + E-Z-GoSee Polaris Industries Inc. + + + + + Admiration HomesElkhart, Indiana + + + + + B & S Boat Trailer Mfg. Co.Gainesville, Florida + + + + + Christie, J. W. Bill, Inc.Collin County, Texas + + + + + Platt Trailer Co. + + + + + Woodsmen Camper + + + + + Don-A-Bell Homes, Inc. + + + + + Northwestern Motor Co.Subsidiary Fairmont Railway Motors, Inc. + + + + + Bilken EnterprisesMfr. of Specialty Trailer (bought out byAmerican Enterprises) + + + + + Sharratt Mobile Homes & Supplies + + + + + Liftall ForkliftMfg. by Lion Mfg. Co., Inc. + + + + + C & C TRAILERS, INC. NORMAN OKLAHOMA + + + + + Atlas Tool & Mfg. Co. + + + + + Brobts & Associates + + + + + Silver Star Trailer + + + + + Sea Breeze Trailer + + + + + CommandoYard tractor--mfd. by Daybrook-OttawaDiv. + + + + + Range Rover of North America + + + + + Delto Homes, Inc. + + + + + Barco Mfg. Co.Johnstown, Pennsylvania + + + + + Stam Mfg. Co. + + + + + Bel-Aire Campers or Coaches + + + + + TIMBERKING, INC + + + + + Thompson + + + + + Crown Coach or Crown Cargo Coach + + + + + Chunfeng Holding Group Co., Ltd. + + + + + Antique & Collectible Autos, Inc. + + + + + Lear SieglerMfd. by Signal Div. of Lear Siegler,Inc. + + + + + Gazelle + + + + + Dennison Utility Trailer + + + + + Mountain Valley Enterprises + + + + + Cambridge Homes, Inc. + + + + + Open Road Industries + + + + + M. P. McCaffrey + + + + + Sage Mfg. Co. + + + + + Bee Bob Trailers + + + + + Little Giant Crane & Shovel, Inc.Des Moines, Iowa + + + + + HOMESTEADER, INC.; NEW TAZEWELL, TN + + + + + Courthouse Camper Trailer + + + + + BMW + + + + + TMC Inc.Poskin, WI; mfg. pontoon trailers + + + + + Load Rite TrailersDiv. of Pennsbury Mfg., Inc. + + + + + Columbia Mfg. Co. (subsidiary Yard-Man Co. - Columbia Commuter) + + + + + Bingham + + + + + Bray Trailers + + + + + Sportsliner Camping Trailer + + + + + Safari + + + + + Yampa Coach Mfg. + + + + + Mascot Homes, Inc. + + + + + Dixon Industries, Inc.Coffeyville, Kansas + + + + + Cam-Pact Co., Inc. + + + + + Didier Mfg. Co.Franksville, Wisconsin + + + + + SterlingSterling-Salem Corp. + + + + + Crossroads + + + + + Chaparral Mfg., Inc. + + + + + Heron Travel Campers + + + + + Artcraft of Georgia + + + + + Yankee + + + + + Roadmaster Mfg. Co. + + + + + Circle H Horse Trailer + + + + + Carlisle + + + + + Scott Equipment Co. + + + + + MOFFETT ENGINEERING, LTD; FORKLIFTS ETC + + + + + Arnolt-Bristol + + + + + Howard Commercial Turf Equipment Co.Mfrs. Mowers--St. Louis, Missouri + + + + + Bedford + + + + + Alex Fiegelson Co. + + + + + Obrect Trailer + + + + + Lazy Daze Motor HomeMfd. in Pomona, California + + + + + Rambler-manufactured prior to 1966(1966 and later Ramblers manufac-tured by American Motors - seeAme + + + + + Brandy IndustriesColon, MI; white tail camping trailers. + + + + + Penn RoyalMfd. by Wisconsin Homes, Inc. + + + + + Tecumseh + + + + + Aero Glass Boat Co. + + + + + Tanden Boat Trailer + + + + + James + + + + + Sun Belt Energy Housing, Inc. + + + + + CompanionMfd. by Kit Mfg. Co. + + + + + Lighter-Bilt Trailers, Inc.Durham, California + + + + + U.S. Bus Corp. + + + + + Carabela (Mexico) + + + + + Selma Trailer & Mfg. Co. + + + + + Centurion Travel Trailer + + + + + GOLD STAR ENTERPRISES; SIKESTON, MO + + + + + ALLEN MANUFACTURING, INC; FORT MORGAN, CO; TRAILERS + + + + + Warrior Mfr.Henderson, Texas + + + + + How-Lo Campers Co. + + + + + LOAD-EAZ Trailer Inc.Bensalem, Pennsylvania + + + + + MPC Cruiser Camper Trailer + + + + + Irabeck & Co.Harrington, Delaware + + + + + Lambretta + + + + + SOUTHWEST GOOSENECK; SAN ANTONIO, TX + + + + + McCollough CorporationBrookfield, MO + + + + + Twilight Coach Mfg. + + + + + Showco Nomad Trailer + + + + + Wynn Trailer Works + + + + + JZ Riders Custom Motorcycles + + + + + Van American, Inc.Goshen, Indiana + + + + + EAST TENNESSEE TRAILERS LLC; MOSHEIM, TN + + + + + Red Gooser Horse Trailer + + + + + Holstein Mfg., Inc.Holstein, Iowa + + + + + Montebello Mobile Home Trailer + + + + + Olds Trails Trailer + + + + + Crossland Industries + + + + + Falco Mfg. Co. + + + + + SMB Teleiamotre (Bologna, Italy) + + + + + REMEQ, INC.; PRINCEVILLE, QUEBEC CANADA + + + + + Rolls International TrailerMobile Home + + + + + Double J Horse Trailer + + + + + Great Lakes Cargo, LLC + + + + + Iowa Mold Tooling Co., Inc. + + + + + Ken Craft Trailer + + + + + McCabe-Powers Body Co. + + + + + Eagle Crusher Co., Inc. + + + + + Cub Cadet Corp.Subsidiary of MTD Products, Inc.Purchased Cub Cadet tractor line fromInternational Ha + + + + + Stidham Horse Trailer + + + + + Hilltop Mfg., Inc.El Dorado, Arkansas + + + + + Bobby's Custom Camper Mfg. + + + + + Lewaub Trailer Mfg. + + + + + White Pine Campers, Inc.Waupaca, Wisconsin + + + + + Cooper Alpine Motor Home + + + + + Eljay Mfg. Co. + + + + + ASM TRAILERS; MOUNTAINBURG, AR + + + + + Kingston Horse Trailer + + + + + Token Flatbed Trailer + + + + + Clayton Craft + + + + + AMFSee Harley-Davidson + + + + + Metropolitan + + + + + Monroe Motors Inc., Wally-Mo DivisionHolladay, Tennessee; manufactures carcarriers and utility trail + + + + + Heathkit + + + + + Dairy Equipment Co.Madison, Wisconsin + + + + + Comanche Trailer Corp. + + + + + Autocarrier and A.C. + + + + + Fischer + + + + + C & C IndustriesMfg. of Master Track F.B. Trailer;Gaithersburg, MD + + + + + TK Sterling + + + + + PREMCO PRODUCTS, INC.; LA VERNE, CA; TRIPLE L TRIALERS + + + + + Columbia Mobile Homes, Inc. + + + + + Star Transport Trailers, Inc.Sunnyside, Washington + + + + + Pollock Industries + + + + + Cumberland CoachesH & W Mfg. Co. + + + + + Taylor-Dunn Industrial Electric VehiclesAnaheim, California + + + + + Beiler Hydraulics, Inc. + + + + + Beatrice Motor Mart Mfg. & Easy-Haul + + + + + Royer Foundry and Machine Co.Kingston, Pennsylvania + + + + + Reco Goliath Tent Trailer + + + + + Simek Mfg., Inc. + + + + + CORNELIUS MANUFACTURING, INC.; ELNORA, IN + + + + + Indiana + + + + + Y W + + + + + J-Rod Trailer Co.Red Oak, Texas + + + + + Oelrich Mfg. Co. + + + + + Ride-On, Inc.Mfrs. boat trailers--Ceres, California + + + + + Mauldin Mfg. Co., Inc. + + + + + Monte Carlo Mobile Homes + + + + + CARGO CRAFT, INC.; GEORGIA + + + + + Jay-Kee Mfg., Inc.State Center, Iowa + + + + + T & T Industtries, Inc. + + + + + Cline + + + + + Holden + + + + + Kar-Rite CorporationFranklin Park, Illinois + + + + + Pacemaker Mobile Homes & Travel TrailerDiv. Lonergan Corporation + + + + + Capital Industries, Inc. + + + + + Ryobi + + + + + New Flyer + + + + + Swinger Camper Mobile Home + + + + + Intrapid Trailer + + + + + Duplex Truck Div.Div. of The Nolan Co., Midvale, Ohio + + + + + Keystone Trailer & Equipment Co.Kansas City, Missouri + + + + + Talbot-Carlson, Inc.Audubon, Iowa + + + + + Grenadier Mobile HomesMfd. by Statler Homes Mfg. + + + + + SCOTT'S RIDING MOWERS/TRACTORS MFG FOR SCOTTS BY JOHN DEERE + + + + + Baker-York Forklift + + + + + Commodore Corp.Syracuse, Indiana + + + + + JD HANDLING SYSTEMS OR D.J. STEELE & CONSTRUCTION + + + + + Cortez House Trailer + + + + + Trail-It Coach Mfg. Co. + + + + + I. A. M. E. + + + + + Bergantine + + + + + INMAN TRAILERS; INMAN, KS + + + + + Breeze Camping Travel Trailer + + + + + Champion Pneumatic Machinery Co.,Inc. + + + + + Bigfoot Ind., Inc. + + + + + RIDLEY MOTORCYCLE COMPANY; OKLAHOMA CITY, OK + + + + + Powerline ProductsDiv. of White Oak, Inc.--Washington,Indiana + + + + + Simca + + + + + REINKE MFG. INC; DESCHLER, NEBRASKA + + + + + HICO Corp. of America + + + + + Arctco, Inc.See Arctic Enterprises + + + + + Kannon Motorcycles, LLC or SJH Mfg., Inc. + + + + + Sunbird Boat CompanyColumbia, SC; boat trailers.Haleyville, Alabama + + + + + G & L Utility Trailers + + + + + Arnold Travel Trailer Mfg. Co. + + + + + Jeep (for model years prior to 1970) + + + + + Car Caddy + + + + + KEARNEY TRAILERS CO. GRNADSALINE, TX + + + + + Popcycle Motors, LLC + + + + + Monson & Sons Trailer + + + + + Huffy + + + + + Boone Trailers, Inc.Palmer, Massachusetts + + + + + BrindleLaOtto Metal Fobricating Co., Inc. + + + + + Infinity Trailer Sales + + + + + Morgan Mobile, Inc. + + + + + Snake River Trailers + + + + + Dynamark Tractor Mower + + + + + Economy Camper Co. + + + + + Bounder Motor HomeMfd. by Fleetwood, Decatur, Indiana + + + + + Odyssey + + + + + McFarlane Mfg. Co., Inc. + + + + + MiddleburyMfd. by Coachmen Homes Div.Coachman Industries, Inc. + + + + + Holiday Royal Travel Trailer + + + + + Texan Trailer Mfg. Co. + + + + + CAREFREE CUSTOM CYCLES, LLC + + + + + Pace American, Inc.White Pigeon, Michigan (throughMarch, 1988)Middlebury, Indiana (EffectiveApril, 1 + + + + + DKW + + + + + ARSENAL TRAILER MANUFACTURING, INC; HARRISONBURG, VA + + + + + EXISS ALUMINAM TRAILERS, INC.; EL RENO, OK + + + + + Alcan American, Inc. + + + + + Sun Valley Car Carriers + + + + + Western Auto Supply Co.Also see make Wizard + + + + + Sunbeam + + + + + Camper De Ville, Inc. + + + + + CataphoteDiv. Ferro Corp., Jackson, Mississippi + + + + + Unpublished farm or garden equipment mfr(See Operating Manual, Part 1,Section 2) + + + + + Circle Supreme Mfg.Knowville, Tennessee + + + + + Advance Machine Co. + + + + + Polar Mfg. Co.Holdingford, Minnesota + + + + + Badger Trailer Co. + + + + + Rex Mobile HomesDiv. of Divco-Wayne Industries + + + + + Schult Mobile Homes Corp.Middlebury, Indiana + + + + + Whitehead & Kales + + + + + Starcraft Mfg. Co. + + + + + Gill Mfg. Co. + + + + + Dempster + + + + + Daihatsu + + + + + Continental + + + + + Autobianchi + + + + + E-Z Loader Boat Trailer + + + + + Firestone Tractor + + + + + Oriole Trailer Mfg. Co. + + + + + Cavco Ind. + + + + + CHARLY ELECTRIC MOTOR SCOOTERS ETC. + + + + + Chevrolet + + + + + A & C Knight, Ltd. + + + + + HUMMER; FORMERLY CODED AS AMGN/AMERICAN GENERAL CORP. AS OF 3/1/02 PART OF THE GENERAL MOTORS (GM) V + + + + + Dixie Chopper + + + + + Western Coach Corp. + + + + + Blue, John Co.Huntsville, Alabama + + + + + Golden Isle Trailers, Inc. + + + + + Roadmaster Rail, Inc. + + + + + Bulk-Hauler TrailerSee Kellebrew Mfg. Co. + + + + + Puma Camper SalesDiv. American Sterling Enterprises + + + + + ROLLS RITE TRAILERS, INC; MARIANNE, FL + + + + + Campfire Travel Trailer + + + + + Chibi + + + + + LEISURE TRAVEL VANS, LTD.; MORDEN, ME + + + + + RHEA'S TRAILER SALES, INC.; TEXAS + + + + + Bridgeville Trailers, Inc. + + + + + Pointer + + + + + M-B Co., Inc. of Wisconsin + + + + + Com-Camp + + + + + Charger Pick-up Campers + + + + + Starline Trailer Mfg. Co. + + + + + Schiebout Mfg. Co. + + + + + Ecohl Trailers + + + + + Nordine Mfg. Co. + + + + + Rugg Manufacturing Co. + + + + + Apache Corp. + + + + + Wisconsin Body & Hoist + + + + + Tiger Trailer + + + + + J. C. Penney + + + + + Peabody Solid Waste Management + + + + + Toyocar Van Container Trailer + + + + + Bloom, Inc. + + + + + Freeway, Inc. + + + + + Trail-Wide Corp. + + + + + Correct Craft, Inc. + + + + + Excel Industries, Inc.Hesston, Kansas + + + + + Beemer Trailer Mfg. & Sales + + + + + Calvade Trailer + + + + + Jason Mfg. + + + + + WeMac Mfg. Co.North Kansas City, Missouri + + + + + Tahiti Ski Trailers + + + + + Country-BoyMfd. by Reid's Mfg. & Welding Co. + + + + + Susquehanna-Santee Boat Works, Inc.Boat Trailers; Willow Street,Pennsylvania + + + + + Federal + + + + + Caulkins Boat Trailer + + + + + Butler Mfg. Co. + + + + + TRAILERS EXPRESS, INC. SIKESTON, MO + + + + + Fontenelle Homes, Inc. + + + + + Hi-U-Trailer Mfg. + + + + + Argosy Travel TrailerVersailles, Ohio--Sub. of Airstream + + + + + English Industries + + + + + Baron Motorcycle Co. + + + + + Erie-Sprayer Co. + + + + + Pierce Lowboy Trailer + + + + + Bultaco (Spain) + + + + + Merhow Industries + + + + + Briggs & Stratton Corp. + + + + + Wedgewood Homes + + + + + Excell Travel Trailer + + + + + Longrun + + + + + WRIGHT; STANDER & SENTAR MOWER MODELS;FARM & GARDEN EQUIPMENT + + + + + Roulette Caravan Co. + + + + + Manet + + + + + ASA + + + + + Byerly Trailer & Mfg. Co. + + + + + Unpublished trailer mfr. + + + + + T & L TrailersSikeston, MO; utility trailers + + + + + Gleason Corp. + + + + + R.E. Custom Boat TrailersWest Columbia, South Carolina + + + + + Highstone Trailer + + + + + Carolina Travel Trailers + + + + + TOP BRAND TRAILERS + + + + + J & J Flatbed Trailer + + + + + Mini-Marcellino + + + + + City Dump Trailer + + + + + Fruin + + + + + Heco Boat Trailer + + + + + Jay Wren Trailer + + + + + Ramses + + + + + Honorbuilt Trailer Mfg. + + + + + HYOSUNG MOTORCYCLES & MOPEDS; CHINA + + + + + Silver Eagle Travel Trailer + + + + + MID AMERICA MFG.; INC.; BERTRAND, MO + + + + + Solo Motors, Inc. + + + + + Bowman & Sons + + + + + Six Pac Camper + + + + + MDS + + + + + Realite Trailer + + + + + Pennsbury Manufacturing CorpBensalem, PA; boat trailers + + + + + ROYAL RIDER MOTORCYCLE MANUFACTURING CO., INC.; HUDSON, FL + + + + + MARINE TRANSPORTATION CO., INC.; NORWELL, MA + + + + + Magna American Corp. + + + + + Black Diamond Enterprises + + + + + E-Bus + + + + + Seiden Mobile Homes + + + + + Montgomery Ward (Riverside)MONT for reference only + + + + + Tyler Coach Mfg. + + + + + Rimer, Inc. + + + + + Circle K KennimoreOklahoma City, Oklahoma + + + + + Hill Dump Trailer + + + + + El Do-Craft Boat Co., Inc.Boat trailers--Smackover, Arkansas + + + + + Smily + + + + + Beall Trans-Liner, Inc.Portland, Oregon + + + + + Champion Home Builders Co.Dryden, Michigan + + + + + River Oaks Homes, Inc.Boaz, Alabama + + + + + Betten France TransportationKentucky + + + + + Page Trailer + + + + + Jacobsen Trailers, Inc. + + + + + Homeway Mobile Homes + + + + + Ebony Line Products + + + + + Mgnol Tandem Boat Trailer + + + + + Wicks Engineering & Construction Co. + + + + + Tempe Trailers + + + + + Seminole Boat Trailer + + + + + DAYTEC CENTER; HESPERIA, CA ; MOTORCYCLE FRAMES & PARTS + + + + + Borgward + + + + + Stilo Trailer + + + + + Electric Vehicle Corp. (mfrs. ofreplicas, Minneapolis, MN) + + + + + Davey Compressor Co. + + + + + Santa Cruz Trailer Mfg. Co. + + + + + Donnell Boat Trailer + + + + + Gad-About Trailers + + + + + Tigerline Trailer + + + + + Playmate Coaches + + + + + Biltwell (or Builtwell) + + + + + Ingersoll-Rand Co.Woodcliff Lake, New Jersey + + + + + Caribou Craft Pickup Camper & TrailerMfg. Co. + + + + + Parker + + + + + Silver Leaf Mfg. Co. + + + + + Del Rey Industries, Inc. + + + + + MK 5-1400 Motor Home + + + + + Rancho Trailers, Inc. + + + + + Duro Mobile Homes + + + + + Everybody's Motor Car Mfg. + + + + + RECREATION BY DESIGN LLC.; ELKHART, IN + + + + + Tejas Trailers, Inc.Bellville, Texas + + + + + Monon Trailer Div.Div. of Evans Products Co.--Monon,Indiana + + + + + Lola + + + + + Reo + + + + + Sparrowhawk Trailer Co. + + + + + Roust-About + + + + + Strick Trailers Corp.Fort Washington, Pennsylvania + + + + + Kato Engineering, Subsidiary ofReliance Electric + + + + + GENERAL WELDING & FAB., ELMA,NEW YORK + + + + + Gordon + + + + + Diamond City Trailer Mfg.Murfreesboro, Arkansas + + + + + Same & Lamborghini Tractors of NorthAmerica, Inc. + + + + + Suburban Motors, Inc. + + + + + Module, Inc. + + + + + SkeeterMfd. by Trailers, Inc. + + + + + Fox Better Built Trailers + + + + + Knox Homes Corp. + + + + + INDEPENDENCE MOTORCYCLE COMPANY + + + + + Cunningham + + + + + Travel Queen Motor Home + + + + + NEDLAND INDUSTRIES, INC.; RIDGELAND, WI + + + + + HoosierBoat Trailer--mfd. by Spreuer and Son,c. + + + + + New Bame Trailer + + + + + Zundapp + + + + + Drag Master Utility Trailer + + + + + Aero Liner Co. + + + + + International Mobile Homes of California + + + + + Ghieapy Jol Trailer + + + + + T & M EnterprisesCookville, Texas + + + + + MQ Power + + + + + Kit House Trailer + + + + + Mar-Val Industries, Inc. + + + + + Eagle Trailer Mfg., Inc. + + + + + Shippette Mobile Homes + + + + + CUSTOM AMUSEMENT PRODUCTS, COMPANY; DOVER, FLORIDA + + + + + Cimarron Mfg. Co.Oklahoma City, Oklahoma + + + + + Willborn Brothers + + + + + Landau Motor HomeAnaheim, Claifornia + + + + + Quaker City Iron Works, Inc.Philadelphia, Pennsylvania + + + + + Parkhurst Mfg. Co., Inc.Sedalia, Missouri + + + + + Tempo + + + + + PRO-TRAK TTRAILERS, INC.; CANTON, TX + + + + + AM General Corporation + + + + + Dynasty Electric Car Corp. + + + + + Weaver & SonsDiv. Ventoura Corporation + + + + + Wolverine Camper + + + + + Brooks Brothers Trailers, Inc. + + + + + Helmers Custom Coach + + + + + CLASSIC MANUFACTURING, INC. OR OWENS-CLASSIC MANUFACTURING, INC.; STURGIS, MI + + + + + Chevelle Mobile Homes, Inc. + + + + + J.F.W. Mfg., Inc.Wichita, Kansas + + + + + Unit Crane & Shovel Corp. + + + + + Soil Mover Mfd. Div. + + + + + Sebring Home Corp. + + + + + McCoy/Taylor, Inc. + + + + + Conway + + + + + Reddick Equipment Co., Inc. + + + + + Bonanza Travel Coach, Inc. + + + + + Lifetime Custom Coach + + + + + John T. Wydro + + + + + KINZE; FARM & GARDEN EQUIPMENT + + + + + Sea BirdMfd. by Sno-Bird Trailer Co., Inc. + + + + + Manatee HomesCommerce, Texas + + + + + Nothsway Tandem Trailer + + + + + Darian Mobile HomesMfd. by Richardson Div. GreatSouthwestern Corp. + + + + + Tradewind Industries, Inc.Formerly J. H. Holland Co. + + + + + Summitt Trailer + + + + + York Modern Corp. + + + + + Detroit Tool, Inc. + + + + + Bobcat Skid Steer LoaderManufactured by Melroe Div. + + + + + Chinook + + + + + Roaminghome Co., Inc. + + + + + TRANSTEQ (Transportation Techniques, LLC) + + + + + Blanchard Foundry Co. + + + + + Singer + + + + + Neville Welding, Inc. + + + + + Pullman TrailmobileDiv. of Pullman, Inc.--Chicago, Illinois + + + + + Design StructuresMfrs. office and special purposetrailers--Lombard, Illinois + + + + + HM + + + + + Gas Gas Motors of America, LLC + + + + + Kellogg-American, Inc. + + + + + Empire Trailer, Inc. + + + + + MGS, Inc. + + + + + DeCourville + + + + + Winter Weiss Co. + + + + + Kaiser + + + + + Truckin TrailerMfd. by V.W.T. Corp. + + + + + TransglobalNew York; flatbed trailers + + + + + Maico (West Germany) + + + + + Olson + + + + + Voloci + + + + + Tow Go TrailersTonganoxie, Kansas + + + + + Cagiva + + + + + Owen Div., Anvil Attachments, Inc. + + + + + Leisure Craft + + + + + General Coach Mfg. Co.Div. of Divco-Wayne Industries + + + + + Rotech, Inc. + + + + + Firma LenkoSee Larvin + + + + + Globe Camper Mfg. + + + + + Dynahoe Truck + + + + + Ti-Brook, Inc.Brookville, Pennsylvania + + + + + Coastal Mfg. Co. or Coastal Building Systems + + + + + Air-Flo Mfg. Co., Inc.Fort Worth, Texas + + + + + Monarch Mobile Homes + + + + + Holmes-Craft + + + + + Kontiki Camper Trailer + + + + + Kingsway Travel Trailer + + + + + Beaver Mfg. Corp. + + + + + Bradford IndustriesBradford, Illinois + + + + + Lawn FliteMfd. by MTD Products, Inc. + + + + + Arabi Homes, Inc.Arabi, Georgia + + + + + En Route, Inc.Elkhart, Indiana + + + + + SOUTH BAY TRAILERS; LOUISVILLE, KY + + + + + Brighton Built TrailersBrighton, Iowa + + + + + Concord Products, Inc. + + + + + GSM + + + + + Trail Haven Div. + + + + + CMW (Custom Metal Works) + + + + + ISO + + + + + J & J TRAILER MANUFACTURING OR J.D.J. TRAILER MANUFACTURING, ONTARIO, CANADA + + + + + Design Intennt, Inc.Livingston, Tennessee + + + + + Pull-Do Trailers + + + + + Cleveland Trencher Co.Div. American Hoist & Derrick Co. + + + + + Power Dyne + + + + + Jay Dee IndustriesCassopolis, Michigan + + + + + Leisure Manor, Inc. + + + + + Enzmann + + + + + Wago Campers + + + + + LamplighterMfd. by Moduline International, Inc. + + + + + Mate, Inc.Katy, Texas + + + + + Triple R TrailerStockton, Missouri + + + + + Johnson Corp. + + + + + Rockwood, Inc.Millersburg, Indiana + + + + + Holiday Trailer Sales & Mfg. Co. + + + + + Dart Truck Co., PACCAR, Inc. + + + + + National Crane Corporation, Subsidi-ary of Walter Kidde & Co., Inc. + + + + + Sun-RayMfd. by Wilson Trailer Mart + + + + + Cottage-Ette Mfg. + + + + + Revcon + + + + + K & G Mfg. Co.Decatur, Illinois + + + + + CUSTOM BUILT TRAILERS AN OR CUSTOM TRIKES, INC. + + + + + Velocette + + + + + Fairmont Steel Products + + + + + Atlantic Mobile Corp. + + + + + Spyker Motorcars + + + + + Snatcher Trailer CompanyBettendorf, Louisiana + + + + + Anton Mfg. Co. + + + + + Foster Flatbed Trailer + + + + + Avalon Mobile Homes + + + + + Ben Pearson Mfg. Co., Inc. + + + + + Westholt Mfg. + + + + + Vac-Tec + + + + + ScorpionCrosby, MN + + + + + Warren Mfg. Co. + + + + + Calumet Coach Co. + + + + + OUTLAW TRAILER, MFG.; ST. JOSEPH, MO + + + + + Classic Motor Carriages, Inc.(Hallandale, FL) + + + + + CapreCarrocerias Preconstruidas SASan Nicholas, Mexico, bus trailers + + + + + Malyette + + + + + Medallion Mobile Homes + + + + + Quickload + + + + + Zil + + + + + Wayne SweeperSweeper Div., FMC, Pomona, California + + + + + TZ + + + + + LOAD BOSS,INC/CHARLES H BURKETTS AUTORAMA INC; MANNS CHOICE,PENNSYLVANIA + + + + + Torino + + + + + Shaw-Wynn Homes Corp. + + + + + Meteor (Canadian Mercury) + + + + + J & W TRAILERS; LAMAR, MO + + + + + Little Prince Travel TrailerMfrs. boat trailers + + + + + Sureload + + + + + I.R. Witzer Company, Inc. + + + + + Chilton Trailer Co., Inc. + + + + + Classic Mfg., Inc. + + + + + Mangar Co. + + + + + SCI Trailer + + + + + Nationwide + + + + + Santeler Brothers + + + + + Rosemont Mobile HomeDiv. DeRose Industries + + + + + Aurora Mobile Homes + + + + + Molloy Mobile Crafts + + + + + Diva + + + + + Zhejiang Leike Machinery Co., Ltd. + + + + + AJW + + + + + Huffy Corp. (Dayton, Ohio) + + + + + Lucky + + + + + English Ford (British) + + + + + Bill James Trailer SalesWinfield, Texas + + + + + MEB TRAILER SALES; WALNUT RIDGE, ARKANSAS + + + + + Triton Trailer Corp.Allentown, Wisconsin; manufacturestrailers including snowmobile trailers + + + + + Shovel Supply Co., Inc. + + + + + Halliburton Co. + + + + + Hotchkiss + + + + + Thule Trailers, Inc. + + + + + LIBERTY INDUSTRIES; CLAYTON, INDIANA + + + + + CZ (Czechoslavakia--also see makeJawa/CZ) + + + + + Figura, MikeBruce, Wisconsin + + + + + Ventura Tent Camper + + + + + D.M.F. Trailer Mfg., Inc. + + + + + Thunderbird CastlesDiv. Thunderbird Products + + + + + Mair & Son., Inc. + + + + + Safet Camper + + + + + Bar-A-Horse Trailer + + + + + R.T.R. Trailers, Inc. + + + + + Vermeer Manufacturing Co. + + + + + Maxon EagleMfd. by Maxon Industries, Inc. + + + + + Alumna-Weld, Inc.Friendship, Arkansas + + + + + Interstate Products + + + + + Blitz Mfg. Co. + + + + + GLOBAL ELECTRIC MOTOR CARS, LLC, FARGO,NORTH DAKOTA 2 & 4 PASSENGER, LONG & SHORT UTILITY TYPE VEHIC + + + + + Humes Truck & Trailer Mfg. Co + + + + + Scoutboat Trailer + + + + + Car Camp + + + + + Sparta + + + + + Matrette + + + + + Tow Mobile Forklift + + + + + Wasp + + + + + Officer, TheElkhart, Indiana + + + + + American Trailer & Mfg. Co.See also Transporter, Downey, California + + + + + LIBERTY, INC. MAKER OF TRAV-A LONG TRAILER, LITTLE RIVER,SC + + + + + Pedalpower Electroped + + + + + CharismaMfd, by Merrimac Corp. + + + + + Northern Cruisers + + + + + Taylor Metal Works, Inc.Milan, Tennessee + + + + + Takeuchi Manufacturing (U.S.) Ltd.Atlanta, GA; manufactures compact trackequipment + + + + + Mighty MidgetMfd. by Owens-Classis, Inc. + + + + + Frank Motor Homes, Inc. + + + + + Golden West Mobile Homes + + + + + Silver Trail + + + + + Walker Stainless Equipment Co.New Lisbon, Wisconsin + + + + + Rex + + + + + Compact Equipment Co. + + + + + TOWRITE MANUFACTURING; BUNN LEVEL, NC; TTRAILERS & DOLLIES + + + + + Wanderer Camper + + + + + Pacesetter + + + + + Daimler + + + + + Yanger Mobile Homes + + + + + SKYTRAK; CONSTRUCTION EQUIPMENT;FORKLIFT ETC. + + + + + Transco Trailer + + + + + HORTON VANS, INC.; EATONTON, GO + + + + + A C (Great Britian) + + + + + Rec-Sha Trailer + + + + + Mobilaire Mobile Homes + + + + + Jerrytime Camper + + + + + SmallwoodCounty Line Co. + + + + + POLINI MOTORCYCLES + + + + + AquariusBoat trailers--mfd. by Trail-Rite, Inc. + + + + + Saturn + + + + + Brown + + + + + Mars Camper Co. + + + + + Zim + + + + + Jac-Trac, Inc.Marshfield, WI + + + + + Rush Industries, Inc.Elkhart, Indiana + + + + + MONSOON (ATV'S) ALL TERRAIN VEHICLES + + + + + Harley-Davidson + + + + + Promark Products Corp. + + + + + Budson Knobby Flatbed Trailer + + + + + Thunderbikes, Inc. + + + + + Olathe Mfg. Co., Inc. + + + + + Kinlon or Chongqing Kinlon Science & Tech. Grp. + + + + + Navajo Horse Trailer + + + + + Kenway Campers, Inc. + + + + + Pleasureway Mfg. + + + + + China Jiangmen Group Co., Ltd. + + + + + Dreamer + + + + + ATLAS SPECIALITY_PRODUCTS/TRAILERS + + + + + Brute Equipment Inc.Glen Alan, Mississippi + + + + + Bravo Trailer + + + + + Erskine + + + + + Monte + + + + + Canadian Trailmobile Ltd. + + + + + Apache Coach Co. + + + + + Transliner Insulated Tank Trailer + + + + + Baker Trailer & Body Co. + + + + + Wonder State Boat Trailer + + + + + D & D FABRICATIONS, ST LOUISS, MICHIGAN / TRAIL-TECH TRAILERS + + + + + Gronewegen B.V.Netherlands + + + + + LEVIS MOTORCYCLES; GREAT BRITAIN + + + + + WHEEL ESTATE SALES & SERVICE, INC; TRADE NAME/STEWART LODGES + + + + + Lotus + + + + + Jayco, Inc. + + + + + Meyer Morton Co. + + + + + Skim Air Trailer + + + + + Venus + + + + + Frolic Homes, Inc. + + + + + Semo Tank/Baker Equip. Co. + + + + + LOADMASTER INC; INDIANA + + + + + DISCOUNT TRAILERS; FORT WORTH, TX + + + + + Rosco Mfg. Co.Minneapolis, Minnesota + + + + + Landmaster + + + + + MOTOBECANE; SCOOTERS & CYCLES + + + + + Meitian Motorcycle Co., Ltd. Or Shanghai Meitian Motorcycle Co., Ltd. + + + + + Nevada Air Products Co. + + + + + Dodge + + + + + ConvertoCambridge City, Indiana--Div. Golay &Co., Inc. + + + + + Keel-HaulerMfd. by Precision Deburring &Fabricating, Inc. + + + + + Cotton + + + + + Wayne Corp.Richmond, IN + + + + + Evans-Plugge Co., Inc.Columbus, Nebraska + + + + + Metal Fabrication, IncWinchester, TN + + + + + Broncco (Italy) + + + + + Kaywood Homes, Inc. + + + + + ASI Trailer + + + + + General Marine Industries + + + + + Dormi Industries, Inc. + + + + + Ottawa Truck Div., Gulf & WesternMfg., Co. + + + + + Corbitt + + + + + Gulf States Mfg. Corp. + + + + + Alsport/Steen (also see Tri-Sport/Steen) + + + + + Silent Hoist & Crane Co. + + + + + Ken Trailer + + + + + Midmark + + + + + Moore Equipment Co. + + + + + Holly Parks, Inc.Mobile Homes + + + + + Triangle-K Trailer Co.Drumright, Oklahoma + + + + + Tri-State Homes, Inc. + + + + + Hooper Trailer Sales, Inc.Monticello, GA; flatbed trailers. + + + + + Pioneer Sales & Mfg. Co. + + + + + Furatell IndustriesBruce, Wisconsin + + + + + New Era Trans Co. + + + + + Scamp + + + + + Amerigo Travel Trailer + + + + + Penton (KTM--Austria) + + + + + Boulder Trailer + + + + + North American Mfg. Co. + + + + + WE-HAUL TRAILERS; DIVISION OF FOREST RIVER, INC. GOSHEN. IN + + + + + MountaineerLawn & Garden tractor--mfd. by UnitedFarm Tools, Inc. + + + + + Travette Mfg. + + + + + Truck Trailer Sales & ServiceYankton, South Dakota, Inc. + + + + + Scott + + + + + AlouetteSee Alouette Recreation Products, Ltd. + + + + + J. M. Huber Corp. + + + + + Pennstyle Campers, Inc. + + + + + Wendax + + + + + Cleveland Mfg. Co., Inc. (CMC) + + + + + Shanghai Jialing Vehicle Business Co., Ltd. + + + + + Bar-C Horse Trailer + + + + + VULCAN WORKS, INC; MANCHESTER, NEW HAMPSHIRE; MOTORCYCLES + + + + + Culpepper Trailer Co.Clinton, Arkansas + + + + + Poloron ProductsMfrs. riding mowers--Harrison, New York + + + + + Colony Factory Crafted HomesShippenville, PA + + + + + Gypsum Express LTDBaldwinsville, NY; makes convertordollies + + + + + Jersey Trailer + + + + + Glass Stream TrailersNashville, Georgia + + + + + ARMOR CHASSIS, LLC; RIDGELAND, SC + + + + + General Homes Div.Div. of Divco-Wayne Industries + + + + + Drifter Mfg. Co. + + + + + Volga + + + + + Ashdown Mfg. Corp.Ashdown, Arkansas + + + + + Carry Craft Trailers + + + + + Beaver Trailer + + + + + Seco Mfg. Co. + + + + + Allard + + + + + Explorer + + + + + Burlington Mfg. Co. + + + + + Big AMfd. by Rickel Mfg. Corp. + + + + + Pontiac + + + + + Sportliner Tent Trailer + + + + + Fox + + + + + Atwood Mobile Home + + + + + Starlite Mfg. Co. + + + + + Marion Trailer SalesMarion, Indiana + + + + + Florida Wholesale Distributor + + + + + Pannonia + + + + + BIG DOG CUSTOM MOTORCYCLES, INC. + + + + + Nu-Wa Campers, Inc. + + + + + Away We Go Travel Trailer + + + + + Pardonnet Mfg. Co.Livonia, Michigan + + + + + Dekco Mobile Mfg.Menahga, Minnesota + + + + + Bendix Corp.Mfr. of mobile homes and recreationalvehicles + + + + + Greeves + + + + + Pitman Brothers Co. + + + + + Ranger Mobile HomesMfd. by Ritz-Craft, Inc. of Indiana(see Ritz-Craft of Pa., Inc.) + + + + + CassMfd. by Custom Assembly + + + + + Rockin-Bar Trailers Ltd.Durant, Oklahoma + + + + + L & S LINE MFG.; BRISTOL, TENNESSEE + + + + + LaforzaUtility vehicle; Hayward, California + + + + + Rolco Mfg. Co. + + + + + Goliath + + + + + TERRY'S UTILITY TRAILER OR TERRY W. BECK; WARRENVILLE, SC + + + + + Stanley Hydraulic Tools + + + + + Gator Trailers Corp. + + + + + Country-Aire Travel Trailer + + + + + Boles-Aero, Inc. + + + + + WILD WEST MOTOR COMPANY; POWAY, CA. (PEACEMAKER MODEL) + + + + + Southwest Welding & Mfg. Co. + + + + + BonnavillaMfd. by Chief Industries + + + + + Denzel + + + + + Ravens-Metal Products, Inc.Parkersburg, West Virginia + + + + + Yazoo Mfg. Co., Inc.Jackson, Mississippi + + + + + Dolan Corp. + + + + + Keystone Coach Mfg. Co. + + + + + Hongki or Hong-Chi + + + + + Zoboda + + + + + McCulloch Mite-E-Lite, Inc.,McCulloch Corp. + + + + + Action Industries + + + + + Royal Brothers + + + + + Phelan Mfg. Co.Nashville, Tennessee + + + + + Winco Div.Dyna Technology, Inc., Minneapolis,Minnesota + + + + + Stewart Park Homes, Inc. + + + + + Aspes + + + + + Westward Coach Mfg. + + + + + Chateau Mfg. Co., Inc. + + + + + Country Coach Motor HomeJunction City, Oregon + + + + + Ski-Tow Mfg. Co., Inc.Elkhart, Indiana + + + + + Coleman + + + + + Broadmore Mobile HomesSubsidiary of Fleetwood Trailers &Mobile Homes + + + + + NorthwaySee Northway Snowmobiles + + + + + Trail-Et Horse Trailer + + + + + Sunset Mobile Homes + + + + + Steelcraft Log Trailer + + + + + Fanc Motor Home Truck + + + + + Rickman + + + + + Coastal Trailer Corp. + + + + + Bird Engineering, Inc. + + + + + AMERICAN TRANSPORTATION; BUS + + + + + C-Mor + + + + + Avco Corp. + + + + + Kenworth Motor Truck Co.Div. of Paccar, Inc. Also includesKenworth Glider. + + + + + Conceptor Industries, Inc. + + + + + Prince Motors + + + + + McQuerry Horse Trailer + + + + + Durabilt Industries, Inc. + + + + + Pennsylvania Furnace and IronMfrs. tankers--company bought out byDairy Equipment, Madison, Wisconsin + + + + + Nickel & HolmanFenton, Michigan + + + + + Caprice Homes Mfs. Co. + + + + + ASPT + + + + + Vista Queen Trailer + + + + + Greenhaven Mobile House Trailer + + + + + Allis Chalmers + + + + + Poloron + + + + + Amtec Trailer + + + + + Benlo Co. + + + + + MAX-ATLAS EQUIPMENT INTERNATIONAL, INC.; ST-JEAN-SUR-RICHELIEU, QUEBEC CANADA + + + + + I.S.E., Inc.Denver, Colorado + + + + + Doolittle + + + + + American DreamMfd. by American Family Homes, Inc. + + + + + Mobilux + + + + + Dart, KW + + + + + Turnbow Trailer + + + + + Kilgore IndustriesPomona, California + + + + + Fleet Cap'n Trailers + + + + + ULTRA MOTORCYCLE CO. + + + + + U-Dump, Inc.Ocala, Florida + + + + + EMW + + + + + Griswold IndustriesSee Swinger Snowmobiles + + + + + Pride & Joy Mini Motor Home + + + + + Auto Union + + + + + Shelby American + + + + + MacDonald's Mobile Homes + + + + + ATK America Inc + + + + + Traveliner Motor Home + + + + + Concord Mobile Homes + + + + + Condor + + + + + Centaur + + + + + AGCO INC. FORMERLY ALLIS CHALMERS & K-H DEUTZ OF GERMANY + + + + + Malro USA DistributorsHeber, CA; recreational trailer + + + + + Perris Valley Campers + + + + + Norman + + + + + Argonaut State Limousine + + + + + Mobile Freeze + + + + + Camel Camper Trailer + + + + + KTMMEX Motorcycle Mfg. + + + + + Branstrator Engineering Corp. + + + + + Champion Trailers + + + + + General Engines Co., Inc.Throfare, New Jersey + + + + + Run-About + + + + + Rainbow Camper Co. + + + + + FWT, Inc. + + + + + Bee-Line Travel Trailers or MobileHomes, Inc. + + + + + Peel + + + + + Vulcan Trailer Mfg. Co.Birmingham, Alabama + + + + + Trail Car Boat Trailer + + + + + Sunset Travelers + + + + + Trojan Industries, Inc. + + + + + Semlac Corp. + + + + + Saling Mfg. Co. + + + + + Demo Horse Trailer + + + + + Dazon, Inc. + + + + + Main Line, Inc. + + + + + Copperstate Coach Co. + + + + + American Pipe & Steel Corp. + + + + + Sun L Group, Inc. + + + + + Cub Camper Trailers + + + + + Lafayette Motor Home + + + + + Cleveland Brothers Equipment Co.D & B Products + + + + + Alloway Mfg. Co., Inc. + + + + + TRL ENTERPRISES TRAILERS LOVELAND, COLORADO + + + + + Generac Corp. + + + + + EvinrudeSee Outboard Marine Corporation + + + + + LORANGER ENTERPRISES, INC.; SAN ANTONIO, TX + + + + + McClain Trailer Mfg. Co.Boat trailers--Houston, Texas + + + + + Ellis Mfg. Co., Inc. + + + + + Eagle + + + + + Remington HomesDallas, Texas (Division of SunrizonHomes, Inc.) + + + + + Burris Stock Trailer + + + + + David Mfg. Co.Mason City, Iowa + + + + + Horizon Mobile Homes + + + + + Stage Coach Mfg. Co. + + + + + Whizzer + + + + + Champ Corp. + + + + + DIAMOND G TRAILER COMPANY /GRAHAM FABRICATIONS, INC.; PURVIS, MISSISSIPPI; MANUFACTURING HOME OF DRE + + + + + Charmac Trailers + + + + + Jenkins Equipment Co., Inc. Subsidi-ary of Sweepster, Inc. + + + + + Drydock Trailer, Inc.Boat trailers--Freeport, Florida + + + + + CHAMPION BUS, INC. MICHIGAN + + + + + United Mfg. Co. + + + + + Deville Industries, Inc. + + + + + M.G.M., Inc. + + + + + Rabbit + + + + + Coburn Industries, Inc. + + + + + Ag-Systems, Inc.Hutchinson, Minnesota + + + + + DurobiltEl Monte, California + + + + + BOAT TRAILERS, WAUKEGAN, ILLINOIS + + + + + A-A WELDING SERVICEMOUNT PLEASANT, TEXAS_; ANS OR CLINT R. WOODS INC + + + + + Mercury Trailer Industries + + + + + Holden Trailer Mfg. Co.Holiday House, Inc. + + + + + Contempori Mobile Homes, Inc. + + + + + Autokraft + + + + + Henry J. + + + + + Maple Leaf, Inc.Middlebury, Indiana + + + + + Commuter Industries, Inc. + + + + + Olympia Motor Home + + + + + All Lakes Trailer + + + + + Abarth + + + + + Tampo Manufacturing Co. Inc. + + + + + Edwards Trailer + + + + + Mayco Pump Corp.Los Angeles, California + + + + + Kuhn Farm Machinery, Inc. + + + + + Simenson Mfg. Co. + + + + + Magnolia Travel Trailer + + + + + St. Joseph Marine Trailer + + + + + Kent Mfg. Co., Inc. + + + + + Westerwalder EisenwerkWest Germany + + + + + Ching-Kan-Shan + + + + + Porta-Kamp Mfg. + + + + + Lincoln Electric Co.Cleveland, Ohio + + + + + Springtrail Mfg. Co.Springfield, Missouri + + + + + Savage Coach Mfg., Inc. + + + + + Euclid, Inc., Subsidiary of WhiteMotor Corp. + + + + + Stucco Trailer + + + + + SOUTHERN SALES, INC; TRAVELERS REST,SC + + + + + Wagner + + + + + TET + + + + + XTREME ATVS + + + + + Whitley Mfg. Co. + + + + + Mercury (See Mercury Marine) + + + + + CIRCLE C MANUFACTURER; LIVINGSTON, TX + + + + + Caterpillar Tractor Co. + + + + + AMERICAN QUANTUM CYCLES, INC. ; MELBOURNE, FL + + + + + American Way Homes Corp. + + + + + Jetmobile + + + + + L. A. Woods Co., Inc.Lawrenceville, Illinois + + + + + CPI U.S.A. + + + + + Muv-All Trailers Multech Corp. + + + + + House of Architecture + + + + + Midwest Mini-Tote Co.Muskego, Wisconsin + + + + + Holva Travel Trailer + + + + + GEO + + + + + Triple Crown Trailers, Inc. + + + + + Binks Mfg. Co.Franklin Park, Illinois + + + + + DINLI ATV'S + + + + + Benelli (Italy) + + + + + Good Mfg. Co. + + + + + Zipper, Inc. + + + + + Richardson Mfg. Co., Inc. + + + + + KNL Holdings, LLC + + + + + Hudson Trailer + + + + + Moling Corp. and Car King Dolly Trailers + + + + + Titleist Travel Trailer + + + + + KIDRON; TRAILERS + + + + + Maverick + + + + + Weld-It CompanyLos Angeles, California + + + + + Marmon + + + + + Raider + + + + + Armstrong Siddeley + + + + + MANGMfd. by Oregon Mfg. Co., Inc. + + + + + Custom Coach Co. + + + + + Coventry Mobile HomeMfd. by Great Southwest Corp. + + + + + King Fish Boat Trailer + + + + + Kut-Kwick Corp.Mfrs. industrial mowers--Brunswick,Georgia + + + + + Tohatsu + + + + + Texarkana Div.Div. of Divco-Wayne Industries + + + + + Powell Mfg. Co., Inc. + + + + + Lexus + + + + + W.F. Mickey Body Co., Inc. + + + + + Mohawk, Inc. + + + + + Art James Mfg. + + + + + Adams Engineering Co. + + + + + Lee Enterprises Mfg. Co., Inc. + + + + + DALTON ENTERPRISES INC. + + + + + Covered Wagon Trailer + + + + + Sprayline Two Wheel Trailer + + + + + Pettibone Mercury, SubsidiaryMercury Mfg. Co. + + + + + Wil-Trail Corp. + + + + + Davis + + + + + Rollfast + + + + + Wayfarer Coach Mfg.Div. St. Paul Fence & Iron Works + + + + + Northwestern Mobile HomesDiv. Rainway Manufacturing Company + + + + + AMERICAN TRAVEL SYSTEMS, INC.; ELKHART, IN + + + + + Liberty Homes, Inc.Goshen, Indiana + + + + + Nu-Life Environmental, Inc. + + + + + MAC-LANDER, INC; OSCEOLA, FL + + + + + Star Custom Trailers, Inc.Lebanon, Tennessee + + + + + Braughms Travel Trailer + + + + + Total Performance, Inc. + + + + + Carpenter Manufacturing, IncMitchell, IN + + + + + Motom + + + + + Damon Industries, Inc.Elkhart, Indiana + + + + + Lemco Tool Corp.Cogan Station, Pennsylvania + + + + + East Se Trailer + + + + + OBERBILT TRAILER COMPANY DRUMRIGHT, OK + + + + + Avanti + + + + + Traxcavator Tract + + + + + Diamond G EquipmentOklahoma City, Oklahoma + + + + + McCrabb Mfg., Inc.West Liberty, Iowa + + + + + Ottawa Truck, Inc. + + + + + SAUK CENTRE WELDING & MACHINE WORKS, INC. FELLING TRAILERS + + + + + HogerMfd. by Sundowner Trailer Co. + + + + + Hiab Cranes and Loaders, Inc.Newark, Delaware + + + + + Monticlaire Mobile Homes + + + + + Lodal, Inc.Kinsford, Michigan + + + + + Trav-L-Homes + + + + + Elite Mfg.Camper Shells--Merced, California + + + + + BLUE RIDGE TRAILERS + + + + + International Harvester Co. + + + + + BPMfd, by SS Trailer Co. + + + + + Smokey Trailer + + + + + Piazio + + + + + Omsteel Products Corp. + + + + + Arctic Enterprises, Inc.Thief River Falls, Minnesota + + + + + Hostar Marine Transport Systems, Inc. + + + + + Schetzky Equipment Corp. + + + + + Cam-O-Tel Corp. + + + + + Hough Brothers, Inc. + + + + + Loncin Group Import & Export Co., Ltd. + + + + + Load King Trailer Co.Div. of CMI Corp.--Elk Point, SouthDakota + + + + + Ayr-Way CampersDiv. K. V. Molded Products, Inc. + + + + + E-Z Camper (or Kamper) + + + + + Sanker Mfg. & Supply + + + + + Thames + + + + + Travelaire Trailer Mfg. + + + + + Ventura Mfg. and Implement Co.Oxnard, California + + + + + + Hobbs TrailersDiv. of Fruehauf Corp.--Fort Worth,Texas + + + + + Kohler Co. + + + + + General Electric + + + + + Prevost Car, Inc.Mfrs. of "Prevost Bus"--Sainte Claire,Quebec, Canada + + + + + Aztec Products Inc.Mansfield, Texas + + + + + S M Moon + + + + + Float-On of FloridaBoat Trailers--Ft. Pierce, Florida + + + + + Panterra + + + + + Treasure Chest Products + + + + + Adette + + + + + Speicher Brothers, Inc.Auger products + + + + + Dynaweld Trailer + + + + + Dalton, Inc. + + + + + Advance MixerFt. Wayne, IN; truck, front dischargetransit mix + + + + + Brunswick Travel Trailer + + + + + Rockland Homes, Inc. + + + + + Decamp Homes, Inc. + + + + + Volunteer Mfg. Corp. + + + + + HerculiftMfd. by TCI Power Products, Inc. + + + + + High Country Trailer Sales & Mfg. + + + + + Inger-Teco Corp. + + + + + Schramm, Inc.West Chester, Pennsylvania + + + + + WALTRON LIMITED/ALDURA; RIDGETOWN, ONTARIO CANADA + + + + + Hillco, Inc. + + + + + Air-Flo Mobile HomeMfd. by Gregory Mfg. Co. + + + + + Road Clipper + + + + + U.S. MARINE CORPS; MAKE IS UNKNOWN + + + + + NEWMAR CORPORATION; NAPPANEE, IN_ + + + + + Itasca Motor HomesDiv. Winnebago Ind., Inc.,Forest City, Iowa + + + + + Sea Stallion TrailersKlamath Falls, Oregon + + + + + CARPENTER INDUSTRIES INC. + + + + + Mistral + + + + + Buffalo-Bomag Div.Div. of Koehring Co. + + + + + EnerexMfd. by Hayes Equip. Corp. + + + + + Jaeger Machine co.Columbus, Ohio + + + + + Comet Motorcycle TrailerMfd. by Yarbrough Mfg. Co., Inc. + + + + + Corn Belt Manufacturing, Inc.Early, Iowa + + + + + Yuchi Mobile Homes + + + + + Bluebird International + + + + + Custom Fab Body Bodies andTrailers, Inc.Indiana, Pennsylvania + + + + + CARGO PRO TRAILERS + + + + + Chukar, Inc.Phoenix, Arizona + + + + + Lagusa Motor Coach + + + + + Sovam + + + + + Brown Trencher Div., Rivinius, Inc. + + + + + MODULAR SYSTEMS, INC; INDIANA + + + + + First American Coach + + + + + Skat (or Skat-Kitty) + + + + + Shertzer Dump Trailer + + + + + Braco Custom ProductsCassopolis, Michigan + + + + + Levco Manufacturers, Inc. + + + + + Utah Mobile Homes + + + + + Standard + + + + + Terravac Corp.Stockton, California + + + + + Trailco-Norwin + + + + + Weeres Trailer + + + + + Brooten Fabricating, Inc. + + + + + Hop Cap P/U Camper Trailer + + + + + J.P. Utility Trailers & Welding + + + + + Rainway Mfg. Co. + + + + + Rushmore Homes + + + + + Roper Outdoor Power ProductsKankakee, Illinois + + + + + Ledwell & Son Enterprises, Inc.Texarkana, Texas + + + + + Travelpak Car Topper Sales + + + + + Landis Steel Co. + + + + + Boise Mobile Equipment + + + + + Burrito (also see make J.C.Penney) + + + + + Johnson's Trailer Building & Repair + + + + + Linco Trailer Home + + + + + ANDERSON MANUFACTURING; CAMILLA, GA + + + + + Hibdon Mfg. Co. + + + + + Pelican Aluminum Mfg. + + + + + Van Art, Inc. + + + + + Yacht Club + + + + + Trailorama + + + + + AG-Rain, Inc. + + + + + Simpson Enterprises, Inc. + + + + + FallsRiding lawn mower + + + + + Detroiter Homes + + + + + Chris Craft Corp. + + + + + Luedtke Mfg., Inc.Allenton, Wisconsin + + + + + Tru-Tow Trailers + + + + + Gitane + + + + + Pincor Products + + + + + Westland Trailer Co.Portland, Oregon + + + + + PORTA-DOCK, INC + + + + + SEXTON MOTORCYCLE COMPANY + + + + + All American Campers + + + + + Criterion Homes Mfg. Inc.Largo, Florida + + + + + Sportsman + + + + + Byers + + + + + URAL MOTORCYCLES OF AMERICA; PREVIOUSLY OR ALSO KNOWN AS: IRBIT MOTORWORKS OF AMERICA; REDMOND, WA + + + + + Stack Truck, Inc. + + + + + Monark + + + + + Three-Dimensional Mobiles + + + + + Four Star Coach Co. + + + + + Venus Coaches + + + + + MacGregor Yacht Corp.Costa Mesa, California + + + + + New England Homes or Trailers + + + + + ALL-AMERICAN TRAILER MFG. CO., INC.; SELMA, AL + + + + + I. M. P. (U.S.) + + + + + PEQUAGordonville, Pennsylvania + + + + + Marvell Mobile Home + + + + + Rinso Forklift + + + + + Chaperalle Horse Trailer + + + + + Bilt-Rite Trailers, Inc. + + + + + Swanson Tilt trailer + + + + + Low Pro Custom Trailer + + + + + Sherwood Sentry Horse Trailer + + + + + Uteliner Motor Home + + + + + Digmor Equipment & Engineering Co., Inc. + + + + + Melody Home Mfg. Co. + + + + + Western + + + + + Walter Motor Truck Co. + + + + + Pacemaker + + + + + Calvia Brothers Trailer Mfg. + + + + + Auto Trailer Co. + + + + + Embassy HomesDiv. of Guerdon Industries + + + + + Komar + + + + + Cliff Office Trailer + + + + + Dillon Enterprises, Inc.North Liberty, Indiana + + + + + Toura Products + + + + + Satoh Japanese Tractor + + + + + Dayton Electric Mfg. Co.Mfrs. air compressors--Chicago, Illinois + + + + + White Materials Handling, SubsidiaryWhite Motor Corp. + + + + + Parilla + + + + + FORCE MANUFACTURING, INC. AND/OR HARVEY; BANGOR MAINE, NANCY HARVEY + + + + + R.C. Industries, Inc.Goshen, Indiana + + + + + Haul-A-Day Trailers + + + + + Dolphin HomesDiv. Tidwell Ind., Inc., Haleyville,Alabama + + + + + Cuke, Inc.Mendota, Illinois + + + + + Ramada Tent Camping Trailer + + + + + International Coach Mfg. + + + + + Sunflower Mfg. Co., Inc. + + + + + Black and Decker + + + + + Malibu Campers + + + + + Rayne Plane, Inc. + + + + + Bentley + + + + + Space Assemblies, Inc.Middlebury, Indiana + + + + + Villager Travel Trailer + + + + + Dynamic Industries, Inc. + + + + + Bob Coons + + + + + Jim Glo TrailersWilcox, AZ + + + + + Ace (model of Hodaka) + + + + + BEHNKE ENTERPRISES, INC; FARLEY, IA + + + + + Royco Mfg. Co. + + + + + Hindustan + + + + + Florig Equipment Co., Inc.Conshohocken, Pennsylvania + + + + + Walter Products & Engineering Co. + + + + + Office Master, Inc.Hampshire, Tennessee + + + + + Beaver Monterey Motor Home + + + + + Schnure Ho' Trailer + + + + + Mercantile Mfg. Co., Inc. + + + + + Independent Mfg. Co., Inc. + + + + + Jalldee, Inc.Spencer, Wisconsin + + + + + Globemaster Mobile Homes + + + + + Troxell Trailer Mfg.Ft. Worth, Texas + + + + + Skippy Trailer + + + + + Avenger + + + + + Zaporozhets + + + + + LMC + + + + + Red River Custom TrailerClarksville, Texas + + + + + Lawn BoyMfrd. by Outboard Marine Corp. + + + + + Cushman Turf-OMC Lincoln + + + + + Cameo Travel Trailer + + + + + Beemer & Grubb Enterprises + + + + + Fiat-Abarth + + + + + Isuzu + + + + + Loodcraft + + + + + GEELY OF SHANGHAI CHINA; MOTORCYCLES,MOPEDS & PASSENGER CARS + + + + + Scamp Trailer + + + + + COMPETITION TRAILERS, INC HENDERSON, TEXAS + + + + + Martin Trailers, Ltd.St. Laurent, Montreal + + + + + Superior Trailer WorksLos Angeles, California + + + + + Bowers Mfg. Co. + + + + + J.S. Mobile Homes + + + + + JOHNSTON SWEEPER CO., CHINO, CA + + + + + Mzma + + + + + CAMPAGNA MOTO SPORT, INC; PLESSISVILLE, QUEBEC, CANADA + + + + + Sun Blazer Travel Trailer + + + + + Twin Trailer + + + + + Tioga Motor Home + + + + + Gordon Smith & Co., Inc.Bowling Green, Kentucky + + + + + Indian Campers, Inc. + + + + + Hilltopper Mfg. Corp. + + + + + A & M Coach + + + + + Deep Sanderson + + + + + Aloha Trailer Co. + + + + + Nsu-Fiat + + + + + Delhi Metal Products, Ltd.Delhi, Ontario, Canada--mfrs. boattrailers + + + + + Univision Industries Ltd. + + + + + Custom Trailers, Inc.Springfield, Missouri + + + + + HARRIMAN SALES, INC.; DEKALB JCT, NEW YORK + + + + + Gentry + + + + + Remke Trailer + + + + + Mobility, Inc.Minneapolis, Minnesota + + + + + Master View + + + + + AJS (United Kingdom) + + + + + Martinez Trailer + + + + + Cinderella Mobile HomesMfd. by Mobile Structures, Inc. + + + + + Lift Truck, Inc. + + + + + Moody Mfg. Co. + + + + + LINHAI MOPEDS, POWERMAX; CHINA + + + + + All South Equipment Corp. + + + + + Great Lake + + + + + ElktonMfd. by Price-Meyers Corp. + + + + + Dunbar KappleBatavia, Illinois + + + + + Big Tex + + + + + Royal Industries Noble Div. + + + + + Swisher Mower & Machine Co.Warrensburg, Missouri + + + + + Ogle + + + + + D & P Welding Co. + + + + + D.M. & V. Enterprises, Inc. + + + + + Monaco Motor Home + + + + + Monitor Coach Co. + + + + + Casa Manana Mfg. Corp. + + + + + Becker, Charles H., Inc. + + + + + Superior Equipment Co.Buckeye Products + + + + + AA WELDING SERVICE/CLINT R. WOODS, INC.; MT. PLEASANT, TX + + + + + Mech Handling Co. + + + + + NOVA FABRICATING, INC.; AVON, MN + + + + + C. B. Mfg. Co., Inc. + + + + + Gregory Trailer Sales + + + + + LEBEAU ENTERPRISES; LEXINGTON, NC + + + + + Cruzmaster Camper + + + + + Highway Trailer + + + + + Kurmann Trailer Mfg. Co. + + + + + Ziegler + + + + + Broken Arrow Mobile Home + + + + + Custom Camper Co. + + + + + Davron Traveler, Inc. + + + + + Aardvark Co.Waxahachie, Texas + + + + + BJ'S CUSTOM TRAILERS; WOODSTOCK, AL + + + + + Westank Industries, Inc. + + + + + Society Coach Builders + + + + + Park Royal + + + + + Ransome Lift Equipment Co., Subsidi-ary of Giles & Ransome, Inc. + + + + + Turtle Top + + + + + Amerind-Mackissic, Inc. + + + + + Master HouseMfd. by Highlander + + + + + GreenvillaMfd. by Greenville Mobile Homes + + + + + Cricket Corp.Elkhart, Indiana + + + + + CALIFORNIA MOTORCYCLE COMPANY; GILROY,CA; VENTANA,CABRILLO KING & DIABLO MOTORCYCLES + + + + + Micro Concept Cars + + + + + Cullison Mfg., Inc. + + + + + Schlemmer Boat Co. + + + + + Kelley ManufacturingBogata, Texas + + + + + American La FranceDiv. of A-T-O, Inc. + + + + + GILLIG CORPORATION HAYWARD, CALIFORNIA , BUS + + + + + LandlordMfd. by Simplicity Mfg. Co., Inc. + + + + + Osage Trailer Mfg. Co., Inc. + + + + + Speed King Mfg. Co., Inc. + + + + + Pioneer Div., Portec, Inc. + + + + + ABC HomesDiv. Divco-Wayne Industries + + + + + Mayrath Industries, Inc. + + + + + Clement-Braswell + + + + + Paris Trailer Co. + + + + + Chuck Beck Motorsports + + + + + AMF Lawn & Garden Div.AMF, Inc. + + + + + Bantam + + + + + Xplorer Enterprises of Constantine + + + + + Laser + + + + + Brown, Dave L., Inc. + + + + + Ohio Body Mfg. Co.New London, Ohio + + + + + Bushcraft Trailer + + + + + Lundell Mfg. Co., Inc. + + + + + Liberty Travel Trailers + + + + + Sun ChaserMfd. by Sun Recreational Industries, Ltd + + + + + SUPERIOR TRAILERS OF GA. INC.; DANIELSVILLE, GA + + + + + Electric Vehicle Technologies + + + + + EXCELSIOR-HENDERSON MOTORCYCLES + + + + + Dorsey Trailers Inc.Elba, Alabama + + + + + Virginian Coach Camper Corp. + + + + + Alpine + + + + + Elcona Homes Corp + + + + + Maybach (Brand within Mercedes-Benz) + + + + + Ashby Brothers + + + + + Alaskan Camper + + + + + Heald, Inc. + + + + + Joshua Trailer + + + + + Sunflower Travel Trailer + + + + + Fiesta + + + + + Mobley Metal Works + + + + + Maxcraft Trailer Mfg. + + + + + VANTAGE DUMP TRAILERS, INC.; KATY, TX + + + + + De Soto Coach Co. + + + + + Clua . + + + + + HORSE CREEK MANUFACTURING; COOKVILLE, TX + + + + + Travel Queen Coaches + + + + + McCoy Mfg. & Sales Co. + + + + + Rainbow Corp. + + + + + Hinomoto Tractor Sales USA, Inc.Houston, Texas + + + + + SearsSears, Roebuck & Company + + + + + Robin Mfg. Co. + + + + + Guizzo + + + + + Messerschmitt + + + + + Kozy Coach Co. + + + + + Southern Missouri Trailer Sales + + + + + Francis-Barnett + + + + + Beta + + + + + Driftwood Homes Corp. + + + + + Century Auto Body & Trailer Mfg. Co. + + + + + Hyster Co. + + + + + Rockland Mfg. Co., Inc. + + + + + Nashua Mfg. Co. + + + + + IndependenceMfd. by Patriot Homes, Inc. + + + + + Superior Office Trailer + + + + + Fairthorpe + + + + + Giannini + + + + + Specialty Mfg. Co.Red Bay, Alabama + + + + + JLG Ind., Inc. + + + + + Miller Tilt-Top Trailer Inc.Milwaukee, Wisconsin + + + + + Tailgater + + + + + Grizzly Corp. + + + + + Hearthside Mobile HomesDiv. Moduline International, Inc. + + + + + AvionMfd. by Fleetwood Enterprises + + + + + Newport Homes, Inc. + + + + + Eidal International Corp. + + + + + Arctic Cat + + + + + Moto Beta + + + + + Chicago Pneumatic Equipment Div.Chicago Pneumatic Tool Co., FranklinPennsylvania + + + + + Hendrix Manufacturing Co. + + + + + Kamp King Utopian + + + + + Connell Industries, Inc.Greene, New York + + + + + Hunter's DreamMfd. by Wright Industries, Inc. + + + + + Ecstasy Trikes of Allentown, Inc + + + + + MONGOOSE TRAILERS;TEXAS + + + + + Luxor-Leffingwell Coach + + + + + Volvo + + + + + Dresser Industries, Inc. + + + + + Trail Blazer + + + + + Castle Enterprises, Inc. + + + + + Electric Vehicles Northwest, Inc. + + + + + E-Z Utility TrailerMfd. by Dutchie, Leola, Pennsylvania + + + + + Lil Indian + + + + + Banner Industries, Inc. + + + + + Allis-Chalmers Corp. + + + + + Unverferth-McCurdy Mfg. Co., Inc. + + + + + American Custom Electric Cars and Golf Carts + + + + + Timken Bearing Boat Trailer + + + + + Isetta + + + + + Houle Industries, Inc. + + + + + Savannah Homes, Inc.Savannah, Tennessee + + + + + Alcoa Trailer + + + + + Goff Mfg. Corp. + + + + + Pro One + + + + + MASTER TOW INC. FAYETTEVILLE, NC + + + + + Valkrie + + + + + Prestige HousingConway, Arkansas + + + + + Bucita Pop Top Trailer + + + + + Gabriel Auto Carrier + + + + + Hauler-TrailerMfd. by Nodine Mfg. + + + + + Manor Homes, Inc. + + + + + Richardson Homes Corp. + + + + + Marbrough Boat Trailer + + + + + Vista Liner Coach & Trailer + + + + + CLASSIC ACQUISITIONS/CLASSIC VENTURES; HERNANDO,FLORIDA + + + + + Cherne Industrial, Inc.Edina, Minnesota + + + + + Trihawk Inc. + + + + + COBRA MOTORCYCLES + + + + + Mobile Home Co. + + + + + Mikasa + + + + + Forester + + + + + WILD SIDE LLC; FRANKLIN, TN + + + + + COLLINS BUS + + + + + Kenron Corp. + + + + + American Coach Co.Div. Detroiter Homes + + + + + Attex + + + + + MoserSee also Vim Trailer + + + + + Apeco Mobile HomesDiv. Apeco Corp. + + + + + Alpine Mfg. Co. + + + + + Unpublished motorcycle mfr. (seeOperating Manual, Part 1,Section 2) + + + + + Kay Park-Rec Corp. + + + + + Downer Industries + + + + + Camp Cruiser Mfg. Co. + + + + + Morgan + + + + + Gustafson Mfg. Co., Inc. + + + + + Thorns Trailer + + + + + Outdoor Power Equipment + + + + + Capco Flatbed + + + + + Barrentine Mfg. Co.Greenwood, Mississippi + + + + + Smith, T. L., Co.Div. A-T-O, Inc. + + + + + Salem Mobile Home Trailer + + + + + Darby Industries + + + + + UNIMOG + + + + + Brooks Horse Trailer + + + + + Al Tucker Trailer Co. + + + + + Eshelman Sportabout + + + + + Great Bend Mfg. Co., Inc. + + + + + Star Mobile Homes + + + + + Travel World, Inc.Utility Trailers; Hope Hill,North Carolina + + + + + Puma + + + + + Fruehauf Corp.Detroit, Michigan + + + + + The Lely Corp. + + + + + Shadow TrailersShadow Boat Trailer, Glencoe, OK + + + + + Van Camp Equipment + + + + + Atlantic Mobile Sales + + + + + McDonald Camper Kit Distributor + + + + + Pettibone Michigan Corp., SubsidiaryMercury Mfg., Co. + + + + + BunkhouseModel of Siesta--mfd.by Park Homes, Inc. + + + + + Aire-Line Mobile Homes + + + + + Cal Trailer ManufacturingSan Fernando, California + + + + + Tracer Horse Trailer + + + + + Hunter Custom TrailersKingsbury, Indiana + + + + + Hustler Boat TrailerPowell, Tennessee + + + + + Roycraft Coach Co. + + + + + Northwest Trailers + + + + + Snowflake Coach Industry + + + + + COBRA TRAILERS, GERMANY; ALFRED SPINDELBERGER + + + + + Southlane Horse Trailer + + + + + Heafty Trailer Mfg. & Sales + + + + + Luger Industries + + + + + Wildgoose + + + + + Dillis Trailer Mfg. + + + + + Beaird PaylinerShreveport, Louisiana + + + + + BUCK DANDY COMPANY; TEXAS + + + + + Worthington Compressors, Inc.Holyoke, Massachusetts + + + + + Pierce Mfg., Inc.Mfr. of Pierce Duplex,Appleton, Wisconsin + + + + + Maxwell Trailers & Pickup AccessoriesMexico, MO + + + + + Esquire + + + + + General Motors + + + + + Stardust Travel Trailer + + + + + Consort Mobile HomesMfd. by Zimmer Homes Corp. + + + + + Ockelbo Industry AB + + + + + Brent IndustriesShell Rock, Iowa + + + + + Palm Trailers + + + + + Sears, Roebuck & Co. + + + + + Spyder + + + + + Mitchell Camper Trailer + + + + + Clar-Mont Mfg. Co. + + + + + Aberdeen Boat Trailer + + + + + Beachcomber Industries Ltd.Morden, Manitoba + + + + + LOCKE ENTERPRISES OF NEW YORK, INC; LOCKE,NEW YORK + + + + + TIFFIN MOTORHOMES, INC; RED BAY, ALABAMA; ALLEGRO, PHAETON, ZEPHER MODELS + + + + + KEYSTONE RV COMPANY, GOSHEN, IN. (SPRINGDALE TRAILER MODEL) + + + + + Carrier King Trailer + + + + + Four State Industries, Inc.Elkhart, Indiana + + + + + Kwick Kit Cement Mixer + + + + + Triad Trailers Ltd.New Milford, Connecticut + + + + + Wildfire + + + + + Marauder Travelers, Inc. + + + + + AMERICAN PERFORMANCE CYCLE;BULLHEAD CITY, AZ; SPIRIT AND BIG BOY CYCLES + + + + + Brown TrailerDiv. Clark Equipment Co. + + + + + Kama + + + + + Kill Bros.Delphos, Ohio + + + + + Bell's Camp Trailers + + + + + Surf-Rider, Inc. + + + + + SCHIFSKY TRAILERS + + + + + Bill Rivers + + + + + Ranch King Enterprises, Inc.Bellville, Texas + + + + + Adams Trailer Mfg. + + + + + Falcon (British) + + + + + Larsen Lapline Trailer + + + + + Cummins Engine Co., Inc. + + + + + Cheetah + + + + + Hamilton Trailer + + + + + Trail King IndustriesDiv. W.A.S., Inc., Mitchell,South Dakota + + + + + Vengeance Motorcycle; Div. of Vengeance Performance Products, LLC + + + + + Gadabout + + + + + Easom Engineering + + + + + Neptune Corp. + + + + + Ono, Inc. + + + + + Claxton + + + + + SMART + + + + + Duesenberg + + + + + Daco Trailer Corp.Pocahontas, Arkansas + + + + + Vegas Mfg. Co. + + + + + Bandera Trailer + + + + + Pan American Mobile HomesDiv. of Divco-Wayne Industries + + + + + Doonan Trailer Corp.Great Bend, Kansas + + + + + Leer, Inc.Elkhart, Indiana + + + + + Dons Boat Trailer + + + + + Suvega Tiger + + + + + Big Inch Bikes + + + + + TM Trailer + + + + + All State + + + + + Garber Seeders, Inc. + + + + + Woods Div., Hesston Corp. + + + + + Merry Mfg. Corp.Marysville,Washington--mfrs. cultivators + + + + + Lane Flatbed Trailer + + + + + Norris Homes, Inc. + + + + + Tow Pro, Inc.McKinney, Texas + + + + + Rockford + + + + + Academy Mobile Home Corp. + + + + + Hickey Trail-Blazer + + + + + Porsche + + + + + AC Cobra + + + + + METAVIC TRAILERS; ST. PIERRE-BAPTISTE, QUEBEC CANADA + + + + + Nobility Homes, Inc.Ocala, Florida + + + + + Arndt TrailersHorse trailers + + + + + Cortez Motor Home + + + + + Spen & Co. + + + + + Multi Trailer + + + + + United Trailer Service & Supply Co. + + + + + HOLIDAY HOUSE + + + + + Lynn-Towtruck + + + + + Ratco WeldingBillings, Montana + + + + + New Dimension + + + + + W & M ENTERPRISES, INC.; LAWRENCEBURG, INDIANA + + + + + Vermette Machine Co. + + + + + Montgomery Ward - Snowmobiles + + + + + GRAND PRIX TRAILER MANUFACTURING, CO.; FREDERICK, MD + + + + + GradallDiv. of Warner & Swasey Co. + + + + + Hart Mfg., Inc.Chickasha, Oklahoma + + + + + Boanza Mobile Homes + + + + + Tow-Rite Mfg. + + + + + Harbortown Mobile HomeLeola, Pennsylvania + + + + + Vet Boat Trailer + + + + + Craft Weld Trailer + + + + + Nash-Healy + + + + + AMRAD PRODUCTS & SUPPLY (SNOWMOBILE & UTILITY TRAILERS) + + + + + Marquette Custom Boat Trailer + + + + + C. D. Osborn & SonGrand Rapids, Michigan + + + + + Thomsen Equipment Co. + + + + + Stopover Traveler & Camper Co. + + + + + KMMKoffel Machine & Metal Fabricating, Inc. + + + + + Monarch + + + + + Motocicletas Carabela SA + + + + + G. & C. Mfg. Co. + + + + + Sun-Lite, Inc.Bristol, Indiana + + + + + Red Cat Motors + + + + + Troyer Mfg. Co. + + + + + Scad-A-Bout Mfg. & Aluminum Co. + + + + + Freightliner Corp. + + + + + Continental of Colorado, Inc. + + + + + Spartan Motors, Inc.Mfd. in Charlotte, Michigan + + + + + Ellis Trailer Co.Sylmar, California + + + + + Forest ParkMfd. by Gerring Industries, Inc. + + + + + Tessy + + + + + Harrison Trailer Mfg. Co. + + + + + Tryco Mfg. Co., Inc.Decatur, Illinois + + + + + READI-BUILT TRAILERS; THOMASVILLE, NC + + + + + FNM + + + + + Kamasura (U.S.A.) + + + + + Woodland Camper Co. + + + + + Startrek + + + + + G & F HORSE TRAILER REPAIR; RIVERSIDE, CALIFORNIA + + + + + Sperry Rand + + + + + Qvale Automotive Group + + + + + Nelson Mfg. Co.Ottawa, Ohio + + + + + Maxwell + + + + + UNILLI ATVS ETC + + + + + Bivouac Industries, Inc.Vandalia, Michigan + + + + + Lloyd + + + + + Leland Engineering, Inc. + + + + + Finger Lakes Trailer + + + + + Hein-Werner Corp. + + + + + Towner Mfg. Co. + + + + + Easy Lawn, Inc. + + + + + Connaught + + + + + Jen Sell Corp.Elkhart, Indiana + + + + + Richard Piche, Inc.Quebec, Canada + + + + + OK Horse Trailer + + + + + Besasie Automobile Co., Inc + + + + + Caveman Industries + + + + + Argyle + + + + + Plymouth + + + + + Associated Truck & TrailerTigard, Oregon + + + + + Shalimar Mobile HomesMfd. by Sportcraft Homes + + + + + Walker Tractor Mfg. + + + + + Rich Industries + + + + + Harben, Inc. + + + + + Heckaman Mfg., Inc. + + + + + Por Trailer + + + + + Westgo Industries, Inc. + + + + + Husky + + + + + CANADIAN MOTORHOME + + + + + Harmon Tank Co.Lubbock, Texas + + + + + Pickwick + + + + + Tufby Converter Dolly + + + + + Overland Mfg. Co. + + + + + Easton Car & Construction + + + + + Ford's Mobile Home Mfg. + + + + + Ward LaFrance International Inc. + + + + + Auto Ski IncLevis, Quebec + + + + + Magnolia Mobile Homes Mfg. + + + + + Stewart, Inc. + + + + + Daytona Mobile HomesMfd. by Monarch Industries + + + + + Lubbock + + + + + Wartburg + + + + + Acro Tank Co.Springfield, Missouri + + + + + Poole, Inc. + + + + + Kelson Engineering Co. + + + + + Chevron Corp.Elkhart, Indiana + + + + + Moritz, Inc.Mansfield, Ohio + + + + + Balboa Motor Home + + + + + Lawrence Trailer + + + + + Sams + + + + + U.S. NAVY; MAKE IS UNKNOWN + + + + + Linde + + + + + Riverside Trailer Mfg. Co. + + + + + Tonco Lowboy Trailer + + + + + Simplex + + + + + American Microcar, Inc. + + + + + Bellaire Products + + + + + Condor Motor Home + + + + + Load Star Corp.Macon, Georgia + + + + + Fuller Mfg. Co. + + + + + ZAP (Zero Air Pollution) + + + + + Neal Mfg. Co., Inc. + + + + + Blue Bird Body Co. + + + + + Oberlin Trailers, Inc. + + + + + Advance Mfg. Co. + + + + + Swanee Trailer Mfg. Co. + + + + + Lesco, Inc. + + + + + IRD + + + + + Palmetto Sales of Laurens + + + + + Hickory King Horse Trailer + + + + + Croft-INS + + + + + Southern Trailers + + + + + Energy Mfg. Co. + + + + + Valiant Mobile Homes + + + + + Otasco + + + + + P & H + + + + + Titan Trailers, Inc. + + + + + Puller-TensionerMfd. by Sherman & Reilly, Inc. + + + + + Gorilla Electric Vehicles + + + + + Safti + + + + + Jack's Trailer Mfg. of Florida + + + + + Light Equipment Div.Div. of J. I. Case Co. + + + + + Alloy Trailers, Inc.Spokane, Washington + + + + + Lomac Boat Trailer + + + + + Car-Tel Corp. + + + + + Buffalo-Springfield Div.Div. of Koehring Co. + + + + + Glitsch + + + + + Plastic Engs. & Consultants + + + + + Camp Four Industries, Inc. + + + + + IMEIndustrial & Municipal Engineering, Inc. + + + + + Gibraltar Industries, Inc. + + + + + Jeraco Enterprises, Inc.Milton, Pennsylvania + + + + + Big Bear Choppers + + + + + SNUB-HARBOR OR DAY'S DRYDOCK TRAILERS; INDIANA + + + + + Holiday Marine Sales, Inc. + + + + + Harrell Mfr.North Carolina + + + + + Friggstad Mfg., Ltd., (Canada) + + + + + El-Jay Div. Iowa Mfg. Co. + + + + + Melmak Motor Home + + + + + Steadman Containers Ltd.Brampton, Ontario + + + + + Schuler Mfg. & Equipment Co., Inc. + + + + + Patz Co. + + + + + Travoy Motor Home + + + + + Cherokee Camper + + + + + Metzendorf Trailer Mfg. + + + + + USA Motor Corp.Bremen, IN; manufactures motor homes + + + + + Columbia Trailer Co., Ltd.Vancouver, Canada + + + + + Calico TrailersQuitman, Arkansas + + + + + Gindy Mfg. Corp.Downingtown, Pennsylvania + + + + + JamaicaMfd. by Marion Homes, Inc. + + + + + Roadrunner Mfg. Corp. + + + + + Italjet + + + + + Columbine Camp & Coach + + + + + Hilo Snyder Travel Trailer + + + + + Big SurMfg. by Vacation Industries + + + + + ZIMMER MOTOR CAR COMPANY; SYRACUSE, NY + + + + + Frazer-Nash + + + + + American Pride HomesDiv. Challenger Homes + + + + + Monte Aluminum Trailer Dump + + + + + Yangzhou Tonghua Semi-Trailer Co., Ltd. + + + + + Hillman + + + + + Alpha + + + + + J-J-N ENTERPRISES; SISKETON,MO + + + + + Lundgreen Flatbed + + + + + Haynes Mfg. Co., Inc.Chickasha, Oklahoma + + + + + PLATINUM MANUFACTURING LLC; OKLAHOMA CITY, OK + + + + + Multech Corp.Canton, South Dakota and Souix City,Iowa + + + + + Open Roadsters of Texas + + + + + Colt Camper, Inc. + + + + + Kazuma (Stannic Mfg. Co., Ltd.) + + + + + DEW Eze Mfg., Inc. + + + + + Appleby Camper Trailer + + + + + DRAKE TRUCK BODIES, VERNON BRIDGE, PRINCE EDWARD ISLAND , CANADA + + + + + Fey, Frank & Co. + + + + + Arrow Motor Homes + + + + + CADILLAC FABRICATION INC + + + + + Rogers Trailers, Inc. + + + + + Creekside Welding and Jamar Trailers + + + + + Cree Coaches, Inc.Div. of Southwest Michigan Ind.,Marcellus, Michigan + + + + + Blue-Ridge Pre-Built Mobile Homes + + + + + SUGGS MANUFACTURING CO., INC.; LAGRANGE, NC + + + + + Apollo Homes + + + + + RAPTOR; ATV + + + + + Lanchester + + + + + VACTRON TRAILERS, MANUFACTURED BY: A COMPLETE ASSEMBLY;MASCOTTE, FL + + + + + Golden Coach Mfg. Co. + + + + + Littleford Brothers, Inc.Mfrs. rollers + + + + + Henred-Fruehauf (Pty.) Ltd.South Africa + + + + + Kensington Motor + + + + + Unger Motor Home + + + + + Motobee + + + + + Ammex + + + + + LONE WOLF TTRAILER CO. INC.; FALKVILLE, AL + + + + + Bering + + + + + Park Trailer Corp. + + + + + Mayfairer Motor Home + + + + + AKTIVSee Tucker Sno-Cat Corporation + + + + + Chipmore Mfg. Co., Inc.Mfrs. chippers--Bay City, Michigan + + + + + Calcinator + + + + + Jowett + + + + + Terry Industries of Virginia + + + + + M & M Mfg. Co. + + + + + Mobile Unit Mfg., Inc. + + + + + Austin-Western Div.Clark Equipment Co. + + + + + Acton Mobile Industries, Inc.Elburn, Illinois + + + + + Calypso + + + + + Dorsett Mobile HomesMfd. by Silvercrest Industries, Inc. + + + + + FECHTNER TRAILERS, ELBOW LAKE, MN + + + + + Sprayrite Mfg. Co. + + + + + Feterl Mfg. Co. + + + + + Hartford Homes, Inc. + + + + + King of the Road Trailer Co.Conyers, Georgia + + + + + Factory Outlet Trailers + + + + + HAULIN TRAILERS LLC, MUSKEGON, MI TRAILERS + + + + + Harding Trailer Co.Fort Myers, Florida + + + + + Phoenix + + + + + Worrell Trailer Mfg. + + + + + Pixie Piker Travel Trailer + + + + + SHL + + + + + ULTRA ACQUISITION CORPORATION; RIVERSIDE, CA + + + + + Daton + + + + + Boat Master TrailersFt. Myers, FL + + + + + Catolac Corp. + + + + + Detrail Trailer + + + + + Pasquali, USAVerona, Wisconsin + + + + + Concord Travelers + + + + + Allentown Brake & Wheel Service, Inc.Allentown, Pennsylvania + + + + + Halco Co. + + + + + BILLY GOAT LAWN VACUUM + + + + + JAMCO TRAILERS; BRUCEFIELD, ONTARIO, CANADA + + + + + J & L'S CARGO EXPRESS, INC.; BRISTOL, INDIANA + + + + + LaSalleDiv. Globemaster M.H. + + + + + Yellowstone, Inc. + + + + + Deico Auto Carrier Trailer + + + + + Osi + + + + + NUWA Horizon Camper Trailer + + + + + Peerless + + + + + Gilson Brothers Co. + + + + + Golden Nugget Travel Trailer + + + + + Wheeler Truck TrailerMorley, Missouri + + + + + Howdan Mfg. Co. + + + + + Mobile Sweeper Div.Div. of Athey Products Corp. + + + + + Denver Trailer Supply, Inc. + + + + + Carriage, Inc. + + + + + ABCO Trailer Mfg. Co. + + + + + EXTREME CYCLES (MOTORCYCLES) + + + + + Formaloy Flat Snowmobile Trailer + + + + + Transportation Manufacturing CorporationRoswell, New Mexico + + + + + Carry-AllScrapers, rooters and chisels--mfd. byMurray Mfg. Co. + + + + + ARISTOCRAT INDUSTRIES, INC.; GOSHEN, IN + + + + + Moto Morini + + + + + LML Corp. + + + + + Reed Mfg. Co. + + + + + Kawasaki Motors Corp., U.S.A.Santa Ana, CA + + + + + Glenhill Road Machinery + + + + + Double Delight, Inc. + + + + + Air-O-Motor Home + + + + + Gehl Co. + + + + + K & K Mobile Homes + + + + + CHARLESTON MARINE CONTAINERS, INC. CHARLESTON, SC + + + + + Wrangler Trailers + + + + + Poloron Homes of Pa., Inc.Middleburg, Pennsylvania + + + + + Trailerette Trailer + + + + + Specialized Trailers + + + + + Fuerst Brothers, Inc. + + + + + M-D Trailer Co.Fort Worth, Texas + + + + + Rapid Traveler Coaches + + + + + J. E. Love Co. + + + + + Dynapac Mfg., Inc. + + + + + Glider Mobile Homes Corp + + + + + Trailer Wheel and Frame Co.Bellville, Texas + + + + + Ander-Ett, Inc. + + + + + Frederick-Willys + + + + + Rallymaster Travel TrailerArlington, Texas + + + + + HAYSHED TRAILERS; ALBERTA CANADA + + + + + Land Rover + + + + + Vauxhall + + + + + Kalyn Co. + + + + + THOROUGHBRED INDUSTRIES, INC; RIDGELAND, SC STARLITE MODEL + + + + + Capri + + + + + Mikrus + + + + + Travois Trailer + + + + + C & W TrailersGolden, MS + + + + + Trailco Mfg. & Sales Co.Div. of Dorsey Trailers--Hummels Wharf,Pennsylvania + + + + + Montgomery Mfg. Co. + + + + + Reliant + + + + + Watson Tractor Co., Inc.Danielsville, Georgia + + + + + Ashton Trailer + + + + + Marmon Harrington + + + + + BuckinghamMfd. by King Homes, Inc., Elkhart,Indiana + + + + + M.V. Agusta + + + + + Royals InternationalMillersburg, Indiana + + + + + Cash Trailers, Inc.Troy, Alabama + + + + + Rent-A-Trailer Corp. + + + + + Leisure Products, Inc. + + + + + Bitter + + + + + Mallard + + + + + EconorollMfd. by Stow Mfg. Co. + + + + + Easy Traveler Trailer + + + + + American BeautyMfd. by American Shelter Systems, Inc. + + + + + Presvac Systems (Burlington) Ltd. + + + + + Mobile Traveler + + + + + Alois Kober (AL-KO) + + + + + Vador + + + + + Devil Travel Trailer + + + + + Garrett-Weldco Industries, Inc. + + + + + Randall's VIP Trailers, IncTempe, AZ; boat and utilitytrailers + + + + + PANZER MOTORCYCLE WORKS, LLC COLORADO + + + + + Horner-Golem Co. + + + + + Seaman Digz-AllMerrill, Iowa + + + + + Transport Trailers, Inc.Cedar Rapids, Iowa + + + + + Plattsburg Mfg. + + + + + Kross KountryLittle Chute, Wisconsin + + + + + Allen Camper Mfg. Co., Inc. + + + + + CrestlaneMfd. by Lonergan Corp. + + + + + Linwood Mfg., Inc. + + + + + Bedell Trailers + + + + + Taylor Mobile HomesDiv. Troy Lumber Company + + + + + Murena + + + + + Foretravel, Inc.Nacogdoches, Texas + + + + + Flair Industries of Illinois, Inc.Macomb, Illinois + + + + + Stampings, Inc. + + + + + Boise Cascade Mobile HOmeBoise, Idaho + + + + + Niceson Boat Trailer + + + + + Budger Mfg. Co. + + + + + HUSKEE LAWN & GARDEN EQUIPMENT + + + + + Randall, Walter + + + + + Pines Trailer Corp.Pine Grove, Pennsylvania + + + + + Country Comfort Trailers + + + + + Bermar Mfg. Corp. + + + + + Coachmen Homes Corp.Subsidiary Coachmen Industries, Inc.,Middlebury, Indiana + + + + + Oneida Coach Mfg.Grand Ledge, Michigan + + + + + Spencer Sports Products + + + + + Auto Homes Industries + + + + + U.S. Electricar Corp. + + + + + Imperial Mobile Homes + + + + + Starcrest Motor Home + + + + + Morgan Trailer Mfg. CoMorgantown, Pennsylvania + + + + + Acme Trailer Mfg. Co. + + + + + Bucyrus-Erie Co. + + + + + Frank Russell Mfg. Co. + + + + + Journey Motor Homes, Inc.Elkhart, Indiana + + + + + Toyota + + + + + Canoga Classic Campers + + + + + JCB Excavators, Inc.Whitemarsh, Maryland + + + + + Salvaco, Inc.Columbus, Ohio + + + + + United Mobile Sales + + + + + IC CORPORATION;FORMERLY AMERICAN TRANSPORTATION CORPORATION + + + + + Fast Load + + + + + Great Dane Trailers, Inc.Savannah, Georgia + + + + + Mobile Holding Corp. + + + + + Camper City Coach Craft + + + + + Trailmaster Tanks, Inc.Ft. Worth, Texas + + + + + American Augers, Inc. + + + + + Osca + + + + + Rustler Horse Trailer + + + + + Pal Mfg. Co., Inc. + + + + + Pines Trailer CorpChicago, Illinios + + + + + Holmes Trailers + + + + + Thimsen Mfg. Co. + + + + + Bod-Eze + + + + + Trail Tramp + + + + + Danuvia + + + + + K Line Trailer + + + + + Zieman + + + + + ENCORE; RIDING LAWNMOWERS + + + + + CAVALLO + + + + + Kan Haul Trailer Sales + + + + + Lull Engineering Co.Subsidiary N. Marshal Seeburg & Sons,Inc. + + + + + Roadcraft Mfg. & Leasing + + + + + Lancer + + + + + Estate Mfg., Inc.Motor homes--Elkhart, Indiana + + + + + Parkway Mfg. Co. + + + + + FloTrailMfd. by Lynch Manufacturing + + + + + Starbuck Trailer + + + + + Butler, C. Trailer Mfg. Co.Greensboro, North Carolina + + + + + Graham + + + + + Tide Craft, Inc. + + + + + Ava Travel Trailer + + + + + Givens Mfg. Co. + + + + + Bunyan, Paul Co. + + + + + SIEMS ENTERPRISES; SHELLEY, IDAHO TRAILERS + + + + + Neckar + + + + + Letourneau, R. G. + + + + + Spartan Aircraft Co. + + + + + Riviera Mfg. Co. + + + + + Pointer-Willamette + + + + + Tru-Trailer Co. + + + + + Duplex Mill & Manufacturing Co. + + + + + Campus Bike + + + + + Windham Mfg. Co., Inc.Mfgs. loaders + + + + + Rockie Mountain Mfg., Inc. + + + + + Oklahoma Trailer, Inc.Mfrs. boat trailers--Kingfisher,Oklahoma + + + + + Pilgrim Intl., Inc. + + + + + B & B Cozy-Home + + + + + RON'S TRAILERS INC.; OREGON, OH + + + + + Angelus Trailer Mfg. Co. + + + + + Grumman-Olsen + + + + + Flintstone IndustriesOcilla, Georgia + + + + + Diamond T + + + + + Mc Kee Roughrider + + + + + Sprite + + + + + Elgin + + + + + Mahoning Homes, Inc. + + + + + SHIJIAZHUANG MFG MOTORCYCLES AND ATV'S + + + + + Lane Horse Trailer + + + + + Sunhome Mfg. + + + + + CommuneMfd. by Community Homes, Inc. + + + + + Bainbridge Motor Home + + + + + Mountain View Campers + + + + + Martin Lowboy Semi Trailer + + + + + Dreamliner Trailer + + + + + Cat + + + + + Ownahome, Inc. + + + + + Hupmobile + + + + + Tag-A-Long Trailers + + + + + Cavalier Homes, Inc. + + + + + Brae Trailers, IncStoughton, WI; piggyback semi-trailers + + + + + Schrader Dump Trailer + + + + + Dynacycle + + + + + American Eagle (also see make Eagle) + + + + + Windward Enterprises + + + + + Precision Fire Apparatus + + + + + Arkansas TravelerMfd. by Rawhide Stock & Horse TrailerMfr., Inc. + + + + + Tex Willett Co. + + + + + Oakland + + + + + Farmhand, Inc. + + + + + Fontaine Truck Equipment Co.Birmingham, Alabama + + + + + Cheney Weeder, Inc. + + + + + Gogomobile + + + + + Mid-Cal Forklift, Inc. + + + + + Chisolm Trailers, Inc.Chickasha, Oklahoma + + + + + Bellew's Perris Balley Campers + + + + + Saab + + + + + Mark V Trailer + + + + + Ballien Mfg. Co. + + + + + Garelli + + + + + TARASPORT TRAILERS, INC.; SWEETWATER, TN + + + + + DOUBLE D DISTRIBUTORS, INC; PINK HILL, NORTH CAROLINA + + + + + French Horse Trailer + + + + + High View, Inc. + + + + + Pittsburgh Forging Co., Farm ToolsDiv. + + + + + FabcoDiv. of Kelsey-Hayes Co. + + + + + Acme Mfg. Co., Inc. + + + + + M-B-W, Inc. + + + + + TRAILERMAN TRAILERS,INC/INLOW CUSTOM TRAILERS; LOUISIANA, MISSOURI + + + + + Tote Gote + + + + + Allied Leisure, Inc. + + + + + Nomad Trailers & Mobile HomesDewey, Oklahoma + + + + + Tourite Mobile Homes Mfg. + + + + + Bristol HomesDiv. Tidwell Ind., Inc., Goshen, Indiana + + + + + Morse Horse Trailer + + + + + Paris + + + + + American Coupler Systems, Inc. + + + + + TotemallMfd. by Birmingham Mfg. Co., Inc. + + + + + Starmaster Camping Trailer + + + + + Panorama Homes, Inc. + + + + + B & M Mfg. Co.South Camdenton, Missouri + + + + + BAJA USA MOPEDS, CYCLES & 3 WHEELERS + + + + + Alforge Metals Corp.Ontario, Canada + + + + + Nash Mfg. + + + + + Aqualand TrailersDiv. Mid-Atlantic Metal Distributors + + + + + Iveco Trucks of North America, Inc.Mfrs. of Magirus Tractors + + + + + Marvin Landplane + + + + + Gemini + + + + + Impala Mobile Homes & Travel Trailers + + + + + BRADCO; DIVISION OF ATTACHMENT TECHNOLOGIES, INC.IOWA + + + + + GMR Enterprises, Inc. + + + + + Tramper Travel Trailer + + + + + Cosmo + + + + + City Welding & Mfg. Co.Aluminum truck bodies & steel chassis + + + + + TVR + + + + + Cody Motorcycle Trailer + + + + + Clough Equipment Co.Seattle, Washington + + + + + Marion Metal Products Co. + + + + + Trail Master Trailers, Inc.Coleman, Oklahoma + + + + + Contrail International + + + + + Malanca + + + + + Wheel Campers Corp. + + + + + Progress + + + + + CREW CHIEF MOTORHOME/HAULER + + + + + Forte Trailer + + + + + Lional Enterprises, Inc. + + + + + Tecnica AutomotrizDel Noroeste SAMexico; trailers + + + + + RC Motor Home + + + + + HORTON TRAILERS + + + + + Montesa (Spain) + + + + + Tracpac Snowmobile Trailer + + + + + Brenner Tank, Inc.Fond du Lac, Wisconsin + + + + + Miller Trailers Inc.Bradenton, Florida + + + + + Lilliston Corp.Albany, Georgia + + + + + Master Liner Mfg. Co. + + + + + Holland Trailers + + + + + SOUTHMAYD EQUIPMENT CORPORATION + + + + + Bartolini Chassis Trailer + + + + + Gerlinger Foundry Machine Works + + + + + C & C DISTRIBUTORS, INC.; WINSLOW, ME + + + + + McKee Farm Technologies, Inc. + + + + + Speedway Trailer Div.Div. Dunphy Boat Corp. + + + + + Tailor Maid Industries + + + + + Scotsman Mfg. Co. + + + + + Vindale Corp. + + + + + Studebaker + + + + + Will Craft Camper Trailer + + + + + Diamond B + + + + + Circle R, Inc. + + + + + Attachment Technologies, Inc. (ATI) + + + + + Dot + + + + + Benson Truck Bodies, Inc.Mineral Wells, West Virginia + + + + + Seat + + + + + Columbia + + + + + Dina Camiones S. A. De C. V. + + + + + Modena + + + + + PEAGUSAS + + + + + Agrolina SAMexicali, Baha, CA; trailers + + + + + Assembled Vehicle (for furtherexplanation see Operating Manual,Part 1, Section 2.) + + + + + HullcoSikeson, Missouri (Sikeston TrailerSales) + + + + + Hewitt-Robins Crushing & VibratingDiv. Litton Systems, Inc.Equipment Div. + + + + + Valiant + + + + + Key Industries, Inc. + + + + + Nsu Prinz + + + + + FairwayMfd. by Holiday Homes, Div. of BeatriceFoods + + + + + Klinger Products + + + + + Thoroughbred Boat Trailer + + + + + Traveleze Industries, Inc. + + + + + Pyramid Mobil Homes + + + + + Lawndale Homes, Inc. + + + + + Brougham Industries, Inc. + + + + + Jimglo Trailers & ProductsPhoenix, AZ; car trailers andutility trailers + + + + + Southern Lifestyle Homes, Inc.Addison, Alabama + + + + + Tuff-N-Lite + + + + + Erickson Corp. + + + + + Shiloh HomesDouble Springs, Alabama + + + + + Crystal Welding Inc. + + + + + Flow Boy, Inc.Norman, Oklahoma + + + + + American Motors (see make Ramblerfor Ramblers manufactured priorto 1966) + + + + + Yamaha Motor Company, Ltd.Cypress, CA + + + + + Oak Coach Co. + + + + + Triple B Mfg. Co., Inc.Mascoutah, Illinois + + + + + LafayetteLowboy trailers + + + + + Philift Equipment Sales Co. + + + + + Elec-Trac + + + + + Alma Trailer Co. + + + + + AAA Trailer SalesMt. Pleasant, TX + + + + + KMN Modern Farm Equipment, Inc. + + + + + Space-Craft Trailers Mfg. + + + + + LA NEW INDUSTRIES, INC; MINNESOTA + + + + + Crest Mobile Homes, Inc. + + + + + Campers, Inc. + + + + + Hamby Co. + + + + + Truck Equipment Service Co.Lincoln, Nebraska + + + + + Rockett TrailersMedley, FL; boat trailers + + + + + Jamboree Motor Home Truck + + + + + KAUFMAN TRAILERS INC. + + + + + CSM Manufacturing Co.Oklahoma City, Oklahoma + + + + + Aly AllianceMfd. by Homette Corp. + + + + + Del RioMfd. by Madrid Homes + + + + + Road Runner + + + + + DM Utility TrailerGoodfield, Illinois + + + + + Mojave + + + + + French Ford + + + + + White Line Mfg. & Dist. Co. + + + + + Dugan Trailer, Inc.Groesbeck, Texas + + + + + JIANSHE MOTORCYCLES & MOTORSCOOTERS, CHINA + + + + + Scotty SportsmanMfd. by Serro Travel Trailer Co. + + + + + Michigan Central Airlines + + + + + Wells Cargo, IncElkhart, IN; commercial trailers + + + + + ParkmasterDiv. American Sterling Enterprises + + + + + Indies House, Inc.Hackleburg, Alabama + + + + + Maurell Trailer + + + + + Can-Car Inc.Tree-farming equipment--Div. Hawker-Siddeley Canada, Ontario, Canada + + + + + Herd Seeder Co., Inc. + + + + + HanoverKingfisher, Oklahoma + + + + + JERR-DAN + + + + + Princess Homes + + + + + New Holland Haybine + + + + + JEHM POWERSPORTS; MOTOR SCOOTERS, MOTORCYCLES, ATVS, ETC. + + + + + Texoma, Inc. + + + + + King-Co + + + + + Fiberfab, Inc. (Minneapolis, MN) + + + + + Ariel (British) + + + + + Honda + + + + + Easy RiderMfd. by Landoll Corp. + + + + + NISSAN DIESEL MOTOR CO. + + + + + J & R MANUFACTURING CO., LLC; TRINITY AL. + + + + + Babetta (mfd. by Jawa, imported byAmerican Jawa, Ltd., Plainview,New York) + + + + + Gardner-Denver Cooper Industries, Inc.Denver, Colorado (formerly Gardener-Denver Co.) + + + + + Racine Construction Tool Div.,Racine Federated, Inc. + + + + + C/P Products Corp. + + + + + Citation Travel Trailer + + + + + Play-Mor Trailers, Inc.Westphalia, Missouri + + + + + Marusho + + + + + REEL TRAILERS + + + + + Hale Horse Trailer + + + + + Job Site Trailer + + + + + Kromag (Subs. of Puch) + + + + + Glen-L TrailersLewiston, Idaho + + + + + Liberty Coach Co. + + + + + Travel Long Inc. + + + + + Sportcoach Corporation of America + + + + + Echelon Motorcycles + + + + + ICL Cargo Trailer + + + + + Fat CatMfd. by R & R Mfg. Co. + + + + + DWS Storeway TrailerCrossville, Tennessee + + + + + Heil Co. + + + + + Gilbern + + + + + DO-MOR Equipment, Inc. + + + + + La Crosse + + + + + Tinker Clubs of America, Inc. + + + + + Globestar Industries, Inc. + + + + + Taube Tool Corp.Mfd. Taube n Taube Trailer,Richmond, Indiana + + + + + CORN PRO TRAILERS + + + + + Minelli + + + + + Cezetta + + + + + VOR ENDURO MOTORCYCLE, ITALY + + + + + Meyer Mfg. Corp. + + + + + EBY, M.H., Inc.Blue Ball, Pennsylvania + + + + + West Coach Mfg. Co. + + + + + Campers Unlimited + + + + + Kami + + + + + Buckeye Mobile Homes, Inc. + + + + + Sport King Campers + + + + + Baillie's Tri-R Welding + + + + + P/D + + + + + Don May EnterprisesRichardson, Texas + + + + + Johnson Welding & Steel SupplyPhilo, Illinois + + + + + Commercial StructuresNappanee, Indiana + + + + + Newham Enterprises + + + + + APRILIA MOTORCYCLES + + + + + QUALITY MFG. CO., INC.; ROME, NEW YORK + + + + + Nardi-Danese + + + + + Ashley + + + + + NuWay Mobile Home Mfg. Co. + + + + + Armadillo Trailers, Inc.Utility Trailer, Deport, Texas + + + + + Williamsen Truck Equipment Corp.Mfr. "Williamsen Dump & Special Trailer"Salt Lake City, Utah + + + + + Rogers Brothers Corp. + + + + + Fertilizer Dealer Supply, Inc.Philo, Illinois + + + + + RemcoMfd. by Rome Engineering & Mfg. Co. + + + + + Unpublished truck mfr.(see Operating Manual, Part 1,Section 2) + + + + + Lancia + + + + + Triumph Machinery Co. + + + + + Yukon Delta + + + + + Lonaire Mfg. Corp. + + + + + W.C. Manufacturing & Specialty Co. + + + + + Marking Mfg. + + + + + Unipower + + + + + Ferrara Fire Apparatus + + + + + Fort Smith Camper Mfg. Co. + + + + + Gast Manufacturing Co. + + + + + Rumi + + + + + C & V Welding and Fabricating + + + + + Tjaarda + + + + + D & D Trailer Inc.Trenton, New Jersey + + + + + Komfort Travel Trailer + + + + + Coleman Camping Trailers + + + + + Ken-Bar + + + + + Lyman Metal Products Corp. + + + + + Prarie Schooner, Inc.Elkhart, Indiana + + + + + Chubbs, Inc. + + + + + Layton Homes Corp. + + + + + Magline, Inc.Pinconning, Michigan + + + + + Rolls-Royce + + + + + Ranchette Travel Trailer + + + + + Herrli Industries, Inc. + + + + + Biltmore Mobile Homes + + + + + Biewer Industries + + + + + Drott Manufacturing Co.Div. J. I. Case Co. + + + + + ABC (Aluminum Body Corp.) + + + + + Leesburg Div.Div. of Divco-Wayne Industries + + + + + CIRCLE M TRAILERS + + + + + TOPLINE MANUFACTURING, CO., INC.; TREMONT, MISSISSIPPI + + + + + DELOUPE, INC.; QUEBEC, CANADA + + + + + Snowbear, Ltd. + + + + + Erectors & Fabricators, Inc.Tonganoxie, Kansas + + + + + Jantz Mfg., Inc. + + + + + Viva Motor Home + + + + + Brock Star Trailer + + + + + EXCEL EZLOAD TRAILERS, LLC; AMARILLO,TX + + + + + Sol Cat Boat Trailer + + + + + Ferree Trailer Corp.Climax, North Carolina + + + + + Gold Star Mobile Homes, Inc. + + + + + Klimek Welding and ManufacturingMaple Lake, MN; manufactures trailers. + + + + + MOND INDUSTRIES, INC.MISSISSAUGA, ONTARIO, CANADA; PURCHASED BY TRAILMOBILE IN 1999 TRAILEMOBILE IN + + + + + Stow and GoMfd. by TRV Corp. + + + + + Motor Homes of America, Inc. + + + + + Rhino Trailer Mfg. + + + + + RFC Mfg., Inc. + + + + + Badger-Northland, Inc.Subsidiary Massey-Ferguson, Inc. + + + + + Bomag Trailer + + + + + Happy Wanderer Industry, Inc. + + + + + MUSTANG; CONSTRUCTION EQUIPMENT ETC. + + + + + TimberwolfElkhart, Indiana + + + + + Callahan Engineering Co. + + + + + Siefmund Werner + + + + + Erin Truck and Body EquipmentDolton, Illinois + + + + + Dupont Service Center, Inc. + + + + + Charlamor Corp. + + + + + Conwed Trailer + + + + + DUN-RITE MANUFACTURING LLC; DENVER, CO + + + + + ROLLINGSTAR, MFG., INC. ; BARNEVELD, NY + + + + + Hahn, Inc.Evansville, Indiana + + + + + Lac St-Jean Motoneige, Ltd.See Montagnais + + + + + Donhal, Inc. + + + + + PERFECTION ARCHITECTURAL SYSTEMS, INC.; BOYNTON BEACH, FL + + + + + Witzco Trailers, Inc. + + + + + Aristocrat Trailer SalesDiv. I. B. Perch Company + + + + + Pendlay + + + + + K-Bar Industries, IncSavage, MN; utility trailers + + + + + MOBILE CONCEPTS BY SCOTTY; MT. PLEASANT, PA + + + + + Bulk Resources, Inc., doing business as Bulk Mfg. Co. + + + + + Norjack, Incl + + + + + Murphy Engineering Co., Inc. + + + + + X-CEL TRAILERS, INC.; FORNEY, TX + + + + + C & B CUSTOM MODULAR, INC.; BRISTOL, TENNESSEE + + + + + International Industries, Inc. + + + + + Briggs Manufacturing, Inc. + + + + + Seal MateDiv. of Tateco, Inc. + + + + + Craftsman Ind., Inc. + + + + + Allen, R. L. Company, Inc.Battle Creek, Michigan + + + + + Holland Transplanter Co. + + + + + Panther Westwinds, Ltd. + + + + + General + + + + + Mallard Coach Corp. + + + + + BOURGET'S BIKE WORKS + + + + + DeTomaso + + + + + Woodline Custom Camper + + + + + Rink Mfg. Co. + + + + + Unicar + + + + + White Star Trailer + + + + + El Dorado Mfg., Ltd. + + + + + AMERICAN IRONHORSE MOTORCYCLES FT. WORTH, TEXAS + + + + + London Taxi + + + + + E Z Tow Manufacturing Co.Madison, Connecticut + + + + + A.Claeys Flandria (Belgium,imported by Saint Tropez) + + + + + Lechmere Construction + + + + + Caper Cycle + + + + + Comet Riding Mower + + + + + ONYX FLYER + + + + + ELKHART, INDIANA + + + + + Tacoma Trailer + + + + + Alexander-Reynolds Corp. + + + + + Eagle Equipment + + + + + Redi-Go Traveler + + + + + Milco Tank & Boat Co. + + + + + WESTERN RECREATIONAL VEHICLES, INC.; YAKIMA, WA + + + + + Santa Fe Springs Div.Div. of Divco-Wayne Industries + + + + + Robin Hood Travel Trailers + + + + + Van Guard Trailer, Ltd. + + + + + TRINITY TRAILER MEG., INC. BOISE, ID + + + + + Armor Mobile Homes Mfg. Co.Subsidiary Magnolia Mobile Home + + + + + King Horse Trailer + + + + + Raynell Campers + + + + + Ponderosa Industries + + + + + North River HomesHamilton, Alabama + + + + + Pure Steel Custom Cycles, Inc. + + + + + Werts BiltMfd. by Werts Welding Service + + + + + Kartote + + + + + Travel Equipment Corp. + + + + + Security Industries + + + + + Clay Camper Co. + + + + + Hyde Corp.Hurst, Texas + + + + + Tule Trooper + + + + + Double E Trailer Mfg.Commanche, Oklahoma + + + + + Kovatch + + + + + U-Save TrailersPomona, California + + + + + American Trencher, Inc. + + + + + Berkley + + + + + Midwest Industries, Inc.Ida Grove, Iowa + + + + + Zastavia (ZCZ-Yugoslavia) + + + + + Establishment + + + + + PROTAINER, INC; PROTRAILER (TRADE NAME) ALEXANDRIA, MN + + + + + Mobile Facility Engineering Co. + + + + + SHERCO MOTORCYCLE + + + + + PALM AIRE, INC.; ELKHART, IN + + + + + Zeligson + + + + + INNO VAN; MORAINE, OHIO/MERC HOLDING CO. + + + + + Haulette Trailer + + + + + Dively Mfg. Co.Claysburg, Pennsylvania + + + + + Cardinal Industries + + + + + Rembrant Mobile Home + + + + + Boyd, E.G., Trailer Co. + + + + + Circle V Horse Trailer + + + + + Kory Farm Equipment Div. + + + + + Yard-Man Co. + + + + + Bantam + + + + + Campbell-Hausfeld Div., Scott &Fetzer Co. + + + + + Allegro Motor Home + + + + + Diamond SWalters, Oklahoma + + + + + Green Mfg., Inc. + + + + + Merkur + + + + + Sabine Mfg., Inc. + + + + + Blake TrailersStar, Idaho + + + + + M.J.M. Trailer Mfg., Inc. + + + + + Kismet Mfg. Co. + + + + + Tilton-Hilton + + + + + Colorado Mobile Homes + + + + + Gore Trailer + + + + + Lark Trailer + + + + + Bombardier Ltd. + + + + + Viking + + + + + Unlisted Snowmobile Manufacturer + + + + + Leon Manufacturing Co., Ltd.,(Canada) + + + + + Gannon Manufacturing Co., Inc. + + + + + Discover 25 Motor Home + + + + + BEAVER CREK ENT. ; MOKENA, IL + + + + + McCain Industries + + + + + Seacamper Boat Trailer + + + + + DIAMOND C MT. PLEASANT,TX, CAR HAULER + + + + + Bellview Camper + + + + + Kon Kwest Mfg. + + + + + Terex Div.Euclid & Terex products + + + + + Lancer Mobile Homes + + + + + Centreville Trailer + + + + + Kempter Trailer + + + + + Star Tank & Trailer Mfg. Co. + + + + + Prairie Schooner + + + + + Wil-Ro, Inc.Gallatin, Tennessee + + + + + NICHOLS CUSTOM WELDING; HOME OF NICHOLS TRAILERS; FARMINGTON, ME + + + + + Wagon Master Trailer + + + + + International Jet Boats De Mexico S.A.De C. V.Mexico; trailers + + + + + Chance Coach IncWitchita, KS, city transit buses + + + + + All Purpose Trailer Co., Inc.Jefferson, South Dakota + + + + + American Body & Trailer Co. + + + + + Solo Electra + + + + + Todco + + + + + GiantManufactured by Caldwell & Sons + + + + + RC COMPONENTS + + + + + Stoddard Mfg. Co.Waterloo, Iowa + + + + + Four Winds + + + + + EPI Erwin Precision Inc. & EPI Custom Cycles + + + + + DIAMOND TRAILERS, INC. SHANDON,OH + + + + + T & M MANUFACTURING, INC.; PRINCETON, ONTARIO CANADA + + + + + Page Engineering Co. + + + + + Iowa Manufacturing Co.Cedar Rapids, Iowa + + + + + Gonard Enterprises, Inc. + + + + + Breeze Motor Home + + + + + Logan Coach, Inc.Logan, Utah + + + + + Lakeland Camper & Mfg.Drayton Plains, Michigan + + + + + SAM PATTON INDUSTRIES + + + + + Maginniss Vibrator Equip Co. + + + + + Bella Casa Co. + + + + + RV Industries, Inc. + + + + + Marathon Le Tourneau Co. + + + + + Equipment Pro or Milron Co., Inc. + + + + + Qianjiang Motorcycle Group Corp. + + + + + Red Dale Coach Co. + + + + + Craftsman + + + + + Jacobsen Mobile Homes + + + + + CONFEDERATE MOTOR WORKS, INC. + + + + + Comet Corp.Spokane, Washington + + + + + ELK AUTOMOTIVE; ELKHART, IN + + + + + Perma Tent Camper + + + + + VENTURI PARIS S. A. + + + + + Subaru + + + + + Aristocrat Motor Home + + + + + Idle-Time Cabover Camper Trailer + + + + + MILLENIUM TRAILERS, INC.; ADDISON, AL + + + + + Nash + + + + + Turner + + + + + EcsaMexico; trailers + + + + + Scout Motor Home + + + + + BULK MANUFACTURING COMPANY; PLANT CITY, FLORIDA + + + + + B & Z Electric Car Co. + + + + + Helm Mfg. Co. + + + + + Pleasure Homes Mfg. + + + + + Canadian Electric Vehicles, Ltd. + + + + + BaleMuvr + + + + + Aragon Distributing Co., Inc. + + + + + Fiat-Allis Construction Machinery, Inc. + + + + + Farm King, Ltd., (Canada) + + + + + Hustler-Rustler + + + + + C & S + + + + + Tartan Corp.Div. American Duralite Corporation + + + + + Classic Trailer Mfg. + + + + + Reliable Tank Inc.Rhone, Texas + + + + + Galion Manufacturing Div.Div. Dresser Industries, Inc. + + + + + CHINA QINGQI GROUP, INC; MOTORCYCLES, MOPEDS, SCOOTERS, ETC + + + + + Sampson + + + + + Marine Venture Enterprisers, Inc.Baltimore, Maryland + + + + + Ana-Log + + + + + Challenger Trailer + + + + + Alta + + + + + Holiday Industries, Inc. + + + + + Ridge Runner Industries, Inc.Fairmount, West Virginia + + + + + John A. McKay + + + + + Van Veen + + + + + Larado Mobile Homes + + + + + Mesa III Travel Trailer + + + + + Chicago Pneumatic Tool Co. + + + + + Warhawk Mfg. Co. + + + + + Altec IndustriesIndianapolis, Indiana + + + + + SPECTRUM STEEL, HYRUM, UTAH + + + + + Mitts-Merrill, Inc. + + + + + D & A Vehicles, Inc. + + + + + Playcat Industries, Inc.Polar BearSee Raybon Manufacturing CompanyPolar Bear/Whip ItSee Raybon Manuf + + + + + Austin + + + + + Douglas Homes, Inc. + + + + + Snowton Trailer + + + + + Seagull + + + + + HERITAGE CUSTOM TRAILERS; BENTON,ILLINOIS + + + + + Moto Guzzi (Italy) + + + + + Ace Traveler Corp. + + + + + Extreme Custom Trailers + + + + + Magic Tilt Trailer Mfg. Co., Inc.Boat trailers--Clearwater, Florida + + + + + UNITED EXPRESS LINE,INC; BRISTOL INDIANA + + + + + Selby Mfg. Co.Nicollet, Minnesota + + + + + King Trailer Co., Inc. + + + + + Wood/Chuck Chipper Corp.Mfrs. brushchippers--Shelby, NorthCarolina + + + + + COR-TECH MFG., INC., LUVERNE, MN + + + + + Nallej of Florida + + + + + Roll-A-Long & Sterling Coach Co. + + + + + Invader Travel Trailer + + + + + Tora (Imported by Rockford) + + + + + Crofton Cub + + + + + Lilac + + + + + Gilson + + + + + Viking Snowmobiles, Inc.Twin Valley, MN + + + + + Lislet Foundries, Ltd. + + + + + Eagle International, Inc.Mfrs. buses--Brownsville, Texas + + + + + Sprinter + + + + + Aerocar + + + + + Babcock's Mobile Home Mfg. Co. + + + + + SUN INTERNATIONAL RACING CORPORATION; CALIFORNIA + + + + + Remolques Tanques Y Equipos S.A. DE C.V. + + + + + Horex + + + + + SAUBER MANUFACTURING COMPANY; VIRGIL, IL + + + + + Easy Loader Trailer + + + + + Moretti + + + + + Graham-Paige + + + + + Raygo, Inc.Minneapolis, Minnesota + + + + + Hicks + + + + + Parkwood Homes, Inc. + + + + + Frye + + + + + Marvin A. Spears Co. + + + + + Little Prospector Motor Home + + + + + L & G Trailer + + + + + American Clipper Corp.Morgan Hill, California + + + + + Valley Foundry & Machine Works + + + + + Fost Joe Dog + + + + + Radamacher Trailer + + + + + Cascade Coach Co. + + + + + Spector Manufacturing, Inc. + + + + + Wy Frame Corp.Elkhart, Indiana + + + + + Bugatti + + + + + DovekieMfd. by Edey & Duff + + + + + Robert Horse Trailer + + + + + Star Trans + + + + + Pike Trailer CoSouth Gate, California + + + + + Panther + + + + + Batavia Trailers, Inc. + + + + + Chateau Recreational Vehicle Div.Christiana, Pennsylvania + + + + + Stepper Trailer + + + + + Ruttman + + + + + Streamline Trailer Co. + + + + + Oldsmobile + + + + + Cross Hill Mobile Homes + + + + + Tri-Pak Systems Co.Louisville, Kentucky + + + + + Dynamics Corp. of America + + + + + Tow Low + + + + + Transmobile Trailer + + + + + MARINE GROUP LLC; MURFREESBORO, TN (PRO-CRAFT) + + + + + Inland Equipment Corp.St. Charles, Illinois + + + + + Kayot, Inc. + + + + + Bon-Aire Homes, Inc. + + + + + Jim's Trailer ShopPortland, Oregon + + + + + Kurtis Kraft + + + + + Blue Ribbon Coach Co. + + + + + CurtisDiv. Globemaster Mobile Homes + + + + + HI-WAY STAR, INC; ODESSA, FL + + + + + Mack Trailer Mfg. Co., Inc.Detroit, Michigan + + + + + Texas Bragg EnterprisesMt. Pleasant, TX; utility trailers + + + + + Chatham Enterprises Custom Mfg. & Sales + + + + + Kallio Co.Fremont, Nebraska + + + + + LAND PRIDE FARM & GARDENING EQUIPMENT; MOWERS, ETC. + + + + + TIMBERLAND RV COMPANY; PERU, IN + + + + + Intermeccanica + + + + + Victor Mobile HomesDiv. DeRose Industries + + + + + Davenco, Inc.Roscoe, Illinois + + + + + Ariens Co. + + + + + Fawn Corp. + + + + + ULTIMATE TRAILERS; LAKEVIEW TERRACE, CA + + + + + Diamond-BiltMfd. by Diamond Steel Co., Inc. + + + + + Hylander Utility Trailer + + + + + Waldon, Inc. + + + + + Care-Free Camper Mfg. Co. + + + + + Motoroam Industries, Inc.Galva, Illinois + + + + + AlanMfd. by Giles Industries + + + + + Legendary Luxury Coach, LLC + + + + + Deutz-Allis Corporation + + + + + Tuff Thom Trailers, Inc.Brunswick, Georgia + + + + + Logic Motor Co. + + + + + Shipbuilt Van Trailer + + + + + Blazer + + + + + Super Two + + + + + Winder Liberator Camper + + + + + Geering Industries, Inc. + + + + + Riviera + + + + + Binkley Co., The + + + + + TC Industries, Inc.Crystal Lake, Illinois + + + + + Electra Vacation Home + + + + + Beach-Craft Motor Homes Corp.Elkhart, Indiana + + + + + Smartlee + + + + + COUNTRY BLACKSMITH LLC + + + + + Ski Kart + + + + + Ryan Mfg. + + + + + Fellwon Trailer + + + + + YLN (Yue Loong Motor Co.) + + + + + Trailers Y Casetas Bonanza S. A.Mexico; trailers + + + + + Tourhome Camper Trailer + + + + + Boxer Trailer + + + + + IPSCO-Lambton Steel + + + + + Lake & Shore Camper + + + + + Evinrude Motors + + + + + Trans-Trail Trailer + + + + + Supreme Industries, Inc.Louisville, Tennessee + + + + + Mobile InternationalTulsa, Oklahoma + + + + + Pennco Industries, Inc.Subsidiary of DEC International, Inc.--Warren, Pennsylvania + + + + + M & W Gear Co., Inc. + + + + + Ramsey Trailers + + + + + Mo Trailer Corp.Goshen, Indiana + + + + + Mobile Engineering Co. + + + + + Delmar Mfg. Co., Inc. + + + + + L & E Enterprises + + + + + Welch Mfg. & Engineering Co. + + + + + Wacker Corp.Milwaukee, Wisconsin + + + + + Tracker Marine, Inc.Nixa, Missouri + + + + + Yetter Mfg. Co. + + + + + Raybon Manufacturing CompanyWallingford, CT + + + + + Bulk Equipment Mfr. Inc.Bulkiner Feed Trailer + + + + + B.M. Clark Co., Inc. + + + + + Northwest Custom TrailerRochester, Washington + + + + + Detroit Trailer Co.Detroit, Michigan + + + + + MANCO PRODUCTS, INC + + + + + Paiute Trailers + + + + + Dusgo Trailer + + + + + Asbury Industries, Inc. + + + + + Buck Dragster Flatbed + + + + + VENTO MOTORCYCLES + + + + + Forage King Industries Inc. + + + + + George White & Sons Co., Ltd.,(Canada) + + + + + Hire Dump Trailer + + + + + Goebel Trailer Co. + + + + + Sutphen Corp.Amlin, Ohio + + + + + Avia + + + + + Holmes Wrecker + + + + + T.E.S. (Truck Equipment & Sales Co.) + + + + + Holman + + + + + Gar-Bro Manufacturing Co. + + + + + Boardman Co. + + + + + Sabre JetSee Sno*Jet, Inc. + + + + + BIBB WELDING & TRAILERS, LLC; MACON, GEORGIA + + + + + VERTEMATI MOTORCYCLES + + + + + HADDOX QUALITY TRAILERS; OKLAHOMA + + + + + Mirage Motorhomes, Inc. + + + + + Sera + + + + + Lil' Cat, Inc.Elkhart, Indiana + + + + + Devine's Machine & Design, Inc.Grantville, Pennsylvania + + + + + Hercules + + + + + F.A.B. Mfg. Co. + + + + + Buccaneer Mobile HomesDiv. Brigadier Industries, Inc. + + + + + Joe's Custom Boat Trailer + + + + + Atlas + + + + + Saturn HomesDiv. Harrelson Corporation + + + + + Monarch (Sweden) + + + + + Orcon Incustries + + + + + MODERN, INC. TEXAS + + + + + Charger + + + + + Stewart & Stevenson + + + + + Lagonda + + + + + R/S Truck Body Co., Inc.Allen, Kentucky + + + + + Selox Mfg., Ltd.Toronto, Ontario, Canada + + + + + Danny Boy Trailer + + + + + Continental Homes, Inc. + + + + + Show-Me Trailers, Inc.Smithton, Missouri + + + + + Lem + + + + + Son-Dyke Trailer Co.Boat Trailers--Calico Rock, Arakansas + + + + + Fleet-Aire Camper Co. + + + + + Rogue River Trailer Mfg. Co. + + + + + MG + + + + + Cozy CraftMfd. by Travelcraft, Inc. + + + + + RUSH & SON, INC; LENOIR CITY, TENNESSEE + + + + + Spano Crane Sales & Service Corp. + + + + + Viscount Trailers + + + + + Johns Corp. + + + + + AljoDiv. Skyline Homes + + + + + VAN HOOL BUSES & MOTOR COACHES + + + + + PCM Div.Div. of Koehring Co. + + + + + Midas International Corp. + + + + + BeeBee Sales Co. + + + + + LONG CHANG; USA ATVS + + + + + Hudson + + + + + Insley Four Wheel Tag Trailer + + + + + Heilite Trailers, Inc. + + + + + Alma + + + + + Mercedes-Benz + + + + + Corvette Travel Trailer + + + + + Versatile Manufacturing Co.Div. Versatile Cornat Corp., KansasCity, Missouri + + + + + Northern Hydrolics, Inc. + + + + + Ezzy Load Boat Trailer + + + + + Diplomat Motor Home + + + + + Dean Industries, Inc. + + + + + Miller + + + + + Bartlett Trailer Corp.Chicago, Illinois--Predecessor toBartlett Lifting Devices + + + + + Wa-Nee Homes Corp. + + + + + Shamrock CampersDiv. Classic Mfg. Co. + + + + + INTERMOUNTAIN WHOLESALE, INC. ;COMMERCE CITY, CO + + + + + Transmission (Generic Code--for useonly when manufacturer is notlisted) + + + + + Kassborth + + + + + Delahaye + + + + + Major Way + + + + + Hillsboro Industries, Inc. + + + + + Rotocraft Boat TrailerGrants Pass, Oregon + + + + + Catalina Motor Home + + + + + Brown Industries + + + + + Francis Travel Trailer + + + + + MacDonald Camper Kit + + + + + Mono + + + + + Dominion Road Machinery Co., Ltd. + + + + + Boyer Industries + + + + + Trek, Inc.Elkhart, Indiana + + + + + Dorado Mobile HomesMfd. by Tidwell Industries, Inc. + + + + + A & J Industries Custom Fiberglassing + + + + + Hadley Trailer Mfg. Co.North Carolina + + + + + Bristol + + + + + Bristol Mfg. Co. + + + + + Bunton CompanyLouisville, Kentucky + + + + + Yamoto + + + + + Mount Vernon Mobile HomeDiv. Concord Mobile Homes + + + + + Colonial Mobile Homes Mfg. + + + + + Merit Tank & BodyBerkeley, California + + + + + STEPHENS PNEUMATICS, INC.; HASLET, TEXAS + + + + + EconomyGarden tractor--mfd. by EngineeringProducts Co., Inc. + + + + + Integrity Custom Trailers or R & D Fabrication + + + + + W.W. TRAILER MANUFACTURERS, INC; OKLAHOMA + + + + + Victory Implement Co. + + + + + Sangyong + + + + + Executive Industries, Inc. + + + + + Moto Rumi + + + + + Vanette + + + + + Airstream Travel TrailersJackson Center, Ohio + + + + + LEITCHFIELD TRUCK EQUIPMENT, INC,; LEITCHFIELD, KY + + + + + Sycamore Mobile Homes + + + + + E. D. Etnyre & CompanyOregon, Illinois + + + + + Interstate Travel Trailer + + + + + Reed Enterprises, Inc. + + + + + ENVASES DE ACERO, S.A. DE C.V. MEXICO; TRAILER + + + + + DixieFruehauf Corp. Plant + + + + + SCION; NEW LINE/MAKE OF VEHICLE UNDER THE TOYOTA BRAND ______MODELS INCLUDE THE XA & AB + + + + + Angel + + + + + MAUER MANUFACTURER, INC.; IOWA, TRAILERS + + + + + High Chaparral, Inc.Ft. Worth, Texas + + + + + New Comer Industries, Inc.Goshen, Indiana + + + + + Peek + + + + + Jaguar + + + + + Nabors Trailers, Inc.Mansfield, Louisiana + + + + + Vector Aeromotive Corporation + + + + + Shoops Horse Trailer + + + + + Ozark TrailwayMfd. by Tri-Lakes Mfg. Co., Inc. + + + + + LEGEND TRAILERS, INC + + + + + Sun State Mobile Homes + + + + + Rolling Homes, Ltd. + + + + + Bocar + + + + + Bonnieville Mfg. Co. + + + + + SNOW Co. + + + + + Saracen + + + + + Hewitt-Lucas Body Co. + + + + + Jet Stream Camping Trailer + + + + + American Transportation Corp. + + + + + Joe's Welding ServiceSalem, Illinois + + + + + WADE SERVICES, INC.; ELLISVILLE, MS + + + + + Packard + + + + + Red Ewald, Inc. + + + + + Utah King Motor Home + + + + + Highway Manufacturing Co.Div. of Motac, Inc. + + + + + Conroy IndustriesNew Braunfels, Texas + + + + + Foot Hill Horse Trailer + + + + + Field & StreamManufacturer Vacation Industries + + + + + PACE AMERICAN OF UTAH, INC.; HURRICAN UTAH + + + + + Ensenada Mobile Homes + + + + + Special Endeavors, Inc.Omaha, Nebraska + + + + + Herter Snowmobile Trailer + + + + + Chamberlin TrailersHampton, Iowa + + + + + Inline Southwest Horse Trailer + + + + + Auranthetic Charger + + + + + Arnold Mfg. Co. + + + + + Haul-It-All-Flatbed Trailer + + + + + Aqua Cruiser, Inc.Columbia, Tennessee + + + + + Danco Trailers, Inc. + + + + + ECONOLINE TRAILERS, INC. ; DOUBLE SPRINGS, ALABAMA + + + + + The Salem Tool Co. + + + + + Modernistic Industries + + + + + Diamond ReoDiscontinued production in 1974 + + + + + Kosch Co. + + + + + Owens Mfg. Co. + + + + + Foland Enterprises + + + + + Topper Mobile Homes, Inc. + + + + + New Heights, LLC + + + + + Trophy Travel Trailer + + + + + Harvard (model of Negrini) + + + + + Hairgrove Construction Equipment + + + + + RAPSURE, INC; NAPPANEE, IN UTILITY & OTHER TYPE TRAILERS + + + + + Aeroil Products Co., Inc.Bensenville, Illinois + + + + + Getman Brothers Mfg. Co.Marion, Ohio + + + + + Muncy Homes, Inc.Muncy, Pennsylvania + + + + + Callen Camper Co. + + + + + ChanceyMfd. by Trail-O-Matic + + + + + Big Bubba's + + + + + Sundial Motor Home + + + + + Prowler Industries + + + + + QE Mfg. Co., Inc.New Berlin, Pennsylvania + + + + + Doepker Industries Ltd. + + + + + Recreative Industries, Inc. + + + + + Lanes Pacesetter Trailer + + + + + CAM SUPERLINE, INC.; GREENCASTLE,PA + + + + + AUTOCAR & AUTOCAR LLC CARS & TRUCKS + + + + + Dellow + + + + + Twister + + + + + Valley Campers + + + + + Brillion Iron Works Div., BeatriceFoods Co. + + + + + Hartline Travel Trailers + + + + + G. S. Industries, Inc. + + + + + Heinkel + + + + + G.T.Wolfe Mobile Homes + + + + + Erie-Go Mfg., Inc. + + + + + Brooklyn Trailer + + + + + Tennessee Trailer + + + + + Speed Bird + + + + + Trav Otel Industries + + + + + Lewis-Shepard + + + + + Bame Three Axle Trailer + + + + + SWM + + + + + Jackson Trailer + + + + + Hunter Structures Trailer + + + + + Richards & Clark Mfg. Co. + + + + + Alberta Trailer Co., Ltd. + + + + + Gibraltar Coach Mfg. Co. + + + + + TRAILER WHEEL & FRAME COMPANY; TEXAS + + + + + Triumph Sales & Service + + + + + Bushog Div.Subsidary of Allied Products Corp.Selma, Alabama + + + + + Lanheim, Inc. + + + + + Mitchell Industrial Tire Co., Inc.Chattanooga, Tennessee + + + + + Scorpion + + + + + Melges Boat Works, Inc.Zenda, Wisconsin + + + + + Capitol Trailer Coach Co. + + + + + Gladding Travel Trailer + + + + + Flaherty Manufacturing Co.Div. of Koehring Co. + + + + + Custom Frames, Inc.Normandy, Tennessee + + + + + Balderson, Inc. + + + + + Felps Mfg. Corp.Johnson City, Texas + + + + + Honeywell Motor Prods., Honeywell,Inc. + + + + + Streamline Motor Home + + + + + Corner Utility Trailer + + + + + Motorette + + + + + SCAT TRAK; CONSTRUCTION EQUIPMENT + + + + + Winnebago Industries, Inc. + + + + + B-Line Farm EQuip.Mfrs. Cartow & Snowmobile trailersBristol, Virginia + + + + + Downs Clark Trailer + + + + + AriensSee Skiroule Ltd + + + + + Trotwood Trailer + + + + + Dalesman (United Kingdom) + + + + + Warwick + + + + + Zongshen Motorcycle Co., Ltd., or Cixi Zongshen Motorcycle Co., Ltd. + + + + + Mark Twain Mfg. Co. + + + + + Hurst Trailers, Inc.Washburn, Tennessee + + + + + ROBB KAUFMAN, INC.; LEXINGTON, NORTH CAROLINA + + + + + Lombard + + + + + GalwayMfd. by Shamrock Homes + + + + + Co Corp. + + + + + Peterbilt Motors Co.Div. of Paccar, Inc. + + + + + Kelly-Creswall Co., Inc.Xenia, Ohio + + + + + Traveler Mfg. Inc.Concordia, Missouri + + + + + ELK RIVER MACHINE CO.; ELK RIVER, MN + + + + + Burkhart Trailer Mfg. Co. + + + + + Thor California, Inc. + + + + + Space Age Campers + + + + + Glover Plastic Sprayer + + + + + Rockford Welding & Machine + + + + + Aluma Craft + + + + + Ameri-Camp + + + + + Arlberg + + + + + Hayes Log Truck + + + + + MANN MADE PRODUCTS INC. TRAILMANN TRAILERS (TRADE NAME) + + + + + Superior Ideal, Inc.Oskaloosa, Iowa + + + + + Montgomery, Bill + + + + + Coynco Products + + + + + EstatePower mowers--mfd. by Jacobsen Manu-facturing Co. + + + + + Gem Industries, Inc.Grand Rapids, Michigan + + + + + Balzer Manufacturing Corp. + + + + + Reeves Trailer + + + + + MercurySee Mercury Marine + + + + + Boerne Trailer Mfg. or Inter-National Crane & Trailer, Inc. + + + + + Koehn Mfg., Inc. + + + + + TWINKLE; HEARSES + + + + + Bear Trailer Mfg., Inc.Lebanon, Missouri + + + + + Wilson Trailer Co., Inc.Grain, livestock trailers--Sioux City,Iowa + + + + + PEGASUS VANS & TRAILERS, INC SANDUSKY, OH + + + + + Darf Corp. + + + + + Bee Trailers, Inc. + + + + + Tri-Star Corp. + + + + + Custom Homes, Inc. + + + + + Marquez Mfg., Ltd.Sunnyside, Washington + + + + + Southeastern + + + + + Husqvarna + + + + + MI-JACK PRODUCTS; HAZEL CREST, IL + + + + + CARGO KING, LLC; WHITE PEGEON, MICHIGAN + + + + + Reynolds Mfg. Co. + + + + + U.S. Suzuki Motor Corp., Inc.Santa Fe Springs, CA + + + + + Trail-Or-Floats + + + + + Huntington Distributors + + + + + Wheel Horse Products, Inc.Subsidiary American Motors Corp., SouthBend, Indiana + + + + + Peninsula Camper Mfg. + + + + + Central Industries, Inc. + + + + + Spirit Eagle + + + + + DeGeest Mfg. Co.Sioux Falls, South Dakota + + + + + Bock Products, Inc.Elkhart, Indiana + + + + + Grycner + + + + + Cook Semi Trailer + + + + + Fargo + + + + + Taizhou Hisource Intl. Trade Co., Ltd. + + + + + FOREST RIVER, INC.; GOSHEN, INDIANA TRAILERS + + + + + Lea-Francis + + + + + York Forklift + + + + + LONE WOLFE + + + + + Double Horse Trailer + + + + + Veritas + + + + + Star Machine Shop Co. Ltd. + + + + + Nichols Mfg. Co., Inc. + + + + + McQuerry Tan Trailer + + + + + Califfo + + + + + De Rose Industries Inc.Indianapolis, Indiana + + + + + Sterline Flatbed Trailer + + + + + Broce Manufacturing Co. + + + + + Liquid & Bulk Tank Div.Div. of Fruehauf Corp.--Omaha, Nebraska + + + + + Longmark Mobile Homes + + + + + E-One + + + + + KARD CO, RENSSELAER, INDIANA + + + + + Evans Mfg. Co., Inc., JohnSumter, South Carolina + + + + + Matlock Trailer Corp.Nashville, Tennessee + + + + + Encore Motorcycle Co., USA + + + + + Kubota Tractor Corp.Compton, California + + + + + Trabant + + + + + Reliance Trailer Mfg.Div. Redwood Reliance Sales Co.,Cotati, California + + + + + Hiawatha + + + + + Diamond Mobile Home Mfg. + + + + + Majestic Rides Mfg., Inc.New Waterford, Ohio + + + + + VagabondDiv. Guerdon Industries + + + + + Walker + + + + + MIGHTY MOVER TRAILERS, INC; CALIFORNIA + + + + + Excalibur + + + + + Midwest Mobile Homes & Trailer Mfg. Co. + + + + + Lorain Div.Div. of Koehring Co. + + + + + Omaha Standard Flatbed Trailer + + + + + Wanamaker Trailer + + + + + Orange County Choppers + + + + + Prime Mover + + + + + Super Vacuuming Mfg. Co., Inc. + + + + + ChaparralSee Chaparral Industries, Inc. + + + + + HUSABERG MOTORCYCLES, SWEDEN + + + + + Emmco Trailer + + + + + De-Lar, Inc. + + + + + Economy-Wisconsin + + + + + Berkeley Pump Co. + + + + + Baron Homes, Inc. (old code CGC)Formerly C&G Corp., Elhart, Indiana + + + + + Mayflower Trailers or Homes + + + + + Rowse Hydraulic Rake Co. + + + + + Minneapolis-Moline (MOTEC), Inc. + + + + + X-L SPECIALIZED TRAILERS; OELWIN, IA.; SD,DDE,MFG,HDG,LSD TRAILERS + + + + + Cisitalia + + + + + Calkins Trailer + + + + + Transport Systems, Inc.Denton, Texas + + + + + Foremost Mobile Home Mfg. + + + + + W-W TrailersStock Trailers + + + + + Week-N-Der Pickup Camper + + + + + Thiermann Utility Equipment Div.Milwaukee, Wisconsin + + + + + AZTX or Az-Tex Trailers + + + + + Jerry James TrailersSikeston, MO; utility trailers + + + + + Marlette Homes, Inc.Marlette, Michigan (formerly MarletteCoach Co.) + + + + + Sprout, Waldron & Co., Inc. + + + + + Five Star Engineering, Inc. + + + + + FHL + + + + + BOYDSTUN METAL WORKS, INC.PORTLAND, OREGON + + + + + Royal Enfield + + + + + Atlas DivisionDiv. Lonergan Corporation + + + + + Vintage Homes + + + + + Alair Coach Corp. + + + + + Sun Trailer & UtilitiesMid-West City, Oklahoma + + + + + Ace Trailer of America + + + + + M & R Enterprises, Inc., or Honeysuckle Enterprises, Inc. + + + + + Heltzel Co. + + + + + Thor Power Tool Co. + + + + + Ripco, Inc. + + + + + My-Way Corp.Longwood, Florida + + + + + Hopkins Mfg. Corp. + + + + + Moskovitch + + + + + Glas + + + + + AAPEX TRAILERS, INC.; CHICAGO, IL + + + + + Mobile Scout Mfg. Corp.Arlington, Texas + + + + + Work Horse Mfg. + + + + + Otosan + + + + + Belarus Machinery, Inc. + + + + + Frontier Homes Corp. + + + + + Mean + + + + + Flote-Aire Corp. + + + + + E-TON DYNAMICS TECHNOLOGY INDUSTRY CO., LTD + + + + + Di Tella + + + + + D & E WELDING; LYONS, GA + + + + + Mal Tractor + + + + + Jialing Ind., Co., Ltd. Group + + + + + Johnson Motors + + + + + Durcholz Trailer + + + + + Ronco Coaches, Inc. + + + + + Ideal Industries + + + + + Tri-Way Trailer + + + + + Strahan Mfg. Co. + + + + + Haul-A-Fame, Inc. + + + + + Trac + + + + + Morris + + + + + Beaird-Poulan Div., Emerson ElectricCo. + + + + + Majestic Corp. + + + + + Eight Point + + + + + Green & Green Mfg. Co., Inc.Lancaster, Texas + + + + + Dual Evans Corp. + + + + + Zetor/Zetor North America + + + + + Elva + + + + + Allen Coachworks Inc.(Mexican Manufacturer) + + + + + Villiers + + + + + Lemoped (model of Motobecane) + + + + + Towncrier Camper + + + + + Bimota Motorcycles + + + + + Tebben Mfg. Co., Inc. + + + + + Werts Corp., Inc. + + + + + Auburn + + + + + R & I IndustriesCity of Industry, California + + + + + Andrews Payloader + + + + + Lori Engineering Corp. + + + + + Marlin Mfg. + + + + + United States Aluminum Co. + + + + + Recreatives, Inc.See Sabre + + + + + Fantic + + + + + Camp-A-While Homes Mfg. Co. + + + + + Suzulight Su + + + + + Garway Homes, Inc. + + + + + Hornet Industries, Inc. + + + + + Trailex, Inc.Canfield, Ohio + + + + + De Lorean (imported from Belfast,Northern Ireland, UK) + + + + + C.C. Kelley & Son + + + + + Twentieth Century Mfg. Co.or 20th Century Mfg. Co. + + + + + Mobile Mfg. Corp. + + + + + B & W Homes, Inc. + + + + + Ute Trailer + + + + + Innocenti + + + + + MILLER INDUSTRIES, INC., OOLTEWAH, TENNESSEE + + + + + Corona Coach Co. + + + + + Tear Drop, Inc. + + + + + BestrailMfd. by Lakeside Industries + + + + + Schwinn Motor Scooters + + + + + Huss Sales, Inc. + + + + + Pederson + + + + + United States Mobile Homes (Florida) + + + + + American Hoist & Derrick Co. + + + + + HYDRO TEK CORP.; REDLANDS, CA + + + + + Excellance, Inc. + + + + + Dakota Mfg. Co., Inc.Mitchell, South Dakota + + + + + Bridgestone + + + + + Wabco Construction & Mining EquipmentSubsidiary of American Standard, Inc.Group + + + + + ALUTREC INC. STE-AGATHE, QUEBEC CANADA + + + + + Imperial Industries + + + + + Thunderbolt Trailer + + + + + A-Z MANUFACTURING; MADERA, CA + + + + + American Road EquipmentOmaha, Nebraska + + + + + Henke Manufacturing Corp. + + + + + Acadian (GM of Canada) + + + + + SANDPIPER + + + + + Hesse Corp.Kansas City, Missouri + + + + + Travel Home, Inc. + + + + + Bianchi + + + + + Forrest City Machine Works, Inc. + + + + + Fife Trailer + + + + + Miller Equip. Div., Miller Equip. Co + + + + + Taka (Imported by Rockford) + + + + + John Pitzer Mfg. Co.Glenwood, Iowa + + + + + MASSON'S WELDING + + + + + Tropicana Mfg. Co. + + + + + Grizzly Mfg. Co., Inc. + + + + + H & B Trailer Co.Damascus, Arkansas + + + + + Fleming Mfg. Co., Inc.Long Lake, Minnesota + + + + + Camp-Mor, Inc. + + + + + Leyland TractorsBritish Leyland - Dist. by UniversalTractor-Equipment Corp. Richmond,Virginia + + + + + Forlyn Engineering Co. + + + + + Ceva Mfg. Co. + + + + + Stutz + + + + + Busse Brown Trailer + + + + + Kamp-A-While Industries + + + + + Blazon Mobile Homes Corp. + + + + + American Trailers, Inc.Div. Polar Mfg. Co. + + + + + Belmont Machine + + + + + Globe + + + + + Grace, W. E., Manufacturing Co. + + + + + Nuell Coach Corp. + + + + + Columbia Tractor Mower + + + + + Weber + + + + + RAZORBACK TRAILERS; PENNSYLVANIA + + + + + Jackel Motorsports or China Jialing Ind. Co., Ltd. + + + + + Ferguson Mfg. Co., Inc. + + + + + Ysob Co. + + + + + Hawthorne + + + + + Kevco Ind. + + + + + Siebert Trailers, Inc.Stockton, California + + + + + Glassic + + + + + Indian (Taiwan) + + + + + Beck Camping Trailer + + + + + Bob S Trailer + + + + + Lil'ZManufactured by Zieman Products + + + + + Crown Line + + + + + JB + + + + + Bird + + + + + Vanguard National Trailer Corp. + + + + + Sterling Industrial Corp. + + + + + Vermont Traveler + + + + + Tracker Corp.Boat trailers--Winchester, Tennessee + + + + + Bond Mobile Homes, Inc. + + + + + Arrow Trailers, Inc.Affiliated with Great Dane Trailers--Memphis, Tennessee + + + + + Peerless International Co., Inc. + + + + + Killer Chopper Cycle Fabrication, LLC + + + + + Pinto + + + + + Starcraft Corp. + + + + + Grimmer-Schmidt Corp.Franklin, Indiana + + + + + Baretta + + + + + Tybex Corp.Bangor, Pennsylvania & Belvidere, N.J. + + + + + CapellaMfd. by Midland Industries, Inc. + + + + + Sunliner Motor Home + + + + + ACCU-TEK,INC.; SHREWSBURY, MASSACHUSETTS + + + + + Tannehill Trailer + + + + + Toddy Custom Built TrailersMfrs. stock trailers--Bradford, Arizona + + + + + E Z HaulDiv. of Parkhurst Manufacturing Co. + + + + + Macoma Engineering, Inc. + + + + + Ira Jorgenson + + + + + Tacquito + + + + + J.H. Ross Co. + + + + + INDIANA TRAILER MANUFACTURING + + + + + Eidal International Corp. + + + + + Al-Mac Products, Inc. + + + + + Open Road Campers, Inc. + + + + + Marliss Industries, Inc. + + + + + Kruz, Inc. + + + + + KESLER MANUFACTURING, INC; LOYAL, WISCONSIN;TRAILERS + + + + + Hardee Mfg. Co.Affiliated with Harsco Corp., PlantCity, Florida + + + + + Sunline Coach Co. + + + + + Ho-Bo Trailers + + + + + Materials Handling Div., Eaton Corp. + + + + + Realco Trailer + + + + + Swinger + + + + + Van Bibber Enterprises + + + + + Addison HomesDiv. of Penthouse Industries, Inc.Addison, Alabama + + + + + Garson Flatbed Trailer + + + + + Little Dude Trailer Co.Affiliated with Texas Dude, Inc.(Formerly Texas Royal Mfg. Co.)Fort Worth, Te + + + + + Hilbilt Mfg. Co.Benton, Arkansas + + + + + Torrot + + + + + Rexhall + + + + + AERO MANUFACTURING, INC.; SYRACUSE, INDIANA + + + + + Barth corp. + + + + + Roketa Powersports + + + + + Tucker + + + + + Cross Lander + + + + + Pak-Mor Mfg. Co. + + + + + Mobile Chapel Trailer + + + + + TITAN MOTORCYCLE + + + + + Custom King Horse Trailer + + + + + Jim & Dave's Trailer Mfg. + + + + + Knight Mfg. Corp. + + + + + Jensen + + + + + Elgin-Leach Corp. + + + + + ODell Mfg. Co. + + + + + Vanson Boat Trailer + + + + + Style-Craft Mobile HomesMfd. by Wickes Homes + + + + + Trinity Products + + + + + Lawn Chief + + + + + Surveyor Motor Home + + + + + Windsor Mobile Homes (old code WIND) + + + + + Premier + + + + + Specialized Vehicles Corp. + + + + + Topline Trailers ManufacturingFort Worth, TX + + + + + Corder Mfg. Co., Inc. + + + + + Katolight Corp. + + + + + Amen + + + + + Utility Trailer Mfg. Co.City of Industry, California + + + + + Masterbilt Trailers, Inc. + + + + + Wesco Truck & Trailer SalesWoodland, California + + + + + TRIPLE "J" CUSTOM TRAILERS, GANSEVOORT, NY + + + + + Cochran Western Corp.Subsidiary of Western Gear Corp. + + + + + Testi + + + + + Cross Truck Equipment Co., Inc.Canton, Ohio + + + + + Festival Homes of Ohio, Inc.Greenwich, Ohio + + + + + Sooner Mfg. + + + + + Starcraft Corporation + + + + + Broadlane Homes, Inc. of Indiana + + + + + NVT America (moped) + + + + + Smith-Roles Ltd. + + + + + Ponderosa Homes, Inc. + + + + + KBH CORPORATION; CLARKSDALE, MS + + + + + Nerco Trailer + + + + + Cuyler Corp. + + + + + Warszawa + + + + + PRESTON AMUSEMENTS, INC.; ALVARADO, TX + + + + + General Coach Works of CanadaDiv. of Divco-Wayne Industries + + + + + Green Boat Trailer + + + + + Loprofile Boat Trailer + + + + + A-T-O Construction Equipment Div.,A-T-O, Inc. + + + + + HAULRITE, INC.; MT. JULIET, TENNESSEE **(NOT HAULRITE OF MISSOURI VMA/BMMF)** + + + + + TROY-BILT FARM & GARDEN EQUIPMENT + + + + + Master Craft Industrial Equip. Corp. + + + + + Bankhead Enterprises, Inc.Atlanta, Georgia + + + + + Hi-Lo Travel Trailer + + + + + Puckett Brothers Mfd. Div. Co. Inc.Lithonia, Georgia + + + + + American Tractor Equipment Corp. + + + + + Lieber Industries, Inc. + + + + + Muller Machinery Co.Metuchen, New Jersey + + + + + Watson Industries + + + + + Union Machine & Tool Works + + + + + Troyler Corp. + + + + + Sun + + + + + Excel Motor Home Truck + + + + + Murray TrailersCaldwell, Idaho + + + + + Escort Trailer Corp.Seattle, Washington + + + + + Harrington Mfg. Co., Inc.Mfr. of Roanoke-Hustler, Lewiston, NorthCarolina + + + + + Scully Coach Co., Inc. + + + + + SPRINTER MOTORCYCLE + + + + + Dutton-Lainson Co., Mfg. Div.Mfrs. of boat trailers, + + + + + Construction Machinery Co. + + + + + ApacheMfd. by Lindig Mfg. Corp. + + + + + Manning, Richard + + + + + Hanson Machinery Co. + + + + + Bomford & Evershed, Ltd. (England) + + + + + Gran Spree Mini Camper + + + + + VANGUARD INDUSTRIES OF MICHIGAN, INC.; COLON, MI + + + + + Southern Energy Homes, Inc.Addison, Alabama + + + + + ScaniaOrange, Connecticut (Saab-Scania ofAmerica, Inc.) + + + + + Frisky + + + + + Blizzard Mfg., Inc. + + + + + Elkhart Mfg. Co. + + + + + Maxi Products Co., Inc. + + + + + Trombly Woodworking Co. + + + + + EE-ZY Trailer Co. + + + + + Fayette Trailer + + + + + A-OK Trailers + + + + + Country Squire Travel Trailer + + + + + Tee Nee Trailer Co.Youngstown, Ohio + + + + + Elk River Corp. + + + + + TWN + + + + + Haflinger + + + + + Axle & Equipment Sales Co.Naperville, Indiana + + + + + Travelo Homes Co.Div. Saginaw Products + + + + + Buhl Machine Works + + + + + Burro, Inc.Plymouth, Minnesota + + + + + Ridgecraft Corp.Breckenridge, Texas + + + + + Marshall + + + + + Road Rescue + + + + + Palliser (racing car) + + + + + Omega (Italian) + + + + + American Road Trailer Camper + + + + + Allied ProductsDiv. Lonergan Corporation + + + + + Allied Tank + + + + + MCCLOSKEY BROTHERS MANUFACTURING; CANADA LIT.ONTARIO + + + + + Boatel Ski + + + + + Special (Go-cart, Golf Cart, seeOperating Manual, Part 1,Section 2) + + + + + Santo + + + + + Rome Industries, Inc. + + + + + Hartman + + + + + Transcraft Corp.Anna, Illinois + + + + + Mobile Home Service + + + + + Top Campers + + + + + Ingerson Mfg. Co. + + + + + Kane TrailersGreeley, Colorado + + + + + Gorbett BrothersFort Worth, Texas + + + + + Spartan ProductsWest St. Paul, Minnesota + + + + + Wallstrom Boat Trailer + + + + + Rite-On TrailersDiv. of Windward Marketing + + + + + Tramco, Inc.Mfrs. liquid propane gas transport--Dallas, Texas + + + + + Duel + + + + + Cushman + + + + + Cruisemaster Motor HomeMfd. by Georgie Boy Mfg., Inc.Edwardsburg, Michigan + + + + + X-Tra Camper Co. + + + + + M-R-S Manufacturing Co. + + + + + Eaton Corp.Cleveland, Ohio + + + + + Orlando Boar Co. + + + + + Fireball Trailer Mfg. + + + + + Panda Motor Home + + + + + Kompak Camping Trailer + + + + + Sigame Corp.Gardena, California + + + + + Rear's Mfg. Co. + + + + + St. Clair Custom Built + + + + + Embassy Mobile HomesDiv. of Guerdon Industries + + + + + Dude Trailer + + + + + Edwins + + + + + Bobko, IncMichigan City, Indiana + + + + + DMI, Inc.Goodfield, Illinois + + + + + GIGI Industries, Inc.Motor homes + + + + + Delta Truck Trailer Co., Inc.Camden, Arkansas + + + + + Bear Cat Mfg., Inc.Wickenburg, Arizona + + + + + Tour-A-Lodge + + + + + PANDA MOTOR SPORTS NORTH AMERICA, INC. + + + + + Capitol + + + + + Landola Homes, Inc. + + + + + Consolidated Mobile Industries + + + + + I. K. A. + + + + + QUIK MANUFACTURING, CO; FOUNTAIN VALLEY, CA + + + + + The Tye Co., Inc. + + + + + Allisons Fiberglass mfg.,Inc. + + + + + Merritt Equipment Co.Portland, Oregon + + + + + Fotografix Boat Trailers + + + + + L. B. Smith, Inc.Manufacturer of Smithco. Trailers + + + + + Peace + + + + + Blair Horse Trailer + + + + + OMC JohnsonBoat trailers--Waukegan, Illinois + + + + + Husky Farm Equipment Ltd.Ontario, Canada + + + + + Dille & McGuire Mfg. Co.Richmond, Indiana + + + + + Freeway Travelers, Inc. + + + + + Locomobile + + + + + Wig-A-Wam, Inc. + + + + + Beardmore + + + + + Funtime Camper Trailer + + + + + Veglia + + + + + Clipper Mfg. Co. + + + + + Guest Industries, Inc. + + + + + Gelt Trailers + + + + + Crest Trailer + + + + + SOUTHWEST EXPRESSLINE, WHITE PIGEON,MICHIGAN + + + + + Porta-Built Industries + + + + + Indiana Phoenix + + + + + Loftness Mfg. Co. + + + + + Portable Structures + + + + + Outdoor Equipment + + + + + Servicycle + + + + + NU-CENTURY; MADERA, CA + + + + + Air BuoyBoat trailers--mfd. by Firestone Tire &bber Products + + + + + Planet Plows, Inc. + + + + + Casal + + + + + Forney Horse Trailer + + + + + Yadro TrailersMilwaukee, Wisconsin + + + + + Burkeen Equipment & Supply Co.Memphis, Tennessee + + + + + Americana Mobile Homes, Inc. + + + + + Alfa Romeo + + + + + Travel Cruiser + + + + + Koster Mfg., Inc. + + + + + Vivian Industrial PlasticsVivian, Louisiana + + + + + West Texas Dollies + + + + + United Rock Picker Co. + + + + + American Economobile Hilif + + + + + Franklin + + + + + Extend-Ell Industries + + + + + McCarthy Trailers + + + + + Vesely Co. + + + + + HODGES CUSTOM HAULERS; BENTON, KY + + + + + Guthrie Trailer Sales, Inc.Great Bend, Kansas + + + + + WHISPERING PINE CAMPER TRAILER + + + + + Massey + + + + + Revella Camping Trailer + + + + + Morris Brothers + + + + + Overland + + + + + Avant + + + + + Wilson + + + + + PiedmontDiv. of Concord Mobile Homes + + + + + Continental World MarineMexico; trailers + + + + + B M C + + + + + Armor Homes of Virginia + + + + + Silver Pigeon + + + + + Flying Dutchman + + + + + Jeep (for model years 1989 throughresent) + + + + + Leisure Vehicles, Inc.Troy, MI + + + + + Mowett Sales Co., Inc. + + + + + New CastleMfd. by Town & Country Mfg. Co. + + + + + Go-Tag-Along + + + + + Bay City Shovels, Inc. + + + + + Cubster + + + + + Pastime Mfg. Co. + + + + + Gilmore-Tatge Mfg. Co., Inc. + + + + + Better Built + + + + + DOLPHIN MOTORHOMES + + + + + Crosley + + + + + John R. Kovar Mfg. Co., Inc. + + + + + Interconsult Mfg. Co. + + + + + Whites/Keene Mfg. + + + + + Evens Trailer Mfg., Inc. + + + + + Go Kart + + + + + J.T. Ind., Ltd.Lenox, Iowa + + + + + Herbst Brothers + + + + + KARAVAN TRAILERS, INC. + + + + + Little Sport Enterprises + + + + + Garlock Equipment Co. + + + + + Country R. V. Mfg., Inc.Elkhart, Indiana + + + + + Solectria + + + + + Mays Industries, Inc.Boaz, Alabama + + + + + Tuff Cat Trailers, Inc.Tekonsha, Michigan + + + + + Mississippi Tank Co., Inc.Hattiesburg, Mississippi + + + + + Brall Motor Home + + + + + Long Mfg. N.C., Inc., Const. & Ind. Div.Tarboro, North Carolina + + + + + Tiara Industries + + + + + Central Trailer Corp. + + + + + Regent Homes Corp. + + + + + World Wide Industries + + + + + BirchwoodMfd. by Conchemco Homes Group + + + + + Lear Siegler, Inc., Hutchinson Div. + + + + + Western Products Div., DouglasDynamics, Inc. + + + + + Weirs Trailer Sales + + + + + Hinson Mfg. Co., Inc. + + + + + KometicSee Moto Kometik + + + + + Vanguard (Canada) + + + + + Dupage Coach Co. + + + + + EK-CHOR MOTORCYCLE COMPANY; SHANGHAI, CHINA + + + + + Hobart Brothers Co.Troy, Ohio + + + + + Smeal + + + + + Deere, JohnDeere & Co. + + + + + House of Harmony, Inc. + + + + + Melmar Motor Home + + + + + Eaglerock Trailers, Inc. + + + + + Free-Way II, (Mfd. by H-MVehicles, Inc.) + + + + + MAHINDRA; TOMBALL,TX;MAKER OF VARIOUS SIZES TRACTORS & OTHER FARM/GARDEN EQUIPMENT + + + + + Schien Body & Equipment Co.Carlinville, Illinois + + + + + Metal Craft ManufacturingGreenville, North Carolina + + + + + Util-I-VanMfd. by Utilimaster Div. HolidayRambler Corp. + + + + + Aly Travel TrailersDiv. Layton Homes Corp. + + + + + Simson + + + + + Bender-Florin + + + + + Vehiculos Automares Mexacano S. A.De C. V. (Mexican manufacturer) + + + + + Almac Industries, Ltd.Ville D'Anjou, Quebec + + + + + International Truck & Engine Corp. + + + + + Chickasha Mobile Homes + + + + + Tyson Skylark Trailer + + + + + Denzin & Rahn Mfg. Co., Inc. + + + + + SANDS WELDING INC; ALBANY,MN + + + + + M & W Mfg. Co. + + + + + Loudo Enterprises, LLC + + + + + Available + + + + + Geer Co. + + + + + Mitsubishi FUSO Truck of America, IncFor vehicles with gross vehicle weight(GVW) of over 7,000 pound + + + + + West Coaster Mailster3 wheels + + + + + Schenkel Brothers Mfg. Co. + + + + + SANTEE INDUSTRIES SYLMAR, CA + + + + + Countryside Industries, Inc. + + + + + Cabana Motor Home + + + + + Liftmaster, Inc. + + + + + New Yorker Homes Corp. + + + + + Peter Pirsch & Sons Co.Kenosha, Wisconsin + + + + + Dalewood Manufacturing Co., Inc.Lauderdale, Mississippi + + + + + H. D. Hudson Manufacturing Co. + + + + + Tankraft Trailer + + + + + Flexible + + + + + Tchaika + + + + + Electric Vehicles of Texas + + + + + Optima Ind., LLC + + + + + BrutanzaSee Brutanza Engineering, Inc. + + + + + Esco Corp. + + + + + Fulton Boat Trailer + + + + + Master Div., Koehring Co. + + + + + Mod Cycles Corp. + + + + + FIRST LINE REFINISHING; CORINTH, NY + + + + + KIA Motors Corporation + + + + + Five-Star ST, LTD Edition. or C2(mfd. by Juili Entp. Co., Ltd.,imported by General Moped Co. Inc) + + + + + Art Roll Mfg. Co., Inc.New name is Trail-R-Craft, Inc. + + + + + Mai Mfg. Co. + + + + + Evergreen Log Trailer + + + + + Mobile Traveler + + + + + Braun Ind., Inc. + + + + + Pfaudler Co. + + + + + Continental Wheel & Trailer + + + + + Hawkeye Camping Trailer + + + + + Glendale Mobile Homes + + + + + Rockport Trailer Mfg. Corp. + + + + + Southeast Mfg. Co., Inc. + + + + + Cable Crane and Excavator Div.FMC Corp. + + + + + Vacationeer Trail trailer + + + + + Glen & Cecil Mobile Home Manufacturing& Sales + + + + + Trail Star Tent Trailer + + + + + Calumet Co., Inc. + + + + + TrailevatorDiv. Magline, Inc. + + + + + Oshkosh Trailer DivisionBradenton, FL; manufactures trailers + + + + + KUTZ FARM EQUIPMENT; PINE GROVE, PA + + + + + LaSalle + + + + + Carma Mfg. Co. + + + + + Wilderness Travel Trailer + + + + + JINDO CORPORATION; SEOUL,SOUTH KOREA + + + + + Lada (imported from USSR) + + + + + Balko, Inc. + + + + + Humbee Surrey + + + + + Le Roi Div.Dresser Ind., Inc., Sidney, Ohio + + + + + Matchless + + + + + Padgett, Inc. + + + + + KRISTI TRAILER INDUSTRIES, INC; CANASTOTA, NY + + + + + Nimrod Tent Trailer + + + + + Continental Mfg. Co., Inc. + + + + + Skyhomes, Inc.Div. Skyline Homes + + + + + McCord Manufacturing Co. + + + + + Deep South Sales Co.Valdosta, Georgia + + + + + Dauphin + + + + + AhoyMfd. by Anchor Homes, Inc. + + + + + Whiteman Mfg. Co. + + + + + Road Motor Home + + + + + Pitman Div., A. B. Chance Co. + + + + + Kaydel, Inc. + + + + + Gilmore Trailer, Inc.Seneca, Pennsylvania + + + + + Divco + + + + + Anderson Mobile Homes Mfg. Co. + + + + + Versatile Power Corp.Grantsburg, Wisconsin + + + + + The Thackery Co., Inc. + + + + + Terra Cruiser Div.Div, of Divco-Wayne Industries + + + + + Easyown Mfg. Co. + + + + + TRAILTECH; GRAVELBOURG,SASKATCHEWAN CANADA + + + + + Continental Cargo + + + + + Hillcrest Homes, Inc.Div. Skyline Homes + + + + + Fleetwing Mobile Homes + + + + + Rolling Thunder + + + + + Totem Total Trailer + + + + + Star TrailMfd. by Stark Bros. Motor Sales + + + + + Trail Hawk + + + + + Road Ranger Camper Trailer + + + + + E. L. Caldwell & Sons, Inc. + + + + + Paccar IncorporatedBellvue, WA + + + + + Bel-Aire Mobile Homes + + + + + Wisconsin Trailer Co., Inc.Richfield, Wisconsin + + + + + Great Divide Coach Mfg. + + + + + Nasan Trailer + + + + + Circle D Trailer + + + + + Prestige Custom TrailersChristopher,I1 + + + + + Olgen Mfg. Co. + + + + + Black Built + + + + + Michalke Mfg. Corp. + + + + + Proper Chopper Motorcycles + + + + + Howse Implement Co., Inc. + + + + + Charlevoix Mobile HomesMfd. by Dickinson Homes, Inc. + + + + + Cycle Kamp, Inc.Anaheim, California + + + + + Ingram Manufacturing Co. + + + + + Aloutte + + + + + Blaw-Knox Construction Equipment Co.Div. of White Consolidated Industries,Inc. Matoon, Illinois + + + + + Brasinca + + + + + Crane & Hoist OperationsSubsidiary of Dresser Industries, Inc. + + + + + EZZ PullMfd. by Glass-Wood Products, Inc. + + + + + C. S. Johnson Co. + + + + + Krause Plow Corp., Inc. + + + + + Dodd Mfg. Co., Inc. + + + + + Baldwin Enterprises + + + + + Gray-Velle Mobile HomesDiv. of Stahan Manufacturing Co. + + + + + United States Mobile Homes + + + + + Mobile Tops, Inc. + + + + + Sullair Corp.Michigan City, Indiana + + + + + Jarco, Inc.Newport Beach, California + + + + + CONSTRUCTION TRAILER SPECIALISTS, INC.; SIKESTON, MO + + + + + All-State Trailer Co. + + + + + Anthony Co. + + + + + Motoc Semi Flatbed Trailer + + + + + MANAC, Inc. + + + + + Buddy Mobile Homes, Inc.Div. Skyline Homes + + + + + Montone Mfg. Co.Hazelton, Pennsylvania + + + + + Campsite Mfg. Co.Seminole, Texas + + + + + Hart Mobile Homes Corp. + + + + + Transvair + + + + + Rucker Performance Motorcycle Co. + + + + + I.B. Perch Co. + + + + + LONGHORN TANK & TRAILER, INC; GRAVETTE, ARKANSAS + + + + + DANZER INDUSTRIES & DANZER/MORRISON; HAGERSTOWN, MD + + + + + DAF + + + + + Gilera + + + + + Artex Fabricators, Ltd. + + + + + Armor Mobile Systems, Inc. + + + + + IRON HORSE TRAILER MANUFACTURING; TEXAS + + + + + Armet Armored Vehicles + + + + + Four Winns + + + + + Watford + + + + + Phill Trailer + + + + + Magnum ManufacturingHarrisburg, OR; recreational vehicles + + + + + Chesapeake Mobile Homes + + + + + Thru-Air Trailers, LLC + + + + + Hill Mfg. Co. + + + + + Westcraft Mobile Homes + + + + + Electric Cycle + + + + + THE ALUMINUM TRAILER COMPANY; NAPPANEE, INDIANA + + + + + Avion Coach Corp. + + + + + Heritage Mobile Homes + + + + + Zwickau + + + + + TUFF/LUGG MANUFACTURING + + + + + Sleep Easy Trailer + + + + + Selburn Flatbed Trailer + + + + + Tyran + + + + + Vaquero Trailer + + + + + Northwest Engineering Co. + + + + + Fiat + + + + + Playboy + + + + + Schwartz Mfg. Co. + + + + + Skoda + + + + + Apacheon Coach Co. + + + + + Cane River Trailer Co., Inc.Natchitoches, Louisiana + + + + + Greencastle Coach Co. + + + + + Matra + + + + + COMPTANK, CORP.; BOTHWELL, ONTARIO, CANADA + + + + + Rochdale + + + + + Franklin Homes, Inc.Russellville, Alabama + + + + + Deutz Tractor + + + + + Garwood + + + + + Shaver Mfg. Co. + + + + + Niagara Trailer Co. + + + + + Coos-Bilt Trailers + + + + + Aspen Camper, Inc. + + + + + Lektracycle + + + + + CARTER BROTHERS + + + + + Arrow + + + + + Glenbrook Homes Of Tennesee + + + + + Massey-Ferguson, Inc. + + + + + Hamlite + + + + + Leisuretime Motor Home + + + + + Van Car Corp. + + + + + BRI-MAR MANUFACTURING; CHAMBERSBURG, PA + + + + + Transfer + + + + + Western Star + + + + + Relco Corp.Mfd. in North Billerica, Massachusetts + + + + + Hole Pumps + + + + + Pullers Pride, Inc., or Murphy's Welding + + + + + Vacation Wagon, Inc. + + + + + TRIPLR R TRAILERS INC. BOONEVILLE,MISSISSIPPI + + + + + Claster Trailer + + + + + Myco Industries + + + + + Capri (imported by Mercury priorto 1979) + + + + + Johnson Mfg. Co., Inc. + + + + + Mays Enterprises, Inc.Albertville, Alabama + + + + + Artie + + + + + Electric Wheel Co. + + + + + Peco, Inc. + + + + + General Amer Aero Coach + + + + + Itom + + + + + Tex Mex Trailers + + + + + Barrett Trailers, Inc.Oklahoma City, Oklahoma--(See Circle BLivestock Trailer) + + + + + Colonnade Mobile HomesMfd. by Fairmont Homes, Inc. + + + + + NORTHERN BAY CO. INC. ; PENOBSCOT, ME + + + + + Maxey Mfg., Inc. + + + + + Gypsy Campers, Inc. + + + + + Eagle (also see make American Eagle) + + + + + Delphi Body Works, Inc. + + + + + Nevadan Mfg. Co. + + + + + Tri-Sport/Steen (formerly Alsport/Steen) + + + + + Veenema & Wiegers, Inc.Mfrs. "V & W" trailers--No. Haledon,New Jersey + + + + + Poirier + + + + + Farenwald Boat Trailer + + + + + Soderstrom Machine ShopCanton, South Dakota + + + + + Facel-Vega + + + + + BOSS HOSS CYCLE, INC. ; DYERSBURG, TN + + + + + Kinetic + + + + + DUTCH PARK HOMES, INC.; GOSHEN, IN + + + + + Laverda + + + + + ABF, INDUSTRIES; NEBRASKA + + + + + Concrete Surfacing Machinery Div.,Stewart Industries, Inc. + + + + + Hed-Way, Inc. + + + + + SFM + + + + + Durant + + + + + Atlas Copco, Inc.Wayne, New Jersey + + + + + Futurama + + + + + Grove + + + + + Manitowc Engineering Co., Inc. + + + + + Riley + + + + + Empire Generator Corp. + + + + + Tahoe Motor Home + + + + + Metoo Travel Trailer + + + + + KIBBI, INC.; ELKHART, INDIANA + + + + + Cycle-SleeperMfd. by Howard Mfg. Co. + + + + + Triumph + + + + + reconstructed trailers + + + + + Walker Mobile Homes + + + + + Lloyd's Trailer Finishing + + + + + Sweetheart Motor Home + + + + + Adspa Mobile HomeMfd. by Ad Space, Inc., Pomona, CA + + + + + Tecnoma, Ltd., (Canada) + + + + + HRI (Heartland Rig) + + + + + Champ Horse Trailer + + + + + Norwin Trailer + + + + + TOP-3 TRAILERS; TEXAS + + + + + Dixie Craft Trailers, Inc.Eupora, Mississippi + + + + + TRAILERS DE MONTERREY, S.A. NUEVO LEON, MEXICO + + + + + PRO LITE TRAILERS; PECULIAR, MISSOURI + + + + + ABI Leisure Inc.Ontario, Canada + + + + + MantaSee Three R Industries, Inc. + + + + + Woodland Park, Inc.Middleberry, Iowa + + + + + Arcos Boat Trailer + + + + + Baja Custom Trailers + + + + + Kools Brothers, Inc. + + + + + Timpte, Inc.Denver, Colorado + + + + + Oshkosh Motor Truck Co. + + + + + Gramm + + + + + Lincraft Industries + + + + + Allied + + + + + Searover TC Camper + + + + + PEAK MANUFACTURING, INC. NORTH BATLEFORD, SK CANADA + + + + + Ozark Trailer & Mobile Homes + + + + + Mountaineer Mfg. Co. + + + + + Chief Ocala Trailer Mfg. + + + + + Trader Horn Trailer Supply + + + + + Western Trailer Coach + + + + + Toyopet + + + + + BLOOMERTRAILER MANUFACTURING, INC.; LAMARQUE, TX + + + + + A.A.B. Co., Inc. + + + + + Swiss Colony Travelers, Inc.Div. Herrli Industries + + + + + SETRA OF NORTH AMERICA + + + + + Kingham + + + + + Steco Trailer Co. + + + + + Tandom Boat Trailer + + + + + Monarc + + + + + Borg Co. + + + + + Kreidler + + + + + COASTAL METAL FAB, INC.; TOPSHAM, ME + + + + + Aladdin Trailer Co. + + + + + General Coach of FloridaDiv. of Divco-Wayne Industries + + + + + Humber + + + + + All Terrain Vehicle (for furtherexplanation--see OperatingManual, Part 1, Section 2.) + + + + + Lacey, W.E. & Sons + + + + + Winger Mfg. Co. + + + + + DMB Trailers + + + + + Ambassador + + + + + Vista Custom TrailerJane, Missouri + + + + + Datsun + + + + + North American Bus Ind. + + + + + Cushman + + + + + Certified Boat Trailer + + + + + Spokane Travel Homes + + + + + Miniscooter + + + + + Go-Lite, Inc. + + + + + S & H Trailer Mfg. Co., Inc.Madill, Oklahoma + + + + + Eagle Custom Coach Mfg. Co. + + + + + Friess Trailer + + + + + Auburn Homes + + + + + Infiniti + + + + + U.S. ARMY VEHICLE; MAKE IS UNKNOWN + + + + + DELKRON TRANSMISSION + + + + + Whippet + + + + + A-1 Trailer + + + + + Mr. Ed. Boat Trailer + + + + + Econo Flo Bulk Service + + + + + Timberline Mfg. Co. + + + + + Nolena Foster Trailer + + + + + Hunt's Trailer Mfg. + + + + + Norton (England) + + + + + BEACON METAL WORKS + + + + + Hughes + + + + + DNEPR/Kiev Motorzykly Zavod + + + + + Noble Cultivators Ltd. + + + + + L-Cart, Inc. + + + + + Trailmobile + + + + + Day's DrydockNorth Webster, IN; trailers. + + + + + EML + + + + + Guerdon Industries + + + + + KISSEL MOTOR CAR COMPANY OR KISSEL INDUSTRIES + + + + + Campbell Coach Co., Inc.Mfrs. horse trailes--Cheney, Kansas + + + + + KASEA MOTORCYCLES + + + + + McKay Mfg. Co., Inc. + + + + + Dodge Woodcraft + + + + + Trail Flight + + + + + Simon Utility Trailer + + + + + Dynastar/Dynastar Motorsports, Inc. + + + + + Consulier + + + + + SPORT HAULER BY SPORT CHASSIS AT FREIGHTRLINER IN TULSA, OK___MAKER OF SPORT HAULER TRUCK & TRAILER + + + + + De Muth Steel Products Co. + + + + + EVERLITE, INC.; LONGVIEW, TX - FLEETRITE & OTHER MODEL OR SERIES + + + + + Miller Electric Mfg. Co.Manufactures arc welders + + + + + Kawasaki (Japan) + + + + + Terra-Marina Mfg. Co. + + + + + Odom Boyd Trailer Mfg. Co.Conroe, Texas + + + + + H & H TRAILER CO. + + + + + Kasey + + + + + Fahrzeugwerke GMBHKarls Kaessbohrer, Germany + + + + + Fields Mfg. Co. + + + + + Little Giant Products, Inc.Peoria, Illinois + + + + + Kustom Kraft + + + + + J.J.J., Inc. + + + + + Landcraft Corp. + + + + + Ranger Trail TrailersMfd. by Wood Mfg. Co., Inc. + + + + + Sylvan Double Snowmobile Trailer + + + + + Sun Valley + + + + + Alvis + + + + + Mud Cat Div., National Car RentalSystem, Inc. + + + + + CURRAHEE TRAILERS + + + + + WAYNE METAL PRODUCTS;MARKLE,INDIANA + + + + + Fuqua Homes, Inc.Div. Fuqua Industries--Arlington, Texas + + + + + Rupp + + + + + LEINARD ALUMINUM BUILDINGS, UTILITY TRAILERS; MT. AIRY, NC + + + + + Easy Trail, IncBoat Trailers - Madison, Alabama + + + + + Walsh Body & Trailer + + + + + Jewel Trailer, Inc. + + + + + KYMCO SCOOTERS & MOTORCYCLES + + + + + Virginia Mobile Homes Industries + + + + + PINE-HILL MANUFACTURING, CO.; GAP, PENNSYLVANIA + + + + + Holt Trailer + + + + + CWC Feather-Lite Mfg. Co.El Reno, Oklahoma + + + + + F. A. Long + + + + + East Dump Trailer + + + + + Dethmers Manufacturing CompanyBoyden, IA + + + + + Divco-Wayne Industries + + + + + Sno-CatMfd. by Tucker-Sno-Cat Corp. + + + + + Unpublished construction equipment mfr.(See Operating Manual, Part 1,Section 2) + + + + + McCook Mfg. Co. + + + + + Gabbianno + + + + + Dargo Mfg. + + + + + FLOE INTERNATIONAL + + + + + CIMC HEAVY INDUSTRIES, LTD.; SHENZHEN, CHINA + + + + + Heckendorn Mfg. Co.Cedar Point, Kansas + + + + + E.Z.A. Mfg. Co. + + + + + Doo Snowmobile Trailer + + + + + Auto-Mate + + + + + Palmer Machine Works, Inc.Armory, Mississippi + + + + + Superior Motor Home + + + + + Standard Steel + + + + + Alexandria Mobile HomeMfd. by Marietta Homes + + + + + Towmotor Corp.Subsidiary Caterpillar Tractor Co. + + + + + Agri-Supply Co. + + + + + London Motors + + + + + Neval Motorcycles Ltd. + + + + + Broward Trailer + + + + + Guazzoni + + + + + Ventoura Corp. + + + + + EZ Dumper + + + + + Hilton Mobile Homes, Inc. + + + + + Lowe IndustriesLebanon, Missouri + + + + + Blaze Industries + + + + + Willmar ManufacturingWillmar, Minnesota + + + + + McCoy Miller + + + + + Classic (model of Motron) + + + + + Mobile Garage Mfg. Co. + + + + + Three-Way Campers Mfg. + + + + + N & Ha Mfg. Co. + + + + + Bear Industrial Trailers + + + + + Beeat Truck Mount Camper + + + + + Pagsta + + + + + Gilson Brothers Company + + + + + Baltz Industries, Inc.Pocahontas, Arizona + + + + + Star Electric Cars + + + + + Amphicat + + + + + Cleveland T-Trike Mfg., Inc. + + + + + Dunham Mfg. Co., Inc.Minden, Louisiana + + + + + Palamino Camping Trailer + + + + + Universal Trailers, Inc. + + + + + Homemade Trailer code (See OperatingManual, Part 1, Section 2.)page 1-33) + + + + + Mayfair Mobile HomeDiv. of DeRose Ind., Inc.,Indianapolis, Indiana + + + + + Sperry New HollandDiv. Sperry Corp., New Holland,Pennsylvania + + + + + GENERAL SHELTERS; CENTER, TX CARGO TRAILERS ETC. + + + + + Kitty Cat (Kit Kat) + + + + + Flying L Trailer, Inc.Falls City, Nebraska + + + + + + + + + + + + + + + + (DKW) F102, DKW + + + + + (ALFA) Milano, Alfa Romeo; (MAZD) Millenia, Mazda + + + + + (DETO) Pantera, DeTomaso + + + + + (FORD) Granada, Ford (see English, French, German, and Italian Ford); (PONT) Grand Prix, Pontiac; (STU) Grand Turismo, Studebaker + + + + + L200 + + + + + (BMW) 545i, BMW + + + + + (INFI) I30, Infiniti + + + + + (VOLV) 765 Series, Volvo + + + + + (OLDS) Delmont 88, Oldsmobile + + + + + (OPEL) Kapitan, Opel (imported by Buick) + + + + + (BMW) X3, BMW + + + + + (CHEV) C10, Chevrolet + + + + + (FORD) Ranch Wagon, Ford (see English, French, German, and Italian Ford); (METE) Ranch Wagon, Meteor (Canadian Mercury) + + + + + (AERO) Hot Air Balloon + + + + + (ACUR) SLX (sport utility), Acura + + + + + (RENA) Gordini, Renault + + + + + (PACK) Request, Packard + + + + + (VAUX) Viva, Vauxhall + + + + + (SAA) 95, Saab + + + + + (MERK) XR4Ti, Merkur + + + + + (MAZD) Cosmo, Mazda + + + + + (HYUN) Elantra, Hyundai + + + + + (AMER) Eagle, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (ROV) Land Rover, Rover + + + + + (ASTO) DB7 (Coupe), Volante (DB7), Aston Martin + + + + + (SIM) GLS, Simca + + + + + (HYUN) Excel, Hyundai; (FORD) Excursion, Ford (see English, French, German, and Italian Ford) + + + + + Construction Equipment + + + + + (FORD) Customline, Ford (see English, French, German, and Italian Ford); (TOYT) Celica, Toyota + + + + + (SUZI) X-90 (sport utility), Suzuki + + + + + (AUHE) Saxon, Austin-Healy + + + + + (VOLK) 411/412, Volkswagen + + + + + (GMC) Sierra, General Motors Corp. + + + + + (BMW) Bavaria, BMW + + + + + (HOND) Prelude, Honda; (EGIL) Premier, Eagle; (LINC) Premiere, Lincoln-Continental; (MITS) Precis, Mitsubishi; (STU) President, Studebaker; (TOYT) Pre Runner, Toyota + + + + + (BUIC) Reatta, Buick + + + + + (OPEL) Rallye, Opel (imported by Buick) + + + + + (FIAT) Rimto, Fiat + + + + + RDX + + + + + (VOLK) Variant, Volkswagen + + + + + (BUIC) Apollo, Buick + + + + + (FORD) Fairlane, Ford (see English, French, German, and Italian Ford) + + + + + (MERC) LN7, Mercury + + + + + (FORD) Club Wagon E350, Ford (see English, French, German, and Italian Ford) + + + + + (MAZD) B2600, Mazda + + + + + (AUDI) Quattro, Audi + + + + + (AMER) Gremlin, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (STRN) Ion, Saturn + + + + + (CHEV) Monte Carlo, Chevrolet + + + + + (VOLV) S80, Volvo + + + + + (GMC) Jimmy, General Motors Corp. + + + + + (HYUN) Atos, Hyundai + + + + + (DATS) 710, Datsun + + + + + (AMER) Encore, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (BUIC) Enclave, Buick + + + + + (DATS) 510, Datsun + + + + + (BMW) 328i, BMW + + + + + (PASS) Optima, Passport; (KIA) Optima, Kia; (CHEV) Optra, Chevrolet + + + + + (BMW) Z8, BMW + + + + + (CHEV) Blazer, Chevrolet + + + + + (TOYT) SR5, Toyota + + + + + (SAA) 900, Saab + + + + + (ISU) Trooper, Isuzu + + + + + (ROL) Phantom, Rolls-Royce + + + + + (VOLK) R32, Volkswagen + + + + + (RENA) 18i, Renault + + + + + (ISU) Impulse, Isuzu; (CHEV) Impala, Chevrolet; (HILL) IMP, Hillman; (ROOT) Imp, Rootes; (SUBA) Impreza, Outback Impreza, Subaru; (SUNB) IMP, Sunbeam + + + + + (SAA) 9000, Saab + + + + + (SUBA) Baja, Subaru + + + + + (MAZD) Mazda 3, Mazda + + + + + (AUDI) S8, Audi + + + + + (ROL) Flying Spur, Rolls-Royce + + + + + (STRN) SC, Saturn + + + + + (ASUN) Sunfire, Asuna + + + + + (VOLK) Fastback, Volkswagen + + + + + (FORD) Econoline E-450, Ford + + + + + (MNNI) Cooper/Cooper-S (rights bought by BMW), Mini + + + + + (AMER) Javelin, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (AUST) 1100, Austin; (DATS) 110, Datsun; (FIAT) 1100 - D or R, Fiat; (MORR) 1100, Morris; (NSU) 110 Type, Nsu Prinz; (SUBA) 1100 Series, Subaru + + + + + Fusion + + + + + (MITS) Sigma, Mitsubishi; (PLYM) Signet (Valiant), Plymouth + + + + + (MERZ) 190 Series, Mercedes-Benz; (OPEL) 1900, Opel (imported by Buick); (VOLV) P1900, Volvo + + + + + (CITR) ID-19, Citroen + + + + + (FERR) 348, Ferrari + + + + + (CHEV) Express (full-size van), Chevrolet; (FORD) EXP, Ford (see English, French, German, and Italian Ford); (MITS) Expo, Mitsubishi; (RENA) Export, Renault + + + + + (DATS) 280ZX, Datsun + + + + + (KIA) Clarus, Kia Motors Corp. + + + + + (MERC) S-33, Mercury; (METE) S-33, Meteor (Canadian Mercury) + + + + + (EDSE) Ranger, Edsel; (FORD) Ranchero, Ford (see English, French, German, and Italian Ford) + + + + + (PEUG) 505 Series, Peugeot + + + + + (AUDI) RS6, Audi + + + + + (AUDI) S4, Audi + + + + + (PONT) G4, Pontiac + + + + + (AUHE) Sprite, Austin-Healy; (CHEV) Sprint, Chevrolet; (MG) Sprite, MG; (ROL) Silver Spur, Rolls-Royce; (MERZ) Sprinter, Mercedes-Benz ; (DODG) Sprinter, Dodge + + + + + (LOTU) Plus Two, Lotus + + + + + (HOND) FCX (Fuel Cell Vehicle), Honda + + + + + (ALFA) Giulia Sprint, Alfa Romeo + + + + + (ASUN) GT, Asuna; (ENGF) GT, English Ford (British); (OPEL) GT, Opel (imported by Buick); (TRIU) GT Series, Triumph; (FORD) GT, Ford + + + + + (DODG) 440 Series, Dodge + + + + + (MAZD) 616, Mazda + + + + + (DODG) Ram 1500 (pickup), Dodge; (RENA) R-15, Renault + + + + + (CHRY) E Class, Chrysler; (LOTU) Eclat, Lotus; (MITS) Eclipse, Eclipse Spyder GS-T, Mitsubishi + + + + + (LEXS) GS430, Lexus + + + + + (IMPE) Crown, Imperial (for vehicle years 1955-1983, use VMA/IMPE; for vehicle years prior to 1955 and vehicle years 1990-1993, see make Chrysler); (TOYT) Crown, Toyota + + + + + (JEEP) CJ-7, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) CJ-7, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) CJ-7, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (BMW) 325, BMW; (BMW) 325Xi, BMW + + + + + (DODG) 330 Series, Dodge; (BMW) 330I, BMW; (LEXS) ES330, Lexus; (BMW) 330Xi, BMW + + + + + (ACUR) Legend, Acura; (DAEW) Leganza, Daewoo; (SUBA) Legacy, Outback Legacy, Subaru + + + + + (HUMB) Hawk, Humber; (STU) Hawk Series, Studebaker + + + + + (HUDS) Italia, Hudson + + + + + A3 (Sportback) + + + + + (DODG) Swinger (Dart), Dodge + + + + + Replica + + + + + (BUIC) Skylark, Buick; (PONT) Sky Chief, Pontiac; (STRN) Sky, Saturn + + + + + (DODG) Power Ram, Dodge + + + + + (METE) Niagara, Meteor (Canadian Mercury) + + + + + (AUST) A99 & 110, Austin + + + + + (JAGU) Sovereign, Jaguar + + + + + (LNDR) Range Rover, Land Rover + + + + + (MERZ) SL600, Mercedes-Benz + + + + + (RENA) R-12, Renault + + + + + (AUDI) 4000, Audi; (DODG) 400 Series, Dodge; (LEXS) LS400, Lexus; (MASE) 4000 (series), Maserati; (MERZ) 400 Series, Mercedes-Benz + + + + + (BMW) L7, BMW + + + + + (ROL) Phantom, Rolls-Royce; (VOLK) Phaeton, Volkswagen + + + + + (GMC) Yukon, General Motors Corp. + + + + + (OLDS) Alero, Oldsmobile + + + + + (CADI) DeVille, Cadillac; (PANE) DeVille, Panther Westwinds, Ltd. + + + + + (ROOT) Alpine, Rootes; (SUNB) Alpine, Sunbeam + + + + + (MERZ) CLK55, Mercedes-Benz + + + + + (LAMO) Murcielago, Lamborghini ; (NISS) Murano, Nissan + + + + + (MERZ) SL500, Mercedes-Benz + + + + + (ENGF) Thames, English Ford (British) + + + + + (GEO) Storm, GEO + + + + + (CHRY) New Yorker, Chrysler + + + + + SLS (Badged Separately Beginning 7/2003) + + + + + (BMW) 524 Series, BMW + + + + + (ACUR) EL, Acura (Import from Canada) + + + + + (GLAS) Goggomobile, Glas + + + + + (CHEV) Style Master, Chevrolet + + + + + (HUMB) Snipe, Humber; (HILL) Snipe, Hillman + + + + + (ROL) Silver Wraith, Rolls-Royce + + + + + (MERC) Country Cruiser, Mercury; (OLDS) Custom Cruiser, Oldsmobile + + + + + (ISU) Oasis (minivan), Isuzu + + + + + (MERZ) 380 Series, Mercedes-Benz + + + + + (BMW) M5, BMW + + + + + (VOLK) Dasher, Volkswagen + + + + + (HOND) CRV, Honda; (OLDS) Caravan, Oldsmobile; (RENA) Caravelle, Renault + + + + + (ACUR) RSX, Acura + + + + + (FERR) Quattrovalvolve, Ferrari; (MASE) Quattroporte, Maserati + + + + + (DODG) Challenger, Dodge + + + + + (SOLE) Force, Solectria; (SUBA) Forrester, Subaru; (SUZI) Forsa, Suzuki + + + + + (CHRY) Newport, Chrysler + + + + + (FERR) 575 MM, Ferrari + + + + + 9-2X + + + + + EL, Acura (Import from Canada) + + + + + (TRIU) TR6, Triumph + + + + + (AUST) Mini, Austin; (BREM) Mini-Mark, Bremen Sport Equipment, Inc. (Bremen, IN); (HILL) Minx, Hillman; (MITS) Minica, Mitsubishi; (MORR) Minor, Morris; (SUNB) Minx, Sunbeam + + + + + (VACR) Vector, Vector Aeromotive Corp. + + + + + (LEXS) SC430, Lexus; (MERZ) S430V, Mercedes-Benz + + + + + (CREL) Merlin, Corbin Motors (electric vehicles) + + + + + (MICC) MC1, Micro Concept Cars + + + + + (CHRY) Saratoga, Chrysler + + + + + (SHEB) Cobra GT500, Shelby American; (MERZ) G500, Mercedes-Benz + + + + + (BUIC) Skyhawk, Buick + + + + + (DODG) Avenger, Dodge + + + + + (FORD) Elite, Ford (see English, French, German, and Italian Ford); (LOTU) Elite, Lotus + + + + + (DESO) Firesweep, DeSoto + + + + + (CHRY) Pacifica (Sport Wagon), Chrysler + + + + + (HUDS) Wasp, Hudson + + + + + (ACUR) CL (sport coupe), Acura + + + + + LR3 + + + + + (TOYT) Land Cruiser, Toyota; (BUIC) Lacrosse, Buick + + + + + (HUMM) Hummer 2, HUMMER + + + + + (GM) EV1, General Motors + + + + + (OLDS) 88, Oldsmobile + + + + + (AUST) Cambridge, Austin + + + + + (VOLK) Vanagon, Volkswagen + + + + + (OLDS) Jetfire, Oldsmobile + + + + + (HYUN) Marcia, Hyundai; (JAGU) Mark V Series, Jaguar; (AMER) Marlin, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (AUST) Marina, Austin; (FERR) F-550 Maranello, Ferrari; (MERC) Marquis, Mercury; (MG) Marina, MG + + + + + (LEXS) RX300, Lexus; (MAZD) RX3 (rotary engine), Mazda + + + + + (PORS) 930, Porsche + + + + + (BMW) 530i, BMW + + + + + (AUDI) 100GL, Audi + + + + + (LNCI) Dedra, Lancia + + + + + (MASE) 228, Maserati + + + + + (SCIO) XA, Scion + + + + + (BREM) Sebring, Bremen Sport Equipment, Inc. (Bremen, IN); (CHRY) Sebring, Chrysler; (MASE) Sebring, Maserati + + + + + (DATS) 310, Datsun + + + + + (MERC) Sable, Mercury + + + + + (BUIC) Grand Sports (G.S.), Buick + + + + + (ROOT) Arrow, Rootes; (SUNB) Arrow, Sunbeam + + + + + (MERC) Montego, Mercury; (METE) Montego, Meteor (Canadian Mercury) + + + + + (BUIC) Estate Wagon, Buick; (CHEV) Estate Wagon, Chevrolet; (RENA) Estafette, Renault; (SUZI) Esteem, Suzuki + + + + + (JAGU) XJ6, Jaguar + + + + + (GMC) Canyon, General Motors Corp. ; (PORS) Cayenne, Porsche + + + + + Raider + + + + + HHR + + + + + (ENGF) 105 E Series, English Ford (British) + + + + + (AUDI) 100LS, Audi + + + + + (MERZ) 230 Series, Mercedes-Benz + + + + + (DAYO) Migi, Daytona + + + + + (MERC) Mountaineer (sport utility), Mercury + + + + + (SUBA) 1400 Series, Subaru; (VOLV) 140 Series, Volvo + + + + + (LAMO) Diablo, Lamborghini; (MITS) Diamante, Mitsubishi + + + + + (DODG) Fleet Special, Dodge; (SOLE) Flash, Solectria + + + + + (TOYT) Highlander (beginning vehicle year 2001), Toyota + + + + + (HYUN) Accent, Hyundai; (HOND) Accord, Honda; (PLYM) Acclaim, Plymouth + + + + + (OLDS) Bravada, Oldsmobile + + + + + (PORS) 911, Porsche + + + + + (SUZI) Swift, Suzuki + + + + + (DATS) 610, Datsun + + + + + (HUDS) Jet, Hudson; (AERO) Jet Propelled; (MUNT) Jet, Muntz; (VOLK) Jetta, Volkswagen + + + + + (VOLV) 960, Volvo + + + + + (JAGU) XJR, Jaguar + + + + + (VOLK) Pointer, Volkswagon + + + + + (NISS) Terrano, Nissan; (OLDS) Trofeo, Oldsmobile + + + + + (RENA) R-8, Renault + + + + + (PLYM) Duster, Plymouth + + + + + (MASE) Shamal, Maserati + + + + + (KIA) Sedona, Kia + + + + + (CHEV) Brookwood, Chevrolet + + + + + (CADI) 62 Series, Cadillac + + + + + (CADI) Allante, Cadillac; (AUDI) Allroad, Audi + + + + + (ACUR) MDX, Acura + + + + + (HOND) Insight, Honda + + + + + (VOLV) V40, Volvo + + + + + 9-7X + + + + + Commander + + + + + (DODG) Viper, Dodge; (PLYM) Vip, Plymouth + + + + + (MASE) Ghibli, Maserati + + + + + (PONT) GT0, Pontiac + + + + + (ACUR) TSX, Acura + + + + + (MERK) Scorpio, Merkur; (STU) Scotsman, Studebaker + + + + + (BMW) 2500 Series, BMW; (LEXS) ES250, Lexus; (MDNA) GT250, Modena; (MERZ) 250 Series, Mercedes-Benz; (TRIU) 250, Triumph; (LEXS) IS250, Lexus + + + + + RS4 + + + + + (BENT) Corniche, Bentley; (CHRY) Cordoba, Chrysler; (DODG) Coronet, Dodge; (EDSE) Corsair, Edsel; (ENGF) Corsair, English Ford (British); (MITS) Cordia, Mitsubishi; (ROL) Corniche, Rolls-Royce; (TOYT) Corona, Toyota; (VOLK) Corrado, Volkswagen + + + + + (RENA) R-4, Renault + + + + + (SUZI) Grand Vitara, Suzuki + + + + + (MAZD) Tribute, Mazda; (SUBA) B9 Tribeca, Subaru + + + + + (LINC) Mark V, Lincoln-Continental; (MORG) 4/4 Mark 5, Morgan + + + + + (FORD) Model T, Ford (see English, French, German, and Italian Ford); (MERC) Montclair, Mercury + + + + + (PORS) Karman, Porsche; (VOLK) Karmann Ghia, Volkswagen + + + + + (LNCI) Fulvia, Lancia + + + + + (LINC) Navigator, Lincoln-Continental; (MAZD) Navajo, Mazda + + + + + (CHEV) U100 (Joint Venture w/Daewoo); (DAEW) U100 (Joint Venture w/Chevrolet) + + + + + (ALFA) Zagato, Alfa Romeo; (LNCI) Zagato, Lancia + + + + + (CHEV) Suburban, Chevrolet; (GMC) Suburban, General Motors Corp.; (PLYM) Suburban, Plymouth + + + + + (PLYM) Plaza, Plymouth + + + + + (STU) Champion, Studebaker + + + + + (DATS) F-10, Datsun; (FORD) F100, Ford (see English, French, German, and Italian Ford) + + + + + (PLYM) Valiant, Plymouth + + + + + (CHRY) Town & Country Minivan, Chrysler + + + + + (MERZ) Smart City Vehicle, Mercedes-Benz + + + + + (BMW) 735 Series, BMW + + + + + (IMPE) Custom, Imperial (for vehicle years 1955-1983, use VMA/IMPE; for vehicle years prior to 1955 and vehicle years 1990-1993, see make Chrysler); (CHEC) Custom, Checker; (DESO) Custom, DeSoto; (FORD) Custom, Ford (see English, French, German, and Italian Ford); (LINC) Custom, Lincoln-Continental; (MERC) Custom, Mercury; (OLDS) Custom, Oldsmobile; (PONT) Custom, Pontiac; (RAMB) Custom, Rambler (mfd. prior to 1966; 1966 and later Ramblers - see make American Motors) + + + + + (LINC) Mark VI, Lincoln-Continental + + + + + (DODG) Shadow, Dodge + + + + + (MERZ) ML500, Mercedes-Benz + + + + + (MESS) KR201, Messerschmitt + + + + + (NISS) XE, Nissan + + + + + (ALFA) 2600 Sprint, Alfa Romeo + + + + + (FORD) Futura, Ford (see English, French, German, and Italian Ford) + + + + + (FORD) KA, Ford (see English, French, German, and Italian Ford) + + + + + (MAZD) MPV, Mazda + + + + + (RENA) Luxe, Renault + + + + + (CITR) DS-19, Citroen + + + + + (DODG) Nitro, Dodge + + + + + (SKOD) Fabia, Skoda + + + + + (PEUG) 504 Series, Peugeot + + + + + (FORD) Victoria, Ford (see English, French, German, and Italian Ford); (VAUX) Victor, Vauxhall + + + + + (CHRY) LHS, Chrysler + + + + + (ATV) Wheels only; (SNOW) Wheels only, Snowmobiles; (SPEC) Motorized Wheelchairs + + + + + (DODG) Mirada, Dodge; (MITS) Mirage, Mitsubishi + + + + + Cayman + + + + + (BMW) L6, BMW + + + + + (GMC) Rally, General Motors Corp.; (SAT) Relay, Saturn + + + + + (LINC) Versailles, Lincoln-Continental + + + + + (MERC) Turnpike Cruiser, Mercury; (PLYM) Turismo, Plymouth + + + + + (MERC) Topaz, Mercury + + + + + (NISS) Titan, Nissan + + + + + (BUIC) GS400, Buick + + + + + (VOLV) 760, Volvo; (BMW) 760 LI, BMW ; (BMW) 760i, BMW + + + + + (PONT) G5, Pontiac + + + + + (DETO) Mangusta, DeTomaso + + + + + (BREM) Creighton, Bremen Sport Equipment, Inc. (Bremen, IN); (FORD) Crestline, Ford (see English, French, German, and Italian Ford); (TOYT) Cressida, Toyota; (VAUX) Cresta, Vauxhall + + + + + (TVR) Vixen, TVR + + + + + NSX + + + + + (MASE) Mexico, Maserati + + + + + (BMW) 840Ci, BMW + + + + + (NISS) Pathfinder (Armada), Nissan + + + + + (NASH) Lafayette, Nash + + + + + (SUZI) XL-7 or XL-7 Grand Vitara, Suzuki + + + + + (AUDI) 80, Audi + + + + + (DAYO) Moya, Daytona + + + + + (ENGF) Zephyr, English Ford (British); (LINC) Zephyr, Lincoln-Continental; (MERC) Zephyr, Mercury + + + + + (MASE) 430, Maserati + + + + + (HUDS) Super, Hudson; (BUIC) Super, Buick; (FORD) Super, Ford (see English, French, German, and Italian Ford); (HILL) Super Minx, Hillman; (LOTU) Super 7, Lotus; (OLDS) Super 88, Oldsmobile; (PONT) Super Chief, Pontiac; (PORS) Super, Porsche; (RAMB) Super, Rambler (mfd. prior to 1966; 1966 and later Ramblers - see make American Motors); (TOYT) Supra, Toyota + + + + + (MERZ) C320, Mercedes-Benz + + + + + (BUIC) Allure, Buick + + + + + (MERZ) E320, Mercedes-Benz + + + + + (GMC) Savanna (full-size van), General Motors Corp.; (PLYM) Savoy, Plymouth + + + + + (BMW) 635 Series, BMW + + + + + (VOLV) 122 Series, Volvo + + + + + (JAGU) XJ12, Jaguar + + + + + (DODG) St. Regis, Dodge; (FIAT) Strada, Fiat; (PONI) Strato Chief, Pontiac (Canadian) (Also see make Pontiac); (PONT) Streamliner, Pontiac + + + + + (TOYT) Sienna (van), Toyota + + + + + (DODG) Daytona, Dodge; (FERR) Daytona, Ferrari; (STU) Daytona, Studebaker + + + + + (MASE) Bora, Maserati + + + + + (CONU) GCP, Consulier + + + + + (DODG) Ram Charger, Dodge + + + + + (FORD) F250 Supercab (pickup), Ford (see English, French, German, and Italian Ford) + + + + + (RAMB) Classic, Rambler (mfd. prior to 1966; 1966 and later Ramblers - see make American Motors); (CHEV) Classic, Chevrolet + + + + + (BUIC) Regal, Buick; (OLDS) Regency (Ninety-eight Series), Oldsmobile + + + + + (STRN) LW-Wagon, Saturn + + + + + (PACK) Predictor, Packard + + + + + (FORD) Econoline E350, Ford (see English, French, German, and Italian Ford) + + + + + (MASE) 3500 (series), Maserati; (ROV) 3500, Rover; (NISS) 350Z, Nissan ; (MERZ) E350 OR SLK350, Mercedes Benz; (MERZ) S350, Mercedes - Benz; (ISU) i350, Isuzu; (LEXS) IS350, Lexus + + + + + (PONT) Chieftain, Pontiac + + + + + (MERZ) C220, Mercedes-Benz + + + + + (MASE) Khamsin, Maserati + + + + + (BUIC) Electra (Park Avenue), Park Avenue (Electra), Buick; (BZEL) Electra-King, B & Z Electric Car Co.; (HOND) Element, Honda + + + + + (PORS) 968, Porsche + + + + + (MERZ) 220 Series, Mercedes-Benz + + + + + (CADI) XLR, Cadillac + + + + + (ATV) Tracks only; (MERC) Tracer, Mercury; (SNOW) Tracks only, Snowmobiles + + + + + (FORD) Galaxie, Ford (see English, French, German, and Italian Ford); (MITS) Galant, Mitsubishi; (LAMO) Gallardo, Lamborghini + + + + + (VOLK) Beetle (Super Beetle or Bug), Volkswagen + + + + + (OLDS) 37350, Oldsmobile + + + + + (MAZD) CX7, Mazda + + + + + (MERC) Monarch, Mercury + + + + + (SPYK) C8 Laviolette, Spyker Motorcars; (SPYK) C8 Spyder, Spyker Motorcars + + + + + (SIM) Aronde, Simca; (SUZI) Aerio, Suzuki + + + + + (SANG) CM600S, Sangyong + + + + + (RENA) R-16, Renault + + + + + (TOYT) T-150, Toyota + + + + + (SUZI) Sidekick, Suzuki + + + + + (VOLK) The Thing, Volkswagen + + + + + (MG) MGB, MG + + + + + (DAIH) Rocky, Daihatsu + + + + + (CHRY) Crossfire, Chrysler + + + + + (FORD) Econoline E150, Ford (see English, French, German, and Italian Ford) + + + + + (SUBA) Loyale, Subaru + + + + + Trailers + + + + + (BMW) 740, BMW; (VOLV) 740 Series, Volvo + + + + + (LINC) Mark III, Lincoln-Continental; (VANG) Mark III, Vanguard (Canada) + + + + + (DODG) Caravan, Dodge; (CHRY) Caravan, Chrysler + + + + + (FERR) 308, Ferrari + + + + + (SCIO) XB, Scion + + + + + (SANG) Jeep, Sangyong + + + + + (NISS) Altima, Nissan + + + + + (BUIC) Roadmaster, Buick; (CLEN) Roadster, Clenet Coach Works; (DECO) Roadster, DeCourville + + + + + (BESA) Baci, Besasie Automobile Co., Inc. + + + + + (OLDS) Firenza, Oldsmobile + + + + + (FORD) Maverick, Ford (see English, French, German, and Italian Ford) + + + + + (ALFA) Montreal, Alfa Romeo; (CHEV) Monza, Chevrolet; (DODG) Monaco, Dodge; (FERR) Mondial, Ferrari; (MERC) Monterey, Mercury; (METE) Montcalm, Meteor (Canadian Mercury); (MITS) Montero/Montero Sport, Mitsubishi + + + + + (JAGU) 3.8 Litre, Jaguar + + + + + (TOYT) Yaris, Toyota + + + + + (CHEV) Camaro, Chevrolet; (PLYM) Cambridge, Plymouth; (ROL) Camargue, Rolls-Royce; (TOYT) Camry, Toyota + + + + + (MAZD) MX6, Mazda + + + + + (CLND) 244X, Cross Lander + + + + + (CHRY) Concorde, Chrysler + + + + + (MERZ) C36, Mercedes-Benz + + + + + (VOLV) V50 (Sport Wagon), Volvo + + + + + (FORD) Taurus, Ford (see English, French, German, and Italian Ford) + + + + + (MERZ) SLR McLaren, Mercedes-Benz + + + + + (CHEV) Equinox, Chevrolet + + + + + (SAA) 93 & 93B, Saab + + + + + (HOND) Odyssey (minivan), Honda + + + + + (CHEV) Cavalier, Chevrolet; (PACK) Cavalier, Packard; (TOYT) Cavalier, Toyota + + + + + (BMW) Z3, BMW + + + + + (RENA) R-5, Renault + + + + + (FORD) Festiva, Ford (see English, French, German, and Italian Ford) + + + + + (CADI) Escalade, Cadillac; (ENGF) Escort, English Ford (British); (FORD) Escort, Ford (see English, French, German, and Italian Ford) + + + + + (DODG) Meadowbrook, Dodge + + + + + (FERR) Enzo, Ferrari + + + + + (DETO) Deauville, DeTomaso + + + + + (VOLK) Golf, Volkswagen + + + + + (ENCR) M151, Encore + + + + + (MERC) Bobcat, Mercury + + + + + (BMW) 533i, BMW + + + + + (USEL) Lectric Leopard, U.S. Electricar Corp. + + + + + (KIA) Opirus, KIA + + + + + (PEUG) 304, Peugeot + + + + + (HYUN) Sonata, Hyundai; (GMC) Sonoma, General Motors Corp.; (SAA) Sonnet, Saab + + + + + (MERZ) CLK500, Mercedes-Benz + + + + + (AUDI) A6, Audi + + + + + (HOND) S2000, Honda + + + + + (CREL) Sparrow, Corbin Motors (electric vehicles) + + + + + (CADI) Catera, Cadillac; (PONT) Catalina, Pontiac + + + + + (DETO) Longchamp, DeTomaso + + + + + (FORD) Falcon, Ford (see English, French, German, and Italian Ford) + + + + + (HOND) Passport, Honda; (TOYT) Paseo, Toyota; (VOLK) Passat, Volkswagen + + + + + (MASE) GTI Series, Maserati; (VOLK) GTI, Volkswagen + + + + + (VOLK) Quantum, Volkswagen + + + + + (FORD) XL, Ford (see English, French, German, and Italian Ford) + + + + + (ACUR) Vigor, Acura + + + + + (FIAT) Brava, Fiat + + + + + (PORS) 914, Porsche + + + + + (SPEC) Dune Buggies + + + + + (MG) Mark II, MG + + + + + Milan + + + + + (VOLV) XC90, Volvo + + + + + (SUBA) Leone GL Coupe, Subaru + + + + + (TOYT) Tundra, Toyota + + + + + (STRN) Vue, Saturn + + + + + (JAGU) Mark Ten Salon, Jaguar + + + + + (BMW) 320i, BMW; (MERZ) 320 Series, Mercedes-Benz + + + + + (PORS) Targa, Porsche + + + + + (FORD) Club Wagon E250, Ford (see English, French, German, and Italian Ford) + + + + + (SUZI) Forenza (S, EX, LX), Suzuki + + + + + (FORD) Explorer Sport Trac, Ford (see English, French, German, and Italian Ford) + + + + + (TOYT) Previa, Toyota + + + + + (DESO) Adventurer, DeSoto + + + + + (FORD) Mustang, Ford (see English, French, German, and Italian Ford) + + + + + (CHRY) Fifth Avenue, Chrysler + + + + + (OLDS) 98, Oldsmobile + + + + + (GZL) Rage (sport utility), Gazelle + + + + + (BMW) M3, BMW + + + + + (FORD) Torino (Fairlane), Ford (see English, French, German, and Italian Ford); (OLDS) Toronado, Oldsmobile; (PONT) Torrent, Pontiac + + + + + (CHEV) Corvette, Chevrolet + + + + + (BMW) 750iL, BMW + + + + + (LEXS) GX470, Lexus + + + + + (CHRY) Voyager, Chrysler; (MERC) Voyager, Mercury; (PLYM) Voyager, Plymouth + + + + + (TOYT) RAV4 (sport utility), Toyota + + + + + (FIAT) 850 Fastback, Fiat + + + + + (ALFA) Duetto, Alfa Romeo + + + + + (ASTO) DB-6, Aston Martin + + + + + (DODG) Ram 3500 (van), Dodge + + + + + (VOLV) GLE, Volvo + + + + + (CHEV) Townsman, Chevrolet; (CHRY) Town & Country, Chrysler; (LINC) Town Car, Lincoln-Continental + + + + + (OLDS) Aurora, Oldsmobile; (STRN) Aura, XE, XR, Saturn + + + + + (BERO) Palinuro, Bertone + + + + + (JAGU) V12, Jaguar + + + + + (ISU) Stylus, Isuzu; (JAGU) S-Type, Jaguar; (CHEV) Style Line, Chevrolet + + + + + (MASE) Biturbo, Maserati + + + + + (MERZ) E430, Mercedes-Benz + + + + + (AUST) A55, Austin + + + + + (LAMO) LM129, Lamborghini + + + + + (DAIH) Charade, Daihatsu; (DODG) Charger (and Shelby Charger), Dodge; (GAZ) Chaika, GAZ; (MITS) Chariot, Mitsubishi; (PLYM) Champ (imported), Plymouth; (SIN) Chamois, Singer; (STU) Challenger, Studebaker + + + + + (VOLV) S70, Volvo + + + + + (CADI) Touring Sedan, Cadillac + + + + + (STLG) 827, Sterling + + + + + (SHEB) CSX, Shelby American; (ACUR) CSX, Acura + + + + + (ALFA) 164, Alfa Romeo; (VOLV) 164 Series, Volvo + + + + + (HYUN) Entourage, Hyundai + + + + + (TVR) Tuscan, TVR + + + + + (BMW) 325i, BMW + + + + + (VOLV) GLT, Volvo + + + + + (OPEL) Olympia, Opel (imported by Buick) + + + + + (FERR) F355, Ferrari; (FORD) F350, Ford (see English, French, German, and Italian Ford) + + + + + (MERZ) ML55, Mercedes-Benz + + + + + (SUZI) Vitara, Suzuki; (TRIU) Vitesse, Triumph + + + + + (AUDI) 100, Audi; (AUHE) 100 Series, Austin-Healy; (DODG) A 100 Compact, Dodge; (ENGF) 100 E Series, English Ford (British); (NSU) 1000, Nsu Prinz; (SIM) 1000 & 1000GL, Simca; (SUBA) 100 Series, Subaru + + + + + Grand Marquis + + + + + (BERO) X19, Bertone; (FIAT) X19, Fiat + + + + + (LINC) Mark VII, Lincoln-Continental + + + + + (ISU) Ascender, Isuzu + + + + + (TOYT) 4-Runner, Highlander (4Runner), Toyota + + + + + (CHEV) Celebrity, Chevrolet + + + + + (CHRY) PT Cabrio, Chrysler + + + + + (BUIC) Park Avenue, Buick; (ROL) Park Ward, Rolls-Royce + + + + + RL + + + + + (MORR) Oxford, Morris + + + + + (AUST) Westminster, Austin + + + + + (SNOW) Skis and Wheels, Snowmobiles + + + + + (FERR) Testarossa, Ferrari + + + + + (AMER) Rambler Rogue, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (FORD) Nevada, Ford (see English, French, German, and Italian Ford) + + + + + (JEEP) Grand Cherokee, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) Grand Cherokee, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) Grand Cherokee, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (FIAT) Uno, Fiat + + + + + (HYUN) Steilar, Hyundai; (DODG) Stealth, Dodge + + + + + (ISU) VehiCross, Isuzu + + + + + (BMW) 535 Series, BMW + + + + + (DODG) Polara, Dodge; (VOLK) Polo, Volkswagen + + + + + (BMW) 645, BMW + + + + + (BMW) 750, BMW; (FIAT) 750, Fiat; (RENA) 750, Renault; (BMW) 750i, BMW; (BMW) 750L, BMW + + + + + (DATS) 260Z, Datsun; (MERZ) 260 Series, Mercedes-Benz; (VOLV) 260 Series, Volvo + + + + + (DODG) Magnum, Dodge; (MG) Magnette, MG + + + + + (NISS) Pulsar, Nissan + + + + + (AUDI) 850, Audi; (AUST) 850, Austin; (BMW) 850i, BMW; (MORR) 850 Series, Morris; (VOLV) 850 Series, Volvo + + + + + (CHEV) Lumina, Chevrolet + + + + + (FERR) Tipo, Ferrari + + + + + (DODG) Aries, Dodge + + + + + FJ Cruiser + + + + + (MITS) 3000 GT, Spyder 3000 GT, Mitsubishi + + + + + (HUDS) Pacemaker, Hudson; (AMER) Pacer, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (EDSE) Pacer, Edsel + + + + + (CITR) SM, Citroen + + + + + (MORG) Plus 4 Series, Morgan + + + + + (ALFA) 2600 Spider, Alfa Romeo + + + + + (DODG) Dynasty, Dodge; (OLDS) Dynamic 88, Oldsmobile; (CHRY) Dynasty, Chrysler + + + + + (CHEV) Matiz, Chevrolet; (PONT) Matiz, Pontiac + + + + + (MERZ) C43, Mercedes-Benz + + + + + (CADI) SRX, Cadillac + + + + + (BUIC) Centurion, Buick; (FORD) Contour, Ford (see English, French, German, and Italian Ford) + + + + + (PONT) Vibe (sport wagon), Pontiac + + + + + (JAGU) X-Type, Jaguar + + + + + (AUDI) 5000, Audi; (MASE) 5000 (series), Maserati; (FORD) Five Hundred (500), Ford; (MERZ) CLS500, Mercedes Benz; (MERZ) S500, Mercedes - Benz + + + + + RX400 or RX400H (Hybrid) + + + + + (CHEV) Tracker (beginning vehicle year 1998), Chevrolet; (GEO) Tracker, GEO + + + + + (VOLV) S60, Volvo + + + + + (ASTO) Lagonda, Aston Martin + + + + + (CADI) 75 Series, Cadillac; (ROV) Rover 75, Rover + + + + + (SUNB) Rapier, Sunbeam + + + + + (JAGU) XJC, Jaguar + + + + + (FERR) F40, Ferrari + + + + + (CHEV) Tahoe, Chevrolet + + + + + (BMW) 600, BMW; (DODG) 600, Dodge; (FIAT) 600D, Fiat; (MERZ) 600 Series, S600, Mercedes-Benz; (PONT) 6000, Pontiac + + + + + (MERZ) E420, Mercedes-Benz + + + + + (AERO) Sailplane (Glider); (CHRY) Salon, Chrysler + + + + + (BORG) Biscayne, Borgward; (CHEV) Biscayne, Chevrolet + + + + + (PLYM) Road Runner, Plymouth + + + + + (FORD) Think Neighbor (Elec. Veh. Model Year 2002), Ford + + + + + (MAZD) B2500, Mazda + + + + + (DESO) Powermaster, DeSoto + + + + + (VOLV) PV544, Volvo + + + + + (CHRY) Windsor, Chrysler; (FORD) Windstar, Ford (see English, French, German, and Italian Ford) + + + + + (CHEV) Astro Van, Chevrolet; (OPEL) Astra, Opel (imported by Buick); (PONT) Astre, Pontiac + + + + + (CHRY) TC, Chrysler; (SCIO) TC, Scion + + + + + (BUIC) Terraza, Buick + + + + + (BUIC) Limited, Buick; (CHRY) Limousine, Chrysler; (PANE) Lima, Panther Westwinds, Ltd. + + + + + (PEUG) 203, Peugeot + + + + + (OPEL) Kadette, Opel (imported by Buick) + + + + + (VAUX) Velox, Vauxhall + + + + + (CHEV) El Camino, Chevrolet + + + + + (INFI) J30, Infiniti + + + + + (PLYM) Scamp (Valiant), Plymouth + + + + + (FIAT) Punto, Fiat + + + + + (ASUN) SE, Asuna; (NISS) SE-V6, Nissan + + + + + (MASE) 425, Maserati + + + + + (MERZ) E55, Mercedes-Benz; (FORD) Econoline E-550, Ford + + + + + (BMW) 525ia, BMW; (BMW) 525i, BMW + + + + + (TOYT) MR2, Toyota + + + + + (SUBA) SVX, Subaru + + + + + (JEEP) Cherokee, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) Cherokee, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) Cherokee, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (HUDS) Commodore, Hudson; (JEEP) Comanche, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) Comanche, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) Comanche, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (CHRY) Commander, Chrysler; (COMV) Comuta-Car, Commuter Vehicles, Inc.; (DODG) Compact Sportsman, Dodge; (FREF) Comete, French Ford; (MERC) Comet, Mercury; (STU) Commander, Studebaker + + + + + (ENGF) Cortina, English Ford (British) + + + + + (DODG) Diplomat, Dodge + + + + + (MERC) Nautica Villager, Villager Minivan, Mercury + + + + + (CITR) DS-21 & D21, Citroen + + + + + (HUDS) Hornet, Hudson; (AMER) Hornet, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (PLYM) Horizon (also TC3), Plymouth + + + + + (ASTO) Saloon (Virage), Virage (Saloon), Aston Martin + + + + + (DATS) Honey Bee, Datsun + + + + + (MASE) Merak, Maserati + + + + + (FORD) Econoline E250, Ford (see English, French, German, and Italian Ford) + + + + + (LINC) LS8, Lincoln-Continental + + + + + (INTL) Scout, International Harvester + + + + + (CHEV) S10, Chevrolet + + + + + (RENA) R-10, Renault + + + + + (BUIC) Special, Buick; (CHEV) Spectrum, Chevrolet; (FORD) Special, Ford (see English, French, German, and Italian Ford) + + + + + (TRIU) 1250, Triumph + + + + + (DAEW) Korando, Daewoo + + + + + (CHEV) Metro (beginning vehicle year 1998), Chevrolet; (GEO) Metro, GEO; (NASH) Metropolitan, Nash + + + + + (AUDI) Cabriolet, Audi; (BERO) Cabrio, Bertone; (GMC) Cabellero, General Motors Corp.; (PORS) Cabriolet, Porsche; (VOLK) Cabriolet, Volkswagen + + + + + (FERR) 512, Ferrari + + + + + (MERZ) 219 Series, Mercedes-Benz + + + + + (PLYM) Fury (also Grand Fury), Plymouth + + + + + (HYUN) Avatar, Hyundai; (AUDI) Avant, Audi; (CHEV) Avalanche, Chevrolet; (NSU) Auto Nova, Nsu Prinz; (STU) Avanti, Studebaker; (TOYT) Avalon, Toyota; (LINC) Aviator, Lincoln + + + + + (CHEV) 210 Series, Chevrolet; (DATS) 210 (or B-210), B-210 (or 210), Datsun + + + + + (FORD) Ranger (pickup), Ford (see English, French, German, and Italian Ford) + + + + + (PONT) SSE, Pontiac + + + + + (MORR) Mini Series, Morris; (TOYT) Mark II, Toyota + + + + + (ISU) Axiom, Isuzu + + + + + (HUDS) Rambler, Hudson; (NASH) Rambler, Nash + + + + + (BMW) Isetta, BMW + + + + + (BENT) Brooklands, Bentley; (CADI) Brougham, Cadillac; (FORD) Bronco/Bronco II, Ford (see English, French, German, and Italian Ford); (MERC) Brougham, Mercury + + + + + (FORD) Escape, Ford (see English, French, German, and Italian Ford) + + + + + (VAUX) Firenza, Vauxhall + + + + + (LOTU) Elan, Lotus + + + + + (ROL) Silver Dawn, Rolls-Royce + + + + + (JENS) Healy, Jensen + + + + + (PLYM) Satellite, Plymouth + + + + + (MAZD) RX8, Mazda + + + + + (RENA) Le Car, Renault + + + + + (MAZD) B2000, Mazda + + + + + (VOLV) V70, Volvo + + + + + (SOLE) Citi Van, Solectria + + + + + (BUIC) GS455, Buick; (LEXS) GS450h, Lexus + + + + + (EXCL) SSK, Excalibur + + + + + 612 Scaglietti + + + + + (TRIU) TR-4 & TR-4A, Triumph + + + + + STS (Badged Separately Beginning 7/2003) + + + + + (BMW) 745i, BMW; (VOLV) 745 Series, Volvo + + + + + (FORD) LTD II, Ford (see English, French, German, and Italian Ford) + + + + + (FREF) Vedette, French Ford; (SIM) Vedette, Simca + + + + + (MERZ) 450 Series, Mercedes-Benz + + + + + Vanquish, Vanquish S + + + + + (CHEV) Corsa (Corvair), Corvair, Chevrolet + + + + + (BMW) 2.8, BMW + + + + + (AUDI) 90, Audi + + + + + (HOND) EVPLUS, Honda + + + + + (PLYM) Sapporo (imported), Plymouth + + + + + (HOND) Pilot, Honda + + + + + (ROL) Silver Cloud, Rolls-Royce + + + + + (MONA) Lucerne, Monarch; (BUIC) Lucerne, Buick + + + + + (BUIC) Somerset, Buick + + + + + (INFI) FX45, Infiniti + + + + + (ALFA) Giulia, Alfa Romeo + + + + + (PONT) Trans Sport/Transport, Pontiac; (VOLK) Transporter, Volkswagen + + + + + (KAIS) Darrin, Kaiser; (DODG) Dart, Dodge + + + + + (BUGA) EB110, Bugatti + + + + + (AMER) Alliance, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (JEEP) Liberty, Jeep + + + + + (PONT) Aztek, Pontiac + + + + + (TOYT) Solara, Toyota; (PONT) Solstice, Pontiac + + + + + (JEEP) Compass, Jeep + + + + + (MAZD) B2300, Mazda + + + + + (CHRY) Executive Sedan, Chrysler; (PONT) Executive, Pontiac + + + + + (MERC) S-22, Mercury + + + + + (OLDS) Delta 88, LSS (Delta 88), Royale, Oldsmobile + + + + + (STU) Lark Series, Studebaker + + + + + (ISU) Rodeo, Isuzu; (DLHY) Roadster, Delahaye; (LAMO) Roadster, Lamborghini; (PANZ) Roadster, Panoz Auto Development Co.; (BRSH) Roadster, Brush (antique vehicles); (SHEB) Roadster, Shelby + + + + + (SAA) 99, Saab + + + + + (AVTI) Series A, Avanti + + + + + (PANE) Killeta, Panther Westwinds, Ltd. + + + + + (STRN) SL, Saturn + + + + + (HILL) Husky, Hillman + + + + + (JAGU) 340, Jaguar + + + + + (LAMO) Jalpa, Lamborghini + + + + + (MERC) Breezeway, Mercury + + + + + (CHEV) Sportvan, Chevrolet; (ENCR) Sport, Encore; (KIA) Sportage (sport utility), Kia Motors Corp.; (SUBA) Outback Sport (station wagon), Subaru + + + + + (FORD) Thunderbird, Ford (see English, French, German, and Italian Ford); (MODE) 1955 Thunderbird, Model A and Model T Motor Car Reproduction Corp. + + + + + (VANG) Ensign, Vanguard (Canada) + + + + + (ISU) I-Mark, Isuzu + + + + + (CHEV) Silverado, Chevrolet + + + + + (MERC) Colony Park, Mercury + + + + + (FORD) ZX2, Ford + + + + + (MG) MGB/GT, MG + + + + + (SUBA) Fe, Subaru + + + + + (PORS) 924, Porsche + + + + + (CITR) AX, Citroen + + + + + (BMW) 328is, BMW; (FERR) 328, Ferrari + + + + + (BMW) 633csi, BMW + + + + + (DATS) 240Z, Datsun + + + + + (JEEP) J-10, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) J-10, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) J-10, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (TRIU) TR-3 & TR-3A, Triumph + + + + + (INFI) Q45, Infiniti + + + + + (CHRY) Lido, Chrysler + + + + + (FORD) Club Wagon E150, Ford (see English, French, German, and Italian Ford) + + + + + (MAZD) B3000, Mazda + + + + + (MERC) Caliente, Mercury; (PACK) Clipper, Packard + + + + + (CHRY) Grand Voyager, Chrysler + + + + + (SAA) GT 750, Saab + + + + + (BMW) 733 Series, BMW + + + + + (SUZI) Verona, Suzuki + + + + + (CHEC) Aerobus, Checker; (FORD) Aerostar, Ford (see English, French, German, and Italian Ford) + + + + + Elise + + + + + (MAZD) B4000, Mazda + + + + + (RENA) Fuego, Renault + + + + + (LINC) Blackwood, Lincoln + + + + + (MASE) Mistrell, Maserati; (MAZD) Miser (piston engine), Mazda + + + + + (STRN) SW, Saturn + + + + + (MAZD) GLC ("Great Little Car"), Mazda + + + + + (INTL) Travelall, International Harvester + + + + + (CHEV) Chevette, Chevrolet + + + + + Mariner + + + + + (OLDS) Jetstar, Oldsmobile + + + + + (GMC) Syclone, General Motors Corp. + + + + + (CHEC) Superba, Checker + + + + + (FORD) Mainline, Ford (see English, French, German, and Italian Ford) + + + + + (BENT) Azure, Bentley + + + + + (CHRY) Imperial (for vehicle years prior to 1955 and for vehicle years 1990-1993; for 1955-1983, see make Imperial), Chrysler + + + + + (BENT) Mulsanne, Bentley; (ROL) Mulsanne, Rolls-Royce + + + + + (PONT) Bonneville, Pontiac + + + + + (JAGU) XKR, Jaguar + + + + + (ROV) Rover 25, Rover + + + + + (BORG) Hansa, Borgward + + + + + (CADI) Seville, Cadillac + + + + + (INFI) QX4, Infiniti + + + + + (PORS) 928, Porsche + + + + + (HUDS) Deluxe, Hudson; (KAIS) Deluxe, Kaiser; (CHEV) Del Ray, Chevrolet; (DESO) Deluxe, DeSoto; (DODG) Deluxe, Dodge; (FORD) Deluxe, Ford (see English, French, German, and Italian Ford); (HILL) Deluxe, Hillman; (MORR) Deluxe, Morris; (OLDS) Deluxe, Oldsmobile; (PONT) Deluxe, Pontiac; (RAMB) Deluxe, Rambler (mfd. prior to 1966; 1966 and later Ramblers - see make American Motors); (SUNB) Deluxe, Sunbeam; (VANG) Deluxe, Vanguard (Canada) + + + + + (BMW) 1600, BMW; (HILL) 1600 Series, Hillman; (MG) 1600, MG; (PORS) 1600, Porsche; (SUBA) 1600 Series, Subaru + + + + + (MERZ) ML430, Mercedes-Benz + + + + + (GMC) Sprint (VMA/GMSP for reference only), General Motors Corp. + + + + + (AMER) Matador, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (BUIC) Riviera, Buick + + + + + (CHEV) Caprice, Chevrolet; (ENGF) Capri, English Ford (British); (MERC) Capri (1979 and later), Mercury + + + + + (DODG) Phoenix, Dodge; (PONT) Phoenix, Pontiac + + + + + (MERZ) CLK430, Mercedes-Benz + + + + + (CHRY) Royal, Chrysler; (DODG) Royal, Dodge + + + + + (AUST) A40, Austin + + + + + (PANE) J72, Panther Westwinds, Ltd. + + + + + (NISS) X-Terra, Nissan + + + + + (DESO) Firedom, DeSoto + + + + + (AMER) Concord, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (BENT) Continental Convertible, Bentley; (CADI) Concours, Cadillac; (CHRY) Conquest (vehicle year 1987 and later), Chrysler; (DODG) Conquest (vehicle year 1986 only), Dodge; (ENGF) Consul, English Ford (British); (LINC) Continental, Lincoln-Continental + + + + + (OLDS) Holiday, Oldsmobile + + + + + (MERZ) C280, Mercedes-Benz + + + + + (VOLK) Squareback, Volkswagen + + + + + (ASUN) Sunrunner, Asuna; (VOLK) Sunroof, Volkswagen + + + + + (ALFA) GT Veloce, Alfa Romeo + + + + + (KAIS) Carolina, Kaiser; (OPEL) Caravan, Opel (imported by Buick); (PACK) Caribbean, Packard; (PORS) Carrera, Porsche; (TOYT) Carina, Toyota + + + + + (FIAT) Ulysse, Fiat + + + + + (PORS) Boxter 986, Porsche + + + + + (CHEV) Parkwood, Chevrolet; (MERC) Parklane, Mercury; (PONI) Parisienne, Pontiac (Canadian) (Also see make Pontiac); (PONT) Parisienne, Pontiac + + + + + (CHEC) Marathon, Checker + + + + + (FORD) Expedition, Ford (see English, French, German, and Italian Ford) + + + + + (ACUR) TL, Acura + + + + + (MAZD) RX7 (rotary engine), Mazda + + + + + (MG) MGC, MG + + + + + (DODG) Neon, Dodge; (PLYM) Neon, Plymouth + + + + + (HYUN) Santa Fe, Hyundai + + + + + (JAGU) 4.2 Litre, Jaguar + + + + + (JAGU) XK-E Series, Jaguar + + + + + (FORD) Tempo, Ford (see English, French, German, and Italian Ford); (PONI) Tempest, Pontiac (Canadian) (Also see make Pontiac) + + + + + (BREM) Laufer, Bremen Sport Equipment, Inc. (Bremen, IN); (PONI) Laurentian, Pontiac (Canadian) (Also see make Pontiac) + + + + + (LINC) Mark VIII, Lincoln-Continental + + + + + (CHEV) Vega, Chevrolet + + + + + (VOLV) 940, Volvo + + + + + (DESO) Firelite, DeSoto + + + + + (CONU) GTP, Consulier + + + + + (DODG) Ram 1500 (van), Dodge + + + + + Farm and Garden Equipment + + + + + (AUDI) S6, Audi + + + + + (SUBA) RX, Subaru + + + + + (MERZ) SLK230, Mercedes-Benz + + + + + (VOLV) C70, Volvo + + + + + (JAGU) XJS, Jaguar + + + + + (LADA) Niva, Lada (imported from USSR) + + + + + (LEXS) LX450 (luxury sport utility), Lexus + + + + + Ridgeline + + + + + (AUST) 1800, Austin; (BMW) 1800, BMW; (MERZ) 180 Series, Mercedes-Benz; (VOLV) 1800 Series, Volvo + + + + + (SUZI) SX4, Suzuki + + + + + (TRIU) Sport "6", Triumph + + + + + (FORD) Pinto, Ford (see English, French, German, and Italian Ford) + + + + + Motorcycles + + + + + (MERC) Cyclone, Mercury + + + + + (FORD) Model A, Ford (see English, French, German, and Italian Ford) + + + + + (OLDS) Achieva, Oldsmobile + + + + + (MESS) KR200, Messerschmitt + + + + + (SUBA) GLF, Subaru + + + + + (BMW) TI, BMW + + + + + (JEEP) Wagoneer, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) Wagoneer, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) Wagoneer, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (STU) Wagonaire, Studebaker + + + + + (VOLV) V90, Volvo + + + + + (ITAF) Anglia, Italian Ford; (ENGF) Anglia, English Ford (British) + + + + + (TOYT) Hi-Lux, Toyota + + + + + (NISS) Versa, Nissan + + + + + (MERZ) C240, Mercedes-Benz + + + + + Wave + + + + + (BUIC) GS350, Buick; (SHEB) Cobra GT350, Shelby American; (INFI) G35, Infiniti + + + + + (LEXS) GS300, Lexus + + + + + (ALFA) Berlina, Alfa Romeo; (BORG) Beretta, Borgward; (CHEV) Beretta, Chevrolet; (LNCI) Berlina, Lancia; (SIM) Bertone, Simca + + + + + (LEXS) IS300, Lexus + + + + + (BENT) Eight, Bentley + + + + + (HYUN) Scoupe, Hyundai; (HILL) Sceptre, Hillman; (MONA) Sceptre, Monarch + + + + + (AUDI) 80 LS (Fox), Audi; (VOLK) Fox, Volkswagen + + + + + (MITS) Tredia, Mitsubishi + + + + + Micra + + + + + (LINC) Mark IV, Lincoln-Continental; (ROV) Mark IV, Rover + + + + + (ALFA) Alfa GT6, Alfa Romeo + + + + + (KAIS) Manhattan, Kaiser; (OPEL) Manta, Opel (imported by Buick); (QVAL) Mangusta, Qvale Automotive Group + + + + + (SIN) Vogue, Singer + + + + + (BUIC) Le Sabre, Buick + + + + + (CADI) CTS, Cadillac + + + + + (FIAT) 131 Series, Fiat + + + + + (AUDI) Super 90, Audi; (VOLV) S90, Volvo + + + + + (MG) Princess 4-R, MG + + + + + Tucson + + + + + Mark LT + + + + + (AERO) Ultralights + + + + + (NISS) ALTRA-EV, Nissan + + + + + (PONI) Grand Parisienne, Pontiac (Canadian) (Also see make Pontiac) + + + + + (ACAD) Canso Series, Acadian (GM of Canada) + + + + + (KIA) Amanti, Kia Motors Corp. + + + + + (VOLK) Touareg, Volkswagen + + + + + (LEXS) SC300, Lexus + + + + + (ISU) Hombre (pickup), Isuzu + + + + + (SAA) 96, Saab + + + + + (CHEV) Trail Blazer, Chevrolet + + + + + (BMW) 630csi, BMW + + + + + (OPEL) Diplomat, Opel (imported by Buick) + + + + + (FERR) 456GT, Ferrari + + + + + (EXCL) SS Phaeton, Excalibur; (ROL) Silver Spirit, Rolls-Royce + + + + + (DODG) Seneca, Dodge; (NISS) Sentra, Nissan + + + + + (BUIC) Wildcat, Buick + + + + + Mazda 5 (Five) + + + + + (FORD) Ranch, Ford (see English, French, German, and Italian Ford) + + + + + (JEEP) CJ-6, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) CJ-6, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) CJ-6, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (EXCL) Cobra, Excalibur; (FORD) Cobra (also see make Shelby American), Ford (see English, French, German, and Italian Ford); (VOLV) Combi, Volvo + + + + + (SPEC) Go-Carts + + + + + (MG) 1100, MG + + + + + (ZCZY) Yugo (series), Zastavia (ZCZ-Yugoslavia) + + + + + (LNCI) Flaminia, Lancia + + + + + (LAMO) Silhouette, Lamborghini + + + + + (BMW) 318ti, BMW + + + + + (FORD) LTD, Ford (see English, French, German, and Italian Ford) + + + + + (BMW) M6, BMW + + + + + (METE) Lemoyne, Meteor (Canadian Mercury); (PONT) LeMans, Pontiac + + + + + (BMW) 850Ci, BMW + + + + + (FORD) F550, Ford (see English, French, German, and Italian Ford) + + + + + (AUDI) A2, Audi + + + + + (DODG) Aspen, Dodge; (FORD) Aspire, Ford (see English, French, German, and Italian Ford); (CHRY) Aspen, Chrysler + + + + + (CADI) 61 Series, Cadillac + + + + + (AMER) Rebel, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (LNDR) Discovery, Land Rover + + + + + (ENGF) Squire, English Ford (British); (FORD) Squire (Falcon or Fairlane), Ford (see English, French, German, and Italian Ford) + + + + + (ACAD) Invader Series, Acadian (GM of Canada); (BUIC) Invicta, Buick + + + + + (VOLK) Touran, Volkswagen + + + + + (VOLK) Scirocco, Volkswagen + + + + + (FORD) Crown Victoria, Ford + + + + + (BUIC) Century, Buick + + + + + (EGIL) Vision, Eagle; (OLDS) Vista Cruiser, Oldsmobile + + + + + (PONT) Tempest GT0, Pontiac + + + + + (CHEV) Chevelle, Concours (Chevelle only), Deluxe (Chevelle), Greenbrier (Chevelle), Nomad (Chevelle), Chevrolet + + + + + (FIAT) 124 Series, Fiat + + + + + (GMC) Typhoon, General Motors Corp.; (RAMB) Typhoon, Rambler (mfd. prior to 1966; 1966 and later Ramblers - see make American Motors) + + + + + (DATS) 1200, Datsun; (FIAT) 1200, Fiat; (SIM) 120, Simca; (TRIU) 1200, Triumph; (VOLK) 1200, Volkswagen + + + + + (CHEV) Nova (Chevy II & Concours), Chevrolet + + + + + (PLYM) GTX, Plymouth + + + + + (FERR) 206, Ferrari + + + + + (LNCI) Beta Series, Lancia + + + + + (DATS) 810, Datsun + + + + + (ENVY) Epic, Envoy; (CHEV) Epica, LS & LT, Chevrolet + + + + + (KAIS) Dragon, Kaiser + + + + + (BMW) 200, BMW + + + + + (ENGF) Lotus, English Ford (British) + + + + + (PONT) Sunfire, Pontiac + + + + + (SUBA) XT6, Subaru + + + + + (EGIL) Talon, Eagle; (TLCC) Talbo, TLC Carrossiers; (TLCC) Talbo Lago, TLC Carrossiers + + + + + (EXCL) JAC 427 Cobra, Excalibur + + + + + (AUDI) V-8, Audi + + + + + (FORD) Econoline 100, Ford (see English, French, German, and Italian Ford); (TOYT) Echo, Toyota + + + + + (CADI) Cimarron, Cadillac + + + + + Gran Sport + + + + + (ALFA) Giulia Spider, Alfa Romeo + + + + + (BMW) 3.0 Si, BMW + + + + + (NISS) Axxess, Nissan + + + + + (ROL) Silver Shadow, Rolls-Royce + + + + + (AUST) Cooper "S", Austin + + + + + (VACR) M12 (sport coupe), Vector Aeromotive Corp. + + + + + (INFI) I35, Infinit + + + + + (LEXS) RX330, Lexus + + + + + (FORD) F450, Ford (see English, French, German, and Italian Ford) + + + + + (SPEC) Golf Carts + + + + + (AMER) Sportabout, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (BUIC) Sportswagon, Buick; (VOLV) Sport, Volvo + + + + + (NISS) Frontier, Nissan + + + + + (CITR) AM16, Citroen + + + + + (PONT) G6, Pontiac + + + + + (FIAT) 1500, Fiat; (PORS) 1500, Porsche; (VOLK) 1500, Volkswagen + + + + + (TRIU) TR8, Triumph + + + + + (DODG) Colt (imported), Dodge; (PLYM) Colt (Canadian), Plymouth + + + + + (DODG) Omni (also 024), Dodge + + + + + (PLYM) Reliant, Plymouth + + + + + DTS (Replaced DeVille Model Name) + + + + + (JAGU) XJ, Jaguar + + + + + (AUDI) 2000 TT-Coupe, 2000 TT-Roadster, Audi + + + + + (AUDI) A8, Audi + + + + + Spyder + + + + + (BMW) 550i, BMW + + + + + (STLG) 825, Sterling; (GLBL) E825, Global Electric Motorcars + + + + + (EGIL) Summit, Eagle + + + + + C55, CLS55 + + + + + (MERZ) CLK320, Mercedes-Benz + + + + + (PONT) T-1000, Pontiac; (TOYT) T-100, Toyota + + + + + (FORD) F650 Super Crew, Ford + + + + + CL65 + + + + + (OPEL) Rekord, Opel (imported by Buick) + + + + + (CHRY) Cirrus, Chrysler + + + + + (DAEW) Nubira, Daewoo + + + + + (DKW) Vemag, DKW + + + + + (TOYT) Tercel, Toyota + + + + + (PLYM) Cricket (imported), Plymouth + + + + + (DODG) 880 Series, Dodge + + + + + (PONT) Pursuit, Pontiac + + + + + (LNDR) Freelander, Land Rover; (FORD) Freestar, Ford + + + + + (LAMO) Miura SV, Lamborghini + + + + + (LEXS) GS400, Lexus + + + + + (BORG) Bel Air, Borgward; (CHEV) Bel Air, Chevrolet; (PLYM) Belvedere, Plymouth + + + + + (BMW) 520, BMW + + + + + (MERC) Commuter, Mercury + + + + + (ROV) 3 Litre, Rover + + + + + (CADI) 60 Series, Cadillac + + + + + (GMC) Denali, General Motors Corp. + + + + + (JEEP) CJ-8, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) CJ-8, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) CJ-8, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (PORS) 1300, Porsche; (SUBA) 1300 Series, Subaru; (TRIU) 1300, Triumph; (VOLK) 1300, Volkswagen + + + + + (FORD) Focus, Ford (see English, French, German, and Italian Ford) + + + + + (LEXS) LS430, Lexus + + + + + (SKOD) Octavia, Skoda + + + + + (KIA) Spectra, Kia Motors Corp. + + + + + (AMER) Rambler Classic, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (VAUX) Epic, Vauxhall + + + + + (JAGU) XK Series, Jaguar + + + + + L300 + + + + + (CHEV) Malibu Maxx + + + + + (LEXS) SC400, Lexus; (VOLV) S40, Volvo + + + + + (FORD) F-150XLT (has third door on passenger side), Ford (see English, French, German, and Italian Ford) + + + + + (DKW) Audi, DKW + + + + + (MG) MGC/GT, MG + + + + + (MERC) Mystique, Mercury + + + + + (BMW) 740i, BMW + + + + + (DODG) Durango, Dodge + + + + + (DODG) Pioneer, Dodge + + + + + (PEUG) 405, Peugeot + + + + + (INFI) M30, Infiniti + + + + + (CHEV) C/K 2500, Chevrolet + + + + + (RENA) R-17, Renault + + + + + (CITR) 2CV, Citroen + + + + + (CHEV) Chevy II, Chevrolet + + + + + Reno + + + + + (AMER) AMX, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (MERZ) CL600, Mercedes-Benz + + + + + (CHRY) Le Baron (for vehicle year 1978 or later), Chrysler + + + + + (FORD) Country Squire, Ford (see English, French, German, and Italian Ford); (PLYM) Conquest (vehicle years 1984-1986), Plymouth + + + + + (LAMO) Espada, Lamborghini; (LOTU) Esprit, Lotus; (PANZ) Esperante, Panoz + + + + + (DATS) 200SX, Datsun + + + + + (ENGF) Perfect, English Ford (British) + + + + + (PEUG) 403, Peugeot + + + + + (SUBA) DL, Subaru; (VOLV) DL, Volvo + + + + + (MITS) Mighty Max, Mitsubishi; (TOYT) Matrix (sport wagon), Toyota + + + + + (OLDS) Omega, Oldsmobile + + + + + (GMC) Envoy, General Motors Corp.; (VAUX) Envoy, Vauxhall + + + + + (MERC) Marauder, Mercury + + + + + (BENT) Turbo R, Bentley + + + + + (MERZ) 240 Series, Mercedes-Benz; (NISS) 240SX, Nissan; (VOLV) 240 Series, Volvo + + + + + Trucks (including heavy-duty trucks, buses, motorized homes, etc.) + + + + + (MAZD) 626, Mazda + + + + + (ALFA) GTV6 2.5, Alfa Romeo + + + + + SL65 + + + + + (RENA) Dauphine, Renault + + + + + (HOND) Civic (and CRX), Del Sol, Honda + + + + + (SUBA) GL, Subaru; (VOLV) GL, Volvo + + + + + (ASTO) DB-5, Aston Martin + + + + + (MAZD) 618, Mazda + + + + + (FORD) Explorer, Ford (see English, French, German, and Italian Ford) + + + + + (VOLK) Rabbit, Volkswagen + + + + + (MERZ) ML350, Mercedes-Benz; (INFI) M35, M35 Sport, M35 X, Infiniti + + + + + (MAZD) 808 Series (piston engine), Mazda + + + + + (MERZ) C230, Mercedes-Benz + + + + + (PONT) 2+2, Pontiac + + + + + (HYUN) Tiburon, Hyundai + + + + + (MERZ) Gelaendewagen (G-Wagen), Mercedes-Benz + + + + + (DODG) Stratus, Dodge; (FORD) Starliner, Ford (see English, French, German, and Italian Ford); (LINC) Standard, Lincoln-Continental; (MITS) Starion, Mitsubishi; (NASH) Statesman, Nash; (NISS) Stanza, Nissan; (OLDS) Starfire, Oldsmobile; (PONT) Star Chief, Pontiac; (PORS) Standard, Porsche; (SUBA) Standard, Subaru; (TOYT) Starlet, Toyota; (TRIU) Stag, Triumph + + + + + (IMPE) Le Baron (for vehicle year thru 1975), Imperial (for vehicle years 1955-1983, use VMA/IMPE; for vehicle years prior to 1955 and vehicle years 1990-1993, see make Chrysler) + + + + + (MERZ) G55, Mercedes-Benz + + + + + (PLYM) Cranbrook, Plymouth + + + + + (PEUG) 604, Peugeot + + + + + (ALFA) Spider Series, Alfa Romeo; (AMER) Spirit, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (DODG) Spirit, Dodge; (FIAT) Spider Series, Fiat; (NSU) Spider (Wankel), Nsu Prinz; (PINI) Spidereuropa, Pinifarina; (TRIU) Spitfire, Triumph + + + + + Armada (Formerly Pathfinder Armada) + + + + + (VOLV) 245 Series, Volvo + + + + + (KIA) Avella, Kia Motors Corp.; (TOYT) Avensis, Toyota + + + + + (HYUN) XG, Hyundai + + + + + (MORG) Plus 8 Series, Morgan + + + + + (DATS) LiL Hustler, Datsun + + + + + (PLYM) Trail Duster, Plymouth + + + + + (MITS) Endeavor, Mitsubishi + + + + + (TOYT) Corolla, Toyota + + + + + (ALFA) Giulietta, Alfa Romeo + + + + + (JENS) Interceptor, Jensen; (ACUR) Integra, Acura; (DODG) Intrepid, Dodge; (OLDS) Intrigue, Oldsmobile; (CHRY) Intrepid, Chrysler + + + + + (AERO) Blimp + + + + + (LOTU) Europa, Lotus; (VOLK) Eurovan, Volkswagen + + + + + (OPEL) Luxus, Opel (imported by Buick); (VANG) Luxury, Vanguard (Canada) + + + + + (MG) Midget, MG + + + + + (ATV) Tracks and Wheels; (SNOW) Tracks and Wheels, Snowmobiles + + + + + (AERO) Propeller Driven; (FORD) Probe, Ford (see English, French, German, and Italian Ford); (MAZD) Familia, Protege, Mazda + + + + + (BMW) X5, BMW + + + + + (MERZ) SLK320 Coupe/Roadster, Mercedes-Benz + + + + + (VOLK) 113, Volkswagen + + + + + (CHEV) Kingswood, Chevrolet + + + + + (MORR) Traveller, Morris + + + + + (PEUG) 404, Peugeot + + + + + (CHRY) Laser, Chrysler; (FORD) Laser (foreign and Puerto Rican distribution only), Ford (see English, French, German, and Italian Ford); (PLYM) Laser, Plymouth + + + + + (PLYM) Prowler, Plymouth + + + + + (BUIC) Ranier, Buick + + + + + (MAZD) B2200, Mazda + + + + + (GMC) Safari, General Motors Corp.; (PONT) Safari, Pontiac + + + + + (MG) MGA, MG + + + + + (PONI) Firefly, Pontiac (Canadian) (Also see make Pontiac) + + + + + (TRIU) TR7, Triumph + + + + + (SUBA) Justy, Subaru + + + + + (SNOW) Skis and Tracks, Snowmobiles + + + + + (CHRY) PT Cruiser, Chrysler; (STU) Cruiser, Studebaker + + + + + (PLYM) Caravelle, Plymouth + + + + + (CHEV) Cobal, Chevrolet + + + + + (ISU) Amigo, Isuzu + + + + + (CHEV) Uplander (Crossover Sport Van), Chevrolet + + + + + (BMW) 540, BMW + + + + + (DODG) Ram 3500 (pickup), Dodge; (LEXS) RX350, Lexus; (MERZ) R350 (Sport Wagon), Mercedes Benz + + + + + Lancer Evolution + + + + + (EXCL) SS Roadster, Excalibur; (CHEV) SSR, Chevrolet + + + + + (CHEV) C/K 3500, Chevrolet; (MERZ) C350, Mercedes Benz + + + + + HU3 + + + + + (BMW) 323i, BMW; (MAZD) 323, Mazda + + + + + (CHEV) Lumina APV, Chevrolet + + + + + (ACAD) Beaumont Series, Acadian (GM of Canada) + + + + + (JEEP) J-20, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) J-20, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) J-20, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (PONT) J2000, Pontiac + + + + + (MAZD) 6 (Six), Mazda + + + + + (MG) TF Series, MG + + + + + Azera + + + + + (MERC) Lynx, Mercury + + + + + (HYUN) Pony, Hyundai + + + + + (PONT) Fiero, Pontiac + + + + + (METE) Rideau, Meteor (Canadian Mercury) + + + + + (OLDS) F-85, Oldsmobile + + + + + (INFI) G20, Infiniti + + + + + (PACK) Balboa, Packard + + + + + (JAGU) 3.4 Litre, Jaguar + + + + + (CHEV) Venture (minivan), Chevrolet; (FREF) Vendome, French Ford; (PONT) Ventura, Pontiac + + + + + (CHEV) Aveo, Chevrolet + + + + + (BREM) Maxi-Taxi, Bremen Sport Equipment, Inc. (Bremen, IN); (DATS) Maxima, Datsun; (NISS) Maxima, Nissan + + + + + (PLYM) Arrow (imported), Plymouth + + + + + (TRIU) Herald, Triumph + + + + + (AMER) Medallion (through vehicle year 1987), American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (EGIL) Medallion (vehicle year 1988), Eagle; (MERC) Medalist, Mercury + + + + + (MODE) Model A, Model A and Model T Motor Car Reproduction Corp. + + + + + (VOLV) XC70, Volvo + + + + + (CHEV) C/K 1500, Chevrolet + + + + + (PORS) 356, Porsche + + + + + (ALFA) Alfetta GT, Alfa Romeo + + + + + (LINC) LS, Lincoln-Continental; (STRN) LS-Sedan, Saturn + + + + + (MERZ) E300, Mercedes-Benz + + + + + (LAMO) Jarma, Lamborghini + + + + + (SUBA) XT Coupe, Subaru + + + + + (JAGU) "E" Type, Jaguar + + + + + (AMGN) Hummer, AM General Corp.; (HUMM) Hummer, HUMMER + + + + + (OLDS) Cutlass/Ciera, Supreme, Oldsmobile + + + + + (ALFA) Arna, Alfa Romeo; (AMER) American, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (BENT) Arnage, Bentley; (RAMB) American (AME for reference only), Rambler (mfd. prior to 1966; 1966 and later Ramblers - see make American Motors) + + + + + (CHEV) Luv, Chevrolet + + + + + (PONT) Grand Ville, Pontiac + + + + + (FORD) Brewster (antique vehicle), Ford + + + + + (KIA) Sorrento, Kia + + + + + (PLYM) Breeze, Plymouth + + + + + (MASE) Indy, Maserati + + + + + (NISS) NX, Nissan + + + + + (ZMCC) Golden Spirit, Zimmer Motor Car Co. + + + + + Freestyle + + + + + (JEEP) CJ-5, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) CJ-5, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) CJ-5, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (DODG) Ram 2500 (pickup), Dodge + + + + + (CHEV) Confederate (antique vehicle), Chevrolet + + + + + (CADI) Eldorado, Cadillac + + + + + (SPEC) Motorized Ride-On Toys + + + + + (BUIC) Rendezvous, Buick + + + + + (ENGF) Mark II, English Ford (British); (LINC) Mark II, Lincoln-Continental + + + + + (BMW) 318i, BMW + + + + + (FERR) 208, Ferrari + + + + + (KIA) Sephia, Kia Motors Corp. + + + + + (MAZD) Miata (MX5), Merlot Mica (Miata), Mazda + + + + + (BEJE) Gang Star, Beijing Jeep + + + + + (BMC) Princess, B M C; (CHEV) Prism (beginning vehicle year 1998), Chevrolet; (GEO) Prizm, GEO; (NSU) Prinz, Nsu Prinz; (TOYT) Prius, Toyota + + + + + (FORD) Country Sedan, Ford (see English, French, German, and Italian Ford); (METE) Country Sedan, Meteor (Canadian Mercury) + + + + + (LNCI) Flavia, Lancia + + + + + (SUBA) Brat, Subaru + + + + + (FORD) Sunliner, Ford (see English, French, German, and Italian Ford); (PLYM) Sundance, Plymouth; (PONT) Sunbird, Pontiac; (SOLE) Sunrise, Solectria + + + + + (INFI) QX56, Infiniti + + + + + (MAZD) 929, Mazda + + + + + (JAGU) XK8, Jaguar + + + + + (DODG) Raider, Dodge + + + + + (LAMO) Countach, Lamborghini; (MERC) Cougar, Mercury + + + + + (FORD) 7 Litre, Ford (see English, French, German, and Italian Ford) + + + + + (PONT) Montana, Pontiac + + + + + (PACK) Patrician, Packard; (JEEP) Patriot, Jeep + + + + + (MERZ) 560 Series, Mercedes-Benz + + + + + (MG) Sports Sedan, MG + + + + + (NISS) Quest, Nissan + + + + + (FORD) Frontenac, Ford (see English, French, German, and Italian Ford) + + + + + (AUDI) A4, Audi + + + + + (SIM) Etoile, Simca + + + + + (LEXS) LX470, Lexus + + + + + (JAGU) 420, Jaguar; (MASE) 4200 GT, Maserati; (MERZ) 420 Series, Mercedes-Benz + + + + + (JAGU) XJ8, Jaguar + + + + + (BMW) 2800 Series, BMW; (DATS) 280Z, Datsun; (MERZ) 280 Series, Mercedes-Benz; (MERZ) SLK280, Mercedes - Benz; (ISU) i280, Isuzu + + + + + (MITS) Outlander, Mitsubishi ; (STRN) Outlook, Saturn; (SUBA) Outback, Subaru + + + + + (OLDS) Standard, Oldsmobile + + + + + (MONA) Richelieu, Monarch + + + + + (CHEV) Colorado, Chevrolet + + + + + (VOLK) Microbus, Volkswagen + + + + + (OLDS) Silhouette, Oldsmobile + + + + + (DODG) Ram 2500 (van), Dodge + + + + + (JEEP) Dakar, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) Dakar, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) Dakar, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (DODG) Dakota, Dodge + + + + + (BUIC) California, Buick; (CADI) Calais, Cadillac; (OLDS) Calais, Oldsmobile; (DODG) Caliber, Dodge + + + + + (DATS) 311, Datsun + + + + + (VOLV) PV444, Volvo + + + + + (CHEV) Citation, Chevrolet; (EDSE) Citation, Edsel + + + + + (INFI) M45, Infiniti + + + + + 360 Challenge Stradale + + + + + (MERZ) E500, Mercedes-Benz + + + + + (JAGU) XJ40, Jaguar + + + + + (PONT) Firebird, Firehawk, Trans Am (Firebird), Pontiac + + + + + (INFI) FX35, Infiniti + + + + + (EDSE) Villager, Edsel; (MERC) Villager, Mercury + + + + + (SUZI) Samurai, Suzuki + + + + + (FORD) Think City (Elec.Veh. Model Year 2002), Ford + + + + + (GAZ) Volga, GAZ; (PLYM) Volare, Plymouth + + + + + (AERO) Helicopters and other Rotor Wing (or rotary- blade drive aircraft) + + + + + (TOYT) Tacoma, Toyota + + + + + (CHEV) Corsica, Chevrolet + + + + + (AMER) Ambassador, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (NASH) Ambassador, Nash; (RAMB) Ambassador, Rambler (mfd. prior to 1966; 1966 and later Ramblers - see make American Motors) + + + + + (ROL) Silver Seraph, Rolls-Royce + + + + + (CADI) Fleetwood, Cadillac; (CHEV) Fleetline, Chevrolet + + + + + (MAZD) MX3, Mazda + + + + + (ROV) Rover 45, Rover + + + + + (MASE) Coupe/Coupe GT, Maserati + + + + + (PONT) Grand AM, Pontiac + + + + + (DODG) Demon (Dart), Dodge + + + + + (DODG) Wayfarer, Dodge + + + + + DB9 + + + + + (FORD) Fairmont, Ford (see English, French, German, and Italian Ford) + + + + + (FIAT) 128 Series, Fiat + + + + + (TOYT) Sequoia, Toyota + + + + + (KIA) RIO, Kia + + + + + Fit + + + + + (VOLK) Kombi, Volkswagen + + + + + (BMW) 2002 Series, BMW + + + + + (JAGU) Vanden Plas, Jaguar; (ASTO) Vantage, Aston Martin; (GMC) Vandura, General Motors Corp. + + + + + (PORS) 912, Porsche + + + + + (JEEP) Wrangler, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) Wrangler, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) Wrangler, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (BMW) 650Ci, BMW; (BMW) 650i, BMW + + + + + (LNDR) Defender 90, Defender 110, Land Rover + + + + + (JAGU) 2.4 Litre, Jaguar + + + + + (AVTI) Series B, Avanti + + + + + (ASVE) Assembled Vehicles + + + + + (ZMCC) Quick Silver, Zimmer Motor Car Co. + + + + + (BORG) Isabella, Borgward + + + + + (PORS) 944, Porsche + + + + + (VOLV) 780 Series, Volvo + + + + + (FERR) Barchetta (or F130), F130 (Barchetta), Ferrari; (PLYM) Barracuda, Plymouth + + + + + (MERZ) ML320 (sport utility), Mercedes-Benz + + + + + (MERZ) CLK350, Mercedes Benz + + + + + (LINC) LS6, Lincoln-Continental + + + + + (MERZ) CL500, Mercedes-Benz + + + + + SLK55 + + + + + (MESS) Tiger, Messerschmitt; (ROOT) Tiger, Rootes; (SUNB) Tiger, Sunbeam + + + + + (MAZD) RX2 (rotary engine), Mazda + + + + + (AMER) Rambler American, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (ENGF) Zodiac, English Ford (British) + + + + + (BMW) 528i, BMW + + + + + + + + + + + + + + + + TrencherAlso known as a ditcher + + + + + Potato Digger + + + + + Garbage or Refuse + + + + + Asphalt Distributor + + + + + Welder + + + + + Utility + + + + + Stump Grinder + + + + + PaverAlso known as a finisher or roadsurfacer. + + + + + Drill, RockAlso known as a drifter drill. + + + + + Hardtop, 4 door. + + + + + Brush Chipper + + + + + Loader + + + + + Beverage Truck + + + + + Moped + + + + + Flatbed or Platform + + + + + HouseMobile home + + + + + Harvester + + + + + Corn Picker + + + + + Backhoe + + + + + Touring Car. + + + + + Twin-Engine, Propeller + + + + + Construction Signal + + + + + Blimp + + + + + Mower, Riding or Garden Tractor + + + + + Tanker + + + + + ShovelAlso known as a power or steamshovel. + + + + + Crane + + + + + SweeperAlso known as a power broom usedto clean streets and parking lots + + + + + Enclosed Body, Removable Enclosure + + + + + GeneratorEnter as a part, if not permanentlymounted. + + + + + Lift Boom (personnel)Also known as an orchard or cherrypicker. + + + + + Log SkidderAlso known as a grappler skidder. + + + + + Ambulance + + + + + Hopper + + + + + Pickup with mounted camperenter as a part or add-on part + + + + + Polealso known as logging trailer-usedto transport logs and pipes + + + + + Lowboy or Lowbed + + + + + Minicycle + + + + + Flotation ChassisAlso known as implement carrier + + + + + Hatchback, 4 door. + + + + + Light Tower (Typically used around or near construction sites and powered by a generator.) + + + + + Enclosed Body, Nonremovableenclosure + + + + + Pallet + + + + + Semiuse only when the specific bodystyle of the semi-trailer isunknown + + + + + Snowmobile + + + + + Mower-ConditionerFor grass or hay + + + + + Armored Truck + + + + + Campingalso known as camper or traveltrailer + + + + + Dump Trailer + + + + + LogUsed to transport logs, poles, orpipe. May be self loading or mayhave a grappling arm or jammer. + + + + + SEDAN, 4 DOOR; TRUCK/PICK-UP 4 DOOR + + + + + Field ChopperAlso known as a sileage cutter + + + + + Snowblower + + + + + Retractable Hardtop. + + + + + Boat + + + + + Bus + + + + + Helicopter + + + + + Coupe. Use this code when unable to determine if vehicle is a two-door sedan or a two-door hardtop. + + + + + Vacuum CleanerHeavy duty ride-on type enter as apart, if not permanently mounted + + + + + Bulk AgricultureBulk transport of raw vegetables.May have live floor, belt, or tiphead. + + + + + Tractor Truck, Gasoline + + + + + Ultralight (including hang gliders) + + + + + Motorbike + + + + + Flatrack + + + + + Tractor Truck, Diesel + + + + + Well Driller + + + + + Detasseling Equipment + + + + + Tractor, Wheel Type + + + + + CombineAlso known as a grain harvester + + + + + Sprayer + + + + + SedanUse this code only if the number ofdoors is unknown. + + + + + Unpublished style of ConstructionEquipmentExplain style in the MIS field + + + + + Backhoe/Loader + + + + + SawUsed in cutting asphalt, concrete,or masonry. + + + + + Horse + + + + + Refrigerated Vanalso known as reefer + + + + + Wagonalso known as Gondola, Cart, orContainer + + + + + Stake or Rack + + + + + Striper + + + + + Tri-Engine, Propeller + + + + + Wood Splitter + + + + + Auto Tow DollyTwo-wheel towing equipment + + + + + Glass Rack + + + + + Hydraulic Dump + + + + + Sailplane + + + + + Lunch Wagon + + + + + Hot Air Ballon + + + + + Tractor, Track Type + + + + + Windrower + + + + + Concrete mixer + + + + + Air CompressorShould be entered as a part if notif not permanently mounted. + + + + + Hardtop. This code is used only when the number of doors is unknown. + + + + + Auxiliary Dolly + + + + + Prime MoverAlso known as a road packer. + + + + + Bulldozer + + + + + Carry-allrugged trail and pleasure vehicles(e.g., Blazaer, Bronco, Jeep, etcetc.) + + + + + Livestock Rack + + + + + Multi-wheeled vehicleManufactured for off-road use, butbut licensed as street legal,e.g., 3-wheel mo + + + + + Single-Engine, Propeller + + + + + Chassis and Cab + + + + + 3-DoorSome truck makes will have twodoors on the drivers side andone on the passenger side. Otherm + + + + + Pickup + + + + + Convertible + + + + + Hay Baler + + + + + Motorcycle Trailer + + + + + Grain + + + + + Motorscooter + + + + + Hammer + + + + + RollerAlso known as a compactor. + + + + + Grader + + + + + Vanette + + + + + Minibike + + + + + Converter Gear + + + + + Roadster. + + + + + Fire Truck + + + + + Sedan, 2 door + + + + + Cotton Picker + + + + + Coach. + + + + + Law Enforcement + + + + + Station Wagon + + + + + Open Body + + + + + Hay Bale Loader + + + + + Tri-Engine, Jet + + + + + Limousine + + + + + Multi-Engine, Propeller + + + + + Multi-Engine, Jet + + + + + Fork LiftAlso known as a lift truck. + + + + + Cotton Stripper + + + + + Tent Trailer + + + + + Tow Truck/Wrecker + + + + + Search and Rescue + + + + + Vanincludes open or closed top boxtrailers + + + + + Motorized Home + + + + + Single-Engine, Jet + + + + + Scraper + + + + + Aerial Platform + + + + + Hardtop, 2 door. + + + + + Hearse + + + + + Biohazard + + + + + Fertilizer SpreaderEnter as a part if not permanentlymounted + + + + + Dump + + + + + Unpublished Style of Farm Equipment + + + + + ExcavatorAlso known as a digger. + + + + + Hatchback/Fastback. Use this code for a vehicle that has a rear door, and the number of side doors is unknown. + + + + + Twin-Engine, Jet + + + + + Hatchback, 2 door. + + + + + Tree HarvesterAlso known as a feller-buncher + + + + + Van Camper + + + + + Auto Carrier + + + + + Motorcycle + + + + + Buggy, ConcreteAlso known as a power cart. + + + + + + + + + + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\constraint\niem\fips_10-4\2.0\fips_10-4.xsd + + Countries, dependencies, areas of special sovereignty, and their principal administrative divisions from the Federal Information Processing Standards (FIPS) 10-4. + + true + + + + + + + + + PORTUGAL + + + + + WEST BANK + + + + + BENIN + + + + + ANTARCTICA + + + + + AMERICAN SAMOA + + + + + PAKISTAN + + + + + SURINAME + + + + + UNDERSEA FEATURES + + + + + COSTA RICA + + + + + ALGERIA + + + + + WALLIS AND FUTUNA + + + + + GUYANA + + + + + EUROPA ISLAND + + + + + ITALY + + + + + TOGO + + + + + PERU + + + + + COLOMBIA + + + + + MALAWI + + + + + FRENCH POLYNESIA + + + + + VANUATU + + + + + SWITZERLAND + + + + + LIBYA + + + + + ARGENTINA + + + + + SEYCHELLES + + + + + GERMANY + + + + + MARSHALL ISLANDS + + + + + BRUNEI + + + + + SOMALIA + + + + + TURKEY + + + + + BAKER ISLAND + + + + + CAMBODIA + + + + + HUNGARY + + + + + HONDURAS + + + + + ZIMBABWE + + + + + ASHMORE AND CARTIER ISLANDS + + + + + CHINA + + + + + FRANCE + + + + + INDIA + + + + + SINGAPORE + + + + + FINLAND + + + + + RWANDA + + + + + OCEANS + + + + + BURMA + + + + + ESTONIA + + + + + COTE D'IVOIRE + + + + + CAPE VERDE + + + + + TONGA + + + + + CAYMAN ISLANDS + + + + + JAMAICA + + + + + CONGO + + + + + ALBANIA + + + + + LITHUANIA + + + + + TAJIKISTAN + + + + + MALI + + + + + NAVASSA ISLAND + + + + + SPRATLY ISLANDS + + + + + TURKMENISTAN + + + + + SVALBARD + + + + + RUSSIA + + + + + CUBA + + + + + BELARUS + + + + + EAST TIMOR + + + + + GABON + + + + + HONG KONG + + + + + BULGARIA + + + + + GUINEA + + + + + JOHNSTON ATOLL + + + + + IRAN + + + + + UGANDA + + + + + TRINIDAD AND TOBAGO + + + + + NETHERLANDS + + + + + JAPAN + + + + + SWEDEN + + + + + LEBANON + + + + + SAUDI ARABIA + + + + + MACAU + + + + + PUERTO RICO + + + + + ROMANIA + + + + + IRAQ + + + + + SAMOA + + + + + CZECH REPUBLIC + + + + + GHANA + + + + + FIJI + + + + + SPAIN + + + + + MOZAMBIQUE + + + + + CENTRAL AFRICAN REPUBLIC + + + + + UZBEKISTAN + + + + + GUAM + + + + + UNITED STATES VIRGIN ISLANDS + + + + + AZERBAIJAN + + + + + ETHIOPIA + + + + + NORWAY + + + + + JERSEY + + + + + JARVIS ISLAND + + + + + IRELAND + + + + + NO MAN'S LAND + + + + + BAHRAIN + + + + + EQUATORIAL GUINEA + + + + + COMOROS + + + + + LIECHTENSTEIN + + + + + GAZA STRIP + + + + + ISLE OF MAN + + + + + PARACEL ISLANDS + + + + + TUNISIA + + + + + EL SALVADOR + + + + + VENEZUELA + + + + + MEXICO + + + + + LATVIA + + + + + AUSTRIA + + + + + GUATEMALA + + + + + PHILIPPINES + + + + + HOWLAND ISLAND + + + + + CHAD + + + + + QATAR + + + + + CORAL SEA ISLANDS + + + + + KUWAIT + + + + + PALMYRA ATOLL + + + + + PAPUA NEW GUINEA + + + + + MIDWAY ISLANDS + + + + + BANGLADESH + + + + + MAURITANIA + + + + + ZAMBIA + + + + + PANAMA + + + + + BRITISH VIRGIN ISLANDS + + + + + VATICAN CITY + + + + + MAURITIUS + + + + + ERITREA + + + + + CROATIA + + + + + SAINT LUCIA + + + + + GIBRALTAR + + + + + VIETNAM + + + + + BRITISH INDIAN OCEAN TERRITORY + + + + + TAIWAN + + + + + GEORGIA + + + + + HAITI + + + + + LESOTHO + + + + + NORTH KOREA + + + + + MADAGASCAR + + + + + BURKINA FASO + + + + + GRENADA + + + + + TUVALU + + + + + NEW ZEALAND + + + + + BHUTAN + + + + + BOLIVIA + + + + + SWAZILAND + + + + + NIGERIA + + + + + ISRAEL + + + + + KINGMAN REEF + + + + + SIERRA LEONE + + + + + EGYPT + + + + + HEARD ISLAND AND MCDONALD ISLANDS + + + + + BAHAMAS, THE + + + + + JORDAN + + + + + CAMEROON + + + + + GREENLAND + + + + + NETHERLANDS ANTILLES + + + + + DOMINICA + + + + + JUAN DE NOVA ISLAND + + + + + ICELAND + + + + + SENEGAL + + + + + ARUBA + + + + + WESTERN SAHARA + + + + + CANADA + + + + + SAINT KITTS AND NEVIS + + + + + BASSAS DA INDIA + + + + + NAURU + + + + + SOLOMON ISLANDS + + + + + TURKS AND CAICOS ISLANDS + + + + + MONACO + + + + + INDONESIA + + + + + SAINT VINCENT AND THE GRENADINES + + + + + FRENCH SOUTHERN AND ANTARCTIC LANDS + + + + + COCOS (KEELING) ISLANDS + + + + + MARTINIQUE + + + + + ANGOLA + + + + + FAROE ISLANDS + + + + + GLORIOSO ISLANDS + + + + + GREECE + + + + + BOUVET ISLAND + + + + + SOUTH AFRICA + + + + + PALAU + + + + + TOKELAU + + + + + SAINT PIERRE AND MIQUELON + + + + + AUSTRALIA + + + + + SYRIA + + + + + NAMIBIA + + + + + FRENCH GUIANA + + + + + REUNION + + + + + BOTSWANA + + + + + KIRIBATI + + + + + MAYOTTE + + + + + BELIZE + + + + + NEW CALEDONIA + + + + + ARMENIA + + + + + OMAN + + + + + NIGER + + + + + ECUADOR + + + + + BARBADOS + + + + + MOLDOVA + + + + + NICARAGUA + + + + + SUDAN + + + + + BURUNDI + + + + + NORFOLK ISLAND + + + + + GUADELOUPE + + + + + SAINT HELENA + + + + + GUERNSEY + + + + + MACEDONIA + + + + + WAKE ISLAND + + + + + CHILE + + + + + TROMELIN ISLAND + + + + + ANDORRA + + + + + MALDIVES + + + + + KYRGYZSTAN + + + + + TANZANIA + + + + + NEPAL + + + + + UNITED KINGDOM + + + + + BOSNIA AND HERZEGOVINA + + + + + NIUE + + + + + MALTA + + + + + ANTIGUA AND BARBUDA + + + + + MONTENEGRO + + + + + URUGUAY + + + + + UKRAINE + + + + + UNITED ARAB EMIRATES + + + + + JAN MAYEN + + + + + LUXEMBOURG + + + + + PARAGUAY + + + + + GUINEA-BISSAU + + + + + UNITED STATES + + + + + KENYA + + + + + SRI LANKA + + + + + MOROCCO + + + + + KAZAKHSTAN + + + + + THAILAND + + + + + GAMBIA, THE + + + + + CYPRUS + + + + + CONGO, DEMOCRATIC REPUBLIC OF THE + + + + + SOUTH GEORGIA AND THE SOUTH SANDWICH ISLANDS + + + + + BRAZIL + + + + + SERBIA + + + + + DJIBOUTI + + + + + CLIPPERTON ISLAND + + + + + MALAYSIA + + + + + AFGHANISTAN + + + + + POLAND + + + + + YEMEN + + + + + MONTSERRAT + + + + + PITCAIRN ISLANDS + + + + + DENMARK + + + + + SOUTH KOREA + + + + + ANGUILLA + + + + + SAN MARINO + + + + + BERMUDA + + + + + LIBERIA + + + + + DOMINICAN REPUBLIC + + + + + CHRISTMAS ISLAND + + + + + MONGOLIA + + + + + SAO TOME AND PRINCIPE + + + + + FALKLAND ISLANDS (ISLAS MALVINAS) + + + + + SLOVAKIA + + + + + MICRONESIA, FEDERATED STATES OF + + + + + COOK ISLANDS + + + + + SLOVENIA + + + + + LAOS + + + + + NORTHERN MARIANA ISLANDS + + + + + BELGIUM + + + + + + + + + + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\constraint\niem\fips_6-4\2.0\fips_6-4.xsd + + Counties and equivalent entities of the U.S., its possessions, and associated areas from the Federal Information Processing Standards (FIPS) 6-4. + + true + + + + + + + + + (02) Ketchikan Gateway, Alaska; (68) Jemo Island, Marshall Islands + + + + + (48) Young, Texas + + + + + (13) Morgan, Georgia; (21) Shelby, Kentucky; (29) Sullivan, Missouri; (48) Hemphill, Texas + + + + + (02) Southeast Fairbanks, Alaska + + + + + (48) Potter, Texas + + + + + (13) Treutlen, Georgia; (48) La Salle, Texas + + + + + (51) Hampton, Virginia + + + + + (48) Somervell, Texas + + + + + (13) Thomas, Georgia; (48) Knox, Texas + + + + + (13) White, Georgia; (48) McMullen, Texas + + + + + (01) Washington, Alabama; (05) Searcy, Arkansas; (12) Wakulla, Florida; (13) Gordon, Georgia; (17) Menard, Illinois; (18) Posey, Indiana; (19) Mills, Iowa; (20) Morton, Kansas; (21) Lee, Kentucky; (26) Ogemaw, Michigan; (27) Renville, Minnesota; (28) Smith, Mississippi; (29) Mercer, Missouri; (31) Nuckolls, Nebraska; (37) New Hanover, North Carolina; (39) Pickaway, Ohio; (40) Roger Mills, Oklahoma; (42) Westmoreland, Pennsylvania; (46) Walworth, South Dakota; (47) Morgan, Tennessee; (48) Donley, Texas; (55) Washburn, Wisconsin; (72) San Lorenzo, Puerto Rico + + + + + (48) Real, Texas; (68) Toke, Marshall Islands + + + + + (01) Autauga, Alabama; (04) Apache, Arizona; (05) Arkansas, Arkansas; (06) Alameda, California; (08) Adams, Colorado; (09) Fairfield, Connecticut; (10) Kent, Delaware; (11) District of Columbia, District of Columbia; (12) Alachua, Florida; (13) Appling, Georgia; (15) Hawaii, Hawaii; (16) Ada, Idaho; (17) Adams, Illinois; (18) Adams, Indiana; (19) Adair, Iowa; (20) Allen, Kansas; (21) Adair, Kentucky; (22) Acadia, Louisiana; (23) Androscoggin, Maine; (24) Allegany, Maryland; (25) Barnstable, Massachusetts; (26) Alcona, Michigan; (27) Aitkin, Minnesota; (28) Adams, Mississippi; (29) Adair, Missouri; (30) Beaverhead, Montana; (31) Adams, Nebraska; (32) Churchill, Nevada; (33) Belknap, New Hampshire; (34) Atlantic, New Jersey; (35) Bernalillo, New Mexico; (36) Albany, New York; (37) Alamance, North Carolina; (38) Adams, North Dakota; (39) Adams, Ohio; (40) Adair, Oklahoma; (41) Baker, Oregon; (42) Adams, Pennsylvania; (44) Bristol, Rhode Island; (45) Abbeville, South Carolina; (46) Armstrong, South Dakota; (47) Anderson, Tennessee; (48) Anderson, Texas; (49) Beaver, Utah; (50) Addison, Vermont; (51) Accomack, Virginia; (53) Adams, Washington; (54) Barbour, West Virginia; (55) Adams, Wisconsin; (56) Albany, Wyoming; (72) Adjuntas, Puerto Rico + + + + + (01) Calhoun, Alabama; (04) Mohave, Arizona; (05) Carroll, Arkansas; (06) Del Norte, California; (08) Chaffee, Colorado; (09) Windham, Connecticut; (12) Charlotte, Florida; (13) Bartow, Georgia; (16) Boise, Idaho; (17) Carroll, Illinois; (18) Carroll, Indiana; (19) Boone, Iowa; (20) Butler, Kansas; (21) Boone, Kentucky; (22) Bossier, Louisiana; (23) Lincoln, Maine; (24) Cecil, Maryland; (25) Hampshire, Massachusetts; (26) Barry, Michigan; (27) Brown, Minnesota; (28) Carroll, Mississippi; (29) Benton, Missouri; (30) Chouteau, Montana; (31) Boyd, Nebraska; (32) Lander, Nevada; (33) Rockingham, New Hampshire; (34) Gloucester, New Jersey; (35) Eddy, New Mexico; (36) Chemung, New York; (37) Bertie, North Carolina; (38) Burleigh, North Dakota; (39) Brown, Ohio; (40) Caddo, Oklahoma; (41) Curry, Oregon; (42) Bradford, Pennsylvania; (45) Berkeley, South Carolina; (46) Brule, South Dakota; (47) Cannon, Tennessee; (48) Austin, Texas; (49) Emery, Utah; (50) Lamoille, Vermont; (51) Augusta, Virginia; (53) Cowlitz, Washington; (54) Clay, West Virginia; (55) Calumet, Wisconsin; (56) Goshen, Wyoming; (72) Arroyo, Puerto Rico + + + + + (13) Liberty, Georgia; (17) Tazewell, Illinois; (18) Wells, Indiana; (19) Wapello, Iowa; (20) Sheridan, Kansas; (21) Nelson, Kentucky; (29) Reynolds, Missouri; (31) Wayne, Nebraska; (37) Union, North Carolina; (47) Washington, Tennessee; (48) Gray, Texas; (51) Stafford, Virginia + + + + + (48) Victoria, Texas + + + + + (24) Baltimore City, Maryland; (29) St Louis City, Missouri; (32) Carson City, Nevada; (51) Alexandria, Virginia + + + + + (01) Randolph, Alabama; (05) Poinsett, Arkansas; (06) Ventura, California; (08) San Juan, Colorado; (12) St Lucie, Florida; (13) Fannin, Georgia; (17) McHenry, Illinois; (18) Newton, Indiana; (19) Lee, Iowa; (20) Lyon, Kansas; (21) Jefferson, Kentucky; (22) Union, Louisiana; (26) Midland, Michigan; (27) Otter Tail, Minnesota; (28) Perry, Mississippi; (29) Lewis, Missouri; (30) Yellowstone, Montana; (31) Lincoln, Nebraska; (36) Ulster, New York; (37) McDowell, North Carolina; (39) Monroe, Ohio; (40) Okmulgee, Oklahoma; (42) Somerset, Pennsylvania; (46) Sanborn, South Dakota; (47) Macon, Tennessee; (48) Dallam, Texas; (51) Lunenburg, Virginia; (55) Sauk, Wisconsin; (72) Penuelas, Puerto Rico + + + + + (68) Ujae, Marshall Islands + + + + + (01) Morgan, Alabama; (05) Ouachita, Arkansas; (06) Tehama, California; (08) Rio Blanco, Colorado; (12) Pinellas, Florida; (13) Effingham, Georgia; (17) Lee, Illinois; (18) Miami, Indiana; (19) Johnson, Iowa; (20) Leavenworth, Kansas; (21) Henry, Kentucky; (22) St Tammany, Louisiana; (26) Marquette, Michigan; (27) Nicollet, Minnesota; (28) Noxubee, Mississippi; (29) Knox, Missouri; (30) Treasure, Montana; (31) Keya Paha, Nebraska; (36) Suffolk, New York; (37) Jones, North Carolina; (38) Wells, North Dakota; (39) Medina, Ohio; (40) Noble, Oklahoma; (42) Pike, Pennsylvania; (46) Pennington, South Dakota; (47) Lincoln, Tennessee; (48) Crane, Texas; (51) Lancaster, Virginia; (54) Wetzel, West Virginia; (55) Richland, Wisconsin; (72) Naguabo, Puerto Rico + + + + + (55) Menominee, Wisconsin + + + + + (05) Van Buren, Arkansas; (13) Hancock, Georgia; (17) Ogle, Illinois; (18) St Joseph, Indiana; (19) O\Brien, Iowa; (20) Osborne, Kansas; (21) Logan, Kentucky; (26) Presque Isle, Michigan; (27) Sherburne, Minnesota; (28) Tishomingo, Mississippi; (29) Morgan, Missouri; (31) Platte, Nebraska; (37) Pender, North Carolina; (39) Ross, Ohio; (40) Tillman, Oklahoma; (47) Putnam, Tennessee; (48) El Paso, Texas; (51) Patrick, Virginia; (55) Wood, Wisconsin; (72) Utuado, Puerto Rico + + + + + (13) Newton, Georgia; (21) Taylor, Kentucky; (29) Vernon, Missouri; (48) Hill, Texas + + + + + (01) Montgomery, Alabama; (05) Newton, Arkansas; (06) Sutter, California; (08) Pueblo, Colorado; (12) Pasco, Florida; (13) Echols, Georgia; (17) Lawrence, Illinois; (18) Martin, Indiana; (19) Jefferson, Iowa; (20) Lane, Kansas; (21) Henderson, Kentucky; (22) St Mary, Louisiana; (26) Manistee, Michigan; (27) Murray, Minnesota; (28) Newton, Mississippi; (29) Johnson, Missouri; (30) Toole, Montana; (31) Keith, Nebraska; (36) Steuben, New York; (37) Johnston, North Carolina; (38) Ward, North Dakota; (39) Marion, Ohio; (40) Muskogee, Oklahoma; (42) Philadelphia, Pennsylvania; (46) Moody, South Dakota; (47) Lewis, Tennessee; (48) Cottle, Texas; (51) King William, Virginia; (54) Webster, West Virginia; (55) Racine, Wisconsin; (72) Morovis, Puerto Rico + + + + + (51) Clifton Forge, Virginia + + + + + (48) Polk, Texas + + + + + (13) Murray, Georgia; (21) Simpson, Kentucky; (29) Taney, Missouri; (48) Henderson, Texas + + + + + (48) Trinity, Texas + + + + + (68) Mili, Marshall Islands + + + + + (13) Jenkins, Georgia; (17) Saline, Illinois; (18) Vermillion, Indiana; (19) Shelby, Iowa; (20) Rush, Kansas; (21) Menifee, Kentucky; (26) Wexford, Michigan; (27) Watonwan, Minnesota; (29) Platte, Missouri; (31) Sioux, Nebraska; (37) Scotland, North Carolina; (39) Warren, Ohio; (47) Sumner, Tennessee; (48) Gaines, Texas; (51) Rockingham, Virginia + + + + + (51) Danville, Virginia + + + + + (48) Van Zandt, Texas + + + + + (13) Paulding, Georgia; (21) Trimble, Kentucky; (29) Wayne, Missouri; (48) Hopkins, Texas; (70) Ngaremlengui, Palau + + + + + (74) Kingman Reef, U.S. Minor Outlying Islands + + + + + (01) Clarke, Alabama; (04) Yavapai, Arizona; (05) Cleveland, Arkansas; (06) Imperial, California; (08) Crowley, Colorado; (12) Dade, Florida; (13) Brantley, Georgia; (16) Camas, Idaho; (17) Clay, Illinois; (18) Crawford, Indiana; (19) Calhoun, Iowa; (20) Clark, Kansas; (21) Breathitt, Kentucky; (22) Catahoula, Louisiana; (23) Somerset, Maine; (24) Harford, Maryland; (25) Suffolk, Massachusetts; (26) Calhoun, Michigan; (27) Chisago, Minnesota; (28) Clay, Mississippi; (29) Caldwell, Missouri; (30) Fallon, Montana; (31) Cass, Nebraska; (34) Monmouth, New Jersey; (35) Lea, New Mexico; (36) Delaware, New York; (37) Cabarrus, North Carolina; (38) Dunn, North Dakota; (39) Clermont, Ohio; (40) Cimarron, Oklahoma; (41) Harney, Oregon; (42) Carbon, Pennsylvania; (45) Chesterfield, South Carolina; (46) Clark, South Dakota; (47) Claiborne, Tennessee; (48) Bee, Texas; (49) Kane, Utah; (50) Windham, Vermont; (51) Brunswick, Virginia; (53) Grant, Washington; (54) Greenbrier, West Virginia; (55) Dane, Wisconsin; (56) Natrona, Wyoming; (72) Caguas, Puerto Rico + + + + + (17) Woodford, Illinois; (20) Wichita, Kansas; (21) Rockcastle, Kentucky; (29) Shannon, Missouri; (48) Harrison, Texas + + + + + (48) Waller, Texas + + + + + (60) Rose Island, American Samoa; (68) Ailuk, Marshall Islands; (75) Trust Territory of the Pacific Islands, ; (78) St. Thomas, Virgin Islands of the U.S. + + + + + (01) Cullman, Alabama; (05) Drew, Arkansas; (06) Mariposa, California; (08) Fremont, Colorado; (12) Glades, Florida; (13) Candler, Georgia; (16) Fremont, Idaho; (17) Du Page, Illinois; (18) Floyd, Indiana; (19) Clayton, Iowa; (20) Doniphan, Kansas; (21) Carter, Kentucky; (22) Grant, Louisiana; (24) Washington, Maryland; (26) Dickinson, Michigan; (27) Faribault, Minnesota; (28) Grenada, Mississippi; (29) Christian, Missouri; (30) Jefferson, Montana; (31) Dakota, Nebraska; (35) Sandoval, New Mexico; (36) Herkimer, New York; (37) Clay, North Carolina; (38) Kidder, North Dakota; (39) Erie, Ohio; (40) Dewey, Oklahoma; (41) Linn, Oregon; (42) Dauphin, Pennsylvania; (45) Georgetown, South Carolina; (46) Douglas, South Dakota; (47) Dickson, Tennessee; (48) Brewster, Texas; (49) Summit, Utah; (51) Clarke, Virginia; (53) Lincoln, Washington; (54) Lincoln, West Virginia; (55) Grant, Wisconsin; (56) Washakie, Wyoming; (72) Coamo, Puerto Rico + + + + + (01) Jefferson, Alabama; (05) Lafayette, Arkansas; (06) San Diego, California; (08) Lincoln, Colorado; (12) Leon, Florida; (13) Columbia, Georgia; (16) Owyhee, Idaho; (17) Henry, Illinois; (18) Jasper, Indiana; (19) Greene, Iowa; (20) Greenwood, Kansas; (21) Franklin, Kentucky; (22) Ouachita, Louisiana; (26) Isabella, Michigan; (27) Lac Qui Parle, Minnesota; (28) Lamar, Mississippi; (29) Gasconade, Missouri; (30) Pondera, Montana; (31) Gosper, Nebraska; (36) Orleans, New York; (37) Gates, North Carolina; (38) Ransom, North Dakota; (39) Hocking, Ohio; (40) Kingfisher, Oklahoma; (42) Lawrence, Pennsylvania; (45) Oconee, South Carolina; (46) Jerauld, South Dakota; (47) Hawkins, Tennessee; (48) Cherokee, Texas; (51) Gloucester, Virginia; (53) Whatcom, Washington; (54) Pleasants, West Virginia; (55) Marathon, Wisconsin; (68) Bokak, Marshall Islands; (72) Jayuya, Puerto Rico + + + + + (13) Telfair, Georgia; (48) Kinney, Texas + + + + + (48) Webb, Texas + + + + + (48) San Saba, Texas + + + + + (13) Richmond, Georgia; (48) Jefferson, Texas + + + + + (13) Jasper, Georgia; (17) Richland, Illinois; (18) Tipton, Indiana; (19) Ringgold, Iowa; (20) Rice, Kansas; (21) Martin, Kentucky; (26) Van Buren, Michigan; (27) Wadena, Minnesota; (28) Winston, Mississippi; (29) Pettis, Missouri; (31) Seward, Nebraska; (37) Rowan, North Carolina; (39) Union, Ohio; (47) Smith, Tennessee; (48) Franklin, Texas; (51) Richmond, Virginia + + + + + (02) Haines, Alaska; (68) Erikub, Marshall Islands; (69) Rota, Northern Mariana Islands; (70) Kayangel, Palau; (74) Howland Island, U.S. Minor Outlying Islands + + + + + (35) Cibola, New Mexico + + + + + (51) Fredericksburg, Virginia + + + + + (01) Marshall, Alabama; (05) Monroe, Arkansas; (06) Solano, California; (08) Phillips, Colorado; (12) Orange, Florida; (13) Dougherty, Georgia; (17) Knox, Illinois; (18) Madison, Indiana; (19) Iowa, Iowa; (20) Kingman, Kansas; (21) Harlan, Kentucky; (22) St John The Baptist, Louisiana; (26) Luce, Michigan; (27) Mille Lacs, Minnesota; (28) Monroe, Mississippi; (29) Jackson, Missouri; (30) Stillwater, Montana; (31) Jefferson, Nebraska; (36) Schoharie, New York; (37) Hyde, North Carolina; (38) Towner, North Dakota; (39) Lucas, Ohio; (40) Marshall, Oklahoma; (42) Northampton, Pennsylvania; (46) Mellette, South Dakota; (47) Lake, Tennessee; (48) Concho, Texas; (51) James City, Virginia; (54) Tyler, West Virginia; (55) Polk, Wisconsin; (72) Maunabo, Puerto Rico + + + + + (48) Titus, Texas + + + + + (01) St Clair, Alabama; (05) Pope, Arkansas; (06) Yuba, California; (08) Sedgwick, Colorado; (12) Sarasota, Florida; (13) Floyd, Georgia; (17) Macon, Illinois; (18) Ohio, Indiana; (19) Louisa, Iowa; (20) Marion, Kansas; (21) Johnson, Kentucky; (22) Vernon, Louisiana; (26) Monroe, Michigan; (27) Pine, Minnesota; (28) Pontotoc, Mississippi; (29) Linn, Missouri; (31) Loup, Nebraska; (36) Washington, New York; (37) Madison, North Carolina; (39) Morgan, Ohio; (40) Ottawa, Oklahoma; (42) Susquehanna, Pennsylvania; (46) Spink, South Dakota; (47) Marion, Tennessee; (48) Dawson, Texas; (51) Mathews, Virginia; (55) Shawano, Wisconsin; (72) Quebradillas, Puerto Rico + + + + + (13) Jeff Davis, Georgia; (17) Rock Island, Illinois; (18) Union, Indiana; (19) Sac, Iowa; (20) Riley, Kansas; (21) Mason, Kentucky; (26) Washtenaw, Michigan; (27) Waseca, Minnesota; (28) Yalobusha, Mississippi; (29) Phelps, Missouri; (31) Sheridan, Nebraska; (37) Rutherford, North Carolina; (39) Van Wert, Ohio; (47) Stewart, Tennessee; (48) Freestone, Texas; (51) Roanoke, Virginia + + + + + (13) Webster, Georgia; (48) McCulloch, Texas + + + + + (48) Wood, Texas + + + + + (05) Union, Arkansas; (13) Hall, Georgia; (17) Moultrie, Illinois; (18) Rush, Indiana; (19) Muscatine, Iowa; (20) Osage, Kansas; (21) Livingston, Kentucky; (26) Ottawa, Michigan; (27) Scott, Minnesota; (28) Tippah, Mississippi; (29) Montgomery, Missouri; (31) Pierce, Nebraska; (37) Pasquotank, North Carolina; (39) Richland, Ohio; (40) Texas, Oklahoma; (47) Polk, Tennessee; (48) Ellis, Texas; (51) Page, Virginia; (55) Winnebago, Wisconsin; (72) Trujillo Alto, Puerto Rico + + + + + (13) Pierce, Georgia; (21) Washington, Kentucky; (29) Wright, Missouri; (48) Hudspeth, Texas + + + + + (48) Milam, Texas + + + + + (51) Manassas, Virginia + + + + + (01) Winston, Alabama; (05) Sevier, Arkansas; (12) Washington, Florida; (13) Greene, Georgia; (17) Monroe, Illinois; (18) Putnam, Indiana; (19) Monona, Iowa; (20) Neosho, Kansas; (21) Letcher, Kentucky; (26) Osceola, Michigan; (27) Rock, Minnesota; (28) Sunflower, Mississippi; (29) Mississippi, Missouri; (31) Pawnee, Nebraska; (37) Onslow, North Carolina; (39) Portage, Ohio; (40) Seminole, Oklahoma; (42) York, Pennsylvania; (46) Washington, South Dakota; (47) Overton, Tennessee; (48) Eastland, Texas; (51) Northumberland, Virginia; (55) Waukesha, Wisconsin; (72) Santa Isabel, Puerto Rico + + + + + (01) Colbert, Alabama; (05) Crawford, Arkansas; (06) Lake, California; (08) Dolores, Colorado; (12) Escambia, Florida; (13) Burke, Georgia; (16) Clark, Idaho; (17) Crawford, Illinois; (18) De Kalb, Indiana; (19) Cerro Gordo, Iowa; (20) Comanche, Kansas; (21) Caldwell, Kentucky; (22) East Baton Rouge, Louisiana; (24) Prince George\s, Maryland; (26) Chippewa, Michigan; (27) Cottonwood, Minnesota; (28) De Soto, Mississippi; (29) Carroll, Missouri; (30) Garfield, Montana; (31) Cheyenne, Nebraska; (32) White Pine, Nevada; (34) Salem, New Jersey; (35) Mora, New Mexico; (36) Franklin, New York; (37) Caswell, North Carolina; (38) Golden Valley, North Dakota; (39) Crawford, Ohio; (40) Cotton, Oklahoma; (41) Josephine, Oregon; (42) Clearfield, Pennsylvania; (45) Dillon, South Carolina; (46) Custer, South Dakota; (47) Crockett, Tennessee; (48) Borden, Texas; (49) Rich, Utah; (51) Caroline, Virginia; (53) King, Washington; (54) Harrison, West Virginia; (55) Dunn, Wisconsin; (56) Sheridan, Wyoming; (72) Catano, Puerto Rico + + + + + (70) Ngatpang, Palau + + + + + (05) Yell, Arkansas; (13) Heard, Georgia; (17) Pike, Illinois; (18) Starke, Indiana; (19) Plymouth, Iowa; (20) Pottawatomie, Kansas; (21) McLean, Kentucky; (26) St Joseph, Michigan; (27) Stevens, Minnesota; (28) Warren, Mississippi; (29) Oregon, Missouri; (31) Rock, Nebraska; (37) Polk, North Carolina; (39) Shelby, Ohio; (40) Washita, Oklahoma; (47) Rutherford, Tennessee; (48) Fayette, Texas; (51) Prince George, Virginia; (72) Villalba, Puerto Rico + + + + + (48) Motley, Texas + + + + + (48) Montague, Texas + + + + + (01) Perry, Alabama; (05) Perry, Arkansas; (06) Trinity, California; (08) Rio Grande, Colorado; (12) Polk, Florida; (13) Elbert, Georgia; (17) Livingston, Illinois; (18) Monroe, Indiana; (19) Jones, Iowa; (20) Lincoln, Kansas; (21) Hickman, Kentucky; (22) Tangipahoa, Louisiana; (26) Mason, Michigan; (27) Nobles, Minnesota; (28) Oktibbeha, Mississippi; (29) Laclede, Missouri; (30) Valley, Montana; (31) Kimball, Nebraska; (36) Sullivan, New York; (37) Lee, North Carolina; (38) Williams, North Dakota; (39) Meigs, Ohio; (40) Nowata, Oklahoma; (42) Potter, Pennsylvania; (46) Perkins, South Dakota; (47) Loudon, Tennessee; (48) Crockett, Texas; (51) Lee, Virginia; (54) Wirt, West Virginia; (55) Rock, Wisconsin; (72) Naranjito, Puerto Rico + + + + + (51) Radford, Virginia + + + + + (13) McDuffie, Georgia; (17) Washington, Illinois; (19) Winnebago, Iowa; (20) Stevens, Kansas; (21) Owsley, Kentucky; (29) St Louis, Missouri; (37) Watauga, North Carolina; (47) Wilson, Tennessee; (48) Hale, Texas + + + + + (48) Nolan, Texas + + + + + (48) Palo Pinto, Texas + + + + + (51) Galax, Virginia + + + + + (48) Parmer, Texas + + + + + (70) Aimeliik, Palau + + + + + (13) Houston, Georgia; (17) Pulaski, Illinois; (18) Sullivan, Indiana; (19) Polk, Iowa; (20) Rawlins, Kansas; (21) Magoffin, Kentucky; (26) Schoolcraft, Michigan; (27) Todd, Minnesota; (28) Wayne, Mississippi; (29) Ozark, Missouri; (31) Sarpy, Nebraska; (37) Richmond, North Carolina; (39) Summit, Ohio; (40) Woodward, Oklahoma; (47) Sequatchie, Tennessee; (48) Floyd, Texas; (51) Prince William, Virginia; (72) Yauco, Puerto Rico + + + + + (13) Washington, Georgia; (48) Lubbock, Texas + + + + + (01) Tallapoosa, Alabama; (05) St Francis, Arkansas; (08) Weld, Colorado; (12) Taylor, Florida; (13) Gilmer, Georgia; (17) Marshall, Illinois; (18) Perry, Indiana; (19) Mahaska, Iowa; (20) Mitchell, Kansas; (21) Larue, Kentucky; (22) West Carroll, Louisiana; (26) Newaygo, Michigan; (27) Ramsey, Minnesota; (28) Scott, Mississippi; (29) Madison, Missouri; (31) Morrill, Nebraska; (36) Yates, New York; (37) Montgomery, North Carolina; (39) Ottawa, Ohio; (40) Pontotoc, Oklahoma; (42) Warren, Pennsylvania; (46) Tripp, South Dakota; (47) Monroe, Tennessee; (48) De Witt, Texas; (51) Nansemond, Virginia; (55) Vernon, Wisconsin; (72) Salinas, Puerto Rico + + + + + (01) Etowah, Alabama; (05) Greene, Arkansas; (06) Napa, California; (08) Huerfano, Colorado; (12) Highlands, Florida; (13) Chattooga, Georgia; (16) Kootenai, Idaho; (17) Franklin, Illinois; (18) Greene, Indiana; (19) Delaware, Iowa; (20) Finney, Kansas; (21) Crittenden, Kentucky; (22) Lafayette, Louisiana; (26) Grand Traverse, Michigan; (27) Houston, Minnesota; (28) Issaquena, Mississippi; (29) Crawford, Missouri; (30) McCone, Montana; (31) Douglas, Nebraska; (35) Taos, New Mexico; (36) Monroe, New York; (37) Dare, North Carolina; (38) McLean, North Dakota; (39) Geauga, Ohio; (40) Greer, Oklahoma; (41) Sherman, Oregon; (42) Franklin, Pennsylvania; (45) Kershaw, South Carolina; (46) Haakon, South Dakota; (47) Giles, Tennessee; (48) Caldwell, Texas; (49) Wayne, Utah; (53) San Juan, Washington; (54) Mercer, West Virginia; (55) Jefferson, Wisconsin; (72) Guanica, Puerto Rico + + + + + (13) Seminole, Georgia; (48) Jones, Texas + + + + + (13) Towns, Georgia; (48) Lampasas, Texas + + + + + (48) Upshur, Texas + + + + + (48) Parker, Texas + + + + + (48) Newton, Texas + + + + + (01) Limestone, Alabama; (05) Logan, Arkansas; (06) Santa Barbara, California; (08) Montezuma, Colorado; (12) Marion, Florida; (13) Dade, Georgia; (16) Twin Falls, Idaho; (17) Jersey, Illinois; (18) Knox, Indiana; (19) Hardin, Iowa; (20) Hodgeman, Kansas; (21) Graves, Kentucky; (22) Richland, Louisiana; (26) Keweenaw, Michigan; (27) Lyon, Minnesota; (28) Leflore, Mississippi; (29) Henry, Missouri; (30) Richland, Montana; (31) Harlan, Nebraska; (36) Rensselaer, New York; (37) Halifax, North Carolina; (38) Sheridan, North Dakota; (39) Knox, Ohio; (40) Logan, Oklahoma; (42) McKean, Pennsylvania; (45) Spartanburg, South Carolina; (46) Lincoln, South Dakota; (47) Houston, Tennessee; (48) Coleman, Texas; (51) Halifax, Virginia; (54) Randolph, West Virginia; (55) Oconto, Wisconsin; (72) Las Marias, Puerto Rico + + + + + (48) Wise, Texas + + + + + (48) Sutton, Texas + + + + + (48) Refugio, Texas + + + + + (01) Tuscaloosa, Alabama; (05) Saline, Arkansas; (08) Yuma, Colorado; (12) Union, Florida; (13) Glascock, Georgia; (17) Mason, Illinois; (18) Pike, Indiana; (19) Marion, Iowa; (20) Montgomery, Kansas; (21) Laurel, Kentucky; (22) West Feliciana, Louisiana; (26) Oakland, Michigan; (27) Red Lake, Minnesota; (28) Sharkey, Mississippi; (29) Maries, Missouri; (31) Nance, Nebraska; (37) Moore, North Carolina; (39) Paulding, Ohio; (40) Pottawatomie, Oklahoma; (42) Washington, Pennsylvania; (46) Turner, South Dakota; (47) Montgomery, Tennessee; (48) Dickens, Texas; (51) Nelson, Virginia; (55) Vilas, Wisconsin; (72) San German, Puerto Rico + + + + + (13) Mitchell, Georgia; (20) Wilson, Kansas; (21) Rowan, Kentucky; (29) Shelby, Missouri; (48) Hartley, Texas + + + + + (13) Wilkes, Georgia; (48) Martin, Texas + + + + + (13) Twiggs, Georgia; (48) Leon, Texas + + + + + (48) Orange, Texas + + + + + (68) Mejit, Marshall Islands + + + + + (01) Lee, Alabama; (05) Little River, Arkansas; (06) San Mateo, California; (08) Moffat, Colorado; (12) Manatee, Florida; (13) Crisp, Georgia; (16) Teton, Idaho; (17) Jefferson, Illinois; (18) Johnson, Indiana; (19) Hancock, Iowa; (20) Haskell, Kansas; (21) Grant, Kentucky; (22) Red River, Louisiana; (26) Kent, Michigan; (27) Lincoln, Minnesota; (28) Lee, Mississippi; (29) Harrison, Missouri; (30) Ravalli, Montana; (31) Hamilton, Nebraska; (36) Queens, New York; (37) Guilford, North Carolina; (38) Sargent, North Dakota; (39) Jefferson, Ohio; (40) Lincoln, Oklahoma; (42) Lycoming, Pennsylvania; (45) Saluda, South Carolina; (46) Lawrence, South Dakota; (47) Hickman, Tennessee; (48) Coke, Texas; (51) Greensville, Virginia; (54) Raleigh, West Virginia; (55) Monroe, Wisconsin; (72) Lares, Puerto Rico + + + + + (51) Norton, Virginia + + + + + (01) Clay, Alabama; (04) Yuma, Arizona; (05) Columbia, Arkansas; (06) Inyo, California; (08) Custer, Colorado; (12) De Soto, Florida; (13) Brooks, Georgia; (16) Canyon, Idaho; (17) Clinton, Illinois; (18) Daviess, Indiana; (19) Carroll, Iowa; (20) Clay, Kansas; (21) Breckinridge, Kentucky; (22) Claiborne, Louisiana; (23) Waldo, Maine; (24) Howard, Maryland; (25) Worcester, Massachusetts; (26) Cass, Michigan; (27) Clay, Minnesota; (28) Coahoma, Mississippi; (29) Callaway, Missouri; (30) Fergus, Montana; (31) Cedar, Nebraska; (32) Pershing, Nevada; (34) Morris, New Jersey; (35) Lincoln, New Mexico; (36) Dutchess, New York; (37) Caldwell, North Carolina; (38) Eddy, North Dakota; (39) Clinton, Ohio; (40) Cleveland, Oklahoma; (41) Hood River, Oregon; (42) Centre, Pennsylvania; (45) Clarendon, South Carolina; (46) Clay, South Dakota; (47) Clay, Tennessee; (48) Bell, Texas; (49) Millard, Utah; (50) Windsor, Vermont; (51) Buchanan, Virginia; (53) Grays Harbor, Washington; (54) Hampshire, West Virginia; (55) Dodge, Wisconsin; (56) Niobrara, Wyoming; (72) Camuy, Puerto Rico + + + + + (02) North Slope, Alaska; (13) Lowndes, Georgia; (17) Wabash, Illinois; (19) Wayne, Iowa; (20) Stafford, Kansas; (21) Oldham, Kentucky; (29) St Clair, Missouri; (31) York, Nebraska; (37) Warren, North Carolina; (47) White, Tennessee; (48) Grimes, Texas; (51) Tazewell, Virginia + + + + + (13) Marion, Georgia; (17) Will, Illinois; (19) Wright, Iowa; (20) Wabaunsee, Kansas; (21) Powell, Kentucky; (29) Schuyler, Missouri; (37) Yadkin, North Carolina; (48) Hardeman, Texas; (51) Wythe, Virginia + + + + + (48) Red River, Texas + + + + + (02) Valdez-Cordova, Alaska; (13) Sumter, Georgia; (48) Kenedy, Texas + + + + + (48) Panola, Texas + + + + + (13) Polk, Georgia; (21) Webster, Kentucky; (48) Hutchinson, Texas + + + + + (48) Shackelford, Texas + + + + + (13) Pickens, Georgia; (21) Warren, Kentucky; (29) Worth, Missouri; (48) Howard, Texas + + + + + (13) Long, Georgia; (17) Vermilion, Illinois; (18) Whitley, Indiana; (19) Washington, Iowa; (20) Smith, Kansas; (21) Ohio, Kentucky; (29) St Charles, Missouri; (31) Wheeler, Nebraska; (37) Wake, North Carolina; (47) Weakley, Tennessee; (48) Gregg, Texas; (51) Sussex, Virginia + + + + + (51) Roanoke, Virginia + + + + + (48) Rockwall, Texas + + + + + (70) Ngardmau, Palau + + + + + (13) Lanier, Georgia; (17) Shelby, Illinois; (18) Warrick, Indiana; (19) Taylor, Iowa; (20) Sedgwick, Kansas; (21) Montgomery, Kentucky; (27) Yellow Medicine, Minnesota; (29) Ralls, Missouri; (31) Thurston, Nebraska; (37) Swain, North Carolina; (39) Wood, Ohio; (47) Union, Tennessee; (48) Glasscock, Texas; (51) Smyth, Virginia + + + + + (48) Starr, Texas + + + + + (13) Monroe, Georgia; (20) Woodson, Kansas; (21) Russell, Kentucky; (29) Stoddard, Missouri; (48) Haskell, Texas + + + + + (48) Nueces, Texas + + + + + (48) Throckmorton, Texas + + + + + (51) Petersburg, Virginia + + + + + (48) Wilbarger, Texas + + + + + (02) Prince of Wales-Outer Ketchikan, Alaska; (13) Miller, Georgia; (17) Winnebago, Illinois; (20) Washington, Kansas; (21) Robertson, Kentucky; (29) Scott, Missouri; (48) Harris, Texas + + + + + (51) Virginia Beach, Virginia + + + + + (48) San Jacinto, Texas + + + + + (01) Jackson, Alabama; (05) Johnson, Arkansas; (06) San Bernardino, California; (08) Las Animas, Colorado; (12) Lee, Florida; (13) Colquitt, Georgia; (16) Oneida, Idaho; (17) Henderson, Illinois; (18) Jackson, Indiana; (19) Fremont, Iowa; (20) Greeley, Kansas; (21) Floyd, Kentucky; (22) Orleans, Louisiana; (26) Iron, Michigan; (27) Koochiching, Minnesota; (28) Lafayette, Mississippi; (29) Franklin, Missouri; (30) Phillips, Montana; (31) Garfield, Nebraska; (36) Orange, New York; (37) Gaston, North Carolina; (38) Ramsey, North Dakota; (39) Highland, Ohio; (40) Kay, Oklahoma; (41) Yamhill, Oregon; (42) Lancaster, Pennsylvania; (45) Newberry, South Carolina; (46) Jackson, South Dakota; (47) Hardin, Tennessee; (48) Chambers, Texas; (51) Giles, Virginia; (53) Walla Walla, Washington; (54) Pendleton, West Virginia; (55) Manitowoc, Wisconsin; (72) Isabela, Puerto Rico + + + + + (13) McIntosh, Georgia; (17) Wayne, Illinois; (19) Winneshiek, Iowa; (20) Sumner, Kansas; (21) Pendleton, Kentucky; (37) Wayne, North Carolina; (48) Hall, Texas; (51) Washington, Virginia + + + + + (01) Escambia, Alabama; (05) Grant, Arkansas; (06) Monterey, California; (08) Hinsdale, Colorado; (12) Hernando, Florida; (13) Chattahoochee, Georgia; (16) Jerome, Idaho; (17) Ford, Illinois; (18) Grant, Indiana; (19) Decatur, Iowa; (20) Ellsworth, Kansas; (21) Clinton, Kentucky; (22) Jefferson Davis, Louisiana; (26) Gogebic, Michigan; (27) Hennepin, Minnesota; (28) Humphreys, Mississippi; (29) Cooper, Missouri; (30) Lincoln, Montana; (31) Dodge, Nebraska; (35) Socorro, New Mexico; (36) Madison, New York; (37) Currituck, North Carolina; (38) McKenzie, North Dakota; (39) Gallia, Ohio; (40) Grant, Oklahoma; (41) Polk, Oregon; (42) Forest, Pennsylvania; (45) Jasper, South Carolina; (46) Gregory, South Dakota; (47) Gibson, Tennessee; (48) Burnet, Texas; (49) Washington, Utah; (51) Dinwiddie, Virginia; (53) Pierce, Washington; (54) Mason, West Virginia; (55) Jackson, Wisconsin; (72) Fajardo, Puerto Rico + + + + + (48) Moore, Texas + + + + + (01) Marion, Alabama; (05) Mississippi, Arkansas; (06) Siskiyou, California; (08) Park, Colorado; (12) Okeechobee, Florida; (13) Dooly, Georgia; (17) Kendall, Illinois; (18) Lawrence, Indiana; (19) Ida, Iowa; (20) Kearny, Kansas; (21) Hardin, Kentucky; (22) St James, Louisiana; (26) Livingston, Michigan; (27) Meeker, Minnesota; (28) Marshall, Mississippi; (29) Iron, Missouri; (30) Silver Bow, Montana; (31) Howard, Nebraska; (36) Schenectady, New York; (37) Hoke, North Carolina; (38) Stutsman, North Dakota; (39) Lorain, Ohio; (40) Major, Oklahoma; (42) Montour, Pennsylvania; (46) Meade, South Dakota; (47) Knox, Tennessee; (48) Comanche, Texas; (51) Isle Of Wight, Virginia; (54) Tucker, West Virginia; (55) Pierce, Wisconsin; (72) Maricao, Puerto Rico + + + + + (13) Irwin, Georgia; (17) Putnam, Illinois; (18) Switzerland, Indiana; (19) Pottawattamie, Iowa; (20) Reno, Kansas; (21) Marion, Kentucky; (26) Shiawassee, Michigan; (27) Traverse, Minnesota; (28) Webster, Mississippi; (29) Pemiscot, Missouri; (31) Saunders, Nebraska; (37) Robeson, North Carolina; (39) Trumbull, Ohio; (47) Sevier, Tennessee; (48) Foard, Texas; (51) Pulaski, Virginia + + + + + (48) Sherman, Texas + + + + + (51) Staunton, Virginia + + + + + (51) Fairfax, Virginia + + + + + (48) Uvalde, Texas + + + + + (68) Jaluit, Marshall Islands; (69) Tinian, Northern Mariana Islands + + + + + (48) Zapata, Texas + + + + + (13) Lee, Georgia; (17) Stephenson, Illinois; (18) Wayne, Indiana; (19) Van Buren, Iowa; (20) Shawnee, Kansas; (21) Muhlenberg, Kentucky; (29) Ray, Missouri; (31) Washington, Nebraska; (37) Tyrrell, North Carolina; (47) Warren, Tennessee; (48) Gonzales, Texas; (51) Spotsylvania, Virginia + + + + + (13) Terrell, Georgia; (48) Kleberg, Texas + + + + + (68) Namu, Marshall Islands + + + + + (01) Lauderdale, Alabama; (05) Lee, Arkansas; (06) San Joaquin, California; (08) Mesa, Colorado; (12) Liberty, Florida; (13) Coweta, Georgia; (16) Power, Idaho; (17) Jackson, Illinois; (18) Jefferson, Indiana; (19) Guthrie, Iowa; (20) Harper, Kansas; (21) Gallatin, Kentucky; (22) Pointe Coupee, Louisiana; (26) Kalamazoo, Michigan; (27) Lake Of The Woods, Minnesota; (28) Lawrence, Mississippi; (29) Greene, Missouri; (30) Powell, Montana; (31) Greeley, Nebraska; (36) Otsego, New York; (37) Granville, North Carolina; (38) Richland, North Dakota; (39) Huron, Ohio; (40) Latimer, Oklahoma; (42) Lehigh, Pennsylvania; (45) Pickens, South Carolina; (46) Kingsbury, South Dakota; (47) Henderson, Tennessee; (48) Clay, Texas; (51) Grayson, Virginia; (53) Yakima, Washington; (54) Preston, West Virginia; (55) Marquette, Wisconsin; (72) Juncos, Puerto Rico + + + + + (13) Oconee, Georgia; (21) Todd, Kentucky; (29) Warren, Missouri; (48) Hockley, Texas + + + + + (01) Baldwin, Alabama; (04) Cochise, Arizona; (05) Ashley, Arkansas; (06) Alpine, California; (08) Alamosa, Colorado; (09) Hartford, Connecticut; (10) New Castle, Delaware; (12) Baker, Florida; (13) Atkinson, Georgia; (15) Honolulu, Hawaii; (16) Adams, Idaho; (17) Alexander, Illinois; (18) Allen, Indiana; (19) Adams, Iowa; (20) Anderson, Kansas; (21) Allen, Kentucky; (22) Allen, Louisiana; (23) Aroostook, Maine; (24) Anne Arundel, Maryland; (25) Berkshire, Massachusetts; (26) Alger, Michigan; (27) Anoka, Minnesota; (28) Alcorn, Mississippi; (29) Andrew, Missouri; (30) Big Horn, Montana; (31) Antelope, Nebraska; (32) Clark, Nevada; (33) Carroll, New Hampshire; (34) Bergen, New Jersey; (35) Catron, New Mexico; (36) Allegany, New York; (37) Alexander, North Carolina; (38) Barnes, North Dakota; (39) Allen, Ohio; (40) Alfalfa, Oklahoma; (41) Benton, Oregon; (42) Allegheny, Pennsylvania; (44) Kent, Rhode Island; (45) Aiken, South Carolina; (46) Aurora, South Dakota; (47) Bedford, Tennessee; (48) Andrews, Texas; (49) Box Elder, Utah; (50) Bennington, Vermont; (51) Albemarle, Virginia; (53) Asotin, Washington; (54) Berkeley, West Virginia; (55) Ashland, Wisconsin; (56) Big Horn, Wyoming; (72) Aguada, Puerto Rico + + + + + (02) Wrangell-Petersburg, Alaska + + + + + (70) Ngiwal, Palau + + + + + (48) Sabine, Texas + + + + + (13) Lincoln, Georgia; (17) Union, Illinois; (18) White, Indiana; (19) Warren, Iowa; (20) Sherman, Kansas; (21) Nicholas, Kentucky; (29) Ripley, Missouri; (31) Webster, Nebraska; (37) Vance, North Carolina; (47) Wayne, Tennessee; (48) Grayson, Texas; (51) Surry, Virginia + + + + + (51) Martinsville, Virginia + + + + + (51) Lexington, Virginia + + + + + (13) Rabun, Georgia; (48) Jasper, Texas + + + + + (01) Cherokee, Alabama; (04) Pima, Arizona; (05) Clark, Arkansas; (06) Fresno, California; (08) Clear Creek, Colorado; (12) Clay, Florida; (13) Berrien, Georgia; (16) Bonneville, Idaho; (17) Champaign, Illinois; (18) Clark, Indiana; (19) Buchanan, Iowa; (20) Chautauqua, Kansas; (21) Boyd, Kentucky; (22) Calcasieu, Louisiana; (23) Penobscot, Maine; (24) Dorchester, Maryland; (25) Nantucket, Massachusetts; (26) Benzie, Michigan; (27) Carver, Minnesota; (28) Choctaw, Mississippi; (29) Boone, Missouri; (30) Daniels, Montana; (31) Buffalo, Nebraska; (32) Lyon, Nevada; (33) Sullivan, New Hampshire; (34) Hunterdon, New Jersey; (35) Guadalupe, New Mexico; (36) Clinton, New York; (37) Brunswick, North Carolina; (38) Cavalier, North Dakota; (39) Carroll, Ohio; (40) Carter, Oklahoma; (41) Douglas, Oregon; (42) Butler, Pennsylvania; (45) Charleston, South Carolina; (46) Butte, South Dakota; (47) Carter, Tennessee; (48) Bandera, Texas; (49) Grand, Utah; (50) Orleans, Vermont; (51) Bedford, Virginia; (53) Ferry, Washington; (54) Fayette, West Virginia; (55) Clark, Wisconsin; (56) Johnson, Wyoming; (72) Barranquitas, Puerto Rico + + + + + (01) Marengo, Alabama; (05) Miller, Arkansas; (06) Sierra, California; (08) Ouray, Colorado; (12) Okaloosa, Florida; (13) Dodge, Georgia; (17) Kankakee, Illinois; (18) La Porte, Indiana; (19) Humboldt, Iowa; (20) Johnson, Kansas; (21) Hancock, Kentucky; (22) St Helena, Louisiana; (26) Lenawee, Michigan; (27) Martin, Minnesota; (28) Marion, Mississippi; (29) Howell, Missouri; (30) Sheridan, Montana; (31) Hooker, Nebraska; (36) Saratoga, New York; (37) Hertford, North Carolina; (38) Steele, North Dakota; (39) Logan, Ohio; (40) McIntosh, Oklahoma; (42) Montgomery, Pennsylvania; (45) York, South Carolina; (46) Marshall, South Dakota; (47) Johnson, Tennessee; (48) Comal, Texas; (51) Highland, Virginia; (54) Taylor, West Virginia; (55) Pepin, Wisconsin; (72) Manati, Puerto Rico + + + + + (13) Jackson, Georgia; (17) Randolph, Illinois; (18) Tippecanoe, Indiana; (19) Poweshiek, Iowa; (20) Republic, Kansas; (21) Marshall, Kentucky; (26) Tuscola, Michigan; (27) Wabasha, Minnesota; (28) Wilkinson, Mississippi; (29) Perry, Missouri; (31) Scotts Bluff, Nebraska; (37) Rockingham, North Carolina; (39) Tuscarawas, Ohio; (47) Shelby, Tennessee; (48) Fort Bend, Texas; (51) Rappahannock, Virginia + + + + + (68) Majuro, Marshall Islands + + + + + (51) Lynchburg, Virginia + + + + + (48) Upton, Texas + + + + + (01) Fayette, Alabama; (05) Hempstead, Arkansas; (06) Nevada, California; (08) Jackson, Colorado; (12) Hillsborough, Florida; (13) Cherokee, Georgia; (16) Latah, Idaho; (17) Fulton, Illinois; (18) Hamilton, Indiana; (19) Des Moines, Iowa; (20) Ford, Kansas; (21) Cumberland, Kentucky; (22) Lafourche, Louisiana; (26) Gratiot, Michigan; (27) Hubbard, Minnesota; (28) Itawamba, Mississippi; (29) Dade, Missouri; (30) Madison, Montana; (31) Dundy, Nebraska; (35) Torrance, New Mexico; (36) Montgomery, New York; (37) Davidson, North Carolina; (38) Mercer, North Dakota; (39) Greene, Ohio; (40) Harmon, Oklahoma; (41) Tillamook, Oregon; (42) Fulton, Pennsylvania; (45) Lancaster, South Carolina; (46) Hamlin, South Dakota; (47) Grainger, Tennessee; (48) Calhoun, Texas; (49) Weber, Utah; (51) Essex, Virginia; (53) Skagit, Washington; (54) Mineral, West Virginia; (55) Juneau, Wisconsin; (72) Guayama, Puerto Rico + + + + + (01) Wilcox, Alabama; (05) Sebastian, Arkansas; (12) Walton, Florida; (13) Grady, Georgia; (17) Mercer, Illinois; (18) Pulaski, Indiana; (19) Mitchell, Iowa; (20) Nemaha, Kansas; (21) Leslie, Kentucky; (26) Ontonagon, Michigan; (27) Rice, Minnesota; (28) Stone, Mississippi; (29) Miller, Missouri; (31) Otoe, Nebraska; (37) Northampton, North Carolina; (39) Pike, Ohio; (40) Rogers, Oklahoma; (42) Wyoming, Pennsylvania; (46) Washabaugh, South Dakota; (47) Obion, Tennessee; (48) Duval, Texas; (51) Northampton, Virginia; (55) Washington, Wisconsin; (72) San Sebastian, Puerto Rico + + + + + (51) Charlottesville, Virginia + + + + + (51) Norfolk, Virginia + + + + + (01) Geneva, Alabama; (05) Howard, Arkansas; (06) Placer, California; (08) Kiowa, Colorado; (12) Indian River, Florida; (13) Clay, Georgia; (16) Lewis, Idaho; (17) Greene, Illinois; (18) Harrison, Indiana; (19) Dubuque, Iowa; (20) Geary, Kansas; (21) Edmonson, Kentucky; (22) Lincoln, Louisiana; (26) Houghton, Michigan; (27) Itasca, Minnesota; (28) Jasper, Mississippi; (29) Daviess, Missouri; (30) Mineral, Montana; (31) Franklin, Nebraska; (35) Valencia, New Mexico; (36) New York, New York; (37) Duplin, North Carolina; (38) Mountrail, North Dakota; (39) Hamilton, Ohio; (40) Haskell, Oklahoma; (41) Union, Oregon; (42) Huntingdon, Pennsylvania; (45) Lee, South Carolina; (46) Hanson, South Dakota; (47) Grundy, Tennessee; (48) Cameron, Texas; (51) Fauquier, Virginia; (53) Snohomish, Washington; (54) Monongalia, West Virginia; (55) Kewaunee, Wisconsin; (72) Guaynabo, Puerto Rico + + + + + (01) Lamar, Alabama; (05) Lawrence, Arkansas; (06) San Francisco, California; (08) Logan, Colorado; (12) Levy, Florida; (13) Cook, Georgia; (16) Payette, Idaho; (17) Iroquois, Illinois; (18) Jay, Indiana; (19) Grundy, Iowa; (20) Hamilton, Kansas; (21) Fulton, Kentucky; (22) Plaquemines, Louisiana; (26) Jackson, Michigan; (27) Lake, Minnesota; (28) Lauderdale, Mississippi; (29) Gentry, Missouri; (30) Powder River, Montana; (31) Grant, Nebraska; (36) Oswego, New York; (37) Graham, North Carolina; (38) Renville, North Dakota; (39) Holmes, Ohio; (40) Kiowa, Oklahoma; (42) Lebanon, Pennsylvania; (45) Orangeburg, South Carolina; (46) Jones, South Dakota; (47) Haywood, Tennessee; (48) Childress, Texas; (51) Goochland, Virginia; (53) Whitman, Washington; (54) Pocahontas, West Virginia; (55) Marinette, Wisconsin; (72) Juana Diaz, Puerto Rico + + + + + (68) Maloelap, Marshall Islands; (70) Palau Islands, Palau; (74) Midway Islands, U.S. Minor Outlying Islands + + + + + (01) De Kalb, Alabama; (05) Fulton, Arkansas; (06) Modoc, California; (08) Grand, Colorado; (12) Hardee, Florida; (13) Charlton, Georgia; (16) Idaho, Idaho; (17) Effingham, Illinois; (18) Fulton, Indiana; (19) Dallas, Iowa; (20) Elk, Kansas; (21) Clark, Kentucky; (22) Jackson, Louisiana; (26) Genesee, Michigan; (27) Goodhue, Minnesota; (28) Hinds, Mississippi; (29) Clinton, Missouri; (30) Lewis And Clark, Montana; (31) Deuel, Nebraska; (35) Santa Fe, New Mexico; (36) Lewis, New York; (37) Craven, North Carolina; (38) McHenry, North Dakota; (39) Franklin, Ohio; (40) Garvin, Oklahoma; (41) Morrow, Oregon; (42) Erie, Pennsylvania; (45) Hampton, South Carolina; (46) Faulk, South Dakota; (47) Fentress, Tennessee; (48) Brown, Texas; (49) Utah, Utah; (51) Cumberland, Virginia; (53) Pacific, Washington; (54) Marion, West Virginia; (55) Iowa, Wisconsin; (72) Culebra, Puerto Rico + + + + + (01) Hale, Alabama; (05) Izard, Arkansas; (06) Riverside, California; (08) Lake, Colorado; (12) Jefferson, Florida; (13) Clinch, Georgia; (16) Madison, Idaho; (17) Hamilton, Illinois; (18) Henry, Indiana; (19) Fayette, Iowa; (20) Graham, Kansas; (21) Estill, Kentucky; (22) Madison, Louisiana; (26) Ingham, Michigan; (27) Kanabec, Minnesota; (28) Jefferson Davis, Mississippi; (29) Dent, Missouri; (30) Musselshell, Montana; (31) Furnas, Nebraska; (36) Oneida, New York; (37) Edgecombe, North Carolina; (38) Oliver, North Dakota; (39) Hardin, Ohio; (40) Jackson, Oklahoma; (41) Wasco, Oregon; (42) Jefferson, Pennsylvania; (45) McCormick, South Carolina; (46) Hughes, South Dakota; (47) Hamilton, Tennessee; (48) Carson, Texas; (51) Fluvanna, Virginia; (53) Stevens, Washington; (54) Morgan, West Virginia; (55) Lafayette, Wisconsin; (72) Hatillo, Puerto Rico + + + + + (13) Quitman, Georgia; (21) Woodford, Kentucky; (48) Jackson, Texas + + + + + (13) Stewart, Georgia; (48) Kendall, Texas + + + + + (48) Val Verde, Texas + + + + + (74) Wake Island, U.S. Minor Outlying Islands + + + + + (48) Robertson, Texas + + + + + (48) Smith, Texas + + + + + (01) Monroe, Alabama; (05) Nevada, Arkansas; (06) Stanislaus, California; (08) Prowers, Colorado; (12) Palm Beach, Florida; (13) Early, Georgia; (17) La Salle, Illinois; (18) Marshall, Indiana; (19) Jasper, Iowa; (20) Labette, Kansas; (21) Hart, Kentucky; (22) St Martin, Louisiana; (26) Macomb, Michigan; (27) Mower, Minnesota; (28) Neshoba, Mississippi; (29) Jefferson, Missouri; (30) Teton, Montana; (31) Kearney, Nebraska; (36) Seneca, New York; (37) Jackson, North Carolina; (38) Walsh, North Dakota; (39) Mahoning, Ohio; (40) Murray, Oklahoma; (42) Perry, Pennsylvania; (46) Minnehaha, South Dakota; (47) Lawrence, Tennessee; (48) Coryell, Texas; (51) King George, Virginia; (54) Wayne, West Virginia; (55) Price, Wisconsin; (72) Moca, Puerto Rico + + + + + (01) Dallas, Alabama; (05) Franklin, Arkansas; (06) Merced, California; (08) Gilpin, Colorado; (12) Hamilton, Florida; (13) Catoosa, Georgia; (16) Gooding, Idaho; (17) Edwards, Illinois; (18) Franklin, Indiana; (19) Crawford, Iowa; (20) Edwards, Kansas; (21) Christian, Kentucky; (22) Iberville, Louisiana; (24) Worcester, Maryland; (26) Emmet, Michigan; (27) Freeborn, Minnesota; (28) Harrison, Mississippi; (29) Clay, Missouri; (30) Lake, Montana; (31) Dawson, Nebraska; (35) San Miguel, New Mexico; (36) Kings, New York; (37) Columbus, North Carolina; (38) Logan, North Dakota; (39) Fayette, Ohio; (40) Garfield, Oklahoma; (41) Marion, Oregon; (42) Elk, Pennsylvania; (45) Greenwood, South Carolina; (46) Fall River, South Dakota; (47) Fayette, Tennessee; (48) Brooks, Texas; (49) Uintah, Utah; (51) Culpeper, Virginia; (53) Okanogan, Washington; (54) McDowell, West Virginia; (55) Green Lake, Wisconsin; (72) Corozal, Puerto Rico + + + + + (51) Bristol, Virginia + + + + + (13) Upson, Georgia; (48) Limestone, Texas + + + + + (05) Washington, Arkansas; (13) Haralson, Georgia; (17) Peoria, Illinois; (18) Scott, Indiana; (19) Osceola, Iowa; (20) Ottawa, Kansas; (21) Lyon, Kentucky; (26) Roscommon, Michigan; (27) Sibley, Minnesota; (28) Tunica, Mississippi; (29) New Madrid, Missouri; (31) Polk, Nebraska; (37) Perquimans, North Carolina; (39) Sandusky, Ohio; (40) Tulsa, Oklahoma; (47) Rhea, Tennessee; (48) Erath, Texas; (51) Pittsylvania, Virginia; (72) Vega Alta, Puerto Rico + + + + + (51) Williamsburg, Virginia + + + + + (51) Emporia, Virginia + + + + + (01) Houston, Alabama; (05) Jefferson, Arkansas; (06) San Benito, California; (08) Larimer, Colorado; (12) Lake, Florida; (13) Coffee, Georgia; (16) Nez Perce, Idaho; (17) Hardin, Illinois; (18) Huntington, Indiana; (19) Franklin, Iowa; (20) Gray, Kansas; (21) Fleming, Kentucky; (22) Natchitoches, Louisiana; (26) Iosco, Michigan; (27) Kittson, Minnesota; (28) Kemper, Mississippi; (29) Dunklin, Missouri; (30) Petroleum, Montana; (31) Garden, Nebraska; (36) Ontario, New York; (37) Franklin, North Carolina; (38) Pierce, North Dakota; (39) Henry, Ohio; (40) Johnston, Oklahoma; (41) Wheeler, Oregon; (42) Lackawanna, Pennsylvania; (45) Marlboro, South Carolina; (46) Hyde, South Dakota; (47) Hardeman, Tennessee; (48) Castro, Texas; (51) Frederick, Virginia; (53) Wahkiakum, Washington; (54) Ohio, West Virginia; (55) Lincoln, Wisconsin; (72) Humacao, Puerto Rico + + + + + (48) Midland, Texas + + + + + (48) Travis, Texas + + + + + (02) Juneau, Alaska; (68) Jabat, Marshall Islands; (69) Saipan, Northern Mariana Islands + + + + + (70) Ngaraard, Palau + + + + + (13) Taylor, Georgia; (48) King, Texas + + + + + (51) Newport News, Virginia + + + + + (13) Laurens, Georgia; (17) Stark, Illinois; (18) Washington, Indiana; (19) Union, Iowa; (20) Seward, Kansas; (21) Morgan, Kentucky; (29) Randolph, Missouri; (31) Valley, Nebraska; (37) Transylvania, North Carolina; (39) Wyandot, Ohio; (47) Van Buren, Tennessee; (48) Goliad, Texas; (51) Southampton, Virginia + + + + + (02) Yukon-Koyukuk, Alaska + + + + + (68) Rongrik, Marshall Islands + + + + + (68) Namorik, Marshall Islands + + + + + (02) Northwest Arctic (Kobuk), Alaska; (68) Kili, Marshall Islands + + + + + (01) Butler, Alabama; (02) Aleutians East, Alaska; (04) Maricopa, Arizona; (05) Calhoun, Arkansas; (06) Contra Costa, California; (08) Boulder, Colorado; (09) Tolland, Connecticut; (12) Calhoun, Florida; (13) Barrow, Georgia; (16) Blaine, Idaho; (17) Calhoun, Illinois; (18) Brown, Indiana; (19) Black Hawk, Iowa; (20) Brown, Kansas; (21) Bell, Kentucky; (22) Bienville, Louisiana; (23) Knox, Maine; (24) Carroll, Maryland; (25) Hampden, Massachusetts; (26) Baraga, Michigan; (27) Blue Earth, Minnesota; (28) Calhoun, Mississippi; (29) Bates, Missouri; (30) Cascade, Montana; (31) Box Butte, Nebraska; (32) Humboldt, Nevada; (33) Merrimack, New Hampshire; (34) Essex, New Jersey; (35) Dona Ana, New Mexico; (36) Chautauqua, New York; (37) Beaufort, North Carolina; (38) Burke, North Dakota; (39) Belmont, Ohio; (40) Bryan, Oklahoma; (41) Crook, Oregon; (42) Blair, Pennsylvania; (45) Beaufort, South Carolina; (46) Brown, South Dakota; (47) Campbell, Tennessee; (48) Atascosa, Texas; (49) Duchesne, Utah; (50) Grand Isle, Vermont; (51) Arlington, Virginia; (53) Columbia, Washington; (54) Calhoun, West Virginia; (55) Burnett, Wisconsin; (56) Fremont, Wyoming; (72) Arecibo, Puerto Rico + + + + + (35) Los Alamos, New Mexico + + + + + (13) Walker, Georgia; (48) Lipscomb, Texas + + + + + (01) Shelby, Alabama; (05) Prairie, Arkansas; (08) Summit, Colorado; (12) Seminole, Florida; (13) Forsyth, Georgia; (17) Macoupin, Illinois; (18) Orange, Indiana; (19) Lucas, Iowa; (20) Marshall, Kansas; (21) Kenton, Kentucky; (22) Washington, Louisiana; (26) Montcalm, Michigan; (27) Pipestone, Minnesota; (28) Prentiss, Mississippi; (29) Livingston, Missouri; (31) McPherson, Nebraska; (36) Wayne, New York; (37) Martin, North Carolina; (39) Morrow, Ohio; (40) Pawnee, Oklahoma; (42) Tioga, Pennsylvania; (46) Stanley, South Dakota; (47) Marshall, Tennessee; (48) Deaf Smith, Texas; (51) Mecklenburg, Virginia; (55) Sheboygan, Wisconsin; (72) Rincon, Puerto Rico + + + + + (51) Salem, Virginia + + + + + (72) Florida, Puerto Rico + + + + + (02) Bristol Bay, Alaska; (64) Yap, Federated States of Micronesia; (68) Bikar, Marshall Islands; (75) Trust Territory of the Pacific Islands, + + + + + (01) Covington, Alabama; (05) Dallas, Arkansas; (06) Madera, California; (08) Elbert, Colorado; (12) Gadsden, Florida; (13) Camden, Georgia; (16) Elmore, Idaho; (17) De Witt, Illinois; (18) Elkhart, Indiana; (19) Clarke, Iowa; (20) Decatur, Kansas; (21) Carlisle, Kentucky; (22) Evangeline, Louisiana; (24) Somerset, Maryland; (26) Crawford, Michigan; (27) Dodge, Minnesota; (28) George, Mississippi; (29) Cedar, Missouri; (30) Granite, Montana; (31) Cuming, Nebraska; (34) Union, New Jersey; (35) Rio Arriba, New Mexico; (36) Greene, New York; (37) Cherokee, North Carolina; (38) Griggs, North Dakota; (39) Defiance, Ohio; (40) Custer, Oklahoma; (41) Lane, Oregon; (42) Crawford, Pennsylvania; (45) Fairfield, South Carolina; (46) Deuel, South Dakota; (47) Decatur, Tennessee; (48) Brazoria, Texas; (49) Sanpete, Utah; (53) Klickitat, Washington; (54) Kanawha, West Virginia; (55) Fond Du Lac, Wisconsin; (56) Teton, Wyoming; (72) Ciales, Puerto Rico + + + + + (13) Screven, Georgia; (48) Johnson, Texas + + + + + (48) Williamson, Texas + + + + + (02) Nome, Alaska; (68) Likiep, Marshall Islands + + + + + (01) Talladega, Alabama; (05) Randolph, Arkansas; (08) Washington, Colorado; (12) Suwannee, Florida; (13) Fulton, Georgia; (17) Marion, Illinois; (18) Parke, Indiana; (19) Madison, Iowa; (20) Miami, Kansas; (21) Knox, Kentucky; (22) West Baton Rouge, Louisiana; (26) Muskegon, Michigan; (27) Pope, Minnesota; (28) Rankin, Mississippi; (29) Macon, Missouri; (31) Merrick, Nebraska; (36) Wyoming, New York; (37) Mitchell, North Carolina; (39) Noble, Ohio; (40) Pittsburg, Oklahoma; (42) Venango, Pennsylvania; (46) Todd, South Dakota; (47) Meigs, Tennessee; (48) Denton, Texas; (51) Montgomery, Virginia; (55) Trempealeau, Wisconsin; (72) Sabana Grande, Puerto Rico + + + + + (01) Coffee, Alabama; (05) Craighead, Arkansas; (06) Kings, California; (08) Denver, Colorado; (12) Duval, Florida; (13) Bulloch, Georgia; (16) Cassia, Idaho; (17) Cook, Illinois; (18) Decatur, Indiana; (19) Cedar, Iowa; (20) Coffey, Kansas; (21) Butler, Kentucky; (22) De Soto, Louisiana; (23) York, Maine; (24) Montgomery, Maryland; (26) Cheboygan, Michigan; (27) Cook, Minnesota; (28) Covington, Mississippi; (29) Cape Girardeau, Missouri; (30) Gallatin, Montana; (31) Cherry, Nebraska; (32) Washoe, Nevada; (34) Passaic, New Jersey; (35) McKinley, New Mexico; (36) Essex, New York; (37) Carteret, North Carolina; (38) Foster, North Dakota; (39) Coshocton, Ohio; (40) Comanche, Oklahoma; (41) Jefferson, Oregon; (42) Clarion, Pennsylvania; (45) Darlington, South Carolina; (46) Corson, South Dakota; (47) Coffee, Tennessee; (48) Blanco, Texas; (49) Piute, Utah; (51) Campbell, Virginia; (53) Jefferson, Washington; (54) Hardy, West Virginia; (55) Douglas, Wisconsin; (56) Platte, Wyoming; (72) Carolina, Puerto Rico + + + + + (13) Taliaferro, Georgia; (48) Kerr, Texas + + + + + (48) Taylor, Texas + + + + + (13) Wilcox, Georgia; (48) Marion, Texas + + + + + (68) Lae, Marshall Islands + + + + + (01) Pickens, Alabama; (05) Phillips, Arkansas; (06) Tulare, California; (08) Routt, Colorado; (12) Putnam, Florida; (13) Emanuel, Georgia; (17) Logan, Illinois; (18) Montgomery, Indiana; (19) Keokuk, Iowa; (20) Linn, Kansas; (21) Hopkins, Kentucky; (22) Tensas, Louisiana; (26) Mecosta, Michigan; (27) Norman, Minnesota; (28) Panola, Mississippi; (29) Lafayette, Missouri; (30) Wheatland, Montana; (31) Knox, Nebraska; (36) Tioga, New York; (37) Lenoir, North Carolina; (39) Mercer, Ohio; (40) Okfuskee, Oklahoma; (42) Schuylkill, Pennsylvania; (46) Potter, South Dakota; (47) McMinn, Tennessee; (48) Crosby, Texas; (51) Loudoun, Virginia; (54) Wood, West Virginia; (55) Rusk, Wisconsin; (72) Orocovis, Puerto Rico + + + + + (51) Franklin, Virginia + + + + + (51) Buena Vista, Virginia + + + + + (13) Troup, Georgia; (48) Lavaca, Texas + + + + + (48) Scurry, Texas + + + + + (01) Chilton, Alabama; (04) Pinal, Arizona; (05) Clay, Arkansas; (06) Glenn, California; (08) Conejos, Colorado; (12) Collier, Florida; (13) Bibb, Georgia; (16) Boundary, Idaho; (17) Christian, Illinois; (18) Clay, Indiana; (19) Buena Vista, Iowa; (20) Cherokee, Kansas; (21) Boyle, Kentucky; (22) Caldwell, Louisiana; (23) Piscataquis, Maine; (24) Frederick, Maryland; (25) Norfolk, Massachusetts; (26) Berrien, Michigan; (27) Cass, Minnesota; (28) Claiborne, Mississippi; (29) Buchanan, Missouri; (30) Dawson, Montana; (31) Burt, Nebraska; (32) Mineral, Nevada; (34) Mercer, New Jersey; (35) Harding, New Mexico; (36) Columbia, New York; (37) Buncombe, North Carolina; (38) Dickey, North Dakota; (39) Champaign, Ohio; (40) Cherokee, Oklahoma; (41) Gilliam, Oregon; (42) Cambria, Pennsylvania; (45) Cherokee, South Carolina; (46) Campbell, South Dakota; (47) Cheatham, Tennessee; (48) Bastrop, Texas; (49) Iron, Utah; (50) Rutland, Vermont; (51) Bland, Virginia; (53) Franklin, Washington; (54) Gilmer, West Virginia; (55) Columbia, Wisconsin; (56) Laramie, Wyoming; (72) Bayamon, Puerto Rico + + + + + (01) Barbour, Alabama; (04) Coconino, Arizona; (05) Baxter, Arkansas; (06) Amador, California; (08) Arapahoe, Colorado; (09) Litchfield, Connecticut; (10) Sussex, Delaware; (12) Bay, Florida; (13) Bacon, Georgia; (15) Kalawao, Hawaii; (16) Bannock, Idaho; (17) Bond, Illinois; (18) Bartholomew, Indiana; (19) Allamakee, Iowa; (20) Atchison, Kansas; (21) Anderson, Kentucky; (22) Ascension, Louisiana; (23) Cumberland, Maine; (24) Baltimore, Maryland; (25) Bristol, Massachusetts; (26) Allegan, Michigan; (27) Becker, Minnesota; (28) Amite, Mississippi; (29) Atchison, Missouri; (30) Blaine, Montana; (31) Arthur, Nebraska; (32) Douglas, Nevada; (33) Cheshire, New Hampshire; (34) Burlington, New Jersey; (35) Chaves, New Mexico; (36) Bronx, New York; (37) Alleghany, North Carolina; (38) Benson, North Dakota; (39) Ashland, Ohio; (40) Atoka, Oklahoma; (41) Clackamas, Oregon; (42) Armstrong, Pennsylvania; (44) Newport, Rhode Island; (45) Allendale, South Carolina; (46) Beadle, South Dakota; (47) Benton, Tennessee; (48) Angelina, Texas; (49) Cache, Utah; (50) Caledonia, Vermont; (51) Alleghany, Virginia; (53) Benton, Washington; (54) Boone, West Virginia; (55) Barron, Wisconsin; (56) Campbell, Wyoming; (64) Kosrae, Federated States of Micronesia; (72) Aguadilla, Puerto Rico; (75) Trust Territory of the Pacific Islands, + + + + + (51) Colonial Heights, Virginia + + + + + (70) Tobi, Palau + + + + + (13) Montgomery, Georgia; (20) Wyandotte, Kansas; (21) Scott, Kentucky; (29) Stone, Missouri; (48) Hays, Texas + + + + + (48) Oldham, Texas + + + + + (01) Russell, Alabama; (05) Polk, Arkansas; (06) Yolo, California; (08) San Miguel, Colorado; (12) Santa Rosa, Florida; (13) Fayette, Georgia; (17) McLean, Illinois; (18) Noble, Indiana; (19) Linn, Iowa; (20) McPherson, Kansas; (21) Jessamine, Kentucky; (22) Vermilion, Louisiana; (26) Missaukee, Michigan; (27) Pennington, Minnesota; (28) Pike, Mississippi; (29) Lincoln, Missouri; (30) Yellowstone Natl Park (part), Montana; (31) Logan, Nebraska; (36) Warren, New York; (37) Macon, North Carolina; (39) Montgomery, Ohio; (40) Osage, Oklahoma; (42) Sullivan, Pennsylvania; (46) Shannon, South Dakota; (47) Madison, Tennessee; (48) Dallas, Texas; (51) Madison, Virginia; (55) Sawyer, Wisconsin; (72) Ponce, Puerto Rico + + + + + (68) Wotho, Marshall Islands + + + + + (48) Menard, Texas + + + + + (02) Matanuska-Susitna, Alaska; (68) Lib, Marshall Islands + + + + + (13) Wayne, Georgia; (48) Lynn, Texas + + + + + (51) Suffolk, Virginia + + + + + (02) Fairbanks North Star, Alaska; (68) Enewetak, Marshall Islands + + + + + (77) US Miscellaneous Pacific Islands, + + + + + (02) Kodiak Island, Alaska; (68) Kwajalein, Marshall Islands; (70) Koror, Palau; (74) Jarvis Island, U.S. Minor Outlying Islands + + + + + (13) Pulaski, Georgia; (21) Whitley, Kentucky; (48) Irion, Texas + + + + + (13) Worth, Georgia; (48) Matagorda, Texas + + + + + (48) Terrell, Texas + + + + + (60) Swains Island, American Samoa; (64) Ponape, Federated States of Micronesia; (68) Arno, Marshall Islands; (75) Trust Territory of the Pacific Islands, + + + + + (48) Swisher, Texas + + + + + (48) Pecos, Texas + + + + + (02) Dillingham, Alaska; (68) Bikini, Marshall Islands + + + + + (05) White, Arkansas; (13) Harris, Georgia; (17) Perry, Illinois; (18) Shelby, Indiana; (19) Page, Iowa; (20) Pawnee, Kansas; (21) McCracken, Kentucky; (26) Saginaw, Michigan; (27) Stearns, Minnesota; (28) Union, Mississippi; (29) Newton, Missouri; (31) Red Willow, Nebraska; (37) Person, North Carolina; (39) Scioto, Ohio; (40) Wagoner, Oklahoma; (47) Roane, Tennessee; (48) Falls, Texas; (51) Powhatan, Virginia; (72) Vega Baja, Puerto Rico + + + + + (48) Sterling, Texas + + + + + (74) Johnston Atoll, U.S. Minor Outlying Islands + + + + + (48) Willacy, Texas + + + + + (13) Oglethorpe, Georgia; (21) Trigg, Kentucky; (29) Washington, Missouri; (48) Hood, Texas + + + + + (01) Lowndes, Alabama; (05) Lonoke, Arkansas; (06) Santa Clara, California; (08) Montrose, Colorado; (12) Martin, Florida; (13) Dawson, Georgia; (16) Valley, Idaho; (17) Jo Daviess, Illinois; (18) Kosciusko, Indiana; (19) Harrison, Iowa; (20) Jackson, Kansas; (21) Grayson, Kentucky; (22) Sabine, Louisiana; (26) Lake, Michigan; (27) McLeod, Minnesota; (28) Lincoln, Mississippi; (29) Hickory, Missouri; (30) Roosevelt, Montana; (31) Hayes, Nebraska; (36) Richmond, New York; (37) Harnett, North Carolina; (38) Sioux, North Dakota; (39) Lake, Ohio; (40) Love, Oklahoma; (42) Mercer, Pennsylvania; (45) Sumter, South Carolina; (46) Lyman, South Dakota; (47) Humphreys, Tennessee; (48) Collin, Texas; (51) Hanover, Virginia; (54) Ritchie, West Virginia; (55) Oneida, Wisconsin; (69) Northern Islands, Northern Mariana Islands; (72) Las Piedras, Puerto Rico + + + + + (13) Schley, Georgia; (48) Jim Wells, Texas + + + + + (68) Ujelang, Marshall Islands; (74) Palmyra Atoll, U.S. Minor Outlying Islands + + + + + (51) Richmond, Virginia + + + + + (13) Lamar, Georgia; (17) Scott, Illinois; (18) Warren, Indiana; (19) Tama, Iowa; (20) Scott, Kansas; (21) Monroe, Kentucky; (27) Wright, Minnesota; (29) Putnam, Missouri; (31) Thomas, Nebraska; (37) Surry, North Carolina; (39) Williams, Ohio; (47) Unicoi, Tennessee; (48) Gillespie, Texas; (51) Shenandoah, Virginia + + + + + (48) Stephens, Texas + + + + + (13) Wheeler, Georgia; (48) McLennan, Texas + + + + + (13) Muscogee, Georgia; (21) Spencer, Kentucky; (29) Texas, Missouri; (48) Hidalgo, Texas + + + + + (48) Mitchell, Texas + + + + + (51) Nansemond, Virginia + + + + + (48) Reeves, Texas + + + + + (01) Macon, Alabama; (05) Madison, Arkansas; (06) Santa Cruz, California; (08) Morgan, Colorado; (12) Monroe, Florida; (13) Decatur, Georgia; (16) Washington, Idaho; (17) Johnson, Illinois; (18) Lagrange, Indiana; (19) Henry, Iowa; (20) Jefferson, Kansas; (21) Green, Kentucky; (22) St Bernard, Louisiana; (26) Lapeer, Michigan; (27) Mahnomen, Minnesota; (28) Lowndes, Mississippi; (29) Holt, Missouri; (30) Rosebud, Montana; (31) Hitchcock, Nebraska; (36) Rockland, New York; (37) Haywood, North Carolina; (38) Slope, North Dakota; (39) Lawrence, Ohio; (40) McClain, Oklahoma; (42) Mifflin, Pennsylvania; (45) Union, South Carolina; (46) McCook, South Dakota; (47) Jackson, Tennessee; (48) Collingsworth, Texas; (51) Henrico, Virginia; (54) Roane, West Virginia; (55) Outagamie, Wisconsin; (72) Loiza, Puerto Rico + + + + + (68) Wotje, Marshall Islands + + + + + (02) Bethel, Alaska; (60) Western, American Samoa; (64) Truk, Federated States of Micronesia; (68) Aur, Marshall Islands; (74) Baker Island, U.S. Minor Outlying Islands; (75) Trust Territory of the Pacific Islands, + + + + + (13) Putnam, Georgia; (21) Wolfe, Kentucky; (48) Jack, Texas + + + + + (13) Warren, Georgia; (48) Loving, Texas + + + + + (13) Talbot, Georgia; (48) Kent, Texas + + + + + (48) Washington, Texas + + + + + (51) Bedford, Virginia + + + + + (04) La Paz, Arizona + + + + + (48) Montgomery, Texas + + + + + (01) Blount, Alabama; (04) Graham, Arizona; (05) Boone, Arkansas; (06) Calaveras, California; (08) Baca, Colorado; (09) New Haven, Connecticut; (12) Brevard, Florida; (13) Baldwin, Georgia; (15) Maui, Hawaii; (16) Benewah, Idaho; (17) Brown, Illinois; (18) Blackford, Indiana; (19) Audubon, Iowa; (20) Barton, Kansas; (21) Barren, Kentucky; (22) Avoyelles, Louisiana; (23) Hancock, Maine; (24) Calvert, Maryland; (25) Essex, Massachusetts; (26) Antrim, Michigan; (27) Benton, Minnesota; (28) Benton, Mississippi; (29) Barry, Missouri; (30) Carbon, Montana; (31) Blaine, Nebraska; (32) Esmeralda, Nevada; (33) Grafton, New Hampshire; (34) Cape May, New Jersey; (35) Curry, New Mexico; (36) Cattaraugus, New York; (37) Ashe, North Carolina; (38) Bottineau, North Dakota; (39) Athens, Ohio; (40) Beckham, Oklahoma; (41) Columbia, Oregon; (42) Bedford, Pennsylvania; (44) Washington, Rhode Island; (45) Bamberg, South Carolina; (46) Bon Homme, South Dakota; (47) Blount, Tennessee; (48) Archer, Texas; (49) Daggett, Utah; (50) Essex, Vermont; (51) Amherst, Virginia; (53) Clallam, Washington; (54) Brooke, West Virginia; (55) Brown, Wisconsin; (56) Converse, Wyoming; (72) Aibonito, Puerto Rico + + + + + (13) Meriwether, Georgia; (17) Williamson, Illinois; (20) Wallace, Kansas; (21) Pulaski, Kentucky; (29) Scotland, Missouri; (37) Yancey, North Carolina; (48) Hardin, Texas; (51) York, Virginia + + + + + (51) Covington, Virginia + + + + + (01) Mobile, Alabama; (05) Montgomery, Arkansas; (06) Sonoma, California; (08) Pitkin, Colorado; (12) Osceola, Florida; (13) Douglas, Georgia; (17) Lake, Illinois; (18) Marion, Indiana; (19) Jackson, Iowa; (20) Kiowa, Kansas; (21) Harrison, Kentucky; (22) St Landry, Louisiana; (26) Mackinac, Michigan; (27) Morrison, Minnesota; (28) Montgomery, Mississippi; (29) Jasper, Missouri; (30) Sweet Grass, Montana; (31) Johnson, Nebraska; (36) Schuyler, New York; (37) Iredell, North Carolina; (38) Traill, North Dakota; (39) Madison, Ohio; (40) Mayes, Oklahoma; (42) Northumberland, Pennsylvania; (46) Miner, South Dakota; (47) Lauderdale, Tennessee; (48) Cooke, Texas; (51) King And Queen, Virginia; (54) Upshur, West Virginia; (55) Portage, Wisconsin; (72) Mayaguez, Puerto Rico + + + + + (01) Cleburne, Alabama; (05) Conway, Arkansas; (06) Kern, California; (08) Delta, Colorado; (12) Dixie, Florida; (13) Bryan, Georgia; (16) Caribou, Idaho; (17) Coles, Illinois; (18) Dearborn, Indiana; (19) Cass, Iowa; (20) Cloud, Kansas; (21) Bullitt, Kentucky; (22) Concordia, Louisiana; (23) Washington, Maine; (24) Kent, Maryland; (26) Charlevoix, Michigan; (27) Clearwater, Minnesota; (28) Copiah, Mississippi; (29) Camden, Missouri; (30) Flathead, Montana; (31) Chase, Nebraska; (32) Storey, Nevada; (34) Ocean, New Jersey; (35) Luna, New Mexico; (36) Erie, New York; (37) Camden, North Carolina; (38) Emmons, North Dakota; (39) Columbiana, Ohio; (40) Coal, Oklahoma; (41) Jackson, Oregon; (42) Chester, Pennsylvania; (45) Colleton, South Carolina; (46) Codington, South Dakota; (47) Cocke, Tennessee; (48) Bexar, Texas; (49) Morgan, Utah; (51) Buckingham, Virginia; (53) Island, Washington; (54) Hancock, West Virginia; (55) Door, Wisconsin; (56) Park, Wyoming; (72) Canovanas, Puerto Rico + + + + + (13) Tattnall, Georgia; (48) Kimble, Texas + + + + + (70) Ngarchelong, Palau + + + + + (02) Aleutian Islands, Alaska; (60) Eastern, American Samoa; (66) Guam, Guam; (68) Ailinglaplap, Marshall Islands; (69) Garapan, Northern Mariana Islands; (70) Angaur, Palau; (78) St. Croix, Virgin Islands of the U.S. + + + + + (05) Sharp, Arkansas; (13) Gwinnett, Georgia; (17) Montgomery, Illinois; (18) Randolph, Indiana; (19) Monroe, Iowa; (20) Ness, Kansas; (21) Lewis, Kentucky; (26) Oscoda, Michigan; (27) Roseau, Minnesota; (28) Tallahatchie, Mississippi; (29) Moniteau, Missouri; (31) Perkins, Nebraska; (37) Orange, North Carolina; (39) Preble, Ohio; (40) Sequoyah, Oklahoma; (46) Yankton, South Dakota; (47) Perry, Tennessee; (48) Ector, Texas; (51) Nottoway, Virginia; (55) Waupaca, Wisconsin; (72) Toa Alta, Puerto Rico + + + + + (13) Jones, Georgia; (17) Schuyler, Illinois; (18) Wabash, Indiana; (19) Story, Iowa; (20) Saline, Kansas; (21) Metcalfe, Kentucky; (27) Winona, Minnesota; (29) Pulaski, Missouri; (31) Thayer, Nebraska; (37) Stokes, North Carolina; (39) Wayne, Ohio; (47) Trousdale, Tennessee; (48) Garza, Texas; (51) Scott, Virginia + + + + + (13) Ware, Georgia; (48) Llano, Texas + + + + + (01) Lawrence, Alabama; (05) Lincoln, Arkansas; (06) San Luis Obispo, California; (08) Mineral, Colorado; (12) Madison, Florida; (13) Crawford, Georgia; (16) Shoshone, Idaho; (17) Jasper, Illinois; (18) Jennings, Indiana; (19) Hamilton, Iowa; (20) Harvey, Kansas; (21) Garrard, Kentucky; (22) Rapides, Louisiana; (26) Kalkaska, Michigan; (27) Le Sueur, Minnesota; (28) Leake, Mississippi; (29) Grundy, Missouri; (30) Prairie, Montana; (31) Hall, Nebraska; (36) Putnam, New York; (37) Greene, North Carolina; (38) Rolette, North Dakota; (39) Jackson, Ohio; (40) Le Flore, Oklahoma; (42) Luzerne, Pennsylvania; (45) Richland, South Carolina; (46) Lake, South Dakota; (47) Henry, Tennessee; (48) Cochran, Texas; (51) Greene, Virginia; (54) Putnam, West Virginia; (55) Milwaukee, Wisconsin; (72) Lajas, Puerto Rico + + + + + (51) Portsmouth, Virginia + + + + + (13) Randolph, Georgia; (48) Jeff Davis, Texas + + + + + (13) Jefferson, Georgia; (17) St Clair, Illinois; (18) Vanderburgh, Indiana; (19) Scott, Iowa; (20) Rooks, Kansas; (21) Meade, Kentucky; (26) Wayne, Michigan; (27) Washington, Minnesota; (28) Yazoo, Mississippi; (29) Pike, Missouri; (31) Sherman, Nebraska; (37) Sampson, North Carolina; (39) Vinton, Ohio; (47) Sullivan, Tennessee; (48) Frio, Texas; (51) Rockbridge, Virginia + + + + + (70) Ngchesar, Palau + + + + + (48) Randall, Texas + + + + + (68) Rongelap, Marshall Islands; (70) Peleliu, Palau; (74) Navassa Island, U.S. Minor Outlying Islands + + + + + (01) Dale, Alabama; (05) Faulkner, Arkansas; (06) Mendocino, California; (08) Garfield, Colorado; (12) Gulf, Florida; (13) Carroll, Georgia; (16) Gem, Idaho; (17) Edgar, Illinois; (18) Fountain, Indiana; (19) Clinton, Iowa; (20) Douglas, Kansas; (21) Casey, Kentucky; (22) Iberia, Louisiana; (24) Wicomico, Maryland; (26) Eaton, Michigan; (27) Fillmore, Minnesota; (28) Hancock, Mississippi; (29) Clark, Missouri; (30) Judith Basin, Montana; (31) Dawes, Nebraska; (35) San Juan, New Mexico; (36) Jefferson, New York; (37) Cleveland, North Carolina; (38) La Moure, North Dakota; (39) Fairfield, Ohio; (40) Ellis, Oklahoma; (41) Malheur, Oregon; (42) Delaware, Pennsylvania; (45) Greenville, South Carolina; (46) Edmunds, South Dakota; (47) Dyer, Tennessee; (48) Briscoe, Texas; (49) Tooele, Utah; (51) Craig, Virginia; (53) Mason, Washington; (54) Logan, West Virginia; (55) Green, Wisconsin; (56) Weston, Wyoming; (72) Comerio, Puerto Rico + + + + + (01) Franklin, Alabama; (05) Hot Spring, Arkansas; (06) Orange, California; (08) Jefferson, Colorado; (12) Holmes, Florida; (13) Clarke, Georgia; (16) Lemhi, Idaho; (17) Gallatin, Illinois; (18) Hancock, Indiana; (19) Dickinson, Iowa; (20) Franklin, Kansas; (21) Daviess, Kentucky; (22) La Salle, Louisiana; (26) Hillsdale, Michigan; (27) Isanti, Minnesota; (28) Jackson, Mississippi; (29) Dallas, Missouri; (30) Meagher, Montana; (31) Fillmore, Nebraska; (35) Union, New Mexico; (36) Nassau, New York; (37) Davie, North Carolina; (38) Morton, North Dakota; (39) Guernsey, Ohio; (40) Harper, Oklahoma; (41) Umatilla, Oregon; (42) Greene, Pennsylvania; (45) Laurens, South Carolina; (46) Hand, South Dakota; (47) Greene, Tennessee; (48) Callahan, Texas; (51) Fairfax, Virginia; (53) Skamania, Washington; (54) Mingo, West Virginia; (55) Kenosha, Wisconsin; (72) Guayanilla, Puerto Rico + + + + + (13) Walton, Georgia; (48) Live Oak, Texas + + + + + (13) Union, Georgia; (48) Liberty, Texas + + + + + (48) Maverick, Texas + + + + + (48) San Augustine, Texas + + + + + (48) Wharton, Texas + + + + + (51) Waynesboro, Virginia + + + + + (48) Navarro, Texas + + + + + (01) Sumter, Alabama; (05) Pulaski, Arkansas; (08) Teller, Colorado; (12) Sumter, Florida; (13) Franklin, Georgia; (17) Madison, Illinois; (18) Owen, Indiana; (19) Lyon, Iowa; (20) Meade, Kansas; (21) Knott, Kentucky; (22) Webster, Louisiana; (26) Montmorency, Michigan; (27) Polk, Minnesota; (28) Quitman, Mississippi; (29) McDonald, Missouri; (31) Madison, Nebraska; (36) Westchester, New York; (37) Mecklenburg, North Carolina; (39) Muskingum, Ohio; (40) Payne, Oklahoma; (42) Union, Pennsylvania; (46) Sully, South Dakota; (47) Maury, Tennessee; (48) Delta, Texas; (51) Middlesex, Virginia; (55) Taylor, Wisconsin; (72) Rio Grande, Puerto Rico + + + + + (01) Chambers, Alabama; (04) Navajo, Arizona; (05) Chicot, Arkansas; (06) El Dorado, California; (08) Cheyenne, Colorado; (12) Citrus, Florida; (13) Ben Hill, Georgia; (16) Bonner, Idaho; (17) Cass, Illinois; (18) Cass, Indiana; (19) Bremer, Iowa; (20) Chase, Kansas; (21) Bourbon, Kentucky; (22) Caddo, Louisiana; (23) Oxford, Maine; (24) Charles, Maryland; (25) Middlesex, Massachusetts; (26) Bay, Michigan; (27) Carlton, Minnesota; (28) Chickasaw, Mississippi; (29) Bollinger, Missouri; (30) Custer, Montana; (31) Brown, Nebraska; (32) Lincoln, Nevada; (33) Strafford, New Hampshire; (34) Hudson, New Jersey; (35) Grant, New Mexico; (36) Chenango, New York; (37) Bladen, North Carolina; (38) Cass, North Dakota; (39) Butler, Ohio; (40) Canadian, Oklahoma; (41) Deschutes, Oregon; (42) Bucks, Pennsylvania; (45) Calhoun, South Carolina; (46) Buffalo, South Dakota; (47) Carroll, Tennessee; (48) Bailey, Texas; (49) Garfield, Utah; (50) Orange, Vermont; (51) Bath, Virginia; (53) Douglas, Washington; (54) Doddridge, West Virginia; (55) Chippewa, Wisconsin; (56) Hot Springs, Wyoming; (72) Barceloneta, Puerto Rico + + + + + (01) Madison, Alabama; (05) Marion, Arkansas; (06) Shasta, California; (08) Otero, Colorado; (12) Nassau, Florida; (13) De Kalb, Georgia; (17) Kane, Illinois; (18) Lake, Indiana; (19) Howard, Iowa; (20) Jewell, Kansas; (21) Greenup, Kentucky; (22) St Charles, Louisiana; (26) Leelanau, Michigan; (27) Marshall, Minnesota; (28) Madison, Mississippi; (29) Howard, Missouri; (30) Sanders, Montana; (31) Holt, Nebraska; (36) St Lawrence, New York; (37) Henderson, North Carolina; (38) Stark, North Dakota; (39) Licking, Ohio; (40) McCurtain, Oklahoma; (42) Monroe, Pennsylvania; (45) Williamsburg, South Carolina; (46) McPherson, South Dakota; (47) Jefferson, Tennessee; (48) Colorado, Texas; (51) Henry, Virginia; (54) Summers, West Virginia; (55) Ozaukee, Wisconsin; (72) Luquillo, Puerto Rico + + + + + (05) Woodruff, Arkansas; (13) Hart, Georgia; (17) Piatt, Illinois; (18) Spencer, Indiana; (19) Palo Alto, Iowa; (20) Phillips, Kansas; (21) McCreary, Kentucky; (26) St Clair, Michigan; (27) Steele, Minnesota; (28) Walthall, Mississippi; (29) Nodaway, Missouri; (31) Richardson, Nebraska; (37) Pitt, North Carolina; (39) Seneca, Ohio; (40) Washington, Oklahoma; (47) Robertson, Tennessee; (48) Fannin, Texas; (51) Prince Edward, Virginia; (72) Vieques, Puerto Rico + + + + + (02) Sitka, Alaska + + + + + (51) Manassas Park, Virginia + + + + + (01) Bullock, Alabama; (04) Greenlee, Arizona; (05) Bradley, Arkansas; (06) Colusa, California; (08) Bent, Colorado; (09) New London, Connecticut; (12) Broward, Florida; (13) Banks, Georgia; (16) Bingham, Idaho; (17) Bureau, Illinois; (18) Boone, Indiana; (19) Benton, Iowa; (20) Bourbon, Kansas; (21) Bath, Kentucky; (22) Beauregard, Louisiana; (23) Kennebec, Maine; (24) Caroline, Maryland; (25) Franklin, Massachusetts; (26) Arenac, Michigan; (27) Big Stone, Minnesota; (28) Bolivar, Mississippi; (29) Barton, Missouri; (30) Carter, Montana; (31) Boone, Nebraska; (32) Eureka, Nevada; (33) Hillsborough, New Hampshire; (34) Cumberland, New Jersey; (35) De Baca, New Mexico; (36) Cayuga, New York; (37) Avery, North Carolina; (38) Bowman, North Dakota; (39) Auglaize, Ohio; (40) Blaine, Oklahoma; (41) Coos, Oregon; (42) Berks, Pennsylvania; (45) Barnwell, South Carolina; (46) Brookings, South Dakota; (47) Bradley, Tennessee; (48) Armstrong, Texas; (49) Davis, Utah; (50) Franklin, Vermont; (51) Appomattox, Virginia; (53) Clark, Washington; (54) Cabell, West Virginia; (55) Buffalo, Wisconsin; (56) Crook, Wyoming; (72) Anasco, Puerto Rico + + + + + (01) Walker, Alabama; (05) Scott, Arkansas; (12) Volusia, Florida; (13) Glynn, Georgia; (17) Massac, Illinois; (18) Porter, Indiana; (19) Marshall, Iowa; (20) Morris, Kansas; (21) Lawrence, Kentucky; (22) Winn, Louisiana; (26) Oceana, Michigan; (27) Redwood, Minnesota; (28) Simpson, Mississippi; (29) Marion, Missouri; (31) Nemaha, Nebraska; (37) Nash, North Carolina; (39) Perry, Ohio; (40) Pushmataha, Oklahoma; (42) Wayne, Pennsylvania; (46) Union, South Dakota; (47) Moore, Tennessee; (48) Dimmit, Texas; (51) New Kent, Virginia; (55) Walworth, Wisconsin; (72) San Juan, Puerto Rico + + + + + (48) Wilson, Texas + + + + + (48) Shelby, Texas + + + + + (48) Morris, Texas + + + + + (02) Kenai Peninsula, Alaska + + + + + (48) Runnels, Texas + + + + + (48) Reagan, Texas + + + + + (01) Crenshaw, Alabama; (05) Desha, Arkansas; (06) Marin, California; (08) El Paso, Colorado; (12) Gilchrist, Florida; (16) Franklin, Idaho; (17) Douglas, Illinois; (18) Fayette, Indiana; (19) Clay, Iowa; (20) Dickinson, Kansas; (21) Carroll, Kentucky; (22) Franklin, Louisiana; (24) Talbot, Maryland; (26) Delta, Michigan; (27) Douglas, Minnesota; (28) Greene, Mississippi; (29) Chariton, Missouri; (30) Hill, Montana; (31) Custer, Nebraska; (34) Warren, New Jersey; (35) Roosevelt, New Mexico; (36) Hamilton, New York; (37) Chowan, North Carolina; (38) Hettinger, North Dakota; (39) Delaware, Ohio; (40) Delaware, Oklahoma; (41) Lincoln, Oregon; (42) Cumberland, Pennsylvania; (45) Florence, South Carolina; (46) Dewey, South Dakota; (47) De Kalb, Tennessee; (48) Brazos, Texas; (49) Sevier, Utah; (51) Chesterfield, Virginia; (53) Lewis, Washington; (54) Lewis, West Virginia; (55) Forest, Wisconsin; (56) Uinta, Wyoming; (72) Cidra, Puerto Rico + + + + + (13) Wilkinson, Georgia; (48) Mason, Texas + + + + + (01) Pike, Alabama; (05) Pike, Arkansas; (06) Tuolumne, California; (08) Saguache, Colorado; (12) St Johns, Florida; (13) Evans, Georgia; (17) McDonough, Illinois; (18) Morgan, Indiana; (19) Kossuth, Iowa; (20) Logan, Kansas; (21) Jackson, Kentucky; (22) Terrebonne, Louisiana; (26) Menominee, Michigan; (27) Olmsted, Minnesota; (28) Pearl River, Mississippi; (29) Lawrence, Missouri; (30) Wibaux, Montana; (31) Lancaster, Nebraska; (36) Tompkins, New York; (37) Lincoln, North Carolina; (39) Miami, Ohio; (40) Oklahoma, Oklahoma; (42) Snyder, Pennsylvania; (46) Roberts, South Dakota; (47) McNairy, Tennessee; (48) Culberson, Texas; (51) Louisa, Virginia; (54) Wyoming, West Virginia; (55) St Croix, Wisconsin; (72) Patillas, Puerto Rico + + + + + (01) Coosa, Alabama; (05) Cross, Arkansas; (06) Los Angeles, California; (08) Eagle, Colorado; (12) Franklin, Florida; (13) Calhoun, Georgia; (16) Custer, Idaho; (17) De Kalb, Illinois; (18) Dubois, Indiana; (19) Chickasaw, Iowa; (20) Crawford, Kansas; (21) Campbell, Kentucky; (22) East Feliciana, Louisiana; (24) St Mary\s, Maryland; (26) Clinton, Michigan; (27) Dakota, Minnesota; (28) Franklin, Mississippi; (29) Cass, Missouri; (30) Golden Valley, Montana; (31) Colfax, Nebraska; (34) Sussex, New Jersey; (35) Quay, New Mexico; (36) Genesee, New York; (37) Chatham, North Carolina; (38) Grant, North Dakota; (39) Darke, Ohio; (40) Creek, Oklahoma; (41) Lake, Oregon; (42) Columbia, Pennsylvania; (45) Edgefield, South Carolina; (46) Day, South Dakota; (47) Davidson, Tennessee; (48) Bowie, Texas; (49) San Juan, Utah; (51) Charlotte, Virginia; (53) Kittitas, Washington; (54) Jefferson, West Virginia; (55) Florence, Wisconsin; (56) Sweetwater, Wyoming; (72) Ceiba, Puerto Rico + + + + + (13) Stephens, Georgia; (48) Kaufman, Texas + + + + + (13) Tift, Georgia; (48) Lamar, Texas + + + + + (02) Wade Hampton, Alaska + + + + + (48) Wichita, Texas + + + + + (13) Whitfield, Georgia; (48) Madison, Texas + + + + + (01) Elmore, Alabama; (05) Garland, Arkansas; (06) Mono, California; (08) Gunnison, Colorado; (12) Hendry, Florida; (13) Chatham, Georgia; (16) Jefferson, Idaho; (17) Fayette, Illinois; (18) Gibson, Indiana; (19) Davis, Iowa; (20) Ellis, Kansas; (21) Clay, Kentucky; (22) Jefferson, Louisiana; (26) Gladwin, Michigan; (27) Grant, Minnesota; (28) Holmes, Mississippi; (29) Cole, Missouri; (30) Liberty, Montana; (31) Dixon, Nebraska; (35) Sierra, New Mexico; (36) Livingston, New York; (37) Cumberland, North Carolina; (38) McIntosh, North Dakota; (39) Fulton, Ohio; (40) Grady, Oklahoma; (41) Multnomah, Oregon; (42) Fayette, Pennsylvania; (45) Horry, South Carolina; (46) Grant, South Dakota; (47) Franklin, Tennessee; (48) Burleson, Texas; (49) Wasatch, Utah; (51) Dickenson, Virginia; (53) Pend Oreille, Washington; (54) Marshall, West Virginia; (55) Iron, Wisconsin; (72) Dorado, Puerto Rico + + + + + (01) Choctaw, Alabama; (04) Santa Cruz, Arizona; (05) Cleburne, Arkansas; (06) Humboldt, California; (08) Costilla, Colorado; (12) Columbia, Florida; (13) Bleckley, Georgia; (16) Butte, Idaho; (17) Clark, Illinois; (18) Clinton, Indiana; (19) Butler, Iowa; (20) Cheyenne, Kansas; (21) Bracken, Kentucky; (22) Cameron, Louisiana; (23) Sagadahoc, Maine; (24) Garrett, Maryland; (25) Plymouth, Massachusetts; (26) Branch, Michigan; (27) Chippewa, Minnesota; (28) Clarke, Mississippi; (29) Butler, Missouri; (30) Deer Lodge, Montana; (31) Butler, Nebraska; (32) Nye, Nevada; (34) Middlesex, New Jersey; (35) Hidalgo, New Mexico; (36) Cortland, New York; (37) Burke, North Carolina; (38) Divide, North Dakota; (39) Clark, Ohio; (40) Choctaw, Oklahoma; (41) Grant, Oregon; (42) Cameron, Pennsylvania; (45) Chester, South Carolina; (46) Charles Mix, South Dakota; (47) Chester, Tennessee; (48) Baylor, Texas; (49) Juab, Utah; (50) Washington, Vermont; (51) Botetourt, Virginia; (53) Garfield, Washington; (54) Grant, West Virginia; (55) Crawford, Wisconsin; (56) Lincoln, Wyoming; (72) Cabo Rojo, Puerto Rico + + + + + (51) Harrisonburg, Virginia + + + + + (02) Skagway-Yakutat-Angoon, Alaska; (13) Pike, Georgia; (21) Wayne, Kentucky; (48) Hunt, Texas + + + + + (13) Toombs, Georgia; (48) Lamb, Texas + + + + + (48) Rains, Texas + + + + + (48) Medina, Texas + + + + + (01) Greene, Alabama; (05) Independence, Arkansas; (06) Plumas, California; (08) Kit Carson, Colorado; (12) Jackson, Florida; (13) Clayton, Georgia; (16) Lincoln, Idaho; (17) Grundy, Illinois; (18) Hendricks, Indiana; (19) Emmet, Iowa; (20) Gove, Kansas; (21) Elliott, Kentucky; (22) Livingston, Louisiana; (26) Huron, Michigan; (27) Jackson, Minnesota; (28) Jefferson, Mississippi; (29) De Kalb, Missouri; (30) Missoula, Montana; (31) Frontier, Nebraska; (36) Niagara, New York; (37) Durham, North Carolina; (38) Nelson, North Dakota; (39) Hancock, Ohio; (40) Hughes, Oklahoma; (41) Wallowa, Oregon; (42) Indiana, Pennsylvania; (45) Lexington, South Carolina; (46) Harding, South Dakota; (47) Hamblen, Tennessee; (48) Camp, Texas; (51) Floyd, Virginia; (53) Spokane, Washington; (54) Monroe, West Virginia; (55) La Crosse, Wisconsin; (72) Gurabo, Puerto Rico + + + + + (48) Ochiltree, Texas + + + + + (51) Charles City, Virginia + + + + + (13) Lumpkin, Georgia; (17) Warren, Illinois; (19) Webster, Iowa; (20) Stanton, Kansas; (21) Owen, Kentucky; (29) St Francois, Missouri; (37) Washington, North Carolina; (47) Williamson, Tennessee; (48) Guadalupe, Texas; (51) Warren, Virginia + + + + + (13) Spalding, Georgia; (48) Karnes, Texas + + + + + (48) Rusk, Texas + + + + + (48) Nacogdoches, Texas + + + + + (48) Roberts, Texas + + + + + (13) Rockdale, Georgia; (48) Jim Hogg, Texas + + + + + (48) Presidio, Texas + + + + + (13) Madison, Georgia; (17) Whiteside, Illinois; (19) Worth, Iowa; (20) Trego, Kansas; (21) Pike, Kentucky; (29) Saline, Missouri; (37) Wilson, North Carolina; (48) Hansford, Texas; (51) Wise, Virginia + + + + + (70) Melekeiok, Palau + + + + + (51) South Boston, Virginia + + + + + (68) Utrik, Marshall Islands + + + + + (02) Anchorage, Alaska; (60) Manu\a, American Samoa; (75) Trust Territory of the Pacific Islands, ; (78) St. John, Virgin Islands of the U.S. + + + + + (01) Conecuh, Alabama; (05) Crittenden, Arkansas; (06) Lassen, California; (08) Douglas, Colorado; (12) Flagler, Florida; (13) Butts, Georgia; (16) Clearwater, Idaho; (17) Cumberland, Illinois; (18) Delaware, Indiana; (19) Cherokee, Iowa; (20) Cowley, Kansas; (21) Calloway, Kentucky; (22) East Carroll, Louisiana; (24) Queen Anne\s, Maryland; (26) Clare, Michigan; (27) Crow Wing, Minnesota; (28) Forrest, Mississippi; (29) Carter, Missouri; (30) Glacier, Montana; (31) Clay, Nebraska; (34) Somerset, New Jersey; (35) Otero, New Mexico; (36) Fulton, New York; (37) Catawba, North Carolina; (38) Grand Forks, North Dakota; (39) Cuyahoga, Ohio; (40) Craig, Oklahoma; (41) Klamath, Oregon; (42) Clinton, Pennsylvania; (45) Dorchester, South Carolina; (46) Davison, South Dakota; (47) Cumberland, Tennessee; (48) Bosque, Texas; (49) Salt Lake, Utah; (51) Carroll, Virginia; (53) Kitsap, Washington; (54) Jackson, West Virginia; (55) Eau Claire, Wisconsin; (56) Sublette, Wyoming; (72) Cayey, Puerto Rico + + + + + (48) Wheeler, Texas + + + + + (13) Henry, Georgia; (17) Pope, Illinois; (18) Steuben, Indiana; (19) Pocahontas, Iowa; (20) Pratt, Kansas; (21) Madison, Kentucky; (26) Sanilac, Michigan; (27) Swift, Minnesota; (28) Washington, Mississippi; (29) Osage, Missouri; (31) Saline, Nebraska; (37) Randolph, North Carolina; (39) Stark, Ohio; (40) Woods, Oklahoma; (47) Scott, Tennessee; (48) Fisher, Texas; (72) Yabucoa, Puerto Rico + + + + + (48) Tom Green, Texas + + + + + (05) Stone, Arkansas; (13) Habersham, Georgia; (17) Morgan, Illinois; (18) Ripley, Indiana; (19) Montgomery, Iowa; (20) Norton, Kansas; (21) Lincoln, Kentucky; (26) Otsego, Michigan; (27) St Louis, Minnesota; (28) Tate, Mississippi; (29) Monroe, Missouri; (31) Phelps, Nebraska; (37) Pamlico, North Carolina; (39) Putnam, Ohio; (40) Stephens, Oklahoma; (46) Ziebach, South Dakota; (47) Pickett, Tennessee; (48) Edwards, Texas; (51) Orange, Virginia; (55) Waushara, Wisconsin; (72) Toa Baja, Puerto Rico + + + + + (51) Winchester, Virginia + + + + + (48) San Patricio, Texas + + + + + (01) Henry, Alabama; (05) Jackson, Arkansas; (06) Sacramento, California; (08) La Plata, Colorado; (12) Lafayette, Florida; (13) Cobb, Georgia; (16) Minidoka, Idaho; (17) Hancock, Illinois; (18) Howard, Indiana; (19) Floyd, Iowa; (20) Grant, Kansas; (21) Fayette, Kentucky; (22) Morehouse, Louisiana; (26) Ionia, Michigan; (27) Kandiyohi, Minnesota; (28) Jones, Mississippi; (29) Douglas, Missouri; (30) Park, Montana; (31) Gage, Nebraska; (36) Onondaga, New York; (37) Forsyth, North Carolina; (38) Pembina, North Dakota; (39) Harrison, Ohio; (40) Jefferson, Oklahoma; (41) Washington, Oregon; (42) Juniata, Pennsylvania; (45) Marion, South Carolina; (46) Hutchinson, South Dakota; (47) Hancock, Tennessee; (48) Cass, Texas; (51) Franklin, Virginia; (53) Thurston, Washington; (54) Nicholas, West Virginia; (55) Langlade, Wisconsin; (72) Hormigueros, Puerto Rico + + + + + (13) Johnson, Georgia; (17) Sangamon, Illinois; (18) Vigo, Indiana; (19) Sioux, Iowa; (20) Russell, Kansas; (21) Mercer, Kentucky; (27) Wilkin, Minnesota; (29) Polk, Missouri; (31) Stanton, Nebraska; (37) Stanly, North Carolina; (39) Washington, Ohio; (47) Tipton, Tennessee; (48) Galveston, Texas; (51) Russell, Virginia + + + + + (02) Northwest Arctic, Alaska + + + + + (13) Peach, Georgia; (21) Union, Kentucky; (29) Webster, Missouri; (48) Houston, Texas + + + + + (48) Winkler, Texas + + + + + (51) Falls Church, Virginia + + + + + (48) Zavala, Texas + + + + + (48) Walker, Texas + + + + + (48) Tyler, Texas + + + + + (13) Turner, Georgia; (48) Lee, Texas + + + + + (51) Poquoson, Virginia + + + + + (48) Mills, Texas + + + + + (51) Hopewell, Virginia + + + + + (13) Macon, Georgia; (17) White, Illinois; (19) Woodbury, Iowa; (20) Thomas, Kansas; (21) Perry, Kentucky; (29) Ste Genevieve, Missouri; (37) Wilkes, North Carolina; (48) Hamilton, Texas; (51) Westmoreland, Virginia + + + + + (48) Terry, Texas + + + + + (70) Sonsorol, Palau + + + + + (01) Bibb, Alabama; (04) Gila, Arizona; (05) Benton, Arkansas; (06) Butte, California; (08) Archuleta, Colorado; (09) Middlesex, Connecticut; (12) Bradford, Florida; (13) Baker, Georgia; (15) Kauai, Hawaii; (16) Bear Lake, Idaho; (17) Boone, Illinois; (18) Benton, Indiana; (19) Appanoose, Iowa; (20) Barber, Kansas; (21) Ballard, Kentucky; (22) Assumption, Louisiana; (23) Franklin, Maine; (25) Dukes, Massachusetts; (26) Alpena, Michigan; (27) Beltrami, Minnesota; (28) Attala, Mississippi; (29) Audrain, Missouri; (30) Broadwater, Montana; (31) Banner, Nebraska; (32) Elko, Nevada; (33) Coos, New Hampshire; (34) Camden, New Jersey; (35) Colfax, New Mexico; (36) Broome, New York; (37) Anson, North Carolina; (38) Billings, North Dakota; (39) Ashtabula, Ohio; (40) Beaver, Oklahoma; (41) Clatsop, Oregon; (42) Beaver, Pennsylvania; (44) Providence, Rhode Island; (45) Anderson, South Carolina; (46) Bennett, South Dakota; (47) Bledsoe, Tennessee; (48) Aransas, Texas; (49) Carbon, Utah; (50) Chittenden, Vermont; (51) Amelia, Virginia; (53) Chelan, Washington; (54) Braxton, West Virginia; (55) Bayfield, Wisconsin; (56) Carbon, Wyoming; (68) Ailinginae, Marshall Islands; (72) Aguas Buenas, Puerto Rico + + + + + (48) Yoakum, Texas + + + + + (48) Schleicher, Texas + + + + + (48) Tarrant, Texas + + + + + (70) Airai, Palau + + + + + (51) Chesapeake, Virginia + + + + + (48) Ward, Texas + + + + + (68) Ebon, Marshall Islands + + + + + (48) Stonewall, Texas + + + + + + + + + + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\constraint\niem\iso_4217\2.0\iso_4217.xsd + + Codes for the representation of currencies and funds from the International Organization for Standardization (ISO) 4217:2001. + + true + + + + + + + + + Mauritius Rupee: Mauritius + + + + + Uzbekistan Sum: Uzbekistan + + + + + New Dinar: Yugoslavia + + + + + Sudanese Dinar: Sudan + + + + + St Helena Pound: St Helena + + + + + European Unit of Account 17 (E.U.A.- 17): Bond Markets Units + + + + + Irish Pound: Ireland + + + + + Schilling: Austria + + + + + Pataca: Macau + + + + + Pakistan Rupee: Pakistan + + + + + Riel: Cambodia + + + + + Gourde: Haiti + + + + + Italian Lira: Italy, San Marino, Vatican City State (Holy See) + + + + + Quetzal: Guatemala + + + + + Russian Ruble: Russian Federation + + + + + Jamaican Dollar: Jamaica + + + + + Trinidad and Tobago Dollar: Trinidad and Tobago + + + + + Zimbabwe Dollar: Zimbabwe + + + + + Tanzanian Shilling: Tanzania, United Republic Of + + + + + Somoni: Tajikistan + + + + + Cape Verde Escudo: Cape Verde + + + + + Tenge: Kazakhstan + + + + + Guyana Dollar: Guyana + + + + + Tala: Samoa + + + + + Dominican Peso: Dominican Republic + + + + + Andorran Peseta: Andorra + + + + + North Korean Won: Korea, Democratic People's Republic Of + + + + + Dalasi: Gambia + + + + + Unidad de Valor Constante (UVC): Ecuador + + + + + Nakfa: Eritrea + + + + + Codes specifically reserved for testing purposes: + + + + + Kwanza Reajustado: Angola + + + + + Unidades de fomento: Chile + + + + + European Unit of Account 9 (E.U.A.- 9): Bond Markets Units + + + + + Pa'anga: Tonga + + + + + Barbados Dollar: Barbados + + + + + Gold Bond Markets Units: + + + + + Sri Lanka Rupee: Sri Lanka + + + + + Maltese Lira: Malta + + + + + Guinea Franc: Guinea + + + + + Lari: Georgia + + + + + Timor Escudo: East Timor + + + + + Liberian Dollar: Liberia + + + + + Latvian Lats: Latvia + + + + + Seychelles Rupee: Seychelles + + + + + French Franc: Andorra, France, French Guiana, French Southern Territories, Guadeloupe, Martinique, Monaco, Reunion, St Pierre and Miquelon + + + + + Mexican Peso: Mexico + + + + + Gold-Franc: Special settlement currencies + + + + + Drachma: Greece + + + + + Moroccan Dirham: Morocco, Western Sahara + + + + + Tunisian Dinar: Tunisia + + + + + Kwacha: Malawi + + + + + Silver: Bond Markets Units + + + + + CFP Franc: French Polynesia, New Caledonia, Wallis and Futuna Islands + + + + + Yen: Japan + + + + + Leone: Sierra Leone + + + + + Afghani: Afghanistan + + + + + Malaysian Ringgit: Malaysia + + + + + Kina: Papua New Guinea + + + + + Naira: Nigeria + + + + + Dobra: Sao Tome and Principe + + + + + Kwacha: Zambia + + + + + East Caribbean Dollar: Anguilla, Antigua and Barbuda, Dominica, Grenada, Montserrat, St Kitts - Nevis, Saint Lucia, Saint Vincent and The Grenadines + + + + + Convertible Marks: Bosnia and Herzegovina + + + + + European Monetary Unit (E.M.U.-6): Bond Markets Units + + + + + Gibraltar Pound: Gibraltar + + + + + Costa Rican Colon: Costa Rica + + + + + Manat: Turkmenistan + + + + + Kenyan Shilling: Kenya + + + + + Euro: + + + + + New Taiwan Dollar: Taiwan, Province Of China + + + + + Saudi Riyal: Saudi Arabia + + + + + Pula: Botswana + + + + + Iraqi Dinar: Iraq + + + + + Canadian Dollar: Canada + + + + + Swiss Franc: Liechtenstein, Switzerland + + + + + Balboa: Panama + + + + + Pound Sterling: United Kingdom + + + + + Colombian Peso: Colombia + + + + + New Israeli Sheqel: Israel + + + + + CFA Franc BEAC: Cameroon, Central African Republic, Chad, Congo, Equatorial Guinea, Gabon + + + + + Cordoba Oro: Nicaragua + + + + + Spanish Peseta: Andorra, Spain + + + + + Jordanian Dinar: Jordan + + + + + Dong: Vietnam + + + + + Libyan Dinar: Libyan Arab Jamahiriya + + + + + Solomon Islands Dollar: Solomon Islands + + + + + Metical: Mozambique + + + + + Kroon: Estonia + + + + + (Same day): United States + + + + + Algerian Dinar: Algeria + + + + + Lebanese Pound: Lebanon + + + + + Belgian Franc: Belgium + + + + + (financial Rand): Lesotho + + + + + Chilean Peso: Chile + + + + + Uganda Shilling: Uganda + + + + + Kuna: Croatia + + + + + Belize Dollar: Belize + + + + + Bahamian Dollar: Bahamas + + + + + Kip: Lao People's Democratic Republic + + + + + Leu: Romania + + + + + Taka: Bangladesh + + + + + Kyat: Myanmar + + + + + Cyprus Pound: Cyprus + + + + + Palladium: Bond Markets Units + + + + + Mexican Unidad de Inversion (UDI): Mexico + + + + + Hong Kong Dollar: Hong Kong + + + + + Somali Shilling: Somalia + + + + + Kuwaiti Dinar: Kuwait + + + + + Won: Korea, Republic Of + + + + + Nuevo Sol: Peru + + + + + New Kwanza: Angola + + + + + Bulgarian LEV: Bulgaria + + + + + Aruban Guilder: Aruba + + + + + Franc Congolais: Congo, The Democratic Republic Of + + + + + Hryvnia: Ukraine + + + + + Netherlands Guilder: Netherlands + + + + + Brazilian Real: Brazil + + + + + Peso Uruguayo: Uruguay + + + + + Rufiyaa: Maldives + + + + + Luxembourg Franc: Luxembourg + + + + + Tajik Ruble (old): Tajikistan (Old) + + + + + Deutsche Mark: Germany + + + + + Pound: Falkland Islands (Malvinas) + + + + + Yemeni Rial: Yemen + + + + + Comoro Franc: Comoros + + + + + Singapore Dollar: Singapore + + + + + Azerbaijanian Manat: Azerbaijan + + + + + Antillian Guilder: Netherlands Antilles + + + + + CFA Franc BCEAO: Benin, Burkina Faso, Cote D'ivoire, Guinea-Bissau, Mali, Niger, Senegal, Togo + + + + + Lilangeni: Swaziland + + + + + Loti: Lesotho + + + + + Czech Koruna: Czech Republic + + + + + SDR: International Monetary Fund (Imf) + + + + + Sucre: Ecuador + + + + + Platinum: Bond Markets Units + + + + + Yuan Renminbi: China + + + + + El Salvador Colon: El Salvador + + + + + Burundi Franc: Burundi + + + + + Cuban Peso: Cuba + + + + + Cayman Islands Dollar: Cayman Islands + + + + + Rupiah: East Timor, Indonesia + + + + + Guarani: Paraguay + + + + + Norwegian Krone: Bouvet Island, Norway, Svalbard and Jan Mayen Islands + + + + + Ouguiya: Mauritania + + + + + Argentine Peso: Argentina + + + + + Portuguese Escudo: Portugal + + + + + Fiji Dollar: Fiji + + + + + Surinam Guilder: Suriname + + + + + Rial Omani: Oman + + + + + Turkish Lira: Turkey + + + + + Slovak Koruna: Slovakia + + + + + Denar: Macedonia, The Former Yugoslav Republic Of + + + + + Ethiopian Birr: Ethiopia + + + + + Namibia Dollar: Namibia + + + + + Bermudian Dollar: Bermuda + + + + + Rand: Lesotho, Namibia, South Africa + + + + + US Dollar: American Samoa, British Indian Ocean Territory,, Guam, Haiti, Marshall Islands, Micronesia, Northern Mariana Islands, Palau, Panama, Puerto Rico, Turks and Caicos Islands, United States, United States Minor Outlaying Islands, Virgin Islands (British), Virgin Islands (U.S.) + + + + + Lek: Albania + + + + + Rwanda Franc: Rwanda + + + + + Tolar: Slovenia + + + + + UAE Dirham: United Arab Emirates + + + + + Qatari Rial: Qatar + + + + + Russian Ruble: Russian Federation + + + + + Belarussian Ruble: Belarus + + + + + New Zealand Dollar: Cook Islands, New Zealand, Niue, Pitcairn, Tokelau + + + + + Tugrik: Mongolia + + + + + Iranian Rial: Iran (Islamic Republic Of) + + + + + Vatu: Vanuatu + + + + + Swedish Krona: Sweden + + + + + Moldovan Leu: Moldova, Republic Of + + + + + Syrian Pound: Syrian Arab Republic + + + + + Indian Rupee: Bhutan, India + + + + + Lempira: Honduras + + + + + Forint: Hungary + + + + + Nepalese Rupee: Nepal + + + + + Baht: Thailand + + + + + Guinea-Bissau Peso: Guinea-Bissau + + + + + Zloty: Poland + + + + + Danish Krone: Denmark, Faeroe Islands, Greenland + + + + + Lithuanian Litas: Lithuania + + + + + Iceland Krona: Iceland + + + + + Cedi: Ghana + + + + + New Zaire: Zaire + + + + + Egyptian Pound: Egypt + + + + + Bolivar: Venezuela + + + + + European Composite Unit (EURCO): Bond Markets Units + + + + + Markka: Finland + + + + + Armenian Dram: Armenia + + + + + Som: Kyrgyzstan + + + + + Lev: Bulgaria + + + + + UIC-Franc: Special settlement currencies + + + + + Djibouti Franc: Djibouti + + + + + Bahraini Dinar: Bahrain + + + + + Australian Dollar: Australia, Christmas Island, Cocos (Keeling) Islands, Heard and Mcdonald Islands, Kiribati, Nauru, Norfolk Island, Tuvalu + + + + + Philippine Peso: Philippines + + + + + Brunei Dollar: Brunei Darussalam + + + + + (Next day): United States + + + + + Malagasy Franc: Madagascar + + + + + Ngultrum: Bhutan + + + + + The codes assigned for transactions where no currency is involved are:: + + + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\constraint\niem\iso_639-3\2.0\iso_639-3.xsd + + Codes for the representation of names of languages - Part 3: Alpha-3 code for comprehensive coverage of languages. + + true + + + + + + + + + Lomavren + + + + + Aghul + + + + + Tuwuli + + + + + Ritarungo + + + + + Tokelau + + + + + Garreh-Ajuran + + + + + Naba + + + + + Danish + + + + + Marghi South + + + + + Moldavian + + + + + Wilawila + + + + + Kinaray-A + + + + + Remun + + + + + Ebira + + + + + South Muyu + + + + + Kaduo + + + + + Thado Chin + + + + + Bisu + + + + + Jarawa (India) + + + + + Western Tawbuid + + + + + Yidgha + + + + + Old Norse + + + + + Dagbani + + + + + Ndaka + + + + + Tugutil + + + + + Kayabi + + + + + Alak + + + + + Citak + + + + + Kabardian + + + + + Kapori + + + + + Kabalai + + + + + Sekpele + + + + + Yalarnnga + + + + + Western Subanon + + + + + Zirenkel + + + + + Cuneiform Luwian + + + + + Sadri + + + + + Ciwogai + + + + + Chrau + + + + + Wolof + + + + + Kako + + + + + Ngomba + + + + + Northern Luri + + + + + Ngando (Central African Republic) + + + + + Roviana + + + + + Worodougou + + + + + Galo Adi + + + + + Sarudu + + + + + Wuvulu-Aua + + + + + Central Sama + + + + + Pele-Ata + + + + + Kadara + + + + + Mono (Cameroon) + + + + + Navarro-Labourdin Basque + + + + + Lala + + + + + Geme + + + + + Sicite Senoufo + + + + + Toura (Cote d'Ivoire) + + + + + Veracruz Huastec + + + + + Ersu + + + + + Pande + + + + + Khezha Naga + + + + + Minica Huitoto + + + + + Vaghua + + + + + Palumata + + + + + Kara-Kalpak + + + + + Playero + + + + + Navut + + + + + Old Kentish Sign Language + + + + + Sanskrit + + + + + Ligbi + + + + + Serawai + + + + + Ili'uun + + + + + Surigaonon + + + + + Southern Tutchone + + + + + Resigaro + + + + + Wambon + + + + + White Gelao + + + + + Dumun + + + + + Dabe + + + + + Minriq + + + + + Achumawi + + + + + Asurini + + + + + Keder + + + + + Varisi + + + + + Tita + + + + + Barama + + + + + Bandjigali + + + + + Cua + + + + + Old Persian + + + + + Borei + + + + + Legenyem + + + + + Vafsi + + + + + Besisi + + + + + Mokole + + + + + Taino + + + + + Woun Meu + + + + + Wageman + + + + + Ninggerum + + + + + Abure + + + + + Biem + + + + + Nanerige Senoufo + + + + + Kwese + + + + + Bumbita Arapesh + + + + + Muluridyi + + + + + Niuafo'ou + + + + + Skou + + + + + Lua' + + + + + Asumboa + + + + + Tay Boi + + + + + Bali Sign Language + + + + + Esuma + + + + + Halang + + + + + Ogbogolo + + + + + Kaivi + + + + + Lenyima + + + + + Pahlavani + + + + + Mankanya + + + + + Birri + + + + + Mountain Koiali + + + + + Dyangadi + + + + + Northern One + + + + + Arequipa-La Union Quechua + + + + + Shuwa-Zamani + + + + + Usan + + + + + Ayi (China) + + + + + Tabaa Zapotec + + + + + Goanese Konkani + + + + + Mpi + + + + + Pemon + + + + + Bwe Karen + + + + + Lahul Lohar + + + + + Tonga (Nyasa) + + + + + Kawi + + + + + Mburku + + + + + Tagalog + + + + + Bangi + + + + + Mogum + + + + + Gawwada + + + + + Sanga (Democratic Republic of Congo) + + + + + Miriti + + + + + Kumam + + + + + Judeo-Tunisian Arabic + + + + + Soi + + + + + North Wemale + + + + + Pochutec + + + + + Mewati + + + + + Ukuriguma + + + + + Dicamay Agta + + + + + Western Karaboro + + + + + Wagi + + + + + Kumba + + + + + Atruahi + + + + + Chinese + + + + + Maragus + + + + + Mbabaram + + + + + Da'a Kaili + + + + + Sunam + + + + + Kamo + + + + + Aweti + + + + + Yucatec Maya Sign Language + + + + + Kala Lagaw Ya + + + + + Khe + + + + + Ngambay + + + + + Mono (Solomon Islands) + + + + + Ngasa + + + + + Old Georgian + + + + + Abaga + + + + + Higaonon + + + + + Remo + + + + + Badaga + + + + + Male (Papua New Guinea) + + + + + Pankarare + + + + + Modole + + + + + Gbii + + + + + Chumburung + + + + + San Juan Atzingo Popoloca + + + + + Zhang-Zhung + + + + + Nagumi + + + + + Wahgi + + + + + Wojenaka + + + + + Ngalakan + + + + + Karadjeri + + + + + Pije + + + + + Lari + + + + + Warembori + + + + + Tlamacazapa Nahuatl + + + + + Miani + + + + + Bitare + + + + + Ulithian + + + + + Hung + + + + + Mubi + + + + + Central Subanen + + + + + Papiamento + + + + + Icelandic Sign Language + + + + + Surui + + + + + Filomena Mata-Coahuitlan Totonac + + + + + Lolak + + + + + Kei + + + + + Gamale Kham + + + + + Amahuaca + + + + + Pataxo-Hahaai + + + + + Suku + + + + + Nipsan + + + + + Sempan + + + + + Ga'anda + + + + + Orizaba Nahuatl + + + + + Cogui + + + + + Mango + + + + + Guinean Sign Language + + + + + Kwanja + + + + + Kw'adza + + + + + Aushiri + + + + + Kelo + + + + + Yakut + + + + + Biete + + + + + Udmurt + + + + + Jumli + + + + + Natioro + + + + + Western Highland Chatino + + + + + Amundava + + + + + Amikoana + + + + + Miskito + + + + + Croatian + + + + + Samaritan Aramaic + + + + + Mama + + + + + Enrekang + + + + + Sembakung Murut + + + + + Balantak + + + + + Cakfem-Mushere + + + + + Mulam + + + + + Aguaruna + + + + + Ulumanda' + + + + + Northern Ohlone + + + + + Western Lawa + + + + + Judeo-Italian + + + + + Migaama + + + + + Baga Mboteni + + + + + Manda (India) + + + + + Hoava + + + + + Seba + + + + + Solano + + + + + Grass Koiari + + + + + Yoloxochitl Mixtec + + + + + Temoaya Otomi + + + + + Ngongo + + + + + Mbara (Australia) + + + + + Koongo + + + + + Cuyonon + + + + + Midob + + + + + Wahau Kenyah + + + + + Shihhi Arabic + + + + + Ende + + + + + Kwang + + + + + Vunjo + + + + + Liv + + + + + Zome + + + + + Tumbuka + + + + + Rapanui + + + + + Southwest Pashayi + + + + + Namo + + + + + Trinidadian Creole English + + + + + Tungag + + + + + Trio + + + + + Baygo + + + + + Palauan + + + + + Ipeka-Tapuia + + + + + Nyore + + + + + German + + + + + Queyu + + + + + Green Gelao + + + + + Inonhan + + + + + Tobanga + + + + + Kulfa + + + + + Minangkabau + + + + + Slovakian Sign Language + + + + + Irula + + + + + Burmeso + + + + + Laka (Chad) + + + + + Kirike + + + + + Ngam + + + + + Kalispel-Pend d'Oreille + + + + + Brek Karen + + + + + Krio + + + + + Kulisusu + + + + + Avestan + + + + + Lakha + + + + + Kott + + + + + Moksela + + + + + Arhuaco + + + + + Tlalitzlipa Nahuatl + + + + + Busa + + + + + Boon + + + + + Kofa + + + + + Pitjantjatjara + + + + + Ghera + + + + + Nsari + + + + + Yine + + + + + Ndasa + + + + + Comecrudo + + + + + Mum + + + + + Maremgi + + + + + Cypriot Arabic + + + + + Walak + + + + + Idon + + + + + Kudmali + + + + + Baure + + + + + Uare + + + + + Musak + + + + + Muduapa + + + + + Ban Khor Sign Language + + + + + Luyia + + + + + Alcozauca Mixtec + + + + + Urningangg + + + + + Assangori + + + + + Edopi + + + + + Kuikuro-Kalapalo + + + + + Ikulu + + + + + Western Acipa + + + + + Gabri + + + + + Khorasani Turkish + + + + + Arua + + + + + Kalao + + + + + Mamusi + + + + + Carolinian + + + + + Tidikelt Tamazight + + + + + Yanahuanca Pasco Quechua + + + + + Manambu + + + + + Nyungwe + + + + + Birgit + + + + + Mahican + + + + + Senara Senoufo + + + + + Desano + + + + + Bubia + + + + + Mandeali + + + + + Nawdm + + + + + Turumsa + + + + + Bidiyo + + + + + Gilyak + + + + + Wejewa + + + + + Kwakum + + + + + Angguruk Yali + + + + + Tanema + + + + + Brokskat + + + + + Sie + + + + + East Tarangan + + + + + Mbunga + + + + + Oluta Popoluca + + + + + Tagoi + + + + + Arutani + + + + + Kawacha + + + + + Eastern Acipa + + + + + Warumungu + + + + + Nathembo + + + + + Ilongot + + + + + Marik + + + + + Nigerian Pidgin + + + + + Saidi Arabic + + + + + Central Kanuri + + + + + Ganggalida + + + + + Karon + + + + + Laragia + + + + + Soyaltepec Mazatec + + + + + Lengilu + + + + + Yiwom + + + + + San Mateo Del Mar Huave + + + + + Sorsogon Ayta + + + + + Plains Miwok + + + + + Ponam + + + + + Tojolabal + + + + + Choapan Zapotec + + + + + Xiang Chinese + + + + + Lisabata-Nuniali + + + + + Dumbea + + + + + Watubela + + + + + Ogbia + + + + + Southwestern Guiyang Hmong + + + + + Bendi + + + + + Souletin Basque + + + + + Sogdian + + + + + Fernando Po Creole English + + + + + Adabe + + + + + Macuna + + + + + Old Breton + + + + + Tomini + + + + + Che + + + + + Pacahuara + + + + + Banda-Ndele + + + + + Kurama + + + + + Tadyawan + + + + + Canichana + + + + + Anyin Morofo + + + + + Asheninka Perene + + + + + Garza + + + + + Oro + + + + + Otoro + + + + + Abron + + + + + Church Slavic + + + + + Sehwi + + + + + Hitu + + + + + Ma (Democratic Republic of Congo) + + + + + Imonda + + + + + Swampy Cree + + + + + Kuku-Muminh + + + + + Ancient Macedonian + + + + + Warrgamay + + + + + Camtho + + + + + Chiquian Ancash Quechua + + + + + Mapos Buang + + + + + Roma + + + + + Kabatei + + + + + Oloma + + + + + Kele + + + + + Papasena + + + + + Nyawaygi + + + + + Tanacross + + + + + Angal + + + + + Dungmali + + + + + Saterfriesisch + + + + + Baima + + + + + Faliscan + + + + + Akrukay + + + + + Karao + + + + + Yafi + + + + + Nyaturu + + + + + Eastern Maninkakan + + + + + Yaeyama + + + + + Kir-Balar + + + + + Guinea Kpelle + + + + + Balti + + + + + Lu + + + + + Pai Tavytera + + + + + Pisidian + + + + + Tajik + + + + + Geba Karen + + + + + Santa Maria Zacatepec Mixtec + + + + + Isthmus-Mecayapan Nahuatl + + + + + Konjo + + + + + Manombai + + + + + Maindo + + + + + Mohegan-Montauk-Narragansett + + + + + Hupla + + + + + Pite Sami + + + + + Asaro'o + + + + + Gor + + + + + Hibito + + + + + Arosi + + + + + Yakan + + + + + Akkadian + + + + + Loarki + + + + + Duruma + + + + + Budukh + + + + + Budza + + + + + Tho + + + + + Maonan + + + + + Sirenik Yupik + + + + + Munsee + + + + + Central Khmer + + + + + Catalonian Sign Language + + + + + Estado de Mexico Otomi + + + + + Maxi Gbe + + + + + Urat + + + + + Western Gurung + + + + + Puluwatese + + + + + Jehai + + + + + Aiklep + + + + + San Felipe Otlaltepec Popoloca + + + + + Dhaiso + + + + + Saudi Arabian Sign Language + + + + + Ahtena + + + + + Binumarien + + + + + Koraku + + + + + Shelta + + + + + Kakanda + + + + + Huixtan Tzotzil + + + + + Zotung Chin + + + + + Gabutamon + + + + + Bekati' + + + + + Kandas + + + + + Ligenza + + + + + Yazgulyam + + + + + Xerente + + + + + Chhintange + + + + + Cataelano Mandaya + + + + + Ugaritic + + + + + Kimaama + + + + + Naxi + + + + + Montagnais + + + + + Zo'e + + + + + Iwaidja + + + + + Bada (Nigeria) + + + + + Sar + + + + + Hmong Do + + + + + Pouye + + + + + Cia-Cia + + + + + Sarua + + + + + Ronga + + + + + Djinba + + + + + Mpur + + + + + Uda + + + + + Iyo'wujwa Chorote + + + + + Lola + + + + + Minokok + + + + + Gikyode + + + + + Bila + + + + + Cun + + + + + Old Spanish + + + + + Tennet + + + + + Mara Chin + + + + + Acoli + + + + + Lala-Bisa + + + + + Dororo + + + + + Southern Bobo Madare + + + + + Tebilung + + + + + Tewe + + + + + Northern Tepehuan + + + + + Ukaan + + + + + Domu + + + + + Baelelea + + + + + Shabak + + + + + Baham + + + + + Ubir + + + + + Inebu One + + + + + Kayong + + + + + Gothic + + + + + Rudbari + + + + + Tobo + + + + + Munggui + + + + + Mbe' + + + + + Totoro + + + + + Meoswar + + + + + Rogo + + + + + Rajasthani + + + + + Wawonii + + + + + Sapo + + + + + Sha + + + + + Kutep + + + + + Irigwe + + + + + Chinook + + + + + Doe + + + + + Alacatlatzala Mixtec + + + + + Tinigua + + + + + Bunaba + + + + + Yeniche + + + + + Para Gaviao + + + + + Sivandi + + + + + Lopa + + + + + Yanomamo + + + + + Hajong + + + + + Pumpokol + + + + + Cumbric + + + + + Jorto + + + + + Namakura + + + + + Banda-Mbres + + + + + Northern Guiyang Hmong + + + + + Khoibu Naga + + + + + Tiruray + + + + + Eastern Highland Chatino + + + + + Krisa + + + + + Bodo Gadaba + + + + + Kohin + + + + + Chenapian + + + + + Tomo Kan Dogon + + + + + Kadaru + + + + + Norwegian Sign Language + + + + + Kutenai + + + + + Panobo + + + + + Bandi + + + + + Pitcairn-Norfolk + + + + + Gbiri-Niragu + + + + + Senggi + + + + + Meroitic + + + + + Limilngan + + + + + Mfumte + + + + + Maeng Itneg + + + + + Southern Pesisir + + + + + Turka + + + + + Atikamekw + + + + + Fataleka + + + + + Westphalien + + + + + Djimini Senoufo + + + + + Semimi + + + + + Kokola + + + + + Tol + + + + + Algonquin + + + + + Musasa + + + + + Medumba + + + + + Columbia-Wenatchi + + + + + Akwa + + + + + Southern Puget Sound Salish + + + + + Ralte + + + + + Boko (Democratic Republic of Congo) + + + + + Japanese + + + + + Ughele + + + + + Syenara Senoufo + + + + + Western Apache + + + + + Northwest Pashayi + + + + + Somali + + + + + Pohnpeian + + + + + Bussa + + + + + Western Lalu Yi + + + + + Veps + + + + + Birale + + + + + Kwambi + + + + + Djeebbana + + + + + Vaghat-Ya-Bijim-Legeri + + + + + Wudu + + + + + Vale + + + + + Tangko + + + + + Rien + + + + + Dzao Min + + + + + Nobiin + + + + + !Xoo + + + + + Kalanga + + + + + Mag-Anchi Ayta + + + + + Sala + + + + + Intha + + + + + Zemgalian + + + + + Kimbu + + + + + Foodo + + + + + Karolanos + + + + + Dem + + + + + Sindhi Bhil + + + + + Safeyoka + + + + + Wangaaybuwan-Ngiyambaa + + + + + Mahei + + + + + Guanche + + + + + Aheu + + + + + Kemak + + + + + Margos-Yarowilca-Lauricocha Quechua + + + + + Katingan + + + + + Mirpur Panjabi + + + + + Wewaw + + + + + Anal + + + + + Momuna + + + + + Southern Rincon Zapotec + + + + + Giiwo + + + + + North Tugen + + + + + Awak + + + + + Sholaga + + + + + Western Abnaki + + + + + Guahibo + + + + + Spokane + + + + + Malinguat + + + + + Nokuku + + + + + Brunei + + + + + Budibud + + + + + Silimo + + + + + Alabat Island Agta + + + + + Dima + + + + + Red Gelao + + + + + Juquila Mixe + + + + + Northeastern Pomo + + + + + Takuu + + + + + Tooro + + + + + Kapingamarangi + + + + + Karipuna + + + + + Papi + + + + + Ndaktup + + + + + Omejes + + + + + Shina + + + + + Kwara'ae + + + + + Laura + + + + + Sedang + + + + + Etruscan + + + + + Cutchi-Swahili + + + + + Lipo + + + + + Shall-Zwall + + + + + Chamari + + + + + Makah + + + + + Lihir + + + + + Lantanai + + + + + Simeulue + + + + + Miju-Mishmi + + + + + Numanggang + + + + + Maiwa (Indonesia) + + + + + Honi + + + + + Kopkaka + + + + + Varli + + + + + Mainfrankisch + + + + + Blang + + + + + Awutu + + + + + Senaya + + + + + Katawixi + + + + + Siksika + + + + + Vestinian + + + + + Lamalera + + + + + Kasem + + + + + Coast Miwok + + + + + Mono (Democratic Republic of Congo) + + + + + Sowanda + + + + + Kaluli + + + + + Belgian Sign Language + + + + + Wa'ema + + + + + Gusii + + + + + Sere + + + + + Budik + + + + + Tay Tac + + + + + Bidyogo + + + + + Bura-Pabir + + + + + Mal Paharia + + + + + Ngad'a + + + + + Tay Sa Pa + + + + + Katabaga + + + + + Turoyo + + + + + Wotapuri-Katarqalai + + + + + San Francisco Matlatzinca + + + + + Northwestern Tamang + + + + + Khakas + + + + + Pongyong + + + + + Nigerian Fulfulde + + + + + Coatlan Zapotec + + + + + Old Mon + + + + + Moose Cree + + + + + Korra Koraga + + + + + Akolet + + + + + Galela + + + + + Bom + + + + + Jebero + + + + + Tunia + + + + + Osatu + + + + + Oko-Juwoi + + + + + Gondi + + + + + Jair Awyu + + + + + Ngbee + + + + + Khua + + + + + Sop + + + + + Zulgo-Gemzek + + + + + Tlacoapa Tlapanec + + + + + Konyak Naga + + + + + Ansus + + + + + Lengo + + + + + Yakima + + + + + Guarani + + + + + Viti + + + + + Esimbi + + + + + Arandai + + + + + Garhwali + + + + + Kupang Malay + + + + + Broome Pearling Lugger Pidgin + + + + + Western Jacalteco + + + + + Hupa + + + + + Venetian + + + + + Semai + + + + + Quechua + + + + + Macedo Romanian + + + + + Maligo + + + + + Jinyu Chinese + + + + + Dongxiang + + + + + Central-Eastern Niger Fulfulde + + + + + Friulian + + + + + Rempi + + + + + Lokaa + + + + + Hiw + + + + + Arin + + + + + Bakumpai + + + + + Yucuna + + + + + Tunggare + + + + + Isthmus-Cosoleacaque Nahuatl + + + + + Papuma + + + + + Tefaro + + + + + Sinaugoro + + + + + Duvle + + + + + Xeta + + + + + Ubang + + + + + North Slavey + + + + + Huba + + + + + Votic + + + + + Tingui-Boto + + + + + Meyah + + + + + American Sign Language + + + + + Selee + + + + + Lydian + + + + + Lombi + + + + + Hittite + + + + + Legbo + + + + + Ngaing + + + + + Wambule + + + + + Anindilyakwa + + + + + Olulumo-Ikom + + + + + Youle Jinuo + + + + + Takelma + + + + + Demisa + + + + + North Mesopotamian Arabic + + + + + Akha + + + + + Labuk-Kinabatangan Kadazan + + + + + Sukur + + + + + Kataang + + + + + Davawenyo + + + + + Keliko + + + + + Bilbil + + + + + Tagal Murut + + + + + Muyang + + + + + Deccan + + + + + Klamath-Modoc + + + + + Sapuan + + + + + Classical Mongolian + + + + + Baltic Romani + + + + + Keuru + + + + + Lufu + + + + + Ncane + + + + + Mamara Senoufo + + + + + Wusa Yi + + + + + Cabecar + + + + + Sikiana + + + + + Mannan + + + + + Savosavo + + + + + Wawa + + + + + Pyen + + + + + Southern One + + + + + Powari + + + + + Sekapan + + + + + Bainouk-Samik + + + + + Chiquihuitlan Mazatec + + + + + Palu + + + + + Pintupi-Luritja + + + + + Sanapana + + + + + Wagdi + + + + + Indonesian Sign Language + + + + + Nyenkha + + + + + Aimaq + + + + + Hamap + + + + + Bagirmi + + + + + Even + + + + + Wunai Bunu + + + + + Palaka Senoufo + + + + + Li'o + + + + + Kasua + + + + + Serua + + + + + Mbesa + + + + + Campidanese Sardinian + + + + + Badui + + + + + Garre + + + + + Amis + + + + + Batak + + + + + Batak Mandailing + + + + + Gey + + + + + Gheg Albanian + + + + + Ngbaka Manza + + + + + Tobelo + + + + + Nalca + + + + + Auwe + + + + + Balanta-Kentohe + + + + + Tai Dam + + + + + Baangi + + + + + Western Katu + + + + + Godwari + + + + + Gaviao Do Jiparana + + + + + Blagar + + + + + Bodo (India) + + + + + Upper Tanana + + + + + Shasta + + + + + Toposa + + + + + Santa Maria Quiegolani Zapotec + + + + + Umbuygamu + + + + + Kemiehua + + + + + Bali (Nigeria) + + + + + Nebaj Ixil + + + + + Tyaraity + + + + + Colorado + + + + + Bathari + + + + + Doghoro + + + + + Pushto + + + + + Tumleo + + + + + Waka + + + + + Larevat + + + + + Lombard + + + + + Juma + + + + + Bongo + + + + + Copala Triqui + + + + + Laopang + + + + + Toma + + + + + Iceve-Maci + + + + + Malayalam + + + + + Ao Naga + + + + + Romano-Serbian + + + + + Sumariup + + + + + Sui + + + + + Arop-Sissano + + + + + Mangole + + + + + Mala (Papua New Guinea) + + + + + Igwe + + + + + Angika + + + + + Nauete + + + + + Dass + + + + + Sharanahua + + + + + Ofo + + + + + Karaga Mandaya + + + + + Pelende + + + + + Kowiai + + + + + Gadang + + + + + Saparua + + + + + Jaya + + + + + Lakota Dida + + + + + Tumtum + + + + + Kadiweu + + + + + Luwo + + + + + Nding + + + + + Kaningdon-Nindem + + + + + Hausa Sign Language + + + + + Bissa + + + + + Giryama + + + + + Tutong 2 + + + + + Oko-Eni-Osayen + + + + + Teke-Tege + + + + + Gogo + + + + + Samaritan + + + + + Cuyamecalco Mixtec + + + + + Logooli + + + + + Nunggubuyu + + + + + Imbabura Highland Quichua + + + + + Nomatsiguenga + + + + + Kado + + + + + Maslam + + + + + Maria (Papua New Guinea) + + + + + Uduk + + + + + Arammba + + + + + Chulym + + + + + Teop + + + + + Mayo + + + + + Turks And Caicos Creole English + + + + + Eastern Lalu Yi + + + + + Toura (Papua New Guinea) + + + + + Orowe + + + + + Tauade + + + + + Abung + + + + + Mursi + + + + + Seke (Vanuatu) + + + + + Uspanteco + + + + + Nen + + + + + Kwamera + + + + + Amganad Ifugao + + + + + Zhire + + + + + Finnish-Swedish Sign Language + + + + + Masiwang + + + + + Mudbura + + + + + Paici + + + + + Nyarafolo Senoufo + + + + + Jara + + + + + Southern Kurdish + + + + + Megleno Romanian + + + + + East Limba + + + + + Yugoslavian Sign Language + + + + + Baoule + + + + + Ajie + + + + + Kangjia + + + + + Mittu + + + + + Waffa + + + + + Uru-Eu-Wau-Wau + + + + + Domaaki + + + + + Mawchi + + + + + To'abaita + + + + + Nume + + + + + Cajonos Zapotec + + + + + Kayapa Kallahan + + + + + Tombelala + + + + + Malango + + + + + Pokanga + + + + + Munduruku + + + + + Tsaangi + + + + + Chicahuaxtla Triqui + + + + + Emiliano-Romagnolo + + + + + Titan + + + + + Tarifit + + + + + Kreye + + + + + Duala + + + + + Tokharian B + + + + + Panoan Katukina + + + + + Labu + + + + + Czech Sign Language + + + + + Gelao + + + + + Xaracuu + + + + + Kamayo + + + + + Kung + + + + + Horo + + + + + Southern Catanduanes Bicolano + + + + + Barbareno + + + + + Ndobo + + + + + Marghi Central + + + + + Udihe + + + + + Santo Domingo Xenacoj Cakchiquel + + + + + Dibiyaso + + + + + Yetfa + + + + + Middle Watut + + + + + Gaam + + + + + Nzakambay + + + + + Romany + + + + + Lavatbura-Lamusong + + + + + Aka-Cari + + + + + Siane + + + + + Tuvalu + + + + + Xipaya + + + + + Kpati + + + + + Jamamadi + + + + + Tadaksahak + + + + + Sepa (Papua New Guinea) + + + + + Tukang Besi South + + + + + Kaian + + + + + Yale + + + + + Limassa + + + + + Livvi + + + + + Albanian + + + + + Indonesian + + + + + Mono (USA) + + + + + Aigon + + + + + Multiple languages + + + + + Kanite + + + + + Quenya + + + + + Northern Tujia + + + + + Eitiep + + + + + Yucatan Maya + + + + + Susuami + + + + + Tuma-Irumu + + + + + Rama + + + + + Torona + + + + + Bandial + + + + + Pendau + + + + + Naasioi + + + + + Old Irish (to 900) + + + + + Vasekela Bushman + + + + + Dezfuli + + + + + Kelinyau Kenyah + + + + + Barrow Point + + + + + Chinali + + + + + Sira + + + + + Huarijio + + + + + Kibet + + + + + Urubu-Kaapor + + + + + Kasiguranin + + + + + Libido + + + + + Kawe + + + + + Woods Cree + + + + + Dilling + + + + + Bilua + + + + + Chuvantsy + + + + + Waritai + + + + + Ikpeng + + + + + Mazatlan Mazatec + + + + + Santo Domingo Albarradas Zapotec + + + + + Ikposo + + + + + Oroqen + + + + + Makayam + + + + + Korean + + + + + Teressa + + + + + Camarines Norte Agta + + + + + Latvian + + + + + Lele (Papua New Guinea) + + + + + Abai Sungai + + + + + Ebughu + + + + + Yareba + + + + + Semnam + + + + + Ocotlan Zapotec + + + + + Mi'kmaq + + + + + Baramu + + + + + Erre + + + + + Beele + + + + + Sonha + + + + + Nete + + + + + Biritai + + + + + Murik + + + + + Mozambican Sign Language + + + + + Yeretuar + + + + + Western Balochi + + + + + Guanyinqiao + + + + + Una + + + + + Mali + + + + + Lungga + + + + + Ron + + + + + Bozaba + + + + + Djauan + + + + + Rawas + + + + + Yerukula + + + + + Jarnango + + + + + Chan Santa Cruz Maya + + + + + Tulu + + + + + Southern Dagaare + + + + + North Mofu + + + + + Dungra Bhil + + + + + Apiaca + + + + + Old Avar + + + + + Czech + + + + + Dewoin + + + + + Maba (Chad) + + + + + Viemo + + + + + Lenca + + + + + Bushi + + + + + Seke (Nepal) + + + + + Ugandan Sign Language + + + + + Cinamiguin Manobo + + + + + Mandan + + + + + Waneci + + + + + Dangaleat + + + + + Daloa Bete + + + + + Kurudu + + + + + Ukwa + + + + + Amba (Solomon Islands) + + + + + Sebob Kenyah + + + + + Madi + + + + + Koke + + + + + Southeast Ijo + + + + + Beng + + + + + Polonombauk + + + + + Arabana + + + + + Pubian + + + + + Suarmin + + + + + Barzani Jewish Neo-Aramaic + + + + + Thu Lao + + + + + Terei + + + + + Romblomanon + + + + + Mt. Iraya Agta + + + + + Moni + + + + + Bukharic + + + + + Ngadjunmaya + + + + + Sonia + + + + + Unserdeutsch + + + + + Nahari + + + + + Kwere + + + + + Latvian Sign Language + + + + + Neko + + + + + Occidental + + + + + Sara Kaba + + + + + Shanga + + + + + Wailapa + + + + + Tso + + + + + Kaur + + + + + Duguri + + + + + Malimpung + + + + + Sa'och + + + + + Brahui + + + + + Atorada + + + + + Mang + + + + + Jemez + + + + + Yonggom + + + + + 'Auhelawa + + + + + Yabem + + + + + Southern Qiandong Hmong + + + + + Lao + + + + + Borgu Fulfulde + + + + + Rapa + + + + + Urali + + + + + Kho'ini + + + + + Xingu Asurini + + + + + Nigeria Mambila + + + + + Guduf-Gava + + + + + Gooniyandi + + + + + Hyam + + + + + North Fali + + + + + Bakairi + + + + + Bete + + + + + Juxtlahuaca Mixtec + + + + + West Kewa + + + + + Moroccan Arabic + + + + + Mor (Mor Islands) + + + + + Ghomara + + + + + Chara + + + + + Bolivian Sign Language + + + + + Swiss-German Sign Language + + + + + Ding + + + + + Coyaima + + + + + Taungyo + + + + + Waigeo + + + + + Kais + + + + + We Western + + + + + Ixtatan Chuj + + + + + Warkay-Bipim + + + + + Maritsaua + + + + + Chazumba Mixtec + + + + + Svan + + + + + Chamicuro + + + + + Tugun + + + + + Basketo + + + + + Southern Mashan Hmong + + + + + Aghem + + + + + Bisorio + + + + + Likuba + + + + + Luna + + + + + Boor + + + + + Masbate Sorsogon + + + + + Elepi + + + + + Molbog + + + + + Tremembe + + + + + Texistepec Popoluca + + + + + Taiwan Sign Language + + + + + Bondum Dom Dogon + + + + + Horom + + + + + Amarasi + + + + + Dhurga + + + + + Krongo + + + + + Harami + + + + + Sorothaptic + + + + + Asheninka Pajonal + + + + + Marsian + + + + + Arha + + + + + Kalabakan + + + + + Teke-Ebo + + + + + Sou + + + + + Kabixi + + + + + Burunge + + + + + Arbereshe Albanian + + + + + Mexican Sign Language + + + + + Darwazi + + + + + Gboloo Grebo + + + + + Min Zhong Chinese + + + + + Humene + + + + + Estonian Sign Language + + + + + Classical Mandaic + + + + + Tanimbili + + + + + Tene Kan Dogon + + + + + Mahou + + + + + Stellingwerfs + + + + + Saafi-Saafi + + + + + Nankina + + + + + Todrah + + + + + Molengue + + + + + Koba + + + + + Parsi-Dari + + + + + Keninjal + + + + + Temacine Tamazight + + + + + Eastern Tzutujil + + + + + Libyan Sign Language + + + + + Pear + + + + + Hattic + + + + + Madukayang Kalinga + + + + + Kxoe + + + + + Taje + + + + + Kriol + + + + + Dugwor + + + + + Amele + + + + + Laki + + + + + Kolom + + + + + Denya + + + + + Doka + + + + + Ngando (Democratic Republic of Congo) + + + + + Belait + + + + + Sabaean + + + + + Arguni + + + + + Southern Cakchiquel + + + + + Mondropolon + + + + + Retta + + + + + Gumalu + + + + + Dangaura Tharu + + + + + Sanglechi-Ishkashimi + + + + + Indri + + + + + Coxima + + + + + Boruca + + + + + Akebu + + + + + Sabine + + + + + Khamyang + + + + + Bhili + + + + + Kosraean + + + + + Welsh + + + + + Tutong 1 + + + + + Kapinawa + + + + + Chalikha + + + + + Geser-Gorom + + + + + Kobon + + + + + Benggoi + + + + + Bolgo + + + + + Samo + + + + + Lenje + + + + + /Gwi + + + + + Tai Daeng + + + + + Wara + + + + + Atsugewi + + + + + Inupiaq + + + + + Kon Keu + + + + + Iku-Gora-Ankwa + + + + + Aka + + + + + Atatlahuca Mixtec + + + + + Maisin + + + + + Abanyom + + + + + Jeri Kuo + + + + + Neapolitan + + + + + Santa Catarina Albarradas Zapotec + + + + + South Watut + + + + + Salasaca Highland Quichua + + + + + Shan + + + + + Tukang Besi North + + + + + Akuku + + + + + Mashco Piro + + + + + Copainala Zoque + + + + + North Junin Quechua + + + + + Neyo + + + + + Yamap + + + + + Sengele + + + + + Fa D'ambu + + + + + Loniu + + + + + Tai Mene + + + + + Kashaya + + + + + Ukhwejo + + + + + Biyom + + + + + Monumbo + + + + + Reunion Creole French + + + + + Palya Bareli + + + + + Nisa + + + + + Etchemin + + + + + Zangskari + + + + + Kombio + + + + + Northeastern Dian Hmong + + + + + Marfa + + + + + Wailaki + + + + + Median + + + + + Kannada + + + + + Lhomi + + + + + Fum + + + + + Bekwarra + + + + + El Nayar Cora + + + + + Siri + + + + + South Tairora + + + + + Buxinhua + + + + + Mortlockese + + + + + Mandandanyi + + + + + Puquina + + + + + Layakha + + + + + Ashtiani + + + + + Awa + + + + + Kamula + + + + + Khamti + + + + + Holoholo + + + + + Mocovi + + + + + Mandjak + + + + + Tulu-Bohuai + + + + + Lango (Uganda) + + + + + Undetermined + + + + + Vanuma + + + + + Isebe + + + + + Mbukushu + + + + + Ogbah + + + + + Malo + + + + + Dyan + + + + + Simba + + + + + Kusu + + + + + Itawit + + + + + Khengkha + + + + + Eastern Katu + + + + + Tarok + + + + + Dibo + + + + + Onjob + + + + + Bandjalang + + + + + Beli (Papua New Guinea) + + + + + Papar + + + + + Pekal + + + + + Jakati + + + + + Gallurese Sardinian + + + + + Virgin Islands Creole English + + + + + Sininkere + + + + + Spanish Sign Language + + + + + Huachipaeri + + + + + Ogea + + + + + Coastal Konjo + + + + + Gronings + + + + + Finallig + + + + + Central Pomo + + + + + Walmajarri + + + + + Low German + + + + + Butbut Kalinga + + + + + Nai + + + + + Kabwa + + + + + Mbelime + + + + + Southern Kalapuya + + + + + Chigmecatitlan Mixtec + + + + + Labo + + + + + South West Bay + + + + + Janji + + + + + Yom + + + + + Ghotuo + + + + + Hadiyya + + + + + Awun + + + + + Yao + + + + + Bungu + + + + + Simbali + + + + + Kabiye + + + + + Hanga Hundi + + + + + Karang + + + + + Mari (Madang Province) + + + + + Parachi + + + + + Tai Loi + + + + + Bugan + + + + + Fuliiru + + + + + Waiwai + + + + + Savara + + + + + Abureni + + + + + Birked + + + + + Rennellese Sign Language + + + + + Talondo' + + + + + Kirmanjki + + + + + Kabwari + + + + + Mlabri + + + + + Mandara + + + + + Sause + + + + + Warlmanpa + + + + + Vasavi + + + + + Wadjiginy + + + + + Dido + + + + + Changriwa + + + + + Kukna + + + + + Rer Bare + + + + + Galeya + + + + + Malvi + + + + + Tepetotutla Chinantec + + + + + Liberia Kpelle + + + + + Guarayu + + + + + Mangbutu + + + + + Runa + + + + + Turiwara + + + + + Bauria + + + + + Belhariya + + + + + Kamu + + + + + Abe + + + + + Elkei + + + + + Nyanga + + + + + Skolt Sami + + + + + Musan + + + + + Bajelani + + + + + Katbol + + + + + Som + + + + + Lithuanian + + + + + Gorovu + + + + + Aore + + + + + Eki + + + + + Ketengban + + + + + Paraguayan Guarani + + + + + Wumeng Yi + + + + + Assan + + + + + Kwesten + + + + + Aer + + + + + Isu (Menchum Division) + + + + + Basa (Cameroon) + + + + + Parakana + + + + + South Levantine Arabic + + + + + Ashkun + + + + + !O!ung + + + + + Ajawa + + + + + Papantla Totonac + + + + + Danish Sign Language + + + + + Toda + + + + + Peve + + + + + Dhimal + + + + + Kunja + + + + + Merlav + + + + + Karo (Brazil) + + + + + Muslim Tat + + + + + Zimbabwe Sign Language + + + + + Yindjilandji + + + + + Jah Hut + + + + + Yuwana + + + + + Turkmen + + + + + Mwaghavul + + + + + Ghanaian Sign Language + + + + + Russia Buriat + + + + + Interlingue + + + + + Kunza + + + + + Mbre + + + + + Tenis + + + + + Queretaro Otomi + + + + + Central Siberian Yupik + + + + + Klingon + + + + + Dari + + + + + Penchal + + + + + Parkwa + + + + + Phake + + + + + Punan Merah + + + + + Amarakaeri + + + + + Xakriaba + + + + + Tayabas Ayta + + + + + Kanashi + + + + + Western Yiddish + + + + + Horuru + + + + + Jutish + + + + + Makhuwa-Moniga + + + + + Tsuvadi + + + + + Esperanto + + + + + Beeke + + + + + Lagwan + + + + + Mota + + + + + Bipi + + + + + Efik + + + + + Atzingo Matlatzinca + + + + + Omaha-Ponca + + + + + Duma + + + + + Southwestern Tamang + + + + + Mubami + + + + + Mann + + + + + Tondano + + + + + Chayahuita + + + + + Cupeno + + + + + Hernican + + + + + Ili Turki + + + + + Upper Grand Valley Dani + + + + + Kamara + + + + + Eastern Abnaki + + + + + Tem + + + + + Moklen + + + + + Nda'nda + + + + + Mendalam Kayan + + + + + Mafa + + + + + Kayan + + + + + Oruma + + + + + Lasi + + + + + Maung + + + + + Kumbainggar + + + + + Middle Cornish + + + + + Ruma + + + + + Bua + + + + + Havu + + + + + Harzani + + + + + Isthmus Zapotec + + + + + Santa Maria De Jesus Cakchiquel + + + + + Bana + + + + + Njen + + + + + Yecuatla Totonac + + + + + Kaba + + + + + Sileibi + + + + + Kosarek Yale + + + + + Sankaran Maninka + + + + + Saliba + + + + + Mandari + + + + + Kis + + + + + Southeastern Nochixtlan Mixtec + + + + + Kalabra + + + + + Fijian + + + + + Luiseno + + + + + San Marcos Tlalcoyalco Popoloca + + + + + Pahari-Potwari + + + + + Mwali Comorian + + + + + Caribbean Hindustani + + + + + Karami + + + + + Hijazi Arabic + + + + + Rembarunga + + + + + Mbere + + + + + Wanap + + + + + Jaruara + + + + + Gweda + + + + + Boano (Sulawesi) + + + + + Burduna + + + + + Southern Sierra Miwok + + + + + Semnani + + + + + Inapang + + + + + Sepen + + + + + Bagheli + + + + + Gone Dau + + + + + Atemble + + + + + Pangasinan + + + + + Boselewa + + + + + Iraqw + + + + + Suba + + + + + Riang (India) + + + + + Edomite + + + + + Wik-Iiyanh + + + + + Nimoa + + + + + Luvale + + + + + Shoshoni + + + + + Hebrew + + + + + Diuwe + + + + + Khao + + + + + Bariai + + + + + Kuku-Ugbanh + + + + + Kakabai + + + + + Gail + + + + + Purum + + + + + Dzuungoo + + + + + Lowa + + + + + Bharia + + + + + Southern Carrier + + + + + Pangutaran Sama + + + + + Zinza + + + + + Mele-Fila + + + + + Maskelynes + + + + + Bwa + + + + + Mambai + + + + + Central Mashan Hmong + + + + + Tokano + + + + + Kaningra + + + + + Yug + + + + + Kari + + + + + Coatzospan Mixtec + + + + + Abom + + + + + Mlomp + + + + + C'lela + + + + + Western Farsi + + + + + Nenets + + + + + Mvuba + + + + + Limbu + + + + + Kele (Democratic Republic of Congo) + + + + + Parawen + + + + + Sihuas Ancash Quechua + + + + + Muna + + + + + Kuni + + + + + Lembak + + + + + Ife + + + + + Lehali + + + + + Amo + + + + + Middle Armenian + + + + + Asturian + + + + + Wadiyara Koli + + + + + North Azerbaijani + + + + + Paama + + + + + Portuguese Sign Language + + + + + Madngele + + + + + Isarog Agta + + + + + Bardi + + + + + Aimol + + + + + Nnam + + + + + Suau + + + + + Tonsawang + + + + + Cherokee + + + + + Babatana + + + + + Keningau Murut + + + + + Ndamba + + + + + Messapic + + + + + Chechen + + + + + Lewo + + + + + Kupia + + + + + Biao Mon + + + + + Southern Nambikuara + + + + + Omotik + + + + + Dargwa + + + + + Tupinikin + + + + + Hema + + + + + Seneca + + + + + Hone + + + + + Gende + + + + + Argentine Sign Language + + + + + Mapun + + + + + Kokata + + + + + Ngombale + + + + + Cashinahua + + + + + Mocheno + + + + + Amanaye + + + + + Vengo + + + + + Abaza + + + + + Kamas + + + + + West Yugur + + + + + Tboli + + + + + Degaru + + + + + Pak-Tong + + + + + Arafundi + + + + + Hadza + + + + + Muinane + + + + + New Zealand Sign Language + + + + + Adap + + + + + Maria (India) + + + + + Waray Sorsogon + + + + + Ontenu + + + + + Kubi + + + + + Maringarr + + + + + Mangerr + + + + + Guambiano + + + + + Biali + + + + + Yekora + + + + + Teke-Kukuya + + + + + Korlai Creole Portuguese + + + + + Gule + + + + + Western Magar + + + + + San Miguel Creole French + + + + + Kinga + + + + + Neme + + + + + Burmbar + + + + + Umbundu + + + + + Bamali + + + + + Yangkam + + + + + Tawara + + + + + Dusun Malang + + + + + Mosiro + + + + + Tay + + + + + Ahe + + + + + Archi + + + + + Nila + + + + + Moraid + + + + + Seze + + + + + Talysh + + + + + Swedish Sign Language + + + + + Gbayi + + + + + Uru + + + + + Bavarian + + + + + Marti Ke + + + + + Guerrero Amuzgo + + + + + Samba + + + + + Salas + + + + + Bauzi + + + + + Malaynon + + + + + Nakara + + + + + Buruwai + + + + + Ambele + + + + + Nekgini + + + + + Katua + + + + + Alladian + + + + + Aka-Kede + + + + + Adang + + + + + Shark Bay + + + + + Chambeali + + + + + Tontemboan + + + + + Lahu + + + + + Namibian Sign Language + + + + + Western Parbate + + + + + Iyayu + + + + + Santa Maria Del Mar Huave + + + + + Mor (Bomberai Peninsula) + + + + + Chayuco Mixtec + + + + + Riverain Sango + + + + + Allar + + + + + Amanab + + + + + Chut + + + + + Katla + + + + + Warnang + + + + + Maritime Sign Language + + + + + Choctaw + + + + + Koenoem + + + + + Dogri (individual language) + + + + + Manchu + + + + + Olekha + + + + + Luwati + + + + + Ali + + + + + Judeo-Tat + + + + + Baga Manduri + + + + + Kaxuiana + + + + + Garig-Ilgar + + + + + Ehueun + + + + + Sampang + + + + + Tula + + + + + Chukwa + + + + + Kayeli + + + + + Sakan + + + + + Bekwil + + + + + Anufo + + + + + Matepi + + + + + Chilean Quechua + + + + + Tajumulco Mam + + + + + Dorze + + + + + Lele (Democratic Republic of Congo) + + + + + Sungkai + + + + + Buru (Nigeria) + + + + + Kauwera + + + + + Borana-Arsi-Guji Oromo + + + + + Zaza + + + + + Rangkas + + + + + Lepki + + + + + Dungan + + + + + Coatecas Altas Zapotec + + + + + Yoba + + + + + Noone + + + + + Olu'bo + + + + + Haya + + + + + Cayuga + + + + + Parsi + + + + + Kaingang + + + + + Guevea De Humboldt Zapotec + + + + + Namonuito + + + + + Dehu + + + + + Indian Sign Language + + + + + Sewa Bay + + + + + Yakaikeke + + + + + Jicarilla Apache + + + + + Kayu Agung + + + + + Ladino + + + + + Uzbek + + + + + Sabu + + + + + Abipon + + + + + Tartessian + + + + + Eastern Balochi + + + + + Simbo + + + + + Glaro-Twabo + + + + + Ndut + + + + + Australian Aborigines Sign Language + + + + + Mbosi + + + + + Ngwaba + + + + + Wakde + + + + + Kakauhua + + + + + Lamaholot + + + + + Maranunggu + + + + + Yuhup + + + + + Western Pokomchi + + + + + East Damar + + + + + Yinbaw Karen + + + + + Jangshung + + + + + Dibabawon Manobo + + + + + Skagit + + + + + Pokoot + + + + + Wedau + + + + + Anambe + + + + + Nottoway + + + + + Tai Hongjin + + + + + Judeo-Georgian + + + + + Asuncion Mixtepec Zapotec + + + + + Latu + + + + + Ware + + + + + Tututni + + + + + Manta + + + + + Ngemba + + + + + Ayoquesco Zapotec + + + + + Zabana + + + + + Sinsauru + + + + + Burumakok + + + + + Enawene-Nawe + + + + + Barai + + + + + Southwest Gbaya + + + + + Kurdish + + + + + Kua + + + + + Bilba + + + + + Nalu + + + + + Hainyaxo Bozo + + + + + Lom + + + + + Bangwinji + + + + + Ayere + + + + + Yil + + + + + Yosondua Mixtec + + + + + Niuean + + + + + Yogad + + + + + Bilakura + + + + + Pinotepa Nacional Mixtec + + + + + Hani + + + + + Enwan (Akwa Ibom State) + + + + + Nomane + + + + + Krache + + + + + Yawanawa + + + + + Zaachila Zapotec + + + + + Sedoa + + + + + Nicaragua Creole English + + + + + Makaa + + + + + Seraiki + + + + + Maykulan + + + + + Balinese + + + + + Konda-Dora + + + + + Laos Sign Language + + + + + Puerto Rican Sign Language + + + + + Komi-Permyak + + + + + Ndai + + + + + Toro Tegu Dogon + + + + + Mefele + + + + + Matis + + + + + Mander + + + + + Uighur + + + + + Tippera + + + + + Nkukoli + + + + + Pwaamei + + + + + Miyobe + + + + + Tolaki + + + + + Yahuna + + + + + Anfillo + + + + + Middle Hittite + + + + + Sulka + + + + + Jiba + + + + + Tuwari + + + + + Musi + + + + + Idu-Mishmi + + + + + Koromira + + + + + Cocos Islands Malay + + + + + Bisis + + + + + Yiddish + + + + + Southern Haida + + + + + Anakalangu + + + + + Santiago del Estero Quichua + + + + + Koibal + + + + + Lanoh + + + + + Italian + + + + + Kwama + + + + + Balanta-Ganja + + + + + Chumash + + + + + Mungaka + + + + + Lehalurup + + + + + Uisai + + + + + Bonerif + + + + + Bomu + + + + + Nyahkur + + + + + Norwegian Bokmal + + + + + Puri + + + + + Mak (Nigeria) + + + + + Lasgerdi + + + + + Tilapa Otomi + + + + + Tase Naga + + + + + Kalenjin + + + + + Botlikh + + + + + Mahasu Pahari + + + + + Cumeral + + + + + Kakabe + + + + + Malas + + + + + Beami + + + + + Arbore + + + + + Jiarong + + + + + Kungarakany + + + + + Idoma + + + + + Kera + + + + + Gula (Chad) + + + + + Miri + + + + + Sheshi Kham + + + + + Guhu-Samane + + + + + Bitur + + + + + Massalat + + + + + Norra + + + + + Tajio + + + + + Kafoa + + + + + Phu Thai + + + + + Auyokawa + + + + + Dhao + + + + + Sighu + + + + + Diriku + + + + + Fulnio + + + + + Wurrugu + + + + + Northern Oaxaca Nahuatl + + + + + Jalapa De Diaz Mazatec + + + + + Sukuma + + + + + Huaylas Ancash Quechua + + + + + Haigwai + + + + + Notsi + + + + + Kamba (Brazil) + + + + + Man Met + + + + + Krevinian + + + + + Gumuz + + + + + Bosngun + + + + + Wallisian + + + + + Chiltepec Chinantec + + + + + Humla + + + + + Adamorobe Sign Language + + + + + Australian Sign Language + + + + + Mangarayi + + + + + Tedim Chin + + + + + Cishingini + + + + + Khamba + + + + + Xiriana + + + + + Cisalpine Gaulish + + + + + South Ucayali Asheninka + + + + + Waja + + + + + Yaka (Congo) + + + + + Tainae + + + + + Blafe + + + + + Mokerang + + + + + Iwam + + + + + Kwer + + + + + Raji + + + + + Rufiji + + + + + Sara + + + + + Moldova Sign Language + + + + + Apali + + + + + Anam + + + + + Tenango Nahuatl + + + + + Kyaka + + + + + Ukrainian Sign Language + + + + + Southwest Tanna + + + + + Mabire + + + + + Pray 3 + + + + + Chacobo + + + + + Tseku + + + + + Nias + + + + + =/Hua + + + + + Karbi + + + + + Nyanja + + + + + Qawasqar + + + + + Alumu-Tesu + + + + + Okpe (Northwestern Edo) + + + + + Dama + + + + + Dengese + + + + + Litzlitz + + + + + Zarma + + + + + Nopala Chatino + + + + + Miltu + + + + + Walamo + + + + + Beti (Cameroon) + + + + + Mwera (Nyasa) + + + + + Armazic + + + + + Pyapun + + + + + Endo + + + + + Smarky Kanum + + + + + Aguano + + + + + Kavalan + + + + + Mato + + + + + Luchazi + + + + + Yaqui + + + + + Dyirbal + + + + + Tikopia + + + + + Texcatepec Otomi + + + + + Comorian + + + + + Tanggu + + + + + Salchuq + + + + + Sarangani Blaan + + + + + Bai + + + + + Pangwali + + + + + Central Puebla Nahuatl + + + + + Kag-Fer-Jiir-Koor-Ror-Us-Zuksun + + + + + Sonsorol + + + + + Pottangi Ollar Gadaba + + + + + Tibea + + + + + Tchumbuli + + + + + Changthang + + + + + Kam + + + + + Embaloh + + + + + Mato Grosso Arara + + + + + Karekare + + + + + Solong + + + + + Lumba-Yakkha + + + + + Uripiv-Wala-Rano-Atchin + + + + + Pongu + + + + + Ibibio + + + + + Nyunga + + + + + Tenggarong Kutai Malay + + + + + Plains Indian Sign Language + + + + + Kagate + + + + + Ufim + + + + + Hunzib + + + + + Tena Lowland Quichua + + + + + Classical Tibetan + + + + + Benyadu' + + + + + Rabinal Achi + + + + + Baga Sitemu + + + + + Hinukh + + + + + Cruzeno + + + + + Malankuravan + + + + + Tomoip + + + + + Tinani + + + + + Pagu + + + + + Karore + + + + + Semandang + + + + + Itonama + + + + + Ineseno + + + + + Bamunka + + + + + Nkutu + + + + + Pilaga + + + + + Skalvian + + + + + Arakanese + + + + + Nusa Laut + + + + + Falam Chin + + + + + Zeem + + + + + Khotanese + + + + + Mokpwe + + + + + Palor + + + + + Lamba + + + + + Sarangani Manobo + + + + + Wiradhuri + + + + + Batak Karo + + + + + Apurina + + + + + Marwari (India) + + + + + Iloko + + + + + Laha (Indonesia) + + + + + Tanguat + + + + + Emerillon + + + + + Angor + + + + + Turi + + + + + Written Oirat + + + + + Ngawn Chin + + + + + Keley-I Kallahan + + + + + Balangao + + + + + Duungooma + + + + + Southern Tiwa + + + + + Gagu + + + + + Bangolan + + + + + E + + + + + Tumbala Chol + + + + + Nyaw + + + + + Perai + + + + + Gulf Arabic + + + + + Nyengo + + + + + Rumai Palaung + + + + + Wayana + + + + + Elotepec Zapotec + + + + + Kuanyama + + + + + Karamojong + + + + + Nanai + + + + + Tetum + + + + + Makasae + + + + + Kol (Papua New Guinea) + + + + + Waci Gbe + + + + + Ndo + + + + + Border Kuna + + + + + Nafi + + + + + Tchitchege + + + + + Gangte + + + + + Western Bru + + + + + Kalagan + + + + + Haisla + + + + + Rayon Zoque + + + + + Yurok + + + + + Usku + + + + + Zakhring + + + + + Eastern Tawbuid + + + + + Tshangla + + + + + Amarag + + + + + Bola + + + + + Lambadi + + + + + Punu + + + + + Centuum + + + + + Bare + + + + + Alngith + + + + + Carijona + + + + + Tobian + + + + + Aka-Kora + + + + + Quileute + + + + + Yassic + + + + + Waddar + + + + + Komso + + + + + Kota Bangun Kutai Malay + + + + + Peere + + + + + Eastern Highland Otomi + + + + + Koguryo + + + + + San Andres Quiche + + + + + Mahongwe + + + + + Ledo Kaili + + + + + Acroa + + + + + Coptic + + + + + Kol (Cameroon) + + + + + Gbanu + + + + + Kono (Nigeria) + + + + + Aruamu + + + + + Wom (Papua New Guinea) + + + + + Turaka + + + + + Burushaski + + + + + Laghu + + + + + Geman Deng + + + + + Evant + + + + + Laru + + + + + Parenga + + + + + Coos + + + + + Jauja Wanca Quechua + + + + + Luxembourgish + + + + + Buru (Indonesia) + + + + + Luri + + + + + Masai + + + + + Pisaflores Tepehua + + + + + Oksapmin + + + + + Guro + + + + + Aghu + + + + + Fon + + + + + Wyandot + + + + + Wirangu + + + + + Kreen-Akarore + + + + + Puinave + + + + + Western Canadian Inuktitut + + + + + West Central Oromo + + + + + Dela-Oenale + + + + + Zhuang + + + + + Bulu (Papua New Guinea) + + + + + Chewong + + + + + Lote + + + + + Baldemu + + + + + Putoh + + + + + Tandia + + + + + Sinasina + + + + + Nhengatu + + + + + Buna + + + + + Yugambal + + + + + Gadsup + + + + + Marubo + + + + + /Xam + + + + + Mwani + + + + + Western Arrarnta + + + + + Armenian + + + + + Gujari + + + + + Nakama + + + + + Bodo (Central African Republic) + + + + + Godie + + + + + Zambian Sign Language + + + + + Baba + + + + + Taabwa + + + + + Manangkari + + + + + Obanliku + + + + + Latin + + + + + Begbere-Ejar + + + + + Reshe + + + + + Sahu + + + + + Hixkaryana + + + + + Krim + + + + + Esselen + + + + + Huitepec Mixtec + + + + + Benabena + + + + + Dakota + + + + + Central Pashto + + + + + Onin + + + + + Potiguara + + + + + Ixcatec + + + + + Sibu + + + + + Ancient Hebrew + + + + + Tangshewi + + + + + Kairak + + + + + Ngindo + + + + + Sindang Kelingi + + + + + Kuku-Mu'inh + + + + + Maskoy Pidgin + + + + + Mingang Doso + + + + + Mabaka Valley Kalinga + + + + + Bishuo + + + + + Bati (Cameroon) + + + + + Burui + + + + + Kami (Nigeria) + + + + + Axamb + + + + + Besoa + + + + + Ladakhi + + + + + Kaamba + + + + + Southern Ohlone + + + + + Maia + + + + + Sobei + + + + + Nobonob + + + + + Ma'anyan + + + + + Kanggape + + + + + Nupe-Nupe-Tako + + + + + Guila Zapotec + + + + + Lutos + + + + + Nyangbo + + + + + Tewa (Indonesia) + + + + + Omi + + + + + Eastern Karaboro + + + + + Soqotri + + + + + Kuman + + + + + Numana-Nunku-Gbantu-Numbu + + + + + Heyo + + + + + Sindhi + + + + + Afitti + + + + + Madak + + + + + Mukulu + + + + + Quinqui + + + + + Malayo + + + + + Lahanan + + + + + Martuyhunira + + + + + Papitalai + + + + + Tareng + + + + + Tirahi + + + + + Seeku + + + + + Agarabi + + + + + Chicomuceltec + + + + + Tajuasohn + + + + + Kurti + + + + + Hanunoo + + + + + Herero + + + + + Tagargrent + + + + + Tsotsitaal + + + + + Old English (ca. 450-1100) + + + + + Elu + + + + + Aklanon + + + + + Pima Bajo + + + + + Fanti + + + + + Buamu + + + + + Ghulfan + + + + + Mbo-Ung + + + + + Kibiri + + + + + Nyabwa + + + + + Tai Hang Tong + + + + + Kugama + + + + + Mairasi + + + + + Kayupulau + + + + + Lauan + + + + + Central Pame + + + + + Sawai + + + + + Kosadle + + + + + Suganga + + + + + Moresada + + + + + Isabi + + + + + Tamagario + + + + + Umbrian + + + + + Principense + + + + + Zenaga + + + + + Tuyuca + + + + + Embera-Catio + + + + + Galice + + + + + Javanese + + + + + Hmong + + + + + North Levantine Arabic + + + + + Wirafed + + + + + Bada (Indonesia) + + + + + Megam + + + + + Buduma + + + + + Molale + + + + + Southern Bai + + + + + Mbe + + + + + Bile + + + + + Koasati + + + + + Comanche + + + + + Murui Huitoto + + + + + Central Mnong + + + + + South Slavey + + + + + Southeastern Tarahumara + + + + + Kati + + + + + Nguon + + + + + Mitla Zapotec + + + + + Kalumpang + + + + + Nsenga + + + + + Kotafon Gbe + + + + + Baga Sobane + + + + + Pakaasnovos + + + + + Kwalhioqua-Tlatskanai + + + + + Wanggamala + + + + + Adhola + + + + + Late Middle Chinese + + + + + Teke-Fuumu + + + + + Moro + + + + + Yakamul + + + + + Forest Enets + + + + + Yamba + + + + + Twents + + + + + Sabah Bisaya + + + + + Paluan + + + + + Kela (Democratic Republic of Congo) + + + + + Tangga + + + + + Karipuna + + + + + Manumanaw Karen + + + + + Kemezung + + + + + Aja (Benin) + + + + + Tlachichilco Tepehua + + + + + Ede Nago + + + + + Bankon + + + + + Madang + + + + + Inapari + + + + + Galindan + + + + + Cebuano + + + + + Sara Dunjo + + + + + Subi + + + + + Wunambal + + + + + Yugh + + + + + Koresh-e Rostam + + + + + Lamatuka + + + + + Tii + + + + + Bawm Chin + + + + + Bahamas Creole English + + + + + Haka Chin + + + + + Kadai + + + + + Petjo + + + + + Ibanag + + + + + Bolo + + + + + Boni + + + + + Sa + + + + + Tuki + + + + + Chiangmai Sign Language + + + + + Thai Sign Language + + + + + Samoan + + + + + Lundayeh + + + + + Nawathinehena + + + + + Moksha + + + + + Buli (Ghana) + + + + + Qabiao + + + + + Batu + + + + + Aiton + + + + + Mapena + + + + + Thompson + + + + + Zay + + + + + Borong + + + + + Kituba (Congo) + + + + + Obulom + + + + + Tutuba + + + + + Northern Mam + + + + + Nyindrou + + + + + Gedeo + + + + + Zimba + + + + + Guerrero Nahuatl + + + + + Maaka + + + + + Jamaican Country Sign Language + + + + + Indo-Portuguese + + + + + Tay Khang + + + + + Bahau River Kenyah + + + + + Bragat + + + + + Tambotalo + + + + + Kabore One + + + + + Ketangalan + + + + + Karkin + + + + + Banawa + + + + + Ormu + + + + + Camling + + + + + Savi + + + + + Warrwa + + + + + Kiput + + + + + Tamazola Mixtec + + + + + Fali Of Baissa + + + + + Warao + + + + + Areba + + + + + Morouas + + + + + Oroha + + + + + Bungku + + + + + Moi (Congo) + + + + + Nhuwala + + + + + Matumbi + + + + + Yaoure + + + + + Yamphe + + + + + Gagauz + + + + + Silt'e + + + + + Wano + + + + + Mbula + + + + + Narango + + + + + Musgu + + + + + Dema + + + + + Tee + + + + + Ntcham + + + + + Guizhou Yi + + + + + Patamona + + + + + Thracian + + + + + Banjar + + + + + Tai Pao + + + + + Taznatit + + + + + Kusunda + + + + + Muyuw + + + + + Petats + + + + + Tonga (Zambia) + + + + + Brazilian Sign Language + + + + + Bahing + + + + + Byep + + + + + Murkim + + + + + Tillamook + + + + + Cree + + + + + Umotina + + + + + Leco + + + + + Bhatri + + + + + Mehri + + + + + Yango + + + + + Kudiya + + + + + Mal + + + + + Nupbikha + + + + + Yamdena + + + + + Cumanagoto + + + + + Soga + + + + + Yuki + + + + + //Gana + + + + + Bilur + + + + + Tofanma + + + + + Laimbue + + + + + Zangwal + + + + + Konai + + + + + Warungu + + + + + Bodo Parja + + + + + Wala + + + + + Mamasa + + + + + Aringa + + + + + Yir Yoront + + + + + Ajyininka Apurucayali + + + + + Sagalla + + + + + Mpuono + + + + + Petapa Zapotec + + + + + Sakam + + + + + Bankagooma + + + + + Furu + + + + + Bondo + + + + + Komo (Sudan) + + + + + Kubo + + + + + Xiri + + + + + Alamblak + + + + + Gumawana + + + + + Enggano + + + + + Chamalal + + + + + Ndoe + + + + + Amdo Tibetan + + + + + Vaagri Booli + + + + + Minigir + + + + + Toba-Maskoy + + + + + Massep + + + + + West Masela + + + + + Durango Nahuatl + + + + + Yuchi + + + + + Yawalapiti + + + + + Kuwaa + + + + + Bassa + + + + + Kwaio + + + + + Serili + + + + + Orokaiva + + + + + Anasi + + + + + Mok + + + + + Ika + + + + + Ghomala' + + + + + Maleku Jaika + + + + + Chuukese + + + + + Chittagonian + + + + + Buol + + + + + Old Marathi + + + + + Ilue + + + + + Akpa + + + + + Dutch + + + + + Pancana + + + + + Baloi + + + + + Northern Cakchiquel + + + + + Lesing-Gelimi + + + + + Antakarinya + + + + + Kashmiri + + + + + British Sign Language + + + + + Car Nicobarese + + + + + Ami + + + + + Yoidik + + + + + Waskia + + + + + Obispeno + + + + + Kono (Guinea) + + + + + Dadibi + + + + + Lapuyan Subanun + + + + + Chonyi + + + + + Dyugun + + + + + Yagwoia + + + + + Tima + + + + + Eggon + + + + + Talieng + + + + + Baluan-Pam + + + + + Fuyug + + + + + Doondo + + + + + Temuan + + + + + Kalam + + + + + Marwari + + + + + Okolod + + + + + Daza + + + + + Boguru + + + + + Cayuse + + + + + Kuy + + + + + Eastern Tamang + + + + + Ifo + + + + + Karitiana + + + + + Nara + + + + + Liberian English + + + + + Bukar Sadong + + + + + Duupa + + + + + Kelon + + + + + Ushojo + + + + + Clallam + + + + + Europanto + + + + + Leningitij + + + + + Babanki + + + + + Southern Nuni + + + + + Ososo + + + + + Orang Kanaq + + + + + Kwadi + + + + + Honduras Sign Language + + + + + Boma + + + + + Iteri + + + + + Paranan + + + + + Lithuanian Sign Language + + + + + Tai Long + + + + + Judeo-Moroccan Arabic + + + + + Kofei + + + + + Zayse-Zergulla + + + + + Southern Kiwai + + + + + Elseng + + + + + San Juan Colorado Mixtec + + + + + Umatilla + + + + + Lenakel + + + + + Songomeno + + + + + Taroko + + + + + Hiberno-Scottish Gaelic + + + + + Northern Tutchone + + + + + Pye Krumen + + + + + Iau + + + + + Cubulco Achi + + + + + Northeastern Thai + + + + + Old Aramaic + + + + + Liburnian + + + + + Dawawa + + + + + Najdi Arabic + + + + + Wanji + + + + + Asho Chin + + + + + Chothe Naga + + + + + Paipai + + + + + Early Tripuri + + + + + Tsoa + + + + + Vunapu + + + + + Dhatki + + + + + Hoti + + + + + Susu + + + + + Iowa-Oto + + + + + Bepour + + + + + Chambri + + + + + Dime + + + + + Rennell-Belona + + + + + Rundi + + + + + Ngombe (Democratic Republic of Congo) + + + + + Majera + + + + + Bung + + + + + Wapan + + + + + Mattole + + + + + Picard + + + + + Alor + + + + + Iwur + + + + + Tamki + + + + + Central Cakchiquel + + + + + Sawi + + + + + Mwan + + + + + Old High German (ca. 750-1050) + + + + + Gusan + + + + + Taman (Indonesia) + + + + + Kwini + + + + + Yinglish + + + + + Mori Atas + + + + + Old Uighur + + + + + Sauri + + + + + Anus + + + + + Bogaya + + + + + Kunimaipa + + + + + Filipino + + + + + Njalgulgule + + + + + Para Arara + + + + + Kumak + + + + + Cauca + + + + + Bohtan Neo-Aramaic + + + + + Lere + + + + + Pengo + + + + + Iha + + + + + Hai//om + + + + + Aequian + + + + + Kujarge + + + + + Eastern Kayah + + + + + Iriga Bicolano + + + + + Urartian + + + + + Maramba + + + + + Lama (Myanmar) + + + + + Mapoyo + + + + + Mazatlan Mixe + + + + + Mangareva + + + + + Persian Sign Language + + + + + Siamou + + + + + Ngbaka Ma'bo + + + + + Sengseng + + + + + Dhanwar (Nepal) + + + + + Atuence + + + + + Hmar + + + + + Guramalum + + + + + Ama (Sudan) + + + + + Illyrian + + + + + Romam + + + + + Kung-Ekoka + + + + + Yahang + + + + + Yevanic + + + + + Safwa + + + + + South African Sign Language + + + + + Old Dutch + + + + + North Moluccan Malay + + + + + Kenga + + + + + Hewa + + + + + Narom + + + + + Chorotega + + + + + Gourmanchema + + + + + Southern Lorung + + + + + Wandala + + + + + Kambera + + + + + Yulu + + + + + Mbati + + + + + Belarusian + + + + + Anuak + + + + + Kambaata + + + + + Jurchen + + + + + Paku + + + + + Emplawas + + + + + Dusun Deyah + + + + + Hermit + + + + + Nukuria + + + + + Langbashe + + + + + Antankarana Malagasy + + + + + Chadian Sign Language + + + + + Were + + + + + Northern Yukaghir + + + + + Shakara + + + + + Nakanai + + + + + Kaike + + + + + Nyindu + + + + + Igo + + + + + Nimanbur + + + + + Zumbun + + + + + Mixtepec Mixtec + + + + + Xiandao + + + + + Central Nahuatl + + + + + Bemba (Democratic Republic of Congo) + + + + + Old Hittite + + + + + Gilaki + + + + + Lelepa + + + + + Gorap + + + + + Ixcatlan Mazatec + + + + + Kamakan + + + + + Karas + + + + + Dixon Reef + + + + + Buhutu + + + + + Southeast Babar + + + + + Southeast Ambrym + + + + + Jalkunan + + + + + Western Cham + + + + + Sangu (Gabon) + + + + + Dhanki + + + + + Bonjo + + + + + Miwa + + + + + Luo (Kenya and Tanzania) + + + + + Old Ossetic + + + + + Adiwasi Garasia + + + + + Koorete + + + + + Banda-Yangere + + + + + Kumalu + + + + + Finnish Sign Language + + + + + Mansoanka + + + + + Koneraw + + + + + Kunama + + + + + Rao + + + + + Maku'a + + + + + Tapirape + + + + + Santa Ines Ahuatempan Popoloca + + + + + Lembena + + + + + Mbulungish + + + + + Tina Sambal + + + + + Likila + + + + + South Lembata + + + + + Macushi + + + + + Northern Roglai + + + + + Bukit Malay + + + + + Xaasongaxango + + + + + Rungwa + + + + + Lamu-Lamu + + + + + Ngong + + + + + Akar-Bale + + + + + Bolia + + + + + Bariji + + + + + Highland Oaxaca Chontal + + + + + Bugawac + + + + + Teribe + + + + + Buya + + + + + West Damar + + + + + Kwoma + + + + + Karaja + + + + + Kamantan + + + + + Kaimbe + + + + + Burarra + + + + + Ghodoberi + + + + + Jora + + + + + Caka + + + + + Makurap + + + + + Min Bei Chinese + + + + + Morelos Nahuatl + + + + + Ambonese Malay + + + + + Kisar + + + + + Kendayan + + + + + Numidian + + + + + Tapiete + + + + + Kerek + + + + + Uruguayan Sign Language + + + + + Djawi + + + + + Lahnda + + + + + Guwamu + + + + + Tasmate + + + + + Samba Daka + + + + + Longuda + + + + + Kachin + + + + + Shixing + + + + + Gwahatike + + + + + Nanticoke + + + + + Meramera + + + + + Ache + + + + + Uri + + + + + Worimi + + + + + Daonda + + + + + Southern Rengma Naga + + + + + Gwamhi-Wuri + + + + + Ama (Papua New Guinea) + + + + + Kapya + + + + + Riantana + + + + + Akurio + + + + + Middle Korean (10th - 16th cent.) + + + + + Gowli + + + + + Hmong Njua + + + + + Baluchi + + + + + Maghdi + + + + + Monsang Naga + + + + + Arawum + + + + + Tumak + + + + + Eteocypriot + + + + + Silopi + + + + + Tigrinya + + + + + Bukwen + + + + + Mbangwe + + + + + Minoan + + + + + Catawba + + + + + Amri + + + + + Geko Karen + + + + + Asu (Nigeria) + + + + + Kombai + + + + + Carutana + + + + + Punan Batu 1 + + + + + Sylheti + + + + + Chokwe + + + + + Achagua + + + + + Tamashek + + + + + Penang Sign Language + + + + + Jagoi + + + + + Bo (Laos) + + + + + Elip + + + + + Sulung + + + + + Deg + + + + + Phuong + + + + + Gyem + + + + + Owiniga + + + + + Varhadi-Nagpuri + + + + + Wotu + + + + + Lele (Guinea) + + + + + Northwestern Ojibwa + + + + + Northeastern Dinka + + + + + Abar + + + + + Bago-Kusuntu + + + + + Thangmi + + + + + Suabo + + + + + Pulabu + + + + + Kwerba Mamberamo + + + + + Far Western Muria + + + + + Kaxarari + + + + + Chemakum + + + + + Tidong + + + + + Southern Aymara + + + + + Choni + + + + + Sheko + + + + + Somray + + + + + Uneapa + + + + + Central Dusun + + + + + Dogri (macrolanguage) + + + + + Aoheng + + + + + Loma (Liberia) + + + + + Yaweyuha + + + + + Faita + + + + + Sajalong + + + + + Monde + + + + + Andaman Creole Hindi + + + + + Merey + + + + + Kosena + + + + + Nocaman + + + + + Lower Ta'oih + + + + + Thudam + + + + + Koshin + + + + + Cuba Sign Language + + + + + Southern Sotho + + + + + Guana (Brazil) + + + + + Land Dayak + + + + + Central Bicolano + + + + + Biatah + + + + + Pirlatapa + + + + + Yalalag Zapotec + + + + + Aramanik + + + + + Paynamar + + + + + Larteh + + + + + Dyaberdyaber + + + + + Huli + + + + + Eloyi + + + + + Bhatola + + + + + Tambas + + + + + Xanaguia Zapotec + + + + + Judeo-Yemeni Arabic + + + + + Fanagalo + + + + + Toromono + + + + + Totomachapan Zapotec + + + + + Kangri + + + + + Kodagu + + + + + Venetic + + + + + Mpiemo + + + + + Comox + + + + + Fwe + + + + + Feroge + + + + + Eastern Jacalteco + + + + + Sena + + + + + Yoron + + + + + Tacanec + + + + + Gaikundi + + + + + Buyang + + + + + Katcha-Kadugli-Miri + + + + + Chala + + + + + Kerewo + + + + + Uzbeki Arabic + + + + + Awbono + + + + + Riung + + + + + Bwisi + + + + + Kildin Sami + + + + + Jamsay Dogon + + + + + Ipulo + + + + + Piapoco + + + + + Lindu + + + + + Apalai + + + + + Nepalese Sign Language + + + + + Capanahua + + + + + Khetrani + + + + + Irarutu + + + + + Tapeba + + + + + Middle High German (ca. 1050-1500) + + + + + Kumhali + + + + + Vili + + + + + Urapmin + + + + + Bafaw-Balong + + + + + Oroch + + + + + Lyele + + + + + Tigon Mbembe + + + + + Bengkulu + + + + + San Miguel Piedras Mixtec + + + + + Samberigi + + + + + Kokota + + + + + Jerung + + + + + Teluti + + + + + Kwaja + + + + + Shumcho + + + + + Kaiep + + + + + Ninzo + + + + + Tindi + + + + + Awa-Cuaiquer + + + + + Western Muria + + + + + Gawar-Bati + + + + + Nateni + + + + + Tangchangya + + + + + Hehe + + + + + Siriono + + + + + Gera + + + + + Nahali + + + + + Bats + + + + + Iguta + + + + + Ndun + + + + + Mpongmpong + + + + + Isekiri + + + + + Ong + + + + + Idi + + + + + Spanish + + + + + Matses + + + + + Kaningi + + + + + Berom + + + + + Tengger + + + + + Buksa + + + + + Barambu + + + + + Ainbai + + + + + Northern Rengma Naga + + + + + Sea Island Creole English + + + + + Kanufi + + + + + Lower Silesian + + + + + Wipi + + + + + Mudhili Gadaba + + + + + Turkic Khalaj + + + + + Neku + + + + + Venustiano Carranza Tzotzil + + + + + Nkem-Nkum + + + + + Alsea + + + + + Lingao + + + + + Bahau + + + + + Yawiyo + + + + + Bedoanas + + + + + Anserma + + + + + Tha + + + + + Lamja-Dengsa-Tola + + + + + Nar Phu + + + + + Sansu + + + + + Ihievbe + + + + + Kota Marudu Tinagas + + + + + Seit-Kaitetu + + + + + Holu + + + + + Aribwatsa + + + + + Katkari + + + + + Ho Chi Minh City Sign Language + + + + + Tigak + + + + + Western Dani + + + + + Phrygian + + + + + Vlax Romani + + + + + Upper Baram Kenyah + + + + + Ririo + + + + + Northern Huishui Hmong + + + + + Miarra + + + + + Sawknah + + + + + Meriam + + + + + Tamil + + + + + Mada (Cameroon) + + + + + Ndzwani Comorian + + + + + Central Sierra Miwok + + + + + Tsuvan + + + + + Jere + + + + + Firan + + + + + Igala + + + + + Eastern Huishui Hmong + + + + + Soli + + + + + Jiamao + + + + + Uma + + + + + Dayao Yi + + + + + Chincha Quechua + + + + + Northern Haida + + + + + Northern Pame + + + + + Ma'ya + + + + + Nanti + + + + + Baraamu + + + + + Lakalei + + + + + Gwere + + + + + Ngatik Men's Creole + + + + + Osage + + + + + Gabrielino-Fernandeno + + + + + Bumaji + + + + + Quiotepec Chinantec + + + + + Kango (Bas-Uele District) + + + + + Lombo + + + + + Okanagan + + + + + Maden + + + + + Lepcha + + + + + Busang Kayan + + + + + Mariyedi + + + + + Kehu + + + + + Chichimeca-Jonaz + + + + + Avau + + + + + Mingrelian + + + + + Alune + + + + + Sansi + + + + + Achuar-Shiwiar + + + + + Meru + + + + + Bhele + + + + + Sikaritai + + + + + Mamulique + + + + + Mazaltepec Zapotec + + + + + Wagawaga + + + + + Japanese Sign Language + + + + + Tsogo + + + + + Pankhu + + + + + Mehek + + + + + Russian + + + + + Maguindanao + + + + + Nindi + + + + + Ito + + + + + Northern Tarahumara + + + + + Chibcha + + + + + Crimean Tatar + + + + + Maii + + + + + Kota Marudu Talantang + + + + + Xokleng + + + + + Urarina + + + + + Polish + + + + + Likum + + + + + Oune + + + + + Bambili-Bambui + + + + + Kwak + + + + + Sakata + + + + + Pamona + + + + + Gros Ventre + + + + + Modang + + + + + Kande + + + + + Tehit + + + + + Ngamini + + + + + Umon + + + + + Sangir + + + + + Yawuru + + + + + Gobu + + + + + Tasmanian + + + + + Surbakhal + + + + + Texmelucan Zapotec + + + + + Isoko + + + + + Southeastern Kolami + + + + + Kyerung + + + + + Gade Lohar + + + + + Khunsari + + + + + Kullu Pahari + + + + + Batak Angkola + + + + + Merei + + + + + Pattani + + + + + Dondo + + + + + Mengisa + + + + + Classical Syriac + + + + + Sanye + + + + + Lower Sorbian + + + + + Bafia + + + + + Margany + + + + + Zaghawa + + + + + Nukuini + + + + + Kunyi + + + + + Angami Naga + + + + + Kapin + + + + + Sausi + + + + + Bangala + + + + + Laz + + + + + Mariri + + + + + Ebrie + + + + + Waura + + + + + Severn Ojibwa + + + + + Pennsylvania German + + + + + Rawang + + + + + Ati + + + + + Eastern Magar + + + + + Pulaar + + + + + Mea + + + + + Eastern Pokomam + + + + + Guguyimidjir + + + + + Huichol + + + + + Kobiana + + + + + Marau + + + + + Dia + + + + + Carolina Algonquian + + + + + Tal + + + + + Southeastern Pomo + + + + + Sika + + + + + Kate + + + + + Wutunhua + + + + + Buwal + + + + + Masbatenyo + + + + + Nagarchal + + + + + Banda-Banda + + + + + Gan Chinese + + + + + Malaccan Creole Malay + + + + + Southeastern Puebla Nahuatl + + + + + Taloki + + + + + Kru'ng 2 + + + + + Chitkuli Kinnauri + + + + + Kaninuwa + + + + + Samre + + + + + Bulu (Cameroon) + + + + + Ixtayutla Mixtec + + + + + Mator-Taygi-Karagas + + + + + Oromo + + + + + Selayar + + + + + Weme Gbe + + + + + Mantsi + + + + + Uya + + + + + Kuri + + + + + Budeh Stieng + + + + + Joyabaj Quiche + + + + + Bannoni + + + + + Wangganguru + + + + + Limburgan + + + + + Lama (Togo) + + + + + Waling + + + + + French Sign Language + + + + + Abidji + + + + + Qashqa'i + + + + + Tetete + + + + + Asoa + + + + + Palu'e + + + + + Alagwa + + + + + Serrano + + + + + Agoi + + + + + Huilliche + + + + + Miu + + + + + Naaba + + + + + Arigidi + + + + + Lintang + + + + + Abadi + + + + + Sierra de Juarez Zapotec + + + + + Gula Iro + + + + + Panamint + + + + + Saxwe Gbe + + + + + Dek + + + + + Manza + + + + + Bolondo + + + + + Na-Meo + + + + + Lemolang + + + + + Jilim + + + + + Moskona + + + + + Omani Arabic + + + + + Snohomish + + + + + Ma (Papua New Guinea) + + + + + Mina (India) + + + + + Gun + + + + + Chipiajes + + + + + Pingelapese + + + + + Dandami Maria + + + + + Komi-Zyrian + + + + + Djamindjung + + + + + Badeshi + + + + + Matal + + + + + Patla-Chicontla Totonac + + + + + Puno Quechua + + + + + Northeast Maidu + + + + + Halbi + + + + + Fala + + + + + Umiray Dumaget Agta + + + + + Ahanta + + + + + Kenyan Sign Language + + + + + Busoa + + + + + Mokilese + + + + + Bamu + + + + + Bangba + + + + + Morigi + + + + + Purubora + + + + + Leelau + + + + + Sangisari + + + + + Kumauni + + + + + Tinoc Kallahan + + + + + Romanian Sign Language + + + + + Upper Sorbian + + + + + Dzando + + + + + Pomo + + + + + Zenzontepec Chatino + + + + + Iha Based Pidgin + + + + + Songe + + + + + Saam + + + + + Dacian + + + + + Lahu Shi + + + + + Tepecano + + + + + North Ndebele + + + + + Pale Palaung + + + + + Okpe (Southwestern Edo) + + + + + Simaa + + + + + Ura (Vanuatu) + + + + + Lower Grand Valley Dani + + + + + Bure + + + + + Wampur + + + + + Homa + + + + + Gungu + + + + + Koro (Cote d'Ivoire) + + + + + Watam + + + + + Dongotono + + + + + Trinitario + + + + + Swiss-Italian Sign Language + + + + + Idun + + + + + Welsh Romani + + + + + Yaben + + + + + Coeur d'Alene + + + + + Isanzu + + + + + Bit + + + + + Classical Nahuatl + + + + + Jahanka + + + + + Makhuwa-Marrevone + + + + + Lasalimu + + + + + San Blas Kuna + + + + + Subiya + + + + + Sengo + + + + + Kwaya + + + + + Romanova + + + + + Kein + + + + + Lealao Chinantec + + + + + Eastern Xwla Gbe + + + + + Dza + + + + + Southern Lolopho Yi + + + + + Bukiyip + + + + + Ginuman + + + + + Amara + + + + + Wumboko + + + + + Kambiwa + + + + + French + + + + + Ekajuk + + + + + Pahlavi + + + + + Harauti + + + + + Camunic + + + + + Yamna + + + + + Western Yi + + + + + Ke'o + + + + + Southern Zhuang + + + + + Guliguli + + + + + Inga + + + + + Ngie + + + + + Mugom + + + + + Kim + + + + + Eastern Bru + + + + + Istro Romanian + + + + + Karnai + + + + + Paniya + + + + + Traveller Danish + + + + + Alekano + + + + + Siwai + + + + + Enepa + + + + + Chickasaw + + + + + Finongan + + + + + Russian Sign Language + + + + + Wiarumus + + + + + Chaura + + + + + Yendang + + + + + Tawoyan + + + + + Kutang Ghale + + + + + Basa-Gurmana + + + + + Zaramo + + + + + Gants + + + + + Hiri Motu + + + + + Aribwaung + + + + + Manipa + + + + + Machinere + + + + + Bulgarian + + + + + Bayali + + + + + Tubatulabal + + + + + Southern Mnong + + + + + Buyu + + + + + Malua Bay + + + + + Urigina + + + + + Kodeoha + + + + + Nali + + + + + Ese + + + + + Utu + + + + + Southern Toussian + + + + + Geez + + + + + Ngarla + + + + + Tsishingini + + + + + Palantla Chinantec + + + + + Banda Malay + + + + + Yinchia + + + + + Jiiddu + + + + + Dhangu + + + + + Fordata + + + + + Mekeo + + + + + Nkongho + + + + + Suma + + + + + Mbangala + + + + + Mumuye + + + + + Ambala Ayta + + + + + Tairuma + + + + + Luimbi + + + + + Momina + + + + + Bende + + + + + Ganzi + + + + + Sangab Mandaya + + + + + Southern Nicobarese + + + + + Hmong Don + + + + + Nimo + + + + + Motlav + + + + + Dengka + + + + + Marwari (Pakistan) + + + + + Sindarin + + + + + Tulishi + + + + + Umeda + + + + + Quetzaltepec Mixe + + + + + Kantosi + + + + + Kuranko + + + + + Ngiemboon + + + + + Mmen + + + + + Yahadian + + + + + Ocotepec Mixtec + + + + + Koyaga + + + + + Tunisian Sign Language + + + + + Yautepec Zapotec + + + + + Burji + + + + + Ucayali-Yurua Asheninka + + + + + Eipomek + + + + + Dii + + + + + Nengone + + + + + Teke-Nzikou + + + + + Vangunu + + + + + Kaiy + + + + + Lardil + + + + + Kaskean + + + + + Gugu Badhun + + + + + Padoe + + + + + Ejamat + + + + + Gagnoa Bete + + + + + Nungu + + + + + Pecheneg + + + + + Atong + + + + + Panang + + + + + Yatzachi Zapotec + + + + + Baiso + + + + + Boano (Maluku) + + + + + Njerep + + + + + Tira + + + + + Old Cornish + + + + + Simbari + + + + + Cacaloxtepec Mixtec + + + + + Ha + + + + + Gudu + + + + + Lozi + + + + + Middle Welsh + + + + + Bentong + + + + + Wab + + + + + Gwich'in + + + + + Phong-Kniang + + + + + Atsam + + + + + Adivasi Oriya + + + + + Chipewyan + + + + + Malapandaram + + + + + Sichuan Yi + + + + + Yonaguni + + + + + Bayot + + + + + Angaatiha + + + + + South Bolivian Quechua + + + + + Sauk + + + + + Ura (Papua New Guinea) + + + + + Orokolo + + + + + Chokri Naga + + + + + Kaansa + + + + + Sagala + + + + + Maru + + + + + Korwa + + + + + Apalik + + + + + Yaur + + + + + Gwa + + + + + Leipon + + + + + Bukitan + + + + + Pwo Northern Karen + + + + + Degenan + + + + + Sursurunga + + + + + Dakpakha + + + + + Wajarri + + + + + Guato + + + + + Wom (Nigeria) + + + + + Nsongo + + + + + Mbwela + + + + + Serudung Murut + + + + + Ngom + + + + + Zaiwa + + + + + Paliyan + + + + + Pa'a + + + + + Mekmek + + + + + Kalmyk + + + + + Tasawaq + + + + + Piya-Kwonci + + + + + Mikasuki + + + + + Yombe + + + + + Novial + + + + + Mongolian + + + + + Mosimo + + + + + Hahon + + + + + Turung + + + + + Termanu + + + + + Yelogu + + + + + Me'en + + + + + Sentani + + + + + Kamberau + + + + + Zande (individual language) + + + + + Ndonde Hamba + + + + + Hungarian + + + + + Kachi Koli + + + + + Polish Sign Language + + + + + Ganglau + + + + + Panao Huanuco Quechua + + + + + Fore + + + + + Chenoua + + + + + Binukid + + + + + Dumpu + + + + + Santa Maria La Alta Nahuatl + + + + + Sakao + + + + + Babine + + + + + Mundang + + + + + Etebi + + + + + Guiqiong + + + + + Salt-Yui + + + + + Kelabit + + + + + Southern Thai + + + + + Wiaki + + + + + Zacatepec Chatino + + + + + Nande + + + + + Kamasau + + + + + San Vicente Coatlan Zapotec + + + + + Bagvalal + + + + + Kerinci + + + + + Fania + + + + + Campalagian + + + + + Koroshi + + + + + Jabuti + + + + + Piame + + + + + Juruna + + + + + Lavukaleve + + + + + Bauwaki + + + + + Chamula Tzotzil + + + + + Mentawai + + + + + Vietnamese + + + + + Tieyaxo Bozo + + + + + Sota Kanum + + + + + Yuqui + + + + + Nganasan + + + + + Urhobo + + + + + Tsimshian + + + + + Gbaya (Central African Republic) + + + + + Bintulu + + + + + Khisa + + + + + Maquiritari + + + + + Phrae Pwo Karen + + + + + Jeng + + + + + Onobasulu + + + + + Temoq + + + + + Bidyara + + + + + Adi + + + + + Mwera (Chimwera) + + + + + South Central Dinka + + + + + Nkhumbi + + + + + Ejagham + + + + + Sechelt + + + + + Sanggau + + + + + Lishan Didan + + + + + Mamanwa + + + + + Mixifore + + + + + Lele (Chad) + + + + + Pacoh + + + + + Oxchuc Tzeltal + + + + + Lole + + + + + Koti + + + + + Boloki + + + + + Longgu + + + + + Horpa + + + + + Disa + + + + + Manda (Tanzania) + + + + + Kanju + + + + + Chuwabu + + + + + Yamphu + + + + + Louisiana Creole French + + + + + Udi + + + + + Ashe + + + + + Umbugarla + + + + + Achinese + + + + + Nyigina + + + + + Gambian Wolof + + + + + Lowland Oaxaca Chontal + + + + + Hrangkhol + + + + + Golin + + + + + Northwest Oaxaca Mixtec + + + + + Mawes + + + + + Kiorr + + + + + Penrhyn + + + + + Batuley + + + + + Bo (Papua New Guinea) + + + + + Guyanese Creole English + + + + + Southern Amami-Oshima + + + + + Chipaya + + + + + Central Huishui Hmong + + + + + Sacapulteco + + + + + Mbula-Bwazza + + + + + Nukumanu + + + + + Glio-Oubi + + + + + Alago + + + + + West Lembata + + + + + Degema + + + + + Tunni + + + + + Sula + + + + + Ronji + + + + + Shughni + + + + + Nshi + + + + + Ibaloi + + + + + Hanga + + + + + Leyigha + + + + + Kemtuik + + + + + Banda (Indonesia) + + + + + Old Provencal (to 1500) + + + + + Lewo Eleng + + + + + Lampung + + + + + San Luis Temalacayuca Popoloca + + + + + China Buriat + + + + + Avikam + + + + + Middle Irish (900-1200) + + + + + Ngizim + + + + + Timucua + + + + + Kerak + + + + + Mochi + + + + + Pwapwa + + + + + Western Cakchiquel + + + + + Kuo + + + + + Nijadali + + + + + Kagulu + + + + + Bube + + + + + Ngulu + + + + + Northern Nambikuara + + + + + Roria + + + + + Old Manipuri + + + + + Mpade + + + + + Ede Ica + + + + + Occitan (post 1500) + + + + + Wamin + + + + + Loloda + + + + + Chilean Sign Language + + + + + Duna + + + + + Standard Arabic + + + + + Interlingua (International Auxiliary Language Association) + + + + + Powhatan + + + + + Shamang + + + + + Nayi + + + + + Guragone + + + + + Mengen + + + + + Baibai + + + + + Koryak + + + + + Ega + + + + + Sa'ban + + + + + Gonja + + + + + Bajan + + + + + To + + + + + Epigraphic Mayan + + + + + Yagnobi + + + + + Giyug + + + + + Tahaggart Tamahaq + + + + + Jonkor Bourmataguil + + + + + Central Awyu + + + + + Tedaga + + + + + Kenati + + + + + Samei + + + + + Marathi + + + + + Trimuris + + + + + Ga'dang + + + + + Paumari + + + + + Chorti + + + + + So (Democratic Republic of Congo) + + + + + Gitonga + + + + + Awara + + + + + Ligurian (Ancient) + + + + + Western Xiangxi Hmong + + + + + Belize Kriol English + + + + + Kare (Papua New Guinea) + + + + + Hausa + + + + + Kalarko + + + + + Pinyin + + + + + Cajun French + + + + + Koda + + + + + Bole + + + + + Merwari + + + + + Casiguran Dumagat Agta + + + + + Mbalanhu + + + + + Klao + + + + + Southwestern Fars + + + + + Ewondo + + + + + Wulna + + + + + Likwala + + + + + Chimborazo Highland Quichua + + + + + Laro + + + + + Central Yupik + + + + + Noiri + + + + + Enga + + + + + Masikoro Malagasy + + + + + Nyemba + + + + + San Pedro Amuzgos Amuzgo + + + + + Yuaga + + + + + Mawayana + + + + + Sikkimese + + + + + Ngawun + + + + + Atayal + + + + + Dumi + + + + + Central Tagbanwa + + + + + Sepa (Indonesia) + + + + + Ampanang + + + + + Bezhta + + + + + Rombo + + + + + Mian + + + + + Yana + + + + + Sindihui Mixtec + + + + + Kaiwa + + + + + Aulua + + + + + Chodri + + + + + Mangbetu + + + + + Hawai'i Creole English + + + + + Sibe + + + + + Bernde + + + + + Dedua + + + + + Wasembo + + + + + Basa-Gumna + + + + + Wersing + + + + + Nuk + + + + + Tolowa + + + + + Topoiyo + + + + + Ede Ije + + + + + Bilaspuri + + + + + Kagoro + + + + + Eastern Ngad'a + + + + + Surajpuri + + + + + Tai Ya + + + + + Swahili (macrolanguage) + + + + + Calderon Highland Quichua + + + + + Benga + + + + + Ormuri + + + + + Western Krahn + + + + + Kumukio + + + + + Nocte Naga + + + + + Cappadocian Greek + + + + + Baras + + + + + Bobot + + + + + Tafi + + + + + Loxicha Zapotec + + + + + Awiyaana + + + + + Isconahua + + + + + Mbunda + + + + + Nyankole + + + + + Karko + + + + + Konomala + + + + + Kakihum + + + + + Southern Dong + + + + + Boikin + + + + + Mogholi + + + + + Mangas + + + + + Old Persian (ca. 600-400 B.C.) + + + + + Gimnime + + + + + Gedaged + + + + + Fipa + + + + + Namuyi + + + + + Nicaraguan Sign Language + + + + + Mituku + + + + + Nihali + + + + + Guya + + + + + Jaqaru + + + + + Angloromani + + + + + Burum-Mindik + + + + + Digo + + + + + Garo + + + + + Zoogocho Zapotec + + + + + Kur + + + + + Lyons Sign Language + + + + + Mufian + + + + + Northwestern Kolami + + + + + Rwa + + + + + Niksek + + + + + Kekchi + + + + + Jakun + + + + + Shuswap + + + + + Sikaiana + + + + + Jilbe + + + + + Kaulong + + + + + Nkoroo + + + + + Rema + + + + + Amapa Creole + + + + + Zigula + + + + + Kove + + + + + Ayautla Mazatec + + + + + Mid-Southern Banda + + + + + Southeastern Tepehuan + + + + + Western Keres + + + + + Erzya + + + + + Bina (Nigeria) + + + + + Desiya Oriya + + + + + Colombian Sign Language + + + + + Talai + + + + + Papavo + + + + + Liangmai Naga + + + + + Ndam + + + + + Machiguenga + + + + + Yangho + + + + + Berawan + + + + + Paranawat + + + + + Miahuatlan Zapotec + + + + + Yagua + + + + + Egyptian (Ancient) + + + + + Banggarla + + + + + Cubeo + + + + + Siroi + + + + + Bini + + + + + Central Asmat + + + + + Poumei Naga + + + + + Magahat + + + + + Wik-Keyangan + + + + + Carabayo + + + + + Melo + + + + + Rajput Garasia + + + + + Matengo + + + + + Maiadomu + + + + + Pawaia + + + + + Judeo-Crimean Tatar + + + + + Tunica + + + + + Han + + + + + Sayula Popoluca + + + + + Hidatsa + + + + + N'Ko + + + + + Kpessi + + + + + Punan Merap + + + + + Adzera + + + + + Suena + + + + + Ono + + + + + Pular + + + + + Nepali Kurux + + + + + Huaylla Wanca Quechua + + + + + Bine + + + + + Saho + + + + + Kunggari + + + + + Celtiberian + + + + + Edolo + + + + + Sarsi + + + + + Dar Sila Daju + + + + + Kwomtari + + + + + Maiwala + + + + + Kare (Central African Republic) + + + + + Sian + + + + + Utarmbung + + + + + Wusi + + + + + Tsakwambo + + + + + Hatam + + + + + Nisenan + + + + + Yala + + + + + Nakwi + + + + + Lak + + + + + Nyam + + + + + Zarphatic + + + + + Ndogo + + + + + Chiquitano + + + + + Southeastern Ixtlan Zapotec + + + + + North Watut + + + + + Tsat + + + + + Tatuyo + + + + + Dombe + + + + + Hre + + + + + Upper Kinabatangan + + + + + Xavante + + + + + Chenalho Tzotzil + + + + + Haroi + + + + + Jad + + + + + Vumbu + + + + + Kete + + + + + Bahonsuai + + + + + Inor + + + + + Papel + + + + + Upper Pokomo + + + + + Attie + + + + + Wik-Ngathana + + + + + Kuijau + + + + + Binongan Itneg + + + + + Bainouk-Gunyaamolo + + + + + Port Sandwich + + + + + Ogan + + + + + Anor + + + + + Kharia + + + + + Dar Daju Daju + + + + + Singa + + + + + Naka'ela + + + + + Eastern Cakchiquel + + + + + Middle French (ca. 1400-1600) + + + + + Ache Yi + + + + + Sarikoli + + + + + Gengle + + + + + Gresi + + + + + Judeo-Tripolitanian Arabic + + + + + Temiar + + + + + Kwerisa + + + + + Kono (Sierra Leone) + + + + + Cholon + + + + + Ngombe (Central African Republic) + + + + + Gilbertese + + + + + Vame + + + + + Deori + + + + + Anyin + + + + + Kagoma + + + + + Mansaka + + + + + Warlpiri + + + + + Classical Quechua + + + + + Takestani + + + + + Siuslaw + + + + + Metlatonoc Mixtec + + + + + Phom Naga + + + + + Makolkol + + + + + Toba + + + + + Baimak + + + + + Kim Mun + + + + + South Azerbaijani + + + + + Tunen + + + + + Gorontalo + + + + + Wappo + + + + + Minaveha + + + + + Mpotovoro + + + + + Glavda + + + + + Chakali + + + + + Owa + + + + + Yelmek + + + + + Wadjigu + + + + + Dumpas + + + + + Kulon-Pazeh + + + + + Akhvakh + + + + + Venezuelan Sign Language + + + + + Futuna-Aniwa + + + + + Lake Miwok + + + + + Salar + + + + + Kunjen + + + + + Huallaga Huanuco Quechua + + + + + Saek + + + + + Malgbe + + + + + Teke-Tsaayi + + + + + Ambai + + + + + Dori'o + + + + + Iko + + + + + Ngul + + + + + Iyive + + + + + Lacandon + + + + + Wali (Sudan) + + + + + Anmatyerre + + + + + Tofin Gbe + + + + + Mansi + + + + + Atohwaim + + + + + Marino + + + + + Bubi + + + + + Marka + + + + + San Dionisio Del Mar Huave + + + + + Alawa + + + + + Noon + + + + + Tangoa + + + + + Pentlatch + + + + + Abkhazian + + + + + Qatabanian + + + + + Sensi + + + + + Dhofari Arabic + + + + + Asilulu + + + + + Kara (Papua New Guinea) + + + + + East Masela + + + + + Lhokpu + + + + + Misima-Paneati + + + + + Holikachuk + + + + + Emok + + + + + Wae Rana + + + + + Seroa + + + + + Shempire Senoufo + + + + + Moroccan Sign Language + + + + + Pogolo + + + + + Northwest Alaska Inupiatun + + + + + Gbagyi + + + + + Nauna + + + + + Northern Nuni + + + + + Tela-Masbuar + + + + + Bahnar + + + + + Koho + + + + + Ponares + + + + + Ringgou + + + + + Sape + + + + + Binandere + + + + + Xamtanga + + + + + Lachi + + + + + Yuruti + + + + + Nage + + + + + Zenag + + + + + Kumbewaha + + + + + Lamnso' + + + + + Owenia + + + + + Guajajara + + + + + Cacaopera + + + + + Upper Chehalis + + + + + Polari + + + + + Vai + + + + + Yatee Zapotec + + + + + Tumi + + + + + Balkan Gagauz Turkish + + + + + Suga + + + + + Hano + + + + + Lishana Deni + + + + + Aneityum + + + + + Malgana + + + + + Tembe + + + + + Folopa + + + + + Bachajon Tzeltal + + + + + Repanbitip + + + + + Kominimung + + + + + Quiavicuzas Zapotec + + + + + Iberian + + + + + Gbati-ri + + + + + Langobardic + + + + + Chagatai + + + + + Panytyima + + + + + Wikngenchera + + + + + Kugbo + + + + + Polabian + + + + + Mori Bawah + + + + + Omok + + + + + Ainu (Japan) + + + + + Dusner + + + + + Hupde + + + + + Surubu + + + + + Shwai + + + + + Yari + + + + + Northern Hindko + + + + + Jirel + + + + + Dogrib + + + + + 'Areare + + + + + Faiwol + + + + + Mobumrin Aizi + + + + + Crow + + + + + Mwatebu + + + + + Warapu + + + + + Kwami + + + + + Santa Lucia Monteverde Mixtec + + + + + Gal + + + + + Molof + + + + + Mosina + + + + + Ujir + + + + + Putai + + + + + Gamo-Gofa-Dawro + + + + + South Ndebele + + + + + Tharaka + + + + + Te'un + + + + + Krenak + + + + + Kalou + + + + + Kraho + + + + + San Miguel El Grande Mixtec + + + + + Waama + + + + + Xaragure + + + + + Kayagar + + + + + Inabaknon + + + + + Mezquital Otomi + + + + + Shehri + + + + + Towei + + + + + Mvanip + + + + + Andegerebinha + + + + + Mangga Buang + + + + + Kulere + + + + + Wichita + + + + + Mapudungun + + + + + Pam + + + + + Lisu + + + + + Romano-Greek + + + + + Mozarabic + + + + + Palikur + + + + + Scots + + + + + Gugadj + + + + + Umpila + + + + + Uamue + + + + + Mangayat + + + + + Guatemalan Sign Language + + + + + Finnish + + + + + Naluo Yi + + + + + Lau + + + + + Yami + + + + + Burate + + + + + Judeo-Iraqi Arabic + + + + + Zauzou + + + + + Karagas + + + + + Ratagnon + + + + + Ipili + + + + + Burun + + + + + Lou + + + + + Western Frisian + + + + + Omati + + + + + Mzieme Naga + + + + + Karelian + + + + + Rarotongan + + + + + Okiek + + + + + Enwan (Edu State) + + + + + Kanembu + + + + + Kepo' + + + + + Vemgo-Mabas + + + + + Efe + + + + + South Efate + + + + + Fiwaga + + + + + Amto + + + + + Piemontese + + + + + Santa Cruz + + + + + Jiongnai Bunu + + + + + Jur Modo + + + + + Rajah Kabunsuwan Manobo + + + + + Arua + + + + + Angoram + + + + + Sudanese Arabic + + + + + Spiti Bhoti + + + + + Southern Tujia + + + + + Ternate + + + + + Kachama-Ganjule + + + + + Northwestern Fars + + + + + Sur + + + + + Kura Ede Nago + + + + + Biloxi + + + + + Cusco Quechua + + + + + Tonjon + + + + + Mayoyao Ifugao + + + + + Thai Song + + + + + N/u + + + + + Komo (Democratic Republic of Congo) + + + + + Daur + + + + + Mossi + + + + + Kathoriya Tharu + + + + + Luang + + + + + Moinba + + + + + Baga Koga + + + + + Guyani + + + + + Nyole + + + + + Northwest Gbaya + + + + + Eastern Muria + + + + + Mindiri + + + + + Ngile + + + + + Tambunan Dusun + + + + + Bakoko + + + + + Zumaya + + + + + Dhundari + + + + + Eastern Pokomchi + + + + + Dutton World Speedwords + + + + + Badimaya + + + + + Bundeli + + + + + Ambelau + + + + + Ngamambo + + + + + Cocama-Cocamilla + + + + + Kato + + + + + S'gaw Karen + + + + + Pa'o Karen + + + + + Yuracare + + + + + Nugunu (Australia) + + + + + Klias River Kadazan + + + + + Tswa + + + + + Pume + + + + + Laal + + + + + West Uvean + + + + + Oriya + + + + + Bari + + + + + Tora + + + + + Kwerba + + + + + Chaima + + + + + Lenkau + + + + + Maltese + + + + + Sulod + + + + + Mapidian + + + + + Purum Naga + + + + + Arma + + + + + Bantawa + + + + + South Giziga + + + + + Khun + + + + + Saluma + + + + + Bambara + + + + + Vamale + + + + + Lalana Chinantec + + + + + Kholok + + + + + Mudu Koraga + + + + + Dagba + + + + + Nukuoro + + + + + Baikeno + + + + + Pech + + + + + Gorowa + + + + + Kendeje + + + + + Marimanindji + + + + + Kravet + + + + + Kensiu + + + + + Ganza + + + + + Teke-Tyee + + + + + Yaka (Democratic Republic of Congo) + + + + + Tae' + + + + + South Nuaulu + + + + + Wik-Epa + + + + + Duhwa + + + + + Lule Sami + + + + + Philippine Sign Language + + + + + Seluwasan + + + + + Ngundi + + + + + Mangseng + + + + + Araona + + + + + Holma + + + + + Mongolia Buriat + + + + + Nyeu + + + + + Dano + + + + + Mwimbi-Muthambi + + + + + Buyuan Jinuo + + + + + Saotomense + + + + + Nuer + + + + + Beezen + + + + + Jordanian Sign Language + + + + + Miriwung + + + + + Northern Tlaxiaco Mixtec + + + + + Igbo + + + + + Aymara + + + + + Ogbronuagum + + + + + Male (Ethiopia) + + + + + Warluwara + + + + + Mintil + + + + + Tiene + + + + + Berakou + + + + + Havasupai-Walapai-Yavapai + + + + + Island Carib + + + + + Hya + + + + + Lendu + + + + + Southern Hindko + + + + + Yangben + + + + + Awing + + + + + Haida + + + + + Tataltepec Chatino + + + + + Bench + + + + + Manyika + + + + + Lafofa + + + + + Goaria + + + + + Taita + + + + + Ngala + + + + + Lotha Naga + + + + + Northwest Maidu + + + + + Upper Tanudan Kalinga + + + + + Songa + + + + + Khlor + + + + + Wiyot + + + + + Sajau Basap + + + + + Semendo + + + + + Dominican Sign Language + + + + + Paasaal + + + + + Tagbu + + + + + Migabac + + + + + Xinca + + + + + Lojban + + + + + Chong + + + + + Busami + + + + + Nde-Gbite + + + + + Atsahuaca + + + + + Kpatili + + + + + Watakataui + + + + + Tektiteko + + + + + Makonde + + + + + Martu Wangka + + + + + Cornish + + + + + Orya + + + + + Berti + + + + + Sikule + + + + + Amharic + + + + + Bhilali + + + + + Nganyaywana + + + + + Iquito + + + + + Tupari + + + + + Northern Khmer + + + + + Prasuni + + + + + Northern Betsimisaraka Malagasy + + + + + Western Neo-Aramaic + + + + + Kusaal + + + + + Ikwere + + + + + Pipil + + + + + Chonganjiang Hmong + + + + + Tehuelche + + + + + Ivatan + + + + + Chamorro + + + + + Tezoatlan Mixtec + + + + + Aekyom + + + + + Gbanziri + + + + + Ruga + + + + + Khehek + + + + + Fataluku + + + + + Pyu (Myanmar) + + + + + Berta + + + + + Tanjong + + + + + Foma + + + + + Torwali + + + + + Wampar + + + + + Kukatja + + + + + Sumbwa + + + + + Yangman + + + + + Lepontic + + + + + Arabic + + + + + Swati + + + + + Sonde + + + + + Shom Peng + + + + + Berik + + + + + Naro + + + + + Duruwa + + + + + Pacaraos Quechua + + + + + Rutul + + + + + Betawi + + + + + Tjurruru + + + + + Wapha + + + + + Puelche + + + + + Daasanach + + + + + Kiowa Apache + + + + + North Efate + + + + + Negeri Sembilan Malay + + + + + Avaric + + + + + Arho + + + + + Ngangam + + + + + Slovak + + + + + Khorezmian + + + + + Burusu + + + + + Thuri + + + + + Chinbon Chin + + + + + Coahuilteco + + + + + Ume Sami + + + + + Gunwinggu + + + + + Mbo (Cameroon) + + + + + Aushi + + + + + Khvarshi + + + + + Dendi (Central African Republic) + + + + + Pana (Burkina Faso) + + + + + Ningye + + + + + Kalabari + + + + + Drung + + + + + Camsa + + + + + Barro Negro Tunebo + + + + + Kinuku + + + + + Angal Enen + + + + + Tsou + + + + + Totontepec Mixe + + + + + Jaru + + + + + Kami (Tanzania) + + + + + Fwai + + + + + Gula'alaa + + + + + Old Chinese + + + + + Phalura + + + + + Tala + + + + + Tomadino + + + + + Cajatambo North Lima Quechua + + + + + Seru + + + + + Mao Naga + + + + + Maasina Fulfulde + + + + + Kven Finnish + + + + + Northern Frisian + + + + + Tanaina + + + + + Adyghe + + + + + Wandji + + + + + Yis + + + + + Arikem + + + + + Kalapuya + + + + + Pasemah + + + + + Dobel + + + + + Carian + + + + + Jamaican Creole English + + + + + Kamaru + + + + + Danau + + + + + Puyuma + + + + + Saint Lucian Creole French + + + + + Oblo + + + + + Kanikkaran + + + + + Iyojwa'ja Chorote + + + + + Salvadoran Sign Language + + + + + Naki + + + + + Dimli + + + + + Lelemi + + + + + Oscan + + + + + Suri + + + + + Gaddi + + + + + Badyara + + + + + Mampruli + + + + + Natchez + + + + + Talmudic Aramaic + + + + + Bokoto + + + + + Ngelima + + + + + Chinese Sign Language + + + + + Taveta + + + + + Bwile + + + + + Nomu + + + + + Mixtepec Zapotec + + + + + Cayubaba + + + + + Kalo Finnish Romani + + + + + Bun + + + + + Ida'an + + + + + Zari + + + + + Martha's Vineyard Sign Language + + + + + Hawai'i Pidgin Sign Language + + + + + Wan + + + + + Juwal + + + + + Mara + + + + + Konni + + + + + Shona + + + + + Tunjung + + + + + Kanyok + + + + + Reel + + + + + Semaq Beri + + + + + Nubi + + + + + Limbum + + + + + Oneida + + + + + Rembong + + + + + Lambya + + + + + Koy Sanjaq Surat + + + + + Yoy + + + + + Boga + + + + + Grenadian Creole English + + + + + Machame + + + + + Ibu + + + + + Keyagana + + + + + Tai Don + + + + + Khiamniungan Naga + + + + + Western Niger Fulfulde + + + + + Yanesha' + + + + + Bebe + + + + + Babalia Creole Arabic + + + + + Yintale Karen + + + + + Western Bukidnon Manobo + + + + + Kuan + + + + + Avatime + + + + + Molmo One + + + + + Konkani (individual language) + + + + + Kembra + + + + + Tonga (Tonga Islands) + + + + + Gupapuyngu + + + + + Ginyanga + + + + + Angosturas Tunebo + + + + + Suya + + + + + Tuxa + + + + + Arapaso + + + + + Naukan Yupik + + + + + Ju + + + + + Esan + + + + + Logol + + + + + Mpoto + + + + + Kumyk + + + + + Amahai + + + + + Italian Sign Language + + + + + Kawaiisu + + + + + Knaanic + + + + + Mandinka + + + + + Fembe + + + + + Guruntum-Mbaaru + + + + + Lumbu + + + + + Namiae + + + + + Rade + + + + + Narrinyeri + + + + + Kachchi + + + + + Rejang + + + + + Kudu-Camo + + + + + Konongo + + + + + Waropen + + + + + Rengao + + + + + Truka + + + + + Od + + + + + Uvbie + + + + + Sened + + + + + English + + + + + Samba Leko + + + + + Rawat + + + + + Paekche + + + + + Jadgali + + + + + Sabum + + + + + Ngwe + + + + + Kobol + + + + + Tetun Dili + + + + + Southeastern Huastec + + + + + Tutelo + + + + + Tuscarora + + + + + Diri + + + + + Abon + + + + + Diuxi-Tilantongo Mixtec + + + + + Malay (macrolanguage) + + + + + Bactrian + + + + + Naskapi + + + + + Bujhyal + + + + + Ake + + + + + Aguna + + + + + Punan Bah-Biau + + + + + Calamian Tagbanwa + + + + + Bhalay + + + + + Ambo-Pasco Quechua + + + + + Southeastern Dinka + + + + + Daba + + + + + Darkhat + + + + + Fungwa + + + + + Kube + + + + + Gurani + + + + + Mofu-Gudur + + + + + Rotokas + + + + + Emae + + + + + Dupaninan Agta + + + + + Girawa + + + + + Straits Salish + + + + + Kgalagadi + + + + + Central Yi + + + + + Baatonum + + + + + Isu (Fako Division) + + + + + Pasi + + + + + Hangaza + + + + + Ngwo + + + + + Eton (Cameroon) + + + + + Tamasheq + + + + + Adonara + + + + + Dirari + + + + + Betaf + + + + + Ayizo Gbe + + + + + Tampias Lobu + + + + + Koronadal Blaan + + + + + Seberuang + + + + + Shangzhai + + + + + Agusan Manobo + + + + + Kuruaya + + + + + Ottawa + + + + + Eastern Arrernte + + + + + Vincentian Creole English + + + + + Rejang Kayan + + + + + Eblan + + + + + Siwu + + + + + Makhuwa + + + + + Kagan Kalagan + + + + + Malavedan + + + + + Quebec Sign Language + + + + + Yemba + + + + + Kurmukar + + + + + Gane + + + + + Izora + + + + + Piro + + + + + Kirghiz + + + + + Northern Ghale + + + + + Koyukon + + + + + Bu-Nao Bunu + + + + + Yau (Morobe Province) + + + + + Waruna + + + + + Putukwam + + + + + Kurukh + + + + + Krui + + + + + Quinault + + + + + Banda-Bambari + + + + + Bakung Kenyah + + + + + Phai + + + + + Barok + + + + + Yoke + + + + + Ilianen Manobo + + + + + Urubu-Kaapor Sign Language + + + + + Oring + + + + + Bamun + + + + + Yamongeri + + + + + Vatrata + + + + + Ndombe + + + + + Asuri + + + + + Kpagua + + + + + North Central Mixe + + + + + Salampasu + + + + + Northern Kalapuya + + + + + Kisi + + + + + Tingal + + + + + Tachelhit + + + + + Gureng Gureng + + + + + Seget + + + + + Olo + + + + + Kabyle + + + + + Talise + + + + + San Andres Larrainzar Tzotzil + + + + + Serbo-Croatian + + + + + Yaul + + + + + Odoodee + + + + + Saruga + + + + + Beti (Cote d'Ivoire) + + + + + Luyana + + + + + Thaypan + + + + + Nigerian Sign Language + + + + + Phula + + + + + Shama-Sambuga + + + + + Vano + + + + + Kafa + + + + + Nusu + + + + + Tembo (Kitembo) + + + + + Hutterite German + + + + + Munkip + + + + + Waxianghua + + + + + Samosa + + + + + Obo Manobo + + + + + Koro (Vanuatu) + + + + + Adele + + + + + Abui + + + + + Leti (Indonesia) + + + + + Kisankasa + + + + + Dutch Sign Language + + + + + Pitta Pitta + + + + + Matigsalug Manobo + + + + + Anamgura + + + + + Njebi + + + + + Safaliba + + + + + Zire + + + + + Ikoma + + + + + Irish + + + + + Hmwaveke + + + + + Kanauji + + + + + Morerebi + + + + + Tswana + + + + + Sora + + + + + Tarpia + + + + + Chhattisgarhi + + + + + Korana + + + + + Ivbie North-Okpela-Arhe + + + + + Doko-Uyanga + + + + + Gowro + + + + + Bierebo + + + + + Plapo Krumen + + + + + Gyele + + + + + Sicanian + + + + + Ancient Greek (to 1453) + + + + + Okodia + + + + + Thangal Naga + + + + + Nooksack + + + + + Nyamwezi + + + + + Singpho + + + + + Uneme + + + + + Asu (Tanzania) + + + + + Domari + + + + + Badi Kanum + + + + + Kendem + + + + + Ndumu + + + + + Mitlatongo Mixtec + + + + + Sumau + + + + + Mape + + + + + Musar + + + + + Oraon Sadri + + + + + Yimchungru Naga + + + + + Dubu + + + + + Bogan + + + + + Hunnic + + + + + Bunama + + + + + Ese Ejja + + + + + Awar + + + + + Djingili + + + + + Ho-Chunk + + + + + Pyu + + + + + Bilma Kanuri + + + + + Vono + + + + + Komyandaret + + + + + Yarawata + + + + + Nimi + + + + + Wuliwuli + + + + + Ir + + + + + Suoy + + + + + Sandawe + + + + + Segai + + + + + Imeraguen + + + + + Ibino + + + + + Yemsa + + + + + Colonia Tovar German + + + + + Malagasy + + + + + Traveller Scottish + + + + + Tonkawa + + + + + Bolango + + + + + Eastern Gurung + + + + + Paraujano + + + + + Sunwar + + + + + Western Penan + + + + + Tangut + + + + + Moabite + + + + + Eastern Quiche + + + + + Lese + + + + + Buriat + + + + + Duriankere + + + + + Central Bontoc + + + + + Kwa + + + + + Engenni + + + + + Creek + + + + + Central Palawano + + + + + Peruvian Sign Language + + + + + Nyambo + + + + + Erokwanas + + + + + Bazigar + + + + + Fasu + + + + + Konkani (macrolanguage) + + + + + Eastern Meohang + + + + + Santa Ana de Tusi Pasco Quechua + + + + + Southern Pashto + + + + + Kalami + + + + + Kabuverdianu + + + + + Central Maewo + + + + + Karon Dori + + + + + Pakistan Sign Language + + + + + Cagua + + + + + Oti + + + + + Gbari + + + + + Forak + + + + + Sowa + + + + + Tangale + + + + + Purik + + + + + Western Tamang + + + + + Bolon + + + + + Shubi + + + + + Cotoname + + + + + Aduge + + + + + Nkari + + + + + Tacana + + + + + Hukumina + + + + + Maram Naga + + + + + Parecis + + + + + Sherdukpen + + + + + Teke-Laali + + + + + Ndunga + + + + + Zeme Naga + + + + + Tandroy-Mahafaly Malagasy + + + + + Laba + + + + + Lugbara + + + + + Bo-Rukul + + + + + Bualkhaw Chin + + + + + Gongduk + + + + + Casuarina Coast Asmat + + + + + Nalik + + + + + Southern Conchucos Ancash Quechua + + + + + Tenango Otomi + + + + + Lingala + + + + + Elamite + + + + + Xicotepec De Juarez Totonac + + + + + Munji + + + + + Wanambre + + + + + Hemba + + + + + Karey + + + + + Kara (Central African Republic) + + + + + Matukar + + + + + Kanowit + + + + + Lodhi + + + + + Niuatoputapu + + + + + Sinicahua Mixtec + + + + + Panchpargania + + + + + Yukpa + + + + + Northern Pomo + + + + + Chang Naga + + + + + Polci + + + + + Rapting + + + + + Bhunjia + + + + + South Picene + + + + + Anglo-Norman + + + + + Niellim + + + + + Suundi + + + + + Bulgarian Sign Language + + + + + Tupi + + + + + Tsikimba + + + + + Akoose + + + + + Timugon Murut + + + + + Nisi + + + + + Nyeng + + + + + Western Bolivian Guarani + + + + + Western Kenyah + + + + + Selangor Sign Language + + + + + Sorkhei + + + + + Northern Kurdish + + + + + Nggem + + + + + Andoa + + + + + Khazar + + + + + Ak + + + + + Southern Uzbek + + + + + Delaware + + + + + West Central Quiche + + + + + Usui + + + + + Stod Bhoti + + + + + Ixtenco Otomi + + + + + Malfaxal + + + + + Beembe + + + + + Unami + + + + + Volapuk + + + + + Tiale + + + + + O'du + + + + + Bugun + + + + + Duke + + + + + Twi + + + + + Nubaca + + + + + Mbandja + + + + + Kurrama + + + + + Abun + + + + + Breton + + + + + Southern Mam + + + + + Ambo + + + + + Woi + + + + + Sanuma + + + + + Mayaguduna + + + + + Zoroastrian Dari + + + + + Simeku + + + + + Edera Awyu + + + + + Ata Manobo + + + + + Jennu Kurumba + + + + + Old Welsh + + + + + Bolgarian + + + + + Bete-Bendi + + + + + Laiyolo + + + + + Bonkiman + + + + + Eastern Krahn + + + + + Haiphong Sign Language + + + + + Galoli + + + + + Kuku-Uwanh + + + + + Embu + + + + + Sangtam Naga + + + + + Urim + + + + + Aragonese + + + + + Inuktitut + + + + + Loma (Cote d'Ivoire) + + + + + Runga + + + + + Puma + + + + + Ukpe-Bayobiri + + + + + Wanggom + + + + + Wiru + + + + + Ullatan + + + + + Kulung (Nigeria) + + + + + Chiripa + + + + + Komi + + + + + Karachay-Balkar + + + + + Basap + + + + + Pampanga + + + + + Lower Tanudan Kalinga + + + + + Tabo + + + + + Mazanderani + + + + + Ramopa + + + + + Mbule + + + + + Tututepec Mixtec + + + + + Au + + + + + Thurawal + + + + + Sasak + + + + + Giangan + + + + + Luba-Lulua + + + + + Gidar + + + + + Koluwawa + + + + + Bondoukou Kulango + + + + + Mullu Kurumba + + + + + Ghadames + + + + + Bunak + + + + + Algerian Sign Language + + + + + Korean Sign Language + + + + + Xwela Gbe + + + + + Pawnee + + + + + Ndonga + + + + + Lalia + + + + + Upper Saxon + + + + + Pimbwe + + + + + Duau + + + + + Mawa (Chad) + + + + + Suki + + + + + Batanga + + + + + Fayu + + + + + Chachapoyas Quechua + + + + + Halang Doan + + + + + Gbaya-Bozoum + + + + + Garifuna + + + + + Waru + + + + + Lehar + + + + + Vehes + + + + + Kaikadi + + + + + Soo + + + + + Northwestern Dinka + + + + + Asas + + + + + Western Ojibwa + + + + + Yambes + + + + + Yaka (Central African Republic) + + + + + Hote + + + + + Punan Tubu + + + + + Usarufa + + + + + West-Central Limba + + + + + Malakote + + + + + Central Bai + + + + + Ashaninka + + + + + Wabo + + + + + Dogoso + + + + + Sardinian + + + + + Antigua and Barbuda Creole English + + + + + Ternateno + + + + + Taman (Myanmar) + + + + + Emumu + + + + + Buhid + + + + + Sidamo + + + + + Kistane + + + + + Libinza + + + + + Ci Gbe + + + + + North Muyu + + + + + Maleu-Kilenge + + + + + Nakai + + + + + Sake + + + + + Lotud + + + + + Ossetian + + + + + Laha (Viet Nam) + + + + + Levuka + + + + + Keapara + + + + + Bengali + + + + + Boko (Benin) + + + + + Northern Subanen + + + + + Yasa + + + + + Classical Armenian + + + + + Inlaod Itneg + + + + + Mt. Iriga Agta + + + + + Wichi Lhamtes Vejoz + + + + + Wa + + + + + Traveller Norwegian + + + + + Wares + + + + + Bolongan + + + + + Margu + + + + + Wongo + + + + + Idakho-Isukha-Tiriki + + + + + Ngeq + + + + + Tupuri + + + + + Chinese Pidgin English + + + + + Kwegu + + + + + Koitabu + + + + + Kansa + + + + + Kinalakna + + + + + We Southern + + + + + Belanda Viri + + + + + Faire Atta + + + + + Cahuilla + + + + + Kunggara + + + + + Kahe + + + + + Lusitanian + + + + + Morori + + + + + Wagaya + + + + + Korandje + + + + + Chitimacha + + + + + Lega-Mwenga + + + + + Elpaputih + + + + + Manda (Australia) + + + + + Mundani + + + + + Takia + + + + + Jola-Kasa + + + + + Kanasi + + + + + Gudanji + + + + + Oki-No-Erabu + + + + + Wichi Lhamtes Guisnay + + + + + Isirawa + + + + + North Babar + + + + + Vlaams + + + + + Datooga + + + + + Koromfe + + + + + Bamwe + + + + + Mun Chin + + + + + Apma + + + + + Maltese Sign Language + + + + + War + + + + + Assiniboine + + + + + Nataoran Amis + + + + + Day + + + + + Shua + + + + + Lemnian + + + + + Embera-Baudo + + + + + Taupota + + + + + Ter Sami + + + + + Ewe + + + + + No linguistic content + + + + + Chilisso + + + + + Swedish + + + + + Gumatj + + + + + Wik-Me'anha + + + + + Nimboran + + + + + San Martin Itunyoso Triqui + + + + + Bomboli + + + + + Ratahan + + + + + Sinagen + + + + + Pal + + + + + Hdi + + + + + Lusengo + + + + + San Francisco Del Mar Huave + + + + + Jiru + + + + + Eastern Cham + + + + + Maya Samo + + + + + Mbuko + + + + + Maleng + + + + + Miship + + + + + Kota (India) + + + + + Nemi + + + + + Dogose + + + + + Abua + + + + + Iwal + + + + + Sicilian + + + + + Tawr Chin + + + + + Pemono + + + + + Mawa (Nigeria) + + + + + Ulukwumi + + + + + Kolbila + + + + + Western Mari + + + + + Bikol + + + + + Abinomn + + + + + Seimat + + + + + Kunda + + + + + Tera + + + + + Mongolian Sign Language + + + + + Nambya + + + + + Northern Bobo Madare + + + + + Sumerian + + + + + Dehwari + + + + + Chepang + + + + + Tomyang + + + + + Maiwa (Papua New Guinea) + + + + + Tubar + + + + + Gahri + + + + + Nyaneka + + + + + Mamboru + + + + + Malecite-Passamaquoddy + + + + + Nafaanra + + + + + West Makian + + + + + Dimir + + + + + Keiga + + + + + Tikar + + + + + Lower Chehalis + + + + + Inari Sami + + + + + Kupsabiny + + + + + Tetela + + + + + Mussau-Emira + + + + + Dzalakha + + + + + Pijin + + + + + Bwaidoka + + + + + Yau (Sandaun Province) + + + + + Baruga + + + + + Lanas Lobu + + + + + Brooke's Point Palawano + + + + + Cocopa + + + + + Kongo + + + + + Banao Itneg + + + + + Gurmana + + + + + Tilquiapan Zapotec + + + + + Pahi + + + + + Cerma + + + + + Ribun + + + + + Tenharim + + + + + Afro-Seminole Creole + + + + + Syriac + + + + + Borna + + + + + Andra-Hus + + + + + Wintu + + + + + Karok + + + + + Toro + + + + + Asue Awyu + + + + + Yabaana + + + + + Ankave + + + + + Arifama-Miniafia + + + + + Lolo + + + + + Iaai + + + + + Ik + + + + + Itik + + + + + Uokha + + + + + Maring Naga + + + + + Coastal Saluan + + + + + Tsakonian + + + + + Ngalkbun + + + + + Orma + + + + + Kembayan + + + + + Fang (Cameroon) + + + + + Mesmes + + + + + Mafea + + + + + Kayan Mahakam + + + + + Labir + + + + + North Asmat + + + + + Jina + + + + + Lame + + + + + Cavinena + + + + + Western Meohang + + + + + Basque + + + + + Harsusi + + + + + Kedang + + + + + Koyra Chiini Songhay + + + + + Akan + + + + + Wushi + + + + + Hadrami Arabic + + + + + Alege + + + + + Bateri + + + + + T'en + + + + + Upper Ta'oih + + + + + Michoacan Mazahua + + + + + Muniche + + + + + Jaunsari + + + + + Senthang Chin + + + + + Maranao + + + + + Nawuri + + + + + Bukusu + + + + + Ziriya + + + + + Mailu + + + + + Teso + + + + + Amaimon + + + + + Bhojpuri + + + + + Saleman + + + + + Telefol + + + + + Hpon + + + + + Langi + + + + + Northern Puebla Nahuatl + + + + + Palembang + + + + + Southern Puebla Mixtec + + + + + Magdalena Penasco Mixtec + + + + + Malinaltepec Tlapanec + + + + + Sabaot + + + + + Mutu + + + + + Waboda + + + + + Manggarai + + + + + Gilima + + + + + Southern Ngbandi + + + + + Lwalu + + + + + Logudorese Sardinian + + + + + Negerhollands + + + + + Mundari + + + + + Haryanvi + + + + + Nedebang + + + + + Masadiit Itneg + + + + + Nend + + + + + Walla Walla + + + + + Gazi + + + + + Menominee + + + + + Gobasi + + + + + Nehan + + + + + Dubli + + + + + Temascaltepec Nahuatl + + + + + Lachiguiri Zapotec + + + + + Siar-Lak + + + + + Dobu + + + + + Monimbo + + + + + Ramoaaina + + + + + Rahambuu + + + + + Efai + + + + + Kanakanabu + + + + + Kaidipang + + + + + Mundat + + + + + Murrinh-Patha + + + + + Nek + + + + + Tonsea + + + + + Northern Kankanay + + + + + White Lachi + + + + + Matagalpa + + + + + Norn + + + + + Biseni + + + + + Bu + + + + + Kele (Papua New Guinea) + + + + + El Alto Zapotec + + + + + Mak (China) + + + + + Kariya + + + + + Kwangali + + + + + Ngumba + + + + + Bwanabwana + + + + + Mongo + + + + + Ts'un-Lao + + + + + Kemi Sami + + + + + Ndom + + + + + Southern Altai + + + + + Pichis Asheninka + + + + + Adynyamathanha + + + + + Manipuri + + + + + Cashibo-Cacataibo + + + + + Nyangga + + + + + Dhanwar (India) + + + + + Manado Malay + + + + + Kela (Papua New Guinea) + + + + + Blablanga + + + + + Banaro + + + + + Baram Kayan + + + + + Mba + + + + + Mendankwe-Nkwen + + + + + Ma'di + + + + + Cheke Holo + + + + + Wambaya + + + + + Purari + + + + + Kolsch + + + + + Longto + + + + + Itu Mbon Uzo + + + + + Mambwe-Lungu + + + + + Scythian + + + + + Mamuju + + + + + Nyamusa-Molo + + + + + Ipalapa Amuzgo + + + + + Sama + + + + + Laa Laa Bwamu + + + + + Dambi + + + + + Kaurna + + + + + Kacipo-Balesi + + + + + Eton (Vanuatu) + + + + + Tswapong + + + + + Busuu + + + + + Hungana + + + + + Dalmatian + + + + + Forest Maninka + + + + + Anuki + + + + + Karahawyana + + + + + Mina (Cameroon) + + + + + Kimre + + + + + Itundujia Mixtec + + + + + Lakkia + + + + + Shi + + + + + She + + + + + Waamwang + + + + + Lamboya + + + + + Kuot + + + + + Kula + + + + + Palaic + + + + + Arawete + + + + + Turkish + + + + + Kalamse + + + + + Old French (842-ca. 1400) + + + + + Cunen Quiche + + + + + Bambam + + + + + Raetic + + + + + Wayu + + + + + Wampanoag + + + + + Cacua + + + + + Bangandu + + + + + Karaim + + + + + Usila Chinantec + + + + + Kubu + + + + + So (Cameroon) + + + + + Chimakum + + + + + Momare + + + + + Nukna + + + + + Con + + + + + Manangba + + + + + Yarsun + + + + + Mesme + + + + + Palpa + + + + + Ditammari + + + + + Tiwi + + + + + Maring + + + + + Lukpa + + + + + Apasco-Apoala Mixtec + + + + + Doso + + + + + Baka (Cameroon) + + + + + Manikion + + + + + Rawo + + + + + Mayogo + + + + + Mbole + + + + + Kplang + + + + + Puyo-Paekche + + + + + Obokuitai + + + + + Austrian Sign Language + + + + + Quioquitani-Quieri Zapotec + + + + + Kairiru + + + + + Tiema Ciewe Bozo + + + + + Umbu-Ungu + + + + + Heiltsuk + + + + + Kahua + + + + + Domung + + + + + Caddo + + + + + Cinda-Regi-Tiyal + + + + + Kwanga + + + + + Pakanha + + + + + Talinga-Bwisi + + + + + Dimasa + + + + + Afade + + + + + Mamvu + + + + + Moi (Indonesia) + + + + + Gbaya (Sudan) + + + + + Tohono O'odham + + + + + Evenki + + + + + Tlazoyaltepec Mixtec + + + + + Aghwan + + + + + Bolinao + + + + + Araki + + + + + Yos + + + + + Nkangala + + + + + Boghom + + + + + Kuria + + + + + Tonga (Thailand) + + + + + Guana (Paraguay) + + + + + Tlingit + + + + + Koonzime + + + + + Marind + + + + + Dan + + + + + Chaungtha + + + + + Doromu + + + + + Sarawak Bisaya + + + + + Xipinawa + + + + + Darling + + + + + Kaska + + + + + Awngi + + + + + Tubarao + + + + + Aleut + + + + + Seko Padang + + + + + Kadar + + + + + Weri + + + + + East Futuna + + + + + Bribri + + + + + Tsum + + + + + Minanibai + + + + + Rajbanshi + + + + + Katukina + + + + + Segeju + + + + + Mapia + + + + + Bughotu + + + + + Aputai + + + + + Central Mam + + + + + Tucano + + + + + Batak Alas-Kluet + + + + + Yandruwandha + + + + + Adioukrou + + + + + Hindi + + + + + Pinigura + + + + + Kusaghe + + + + + Western Kayah + + + + + Central Ojibwa + + + + + Lopi + + + + + Chichicapan Zapotec + + + + + Slovenian + + + + + Guriaso + + + + + Macedonian + + + + + Pambia + + + + + Rampi + + + + + Sinyar + + + + + Bwela + + + + + Kapriman + + + + + Chachi + + + + + Mag-Indi Ayta + + + + + Stoney + + + + + Agatu + + + + + Ukpet-Ehom + + + + + Aquitanian + + + + + Hungarian Sign Language + + + + + Khowar + + + + + Coquille + + + + + Ngkalmpw Kanum + + + + + Mabaale + + + + + Tai + + + + + Galibi Carib + + + + + Jungle Inga + + + + + Boro + + + + + Duwet + + + + + Dieri + + + + + Ganda + + + + + San Martin Quechua + + + + + Pini + + + + + Yele + + + + + Khinalugh + + + + + Duri + + + + + Mandahuaca + + + + + Tepinapa Chinantec + + + + + Opuuo + + + + + Biafada + + + + + Ai-Cham + + + + + Limos Kalinga + + + + + Afrikaans + + + + + Southwestern Tlaxiaco Mixtec + + + + + Makhuwa-Shirima + + + + + Waima'a + + + + + Ngurimi + + + + + Ambulas + + + + + Port Vato + + + + + Nambo + + + + + Daw + + + + + Myene + + + + + Sakalava Malagasy + + + + + Nadeb + + + + + Upper Umpqua + + + + + Berau Malay + + + + + Ngundu + + + + + Cacgia Roglai + + + + + Central Kurdish + + + + + Ibuoro + + + + + Ngbinda + + + + + Judeo-Arabic + + + + + Ede Cabe + + + + + Dohoi + + + + + Saraveca + + + + + Kutto + + + + + Kioko + + + + + Santa Ines Yatzechi Zapotec + + + + + Ta'izzi-Adeni Arabic + + + + + Nayini + + + + + Sokoro + + + + + Hozo + + + + + Cwi Bwamu + + + + + Ukit + + + + + Koireng + + + + + Oorlams + + + + + Ava-Canoeiro + + + + + Numbami + + + + + Ghayavi + + + + + Ayiwo + + + + + Okobo + + + + + Balangingi + + + + + Yela + + + + + Riang (Myanmar) + + + + + Tregami + + + + + Imbongu + + + + + Mongol + + + + + Wamas + + + + + Takpa + + + + + Israeli Sign Language + + + + + Tegali + + + + + Miya + + + + + Biak + + + + + Peripheral Mongolian + + + + + Kenswei Nsei + + + + + Pardhan + + + + + Papora + + + + + Mesqan + + + + + Miyako + + + + + Sissano + + + + + Monom + + + + + Panjabi + + + + + Gana + + + + + El Hugeirat + + + + + Macaguan + + + + + Binahari + + + + + Iresim + + + + + Dirasha + + + + + Puoc + + + + + Yuanjiang-Mojiang Yi + + + + + Kakwa + + + + + Susquehannock + + + + + Chiru + + + + + Laeko-Libuat + + + + + Bantoanon + + + + + Mandarin Chinese + + + + + Anuta + + + + + Hieroglyphic Luwian + + + + + Congo Swahili + + + + + Mlap + + + + + I-Wak + + + + + Yabong + + + + + Costa Rican Sign Language + + + + + Pero + + + + + Taliabu + + + + + Bokyi + + + + + Ngiti + + + + + Tempasuk Dusun + + + + + Baniwa + + + + + Timne + + + + + Ju/'hoan + + + + + Djangun + + + + + Luguru + + + + + Southwest Palawano + + + + + Bieria + + + + + Bakhtiari + + + + + Zinacantan Tzotzil + + + + + Bullom So + + + + + Koro (Papua New Guinea) + + + + + Uruangnirin + + + + + Vandalic + + + + + Northern Conchucos Ancash Quechua + + + + + Nama (Namibia) + + + + + Sa'a + + + + + Bashkir + + + + + Loja Highland Quichua + + + + + South Central Cakchiquel + + + + + Nde-Nsele-Nta + + + + + Tamanaku + + + + + Ingush + + + + + Dhalandji + + + + + Paiwan + + + + + Konyanka Maninka + + + + + Kimbundu + + + + + Konda + + + + + Islander Creole English + + + + + Khumi Awa Chin + + + + + Nisga'a + + + + + Biao + + + + + Akoye + + + + + Birao + + + + + Gata' + + + + + Sihan + + + + + Bongili + + + + + Kirikiri + + + + + Bebele + + + + + Ainu (China) + + + + + Lopit + + + + + Cabiyari + + + + + Djinang + + + + + Pfaelzisch + + + + + Sera + + + + + Bafut + + + + + Yaminahua + + + + + Khandesi + + + + + Idere + + + + + Northern Amami-Oshima + + + + + Aiku + + + + + Seta + + + + + Acheron + + + + + Jarai + + + + + Iranun + + + + + Achterhoeks + + + + + Anaang + + + + + Kire + + + + + Apatani + + + + + Maridan + + + + + Wapishana + + + + + Sok + + + + + Kuturmi + + + + + Pwo Eastern Karen + + + + + Maay + + + + + Galician + + + + + Ari + + + + + Pali + + + + + Otank + + + + + Rasawa + + + + + Moere + + + + + Penesak + + + + + Vinza + + + + + Judeo-Berber + + + + + Vishavan + + + + + Chenchu + + + + + Tampuan + + + + + Bataan Ayta + + + + + Doga + + + + + Noric + + + + + Barakai + + + + + Barbacoas + + + + + Maco + + + + + Toraja-Sa'dan + + + + + Dawera-Daweloor + + + + + Jola-Fonyi + + + + + Southern Luri + + + + + Arop-Lukep + + + + + Kimki + + + + + Worora + + + + + Lezghian + + + + + Eastern Penan + + + + + Winye + + + + + Medebur + + + + + Tombonuwo + + + + + Ghanongga + + + + + Lonwolwol + + + + + Goemai + + + + + Izon + + + + + Yeni + + + + + Dirim + + + + + Teutila Cuicatec + + + + + Waioli + + + + + Ap Ma + + + + + Moikodi + + + + + Ikobi-Mena + + + + + Gaa + + + + + Kikai + + + + + Wahau Kayan + + + + + Isnag + + + + + Masmaje + + + + + Kickapoo + + + + + Tabaru + + + + + Mandobo Atas + + + + + Aura + + + + + Corsican + + + + + Hertevin + + + + + Doyayo + + + + + Hamtai + + + + + Michif + + + + + Hadrami + + + + + Leti (Cameroon) + + + + + Bijori + + + + + Sidetic + + + + + Nangikurrunggurr + + + + + So + + + + + Gbesi Gbe + + + + + Andi + + + + + Loncong + + + + + Macanese + + + + + Baki + + + + + Toram + + + + + Tumzabt + + + + + Kamwe + + + + + Mullukmulluk + + + + + Logba + + + + + Carapana + + + + + Kepkiriwat + + + + + Zaparo + + + + + Mator + + + + + Matya Samo + + + + + Hulaula + + + + + Kesawai + + + + + Saponi + + + + + Punan Aput + + + + + Manigri-Kambole Ede Nago + + + + + Venda + + + + + Korowai + + + + + Patani + + + + + Fas + + + + + Northern Dagara + + + + + Mom Jango + + + + + Jarawa (Nigeria) + + + + + Iamalele + + + + + Ayoreo + + + + + Kagayanen + + + + + Nyong + + + + + Yue Chinese + + + + + Baga Kaloum + + + + + Ninia Yali + + + + + Oku + + + + + Serbian + + + + + Kuk + + + + + Ayacucho Quechua + + + + + Numee + + + + + Tanjijili + + + + + Eastern Keres + + + + + Yukuben + + + + + Limi Yi + + + + + Luba-Katanga + + + + + Danaru + + + + + Kyenga + + + + + Thayore + + + + + Southern Pokomam + + + + + Ido + + + + + Wuzlam + + + + + Japreria + + + + + Morawa + + + + + Fyam + + + + + Seti + + + + + Ruli + + + + + Coastal Kadazan + + + + + Tagakaulu Kalagan + + + + + Gafat + + + + + Ibilo + + + + + Sumbawa + + + + + Tidore + + + + + Jimi (Cameroon) + + + + + Manusela + + + + + Sawila + + + + + Southern Ma'di + + + + + Mekwei + + + + + Dulbu + + + + + Hwana + + + + + Pangseng + + + + + Parauk + + + + + Serui-Laut + + + + + Kambaira + + + + + Mboko + + + + + Ndali + + + + + Koi + + + + + Kaonde + + + + + Dar Fur Daju + + + + + Piru + + + + + Gua + + + + + Dera (Indonesia) + + + + + Are + + + + + Wauyai + + + + + Koya + + + + + Bilin + + + + + Media Lengua + + + + + Tawala + + + + + Armenian Sign Language + + + + + Sasaru + + + + + Lower Tanana + + + + + Teen + + + + + Tabla + + + + + Yaqay + + + + + Ngas + + + + + Rawa + + + + + Eastern Kanjobal + + + + + South Wemale + + + + + Shambala + + + + + Lauje + + + + + Humburi Senni Songhay + + + + + North Awyu + + + + + Mili Yi + + + + + Tiagbamrin Aizi + + + + + Swabian + + + + + Vidunda + + + + + Izere + + + + + Cara + + + + + Tiefo + + + + + Jambi Malay + + + + + Biri + + + + + Moba + + + + + Aka-Jeru + + + + + Lingua Franca + + + + + Turkish Sign Language + + + + + Tacahua Mixtec + + + + + Tutoh Kenyah + + + + + Hijuk + + + + + Washo + + + + + Aukan + + + + + Dzodinka + + + + + Madurese + + + + + Opao + + + + + Loko + + + + + Sudovian + + + + + Tupinamba + + + + + U + + + + + The + + + + + Mon + + + + + Murik Kayan + + + + + Ndau + + + + + Interglossa + + + + + Somrai + + + + + Lubu + + + + + Chakma + + + + + Ekpeye + + + + + Kanuri + + + + + Nachering + + + + + Phangduwali + + + + + Marenje + + + + + Eastern Xiangxi Hmong + + + + + Zizilivakan + + + + + Kanjari + + + + + Majhwar + + + + + Tuamotuan + + + + + Sialum + + + + + Kajali + + + + + Gimi (Eastern Highlands) + + + + + Obolo + + + + + Wannu + + + + + Bashkardi + + + + + Muratayak + + + + + Barapasi + + + + + Francisco Leon Zoque + + + + + Besme + + + + + Larike-Wakasihu + + + + + Igana + + + + + Rajong + + + + + Ayi (Papua New Guinea) + + + + + Dendi (Benin) + + + + + Oya'oya + + + + + Ambakich + + + + + Manem + + + + + Bagusa + + + + + Byangsi + + + + + Sheni + + + + + Icelandic + + + + + Parya + + + + + Duguza + + + + + Sierra Leone Sign Language + + + + + Piamatsina + + + + + Akawaio + + + + + Halh Mongolian + + + + + Wara + + + + + Ngungwel + + + + + Podena + + + + + Anem + + + + + Razajerdi + + + + + Lokoya + + + + + Beaver + + + + + Northern Grebo + + + + + Satere-Mawe + + + + + Wasco-Wishram + + + + + Sio + + + + + Duwai + + + + + Eastern Parbate + + + + + Sangil + + + + + Azerbaijani + + + + + Woccon + + + + + Songoora + + + + + Sudest + + + + + Bafanji + + + + + Tagabawa + + + + + Songo + + + + + Puyo + + + + + Drents + + + + + Cung + + + + + Munit + + + + + A-Pucikwar + + + + + Western Xwla Gbe + + + + + Cameroon Pidgin + + + + + Warduji + + + + + Ticuna + + + + + Brem + + + + + Damal + + + + + Tayo + + + + + Barombi + + + + + Maklew + + + + + Unua + + + + + Chadian Arabic + + + + + Cimbrian + + + + + Eastern Apurimac Quechua + + + + + Ingrian + + + + + Harari + + + + + Lemoro + + + + + Yameo + + + + + Totoli + + + + + Bian Marind + + + + + Bushoong + + + + + Dayi + + + + + Dera (Nigeria) + + + + + Samarokena + + + + + Kupa + + + + + Harijan Kinnauri + + + + + Kumarbhag Paharia + + + + + Majang + + + + + Mende (Papua New Guinea) + + + + + Mahali + + + + + Bassa-Kontagora + + + + + Sabanes + + + + + Yokuts + + + + + Wogamusin + + + + + Marovo + + + + + Lonzo + + + + + Milyan + + + + + Lusi + + + + + Bhoti Kinnauri + + + + + Western Kanjobal + + + + + Cowlitz + + + + + Konkomba + + + + + Pamplona Atta + + + + + Kohistani Shina + + + + + Shekkacho + + + + + Sanaani Arabic + + + + + Chuka + + + + + Mirgan + + + + + Teshenawa + + + + + Malol + + + + + Unde Kaili + + + + + Veddah + + + + + Ranau + + + + + Breri + + + + + Makassar Malay + + + + + East Yugur + + + + + Lunda + + + + + Bulo Stieng + + + + + Namia + + + + + Moo + + + + + Lakota + + + + + Lamkang + + + + + Arta + + + + + Vanimo + + + + + Ancient North Arabian + + + + + Sori-Harengan + + + + + Chiga + + + + + Providencia Sign Language + + + + + Korku + + + + + Jowulu + + + + + Walloon + + + + + Hmong Daw + + + + + Paez + + + + + Menya + + + + + Urdu + + + + + Ngabere + + + + + Tsakhur + + + + + Ibatan + + + + + Moloko + + + + + Laurentian + + + + + Basay + + + + + Remontado Agta + + + + + Puari + + + + + Wane + + + + + Upper Guinea Crioulo + + + + + Kuuku-Ya'u + + + + + Eastern Qiandong Hmong + + + + + Juang + + + + + Southern Gondi + + + + + Ofaye + + + + + Alur + + + + + Tahltan + + + + + Bellari + + + + + Djongkang + + + + + Lilau + + + + + Natanzi + + + + + Selungai Murut + + + + + Gurdjar + + + + + Basa (Nigeria) + + + + + Jwira-Pepesa + + + + + Taworta + + + + + Gowlan + + + + + Tumari Kanuri + + + + + Shahmirzadi + + + + + Roon + + + + + Rana Tharu + + + + + Hula + + + + + Bintauna + + + + + Luhu + + + + + Central Quiche + + + + + Mada (Nigeria) + + + + + Donno So Dogon + + + + + Bouyei + + + + + Bomitaba + + + + + Shoo-Minda-Nye + + + + + Negidal + + + + + Balo + + + + + Agwagwune + + + + + Arvanitika Albanian + + + + + Uruava + + + + + Piu + + + + + Kwa' + + + + + Amerax + + + + + Arabela + + + + + Awyi + + + + + Ngoni + + + + + Inoke-Yate + + + + + Andoque + + + + + Central Pokomam + + + + + Hunde + + + + + Lega-Shabunda + + + + + Lika + + + + + Malayic Dayak + + + + + Ija-Zuba + + + + + Montol + + + + + Highland Puebla Nahuatl + + + + + Zazao + + + + + Muthuvan + + + + + Pnar + + + + + Mehinaku + + + + + Matbat + + + + + Amdang + + + + + Yareni Zapotec + + + + + Gibanawa + + + + + Tu + + + + + Shiki + + + + + Samburu + + + + + Ngarinyin + + + + + Mobilian + + + + + Mabaan + + + + + Tornedalen Finnish + + + + + Kompane + + + + + Poluo Yi + + + + + Andaqui + + + + + Mimi + + + + + Tangkhul Naga + + + + + Kenuzi-Dongola + + + + + Itene + + + + + Kryts + + + + + Gozarkhani + + + + + Maridjabin + + + + + Gugu Warra + + + + + Kasanga + + + + + Kolum So Dogon + + + + + As + + + + + Hamba + + + + + Pass Valley Yali + + + + + Sirmauri + + + + + Mengaka + + + + + Dyaabugay + + + + + Calo + + + + + Lubila + + + + + Pauserna + + + + + Nyoro + + + + + Caramanta + + + + + Lango (Sudan) + + + + + Mbugwe + + + + + Karankawa + + + + + Batad Ifugao + + + + + Bella Coola + + + + + Ekit + + + + + Rerau + + + + + Southern Guiyang Hmong + + + + + Nimadi + + + + + Oirata + + + + + Balkan Romani + + + + + Judeo-Persian + + + + + Fulah + + + + + Zeeuws + + + + + Rerep + + + + + Pontic + + + + + San Pedro Quiatoni Zapotec + + + + + Yansi + + + + + Haruku + + + + + Kuvi + + + + + Yagomi + + + + + Wolani + + + + + Western Maninkakan + + + + + Ghari + + + + + Pu-Xian Chinese + + + + + Jukun Takum + + + + + Yawa + + + + + Birwa + + + + + Bote-Majhi + + + + + Lillooet + + + + + Phunoi + + + + + Catalan + + + + + Weyto + + + + + Semelai + + + + + Ile Ape + + + + + Bay Miwok + + + + + Telugu + + + + + Western Panjabi + + + + + Zhaba + + + + + Upper Kuskokwim + + + + + Siraya + + + + + Aari + + + + + Ottoman Turkish (1500-1928) + + + + + Masimasi + + + + + Orejon + + + + + Ewage-Notu + + + + + Ngete + + + + + Ozolotepec Zapotec + + + + + Kok Borok + + + + + Lemio + + + + + Mangala + + + + + Bimoba + + + + + Cuvok + + + + + Pei + + + + + Galatian + + + + + Ngaanyatjarra + + + + + South Central Banda + + + + + Nabak + + + + + Mo'da + + + + + Kaba Deme + + + + + Tepo Krumen + + + + + Lawangan + + + + + Ibani + + + + + Mulaha + + + + + Pardhi + + + + + Sochiapan Chinantec + + + + + Bari + + + + + Santiago Xanica Zapotec + + + + + Hanoi Sign Language + + + + + Old Burmese + + + + + Musom + + + + + Maxakali + + + + + Bikaru + + + + + Gimme + + + + + Gavar + + + + + Majhi + + + + + Bimin + + + + + Teanu + + + + + Zulu + + + + + Kaba Na + + + + + Rusyn + + + + + Kyak + + + + + Tulehu + + + + + Bangeri Me Dogon + + + + + Lelak + + + + + Tijaltepec Mixtec + + + + + East Nyala + + + + + Nzanyi + + + + + Karkar-Yuri + + + + + Talaud + + + + + Slave (Athapascan) + + + + + Gulay + + + + + Mashi (Zambia) + + + + + North Tanna + + + + + Wasu + + + + + Aneme Wake + + + + + Komering + + + + + Mbya Guarani + + + + + Tilung + + + + + Aruek + + + + + Gadjerawang + + + + + Eleme + + + + + Korupun-Sela + + + + + Northern Alta + + + + + Gen + + + + + Ontong Java + + + + + Anu + + + + + Younuo Bunu + + + + + Bookan + + + + + Quapaw + + + + + Greek Sign Language + + + + + Apinaye + + + + + Dyula + + + + + Yiddish Sign Language + + + + + Kalaallisut + + + + + Sao Paulo Kaingang + + + + + Thulung + + + + + Bamenyam + + + + + Carpathian Romani + + + + + Caluyanun + + + + + Tokharian A + + + + + Ngandyera + + + + + Tuwali Ifugao + + + + + Nottoway-Meherrin + + + + + Tsimihety Malagasy + + + + + Coatlan Mixe + + + + + Mbu' + + + + + Chantyal + + + + + Piratapuyo + + + + + Dongo + + + + + Anca + + + + + Bolyu + + + + + Shekhawati + + + + + Buraka + + + + + Natagaimas + + + + + Baetora + + + + + Dampelas + + + + + Kango (Tshopo District) + + + + + Acatepec Tlapanec + + + + + Northern Dong + + + + + Foi + + + + + Tausug + + + + + Wayampi + + + + + Twendi + + + + + Chopi + + + + + Siriano + + + + + Alabama + + + + + Noy + + + + + Pana (Central African Republic) + + + + + Zanaki + + + + + Gurinji + + + + + Jenaama Bozo + + + + + Matipuhy + + + + + Jawe + + + + + East Ambae + + + + + Askopan + + + + + Bhadrawahi + + + + + Aimele + + + + + Halkomelem + + + + + Pare + + + + + Lambayeque Quechua + + + + + Chhulung + + + + + Ozumacin Chinantec + + + + + Suruaha + + + + + Lumbee + + + + + Loun + + + + + Seki + + + + + Kilivila + + + + + Berinomo + + + + + Machinga + + + + + Axi Yi + + + + + Mandaic + + + + + Santali + + + + + Mundabli + + + + + Akaselem + + + + + Shuadit + + + + + Hazaragi + + + + + Pedi + + + + + Morokodo + + + + + Mukha-Dora + + + + + Goundo + + + + + Huamalies-Dos de Mayo Huanuco Quechua + + + + + Potawatomi + + + + + Sissala + + + + + Warji + + + + + Itelmen + + + + + Kayapo + + + + + Epie + + + + + Kazukuru + + + + + Kochila Tharu + + + + + Waorani + + + + + Tewa (USA) + + + + + Raute + + + + + Aproumu Aizi + + + + + Tamnim Citak + + + + + Pileni + + + + + Kaibobo + + + + + Indus Kohistani + + + + + Kraol + + + + + Amatlan Zapotec + + + + + Guadeloupean Creole French + + + + + Tai Nua + + + + + Yakoma + + + + + Wuding-Luquan Yi + + + + + Eastern Oromo + + + + + Kwamtim One + + + + + Lachixio Zapotec + + + + + Duli + + + + + Canela + + + + + Osing + + + + + Vilela + + + + + Highland Konjo + + + + + Baruya + + + + + Kimaragang + + + + + Moronene + + + + + Beba + + + + + Sam + + + + + Waray (Australia) + + + + + Romkun + + + + + Bomboma + + + + + Jumjum + + + + + Idate + + + + + Gamit + + + + + Northern Catanduanes Bicolano + + + + + Ahom + + + + + Tring + + + + + Swiss German + + + + + Selaru + + + + + Mbato + + + + + Batek + + + + + Balinese Malay + + + + + Georgian + + + + + Jimi (Nigeria) + + + + + Saniyo-Hiyewe + + + + + Lashi + + + + + Fagani + + + + + Ayutla Mixtec + + + + + Degexit'an + + + + + //Xegwi + + + + + Liki + + + + + Jeh + + + + + Anii + + + + + Agavotaguerra + + + + + Sakechep + + + + + Nyali + + + + + Yaaku + + + + + Athpariya + + + + + Malimba + + + + + Loreto-Ucayali Spanish + + + + + Andarum + + + + + Sabah Malay + + + + + Bade + + + + + Krikati-Timbira + + + + + Elymian + + + + + Lowland Tarahumara + + + + + Valley Maidu + + + + + Igede + + + + + Ketum + + + + + Mmaala + + + + + Mandar + + + + + Mohave + + + + + Barikanchi + + + + + Tawallammat Tamajaq + + + + + Puragi + + + + + San Juan Teita Mixtec + + + + + Kalkoti + + + + + Kara (Tanzania) + + + + + Chaldean Neo-Aramaic + + + + + Narak + + + + + Nungali + + + + + Tavringer Romani + + + + + Wolio + + + + + Kariri-Xoco + + + + + Ozumatlan Totonac + + + + + Fyer + + + + + Sundanese + + + + + Kamarian + + + + + Mbara (Chad) + + + + + Makhuwa-Meetto + + + + + Ntomba + + + + + Tajiki Arabic + + + + + Takua + + + + + Daai Chin + + + + + Yangulam + + + + + Nancere + + + + + Daho-Doo + + + + + Yerakai + + + + + Batak Toba + + + + + Cherepon + + + + + Muskum + + + + + Alutor + + + + + Opata + + + + + Mycenaean Greek + + + + + Northern East Cree + + + + + Dai + + + + + Lomwe + + + + + Sherbro + + + + + Chaudangsi + + + + + Moru + + + + + Ngandi + + + + + Caac + + + + + Northern Pashto + + + + + Dizi + + + + + Puimei Naga + + + + + Koch + + + + + Halia + + + + + Panim + + + + + Gurgula + + + + + Huehuetla Tepehua + + + + + Tumulung Sisaala + + + + + Dom + + + + + Kandawo + + + + + Kaure + + + + + Langam + + + + + Zan Gula + + + + + Taulil + + + + + Tachawit + + + + + Tringgus + + + + + Laven + + + + + Beothuk + + + + + Kao + + + + + Lefa + + + + + Rakahanga-Manihiki + + + + + Aasax + + + + + Arapaho + + + + + Guiberoua Bete + + + + + Gude + + + + + Southern Roglai + + + + + Balaesang + + + + + Malaccan Creole Portuguese + + + + + Weh + + + + + Cibak + + + + + Zyphe + + + + + Pamlico + + + + + Gokana + + + + + Andio + + + + + Yimas + + + + + Central Tarahumara + + + + + Canar Highland Quichua + + + + + Loup A + + + + + Mbum + + + + + Mazagway + + + + + Gugubera + + + + + Timbe + + + + + Eten + + + + + Wali (Ghana) + + + + + Wardaman + + + + + Lobi + + + + + Kinnauri + + + + + Naga Pidgin + + + + + Ngarinman + + + + + Sekar + + + + + Betta Kurumba + + + + + Bukat + + + + + Ruund + + + + + Pinji + + + + + El Molo + + + + + Kwinti + + + + + Gamkonora + + + + + Acatenango Southwestern Cakchiquel + + + + + Efutop + + + + + North Alaskan Inupiatun + + + + + Waimaha + + + + + Old Russian + + + + + Chimariko + + + + + Bouna Kulango + + + + + Coyutla Totonac + + + + + Southern Balochi + + + + + Northern Qiang + + + + + Luo + + + + + Tama (Colombia) + + + + + Yankunytjatjara + + + + + Culina + + + + + Arikapu + + + + + Nimbari + + + + + San Jeronimo Tecoatl Mazatec + + + + + Phende + + + + + Chetco + + + + + Middle Mongolian + + + + + Mambae + + + + + German Sign Language + + + + + Brunei Bisaya + + + + + Wanda + + + + + Okpamheri + + + + + Bosnian + + + + + Siyin Chin + + + + + Khirwar + + + + + Shatt + + + + + Bomwali + + + + + Malalamai + + + + + Wantoat + + + + + Bali (Democratic Republic of Congo) + + + + + Adangme + + + + + Southwestern Tepehuan + + + + + Zhoa + + + + + Togbo-Vara Banda + + + + + Alviri-Vidari + + + + + Makhuwa-Saka + + + + + Uradhi + + + + + Pagibete + + + + + Cheyenne + + + + + Logorik + + + + + Sani Yi + + + + + Itutang + + + + + Befang + + + + + Himarima + + + + + Kitja + + + + + Taushiro + + + + + Kalasha + + + + + Joba + + + + + Cochimi + + + + + Tarao Naga + + + + + Awadhi + + + + + Highland Popoluca + + + + + Mysian + + + + + Khasi + + + + + Malakhel + + + + + Scottish Gaelic + + + + + Eastern Yiddish + + + + + Toto + + + + + Biwat + + + + + Saurashtra + + + + + Darang Deng + + + + + Wandarang + + + + + Bwatoo + + + + + Nyamal + + + + + Mocho + + + + + Ngoshie + + + + + Croatia Sign Language + + + + + Kaan + + + + + Bungain + + + + + Makwe + + + + + Qimant + + + + + Shau + + + + + Lamma + + + + + Tetelcingo Nahuatl + + + + + Mbedam + + + + + Rongmei Naga + + + + + Afrihili + + + + + Dahalo + + + + + Yapunda + + + + + Tlacoatzintepec Chinantec + + + + + Monzombo + + + + + Porohanon + + + + + Ngazidja Comorian + + + + + Mirandese + + + + + Pankararu + + + + + Kitan + + + + + Sumo-Mayangna + + + + + Baka (Sudan) + + + + + Menka + + + + + Gaddang + + + + + Notre + + + + + Jamiltepec Mixtec + + + + + Fortsenal + + + + + Curonian + + + + + Puwa Yi + + + + + Helong + + + + + Tanahmerah + + + + + Ningera + + + + + Bulgebi + + + + + Bacama + + + + + South Marquesan + + + + + Nyiha + + + + + Gimi (West New Britain) + + + + + Lishanid Noshan + + + + + Koreguaje + + + + + Buglere + + + + + Lorang + + + + + Muya + + + + + Temi + + + + + Gao + + + + + Sango + + + + + Cotabato Manobo + + + + + Toga + + + + + Hinduri + + + + + Mende (Sierra Leone) + + + + + Nyaheun + + + + + Sherpa + + + + + Coong + + + + + Southwestern Huishui Hmong + + + + + Nilamba + + + + + Bislama + + + + + Komodo + + + + + Nupode Huitoto + + + + + Malay (individual language) + + + + + Walungge + + + + + Assamese + + + + + Macaguaje + + + + + Nyang'i + + + + + Ndolo + + + + + Frankish + + + + + Neo-Hittite + + + + + Sentinel + + + + + San Juan Cotzal Ixil + + + + + Extremaduran + + + + + Gorakor + + + + + Aiome + + + + + Nasarian + + + + + Min Nan Chinese + + + + + Gagadu + + + + + Nafusi + + + + + Buli (Indonesia) + + + + + Biyo + + + + + Kita Maninkakan + + + + + Cahuarano + + + + + Chochotec + + + + + Southeastern Lolo Yi + + + + + Tundra Enets + + + + + Pintiini + + + + + Urak Lawoi' + + + + + Vao + + + + + Agariya + + + + + Southern Pastaza Quechua + + + + + Kuku-Yalanji + + + + + Masaba + + + + + Kinyarwanda + + + + + Chavacano + + + + + Lushootseed + + + + + Epena + + + + + Bena (Nigeria) + + + + + Gizrra + + + + + Dagoman + + + + + Kwato + + + + + Kopar + + + + + Amblong + + + + + Dakaka + + + + + Malaryan + + + + + Zayein Karen + + + + + Berbice Creole Dutch + + + + + Plautdietsch + + + + + Ukwuani-Aboh-Ndoni + + + + + Gwandara + + + + + Bemba (Zambia) + + + + + Central Aymara + + + + + Old Frisian + + + + + Egypt Sign Language + + + + + Walser + + + + + Lingarak + + + + + Mewari + + + + + Ket + + + + + Taiap + + + + + Bainouk-Gunyuno + + + + + Miqie Yi + + + + + Dair + + + + + Alyawarr + + + + + Tiwa + + + + + Central Tunebo + + + + + Nawaru + + + + + Andh + + + + + Sakirabia + + + + + Tila Chol + + + + + Tifal + + + + + Kyenele + + + + + Assyrian Neo-Aramaic + + + + + Todos Santos Cuchumatan Mam + + + + + Akei + + + + + Hun-Saare + + + + + Pochuri Naga + + + + + Mari (Russia) + + + + + Michigamea + + + + + Nyakyusa-Ngonde + + + + + Tinputz + + + + + Pidgin Delaware + + + + + Mlahso + + + + + Holiya + + + + + Usaghade + + + + + West Ambae + + + + + Kumiai + + + + + Piti + + + + + Yace + + + + + Comaltepec Chinantec + + + + + Selkup + + + + + Malba Birifor + + + + + Kaki Ae + + + + + Nabi + + + + + Ibali Teke + + + + + Manna-Dora + + + + + Kazakh + + + + + Northern Lorung + + + + + Saep + + + + + Surui Do Para + + + + + Dhuwal + + + + + Tongwe + + + + + Wamey + + + + + Mese + + + + + Agi + + + + + Bakole + + + + + Big Nambas + + + + + Embera-Tado + + + + + Lubuagan Kalinga + + + + + Egyptian Arabic + + + + + Transalpine Gaulish + + + + + Barasana + + + + + Nama (Papua New Guinea) + + + + + San Baltazar Loxicha Zapotec + + + + + Gamo-Ningi + + + + + Helambu Sherpa + + + + + Nchumbulu + + + + + Koyraboro Senni Songhai + + + + + Pa Di + + + + + Northern Pastaza Quichua + + + + + Southern Pumi + + + + + Kom (Cameroon) + + + + + Yakha + + + + + Darmiya + + + + + Dakka + + + + + Tampulma + + + + + Sumi Naga + + + + + Sekani + + + + + Didinga + + + + + Shahrudi + + + + + Khmu + + + + + Kanoe + + + + + Cameroon Mambila + + + + + Bera + + + + + Yei + + + + + Dogul Dom Dogon + + + + + Sizaki + + + + + Pictish + + + + + Garawa + + + + + Zimakani + + + + + Bau + + + + + Bumthangkha + + + + + Bahinemo + + + + + Rapoisi + + + + + Pauri Bareli + + + + + Bembe + + + + + Southern Samo + + + + + Bongu + + + + + Ojitlan Chinantec + + + + + Kituba (Democratic Republic of Congo) + + + + + Shendu + + + + + Butuanon + + + + + Nadruvian + + + + + Kamasa + + + + + Mawan + + + + + Pa-Hng + + + + + Lematang + + + + + Yoruba + + + + + North Nuaulu + + + + + Franco-Provencal + + + + + Ulch + + + + + Mamaa + + + + + Poyanawa + + + + + Takwane + + + + + Huizhou Chinese + + + + + Orang Seletar + + + + + Mandobo Bawah + + + + + Adasen Itneg + + + + + Ubi + + + + + Tabasco Chontal + + + + + Mushungulu + + + + + Mboi + + + + + Pao + + + + + Pari + + + + + Cao Lan + + + + + Carrier + + + + + Yauyos Quechua + + + + + Kikuyu + + + + + Sauria Paharia + + + + + Burmese + + + + + Ulau-Suain + + + + + Western Fijian + + + + + Wayuu + + + + + Nyamwanga + + + + + Fam + + + + + Mongondow + + + + + Kodia + + + + + Bonggo + + + + + Settla + + + + + Lamang + + + + + Brithenig + + + + + Laua + + + + + Eastern Egyptian Bedawi Arabic + + + + + Navajo + + + + + Lushai + + + + + Bunun + + + + + Mro Chin + + + + + Wakhi + + + + + Siwi + + + + + Umanakaina + + + + + Ojibwa + + + + + Bayono + + + + + Nyulnyul + + + + + Sanga (Nigeria) + + + + + Tigre + + + + + Kerewe + + + + + Kenyi + + + + + Mbonga + + + + + Middle English (1100-1500) + + + + + Kunfal + + + + + Tagbanwa + + + + + Isthmus-Pajapan Nahuatl + + + + + North Giziga + + + + + San Luis Potosi Huastec + + + + + Duduela + + + + + Fijian Hindustani + + + + + Narau + + + + + Wayoro + + + + + Punic + + + + + Ayu + + + + + Baharna Arabic + + + + + Mualang + + + + + Laari + + + + + San Agustin Mixtepec Zapotec + + + + + Reli + + + + + Rungus + + + + + Mesquakie + + + + + Yessan-Mayo + + + + + Lave + + + + + Hiligaynon + + + + + Kintaq + + + + + Paku Karen + + + + + Xishan Lalu Yi + + + + + Poke + + + + + Maek + + + + + Sugut Dusun + + + + + Guianese Creole French + + + + + Defaka + + + + + Nanggu + + + + + Molima + + + + + Panasuan + + + + + North Wahgi + + + + + Candoshi-Shapra + + + + + Namat + + + + + Yamana + + + + + Eastern Frisian + + + + + Melpa + + + + + Khams Tibetan + + + + + Demta + + + + + Kohumono + + + + + Logo + + + + + Nootka + + + + + Old Tibetan + + + + + Itza + + + + + Memoni + + + + + Ngbundu + + + + + Lamenu + + + + + Patep + + + + + Xhosa + + + + + Yong + + + + + Iapama + + + + + Label + + + + + Yeyi + + + + + Awabakal + + + + + Nyangumarta + + + + + Hamer-Banna + + + + + Serer + + + + + Samtao + + + + + Bassari + + + + + North Bolivian Quechua + + + + + Kumzari + + + + + Laghuu + + + + + Chimalapa Zoque + + + + + Mararit + + + + + Tanosy Malagasy + + + + + Mochica + + + + + Bauro + + + + + Laka (Nigeria) + + + + + Ngumbi + + + + + Tunisian Arabic + + + + + Hmong Shua + + + + + Aranama-Tamique + + + + + Lipan Apache + + + + + Teme + + + + + Aka-Bo + + + + + Namosi-Naitasiri-Serua + + + + + Beja + + + + + Solos + + + + + Temein + + + + + Wadaginam + + + + + Patpatar + + + + + Tagish + + + + + Mae + + + + + Cinta Larga + + + + + Gunya + + + + + Bondei + + + + + Ngura + + + + + Tuxinawa + + + + + Bati (Indonesia) + + + + + Southern Qiang + + + + + Skepi Creole Dutch + + + + + Villa Viciosa Agta + + + + + Argobba + + + + + Maiani + + + + + Ngaju + + + + + Northern Embera + + + + + Yucuane Mixtec + + + + + Central Masela + + + + + Maa + + + + + Kalkutung + + + + + Ona + + + + + Kangean + + + + + Fongoro + + + + + Moyon Naga + + + + + Khana + + + + + Tichurong + + + + + Southern Sami + + + + + Yindjibarndi + + + + + Lewotobi + + + + + Soyaltepec Mixtec + + + + + Tabriak + + + + + Talodi + + + + + Hakka Chinese + + + + + Onge + + + + + Lucumi + + + + + =/Kx'au//ein + + + + + Onin Based Pidgin + + + + + Tolomako + + + + + //Ani + + + + + Lingkhim + + + + + Teor + + + + + Letemboi + + + + + Mbangi + + + + + Dwang + + + + + Trumai + + + + + Bassossi + + + + + Seselwa Creole French + + + + + Lumun + + + + + Gusilay + + + + + Ometepec Nahuatl + + + + + Terebu + + + + + Kiowa + + + + + Bamukumbit + + + + + Palenquero + + + + + Western Highland Purepecha + + + + + Mayeka + + + + + Somyev + + + + + Akpes + + + + + Welaung + + + + + Braj + + + + + Yepocapa Southwestern Cakchiquel + + + + + Thai + + + + + Inpui Naga + + + + + Bororo + + + + + Beli (Sudan) + + + + + Ute-Southern Paiute + + + + + Karawa + + + + + Kabola + + + + + Dong + + + + + Bagri + + + + + Ndoola + + + + + West Tarangan + + + + + Saya + + + + + Babuza + + + + + Kohoroxitari + + + + + Kunbarlang + + + + + Mediak + + + + + Tavoyan + + + + + Bima + + + + + Kereho-Uheng + + + + + Bacanese Malay + + + + + Northern Pumi + + + + + Mopan Maya + + + + + Tagwana Senoufo + + + + + Ecuadorian Sign Language + + + + + Faroese + + + + + Eman + + + + + Marba + + + + + Peranakan Indonesian + + + + + Pijao + + + + + Nii + + + + + Tsonga + + + + + Abu + + + + + Chru + + + + + Krobu + + + + + Shabo + + + + + We Northern + + + + + Corongo Ancash Quechua + + + + + Umbindhamu + + + + + Tatana + + + + + Kpala + + + + + Baba Malay + + + + + Shumashti + + + + + Kwakiutl + + + + + Ethiopian Sign Language + + + + + Dibole + + + + + Karanga + + + + + Papapana + + + + + Sebuyau + + + + + Omurano + + + + + Seri + + + + + Wasa + + + + + Toala' + + + + + Central Grebo + + + + + Tami + + + + + Kamba (Kenya) + + + + + Afar + + + + + Baeggu + + + + + Jandavra + + + + + Eshtehardi + + + + + Pukapuka + + + + + Kharia Thar + + + + + Kuku-Mangk + + + + + Kenyang + + + + + Rathwi Bareli + + + + + Zia + + + + + Kang + + + + + Central Nicobarese + + + + + Ngarluma + + + + + Rongpo + + + + + Mauwake + + + + + Khaling + + + + + Busam + + + + + Adangbe + + + + + Nyanga-li + + + + + Saposa + + + + + Tobagonian Creole English + + + + + Mer + + + + + Abenlen Ayta + + + + + Koroni + + + + + Wariyangga + + + + + Mescalero-Chiricahua Apache + + + + + Cemuhi + + + + + Rongga + + + + + Middle Dutch (ca. 1050-1350) + + + + + Malasanga + + + + + Veluws + + + + + Classical Newari + + + + + Hruso + + + + + Barwe + + + + + Huautla Mazatec + + + + + Pela + + + + + Bagupi + + + + + Tahitian + + + + + Nguluwan + + + + + Kuanhua + + + + + West Coast Bajau + + + + + Maca + + + + + Hassaniyya + + + + + Woleaian + + + + + Otuke + + + + + Old Japanese + + + + + Valman + + + + + Izi-Ezaa-Ikwo-Mgbo + + + + + Penoles Mixtec + + + + + Napu + + + + + Parkari Koli + + + + + Chuvash + + + + + Northern Thai + + + + + Ponosakan + + + + + Otuho + + + + + Komba + + + + + Khang + + + + + Sene + + + + + Kachari + + + + + Baniva + + + + + Ipiko + + + + + Aghu Tharnggalu + + + + + Akum + + + + + Kilmeri + + + + + Kuanua + + + + + Pula Yi + + + + + Cofan + + + + + Mfinu + + + + + Ga + + + + + Ngalum + + + + + Tariano + + + + + Sicel + + + + + Phoenician + + + + + Awjilah + + + + + Tukumanfed + + + + + Ludian + + + + + Eastern Mnong + + + + + Idesa + + + + + Pamosu + + + + + Kaytetye + + + + + Kashubian + + + + + Amoltepec Mixtec + + + + + Yekhee + + + + + Banggai + + + + + Awtuw + + + + + Phana' + + + + + Maraghei + + + + + Selian + + + + + Kajakse + + + + + Sudanese Creole Arabic + + + + + Kahumamahon Saluan + + + + + Alu Kurumba + + + + + Mser + + + + + La'bi + + + + + Mundu + + + + + Rumu + + + + + Arawak + + + + + Northern Sierra Miwok + + + + + Tanzanian Sign Language + + + + + Khumi Chin + + + + + Makasar + + + + + Sinte Romani + + + + + Singapore Sign Language + + + + + Koma + + + + + Cuiba + + + + + Chinook jargon + + + + + Laadan + + + + + Galambu + + + + + North Marquesan + + + + + Birhor + + + + + Azoyu Tlapanec + + + + + Korop + + + + + Herde + + + + + Southern Betsimisaraka Malagasy + + + + + Yinggarda + + + + + Kamoro + + + + + Wikalkan + + + + + Churahi + + + + + Volscian + + + + + Northern Bai + + + + + Sranan Tongo + + + + + Qaqet + + + + + Southern Yukaghir + + + + + Dhivehi + + + + + Barein + + + + + Koiwat + + + + + Old Nubian + + + + + Salinan + + + + + Yangbye + + + + + Uhami + + + + + Lomaiviti + + + + + Psikye + + + + + Grebo + + + + + Santiago Lapaguia Zapotec + + + + + Caribbean Javanese + + + + + Wumbvu + + + + + Khalaj + + + + + Chocangacakha + + + + + Khanty + + + + + Kayan River Kayan + + + + + Maricopa + + + + + Isinai + + + + + Eastern Bolivian Guarani + + + + + Xibe + + + + + Kiliwa + + + + + Lala-Roba + + + + + Persian + + + + + South Awyu + + + + + Mombum + + + + + Southwestern Tarahumara + + + + + Pe + + + + + Molo + + + + + Kurtokha + + + + + Central Okinawan + + + + + Old Hungarian + + + + + Kamayura + + + + + Saisiyat + + + + + Northern Uzbek + + + + + Oyda + + + + + Kpelle + + + + + Geruma + + + + + Chuave + + + + + Wanman + + + + + Tayart Tamajeq + + + + + Kajaman + + + + + Hurrian + + + + + Haitian + + + + + Awu Yi + + + + + Cineni + + + + + Ndendeule + + + + + Northern Ngbandi + + + + + Akkala Sami + + + + + Kasseng + + + + + Tok Pisin + + + + + Ukue + + + + + Mbay + + + + + Tomedes + + + + + Mbariman-Gudhinma + + + + + Bantik + + + + + Lamogai + + + + + Min Dong Chinese + + + + + Ninam + + + + + Kamang + + + + + Loup B + + + + + Santa Teresa Cora + + + + + Touo + + + + + Liana-Seti + + + + + Kaco' + + + + + Algerian Saharan Arabic + + + + + Bauchi + + + + + Zuni + + + + + Yopno + + + + + Lachirioag Zapotec + + + + + Maithili + + + + + Bakwe + + + + + Nefamese + + + + + Karipuna Creole French + + + + + Yalahatan + + + + + Wanukaka + + + + + Nubri + + + + + Chilcotin + + + + + Biangai + + + + + Loo + + + + + Haveke + + + + + Kayardild + + + + + Tabasco Zoque + + + + + Kokoda + + + + + Jju + + + + + Gola + + + + + Bebil + + + + + Tsetsaut + + + + + Hulung + + + + + Vagla + + + + + Romanian + + + + + Kola + + + + + Dolpo + + + + + Zaniza Zapotec + + + + + Daga + + + + + Tombulu + + + + + Angolar + + + + + Kutu + + + + + Dura + + + + + Dolgan + + + + + Tocho + + + + + Chane + + + + + Dugun + + + + + Kota (Gabon) + + + + + Epi-Olmec + + + + + Mire + + + + + Rukai + + + + + Tsimane + + + + + Pacific Gulf Yupik + + + + + Coyotepec Popoloca + + + + + Alangan + + + + + Pwo Western Karen + + + + + Kanu + + + + + Nomaande + + + + + Tidaa Mixtec + + + + + Cebaara Senoufo + + + + + Fur + + + + + Old Saxon + + + + + Malawi Sena + + + + + Juray + + + + + Nyangatom + + + + + Old Tamil + + + + + Moingi + + + + + Dimbong + + + + + Nung (Viet Nam) + + + + + Iu Mien + + + + + Barclayville Grebo + + + + + Moken + + + + + Piraha + + + + + Embera-Chami + + + + + Grangali + + + + + Satawalese + + + + + Yabarana + + + + + Butmas-Tur + + + + + Lui + + + + + Ndengereko + + + + + Ila + + + + + Mesaka + + + + + Fe'fe + + + + + Tatar + + + + + Shawnee + + + + + Bofi + + + + + Abishira + + + + + Whitesands + + + + + Plateau Malagasy + + + + + Ere + + + + + Musey + + + + + Mashi (Nigeria) + + + + + Babango + + + + + Etkywan + + + + + Yanomami + + + + + Kunigami + + + + + Bedjond + + + + + Doutai + + + + + Murupi + + + + + Magori + + + + + Tereno + + + + + Nafri + + + + + Samvedi + + + + + Southern Birifor + + + + + Sebat Bet Gurage + + + + + Ikpeshi + + + + + Dungu + + + + + Darlong + + + + + Ladin + + + + + Orok + + + + + Onondaga + + + + + Sri Lankan Creole Malay + + + + + Alanic + + + + + Buginese + + + + + Southern Yi + + + + + Eastern Gorkha Tamang + + + + + Torau + + + + + Rendille + + + + + Northern Tiwa + + + + + Eritai + + + + + Meta' + + + + + Muong + + + + + Paafang + + + + + Northern Kissi + + + + + Bakaka + + + + + Wakawaka + + + + + Kaniet + + + + + East Makian + + + + + Liabuku + + + + + Shinabo + + + + + Narim + + + + + Mari (East Sepik Province) + + + + + Oroko + + + + + Khuen + + + + + Bum + + + + + Chorasmian + + + + + Kuman (Russia) + + + + + Tembo (Motembo) + + + + + Southern Kalinga + + + + + Fang (Equatorial Guinea) + + + + + Binji + + + + + Apalachee + + + + + Shuar + + + + + Nogai + + + + + Swahili (individual language) + + + + + Bonerate + + + + + Eastern Ojibwa + + + + + Tabassaran + + + + + Ayabadhu + + + + + Balau + + + + + Baga Binari + + + + + Wakona + + + + + Maori + + + + + Waigali + + + + + Batak Simalungun + + + + + Irantxe + + + + + Iduna + + + + + Chippewa + + + + + Kuni-Boazi + + + + + Kaimbulawa + + + + + San Salvador Kongo + + + + + Tyap + + + + + Bara Malagasy + + + + + Michoacan Nahuatl + + + + + Mbo (Democratic Republic of Congo) + + + + + Gayo + + + + + Duano' + + + + + Supyire Senoufo + + + + + Lorediakarkar + + + + + Bebeli + + + + + Geji + + + + + Lamet + + + + + Na + + + + + Chukot + + + + + Karo (Ethiopia) + + + + + Wandamen + + + + + Tuvinian + + + + + Odual + + + + + Emai-Iuleha-Ora + + + + + Marshallese + + + + + Eastern Pomo + + + + + Squamish + + + + + North Picene + + + + + Huambisa + + + + + Bikya + + + + + Omagua + + + + + Ombo + + + + + Odut + + + + + Kankanaey + + + + + Kamar + + + + + Toro So Dogon + + + + + Bambalang + + + + + Mohawk + + + + + Morisyen + + + + + Kurichiya + + + + + Cori + + + + + Adamawa Fulfulde + + + + + Ugong + + + + + Miami + + + + + Bakpinka + + + + + Diodio + + + + + Turkana + + + + + Bambassi + + + + + Nkonya + + + + + Djambarrpuyngu + + + + + Motu + + + + + Mezontla Popoloca + + + + + Urimo + + + + + Manam + + + + + Albay Bicolano + + + + + Awera + + + + + Wutung + + + + + Moma + + + + + Northern Gondi + + + + + Yagaria + + + + + Central Cagayan Agta + + + + + Narungga + + + + + Biao-Jiao Mien + + + + + Koyo + + + + + Coatepec Nahuatl + + + + + Gangulu + + + + + Uru-Pa-In + + + + + Huaxcaleca Nahuatl + + + + + Shilluk + + + + + Amal + + + + + Ventureno + + + + + Hlai + + + + + Northern Paiute + + + + + Gitua + + + + + Mbala + + + + + Totela + + + + + Kemberano + + + + + Auye + + + + + Phimbi + + + + + Tutsa Naga + + + + + Mednyj Aleut + + + + + Tiv + + + + + Aramaic + + + + + Chitwania Tharu + + + + + Burak + + + + + Manyawa + + + + + Toaripi + + + + + Eastern Lawa + + + + + Wik-Mungkan + + + + + Gupa-Abawa + + + + + Hasha + + + + + Senhaja De Srair + + + + + Nivacle + + + + + Imroing + + + + + Melanau + + + + + Dusun Witu + + + + + Northern Toussian + + + + + Togoyo + + + + + Chajul Ixil + + + + + Mru + + + + + Atakapa + + + + + Yawarawarga + + + + + Lamam + + + + + Nake + + + + + Avokaya + + + + + Rincon Zapotec + + + + + Northern Qiandong Hmong + + + + + Norwegian + + + + + Cross River Mbembe + + + + + Chamacoco + + + + + Malawi Lomwe + + + + + Xadani Zapotec + + + + + Jita + + + + + Kouya + + + + + Mandingo + + + + + Cakchiquel-Quiche Mixed Language + + + + + North Korowai + + + + + Sarli + + + + + Ocaina + + + + + Ukrainian + + + + + Northern Zhuang + + + + + Kitsai + + + + + Bonan + + + + + Northern Sami + + + + + Kamviri + + + + + Iyo + + + + + Ata + + + + + Nugunu (Cameroon) + + + + + Karingani + + + + + Mahakam Kenyah + + + + + Tause + + + + + Tiri + + + + + Secoya + + + + + Kharam Naga + + + + + North Ambrym + + + + + Pagi + + + + + Haeke + + + + + Kowaki + + + + + Muko-Muko + + + + + Tai Thanh + + + + + Airoran + + + + + Nyalayu + + + + + Ignaciano + + + + + Sangu (Tanzania) + + + + + Irish Sign Language + + + + + Oy + + + + + Brokpake + + + + + Kushi + + + + + Central Atlas Tamazight + + + + + Western Sisaala + + + + + Vaiphei + + + + + Angal Heneng + + + + + Thao + + + + + Yerong + + + + + Wetamut + + + + + Chiapanec + + + + + Istriot + + + + + Manx + + + + + Saaroa + + + + + Enya + + + + + Tepeuxila Cuicatec + + + + + Nez Perce + + + + + Ede Idaca + + + + + Phuan + + + + + Botolan Sambal + + + + + Karata + + + + + Simte + + + + + Piaroa + + + + + Farefare + + + + + Gamilaraay + + + + + Gaina + + + + + Aariya + + + + + Lower Pokomo + + + + + Urum + + + + + Kanga + + + + + Reyesano + + + + + Manga Kanuri + + + + + Nung (Myanmar) + + + + + Pom + + + + + Groma + + + + + Zemba + + + + + Sharwa + + + + + Tanimuca-Retuara + + + + + Ombamba + + + + + Dameli + + + + + Mbowe + + + + + Tuotomb + + + + + Minaean + + + + + Plains Cree + + + + + Southwestern Dinka + + + + + Arikara + + + + + Soninke + + + + + Gogodala + + + + + Yalunka + + + + + Algerian Arabic + + + + + Valpei + + + + + Masana + + + + + Eyak + + + + + Dabarre + + + + + Nga La + + + + + Nzima + + + + + Bamako Sign Language + + + + + Lycian + + + + + Kayort + + + + + Kpasam + + + + + Kulung (Nepal) + + + + + Wu Chinese + + + + + Erave + + + + + Kurumba + + + + + Kom (India) + + + + + Voro + + + + + Ngurmbur + + + + + Alatil + + + + + Middle Breton + + + + + Ikizu + + + + + Masalit + + + + + Biga + + + + + Kahayan + + + + + Dao + + + + + Tai Do + + + + + Guaja + + + + + Aka-Bea + + + + + Vaghri + + + + + Seko Tengah + + + + + Korubo + + + + + Mbongno + + + + + Buso + + + + + Anjam + + + + + Vute + + + + + Tabasco Nahuatl + + + + + Norwegian Nynorsk + + + + + Indonesian Bajau + + + + + Yaosakor Asmat + + + + + Lahta Karen + + + + + Lakona + + + + + Bobongko + + + + + Mouk-Aria + + + + + Dghwede + + + + + Paulohi + + + + + Middle Newar + + + + + Caquinte + + + + + Korak + + + + + Maba (Indonesia) + + + + + Portuguese + + + + + Highland Totonac + + + + + Nzakara + + + + + Gapapaiwa + + + + + Waima + + + + + Darai + + + + + Hu + + + + + North Tairora + + + + + Yavitero + + + + + Eruwa + + + + + Deni + + + + + Aguacateco + + + + + Sri Lankan Sign Language + + + + + Torres Strait Creole + + + + + Mbugu + + + + + Kaiku + + + + + Arem + + + + + Rang + + + + + Paelignian + + + + + Miluk + + + + + Daro-Matu + + + + + Lambichhong + + + + + Uab Meto + + + + + Mid Grand Valley Dani + + + + + Ahirani + + + + + Gungabula + + + + + Omie + + + + + Bangubangu + + + + + New Caledonian Javanese + + + + + Quechan + + + + + Gujarati + + + + + South Fali + + + + + Siang + + + + + Ndyuka-Trio Pidgin + + + + + Iban + + + + + Pannei + + + + + Koalib + + + + + Moyadan Itneg + + + + + Alaba + + + + + Manya + + + + + Garus + + + + + Atampaya + + + + + Aka-Kol + + + + + Hungworo + + + + + Delo + + + + + Eastern Canadian Inuktitut + + + + + Central Mazahua + + + + + Batak Dairi + + + + + Kaburi + + + + + Budong-Budong + + + + + Piscataway + + + + + Saliba + + + + + Shipibo-Conibo + + + + + Tagdal + + + + + Kamano + + + + + Tejalapan Zapotec + + + + + Haruai + + + + + Malaysian Sign Language + + + + + Bonkeng + + + + + Nepali + + + + + Lawunuia + + + + + Northern Altai + + + + + Western Huasteca Nahuatl + + + + + Parthian + + + + + Ekari + + + + + Budu + + + + + Aralle-Tabulahan + + + + + Setaman + + + + + Timor Pidgin + + + + + Ho + + + + + Dagik + + + + + Rabha + + + + + Tauya + + + + + Lijili + + + + + Enim + + + + + Sallands + + + + + Bishnupriya + + + + + Southern Kisi + + + + + Wancho Naga + + + + + Tereweng + + + + + Tsamai + + + + + Nggwahyi + + + + + Pattani Malay + + + + + Heiban + + + + + Rotuman + + + + + Digaro-Mishmi + + + + + Dompo + + + + + Eshan-Xinping Yi + + + + + Gweno + + + + + Fali + + + + + Cafundo Creole + + + + + Oro Win + + + + + Deno + + + + + Suwawa + + + + + Marithiel + + + + + Prussian + + + + + Toku-No-Shima + + + + + Thakali + + + + + Aja (Sudan) + + + + + Phudagi + + + + + Nukak Maku + + + + + Sassarese Sardinian + + + + + East Kewa + + + + + Tobati + + + + + Pinai-Hagahai + + + + + Bokobaru + + + + + Yutanduchi Mixtec + + + + + Huaulu + + + + + Kolibugan Subanon + + + + + Ngamo + + + + + Torricelli + + + + + Dinka + + + + + Lobala + + + + + Gula (Central African Republic) + + + + + Valle Nacional Chinantec + + + + + Tenino + + + + + Kariyarra + + + + + Bon Gula + + + + + Yocoboue Dida + + + + + Hako + + + + + Selako + + + + + Chak + + + + + Yauma + + + + + Bhattiyali + + + + + Yapese + + + + + Xukuru + + + + + Kofyar + + + + + Tlahuitoltepec Mixe + + + + + Aruop + + + + + Monastic Sign Language + + + + + Southeast Pashayi + + + + + Isthmus Mixe + + + + + Capiznon + + + + + Woria + + + + + Bargam + + + + + Gundi + + + + + Urumi + + + + + Aloapam Zapotec + + + + + Wogeo + + + + + Hopi + + + + + Modern Greek (1453-) + + + + + Bonggi + + + + + Luopohe Hmong + + + + + Kedah Malay + + + + + Baan + + + + + Selepet + + + + + Cao Miao + + + + + Curripaco + + + + + Lisela + + + + + Chimila + + + + + Kayan River Kenyah + + + + + Foau + + + + + Purisimeno + + + + + Dijim-Bwilim + + + + + Central Huasteca Nahuatl + + + + + Tlacolulita Zapotec + + + + + Amba (Uganda) + + + + + Sepik Iwam + + + + + Guayabero + + + + + West Central Banda + + + + + Dadiya + + + + + Gitxsan + + + + + Hovongan + + + + + Belanda Bor + + + + + Dagaari Dioula + + + + + Kanamari + + + + + Rikbaktsa + + + + + Kiong + + + + + En + + + + + Old Turkish + + + + + Nkoya + + + + + Ndemli + + + + + Napo Lowland Quechua + + + + + Austral + + + + + Western Juxtlahuaca Mixtec + + + + + Zapotec + + + + + Yeskwa + + + + + Bina (Papua New Guinea) + + + + + Kara (Korea) + + + + + Western Tzutujil + + + + + Uzekwe + + + + + Korafe + + + + + Ouma + + + + + Bena (Tanzania) + + + + + Guntai + + + + + Agob + + + + + Kui (India) + + + + + Malila + + + + + Gbaya-Bossangoa + + + + + Gvoko + + + + + Yidiny + + + + + Pudtol Atta + + + + + Tibetan + + + + + Kwaami + + + + + Gela + + + + + Gade + + + + + Eastern Mari + + + + + Sila + + + + + Gebe + + + + + Vinmavis + + + + + Kuwaataay + + + + + Kuthant + + + + + Bora + + + + + Subtiaba + + + + + Awad Bing + + + + + Saweru + + + + + Odiai + + + + + Magahi + + + + + Saba + + + + + Ko + + + + + Pangwa + + + + + Lengua + + + + + Rathawi + + + + + Lunanakha + + + + + Habu + + + + + Murle + + + + + Kui (Indonesia) + + + + + Madagascar Sign Language + + + + + Nyadu + + + + + Tanapag + + + + + Newari + + + + + Achang + + + + + Abau + + + + + Southern Ghale + + + + + Purepecha + + + + + Western Tunebo + + + + + Walio + + + + + Como Karim + + + + + Kodi + + + + + Ndunda + + + + + Silacayoapan Mixtec + + + + + Muji Yi + + + + + Western Mashan Hmong + + + + + Aranadan + + + + + Shwe Palaung + + + + + Siona + + + + + Gambera + + + + + Mala (Nigeria) + + + + + Wichi Lhamtes Nocten + + + + + Tukudede + + + + + Jibu + + + + + Dhargari + + + + + Kovai + + + + + Mesopotamian Arabic + + + + + Movima + + + + + Nduga + + + + + Southern Sama + + + + + Ngbaka + + + + + Tiang + + + + + Indus Valley Language + + + + + Agutaynen + + + + + Yora + + + + + Hobyot + + + + + Trieng + + + + + Defi Gbe + + + + + Ubaghara + + + + + Tosk Albanian + + + + + Northeast Pashayi + + + + + Djiwarli + + + + + Adai + + + + + Phuie + + + + + Estonian + + + + + Ahan + + + + + Taikat + + + + + Ningil + + + + + Kukele + + + + + Pu Ko + + + + + Lengola + + + + + Twana + + + + + Libyan Arabic + + + + + Mai Brat + + + + + Guanano + + + + + Azhe Yi + + + + + Old Korean (3rd - 9th cent.) + + + + + Talur + + + + + Yambeta + + + + + Sipacapense + + + + + Siliput + + + + + Cajamarca Quechua + + + + + Iatmul + + + + + Swiss-French Sign Language + + + + + Ravula + + + + + Sinhala + + + + + Bagirmi Fulfulde + + + + + Flinders Island + + + + + Southern Pame + + + + + Njyem + + + + + Callawalla + + + + + Kabutra + + + + + Eteocretan + + + + + Ubykh + + + + + San Sebastian Coatan Chuj + + + + + Paite Chin + + + + + Bata + + + + + Waray (Philippines) + + + + + Iraya + + + + + Southern East Cree + + + + + Marrucinian + + + + + Yanyuwa + + + + + Dzongkha + + + + + Guarequena + + + + + Haitian Vodoun Culture Language + + + + + So'a + + + + + Muruwari + + + + + Landoma + + + + + Dazaga + + + + + Kairui-Midiki + + + + + Southern Pomo + + + + + Animere + + + + + Gnau + + + + + Eastern Huasteca Nahuatl + + + + + Southern Grebo + + + + + Waris + + + + + Magoma + + + + + Romansh + + + + + Northeast Kiwai + + + + + Bayungu + + + + + Pisabo + + + + + Tukpa + + + + + Bhaya + + + + + Southern Alta + + + + + A'tong + + + + + Upper Taromi + + + + + Kpan + + + + + Hawaiian + + + + + Lara' + + + + + San Juan Guelavia Zapotec + + + + + Mawak + + + + + Etulo + + + + + Tama (Chad) + + + + + Dhodia + + + + + Tese + + + + + Nauru + + + + + Saramaccan + + + + + Ligurian + + + + + Brokkat + + + + + Weliki + + + + + Shor + + + + + Northern Mashan Hmong + + + + + + + + + + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\constraint\niem\nonauthoritative-code\2.0\nonauthoritative-code.xsd + + Non-authoritative codes for the direction of a person's pose in an image. + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\constraint\niem\proxy\xsd\2.0\xsd.xsd + + Proxy types that carry dictionary metadata and have XML data type simple contents. + + true + + + + + + + + + + + + + + + + + + + A data type for Base64-encoded binary data. + + + + + + + + + + + + + A data type for binary-valued logic (true/false). + + + + + + + + + + + + + A data type for a calendar date with the format CCYY-MM-DD. + + + + + + + + + + + + + + + + + + + + + + + + + A data type for arbitrary precision decimal numbers. + + + + + + + + + + + + + A data type for a duration of time with the format PnYnMnDTnHnMnS, where nY is the number of years, nM is the number of months, nD is the number of days, nH is the number of hours, nM is the number of minutes, and nS is the number of seconds. + + + + + + + + + + + + + A data type for a Gregorian calendar year with the format CCYY. + + + + + + + + + + + + + A data type for character strings in XML. + + + + + + + + + + + + + A data type for an instant of time with the format hh:mm:ss.sss. + + + + + + + + + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\constraint\niem\unece_rec20-misc\2.0\unece_rec20-misc.xsd + + Miscellaneous unit of measure codes from the United Nations Economic Commission for Europe Recommendation No. 20, Codes for Units of Measure used in International Trade. + + true + + + + + + + + + micro-inch + + + + + nautical mile + + + + + parsec + + + + + decimetre + + + + + micrometre (micron) + + + + + foot + + + + + yard + + + + + hectometre + + + + + fathom + + + + + chain + + + + + mile (statute mile) + + + + + kilometre + + + + + milli-inch + + + + + millimetre + + + + + inch + + + + + nanometre + + + + + astronomical unit + + + + + femtometre + + + + + light year + + + + + centimetre + + + + + picometre + + + + + metre + + + + + angstrom + + + + + decametre + + + + + + + + + + + + + + + + centigram + + + + + decigram + + + + + milligram + + + + + microgram + + + + + decagram + + + + + gram + + + + + hundred pounds (cwt) / hundred weight (US) + + + + + megagram + + + + + decitonne + + + + + tonne (metric ton) + + + + + stone (UK) + + + + + grain + + + + + kilotonne + + + + + ton (UK) or long ton (US) + + + + + troy ounce or apothecary ounce + + + + + ton (US) or short ton (UK/US) + + + + + megagram + + + + + pound + + + + + kilogram + + + + + ounce + + + + + hundred weight (UK) + + + + + hectogram + + + + + + + + + + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\constraint\niem\usps_states\2.0\usps_states.xsd + + U.S. state and possession abbreviations from the U.S. Postal Service (USPS). + + true + + + + + + + + + KANSAS + + + + + NORTH DAKOTA + + + + + MASSACHUSETTS + + + + + GEORGIA + + + + + IOWA + + + + + NEW HAMPSHIRE + + + + + MARSHALL ISLANDS + + + + + TEXAS + + + + + NEVADA + + + + + OKLAHOMA + + + + + Armed Forces Americas (except Canada) + + + + + ALASKA + + + + + PUERTO RICO + + + + + IDAHO + + + + + VERMONT + + + + + SOUTH CAROLINA + + + + + AMERICAN SAMOA + + + + + MONTANA + + + + + WEST VIRGINIA + + + + + MISSOURI + + + + + DISTRICT OF COLUMBIA + + + + + WISCONSIN + + + + + ILLINOIS + + + + + COLORADO + + + + + VIRGIN ISLANDS + + + + + DELAWARE + + + + + NEW JERSEY + + + + + Armed Forces Africa, Canada, Europe, Middle East + + + + + NORTHERN MARIANA ISLANDS + + + + + MICHIGAN + + + + + WASHINGTON + + + + + FEDERATED STATES OF MICRONESIA + + + + + CALIFORNIA + + + + + OREGON + + + + + NEW YORK + + + + + NORTH CAROLINA + + + + + KENTUCKY + + + + + UTAH + + + + + MARYLAND + + + + + SOUTH DAKOTA + + + + + PALAU + + + + + CONNECTICUT + + + + + NEBRASKA + + + + + ARIZONA + + + + + MAINE + + + + + OHIO + + + + + HAWAII + + + + + WYOMING + + + + + RHODE ISLAND + + + + + ARKANSAS + + + + + GUAM + + + + + NEW MEXICO + + + + + PENNSYLVANIA + + + + + ALABAMA + + + + + TENNESSEE + + + + + MINNESOTA + + + + + INDIANA + + + + + VIRGINIA + + + + + LOUISIANA + + + + + FLORIDA + + + + + Armed Forces Pacific + + + + + MISSISSIPPI + + + + + + + + + + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\constraint\niem\domains\jxdm\4.0\jxdm.xsd + + Justice + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + An association between an activity and a location. + + + + + Details about a single case heard by the Court of Appeals (Intermediate Court of Appeal) or Supreme Court (The Court of Last Resort). This case does not retry the original case but determines whether the original case was tried properly and the defendant received a fair trial. + + + + + A request filed with an appellate court to start an appellate case. + + + + + A statement explaining the reason for an appeal. + + + + + An original case that is being retried in an appellate court. + + + + + Details about the apprehension of a subject by a peace official based on an observed or a reported violation of a law or ordinance, an outstanding arrest warrant, or probable cause information. + + + + + An agency which employs the arresting official. + + + + + A records management system number of the originating case agency for an arrest. + + + + + A bail amount on a schedule recommended according to the offense(s). + + + + + A blood-alcohol percentage reading from a Blood Alcohol Test (BAC Test). + + + + + A formal allegation of a violation of a statute and/or ordinance in association with an arrest. + + + + + A location where a subject was arrested. + + + + + A peace official who makes an arrest. + + + + + A person who is arrested. + + + + + A court authorized order which commands a peace official to arrest a subject and bring that subject before the court. + + + + + Details about an administrative step taken after an arrested subject is brought to a police station or detention facility, which involves entry of the subject's name and other relevant facts on the police "blotter", and which may also include photographing, fingerprinting, and the like. + + + + + A booking identifier of the originating case agency. + + + + + Additional information about a case. + + + + + + + + A charge or accusation a person is being tried for in a court of law. + + + + + A court of law in which the case is being tried. + + + + + A court occurrence. + + + + + An entity being charged or sued in a court of law. + + + + + An attorney who defends a case. + + + + + The attorney in a court case representing the party that filed a petition for a court order or writ requiring the respondent to take some action, halt an activity or obey a courts direction. Representative of the party seeking action from the court. In such matters the moving party (the one filing the petition) is often called the "petitioner." The attorney representing a person requesting for filing a Request or Petition for Protection filed by a petitioner. + + + + + An entity that brings charges or a suit against another in a court of law. Can be either a victim in a criminal case or a plaintiff in a civil case. + + + + + A judicial official assigned to a case. + + + + + A description of a case at a previous stage. + + + + + Details about a justice official's involvement in a court case. + + + + + A unique identifier a justice official uses to identify a case. + + + + + A role a justice official played in a court case. + + + + + A miscellaneous entity involved in a court case. + + + + + An attorney who prosecutes a case. + + + + + The attorney in a court case representing the party that is required to answer a petition for a court order or writ requiring the respondent to take some action, halt an activity or obey a courts direction. In such matters the moving party (the one filing the petition) is often called the "petitioner." Thus, the respondent is equivalent to a defendant in a lawsuit. On an appeal, the party who must respond to an appeal by the losing party in the trial court (called "appellant") in the appeals court. The accused in a domestic violence case or civil action; a person responding to a Request or Petition for Protection filed by a petitioner. + + + + + An entity in a court case that is required to answer a petition for a court order or writ requiring the respondent to take some action, halt an activity or obey a courts direction. In such matters the moving party (the one filing the petition) is usually called the petitioner. Thus, the respondent is equivalent to a defendant in a lawsuit. On an appeal, the party who must respond to an appeal by the losing party in the trial court (called appellant) in the appeals court. The accused in a domestic violence case or civil action; a person responding to a Request or Petition for Protection filed by a petitioner. + + + + + Details about a formal allegation that a specific person has committed a specific offense. + + + + + + + + Details about a formal allegation that a specific person has committed a specific offense. + + + + + A degree of involvement a person is being charged with committing in an offense. + + + + + A degree of a charge. + + + + + A plain language description of a charge. + + + + + Details about the results or processing of a charge. + + + + + A formal allegation, contained in at least one charging instrument, that a defendant has violated a statute and/or ordinance in association with an incident. + + + + + An offense within the National Crime Information Center (NCIC) system. + + + + + Additional information that clarifies a charge. + + + + + A sequentially assigned number for charge tracking purposes.. + + + + + A severity level of a charge. + + + + + A factor that has enhanced a charge, making it a more serious offense. + + + + + A unique identifier of a law, rule, or ordinance within a jurisdiction that a person is accused of violating. + + + + + Details about an official summons to appear in court or pay a fine given to a subject from a peace official due to a subjects violation or infraction of a law. + + + + + An organization for whom the citation issuing official is employed. + + + + + True if a citation can be dismissed if certain conditions are met; false otherwise. + + + + + A peace official who gives a citation to a subject. + + + + + A person who violates a law and receives a citation. + + + + + An activity that is a violation of a law or ordinance that results in a subject being given a citation. + + + + + Details about a court or a unit of a court responsible for trying justice proceedings. + + + + + + + + Details about an appearance required of a party in a court of law on a certain date. + + + + + A date on which a party must appear in court. + + + + + Details about a court occurrence. + + + + + A judge associated with a court event. + + + + + Details about the days for which a court event is scheduled. + + + + + A unique identifier for a court case event record. + + + + + A name of a unit of a court. + + + + + Details about a direction of a judge not included in a judgement, which determines some point or directs some step in proceedings. + + + + + A state of a court order. + + + + + An association between a document and a court. + + + + + A severity level of an accident, based on the most intense injury to any person or, if none were injured, so designating. + + + + + A severity level of an accident, based on the most intense injury to any person or, if none were injured, so designating. + + + + + + + + Details about an incident involving a vehicle. + + + + + A determination of whether the incident occurred while the driver was operating a commercial vehicle that was carrying hazardous materials (that required a placard). + + + + + A determination of whether the incident occurred while the driver was operating a commercial vehicle that was carrying hazardous materials (that required a placard). + + + + + + + + True if a laser was involved in the detection of an incident; false otherwise. + + + + + A legally designated speed limit in the area where an incident occurred. + + + + + A number of people in a vehicle excluding the driver when an incident occurred. + + + + + True if radar was involved in the detection of an incident; false otherwise. + + + + + A speed a vehicle was moving at when an incident occurred. + + + + + A federal or state organization with jurisdiction over a person's driving privileges. + + + + + + + + An identifier used to refer to an enforcement official. + + + + + Dates and times an enforcement official is unavailable for scheduling. + + + + + An enforcement unit to which an enforcement officer is assigned. + + + + + A name of an enforcement unit. + + + + + An area, region, or unit in which a unique identification is issued. + + + + + + + + Additional information about an incident. + + + + + + + + A property item that was damaged in an incident. + + + + + + + + True if an official was present when an incident occurred; false otherwise. + + + + + True if an incident involved a traffic accident; false otherwise. + + + + + An identifier assigned to a judicial official after meeting the requirement to practice law in a region. + + + + + Details about a legal capacity in which a judicial official is able to practice law. + + + + + An act or a course of action which may constitute a violation of a criminal statute, ordinance or rule that occurred during an incident. + + + + + Additional information about an organization. + + + + + + + + A unique identifier assigned to a justice-related organization by the federal government. + + + + + A number issued by an agency's automatic fingerprint system based on submitted fingerprints other than PersonFBIID and PersonSSID. + + + + + Additional information about a person. + + + + + + + + An association between a person and a charge issued to that person. + + + + + An association between a person and a driver license. + + + + + A number issued by the FBI's Automated Fingerprint Identification System (AFIS) based on submitted fingerprints. + + + + + A representation or an encoding of the identifying characteristics of a person's palm print. + + + + + A number issued by a state Automated Fingerprint Identification System (AFIS) based on submitted fingerprints. + + + + + Additional information about a property item. + + + + + + + + A monetary value or worth of damage that occurred to a property item. + + + + + A description of something that happened in a case in a register of actions entry. + + + + + Identification information identifying a person as a certain kind of registered offender. + + + + + A person who is required to register as a sexual offender. + + + + + Details about a punishment resulting from conviction of charges in a court case. + + + + + A specific charge in a court case resulting in a sentence. + + + + + A description of the sentence being imposed. + + + + + A duration of a sentence. Specified as either a specific term in days-months-years or as a minimum - maximum range. + + + + + A narrative account of a severity level assigned to a charge. + + + + + A unique identifier of a Severity Level. + + + + + Details about a unique identifier of a law, rule, or ordinance within a jurisdiction. + + + + + + + + Details about a unique identifier of a law, rule, or ordinance within a jurisdiction. + + + + + An identifier of a set of laws for a particular jurisdiction. + + + + + An identifier of a section or category within a code book. + + + + + A description of a statute. + + + + + Details about an area in which a statute applies. + + + + + A level of crime a statute applies to. + + + + + An identification of a criminal offense within a code book. + + + + + A person who is involved or suspected of being involved in an incident or criminal activity. + + + + + + + + A person who is involved or suspected of being involved in an incident or criminal activity. + + + + + An assigned number or string that identifies a subject. + + + + + An incarceration, detention, or other form of supervision a subject is currently undergoing. + + + + + Details about a duration length specified as either a specific term in days-months-years or as a minimum - maximum range. + + + + + A specific range or duration of a term. + + + + + Details about a person, organization, or other entity who suffers injury, loss, or death as a result of an incident. + + + + + + + + Details about a statute that has been violated and associated information. + + + + + A limitation placed on the extradition of a subject from an area outside the immediate jurisdiction of the issuing court. + + + + + A kind of limitation placed on the extradition of a subject from an area outside the immediate jurisdiction of the issuing court. + + + + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\common\ECF-4.0-CommonTypes.xsd + + + + CommonTypes + + true + + + + + + + + + + + A name other than an official name used by a person or organization. + + + + + + + + + + + + + + + + A document or other piece of information filed by someone or something involved in a case. + + + + + + + + + + + + + The role played by an attorney in this case. + + + + + + + A reference to a person organization or property represented by an attorney. + + + + + + + + + Information about a case participant. + + + + + + + + + + + + + Additional information needed to initiate a court case. + + + + + + + + + + + + + + + + + + + + + The actor who performed the action as set forth in the docket entry. E.g. the person who filed the document. Does not include the name of the court clerk composing the docket entry. + + + + + + + + + + + + The actor on whose behalf the filing was submitted to the court as set forth in the docket entry.. + + + + + + + + + + + + Document descriptors (title, type description, etc.) for the Document. This is meant to include all the information about the document that is needed to index it into the Case Management System and enter it into the Document Management System. + + + + + + + + + + + + Details about an event on the court calendar. + + + + + + + + + + + + + + + + + + + + Information describing an attachment included within an ECF 4.0 base message. An attachment can be a binary file representing the document to be filed, an XML document, a digital signature, or other MIME file. + + + + + + + + + + + + Descriptors for a rendition of a Document. This is meant to include all the information about the document that is needed to enter it into the Document Management System. + + + + + + + + + + + + + + A rendition or version of a Document. + + + + + + + + + + + + + Information describing or constituting the signature on a document submitted to a court for filing. + + + + + + + + + + + + + Document descriptors (title, type description, etc.) for the Document. This is meant to include all the information about the document that is needed to index it into the Case Management System and enter it into the Document Management System. + + + + + + + + + + + + + + + + + + A Lead document that is the pleading, motion or order that is the main document in a Filing or a Connected Document. A Lead Document may have Connected Documents, which are "appendices" or "exhibits" that are intended for filing only in the context of the Lead Document. + + + + + + + + + + + + + The asynchronous message returned by the Filing Review MDE to the filing assembly MDE conveying information on the court's actions on the documents submitted for filing in the FilingReviewMessage. + + + + + + + + + + + + + + + + The base message for an electronic filing using ECF 4.0. + + + + + + + + + + + + The structure for the information needed to electronically serve other parties to the case. + + + + + + + + + + + + + + Representation of an error that occured when synchronously processing the message. + + + + + + + + + + + + + Status of the filing as determined by the system sending the callback. + + + + + + + + + + + + Details about a coverage by contract whereby one party agrees to indemnify or guarantee another against loss by a specified contingent event or peril. + + + + + + + + + + + + The relationship between two organizations. Example: subsidiary corporation. + + + + + + + + + + + + Additional information about an organization. + + + + + + + + + + + + + + Additional information about an organization. + + + + + + + + + + + + + A code for the type of relationship between two persons, between two organizations, or between a person and an organization in a case. Allowable values are set forth in Court Policy. Examples include parent/child, subsidiary corporation, and chief executive officer. + + + + + + + + + + + + Additional information about a person. + + + + + + + + + + + + + + + + A code for the type of relationship between two persons, between two organizations, or between a person and an organization in a case. Allowable values are set forth in Court Policy. Examples include parent/child, subsidiary corporation, and chief executive officer. + + + + + + + + + + + + Additional information about a person. + + + + + + + + + + + + A message returned synchronously as a response to a query. + + + + + + + + + + + + + + + A message returned synchronously as a response to a query. + + + + + + + + + + + + + + + Case or cases sharing characteristics, such as common parties or events, with this case. + + + + + + + + + + + + A document that has been reviewed through the clerk review process, and that potentially has been or will be reocrded in the court record system. + + + + + + + + + + + + + + A container for the data or information representating a signature. + + + + + + + + + + + + Additional information about a subject. + + + + + + + + + + + + + A name other than an official name used by a person or organization in this case. + + + + + An alternative name by which this person or organization is known. + + + + + A description of the type of the alternate name. Allowable values set forth in Court Policy. Examples: doing business as, formerly known as, also known as. + + true + + + + + + + An identifier that determines the attachment order in a set of related attachments. + + + + + Nature of the relationship between the current case and the related case. Allowable values to be set forth in Court Policy. + + true + + + + + + + Additional information needed to initiate a court case. + + + + + + + + An entry in the docket or register of actions for this case. + + + + + The abbreviated name of a case. + + + + + The classification used by a court to denote the type of case for purposes of statistical categorization, court record keeping, or case assignment. Allowable values set forth in Court Policy. + + true + + + + + + The role played by an attorney in this case. + + + + + Attorney representing a "other party" in this case. + + + + + Information about a case participant. + + + + + A code that describes the role played by a person or organization in a case. Allowed values are set forth in Court Policy. Examples: Lead attorney, guardian ad litem, friend of court, court appointed special advocate (CASA), caseworker, probation officer, bail bondsman, interested person, interested party, intervenor, heir, trustee or beneficiary (e.g., of a trust). + + true + + + + + + + A reference to a person or organization represented by an attorney. + + + + + + + + The legal ground on which the request for relief is based. Allowed values set forth in court policy. Example: the basis(es) for relief in a civil case; the grounds for divorce in a state that does not recognize no-fault divorce; grounds for entry of an order of protection in a domestic violence case. + + true + + + + + + A reference to an entry on the docket or register of actions that is a child of the current docket entry. + + + + + Indicates whether color is or is not relevant for the presentation of the document. + + + + + A document included in a Filing that supports the lead Document. This document is not separately entered on the docket or register of actions. + + + + + The actor who performed the action as set forth in the docket entry. E.g. the person who filed the document. Does not include the name of the court clerk composing the docket entry. + + + + + The pleading, motion or order that is the subject of this docket entry. + + + + + A reference to a pleading, motion or order that is the subject of this docket entry. + + + + + + + + Date of entry into the court record. + + + + + A code referring to the location in a court of the calendar event. Allowable values set forth in court policy. + + true + + + + + + A textual description of the location in a court of the calendar event. + + + + + The actor on whose behalf the filing was submitted to the court as set forth in the docket entry. + + + + + Code to categorize the docket entry. E.g. motion, hearing, complaint. Allowable values set forth in court policy. + + true + + + + + + A Lead document that is the pleading, motion or order that is the main document in a Filing or a Connected Document + + + + + Information describing an attachment included within an ECF 4.0 base message. An attachment can be a binary file representing the document to be filed, an XML document, a digital signature, or other MIME file. + + + + + The identifier from the court record system used to identify the document. This attribute is populated by the MDE/process that is authorized to create docket identifiers; the attribute will not be present before that creation takes place. For example, if the clerk review process creates docket identifiers, then this attribute will be present in the RecordDocketingMessage that goes to the court record MDE. However, if the court record process creates docket identifiers, then this attribute will not be present in the RecordDocketingMessage, but will be present in subsequent callbacks. This attribute will be absent in callbacks when the ReviewedDocument was rejected, either by clerk review or the court record system. + + + + + A hash of the document as it appears in the court record. This attribute will be populated by either the clerk review process or the court record system. If the latter, then it will be absent in the RecordDocketingMessage. It will also be absent in callbacks for rejected documents. + + + + + Document descriptors (title, type description, etc.) for the Document. This is meant to include all the information about the document that is needed to index it into the Case Management System and enter it into the Document Management System. + + + + + Descriptors for a rendition of a Document. This is meant to include all the information about the document that is needed to enter it into the Document Management System. + + + + + A rendition or version of a document. + + + + + Information describing or constituting the signature on a document submitted to a court for filing. + + + + + Information provided by the filing assembly MDE to the court identifying a person or organization for purposes of being served electronically with a copy of a document. + + + + + A code for the type of relationship between two persons, between two organizations, or between a person and an organization in a case. Allowable values are set forth in Court Policy. Examples include parent/child, subsidiary corporation, and chief executive officer. + + true + + + + + + + + + A property capable of bearing legal rights and responsibilities. + + + + + A property capable of bearing legal rights and responsibilities. + + + + + + + + + + + + An organization capable of bearing legal rights and responsibilities. + + + + + + + + A person capable of bearing legal rights and responsibilities. + + + + + Representation of an error that occured when synchronously processing the message. + + + + + A code that uniquely identifies an error. A value of '0' indicates no error. Other allowable values set forth in court policy. + + true + + + + + + + A more "user friendly" description of the error. + + + + + ID recognized by the court as being unique within this case,and used to identify the attorney who is filing this document. Not present for pro se litigants. + + + + + The date and time on which the Court Record MDE filing process was completed following the acceptance by the Filing Review MDE + + + + + ID recognized by the court as being unique within this case,and used to identify the party on whose behalf this document is being filed. + + + + + Status of the filing as determined by the system sending the callback. + + + + + Status of the filing as determined by the system sending the callback. Allowable values defined in ECF-4.0-FilingStatusCode.gc. + + + + + + + + Indicates whether the respondent has demonstrated a proof of insurance. + + + + + The relationship between two organizations. Example: subsidiary corporation. + + + + + Additional information about an organization. + + + + + Only present for supporting documents; indicates the identifier of the corresponding lead document. + + + + + + + + The relationship of a person to another person in a case. Allowable values set forth in Court Policy.. + + + + + Additional information about a person. + + + + + Information about a license issued by a state or federal entity authorizing operation of a motor vehicle on public streets and highways. + + + + + Details about a coverage by contract whereby one party agrees to indemnify or guarantee another against loss by a specified contingent event or peril. + + + + + The relationship between two organizations. Example: subsidiary corporation. + + + + + Person's organizational position or title. + + + + + An identifier of a related document that was previously filed in this case. For instance, the document to which this document is a response. + + + + + An entity that submits a query. + + + + + Indicator by the filer that the document must be redacted by the court. + + + + + An indicator that sensitive information has been removed from this rendition of the document. + + + + + Case or cases sharing characteristics, such as common parties or events, with this case. + + + + + Location for the MDE to which service messages can be sent. + + + + + Code identifying the service interaction profile being used by the MDE receiving service. + + + + + This association will be present for a lead document that is reviewed by clerk review. For documents that were rejected by the clerk review process or the court record system, only the documentStatusCode, originalDocumentID, and (optionally) the documentStatusReasonDescription will be present. For documents that were accepted and recorded, all attributes will be present, except for documentStatusReasonDescription, which may or may not be present. + + + + + This association will be present for each connected document that is reviewed by clerk review. For documents that were rejected by the clerk review process or the court record system, only the documentStatusCode, originalDocumentID, and (optionally) the documentStatusReasonDescription will be present. For documents that were accepted and recorded, all attributes will be present, except for documentStatusReasonDescription, which may or may not be present. + + + + + Clerk's instruction to court record system to seal this document. + + + + + Location for the MDE to which asynchronous and service messages can be sent. This unique location is self-assigned by the MDE. + + + + + Code identifying the service interaction profile being used by the sending filing assembly MDE. This list should be extensible to accommodate future messaging profiles. Each code value is specified within the message profile approved for use with ECF 4.0. + + + + + A unique identifier assigned by the filing assembly MDE for the person who is managing the interface between the filer and the filing assembly MDE. This person will receive secondary service on behalf of the filer. This is also the submitterID for filings in this case, and asynchronous responses to filings. + + + + + The data or information representing this signature. It must be valid according to the profile identified by the associated signatureProfileID. + + + + + An identifier from the Court Filing specification that indicates the Signature Profile governing the structure of this signature. + + + + + Any additional instructions for printing of a document (such as printing on front and back of the same page or printing on a particular color paper). + + + + + ID assigned by the Immigration and Customs Enforcement Bureau of the U.S. Department of Homeland Security. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\common\ECF-4.0-AppInfo.xsd + + + ECF AppInfo + + + + References a genericode code list of acceptable values for an element. + + + + + + + + + + Indicates a code list to be defined in court policy. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\casetype\ECF-4.0-CriminalCase.xsd + + + + CriminalCase + + true + + + + + + + + + + + + + The crime or violation a defendant is alleged or found to have committed. + + + + + + + + + + + + + + Information required to initiate a new criminal case in a court. "Criminal" includes felonies and misdemeanors. + + + + + + + + + + + + + + + + + + + A representation or an encoding of the identifying characteristics of a person's fingerprint. + + + + + + + + + + + + A sentence associated with a specific charge in a case. A sentence may have multiple components (prison, probation, post-incarceration supervision/probation fine, etc.). + + + + + + + + + + + + + + Additional information about a defendant. + + + + + + + + + + + + + + + An agency which employs the arresting official. + + + + + + + + The act of taking physical control over the person of another by a law enforcement officer or other person acting under color of law. + + + + + The crime or violation a defendant is alleged or found to have committed. + + + + + An indicator that the charge submitted amends an earlier submitted charge. + + + + + An identifier of a section or category within a code book that promulgates jurisdiction for the charging agency. + + + + + The offense or incident which resulted in the charge. + + + + + Information required to initiate a new criminal case in a court. "Criminal" includes felonies and misdemeanors. + + + + + + + + Details about a representation of an image encoded for XML. + + + + + + + + Details about a representation of an image encoded for XML. + + + + + An indicator of whether or not a defendant or juvenile is held in a jail, prison, lock up or other facility. + + + + + The prosecutor's estimate of the time that will be required to conduct a preliminary hearing. + + + + + The bail amount recommended by the prosecutor. + + + + + A sentence associated with a specific charge in a case. A sentence may have multiple components (prison, probation, post-incarceration supervision/probation fine, etc.).. + + + + + Reference to another sentence which is to be served concurrent with this sentence. In the case of multiple sentences without references to concurrent sentences, they are assumed to be served consecutively. + + + + + The currency amount of a fine assigned to the defendant by the court. + + + + + The bail amount recommended by the prosecutor. + + + + + + + + Indicates whether an arrest warrant has been issued against the defendant. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\casetype\ECF-4.0-CitationCase.xsd + + + + CitationCase + + true + + + + + + + + + + + Additional information about a person alleged to have violated a statute or ordinance. + + + + + + + + + + + + A charge issued by a law enforcement officer for a "violation" requiring the person charged to plead guilty to the charge or to appear in court to contest the charge. A citation is issued in lieu of an arrest and booking. "Violations" are a subset of "charges" for which a law enforcement officer is authorized to issue a citation in lieu of arrest and booking. Examples: traffic ticket, parking ticket or ticket issued for some other ordinance violation such as barking dog or illegal dumping. + + + + + + + + + + + + + + + + + + + + + A charge issued by a law enforcement officer for a "violation" requiring the person charged to plead guilty to the charge or to appear in court to contest the charge. A citation is issued in lieu of an arrest and booking. "Violations" are a subset of "charges" for which a law enforcement officer is authorized to issue a citation in lieu of arrest and booking. Examples: traffic ticket, parking ticket or ticket issued for some other ordinance violation such as barking dog or illegal dumping. + + + + + + + + + + + + + + The incident from which a traffic ticket arose.. + + + + + + + + + + + + + + Information about a parking violation. + + + + + + + + + + + + + + + Information describing a motor vehicle. + + + + + + + + + + + + + A charge issued by a law enforcement officer for a "violation" requiring the person charged to plead guilty to the charge or to appear in court to contest the charge. A citation is issued in lieu of an arrest and booking. "Violations" are a subset of "charges" for which a law enforcement officer is authorized to issue a citation in lieu of arrest and booking. Examples: traffic ticket, parking ticket or ticket issued for some other ordinance violation such as barking dog or illegal dumping. + + + + + A charge issued by a law enforcement officer for a "violation" requiring the person charged to plead guilty to the charge or to appear in court to contest the charge. A citation is issued in lieu of an arrest and booking. "Violations" are a subset of "charges" for which a law enforcement officer is authorized to issue a citation in lieu of arrest and booking. Examples: traffic ticket, parking ticket or ticket issued for some other ordinance violation such as barking dog or illegal dumping. + + + + + + + + + + + + + A person named in a citation alleged to have violated a statute or ordinance + + + + + Information describing a motor vehicle. + + + + + The incident from which this traffic ticket arose. + + + + + A blood-alcohol percentage reading from a Blood Alcohol Test (BAC Test). A blank value represents not tested. + + + + + The name of a parking facility/lot.. + + + + + An identifier for a parking space or meter. + + + + + An identifier for a parking space or meter. + + + + + An indicator that a automated camera was used to detect traffic signal violations. + + + + + Information concerning whether an owner of a motor vehicle possesses proof of insurance coverage required by law. + + + + + Information concerning whether a driver of a motor vehicle possesses proof of insurance coverage required by law. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-CaseListQueryMessage.xsd + + + + CaseListQueryMessage + + true + + + + + + + + + + + This is a query for a list of cases that match a set of criteria including case participants, case classification, case status, and date of the case was initiated. + + + + + + + + + + + + + + Placeholder for all case participants, i.e. persons or organizations playing a role in a case. This is where all actor details are expressed. + + + + + + + + + + + + + + + Structure for general information about a case used in a query. + + + + + This is a query for a list of cases that match a set of criteria including case participants, case classification, case status, and date of the case was initiated. + + + + + The beginning and ending filing dates/times of cases about which information is sought in this query. + + + + + Information describing a participant when a query seeks information about the cases in which the person or organization is a participant. + + + + + A unique identifier assigned by the filing assembly MDE for the person who is managing the interface between the filer and the filing assembly MDE. This person will receive secondary service on behalf of the filer. This is also the serviceRecipientID for subsequent filings in this case, and asynchronous responses to this filing. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-CaseListResponseMessage.xsd + + + + CaseListResponseMessage + + true + + + + + + + + + + + A synchronous response to a GetCaseListQueryMessage. + + + + + + + + + + + + A synchronous response to a GetCaseListQueryMessage. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-CaseQueryMessage.xsd + + + + CaseQueryMessage + + true + + + + + + + + + + + A message requesting a list of cases from a court's case management information system conforming to the parameter or parameters identified in the message. + + + + + + + + + + + + + A message requesting a list of cases from a court's case management information system conforming to the parameter or parameters identified in the message. + + + + + + + + + + + + + + + + + + A filter criterion for calendar events. If present, the response should only include calendar events that fall between the from and to dates and times. + + + + + Filter criterion indicating that only calendar entries of a specified type are being requested. + + + + + Criteria limiting the case information to be returned. + + + + + A message requesting a list of cases from a court's case management information system conforming to the parameter or parameters identified in the message. + + + + + A filter criterion for docket entries. If present, the response should only include docket entries that fall between the from and to dates and times. + + + + + Filter criterion indicating that only docket entries of a specified type are being requested. + + + + + Indicates whether requester wishes participant information to be included in the response. + + + + + Indicates whether requester wishes docket entry information to be included in the response. + + + + + Indicates whether requester wishes calendar event information to be included in the response. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-CaseResponseMessage.xsd + + + + CaseResponseMessage + + true + + + + + + + + + + The response to a GetCaseInformationQuery. + + + + + + + + + + + + A message requesting a list of cases from a court's case management information system conforming to the parameter or parameters identified in the message. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-CoreFilingMessage.xsd + + + + CoreFilingMessage + + true + + + + + + + + + + The structure of a Filing including any Payment Information will be documented in this section. This describes the filing transaction between the Filing Assembly MDE and the Filing Review MDE. This information will become part of the Record Docketing between the Filing Review MDE and the Court Record MDE but does not necessarily describe the information that is actually stored in the Court Record. + + + + + + + + + + + + + + + The structure of a Filing including any Payment Information will be documented in this section. This describes the filing transaction between the Filing Assembly MDE and the Filing Review MDE. This information will become part of the Record Docketing between the Filing Review MDE and the Court Record MDE but does not necessarily describe the information that is actually stored in the Court Record. + + + + + Indicator by the filer that something in the message requires sensitive or confidential treatment. (This replaces the former "request to seal" document metadata.) + + + + + A document included in a Filing that supports the Document. This document is not separately entered on the docket or register of actions. + + + + + The pleading, motion or order that is the main document in a Filing. A Document may have Attachments. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-CourtPolicyQueryMessage.xsd + + + + CourtPolicyQueryMessage + + true + + + + + + + + + + + A request for a court's Court Policy. + + + + + + + + A request for a court's Court Policy. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-CourtPolicyResponseMessage.xsd + + + + CourtPolicyResponseMessage + + true + + + + + + + + + + + + A type of court case. + + + + + Appellate case type + + + + + Bankruptcy case type + + + + + Citation case type + + + + + Civil case type + + + + + Criminal case type + + + + + Domestic case type + + + + + Juvenile case type + + + + + + + A type of court case. + + + + + + + + + + A Genericode list of valid codes for an element in a particular court to be substituted for an ECF element. + + + + + + + + + + + + + + + A schema that defines a court-specific data structure to be substituted for an ECF element. + + + + + + + + + + + + + A request for a court's Court Policy. + + + + + + + + The response to a request for a court's Court Policy. + + + + + + + + + + + + + + + Within Court Policy, the policies that are accessed by a person or organization developing an applications or configuring an application to interact with a court for the purpose of structuring the interactions with that court. This information is needed once and is not accessed dynamically while interacting with the court. + + + + + + + + + + + + + + + + + + + + + + + + + Name of a major design element. + + + + + CourtRecord MDE + + + + + FilingAssembly MDE + + + + + FilingReview MDE + + + + + Service MDE + + + + + + + Name of a major design element. + + + + + + + + + + Name of an MDE operation. + + + + + GetFeesCalculation query + + + + + GetCase query + + + + + GetFeesCaseList query + + + + + GetDocument query + + + + + GetFilingList query + + + + + GetFilingStatus query + + + + + GetPolicy query + + + + + GetServiceInformation query + + + + + NotifyFilingReview message + + + + + NotifyDocketing message + + + + + RecordFiling message + + + + + ReviewFiling message + + + + + ServeFiling message + + + + + + + Name of an MDE operation. + + + + + + + + + + Symmetric or asymmetric keys used to encrypt and decrypt, or verify signed messages or documents exchanged with the court. + + + + + + + + + + + + Within Court Policy, the policies that are accessed dynamically by applications interacting with a court. + + + + + + + + + + + + + Whether the court will accept electronic filing of documents requiring filing fees. + + + + + Whether the court will accept electronic filing of documents for which the filer requests confidential or sealed treatment by the court. + + + + + Does court accept placing multiple lead documents in a single message + + + + + A Genericode list of valid codes for an element in a particular court to be substituted for an ECF element. The 'code' column of the codelist includes the allowed values. + + + + + A URI reference to a court-specific codelist defined in Genericode. + + + + + A schema that defines a court-specific data structure to be substituted for an ECF element.. + + + + + A URI reference to a court-specific extension. + + + + + The response to a request for a court's Court Policy. + + + + + Within Court Policy, the policies that are accessed by a person or organization developing an applications or configuring an application to interact with a court for the purpose of structuring the interactions with that court. This information is needed once and is not accessed dynamically while interacting with the court. + + + + + The name of an ECF element to be substituted by a court-specific codelist or extension. + + + + + The date on which a court code list or extension became or will become allowed. + + + + + The date on which a court code list or extension was or will be terminated. + + + + + Indicates whether fees may be required for some filings. + + + + + Indicates whether the e-filing system supports the GetFeesCalculation query. + + + + + Indicates whether the e-filing system supports the GetCaseList query. + + + + + Name of a major design element. + + + + + The maximum allowed attachment size, in bytes. Does not appear if there is no maximum. + + + + + Maximum allowed size of the Court Filing Message Stream, in bytes. Does not appear if there is no maximum. + + + + + The date on which a court's Court Policy was last revised. + + + + + The version of court policy reported by this message. Up to the court to define the format of this, and describe in human-readable court policy. + + + + + Symmetric or asymmetric keys used to encrypt and decrypt, or verify signed messages or documents exchanged with the court. + + + + + Within Court Policy, the policies that are accessed dynamically by applications interacting with a court. + + + + + A structure containing indicators that signal support by the e-filing system for each ECF case type. + + + + + A message profile approved for use by the OASIS LegalXML Member Section Electronic Court Filing Technical Committee that is supported by this court. + + true + + + + + + Name of an MDE operation. + + + + + A signature profile approved for use by the OASIS LegalXML Member Section Electronic Court Filing Technical Committee that is supported by this court. + + true + + + + + + Whether court allows attachments via remote URLs. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\common\xmldsig-core-schema.xsd + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-DocumentQueryMessage.xsd + + + + DocumentQueryMessage + + true + + + + + + + + + + + A request for an electronic document in the court's official record. + + + + + + + + + + + + + A request for an electronic document in the court's official record. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-DocumentResponseMessage.xsd + + + + DocumentResponseMessage + + true + + + + + + + + + + + The court's response to a request for an electronic document in the court's official record. + + + + + + + + + + + + The court's response to a request for an electronic document in the court's official record. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-FeesCalculationQueryMessage.xsd + + + + FeesCalculationQueryMessage + + true + + + + + + + + + + + This query is a request for the total amount of court fees required for filing of one or more documents in a case. + + + + + + + + + + + + This query is a request for the total amount of court fees required for filing of one or more documents in a case. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-FeesCalculationResponseMessage.xsd + + + + FeesCalculationResponseMessage + + true + + + + + + + + + + + The response to a FeesCalculationQueryMessage, which may either be "0" indicating no fee is due, a currency amount indicating the fee due upon filing, or "unknown" indicating that the court's case management information system is unable to calculate the fee for the proposed filing. + + + + + + + + + + + + + A fee or price required to submit a document. + + + + + The response to a FeesCalculationQueryMessage, which may either be "0" indicating no fee is due, a currency amount indicating the fee due upon filing, or "unknown" indicating that the court's case management information system is unable to calculate the fee for the proposed filing. + + +]]>http://www.w3.org/2001/XMLSchemahttp://docs.oasis-open.org/ubl/os-UBL-2.1/xsd/common/UBL-CommonAggregateComponents-2.1.xsd + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ABIE + Activity Data Line. Details + A class to associate a time period and locations (activity data) with an item for inventory planning purposes. + Activity Data Line + + + + + + + + + BBIE + Activity Data Line. Identifier + An identifier for this activity data line. + 1 + Activity Data Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Activity Data Line. Supply Chain Activity Type Code. Code + A code signifying the type of supply chain activity. + 1 + Activity Data Line + Supply Chain Activity Type Code + Code + Code. Type + + + + + + + + + ASBIE + Activity Data Line. Buyer_ Customer Party. Customer Party + The buyer of the item. + 0..1 + Activity Data Line + Buyer + Customer Party + Customer Party + Customer Party + + + + + + + + + ASBIE + Activity Data Line. Seller_ Supplier Party. Supplier Party + The seller of the item. + 0..1 + Activity Data Line + Seller + Supplier Party + Supplier Party + Supplier Party + + + + + + + + + ASBIE + Activity Data Line. Activity_ Period. Period + The period during which the activity is realized. + 0..1 + Activity Data Line + Activity + Period + Period + Period + + + + + + + + + ASBIE + Activity Data Line. Activity Origin_ Location. Location + Either the location where the movement of goods is observed or the location from which the goods are moved. + 1 + Activity Data Line + Activity Origin + Location + Location + Location + + + + + + + + + ASBIE + Activity Data Line. Activity Final_ Location. Location + The location to which the goods are moved. + 0..1 + Activity Data Line + Activity Final + Location + Location + Location + + + + + + + + + ASBIE + Activity Data Line. Sales Item + Sales information for an item to which this line applies. + 1..n + Activity Data Line + Sales Item + Sales Item + Sales Item + + + + + + + + + + + ABIE + Activity Property. Details + A class to define a name/value pair for a property of an inventory planning activity. + Activity Property + + + + + + + + + BBIE + Activity Property. Name + The name of this activity property. + 1 + Activity Property + Name + Name + Name. Type + + + + + + + + + BBIE + Activity Property. Value. Text + The value of this activity property. + 1 + Activity Property + Value + Text + Text. Type + + + + + + + + + + + ABIE + Address. Details + A class to define common information related to an address. + Address + + + + + + + + + BBIE + Address. Identifier + An identifier for this address within an agreed scheme of address identifiers. + 0..1 + Address + Identifier + Identifier + Identifier. Type + DetailsKey + + + + + + + + + BBIE + Address. Address Type Code. Code + A mutually agreed code signifying the type of this address. + 0..1 + Address + Address Type Code + Code + Code. Type + + + + + + + + + BBIE + Address. Address Format Code. Code + A mutually agreed code signifying the format of this address. + 0..1 + Address + Address Format Code + Code + Code. Type + + + + + + + + + BBIE + Address. Postbox. Text + A post office box number registered for postal delivery by a postal service provider. + 0..1 + Address + Postbox + Text + Text. Type + PostBox, PO Box + 123 + + + + + + + + + BBIE + Address. Floor. Text + An identifiable floor of a building. + 0..1 + Address + Floor + Text + Text. Type + SubPremiseNumber + 30 + + + + + + + + + BBIE + Address. Room. Text + An identifiable room, suite, or apartment of a building. + 0..1 + Address + Room + Text + Text. Type + SubPremiseNumber + Reception + + + + + + + + + BBIE + Address. Street Name. Name + The name of the street, road, avenue, way, etc. to which the number of the building is attached. + 0..1 + Address + Street Name + Name + Name. Type + Thoroughfare + Kwun Tong Road + + + + + + + + + BBIE + Address. Additional_ Street Name. Name + An additional street name used to further clarify the address. + 0..1 + Address + Additional + Street Name + Name + Name. Type + Thoroughfare + Cnr Aberdeen Road + + + + + + + + + BBIE + Address. Block Name. Name + The name of the block (an area surrounded by streets and usually containing several buildings) in which this address is located. + 0..1 + Address + Block Name + Name + Name. Type + Seabird + + + + + + + + + BBIE + Address. Building Name. Name + The name of a building. + 0..1 + Address + Building Name + Name + Name. Type + BuildingName + Plot 421 + + + + + + + + + BBIE + Address. Building Number. Text + The number of a building within the street. + 0..1 + Address + Building Number + Text + Text. Type + PremiseNumber + 388 + + + + + + + + + BBIE + Address. Inhouse_ Mail. Text + The specific identifable location within a building where mail is delivered. + 0..1 + Address + Inhouse + Mail + Text + Text. Type + MailStop + + + + + + + + + BBIE + Address. Department. Text + The department of the addressee. + 0..1 + Address + Department + Text + Text. Type + Department + Accounts Payable + + + + + + + + + BBIE + Address. Mark Attention. Text + The name, expressed as text, of a person or department in an organization to whose attention incoming mail is directed; corresponds to the printed forms "for the attention of", "FAO", and ATTN:". + 0..1 + Address + Mark Attention + Text + Text. Type + + + + + + + + + BBIE + Address. Mark Care. Text + The name, expressed as text, of a person or organization at this address into whose care incoming mail is entrusted; corresponds to the printed forms "care of" and "c/o". + 0..1 + Address + Mark Care + Text + Text. Type + + + + + + + + + BBIE + Address. Plot Identification. Text + An identifier (e.g., a parcel number) for the piece of land associated with this address. + 0..1 + Address + Plot Identification + Text + Text. Type + + + + + + + + + BBIE + Address. City Subdivision Name. Name + The name of the subdivision of a city, town, or village in which this address is located, such as the name of its district or borough. + 0..1 + Address + City Subdivision Name + Name + Name. Type + + + + + + + + + BBIE + Address. City Name. Name + The name of a city, town, or village. + 0..1 + Address + City Name + Name + Name. Type + LocalityName + Hong Kong + + + + + + + + + BBIE + Address. Postal_ Zone. Text + The postal identifier for this address according to the relevant national postal service, such as a ZIP code or Post Code. + 0..1 + Address + Postal + Zone + Text + Text. Type + PostalCodeNumber + SW11 4EW 2500 GG + + + + + + + + + BBIE + Address. Country Subentity. Text + The political or administrative division of a country in which this address is located, such as the name of its county, province, or state, expressed as text. + 0..1 + Address + Country Subentity + Text + Text. Type + AdministrativeArea, State, Country, Shire, Canton + Florida , Tamilnadu + + + + + + + + + BBIE + Address. Country Subentity Code. Code + The political or administrative division of a country in which this address is located, such as a county, province, or state, expressed as a code (typically nationally agreed). + 0..1 + Address + Country Subentity Code + Code + Code. Type + AdministrativeAreaCode, State Code + + + + + + + + + BBIE + Address. Region. Text + The recognized geographic or economic region or group of countries in which this address is located. + 0..1 + Address + Region + Text + Text. Type + LocalityName, Economic Zone + European Union + + + + + + + + + BBIE + Address. District. Text + The district or geographical division of a country or region in which this address is located. + 0..1 + Address + District + Text + Text. Type + LocalityName, Area + East Coast + + + + + + + + + BBIE + Address. Timezone Offset. Text + The time zone in which this address is located (as an offset from Universal Coordinated Time (UTC)) at the time of exchange. + 0..1 + Address + Timezone Offset + Text + Text. Type + +8:00 -3:00 + + + + + + + + + ASBIE + Address. Address Line + An unstructured address line. + 0..n + Address + Address Line + Address Line + Address Line + + + + + + + + + ASBIE + Address. Country + The country in which this address is situated. + 0..1 + Address + Country + Country + Country + + + + + + + + + ASBIE + Address. Location Coordinate + The geographical coordinates of this address. + 0..n + Address + Location Coordinate + Location Coordinate + Location Coordinate + + + + + + + + + + + ABIE + Address Line. Details + A class to define an unstructured address line. + Address Line + + + + + + + + + BBIE + Address Line. Line. Text + An address line expressed as unstructured text. + 1 + Address Line + Line + Text + Text. Type + 123 Standard Chartered Tower + + + + + + + + + + + ABIE + Air Transport. Details + A class to identify a specific aircraft used for transportation. + Air Transport + + + + + + + + + BBIE + Air Transport. Aircraft Identifier. Identifier + An identifer for a specific aircraft. + 1 + Air Transport + Aircraft Identifier + Identifier + Identifier. Type + + + + + + + + + + + ABIE + Allowance Charge. Details + A class to describe information about a charge or discount as applied to a price component. + Allowance Charge + + + + + + + + + BBIE + Allowance Charge. Identifier + An identifier for this allowance or charge. + 0..1 + Allowance Charge + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Allowance Charge. Charge_ Indicator. Indicator + An indicator that this AllowanceCharge describes a charge (true) or a discount (false). + 1 + Allowance Charge + Charge + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Allowance Charge. Allowance Charge Reason Code. Code + A mutually agreed code signifying the reason for this allowance or charge. + 0..1 + Allowance Charge + Allowance Charge Reason Code + Code + Allowance Charge Reason + Allowance Charge Reason_ Code. Type + + + + + + + + + BBIE + Allowance Charge. Allowance Charge_ Reason. Text + The reason for this allowance or charge. + 0..n + Allowance Charge + Allowance Charge + Reason + Text + Text. Type + + + + + + + + + BBIE + Allowance Charge. Multiplier_ Factor. Numeric + A number by which the base amount is multiplied to calculate the actual amount of this allowance or charge. + 0..1 + Allowance Charge + Multiplier + Factor + Numeric + Numeric. Type + 0.20 + + + + + + + + + BBIE + Allowance Charge. Prepaid_ Indicator. Indicator + An indicator that this allowance or charge is prepaid (true) or not (false). + 0..1 + Allowance Charge + Prepaid + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Allowance Charge. Sequence. Numeric + A number indicating the order of this allowance or charge in the sequence of calculations applied when there are multiple allowances or charges. + 0..1 + Allowance Charge + Sequence + Numeric + Numeric. Type + 1, 2, 3, 4, etc. + + + + + + + + + BBIE + Allowance Charge. Amount + The monetary amount of this allowance or charge to be applied. + 1 + Allowance Charge + Amount + Amount + Amount. Type + 35,23 + + + + + + + + + BBIE + Allowance Charge. Base_ Amount. Amount + The monetary amount to which the multiplier factor is applied in calculating the amount of this allowance or charge. + 0..1 + Allowance Charge + Base + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Allowance Charge. Accounting Cost Code. Code + The accounting cost centre used by the buyer to account for this allowance or charge, expressed as a code. + 0..1 + Allowance Charge + Accounting Cost Code + Code + Code. Type + + + + + + + + + BBIE + Allowance Charge. Accounting Cost. Text + The accounting cost centre used by the buyer to account for this allowance or charge, expressed as text. + 0..1 + Allowance Charge + Accounting Cost + Text + Text. Type + + + + + + + + + BBIE + Allowance Charge. Per Unit_ Amount. Amount + The allowance or charge per item; the total allowance or charge is calculated by multiplying the per unit amount by the quantity of items, either at the level of the individual transaction line or for the total number of items in the document, depending on the context in which it appears. + 0..1 + Allowance Charge + Per Unit + Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Allowance Charge. Tax Category + A tax category applicable to this allowance or charge. + 0..n + Allowance Charge + Tax Category + Tax Category + Tax Category + + + + + + + + + ASBIE + Allowance Charge. Tax Total + The total of all the taxes applicable to this allowance or charge. + 0..1 + Allowance Charge + Tax Total + Tax Total + Tax Total + + + + + + + + + ASBIE + Allowance Charge. Payment Means + A means of payment for this allowance or charge. + 0..n + Allowance Charge + Payment Means + Payment Means + Payment Means + + + + + + + + + + + ABIE + Appeal Terms. Details + A class to describe the terms and conditions, set by the contracting authority, under which an appeal can be lodged for a tender award. + Appeal Terms + + + + + + + + + BBIE + Appeal Terms. Description. Text + Text describing the terms of an appeal. + 0..n + Appeal Terms + Description + Text + Text. Type + + + + + + + + + ASBIE + Appeal Terms. Presentation_ Period. Period + The period during which an appeal can be presented. + 0..1 + Appeal Terms + Presentation + Period + Period + Period + + + + + + + + + ASBIE + Appeal Terms. Appeal Information_ Party. Party + The party presenting the information for an appeal. + 0..1 + Appeal Terms + Appeal Information + Party + Party + Party + + + + + + + + + ASBIE + Appeal Terms. Appeal Receiver_ Party. Party + The party to whom an appeal should be presented. + 0..1 + Appeal Terms + Appeal Receiver + Party + Party + Party + + + + + + + + + ASBIE + Appeal Terms. Mediation_ Party. Party + The party that has been appointed to mediate any appeal. + 0..1 + Appeal Terms + Mediation + Party + Party + Party + + + + + + + + + + + ABIE + Attachment. Details + A class to describe an attached document. An attachment can refer to an external document or be included with the document being exchanged. + Attachment + + + + + + + + + BBIE + Attachment. Embedded_ Document. Binary Object + A binary large object containing an attached document. + 0..1 + Attachment + Embedded + Document + Binary Object + Binary Object. Type + + + + + + + + + ASBIE + Attachment. External Reference + A reference to an attached document that is external to the document(s) being exchanged. + 0..1 + Attachment + External Reference + External Reference + External Reference + + + + + + + + + + + ABIE + Auction Terms. Details + A class to describe the terms to be fulfilled by tenderers if an auction is to be executed before the awarding of a tender. + Auction Terms + + + + + + + + + BBIE + Auction Terms. Auction_ Constraint. Indicator + Indicates whether an electronic auction will be used before the awarding of a contract (true) or not (false). + 0..1 + Auction Terms + Auction + Constraint + Indicator + Indicator. Type + + + + + + + + + BBIE + Auction Terms. Justification_ Description. Text + Text describing a justification for the use of an auction in awarding the tender. + 0..n + Auction Terms + Justification + Description + Text + Text. Type + + + + + + + + + BBIE + Auction Terms. Description. Text + Text for tenderers describing terms governing the auction. + 0..n + Auction Terms + Description + Text + Text. Type + + + + + + + + + BBIE + Auction Terms. Process_ Description. Text + Text describing the auction process. + 0..n + Auction Terms + Process + Description + Text + Text. Type + + + + + + + + + BBIE + Auction Terms. Conditions_ Description. Text + Text describing the conditions under which the tenderers will be able to bid as part of the auction. + 0..n + Auction Terms + Conditions + Description + Text + Text. Type + + + + + + + + + BBIE + Auction Terms. Electronic Device_ Description. Text + Text describing an electronic device used for the auction, including associated connectivity specifications. + 0..n + Auction Terms + Electronic Device + Description + Text + Text. Type + + + + + + + + + BBIE + Auction Terms. Auction_ URI. Identifier + The Uniform Resource Identifier (URI) of the electronic device used for the auction. + 0..1 + Auction Terms + Auction + URI + Identifier + Identifier. Type + + + + + + + + + + + ABIE + Awarding Criterion. Details + A class to define a criterion from the contracting party that will be taken into account when awarding a contract. An awarding criterion can be objective, when it can be evaluated following a formula, or subjective, when human analysis is required. + Awarding Criterion + + + + + + + + + BBIE + Awarding Criterion. Identifier + Identifies a specific awarding criterion. + 0..1 + Awarding Criterion + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Awarding Criterion. Awarding Criterion Type Code. Code + A code used to define this awarding criterion. + 0..1 + Awarding Criterion + Awarding Criterion Type Code + Code + Code. Type + + + + + + + + + BBIE + Awarding Criterion. Description. Text + A description of the awarding criterion. + 0..n + Awarding Criterion + Description + Text + Text. Type + + + + + + + + + BBIE + Awarding Criterion. Weight Numeric. Numeric + A number defining the comparative weighting assigned to this awarding criterion, to enable formulaic evaluation. + 0..1 + Awarding Criterion + Weight Numeric + Numeric + Numeric. Type + + + + + + + + + BBIE + Awarding Criterion. Weight. Text + A description of the comparative weighting for this awarding criterion. + 0..n + Awarding Criterion + Weight + Text + Text. Type + + + + + + + + + BBIE + Awarding Criterion. Calculation Expression. Text + The mathematical expression that will be used to evaluate this criterion. + 0..n + Awarding Criterion + Calculation Expression + Text + Text. Type + + + + + + + + + BBIE + Awarding Criterion. Calculation Expression Code. Code + A code identifying the mathematical expression that will be used to evaluate this criterion. + 0..1 + Awarding Criterion + Calculation Expression Code + Code + Code. Type + + + + + + + + + BBIE + Awarding Criterion. Minimum_ Quantity. Quantity + The minimum quantity for an awarding criterion. + 0..1 + Awarding Criterion + Minimum + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Awarding Criterion. Maximum_ Quantity. Quantity + The maximum quantity for an awarding criterion. + 0..1 + Awarding Criterion + Maximum + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Awarding Criterion. Minimum_ Amount. Amount + The minimum monetary amount for an awarding criterion. + 0..1 + Awarding Criterion + Minimum + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Awarding Criterion. Maximum_ Amount. Amount + The maximum monetary amount for an awarding criterion. + 0..1 + Awarding Criterion + Maximum + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Awarding Criterion. Minimum Improvement Bid. Text + Describes the minimum improvement bid for this awarding criterion when used in an auction. + 0..n + Awarding Criterion + Minimum Improvement Bid + Text + Text. Type + + + + + + + + + ASBIE + Awarding Criterion. Subordinate_ Awarding Criterion. Awarding Criterion + Defines any subsidiary awarding criterion. + 0..n + Awarding Criterion + Subordinate + Awarding Criterion + Awarding Criterion + Awarding Criterion + + + + + + + + + + + ABIE + Awarding Criterion Response. Details + Defines the response for an awarding criterion from the tendering party. + Awarding Criterion Response + + + + + + + + + BBIE + Awarding Criterion Response. Identifier + An identification of this awarding criterion response. + 0..1 + Awarding Criterion Response + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Awarding Criterion Response. Awarding Criterion Identifier. Identifier + An identifer of the awarding criterion being referred to. + 0..1 + Awarding Criterion Response + Awarding Criterion Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Awarding Criterion Response. Awarding Criterion_ Description. Text + Describes the awarding criterion. + 0..n + Awarding Criterion Response + Awarding Criterion + Description + Text + Text. Type + + + + + + + + + BBIE + Awarding Criterion Response. Description. Text + Describes the awarding criterion response. + 0..n + Awarding Criterion Response + Description + Text + Text. Type + + + + + + + + + BBIE + Awarding Criterion Response. Quantity + Specifies the quantity tendered for this awarding criterion. + 0..1 + Awarding Criterion Response + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Awarding Criterion Response. Amount + Specifies the monetary amount tendered for this awarding criterion. + 0..1 + Awarding Criterion Response + Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Awarding Criterion Response. Subordinate_ Awarding Criterion Response. Awarding Criterion Response + Defines responses to any subsidiary awarding criterion. + 0..n + Awarding Criterion Response + Subordinate + Awarding Criterion Response + Awarding Criterion Response + Awarding Criterion Response + + + + + + + + + + + ABIE + Awarding Terms. Details + A class to define the terms for awarding a contract. + Awarding Terms + + + + + + + + + BBIE + Awarding Terms. Weighting Algorithm Code. Code + A code signifying the weighting algorithm for awarding criteria. When multiple awarding criteria is used, different weighting and choices management algorithms based upon scores and weights of all award criteria can be used. An algorithm for weighting criteria shall be reported in the call for tenders document. It is used to determine how to perform the final management of tenders based on the results in each of the established award criteria + 0..1 + Awarding Terms + Weighting Algorithm Code + Code + Code. Type + + + + + + + + + BBIE + Awarding Terms. Description. Text + Text describing terms under which the contract is to be awarded. + 0..n + Awarding Terms + Description + Text + Text. Type + + + + + + + + + BBIE + Awarding Terms. Technical Committee_ Description. Text + Text describing the committee of experts evaluating the subjective criteria for awarding the contract. + 0..n + Awarding Terms + Technical Committee + Description + Text + Text. Type + + + + + + + + + BBIE + Awarding Terms. Low Tenders_ Description. Text + Text describing the exclusion criterion for abnormally low tenders. + 0..n + Awarding Terms + Low Tenders + Description + Text + Text. Type + + + + + + + + + BBIE + Awarding Terms. Prize Indicator. Indicator + Indicates whether a prize will be awarded (true) or not (false). + 0..1 + Awarding Terms + Prize Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Awarding Terms. Prize Description. Text + Number and value of the prizes to be awarded. + 0..n + Awarding Terms + Prize Description + Text + Text. Type + + + + + + + + + BBIE + Awarding Terms. Payment Description. Text + Details of payments to all participants. + 0..n + Awarding Terms + Payment Description + Text + Text. Type + + + + + + + + + BBIE + Awarding Terms. Followup Contract Indicator. Indicator + Indicates if any service contract following the contest will be awarded to the winner or one of the winners of the contest (true) or not (false). + 0..1 + Awarding Terms + Followup Contract Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Awarding Terms. Binding On Buyer Indicator. Indicator + Indicates if the decision is binding on the buyer (true) or not (false). + 0..1 + Awarding Terms + Binding On Buyer Indicator + Indicator + Indicator. Type + + + + + + + + + ASBIE + Awarding Terms. Awarding Criterion + Defines a criterion for awarding this tender. + 0..n + Awarding Terms + Awarding Criterion + Awarding Criterion + Awarding Criterion + + + + + + + + + ASBIE + Awarding Terms. Technical Committee_ Person. Person + A member of a committee of experts evaluating the subjective criteria for awarding the contract. + 0..n + Awarding Terms + Technical Committee + Person + Person + Person + + + + + + + + + + + ABIE + Billing Reference. Details + A class to define a reference to a billing document. + Billing Reference + + + + + + + + + ASBIE + Billing Reference. Invoice_ Document Reference. Document Reference + A reference to an invoice. + 0..1 + Billing Reference + Invoice + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Billing Reference. Self Billed Invoice_ Document Reference. Document Reference + A reference to a self billed invoice. + 0..1 + Billing Reference + Self Billed Invoice + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Billing Reference. Credit Note_ Document Reference. Document Reference + A reference to a credit note. + 0..1 + Billing Reference + Credit Note + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Billing Reference. Self Billed Credit Note_ Document Reference. Document Reference + A reference to a self billed credit note. + 0..1 + Billing Reference + Self Billed Credit Note + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Billing Reference. Debit Note_ Document Reference. Document Reference + A reference to a debit note. + 0..1 + Billing Reference + Debit Note + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Billing Reference. Reminder_ Document Reference. Document Reference + A reference to a billing reminder. + 0..1 + Billing Reference + Reminder + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Billing Reference. Additional_ Document Reference. Document Reference + A reference to an additional document. + 0..1 + Billing Reference + Additional + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Billing Reference. Billing Reference Line + A reference to a transaction line in the billing document. + 0..n + Billing Reference + Billing Reference Line + Billing Reference Line + Billing Reference Line + + + + + + + + + + + ABIE + Billing Reference Line. Details + A class to define a reference to a transaction line in a billing document. + Billing Reference Line + + + + + + + + + BBIE + Billing Reference Line. Identifier + An identifier for this transaction line in a billing document. + 1 + Billing Reference Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Billing Reference Line. Amount + The monetary amount of the transaction line, including any allowances and charges but excluding taxes. + 0..1 + Billing Reference Line + Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Billing Reference Line. Allowance Charge + An allowance or charge applicable to the transaction line. + 0..n + Billing Reference Line + Allowance Charge + Allowance Charge + Allowance Charge + + + + + + + + + + + ABIE + Branch. Details + A class to describe a branch or a division of an organization. + Branch + + + + + + + + + BBIE + Branch. Identifier + An identifier for this branch or division of an organization. + 0..1 + Branch + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Branch. Name + The name of this branch or division of an organization. + 0..1 + Branch + Name + Name + Name. Type + + + + + + + + + ASBIE + Branch. Financial Institution + The financial institution that this branch belongs to (if applicable). + 0..1 + Branch + Financial Institution + Financial Institution + Financial Institution + + + + + + + + + ASBIE + Branch. Address + The address of this branch or division. + 0..1 + Branch + Address + Address + Address + + + + + + + + + + + ABIE + Budget Account. Details + A class to define a budget account. + Budget Account + + + + + + + + + BBIE + Budget Account. Identifier + An identifier for the budget account, typically an internal accounting reference. + 0..1 + Budget Account + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Budget Account. Budget Year. Numeric + The number of the year for this budget account, e.g. 2012 + 0..1 + Budget Account + Budget Year + Numeric + Numeric. Type + + + + + + + + + ASBIE + Budget Account. Required_ Classification Scheme. Classification Scheme + A classification scheme required for this budget account. + 0..1 + Budget Account + Required + Classification Scheme + Classification Scheme + Classification Scheme + + + + + + + + + + + ABIE + Budget Account Line. Details + A class to define a budget account line. + Budget Account Line + + + + + + + + + BBIE + Budget Account Line. Identifier + An identifier for this budget account line. + 0..1 + Budget Account Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Budget Account Line. Total_ Amount. Amount + The total monetary amount for this budget account line. + 0..1 + Budget Account Line + Total + Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Budget Account Line. Budget Account + An account covering this budget account line. + 0..n + Budget Account Line + Budget Account + Budget Account + Budget Account + + + + + + + + + + + ABIE + Capability. Details + A class to describe a specific capability of an organization. + Capability + + + + + + + + + BBIE + Capability. Capability Type Code. Code + This class can be used as Financial or Technical capabilities. For instance, "Turnover" or "Qualified Engineers" are two possible codes. + 0..1 + Capability + Capability Type Code + Code + Code. Type + + + + + + + + + BBIE + Capability. Description. Text + Text describing this capability. + 0..n + Capability + Description + Text + Text. Type + + + + + + + + + BBIE + Capability. Value. Amount + A monetary amount as a measure of this capability. + 0..1 + Capability + Value + Amount + Amount. Type + + + + + + + + + BBIE + Capability. Value_ Quantity. Quantity + A quantity as a measure of this capability. + 0..1 + Capability + Value + Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Capability. Evidence Supplied + The evidence that supports the capability claim. + 0..n + Capability + Evidence Supplied + Evidence Supplied + Evidence Supplied + + + + + + + + + ASBIE + Capability. Validity_ Period. Period + The period of time for which this capability is (or has been) valid. + 0..1 + Capability + Validity + Period + Period + Period + + + + + + + + + + + ABIE + Card Account. Details + A class to define a credit card, debit card, or charge card account. + Card Account + + + + + + + + + BBIE + Card Account. Primary_ Account Number. Identifier + An identifier of the card (e.g., the Primary Account Number (PAN)). + 1 + Card Account + Primary + Account Number + Identifier + Identifier. Type + 4558 XXXX XXXX XXXX (a real card number) + + + + + + + + + BBIE + Card Account. Network. Identifier + An identifier for the financial service network provider of the card. + 1 + Card Account + Network + Identifier + Identifier. Type + VISA, MasterCard, American Express + + + + + + + + + BBIE + Card Account. Card Type Code. Code + A mutually agreed code signifying the type of card. Examples of types are "debit", "credit" and "purchasing" + 0..1 + Card Account + Card Type Code + Code + Code. Type + Debit Card, Credit Card, Procurement Card + + + + + + + + + BBIE + Card Account. Validity Start Date. Date + The date from which the card is valid. + 0..1 + Card Account + Validity Start Date + Date + Date. Type + + + + + + + + + BBIE + Card Account. Expiry Date. Date + The date on which the card expires. + 0..1 + Card Account + Expiry Date + Date + Date. Type + + + + + + + + + BBIE + Card Account. Issuer. Identifier + An identifier for the institution issuing the card. + 0..1 + Card Account + Issuer + Identifier + Identifier. Type + + + + + + + + + BBIE + Card Account. Issue Number. Identifier + An identifier for the card, specified by the issuer. + 0..1 + Card Account + Issue Number + Identifier + Identifier. Type + + + + + + + + + BBIE + Card Account. CV2. Identifier + An identifier for the Card Verification Value (often found on the reverse of the card itself). + 0..1 + Card Account + CV2 + Identifier + Identifier. Type + + + + + + + + + BBIE + Card Account. Card Chip Code. Code + A mutually agreed code to distinguish between CHIP and MAG STRIPE cards. + 0..1 + Card Account + Card Chip Code + Code + Chip + Chip_ Code. Type + + + + + + + + + BBIE + Card Account. Chip_ Application. Identifier + An identifier on the chip card for the application that provides the quoted information; an AID (application ID). + 0..1 + Card Account + Chip + Application + Identifier + Identifier. Type + + + + + + + + + BBIE + Card Account. Holder. Name + The name of the cardholder. + 0..1 + Card Account + Holder + Name + Name. Type + + + + + + + + + + + ABIE + Catalogue Item Specification Update Line. Details + A class to define a line describing the transaction that updates the specification of an item in a catalogue. + Catalogue Item Specification Update Line + + + + + + + + + BBIE + Catalogue Item Specification Update Line. Identifier + An identifier for the line to be updated in a catalogue. + 1 + Catalogue Item Specification Update Line + Identifier + Identifier + Identifier. Type + 1 + + + + + + + + + ASBIE + Catalogue Item Specification Update Line. Contractor_ Customer Party. Customer Party + The customer responsible for the contract associated with the catalogue item. + 0..1 + Catalogue Item Specification Update Line + Contractor + Customer Party + Customer Party + Customer Party + + + + + + + + + ASBIE + Catalogue Item Specification Update Line. Seller_ Supplier Party. Supplier Party + The seller/supplier responsible for the contract associated with the catalogue item. + 0..1 + Catalogue Item Specification Update Line + Seller + Supplier Party + Supplier Party + Supplier Party + + + + + + + + + ASBIE + Catalogue Item Specification Update Line. Item + The catalogue item to be updated. + 1 + Catalogue Item Specification Update Line + Item + Item + Item + + + + + + + + + + + ABIE + Catalogue Line. Details + A class to define a line in a Catalogue describing a purchasable item. + Catalogue Line + + + + + + + + + BBIE + Catalogue Line. Identifier + An identifier for the line in the catalogue. + 1 + Catalogue Line + Identifier + Identifier + Identifier. Type + 1 + + + + + + + + + BBIE + Catalogue Line. Action Code. Code + A code signifying the action required to synchronize this catalogue line. Recommend codes (delete, update, add) + 0..1 + Catalogue Line + Action Code + Code + Code. Type + Replace , Update , Delete , Add + + + + + + + + + BBIE + Catalogue Line. Life Cycle Status Code. Code + A code signifying the life cycle status of this catalogue line. Examples are pre-order, end of production + 0..1 + Catalogue Line + Life Cycle Status Code + Code + Code. Type + new - announcement only , new and available , deleted - announcement only + + + + + + + + + BBIE + Catalogue Line. Contract Subdivision. Text + A subdivision of a contract or tender covering this catalogue line. + 0..1 + Catalogue Line + Contract Subdivision + Text + Text. Type + Installation , Phase One , Support and Maintenance + + + + + + + + + BBIE + Catalogue Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Catalogue Line + Note + Text + Text. Type + + + + + + + + + BBIE + Catalogue Line. Orderable_ Indicator. Indicator + An indicator that this catalogue line describes an orderable item (true) or is included for reference purposes only (false). + 0..1 + Catalogue Line + Orderable + Indicator + Indicator + Indicator. Type + TRUE means orderable, FALSE means not orderable + + + + + + + + + BBIE + Catalogue Line. Orderable_ Unit. Text + A textual description of the units in which the item described in this catalogue line can be ordered. + 0..1 + Catalogue Line + Orderable + Unit + Text + Text. Type + + + + + + + + + BBIE + Catalogue Line. Content Unit. Quantity + The numeric quantity of the ordering unit (and units of measure) of the catalogue line. + 0..1 + Catalogue Line + Content Unit + Quantity + Quantity. Type + If order unit measure identifier is each , then content unit quantity is 1 . + + + + + + + + + BBIE + Catalogue Line. Order Quantity Increment. Numeric + The number of items that can set the order quantity increments. + 0..1 + Catalogue Line + Order Quantity Increment + Numeric + Numeric. Type + + + + + + + + + BBIE + Catalogue Line. Minimum_ Order Quantity. Quantity + The minimum amount of the item described in this catalogue line that can be ordered. + 0..1 + Catalogue Line + Minimum + Order Quantity + Quantity + Quantity. Type + 10 boxes + + + + + + + + + BBIE + Catalogue Line. Maximum_ Order Quantity. Quantity + The maximum amount of the item described in this catalogue line that can be ordered. + 0..1 + Catalogue Line + Maximum + Order Quantity + Quantity + Quantity. Type + 1 tonne + + + + + + + + + BBIE + Catalogue Line. Warranty_ Information. Text + Text about a warranty (provided by WarrantyParty) for the good or service described in this catalogue line. + 0..n + Catalogue Line + Warranty + Information + Text + Text. Type + Unless specified otherwise and in addition to any rights the Customer may have under statute, Dell warrants to the Customer that Dell branded Products (excluding third party products and software), will be free from defects in materials and workmanship affecting normal use for a period of one year from invoice date ( Standard Warranty ). + + + + + + + + + BBIE + Catalogue Line. Pack Level Code. Code + A mutually agreed code signifying the level of packaging associated with the item described in this catalogue line. + 0..1 + Catalogue Line + Pack Level Code + Code + Code. Type + Consumer Unit, Trading Unit + level 2 , Group 4 + + + + + + + + + ASBIE + Catalogue Line. Contractor_ Customer Party. Customer Party + The customer responsible for the contract with which this catalogue line is associated. + 0..1 + Catalogue Line + Contractor + Customer Party + Customer Party + Customer Party + + + + + + + + + ASBIE + Catalogue Line. Seller_ Supplier Party. Supplier Party + The seller/supplier responsible for the contract with which this catalogue line is associated. + 0..1 + Catalogue Line + Seller + Supplier Party + Supplier Party + Supplier Party + + + + + + + + + ASBIE + Catalogue Line. Warranty_ Party. Party + The party responsible for any warranty associated with the item described in this catalogue line. + 0..1 + Catalogue Line + Warranty + Party + Party + Party + + + + + + + + + ASBIE + Catalogue Line. Warranty Validity_ Period. Period + The period for which a warranty associated with the item in this catalogue line is valid. + 0..1 + Catalogue Line + Warranty Validity + Period + Period + Period + + + + + + + + + ASBIE + Catalogue Line. Line Validity_ Period. Period + The period for which the information in this catalogue line is valid. + 0..1 + Catalogue Line + Line Validity + Period + Period + Period + + + + + + + + + ASBIE + Catalogue Line. Item Comparison + A combination of price and quantity used to provide price comparisons based on different sizes of order. + 0..n + Catalogue Line + Item Comparison + Item Comparison + Item Comparison + + + + + + + + + ASBIE + Catalogue Line. Component_ Related Item. Related Item + An item that may be a component of the item in this catalogue line. + 0..n + Catalogue Line + Component + Related Item + Related Item + Related Item + + + + + + + + + ASBIE + Catalogue Line. Accessory_ Related Item. Related Item + An item that may be an optional accessory of the item in this catalogue line. + 0..n + Catalogue Line + Accessory + Related Item + Related Item + Related Item + + + + + + + + + ASBIE + Catalogue Line. Required_ Related Item. Related Item + An item that may be required for the item in this catalogue line. + 0..n + Catalogue Line + Required + Related Item + Related Item + Related Item + + + + + + + + + ASBIE + Catalogue Line. Replacement_ Related Item. Related Item + An item that may be a replacement for the item in this catalogue line. + 0..n + Catalogue Line + Replacement + Related Item + Related Item + Related Item + + + + + + + + + ASBIE + Catalogue Line. Complementary_ Related Item. Related Item + An item that may complement the item in this catalogue line. + 0..n + Catalogue Line + Complementary + Related Item + Related Item + Related Item + + + + + + + + + ASBIE + Catalogue Line. Replaced_ Related Item. Related Item + An item in an existing catalogue that is being replaced by the item in this catalogue line. + 0..n + Catalogue Line + Replaced + Related Item + Related Item + Related Item + + + + + + + + + ASBIE + Catalogue Line. Required_ Item Location Quantity. Item Location Quantity + Properties of the item in this catalogue line that are dependent on location and quantity. + 0..n + Catalogue Line + Required + Item Location Quantity + Item Location Quantity + Item Location Quantity + + + + + + + + + ASBIE + Catalogue Line. Document Reference + A reference to a document associated with this catalogue line. + 0..n + Catalogue Line + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Catalogue Line. Item + A specification of the item itself. + 1 + Catalogue Line + Item + Item + Item + + + + + + + + + ASBIE + Catalogue Line. Keyword_ Item Property. Item Property + A property of the item in this catalogue line. + 0..n + Catalogue Line + Keyword + Item Property + Item Property + Item Property + + + + + + + + + ASBIE + Catalogue Line. Call For Tenders_ Line Reference. Line Reference + Reference to a Line on a Call For Tenders document. + 0..1 + Catalogue Line + Call For Tenders + Line Reference + Line Reference + Line Reference + + + + + + + + + ASBIE + Catalogue Line. Call For Tenders_ Document Reference. Document Reference + A class defining references to a Call For Tenders document. + 0..1 + Catalogue Line + Call For Tenders + Document Reference + Document Reference + Document Reference + + + + + + + + + + + ABIE + Catalogue Pricing Update Line. Details + A class to define a line describing a pricing update to a catalogue line. + Catalogue Pricing Update Line + + + + + + + + + BBIE + Catalogue Pricing Update Line. Identifier + An identifier for the catalogue line to be updated. + 1 + Catalogue Pricing Update Line + Identifier + Identifier + Identifier. Type + 1 + + + + + + + + + ASBIE + Catalogue Pricing Update Line. Contractor_ Customer Party. Customer Party + The customer responsible for the contract associated with the catalogue line being updated. + 0..1 + Catalogue Pricing Update Line + Contractor + Customer Party + Customer Party + Customer Party + + + + + + + + + ASBIE + Catalogue Pricing Update Line. Seller_ Supplier Party. Supplier Party + The seller/supplier responsible for the contract associated with the catalogue line being updated. + 0..1 + Catalogue Pricing Update Line + Seller + Supplier Party + Supplier Party + Supplier Party + + + + + + + + + ASBIE + Catalogue Pricing Update Line. Required_ Item Location Quantity. Item Location Quantity + Updated properties of the item in this catalogue line that are dependent on location and quantity. + 0..n + Catalogue Pricing Update Line + Required + Item Location Quantity + Item Location Quantity + Item Location Quantity + + + + + + + + + + + ABIE + Catalogue Reference. Details + A class to define a reference to a catalogue. + Catalogue Reference + + + + + + + + + BBIE + Catalogue Reference. Identifier + An identifier for a specific catalogue. + 1 + Catalogue Reference + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Catalogue Reference. UUID. Identifier + A universally unique identifier for a specific catalogue. + 0..1 + Catalogue Reference + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Catalogue Reference. Issue Date. Date + The date on which the catalogue was issued. + 0..1 + Catalogue Reference + Issue Date + Date + Date. Type + + + + + + + + + BBIE + Catalogue Reference. Issue Time. Time + The time at which the catalogue was issued. + 0..1 + Catalogue Reference + Issue Time + Time + Time. Type + + + + + + + + + BBIE + Catalogue Reference. Revision Date. Date + The date on which the information in the catalogue was last revised. + 0..1 + Catalogue Reference + Revision Date + Date + Date. Type + + + + + + + + + BBIE + Catalogue Reference. Revision Time. Time + The time at which the information in the catalogue was last revised. + 0..1 + Catalogue Reference + Revision Time + Time + Time. Type + + + + + + + + + BBIE + Catalogue Reference. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Catalogue Reference + Note + Text + Text. Type + + + + + + + + + BBIE + Catalogue Reference. Description. Text + Text describing the catalogue. + 0..n + Catalogue Reference + Description + Text + Text. Type + computer accessories for laptops + + + + + + + + + BBIE + Catalogue Reference. Version. Identifier + An identifier for the current version of the catalogue. + 0..1 + Catalogue Reference + Version + Identifier + Identifier. Type + 1.1 + + + + + + + + + BBIE + Catalogue Reference. Previous_ Version. Identifier + An identifier for the previous version of the catalogue that is superseded by this version. + 0..1 + Catalogue Reference + Previous + Version + Identifier + Identifier. Type + 1.0 + + + + + + + + + + + ABIE + Catalogue Request Line. Details + A class to define a line describing a request for a catalogue line. + Catalogue Request Line + + + + + + + + + BBIE + Catalogue Request Line. Identifier + An identifier for the requested catalogue line. + 1 + Catalogue Request Line + Identifier + Identifier + Identifier. Type + 1 + + + + + + + + + BBIE + Catalogue Request Line. Contract Subdivision. Text + A subdivision of a contract or tender covering the line being requested. + 0..1 + Catalogue Request Line + Contract Subdivision + Text + Text. Type + Installation , Phase One , Support and Maintenance + + + + + + + + + BBIE + Catalogue Request Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Catalogue Request Line + Note + Text + Text. Type + + + + + + + + + ASBIE + Catalogue Request Line. Line Validity_ Period. Period + The period for which the information in the requested catalogue line is valid. + 0..1 + Catalogue Request Line + Line Validity + Period + Period + Period + + + + + + + + + ASBIE + Catalogue Request Line. Required_ Item Location Quantity. Item Location Quantity + Properties of the item in the requested catalogue line that are dependent on location and quantity. + 0..n + Catalogue Request Line + Required + Item Location Quantity + Item Location Quantity + Item Location Quantity + + + + + + + + + ASBIE + Catalogue Request Line. Item + The item associated with the requested catalogue line. + 1 + Catalogue Request Line + Item + Item + Item + + + + + + + + + + + ABIE + Certificate. Details + A class to define a certificate applied to the item. Certificated can be a requirement to sell goods or services in a jurisdiction. + Certificate + + + + + + + + + BBIE + Certificate. Identifier + An identifier for this certificate. + 1 + Certificate + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Certificate. Certificate Type Code. Code + The type of this certificate, expressed as a code. The type specifies what array it belongs to, e.g.. Environmental, security, health improvement etc. + 1 + Certificate + Certificate Type Code + Code + Code. Type + + + + + + + + + BBIE + Certificate. Certificate Type. Text + The type of this certificate, expressed as a code. The type specifies what array it belongs to, e.g.. Environmental, security, health improvement etc. + 1 + Certificate + Certificate Type + Text + Text. Type + + + + + + + + + BBIE + Certificate. Remarks. Text + Remarks by the applicant for this certificate. + 0..n + Certificate + Remarks + Text + Text. Type + + + + + + + + + ASBIE + Certificate. Issuer_ Party. Party + The authorized organization that issued this certificate, the provider of the certificate. + 1 + Certificate + Issuer + Party + Party + Party + + + + + + + + + ASBIE + Certificate. Document Reference + A reference to a document relevant to this certificate or an application for this certificate. + 0..n + Certificate + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Certificate. Signature + A signature applied to this certificate. + 0..n + Certificate + Signature + Signature + Signature + + + + + + + + + + + ABIE + Certificate Of Origin Application. Details + A class to define an application for a Certificate of Origin (CoO). + Certificate Of Origin Application + + + + + + + + + BBIE + Certificate Of Origin Application. Reference. Identifier + An identifier for a reference as part of the CoO application. + 1 + Certificate Of Origin Application + Reference + Identifier + Identifier. Type + + + + + + + + + BBIE + Certificate Of Origin Application. Certificate Type. Text + The type of CoO being applied for (Ordinary, Re-export, Commonwealth Preferential, etc.). + 1 + Certificate Of Origin Application + Certificate Type + Text + Text. Type + + + + + + + + + BBIE + Certificate Of Origin Application. Application Status Code. Code + A code signifying the status of the application (revision, replacement, etc.). + 0..1 + Certificate Of Origin Application + Application Status Code + Code + Code. Type + + + + + + + + + BBIE + Certificate Of Origin Application. Original_ Job Identifier. Identifier + The latest job number given to the CoO application. This is used by the system to keep track of amendments to or cancellation of any earlier applications. + 1 + Certificate Of Origin Application + Original + Job Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Certificate Of Origin Application. Previous_ Job Identifier. Identifier + An identifier for the previous job used in case the application requires query or change. + 0..1 + Certificate Of Origin Application + Previous + Job Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Certificate Of Origin Application. Remarks. Text + Remarks by the applicant for the CoO. + 0..n + Certificate Of Origin Application + Remarks + Text + Text. Type + + + + + + + + + ASBIE + Certificate Of Origin Application. Shipment + The shipment of goods covered by the CoO. + 1 + Certificate Of Origin Application + Shipment + Shipment + Shipment + + + + + + + + + ASBIE + Certificate Of Origin Application. Endorser Party + A party providing an endorsement to the CoO. + 1..n + Certificate Of Origin Application + Endorser Party + Endorser Party + Endorser Party + + + + + + + + + ASBIE + Certificate Of Origin Application. Preparation_ Party. Party + The party (individual, group, or body) that prepared this CoO application. + 1 + Certificate Of Origin Application + Preparation + Party + Party + Party + + + + + + + + + ASBIE + Certificate Of Origin Application. Issuer_ Party. Party + The organization authorized to issue the CoO requested by this application. + 1 + Certificate Of Origin Application + Issuer + Party + Party + Party + + + + + + + + + ASBIE + Certificate Of Origin Application. Exporter_ Party. Party + The party making an export declaration, or on behalf of which the export declaration is made, and that is the owner of the goods or has similar right of disposal over them at the time when the declaration is accepted. + 0..1 + Certificate Of Origin Application + Exporter + Party + Party + Party + Exporter (WCO ID 41 and 42) + + + + + + + + + ASBIE + Certificate Of Origin Application. Importer_ Party. Party + The party making an import declaration, or on behalf of which a customs clearing agent or other authorized person makes an import declaration. This may include a person who has possession of the goods or to whom the goods are consigned. + 0..1 + Certificate Of Origin Application + Importer + Party + Party + Party + Importer (WCO ID 39 and 40) + + + + + + + + + ASBIE + Certificate Of Origin Application. Issuing_ Country. Country + The country where the requested CoO will be issued. + 1 + Certificate Of Origin Application + Issuing + Country + Country + Country + + + + + + + + + ASBIE + Certificate Of Origin Application. Document Distribution + An interested party to which the CoO is to be distributed. + 0..n + Certificate Of Origin Application + Document Distribution + Document Distribution + Document Distribution + + + + + + + + + ASBIE + Certificate Of Origin Application. Supporting_ Document Reference. Document Reference + A reference to a document supporting this application. + 0..n + Certificate Of Origin Application + Supporting + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Certificate Of Origin Application. Signature + A signature applied to this application. + 0..n + Certificate Of Origin Application + Signature + Signature + Signature + + + + + + + + + + + ABIE + Classification Category. Details + A class to define a category within a classification scheme. + Classification Category + + + + + + + + + BBIE + Classification Category. Name + The name of this category within the classification scheme. + 0..1 + Classification Category + Name + Name + Name. Type + Code List Name + UNSPSC Class , UNSPSC Segment , UNSPSC Family + + + + + + + + + BBIE + Classification Category. Code Value. Text + The value of a code used to identify this category within the classification scheme. + 0..1 + Classification Category + Code Value + Text + Text. Type + Code Value + 3420001, 3273666, HSJJD-213 + + + + + + + + + BBIE + Classification Category. Description. Text + Text describing this category. + 0..n + Classification Category + Description + Text + Text. Type + Code Name + Electrical Goods , Wooden Toys + + + + + + + + + ASBIE + Classification Category. Categorizes_ Classification Category. Classification Category + A recursive description of a subcategory of this category. + 0..n + Classification Category + Categorizes + Classification Category + Classification Category + Classification Category + + + + + + + + + + + ABIE + Classification Scheme. Details + A class to define a classification scheme, such as a taxonomy for classifying goods or services. + Classification Scheme + + + + + + + + + BBIE + Classification Scheme. Identifier + An identifier for this classification scheme. + 1 + Classification Scheme + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Classification Scheme. UUID. Identifier + A universally unique identifier for this classification scheme. + 0..1 + Classification Scheme + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Classification Scheme. Last_ Revision Date. Date + The date on which this classification scheme was last revised. + 0..1 + Classification Scheme + Last + Revision Date + Date + Date. Type + + + + + + + + + BBIE + Classification Scheme. Last_ Revision Time. Time + The time at which this classification scheme was last revised. + 0..1 + Classification Scheme + Last + Revision Time + Time + Time. Type + + + + + + + + + BBIE + Classification Scheme. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Classification Scheme + Note + Text + Text. Type + + + + + + + + + BBIE + Classification Scheme. Name + The name of this classification scheme. + 0..1 + Classification Scheme + Name + Name + Name. Type + UNSPSC + + + + + + + + + BBIE + Classification Scheme. Description. Text + Text describing this classification scheme. + 0..n + Classification Scheme + Description + Text + Text. Type + an open, global multi-sector standard for classification of products and services + + + + + + + + + BBIE + Classification Scheme. Agency Identifier. Identifier + An identifier for the agency that maintains this classification scheme. + 0..1 + Classification Scheme + Agency Identifier + Identifier + Identifier. Type + Defaults to the UN/EDIFACT data element 3055 code list. + + + + + + + + + BBIE + Classification Scheme. Agency Name. Text + The name of the agency that maintains the classification scheme. + 0..1 + Classification Scheme + Agency Name + Text + Text. Type + + + + + + + + + BBIE + Classification Scheme. Version. Identifier + An identifier for the version of this classification scheme. + 0..1 + Classification Scheme + Version + Identifier + Identifier. Type + + + + + + + + + BBIE + Classification Scheme. URI. Identifier + The Uniform Resource Identifier (URI) of the documentation for this classification scheme. + 0..1 + Classification Scheme + URI + Identifier + Identifier. Type + + + + + + + + + BBIE + Classification Scheme. Scheme_ URI. Identifier + The Uniform Resource Identifier (URI) of this classification scheme. + 0..1 + Classification Scheme + Scheme + URI + Identifier + Identifier. Type + + + + + + + + + BBIE + Classification Scheme. Language. Identifier + An identifier for the language of this classification scheme. + 0..1 + Classification Scheme + Language + Identifier + Identifier. Type + + + + + + + + + ASBIE + Classification Scheme. Classification Category + A description of a category within this classification scheme. + 1..n + Classification Scheme + Classification Category + Classification Category + Classification Category + + + + + + + + + + + ABIE + Clause. Details + A class to define a clause (a distinct article or provision) in a contract, treaty, will, or other formal or legal written document requiring compliance. + Clause + + + + + + + + + BBIE + Clause. Identifier + An identifier for this clause. + 0..1 + Clause + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Clause. Content. Text + The text of this clause. + 0..n + Clause + Content + Text + Text. Type + + + + + + + + + + + ABIE + Commodity Classification. Details + A class to describe the classification of a commodity. + Commodity Classification + + + + + + + + + BBIE + Commodity Classification. Nature Code. Code + A code defined by a specific maintenance agency signifying the high-level nature of the commodity. + 0..1 + Commodity Classification + Nature Code + Code + Code. Type + wooden products + + + + + + + + + BBIE + Commodity Classification. Cargo Type Code. Code + A mutually agreed code signifying the type of cargo for purposes of commodity classification. + 0..1 + Commodity Classification + Cargo Type Code + Code + Code. Type + Refrigerated + + + + + + + + + BBIE + Commodity Classification. Commodity Code. Code + The harmonized international commodity code for cross border and regulatory (customs and trade statistics) purposes. + 0..1 + Commodity Classification + Commodity Code + Code + Code. Type + Harmonized Code + 1102222883 + + + + + + + + + BBIE + Commodity Classification. Item Classification Code. Code + A code signifying the trade classification of the commodity. + 0..1 + Commodity Classification + Item Classification Code + Code + Code. Type + UN/SPSC Code + 3440234 + + + + + + + + + + + ABIE + Communication. Details + A class to describe a means of communication. + Communication + + + + + + + + + BBIE + Communication. Channel Code. Code + The method of communication, expressed as a code. + 0..1 + Communication + Channel Code + Code + Channel + Channel_ Code. Type + Phone Fax Email + + + + + + + + + BBIE + Communication. Channel. Text + The method of communication, expressed as text. + 0..1 + Communication + Channel + Text + Text. Type + Skype + + + + + + + + + BBIE + Communication. Value. Text + An identifying value (phone number, email address, etc.) for this channel of communication + 0..1 + Communication + Value + Text + Text. Type + +44 1 2345 6789 president@whitehouse.com + + + + + + + + + + + ABIE + Completed Task. Details + A class to describe the completion of a specific task in the tendering process. + Completed Task + + + + + + + + + BBIE + Completed Task. Annual_ Average. Amount + The average monetary amount of a task such as this completed task. + 0..1 + Completed Task + Annual + Average + Amount + Amount. Type + + + + + + + + + BBIE + Completed Task. Total Task. Amount + The actual total monetary amount of this completed task. + 0..1 + Completed Task + Total Task + Amount + Amount. Type + + + + + + + + + BBIE + Completed Task. Party Capacity. Amount + A monetary amount corresponding to the financial capacity of the party that carried out this completed task. + 0..1 + Completed Task + Party Capacity + Amount + Amount. Type + + + + + + + + + BBIE + Completed Task. Description. Text + Text describing this completed task. + 0..n + Completed Task + Description + Text + Text. Type + + + + + + + + + ASBIE + Completed Task. Evidence Supplied + The evidence justifying a designation of "complete" for this task. + 0..n + Completed Task + Evidence Supplied + Evidence Supplied + Evidence Supplied + + + + + + + + + ASBIE + Completed Task. Period + The period in which this completed task was performed. + 0..1 + Completed Task + Period + Period + Period + + + + + + + + + ASBIE + Completed Task. Recipient_ Customer Party. Customer Party + The original customer for this completed task. + 0..1 + Completed Task + Recipient + Customer Party + Customer Party + Customer Party + + + + + + + + + + + ABIE + Condition. Details + A class to define a measurable condition of an object. + Condition + + + + + + + + + BBIE + Condition. Attribute Identifier. Identifier + An identifier for the attribute that applies to the condition. + 1 + Condition + Attribute Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Condition. Measure + The measurement value. + 0..1 + Condition + Measure + Measure + Measure. Type + + + + + + + + + BBIE + Condition. Description. Text + Text describing the attribute that applies to the condition. + 0..n + Condition + Description + Text + Text. Type + + + + + + + + + BBIE + Condition. Minimum_ Measure. Measure + The minimum value in a range of measurement for this condition. + 0..1 + Condition + Minimum + Measure + Measure + Measure. Type + + + + + + + + + BBIE + Condition. Maximum_ Measure. Measure + The maximum value in a range of measurement for this condition. + 0..1 + Condition + Maximum + Measure + Measure + Measure. Type + + + + + + + + + + + ABIE + Consignment. Details + A class to describe an identifiable collection of one or more goods items to be transported between the consignor and the consignee. This information may be defined within a transport contract. A consignment may comprise more than one shipment (e.g., when consolidated by a freight forwarder). + Consignment + + + + + + + + + BBIE + Consignment. Identifier + An identifier assigned to a collection of goods for both import and export. + 1 + Consignment + Identifier + Identifier + Identifier. Type + Unique consignment reference number (UCR) + + + + + + + + + BBIE + Consignment. Carrier Assigned_ Identifier. Identifier + An identifier for this consignment, assigned by the carrier. + 0..1 + Consignment + Carrier Assigned + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Consignment. Consignee Assigned_ Identifier. Identifier + An identifier for this consignment, assigned by the consignee. + 0..1 + Consignment + Consignee Assigned + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Consignment. Consignor Assigned_ Identifier. Identifier + An identifier for this consignment, assigned by the consignor. + 0..1 + Consignment + Consignor Assigned + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Consignment. Freight Forwarder Assigned_ Identifier. Identifier + An identifier for this consignment, assigned by the freight forwarder. + 0..1 + Consignment + Freight Forwarder Assigned + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Consignment. Broker Assigned_ Identifier. Identifier + An identifier for this consignment, assigned by the broker. + 0..1 + Consignment + Broker Assigned + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Consignment. Contracted Carrier Assigned_ Identifier. Identifier + An identifier for this consignment, assigned by the contracted carrier. + 0..1 + Consignment + Contracted Carrier Assigned + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Consignment. Performing Carrier Assigned_ Identifier. Identifier + An identifier for this consignment, assigned by the performing carrier. + 0..1 + Consignment + Performing Carrier Assigned + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Consignment. Summary_ Description. Text + A textual summary description of the consignment. + 0..n + Consignment + Summary + Description + Text + Text. Type + + + + + + + + + BBIE + Consignment. Total_ Invoice Amount. Amount + The total of all invoice amounts declared in this consignment. + 0..1 + Consignment + Total + Invoice Amount + Amount + Amount. Type + + + + + + + + + BBIE + Consignment. Declared Customs_ Value. Amount + The total declared value for customs purposes of all the goods in this consignment, regardless of whether they are subject to the same customs procedure, tariff/statistical categorization, country information, or duty regime. + 0..1 + Consignment + Declared Customs + Value + Amount + Amount. Type + + + + + + + + + BBIE + Consignment. Tariff Description. Text + Text describing the tariff applied to this consignment. + 0..n + Consignment + Tariff Description + Text + Text. Type + + + + + + + + + BBIE + Consignment. Tariff Code. Code + A code signifying the tariff applied to this consignment. + 0..1 + Consignment + Tariff Code + Code + Code. Type + Tariff code number (WCO ID 145) + + + + + + + + + BBIE + Consignment. Insurance Premium Amount. Amount + The amount of the premium payable to an insurance company for insuring the goods contained in this consignment. + 0..1 + Consignment + Insurance Premium Amount + Amount + Amount. Type + Insurance Cost + + + + + + + + + BBIE + Consignment. Gross_ Weight. Measure + The total declared weight of the goods in this consignment, including packaging but excluding the carrier's equipment. + 0..1 + Consignment + Gross + Weight + Measure + Measure. Type + Total gross weight (WCO ID 131) + Total cube of all goods items referred to as one consignment. + + + + + + + + + BBIE + Consignment. Net_ Weight. Measure + The total net weight of all the goods items referred to as one consignment. + 0..1 + Consignment + Net + Weight + Measure + Measure. Type + + + + + + + + + BBIE + Consignment. Net Net_ Weight. Measure + The total net weight of the goods in this consignment, exclusive of packaging. + 0..1 + Consignment + Net Net + Weight + Measure + Measure. Type + + + + + + + + + BBIE + Consignment. Chargeable_ Weight. Measure + The weight upon which a charge is to be based. + 0..1 + Consignment + Chargeable + Weight + Measure + Measure. Type + Chargeable Weight. Basis.Measure + + + + + + + + + BBIE + Consignment. Gross_ Volume. Measure + The total volume of the goods referred to as one consignment. + 0..1 + Consignment + Gross + Volume + Measure + Measure. Type + Cube + + + + + + + + + BBIE + Consignment. Net_ Volume. Measure + The total net volume of all goods items referred to as one consignment. + 0..1 + Consignment + Net + Volume + Measure + Measure. Type + + + + + + + + + BBIE + Consignment. Loading_ Length. Measure + The total length in a means of transport or a piece of transport equipment which, given the width and height of the transport means, will accommodate all of the consignments in a single consolidation. + 0..1 + Consignment + Loading + Length + Measure + Measure. Type + + + + + + + + + BBIE + Consignment. Remarks. Text + Remarks concerning the complete consignment, to be printed on the transport document. + 0..n + Consignment + Remarks + Text + Text. Type + + + + + + + + + BBIE + Consignment. Hazardous Risk_ Indicator. Indicator + An indication that the transported goods in this consignment are subject to an international regulation concerning the carriage of dangerous goods (true) or not (false). + 0..1 + Consignment + Hazardous Risk + Indicator + Indicator + Indicator. Type + Dangerous Goods RID Indicator + default is negative + + + + + + + + + BBIE + Consignment. Animal_ Food Indicator. Indicator + An indication that the transported goods in this consignment are animal foodstuffs (true) or not (false). + 0..1 + Consignment + Animal + Food Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Consignment. Human_ Food Indicator. Indicator + An indication that the transported goods in this consignment are for human consumption (true) or not (false). + 0..1 + Consignment + Human + Food Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Consignment. Livestock_ Indicator. Indicator + An indication that the transported goods are livestock (true) or not (false). + 0..1 + Consignment + Livestock + Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Consignment. Bulk Cargo_ Indicator. Indicator + An indication that the transported goods in this consignment are bulk cargoes (true) or not (false). + 0..1 + Consignment + Bulk Cargo + Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Consignment. Containerized_ Indicator. Indicator + An indication that the transported goods in this consignment are containerized cargoes (true) or not (false). + 0..1 + Consignment + Containerized + Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Consignment. General Cargo_ Indicator. Indicator + An indication that the transported goods in this consignment are general cargoes (true) or not (false). + 0..1 + Consignment + General Cargo + Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Consignment. Special_ Security Indicator. Indicator + An indication that the transported goods in this consignment require special security (true) or not (false). + 0..1 + Consignment + Special + Security Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Consignment. Third Party Payer_ Indicator. Indicator + An indication that this consignment will be paid for by a third party (true) or not (false). + 0..1 + Consignment + Third Party Payer + Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Consignment. Carrier Service_ Instructions. Text + Service instructions to the carrier, expressed as text. + 0..n + Consignment + Carrier Service + Instructions + Text + Text. Type + + + + + + + + + BBIE + Consignment. Customs Clearance Service_ Instructions. Text + Service instructions for customs clearance, expressed as text. + 0..n + Consignment + Customs Clearance Service + Instructions + Text + Text. Type + + + + + + + + + BBIE + Consignment. Forwarder Service_ Instructions. Text + Service instructions for the forwarder, expressed as text. + 0..n + Consignment + Forwarder Service + Instructions + Text + Text. Type + + + + + + + + + BBIE + Consignment. Special Service_ Instructions. Text + Special service instructions, expressed as text. + 0..n + Consignment + Special Service + Instructions + Text + Text. Type + + + + + + + + + BBIE + Consignment. Sequence Identifier. Identifier + A sequence identifier for this consignment. + 0..1 + Consignment + Sequence Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Consignment. Shipping Priority Level Code. Code + A code signifying the priority or level of service required for this consignment. + 0..1 + Consignment + Shipping Priority Level Code + Code + Code. Type + + + + + + + + + BBIE + Consignment. Handling Code. Code + The handling required for this consignment, expressed as a code. + 0..1 + Consignment + Handling Code + Code + Code. Type + Special Handling + + + + + + + + + BBIE + Consignment. Handling_ Instructions. Text + The handling required for this consignment, expressed as text. + 0..n + Consignment + Handling + Instructions + Text + Text. Type + + + + + + + + + BBIE + Consignment. Information. Text + Free-form text pertinent to this consignment, conveying information that is not contained explicitly in other structures. + 0..n + Consignment + Information + Text + Text. Type + + + + + + + + + BBIE + Consignment. Total_ Goods Item Quantity. Quantity + The total number of goods items in this consignment. + 0..1 + Consignment + Total + Goods Item Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Consignment. Total_ Transport Handling Unit Quantity. Quantity + The number of pieces of transport handling equipment (pallets, boxes, cases, etc.) in this consignment. + 0..1 + Consignment + Total + Transport Handling Unit Quantity + Quantity + Quantity. Type + Number of THUs + + + + + + + + + BBIE + Consignment. Insurance_ Value. Amount + The amount covered by insurance for this consignment. + 0..1 + Consignment + Insurance + Value + Amount + Amount. Type + Value Insured + + + + + + + + + BBIE + Consignment. Declared For Carriage_ Value. Amount + The value of this consignment, declared by the shipper or his agent solely for the purpose of varying the carrier's level of liability from that provided in the contract of carriage, in case of loss or damage to goods or delayed delivery. + 0..1 + Consignment + Declared For Carriage + Value + Amount + Amount. Type + Declared value for carriage, Interest in delivery + + + + + + + + + BBIE + Consignment. Declared Statistics_ Value. Amount + The value, declared for statistical purposes, of those goods in this consignment that have the same statistical heading. + 0..1 + Consignment + Declared Statistics + Value + Amount + Amount. Type + Statistical Value + + + + + + + + + BBIE + Consignment. Free On Board_ Value. Amount + The monetary amount that has to be or has been paid as calculated under the applicable trade delivery. + 0..1 + Consignment + Free On Board + Value + Amount + Amount. Type + FOB Value + + + + + + + + + BBIE + Consignment. Special_ Instructions. Text + Special instructions relating to this consignment. + 0..n + Consignment + Special + Instructions + Text + Text. Type + + + + + + + + + BBIE + Consignment. Split Consignment_ Indicator. Indicator + An indicator that this consignment has been split in transit (true) or not (false). + 0..1 + Consignment + Split Consignment + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Consignment. Delivery_ Instructions. Text + A set of delivery instructions relating to this consignment. + 0..n + Consignment + Delivery + Instructions + Text + Text. Type + + + + + + + + + BBIE + Consignment. Consignment_ Quantity. Quantity + The count in this consignment considering goods items, child consignments, shipments + 0..1 + Consignment + Consignment + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Consignment. Consolidatable_ Indicator. Indicator + An indicator that this consignment can be consolidated (true) or not (false). + 0..1 + Consignment + Consolidatable + Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Consignment. Haulage_ Instructions. Text + Instructions regarding haulage of this consignment, expressed as text. + 0..n + Consignment + Haulage + Instructions + Text + Text. Type + + + + + + + + + BBIE + Consignment. Loading_ Sequence Identifier. Identifier + An identifier for the loading sequence of this consignment. + 0..1 + Consignment + Loading + Sequence Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Consignment. Child Consignment Quantity. Quantity + The quantity of (consolidated) child consignments + 0..1 + Consignment + Child Consignment Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Consignment. Total_ Packages Quantity. Quantity + The total number of packages associated with a Consignment. + 0..1 + Consignment + Total + Packages Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Consignment. Consolidated_ Shipment. Shipment + A consolidated shipment (a shipment created by an act of consolidation). + 0..n + Consignment + Consolidated + Shipment + Shipment + Shipment + + + + + + + + + ASBIE + Consignment. Customs Declaration + A class describing identifiers or references relating to customs procedures. + 0..n + Consignment + Customs Declaration + Customs Declaration + Customs Declaration + + + + + + + + + ASBIE + Consignment. Requested Pickup_ Transport Event. Transport Event + The pickup of this consignment requested by the party requesting a transportation service (the transport user). + 0..1 + Consignment + Requested Pickup + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Consignment. Requested Delivery_ Transport Event. Transport Event + The delivery of this consignment requested by the party requesting a transportation service (the transport user). + 0..1 + Consignment + Requested Delivery + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Consignment. Planned Pickup_ Transport Event. Transport Event + The pickup of this consignment planned by the party responsible for providing the transportation service (the transport service provider). + 0..1 + Consignment + Planned Pickup + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Consignment. Planned Delivery_ Transport Event. Transport Event + The delivery of this consignment planned by the party responsible for providing the transportation service (the transport service provider). + 0..1 + Consignment + Planned Delivery + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Consignment. Status + The status of a particular condition associated with this consignment. + 0..n + Consignment + Status + Status + Status + + + + + + + + + ASBIE + Consignment. Child_ Consignment. Consignment + One of the child consignments of which a consolidated consignment is composed. + 0..n + Consignment + Child + Consignment + Consignment + Consignment + + + + + + + + + ASBIE + Consignment. Consignee_ Party. Party + A party to which goods are consigned. + 0..1 + Consignment + Consignee + Party + Party + Party + Consignee (WCO ID 51 and 52) + + + + + + + + + ASBIE + Consignment. Exporter_ Party. Party + The party that makes the export declaration, or on behalf of which the export declaration is made, and that is the owner of the goods in this consignment or has similar right of disposal over them at the time when the declaration is accepted. + 0..1 + Consignment + Exporter + Party + Party + Party + Exporter (WCO ID 41 and 42) + + + + + + + + + ASBIE + Consignment. Consignor_ Party. Party + The party consigning goods, as stipulated in the transport contract by the party ordering transport. + 0..1 + Consignment + Consignor + Party + Party + Party + Consignor (WCO ID 71 and 72) + + + + + + + + + ASBIE + Consignment. Importer_ Party. Party + The party that makes an import declaration regarding this consignment, or on behalf of which a customs clearing agent or other authorized person makes an import declaration regarding this consignment. This may include a person who has possession of the goods or to whom the goods are consigned. + 0..1 + Consignment + Importer + Party + Party + Party + Importer (WCO ID 39 and 40) + + + + + + + + + ASBIE + Consignment. Carrier_ Party. Party + The party providing the transport of goods in this consignment between named points. + 0..1 + Consignment + Carrier + Party + Party + Party + Transport Company, Shipping Line, NVOCC, Airline, Haulier, Courier, Carrier (WCO ID 49 and 50) + + + + + + + + + ASBIE + Consignment. Freight Forwarder_ Party. Party + The party combining individual smaller consignments into a single larger shipment (the consolidated shipment), which is sent to a counterpart that mirrors the consolidator's activity by dividing the consolidated consignment into its original components. + 0..1 + Consignment + Freight Forwarder + Party + Party + Party + Consolidator (WCO ID 192 AND 193) + + + + + + + + + ASBIE + Consignment. Notify_ Party. Party + The party to be notified upon arrival of goods and when special occurrences (usually pre-defined) take place during a transportation service. + 0..1 + Consignment + Notify + Party + Party + Party + WCO ID 57 and 58 + + + + + + + + + ASBIE + Consignment. Original Despatch_ Party. Party + The original despatch (sender) party for this consignment. + 0..1 + Consignment + Original Despatch + Party + Party + Party + + + + + + + + + ASBIE + Consignment. Final Delivery_ Party. Party + The final delivery party for this consignment. + 0..1 + Consignment + Final Delivery + Party + Party + Party + + + + + + + + + ASBIE + Consignment. Performing Carrier_ Party. Party + The party performing the carriage of this consignment. + 0..1 + Consignment + Performing Carrier + Party + Party + Party + + + + + + + + + ASBIE + Consignment. Substitute Carrier_ Party. Party + A substitute party performing the carriage of this consignment. + 0..1 + Consignment + Substitute Carrier + Party + Party + Party + + + + + + + + + ASBIE + Consignment. Logistics Operator_ Party. Party + The logistics operator party for this consignment. + 0..1 + Consignment + Logistics Operator + Party + Party + Party + + + + + + + + + ASBIE + Consignment. Transport Advisor_ Party. Party + The party providing transport advice this consignment. + 0..1 + Consignment + Transport Advisor + Party + Party + Party + + + + + + + + + ASBIE + Consignment. Hazardous Item Notification_ Party. Party + The party that would be notified of a hazardous item in this consignment. + 0..1 + Consignment + Hazardous Item Notification + Party + Party + Party + + + + + + + + + ASBIE + Consignment. Insurance_ Party. Party + The party holding the insurance for this consignment. + 0..1 + Consignment + Insurance + Party + Party + Party + + + + + + + + + ASBIE + Consignment. Mortgage Holder_ Party. Party + The party holding the mortgage for this consignment. + 0..1 + Consignment + Mortgage Holder + Party + Party + Party + + + + + + + + + ASBIE + Consignment. Bill Of Lading Holder_ Party. Party + The party holding the bill of lading for this consignment. + 0..1 + Consignment + Bill Of Lading Holder + Party + Party + Party + + + + + + + + + ASBIE + Consignment. Original Departure_ Country. Country + The country from which the goods in this consignment were originally exported, without any commercial transaction taking place in intermediate countries. + 0..1 + Consignment + Original Departure + Country + Country + Country + Country of origin (WCO ID 062) + + + + + + + + + ASBIE + Consignment. Final Destination_ Country. Country + The country in which the goods in this consignment are to be delivered to the final consignee or buyer. + 0..1 + Consignment + Final Destination + Country + Country + Country + Ultimate Destination Country, Country of Final Arrival, Country of Destination + + + + + + + + + ASBIE + Consignment. Transit_ Country. Country + One of the countries through which goods or passengers in this consignment are routed between the country of original departure and the country of final destination. + 0..n + Consignment + Transit + Country + Country + Country + Country(ies) of routing (WCO ID 064) + + + + + + + + + ASBIE + Consignment. Transport_ Contract. Contract + A transport contract relating to this consignment. + 0..1 + Consignment + Transport + Contract + Contract + Contract + + + + + + + + + ASBIE + Consignment. Transport Event + A class describing a significant occurrence or happening related to the transportation of goods. + 0..n + Consignment + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Consignment. Original Despatch_ Transportation Service. Transportation Service + The service for pickup from the consignor under the transport contract for this consignment. + 0..1 + Consignment + Original Despatch + Transportation Service + Transportation Service + Transportation Service + Door-to-door , Pier-to-door + + + + + + + + + ASBIE + Consignment. Final Delivery_ Transportation Service. Transportation Service + The service for delivery to the consignee under the transport contract for this consignment. + 0..1 + Consignment + Final Delivery + Transportation Service + Transportation Service + Transportation Service + Door-to-door , Pier-to-door + + + + + + + + + ASBIE + Consignment. Delivery Terms + The conditions agreed upon between a seller and a buyer with regard to the delivery of goods and/or services (e.g., CIF, FOB, or EXW from the INCOTERMS Terms of Delivery). + 0..1 + Consignment + Delivery Terms + Delivery Terms + Delivery Terms + Trade Terms, INCOTERMS + + + + + + + + + ASBIE + Consignment. Payment Terms + The terms of payment between the parties (such as logistics service client, logistics service provider) in a transaction. + 0..1 + Consignment + Payment Terms + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Consignment. Collect_ Payment Terms. Payment Terms + The terms of payment that apply to the collection of this consignment. + 0..1 + Consignment + Collect + Payment Terms + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Consignment. Disbursement_ Payment Terms. Payment Terms + The terms of payment for disbursement. + 0..1 + Consignment + Disbursement + Payment Terms + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Consignment. Prepaid_ Payment Terms. Payment Terms + The terms of payment for prepayment. + 0..1 + Consignment + Prepaid + Payment Terms + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Consignment. Freight_ Allowance Charge. Allowance Charge + A cost incurred by the shipper in moving goods, by whatever means, from one place to another under the terms of the contract of carriage for this consignment. In addition to transport costs, this may include such elements as packing, documentation, loading, unloading, and insurance to the extent that they relate to the freight costs. + 0..n + Consignment + Freight + Allowance Charge + Allowance Charge + Allowance Charge + Freight Costs + + + + + + + + + ASBIE + Consignment. Extra_ Allowance Charge. Allowance Charge + A charge for extra allowance. + 0..n + Consignment + Extra + Allowance Charge + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Consignment. Main Carriage_ Shipment Stage. Shipment Stage + A shipment stage during main carriage. + 0..n + Consignment + Main Carriage + Shipment Stage + Shipment Stage + Shipment Stage + + + + + + + + + ASBIE + Consignment. Pre Carriage_ Shipment Stage. Shipment Stage + A shipment stage during precarriage (usually refers to movement activity that takes place prior to the container being loaded at a port of loading). + 0..n + Consignment + Pre Carriage + Shipment Stage + Shipment Stage + Shipment Stage + + + + + + + + + ASBIE + Consignment. On Carriage_ Shipment Stage. Shipment Stage + A shipment stage during on-carriage (usually refers to movement activity that takes place after the container is discharged at a port of discharge). + 0..n + Consignment + On Carriage + Shipment Stage + Shipment Stage + Shipment Stage + + + + + + + + + ASBIE + Consignment. Transport Handling Unit + A transport handling unit used for loose and containerized goods. + 0..n + Consignment + Transport Handling Unit + Transport Handling Unit + Transport Handling Unit + + + + + + + + + ASBIE + Consignment. First Arrival Port_ Location. Location + The first arrival location in a transport. This would be a port for sea, an airport for air, a terminal for rail, or a border post for land crossing. + 0..1 + Consignment + First Arrival Port + Location + Location + Location + + + + + + + + + ASBIE + Consignment. Last Exit Port_ Location. Location + The final exporting location in a transport. This would be a port for sea, an airport for air, a terminal for rail, or a border post for land crossing. + 0..1 + Consignment + Last Exit Port + Location + Location + Location + + + + + + + + + + + ABIE + Consumption. Details + A class to describe the consumption of a utility. + Consumption + + + + + + + + + BBIE + Consumption. Utility Statement Type Code. Code + A code identifying the type of the Utility Statement required for this consumption. Explains the kind of utility the statement is about, e.g.. "gas", "electricity", "telephone" + 0..1 + Consumption + Utility Statement Type Code + Code + Code. Type + Electricity + + + + + + + + + ASBIE + Consumption. Main_ Period. Period + The period of consumption. + 0..1 + Consumption + Main + Period + Period + Period + + + + + + + + + ASBIE + Consumption. Allowance Charge + An allowance or charges that may apply with this consumption. + 0..n + Consumption + Allowance Charge + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Consumption. Tax Total + The total of taxes for each tax type covering the consumption. + 0..n + Consumption + Tax Total + Tax Total + Tax Total + + + + + + + + + ASBIE + Consumption. Energy Water Supply + The details of any energy or water consumption. + 0..1 + Consumption + Energy Water Supply + Energy Water Supply + Energy Water Supply + + + + + + + + + ASBIE + Consumption. Telecommunications Supply + The details of any telecommunications consumption. + 0..1 + Consumption + Telecommunications Supply + Telecommunications Supply + Telecommunications Supply + + + + + + + + + ASBIE + Consumption. Legal_ Monetary Total. Monetary Total + The total amount payable on this consumption, including any allowances, charges, or taxes. + 1 + Consumption + Legal + Monetary Total + Monetary Total + Monetary Total + + + + + + + + + + + ABIE + Consumption Average. Details + A class to define an average consumption as a monetary amount. + Consumption Average + + + + + + + + + BBIE + Consumption Average. Average_ Amount. Amount + The average monetary amount of the consumption. + 0..1 + Consumption Average + Average + Amount + Amount + Amount. Type + 1.65 + + + + + + + + + BBIE + Consumption Average. Description. Text + A description of the average consumed. + 0..n + Consumption Average + Description + Text + Text. Type + Average price incl. value added tax per kilowatt-hour in the billing period. + + + + + + + + + + + ABIE + Consumption Correction. Details + The Statement of correction, for examples heating correction. + Consumption Correction + + + + + + + + + BBIE + Consumption Correction. Correction Type. Text + Statement for the correction type. + 0..1 + Consumption Correction + Correction Type + Text + Text. Type + Heating Correction + + + + + + + + + BBIE + Consumption Correction. Correction Type Code. Code + Statement at the code for the correction type. + 0..1 + Consumption Correction + Correction Type Code + Code + Code. Type + HeatingCorrection + + + + + + + + + BBIE + Consumption Correction. Meter Number. Text + Statement for meter number. + 0..1 + Consumption Correction + Meter Number + Text + Text. Type + 530071575 + + + + + + + + + BBIE + Consumption Correction. Gas Pressure. Quantity + Correction of the gas pressure. + 0..1 + Consumption Correction + Gas Pressure + Quantity + Quantity. Type + + + + + + + + + BBIE + Consumption Correction. Actual_ Temperature Reduction. Quantity + Statement for the actuel heating correction temperature. + 0..1 + Consumption Correction + Actual + Temperature Reduction + Quantity + Quantity. Type + -36.69 + + + + + + + + + BBIE + Consumption Correction. Normal_ Temperature Reduction. Quantity + Statement for the standard for heating correction temperature. + 0..1 + Consumption Correction + Normal + Temperature Reduction + Quantity + Quantity. Type + -37.00 + + + + + + + + + BBIE + Consumption Correction. Difference_ Temperature Reduction. Quantity + Deviation from standard heating correction. + 0..1 + Consumption Correction + Difference + Temperature Reduction + Quantity + Quantity. Type + 0.31 + + + + + + + + + BBIE + Consumption Correction. Description. Text + Description related to the corrections. + 0..n + Consumption Correction + Description + Text + Text. Type + + + + + + + + + BBIE + Consumption Correction. Correction Unit Amount. Amount + Correction per MWH per degree C. + 0..1 + Consumption Correction + Correction Unit Amount + Amount + Amount. Type + 0.0000 + + + + + + + + + BBIE + Consumption Correction. Consumption Energy. Quantity + Your consumpt for district heating energy. + 0..1 + Consumption Correction + Consumption Energy + Quantity + Quantity. Type + 563.6240 + + + + + + + + + BBIE + Consumption Correction. Consumption Water. Quantity + Your consumpt for district heating water. + 0..1 + Consumption Correction + Consumption Water + Quantity + Quantity. Type + 13212.14 + + + + + + + + + BBIE + Consumption Correction. Correction Amount. Amount + Your correction for heating correction. + 0..1 + Consumption Correction + Correction Amount + Amount + Amount. Type + 0.00 + + + + + + + + + + + ABIE + Consumption History. Details + A class to describe the measurement of a type of consumption during a particular period, used for the subscriber to get an overview of his consumption + Consumption History + + + + + + + + + BBIE + Consumption History. Meter Number. Text + A text identifier for the meter measuring the consumption. + 0..1 + Consumption History + Meter Number + Text + Text. Type + 61722x + + + + + + + + + BBIE + Consumption History. Quantity + The quantity consumed. + 1 + Consumption History + Quantity + Quantity + Quantity. Type + 7621.00 + + + + + + + + + BBIE + Consumption History. Amount + The monetary amount to be charged for the quantity consumed. + 0..1 + Consumption History + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Consumption History. Consumption Level Code. Code + The consumption level, expressed as a code used explain the consumption quantity, e.g.. diversion from the normal. + 0..1 + Consumption History + Consumption Level Code + Code + Code. Type + B + + + + + + + + + BBIE + Consumption History. Consumption Level Text. Text + The consumption level, expressed as text, used explain the consumption quantity, e.g.. diversion from the normal. + 0..1 + Consumption History + Consumption Level Text + Text + Text. Type + Average + + + + + + + + + BBIE + Consumption History. Description. Text + Text describing the consumption itself. + 0..n + Consumption History + Description + Text + Text. Type + 2004/2005 + + + + + + + + + ASBIE + Consumption History. Period + The period during which the consumption took place. + 1 + Consumption History + Period + Period + Period + + + + + + + + + + + ABIE + Consumption Line. Details + A class to describe a line item for utility consumption. To specify more than one utility item, use separate consumption lines. + Consumption Line + + + + + + + + + BBIE + Consumption Line. Identifier + An identifier for this consumption line. + 1 + Consumption Line + Identifier + Identifier + Identifier. Type + 1 + + + + + + + + + BBIE + Consumption Line. Parent_ Document Line Reference Identifier. Identifier + An identifier for the transaction line on a related document (such as an invoice) that covers this consumption line. + 0..1 + Consumption Line + Parent + Document Line Reference Identifier + Identifier + Identifier. Type + Consumption + + + + + + + + + BBIE + Consumption Line. Invoiced_ Quantity. Quantity + The quantity invoiced. + 1 + Consumption Line + Invoiced + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Consumption Line. Line Extension Amount. Amount + The monetary amount, including discount, to be charged for this consumption line. + 1 + Consumption Line + Line Extension Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Consumption Line. Period + The period of time covered by this consumption line. + 0..1 + Consumption Line + Period + Period + Period + + + + + + + + + ASBIE + Consumption Line. Delivery + A delivery of the utility item on this consumption line. + 0..n + Consumption Line + Delivery + Delivery + Delivery + + + + + + + + + ASBIE + Consumption Line. Allowance Charge + An allowance or charge that applies to this consumption line. + 0..n + Consumption Line + Allowance Charge + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Consumption Line. Tax Total + A total amount of taxes of a particular kind applicable to this consumption line. + 0..n + Consumption Line + Tax Total + Tax Total + Tax Total + + + + + + + + + ASBIE + Consumption Line. Utility Item + The utility item consumed. + 1 + Consumption Line + Utility Item + Utility Item + Utility Item + + + + + + + + + ASBIE + Consumption Line. Price + The price associated with this consumption line, expressed in a data structure containing multiple properties. + 0..1 + Consumption Line + Price + Price + Price + + + + + + + + + ASBIE + Consumption Line. Unstructured Price + The price associated with this consumption line expressed in a less structured form that includes just the amount and the time of use. + 0..1 + Consumption Line + Unstructured Price + Unstructured Price + Unstructured Price + + + + + + + + + + + ABIE + Consumption Point. Details + A class to define the point of consumption for a utility, such as a meter. + Consumption Point + + + + + + + + + BBIE + Consumption Point. Identifier + An identifier for this point of consumption. + 1 + Consumption Point + Identifier + Identifier + Identifier. Type + 7411013716x + + + + + + + + + BBIE + Consumption Point. Description. Text + Text describing this consumption point. + 0..n + Consumption Point + Description + Text + Text. Type + Additional informations concerning the consumption point + + + + + + + + + BBIE + Consumption Point. Subscriber Identifier. Identifier + An identifier for the subscriber responsible for the consumption at this consumption point. + 0..1 + Consumption Point + Subscriber Identifier + Identifier + Identifier. Type + 98143211 + + + + + + + + + BBIE + Consumption Point. Subscriber Type. Text + The type of subscriber, expressed as text. + 0..1 + Consumption Point + Subscriber Type + Text + Text. Type + + + + + + + + + BBIE + Consumption Point. Subscriber Type Code. Code + The type of subscriber, expressed as a code. + 0..1 + Consumption Point + Subscriber Type Code + Code + Code. Type + APL + + + + + + + + + BBIE + Consumption Point. Total_ Delivered Quantity. Quantity + The total quantity delivered, calculated at this consumption point. + 0..1 + Consumption Point + Total + Delivered Quantity + Quantity + Quantity. Type + 5761.00 + + + + + + + + + ASBIE + Consumption Point. Address + The address of this consumption point. + 0..1 + Consumption Point + Address + Address + Address + + + + + + + + + ASBIE + Consumption Point. Web Site Access + Access information for the website of this consumption point. + 0..1 + Consumption Point + Web Site Access + Web Site Access + Web Site Access + + + + + + + + + ASBIE + Consumption Point. Utility_ Meter. Meter + A meter at this consumption point. + 0..n + Consumption Point + Utility + Meter + Meter + Meter + + + + + + + + + + + ABIE + Consumption Report. Details + A class to describe utility consumption, including details of the environment in which consumption takes place. + Consumption Report + + + + + + + + + BBIE + Consumption Report. Identifier + An identifier for this consumption report. + 1 + Consumption Report + Identifier + Identifier + Identifier. Type + n/a + + + + + + + + + BBIE + Consumption Report. Consumption Type. Text + The type of consumption, expressed as text. + 0..1 + Consumption Report + Consumption Type + Text + Text. Type + Consumption + + + + + + + + + BBIE + Consumption Report. Consumption Type Code. Code + The type of consumption, expressed as a code. + 0..1 + Consumption Report + Consumption Type Code + Code + Code. Type + Consumption + + + + + + + + + BBIE + Consumption Report. Description. Text + Text reporting utility consumption. + 0..n + Consumption Report + Description + Text + Text. Type + This report contain the latest year consumption + + + + + + + + + BBIE + Consumption Report. Total_ Consumed Quantity. Quantity + The total quantity consumed. + 0..1 + Consumption Report + Total + Consumed Quantity + Quantity + Quantity. Type + 20479.00 + + + + + + + + + BBIE + Consumption Report. Basic_ Consumed Quantity. Quantity + The basic quantity consumed, excluding additional consumption. + 0..1 + Consumption Report + Basic + Consumed Quantity + Quantity + Quantity. Type + 20000.00 + + + + + + + + + BBIE + Consumption Report. Resident_ Occupants Numeric. Numeric + The number of people occupying the residence covered by this report. + 0..1 + Consumption Report + Resident + Occupants Numeric + Numeric + Numeric. Type + 4.0 + + + + + + + + + BBIE + Consumption Report. Consumers_ Energy Level Code. Code + The level of energy consumed, compared to the average for this residence type and the number of people living in the residence, expressed as a code. + 0..1 + Consumption Report + Consumers + Energy Level Code + Code + Code. Type + B + + + + + + + + + BBIE + Consumption Report. Consumers_ Energy Level. Text + The level of energy consumed, compared to the average for this residence type and the number of people living in the residence, expressed as text. + 0..1 + Consumption Report + Consumers + Energy Level + Text + Text. Type + Middel + + + + + + + + + BBIE + Consumption Report. Residence Type. Text + The type of residence (house, apartment, etc.) covered in this report, expressed as text. + 0..1 + Consumption Report + Residence Type + Text + Text. Type + House + + + + + + + + + BBIE + Consumption Report. Residence Type Code. Code + The type of residence (house, apartment, etc.) covered in this report, expressed as a code. + 0..1 + Consumption Report + Residence Type Code + Code + Code. Type + House + + + + + + + + + BBIE + Consumption Report. Heating Type. Text + The type of heating in the residence covered in this report, expressed as text. + 0..1 + Consumption Report + Heating Type + Text + Text. Type + District heating + + + + + + + + + BBIE + Consumption Report. Heating Type Code. Code + The type of heating in the residence covered in this report, expressed as a code. + 0..1 + Consumption Report + Heating Type Code + Code + Code. Type + DistrictHeating + + + + + + + + + ASBIE + Consumption Report. Period + The period of consumption covered in this report. + 0..1 + Consumption Report + Period + Period + Period + + + + + + + + + ASBIE + Consumption Report. Guidance_ Document Reference. Document Reference + A reference to a document providing an explanation of this kind of report. + 0..1 + Consumption Report + Guidance + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Consumption Report. Document Reference + A reference to some other document (for example, this report in another format). + 0..1 + Consumption Report + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Consumption Report. Consumption Report Reference + A reference to a previous consumption report. + 0..n + Consumption Report + Consumption Report Reference + Consumption Report Reference + Consumption Report Reference + + + + + + + + + ASBIE + Consumption Report. Consumption History + A report describing historical parameters relating to a specific instance of consumption. + 0..n + Consumption Report + Consumption History + Consumption History + Consumption History + + + + + + + + + + + ABIE + Consumption Report Reference. Details + A class to define a reference to an earlier consumption report (e.g., last year's consumption). + Consumption Report Reference + + + + + + + + + BBIE + Consumption Report Reference. Consumption_ Report Identifier. Identifier + An identifier for the referenced consumption report. + 1 + Consumption Report Reference + Consumption + Report Identifier + Identifier + Identifier. Type + n/a + + + + + + + + + BBIE + Consumption Report Reference. Consumption Type. Text + The reported consumption type, expressed as text. + 0..1 + Consumption Report Reference + Consumption Type + Text + Text. Type + Consumption + + + + + + + + + BBIE + Consumption Report Reference. Consumption Type Code. Code + The reported consumption type, expressed as a code. + 0..1 + Consumption Report Reference + Consumption Type Code + Code + Code. Type + Consumption + + + + + + + + + BBIE + Consumption Report Reference. Total_ Consumed Quantity. Quantity + The total quantity consumed during the period of the referenced report. + 1 + Consumption Report Reference + Total + Consumed Quantity + Quantity + Quantity. Type + 20479.00 + + + + + + + + + ASBIE + Consumption Report Reference. Period + The period of consumption covered by the referenced report. + 1 + Consumption Report Reference + Period + Period + Period + + + + + + + + + + + ABIE + Contact. Details + A class to describe a contactable person or department in an organization. + Contact + + + + + + + + + BBIE + Contact. Identifier + An identifier for this contact. + 0..1 + Contact + Identifier + Identifier + Identifier. Type + Receivals Clerk + + + + + + + + + BBIE + Contact. Name + The name of this contact. It is recommended that this be used for a functional name and not a personal name. + 0..1 + Contact + Name + Name + Name. Type + Delivery Dock + + + + + + + + + BBIE + Contact. Telephone. Text + The primary telephone number of this contact. + 0..1 + Contact + Telephone + Text + Text. Type + + + + + + + + + BBIE + Contact. Telefax. Text + The primary fax number of this contact. + 0..1 + Contact + Telefax + Text + Text. Type + + + + + + + + + BBIE + Contact. Electronic_ Mail. Text + The primary email address of this contact. + 0..1 + Contact + Electronic + Mail + Text + Text. Type + + + + + + + + + BBIE + Contact. Note. Text + Free-form text conveying information that is not contained explicitly in other structures; in particular, a textual description of the circumstances under which this contact can be used (e.g., "emergency" or "after hours"). + 0..n + Contact + Note + Text + Text. Type + + + + + + + + + ASBIE + Contact. Other_ Communication. Communication + Another means of communication with this contact. + 0..n + Contact + Other + Communication + Communication + Communication + + + + + + + + + + + ABIE + Contract. Details + A class to describe a contract. + Contract + + + + + + + + + BBIE + Contract. Identifier + An identifier for this contract. + 0..1 + Contract + Identifier + Identifier + Identifier. Type + CC23 + + + + + + + + + BBIE + Contract. Issue Date. Date + The date on which this contract was issued. + 0..1 + Contract + Issue Date + Date + Date. Type + + + + + + + + + BBIE + Contract. Issue Time. Time + The time at which this contract was issued. + 0..1 + Contract + Issue Time + Time + Time. Type + + + + + + + + + BBIE + Contract. Nomination Date. Date + In a transportation contract, the deadline date by which the services referred to in the transport execution plan have to be booked. For example, if this service is a carrier service scheduled for Wednesday 16 February 2011 at 10 a.m. CET, the nomination date might be Tuesday15 February 2011. + 0..1 + Contract + Nomination Date + Date + Date. Type + + + + + + + + + BBIE + Contract. Nomination Time. Time + In a transportation contract, the deadline time by which the services referred to in the transport execution plan have to be booked. For example, if this service is a carrier service scheduled for Wednesday 16 February 2011 at 10 a.m. CET, the nomination date might be Tuesday15 February 2011 and the nomination time 4 p.m. at the latest. + 0..1 + Contract + Nomination Time + Time + Time. Type + + + + + + + + + BBIE + Contract. Contract Type Code. Code + The type of this contract, expressed as a code, such as "Cost plus award fee" and "Cost plus fixed fee" from UNCEFACT Contract Type code list. + 0..1 + Contract + Contract Type Code + Code + Code. Type + + + + + + + + + BBIE + Contract. Contract Type. Text + The type of this contract, expressed as text, such as "Cost plus award fee" and "Cost plus fixed fee" from UNCEFACT Contract Type code list. + 0..1 + Contract + Contract Type + Text + Text. Type + + + + + + + + + BBIE + Contract. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Contract + Note + Text + Text. Type + Remarks + + + + + + + + + BBIE + Contract. Version. Identifier + An identifier for the current version of this contract. + 0..1 + Contract + Version + Identifier + Identifier. Type + + + + + + + + + BBIE + Contract. Description. Text + Text describing this contract. + 0..n + Contract + Description + Text + Text. Type + + + + + + + + + ASBIE + Contract. Validity_ Period. Period + The period during which this contract is valid. + 0..1 + Contract + Validity + Period + Period + Period + + + + + + + + + ASBIE + Contract. Contract_ Document Reference. Document Reference + A reference to a contract document. + 0..n + Contract + Contract + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Contract. Nomination_ Period. Period + In a transportation contract, the period required to book the services specified in the contract before the services can begin. + 0..1 + Contract + Nomination + Period + Period + Period + + + + + + + + + ASBIE + Contract. Contractual_ Delivery. Delivery + In a transportation contract, the delivery of the services required to book the services specified in the contract. + 0..1 + Contract + Contractual + Delivery + Delivery + Delivery + + + + + + + + + + + ABIE + Contract Execution Requirement. Details + A class to describe a requirement for execution of a contract. + Contract Execution Requirement + + + + + + + + + BBIE + Contract Execution Requirement. Name + A name for this requirement. + 0..n + Contract Execution Requirement + Name + Name + Name. Type + + + + + + + + + BBIE + Contract Execution Requirement. Execution Requirement Code. Code + A code signifying the type of party independent of its role. + 0..1 + Contract Execution Requirement + Execution Requirement Code + Code + Code. Type + + + + + + + + + BBIE + Contract Execution Requirement. Description. Text + Text describing this requirement. + 0..n + Contract Execution Requirement + Description + Text + Text. Type + + + + + + + + + + + ABIE + Contract Extension. Details + A class to describe possible extensions to a contract. + Contract Extension + + + + + + + + + BBIE + Contract Extension. Options Description. Text + A description for the possible options that can be carried out during the execution of the contract. + 0..n + Contract Extension + Options Description + Text + Text. Type + + + + + + + + + BBIE + Contract Extension. Minimum_ Number. Numeric + The fixed minimum number of contract extensions or renewals. + 0..1 + Contract Extension + Minimum + Number + Numeric + Numeric. Type + + + + + + + + + BBIE + Contract Extension. Maximum_ Number. Numeric + The maximum allowed number of contract extensions. + 0..1 + Contract Extension + Maximum + Number + Numeric + Numeric. Type + + + + + + + + + ASBIE + Contract Extension. Option Validity_ Period. Period + The period during which the option for extending the contract is available. + 0..1 + Contract Extension + Option Validity + Period + Period + Period + + + + + + + + + ASBIE + Contract Extension. Renewal + The period allowed for each contract extension. + 0..n + Contract Extension + Renewal + Renewal + Renewal + + + + + + + + + + + ABIE + Contracting Activity. Details + The nature of the type of business of the organization. + Contracting Activity + + + + + + + + + BBIE + Contracting Activity. Activity Type Code. Code + A code specifying the nature of the type of business of the organization. + 0..1 + Contracting Activity + Activity Type Code + Code + Code. Type + + + + + + + + + BBIE + Contracting Activity. Activity Type. Text + The nature of the type of business of the organization, expressed as text. + 0..1 + Contracting Activity + Activity Type + Text + Text. Type + + + + + + + + + + + ABIE + Contracting Party. Details + A class to describe an individual, a group, or a body having a procurement role in a tendering process. + Contracting Party + + + + + + + + + BBIE + Contracting Party. Buyer Profile_ URI. Identifier + The buyer profile is typically located on a web site where the contracting party publishes its procurement opportunities + 0..1 + Contracting Party + Buyer Profile + URI + Identifier + Identifier. Type + Buyer Profile + + + + + + + + + ASBIE + Contracting Party. Contracting Party Type + The type of contracting party that is independent of its role. + 0..n + Contracting Party + Contracting Party Type + Contracting Party Type + Contracting Party Type + + + + + + + + + ASBIE + Contracting Party. Contracting Activity + The nature of the type of business of the organization + 0..n + Contracting Party + Contracting Activity + Contracting Activity + Contracting Activity + + + + + + + + + ASBIE + Contracting Party. Party + The contracting party itself. + 1 + Contracting Party + Party + Party + Party + + + + + + + + + + + ABIE + Contracting Party Type. Details + The type of contracting party that is independent of its role. + Contracting Party Type + + + + + + + + + BBIE + Contracting Party Type. Party Type Code. Code + A code specifying the type of party that is independent of its role. + 0..1 + Contracting Party Type + Party Type Code + Code + Code. Type + + + + + + + + + BBIE + Contracting Party Type. Party Type. Text + The type of party that is independent of its role, expressed as text. + 0..1 + Contracting Party Type + Party Type + Text + Text. Type + + + + + + + + + + + ABIE + Corporate Registration Scheme. Details + A class to describe a scheme for corporate registration. + Corporate Registration Scheme + + + + + + + + + BBIE + Corporate Registration Scheme. Identifier + An identifier for this registration scheme. + 0..1 + Corporate Registration Scheme + Identifier + Identifier + Identifier. Type + ASIC in Australia + + + + + + + + + BBIE + Corporate Registration Scheme. Name + The name of this registration scheme. + 0..1 + Corporate Registration Scheme + Name + Name + Name. Type + Australian Securities and Investment Commission in Australia + + + + + + + + + BBIE + Corporate Registration Scheme. Corporate Registration Type Code. Code + A code signifying the type of this registration scheme. + 0..1 + Corporate Registration Scheme + Corporate Registration Type Code + Code + Code. Type + ACN + + + + + + + + + ASBIE + Corporate Registration Scheme. Jurisdiction Region_ Address. Address + A geographic area in which this registration scheme applies. + 0..n + Corporate Registration Scheme + Jurisdiction Region + Address + Address + Address + England , Wales + + + + + + + + + + + ABIE + Country. Details + A class to describe a country. + Country + + + + + + + + + BBIE + Country. Identification Code. Code + A code signifying this country. + 0..1 + Country + Identification Code + Code + Country Identification + Country Identification_ Code. Type + + + + + + + + + BBIE + Country. Name + The name of this country. + 0..1 + Country + Name + Name + Name. Type + SOUTH AFRICA + + + + + + + + + + + ABIE + Credit Account. Details + A class to identify a credit account for sales on account. + Credit Account + + + + + + + + + BBIE + Credit Account. Account Identifier. Identifier + An identifier for this credit account. + 1 + Credit Account + Account Identifier + Identifier + Identifier. Type + Customer Code 29 + + + + + + + + + + + ABIE + Credit Note Line. Details + A class to define a line in a Credit Note or Self Billed Credit Note. + Credit Note Line + + + + + + + + + BBIE + Credit Note Line. Identifier + An identifier for this credit note line. + 1 + Credit Note Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Credit Note Line. UUID. Identifier + A universally unique identifier for this credit note line. + 0..1 + Credit Note Line + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Credit Note Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Credit Note Line + Note + Text + Text. Type + + + + + + + + + BBIE + Credit Note Line. Credited_ Quantity. Quantity + The quantity of items credited in this credit note line. + 0..1 + Credit Note Line + Credited + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Credit Note Line. Line Extension Amount. Amount + The total amount for this credit note line, including allowance charges but exclusive of taxes. + 0..1 + Credit Note Line + Line Extension Amount + Amount + Amount. Type + + + + + + + + + BBIE + Credit Note Line. Tax Point Date. Date + The date of this credit note line, used to indicate the point at which tax becomes applicable. + 0..1 + Credit Note Line + Tax Point Date + Date + Date. Type + + + + + + + + + BBIE + Credit Note Line. Accounting Cost Code. Code + The buyer's accounting cost centre for this credit note line, expressed as a code. + 0..1 + Credit Note Line + Accounting Cost Code + Code + Code. Type + + + + + + + + + BBIE + Credit Note Line. Accounting Cost. Text + The buyer's accounting cost centre for this credit note line, expressed as text. + 0..1 + Credit Note Line + Accounting Cost + Text + Text. Type + + + + + + + + + BBIE + Credit Note Line. Payment Purpose Code. Code + A code signifying the business purpose for this payment. + 0..1 + Credit Note Line + Payment Purpose Code + Code + Code. Type + + + + + + + + + BBIE + Credit Note Line. Free Of Charge_ Indicator. Indicator + An indicator that this credit note line is free of charge (true) or not (false). The default is false. + 0..1 + Credit Note Line + Free Of Charge + Indicator + Indicator + Indicator. Type + + + + + + + + + ASBIE + Credit Note Line. Invoice_ Period. Period + An invoice period to which this credit note line applies. + 0..n + Credit Note Line + Invoice + Period + Period + Period + + + + + + + + + ASBIE + Credit Note Line. Order Line Reference + A reference to an order line associated with this credit note line. + 0..n + Credit Note Line + Order Line Reference + Order Line Reference + Order Line Reference + + + + + + + + + ASBIE + Credit Note Line. Discrepancy_ Response. Response + A reason for the credit. + 0..n + Credit Note Line + Discrepancy + Response + Response + Response + + + + + + + + + ASBIE + Credit Note Line. Despatch_ Line Reference. Line Reference + A reference to a despatch line associated with this credit note line. + 0..n + Credit Note Line + Despatch + Line Reference + Line Reference + Line Reference + + + + + + + + + ASBIE + Credit Note Line. Receipt_ Line Reference. Line Reference + A reference to a receipt line associated with this credit note line. + 0..n + Credit Note Line + Receipt + Line Reference + Line Reference + Line Reference + + + + + + + + + ASBIE + Credit Note Line. Billing Reference + A reference to a billing document associated with this credit note line. + 0..n + Credit Note Line + Billing Reference + Billing Reference + Billing Reference + + + + + + + + + ASBIE + Credit Note Line. Document Reference + A reference to a document associated with this credit note line. + 0..n + Credit Note Line + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Credit Note Line. Pricing Reference + A reference to pricing and item location information associated with this credit note line. + 0..1 + Credit Note Line + Pricing Reference + Pricing Reference + Pricing Reference + + + + + + + + + ASBIE + Credit Note Line. Originator_ Party. Party + The party who originated the Order to which the Credit Note is related. + 0..1 + Credit Note Line + Originator + Party + Party + Party + + + + + + + + + ASBIE + Credit Note Line. Delivery + A delivery associated with this credit note line. + 0..n + Credit Note Line + Delivery + Delivery + Delivery + + + + + + + + + ASBIE + Credit Note Line. Payment Terms + A specification of payment terms associated with this credit note line. + 0..n + Credit Note Line + Payment Terms + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Credit Note Line. Tax Total + A total amount of taxes of a particular kind applicable to this credit note line. + 0..n + Credit Note Line + Tax Total + Tax Total + Tax Total + + + + + + + + + ASBIE + Credit Note Line. Allowance Charge + An allowance or charge associated with this credit note. + 0..n + Credit Note Line + Allowance Charge + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Credit Note Line. Item + The item associated with this credit note line. + 0..1 + Credit Note Line + Item + Item + Item + + + + + + + + + ASBIE + Credit Note Line. Price + The price of the item associated with this credit note line. + 0..1 + Credit Note Line + Price + Price + Price + Unit Price, Base Price + + + + + + + + + ASBIE + Credit Note Line. Delivery Terms + Terms and conditions of a delivery associated with this credit note line. + 0..n + Credit Note Line + Delivery Terms + Delivery Terms + Delivery Terms + + + + + + + + + ASBIE + Credit Note Line. Sub_ Credit Note Line. Credit Note Line + A class defining one or more Credit Note Lines detailing the credit note line. + 0..n + Credit Note Line + Sub + Credit Note Line + Credit Note Line + Credit Note Line + + + + + + + + + ASBIE + Credit Note Line. Item_ Price Extension. Price Extension + The price extension, calculated by multiplying the price per unit by the quantity of items on this credit note line. + 0..1 + Credit Note Line + Item + Price Extension + Price Extension + Price Extension + + + + + + + + + + + ABIE + Customer Party. Details + A class to describe a customer party. + Customer Party + + + + + + + + + BBIE + Customer Party. Customer Assigned_ Account Identifier. Identifier + An identifier for the customer's account, assigned by the customer itself. + 0..1 + Customer Party + Customer Assigned + Account Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Customer Party. Supplier Assigned_ Account Identifier. Identifier + An identifier for the customer's account, assigned by the supplier. + 0..1 + Customer Party + Supplier Assigned + Account Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Customer Party. Additional_ Account Identifier. Identifier + An identifier for the customer's account, assigned by a third party. + 0..n + Customer Party + Additional + Account Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Customer Party. Party + The customer party itself. + 0..1 + Customer Party + Party + Party + Party + + + + + + + + + ASBIE + Customer Party. Delivery_ Contact. Contact + A customer contact for deliveries. + 0..1 + Customer Party + Delivery + Contact + Contact + Contact + + + + + + + + + ASBIE + Customer Party. Accounting_ Contact. Contact + A customer contact for accounting. + 0..1 + Customer Party + Accounting + Contact + Contact + Contact + + + + + + + + + ASBIE + Customer Party. Buyer_ Contact. Contact + A customer contact for purchasing. + 0..1 + Customer Party + Buyer + Contact + Contact + Contact + + + + + + + + + + + ABIE + Customs Declaration. Details + A class describing identifiers or references relating to customs procedures. + Customs Declaration + Movement Reference Number, Local Reference Number + + + + + + + + + BBIE + Customs Declaration. Identifier + An identifier associated with customs related procedures. + 1 + Customs Declaration + Identifier + Identifier + Identifier. Type + CUST001 3333-44-123 + + + + + + + + + ASBIE + Customs Declaration. Issuer_ Party. Party + Describes the party issuing the customs declaration. + 0..1 + Customs Declaration + Issuer + Party + Party + Party + + + + + + + + + + + ABIE + Debit Note Line. Details + A class to define a line in a Debit Note. + Debit Note Line + + + + + + + + + BBIE + Debit Note Line. Identifier + An identifier for this debit note line. + 1 + Debit Note Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Debit Note Line. UUID. Identifier + A universally unique identifier for this debit note line. + 0..1 + Debit Note Line + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Debit Note Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Debit Note Line + Note + Text + Text. Type + + + + + + + + + BBIE + Debit Note Line. Debited_ Quantity. Quantity + The quantity of Items debited in this debit note line. + 0..1 + Debit Note Line + Debited + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Debit Note Line. Line Extension Amount. Amount + The total amount for this debit note line, including allowance charges but net of taxes. + 1 + Debit Note Line + Line Extension Amount + Amount + Amount. Type + + + + + + + + + BBIE + Debit Note Line. Tax Point Date. Date + The date of this debit note line, used to indicate the point at which tax becomes applicable. + 0..1 + Debit Note Line + Tax Point Date + Date + Date. Type + + + + + + + + + BBIE + Debit Note Line. Accounting Cost Code. Code + The buyer's accounting cost centre for this debit note line, expressed as a code. + 0..1 + Debit Note Line + Accounting Cost Code + Code + Code. Type + + + + + + + + + BBIE + Debit Note Line. Accounting Cost. Text + The buyer's accounting cost centre for this debit note line, expressed as text. + 0..1 + Debit Note Line + Accounting Cost + Text + Text. Type + + + + + + + + + BBIE + Debit Note Line. Payment Purpose Code. Code + A code signifying the business purpose for this payment. + 0..1 + Debit Note Line + Payment Purpose Code + Code + Code. Type + + + + + + + + + ASBIE + Debit Note Line. Discrepancy_ Response. Response + A reason for the debit. + 0..n + Debit Note Line + Discrepancy + Response + Response + Response + + + + + + + + + ASBIE + Debit Note Line. Despatch_ Line Reference. Line Reference + A reference to a despatch line associated with this debit note line. + 0..n + Debit Note Line + Despatch + Line Reference + Line Reference + Line Reference + + + + + + + + + ASBIE + Debit Note Line. Receipt_ Line Reference. Line Reference + A reference to a receipt line associated with this debit note line. + 0..n + Debit Note Line + Receipt + Line Reference + Line Reference + Line Reference + + + + + + + + + ASBIE + Debit Note Line. Billing Reference + A reference to a billing document associated with this debit note line. + 0..n + Debit Note Line + Billing Reference + Billing Reference + Billing Reference + + + + + + + + + ASBIE + Debit Note Line. Document Reference + A reference to a document associated with this debit note line. + 0..n + Debit Note Line + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Debit Note Line. Pricing Reference + A reference to pricing and item location information associated with this debit note line. + 0..1 + Debit Note Line + Pricing Reference + Pricing Reference + Pricing Reference + + + + + + + + + ASBIE + Debit Note Line. Delivery + A delivery associated with this debit note line. + 0..n + Debit Note Line + Delivery + Delivery + Delivery + + + + + + + + + ASBIE + Debit Note Line. Tax Total + A total amount of taxes of a particular kind applicable to this debit note line. + 0..n + Debit Note Line + Tax Total + Tax Total + Tax Total + + + + + + + + + ASBIE + Debit Note Line. Allowance Charge + An allowance or charge associated with this debit note. + 0..n + Debit Note Line + Allowance Charge + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Debit Note Line. Item + The item associated with this debit note line. + 0..1 + Debit Note Line + Item + Item + Item + + + + + + + + + ASBIE + Debit Note Line. Price + The price of the item associated with this debit note line. + 0..1 + Debit Note Line + Price + Price + Price + Unit Price, Base Price + + + + + + + + + ASBIE + Debit Note Line. Sub_ Debit Note Line. Debit Note Line + A recursive description of a debit note line subsidiary to this debit note line. + 0..n + Debit Note Line + Sub + Debit Note Line + Debit Note Line + Debit Note Line + + + + + + + + + + + ABIE + Declaration. Details + A class to describe a declaration by an economic operator of certain characteristics or capabilities in fulfilment of requirements specified in a call for tenders. + Declaration + + + + + + + + + BBIE + Declaration. Name + The name of this declaration. + 0..n + Declaration + Name + Name + Name. Type + + + + + + + + + BBIE + Declaration. Declaration Type Code. Code + A code signifying the type of this declaration. + 0..1 + Declaration + Declaration Type Code + Code + Code. Type + + + + + + + + + BBIE + Declaration. Description. Text + Text describing this declaration. + 0..n + Declaration + Description + Text + Text. Type + + + + + + + + + ASBIE + Declaration. Evidence Supplied + The evidence supporting this declaration. + 0..n + Declaration + Evidence Supplied + Evidence Supplied + Evidence Supplied + + + + + + + + + + + ABIE + Delivery. Details + A class to describe a delivery. + Delivery + + + + + + + + + BBIE + Delivery. Identifier + An identifier for this delivery. + 0..1 + Delivery + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Delivery. Quantity + The quantity of items, child consignments, shipments in this delivery. + 0..1 + Delivery + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Delivery. Minimum_ Quantity. Quantity + The minimum quantity of items, child consignments, shipments in this delivery. + 0..1 + Delivery + Minimum + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Delivery. Maximum_ Quantity. Quantity + The maximum quantity of items, child consignments, shipments in this delivery. + 0..1 + Delivery + Maximum + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Delivery. Actual_ Delivery Date. Date + The actual date of delivery. + 0..1 + Delivery + Actual + Delivery Date + Date + Date. Type + + + + + + + + + BBIE + Delivery. Actual_ Delivery Time. Time + The actual time of delivery. + 0..1 + Delivery + Actual + Delivery Time + Time + Time. Type + + + + + + + + + BBIE + Delivery. Latest_ Delivery Date. Date + The latest date of delivery allowed by the buyer. + 0..1 + Delivery + Latest + Delivery Date + Date + Date. Type + + + + + + + + + BBIE + Delivery. Latest_ Delivery Time. Time + The latest time of delivery allowed by the buyer. + 0..1 + Delivery + Latest + Delivery Time + Time + Time. Type + + + + + + + + + BBIE + Delivery. Release. Identifier + An identifier used for approval of access to delivery locations (e.g., port terminals). + 0..1 + Delivery + Release + Identifier + Identifier. Type + + + + + + + + + BBIE + Delivery. Tracking Identifier. Identifier + The delivery Tracking ID (for transport tracking). + 0..1 + Delivery + Tracking Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Delivery. Delivery_ Address. Address + The delivery address. + 0..1 + Delivery + Delivery + Address + Address + Address + + + + + + + + + ASBIE + Delivery. Delivery_ Location. Location + The delivery location. + 0..1 + Delivery + Delivery + Location + Location + Location + + + + + + + + + ASBIE + Delivery. Alternative Delivery_ Location. Location + An alternative delivery location. + 0..1 + Delivery + Alternative Delivery + Location + Location + Location + + + + + + + + + ASBIE + Delivery. Requested Delivery_ Period. Period + The period requested for delivery. + 0..1 + Delivery + Requested Delivery + Period + Period + Period + + + + + + + + + ASBIE + Delivery. Promised Delivery_ Period. Period + The period promised for delivery. + 0..1 + Delivery + Promised Delivery + Period + Period + Period + + + + + + + + + ASBIE + Delivery. Estimated Delivery_ Period. Period + The period estimated for delivery. + 0..1 + Delivery + Estimated Delivery + Period + Period + Period + + + + + + + + + ASBIE + Delivery. Carrier_ Party. Party + The party responsible for delivering the goods. + 0..1 + Delivery + Carrier + Party + Party + Party + + + + + + + + + ASBIE + Delivery. Delivery_ Party. Party + The party to whom the goods are delivered. + 0..1 + Delivery + Delivery + Party + Party + Party + + + + + + + + + ASBIE + Delivery. Notify_ Party. Party + A party to be notified of this delivery. + 0..n + Delivery + Notify + Party + Party + Party + + + + + + + + + ASBIE + Delivery. Despatch + The despatch (pickup) associated with this delivery. + 0..1 + Delivery + Despatch + Despatch + Despatch + + + + + + + + + ASBIE + Delivery. Delivery Terms + Terms and conditions relating to the delivery. + 0..n + Delivery + Delivery Terms + Delivery Terms + Delivery Terms + + + + + + + + + ASBIE + Delivery. Minimum_ Delivery Unit. Delivery Unit + The minimum delivery unit for this delivery. + 0..1 + Delivery + Minimum + Delivery Unit + Delivery Unit + Delivery Unit + + + + + + + + + ASBIE + Delivery. Maximum_ Delivery Unit. Delivery Unit + The maximum delivery unit for this delivery. + 0..1 + Delivery + Maximum + Delivery Unit + Delivery Unit + Delivery Unit + + + + + + + + + ASBIE + Delivery. Shipment + The shipment being delivered. + 0..1 + Delivery + Shipment + Shipment + Shipment + + + + + + + + + + + ABIE + Delivery Terms. Details + A class for describing the terms and conditions applying to the delivery of goods. + Delivery Terms + + + + + + + + + BBIE + Delivery Terms. Identifier + An identifier for this description of delivery terms. + 0..1 + Delivery Terms + Identifier + Identifier + Identifier. Type + CIF, FOB, or EXW from the INCOTERMS Terms of Delivery. (2000 version preferred.) + + + + + + + + + BBIE + Delivery Terms. Special_ Terms. Text + A description of any terms or conditions relating to the delivery items. + 0..n + Delivery Terms + Special + Terms + Text + Text. Type + + + + + + + + + BBIE + Delivery Terms. Loss Risk Responsibility Code. Code + A code that identifies one of various responsibilities for loss risk in the execution of the delivery. + 0..1 + Delivery Terms + Loss Risk Responsibility Code + Code + Code. Type + + + + + + + + + BBIE + Delivery Terms. Loss Risk. Text + A description of responsibility for risk of loss in execution of the delivery, expressed as text. + 0..n + Delivery Terms + Loss Risk + Text + Text. Type + + + + + + + + + BBIE + Delivery Terms. Amount + The monetary amount covered by these delivery terms. + 0..1 + Delivery Terms + Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Delivery Terms. Delivery_ Location. Location + The location for the contracted delivery. + 0..1 + Delivery Terms + Delivery + Location + Location + Location + + + + + + + + + ASBIE + Delivery Terms. Allowance Charge + An allowance or charge covered by these delivery terms. + 0..1 + Delivery Terms + Allowance Charge + Allowance Charge + Allowance Charge + + + + + + + + + + + ABIE + Delivery Unit. Details + A class to describe a delivery unit. + Delivery Unit + + + + + + + + + BBIE + Delivery Unit. Batch Quantity. Quantity + The quantity of ordered Items that constitutes a batch for delivery purposes. + 1 + Delivery Unit + Batch Quantity + Quantity + Quantity. Type + 100 units , by the dozen + + + + + + + + + BBIE + Delivery Unit. Consumer_ Unit. Quantity + The quantity of units in the Delivery Unit expressed in the units used by the consumer. + 0..1 + Delivery Unit + Consumer + Unit + Quantity + Quantity. Type + packs of 10 + + + + + + + + + BBIE + Delivery Unit. Hazardous Risk_ Indicator. Indicator + An indication that the transported goods are subject to an international regulation concerning the carriage of dangerous goods (true) or not (false). + 0..1 + Delivery Unit + Hazardous Risk + Indicator + Indicator + Indicator. Type + Default is negative + + + + + + + + + + + ABIE + Dependent Price Reference. Details + A class to define the price of an item as a percentage of the price of a different item. + Dependent Price Reference + + + + + + + + + BBIE + Dependent Price Reference. Percent + The percentage by which the price of the different item is multiplied to calculate the price of the item. + 0..1 + Dependent Price Reference + Percent + Percent + Percent. Type + + + + + + + + + ASBIE + Dependent Price Reference. Location_ Address. Address + The reference location for this dependent price reference. + 0..1 + Dependent Price Reference + Location + Address + Address + Address + + + + + + + + + ASBIE + Dependent Price Reference. Dependent_ Line Reference. Line Reference + A reference to a line that the price is depended of. + 0..1 + Dependent Price Reference + Dependent + Line Reference + Line Reference + Line Reference + + + + + + + + + + + ABIE + Despatch. Details + A class to describe the despatching of goods (their pickup for delivery). + Despatch + + + + + + + + + BBIE + Despatch. Identifier + An identifier for this despatch event. + 0..1 + Despatch + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Despatch. Requested_ Despatch Date. Date + The despatch (pickup) date requested, normally by the buyer. + 0..1 + Despatch + Requested + Despatch Date + Date + Date. Type + + + + + + + + + BBIE + Despatch. Requested_ Despatch Time. Time + The despatch (pickup) time requested, normally by the buyer. + 0..1 + Despatch + Requested + Despatch Time + Time + Time. Type + + + + + + + + + BBIE + Despatch. Estimated_ Despatch Date. Date + The estimated despatch (pickup) date. + 0..1 + Despatch + Estimated + Despatch Date + Date + Date. Type + + + + + + + + + BBIE + Despatch. Estimated_ Despatch Time. Time + The estimated despatch (pickup) time. + 0..1 + Despatch + Estimated + Despatch Time + Time + Time. Type + + + + + + + + + BBIE + Despatch. Actual_ Despatch Date. Date + The actual despatch (pickup) date. + 0..1 + Despatch + Actual + Despatch Date + Date + Date. Type + + + + + + + + + BBIE + Despatch. Actual_ Despatch Time. Time + The actual despatch (pickup) time. + 0..1 + Despatch + Actual + Despatch Time + Time + Time. Type + + + + + + + + + BBIE + Despatch. Guaranteed_ Despatch Date. Date + The date guaranteed for the despatch (pickup). + 0..1 + Despatch + Guaranteed + Despatch Date + Date + Date. Type + + + + + + + + + BBIE + Despatch. Guaranteed_ Despatch Time. Time + The time guaranteed for the despatch (pickup). + 0..1 + Despatch + Guaranteed + Despatch Time + Time + Time. Type + + + + + + + + + BBIE + Despatch. Release. Identifier + An identifier for the release of the despatch used as security control or cargo control (pick-up). + 0..1 + Despatch + Release + Identifier + Identifier. Type + + + + + + + + + BBIE + Despatch. Instructions. Text + Text describing any special instructions applying to the despatch (pickup). + 0..n + Despatch + Instructions + Text + Text. Type + + + + + + + + + ASBIE + Despatch. Despatch_ Address. Address + The address of the despatch (pickup). + 0..1 + Despatch + Despatch + Address + Address + Address + + + + + + + + + ASBIE + Despatch. Despatch_ Location. Location + The location of the despatch (pickup). + 0..1 + Despatch + Despatch + Location + Location + Location + + + + + + + + + ASBIE + Despatch. Despatch_ Party. Party + The party despatching the goods. + 0..1 + Despatch + Despatch + Party + Party + Party + + + + + + + + + ASBIE + Despatch. Carrier_ Party. Party + The party carrying the goods. + 0..1 + Despatch + Carrier + Party + Party + Party + + + + + + + + + ASBIE + Despatch. Notify_ Party. Party + A party to be notified of this despatch (pickup). + 0..n + Despatch + Notify + Party + Party + Party + + + + + + + + + ASBIE + Despatch. Contact + The primary contact for this despatch (pickup). + 0..1 + Despatch + Contact + Contact + Contact + + + + + + + + + ASBIE + Despatch. Estimated Despatch_ Period. Period + The period estimated for the despatch (pickup) of goods. + 0..1 + Despatch + Estimated Despatch + Period + Period + Period + + + + + + + + + ASBIE + Despatch. Requested Despatch_ Period. Period + The period requested for the despatch (pickup) of goods. + 0..1 + Despatch + Requested Despatch + Period + Period + Period + + + + + + + + + + + ABIE + Despatch Line. Details + A class to define a line in a Despatch Advice. + Despatch Line + + + + + + + + + BBIE + Despatch Line. Identifier + An identifier for this despatch line. + 1 + Despatch Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Despatch Line. UUID. Identifier + A universally unique identifier for this despatch line. + 0..1 + Despatch Line + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Despatch Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Despatch Line + Note + Text + Text. Type + + + + + + + + + BBIE + Despatch Line. Line Status Code. Code + A code signifying the status of this despatch line with respect to its original state. + 0..1 + Despatch Line + Line Status Code + Code + Line Status + Line Status_ Code. Type + + + + + + + + + BBIE + Despatch Line. Delivered_ Quantity. Quantity + The quantity despatched (picked up). + 0..1 + Despatch Line + Delivered + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Despatch Line. Backorder_ Quantity. Quantity + The quantity on back order at the supplier. + 0..1 + Despatch Line + Backorder + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Despatch Line. Backorder_ Reason. Text + The reason for the back order. + 0..n + Despatch Line + Backorder + Reason + Text + Text. Type + + + + + + + + + BBIE + Despatch Line. Outstanding_ Quantity. Quantity + The quantity outstanding (which will follow in a later despatch). + 0..1 + Despatch Line + Outstanding + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Despatch Line. Outstanding_ Reason. Text + The reason for the outstanding quantity. + 0..n + Despatch Line + Outstanding + Reason + Text + Text. Type + + + + + + + + + BBIE + Despatch Line. Oversupply_ Quantity. Quantity + The quantity over-supplied, i.e., the quantity over and above that ordered. + 0..1 + Despatch Line + Oversupply + Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Despatch Line. Order Line Reference + A reference to an order line associated with this despatch line. + 1..n + Despatch Line + Order Line Reference + Order Line Reference + Order Line Reference + + + + + + + + + ASBIE + Despatch Line. Document Reference + A reference to a document associated with this despatch line. + 0..n + Despatch Line + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Despatch Line. Item + The item associated with this despatch line. + 1 + Despatch Line + Item + Item + Item + + + + + + + + + ASBIE + Despatch Line. Shipment + A shipment associated with this despatch line. + 0..n + Despatch Line + Shipment + Shipment + Shipment + + + + + + + + + + + ABIE + Dimension. Details + A class to define a measurable dimension (length, mass, weight, volume, or area) of an item. + Dimension + + + + + + + + + BBIE + Dimension. Attribute Identifier. Identifier + An identifier for the attribute to which the measure applies. + 1 + Dimension + Attribute Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Dimension. Measure + The measurement value. + 0..1 + Dimension + Measure + Measure + Measure. Type + + + + + + + + + BBIE + Dimension. Description. Text + Text describing the measurement attribute. + 0..n + Dimension + Description + Text + Text. Type + + + + + + + + + BBIE + Dimension. Minimum_ Measure. Measure + The minimum value in a range of measurement of this dimension. + 0..1 + Dimension + Minimum + Measure + Measure + Measure. Type + + + + + + + + + BBIE + Dimension. Maximum_ Measure. Measure + The maximum value in a range of measurement of this dimension. + 0..1 + Dimension + Maximum + Measure + Measure + Measure. Type + + + + + + + + + + + ABIE + Document Distribution. Details + A class to describe the distribution of a document to an interested party. + Document Distribution + + + + + + + + + BBIE + Document Distribution. Print_ Qualifier. Text + Text describing the interested party's distribution rights. + 1 + Document Distribution + Print + Qualifier + Text + Text. Type + + + + + + + + + BBIE + Document Distribution. Maximum_ Copies. Numeric + The maximum number of printed copies of the document that the interested party is allowed to make. + 1 + Document Distribution + Maximum + Copies + Numeric + Numeric. Type + + + + + + + + + ASBIE + Document Distribution. Party + The interested party to which the document should be distributed. + 1 + Document Distribution + Party + Party + Party + + + + + + + + + + + ABIE + Document Reference. Details + A class to define a reference to a document. + Document Reference + + + + + + + + + BBIE + Document Reference. Identifier + An identifier for the referenced document. + 1 + Document Reference + Identifier + Identifier + Identifier. Type + PO-001 3333-44-123 + + + + + + + + + BBIE + Document Reference. Copy_ Indicator. Indicator + An indicator that the referenced document is a copy (true) or the original (false). + 0..1 + Document Reference + Copy + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Document Reference. UUID. Identifier + A universally unique identifier for this document reference. + 0..1 + Document Reference + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Document Reference. Issue Date. Date + The date, assigned by the sender of the referenced document, on which the document was issued. + 0..1 + Document Reference + Issue Date + Date + Date. Type + + + + + + + + + BBIE + Document Reference. Issue Time. Time + The time, assigned by the sender of the referenced document, at which the document was issued. + 0..1 + Document Reference + Issue Time + Time + Time. Type + + + + + + + + + BBIE + Document Reference. Document Type Code. Code + The type of document being referenced, expressed as a code. + 0..1 + Document Reference + Document Type Code + Code + Code. Type + + + + + + + + + BBIE + Document Reference. Document Type. Text + The type of document being referenced, expressed as text. + 0..1 + Document Reference + Document Type + Text + Text. Type + + + + + + + + + BBIE + Document Reference. XPath. Text + A reference to another place in the same XML document instance in which DocumentReference appears. + 0..n + Document Reference + XPath + Text + Text. Type + + + + + + + + + BBIE + Document Reference. Language. Identifier + An identifier for the language used in the referenced document. + 0..1 + Document Reference + Language + Identifier + Identifier. Type + + + + + + + + + BBIE + Document Reference. Locale Code. Code + A code signifying the locale in which the language in the referenced document is used. + 0..1 + Document Reference + Locale Code + Code + Code. Type + + + + + + + + + BBIE + Document Reference. Version. Identifier + An identifier for the current version of the referenced document. + 0..1 + Document Reference + Version + Identifier + Identifier. Type + 1.1 + + + + + + + + + BBIE + Document Reference. Document Status Code. Code + A code signifying the status of the reference document with respect to its original state. + 0..1 + Document Reference + Document Status Code + Code + Document Status + Document Status_ Code. Type + + + + + + + + + BBIE + Document Reference. Document_ Description. Text + Text describing the referenced document. + 0..n + Document Reference + Document + Description + Text + Text. Type + stock no longer provided + + + + + + + + + ASBIE + Document Reference. Attachment + The referenced document as an attachment to the document from which it is referenced. + 0..1 + Document Reference + Attachment + Attachment + Attachment + + + + + + + + + ASBIE + Document Reference. Validity_ Period. Period + The period for which this document reference is valid. + 0..1 + Document Reference + Validity + Period + Period + Period + + + + + + + + + ASBIE + Document Reference. Issuer_ Party. Party + The party who issued the referenced document. + 0..1 + Document Reference + Issuer + Party + Party + Party + + + + + + + + + ASBIE + Document Reference. Result Of Verification + The result of an attempt to verify a signature associated with the referenced document. + 0..1 + Document Reference + Result Of Verification + Result Of Verification + Result Of Verification + + + + + + + + + + + ABIE + Document Response. Details + A class to describe an application-level response to a document. + Document Response + + + + + + + + + ASBIE + Document Response. Response + A response to the document as a whole. + 1 + Document Response + Response + Response + Response + + + + + + + + + ASBIE + Document Response. Document Reference + A referenced document. + 1..n + Document Response + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Document Response. Issuer_ Party. Party + The party that issued the document. + 0..1 + Document Response + Issuer + Party + Party + Party + + + + + + + + + ASBIE + Document Response. Recipient_ Party. Party + The party for which the document is intended. + 0..1 + Document Response + Recipient + Party + Party + Party + + + + + + + + + ASBIE + Document Response. Line Response + A response to a particular line in the document. + 0..n + Document Response + Line Response + Line Response + Line Response + + + + + + + + + + + ABIE + Duty. Details + The charging rate used for both call charging and time dependent charging + Duty + + + + + + + + + BBIE + Duty. Amount + The amount of this duty. + 1 + Duty + Amount + Amount + Amount. Type + 88.23 + + + + + + + + + BBIE + Duty. Duty. Text + Text describing this duty. + 0..1 + Duty + Duty + Text + Text. Type + ConnectionFee + + + + + + + + + BBIE + Duty. Duty Code. Code + The type of this charge rate, expressed as a code. + 0..1 + Duty + Duty Code + Code + Code. Type + ConnectionFee + + + + + + + + + ASBIE + Duty. Tax Category + The tax category applicable to this duty. + 0..1 + Duty + Tax Category + Tax Category + Tax Category + + + + + + + + + + + ABIE + Economic Operator Role. Details + A class to describe the tenderer contracting role. + Economic Operator Role + + + + + + + + + BBIE + Economic Operator Role. Role Code. Code + A code specifying the role of the party. + 0..1 + Economic Operator Role + Role Code + Code + Code. Type + + + + + + + + + BBIE + Economic Operator Role. Role Description. Text + A textual description of the party role. + 0..n + Economic Operator Role + Role Description + Text + Text. Type + + + + + + + + + + + ABIE + Economic Operator Short List. Details + A class to provide information about the preselection of a short list of economic operators for consideration as possible candidates in a tendering process. + Economic Operator Short List + + + + + + + + + BBIE + Economic Operator Short List. Limitation_ Description. Text + Text describing the criteria used to restrict the number of candidates. + 0..n + Economic Operator Short List + Limitation + Description + Text + Text. Type + + + + + + + + + BBIE + Economic Operator Short List. Expected_ Quantity. Quantity + The number of economic operators expected to be on the short list. + 0..1 + Economic Operator Short List + Expected + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Economic Operator Short List. Maximum_ Quantity. Quantity + The maximum number of economic operators on the short list. + 0..1 + Economic Operator Short List + Maximum + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Economic Operator Short List. Minimum_ Quantity. Quantity + The minimum number of economic operators on the short list. + 0..1 + Economic Operator Short List + Minimum + Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Economic Operator Short List. Pre Selected_ Party. Party + The parties pre-selected allowed to submit tenders in a negotiated procedure. Negotiated procedure is a type of procedure where the contracting authorities can set the parties to be invited in the procurement project + 0..n + Economic Operator Short List + Pre Selected + Party + Party + Party + + + + + + + + + + + ABIE + Emission Calculation Method. Details + A class to define how an environmental emission is calculated. + Emission Calculation Method + + + + + + + + + BBIE + Emission Calculation Method. Calculation Method Code. Code + A code signifying the method used to calculate the emission. + 0..1 + Emission Calculation Method + Calculation Method Code + Code + Code. Type + + + + + + + + + BBIE + Emission Calculation Method. Fullness Indication Code. Code + A code signifying whether a piece of transport equipment is full, partially full, or empty. This indication is used as a parameter when calculating the environmental emission. + 0..1 + Emission Calculation Method + Fullness Indication Code + Code + Code. Type + + + + + + + + + ASBIE + Emission Calculation Method. Measurement From_ Location. Location + A start location from which an environmental emission is calculated. + 0..1 + Emission Calculation Method + Measurement From + Location + Location + Location + + + + + + + + + ASBIE + Emission Calculation Method. Measurement To_ Location. Location + An end location to which an environmental emission is calculated. + 0..1 + Emission Calculation Method + Measurement To + Location + Location + Location + + + + + + + + + + + ABIE + Endorsement. Details + A class to describe an endorsement of a document. + Endorsement + + + + + + + + + BBIE + Endorsement. Document. Identifier + An identifier for this endorsement. + 1 + Endorsement + Document + Identifier + Identifier. Type + + + + + + + + + BBIE + Endorsement. Approval Status. Text + The status of this endorsement. + 1 + Endorsement + Approval Status + Text + Text. Type + Authentication Code + + + + + + + + + BBIE + Endorsement. Remarks. Text + Remarks provided by the endorsing party. + 0..n + Endorsement + Remarks + Text + Text. Type + + + + + + + + + ASBIE + Endorsement. Endorser Party + The type of party providing this endorsement. + 1 + Endorsement + Endorser Party + Endorser Party + Endorser Party + + + + + + + + + ASBIE + Endorsement. Signature + A signature applied to this endorsement. + 0..n + Endorsement + Signature + Signature + Signature + + + + + + + + + + + ABIE + Endorser Party. Details + A class to describe the party endorsing a document. + Endorser Party + + + + + + + + + BBIE + Endorser Party. Role Code. Code + A code specifying the role of the party providing the endorsement (e.g., issuer, embassy, insurance, etc.). + 1 + Endorser Party + Role Code + Code + Code. Type + + + + + + + + + BBIE + Endorser Party. Sequence. Numeric + A number indicating the order of the endorsement provided by this party in the sequence in which endorsements are to be applied. + 1 + Endorser Party + Sequence + Numeric + Numeric. Type + + + + + + + + + ASBIE + Endorser Party. Party + The party endorsing the application. + 1 + Endorser Party + Party + Party + Party + + + + + + + + + ASBIE + Endorser Party. Signatory_ Contact. Contact + The individual representing the exporter who signs the Certificate of Origin application before submitting it to the issuer party. + 1 + Endorser Party + Signatory + Contact + Contact + Contact + + + + + + + + + + + ABIE + Energy Tax Report. Details + A class to describe energy taxes. + Energy Tax Report + + + + + + + + + BBIE + Energy Tax Report. Tax Energy Amount. Amount + The monetary amount of taxes (and duties). + 0..1 + Energy Tax Report + Tax Energy Amount + Amount + Amount. Type + 3087.90 + + + + + + + + + BBIE + Energy Tax Report. Tax Energy_ On Account Amount. Amount + The monetary amount of taxes (and duties) paid on account. + 0..1 + Energy Tax Report + Tax Energy + On Account Amount + Amount + Amount. Type + 2855.40 + + + + + + + + + BBIE + Energy Tax Report. Tax Energy Balance. Amount + The monetary amount of the balance of taxes owing. + 0..1 + Energy Tax Report + Tax Energy Balance + Amount + Amount. Type + 232.49 + + + + + + + + + ASBIE + Energy Tax Report. Tax Scheme + The relevant taxation scheme. + 1 + Energy Tax Report + Tax Scheme + Tax Scheme + Tax Scheme + + + + + + + + + + + ABIE + Energy Water Supply. Details + A class to describe the supply (and therefore consumption) of an amount of energy or water. + Energy Water Supply + + + + + + + + + ASBIE + Energy Water Supply. Consumption Report + An amount of energy or water consumed. + 0..n + Energy Water Supply + Consumption Report + Consumption Report + Consumption Report + + + + + + + + + ASBIE + Energy Water Supply. Energy Tax Report + A tax on the consumption of energy or water. + 0..n + Energy Water Supply + Energy Tax Report + Energy Tax Report + Energy Tax Report + + + + + + + + + ASBIE + Energy Water Supply. Consumption Average + A consumption average. + 0..n + Energy Water Supply + Consumption Average + Consumption Average + Consumption Average + + + + + + + + + ASBIE + Energy Water Supply. Energy Water_ Consumption Correction. Consumption Correction + Describes any corrections or adjustments to the supply of energy or water. + 0..n + Energy Water Supply + Energy Water + Consumption Correction + Consumption Correction + Consumption Correction + + + + + + + + + + + ABIE + Environmental Emission. Details + A class to describe an environmental emission. + Environmental Emission + + + + + + + + + BBIE + Environmental Emission. Environmental Emission Type Code. Code + A code specifying the type of environmental emission. + 1 + Environmental Emission + Environmental Emission Type Code + Code + Code. Type + + + + + + + + + BBIE + Environmental Emission. Value. Measure + A value measurement for the environmental emission. + 1 + Environmental Emission + Value + Measure + Measure. Type + + + + + + + + + BBIE + Environmental Emission. Description. Text + Text describing this environmental emission. + 0..n + Environmental Emission + Description + Text + Text. Type + + + + + + + + + ASBIE + Environmental Emission. Emission Calculation Method + A method used to calculate the amount of this emission. + 0..n + Environmental Emission + Emission Calculation Method + Emission Calculation Method + Emission Calculation Method + + + + + + + + + + + ABIE + Evaluation Criterion. Details + A class defining the required criterion for a tenderer to be elligible in a tendering process. + Evaluation Criterion + + + + + + + + + BBIE + Evaluation Criterion. Evaluation Criterion Type Code. Code + A code that specifies the criterion; it may be financial, technical or organizational. + 0..1 + Evaluation Criterion + Evaluation Criterion Type Code + Code + Code. Type + + + + + + + + + BBIE + Evaluation Criterion. Description. Text + A description of the criterion. + 0..n + Evaluation Criterion + Description + Text + Text. Type + + + + + + + + + BBIE + Evaluation Criterion. Threshold_ Amount. Amount + Estimated monetary amount of the threshold for the criterion. + 0..1 + Evaluation Criterion + Threshold + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Evaluation Criterion. Threshold_ Quantity. Quantity + Estimated quantity of the threshold for the criterion. + 0..1 + Evaluation Criterion + Threshold + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Evaluation Criterion. Expression Code. Code + A code identifying the expression that will be used to evaluate the criterion. + 0..1 + Evaluation Criterion + Expression Code + Code + Code. Type + + + + + + + + + BBIE + Evaluation Criterion. Expression. Text + The expression that will be used to evaluate the criterion. + 0..n + Evaluation Criterion + Expression + Text + Text. Type + + + + + + + + + ASBIE + Evaluation Criterion. Duration_ Period. Period + Describes the period for which the evaluation criterion is valid. + 0..1 + Evaluation Criterion + Duration + Period + Period + Period + + + + + + + + + ASBIE + Evaluation Criterion. Suggested_ Evidence. Evidence + Describes any evidences that should be used to satisfy the criterion. + 0..n + Evaluation Criterion + Suggested + Evidence + Evidence + Evidence + + + + + + + + + + + ABIE + Event. Details + A class to describe a significant occurrence relating to an object, process, or person. + Event + + + + + + + + + BBIE + Event. Identification. Identifier + An identifier for this event within an agreed event identification scheme. + 0..1 + Event + Identification + Identifier + Identifier. Type + + + + + + + + + BBIE + Event. Occurrence Date. Date + The date of this event. + 0..1 + Event + Occurrence Date + Date + Date. Type + + + + + + + + + BBIE + Event. Occurrence Time. Time + The time of this event. + 0..1 + Event + Occurrence Time + Time + Time. Type + + + + + + + + + BBIE + Event. Type Code. Code + A code signifying the type of this event. + 0..1 + Event + Type Code + Code + Code. Type + + + + + + + + + BBIE + Event. Description. Text + Text describing this event. + 0..n + Event + Description + Text + Text. Type + + + + + + + + + BBIE + Event. Completion_ Indicator. Indicator + An indicator that this event has been completed (true) or not (false). + 0..1 + Event + Completion + Indicator + Indicator + Indicator. Type + + + + + + + + + ASBIE + Event. Current_ Status. Status + The current status of this event. + 0..n + Event + Current + Status + Status + Status + + + + + + + + + ASBIE + Event. Contact + Contacts associated with this event. + 0..n + Event + Contact + Contact + Contact + + + + + + + + + ASBIE + Event. Occurence_ Location. Location + The location of this event. + 0..1 + Event + Occurence + Location + Location + Location + + + + + + + + + + + ABIE + Event Comment. Details + A class to define comments about a retail event. + Event Comment + + + + + + + + + BBIE + Event Comment. Comment. Text + Text commenting on the event. + 1 + Event Comment + Comment + Text + Text. Type + + + + + + + + + BBIE + Event Comment. Issue Date. Date + The date on which this comment was made. + 0..1 + Event Comment + Issue Date + Date + Date. Type + + + + + + + + + BBIE + Event Comment. Issue Time. Time + The time at which this comment was made. + 0..1 + Event Comment + Issue Time + Time + Time. Type + + + + + + + + + + + ABIE + Event Line Item. Details + A class to define a line item describing the expected impacts associated with a retail event involving a specific product at a specific location. + Event Line Item + + + + + + + + + BBIE + Event Line Item. Line Number. Numeric + The number of this event line item. + 0..1 + Event Line Item + Line Number + Numeric + Numeric. Type + + + + + + + + + ASBIE + Event Line Item. Participating Locations_ Location. Location + The location of the stores involved in the event described in this line item. + 0..1 + Event Line Item + Participating Locations + Location + Location + Location + + + + + + + + + ASBIE + Event Line Item. Retail Planned Impact + A planned impact of the event described in this line item. + 0..n + Event Line Item + Retail Planned Impact + Retail Planned Impact + Retail Planned Impact + + + + + + + + + ASBIE + Event Line Item. Supply_ Item. Item + The product with which the event is associated. + 1 + Event Line Item + Supply + Item + Item + Item + + + + + + + + + + + ABIE + Event Tactic. Details + A class defining a specific type of action or situation arranged by the Buyer or the Seller to promote the product or products. + Event Tactic + + + + + + + + + BBIE + Event Tactic. Comment. Text + Generic field to add additional information or to specify mutually defined eventTacticTypes that are not currently listed. + 0..1 + Event Tactic + Comment + Text + Text. Type + + + + + + + + + BBIE + Event Tactic. Quantity + The currencies, units, etc. that describes what is need for the event or promotion Usage example: Number of pallets per store for a stack display + 0..1 + Event Tactic + Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Event Tactic. Event Tactic Enumeration + The set of codes that describes this event tactic. + 1 + Event Tactic + Event Tactic Enumeration + Event Tactic Enumeration + Event Tactic Enumeration + + + + + + + + + ASBIE + Event Tactic. Period + The period covered by this event tactic. + 0..1 + Event Tactic + Period + Period + Period + + + + + + + + + + + ABIE + Event Tactic Enumeration. Details + A class to define a set of codes that describes a retail tactic. + Event Tactic Enumeration + + + + + + + + + BBIE + Event Tactic Enumeration. Consumer Incentive Tactic Type Code. Code + A code signifying the type of consumer incentive. Examples include:Free Item, Temporary Price reduction + 0..1 + Event Tactic Enumeration + Consumer Incentive Tactic Type Code + Code + Code. Type + + + + + + + + + BBIE + Event Tactic Enumeration. Display Tactic Type Code. Code + A code signifying the type of display. Examples Include: ON_COUNTER_DISPLAY, FLOOR_GRAPHICS FLOOR_STACK_DISPLAY + 0..1 + Event Tactic Enumeration + Display Tactic Type Code + Code + Code. Type + + + + + + + + + BBIE + Event Tactic Enumeration. Feature Tactic Type Code. Code + A code signifying a special feature. Examples Include: BILLBOARD DIRECT_MAIL_AD, FLYER + 0..1 + Event Tactic Enumeration + Feature Tactic Type Code + Code + Code. Type + + + + + + + + + BBIE + Event Tactic Enumeration. Trade Item Packing Labeling Type Code. Code + A code signifying the type of trade item packing and labeling. Examples Include: BONUS_SIZE CO_BRANDED_TRADE_ITEM + 0..1 + Event Tactic Enumeration + Trade Item Packing Labeling Type Code + Code + Code. Type + + + + + + + + + + + ABIE + Evidence. Details + A class to describe an item of evidentiary support for representations of capabilities or the ability to meet tendering requirements, which an economic operator must provide for acceptance into a tendering process. + Evidence + + + + + + + + + BBIE + Evidence. Identifier + An identifier for this item of evidentiary support. + 0..1 + Evidence + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Evidence. Evidence Type Code. Code + A code signifying the type of evidence. + 0..1 + Evidence + Evidence Type Code + Code + Code. Type + + + + + + + + + BBIE + Evidence. Description. Text + The textual description for this Evidence. + 0..n + Evidence + Description + Text + Text. Type + + + + + + + + + BBIE + Evidence. Candidate_ Statement. Text + Information about a candidate statement that the contracting authority accepts as a sufficient response. + 0..n + Evidence + Candidate + Statement + Text + Text. Type + + + + + + + + + ASBIE + Evidence. Evidence Issuing_ Party. Party + A class to describe a party issuing an evidentiary document. + 0..1 + Evidence + Evidence Issuing + Party + Party + Party + + + + + + + + + ASBIE + Evidence. Document Reference + A reference to the evidentiary document. + 0..1 + Evidence + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Evidence. Language + Information about a required translation to be part of the response, i.e. the language. + 0..1 + Evidence + Language + Language + Language + + + + + + + + + + + ABIE + Evidence Supplied. Details + A reference to evidence. + Evidence Supplied + + + + + + + + + BBIE + Evidence Supplied. Identifier + The identifier of the referenced evidence. + 1 + Evidence Supplied + Identifier + Identifier + Identifier. Type + + + + + + + + + + + ABIE + Exception Criteria Line. Details + A class to define a line in an ExceptionCriteria document that specifies a threshold for forecast variance, product activity, or performance history, the exceeding of which should trigger an exception message. + Exception Criteria Line + + + + + + + + + BBIE + Exception Criteria Line. Identifier + An identifier for this exception criteria line. + 1 + Exception Criteria Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Exception Criteria Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Exception Criteria Line + Note + Text + Text. Type + + + + + + + + + BBIE + Exception Criteria Line. Threshold Value Comparison Code. Code + Type of comparison to be carried out in reference to the set threshold." Allowed values are: EXCEEDS_EXCEPTION_VALUE FALLS_BELOW_EXCEPTION_VALUE + 1 + Exception Criteria Line + Threshold Value Comparison Code + Code + Code. Type + + + + + + + + + BBIE + Exception Criteria Line. Threshold_ Quantity. Quantity + A quantity beyond which an exception will be triggered. + 1 + Exception Criteria Line + Threshold + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Exception Criteria Line. Exception Status Code. Code + A code signifying status specific to a shipment exception. + 0..1 + Exception Criteria Line + Exception Status Code + Code + Code. Type + + + + + + + + + BBIE + Exception Criteria Line. Collaboration_ Priority Code. Code + A collaboratively assigned code signifying priority of the Exception. Possible values are: HIGH, LOW, MEDIUM + 0..1 + Exception Criteria Line + Collaboration + Priority Code + Code + Code. Type + + + + + + + + + BBIE + Exception Criteria Line. Exception_ Resolution Code. Code + Coded representation of possible resolution methods". Possible values are: DEFAULT_TO_AVERAGE_OF_COMPARED_VALUES DEFAULT_TO_BUYERS_VALUE DEFAULT_TO_HIGH_VALUE DEFAULT_TO_LOW_VALUE DEFAULT_TO_SELLERS_VALUE MANUAL_RESOLUTION MUTUALLY_DEFINED + 0..1 + Exception Criteria Line + Exception + Resolution Code + Code + Code. Type + + + + + + + + + BBIE + Exception Criteria Line. Supply Chain Activity Type Code. Code + Establishes the criterion for one of the three types of exceptions. There can be three types of exception criteria: Operational, Metric and Forecast Exceptions. This will be set if this Exception is about an Operational Exception. Description could be: A code used to identify an operational exception. Possible values are: CANCELED_ORDERS EMERGENCY_ORDERS ON_HAND ORDERS RECEIPTS SALES SHIPMENTS + 0..1 + Exception Criteria Line + Supply Chain Activity Type Code + Code + Code. Type + + + + + + + + + BBIE + Exception Criteria Line. Performance Metric Type Code. Code + A code signifying a measure of performance. + 0..1 + Exception Criteria Line + Performance Metric Type Code + Code + Code. Type + + + + + + + + + ASBIE + Exception Criteria Line. Effective_ Period. Period + The period during which this exception criteria line is in effect. + 0..1 + Exception Criteria Line + Effective + Period + Period + Period + + + + + + + + + ASBIE + Exception Criteria Line. Supply_ Item. Item + The Trade Item that is the subject of the Exception Criterion. + 1..n + Exception Criteria Line + Supply + Item + Item + Item + + + + + + + + + ASBIE + Exception Criteria Line. Forecast Exception Criterion Line + Establishes the criterion for one of the three types of exceptions. This class provides the criterion for the kind of forecast exception, the identification of the purpose of the forecast, the source of data and the time basis criterion for the exception. + 0..1 + Exception Criteria Line + Forecast Exception Criterion Line + Forecast Exception Criterion Line + Forecast Exception Criterion Line + + + + + + + + + + + ABIE + Exception Notification Line. Details + A class to define a line in an Exception Notification. + Exception Notification Line + + + + + + + + + BBIE + Exception Notification Line. Identifier + An identifier for this exception notification line. + 1 + Exception Notification Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Exception Notification Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Exception Notification Line + Note + Text + Text. Type + + + + + + + + + BBIE + Exception Notification Line. Description. Text + Text describing the exception. + 0..n + Exception Notification Line + Description + Text + Text. Type + + + + + + + + + BBIE + Exception Notification Line. Exception Status Code. Code + A code signifying status specific to a shipment exception. + 0..1 + Exception Notification Line + Exception Status Code + Code + Code. Type + + + + + + + + + BBIE + Exception Notification Line. Collaboration_ Priority Code. Code + Priority of Exception. + 0..1 + Exception Notification Line + Collaboration + Priority Code + Code + Code. Type + + + + + + + + + BBIE + Exception Notification Line. Resolution Code. Code + Coded representation of possible resolution methods". Possible values are: DEFAULT_TO_AVERAGE_OF_COMPARED_VALUES DEFAULT_TO_BUYERS_VALUE DEFAULT_TO_HIGH_VALUE DEFAULT_TO_LOW_VALUE DEFAULT_TO_SELLERS_VALUE MANUAL_RESOLUTION MUTUALLY_DEFINED + 0..1 + Exception Notification Line + Resolution Code + Code + Code. Type + + + + + + + + + BBIE + Exception Notification Line. Compared Value. Measure + The value that was compared with the source value that resulted in the exception + 1 + Exception Notification Line + Compared Value + Measure + Measure. Type + + + + + + + + + BBIE + Exception Notification Line. Source Value. Measure + The value used as the basis of comparison + 1 + Exception Notification Line + Source Value + Measure + Measure. Type + + + + + + + + + BBIE + Exception Notification Line. Variance. Quantity + The variance of a data item from an expected value during a particular time interval. + 0..1 + Exception Notification Line + Variance + Quantity + Quantity. Type + + + + + + + + + BBIE + Exception Notification Line. Supply Chain Activity Type Code. Code + Establishes the criterion for one of the three types of exceptions: Operational, performance metric and forecast. This reports an exception notification about an operational exception. Description could be: A code used to identify an operational exception. Possible values are: CANCELED_ORDERS EMERGENCY_ORDERS ON_HAND ORDERS RECEIPTS SALES SHIPMENTS + 0..1 + Exception Notification Line + Supply Chain Activity Type Code + Code + Code. Type + + + + + + + + + BBIE + Exception Notification Line. Performance Metric Type Code. Code + A code used to identify a measure of performance. It defines the type of the Performance Metric on which an exception criteria is being defined + 0..1 + Exception Notification Line + Performance Metric Type Code + Code + Code. Type + + + + + + + + + ASBIE + Exception Notification Line. Exception Observation_ Period. Period + The period (start-end date) when this exception is observed + 0..1 + Exception Notification Line + Exception Observation + Period + Period + Period + + + + + + + + + ASBIE + Exception Notification Line. Document Reference + A reference to Exception Criteria document can be provided. + 0..n + Exception Notification Line + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Exception Notification Line. Forecast Exception + A forecast accuracy or comparison exception. + 0..1 + Exception Notification Line + Forecast Exception + Forecast Exception + Forecast Exception + + + + + + + + + ASBIE + Exception Notification Line. Supply_ Item. Item + The product associated with this exception notification line. + 1 + Exception Notification Line + Supply + Item + Item + Item + + + + + + + + + + + ABIE + Exchange Rate. Details + A class to define an exchange rate. + Exchange Rate + + + + + + + + + BBIE + Exchange Rate. Source_ Currency Code. Code + The reference currency for this exchange rate; the currency from which the exchange is being made. + 1 + Exchange Rate + Source + Currency Code + Code + Currency + Currency_ Code. Type + + + + + + + + + BBIE + Exchange Rate. Source_ Currency Base Rate. Rate + In the case of a source currency with denominations of small value, the unit base. + 0..1 + Exchange Rate + Source + Currency Base Rate + Rate + Rate. Type + + + + + + + + + BBIE + Exchange Rate. Target_ Currency Code. Code + The target currency for this exchange rate; the currency to which the exchange is being made. + 1 + Exchange Rate + Target + Currency Code + Code + Currency + Currency_ Code. Type + + + + + + + + + BBIE + Exchange Rate. Target_ Currency Base Rate. Rate + In the case of a target currency with denominations of small value, the unit base. + 0..1 + Exchange Rate + Target + Currency Base Rate + Rate + Rate. Type + + + + + + + + + BBIE + Exchange Rate. Exchange Market Identifier. Identifier + An identifier for the currency exchange market used as the source of this exchange rate. + 0..1 + Exchange Rate + Exchange Market Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Exchange Rate. Calculation Rate. Rate + The factor applied to the source currency to calculate the target currency. + 0..1 + Exchange Rate + Calculation Rate + Rate + Rate. Type + + + + + + + + + BBIE + Exchange Rate. Mathematic Operator Code. Code + A code signifying whether the calculation rate is a multiplier or a divisor. + 0..1 + Exchange Rate + Mathematic Operator Code + Code + Operator + Operator_ Code. Type + + + + + + + + + BBIE + Exchange Rate. Date + The date on which the exchange rate was established. + 0..1 + Exchange Rate + Date + Date + Date. Type + + + + + + + + + ASBIE + Exchange Rate. Foreign Exchange_ Contract. Contract + A contract for foreign exchange. + 0..1 + Exchange Rate + Foreign Exchange + Contract + Contract + Contract + + + + + + + + + + + ABIE + External Reference. Details + A class to describe an external object, such as a document stored at a remote location. + External Reference + + + + + + + + + BBIE + External Reference. URI. Identifier + The Uniform Resource Identifier (URI) that identifies the external object as an Internet resource. + 0..1 + External Reference + URI + Identifier + Identifier. Type + + + + + + + + + BBIE + External Reference. Document Hash. Text + A hash value for the externally stored object. + 0..1 + External Reference + Document Hash + Text + Text. Type + + + + + + + + + BBIE + External Reference. Hash Algorithm Method. Text + A hash algorithm used to calculate the hash value of the externally stored object. + 0..1 + External Reference + Hash Algorithm Method + Text + Text. Type + + + + + + + + + BBIE + External Reference. Expiry Date. Date + The date on which availability of the resource can no longer be relied upon. + 0..1 + External Reference + Expiry Date + Date + Date. Type + + + + + + + + + BBIE + External Reference. Expiry Time. Time + The time after which availability of the resource can no longer be relied upon. + 0..1 + External Reference + Expiry Time + Time + Time. Type + + + + + + + + + BBIE + External Reference. Mime Code. Code + A code signifying the mime type of the external object. + 0..1 + External Reference + Mime Code + Code + Code. Type + + + + + + + + + BBIE + External Reference. Format Code. Code + A code signifying the format of the external object. + 0..1 + External Reference + Format Code + Code + Code. Type + + + + + + + + + BBIE + External Reference. Encoding Code. Code + A code signifying the encoding/decoding algorithm used with the external object. + 0..1 + External Reference + Encoding Code + Code + Code. Type + + + + + + + + + BBIE + External Reference. Character Set Code. Code + A code signifying the character set of an external document. + 0..1 + External Reference + Character Set Code + Code + Code. Type + + + + + + + + + BBIE + External Reference. File Name. Name + The file name of the external object. + 0..1 + External Reference + File Name + Name + Name. Type + + + + + + + + + BBIE + External Reference. Description. Text + Text describing the external object. + 0..n + External Reference + Description + Text + Text. Type + computer accessories for laptops + + + + + + + + + + + ABIE + Financial Account. Details + A class to describe a financial account. + Financial Account + + + + + + + + + BBIE + Financial Account. Identifier + The identifier for this financial account; the bank account number. + 0..1 + Financial Account + Identifier + Identifier + Identifier. Type + SWIFT(BIC) and IBAN are defined in ISO 9362 and ISO 13616. + + + + + + + + + BBIE + Financial Account. Name + The name of this financial account. + 0..1 + Financial Account + Name + Name + Name. Type + + + + + + + + + BBIE + Financial Account. Alias_ Name. Name + An alias for the name of this financial account, to be used in place of the actual account name for security reasons. + 0..1 + Financial Account + Alias + Name + Name + Name. Type + + + + + + + + + BBIE + Financial Account. Account Type Code. Code + A code signifying the type of this financial account. + 0..1 + Financial Account + Account Type Code + Code + Code. Type + + + + + + + + + BBIE + Financial Account. Account Format Code. Code + A code signifying the format of this financial account. + 0..1 + Financial Account + Account Format Code + Code + Code. Type + ISO20022 Clearing System Identification Code + + + + + + + + + BBIE + Financial Account. Currency Code. Code + A code signifying the currency in which this financial account is held. + 0..1 + Financial Account + Currency Code + Code + Currency + Currency_ Code. Type + + + + + + + + + BBIE + Financial Account. Payment_ Note. Text + Free-form text applying to the Payment for the owner of this account. + 0..n + Financial Account + Payment + Note + Text + Text. Type + + + + + + + + + ASBIE + Financial Account. Financial Institution_ Branch. Branch + The branch of the financial institution associated with this financial account. + 0..1 + Financial Account + Financial Institution + Branch + Branch + Branch + + + + + + + + + ASBIE + Financial Account. Country + The country in which the holder of the financial account is domiciled. + 0..1 + Financial Account + Country + Country + Country + + + + + + + + + + + ABIE + Financial Guarantee. Details + A class to describe the bond guarantee of a tenderer or bid submitter's actual entry into a contract in the event that it is the successful bidder. + Financial Guarantee + + + + + + + + + BBIE + Financial Guarantee. Guarantee Type Code. Code + A code signifying the type of financial guarantee. For instance "Provisional Guarantee" or "Final Guarantee" + 1 + Financial Guarantee + Guarantee Type Code + Code + Code. Type + + + + + + + + + BBIE + Financial Guarantee. Description. Text + Text describing this financial guarantee. + 0..n + Financial Guarantee + Description + Text + Text. Type + + + + + + + + + BBIE + Financial Guarantee. Liability. Amount + The amount of liability in this financial guarantee. + 0..1 + Financial Guarantee + Liability + Amount + Amount. Type + + + + + + + + + BBIE + Financial Guarantee. Amount. Rate + The rate used to calculate the amount of liability in this financial guarantee. + 0..1 + Financial Guarantee + Amount + Rate + Rate. Type + + + + + + + + + ASBIE + Financial Guarantee. Constitution_ Period. Period + The period during the tendering process to which this financial guarantee has to be settled. + 0..1 + Financial Guarantee + Constitution + Period + Period + Period + + + + + + + + + + + ABIE + Financial Institution. Details + A class to describe a financial institution. + Financial Institution + + + + + + + + + BBIE + Financial Institution. Identifier + An identifier for this financial institution. It is recommended that the ISO 9362 Bank Identification Code (BIC) be used as the ID. + 0..1 + Financial Institution + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Financial Institution. Name + The name of this financial institution. + 0..1 + Financial Institution + Name + Name + Name. Type + + + + + + + + + ASBIE + Financial Institution. Address + The address of this financial institution. + 0..1 + Financial Institution + Address + Address + Address + + + + + + + + + + + ABIE + Forecast Exception. Details + As explained in Exception Criteria Line: Three types of exception criteria can be defined, Operational, Metric or Forecast Exceptions. This class provides criteria for forecast exception type: the identification of the purpose of the forecast, the source of data and the time basis criteria for the exception. + Forecast Exception + + + + + + + + + BBIE + Forecast Exception. Forecast_ Purpose Code. Code + It is either Sales forecast or Order Forecast. Definition can be changed like: "The purpose of the Forecast (either sales or order), about which an exception criteria is being defined". + 1 + Forecast Exception + Forecast + Purpose Code + Code + Code. Type + + + + + + + + + BBIE + Forecast Exception. Forecast Type Code. Code + A code signifying the type of forecast. Example of values are:BASE PROMOTIONAL SEASONAL TOTAL + 1 + Forecast Exception + Forecast Type Code + Code + Code. Type + + + + + + + + + BBIE + Forecast Exception. Issue Date. Date + The date on which the forecast was issued. + 1 + Forecast Exception + Issue Date + Date + Date. Type + + + + + + + + + BBIE + Forecast Exception. Issue Time. Time + The time at which the forecast was issued. + 0..1 + Forecast Exception + Issue Time + Time + Time. Type + + + + + + + + + BBIE + Forecast Exception. Data Source Code. Code + A code signifying the partner who provides this information. + 1 + Forecast Exception + Data Source Code + Code + Code. Type + + + + + + + + + BBIE + Forecast Exception. Comparison Data Code. Code + A code signifying the partner providing the information in this forecast exception. + 0..1 + Forecast Exception + Comparison Data Code + Code + Code. Type + + + + + + + + + BBIE + Forecast Exception. Comparison Forecast Issue Time. Time + The time at which this comparison forecast was issued. + 0..1 + Forecast Exception + Comparison Forecast Issue Time + Time + Time. Type + + + + + + + + + BBIE + Forecast Exception. Comparison Forecast Issue Date. Date + The date on which this comparison forecast was issued. + 0..1 + Forecast Exception + Comparison Forecast Issue Date + Date + Date. Type + + + + + + + + + + + ABIE + Forecast Exception Criterion Line. Details + Establishes the criterion for one of the three types of exceptions. This class provides criteria for the kind of forecast exception, the identification of the purpose of the forecast, the source of data and the time basis criterion for the exception. + Forecast Exception Criterion Line + + + + + + + + + BBIE + Forecast Exception Criterion Line. Forecast_ Purpose Code. Code + A description of the purpose for the forecast that is assigned to each forecast data item exception criterion. + 1 + Forecast Exception Criterion Line + Forecast + Purpose Code + Code + Code. Type + + + + + + + + + BBIE + Forecast Exception Criterion Line. Forecast Type Code. Code + A description of a Forecast selected from a list. + 1 + Forecast Exception Criterion Line + Forecast Type Code + Code + Code. Type + + + + + + + + + BBIE + Forecast Exception Criterion Line. Comparison Data Source Code. Code + If it is a forecast comparison exception, this value indicates the other source of information. + 0..1 + Forecast Exception Criterion Line + Comparison Data Source Code + Code + Code. Type + + + + + + + + + BBIE + Forecast Exception Criterion Line. Data Source Code. Code + Indication of the partner who provides the information. + 1 + Forecast Exception Criterion Line + Data Source Code + Code + Code. Type + + + + + + + + + BBIE + Forecast Exception Criterion Line. Time Delta Days Quantity. Quantity + Time basis in days for the Exception. + 0..1 + Forecast Exception Criterion Line + Time Delta Days Quantity + Quantity + Quantity. Type + + + + + + + + + + + ABIE + Forecast Line. Details + Detailed information about a particular Forecast Line within a Forecast Document + Forecast Line + + + + + + + + + BBIE + Forecast Line. Identifier + An identifier for this forecast line. + 1 + Forecast Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Forecast Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Forecast Line + Note + Text + Text. Type + + + + + + + + + BBIE + Forecast Line. Frozen Document Indicator. Indicator + An indicator that the status of the forecast is modifiable (true) or not (false). + 0..1 + Forecast Line + Frozen Document Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Forecast Line. Forecast Type Code. Code + A code signifying the type of forecast. Examples: BASE PROMOTIONAL SEASONAL TOTAL + 1 + Forecast Line + Forecast Type Code + Code + Code. Type + seasonal, total + + + + + + + + + ASBIE + Forecast Line. Forecast_ Period. Period + The period to which the forecast applies. + 0..1 + Forecast Line + Forecast + Period + Period + Period + + + + + + + + + ASBIE + Forecast Line. Sales Item + Sales information for the item to which this line applies. + 0..1 + Forecast Line + Sales Item + Sales Item + Sales Item + + + + + + + + + + + ABIE + Forecast Revision Line. Details + A class to define a line in a Forecast Revision describing a revision to a line in a Forecast. + Forecast Revision Line + + + + + + + + + BBIE + Forecast Revision Line. Identifier + An identifier for this forecast revision line. + 1 + Forecast Revision Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Forecast Revision Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Forecast Revision Line + Note + Text + Text. Type + + + + + + + + + BBIE + Forecast Revision Line. Description. Text + Text describing the revision to this line. + 0..n + Forecast Revision Line + Description + Text + Text. Type + + + + + + + + + BBIE + Forecast Revision Line. Revised_ Forecast Line Identifier. Identifier + An identifier for the revised forecast line. + 1 + Forecast Revision Line + Revised + Forecast Line Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Forecast Revision Line. Source Forecast_ Issue Date. Date + The date on which the forecast modified by this revision was generated or created. + 1 + Forecast Revision Line + Source Forecast + Issue Date + Date + Date. Type + + + + + + + + + BBIE + Forecast Revision Line. Source Forecast_ Issue Time. Time + The time at which the forecast modified by this revision was generated or created. + 1 + Forecast Revision Line + Source Forecast + Issue Time + Time + Time. Type + + + + + + + + + BBIE + Forecast Revision Line. Adjustment Reason Code. Code + A code signifying the reason for the adjustment specified in this forecast revision line. + 0..1 + Forecast Revision Line + Adjustment Reason Code + Code + Code. Type + + + + + + + + + ASBIE + Forecast Revision Line. Forecast_ Period. Period + The period to which this forecast revision line applies. + 0..1 + Forecast Revision Line + Forecast + Period + Period + Period + + + + + + + + + ASBIE + Forecast Revision Line. Sales Item + Sales information for the item to which this line applies. + 0..1 + Forecast Revision Line + Sales Item + Sales Item + Sales Item + + + + + + + + + + + ABIE + Framework Agreement. Details + A class to describe a tendering framework agreement. + Framework Agreement + + + + + + + + + BBIE + Framework Agreement. Expected_ Operator. Quantity + The number of economic operators expected to participate in this framework agreement. + 0..1 + Framework Agreement + Expected + Operator + Quantity + Quantity. Type + + + + + + + + + BBIE + Framework Agreement. Maximum_ Operator. Quantity + The maximum number of economic operators allowed to participate in this framework agreement. + 0..1 + Framework Agreement + Maximum + Operator + Quantity + Quantity. Type + + + + + + + + + BBIE + Framework Agreement. Justification. Text + Text describing the justification for this framework agreement. + 0..n + Framework Agreement + Justification + Text + Text. Type + + + + + + + + + BBIE + Framework Agreement. Frequency. Text + Text describing the frequency with which subsequent contracts will be awarded. + 0..n + Framework Agreement + Frequency + Text + Text. Type + + + + + + + + + ASBIE + Framework Agreement. Duration_ Period. Period + The period during which this framework agreement applies. + 0..1 + Framework Agreement + Duration + Period + Period + Period + + + + + + + + + ASBIE + Framework Agreement. Subsequent Process_ Tender Requirement. Tender Requirement + A tender requirement intended for consumption by downstream tendering processes derived from the establishment of this framework agreement. + 0..n + Framework Agreement + Subsequent Process + Tender Requirement + Tender Requirement + Tender Requirement + Curricula required + + + + + + + + + + + ABIE + Goods Item. Details + A class to describe a separately identifiable quantity of goods of a single product type. + Goods Item + + + + + + + + + BBIE + Goods Item. Identifier + An identifier for this goods item. + 0..1 + Goods Item + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Goods Item. Sequence Number. Identifier + A sequence number differentiating a specific goods item within a consignment. + 0..1 + Goods Item + Sequence Number + Identifier + Identifier. Type + + + + + + + + + BBIE + Goods Item. Description. Text + Text describing this goods item to identify it for customs, statistical, or transport purposes. + 0..n + Goods Item + Description + Text + Text. Type + Description of goods (WCO ID 137) + + + + + + + + + BBIE + Goods Item. Hazardous Risk_ Indicator. Indicator + An indication that the transported goods item is subject to an international regulation concerning the carriage of dangerous goods (true) or not (false). + 0..1 + Goods Item + Hazardous Risk + Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Goods Item. Declared Customs_ Value. Amount + The total declared value for customs purposes of the goods item. + 0..1 + Goods Item + Declared Customs + Value + Amount + Amount. Type + For Customs Value (WCO ID 108) + + + + + + + + + BBIE + Goods Item. Declared For Carriage_ Value. Amount + The value of this goods item, declared by the shipper or his agent solely for the purpose of varying the carrier's level of liability from that provided in the contract of carriage, in case of loss or damage to goods or delayed delivery. + 0..1 + Goods Item + Declared For Carriage + Value + Amount + Amount. Type + Interest in delivery, declared value for carriage + + + + + + + + + BBIE + Goods Item. Declared Statistics_ Value. Amount + The total declared value of all the goods items in the same consignment with this goods item that have the same statistical heading. + 0..1 + Goods Item + Declared Statistics + Value + Amount + Amount. Type + Statistical Value (WCO ID 114) + + + + + + + + + BBIE + Goods Item. Free On Board_ Value. Amount + The monetary amount that has to be or has been paid as calculated under the applicable trade delivery. + 0..1 + Goods Item + Free On Board + Value + Amount + Amount. Type + FOB Value + + + + + + + + + BBIE + Goods Item. Insurance_ Value. Amount + The amount covered by insurance for this goods item. + 0..1 + Goods Item + Insurance + Value + Amount + Amount. Type + Value Insured + + + + + + + + + BBIE + Goods Item. Value. Amount + The amount on which a duty, tax, or fee will be assessed. + 0..1 + Goods Item + Value + Amount + Amount. Type + + + + + + + + + BBIE + Goods Item. Gross_ Weight. Measure + The weight of this goods item, including packing and packaging but excluding the carrier's equipment. + 0..1 + Goods Item + Gross + Weight + Measure + Measure. Type + Actual Gross Weight + + + + + + + + + BBIE + Goods Item. Net_ Weight. Measure + The weight of this goods item, excluding packing but including packaging that normally accompanies the goods. + 0..1 + Goods Item + Net + Weight + Measure + Measure. Type + + + + + + + + + BBIE + Goods Item. Net Net_ Weight. Measure + The total weight of this goods item, excluding all packing and packaging. + 0..1 + Goods Item + Net Net + Weight + Measure + Measure. Type + Customs Weight (WCO ID 128) + + + + + + + + + BBIE + Goods Item. Chargeable_ Weight. Measure + The weight on which a charge is to be based. + 0..1 + Goods Item + Chargeable + Weight + Measure + Measure. Type + + + + + + + + + BBIE + Goods Item. Gross_ Volume. Measure + The volume of this goods item, normally calculated by multiplying its maximum length, width, and height. + 0..1 + Goods Item + Gross + Volume + Measure + Measure. Type + Volume, Gross Measurement Cube (GMC), Cube (WCO ID 134) + + + + + + + + + BBIE + Goods Item. Net_ Volume. Measure + The volume contained by a goods item, excluding the volume of any packaging material. + 0..1 + Goods Item + Net + Volume + Measure + Measure. Type + + + + + + + + + BBIE + Goods Item. Quantity + The number of units making up this goods item. + 0..1 + Goods Item + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Goods Item. Preference Criterion Code. Code + A code signifying the treatment preference for this goods item according to international trading agreements. + 0..1 + Goods Item + Preference Criterion Code + Code + Code. Type + Preference Criterion is used in the following manner in the paper CO of another country (e.g.): +A - The good is wholly obtained or produced entirely in the territory of one or more of the NAFTA countries as reference in Article 415. Note: The purchase of a good in the territory does not necessarily render it wholly obtained or produced . If the good is an agricultural good, see also criterion F and Annex 703.2. (Reference: Article 401(a), 415). +B - ... +C - ... +D - ... +E - ... +F - The good is an originating agricultural good under preference criterion A,B, or C above and is not subjected to quantitative restriction in the importing NAFTA country because.... +Thus, the column Preference Criterion will indicate either A, B, C,... + + + + + + + + + BBIE + Goods Item. Required_ Customs Identifier. Identifier + An identifier for a set of tariff codes required to specify a type of goods for customs, transport, statistical, or other regulatory purposes. + 0..1 + Goods Item + Required + Customs Identifier + Identifier + Identifier. Type + Tariff code extensions (WCO ID 255) + + + + + + + + + BBIE + Goods Item. Customs Status Code. Code + A code assigned by customs to signify the status of this goods item. + 0..1 + Goods Item + Customs Status Code + Code + Code. Type + Customs status of goods (WCO ID 094) + + + + + + + + + BBIE + Goods Item. Customs Tariff Quantity. Quantity + Quantity of the units in this goods item as required by customs for tariff, statistical, or fiscal purposes. + 0..1 + Goods Item + Customs Tariff Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Goods Item. Customs Import_ Classified Indicator. Indicator + An indicator that this goods item has been classified for import by customs (true) or not (false). + 0..1 + Goods Item + Customs Import + Classified Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Goods Item. Chargeable_ Quantity. Quantity + The number of units in the goods item to which charges apply. + 0..1 + Goods Item + Chargeable + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Goods Item. Returnable_ Quantity. Quantity + The number of units in the goods item that may be returned. + 0..1 + Goods Item + Returnable + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Goods Item. Trace_ Identifier. Identifier + An identifier for use in tracing this goods item, such as the EPC number used in RFID. + 0..1 + Goods Item + Trace + Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Goods Item. Item + Product information relating to a goods item. + 0..n + Goods Item + Item + Item + Item + + + + + + + + + ASBIE + Goods Item. Goods Item Container + The transporting of a goods item in a unit of transport equipment (e.g., container). + 0..n + Goods Item + Goods Item Container + Goods Item Container + Goods Item Container + + + + + + + + + ASBIE + Goods Item. Freight_ Allowance Charge. Allowance Charge + A cost incurred by the shipper in moving goods, by whatever means, from one place to another under the terms of the contract of carriage. In addition to transport costs, this may include such elements as packing, documentation, loading, unloading, and insurance to the extent that they relate to the freight costs. + 0..n + Goods Item + Freight + Allowance Charge + Allowance Charge + Allowance Charge + Freight Costs + + + + + + + + + ASBIE + Goods Item. Invoice Line + Information about an invoice line relating to this goods item. + 0..n + Goods Item + Invoice Line + Invoice Line + Invoice Line + + + + + + + + + ASBIE + Goods Item. Temperature + The temperature of the goods item. + 0..n + Goods Item + Temperature + Temperature + Temperature + maximum, storage, minimum + + + + + + + + + ASBIE + Goods Item. Contained_ Goods Item. Goods Item + A goods item contained in this goods item. + 0..n + Goods Item + Contained + Goods Item + Goods Item + Goods Item + + + + + + + + + ASBIE + Goods Item. Origin_ Address. Address + The region in which the goods have been produced or manufactured, according to criteria laid down for the purposes of application of the customs tariff, or of quantitative restrictions, or of any other measure related to trade. + 0..1 + Goods Item + Origin + Address + Address + Address + Region of origin (WCO ID 066) + + + + + + + + + ASBIE + Goods Item. Delivery + The delivery of this goods item. + 0..1 + Goods Item + Delivery + Delivery + Delivery + + + + + + + + + ASBIE + Goods Item. Pickup + The pickup of this goods item. + 0..1 + Goods Item + Pickup + Pickup + Pickup + + + + + + + + + ASBIE + Goods Item. Despatch + The despatch of this goods item. + 0..1 + Goods Item + Despatch + Despatch + Despatch + + + + + + + + + ASBIE + Goods Item. Measurement_ Dimension. Dimension + A measurable dimension (length, mass, weight, or volume) of this goods item. + 0..n + Goods Item + Measurement + Dimension + Dimension + Dimension + + + + + + + + + ASBIE + Goods Item. Containing_ Package. Package + A package containing this goods item. + 0..n + Goods Item + Containing + Package + Package + Package + + + + + + + + + ASBIE + Goods Item. Shipment_ Document Reference. Document Reference + A reference to a shipping document associated with this goods item. + 0..1 + Goods Item + Shipment + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Goods Item. Minimum_ Temperature. Temperature + Information about minimum temperature. + 0..1 + Goods Item + Minimum + Temperature + Temperature + Temperature + + + + + + + + + ASBIE + Goods Item. Maximum_ Temperature. Temperature + Information about maximum temperature. + 0..1 + Goods Item + Maximum + Temperature + Temperature + Temperature + + + + + + + + + + + ABIE + Goods Item Container. Details + A class defining how goods items are split across transport equipment. + Goods Item Container + + + + + + + + + BBIE + Goods Item Container. Identifier + An identifier for this goods item container. + 1 + Goods Item Container + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Goods Item Container. Quantity + The number of goods items loaded into or onto one piece of transport equipment as a total consignment or part of a consignment. + 0..1 + Goods Item Container + Quantity + Quantity + Quantity. Type + Number of packages stuffed + + + + + + + + + ASBIE + Goods Item Container. Transport Equipment + A piece of transport equipment used to contain a single goods item. + 0..n + Goods Item Container + Transport Equipment + Transport Equipment + Transport Equipment + + + + + + + + + + + ABIE + Hazardous Goods Transit. Details + A class to describe hazardous goods in transit. + Hazardous Goods Transit + + + + + + + + + BBIE + Hazardous Goods Transit. Transport Emergency Card Code. Code + An identifier for a transport emergency card describing the actions to be taken in an emergency in transporting the hazardous goods. It may be the identity number of a hazardous emergency response plan assigned by the appropriate authority. + 0..1 + Hazardous Goods Transit + Transport Emergency Card Code + Code + Code. Type + TREM card + + + + + + + + + BBIE + Hazardous Goods Transit. Packing Criteria Code. Code + A code signifying the packaging requirement for transportation of the hazardous goods as assigned by IATA, IMDB, ADR, RID etc. + 0..1 + Hazardous Goods Transit + Packing Criteria Code + Code + Code. Type + Packing Group + + + + + + + + + BBIE + Hazardous Goods Transit. Hazardous Regulation Code. Code + A code signifying the set of legal regulations governing the transportation of the hazardous goods. + 0..1 + Hazardous Goods Transit + Hazardous Regulation Code + Code + Code. Type + + + + + + + + + BBIE + Hazardous Goods Transit. Inhalation Toxicity Zone Code. Code + A code signifying the Inhalation Toxicity Hazard Zone for the hazardous goods, as defined by the US Department of Transportation. + 0..1 + Hazardous Goods Transit + Inhalation Toxicity Zone Code + Code + Code. Type + + + + + + + + + BBIE + Hazardous Goods Transit. Transport Authorization Code. Code + A code signifying authorization for the transportation of hazardous cargo. + 0..1 + Hazardous Goods Transit + Transport Authorization Code + Code + Code. Type + Permission for Transport + + + + + + + + + ASBIE + Hazardous Goods Transit. Maximum_ Temperature. Temperature + The maximum temperature at which the hazardous goods can safely be transported. + 0..1 + Hazardous Goods Transit + Maximum + Temperature + Temperature + Temperature + + + + + + + + + ASBIE + Hazardous Goods Transit. Minimum_ Temperature. Temperature + The minimum temperature at which the hazardous goods can safely be transported. + 0..1 + Hazardous Goods Transit + Minimum + Temperature + Temperature + Temperature + + + + + + + + + + + ABIE + Hazardous Item. Details + A class to describe a hazardous item. + Hazardous Item + + + + + + + + + BBIE + Hazardous Item. Identifier + An identifier for this hazardous item. + 0..1 + Hazardous Item + Identifier + Identifier + Identifier. Type + Round Up + + + + + + + + + BBIE + Hazardous Item. Placard Notation. Text + Text of the placard notation corresponding to the hazard class of this hazardous item. Can also be the hazard identification number of the orange placard (upper part) required on the means of transport. + 0..1 + Hazardous Item + Placard Notation + Text + Text. Type + 5.1 + + + + + + + + + BBIE + Hazardous Item. Placard Endorsement. Text + Text of the placard endorsement that is to be shown on the shipping papers for this hazardous item. Can also be used for the number of the orange placard (lower part) required on the means of transport. + 0..1 + Hazardous Item + Placard Endorsement + Text + Text. Type + 2 + + + + + + + + + BBIE + Hazardous Item. Additional_ Information. Text + Text providing further information about the hazardous substance. + 0..n + Hazardous Item + Additional + Information + Text + Text. Type + Must be stored away from flammable materials N.O.S. or a Waste Characteristics Code in conjunction with an EPA Waste Stream code + + + + + + + + + BBIE + Hazardous Item. UNDG Code. Code + The UN code for this kind of hazardous item. + 0..1 + Hazardous Item + UNDG Code + Code + Code. Type + UN Code + + + + + + + + + BBIE + Hazardous Item. Emergency Procedures Code. Code + A code signifying the emergency procedures for this hazardous item. + 0..1 + Hazardous Item + Emergency Procedures Code + Code + Code. Type + EMG code, EMS Page Number + + + + + + + + + BBIE + Hazardous Item. Medical First Aid Guide Code. Code + A code signifying a medical first aid guide appropriate to this hazardous item. + 0..1 + Hazardous Item + Medical First Aid Guide Code + Code + Code. Type + MFAG page number + + + + + + + + + BBIE + Hazardous Item. Technical_ Name. Name + The full technical name of a specific hazardous substance contained in this goods item. + 0..1 + Hazardous Item + Technical + Name + Name + Name. Type + Granular Sodium Chlorate WeedKiller + + + + + + + + + BBIE + Hazardous Item. Category. Name + The name of the category of hazard that applies to the Item. + 0..1 + Hazardous Item + Category + Name + Name. Type + + + + + + + + + BBIE + Hazardous Item. Hazardous Category Code. Code + A code signifying a kind of hazard for a material. + 0..1 + Hazardous Item + Hazardous Category Code + Code + Code. Type + Hazardous material class code + + + + + + + + + BBIE + Hazardous Item. Upper_ Orange Hazard Placard Identifier. Identifier + The number for the upper part of the orange hazard placard required on the means of transport. + 0..1 + Hazardous Item + Upper + Orange Hazard Placard Identifier + Identifier + Identifier. Type + Hazard identification number (upper part) + + + + + + + + + BBIE + Hazardous Item. Lower_ Orange Hazard Placard Identifier. Identifier + The number for the lower part of the orange hazard placard required on the means of transport. + 0..1 + Hazardous Item + Lower + Orange Hazard Placard Identifier + Identifier + Identifier. Type + Substance identification number (lower part) + + + + + + + + + BBIE + Hazardous Item. Marking Identifier. Identifier + An identifier to the marking of the Hazardous Item + 0..1 + Hazardous Item + Marking Identifier + Identifier + Identifier. Type + Dangerous goods label marking + + + + + + + + + BBIE + Hazardous Item. Hazard Class Identifier. Identifier + An identifier for the hazard class applicable to this hazardous item as defined by the relevant regulation authority (e.g., the IMDG Class Number of the SOLAS Convention of IMO and the ADR/RID Class Number for the road/rail environment). + 0..1 + Hazardous Item + Hazard Class Identifier + Identifier + Identifier. Type + IMDG Class Number, ADR/RID Class Number + + + + + + + + + BBIE + Hazardous Item. Net_ Weight. Measure + The net weight of this hazardous item, excluding packaging. + 0..1 + Hazardous Item + Net + Weight + Measure + Measure. Type + + + + + + + + + BBIE + Hazardous Item. Net_ Volume. Measure + The volume of this hazardous item, excluding packaging and transport equipment. + 0..1 + Hazardous Item + Net + Volume + Measure + Measure. Type + + + + + + + + + BBIE + Hazardous Item. Quantity + The quantity of goods items in this hazardous item that are hazardous. + 0..1 + Hazardous Item + Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Hazardous Item. Contact_ Party. Party + The individual, group, or body to be contacted in case of a hazardous incident associated with this item. + 0..1 + Hazardous Item + Contact + Party + Party + Party + + + + + + + + + ASBIE + Hazardous Item. Secondary Hazard + A secondary hazard associated with this hazardous item. + 0..n + Hazardous Item + Secondary Hazard + Secondary Hazard + Secondary Hazard + + + + + + + + + ASBIE + Hazardous Item. Hazardous Goods Transit + Information related to the transit of this kind of hazardous goods. + 0..n + Hazardous Item + Hazardous Goods Transit + Hazardous Goods Transit + Hazardous Goods Transit + + + + + + + + + ASBIE + Hazardous Item. Emergency_ Temperature. Temperature + The threshold temperature at which emergency procedures apply in the handling of temperature-controlled goods. + 0..1 + Hazardous Item + Emergency + Temperature + Temperature + Temperature + + + + + + + + + ASBIE + Hazardous Item. Flashpoint_ Temperature. Temperature + The flashpoint temperature of this hazardous item; i.e., the lowest temperature at which vapors above a volatile combustible substance ignite in air when exposed to flame. + 0..1 + Hazardous Item + Flashpoint + Temperature + Temperature + Temperature + + + + + + + + + ASBIE + Hazardous Item. Additional_ Temperature. Temperature + Another temperature relevant to the handling of this hazardous item. + 0..n + Hazardous Item + Additional + Temperature + Temperature + Temperature + + + + + + + + + + + ABIE + Immobilized Security. Details + A class to describe an immobilized security to be used as a guarantee. + Immobilized Security + + + + + + + + + BBIE + Immobilized Security. Immobilization Certificate Identifier. Identifier + An identifier for the certificate of this immobilized security. + 0..1 + Immobilized Security + Immobilization Certificate Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Immobilized Security. Security Identifier. Identifier + An identifier for the security being immobilized. + 0..1 + Immobilized Security + Security Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Immobilized Security. Issue Date. Date + The date on which this immobilized security was issued. + 0..1 + Immobilized Security + Issue Date + Date + Date. Type + + + + + + + + + BBIE + Immobilized Security. Face Value. Amount + The value of the security on the day it was immobilized. + 0..1 + Immobilized Security + Face Value + Amount + Amount. Type + + + + + + + + + BBIE + Immobilized Security. Market Value. Amount + The current market value of the immobilized security. + 0..1 + Immobilized Security + Market Value + Amount + Amount. Type + + + + + + + + + BBIE + Immobilized Security. Shares Number. Quantity + The number of shares immobilized. + 0..1 + Immobilized Security + Shares Number + Quantity + Quantity. Type + + + + + + + + + ASBIE + Immobilized Security. Issuer_ Party. Party + The party issuing the immobilized security certificate. + 0..1 + Immobilized Security + Issuer + Party + Party + Party + + + + + + + + + + + ABIE + Instruction For Returns Line. Details + A class to define a line in an Instruction for Returns. + Instruction For Returns Line + + + + + + + + + BBIE + Instruction For Returns Line. Identifier + An identifier for this instruction for returns line. + 1 + Instruction For Returns Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Instruction For Returns Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Instruction For Returns Line + Note + Text + Text. Type + + + + + + + + + BBIE + Instruction For Returns Line. Quantity + The quantity of goods being returned. + 1 + Instruction For Returns Line + Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Instruction For Returns Line. Manufacturer_ Party. Party + The manufacturer of the goods being returned. + 0..1 + Instruction For Returns Line + Manufacturer + Party + Party + Party + + + + + + + + + ASBIE + Instruction For Returns Line. Item + A description of the item being returned. + 1 + Instruction For Returns Line + Item + Item + Item + + + + + + + + + + + ABIE + Inventory Report Line. Details + A class to define a line in an Inventory Report. + Inventory Report Line + + + + + + + + + BBIE + Inventory Report Line. Identifier + An identifier for this inventory report line. + 1 + Inventory Report Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Inventory Report Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Inventory Report Line + Note + Text + Text. Type + + + + + + + + + BBIE + Inventory Report Line. Quantity + The quantity of the item reported that is currently in stock. + 1 + Inventory Report Line + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Inventory Report Line. Inventory_ Value. Amount + The value of the quantity of the item reported that is currently in stock. + 0..1 + Inventory Report Line + Inventory + Value + Amount + Amount. Type + + + + + + + + + BBIE + Inventory Report Line. Availability Date. Date + The date from which the goods will be available. If not present, the goods are available now. + 0..1 + Inventory Report Line + Availability Date + Date + Date. Type + + + + + + + + + BBIE + Inventory Report Line. Availability Status Code. Code + A code signifying the item's level of availability. + 0..1 + Inventory Report Line + Availability Status Code + Code + Code. Type + + + + + + + + + ASBIE + Inventory Report Line. Item + The item associated with this inventory report line. + 1 + Inventory Report Line + Item + Item + Item + + + + + + + + + ASBIE + Inventory Report Line. Inventory_ Location. Location + The location of the reported quantity of goods. + 0..1 + Inventory Report Line + Inventory + Location + Location + Location + + + + + + + + + + + ABIE + Invoice Line. Details + A class to define a line in an Invoice. + Invoice Line + + + + + + + + + BBIE + Invoice Line. Identifier + An identifier for this invoice line. + 1 + Invoice Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Invoice Line. UUID. Identifier + A universally unique identifier for this invoice line. + 0..1 + Invoice Line + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Invoice Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Invoice Line + Note + Text + Text. Type + + + + + + + + + BBIE + Invoice Line. Invoiced_ Quantity. Quantity + The quantity (of items) on this invoice line. + 0..1 + Invoice Line + Invoiced + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Invoice Line. Line Extension Amount. Amount + The total amount for this invoice line, including allowance charges but net of taxes. + 1 + Invoice Line + Line Extension Amount + Amount + Amount. Type + + + + + + + + + BBIE + Invoice Line. Tax Point Date. Date + The date of this invoice line, used to indicate the point at which tax becomes applicable. + 0..1 + Invoice Line + Tax Point Date + Date + Date. Type + + + + + + + + + BBIE + Invoice Line. Accounting Cost Code. Code + The buyer's accounting cost centre for this invoice line, expressed as a code. + 0..1 + Invoice Line + Accounting Cost Code + Code + Code. Type + + + + + + + + + BBIE + Invoice Line. Accounting Cost. Text + The buyer's accounting cost centre for this invoice line, expressed as text. + 0..1 + Invoice Line + Accounting Cost + Text + Text. Type + + + + + + + + + BBIE + Invoice Line. Payment Purpose Code. Code + A code signifying the business purpose for this payment. + 0..1 + Invoice Line + Payment Purpose Code + Code + Code. Type + + + + + + + + + BBIE + Invoice Line. Free Of Charge_ Indicator. Indicator + An indicator that this invoice line is free of charge (true) or not (false). The default is false. + 0..1 + Invoice Line + Free Of Charge + Indicator + Indicator + Indicator. Type + + + + + + + + + ASBIE + Invoice Line. Invoice_ Period. Period + An invoice period to which this invoice line applies. + 0..n + Invoice Line + Invoice + Period + Period + Period + + + + + + + + + ASBIE + Invoice Line. Order Line Reference + A reference to an order line associated with this invoice line. + 0..n + Invoice Line + Order Line Reference + Order Line Reference + Order Line Reference + + + + + + + + + ASBIE + Invoice Line. Despatch_ Line Reference. Line Reference + A reference to a despatch line associated with this invoice line. + 0..n + Invoice Line + Despatch + Line Reference + Line Reference + Line Reference + + + + + + + + + ASBIE + Invoice Line. Receipt_ Line Reference. Line Reference + A reference to a receipt line associated with this invoice line. + 0..n + Invoice Line + Receipt + Line Reference + Line Reference + Line Reference + + + + + + + + + ASBIE + Invoice Line. Billing Reference + A reference to a billing document associated with this invoice line. + 0..n + Invoice Line + Billing Reference + Billing Reference + Billing Reference + + + + + + + + + ASBIE + Invoice Line. Document Reference + A reference to a document associated with this invoice line. + 0..n + Invoice Line + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Invoice Line. Pricing Reference + A reference to pricing and item location information associated with this invoice line. + 0..1 + Invoice Line + Pricing Reference + Pricing Reference + Pricing Reference + + + + + + + + + ASBIE + Invoice Line. Originator_ Party. Party + The party who originated the Order to which the Invoice is related. + 0..1 + Invoice Line + Originator + Party + Party + Party + + + + + + + + + ASBIE + Invoice Line. Delivery + A delivery associated with this invoice line. + 0..n + Invoice Line + Delivery + Delivery + Delivery + + + + + + + + + ASBIE + Invoice Line. Payment Terms + A specification of payment terms associated with this invoice line. + 0..n + Invoice Line + Payment Terms + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Invoice Line. Allowance Charge + An allowance or charge associated with this invoice line. + 0..n + Invoice Line + Allowance Charge + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Invoice Line. Tax Total + A total amount of taxes of a particular kind applicable to this invoice line. + 0..n + Invoice Line + Tax Total + Tax Total + Tax Total + + + + + + + + + ASBIE + Invoice Line. Withholding_ Tax Total. Tax Total + A reference to a TaxTotal class describing the amount that has been withhold by the authorities, e.g. if the creditor is in dept because of non paid taxes. + 0..n + Invoice Line + Withholding + Tax Total + Tax Total + Tax Total + + + + + + + + + ASBIE + Invoice Line. Item + The item associated with this invoice line. + 1 + Invoice Line + Item + Item + Item + + + + + + + + + ASBIE + Invoice Line. Price + The price of the item associated with this invoice line. + 0..1 + Invoice Line + Price + Price + Price + Unit Price, Base Price + + + + + + + + + ASBIE + Invoice Line. Delivery Terms + Terms and conditions of the delivery associated with this invoice line. + 0..1 + Invoice Line + Delivery Terms + Delivery Terms + Delivery Terms + + + + + + + + + ASBIE + Invoice Line. Sub_ Invoice Line. Invoice Line + An invoice line subsidiary to this invoice line. + 0..n + Invoice Line + Sub + Invoice Line + Invoice Line + Invoice Line + + + + + + + + + ASBIE + Invoice Line. Item_ Price Extension. Price Extension + The price extension, calculated by multiplying the price per unit by the quantity of items on this invoice line. + 0..1 + Invoice Line + Item + Price Extension + Price Extension + Price Extension + + + + + + + + + + + ABIE + Item. Details + A class to describe an item of trade. It includes a generic description applicable to all examples of the item together with optional subsidiary descriptions of any number of actual instances of the type. + Item + article, product, goods item + + + + + + + + + BBIE + Item. Description. Text + Text describing this item. + 0..n + Item + Description + Text + Text. Type + + + + + + + + + BBIE + Item. Pack Quantity. Quantity + The unit packaging quantity; the number of subunits making up this item. + 0..1 + Item + Pack Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Item. Pack Size. Numeric + The number of items in a pack of this item. + 0..1 + Item + Pack Size + Numeric + Numeric. Type + + + + + + + + + BBIE + Item. Catalogue_ Indicator. Indicator + An indicator that this item was ordered from a catalogue (true) or not (false). + 0..1 + Item + Catalogue + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Item. Name + A short name optionally given to this item, such as a name from a catalogue, as distinct from a description. + 0..1 + Item + Name + Name + Name. Type + + + + + + + + + BBIE + Item. Hazardous Risk_ Indicator. Indicator + An indication that the transported item, as delivered, is subject to an international regulation concerning the carriage of dangerous goods (true) or not (false). + 0..1 + Item + Hazardous Risk + Indicator + Indicator + Indicator. Type + Default is negative + + + + + + + + + BBIE + Item. Additional_ Information. Text + Further details regarding this item (e.g., the URL of a relevant web page). + 0..n + Item + Additional + Information + Text + Text. Type + + + + + + + + + BBIE + Item. Keyword. Text + A keyword (search string) for this item, assigned by the seller party. Can also be a synonym for the name of the item. + 0..n + Item + Keyword + Text + Text. Type + + + + + + + + + BBIE + Item. Brand Name. Name + A brand name of this item. + 0..n + Item + Brand Name + Name + Name. Type + Coca-Cola + + + + + + + + + BBIE + Item. Model Name. Name + A model name of this item. + 0..n + Item + Model Name + Name + Name. Type + VW Beetle + + + + + + + + + ASBIE + Item. Buyers_ Item Identification. Item Identification + Identifying information for this item, assigned by the buyer. + 0..1 + Item + Buyers + Item Identification + Item Identification + Item Identification + + + + + + + + + ASBIE + Item. Sellers_ Item Identification. Item Identification + Identifying information for this item, assigned by the seller. + 0..1 + Item + Sellers + Item Identification + Item Identification + Item Identification + + + + + + + + + ASBIE + Item. Manufacturers_ Item Identification. Item Identification + Identifying information for this item, assigned by the manufacturer. + 0..n + Item + Manufacturers + Item Identification + Item Identification + Item Identification + + + + + + + + + ASBIE + Item. Standard_ Item Identification. Item Identification + Identifying information for this item, assigned according to a standard system. + 0..1 + Item + Standard + Item Identification + Item Identification + Item Identification + + + + + + + + + ASBIE + Item. Catalogue_ Item Identification. Item Identification + Identifying information for this item, assigned according to a cataloguing system. + 0..1 + Item + Catalogue + Item Identification + Item Identification + Item Identification + + + + + + + + + ASBIE + Item. Additional_ Item Identification. Item Identification + An additional identifier for this item. + 0..n + Item + Additional + Item Identification + Item Identification + Item Identification + + + + + + + + + ASBIE + Item. Catalogue_ Document Reference. Document Reference + A reference to the catalogue in which this item appears. + 0..1 + Item + Catalogue + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Item. Item Specification_ Document Reference. Document Reference + A reference to a specification document for this item. + 0..n + Item + Item Specification + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Item. Origin_ Country. Country + The country of origin of this item. + 0..1 + Item + Origin + Country + Country + Country + + + + + + + + + ASBIE + Item. Commodity Classification + A classification of this item according to a specific system for classifying commodities. + 0..n + Item + Commodity Classification + Commodity Classification + Commodity Classification + + + + + + + + + ASBIE + Item. Transaction Conditions + A set of sales conditions applying to this item. + 0..n + Item + Transaction Conditions + Transaction Conditions + Transaction Conditions + + + + + + + + + ASBIE + Item. Hazardous Item + Information pertaining to this item as a hazardous item. + 0..n + Item + Hazardous Item + Hazardous Item + Hazardous Item + + + + + + + + + ASBIE + Item. Classified_ Tax Category. Tax Category + A tax category applicable to this item. + 0..n + Item + Classified + Tax Category + Tax Category + Tax Category + + + + + + + + + ASBIE + Item. Additional_ Item Property. Item Property + An additional property of this item. + 0..n + Item + Additional + Item Property + Item Property + Item Property + + + + + + + + + ASBIE + Item. Manufacturer_ Party. Party + The manufacturer of this item. + 0..n + Item + Manufacturer + Party + Party + Party + + + + + + + + + ASBIE + Item. Information Content Provider_ Party. Party + The party responsible for specification of this item. + 0..1 + Item + Information Content Provider + Party + Party + Party + + + + + + + + + ASBIE + Item. Origin_ Address. Address + A region (not country) of origin of this item. + 0..n + Item + Origin + Address + Address + Address + + + + + + + + + ASBIE + Item. Item Instance + A trackable, unique instantiation of this item. + 0..n + Item + Item Instance + Item Instance + Item Instance + + + + + + + + + ASBIE + Item. Certificate + A certificate associated with this item. + 0..n + Item + Certificate + Certificate + Certificate + + + + + + + + + ASBIE + Item. Dimension + One of the measurable dimensions (length, mass, weight, or volume) of this item. + 0..n + Item + Dimension + Dimension + Dimension + + + + + + + + + + + ABIE + Item Comparison. Details + A class to provide information about price and quantity of an item for use in price comparisons based on price, quantity, or measurements. + Item Comparison + + + + + + + + + BBIE + Item Comparison. Price Amount. Amount + The price for the Item Comparison + 0..1 + Item Comparison + Price Amount + Amount + Amount. Type + + + + + + + + + BBIE + Item Comparison. Quantity + The quantity for which this comparison is valid. + 0..1 + Item Comparison + Quantity + Quantity + Quantity. Type + per unit + + + + + + + + + + + ABIE + Item Identification. Details + A class for assigning identifying information to an item. + Item Identification + + + + + + + + + BBIE + Item Identification. Identifier + An identifier for the item. + 1 + Item Identification + Identifier + Identifier + Identifier. Type + CUST001 3333-44-123 + + + + + + + + + BBIE + Item Identification. Extended_ Identifier. Identifier + An extended identifier for the item that identifies the item with specific properties, e.g., Item 123 = Chair / Item 123 Ext 45 = brown chair. Two chairs can have the same item number, but one is brown. The other is white. + 0..1 + Item Identification + Extended + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Item Identification. Barcode_ Symbology Identifier. Identifier + An identifier for a system of barcodes. + 0..1 + Item Identification + Barcode + Symbology Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Item Identification. Physical Attribute + A physical attribute of the item. + 0..n + Item Identification + Physical Attribute + Physical Attribute + Physical Attribute + + + + + + + + + ASBIE + Item Identification. Measurement_ Dimension. Dimension + A measurable dimension (length, mass, weight, or volume) of the item. + 0..n + Item Identification + Measurement + Dimension + Dimension + Dimension + + + + + + + + + ASBIE + Item Identification. Issuer_ Party. Party + The party that issued this item identification. + 0..1 + Item Identification + Issuer + Party + Party + Party + + + + + + + + + + + ABIE + Item Information Request Line. Details + A class to define a line in an Item Information Request asking a trading partner for item information. + Item Information Request Line + + + + + + + + + BBIE + Item Information Request Line. Time Frequency Code. Code + A code signifying the frequency with which item information should be sent to the requester. + 0..1 + Item Information Request Line + Time Frequency Code + Code + Code. Type + + + + + + + + + BBIE + Item Information Request Line. Supply Chain Activity Type Code. Code + A code used to identify the type of supply chain activity about which information request is issued. Examples: CANCELED_ORDERS EMERGENCY_ORDERS ON_HAND ORDERS + 0..1 + Item Information Request Line + Supply Chain Activity Type Code + Code + Code. Type + + + + + + + + + BBIE + Item Information Request Line. Forecast Type Code. Code + The information request can be either about supply chain activity or about forecasts or about performance metrics, so it should be optional + 0..1 + Item Information Request Line + Forecast Type Code + Code + Code. Type + + + + + + + + + BBIE + Item Information Request Line. Performance Metric Type Code. Code + A code signifying a measure of performance. + 0..1 + Item Information Request Line + Performance Metric Type Code + Code + Code. Type + + + + + + + + + ASBIE + Item Information Request Line. Period + A period for which this information is requested. + 1..n + Item Information Request Line + Period + Period + Period + + + + + + + + + ASBIE + Item Information Request Line. Sales Item + Sales information for the item to which this line applies. + 1..n + Item Information Request Line + Sales Item + Sales Item + Sales Item + + + + + + + + + + + ABIE + Item Instance. Details + A class to describe a specific, trackable instance of an item. + Item Instance + + + + + + + + + BBIE + Item Instance. Product Trace_ Identifier. Identifier + An identifier used for tracing this item instance, such as the EPC number used in RFID. + 0..1 + Item Instance + Product Trace + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Item Instance. Manufacture Date. Date + The date on which this item instance was manufactured. + 0..1 + Item Instance + Manufacture Date + Date + Date. Type + + + + + + + + + BBIE + Item Instance. Manufacture Time. Time + The time at which this item instance was manufactured. + 0..1 + Item Instance + Manufacture Time + Time + Time. Type + + + + + + + + + BBIE + Item Instance. Best Before Date. Date + The date before which it is best to use this item instance. + 0..1 + Item Instance + Best Before Date + Date + Date. Type + + + + + + + + + BBIE + Item Instance. Registration Identifier. Identifier + The registration identifier of this item instance. + 0..1 + Item Instance + Registration Identifier + Identifier + Identifier. Type + car registration or licensing number + + + + + + + + + BBIE + Item Instance. Serial Identifier. Identifier + The serial number of this item instance. + 0..1 + Item Instance + Serial Identifier + Identifier + Identifier. Type + chassis number of a car + + + + + + + + + ASBIE + Item Instance. Additional_ Item Property. Item Property + An additional property of this item instance. + 0..n + Item Instance + Additional + Item Property + Item Property + Item Property + + + + + + + + + ASBIE + Item Instance. Lot Identification + The lot identifier of this item instance (the identifier that allows recall of the item if necessary). + 0..1 + Item Instance + Lot Identification + Lot Identification + Lot Identification + + + + + + + + + + + ABIE + Item Location Quantity. Details + A class for information about pricing structure, lead time, and location associated with an item. + Item Location Quantity + + + + + + + + + BBIE + Item Location Quantity. Lead Time. Measure + The lead time, i.e., the time taken from the time at which an item is ordered to the time of its delivery. + 0..1 + Item Location Quantity + Lead Time + Measure + Measure. Type + 2 days , 24 hours + + + + + + + + + BBIE + Item Location Quantity. Minimum_ Quantity. Quantity + The minimum quantity that can be ordered to qualify for a specific price. + 0..1 + Item Location Quantity + Minimum + Quantity + Quantity + Quantity. Type + 10 boxes , 1 carton , 1000 sheets + + + + + + + + + BBIE + Item Location Quantity. Maximum_ Quantity. Quantity + The maximum quantity that can be ordered to qualify for a specific price. + 0..1 + Item Location Quantity + Maximum + Quantity + Quantity + Quantity. Type + 10 boxes , 1 carton , 1000 sheets + + + + + + + + + BBIE + Item Location Quantity. Hazardous Risk_ Indicator. Indicator + An indication that the transported item, as delivered, in the stated quantity to the stated location, is subject to an international regulation concerning the carriage of dangerous goods (true) or not (false). + 0..1 + Item Location Quantity + Hazardous Risk + Indicator + Indicator + Indicator. Type + Default is negative + + + + + + + + + BBIE + Item Location Quantity. Trading Restrictions. Text + Text describing trade restrictions on the quantity of this item or on the item itself. + 0..n + Item Location Quantity + Trading Restrictions + Text + Text. Type + not for export + + + + + + + + + ASBIE + Item Location Quantity. Applicable Territory_ Address. Address + The applicable sales territory. + 0..n + Item Location Quantity + Applicable Territory + Address + Address + Address + + + + + + + + + ASBIE + Item Location Quantity. Price + The price associated with the given location. + 0..1 + Item Location Quantity + Price + Price + Price + + + + + + + + + ASBIE + Item Location Quantity. Delivery Unit + A delivery unit in which the item is located. + 0..n + Item Location Quantity + Delivery Unit + Delivery Unit + Delivery Unit + + + + + + + + + ASBIE + Item Location Quantity. Applicable_ Tax Category. Tax Category + A tax category applicable to this item location quantity. + 0..n + Item Location Quantity + Applicable + Tax Category + Tax Category + Tax Category + + + + + + + + + ASBIE + Item Location Quantity. Package + The package to which this price applies. + 0..1 + Item Location Quantity + Package + Package + Package + + + + + + + + + ASBIE + Item Location Quantity. Allowance Charge + An allowance or charge associated with this item location quantity. + 0..n + Item Location Quantity + Allowance Charge + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Item Location Quantity. Dependent Price Reference + The price of the item as a percentage of the price of some other item. + 0..1 + Item Location Quantity + Dependent Price Reference + Dependent Price Reference + Dependent Price Reference + + + + + + + + + + + ABIE + Item Management Profile. Details + A class to define a management profile for an item. + Item Management Profile + + + + + + + + + BBIE + Item Management Profile. Frozen Period Days. Numeric + The number of days in the future that an order forecast quantity automatically becomes a confirmed order for a product. + 0..1 + Item Management Profile + Frozen Period Days + Numeric + Numeric. Type + + + + + + + + + BBIE + Item Management Profile. Minimum_ Inventory Quantity. Quantity + The quantity of the item that should trigger a replenishment order to avoid depleting the safety stock. + 0..1 + Item Management Profile + Minimum + Inventory Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Item Management Profile. Multiple_ Order Quantity. Quantity + The order quantity multiples in which the product may be ordered. + 0..1 + Item Management Profile + Multiple + Order Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Item Management Profile. Order Interval Days. Numeric + The number of days between regular replenishment orders for the product. + 0..1 + Item Management Profile + Order Interval Days + Numeric + Numeric. Type + + + + + + + + + BBIE + Item Management Profile. Replenishment Owner Description. Text + The trading partner maintaining this item management profile. + 0..n + Item Management Profile + Replenishment Owner Description + Text + Text. Type + + + + + + + + + BBIE + Item Management Profile. Target Service Percent. Percent + The Unit Service Level the trading partners expect to be maintained, expressed as a percentage. Unite Service Level (USL) is a term used in Inventory Management, which is sometimes known as "fill rate", counts the average number of units short expressed as the percentage of the order quantity. + 0..1 + Item Management Profile + Target Service Percent + Percent + Percent. Type + + + + + + + + + BBIE + Item Management Profile. Target_ Inventory Quantity. Quantity + The target inventory quantity. + 0..1 + Item Management Profile + Target + Inventory Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Item Management Profile. Effective_ Period. Period + The period during which this profile is effective. + 1 + Item Management Profile + Effective + Period + Period + Period + + + + + + + + + ASBIE + Item Management Profile. Item + The item associated with this item management profile. + 1 + Item Management Profile + Item + Item + Item + + + + + + + + + ASBIE + Item Management Profile. Item Location Quantity + A set of location-specific properties (e.g., price and quantity) associated with the item. + 0..1 + Item Management Profile + Item Location Quantity + Item Location Quantity + Item Location Quantity + + + + + + + + + + + ABIE + Item Property. Details + A class to describe a specific property of an item. + Item Property + + + + + + + + + BBIE + Item Property. Identifier + An identifier for this property of an item. + 0..1 + Item Property + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Item Property. Name + The name of this item property. + 1 + Item Property + Name + Name + Name. Type + Energy Rating , Collar Size , Fat Content + + + + + + + + + BBIE + Item Property. Name Code. Code + The name of this item property, expressed as a code. + 0..1 + Item Property + Name Code + Code + Code. Type + + + + + + + + + BBIE + Item Property. Test Method. Text + The method of testing the value of this item property. + 0..1 + Item Property + Test Method + Text + Text. Type + 100 watts , 15 European , 20% +/- 5% + + + + + + + + + BBIE + Item Property. Value. Text + The value of this item property, expressed as text. + 0..1 + Item Property + Value + Text + Text. Type + 100 watts , 15 European , 20% +/- 5% + + + + + + + + + BBIE + Item Property. Value_ Quantity. Quantity + The value of this item property, expressed as a quantity. + 0..1 + Item Property + Value + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Item Property. Value Qualifier. Text + Text qualifying the value of the property. + 0..n + Item Property + Value Qualifier + Text + Text. Type + + + + + + + + + BBIE + Item Property. Importance Code. Code + A code signifying the importance of this property in using it to describe a related Item. + 0..1 + Item Property + Importance Code + Code + Code. Type + + + + + + + + + BBIE + Item Property. List Value. Text + The value expressed as a text in case the property is a value in a list. For example, a colour. + 0..n + Item Property + List Value + Text + Text. Type + + + + + + + + + ASBIE + Item Property. Usability_ Period. Period + The period during which this item property is valid. + 0..1 + Item Property + Usability + Period + Period + Period + + + + + + + + + ASBIE + Item Property. Item Property Group + A description of the property group to which this item property belongs. + 0..n + Item Property + Item Property Group + Item Property Group + Item Property Group + + + + + + + + + ASBIE + Item Property. Range_ Dimension. Dimension + The range of values for the dimensions of this property. + 0..1 + Item Property + Range + Dimension + Dimension + Dimension + + + + + + + + + ASBIE + Item Property. Item Property Range + A range of values for this item property. + 0..1 + Item Property + Item Property Range + Item Property Range + Item Property Range + + + + + + + + + + + ABIE + Item Property Group. Details + A class to describe a property group or classification. + Item Property Group + + + + + + + + + BBIE + Item Property Group. Identifier + An identifier for this group of item properties. + 1 + Item Property Group + Identifier + Identifier + Identifier. Type + 233-004 + + + + + + + + + BBIE + Item Property Group. Name + The name of this item property group. + 0..1 + Item Property Group + Name + Name + Name. Type + Electrical Specifications , Dietary Content + + + + + + + + + BBIE + Item Property Group. Importance Code. Code + A code signifying the importance of this property group in using it to describe a required Item. + 0..1 + Item Property Group + Importance Code + Code + Code. Type + + + + + + + + + + + ABIE + Item Property Range. Details + A class to describe a range of values for an item property. + Item Property Range + + + + + + + + + BBIE + Item Property Range. Minimum_ Value. Text + The minimum value in this range of values. + 0..1 + Item Property Range + Minimum + Value + Text + Text. Type + + + + + + + + + BBIE + Item Property Range. Maximum_ Value. Text + The maximum value in this range of values. + 0..1 + Item Property Range + Maximum + Value + Text + Text. Type + + + + + + + + + + + ABIE + Language. Details + A class to describe a language. + Language + + + + + + + + + BBIE + Language. Identifier + An identifier for this language. + 0..1 + Language + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Language. Name + The name of this language. + 0..1 + Language + Name + Name + Name. Type + + + + + + + + + BBIE + Language. Locale Code. Code + A code signifying the locale in which this language is used. + 0..1 + Language + Locale Code + Code + Code. Type + + + + + + + + + + + ABIE + Line Item. Details + A class to describe a line item. + Line Item + + + + + + + + + BBIE + Line Item. Identifier + An identifier for this line item, assigned by the buyer. + 1 + Line Item + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Line Item. Sales_ Order Identifier. Identifier + An identifier for this line item, assigned by the seller. + 0..1 + Line Item + Sales + Order Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Line Item. UUID. Identifier + A universally unique identifier for this line item. + 0..1 + Line Item + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Line Item. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Line Item + Note + Text + Text. Type + + + + + + + + + BBIE + Line Item. Line Status Code. Code + A code signifying the status of this line item with respect to its original state. + 0..1 + Line Item + Line Status Code + Code + Line Status + Line Status_ Code. Type + + + + + + + + + BBIE + Line Item. Quantity + The quantity of items associated with this line item. + 0..1 + Line Item + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Line Item. Line Extension Amount. Amount + The total amount for this line item, including allowance charges but net of taxes. + 0..1 + Line Item + Line Extension Amount + Amount + Amount. Type + + + + + + + + + BBIE + Line Item. Total_ Tax Amount. Amount + The total tax amount for this line item. + 0..1 + Line Item + Total + Tax Amount + Amount + Amount. Type + + + + + + + + + BBIE + Line Item. Minimum_ Quantity. Quantity + The minimum quantity of the item associated with this line. + 0..1 + Line Item + Minimum + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Line Item. Maximum_ Quantity. Quantity + The maximum quantity of the item associated with this line. + 0..1 + Line Item + Maximum + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Line Item. Minimum_ Backorder. Quantity + The minimum back order quantity of the item associated with this line (where back order is allowed). + 0..1 + Line Item + Minimum + Backorder + Quantity + Quantity. Type + + + + + + + + + BBIE + Line Item. Maximum_ Backorder. Quantity + The maximum back order quantity of the item associated with this line (where back order is allowed). + 0..1 + Line Item + Maximum + Backorder + Quantity + Quantity. Type + + + + + + + + + BBIE + Line Item. Inspection Method Code. Code + A code signifying the inspection requirements for the item associated with this line item. + 0..1 + Line Item + Inspection Method Code + Code + Code. Type + + + + + + + + + BBIE + Line Item. Partial Delivery Indicator. Indicator + An indicator that a partial delivery is allowed (true) or not (false). + 0..1 + Line Item + Partial Delivery Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Line Item. Back Order Allowed Indicator. Indicator + An indicator that back order is allowed (true) or not (false). + 0..1 + Line Item + Back Order Allowed Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Line Item. Accounting Cost Code. Code + The buyer's accounting cost centre for this line item, expressed as a code. + 0..1 + Line Item + Accounting Cost Code + Code + Code. Type + + + + + + + + + BBIE + Line Item. Accounting Cost. Text + The buyer's accounting cost centre for this line item, expressed as text. + 0..1 + Line Item + Accounting Cost + Text + Text. Type + + + + + + + + + BBIE + Line Item. Warranty_ Information. Text + Text describing a warranty (provided by WarrantyParty) for the good or service described in this line item. + 0..n + Line Item + Warranty + Information + Text + Text. Type + Unless specified otherwise and in addition to any rights the Customer may have under statute, Dell warrants to the Customer that Dell branded Products (excluding third party products and software), will be free from defects in materials and workmanship affecting normal use for a period of one year from invoice date ( Standard Warranty ). + + + + + + + + + ASBIE + Line Item. Delivery + A delivery associated with this line item. + 0..n + Line Item + Delivery + Delivery + Delivery + + + + + + + + + ASBIE + Line Item. Delivery Terms + Terms and conditions of the delivery associated with this line item. + 0..1 + Line Item + Delivery Terms + Delivery Terms + Delivery Terms + + + + + + + + + ASBIE + Line Item. Originator_ Party. Party + The party who originated the Order associated with this line item. + 0..1 + Line Item + Originator + Party + Party + Party + + + + + + + + + ASBIE + Line Item. Ordered Shipment + An ordered shipment associated with this line item. + 0..n + Line Item + Ordered Shipment + Ordered Shipment + Ordered Shipment + + + + + + + + + ASBIE + Line Item. Pricing Reference + A reference to pricing and item location information associated with this line item. + 0..1 + Line Item + Pricing Reference + Pricing Reference + Pricing Reference + + + + + + + + + ASBIE + Line Item. Allowance Charge + An allowance or charge associated with this line item. + 0..n + Line Item + Allowance Charge + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Line Item. Price + The price of the item of trade associated with this line item. + 0..1 + Line Item + Price + Price + Price + + + + + + + + + ASBIE + Line Item. Item + The item of trade associated with this line item. + 1 + Line Item + Item + Item + Item + + + + + + + + + ASBIE + Line Item. Sub_ Line Item. Line Item + The subsidiary line items that constitute the main line item, such as in a bill of materials. + 0..n + Line Item + Sub + Line Item + Line Item + Line Item + + + + + + + + + ASBIE + Line Item. Warranty Validity_ Period. Period + The period during which the warranty associated with this line item is valid. + 0..1 + Line Item + Warranty Validity + Period + Period + Period + + + + + + + + + ASBIE + Line Item. Warranty_ Party. Party + The party responsible for any warranty associated with this line item. + 0..1 + Line Item + Warranty + Party + Party + Party + + + + + + + + + ASBIE + Line Item. Tax Total + A total amount of taxes of a particular kind applicable to this item. + 0..n + Line Item + Tax Total + Tax Total + Tax Total + + + + + + + + + ASBIE + Line Item. Item_ Price Extension. Price Extension + The price extension, calculated by multiplying the price per unit by the quantity of items. + 0..1 + Line Item + Item + Price Extension + Price Extension + Price Extension + + + + + + + + + ASBIE + Line Item. Line Reference + A reference to a line in a document associated with this line item. + 0..n + Line Item + Line Reference + Line Reference + Line Reference + + + + + + + + + + + ABIE + Line Reference. Details + A class to define a reference to a line in a document. + Line Reference + + + + + + + + + BBIE + Line Reference. Line Identifier. Identifier + Identifies the referenced line in the document. + 1 + Line Reference + Line Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Line Reference. UUID. Identifier + A universally unique identifier for this line reference. + 0..1 + Line Reference + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Line Reference. Line Status Code. Code + A code signifying the status of the referenced line with respect to its original state. + 0..1 + Line Reference + Line Status Code + Code + Line Status + Line Status_ Code. Type + + + + + + + + + ASBIE + Line Reference. Document Reference + A reference to the document containing the referenced line. + 0..1 + Line Reference + Document Reference + Document Reference + Document Reference + + + + + + + + + + + ABIE + Line Response. Details + A class to describe responses to a line in a document. + Line Response + + + + + + + + + ASBIE + Line Response. Line Reference + A reference to the line being responded to. + 1 + Line Response + Line Reference + Line Reference + Line Reference + + + + + + + + + ASBIE + Line Response. Response + A response to the referenced line. + 1..n + Line Response + Response + Response + Response + + + + + + + + + + + ABIE + Location. Details + A class to describe a location. + Location + + + + + + + + + BBIE + Location. Identifier + An identifier for this location, e.g., the EAN Location Number, GLN. + 0..1 + Location + Identifier + Identifier + Identifier. Type + 5790002221134 + + + + + + + + + BBIE + Location. Description. Text + Text describing this location. + 0..n + Location + Description + Text + Text. Type + + + + + + + + + BBIE + Location. Conditions. Text + Free-form text describing the physical conditions of the location. + 0..n + Location + Conditions + Text + Text. Type + + + + + + + + + BBIE + Location. Country Subentity. Text + A territorial division of a country, such as a county or state, expressed as text. + 0..1 + Location + Country Subentity + Text + Text. Type + AdministrativeArea, State, Country, Shire, Canton + Florida , Tamilnadu + + + + + + + + + BBIE + Location. Country Subentity Code. Code + A territorial division of a country, such as a county or state, expressed as a code. + 0..1 + Location + Country Subentity Code + Code + Code. Type + AdministrativeAreaCode, State Code + + + + + + + + + BBIE + Location. Location Type Code. Code + A code signifying the type of location. + 0..1 + Location + Location Type Code + Code + Code. Type + + + + + + + + + BBIE + Location. Information_ URI. Identifier + The Uniform Resource Identifier (URI) of a document providing information about this location. + 0..1 + Location + Information + URI + Identifier + Identifier. Type + + + + + + + + + BBIE + Location. Name + The name of this location. + 0..1 + Location + Name + Name + Name. Type + winter 2005 collection + + + + + + + + + ASBIE + Location. Validity_ Period. Period + A period during which this location can be used (e.g., for delivery). + 0..n + Location + Validity + Period + Period + Period + + + + + + + + + ASBIE + Location. Address + The address of this location. + 0..1 + Location + Address + Address + Address + + + + + + + + + ASBIE + Location. Subsidiary_ Location. Location + A location subsidiary to this location. + 0..n + Location + Subsidiary + Location + Location + Location + + + + + + + + + ASBIE + Location. Location Coordinate + The geographical coordinates of this location. + 0..n + Location + Location Coordinate + Location Coordinate + Location Coordinate + + + + + + + + + + + ABIE + Location Coordinate. Details + A class for defining a set of geographical coordinates (apparently misnamed). + Location Coordinate + + + + + + + + + BBIE + Location Coordinate. Coordinate System Code. Code + A code signifying the location system used. + 0..1 + Location Coordinate + Coordinate System Code + Code + Code. Type + + + + + + + + + BBIE + Location Coordinate. Latitude_ Degrees. Measure + The degree component of a latitude measured in degrees and minutes. + 0..1 + Location Coordinate + Latitude + Degrees + Measure + Measure. Type + + + + + + + + + BBIE + Location Coordinate. Latitude_ Minutes. Measure + The minutes component of a latitude measured in degrees and minutes (modulo 60). + 0..1 + Location Coordinate + Latitude + Minutes + Measure + Measure. Type + + + + + + + + + BBIE + Location Coordinate. Latitude Direction Code. Code + A code signifying the direction of latitude measurement from the equator (north or south). + 0..1 + Location Coordinate + Latitude Direction Code + Code + Latitude Direction + Latitude Direction_ Code. Type + + + + + + + + + BBIE + Location Coordinate. Longitude_ Degrees. Measure + The degree component of a longitude measured in degrees and minutes. + 0..1 + Location Coordinate + Longitude + Degrees + Measure + Measure. Type + + + + + + + + + BBIE + Location Coordinate. Longitude_ Minutes. Measure + The minutes component of a longitude measured in degrees and minutes (modulo 60). + 0..1 + Location Coordinate + Longitude + Minutes + Measure + Measure. Type + + + + + + + + + BBIE + Location Coordinate. Longitude Direction Code. Code + A code signifying the direction of longitude measurement from the prime meridian (east or west). + 0..1 + Location Coordinate + Longitude Direction Code + Code + Longitude Direction + Longitude Direction_ Code. Type + + + + + + + + + BBIE + Location Coordinate. Altitude. Measure + The altitude of the location. + 0..1 + Location Coordinate + Altitude + Measure + Measure. Type + + + + + + + + + + + ABIE + Lot Identification. Details + A class for defining a lot identifier (the identifier of a set of item instances that would be used in case of a recall of that item). + Lot Identification + + + + + + + + + BBIE + Lot Identification. Lot Number. Identifier + An identifier for the lot. + 0..1 + Lot Identification + Lot Number + Identifier + Identifier. Type + + + + + + + + + BBIE + Lot Identification. Expiry Date. Date + The expiry date of the lot. + 0..1 + Lot Identification + Expiry Date + Date + Date. Type + + + + + + + + + ASBIE + Lot Identification. Additional_ Item Property. Item Property + An additional property of the lot. + 0..n + Lot Identification + Additional + Item Property + Item Property + Item Property + + + + + + + + + + + ABIE + Maritime Transport. Details + A class to describe a vessel used for transport by water (including sea, river, and canal). + Maritime Transport + + + + + + + + + BBIE + Maritime Transport. Vessel Identifier. Identifier + An identifier for a specific vessel. + 0..1 + Maritime Transport + Vessel Identifier + Identifier + Identifier. Type + Lloyds Number, Registration Number (WCO ID 167) + International Maritime Organisation number of a vessel + + + + + + + + + BBIE + Maritime Transport. Vessel Name. Name + The name of the vessel. + 0..1 + Maritime Transport + Vessel Name + Name + Name. Type + Ships Name + + + + + + + + + BBIE + Maritime Transport. Radio Call Sign Identifier. Identifier + The radio call sign of the vessel. + 0..1 + Maritime Transport + Radio Call Sign Identifier + Identifier + Identifier. Type + NES + + + + + + + + + BBIE + Maritime Transport. Ships Requirements. Text + Information about what services a vessel will require when it arrives at a port, such as refueling, maintenance, waste disposal etc. + 0..n + Maritime Transport + Ships Requirements + Text + Text. Type + + + + + + + + + BBIE + Maritime Transport. Gross Tonnage. Measure + Gross tonnage is calculated by measuring a ship's volume (from keel to funnel, to the outside of the hull framing) and applying a mathematical formula and is used to determine things such as a ship's manning regulations, safety rules, registration fees and port dues. + 0..1 + Maritime Transport + Gross Tonnage + Measure + Measure. Type + + + + + + + + + BBIE + Maritime Transport. Net Tonnage. Measure + Net tonnage is calculated by measuring a ship's internal volume and applying a mathematical formula and is used to calculate the port duties. + 0..1 + Maritime Transport + Net Tonnage + Measure + Measure. Type + + + + + + + + + ASBIE + Maritime Transport. Registry Certificate_ Document Reference. Document Reference + The certificate issued to the ship by the ships registry in a given flag state. + 0..1 + Maritime Transport + Registry Certificate + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Maritime Transport. Registry Port_ Location. Location + The port in which a vessel is registered or permanently based. + 0..1 + Maritime Transport + Registry Port + Location + Location + Location + + + + + + + + + + + ABIE + Meter. Details + A class to describe a meter and its readings. + Meter + + + + + + + + + BBIE + Meter. Meter Number. Text + The meter number, expressed as text. + 0..1 + Meter + Meter Number + Text + Text. Type + 61722x + + + + + + + + + BBIE + Meter. Meter Name. Text + The name of this meter, which serves as an identifier to distinguish a main meter from a submeter. + 0..1 + Meter + Meter Name + Text + Text. Type + + + + + + + + + BBIE + Meter. Meter Constant. Text + The factor by which readings of this meter must be multiplied to calculate consumption, expressed as text. + 0..1 + Meter + Meter Constant + Text + Text. Type + 1.000 + + + + + + + + + BBIE + Meter. Meter Constant Code. Code + A code signifying the formula to be used in applying the meter constant. + 0..1 + Meter + Meter Constant Code + Code + Code. Type + Factor + + + + + + + + + BBIE + Meter. Total_ Delivered Quantity. Quantity + The quantity delivered; the total quantity consumed as calculated from the meter readings. + 0..1 + Meter + Total + Delivered Quantity + Quantity + Quantity. Type + 5761.00 + + + + + + + + + ASBIE + Meter. Meter Reading + A reading of this meter. + 0..n + Meter + Meter Reading + Meter Reading + Meter Reading + + + + + + + + + ASBIE + Meter. Meter Property + A property of this meter. + 0..n + Meter + Meter Property + Meter Property + Meter Property + + + + + + + + + + + ABIE + Meter Property. Details + The name of this meter property. + Meter Property + + + + + + + + + BBIE + Meter Property. Name + The name of this meter property, expressed as a code. + 0..1 + Meter Property + Name + Name + Name. Type + Energy Rating , Collar Size , Fat Content + + + + + + + + + BBIE + Meter Property. Name Code. Code + The value of this meter property, expressed as text. + 0..1 + Meter Property + Name Code + Code + Code. Type + + + + + + + + + BBIE + Meter Property. Value. Text + The value of this meter property, expressed as a quantity. + 0..1 + Meter Property + Value + Text + Text. Type + 100 watts , 15 European , 20% +/- 5% + + + + + + + + + BBIE + Meter Property. Value_ Quantity. Quantity + The value of this meter property, expressed as a quantity. + 0..1 + Meter Property + Value + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Meter Property. Value Qualifier. Text + An additional value to qualify the value of the meter + 0..n + Meter Property + Value Qualifier + Text + Text. Type + + + + + + + + + + + ABIE + Meter Reading. Details + A class to describe a meter reading. + Meter Reading + + + + + + + + + BBIE + Meter Reading. Identifier + An identifier for this meter reading. + 0..1 + Meter Reading + Identifier + Identifier + Identifier. Type + 7411013716x + + + + + + + + + BBIE + Meter Reading. Meter Reading Type. Text + The type of this meter reading, expressed as text. + 0..1 + Meter Reading + Meter Reading Type + Text + Text. Type + Electricity + + + + + + + + + BBIE + Meter Reading. Meter Reading Type Code. Code + The type of this meter reading, expressed as a code. + 0..1 + Meter Reading + Meter Reading Type Code + Code + Code. Type + Electricity + + + + + + + + + BBIE + Meter Reading. Previous_ Meter Reading Date. Date + The date of the previous meter reading. + 1 + Meter Reading + Previous + Meter Reading Date + Date + Date. Type + 2006-09-01 + + + + + + + + + BBIE + Meter Reading. Previous_ Meter Quantity. Quantity + The quantity of the previous meter reading. + 1 + Meter Reading + Previous + Meter Quantity + Quantity + Quantity. Type + 122604.00 + + + + + + + + + BBIE + Meter Reading. Latest_ Meter Reading Date. Date + The date of the latest meter reading. + 1 + Meter Reading + Latest + Meter Reading Date + Date + Date. Type + 2006-09-01 + + + + + + + + + BBIE + Meter Reading. Latest_ Meter Quantity. Quantity + The quantity of the latest meter reading. + 1 + Meter Reading + Latest + Meter Quantity + Quantity + Quantity. Type + 128365.00 + + + + + + + + + BBIE + Meter Reading. Previous Meter Reading_ Method. Text + The method used for the previous meter reading, expressed as text. + 0..1 + Meter Reading + Previous Meter Reading + Method + Text + Text. Type + Manuel + + + + + + + + + BBIE + Meter Reading. Previous Meter Reading_ Method Code. Code + The method used for the previous meter reading, expressed as a code. + 0..1 + Meter Reading + Previous Meter Reading + Method Code + Code + Code. Type + Estimated + + + + + + + + + BBIE + Meter Reading. Latest Meter Reading_ Method. Text + The method used for the latest meter reading, expressed as text. + 0..1 + Meter Reading + Latest Meter Reading + Method + Text + Text. Type + Manuel + + + + + + + + + BBIE + Meter Reading. Latest Meter Reading_ Method Code. Code + The method used for the latest meter reading, expressed as a code. + 0..1 + Meter Reading + Latest Meter Reading + Method Code + Code + Code. Type + Estimated + + + + + + + + + BBIE + Meter Reading. Meter Reading_ Comments. Text + Text containing comments on this meter reading. + 0..n + Meter Reading + Meter Reading + Comments + Text + Text. Type + The last stated meterstand is estimated + + + + + + + + + BBIE + Meter Reading. Delivered_ Quantity. Quantity + Consumption in the period from PreviousMeterReadingDate to LatestMeterReadingDate. + 1 + Meter Reading + Delivered + Quantity + Quantity + Quantity. Type + + + + + + + + + + + ABIE + Miscellaneous Event. Details + A class to describe a miscellaneous event associated with a retail event. + Miscellaneous Event + + + + + + + + + BBIE + Miscellaneous Event. Miscellaneous Event Type Code. Code + A code signifying the type of this miscellaneous event. Examples are: ASSORTMENT_CHARGE DISASTER FORECAST_DECREASE FORECAST_INCREASE FREIGHT_FLOW_ALLOCATION INVENTORY_POLICY_CHANGE LOCATION_CLOSING LOCATION_OPENING OTHER OUT_OF_STOCK PACKAGING_LABELING_CHANGE PRICE_DECREASE PRICE_INCREASE STORE_FORMAT_OR_PLANOGRAM_CHANGE TEST_MARKET WEATHER + 1 + Miscellaneous Event + Miscellaneous Event Type Code + Code + Code. Type + + + + + + + + + ASBIE + Miscellaneous Event. Event Line Item + An event line item for this miscellaneous retail event. + 1..n + Miscellaneous Event + Event Line Item + Event Line Item + Event Line Item + + + + + + + + + + + ABIE + Monetary Total. Details + A class to define a monetary total. + Monetary Total + + + + + + + + + BBIE + Monetary Total. Line Extension Amount. Amount + The monetary amount of an extended transaction line, net of tax and settlement discounts, but inclusive of any applicable rounding amount. + 0..1 + Monetary Total + Line Extension Amount + Amount + Amount. Type + + + + + + + + + BBIE + Monetary Total. Tax Exclusive Amount. Amount + The monetary amount of an extended transaction line, exclusive of taxes. + 0..1 + Monetary Total + Tax Exclusive Amount + Amount + Amount. Type + + + + + + + + + BBIE + Monetary Total. Tax Inclusive Amount. Amount + The monetary amount including taxes; the sum of payable amount and prepaid amount. + 0..1 + Monetary Total + Tax Inclusive Amount + Amount + Amount. Type + + + + + + + + + BBIE + Monetary Total. Allowance_ Total Amount. Amount + The total monetary amount of all allowances. + 0..1 + Monetary Total + Allowance + Total Amount + Amount + Amount. Type + + + + + + + + + BBIE + Monetary Total. Charge_ Total Amount. Amount + The total monetary amount of all charges. + 0..1 + Monetary Total + Charge + Total Amount + Amount + Amount. Type + + + + + + + + + BBIE + Monetary Total. Prepaid Amount. Amount + The total prepaid monetary amount. + 0..1 + Monetary Total + Prepaid Amount + Amount + Amount. Type + + + + + + + + + BBIE + Monetary Total. Payable_ Rounding Amount. Amount + The rounding amount (positive or negative) added to produce the line extension amount. + 0..1 + Monetary Total + Payable + Rounding Amount + Amount + Amount. Type + + + + + + + + + BBIE + Monetary Total. Payable_ Amount. Amount + The amount of the monetary total to be paid. + 1 + Monetary Total + Payable + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Monetary Total. Payable_ Alternative Amount. Amount + The amount of the monetary total to be paid, expressed in an alternative currency. + 0..1 + Monetary Total + Payable + Alternative Amount + Amount + Amount. Type + + + + + + + + + + + ABIE + Notification Requirement. Details + A class to describe a notification requirement. + Notification Requirement + + + + + + + + + BBIE + Notification Requirement. Notification Type Code. Code + A code signifying the type of notification (e.g., pickup status). + 1 + Notification Requirement + Notification Type Code + Code + Code. Type + + + + + + + + + BBIE + Notification Requirement. Post Event Notification Duration. Measure + The length of time between the occurrence of a given event and the issuance of a notification. + 0..1 + Notification Requirement + Post Event Notification Duration + Measure + Measure. Type + + + + + + + + + BBIE + Notification Requirement. Pre Event Notification Duration. Measure + The length of time to elapse between the issuance of a notification and the occurrence of the event it relates to. + 0..1 + Notification Requirement + Pre Event Notification Duration + Measure + Measure. Type + + + + + + + + + ASBIE + Notification Requirement. Notify_ Party. Party + A party to be notified. + 0..n + Notification Requirement + Notify + Party + Party + Party + + + + + + + + + ASBIE + Notification Requirement. Notification_ Period. Period + A period during which a notification should be issued. + 0..n + Notification Requirement + Notification + Period + Period + Period + + + + + + + + + ASBIE + Notification Requirement. Notification_ Location. Location + A location at which a notification should be issued. + 0..n + Notification Requirement + Notification + Location + Location + Location + + + + + + + + + + + ABIE + On Account Payment. Details + A scheduled prepayment (on-account payment) for a estimated utility consumption + On Account Payment + + + + + + + + + BBIE + On Account Payment. Estimated_ Consumed Quantity. Quantity + The estimated consumed quantity covered by the payment. + 1 + On Account Payment + Estimated + Consumed Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + On Account Payment. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + On Account Payment + Note + Text + Text. Type + We make a reservation for price regulations. You will receive you next yearly statement about one year from today. + + + + + + + + + ASBIE + On Account Payment. Payment Terms + A specification of payment terms associated with this payment. + 1..n + On Account Payment + Payment Terms + Payment Terms + Payment Terms + + + + + + + + + + + ABIE + Order Line. Details + A class to define a line in an order document (e.g., Order, Order Change, or Order Response) describing an item being ordered. + Order Line + + + + + + + + + BBIE + Order Line. Substitution Status Code. Code + A code signifying the substitution status of the item on this order line. The order line may indicate that the substitute is proposed by the buyer (in Order) or by the seller (in Order Response) or that a substitution has been made by the seller (in Order Response). + 0..1 + Order Line + Substitution Status Code + Code + Substitution Status + Substitution Status_ Code. Type + + + + + + + + + BBIE + Order Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Order Line + Note + Text + Text. Type + + + + + + + + + ASBIE + Order Line. Line Item + The line item itself. + 1 + Order Line + Line Item + Line Item + Line Item + + + + + + + + + ASBIE + Order Line. Seller Proposed Substitute_ Line Item. Line Item + In Order Response, a line item proposed by the seller describing a product that might substitute for the product described in this order line. + 0..n + Order Line + Seller Proposed Substitute + Line Item + Line Item + Line Item + + + + + + + + + ASBIE + Order Line. Seller Substituted_ Line Item. Line Item + In Order Response, a line item that has replaced the original order line item. The specified quantity and pricing may differ from those in the original line item, but when a line item is substituted by the seller, it is assumed that other information, such as shipment details, will remain the same. + 0..n + Order Line + Seller Substituted + Line Item + Line Item + Line Item + + + + + + + + + ASBIE + Order Line. Buyer Proposed Substitute_ Line Item. Line Item + A description of an item proposed by the buyer as a possible alternative to the item associated with this order line. + 0..n + Order Line + Buyer Proposed Substitute + Line Item + Line Item + Line Item + + + + + + + + + ASBIE + Order Line. Catalogue_ Line Reference. Line Reference + A reference to a catalogue line associated with this order line. + 0..1 + Order Line + Catalogue + Line Reference + Line Reference + Line Reference + + + + + + + + + ASBIE + Order Line. Quotation_ Line Reference. Line Reference + A reference to a quotation line associated with this order line. + 0..1 + Order Line + Quotation + Line Reference + Line Reference + Line Reference + + + + + + + + + ASBIE + Order Line. Order Line Reference + A reference to another order line, such as in a replacement order or another line on the same order that is related. + 0..n + Order Line + Order Line Reference + Order Line Reference + Order Line Reference + + + + + + + + + ASBIE + Order Line. Document Reference + A reference to a document associated with this order line. + 0..n + Order Line + Document Reference + Document Reference + Document Reference + + + + + + + + + + + ABIE + Order Line Reference. Details + A class to define a reference to an order line. + Order Line Reference + + + + + + + + + BBIE + Order Line Reference. Line Identifier. Identifier + An identifier for the referenced order line, assigned by the buyer. + 1 + Order Line Reference + Line Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Order Line Reference. Sales Order_ Line Identifier. Identifier + An identifier for the referenced order line, assigned by the seller. + 0..1 + Order Line Reference + Sales Order + Line Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Order Line Reference. UUID. Identifier + A universally unique identifier for this order line reference. + 0..1 + Order Line Reference + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Order Line Reference. Line Status Code. Code + A code signifying the status of the referenced order line with respect to its original state. + 0..1 + Order Line Reference + Line Status Code + Code + Line Status + Line Status_ Code. Type + + + + + + + + + ASBIE + Order Line Reference. Order Reference + A reference to the Order containing the referenced order line. + 0..1 + Order Line Reference + Order Reference + Order Reference + Order Reference + + + + + + + + + + + ABIE + Order Reference. Details + A class to define a reference to an Order. + Order Reference + + + + + + + + + BBIE + Order Reference. Identifier + An identifier for this order reference, assigned by the buyer. + 1 + Order Reference + Identifier + Identifier + Identifier. Type + PO-001 3333-44-123 + + + + + + + + + BBIE + Order Reference. Sales_ Order Identifier. Identifier + An identifier for this order reference, assigned by the seller. + 0..1 + Order Reference + Sales + Order Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Order Reference. Copy_ Indicator. Indicator + Indicates whether the referenced Order is a copy (true) or the original (false). + 0..1 + Order Reference + Copy + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Order Reference. UUID. Identifier + A universally unique identifier for this order reference. + 0..1 + Order Reference + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Order Reference. Issue Date. Date + The date on which the referenced Order was issued. + 0..1 + Order Reference + Issue Date + Date + Date. Type + + + + + + + + + BBIE + Order Reference. Issue Time. Time + The time at which the referenced Order was issued. + 0..1 + Order Reference + Issue Time + Time + Time. Type + + + + + + + + + BBIE + Order Reference. Customer_ Reference. Text + Text used for tagging purchasing card transactions. + 0..1 + Order Reference + Customer + Reference + Text + Text. Type + + + + + + + + + BBIE + Order Reference. Order Type Code. Code + A code signifying the type of the referenced Order. + 0..1 + Order Reference + Order Type Code + Code + Code. Type + + + + + + + + + ASBIE + Order Reference. Document Reference + A document associated with this reference to an Order. + 0..1 + Order Reference + Document Reference + Document Reference + Document Reference + + + + + + + + + + + ABIE + Ordered Shipment. Details + A class to describe an ordered shipment. + Ordered Shipment + + + + + + + + + ASBIE + Ordered Shipment. Shipment + The ordered shipment. + 1 + Ordered Shipment + Shipment + Shipment + Shipment + + + + + + + + + ASBIE + Ordered Shipment. Package + A package in this ordered shipment. + 0..n + Ordered Shipment + Package + Package + Package + + + + + + + + + + + ABIE + Package. Details + A class to describe a package. + Package + + + + + + + + + BBIE + Package. Identifier + An identifier for this package. + 0..1 + Package + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Package. Quantity + The quantity of items contained in this package. + 0..1 + Package + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Package. Returnable Material_ Indicator. Indicator + An indicator that the packaging material is returnable (true) or not (false). + 0..1 + Package + Returnable Material + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Package. Package Level Code. Code + A code signifying a level of packaging. + 0..1 + Package + Package Level Code + Code + Code. Type + + + + + + + + + BBIE + Package. Packaging Type Code. Code + A code signifying a type of packaging. + 0..1 + Package + Packaging Type Code + Code + Packaging Type + Packaging Type_ Code. Type + Package classification code + + + + + + + + + BBIE + Package. Packing Material. Text + Text describing the packaging material. + 0..n + Package + Packing Material + Text + Text. Type + + + + + + + + + BBIE + Package. Trace_ Identifier. Identifier + An identifier for use in tracing this package, such as the EPC number used in RFID. + 0..1 + Package + Trace + Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Package. Contained_ Package. Package + A package contained within this package. + 0..n + Package + Contained + Package + Package + Package + + + + + + + + + ASBIE + Package. Containing_ Transport Equipment. Transport Equipment + The piece of transport equipment containing this package. + 0..1 + Package + Containing + Transport Equipment + Transport Equipment + Transport Equipment + + + + + + + + + ASBIE + Package. Goods Item + A goods item included in this package. + 0..n + Package + Goods Item + Goods Item + Goods Item + + + + + + + + + ASBIE + Package. Measurement_ Dimension. Dimension + A measurable dimension (length, mass, weight, or volume) of this package. + 0..n + Package + Measurement + Dimension + Dimension + Dimension + + + + + + + + + ASBIE + Package. Delivery Unit + A delivery unit within this package. + 0..n + Package + Delivery Unit + Delivery Unit + Delivery Unit + + + + + + + + + ASBIE + Package. Delivery + The delivery of this package. + 0..1 + Package + Delivery + Delivery + Delivery + + + + + + + + + ASBIE + Package. Pickup + The pickup of this package. + 0..1 + Package + Pickup + Pickup + Pickup + + + + + + + + + ASBIE + Package. Despatch + The despatch of this package. + 0..1 + Package + Despatch + Despatch + Despatch + + + + + + + + + + + ABIE + Party. Details + A class to describe an organization, sub-organization, or individual fulfilling a role in a business process. + Party + + + + + + + + + BBIE + Party. Mark Care_ Indicator. Indicator + An indicator that this party is "care of" (c/o) (true) or not (false). + 0..1 + Party + Mark Care + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Party. Mark Attention_ Indicator. Indicator + An indicator that this party is "for the attention of" (FAO) (true) or not (false). + 0..1 + Party + Mark Attention + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Party. Website_ URI. Identifier + The Uniform Resource Identifier (URI) that identifies this party's web site; i.e., the web site's Uniform Resource Locator (URL). + 0..1 + Party + Website + URI + Identifier + Identifier. Type + + + + + + + + + BBIE + Party. Logo Reference. Identifier + An identifier for this party's logo. + 0..1 + Party + Logo Reference + Identifier + Identifier. Type + http://www2.coca-cola.com/images/logo.gif + + + + + + + + + BBIE + Party. Endpoint Identifier. Identifier + An identifier for the end point of the routing service (e.g., EAN Location Number, GLN). + 0..1 + Party + Endpoint Identifier + Identifier + Identifier. Type + 5790002221134 + + + + + + + + + BBIE + Party. Industry Classification Code. Code + This party's Industry Classification Code. + 0..1 + Party + Industry Classification Code + Code + Code. Type + Public authority , NAIC codes + + + + + + + + + ASBIE + Party. Party Identification + An identifier for this party. + 0..n + Party + Party Identification + Party Identification + Party Identification + + + + + + + + + ASBIE + Party. Party Name + A name for this party. + 0..n + Party + Party Name + Party Name + Party Name + + + + + + + + + ASBIE + Party. Language + The language associated with this party. + 0..1 + Party + Language + Language + Language + + + + + + + + + ASBIE + Party. Postal_ Address. Address + The party's postal address. + 0..1 + Party + Postal + Address + Address + Address + + + + + + + + + ASBIE + Party. Physical_ Location. Location + The physical location of this party. + 0..1 + Party + Physical + Location + Location + Location + + + + + + + + + ASBIE + Party. Party Tax Scheme + A tax scheme applying to this party. + 0..n + Party + Party Tax Scheme + Party Tax Scheme + Party Tax Scheme + + + + + + + + + ASBIE + Party. Party Legal Entity + A description of this party as a legal entity. + 0..n + Party + Party Legal Entity + Party Legal Entity + Party Legal Entity + + + + + + + + + ASBIE + Party. Contact + The primary contact for this party. + 0..1 + Party + Contact + Contact + Contact + + + + + + + + + ASBIE + Party. Person + A person associated with this party. + 0..n + Party + Person + Person + Person + + + + + + + + + ASBIE + Party. Agent_ Party. Party + A party who acts as an agent for this party. + 0..1 + Party + Agent + Party + Party + Party + Customs Broker + + + + + + + + + ASBIE + Party. Service Provider Party + A party providing a service to this party. + 0..n + Party + Service Provider Party + Service Provider Party + Service Provider Party + + + + + + + + + ASBIE + Party. Power Of Attorney + A power of attorney associated with this party. + 0..n + Party + Power Of Attorney + Power Of Attorney + Power Of Attorney + + + + + + + + + ASBIE + Party. Financial Account + The financial account associated with this party. + 0..1 + Party + Financial Account + Financial Account + Financial Account + + + + + + + + + + + ABIE + Party Identification. Details + A class to define an identifier for a party. + Party Identification + + + + + + + + + BBIE + Party Identification. Identifier + An identifier for the party. + 1 + Party Identification + Identifier + Identifier + Identifier. Type + + + + + + + + + + + ABIE + Party Legal Entity. Details + A class to describe a party as a legal entity. + Party Legal Entity + + + + + + + + + BBIE + Party Legal Entity. Registration_ Name. Name + The name of the party as registered with the relevant legal authority. + 0..1 + Party Legal Entity + Registration + Name + Name + Name. Type + Microsoft Corporation + + + + + + + + + BBIE + Party Legal Entity. Company Identifier. Identifier + An identifier for the party as registered within a company registration scheme. + 0..1 + Party Legal Entity + Company Identifier + Identifier + Identifier. Type + Business Registration Number, Company Number + 3556625 + + + + + + + + + BBIE + Party Legal Entity. Registration_ Date. Date + The registration date of the CompanyID. + 0..1 + Party Legal Entity + Registration + Date + Date + Date. Type + + + + + + + + + BBIE + Party Legal Entity. Registration Expiration_ Date. Date + The date upon which a registration expires (e.g., registration for an import/export license). + 0..1 + Party Legal Entity + Registration Expiration + Date + Date + Date. Type + + + + + + + + + BBIE + Party Legal Entity. Company Legal Form Code. Code + A code signifying the party's legal status. + 0..1 + Party Legal Entity + Company Legal Form Code + Code + Code. Type + Legal Status + + + + + + + + + BBIE + Party Legal Entity. Company Legal Form. Text + The company legal status, expressed as a text. + 0..1 + Party Legal Entity + Company Legal Form + Text + Text. Type + + + + + + + + + BBIE + Party Legal Entity. Sole Proprietorship Indicator. Indicator + An indicator that the company is owned and controlled by one person (true) or not (false). + 0..1 + Party Legal Entity + Sole Proprietorship Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Party Legal Entity. Company Liquidation Status Code. Code + A code signifying the party's liquidation status. + 0..1 + Party Legal Entity + Company Liquidation Status Code + Code + Code. Type + + + + + + + + + BBIE + Party Legal Entity. Corporate Stock_ Amount. Amount + The number of shares in the capital stock of a corporation. + 0..1 + Party Legal Entity + Corporate Stock + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Party Legal Entity. Fully Paid Shares Indicator. Indicator + An indicator that all shares of corporate stock have been paid by shareholders (true) or not (false). + 0..1 + Party Legal Entity + Fully Paid Shares Indicator + Indicator + Indicator. Type + + + + + + + + + ASBIE + Party Legal Entity. Registration_ Address. Address + The registered address of the party within a corporate registration scheme. + 0..1 + Party Legal Entity + Registration + Address + Address + Address + + + + + + + + + ASBIE + Party Legal Entity. Corporate Registration Scheme + The corporate registration scheme used to register the party. + 0..1 + Party Legal Entity + Corporate Registration Scheme + Corporate Registration Scheme + Corporate Registration Scheme + + + + + + + + + ASBIE + Party Legal Entity. Head Office_ Party. Party + The head office of the legal entity + 0..1 + Party Legal Entity + Head Office + Party + Party + Party + + + + + + + + + ASBIE + Party Legal Entity. Shareholder Party + A party owning shares in this legal entity. + 0..n + Party Legal Entity + Shareholder Party + Shareholder Party + Shareholder Party + + + + + + + + + + + ABIE + Party Name. Details + A class for defining the name of a party. + Party Name + + + + + + + + + BBIE + Party Name. Name + The name of the party. + 1 + Party Name + Name + Name + Name. Type + Microsoft + + + + + + + + + + + ABIE + Party Tax Scheme. Details + A class to describe a taxation scheme applying to a party. + Party Tax Scheme + + + + + + + + + BBIE + Party Tax Scheme. Registration_ Name. Name + The name of the party as registered with the relevant fiscal authority. + 0..1 + Party Tax Scheme + Registration + Name + Name + Name. Type + Microsoft Corporation + + + + + + + + + BBIE + Party Tax Scheme. Company Identifier. Identifier + An identifier for the party assigned for tax purposes by the taxation authority. + 0..1 + Party Tax Scheme + Company Identifier + Identifier + Identifier. Type + VAT Number + 3556625 + + + + + + + + + BBIE + Party Tax Scheme. Tax Level Code. Code + A code signifying the tax level applicable to the party within this taxation scheme. + 0..1 + Party Tax Scheme + Tax Level Code + Code + Code. Type + + + + + + + + + BBIE + Party Tax Scheme. Exemption Reason Code. Code + A reason for the party's exemption from tax, expressed as a code. + 0..1 + Party Tax Scheme + Exemption Reason Code + Code + Code. Type + + + + + + + + + BBIE + Party Tax Scheme. Exemption_ Reason. Text + A reason for the party's exemption from tax, expressed as text. + 0..n + Party Tax Scheme + Exemption + Reason + Text + Text. Type + + + + + + + + + ASBIE + Party Tax Scheme. Registration_ Address. Address + The address of the party as registered for tax purposes. + 0..1 + Party Tax Scheme + Registration + Address + Address + Address + + + + + + + + + ASBIE + Party Tax Scheme. Tax Scheme + The taxation scheme applicable to the party. + 1 + Party Tax Scheme + Tax Scheme + Tax Scheme + Tax Scheme + + + + + + + + + + + ABIE + Payment. Details + A class to describe a payment. + Payment + + + + + + + + + BBIE + Payment. Identifier + An identifier for this payment. + 0..1 + Payment + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Payment. Paid_ Amount. Amount + The amount of this payment. + 0..1 + Payment + Paid + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Payment. Received_ Date. Date + The date on which this payment was received. + 0..1 + Payment + Received + Date + Date + Date. Type + + + + + + + + + BBIE + Payment. Paid_ Date. Date + The date on which this payment was made. + 0..1 + Payment + Paid + Date + Date + Date. Type + + + + + + + + + BBIE + Payment. Paid_ Time. Time + The time at which this payment was made. + 0..1 + Payment + Paid + Time + Time + Time. Type + + + + + + + + + BBIE + Payment. Instruction Identifier. Identifier + An identifier for the payment instruction. + 0..1 + Payment + Instruction Identifier + Identifier + Identifier. Type + + + + + + + + + + + ABIE + Payment Mandate. Details + A class to describe a payment mandate. + Payment Mandate + + + + + + + + + BBIE + Payment Mandate. Identifier + An identifier for this payment mandate. + 0..1 + Payment Mandate + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Payment Mandate. Mandate Type Code. Code + A code signifying the type of this payment mandate. + 0..1 + Payment Mandate + Mandate Type Code + Code + Code. Type + + + + + + + + + BBIE + Payment Mandate. Maximum Payment Instructions. Numeric + The number of maximum payment instructions allowed within the validity period. + 0..1 + Payment Mandate + Maximum Payment Instructions + Numeric + Numeric. Type + + + + + + + + + BBIE + Payment Mandate. Maximum_ Paid Amount. Amount + The maximum amount to be paid within a single instruction. + 0..1 + Payment Mandate + Maximum + Paid Amount + Amount + Amount. Type + + + + + + + + + BBIE + Payment Mandate. Signature Identifier. Identifier + An identifier for a signature applied by a signatory party. + 0..1 + Payment Mandate + Signature Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Payment Mandate. Payer_ Party. Party + The payer party (if different from the debtor). + 0..1 + Payment Mandate + Payer + Party + Party + Party + + + + + + + + + ASBIE + Payment Mandate. Payer_ Financial Account. Financial Account + The payer's financial account. + 0..1 + Payment Mandate + Payer + Financial Account + Financial Account + Financial Account + + + + + + + + + ASBIE + Payment Mandate. Validity_ Period. Period + The period during which this mandate is valid. + 0..1 + Payment Mandate + Validity + Period + Period + Period + + + + + + + + + ASBIE + Payment Mandate. Payment Reversal_ Period. Period + The period of the reverse payment. + 0..1 + Payment Mandate + Payment Reversal + Period + Period + Period + + + + + + + + + ASBIE + Payment Mandate. Clause + A clause applicable to this payment mandate. + 0..n + Payment Mandate + Clause + Clause + Clause + + + + + + + + + + + ABIE + Payment Means. Details + A class to describe a means of payment. + Payment Means + + + + + + + + + BBIE + Payment Means. Identifier + An identifier for this means of payment. + 0..1 + Payment Means + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Payment Means. Payment Means Code. Code + A code signifying the type of this means of payment. + 1 + Payment Means + Payment Means Code + Code + Payment Means + Payment Means_ Code. Type + + + + + + + + + BBIE + Payment Means. Payment Due Date. Date + The date on which payment is due for this means of payment. + 0..1 + Payment Means + Payment Due Date + Date + Date. Type + + + + + + + + + BBIE + Payment Means. Payment Channel Code. Code + A code signifying the payment channel for this means of payment. + 0..1 + Payment Means + Payment Channel Code + Code + Code. Type + + + + + + + + + BBIE + Payment Means. Instruction Identifier. Identifier + An identifier for the payment instruction. + 0..1 + Payment Means + Instruction Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Payment Means. Instruction_ Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Payment Means + Instruction + Note + Text + Text. Type + + + + + + + + + BBIE + Payment Means. Payment Identifier. Identifier + An identifier for a payment made using this means of payment. + 0..n + Payment Means + Payment Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Payment Means. Card Account + A credit card, debit card, or charge card account that constitutes this means of payment. + 0..1 + Payment Means + Card Account + Card Account + Card Account + + + + + + + + + ASBIE + Payment Means. Payer_ Financial Account. Financial Account + The payer's financial account. + 0..1 + Payment Means + Payer + Financial Account + Financial Account + Financial Account + + + + + + + + + ASBIE + Payment Means. Payee_ Financial Account. Financial Account + The payee's financial account. + 0..1 + Payment Means + Payee + Financial Account + Financial Account + Financial Account + + + + + + + + + ASBIE + Payment Means. Credit Account + A credit account associated with this means of payment. + 0..1 + Payment Means + Credit Account + Credit Account + Credit Account + + + + + + + + + ASBIE + Payment Means. Payment Mandate + The payment mandate associated with this means of payment. + 0..1 + Payment Means + Payment Mandate + Payment Mandate + Payment Mandate + + + + + + + + + ASBIE + Payment Means. Trade Financing + A trade finance agreement applicable to this means of payment. + 0..1 + Payment Means + Trade Financing + Trade Financing + Trade Financing + + + + + + + + + + + ABIE + Payment Terms. Details + A class to describe a set of payment terms. + Payment Terms + + + + + + + + + BBIE + Payment Terms. Identifier + An identifier for this set of payment terms. + 0..1 + Payment Terms + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Payment Terms. Payment Means Identifier. Identifier + An identifier for a means of payment associated with these payment terms. + 0..n + Payment Terms + Payment Means Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Payment Terms. Prepaid Payment Reference Identifier. Identifier + An identifier for a reference to a prepaid payment. + 0..1 + Payment Terms + Prepaid Payment Reference Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Payment Terms. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Payment Terms + Note + Text + Text. Type + + + + + + + + + BBIE + Payment Terms. Reference_ Event Code. Code + A code signifying the event during which these terms are offered. + 0..1 + Payment Terms + Reference + Event Code + Code + Code. Type + + + + + + + + + BBIE + Payment Terms. Settlement_ Discount Percent. Percent + The percentage for the settlement discount that is offered for payment under these payment terms. + 0..1 + Payment Terms + Settlement + Discount Percent + Percent + Percent. Type + + + + + + + + + BBIE + Payment Terms. Penalty_ Surcharge Percent. Percent + The penalty for payment after the settlement period, expressed as a percentage of the payment. + 0..1 + Payment Terms + Penalty + Surcharge Percent + Percent + Percent. Type + + + + + + + + + BBIE + Payment Terms. Payment Percent. Percent + The part of a payment, expressed as a percent, relevant for these payment terms. + 0..1 + Payment Terms + Payment Percent + Percent + Percent. Type + + + + + + + + + BBIE + Payment Terms. Amount + The monetary amount covered by these payment terms. + 0..1 + Payment Terms + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Payment Terms. Settlement_ Discount Amount. Amount + The amount of a settlement discount offered for payment under these payment terms. + 0..1 + Payment Terms + Settlement + Discount Amount + Amount + Amount. Type + + + + + + + + + BBIE + Payment Terms. Penalty_ Amount. Amount + The monetary amount of the penalty for payment after the settlement period. + 0..1 + Payment Terms + Penalty + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Payment Terms. Payment Terms Details URI. Identifier + The Uniform Resource Identifier (URI) of a document providing additional details regarding these payment terms. + 0..1 + Payment Terms + Payment Terms Details URI + Identifier + Identifier. Type + + + + + + + + + BBIE + Payment Terms. Payment Due Date. Date + The due date for these payment terms. + 0..1 + Payment Terms + Payment Due Date + Date + Date. Type + + + + + + + + + BBIE + Payment Terms. Installment Due Date. Date + The due date for an installment payment for these payment terms. + 0..1 + Payment Terms + Installment Due Date + Date + Date. Type + + + + + + + + + BBIE + Payment Terms. Invoicing Party_ Reference. Text + A reference to the payment terms used by the invoicing party. This may have been requested of the payer by the payee to accompany its remittance. + 0..1 + Payment Terms + Invoicing Party + Reference + Text + Text. Type + + + + + + + + + ASBIE + Payment Terms. Settlement_ Period. Period + The period during which settlement may occur. + 0..1 + Payment Terms + Settlement + Period + Period + Period + + + + + + + + + ASBIE + Payment Terms. Penalty_ Period. Period + The period during which penalties may apply. + 0..1 + Payment Terms + Penalty + Period + Period + Period + + + + + + + + + ASBIE + Payment Terms. Exchange Rate + The currency exchange rate for purposes of these payment terms. + 0..1 + Payment Terms + Exchange Rate + Exchange Rate + Exchange Rate + + + + + + + + + ASBIE + Payment Terms. Validity_ Period. Period + The period during which these payment terms are valid. + 0..1 + Payment Terms + Validity + Period + Period + Period + + + + + + + + + + + ABIE + Performance Data Line. Details + A class to define a line in a Performance History. + Performance Data Line + + + + + + + + + BBIE + Performance Data Line. Identifier + An identifier for this performance data line. + 1 + Performance Data Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Performance Data Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Performance Data Line + Note + Text + Text. Type + + + + + + + + + BBIE + Performance Data Line. Performance Value. Quantity + The value of the reported attribute. + 1 + Performance Data Line + Performance Value + Quantity + Quantity. Type + + + + + + + + + BBIE + Performance Data Line. Performance Metric Type Code. Code + A code signifying the measure of performance applicable to the reported attribute. + 1 + Performance Data Line + Performance Metric Type Code + Code + Code. Type + + + + + + + + + ASBIE + Performance Data Line. Period + The period to which this performance data line applies. + 0..1 + Performance Data Line + Period + Period + Period + + + + + + + + + ASBIE + Performance Data Line. Item + The item whose performance is reported in this data line. + 0..1 + Performance Data Line + Item + Item + Item + + + + + + + + + + + ABIE + Period. Details + A class to describe a period of time. + Period + + + + + + + + + BBIE + Period. Start Date. Date + The date on which this period begins. + 0..1 + Period + Start Date + Date + Date. Type + + + + + + + + + BBIE + Period. Start Time. Time + The time at which this period begins. + 0..1 + Period + Start Time + Time + Time. Type + + + + + + + + + BBIE + Period. End Date. Date + The date on which this period ends. + 0..1 + Period + End Date + Date + Date. Type + + + + + + + + + BBIE + Period. End Time. Time + The time at which this period ends. + 0..1 + Period + End Time + Time + Time. Type + + + + + + + + + BBIE + Period. Duration. Measure + The duration of this period, expressed as an ISO 8601 code. + 0..1 + Period + Duration + Measure + Measure. Type + + + + + + + + + BBIE + Period. Description Code. Code + A description of this period, expressed as a code. + 0..n + Period + Description Code + Code + Code. Type + + + + + + + + + BBIE + Period. Description. Text + A description of this period, expressed as text. + 0..n + Period + Description + Text + Text. Type + + + + + + + + + + + ABIE + Person. Details + A class to describe a person. + Person + + + + + + + + + BBIE + Person. Identifier + An identifier for this person. + 0..1 + Person + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Person. First_ Name. Name + This person's given name. + 0..1 + Person + First + Name + Name + Name. Type + + + + + + + + + BBIE + Person. Family_ Name. Name + This person's family name. + 0..1 + Person + Family + Name + Name + Name. Type + + + + + + + + + BBIE + Person. Title. Text + This person's title of address (e.g., Mr, Ms, Dr, Sir). + 0..1 + Person + Title + Text + Text. Type + + + + + + + + + BBIE + Person. Middle_ Name. Name + This person's middle name(s) or initials. + 0..1 + Person + Middle + Name + Name + Name. Type + + + + + + + + + BBIE + Person. Other_ Name. Name + This person's second family name. + 0..1 + Person + Other + Name + Name + Name. Type + Delivery Dock + + + + + + + + + BBIE + Person. Name Suffix. Text + A suffix to this person's name (e.g., PhD, OBE, Jr). + 0..1 + Person + Name Suffix + Text + Text. Type + + + + + + + + + BBIE + Person. Job Title. Text + This person's job title (for a particular role) within an organization. + 0..1 + Person + Job Title + Text + Text. Type + + + + + + + + + BBIE + Person. Nationality. Identifier + An identifier for this person's nationality. + 0..1 + Person + Nationality + Identifier + Identifier. Type + + + + + + + + + BBIE + Person. Gender Code. Code + A code (e.g., ISO 5218) signifying the gender of this person. + 0..1 + Person + Gender Code + Code + Code. Type + + + + + + + + + BBIE + Person. Birth Date. Date + This person's date of birth. + 0..1 + Person + Birth Date + Date + Date. Type + + + + + + + + + BBIE + Person. Birthplace Name. Text + The name of the place where this person was born, expressed as text. + 0..1 + Person + Birthplace Name + Text + Text. Type + + + + + + + + + BBIE + Person. Organization_ Department. Text + The department or subdivision of an organization that this person belongs to (in a particular role). + 0..1 + Person + Organization + Department + Text + Text. Type + + + + + + + + + ASBIE + Person. Contact + Contact information for this person. + 0..1 + Person + Contact + Contact + Contact + + + + + + + + + ASBIE + Person. Financial Account + The financial account associated with this person. + 0..1 + Person + Financial Account + Financial Account + Financial Account + + + + + + + + + ASBIE + Person. Identity_ Document Reference. Document Reference + A reference to a document that can precisely identify this person (e.g., a driver's license). + 0..n + Person + Identity + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Person. Residence_ Address. Address + This person's address of residence. + 0..1 + Person + Residence + Address + Address + Address + + + + + + + + + + + ABIE + Physical Attribute. Details + A class to describe a physical attribute. + Physical Attribute + + + + + + + + + BBIE + Physical Attribute. Attribute Identifier. Identifier + An identifier for this physical attribute. + 1 + Physical Attribute + Attribute Identifier + Identifier + Identifier. Type + colour style + + + + + + + + + BBIE + Physical Attribute. Position Code. Code + A code signifying the position of this physical attribute. + 0..1 + Physical Attribute + Position Code + Code + Code. Type + + + + + + + + + BBIE + Physical Attribute. Description Code. Code + A description of the physical attribute, expressed as a code. + 0..1 + Physical Attribute + Description Code + Code + Code. Type + XXL , Small + + + + + + + + + BBIE + Physical Attribute. Description. Text + A description of the physical attribute, expressed as text. + 0..n + Physical Attribute + Description + Text + Text. Type + + + + + + + + + + + ABIE + Pickup. Details + A class to describe a pickup for delivery. + Pickup + Collection + + + + + + + + + BBIE + Pickup. Identifier + An identifier for this pickup. + 0..1 + Pickup + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Pickup. Actual_ Pickup Date. Date + The actual pickup date. + 0..1 + Pickup + Actual + Pickup Date + Date + Date. Type + + + + + + + + + BBIE + Pickup. Actual_ Pickup Time. Time + The actual pickup time. + 0..1 + Pickup + Actual + Pickup Time + Time + Time. Type + + + + + + + + + BBIE + Pickup. Earliest_ Pickup Date. Date + The earliest pickup date. + 0..1 + Pickup + Earliest + Pickup Date + Date + Date. Type + + + + + + + + + BBIE + Pickup. Earliest_ Pickup Time. Time + The earliest pickup time. + 0..1 + Pickup + Earliest + Pickup Time + Time + Time. Type + + + + + + + + + BBIE + Pickup. Latest_ Pickup Date. Date + The latest pickup date. + 0..1 + Pickup + Latest + Pickup Date + Date + Date. Type + + + + + + + + + BBIE + Pickup. Latest_ Pickup Time. Time + The latest pickup time. + 0..1 + Pickup + Latest + Pickup Time + Time + Time. Type + + + + + + + + + ASBIE + Pickup. Pickup_ Location. Location + The pickup location. + 0..1 + Pickup + Pickup + Location + Location + Location + + + + + + + + + ASBIE + Pickup. Pickup_ Party. Party + The party responsible for picking up a delivery. + 0..1 + Pickup + Pickup + Party + Party + Party + + + + + + + + + + + ABIE + Power Of Attorney. Details + A class to describe a power of attorney. + Power Of Attorney + + + + + + + + + BBIE + Power Of Attorney. Identifier + An identifier for this power of attorney. + 0..1 + Power Of Attorney + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Power Of Attorney. Issue Date. Date + The date on which this power of attorney was issued. + 0..1 + Power Of Attorney + Issue Date + Date + Date. Type + + + + + + + + + BBIE + Power Of Attorney. Issue Time. Time + The time at which this power of attorney was issued. + 0..1 + Power Of Attorney + Issue Time + Time + Time. Type + + + + + + + + + BBIE + Power Of Attorney. Description. Text + Text describing this power of attorney. + 0..n + Power Of Attorney + Description + Text + Text. Type + + + + + + + + + ASBIE + Power Of Attorney. Notary_ Party. Party + The party notarizing this power of attorney. + 0..1 + Power Of Attorney + Notary + Party + Party + Party + + + + + + + + + ASBIE + Power Of Attorney. Agent_ Party. Party + The party who acts as an agent or fiduciary for the principal and who holds this power of attorney on behalf of the principal. + 1 + Power Of Attorney + Agent + Party + Party + Party + + + + + + + + + ASBIE + Power Of Attorney. Witness_ Party. Party + An association to a WitnessParty. + 0..n + Power Of Attorney + Witness + Party + Party + Party + + + + + + + + + ASBIE + Power Of Attorney. Mandate_ Document Reference. Document Reference + A reference to a mandate associated with this power of attorney. + 0..n + Power Of Attorney + Mandate + Document Reference + Document Reference + Document Reference + + + + + + + + + + + ABIE + Price. Details + A class to describe a price, expressed in a data structure containing multiple properties (compare with UnstructuredPrice). + Price + + + + + + + + + BBIE + Price. Price Amount. Amount + The amount of the price. + 1 + Price + Price Amount + Amount + Amount. Type + unit price + 23.45 + + + + + + + + + BBIE + Price. Base_ Quantity. Quantity + The quantity at which this price applies. + 0..1 + Price + Base + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Price. Price Change_ Reason. Text + A reason for a price change. + 0..n + Price + Price Change + Reason + Text + Text. Type + Clearance of old stock , New contract applies + + + + + + + + + BBIE + Price. Price Type Code. Code + The type of price, expressed as a code. + 0..1 + Price + Price Type Code + Code + Code. Type + + + + + + + + + BBIE + Price. Price Type. Text + The type of price, expressed as text. + 0..1 + Price + Price Type + Text + Text. Type + retail, wholesale, discount, contract + + + + + + + + + BBIE + Price. Orderable Unit Factor. Rate + The factor by which the base price unit can be converted to the orderable unit. + 0..1 + Price + Orderable Unit Factor + Rate + Rate. Type + Nails are priced by weight but ordered by quantity. So this would say how many nails per kilo + + + + + + + + + ASBIE + Price. Validity_ Period. Period + A period during which this price is valid. + 0..n + Price + Validity + Period + Period + Period + + + + + + + + + ASBIE + Price. Price List + Information about a price list applicable to this price. + 0..1 + Price + Price List + Price List + Price List + + + + + + + + + ASBIE + Price. Allowance Charge + An allowance or charge associated with this price. + 0..n + Price + Allowance Charge + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Price. Pricing_ Exchange Rate. Exchange Rate + The exchange rate applicable to this price, if it differs from the exchange rate applicable to the document as a whole. + 0..1 + Price + Pricing + Exchange Rate + Exchange Rate + Exchange Rate + + + + + + + + + + + ABIE + Price Extension. Details + A class to describe a price extension, calculated by multiplying the price per unit by the quantity of items. + Price Extension + + + + + + + + + BBIE + Price Extension. Amount + The amount of this price extension. + 1 + Price Extension + Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Price Extension. Tax Total + A total amount of taxes of a particular kind applicable to this price extension. + 0..n + Price Extension + Tax Total + Tax Total + Tax Total + + + + + + + + + + + ABIE + Price List. Details + A class to describe a price list. + Price List + + + + + + + + + BBIE + Price List. Identifier + An identifier for this price list. + 0..1 + Price List + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Price List. Status Code. Code + A code signifying whether this price list is an original, copy, revision, or cancellation. + 0..1 + Price List + Status Code + Code + Code. Type + new - announcement only , new and available , deleted - announcement only + + + + + + + + + ASBIE + Price List. Validity_ Period. Period + A period during which this price list is valid. + 0..n + Price List + Validity + Period + Period + Period + + + + + + + + + ASBIE + Price List. Previous_ Price List. Price List + The previous price list. + 0..1 + Price List + Previous + Price List + Price List + Price List + + + + + + + + + + + ABIE + Pricing Reference. Details + A reference to the basis for pricing. This may be based on a catalogue or a quoted amount from a price list and include some alternative pricing conditions. + Pricing Reference + + + + + + + + + ASBIE + Pricing Reference. Original_ Item Location Quantity. Item Location Quantity + An original set of location-specific properties (e.g., price and quantity) associated with this item. + 0..1 + Pricing Reference + Original + Item Location Quantity + Item Location Quantity + Item Location Quantity + + + + + + + + + ASBIE + Pricing Reference. Alternative Condition_ Price. Price + The price expressed in terms other than the actual price, e.g., the list price v. the contracted price, or the price in bags v. the price in kilos, or the list price in bags v. the contracted price in kilos. + 0..n + Pricing Reference + Alternative Condition + Price + Price + Price + + + + + + + + + + + ABIE + Process Justification. Details + A class to describe a justification for the choice of tendering process. + Process Justification + + + + + + + + + BBIE + Process Justification. Previous_ Cancellation Reason Code. Code + A code signifying the type of the previous tendering process (which is now being cancelled). + 0..1 + Process Justification + Previous + Cancellation Reason Code + Code + Code. Type + + + + + + + + + BBIE + Process Justification. Process_ Reason Code. Code + The reason why the contracting authority has followed a particular tendering procedure for the awarding of a contract, expressed as a code. + 0..1 + Process Justification + Process + Reason Code + Code + Code. Type + + + + + + + + + BBIE + Process Justification. Process_ Reason. Text + The reason why the contracting authority has followed a particular tendering procedure for the awarding of a contract, expressed as text. + 0..n + Process Justification + Process + Reason + Text + Text. Type + + + + + + + + + BBIE + Process Justification. Description. Text + Text providing justification for the selection of this process. + 0..n + Process Justification + Description + Text + Text. Type + + + + + + + + + + + ABIE + Procurement Project. Details + A class to describe a project to procure goods, works, or services. + Procurement Project + + + + + + + + + BBIE + Procurement Project. Identifier + An identifier for this procurement project. + 0..1 + Procurement Project + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Procurement Project. Name + A name of this procurement project. + 1..n + Procurement Project + Name + Name + Name. Type + + + + + + + + + BBIE + Procurement Project. Description. Text + Text describing this procurement project. + 0..n + Procurement Project + Description + Text + Text. Type + + + + + + + + + BBIE + Procurement Project. Procurement_ Type Code. Code + A code signifying the type of procurement project (e.g., goods, works, services). + 0..1 + Procurement Project + Procurement + Type Code + Code + Code. Type + + + + + + + + + BBIE + Procurement Project. Procurement Sub_ Type Code. Code + A code signifying the subcategory of the type of work for this project (e.g., land surveying, IT consulting). + 0..1 + Procurement Project + Procurement Sub + Type Code + Code + Code. Type + + + + + + + + + BBIE + Procurement Project. Quality Control Code. Code + The indication of whether or not the control quality is included in the works project. + 0..1 + Procurement Project + Quality Control Code + Code + Code. Type + + + + + + + + + BBIE + Procurement Project. Required_ Fee. Amount + The amount of the reimbursement fee for concession procurement projects. + 0..1 + Procurement Project + Required + Fee + Amount + Amount. Type + + + + + + + + + BBIE + Procurement Project. Fee_ Description. Text + Text describing the reimbursement fee for concession procurement projects. + 0..n + Procurement Project + Fee + Description + Text + Text. Type + + + + + + + + + BBIE + Procurement Project. Requested_ Delivery Date. Date + The requested delivery date for this procurement project. + 0..1 + Procurement Project + Requested + Delivery Date + Date + Date. Type + + + + + + + + + BBIE + Procurement Project. Estimated_ Overall Contract. Quantity + The estimated overall quantity for this procurement project. + 0..1 + Procurement Project + Estimated + Overall Contract + Quantity + Quantity. Type + + + + + + + + + BBIE + Procurement Project. Note. Text + Free-form text applying to the Procurement Project. This element may contain additional information about the lot/contract that is not contained explicitly in another structure. + 0..n + Procurement Project + Note + Text + Text. Type + + + + + + + + + ASBIE + Procurement Project. Requested Tender Total + Budget monetary amounts for the project as whole. + 0..1 + Procurement Project + Requested Tender Total + Requested Tender Total + Requested Tender Total + + + + + + + + + ASBIE + Procurement Project. Main_ Commodity Classification. Commodity Classification + An association to the main classification category for the deliverable requested. + 0..1 + Procurement Project + Main + Commodity Classification + Commodity Classification + Commodity Classification + + + + + + + + + ASBIE + Procurement Project. Additional_ Commodity Classification. Commodity Classification + An association to additional classification categories for the deliverable requested. + 0..n + Procurement Project + Additional + Commodity Classification + Commodity Classification + Commodity Classification + + + + + + + + + ASBIE + Procurement Project. Realized_ Location. Location + A place where this procurement project will be physically realized. + 0..n + Procurement Project + Realized + Location + Location + Location + + + + + + + + + ASBIE + Procurement Project. Planned_ Period. Period + The period during which this procurement project is planned to take place. + 0..1 + Procurement Project + Planned + Period + Period + Period + + + + + + + + + ASBIE + Procurement Project. Contract Extension + The contract extension for this tendering process. + 0..1 + Procurement Project + Contract Extension + Contract Extension + Contract Extension + + + + + + + + + ASBIE + Procurement Project. Request For Tender Line + A good or service this project is intended to procure. + 0..n + Procurement Project + Request For Tender Line + Request For Tender Line + Request For Tender Line + + + + + + + + + + + ABIE + Procurement Project Lot. Details + A class to describe one of the parts of a procurement project that is being subdivided to allow the contracting party to award different lots to different economic operators under different contracts. + Procurement Project Lot + + + + + + + + + BBIE + Procurement Project Lot. Identifier + An identifier for this procurement project lot. + 1 + Procurement Project Lot + Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Procurement Project Lot. Tendering Terms + Tendering terms for this procurement project lot. + 0..1 + Procurement Project Lot + Tendering Terms + Tendering Terms + Tendering Terms + + + + + + + + + ASBIE + Procurement Project Lot. Procurement Project + A description of the procurement project to be divided. + 0..1 + Procurement Project Lot + Procurement Project + Procurement Project + Procurement Project + + + + + + + + + + + ABIE + Project Reference. Details + A class to define a reference to a procurement project. + Project Reference + + + + + + + + + BBIE + Project Reference. Identifier + An identifier for the referenced project. + 1 + Project Reference + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Project Reference. UUID. Identifier + A universally unique identifier for the referenced project. + 0..1 + Project Reference + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Project Reference. Issue Date. Date + The date on which the referenced project was issued. + 0..1 + Project Reference + Issue Date + Date + Date. Type + + + + + + + + + ASBIE + Project Reference. Work Phase Reference + A specific phase of work in the referenced project. + 0..n + Project Reference + Work Phase Reference + Work Phase Reference + Work Phase Reference + + + + + + + + + + + ABIE + Promotional Event. Details + Agree can be renamed as PromotionalEvents + Promotional Event + + + + + + + + + BBIE + Promotional Event. Promotional Event Type Code. Code + A code signifying the type of this promotional event. Examples can be: Holiday, Seasonal Event, Store Closing, Trade Item Introduction + 1 + Promotional Event + Promotional Event Type Code + Code + Code. Type + + + + + + + + + BBIE + Promotional Event. Submission. Date + The date on which a proposal for this promotional event was submitted. + 0..1 + Promotional Event + Submission + Date + Date. Type + + + + + + + + + BBIE + Promotional Event. First Shipment Availibility Date. Date + The first day that products will be available to ship from buyer to seller if the proposal for this promotional event is accepted. + 0..1 + Promotional Event + First Shipment Availibility Date + Date + Date. Type + + + + + + + + + BBIE + Promotional Event. Latest_ Proposal Acceptance Date. Date + The deadline for acceptance of this promotional event. + 0..1 + Promotional Event + Latest + Proposal Acceptance Date + Date + Date. Type + + + + + + + + + ASBIE + Promotional Event. Promotional Specification + A specification for a promotional event. + 1..n + Promotional Event + Promotional Specification + Promotional Specification + Promotional Specification + + + + + + + + + + + ABIE + Promotional Event Line Item. Details + A class to describe a line item associated with a promotional event. + Promotional Event Line Item + + + + + + + + + BBIE + Promotional Event Line Item. Amount + The amount associated with this promotional event line item. + 1 + Promotional Event Line Item + Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Promotional Event Line Item. Event Line Item + A line item describing the expected impacts associated with this promotional event for a specific product at a specific location. + 1 + Promotional Event Line Item + Event Line Item + Event Line Item + Event Line Item + + + + + + + + + + + ABIE + Promotional Specification. Details + A class to describe a promotional event as a set of item locations that share a set of promotional tactics. + Promotional Specification + + + + + + + + + BBIE + Promotional Specification. Specification Identifier. Identifier + An identifier for this promotional specification. + 0..1 + Promotional Specification + Specification Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Promotional Specification. Promotional Event Line Item + A line item for a promotional event involving a specific product at a specific location; it describes the expected impacts associated with the event and specifies the promotional price of the item." + 1..n + Promotional Specification + Promotional Event Line Item + Promotional Event Line Item + Promotional Event Line Item + + + + + + + + + ASBIE + Promotional Specification. Event Tactic + An event tactic associated with this promotion. + 0..n + Promotional Specification + Event Tactic + Event Tactic + Event Tactic + + + + + + + + + + + ABIE + Qualification Resolution. Details + A class to describe the acceptance or rejection of an economic operator in a tendering process. + Qualification Resolution + + + + + + + + + BBIE + Qualification Resolution. Admission Code. Code + An indicator that the economic operator has been accepted into the tendering process (true) or rejected from the tendering process (false). + 1 + Qualification Resolution + Admission Code + Code + Code. Type + + + + + + + + + BBIE + Qualification Resolution. Exclusion Reason. Text + Text describing a reason for an exclusion from the tendering process. + 0..n + Qualification Resolution + Exclusion Reason + Text + Text. Type + + + + + + + + + BBIE + Qualification Resolution. Resolution. Text + Text describing this qualification resolution. + 0..n + Qualification Resolution + Resolution + Text + Text. Type + + + + + + + + + BBIE + Qualification Resolution. Resolution Date. Date + The date on which this qualification resolution was formalized. + 1 + Qualification Resolution + Resolution Date + Date + Date. Type + + + + + + + + + BBIE + Qualification Resolution. Resolution Time. Time + The time at which this qualification resolution was formalized. + 0..1 + Qualification Resolution + Resolution Time + Time + Time. Type + + + + + + + + + ASBIE + Qualification Resolution. Procurement Project Lot + The Procurement project lot to which this tenderer is accepted or rejected. + 0..1 + Qualification Resolution + Procurement Project Lot + Procurement Project Lot + Procurement Project Lot + + + + + + + + + + + ABIE + Qualifying Party. Details + A class to describe the distinctive features or characteristics qualifying an economic operator to be a party in a tendering process (e.g., number of employees, number of operating units, type of business, technical and financial capabilities, completed projects). + Qualifying Party + + + + + + + + + BBIE + Qualifying Party. Participation. Percent + The extent to which this party is expected to participate in the tendering process, expressed as a percentage. + 0..1 + Qualifying Party + Participation + Percent + Percent. Type + + + + + + + + + BBIE + Qualifying Party. Personal Situation. Text + Text describing the personal situation of the qualifying party. + 0..n + Qualifying Party + Personal Situation + Text + Text. Type + + + + + + + + + BBIE + Qualifying Party. Operating Years. Quantity + The number of years that this qualifying party has been in operation. + 0..1 + Qualifying Party + Operating Years + Quantity + Quantity. Type + + + + + + + + + BBIE + Qualifying Party. Employee. Quantity + The number of people employed by this qualifying party. + 0..1 + Qualifying Party + Employee + Quantity + Quantity. Type + + + + + + + + + BBIE + Qualifying Party. Business Classification Evidence. Identifier + An identifier for an item of evidence to support the classification of this qualifying party. + 0..1 + Qualifying Party + Business Classification Evidence + Identifier + Identifier. Type + + + + + + + + + BBIE + Qualifying Party. Business Identity Evidence. Identifier + An identifier for an item of evidence to support the business identity of this qualifying party. + 0..1 + Qualifying Party + Business Identity Evidence + Identifier + Identifier. Type + + + + + + + + + BBIE + Qualifying Party. Tenderer Role Code. Code + A code stating the Tenderer Role. + 0..1 + Qualifying Party + Tenderer Role Code + Code + Code. Type + + + + + + + + + ASBIE + Qualifying Party. Business_ Classification Scheme. Classification Scheme + The classification scheme used for the business profile. + 0..1 + Qualifying Party + Business + Classification Scheme + Classification Scheme + Classification Scheme + + + + + + + + + ASBIE + Qualifying Party. Technical_ Capability. Capability + A technical capability of this qualifying party. + 0..n + Qualifying Party + Technical + Capability + Capability + Capability + + + + + + + + + ASBIE + Qualifying Party. Financial_ Capability. Capability + A financial capability of this qualifying party. + 0..n + Qualifying Party + Financial + Capability + Capability + Capability + + + + + + + + + ASBIE + Qualifying Party. Completed Task + A former task completed by this qualifying party. + 0..n + Qualifying Party + Completed Task + Completed Task + Completed Task + + + + + + + + + ASBIE + Qualifying Party. Declaration + A declaration by this qualifying party. of certain characteristics or capabilities in fulfilment of requirements specified in a call for tenders. + 0..n + Qualifying Party + Declaration + Declaration + Declaration + + + + + + + + + ASBIE + Qualifying Party. Party + The qualifying party itself. + 0..1 + Qualifying Party + Party + Party + Party + + + + + + + + + ASBIE + Qualifying Party. Economic Operator Role + A class to describe the tenderer contracting role. + 0..1 + Qualifying Party + Economic Operator Role + Economic Operator Role + Economic Operator Role + + + + + + + + + + + ABIE + Quotation Line. Details + A class to define a line in a Quotation. + Quotation Line + + + + + + + + + BBIE + Quotation Line. Identifier + An identifier for this quotation line. + 0..1 + Quotation Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Quotation Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Quotation Line + Note + Text + Text. Type + + + + + + + + + BBIE + Quotation Line. Quantity + The quantity of the item quoted. + 0..1 + Quotation Line + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Quotation Line. Line Extension Amount. Amount + The total amount for this quotation line, including allowance charges but net of taxes. + 0..1 + Quotation Line + Line Extension Amount + Amount + Amount. Type + + + + + + + + + BBIE + Quotation Line. Total_ Tax Amount. Amount + The total tax amount for this quotation line. + 0..1 + Quotation Line + Total + Tax Amount + Amount + Amount. Type + + + + + + + + + BBIE + Quotation Line. Request For Quotation Line Identifier. Identifier + An identifier for the line in the Request for Quotation to which this line is a response. + 0..1 + Quotation Line + Request For Quotation Line Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Quotation Line. Document Reference + A reference to a document associated with this quotation line. + 0..n + Quotation Line + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Quotation Line. Line Item + The item that is the subject of this quotation line. + 1 + Quotation Line + Line Item + Line Item + Line Item + + + + + + + + + ASBIE + Quotation Line. Seller Proposed Substitute_ Line Item. Line Item + An item proposed by the seller as a substitute for the item that is the subject of this quotation line. + 0..n + Quotation Line + Seller Proposed Substitute + Line Item + Line Item + Line Item + + + + + + + + + ASBIE + Quotation Line. Alternative_ Line Item. Line Item + An item proposed by the seller as an alternative to the item that is the subject of this quotation line. + 0..n + Quotation Line + Alternative + Line Item + Line Item + Line Item + + + + + + + + + ASBIE + Quotation Line. Request_ Line Reference. Line Reference + A reference to the line in the Request for Quotation to which this line is a response. + 0..1 + Quotation Line + Request + Line Reference + Line Reference + Line Reference + + + + + + + + + + + ABIE + Rail Transport. Details + A class defining details about a train wagon used as a means of transport. + Rail Transport + + + + + + + + + BBIE + Rail Transport. Train Identifier. Identifier + An identifier for the train used as the means of transport. + 1 + Rail Transport + Train Identifier + Identifier + Identifier. Type + Train Number (WCO ID 167) + + + + + + + + + BBIE + Rail Transport. Rail Car Identifier. Identifier + An identifier for the rail car on the train used as the means of transport. + 0..1 + Rail Transport + Rail Car Identifier + Identifier + Identifier. Type + + + + + + + + + + + ABIE + Receipt Line. Details + A class to define a line in a Receipt Advice. + Receipt Line + + + + + + + + + BBIE + Receipt Line. Identifier + An identifier for this receipt line. + 1 + Receipt Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Receipt Line. UUID. Identifier + A universally unique identifier for this receipt line. + 0..1 + Receipt Line + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Receipt Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Receipt Line + Note + Text + Text. Type + + + + + + + + + BBIE + Receipt Line. Received_ Quantity. Quantity + The quantity received. + 0..1 + Receipt Line + Received + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Receipt Line. Short_ Quantity. Quantity + The quantity received short; the difference between the quantity reported despatched and the quantity actually received. + 0..1 + Receipt Line + Short + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Receipt Line. Shortage Action Code. Code + A code signifying the action that the delivery party wishes the despatch party to take as the result of a shortage. + 0..1 + Receipt Line + Shortage Action Code + Code + Code. Type + + + + + + + + + BBIE + Receipt Line. Rejected_ Quantity. Quantity + The quantity rejected. + 0..1 + Receipt Line + Rejected + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Receipt Line. Reject Reason Code. Code + The reason for a rejection, expressed as a code. + 0..1 + Receipt Line + Reject Reason Code + Code + Code. Type + + + + + + + + + BBIE + Receipt Line. Reject_ Reason. Text + The reason for a rejection, expressed as text. + 0..n + Receipt Line + Reject + Reason + Text + Text. Type + + + + + + + + + BBIE + Receipt Line. Reject Action Code. Code + A code signifying the action that the delivery party wishes the despatch party to take as the result of a rejection. + 0..1 + Receipt Line + Reject Action Code + Code + Code. Type + + + + + + + + + BBIE + Receipt Line. Quantity Discrepancy Code. Code + A code signifying the type of a discrepancy in quantity. + 0..1 + Receipt Line + Quantity Discrepancy Code + Code + Code. Type + + + + + + + + + BBIE + Receipt Line. Oversupply_ Quantity. Quantity + The quantity over-supplied, i.e., the quantity over and above the quantity ordered. + 0..1 + Receipt Line + Oversupply + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Receipt Line. Received_ Date. Date + The date on which the goods or services were received. + 0..1 + Receipt Line + Received + Date + Date + Date. Type + + + + + + + + + BBIE + Receipt Line. Timing Complaint Code. Code + A complaint about the timing of delivery, expressed as a code. + 0..1 + Receipt Line + Timing Complaint Code + Code + Code. Type + + + + + + + + + BBIE + Receipt Line. Timing Complaint. Text + A complaint about the timing of delivery, expressed as text. + 0..1 + Receipt Line + Timing Complaint + Text + Text. Type + + + + + + + + + ASBIE + Receipt Line. Order Line Reference + A reference to the order line associated with this receipt line. + 0..1 + Receipt Line + Order Line Reference + Order Line Reference + Order Line Reference + + + + + + + + + ASBIE + Receipt Line. Despatch_ Line Reference. Line Reference + A reference to a despatch line associated with this receipt line. + 0..n + Receipt Line + Despatch + Line Reference + Line Reference + Line Reference + + + + + + + + + ASBIE + Receipt Line. Document Reference + A reference to a document associated with this receipt line. + 0..n + Receipt Line + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Receipt Line. Item + An item associated with this receipt line. + 0..n + Receipt Line + Item + Item + Item + + + + + + + + + ASBIE + Receipt Line. Shipment + A shipment associated with this receipt line. + 0..n + Receipt Line + Shipment + Shipment + Shipment + + + + + + + + + + + ABIE + Regulation. Details + A class to describe a regulation. + Regulation + Points to regulation at atomic level + + + + + + + + + BBIE + Regulation. Name + A name for this regulation. + 1 + Regulation + Name + Name + Name. Type + + + + + + + + + BBIE + Regulation. Legal Reference. Text + Text describing a legal reference. + 0..1 + Regulation + Legal Reference + Text + Text. Type + Art. 45 2 b + + + + + + + + + BBIE + Regulation. Ontology URI. Identifier + The Uniform Resource Identifier (URI) of an ontology related to this regulation. + 0..1 + Regulation + Ontology URI + Identifier + Identifier. Type + + + + + + + + + + + ABIE + Related Item. Details + A class to describe the relationship to an item different from the item associated with the item line in which RelatedItem is used. + Related Item + + + + + + + + + BBIE + Related Item. Identifier + An identifier for the related item. + 0..1 + Related Item + Identifier + Identifier + Identifier. Type + First , Second + + + + + + + + + BBIE + Related Item. Quantity + The quantity that applies to the relationship. + 0..1 + Related Item + Quantity + Quantity + Quantity. Type + 6 , 10mg per Kilo + + + + + + + + + BBIE + Related Item. Description. Text + Text describing the relationship. + 0..n + Related Item + Description + Text + Text. Type + If used in wet conditions or extreme environments + + + + + + + + + + + ABIE + Reminder Line. Details + A class to define a line in a Reminder document. + Reminder Line + + + + + + + + + BBIE + Reminder Line. Identifier + An identifier for this reminder line. + 1 + Reminder Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Reminder Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Reminder Line + Note + Text + Text. Type + + + + + + + + + BBIE + Reminder Line. UUID. Identifier + A universally unique identifier for this reminder line. + 0..1 + Reminder Line + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Reminder Line. Balance Brought Forward_ Indicator. Indicator + An indication that this reminder line contains a balance brought forward (true) or does not (false). + 0..1 + Reminder Line + Balance Brought Forward + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Reminder Line. Debit_ Line Amount. Amount + The amount debited on this reminder line. + 0..1 + Reminder Line + Debit + Line Amount + Amount + Amount. Type + + + + + + + + + BBIE + Reminder Line. Credit_ Line Amount. Amount + The amount credited on this reminder line. + 0..1 + Reminder Line + Credit + Line Amount + Amount + Amount. Type + + + + + + + + + BBIE + Reminder Line. Accounting Cost Code. Code + The buyer's accounting cost centre for this reminder line, expressed as a code. + 0..1 + Reminder Line + Accounting Cost Code + Code + Code. Type + + + + + + + + + BBIE + Reminder Line. Accounting Cost. Text + The buyer's accounting cost centre for this reminder line, expressed as text. + 0..1 + Reminder Line + Accounting Cost + Text + Text. Type + + + + + + + + + BBIE + Reminder Line. Penalty_ Surcharge Percent. Percent + The penalty for late payment, expressed as a percentage. + 0..1 + Reminder Line + Penalty + Surcharge Percent + Percent + Percent. Type + + + + + + + + + BBIE + Reminder Line. Amount + The amount on this reminder line. + 0..1 + Reminder Line + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Reminder Line. Payment Purpose Code. Code + A code signifying the business purpose for this payment. + 0..1 + Reminder Line + Payment Purpose Code + Code + Code. Type + + + + + + + + + ASBIE + Reminder Line. Reminder_ Period. Period + A period to which this reminder line applies. + 0..n + Reminder Line + Reminder + Period + Period + Period + + + + + + + + + ASBIE + Reminder Line. Billing Reference + A reference to a billing document associated with this reminder line. + 0..n + Reminder Line + Billing Reference + Billing Reference + Billing Reference + + + + + + + + + ASBIE + Reminder Line. Exchange Rate + The rate of exchange between the currency of the Reminder and the currency of the document described in the BillingReference. + 0..1 + Reminder Line + Exchange Rate + Exchange Rate + Exchange Rate + + + + + + + + + + + ABIE + Remittance Advice Line. Details + A class to define a line in a Remittance Advice. + Remittance Advice Line + + + + + + + + + BBIE + Remittance Advice Line. Identifier + An identifier for this remittance advice line. + 1 + Remittance Advice Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Remittance Advice Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Remittance Advice Line + Note + Text + Text. Type + + + + + + + + + BBIE + Remittance Advice Line. UUID. Identifier + A universally unique identifier for this remittance advice line. + 0..1 + Remittance Advice Line + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Remittance Advice Line. Debit_ Line Amount. Amount + The amount debited on this remittance advice line. + 0..1 + Remittance Advice Line + Debit + Line Amount + Amount + Amount. Type + + + + + + + + + BBIE + Remittance Advice Line. Credit_ Line Amount. Amount + The amount credited on this remittance advice line. + 0..1 + Remittance Advice Line + Credit + Line Amount + Amount + Amount. Type + + + + + + + + + BBIE + Remittance Advice Line. Balance Amount. Amount + The monetary balance associated with this remittance advice line. + 0..1 + Remittance Advice Line + Balance Amount + Amount + Amount. Type + + + + + + + + + BBIE + Remittance Advice Line. Payment Purpose Code. Code + A code signifying the business purpose for this payment. + 0..1 + Remittance Advice Line + Payment Purpose Code + Code + Code. Type + + + + + + + + + BBIE + Remittance Advice Line. Invoicing Party_ Reference. Text + A reference to the order for payment used by the invoicing party. This may have been requested of the payer by the payee to accompany its remittance. + 0..1 + Remittance Advice Line + Invoicing Party + Reference + Text + Text. Type + + + + + + + + + ASBIE + Remittance Advice Line. Accounting_ Supplier Party. Supplier Party + The Accounting Supplier Party related to the remittance information reported on this Remittance Advice Line. + 0..1 + Remittance Advice Line + Accounting + Supplier Party + Supplier Party + Supplier Party + + + + + + + + + ASBIE + Remittance Advice Line. Accounting_ Customer Party. Customer Party + The Accounting Customer Party related to the remittance information reported on this Remittance Advice Line. + 0..1 + Remittance Advice Line + Accounting + Customer Party + Customer Party + Customer Party + + + + + + + + + ASBIE + Remittance Advice Line. Buyer_ Customer Party. Customer Party + The buyer associated with this remittance advice line. + 0..1 + Remittance Advice Line + Buyer + Customer Party + Customer Party + Customer Party + + + + + + + + + ASBIE + Remittance Advice Line. Seller_ Supplier Party. Supplier Party + The seller/supplier associated with this remittance advice line. + 0..1 + Remittance Advice Line + Seller + Supplier Party + Supplier Party + Supplier Party + + + + + + + + + ASBIE + Remittance Advice Line. Originator_ Customer Party. Customer Party + The originating party. + 0..1 + Remittance Advice Line + Originator + Customer Party + Customer Party + Customer Party + + + + + + + + + ASBIE + Remittance Advice Line. Payee_ Party. Party + The payee. + 0..1 + Remittance Advice Line + Payee + Party + Party + Party + + + + + + + + + ASBIE + Remittance Advice Line. Invoice_ Period. Period + An invoice period to which this remittance advice line applies. + 0..n + Remittance Advice Line + Invoice + Period + Period + Period + + + + + + + + + ASBIE + Remittance Advice Line. Billing Reference + A reference to a billing document associated with this remittance advice line. + 0..n + Remittance Advice Line + Billing Reference + Billing Reference + Billing Reference + + + + + + + + + ASBIE + Remittance Advice Line. Document Reference + A reference to a document associated with this remittance advice line. + 0..n + Remittance Advice Line + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Remittance Advice Line. Exchange Rate + The rate of exchange between the currency of the Remittance Advice and the currency of the document described in the BillingReference. + 0..1 + Remittance Advice Line + Exchange Rate + Exchange Rate + Exchange Rate + + + + + + + + + + + ABIE + Renewal. Details + A class to describe the renewal of a commercial arrangement, such as a contract or licence fee. + Renewal + + + + + + + + + BBIE + Renewal. Amount + The monetary amount of this renewal. + 0..1 + Renewal + Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Renewal. Period + The period for which the arrangement is now valid + 0..1 + Renewal + Period + Period + Period + + + + + + + + + + + ABIE + Request For Quotation Line. Details + A class to define a line in a Request for Quotation. + Request For Quotation Line + + + + + + + + + BBIE + Request For Quotation Line. Identifier + An identifier for this line in the request for quotation. + 0..1 + Request For Quotation Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Request For Quotation Line. UUID. Identifier + A universally unique identifier for this line in the request for quotation. + 0..1 + Request For Quotation Line + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Request For Quotation Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Request For Quotation Line + Note + Text + Text. Type + + + + + + + + + BBIE + Request For Quotation Line. Optional_ Line Item Indicator. Indicator + An indication whether this line is optional (true) or not (false) for purposes of this request for quotation. + 0..1 + Request For Quotation Line + Optional + Line Item Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Request For Quotation Line. Privacy Code. Code + A code signifying the level of confidentiality of this request for quotation line. + 0..1 + Request For Quotation Line + Privacy Code + Code + Code. Type + + + + + + + + + BBIE + Request For Quotation Line. Security Classification Code. Code + A code signifying the security classification of this request for quotation line. + 0..1 + Request For Quotation Line + Security Classification Code + Code + Code. Type + + + + + + + + + ASBIE + Request For Quotation Line. Document Reference + A document associated with this request for quotation line. + 0..n + Request For Quotation Line + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Request For Quotation Line. Line Item + A description of the item for which a quotation is requested. + 1 + Request For Quotation Line + Line Item + Line Item + Line Item + + + + + + + + + + + ABIE + Request For Tender Line. Details + A class to define a line in a Request for Tender describing an item of goods or a service solicited in the Request for Tender. + Request For Tender Line + + + + + + + + + BBIE + Request For Tender Line. Identifier + An identifier for this request for tender line. + 0..1 + Request For Tender Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Request For Tender Line. UUID. Identifier + A universally unique identifier for this request for tender line. + 0..1 + Request For Tender Line + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Request For Tender Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Request For Tender Line + Note + Text + Text. Type + + + + + + + + + BBIE + Request For Tender Line. Quantity + The quantity of the item for which a tender is requested in this line. + 0..1 + Request For Tender Line + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Request For Tender Line. Minimum_ Quantity. Quantity + The minimum quantity of the item associated with this request for tender line. + 0..1 + Request For Tender Line + Minimum + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Request For Tender Line. Maximum_ Quantity. Quantity + The maximum quantity of the item associated with this request for tender line. + 0..1 + Request For Tender Line + Maximum + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Request For Tender Line. Tax Included_ Indicator. Indicator + Indicates whether the amounts are taxes included (true) or not (false). + 0..1 + Request For Tender Line + Tax Included + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Request For Tender Line. Minimum_ Amount. Amount + The minimum amount allowed for this deliverable. + 0..1 + Request For Tender Line + Minimum + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Request For Tender Line. Maximum_ Amount. Amount + The maximum amount allowed for this deliverable. + 0..1 + Request For Tender Line + Maximum + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Request For Tender Line. Estimated_ Amount. Amount + The estimated total amount of the deliverable. + 0..1 + Request For Tender Line + Estimated + Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Request For Tender Line. Document Reference + A reference to a document associated with this request for tender line. + 0..n + Request For Tender Line + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Request For Tender Line. Delivery_ Period. Period + An applicable period for the deliverable or set of deliverables in this tendering process. + 0..n + Request For Tender Line + Delivery + Period + Period + Period + + + + + + + + + ASBIE + Request For Tender Line. Required_ Item Location Quantity. Item Location Quantity + Properties of the item specified in this request for tender line that are dependent on location and quantity. + 0..n + Request For Tender Line + Required + Item Location Quantity + Item Location Quantity + Item Location Quantity + + + + + + + + + ASBIE + Request For Tender Line. Warranty Validity_ Period. Period + The period during which a warranty to be associated with this request for tender line must apply. + 0..1 + Request For Tender Line + Warranty Validity + Period + Period + Period + + + + + + + + + ASBIE + Request For Tender Line. Item + An item for which a tender is requested. + 1 + Request For Tender Line + Item + Item + Item + + + + + + + + + ASBIE + Request For Tender Line. Sub_ Request For Tender Line. Request For Tender Line + A subsidiary request for tender line. + 0..n + Request For Tender Line + Sub + Request For Tender Line + Request For Tender Line + Request For Tender Line + + + + + + + + + + + ABIE + Requested Tender Total. Details + A class defining budgeted monetary amounts. + Requested Tender Total + + + + + + + + + BBIE + Requested Tender Total. Estimated_ Overall Contract. Amount + The estimated overall monetary amount of a contract. + 0..1 + Requested Tender Total + Estimated + Overall Contract + Amount + Amount. Type + + + + + + + + + BBIE + Requested Tender Total. Total_ Amount. Amount + The monetary amount of the total budget including net amount, taxes, and material and instalment costs. + 0..1 + Requested Tender Total + Total + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Requested Tender Total. Tax Included_ Indicator. Indicator + Indicates whether the amounts are taxes included (true) or not (false). + 0..1 + Requested Tender Total + Tax Included + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Requested Tender Total. Minimum_ Amount. Amount + The minimum monetary amount of the budget. + 0..1 + Requested Tender Total + Minimum + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Requested Tender Total. Maximum_ Amount. Amount + The maximum monetary amount of the budget. + 0..1 + Requested Tender Total + Maximum + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Requested Tender Total. Monetary Scope. Text + A description of the monetary scope of the budget. + 0..n + Requested Tender Total + Monetary Scope + Text + Text. Type + + + + + + + + + BBIE + Requested Tender Total. Average_ Subsequent Contract. Amount + The average monetary amount for the subsequent contracts following this budget amount. + 0..1 + Requested Tender Total + Average + Subsequent Contract + Amount + Amount. Type + + + + + + + + + ASBIE + Requested Tender Total. Applicable_ Tax Category. Tax Category + Describes the categories of taxes that apply to the budget amount. + 0..n + Requested Tender Total + Applicable + Tax Category + Tax Category + Tax Category + + + + + + + + + + + ABIE + Response. Details + A class to describe an application-level response to a document. + Response + + + + + + + + + BBIE + Response. Reference. Identifier + An identifier for the section (or line) of the document to which this response applies. + 0..1 + Response + Reference + Identifier + Identifier. Type + + + + + + + + + BBIE + Response. Response Code. Code + A code signifying the type of response. + 0..1 + Response + Response Code + Code + Code. Type + + + + + + + + + BBIE + Response. Description. Text + Text describing this response. + 0..n + Response + Description + Text + Text. Type + + + + + + + + + BBIE + Response. Effective Date. Date + The date upon which this response is valid. + 0..1 + Response + Effective Date + Date + Date. Type + + + + + + + + + BBIE + Response. Effective Time. Time + The time at which this response is valid. + 0..1 + Response + Effective Time + Time + Time. Type + + + + + + + + + ASBIE + Response. Status + A status report associated with this response. + 0..n + Response + Status + Status + Status + + + + + + + + + + + ABIE + Result Of Verification. Details + A class to describe the result of an attempt to verify a signature. + Result Of Verification + + + + + + + + + BBIE + Result Of Verification. Validator. Identifier + An identifier for the organization, person, service, or server that verified the signature. + 0..1 + Result Of Verification + Validator + Identifier + Identifier. Type + + + + + + + + + BBIE + Result Of Verification. Validation_ Result Code. Code + A code signifying the result of the verification. + 0..1 + Result Of Verification + Validation + Result Code + Code + Code. Type + + + + + + + + + BBIE + Result Of Verification. Validation Date. Date + The date upon which verification took place. + 0..1 + Result Of Verification + Validation Date + Date + Date. Type + + + + + + + + + BBIE + Result Of Verification. Validation Time. Time + The time at which verification took place. + 0..1 + Result Of Verification + Validation Time + Time + Time. Type + + + + + + + + + BBIE + Result Of Verification. Validate_ Process. Text + The verification process. + 0..1 + Result Of Verification + Validate + Process + Text + Text. Type + + + + + + + + + BBIE + Result Of Verification. Validate_ Tool. Text + The tool used to verify the signature. + 0..1 + Result Of Verification + Validate + Tool + Text + Text. Type + + + + + + + + + BBIE + Result Of Verification. Validate_ Tool Version. Text + The version of the tool used to verify the signature. + 0..1 + Result Of Verification + Validate + Tool Version + Text + Text. Type + + + + + + + + + ASBIE + Result Of Verification. Signatory_ Party. Party + The signing party. + 0..1 + Result Of Verification + Signatory + Party + Party + Party + + + + + + + + + + + ABIE + Retail Planned Impact. Details + A class to describe a planned effect of a retail event (e.g., a promotion or a change in inventory policy) upon supply or demand. + Retail Planned Impact + + + + + + + + + BBIE + Retail Planned Impact. Amount + Estimated monetary value of the planned event as an impact + 1 + Retail Planned Impact + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Retail Planned Impact. Forecast_ Purpose Code. Code + It will have impact on either Sales forecast or Order Forecast + 1 + Retail Planned Impact + Forecast + Purpose Code + Code + Code. Type + + + + + + + + + BBIE + Retail Planned Impact. Forecast Type Code. Code + A code signifying the type of forecast. Examples of values are: BASE PROMOTIONAL SEASONAL TOTAL + 1 + Retail Planned Impact + Forecast Type Code + Code + Code. Type + + + + + + + + + ASBIE + Retail Planned Impact. Period + The period to which this impact applies. + 0..1 + Retail Planned Impact + Period + Period + Period + + + + + + + + + + + ABIE + Road Transport. Details + A class for identifying a vehicle used for road transport. + Road Transport + + + + + + + + + BBIE + Road Transport. License Plate Identifier. Identifier + The license plate identifier of this vehicle. + 1 + Road Transport + License Plate Identifier + Identifier + Identifier. Type + Vehicle registration number (WCO ID 167) + + + + + + + + + + + ABIE + Sales Item. Details + A class to describe information related to an item in a sales context + Sales Item + + + + + + + + + BBIE + Sales Item. Quantity + The quantity the given information are related to + 1 + Sales Item + Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Sales Item. Activity Property + A class to describe the activity (for example "sales", "movement", ...) related to the item. + 0..n + Sales Item + Activity Property + Activity Property + Activity Property + + + + + + + + + ASBIE + Sales Item. Tax Exclusive_ Price. Price + A price for this sales item, exclusive of tax. + 0..n + Sales Item + Tax Exclusive + Price + Price + Price + + + + + + + + + ASBIE + Sales Item. Tax Inclusive_ Price. Price + A price for this sales item, including tax. + 0..n + Sales Item + Tax Inclusive + Price + Price + Price + + + + + + + + + ASBIE + Sales Item. Item + The sales item itself. + 1 + Sales Item + Item + Item + Item + + + + + + + + + + + ABIE + Secondary Hazard. Details + A class to describe a secondary hazard associated with a hazardous item. + Secondary Hazard + + + + + + + + + BBIE + Secondary Hazard. Identifier + An identifier for this secondary hazard. + 0..1 + Secondary Hazard + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Secondary Hazard. Placard Notation. Text + Text of the placard notation corresponding to the hazard class of this secondary hazard. Can also be the hazard identification number of the orange placard (upper part) required on the means of transport. + 0..1 + Secondary Hazard + Placard Notation + Text + Text. Type + 5.1 + + + + + + + + + BBIE + Secondary Hazard. Placard Endorsement. Text + Text of the placard endorsement for this secondary hazard that is to be shown on the shipping papers for a hazardous item. Can also be used for the number of the orange placard (lower part) required on the means of transport. + 0..1 + Secondary Hazard + Placard Endorsement + Text + Text. Type + 2 + + + + + + + + + BBIE + Secondary Hazard. Emergency Procedures Code. Code + A code signifying the emergency procedures for this secondary hazard. + 0..1 + Secondary Hazard + Emergency Procedures Code + Code + Code. Type + EMG code, EMS Page Number + + + + + + + + + BBIE + Secondary Hazard. Extension. Text + Additional information about the hazardous substance, which can be used (for example) to specify the type of regulatory requirements that apply to this secondary hazard. + 0..n + Secondary Hazard + Extension + Text + Text. Type + N.O.S. or a Waste Characteristics Code in conjunction with an EPA Waste Stream code + + + + + + + + + + + ABIE + Service Frequency. Details + A class to specify which day of the week a transport service is operational. + Service Frequency + + + + + + + + + BBIE + Service Frequency. Week Day. Code + A day of the week, expressed as code. + 1 + Service Frequency + Week Day + Code + Week Day + Week Day_ Code. Type + + + + + + + + + + + ABIE + Service Provider Party. Details + A class to describe a party contracting to provide services, such as transportation, finance, etc. + Service Provider Party + + + + + + + + + BBIE + Service Provider Party. Identifier + An identifier for this service provider. + 0..1 + Service Provider Party + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Service Provider Party. Service Type Code. Code + The type of service provided, expressed as a code. + 0..1 + Service Provider Party + Service Type Code + Code + Code. Type + + + + + + + + + BBIE + Service Provider Party. Service Type. Text + The type of service provided, expressed as text. + 0..n + Service Provider Party + Service Type + Text + Text. Type + + + + + + + + + ASBIE + Service Provider Party. Party + The party providing the service. + 1 + Service Provider Party + Party + Party + Party + + + + + + + + + ASBIE + Service Provider Party. Seller_ Contact. Contact + The contact for the service provider. + 0..1 + Service Provider Party + Seller + Contact + Contact + Contact + + + + + + + + + + + ABIE + Shareholder Party. Details + A class to describe a shareholder party. + Shareholder Party + + + + + + + + + BBIE + Shareholder Party. Partecipation. Percent + The shareholder participation, expressed as a percentage. + 0..1 + Shareholder Party + Partecipation + Percent + Percent. Type + + + + + + + + + ASBIE + Shareholder Party. Party + The shareholder party. + 0..1 + Shareholder Party + Party + Party + Party + + + + + + + + + + + ABIE + Shipment. Details + A class defining an identifiable collection of one or more goods items to be transported between the seller party and the buyer party. This information may be defined within a commercial contract. A shipment can be transported in different consignments (e.g., split for logistical purposes). + Shipment + + + + + + + + + BBIE + Shipment. Identifier + An identifier for this shipment. + 1 + Shipment + Identifier + Identifier + Identifier. Type + Waybill Number + + + + + + + + + BBIE + Shipment. Shipping Priority Level Code. Code + A code signifying the priority or level of service required for this shipment. + 0..1 + Shipment + Shipping Priority Level Code + Code + Code. Type + Service Level, Service Priority + + + + + + + + + BBIE + Shipment. Handling Code. Code + The handling required for this shipment, expressed as a code. + 0..1 + Shipment + Handling Code + Code + Code. Type + Special Handling + + + + + + + + + BBIE + Shipment. Handling_ Instructions. Text + The handling required for this shipment, expressed as text. + 0..n + Shipment + Handling + Instructions + Text + Text. Type + + + + + + + + + BBIE + Shipment. Information. Text + Free-form text pertinent to this shipment, conveying information that is not contained explicitly in other structures. + 0..n + Shipment + Information + Text + Text. Type + + + + + + + + + BBIE + Shipment. Gross_ Weight. Measure + The total gross weight of a shipment; the weight of the goods plus packaging plus transport equipment. + 0..1 + Shipment + Gross + Weight + Measure + Measure. Type + + + + + + + + + BBIE + Shipment. Net_ Weight. Measure + The net weight of this shipment, excluding packaging. + 0..1 + Shipment + Net + Weight + Measure + Measure. Type + + + + + + + + + BBIE + Shipment. Net Net_ Weight. Measure + The total net weight of this shipment, excluding packaging and transport equipment. + 0..1 + Shipment + Net Net + Weight + Measure + Measure. Type + + + + + + + + + BBIE + Shipment. Gross_ Volume. Measure + The total volume of the goods in this shipment, including packaging. + 0..1 + Shipment + Gross + Volume + Measure + Measure. Type + + + + + + + + + BBIE + Shipment. Net_ Volume. Measure + The total volume of the goods in this shipment, excluding packaging and transport equipment. + 0..1 + Shipment + Net + Volume + Measure + Measure. Type + + + + + + + + + BBIE + Shipment. Total_ Goods Item Quantity. Quantity + The total number of goods items in this shipment. + 0..1 + Shipment + Total + Goods Item Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Shipment. Total_ Transport Handling Unit Quantity. Quantity + The number of pieces of transport handling equipment (pallets, boxes, cases, etc.) in this shipment. + 0..1 + Shipment + Total + Transport Handling Unit Quantity + Quantity + Quantity. Type + Number of THUs + + + + + + + + + BBIE + Shipment. Insurance_ Value. Amount + The amount covered by insurance for this shipment. + 0..1 + Shipment + Insurance + Value + Amount + Amount. Type + Value Insured + + + + + + + + + BBIE + Shipment. Declared Customs_ Value. Amount + The total declared value for customs purposes of those goods in this shipment that are subject to the same customs procedure and have the same tariff/statistical heading, country information, and duty regime. + 0..1 + Shipment + Declared Customs + Value + Amount + Amount. Type + + + + + + + + + BBIE + Shipment. Declared For Carriage_ Value. Amount + The value of this shipment, declared by the shipper or his agent solely for the purpose of varying the carrier's level of liability from that provided in the contract of carriage, in case of loss or damage to goods or delayed delivery. + 0..1 + Shipment + Declared For Carriage + Value + Amount + Amount. Type + Declared value for carriage, Interest in delivery + + + + + + + + + BBIE + Shipment. Declared Statistics_ Value. Amount + The value, declared for statistical purposes, of those goods in this shipment that have the same statistical heading. + 0..1 + Shipment + Declared Statistics + Value + Amount + Amount. Type + Statistical Value + + + + + + + + + BBIE + Shipment. Free On Board_ Value. Amount + The monetary amount that has to be or has been paid as calculated under the applicable trade delivery. + 0..1 + Shipment + Free On Board + Value + Amount + Amount. Type + FOB Value + + + + + + + + + BBIE + Shipment. Special_ Instructions. Text + Special instructions relating to this shipment. + 0..n + Shipment + Special + Instructions + Text + Text. Type + + + + + + + + + BBIE + Shipment. Delivery_ Instructions. Text + Delivery instructions relating to this shipment. + 0..n + Shipment + Delivery + Instructions + Text + Text. Type + + + + + + + + + BBIE + Shipment. Split Consignment_ Indicator. Indicator + An indicator that the consignment has been split in transit (true) or not (false). + 0..1 + Shipment + Split Consignment + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Shipment. Consignment_ Quantity. Quantity + The total number of consignments within this shipment. + 0..1 + Shipment + Consignment + Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Shipment. Consignment + A consignment covering this shipment. + 0..n + Shipment + Consignment + Consignment + Consignment + + + + + + + + + ASBIE + Shipment. Goods Item + A goods item included in this shipment. + 0..n + Shipment + Goods Item + Goods Item + Goods Item + + + + + + + + + ASBIE + Shipment. Shipment Stage + A stage in the transport movement of this shipment. + 0..n + Shipment + Shipment Stage + Shipment Stage + Shipment Stage + + + + + + + + + ASBIE + Shipment. Delivery + The delivery of this shipment. + 0..1 + Shipment + Delivery + Delivery + Delivery + + + + + + + + + ASBIE + Shipment. Transport Handling Unit + A transport handling unit associated with this shipment. + 0..n + Shipment + Transport Handling Unit + Transport Handling Unit + Transport Handling Unit + + + + + + + + + ASBIE + Shipment. Return_ Address. Address + The address to which a shipment should be returned. + 0..1 + Shipment + Return + Address + Address + Address + + + + + + + + + ASBIE + Shipment. Origin_ Address. Address + The region in which the goods have been produced or manufactured, according to criteria laid down for the purposes of application of the customs tariff, or of quantitative restrictions, or of any other measure related to trade. + 0..1 + Shipment + Origin + Address + Address + Address + + + + + + + + + ASBIE + Shipment. First Arrival Port_ Location. Location + The first arrival location of a shipment. This would be a port for sea, an airport for air, a terminal for rail, or a border post for land crossing. + 0..1 + Shipment + First Arrival Port + Location + Location + Location + + + + + + + + + ASBIE + Shipment. Last Exit Port_ Location. Location + The final exporting location for a shipment. This would be a port for sea, an airport for air, a terminal for rail, or a border post for land crossing. + 0..1 + Shipment + Last Exit Port + Location + Location + Location + + + + + + + + + ASBIE + Shipment. Export_ Country. Country + The country from which the goods were originally exported, without any commercial transaction taking place in intermediate countries. + 0..1 + Shipment + Export + Country + Country + Country + Country of exportation (WCO ID 062) + + + + + + + + + ASBIE + Shipment. Freight_ Allowance Charge. Allowance Charge + A cost incurred by the shipper in moving goods, by whatever means, from one place to another under the terms of the contract of carriage. In addition to transport costs, this may include such elements as packing, documentation, loading, unloading, and insurance to the extent that they relate to the freight costs. + 0..n + Shipment + Freight + Allowance Charge + Allowance Charge + Allowance Charge + Freight Costs + + + + + + + + + + + ABIE + Shipment Stage. Details + A class to describe one stage of movement in a transport of goods. + Shipment Stage + + + + + + + + + BBIE + Shipment Stage. Identifier + An identifier for this shipment stage. + 0..1 + Shipment Stage + Identifier + Identifier + Identifier. Type + 1 , 2 , etc.. + + + + + + + + + BBIE + Shipment Stage. Transport Mode Code. Code + A code signifying the method of transport used for this shipment stage. + 0..1 + Shipment Stage + Transport Mode Code + Code + Transport Mode + Transport Mode_ Code. Type + + + + + + + + + BBIE + Shipment Stage. Transport Means Type Code. Code + A code signifying the kind of transport means (truck, vessel, etc.) used for this shipment stage. + 0..1 + Shipment Stage + Transport Means Type Code + Code + Code. Type + + + + + + + + + BBIE + Shipment Stage. Transit_ Direction Code. Code + A code signifying the direction of transit in this shipment stage. + 0..1 + Shipment Stage + Transit + Direction Code + Code + Code. Type + + + + + + + + + BBIE + Shipment Stage. Pre Carriage_ Indicator. Indicator + An indicator that this stage takes place before the main carriage of the shipment (true) or not (false). + 0..1 + Shipment Stage + Pre Carriage + Indicator + Indicator + Indicator. Type + Truck delivery to wharf + + + + + + + + + BBIE + Shipment Stage. On Carriage_ Indicator. Indicator + An indicator that this stage takes place after the main carriage of the shipment (true) or not (false). + 0..1 + Shipment Stage + On Carriage + Indicator + Indicator + Indicator. Type + Truck delivery from wharf + + + + + + + + + BBIE + Shipment Stage. Estimated_ Delivery Date. Date + The estimated date of delivery in this shipment stage. + 0..1 + Shipment Stage + Estimated + Delivery Date + Date + Date. Type + + + + + + + + + BBIE + Shipment Stage. Estimated_ Delivery Time. Time + The estimated time of delivery in this shipment stage. + 0..1 + Shipment Stage + Estimated + Delivery Time + Time + Time. Type + + + + + + + + + BBIE + Shipment Stage. Required_ Delivery Date. Date + The delivery date required by the buyer in this shipment stage. + 0..1 + Shipment Stage + Required + Delivery Date + Date + Date. Type + + + + + + + + + BBIE + Shipment Stage. Required_ Delivery Time. Time + The delivery time required by the buyer in this shipment stage. + 0..1 + Shipment Stage + Required + Delivery Time + Time + Time. Type + + + + + + + + + BBIE + Shipment Stage. Loading_ Sequence Identifier. Identifier + An identifier for the loading sequence (of consignments) associated with this shipment stage. + 0..1 + Shipment Stage + Loading + Sequence Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Shipment Stage. Successive_ Sequence Identifier. Identifier + Identifies the successive loading sequence (of consignments) associated with a shipment stage. + 0..1 + Shipment Stage + Successive + Sequence Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Shipment Stage. Instructions. Text + Text of instructions applicable to a shipment stage. + 0..n + Shipment Stage + Instructions + Text + Text. Type + + + + + + + + + BBIE + Shipment Stage. Demurrage_ Instructions. Text + Text of instructions relating to demurrage (the case in which a vessel is prevented from loading or discharging cargo within the stipulated laytime). + 0..n + Shipment Stage + Demurrage + Instructions + Text + Text. Type + + + + + + + + + BBIE + Shipment Stage. Crew Quantity. Quantity + The total number of crew aboard a transport means. + 0..1 + Shipment Stage + Crew Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Shipment Stage. Passenger Quantity. Quantity + The total number of passengers aboard a transport means. + 0..1 + Shipment Stage + Passenger Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Shipment Stage. Transit_ Period. Period + The period during which this shipment stage actually took place. + 0..1 + Shipment Stage + Transit + Period + Period + Period + + + + + + + + + ASBIE + Shipment Stage. Carrier_ Party. Party + A carrier party responsible for this shipment stage. + 0..n + Shipment Stage + Carrier + Party + Party + Party + + + + + + + + + ASBIE + Shipment Stage. Transport Means + The means of transport used in this shipment stage. + 0..1 + Shipment Stage + Transport Means + Transport Means + Transport Means + + + + + + + + + ASBIE + Shipment Stage. Loading Port_ Location. Location + The location of loading for a shipment stage. + 0..1 + Shipment Stage + Loading Port + Location + Location + Location + + + + + + + + + ASBIE + Shipment Stage. Unloading Port_ Location. Location + The location of unloading for a shipment stage. + 0..1 + Shipment Stage + Unloading Port + Location + Location + Location + + + + + + + + + ASBIE + Shipment Stage. Transship Port_ Location. Location + The location of transshipment relating to a shipment stage. + 0..1 + Shipment Stage + Transship Port + Location + Location + Location + + + + + + + + + ASBIE + Shipment Stage. Loading_ Transport Event. Transport Event + The loading of goods in this shipment stage. + 0..1 + Shipment Stage + Loading + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Examination_ Transport Event. Transport Event + The examination of shipments in this shipment stage. + 0..1 + Shipment Stage + Examination + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Availability_ Transport Event. Transport Event + The making available of shipments in this shipment stage. + 0..1 + Shipment Stage + Availability + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Exportation_ Transport Event. Transport Event + The export event associated with this shipment stage. + 0..1 + Shipment Stage + Exportation + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Discharge_ Transport Event. Transport Event + The discharge event associated with this shipment stage. + 0..1 + Shipment Stage + Discharge + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Warehousing_ Transport Event. Transport Event + The warehousing event associated with this shipment stage. + 0..1 + Shipment Stage + Warehousing + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Takeover_ Transport Event. Transport Event + The receiver's takeover of the goods in this shipment stage. + 0..1 + Shipment Stage + Takeover + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Optional Takeover_ Transport Event. Transport Event + The optional takeover of the goods in this shipment stage. + 0..1 + Shipment Stage + Optional Takeover + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Dropoff_ Transport Event. Transport Event + The dropping off of goods in this shipment stage. + 0..1 + Shipment Stage + Dropoff + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Actual Pickup_ Transport Event. Transport Event + The pickup of goods in this shipment stage. + 0..1 + Shipment Stage + Actual Pickup + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Delivery_ Transport Event. Transport Event + The delivery of goods in this shipment stage. + 0..1 + Shipment Stage + Delivery + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Receipt_ Transport Event. Transport Event + The receipt of goods in this shipment stage. + 0..1 + Shipment Stage + Receipt + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Storage_ Transport Event. Transport Event + The storage of goods in this shipment stage. + 0..1 + Shipment Stage + Storage + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Acceptance_ Transport Event. Transport Event + The acceptance of goods in this shipment stage. + 0..1 + Shipment Stage + Acceptance + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Terminal Operator_ Party. Party + A terminal operator associated with this shipment stage. + 0..1 + Shipment Stage + Terminal Operator + Party + Party + Party + + + + + + + + + ASBIE + Shipment Stage. Customs Agent_ Party. Party + A customs agent associated with this shipment stage. + 0..1 + Shipment Stage + Customs Agent + Party + Party + Party + + + + + + + + + ASBIE + Shipment Stage. Estimated Transit_ Period. Period + The estimated transit period of this shipment stage. + 0..1 + Shipment Stage + Estimated Transit + Period + Period + Period + + + + + + + + + ASBIE + Shipment Stage. Freight_ Allowance Charge. Allowance Charge + A freight allowance charge for this shipment stage. + 0..n + Shipment Stage + Freight + Allowance Charge + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Shipment Stage. Freight Charge_ Location. Location + The location associated with a freight charge related to this shipment stage. + 0..1 + Shipment Stage + Freight Charge + Location + Location + Location + + + + + + + + + ASBIE + Shipment Stage. Detention_ Transport Event. Transport Event + The detention of a transport means during loading and unloading operations. + 0..n + Shipment Stage + Detention + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Requested Departure_ Transport Event. Transport Event + The departure requested by the party requesting a transportation service. + 0..1 + Shipment Stage + Requested Departure + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Requested Arrival_ Transport Event. Transport Event + The arrival requested by the party requesting a transportation service. + 0..1 + Shipment Stage + Requested Arrival + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Requested Waypoint_ Transport Event. Transport Event + A waypoint requested by the party requesting a transportation service. + 0..n + Shipment Stage + Requested Waypoint + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Planned Departure_ Transport Event. Transport Event + The departure planned by the party providing a transportation service. + 0..1 + Shipment Stage + Planned Departure + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Planned Arrival_ Transport Event. Transport Event + The arrival planned by the party providing a transportation service. + 0..1 + Shipment Stage + Planned Arrival + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Planned Waypoint_ Transport Event. Transport Event + A waypoint planned by the party providing a transportation service. + 0..n + Shipment Stage + Planned Waypoint + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Actual Departure_ Transport Event. Transport Event + The actual departure from a specific location during a transportation service. + 0..1 + Shipment Stage + Actual Departure + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Actual Waypoint_ Transport Event. Transport Event + The location of an actual waypoint during a transportation service. + 0..1 + Shipment Stage + Actual Waypoint + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Actual Arrival_ Transport Event. Transport Event + The actual arrival at a specific location during a transportation service. + 0..1 + Shipment Stage + Actual Arrival + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Transport Event + A significant occurrence in the course of this shipment of goods. + 0..n + Shipment Stage + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Estimated Departure_ Transport Event. Transport Event + Describes an estimated departure at a location during a transport service. + 0..1 + Shipment Stage + Estimated Departure + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Estimated Arrival_ Transport Event. Transport Event + Describes an estimated arrival at a location during a transport service. + 0..1 + Shipment Stage + Estimated Arrival + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Passenger_ Person. Person + A person who travels in a conveyance without participating in its operation. + 0..n + Shipment Stage + Passenger + Person + Person + Person + + + + + + + + + ASBIE + Shipment Stage. Driver_ Person. Person + Describes a person responsible for driving the transport means. + 0..n + Shipment Stage + Driver + Person + Person + Person + + + + + + + + + ASBIE + Shipment Stage. Reporting_ Person. Person + Describes a person being responsible for providing the required administrative reporting relating to a transport. + 0..1 + Shipment Stage + Reporting + Person + Person + Person + + + + + + + + + ASBIE + Shipment Stage. Crew Member_ Person. Person + A person operating or serving aboard a transport means. + 0..n + Shipment Stage + Crew Member + Person + Person + Person + + + + + + + + + ASBIE + Shipment Stage. Security Officer_ Person. Person + The person on board the vessel, accountable to the master, designated by the company as responsible for the security of the ship, including implementation and maintenance of the ship security plan and for the liaison with the company security officer and the port facility security officers. + 0..1 + Shipment Stage + Security Officer + Person + Person + Person + + + + + + + + + ASBIE + Shipment Stage. Master_ Person. Person + The person responsible for the ship's safe and efficient operation, including cargo operations, navigation, crew management and for ensuring that the vessel complies with local and international laws, as well as company and flag state policies. + 0..1 + Shipment Stage + Master + Person + Person + Person + + + + + + + + + ASBIE + Shipment Stage. Ships Surgeon_ Person. Person + The person responsible for the health of the people aboard a ship at sea. + 0..1 + Shipment Stage + Ships Surgeon + Person + Person + Person + + + + + + + + + + + ABIE + Signature. Details + A class to define a signature. + Signature + + + + + + + + + BBIE + Signature. Identifier + An identifier for this signature. + 1 + Signature + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Signature. Note. Text + Free-form text conveying information that is not contained explicitly in other structures; in particular, information regarding the circumstances in which the signature is being used. + 0..n + Signature + Note + Text + Text. Type + + + + + + + + + BBIE + Signature. Validation Date. Date + The date upon which this signature was verified. + 0..1 + Signature + Validation Date + Date + Date. Type + + + + + + + + + BBIE + Signature. Validation Time. Time + The time at which this signature was verified. + 0..1 + Signature + Validation Time + Time + Time. Type + + + + + + + + + BBIE + Signature. Validator. Identifier + An identifier for the organization, person, service, or server that verified this signature. + 0..1 + Signature + Validator + Identifier + Identifier. Type + + + + + + + + + BBIE + Signature. Canonicalization Method. Text + The method used to perform XML canonicalization of this signature. + 0..1 + Signature + Canonicalization Method + Text + Text. Type + + + + + + + + + BBIE + Signature. Signature Method. Text + Text describing the method of signature. + 0..1 + Signature + Signature Method + Text + Text. Type + + + + + + + + + ASBIE + Signature. Signatory_ Party. Party + The signing party. + 0..1 + Signature + Signatory + Party + Party + Party + + + + + + + + + ASBIE + Signature. Digital Signature_ Attachment. Attachment + The actual encoded signature (e.g., in XMLDsig format). + 0..1 + Signature + Digital Signature + Attachment + Attachment + Attachment + + + + + + + + + ASBIE + Signature. Original_ Document Reference. Document Reference + A reference to the document that the signature applies to. For evidentiary purposes, this may be the document image that the signatory party saw when applying their signature. + 0..1 + Signature + Original + Document Reference + Document Reference + Document Reference + + + + + + + + + + + ABIE + Statement Line. Details + A class to define a line in a Statement of account. + Statement Line + + + + + + + + + BBIE + Statement Line. Identifier + An identifier for this statement line. + 1 + Statement Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Statement Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Statement Line + Note + Text + Text. Type + + + + + + + + + BBIE + Statement Line. UUID. Identifier + A universally unique identifier for this statement line. + 0..1 + Statement Line + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Statement Line. Balance Brought Forward_ Indicator. Indicator + An indication that this statement line contains an outstanding balance from the previous bill(s) (true) or does not (false). + 0..1 + Statement Line + Balance Brought Forward + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Statement Line. Debit_ Line Amount. Amount + The amount debited on this statement line. + 0..1 + Statement Line + Debit + Line Amount + Amount + Amount. Type + + + + + + + + + BBIE + Statement Line. Credit_ Line Amount. Amount + The amount credited on this statement line. + 0..1 + Statement Line + Credit + Line Amount + Amount + Amount. Type + + + + + + + + + BBIE + Statement Line. Balance Amount. Amount + The balance amount on this statement line. + 0..1 + Statement Line + Balance Amount + Amount + Amount. Type + + + + + + + + + BBIE + Statement Line. Payment Purpose Code. Code + A code signifying the business purpose for this payment. + 0..1 + Statement Line + Payment Purpose Code + Code + Code. Type + + + + + + + + + ASBIE + Statement Line. Payment Means + A means of payment associated with this statement line. + 0..1 + Statement Line + Payment Means + Payment Means + Payment Means + + + + + + + + + ASBIE + Statement Line. Payment Terms + A specification of payment terms associated with this statement line. + 0..n + Statement Line + Payment Terms + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Statement Line. Buyer_ Customer Party. Customer Party + The buyer associated with this statement line. + 0..1 + Statement Line + Buyer + Customer Party + Customer Party + Customer Party + + + + + + + + + ASBIE + Statement Line. Seller_ Supplier Party. Supplier Party + The seller/supplier associated with this statement line. + 0..1 + Statement Line + Seller + Supplier Party + Supplier Party + Supplier Party + + + + + + + + + ASBIE + Statement Line. Originator_ Customer Party. Customer Party + The originating party. + 0..1 + Statement Line + Originator + Customer Party + Customer Party + Customer Party + + + + + + + + + ASBIE + Statement Line. Accounting_ Customer Party. Customer Party + The Accounting Customer Party related to the statement information reported on this Statement Line. + 0..1 + Statement Line + Accounting + Customer Party + Customer Party + Customer Party + + + + + + + + + ASBIE + Statement Line. Accounting_ Supplier Party. Supplier Party + The Accounting Supplier Party related to the statement information reported on this Statement Line. + 0..1 + Statement Line + Accounting + Supplier Party + Supplier Party + Supplier Party + + + + + + + + + ASBIE + Statement Line. Payee_ Party. Party + The payee. + 0..1 + Statement Line + Payee + Party + Party + Party + + + + + + + + + ASBIE + Statement Line. Invoice_ Period. Period + An invoice period to which this statement line applies. + 0..n + Statement Line + Invoice + Period + Period + Period + + + + + + + + + ASBIE + Statement Line. Billing Reference + A reference to a billing document associated with this statement line. + 0..n + Statement Line + Billing Reference + Billing Reference + Billing Reference + + + + + + + + + ASBIE + Statement Line. Document Reference + A reference to a document associated with this statement line. + 0..n + Statement Line + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Statement Line. Exchange Rate + The rate of exchange between the currency of the Statement and the currency of the document described in the BillingReference. + 0..1 + Statement Line + Exchange Rate + Exchange Rate + Exchange Rate + + + + + + + + + ASBIE + Statement Line. Allowance Charge + A charge or discount price component associated with this statement line. + 0..n + Statement Line + Allowance Charge + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Statement Line. Collected_ Payment. Payment + A collected payment. + 0..n + Statement Line + Collected + Payment + Payment + Payment + + + + + + + + + + + ABIE + Status. Details + A class to describe the condition or position of an object. + Status + + + + + + + + + BBIE + Status. Condition Code. Code + Specifies the status condition of the related object. + 0..1 + Status + Condition Code + Code + Code. Type + + + + + + + + + BBIE + Status. Reference Date. Date + The reference date for this status. + 0..1 + Status + Reference Date + Date + Date. Type + + + + + + + + + BBIE + Status. Reference Time. Time + The reference time for this status. + 0..1 + Status + Reference Time + Time + Time. Type + + + + + + + + + BBIE + Status. Description. Text + Text describing this status. + 0..n + Status + Description + Text + Text. Type + + + + + + + + + BBIE + Status. Status Reason Code. Code + The reason for this status condition or position, expressed as a code. + 0..1 + Status + Status Reason Code + Code + Code. Type + + + + + + + + + BBIE + Status. Status_ Reason. Text + The reason for this status condition or position, expressed as text. + 0..n + Status + Status + Reason + Text + Text. Type + + + + + + + + + BBIE + Status. Sequence Identifier. Identifier + A sequence identifier for this status. + 0..1 + Status + Sequence Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Status. Text + Provides any textual information related to this status. + 0..n + Status + Text + Text + Text. Type + + + + + + + + + BBIE + Status. Indication_ Indicator. Indicator + Specifies an indicator relevant to a specific status. + 0..1 + Status + Indication + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Status. Percent + A percentage meaningful in the context of this status. + 0..1 + Status + Percent + Percent + Percent. Type + + + + + + + + + BBIE + Status. Reliability Percent. Percent + The reliability of this status, expressed as a percentage. + 0..1 + Status + Reliability Percent + Percent + Percent. Type + + + + + + + + + ASBIE + Status. Condition + Measurements that quantify the condition of the objects covered by the status. + 0..n + Status + Condition + Condition + Condition + + + + + + + + + + + ABIE + Stock Availability Report Line. Details + A class to define a line in a Stock Availability Report describing the availability of an item of sale. + Stock Availability Report Line + + + + + + + + + BBIE + Stock Availability Report Line. Identifier + An identifier for this stock availability line. + 1 + Stock Availability Report Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Stock Availability Report Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Stock Availability Report Line + Note + Text + Text. Type + + + + + + + + + BBIE + Stock Availability Report Line. Quantity + The quantity of the item currently in stock. + 1 + Stock Availability Report Line + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Stock Availability Report Line. Value. Amount + The monetary value of the quantity of the item currently in stock. + 0..1 + Stock Availability Report Line + Value + Amount + Amount. Type + + + + + + + + + BBIE + Stock Availability Report Line. Availability Date. Date + The date from which the item will be available. A date identical to or earlier than the IssueDate of the Stock Availability Report means that the item is available now + 0..1 + Stock Availability Report Line + Availability Date + Date + Date. Type + + + + + + + + + BBIE + Stock Availability Report Line. Availability Status Code. Code + A code signifying the level of availability of the item. + 0..1 + Stock Availability Report Line + Availability Status Code + Code + Code. Type + + + + + + + + + ASBIE + Stock Availability Report Line. Item + The item associated with this stock availability report line. + 1 + Stock Availability Report Line + Item + Item + Item + + + + + + + + + + + ABIE + Stowage. Details + A class to describe a location on board a means of transport where specified goods or transport equipment have been stowed or are to be stowed. + Stowage + + + + + + + + + BBIE + Stowage. Location Identifier. Identifier + An identifier for the location. + 0..1 + Stowage + Location Identifier + Identifier + Identifier. Type + Cell Location, coded + + + + + + + + + BBIE + Stowage. Location. Text + Text describing the location. + 0..n + Stowage + Location + Text + Text. Type + Cell Location + + + + + + + + + ASBIE + Stowage. Measurement_ Dimension. Dimension + A measurable dimension (length, mass, weight, or volume) of this stowage. + 0..n + Stowage + Measurement + Dimension + Dimension + Dimension + + + + + + + + + + + ABIE + Subcontract Terms. Details + A class to describe subcontract terms for a tendering process. + Subcontract Terms + + + + + + + + + BBIE + Subcontract Terms. Rate + MF: I agree with the query. Rate? + 0..1 + Subcontract Terms + Rate + Rate + Rate. Type + + + + + + + + + BBIE + Subcontract Terms. Unknown_ Price. Indicator + An indicator that the subcontract price is known (true) or not (false). + 0..1 + Subcontract Terms + Unknown + Price + Indicator + Indicator. Type + + + + + + + + + BBIE + Subcontract Terms. Description. Text + Text describing the subcontract terms. + 0..n + Subcontract Terms + Description + Text + Text. Type + + + + + + + + + BBIE + Subcontract Terms. Amount + The monetary amount assigned to the subcontracted task. + 0..1 + Subcontract Terms + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Subcontract Terms. Subcontracting Conditions Code. Code + A code specifying the conditions for subcontracting. + 0..1 + Subcontract Terms + Subcontracting Conditions Code + Code + Code. Type + + + + + + + + + BBIE + Subcontract Terms. Maximum_ Percent. Percent + The maximum percentage allowed to be subcontracted. + 0..1 + Subcontract Terms + Maximum + Percent + Percent + Percent. Type + + + + + + + + + BBIE + Subcontract Terms. Minimum_ Percent. Percent + The minimum percentage allowed to be subcontracted. + 0..1 + Subcontract Terms + Minimum + Percent + Percent + Percent. Type + + + + + + + + + + + ABIE + Subscriber Consumption. Details + The consumption for a specific party for given consumption point provided by a numbers of suppliers. An enterprise can have one utility statement for several parties (e.g. a ministry of defence receiving a telephone bill). In this way each subscriber consumption represent a sub utility statement. + Subscriber Consumption + + + + + + + + + BBIE + Subscriber Consumption. Consumption Identifier. Identifier + The identifier tor this specification. + 0..1 + Subscriber Consumption + Consumption Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Subscriber Consumption. Specification Type Code. Code + The code which specifies the type of this specification, e.g. an on account specification or the yearly specification. + 0..1 + Subscriber Consumption + Specification Type Code + Code + Code. Type + + + + + + + + + BBIE + Subscriber Consumption. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Subscriber Consumption + Note + Text + Text. Type + This is how we have calculating your yearly statement + + + + + + + + + BBIE + Subscriber Consumption. Total Metered Quantity. Quantity + The total quantity consumed, as calculated from meter readings. + 0..1 + Subscriber Consumption + Total Metered Quantity + Quantity + Quantity. Type + 2000.0 + + + + + + + + + ASBIE + Subscriber Consumption. Subscriber_ Party. Party + The party subscribing to the utility. + 0..1 + Subscriber Consumption + Subscriber + Party + Party + Party + + + + + + + + + ASBIE + Subscriber Consumption. Utility_ Consumption Point. Consumption Point + The point at which the utility is consumed. + 1 + Subscriber Consumption + Utility + Consumption Point + Consumption Point + Consumption Point + + + + + + + + + ASBIE + Subscriber Consumption. On Account Payment + The planned prepayments (on account) regarding this subscription. + 0..n + Subscriber Consumption + On Account Payment + On Account Payment + On Account Payment + + + + + + + + + ASBIE + Subscriber Consumption. Consumption + The consumption in case the consumption is from one and only one supplier. + 0..1 + Subscriber Consumption + Consumption + Consumption + Consumption + + + + + + + + + ASBIE + Subscriber Consumption. Supplier Consumption + The consumption in case the consumption is from more than one supplier. + 0..n + Subscriber Consumption + Supplier Consumption + Supplier Consumption + Supplier Consumption + + + + + + + + + + + ABIE + Supplier Consumption. Details + The consumption in case the consumption is for one and only one supplier. + Supplier Consumption + + + + + + + + + BBIE + Supplier Consumption. Description. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Supplier Consumption + Description + Text + Text. Type + This is what you pay for electricity to DONG Energy North Utility + + + + + + + + + ASBIE + Supplier Consumption. Utility Supplier_ Party. Party + The party supplying the utility. + 0..1 + Supplier Consumption + Utility Supplier + Party + Party + Party + + + + + + + + + ASBIE + Supplier Consumption. Utility Customer_ Party. Party + The utility customer. + 0..1 + Supplier Consumption + Utility Customer + Party + Party + Party + + + + + + + + + ASBIE + Supplier Consumption. Consumption + The consumption regarding this supplier + 1 + Supplier Consumption + Consumption + Consumption + Consumption + + + + + + + + + ASBIE + Supplier Consumption. Contract + A contract setting forth conditions regulating the consumption. + 0..1 + Supplier Consumption + Contract + Contract + Contract + + + + + + + + + ASBIE + Supplier Consumption. Consumption Line + The consumption of a utility product. + 1..n + Supplier Consumption + Consumption Line + Consumption Line + Consumption Line + + + + + + + + + + + ABIE + Supplier Party. Details + A class to describe a supplier party. + Supplier Party + + + + + + + + + BBIE + Supplier Party. Customer Assigned_ Account Identifier. Identifier + An identifier for this supplier party, assigned by the customer. + 0..1 + Supplier Party + Customer Assigned + Account Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Supplier Party. Additional_ Account Identifier. Identifier + An additional identifier for this supplier party. + 0..n + Supplier Party + Additional + Account Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Supplier Party. Data Sending Capability. Text + Text describing the supplier's ability to send invoice data via a purchase card provider (e.g., VISA, MasterCard, American Express). + 0..1 + Supplier Party + Data Sending Capability + Text + Text. Type + + + + + + + + + ASBIE + Supplier Party. Party + The supplier party itself. + 0..1 + Supplier Party + Party + Party + Party + + + + + + + + + ASBIE + Supplier Party. Despatch_ Contact. Contact + A contact at this supplier party for despatches (pickups). + 0..1 + Supplier Party + Despatch + Contact + Contact + Contact + + + + + + + + + ASBIE + Supplier Party. Accounting_ Contact. Contact + A contact at this supplier party for accounting. + 0..1 + Supplier Party + Accounting + Contact + Contact + Contact + + + + + + + + + ASBIE + Supplier Party. Seller_ Contact. Contact + The primary contact for this supplier party. + 0..1 + Supplier Party + Seller + Contact + Contact + Contact + + + + + + + + + + + ABIE + Tax Category. Details + A class to describe one of the tax categories within a taxation scheme (e.g., High Rate VAT, Low Rate VAT). + Tax Category + + + + + + + + + BBIE + Tax Category. Identifier + An identifier for this tax category. + 0..1 + Tax Category + Identifier + Identifier + Identifier. Type + http://www.unece.org/uncefact/codelist/standard/UNECE_DutyorTaxorFeeCategoryCode_D09B.xsd + + + + + + + + + BBIE + Tax Category. Name + The name of this tax category. + 0..1 + Tax Category + Name + Name + Name. Type + Luxury Goods , Wine Equalization , Exempt + + + + + + + + + BBIE + Tax Category. Percent + The tax rate for this category, expressed as a percentage. + 0..1 + Tax Category + Percent + Percent + Percent. Type + + + + + + + + + BBIE + Tax Category. Base Unit Measure. Measure + A Unit of Measures used as the basic for the tax calculation applied at a certain rate per unit. + 0..1 + Tax Category + Base Unit Measure + Measure + Measure. Type + + + + + + + + + BBIE + Tax Category. Per Unit_ Amount. Amount + Where a tax is applied at a certain rate per unit, the rate per unit applied. + 0..1 + Tax Category + Per Unit + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Tax Category. Tax Exemption Reason Code. Code + The reason for tax being exempted, expressed as a code. + 0..1 + Tax Category + Tax Exemption Reason Code + Code + Code. Type + http://www.unece.org/uncefact/codelist/standard/UNECE_DutyTaxFeeTypeCode_D09B.xsd + + + + + + + + + BBIE + Tax Category. Tax Exemption Reason. Text + The reason for tax being exempted, expressed as text. + 0..n + Tax Category + Tax Exemption Reason + Text + Text. Type + + + + + + + + + BBIE + Tax Category. Tier Range. Text + Where a tax is tiered, the range of taxable amounts that determines the rate of tax applicable to this tax category. + 0..1 + Tax Category + Tier Range + Text + Text. Type + + + + + + + + + BBIE + Tax Category. Tier Rate. Percent + Where a tax is tiered, the tax rate that applies within the specified range of taxable amounts for this tax category. + 0..1 + Tax Category + Tier Rate + Percent + Percent. Type + + + + + + + + + ASBIE + Tax Category. Tax Scheme + The taxation scheme within which this tax category is defined. + 1 + Tax Category + Tax Scheme + Tax Scheme + Tax Scheme + + + + + + + + + + + ABIE + Tax Scheme. Details + A class to describe a taxation scheme (e.g., VAT, State tax, County tax). + Tax Scheme + + + + + + + + + BBIE + Tax Scheme. Identifier + An identifier for this taxation scheme. + 0..1 + Tax Scheme + Identifier + Identifier + Identifier. Type + http://www.unece.org/uncefact/codelist/standard/EDIFICASEU_TaxExemptionReason_D09B.xsd + + + + + + + + + BBIE + Tax Scheme. Name + The name of this taxation scheme. + 0..1 + Tax Scheme + Name + Name + Name. Type + Value Added Tax , Wholesale Tax , Sales Tax , State Tax + + + + + + + + + BBIE + Tax Scheme. Tax Type Code. Code + A code signifying the type of tax. + 0..1 + Tax Scheme + Tax Type Code + Code + Code. Type + Consumption , Sales + + + + + + + + + BBIE + Tax Scheme. Currency Code. Code + A code signifying the currency in which the tax is collected and reported. + 0..1 + Tax Scheme + Currency Code + Code + Currency + Currency_ Code. Type + + + + + + + + + ASBIE + Tax Scheme. Jurisdiction Region_ Address. Address + A geographic area in which this taxation scheme applies. + 0..n + Tax Scheme + Jurisdiction Region + Address + Address + Address + + + + + + + + + + + ABIE + Tax Subtotal. Details + A class to define the subtotal for a particular tax category within a particular taxation scheme, such as standard rate within VAT. + Tax Subtotal + + + + + + + + + BBIE + Tax Subtotal. Taxable_ Amount. Amount + The net amount to which the tax percent (rate) is applied to calculate the tax amount. + 0..1 + Tax Subtotal + Taxable + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Tax Subtotal. Tax Amount. Amount + The amount of this tax subtotal. + 1 + Tax Subtotal + Tax Amount + Amount + Amount. Type + + + + + + + + + BBIE + Tax Subtotal. Calculation Sequence. Numeric + The number of this tax subtotal in the sequence of subtotals corresponding to the order in which multiple taxes are applied. If all taxes are applied to the same taxable amount (i.e., their order of application is inconsequential), then CalculationSequenceNumeric is 1 for all tax subtotals applied to a given amount. + 0..1 + Tax Subtotal + Calculation Sequence + Numeric + Numeric. Type + + + + + + + + + BBIE + Tax Subtotal. Transaction Currency_ Tax Amount. Amount + The amount of this tax subtotal, expressed in the currency used for invoicing. + 0..1 + Tax Subtotal + Transaction Currency + Tax Amount + Amount + Amount. Type + + + + + + + + + BBIE + Tax Subtotal. Percent + The tax rate of the tax category applied to this tax subtotal, expressed as a percentage. + 0..1 + Tax Subtotal + Percent + Percent + Percent. Type + + + + + + + + + BBIE + Tax Subtotal. Base Unit Measure. Measure + The unit of measure on which the tax calculation is based + 0..1 + Tax Subtotal + Base Unit Measure + Measure + Measure. Type + + + + + + + + + BBIE + Tax Subtotal. Per Unit_ Amount. Amount + Where a tax is applied at a certain rate per unit, the rate per unit applied. + 0..1 + Tax Subtotal + Per Unit + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Tax Subtotal. Tier Range. Text + Where a tax is tiered, the range of taxable amounts that determines the rate of tax applicable to this tax subtotal. + 0..1 + Tax Subtotal + Tier Range + Text + Text. Type + + + + + + + + + BBIE + Tax Subtotal. Tier Rate. Percent + Where a tax is tiered, the tax rate that applies within a specified range of taxable amounts for this tax subtotal. + 0..1 + Tax Subtotal + Tier Rate + Percent + Percent. Type + + + + + + + + + ASBIE + Tax Subtotal. Tax Category + The tax category applicable to this subtotal. + 1 + Tax Subtotal + Tax Category + Tax Category + Tax Category + + + + + + + + + + + ABIE + Tax Total. Details + A class to describe the total tax for a particular taxation scheme. + Tax Total + + + + + + + + + BBIE + Tax Total. Tax Amount. Amount + The total tax amount for a particular taxation scheme, e.g., VAT; the sum of the tax subtotals for each tax category within the taxation scheme. + 1 + Tax Total + Tax Amount + Amount + Amount. Type + + + + + + + + + BBIE + Tax Total. Rounding Amount. Amount + The rounding amount (positive or negative) added to the calculated tax total to produce the rounded TaxAmount. + 0..1 + Tax Total + Rounding Amount + Amount + Amount. Type + + + + + + + + + BBIE + Tax Total. Tax Evidence_ Indicator. Indicator + An indicator that this total is recognized as legal evidence for taxation purposes (true) or not (false). + 0..1 + Tax Total + Tax Evidence + Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Tax Total. Tax Included_ Indicator. Indicator + An indicator that tax is included in the calculation (true) or not (false). + 0..1 + Tax Total + Tax Included + Indicator + Indicator + Indicator. Type + + + + + + + + + ASBIE + Tax Total. Tax Subtotal + One of the subtotals the sum of which equals the total tax amount for a particular taxation scheme. + 0..n + Tax Total + Tax Subtotal + Tax Subtotal + Tax Subtotal + + + + + + + + + + + ABIE + Telecommunications Service. Details + A class to describe a telecommunications service (e.g., a telephone call or a video on demand service). + Telecommunications Service + + + + + + + + + BBIE + Telecommunications Service. Identifier + An identifier for this telecommunications service. + 0..1 + Telecommunications Service + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Telecommunications Service. Call_ Date. Date + In the case of a telephone call, the date of the call. + 1 + Telecommunications Service + Call + Date + Date + Date. Type + 2008-01-01 + + + + + + + + + BBIE + Telecommunications Service. Call_ Time. Time + In the case of a telephone call, the time of the call. + 1 + Telecommunications Service + Call + Time + Time + Time. Type + 00:01:00 + + + + + + + + + BBIE + Telecommunications Service. Service Number Called. Text + In the case of a telephone call, the phone number called. + 1 + Telecommunications Service + Service Number Called + Text + Text. Type + 12345679 + + + + + + + + + BBIE + Telecommunications Service. Telecommunications Service Category. Text + The telecommunications category, expressed as text. + 0..1 + Telecommunications Service + Telecommunications Service Category + Text + Text. Type + Subscription + + + + + + + + + BBIE + Telecommunications Service. Telecommunications Service Category Code. Code + The telecommunications category, expressed as a code. + 0..1 + Telecommunications Service + Telecommunications Service Category Code + Code + Code. Type + Subscription + + + + + + + + + BBIE + Telecommunications Service. Movie Title. Text + The title of a movie delivered via this telecommunications service. + 0..1 + Telecommunications Service + Movie Title + Text + Text. Type + The Matrix + + + + + + + + + BBIE + Telecommunications Service. Roaming Partner Name. Name + Statement of the roaming partner name. + 0..1 + Telecommunications Service + Roaming Partner Name + Name + Name. Type + + + + + + + + + BBIE + Telecommunications Service. Pay Per View. Text + A pay-per-view delivered via this telecommunications service. + 0..1 + Telecommunications Service + Pay Per View + Text + Text. Type + + + + + + + + + BBIE + Telecommunications Service. Quantity + The number of calls. + 0..1 + Telecommunications Service + Quantity + Quantity + Quantity. Type + 5761 + + + + + + + + + BBIE + Telecommunications Service. Telecommunications Service Call. Text + The telecommunications call described as a text + 0..1 + Telecommunications Service + Telecommunications Service Call + Text + Text. Type + CallAttempt + + + + + + + + + BBIE + Telecommunications Service. Telecommunications Service Call Code. Code + The telecommunications call described as a code + 0..1 + Telecommunications Service + Telecommunications Service Call Code + Code + Code. Type + CallAttempt + + + + + + + + + BBIE + Telecommunications Service. Call Base_ Amount. Amount + The amount to be payed as the base for one call + 0..1 + Telecommunications Service + Call Base + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Telecommunications Service. Call Extension_ Amount. Amount + The amount to be payed for the call + 0..1 + Telecommunications Service + Call Extension + Amount + Amount + Amount. Type + 542.44 + + + + + + + + + ASBIE + Telecommunications Service. Price + The price for using the telecommunication service + 0..1 + Telecommunications Service + Price + Price + Price + + + + + + + + + ASBIE + Telecommunications Service. Country + The country to which the service is provided. In case of a telephone call it is the country where the receiver is located. + 0..1 + Telecommunications Service + Country + Country + Country + + + + + + + + + ASBIE + Telecommunications Service. Exchange Rate + A exchanges rates used in the pricing e.g.. when phone calls has crossed border lines. + 0..n + Telecommunications Service + Exchange Rate + Exchange Rate + Exchange Rate + + + + + + + + + ASBIE + Telecommunications Service. Allowance Charge + An allowance or charge that applies to the UtilityStatement as a whole. + 0..n + Telecommunications Service + Allowance Charge + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Telecommunications Service. Tax Total + A total amount of taxes of a particular kind applicable to this telecommunications service. + 0..n + Telecommunications Service + Tax Total + Tax Total + Tax Total + + + + + + + + + ASBIE + Telecommunications Service. Call_ Duty. Duty + In the case of a telephone call, a duty on this call. + 0..n + Telecommunications Service + Call + Duty + Duty + Duty + + + + + + + + + ASBIE + Telecommunications Service. Time_ Duty. Duty + A duty on a consumption of time. + 0..n + Telecommunications Service + Time + Duty + Duty + Duty + + + + + + + + + + + ABIE + Telecommunications Supply. Details + A class describing the supply of a telecommunication service, e.g., providing telephone calls. + Telecommunications Supply + + + + + + + + + BBIE + Telecommunications Supply. Telecommunications Supply Type. Text + The type of telecommunications supply, expressed as text. + 0..1 + Telecommunications Supply + Telecommunications Supply Type + Text + Text. Type + Itemized tele Statement + + + + + + + + + BBIE + Telecommunications Supply. Telecommunications Supply Type Code. Code + The type of telecommunications supply, expressed as a code. + 0..1 + Telecommunications Supply + Telecommunications Supply Type Code + Code + Code. Type + TeleExtended + + + + + + + + + BBIE + Telecommunications Supply. Privacy Code. Code + A code signifying the level of confidentiality of this information for this telecommunication supply. + 1 + Telecommunications Supply + Privacy Code + Code + Code. Type + CompanyLevel + + + + + + + + + BBIE + Telecommunications Supply. Description. Text + Text describing the telecommunications supply. + 0..n + Telecommunications Supply + Description + Text + Text. Type + Extended conversation Statement January quarter 2008. + + + + + + + + + BBIE + Telecommunications Supply. Total_ Amount. Amount + The total amount associated with this telecommunications supply. + 0..1 + Telecommunications Supply + Total + Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Telecommunications Supply. Telecommunications Supply Line + Outlines the provided telecommunication supply + 1..n + Telecommunications Supply + Telecommunications Supply Line + Telecommunications Supply Line + Telecommunications Supply Line + + + + + + + + + + + ABIE + Telecommunications Supply Line. Details + A class that outlines the telecommunication supply in details + Telecommunications Supply Line + + + + + + + + + BBIE + Telecommunications Supply Line. Identifier + An identifier for this telecommunications supply line. + 1 + Telecommunications Supply Line + Identifier + Identifier + Identifier. Type + 1 + + + + + + + + + BBIE + Telecommunications Supply Line. Phone Number. Text + The phone number used for this telecommunication supply line + 1 + Telecommunications Supply Line + Phone Number + Text + Text. Type + 12345678 + + + + + + + + + BBIE + Telecommunications Supply Line. Description. Text + The description of the telecommunication supply line + 0..n + Telecommunications Supply Line + Description + Text + Text. Type + Additional informations + + + + + + + + + BBIE + Telecommunications Supply Line. Line Extension Amount. Amount + An amount specifying the cost of this telecommunication line + 0..1 + Telecommunications Supply Line + Line Extension Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Telecommunications Supply Line. Exchange Rate + Exchanges rates used to calculate the amount for this line. + 0..n + Telecommunications Supply Line + Exchange Rate + Exchange Rate + Exchange Rate + + + + + + + + + ASBIE + Telecommunications Supply Line. Allowance Charge + An allowance or charge that applies to this telecommunication supply line. + 0..n + Telecommunications Supply Line + Allowance Charge + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Telecommunications Supply Line. Tax Total + A total amount of taxes of a particular kind applicable to this telecommunications supply line + 0..n + Telecommunications Supply Line + Tax Total + Tax Total + Tax Total + + + + + + + + + ASBIE + Telecommunications Supply Line. Telecommunications Service + A telecommunications service (e.g., a telephone call). + 1..n + Telecommunications Supply Line + Telecommunications Service + Telecommunications Service + Telecommunications Service + + + + + + + + + + + ABIE + Temperature. Details + A class to describe a measurement of temperature. + Temperature + + + + + + + + + BBIE + Temperature. Attribute Identifier. Identifier + An identifier for this temperature measurement. + 1 + Temperature + Attribute Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Temperature. Measure + The value of this temperature measurement. + 1 + Temperature + Measure + Measure + Measure. Type + + + + + + + + + BBIE + Temperature. Description. Text + Text describing this temperature measurement. + 0..n + Temperature + Description + Text + Text. Type + at sea level + + + + + + + + + + + ABIE + Tender Line. Details + A class to define a line in a Tender. + Tender Line + + + + + + + + + BBIE + Tender Line. Identifier + An identifier for this tender line. + 0..1 + Tender Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Tender Line. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Tender Line + Note + Text + Text. Type + + + + + + + + + BBIE + Tender Line. Quantity + The quantity of the item quoted in this tender line. + 0..1 + Tender Line + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Tender Line. Line Extension Amount. Amount + The total amount for this tender line, including allowance charges but net of taxes. + 0..1 + Tender Line + Line Extension Amount + Amount + Amount. Type + + + + + + + + + BBIE + Tender Line. Total_ Tax Amount. Amount + The total tax amount for this tender line. + 0..1 + Tender Line + Total + Tax Amount + Amount + Amount. Type + + + + + + + + + BBIE + Tender Line. Orderable_ Unit. Text + Text describing a unit in which the item described in this tender line can be ordered. + 0..1 + Tender Line + Orderable + Unit + Text + Text. Type + + + + + + + + + BBIE + Tender Line. Content Unit. Quantity + The unit of measure and quantity of the orderable unit. + 0..1 + Tender Line + Content Unit + Quantity + Quantity. Type + If order unit measure identifier is each , then content unit quantity is 1 . + + + + + + + + + BBIE + Tender Line. Order Quantity Increment. Numeric + The number of items that can set the order quantity increments. + 0..1 + Tender Line + Order Quantity Increment + Numeric + Numeric. Type + + + + + + + + + BBIE + Tender Line. Minimum_ Order Quantity. Quantity + The minimum number of items described in this tender line that can be ordered. + 0..1 + Tender Line + Minimum + Order Quantity + Quantity + Quantity. Type + 10 boxes + + + + + + + + + BBIE + Tender Line. Maximum_ Order Quantity. Quantity + The maximum number of items described in this tender line that can be ordered. + 0..1 + Tender Line + Maximum + Order Quantity + Quantity + Quantity. Type + 1 tonne + + + + + + + + + BBIE + Tender Line. Warranty_ Information. Text + Text about a warranty (provided by WarrantyParty) for the good or service described in this tender line. + 0..n + Tender Line + Warranty + Information + Text + Text. Type + Unless specified otherwise and in addition to any rights the Customer may have under statute, Dell warrants to the Customer that Dell branded Products (excluding third party products and software), will be free from defects in materials and workmanship affecting normal use for a period of one year from invoice date ( Standard Warranty ). + + + + + + + + + BBIE + Tender Line. Pack Level Code. Code + A mutually agreed code signifying the level of packaging associated with the item described in this tender line. + 0..1 + Tender Line + Pack Level Code + Code + Code. Type + Consumer Unit, Trading Unit + level 2 , Group 4 + + + + + + + + + ASBIE + Tender Line. Document Reference + A reference to a document associated with this tender line. + 0..n + Tender Line + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Tender Line. Item + The item associated with this tender line. + 0..1 + Tender Line + Item + Item + Item + + + + + + + + + ASBIE + Tender Line. Offered_ Item Location Quantity. Item Location Quantity + A set of location-specific properties (e.g., price, quantity, lead time) associated with the item described in this tender line. + 0..n + Tender Line + Offered + Item Location Quantity + Item Location Quantity + Item Location Quantity + + + + + + + + + ASBIE + Tender Line. Replacement_ Related Item. Related Item + A catalogue item that may be a replacement for the item described in this tender line. + 0..n + Tender Line + Replacement + Related Item + Related Item + Related Item + + + + + + + + + ASBIE + Tender Line. Warranty_ Party. Party + The party responsible for any warranty described in this tender line. + 0..1 + Tender Line + Warranty + Party + Party + Party + + + + + + + + + ASBIE + Tender Line. Warranty Validity_ Period. Period + The period for which a warranty associated with the item described in this tender line is valid. + 0..1 + Tender Line + Warranty Validity + Period + Period + Period + + + + + + + + + ASBIE + Tender Line. Sub_ Tender Line. Tender Line + An association to a Sub Tender Line + 0..n + Tender Line + Sub + Tender Line + Tender Line + Tender Line + + + + + + + + + ASBIE + Tender Line. Call For Tenders_ Line Reference. Line Reference + Reference to a Line on a Call For Tenders document. + 0..1 + Tender Line + Call For Tenders + Line Reference + Line Reference + Line Reference + + + + + + + + + ASBIE + Tender Line. Call For Tenders_ Document Reference. Document Reference + A class defining references to a Call For Tenders document. + 0..1 + Tender Line + Call For Tenders + Document Reference + Document Reference + Document Reference + + + + + + + + + + + ABIE + Tender Preparation. Details + A class to describe directions for preparing a tender. + Tender Preparation + + + + + + + + + BBIE + Tender Preparation. Tender Envelope Identifier. Identifier + An identifier for the tender envelope to be used with the tender. + 1 + Tender Preparation + Tender Envelope Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Tender Preparation. Tender Envelope Type Code. Code + A code signifying the type of tender envelope (economical or objective criteria versus technical or subjective criteria). + 0..1 + Tender Preparation + Tender Envelope Type Code + Code + Code. Type + + + + + + + + + BBIE + Tender Preparation. Description. Text + Text describing the tender envelope. + 0..n + Tender Preparation + Description + Text + Text. Type + + + + + + + + + BBIE + Tender Preparation. Open Tender Identifier. Identifier + An identifier for the open tender associated with this tender preparation. + 0..1 + Tender Preparation + Open Tender Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Tender Preparation. Procurement Project Lot + The procurement project lot associated with a particular tenderer. + 0..n + Tender Preparation + Procurement Project Lot + Procurement Project Lot + Procurement Project Lot + + + + + + + + + ASBIE + Tender Preparation. Document_ Tender Requirement. Tender Requirement + A reference to the template for a required document in a tendering process. + 0..n + Tender Preparation + Document + Tender Requirement + Tender Requirement + Tender Requirement + Curricula required, Experience required, .... + + + + + + + + + + + ABIE + Tender Requirement. Details + A template for a required document in a tendering process. + Tender Requirement + + + + + + + + + BBIE + Tender Requirement. Name + A name of this tender requirement. + 1 + Tender Requirement + Name + Name + Name. Type + + + + + + + + + BBIE + Tender Requirement. Description. Text + Text describing this tender requirement. + 0..n + Tender Requirement + Description + Text + Text. Type + + + + + + + + + ASBIE + Tender Requirement. Template_ Document Reference. Document Reference + A reference to the template for a required document. + 0..1 + Tender Requirement + Template + Document Reference + Document Reference + Document Reference + + + + + + + + + + + ABIE + Tender Result. Details + A class to describe the awarding of a tender in a tendering process. + Tender Result + + + + + + + + + BBIE + Tender Result. Tender_ Result Code. Code + A code signifying the result of the tendering process. + 0..1 + Tender Result + Tender + Result Code + Code + Code. Type + + + + + + + + + BBIE + Tender Result. Description. Text + Text describing the result of the tendering process. + 0..n + Tender Result + Description + Text + Text. Type + + + + + + + + + BBIE + Tender Result. Advertisement. Amount + The monetary value of the advertisement for this tendering process. + 0..1 + Tender Result + Advertisement + Amount + Amount. Type + + + + + + + + + BBIE + Tender Result. Award Date. Date + The date on which this result was formalized. + 1 + Tender Result + Award Date + Date + Date. Type + + + + + + + + + BBIE + Tender Result. Award Time. Time + The time at which this result was formalized. + 0..1 + Tender Result + Award Time + Time + Time. Type + + + + + + + + + BBIE + Tender Result. Received_ Tender. Quantity + The total number of tenders received in this tendering process. + 0..1 + Tender Result + Received + Tender + Quantity + Quantity. Type + + + + + + + + + BBIE + Tender Result. Lower_ Tender. Amount + The least expensive tender received in the tendering process. + 0..1 + Tender Result + Lower + Tender + Amount + Amount. Type + + + + + + + + + BBIE + Tender Result. Higher_ Tender. Amount + The most expensive tender received in this tendering process. + 0..1 + Tender Result + Higher + Tender + Amount + Amount. Type + + + + + + + + + BBIE + Tender Result. Start Date. Date + The date on which the awarded contract begins. + 0..1 + Tender Result + Start Date + Date + Date. Type + + + + + + + + + BBIE + Tender Result. Received_ Electronic Tender Quantity. Quantity + The number of electronic tenders received. + 0..1 + Tender Result + Received + Electronic Tender Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Tender Result. Received_ Foreign Tender Quantity. Quantity + The number of foreing tenders received. + 0..1 + Tender Result + Received + Foreign Tender Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Tender Result. Contract + A contract governing this tender result. + 0..1 + Tender Result + Contract + Contract + Contract + + + + + + + + + ASBIE + Tender Result. Awarded_ Tendered Project. Tendered Project + The awarded tendered project associated with this tender result. + 0..1 + Tender Result + Awarded + Tendered Project + Tendered Project + Tendered Project + + + + + + + + + ASBIE + Tender Result. Contract Formalization_ Period. Period + The period during which a contract associated with the awarded project is to be formalized. + 0..1 + Tender Result + Contract Formalization + Period + Period + Period + + + + + + + + + ASBIE + Tender Result. Subcontract Terms + Subcontract terms for this tender result. + 0..n + Tender Result + Subcontract Terms + Subcontract Terms + Subcontract Terms + + + + + + + + + ASBIE + Tender Result. Winning Party + A party that is identified as the awarded by a tender result. + 0..n + Tender Result + Winning Party + Winning Party + Winning Party + + + + + + + + + + + ABIE + Tendered Project. Details + A class to describe a tendered project or project lot. + Tendered Project + + + + + + + + + BBIE + Tendered Project. Variant. Identifier + An identifier for this variant of a tendered project. + 0..1 + Tendered Project + Variant + Identifier + Identifier. Type + + + + + + + + + BBIE + Tendered Project. Fee. Amount + The fee amount for tendered projects. + 0..1 + Tendered Project + Fee + Amount + Amount. Type + + + + + + + + + BBIE + Tendered Project. Fee_ Description. Text + Text describing the fee amount for tendered projects. + 0..n + Tendered Project + Fee + Description + Text + Text. Type + + + + + + + + + BBIE + Tendered Project. Tender Envelope Identifier. Identifier + An identifier for the tender envelope this tendered project belongs to. + 0..1 + Tendered Project + Tender Envelope Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Tendered Project. Tender Envelope Type Code. Code + A code signifying the type of tender envelope this tendered project belongs to. + 0..1 + Tendered Project + Tender Envelope Type Code + Code + Code. Type + + + + + + + + + ASBIE + Tendered Project. Procurement Project Lot + The procurement project lot to which this Tender Line refers to. If there are no lots, this should not be defined. + 0..1 + Tendered Project + Procurement Project Lot + Procurement Project Lot + Procurement Project Lot + + + + + + + + + ASBIE + Tendered Project. Evidence_ Document Reference. Document Reference + A reference to a non-structured evidentiary document supporting this tendered project. + 0..n + Tendered Project + Evidence + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Tendered Project. Tax Total + A total amount of taxes of a particular kind applicable to the monetary total for this tendered project. + 0..n + Tendered Project + Tax Total + Tax Total + Tax Total + + + + + + + + + ASBIE + Tendered Project. Legal_ Monetary Total. Monetary Total + The total amount for this tendered project. + 0..1 + Tendered Project + Legal + Monetary Total + Monetary Total + Monetary Total + + + + + + + + + ASBIE + Tendered Project. Tender Line + A line in the tender for this tendered project. + 0..n + Tendered Project + Tender Line + Tender Line + Tender Line + + + + + + + + + ASBIE + Tendered Project. Awarding Criterion Response + An association to an Awarding Criterion Response. + 0..n + Tendered Project + Awarding Criterion Response + Awarding Criterion Response + Awarding Criterion Response + + + + + + + + + + + ABIE + Tenderer Party Qualification. Details + A class to describe the qualifications of a tenderer party. + Tenderer Party Qualification + + + + + + + + + ASBIE + Tenderer Party Qualification. Interested_ Procurement Project Lot. Procurement Project Lot + The procurement project lot the party is interested in. + 0..n + Tenderer Party Qualification + Interested + Procurement Project Lot + Procurement Project Lot + Procurement Project Lot + + + + + + + + + ASBIE + Tenderer Party Qualification. Main_ Qualifying Party. Qualifying Party + The qualifications of the main tenderer party. + 1 + Tenderer Party Qualification + Main + Qualifying Party + Qualifying Party + Qualifying Party + + + + + + + + + ASBIE + Tenderer Party Qualification. Additional_ Qualifying Party. Qualifying Party + The qualifications of a tenderer party other than the main tenderer party when bidding as a consortium. + 0..n + Tenderer Party Qualification + Additional + Qualifying Party + Qualifying Party + Qualifying Party + + + + + + + + + + + ABIE + Tenderer Qualification Request. Details + The evaluation that the Contracting Authority party requests to fulfill to the tenderers. + Tenderer Qualification Request + + + + + + + + + BBIE + Tenderer Qualification Request. Company Legal Form Code. Code + The legal status requested for potential tenderers, expressed as a code. + 0..1 + Tenderer Qualification Request + Company Legal Form Code + Code + Code. Type + + + + + + + + + BBIE + Tenderer Qualification Request. Company Legal Form. Text + The legal status requested for potential tenderers, expressed as text + 0..1 + Tenderer Qualification Request + Company Legal Form + Text + Text. Type + + + + + + + + + BBIE + Tenderer Qualification Request. Personal Situation. Text + Text describing the personal situation of the economic operators in this tendering process. + 0..n + Tenderer Qualification Request + Personal Situation + Text + Text. Type + + + + + + + + + BBIE + Tenderer Qualification Request. Operating Years. Quantity + Textual description of the legal form required for potential tenderers. + 0..1 + Tenderer Qualification Request + Operating Years + Quantity + Quantity. Type + + + + + + + + + BBIE + Tenderer Qualification Request. Employee. Quantity + Textual description of the legal form required for potential tenderers. + 0..1 + Tenderer Qualification Request + Employee + Quantity + Quantity. Type + + + + + + + + + BBIE + Tenderer Qualification Request. Description. Text + Text describing the evaluation requirements for this tenderer. + 0..n + Tenderer Qualification Request + Description + Text + Text. Type + + + + + + + + + ASBIE + Tenderer Qualification Request. Required Business_ Classification Scheme. Classification Scheme + A classification scheme for the business profile. + 0..n + Tenderer Qualification Request + Required Business + Classification Scheme + Classification Scheme + Classification Scheme + + + + + + + + + ASBIE + Tenderer Qualification Request. Technical_ Evaluation Criterion. Evaluation Criterion + A technical evaluation criterion required for an economic operator in a tendering process. + 0..n + Tenderer Qualification Request + Technical + Evaluation Criterion + Evaluation Criterion + Evaluation Criterion + + + + + + + + + ASBIE + Tenderer Qualification Request. Financial_ Evaluation Criterion. Evaluation Criterion + A financial evaluation criterion required for an economic operator in a tendering process. + 0..n + Tenderer Qualification Request + Financial + Evaluation Criterion + Evaluation Criterion + Evaluation Criterion + + + + + + + + + ASBIE + Tenderer Qualification Request. Specific_ Tenderer Requirement. Tenderer Requirement + A requirement to be met by a tenderer. + 0..n + Tenderer Qualification Request + Specific + Tenderer Requirement + Tenderer Requirement + Tenderer Requirement + Preregistration in a Business Registry + + + + + + + + + ASBIE + Tenderer Qualification Request. Economic Operator Role + A class to describe the tenderer contracting role. + 0..n + Tenderer Qualification Request + Economic Operator Role + Economic Operator Role + Economic Operator Role + + + + + + + + + + + ABIE + Tenderer Requirement. Details + A class to describe an action or statement required of an economic operator participating in a tendering process. + Tenderer Requirement + + + + + + + + + BBIE + Tenderer Requirement. Name + A name of this tenderer requirement. + 0..n + Tenderer Requirement + Name + Name + Name. Type + + + + + + + + + BBIE + Tenderer Requirement. Tenderer Requirement_ Type Code. Code + A code signifying this requirement. + 0..1 + Tenderer Requirement + Tenderer Requirement + Type Code + Code + Code. Type + + + + + + + + + BBIE + Tenderer Requirement. Description. Text + Text describing this requirement. + 0..n + Tenderer Requirement + Description + Text + Text. Type + + + + + + + + + BBIE + Tenderer Requirement. Legal Reference. Text + The legal reference of the exclusion criterion. + 0..1 + Tenderer Requirement + Legal Reference + Text + Text. Type + Art. 45 2 b + + + + + + + + + ASBIE + Tenderer Requirement. Suggested_ Evidence. Evidence + An item of evidence that should be submitted to satisfy this requirement. + 0..n + Tenderer Requirement + Suggested + Evidence + Evidence + Evidence + + + + + + + + + + + ABIE + Tendering Process. Details + A class to describe the process of a formal offer and response to execute work or supply goods at a stated price. + Tendering Process + + + + + + + + + BBIE + Tendering Process. Identifier + An identifier for this tendering process. + 0..1 + Tendering Process + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Tendering Process. Original_ Contracting System. Identifier + When reopening a tendering process, the identifier of the original framework agreement or dynamic purchasing system. + 0..1 + Tendering Process + Original + Contracting System + Identifier + Identifier. Type + + + + + + + + + BBIE + Tendering Process. Description. Text + Text describing the tendering process. + 0..n + Tendering Process + Description + Text + Text. Type + + + + + + + + + BBIE + Tendering Process. Negotiation_ Description. Text + Text describing the negotiation to be followed during the tendering process. + 0..n + Tendering Process + Negotiation + Description + Text + Text. Type + + + + + + + + + BBIE + Tendering Process. Procedure Code. Code + A code signifying the type of this tendering procedure. + 0..1 + Tendering Process + Procedure Code + Code + Code. Type + Open, Restricted, Negotiated + + + + + + + + + BBIE + Tendering Process. Urgency Code. Code + A code signifying the urgency of this tendering process. + 0..1 + Tendering Process + Urgency Code + Code + Code. Type + Urgent, Normal, Emergency + + + + + + + + + BBIE + Tendering Process. Expense Code. Code + A code signifying the type of expense for this tendering process. + 0..1 + Tendering Process + Expense Code + Code + Code. Type + Normal, Anticipated + + + + + + + + + BBIE + Tendering Process. Part Presentation Code. Code + A code signifying the type of presentation of tenders required (e.g., one lot, multiple lots, or all the lots). + 0..1 + Tendering Process + Part Presentation Code + Code + Code. Type + One Lot, Multiple Lots, All Lots + + + + + + + + + BBIE + Tendering Process. Contracting System Code. Code + A code signifying the type of contracting system (e.g., framework agreement, dynamic purchasing system). If the procedure is individual (nonrepetitive), this code should be omitted. + 0..1 + Tendering Process + Contracting System Code + Code + Code. Type + Framework Agreement, Dynamic Purchasing System + + + + + + + + + BBIE + Tendering Process. Submission Method Code. Code + A code signifying the method to be followed in submitting tenders. + 0..1 + Tendering Process + Submission Method Code + Code + Code. Type + Manual, Electronically, etc. + + + + + + + + + BBIE + Tendering Process. Candidate Reduction_ Constraint. Indicator + An indicator that the number of candidates participating in this process has been reduced (true) or not (false). + 0..1 + Tendering Process + Candidate Reduction + Constraint + Indicator + Indicator. Type + + + + + + + + + BBIE + Tendering Process. Government Agreement_ Constraint. Indicator + An indicator that the project associated with this tendering process is constrained by a government procurement agreement (true) or not (false). + 0..1 + Tendering Process + Government Agreement + Constraint + Indicator + Indicator. Type + + + + + + + + + ASBIE + Tendering Process. Document Availability_ Period. Period + The period during which documents relating to this tendering process must be completed. + 0..1 + Tendering Process + Document Availability + Period + Period + Period + + + + + + + + + ASBIE + Tendering Process. Tender Submission Deadline_ Period. Period + The period during which tenders must be delivered. + 0..1 + Tendering Process + Tender Submission Deadline + Period + Period + Period + + + + + + + + + ASBIE + Tendering Process. Invitation Submission_ Period. Period + The period during which invitations to tender must be completed and delivered. + 0..1 + Tendering Process + Invitation Submission + Period + Period + Period + + + + + + + + + ASBIE + Tendering Process. Participation Request Reception_ Period. Period + The period during which requests for participation must be completed and delivered. + 0..1 + Tendering Process + Participation Request Reception + Period + Period + Period + + + + + + + + + ASBIE + Tendering Process. Notice_ Document Reference. Document Reference + A reference to a notice pertaining to this tendering process. + 0..n + Tendering Process + Notice + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Tendering Process. Additional_ Document Reference. Document Reference + A reference to an additional document. + 0..n + Tendering Process + Additional + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Tendering Process. Process Justification + A justification for the selection of this tendering process. + 0..n + Tendering Process + Process Justification + Process Justification + Process Justification + + + + + + + + + ASBIE + Tendering Process. Economic Operator Short List + A set of criteria used to create a short list of candidates. + 0..1 + Tendering Process + Economic Operator Short List + Economic Operator Short List + Economic Operator Short List + + + + + + + + + ASBIE + Tendering Process. Open Tender_ Event. Event + Textual description of the legal form required for potential tenderers. + 0..n + Tendering Process + Open Tender + Event + Event + Event + + + + + + + + + ASBIE + Tendering Process. Auction Terms + The terms to be fulfilled by tenderers if an auction is to be executed before the awarding of a tender. + 0..1 + Tendering Process + Auction Terms + Auction Terms + Auction Terms + + + + + + + + + ASBIE + Tendering Process. Framework Agreement + A tendering framework agreement. + 0..1 + Tendering Process + Framework Agreement + Framework Agreement + Framework Agreement + + + + + + + + + + + ABIE + Tendering Terms. Details + A class to describe tendering terms for a tendering process. + Tendering Terms + + + + + + + + + BBIE + Tendering Terms. Awarding Method Type Code. Code + A code signifying the awarding method in a tendering process (e.g., a method favoring the tender with the lowest price or the tender that is most economically advantageous). + 0..1 + Tendering Terms + Awarding Method Type Code + Code + Code. Type + Price, Multiple criteria + + + + + + + + + BBIE + Tendering Terms. Price Evaluation Code. Code + Textual description of the legal form required for potential tenderers. + 0..1 + Tendering Terms + Price Evaluation Code + Code + Code. Type + Unit prices, global price + + + + + + + + + BBIE + Tendering Terms. Maximum Variant_ Quantity. Quantity + Maximum number of variants the tenderer is allowed to present for this tendering project. + 0..1 + Tendering Terms + Maximum Variant + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Tendering Terms. Variant_ Constraint. Indicator + An indicator that variants are allowed and unconstrained in number (true) or not allowed (false). + 0..1 + Tendering Terms + Variant + Constraint + Indicator + Indicator. Type + + + + + + + + + BBIE + Tendering Terms. Accepted Variants_ Description. Text + Text specifying the things for which variants are accepted. + 0..n + Tendering Terms + Accepted Variants + Description + Text + Text. Type + + + + + + + + + BBIE + Tendering Terms. Price Revision_ Formula Description. Text + Text describing the formula for price revision. + 0..n + Tendering Terms + Price Revision + Formula Description + Text + Text. Type + + + + + + + + + BBIE + Tendering Terms. Funding_ Program Code. Code + The program that funds the tendering process (e.g., "National", "European"), expressed as a code. + 0..1 + Tendering Terms + Funding + Program Code + Code + Code. Type + + + + + + + + + BBIE + Tendering Terms. Funding_ Program. Text + The program that funds the tendering process (e.g., EU 6th Framework Program) expressed as text. + 0..n + Tendering Terms + Funding + Program + Text + Text. Type + + + + + + + + + BBIE + Tendering Terms. Maximum_ Advertisement. Amount + The maximum advertised monetary value of the tendering process. + 0..1 + Tendering Terms + Maximum + Advertisement + Amount + Amount. Type + + + + + + + + + BBIE + Tendering Terms. Note. Text + Free-form text conveying information that is not contained explicitly in other structures. + 0..n + Tendering Terms + Note + Text + Text. Type + + + + + + + + + BBIE + Tendering Terms. Payment Frequency Code. Code + A code signifying the frequency of payment in the contract associated with the tendering process. + 0..1 + Tendering Terms + Payment Frequency Code + Code + Code. Type + + + + + + + + + BBIE + Tendering Terms. Economic Operator Registry_ URI. Identifier + The Uniform Resource Identifier (URI) of an electronic registry of economic operators. + 0..1 + Tendering Terms + Economic Operator Registry + URI + Identifier + Identifier. Type + Web site + + + + + + + + + BBIE + Tendering Terms. Required Curricula. Indicator + An indicator that tenderers are required to provide a curriculum vitae for each participant in the project (true) or are not so required (false). + 0..1 + Tendering Terms + Required Curricula + Indicator + Indicator. Type + + + + + + + + + BBIE + Tendering Terms. Other_ Conditions. Indicator + Indicates whether other conditions exist (true) or not (false). If the indicator is true, the description may be provided. + 0..1 + Tendering Terms + Other + Conditions + Indicator + Indicator. Type + + + + + + + + + BBIE + Tendering Terms. Additional_ Conditions. Text + Other existing conditions. + 0..n + Tendering Terms + Additional + Conditions + Text + Text. Type + + + + + + + + + BBIE + Tendering Terms. Latest_ Security Clearance Date. Date + The end date until which the candidates can obtain the necessary level of security clearance. + 0..1 + Tendering Terms + Latest + Security Clearance Date + Date + Date. Type + + + + + + + + + BBIE + Tendering Terms. Documentation Fee Amount. Amount + The amount to be paid to obtain the contract documents and additional documentation. + 0..1 + Tendering Terms + Documentation Fee Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Tendering Terms. Penalty_ Clause. Clause + The penalty clauses + 0..n + Tendering Terms + Penalty + Clause + Clause + Clause + + + + + + + + + ASBIE + Tendering Terms. Required_ Financial Guarantee. Financial Guarantee + A financial guarantee of a tenderer or bid submitter's actual entry into a contract in the event that it is the successful bidder. + 0..n + Tendering Terms + Required + Financial Guarantee + Financial Guarantee + Financial Guarantee + + + + + + + + + ASBIE + Tendering Terms. Procurement Legislation_ Document Reference. Document Reference + A reference to a document providing references to procurement legislation applicable to the tendering process. + 0..1 + Tendering Terms + Procurement Legislation + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Tendering Terms. Fiscal Legislation_ Document Reference. Document Reference + A reference to a document providing references to fiscal legislation applicable to the tendering process. + 0..1 + Tendering Terms + Fiscal Legislation + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Tendering Terms. Environmental Legislation_ Document Reference. Document Reference + A reference to a document providing references to environmental legislation applicable to the tendering process. + 0..1 + Tendering Terms + Environmental Legislation + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Tendering Terms. Employment Legislation_ Document Reference. Document Reference + A reference to a document providing references to employment legislation applicable to the tendering process. + 0..1 + Tendering Terms + Employment Legislation + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Tendering Terms. Contractual_ Document Reference. Document Reference + A reference to a document that will become part of the awarded contract. + 0..n + Tendering Terms + Contractual + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Tendering Terms. Call For Tenders_ Document Reference. Document Reference + A reference to the Call for Tender associated with these tendering terms. + 0..1 + Tendering Terms + Call For Tenders + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Tendering Terms. Warranty Validity_ Period. Period + The period during which a warranty for work, service, or goods associated with these tendering terms is valid. + 0..1 + Tendering Terms + Warranty Validity + Period + Period + Period + + + + + + + + + ASBIE + Tendering Terms. Payment Terms + A specification of payment terms associated with the tendering process. + 0..n + Tendering Terms + Payment Terms + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Tendering Terms. Tenderer Qualification Request + Required set of qualifications for a tenderer in this tendering process. + 0..n + Tendering Terms + Tenderer Qualification Request + Tenderer Qualification Request + Tenderer Qualification Request + + + + + + + + + ASBIE + Tendering Terms. Allowed_ Subcontract Terms. Subcontract Terms + Subcontract terms for the tendering process. + 0..n + Tendering Terms + Allowed + Subcontract Terms + Subcontract Terms + Subcontract Terms + + + + + + + + + ASBIE + Tendering Terms. Tender Preparation + Directions for preparing a tender for the+D2057 tendering process. + 0..n + Tendering Terms + Tender Preparation + Tender Preparation + Tender Preparation + Curricula required, Experience required, .... + + + + + + + + + ASBIE + Tendering Terms. Contract Execution Requirement + A requirement relating to execution of the contract that will be awarded as a result of the tendering process. + 0..n + Tendering Terms + Contract Execution Requirement + Contract Execution Requirement + Contract Execution Requirement + + + + + + + + + ASBIE + Tendering Terms. Awarding Terms + The terms in the tendering process for awarding the contract for a project. + 0..1 + Tendering Terms + Awarding Terms + Awarding Terms + Awarding Terms + + + + + + + + + ASBIE + Tendering Terms. Additional Information_ Party. Party + A party that has additional information about the tendering process. + 0..1 + Tendering Terms + Additional Information + Party + Party + Party + + + + + + + + + ASBIE + Tendering Terms. Document Provider_ Party. Party + The party that has the contract documents for the tendering process. + 0..1 + Tendering Terms + Document Provider + Party + Party + Party + + + + + + + + + ASBIE + Tendering Terms. Tender Recipient_ Party. Party + The party to which tenders should be presented. + 0..1 + Tendering Terms + Tender Recipient + Party + Party + Party + + + + + + + + + ASBIE + Tendering Terms. Contract Responsible_ Party. Party + The party responsible for the execution of the contract. + 0..1 + Tendering Terms + Contract Responsible + Party + Party + Party + + + + + + + + + ASBIE + Tendering Terms. Tender Evaluation_ Party. Party + A party in the contracting authority responsible for evaluating tenders received. + 0..n + Tendering Terms + Tender Evaluation + Party + Party + Party + + + + + + + + + ASBIE + Tendering Terms. Tender Validity_ Period. Period + The period during which tenders submitted for this tendering process must remain valid. + 0..1 + Tendering Terms + Tender Validity + Period + Period + Period + + + + + + + + + ASBIE + Tendering Terms. Contract Acceptance_ Period. Period + The period of time during which the contracting authority may accept a contract. + 0..1 + Tendering Terms + Contract Acceptance + Period + Period + Period + + + + + + + + + ASBIE + Tendering Terms. Appeal Terms + Information about the terms to present for an appeal against a tender award. + 0..1 + Tendering Terms + Appeal Terms + Appeal Terms + Appeal Terms + + + + + + + + + ASBIE + Tendering Terms. Language + One of the default languages specified for the tendering process. + 0..n + Tendering Terms + Language + Language + Language + + + + + + + + + ASBIE + Tendering Terms. Budget Account Line + A budget account line associated with the tendering process. + 0..n + Tendering Terms + Budget Account Line + Budget Account Line + Budget Account Line + + + + + + + + + ASBIE + Tendering Terms. Replaced Notice_ Document Reference. Document Reference + A class defining a reference to the notice that is being replaced. + 0..1 + Tendering Terms + Replaced Notice + Document Reference + Document Reference + Document Reference + + + + + + + + + + + ABIE + Trade Financing. Details + A class to describe a trade financing instrument. + Trade Financing + + + + + + + + + BBIE + Trade Financing. Identifier + An identifier for this trade financing instrument. + 0..1 + Trade Financing + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Trade Financing. Financing Instrument Code. Code + A code signifying the type of this financing instrument. + 0..1 + Trade Financing + Financing Instrument Code + Code + Code. Type + Factoring , Invoice Financing , Pre-shipment Financing , Letter of Credit , Irrevocable Letter of Credit . + + + + + + + + + ASBIE + Trade Financing. Contract_ Document Reference. Document Reference + A reference to a contract document. + 0..1 + Trade Financing + Contract + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Trade Financing. Document Reference + A reference to a document associated with this trade financing instrument. + 0..n + Trade Financing + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Trade Financing. Financing_ Party. Party + The financing party (bank or other enabled party). + 1 + Trade Financing + Financing + Party + Party + Party + + + + + + + + + ASBIE + Trade Financing. Financing_ Financial Account. Financial Account + An internal bank account used by the bank or its first agent to manage the line of credit granted to the financing requester. + 0..1 + Trade Financing + Financing + Financial Account + Financial Account + Financial Account + + + + + + + + + ASBIE + Trade Financing. Clause + A clause applicable to this trade financing instrument. + 0..n + Trade Financing + Clause + Clause + Clause + + + + + + + + + + + ABIE + Trading Terms. Details + A class for describing the terms of a trade agreement. + Trading Terms + + + + + + + + + BBIE + Trading Terms. Information. Text + Text describing the terms of a trade agreement. + 0..n + Trading Terms + Information + Text + Text. Type + Unless credit terms have been expressly agreed by Dell, payment for the products or services shall be made in full before physical delivery of products or services. Customer shall pay for all shipping and handling charges. + + + + + + + + + BBIE + Trading Terms. Reference. Text + A reference quoting the basis of the terms + 0..1 + Trading Terms + Reference + Text + Text. Type + http://www1.ap.dell.com/content/topics/topic.aspx/ap/policy/en/au/sales_terms_au?c=au&l=en&s=gen + + + + + + + + + ASBIE + Trading Terms. Applicable_ Address. Address + The address at which these trading terms apply. + 0..1 + Trading Terms + Applicable + Address + Address + Address + + + + + + + + + + + ABIE + Transaction Conditions. Details + A class to describe purchasing, sales, or payment conditions. + Transaction Conditions + Payment Conditions, Sales Conditions + + + + + + + + + BBIE + Transaction Conditions. Identifier + An identifier for conditions of the transaction, typically purchase/sales conditions. + 0..1 + Transaction Conditions + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Transaction Conditions. Action Code. Code + A code signifying a type of action relating to sales or payment conditions. + 0..1 + Transaction Conditions + Action Code + Code + Code. Type + + + + + + + + + BBIE + Transaction Conditions. Description. Text + Text describing the transaction conditions. + 0..n + Transaction Conditions + Description + Text + Text. Type + + + + + + + + + ASBIE + Transaction Conditions. Document Reference + A document associated with these transaction conditions. + 0..n + Transaction Conditions + Document Reference + Document Reference + Document Reference + + + + + + + + + + + ABIE + Transport Equipment. Details + A class to describe a piece of equipment used to transport goods. + Transport Equipment + Shipping Container, Sea Container, Rail Wagon, Pallet, Trailer, Unit Load Device, ULD + + + + + + + + + BBIE + Transport Equipment. Identifier + An identifier for this piece of transport equipment. + 0..1 + Transport Equipment + Identifier + Identifier + Identifier. Type + OCLU 1234567 + + + + + + + + + BBIE + Transport Equipment. Referenced_ Consignment Identifier. Identifier + An identifier for the consignment contained by this piece of transport equipment. + 0..n + Transport Equipment + Referenced + Consignment Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Transport Equipment. Transport Equipment Type Code. Code + A code signifying the type of this piece of transport equipment. + 0..1 + Transport Equipment + Transport Equipment Type Code + Code + Transport Equipment Type + Transport Equipment Type_ Code. Type + + + + + + + + + BBIE + Transport Equipment. Provider Type Code. Code + A code signifying the type of provider of this piece of transport equipment. + 0..1 + Transport Equipment + Provider Type Code + Code + Code. Type + + + + + + + + + BBIE + Transport Equipment. Owner Type Code. Code + A code signifying the type of owner of this piece of transport equipment. + 0..1 + Transport Equipment + Owner Type Code + Code + Code. Type + + + + + + + + + BBIE + Transport Equipment. Size Type Code. Code + A code signifying the size and type of this piece of piece of transport equipment. When the piece of transport equipment is a shipping container, it is recommended to use ContainerSizeTypeCode for validation. + 0..1 + Transport Equipment + Size Type Code + Code + Code. Type + Container Size Type Code + + + + + + + + + BBIE + Transport Equipment. Disposition Code. Code + A code signifying the current disposition of this piece of transport equipment. + 0..1 + Transport Equipment + Disposition Code + Code + Code. Type + Status + + + + + + + + + BBIE + Transport Equipment. Fullness Indication Code. Code + A code signifying whether this piece of transport equipment is full, partially full, or empty. + 0..1 + Transport Equipment + Fullness Indication Code + Code + Code. Type + + + + + + + + + BBIE + Transport Equipment. Refrigeration On_ Indicator. Indicator + An indicator that this piece of transport equipment's refrigeration is on (true) or off (false). + 0..1 + Transport Equipment + Refrigeration On + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Transport Equipment. Information. Text + Additional information about this piece of transport equipment. + 0..n + Transport Equipment + Information + Text + Text. Type + + + + + + + + + BBIE + Transport Equipment. Returnability_ Indicator. Indicator + An indicator that this piece of transport equipment is returnable (true) or not (false). + 0..1 + Transport Equipment + Returnability + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Transport Equipment. Legal Status_ Indicator. Indicator + An indication of the legal status of this piece of transport equipment with respect to the Container Convention Code. + 0..1 + Transport Equipment + Legal Status + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Transport Equipment. Air Flow Percent. Percent + The percent of the airflow within this piece of transport equipment. + 0..1 + Transport Equipment + Air Flow Percent + Percent + Percent. Type + + + + + + + + + BBIE + Transport Equipment. Humidity Percent. Percent + The percent humidity within this piece of transport equipment. + 0..1 + Transport Equipment + Humidity Percent + Percent + Percent. Type + + + + + + + + + BBIE + Transport Equipment. Animal Food_ Approved Indicator. Indicator + An indicator that this piece of transport equipment is approved for animal food (true) or not (false). + 0..1 + Transport Equipment + Animal Food + Approved Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Transport Equipment. Human Food_ Approved Indicator. Indicator + An indicator that this piece of transport equipment is approved for human food (true) or not (false). + 0..1 + Transport Equipment + Human Food + Approved Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Transport Equipment. Dangerous Goods_ Approved Indicator. Indicator + An indicator that this piece of transport equipment is approved for dangerous goods (true) or not (false). + 0..1 + Transport Equipment + Dangerous Goods + Approved Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Transport Equipment. Refrigerated_ Indicator. Indicator + An indicator that this piece of transport equipment is refrigerated (true) or not (false). + 0..1 + Transport Equipment + Refrigerated + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Transport Equipment. Characteristics. Text + Characteristics of this piece of transport equipment. + 0..1 + Transport Equipment + Characteristics + Text + Text. Type + + + + + + + + + BBIE + Transport Equipment. Damage_ Remarks. Text + Damage associated with this piece of transport equipment. + 0..n + Transport Equipment + Damage + Remarks + Text + Text. Type + + + + + + + + + BBIE + Transport Equipment. Description. Text + Text describing this piece of transport equipment. + 0..n + Transport Equipment + Description + Text + Text. Type + + + + + + + + + BBIE + Transport Equipment. Special_ Transport Requirements. Text + Special transport requirements expressed as text. + 0..n + Transport Equipment + Special + Transport Requirements + Text + Text. Type + + + + + + + + + BBIE + Transport Equipment. Gross_ Weight. Measure + The gross weight of this piece of transport equipment. + 0..1 + Transport Equipment + Gross + Weight + Measure + Measure. Type + + + + + + + + + BBIE + Transport Equipment. Gross_ Volume. Measure + The gross volume of this piece of transport equipment. + 0..1 + Transport Equipment + Gross + Volume + Measure + Measure. Type + + + + + + + + + BBIE + Transport Equipment. Tare_ Weight. Measure + The weight of this piece of transport equipment when empty. + 0..1 + Transport Equipment + Tare + Weight + Measure + Measure. Type + + + + + + + + + BBIE + Transport Equipment. Tracking Device Code. Code + A code signifying the tracking device for this piece of transport equipment. + 0..1 + Transport Equipment + Tracking Device Code + Code + Code. Type + + + + + + + + + BBIE + Transport Equipment. Power. Indicator + An indicator that this piece of transport equipment can supply power (true) or not (false). + 0..1 + Transport Equipment + Power + Indicator + Indicator. Type + + + + + + + + + BBIE + Transport Equipment. Trace_ Identifier. Identifier + An identifier for use in tracing this piece of transport equipment, such as the EPC number used in RFID. + 0..1 + Transport Equipment + Trace + Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Transport Equipment. Measurement_ Dimension. Dimension + A measurable dimension (length, mass, weight, or volume) of this piece of transport equipment. + 0..n + Transport Equipment + Measurement + Dimension + Dimension + Dimension + + + + + + + + + ASBIE + Transport Equipment. Transport Equipment Seal + A seal securing the door of a piece of transport equipment. + 0..n + Transport Equipment + Transport Equipment Seal + Transport Equipment Seal + Transport Equipment Seal + + + + + + + + + ASBIE + Transport Equipment. Minimum_ Temperature. Temperature + In the case of a refrigeration unit, the minimum allowable operating temperature for this container. + 0..1 + Transport Equipment + Minimum + Temperature + Temperature + Temperature + + + + + + + + + ASBIE + Transport Equipment. Maximum_ Temperature. Temperature + In the case of a refrigeration unit, the maximum allowable operating temperature for this container. + 0..1 + Transport Equipment + Maximum + Temperature + Temperature + Temperature + + + + + + + + + ASBIE + Transport Equipment. Provider_ Party. Party + The party providing this piece of transport equipment. + 0..1 + Transport Equipment + Provider + Party + Party + Party + + + + + + + + + ASBIE + Transport Equipment. Loading Proof_ Party. Party + The authorized party responsible for certifying that the goods were loaded into this piece of transport equipment. + 0..1 + Transport Equipment + Loading Proof + Party + Party + Party + Party responsible for proof of vanning (WCO ID 059) + + + + + + + + + ASBIE + Transport Equipment. Supplier Party + The party that supplies this piece of transport equipment. + 0..1 + Transport Equipment + Supplier Party + Supplier Party + Supplier Party + Party responsible for proof of vanning (WCO ID 059) + + + + + + + + + ASBIE + Transport Equipment. Owner_ Party. Party + The party that owns this piece of transport equipment. + 0..1 + Transport Equipment + Owner + Party + Party + Party + Party responsible for proof of vanning (WCO ID 059) + + + + + + + + + ASBIE + Transport Equipment. Operating_ Party. Party + The party that operates this piece of transport equipment. + 0..1 + Transport Equipment + Operating + Party + Party + Party + Party responsible for proof of vanning (WCO ID 059) + + + + + + + + + ASBIE + Transport Equipment. Loading_ Location. Location + The location where this piece of transport equipment is loaded. + 0..1 + Transport Equipment + Loading + Location + Location + Location + Vanning address (WCO ID 068), Stuffing location + + + + + + + + + ASBIE + Transport Equipment. Unloading_ Location. Location + The location where this piece of transport equipment is unloaded. + 0..1 + Transport Equipment + Unloading + Location + Location + Location + + + + + + + + + ASBIE + Transport Equipment. Storage_ Location. Location + The location where this piece of transport equipment is being stored. + 0..1 + Transport Equipment + Storage + Location + Location + Location + + + + + + + + + ASBIE + Transport Equipment. Positioning_ Transport Event. Transport Event + A positioning of this piece of transport equipment. + 0..n + Transport Equipment + Positioning + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Equipment. Quarantine_ Transport Event. Transport Event + A quarantine of this piece of transport equipment. + 0..n + Transport Equipment + Quarantine + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Equipment. Delivery_ Transport Event. Transport Event + A delivery of this piece of transport equipment. + 0..n + Transport Equipment + Delivery + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Equipment. Pickup_ Transport Event. Transport Event + A pickup of this piece of transport equipment. + 0..n + Transport Equipment + Pickup + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Equipment. Handling_ Transport Event. Transport Event + A handling of this piece of transport equipment. + 0..n + Transport Equipment + Handling + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Equipment. Loading_ Transport Event. Transport Event + A loading of this piece of transport equipment. + 0..n + Transport Equipment + Loading + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Equipment. Transport Event + A transport event associated with this piece of transport equipment. + 0..n + Transport Equipment + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Equipment. Applicable_ Transport Means. Transport Means + The applicable transport means associated with this piece of transport equipment. + 0..1 + Transport Equipment + Applicable + Transport Means + Transport Means + Transport Means + + + + + + + + + ASBIE + Transport Equipment. Haulage_ Trading Terms. Trading Terms + A set of haulage trading terms associated with this piece of transport equipment. + 0..n + Transport Equipment + Haulage + Trading Terms + Trading Terms + Trading Terms + + + + + + + + + ASBIE + Transport Equipment. Hazardous Goods Transit + Transit-related information regarding a type of hazardous goods contained in this piece of transport equipment. + 0..n + Transport Equipment + Hazardous Goods Transit + Hazardous Goods Transit + Hazardous Goods Transit + + + + + + + + + ASBIE + Transport Equipment. Packaged_ Transport Handling Unit. Transport Handling Unit + A packaged transport handling unit associated with this piece of transport equipment. + 0..n + Transport Equipment + Packaged + Transport Handling Unit + Transport Handling Unit + Transport Handling Unit + + + + + + + + + ASBIE + Transport Equipment. Service_ Allowance Charge. Allowance Charge + A service allowance charge associated with this piece of transport equipment. + 0..n + Transport Equipment + Service + Allowance Charge + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Transport Equipment. Freight_ Allowance Charge. Allowance Charge + A freight allowance charge associated with this piece of transport equipment. + 0..n + Transport Equipment + Freight + Allowance Charge + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Transport Equipment. Attached_ Transport Equipment. Transport Equipment + A piece of transport equipment attached to this piece of transport equipment. + 0..n + Transport Equipment + Attached + Transport Equipment + Transport Equipment + Transport Equipment + + + + + + + + + ASBIE + Transport Equipment. Delivery + The delivery of this piece of transport equipment. + 0..1 + Transport Equipment + Delivery + Delivery + Delivery + + + + + + + + + ASBIE + Transport Equipment. Pickup + The pickup of this piece of transport equipment. + 0..1 + Transport Equipment + Pickup + Pickup + Pickup + + + + + + + + + ASBIE + Transport Equipment. Despatch + The despatch of this piece of transport equipment. + 0..1 + Transport Equipment + Despatch + Despatch + Despatch + + + + + + + + + ASBIE + Transport Equipment. Shipment_ Document Reference. Document Reference + A reference to a shipping document associated with this piece of transport equipment. + 0..n + Transport Equipment + Shipment + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Transport Equipment. Contained In_ Transport Equipment. Transport Equipment + A piece of transport equipment contained in this piece of transport equipment. + 0..n + Transport Equipment + Contained In + Transport Equipment + Transport Equipment + Transport Equipment + e.g. pallets inside containers + + + + + + + + + ASBIE + Transport Equipment. Package + A package contained in this piece of transport equipment. + 0..n + Transport Equipment + Package + Package + Package + + + + + + + + + ASBIE + Transport Equipment. Goods Item + A goods item contained in this piece of transport equipment. + 0..n + Transport Equipment + Goods Item + Goods Item + Goods Item + + + + + + + + + + + ABIE + Transport Equipment Seal. Details + A class to describe a device (a transport equipment seal) for securing the doors of a shipping container. + Transport Equipment Seal + Container Seal + + + + + + + + + BBIE + Transport Equipment Seal. Identifier + An identifier for this transport equipment seal. + 1 + Transport Equipment Seal + Identifier + Identifier + Identifier. Type + ACS1234 + + + + + + + + + BBIE + Transport Equipment Seal. Seal Issuer Type Code. Code + A code signifying the type of party that issues and is responsible for this transport equipment seal. + 0..1 + Transport Equipment Seal + Seal Issuer Type Code + Code + Code. Type + + + + + + + + + BBIE + Transport Equipment Seal. Condition. Text + The condition of this transport equipment seal. + 0..1 + Transport Equipment Seal + Condition + Text + Text. Type + + + + + + + + + BBIE + Transport Equipment Seal. Seal Status Code. Code + A code signifying the condition of this transport equipment seal. + 0..1 + Transport Equipment Seal + Seal Status Code + Code + Code. Type + + + + + + + + + BBIE + Transport Equipment Seal. Sealing Party Type. Text + The role of the sealing party. + 0..1 + Transport Equipment Seal + Sealing Party Type + Text + Text. Type + Sealing Party + + + + + + + + + + + ABIE + Transport Event. Details + A class to describe a significant occurrence or happening related to the transportation of goods. + Transport Event + + + + + + + + + BBIE + Transport Event. Identification. Identifier + An identifier for this transport event within an agreed event identification scheme. + 0..1 + Transport Event + Identification + Identifier + Identifier. Type + + + + + + + + + BBIE + Transport Event. Occurrence Date. Date + The date of this transport event. + 0..1 + Transport Event + Occurrence Date + Date + Date. Type + + + + + + + + + BBIE + Transport Event. Occurrence Time. Time + The time of this transport event. + 0..1 + Transport Event + Occurrence Time + Time + Time. Type + + + + + + + + + BBIE + Transport Event. Transport Event Type Code. Code + A code signifying the type of this transport event. + 0..1 + Transport Event + Transport Event Type Code + Code + Code. Type + + + + + + + + + BBIE + Transport Event. Description. Text + Text describing this transport event. + 0..n + Transport Event + Description + Text + Text. Type + + + + + + + + + BBIE + Transport Event. Completion_ Indicator. Indicator + An indicator that this transport event has been completed (true) or not (false). + 0..1 + Transport Event + Completion + Indicator + Indicator + Indicator. Type + + + + + + + + + ASBIE + Transport Event. Reported_ Shipment. Shipment + The shipment involved in this transport event. + 0..1 + Transport Event + Reported + Shipment + Shipment + Shipment + + + + + + + + + ASBIE + Transport Event. Current_ Status. Status + The current status of this transport event. + 0..n + Transport Event + Current + Status + Status + Status + + + + + + + + + ASBIE + Transport Event. Contact + A contact associated with this transport event. + 0..n + Transport Event + Contact + Contact + Contact + + + + + + + + + ASBIE + Transport Event. Location + The location associated with this transport event. + 0..1 + Transport Event + Location + Location + Location + + + + + + + + + ASBIE + Transport Event. Signature + A signature that can be used to sign for an entry or an exit at a transport location (e.g., port terminal). + 0..1 + Transport Event + Signature + Signature + Signature + + + + + + + + + ASBIE + Transport Event. Period + A period of time associated with this transport event. + 0..n + Transport Event + Period + Period + Period + + + + + + + + + + + ABIE + Transport Execution Terms. Details + A class to describe terms applying to a transport execution plan. + Transport Execution Terms + + + + + + + + + BBIE + Transport Execution Terms. Transport User_ Special Terms. Text + Text describing special terms specified by the transport user. + 0..n + Transport Execution Terms + Transport User + Special Terms + Text + Text. Type + + + + + + + + + BBIE + Transport Execution Terms. Transport Service Provider_ Special Terms. Text + Text describing special terms specified by the transport service provider. + 0..n + Transport Execution Terms + Transport Service Provider + Special Terms + Text + Text. Type + + + + + + + + + BBIE + Transport Execution Terms. Change Conditions. Text + Text describing conditions applying to a change of these transport execution terms. + 0..n + Transport Execution Terms + Change Conditions + Text + Text. Type + + + + + + + + + ASBIE + Transport Execution Terms. Payment Terms + Payment terms associated with the transportation service. + 0..n + Transport Execution Terms + Payment Terms + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Transport Execution Terms. Delivery Terms + Delivery terms (e.g., Incoterms) associated with the transportation service. + 0..n + Transport Execution Terms + Delivery Terms + Delivery Terms + Delivery Terms + + + + + + + + + ASBIE + Transport Execution Terms. Bonus_ Payment Terms. Payment Terms + Terms relating to payment of applicable bonuses associated with the transport service. + 0..1 + Transport Execution Terms + Bonus + Payment Terms + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Transport Execution Terms. Commission_ Payment Terms. Payment Terms + Terms of payment applying to a commission specified in the transport execution plan. + 0..1 + Transport Execution Terms + Commission + Payment Terms + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Transport Execution Terms. Penalty_ Payment Terms. Payment Terms + Terms of payment applying to a penalty specified in the transport execution plan. + 0..1 + Transport Execution Terms + Penalty + Payment Terms + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Transport Execution Terms. Environmental Emission + An environmental emission resulting from the transportation service. + 0..n + Transport Execution Terms + Environmental Emission + Environmental Emission + Environmental Emission + + + + + + + + + ASBIE + Transport Execution Terms. Notification Requirement + A notification requirement related to the transportation service; e.g., a requirement that the transport user should be notified when goods are ready for pickup. + 0..n + Transport Execution Terms + Notification Requirement + Notification Requirement + Notification Requirement + + + + + + + + + ASBIE + Transport Execution Terms. Service Charge_ Payment Terms. Payment Terms + Payment terms for the service charge associated with the transport service. + 0..1 + Transport Execution Terms + Service Charge + Payment Terms + Payment Terms + Payment Terms + + + + + + + + + + + ABIE + Transport Handling Unit. Details + A class to describe a uniquely identifiable unit consisting of one or more packages, goods items, or pieces of transport equipment. + Transport Handling Unit + Logistics Unit, Handling Unit, THU + + + + + + + + + BBIE + Transport Handling Unit. Identifier + An identifier for this transport handling unit. + 0..1 + Transport Handling Unit + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Transport Handling Unit. Transport Handling Unit Type Code. Code + A code signifying the type of this transport handling unit. + 0..1 + Transport Handling Unit + Transport Handling Unit Type Code + Code + Code. Type + + + + + + + + + BBIE + Transport Handling Unit. Handling Code. Code + The handling required for this transport handling unit, expressed as a code. + 0..1 + Transport Handling Unit + Handling Code + Code + Code. Type + Special Handling + + + + + + + + + BBIE + Transport Handling Unit. Handling_ Instructions. Text + The handling required for this transport handling unit, expressed as text. + 0..n + Transport Handling Unit + Handling + Instructions + Text + Text. Type + + + + + + + + + BBIE + Transport Handling Unit. Hazardous Risk_ Indicator. Indicator + An indicator that the materials contained in this transport handling unit are subject to an international regulation concerning the carriage of dangerous goods (true) or not (false). + 0..1 + Transport Handling Unit + Hazardous Risk + Indicator + Indicator + Indicator. Type + Default is negative + + + + + + + + + BBIE + Transport Handling Unit. Total_ Goods Item Quantity. Quantity + The total number of goods items in this transport handling unit. + 0..1 + Transport Handling Unit + Total + Goods Item Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Transport Handling Unit. Total_ Package Quantity. Quantity + The total number of packages in this transport handling unit. + 0..1 + Transport Handling Unit + Total + Package Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Transport Handling Unit. Damage_ Remarks. Text + Text describing damage associated with this transport handling unit. + 0..n + Transport Handling Unit + Damage + Remarks + Text + Text. Type + + + + + + + + + BBIE + Transport Handling Unit. Shipping_ Marks. Text + Text describing the marks and numbers on this transport handling unit. + 0..n + Transport Handling Unit + Shipping + Marks + Text + Text. Type + Marks and Numbers, Shipping Marks + + + + + + + + + BBIE + Transport Handling Unit. Trace_ Identifier. Identifier + An identifier for use in tracing this transport handling unit, such as the EPC number used in RFID. + 0..1 + Transport Handling Unit + Trace + Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Transport Handling Unit. Handling Unit_ Despatch Line. Despatch Line + A despatch line associated with this transport handling unit. + 0..n + Transport Handling Unit + Handling Unit + Despatch Line + Despatch Line + Despatch Line + + + + + + + + + ASBIE + Transport Handling Unit. Actual_ Package. Package + A package contained in this transport handling unit. + 0..n + Transport Handling Unit + Actual + Package + Package + Package + + + + + + + + + ASBIE + Transport Handling Unit. Received Handling Unit_ Receipt Line. Receipt Line + A receipt line associated with this transport handling unit. + 0..n + Transport Handling Unit + Received Handling Unit + Receipt Line + Receipt Line + Receipt Line + + + + + + + + + ASBIE + Transport Handling Unit. Transport Equipment + A piece of transport equipment associated with this transport handling unit. + 0..n + Transport Handling Unit + Transport Equipment + Transport Equipment + Transport Equipment + + + + + + + + + ASBIE + Transport Handling Unit. Transport Means + A means of transport associated with this transport handling unit. + 0..n + Transport Handling Unit + Transport Means + Transport Means + Transport Means + + + + + + + + + ASBIE + Transport Handling Unit. Hazardous Goods Transit + Transit-related information regarding a type of hazardous goods contained in this transport handling unit. + 0..n + Transport Handling Unit + Hazardous Goods Transit + Hazardous Goods Transit + Hazardous Goods Transit + + + + + + + + + ASBIE + Transport Handling Unit. Measurement_ Dimension. Dimension + A measurable dimension (length, mass, weight, or volume) of this transport handling unit. + 0..n + Transport Handling Unit + Measurement + Dimension + Dimension + Dimension + + + + + + + + + ASBIE + Transport Handling Unit. Minimum_ Temperature. Temperature + The minimum required operating temperature of this transport handling unit. + 0..1 + Transport Handling Unit + Minimum + Temperature + Temperature + Temperature + + + + + + + + + ASBIE + Transport Handling Unit. Maximum_ Temperature. Temperature + The maximum allowable operating temperature of this transport handling unit. + 0..1 + Transport Handling Unit + Maximum + Temperature + Temperature + Temperature + + + + + + + + + ASBIE + Transport Handling Unit. Goods Item + A goods item contained in this transport handling unit. + 0..n + Transport Handling Unit + Goods Item + Goods Item + Goods Item + + + + + + + + + ASBIE + Transport Handling Unit. Floor Space Measurement_ Dimension. Dimension + The floor space measurement dimension associated with this transport handling unit. + 0..1 + Transport Handling Unit + Floor Space Measurement + Dimension + Dimension + Dimension + + + + + + + + + ASBIE + Transport Handling Unit. Pallet Space Measurement_ Dimension. Dimension + The pallet space measurement dimension associated to this transport handling unit. + 0..1 + Transport Handling Unit + Pallet Space Measurement + Dimension + Dimension + Dimension + + + + + + + + + ASBIE + Transport Handling Unit. Shipment_ Document Reference. Document Reference + A reference to a shipping document associated with this transport handling unit. + 0..n + Transport Handling Unit + Shipment + Document Reference + Document Reference + Document Reference + + + + + + + + + ASBIE + Transport Handling Unit. Status + The status of this transport handling unit. + 0..n + Transport Handling Unit + Status + Status + Status + + + + + + + + + ASBIE + Transport Handling Unit. Customs Declaration + Describes identifiers or references relating to customs procedures. + 0..n + Transport Handling Unit + Customs Declaration + Customs Declaration + Customs Declaration + + + + + + + + + ASBIE + Transport Handling Unit. Referenced_ Shipment. Shipment + A shipment associated with this transport handling unit. + 0..n + Transport Handling Unit + Referenced + Shipment + Shipment + Shipment + + + + + + + + + ASBIE + Transport Handling Unit. Package + A package contained in this transport handling unit. + 0..n + Transport Handling Unit + Package + Package + Package + + + + + + + + + + + ABIE + Transport Means. Details + A class to describe a particular vehicle or vessel used for the conveyance of goods or persons. + Transport Means + Conveyance + + + + + + + + + BBIE + Transport Means. Journey Identifier. Identifier + An identifier for the regular service schedule of this means of transport. + 0..1 + Transport Means + Journey Identifier + Identifier + Identifier. Type + Voyage Number, Scheduled Conveyance Identifier (WCO ID 205), Flight Number + + + + + + + + + BBIE + Transport Means. Registration_ Nationality Identifier. Identifier + An identifier for the country in which this means of transport is registered. + 0..1 + Transport Means + Registration + Nationality Identifier + Identifier + Identifier. Type + Nationality of Means of Transport (WCO 175, 178 and 179) + LIB + + + + + + + + + BBIE + Transport Means. Registration_ Nationality. Text + Text describing the country in which this means of transport is registered. + 0..n + Transport Means + Registration + Nationality + Text + Text. Type + Flag of Vessel, Nationality of Ship + Liberia + + + + + + + + + BBIE + Transport Means. Direction Code. Code + A code signifying the direction of this means of transport. + 0..1 + Transport Means + Direction Code + Code + Code. Type + Transit Direction + North , East + + + + + + + + + BBIE + Transport Means. Transport Means Type Code. Code + A code signifying the type of this means of transport (truck, vessel, etc.). + 0..1 + Transport Means + Transport Means Type Code + Code + Code. Type + + + + + + + + + BBIE + Transport Means. Trade Service Code. Code + A code signifying the service regularly provided by the carrier operating this means of transport. + 0..1 + Transport Means + Trade Service Code + Code + Code. Type + + + + + + + + + ASBIE + Transport Means. Stowage + The location within the means of transport where goods are to be or have been stowed. + 0..1 + Transport Means + Stowage + Stowage + Stowage + + + + + + + + + ASBIE + Transport Means. Air Transport + An aircraft used for transport. + 0..1 + Transport Means + Air Transport + Air Transport + Air Transport + + + + + + + + + ASBIE + Transport Means. Road Transport + A vehicle used for road transport. + 0..1 + Transport Means + Road Transport + Road Transport + Road Transport + + + + + + + + + ASBIE + Transport Means. Rail Transport + Equipment used for rail transport. + 0..1 + Transport Means + Rail Transport + Rail Transport + Rail Transport + + + + + + + + + ASBIE + Transport Means. Maritime Transport + A vessel used for transport by water (not only by sea). + 0..1 + Transport Means + Maritime Transport + Maritime Transport + Maritime Transport + + + + + + + + + ASBIE + Transport Means. Owner_ Party. Party + The party that owns this means of transport. + 0..1 + Transport Means + Owner + Party + Party + Party + + + + + + + + + ASBIE + Transport Means. Measurement_ Dimension. Dimension + A measurable dimension (length, mass, weight, or volume) of this means of transport. + 0..n + Transport Means + Measurement + Dimension + Dimension + Dimension + + + + + + + + + + + ABIE + Transport Schedule. Details + Describes the location and schedule relating to a transport means. + Transport Schedule + + + + + + + + + BBIE + Transport Schedule. Sequence. Numeric + A number indicating the order of this status in the sequence in which statuses are to be presented. + 1 + Transport Schedule + Sequence + Numeric + Numeric. Type + + + + + + + + + BBIE + Transport Schedule. Reference Date. Date + The reference date for the transport schedule status. + 0..1 + Transport Schedule + Reference Date + Date + Date. Type + + + + + + + + + BBIE + Transport Schedule. Reference Time. Time + The reference time for the transport schedule status. + 0..1 + Transport Schedule + Reference Time + Time + Time. Type + + + + + + + + + BBIE + Transport Schedule. Reliability Percent. Percent + The reliability of the transport schedule status, expressed as a percentage. + 0..1 + Transport Schedule + Reliability Percent + Percent + Percent. Type + + + + + + + + + BBIE + Transport Schedule. Remarks. Text + Remarks related to the transport schedule status. + 0..n + Transport Schedule + Remarks + Text + Text. Type + + + + + + + + + ASBIE + Transport Schedule. Status_ Location. Location + The location for which status is reported. + 1 + Transport Schedule + Status + Location + Location + Location + + + + + + + + + ASBIE + Transport Schedule. Actual Arrival_ Transport Event. Transport Event + The actual arrival at a location. + 0..1 + Transport Schedule + Actual Arrival + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Schedule. Actual Departure_ Transport Event. Transport Event + The actual departure from a location. + 0..1 + Transport Schedule + Actual Departure + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Schedule. Estimated Departure_ Transport Event. Transport Event + An estimated departure from a specified location. + 0..1 + Transport Schedule + Estimated Departure + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Schedule. Estimated Arrival_ Transport Event. Transport Event + An estimated arrival at a specified location. + 0..1 + Transport Schedule + Estimated Arrival + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Schedule. Planned Departure_ Transport Event. Transport Event + The planned departure from a specified location. + 0..1 + Transport Schedule + Planned Departure + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Schedule. Planned Arrival_ Transport Event. Transport Event + The planned arrival at a specified location. + 0..1 + Transport Schedule + Planned Arrival + Transport Event + Transport Event + Transport Event + + + + + + + + + + + ABIE + Transportation Segment. Details + A class to describe one segment or leg in a transportation service. + Transportation Segment + + + + + + + + + BBIE + Transportation Segment. Sequence. Numeric + A number indicating the order of this segment in the sequence of transportation segments making up a transportation service. + 1 + Transportation Segment + Sequence + Numeric + Numeric. Type + 1, 2, 3, 4, etc. + + + + + + + + + BBIE + Transportation Segment. Transport Execution Plan Reference. Identifier + An identifier for the transport execution plan governing this transportation segment. + 0..1 + Transportation Segment + Transport Execution Plan Reference + Identifier + Identifier. Type + + + + + + + + + ASBIE + Transportation Segment. Transportation Service + The transportation service used in this transportation segment. + 1 + Transportation Segment + Transportation Service + Transportation Service + Transportation Service + + + + + + + + + ASBIE + Transportation Segment. Transport Service Provider_ Party. Party + The transport service provider responsible for carrying out transportation services in this transportation segment. + 1 + Transportation Segment + Transport Service Provider + Party + Party + Party + + + + + + + + + ASBIE + Transportation Segment. Referenced_ Consignment. Consignment + A consignment referenced in this transportation segment. Such a consignment may have different identifiers than the consignment identifiers being used in the transportation service agreed between the transport user and the transport service provider. + 0..1 + Transportation Segment + Referenced + Consignment + Consignment + Consignment + + + + + + + + + ASBIE + Transportation Segment. Shipment Stage + The shipment stage associated with this transportation segment. + 0..n + Transportation Segment + Shipment Stage + Shipment Stage + Shipment Stage + + + + + + + + + + + ABIE + Transportation Service. Details + A class to describe a transportation service. + Transportation Service + + + + + + + + + BBIE + Transportation Service. Transport Service Code. Code + A code signifying the extent of this transportation service (e.g., door-to-door, port-to-port). + 1 + Transportation Service + Transport Service Code + Code + Code. Type + + + + + + + + + BBIE + Transportation Service. Tariff Class Code. Code + A code signifying the tariff class applicable to this transportation service. + 0..1 + Transportation Service + Tariff Class Code + Code + Code. Type + Tariff Class Specifier + + + + + + + + + BBIE + Transportation Service. Priority. Text + The priority of this transportation service. + 0..1 + Transportation Service + Priority + Text + Text. Type + + + + + + + + + BBIE + Transportation Service. Freight Rate Class Code. Code + A code signifying the rate class for freight in this transportation service. + 0..1 + Transportation Service + Freight Rate Class Code + Code + Code. Type + Charge Basis + + + + + + + + + BBIE + Transportation Service. Transportation Service Description. Text + Text describing this transportation service. + 0..n + Transportation Service + Transportation Service Description + Text + Text. Type + + + + + + + + + BBIE + Transportation Service. Transportation Service Details URI. Identifier + The Uniform Resource Identifier (URI) of a document providing additional details regarding this transportation service. + 0..1 + Transportation Service + Transportation Service Details URI + Identifier + Identifier. Type + + + + + + + + + BBIE + Transportation Service. Nomination Date. Date + In a transport contract, the deadline date by which this transportation service has to be booked. For example, if this service is scheduled for Wednesday 16 February 2011 at 10 a.m. CET, the nomination date might be Tuesday15 February 2011. + 0..1 + Transportation Service + Nomination Date + Date + Date. Type + + + + + + + + + BBIE + Transportation Service. Nomination Time. Time + In a transport contract, the deadline time by which this transportation service has to be booked. For example, if this service is scheduled for Wednesday 16 February 2011 at 10 a.m. CET, the nomination date might be Tuesday15 February 2011 and the nomination time 4 p.m. at the latest. + 0..1 + Transportation Service + Nomination Time + Time + Time. Type + + + + + + + + + BBIE + Transportation Service. Name + The name of this transportation service. + 0..1 + Transportation Service + Name + Name + Name. Type + + + + + + + + + BBIE + Transportation Service. Sequence. Numeric + A number indicating the order of this transportation service in a sequence of transportation services. + 0..1 + Transportation Service + Sequence + Numeric + Numeric. Type + + + + + + + + + ASBIE + Transportation Service. Transport Equipment + A piece of transport equipment used in this transportation service. + 0..n + Transportation Service + Transport Equipment + Transport Equipment + Transport Equipment + + + + + + + + + ASBIE + Transportation Service. Supported_ Transport Equipment. Transport Equipment + A piece of transport equipment supported in this transportation service. + 0..n + Transportation Service + Supported + Transport Equipment + Transport Equipment + Transport Equipment + + + + + + + + + ASBIE + Transportation Service. Unsupported_ Transport Equipment. Transport Equipment + A piece of transport equipment that is not supported in this transportation service. + 0..n + Transportation Service + Unsupported + Transport Equipment + Transport Equipment + Transport Equipment + + + + + + + + + ASBIE + Transportation Service. Commodity Classification + A classification of this transportation service. + 0..n + Transportation Service + Commodity Classification + Commodity Classification + Commodity Classification + + + + + + + + + ASBIE + Transportation Service. Supported_ Commodity Classification. Commodity Classification + A classification (e.g., general cargo) for commodities that can be handled in this transportation service. + 0..n + Transportation Service + Supported + Commodity Classification + Commodity Classification + Commodity Classification + + + + + + + + + ASBIE + Transportation Service. Unsupported_ Commodity Classification. Commodity Classification + A classification for commodities that cannot be handled in this transportation service. + 0..n + Transportation Service + Unsupported + Commodity Classification + Commodity Classification + Commodity Classification + + + + + + + + + ASBIE + Transportation Service. Total Capacity_ Dimension. Dimension + The total capacity or volume available in this transportation service. + 0..1 + Transportation Service + Total Capacity + Dimension + Dimension + Dimension + + + + + + + + + ASBIE + Transportation Service. Shipment Stage + One of the stages of shipment in this transportation service. + 0..n + Transportation Service + Shipment Stage + Shipment Stage + Shipment Stage + + + + + + + + + ASBIE + Transportation Service. Transport Event + One of the transport events taking place in this transportation service. + 0..n + Transportation Service + Transport Event + Transport Event + Transport Event + + + + + + + + + ASBIE + Transportation Service. Responsible Transport Service Provider_ Party. Party + The transport service provider responsible for this transportation service. + 0..1 + Transportation Service + Responsible Transport Service Provider + Party + Party + Party + + + + + + + + + ASBIE + Transportation Service. Environmental Emission + An environmental emission resulting from this transportation service. + 0..n + Transportation Service + Environmental Emission + Environmental Emission + Environmental Emission + + + + + + + + + ASBIE + Transportation Service. Estimated Duration_ Period. Period + The estimated duration of this transportation service. + 0..1 + Transportation Service + Estimated Duration + Period + Period + Period + + + + + + + + + ASBIE + Transportation Service. Scheduled_ Service Frequency. Service Frequency + A class to specify which day of the week a transport service is operational. + 0..n + Transportation Service + Scheduled + Service Frequency + Service Frequency + Service Frequency + + + + + + + + + + + ABIE + Unstructured Price. Details + A simplified version of the Price class intended for applications such as telephone billing. + Unstructured Price + + + + + + + + + BBIE + Unstructured Price. Price Amount. Amount + The price amount. + 0..1 + Unstructured Price + Price Amount + Amount + Amount. Type + 23.45 + + + + + + + + + BBIE + Unstructured Price. Time Amount. Text + The usage time upon which the price is based. + 0..1 + Unstructured Price + Time Amount + Text + Text. Type + + + + + + + + + + + ABIE + Utility Item. Details + A class to describe the consumption of a utility product. + Utility Item + + + + + + + + + BBIE + Utility Item. Identifier + An identifier for this utility item. + 1 + Utility Item + Identifier + Identifier + Identifier. Type + 1 + + + + + + + + + BBIE + Utility Item. Subscriber Identifier. Identifier + An identifier for the subscriber to the utility. + 0..1 + Utility Item + Subscriber Identifier + Identifier + Identifier. Type + 98143211 + + + + + + + + + BBIE + Utility Item. Subscriber Type. Text + Identification of the subscriber type, expressed as text.. + 0..1 + Utility Item + Subscriber Type + Text + Text. Type + + + + + + + + + BBIE + Utility Item. Subscriber Type Code. Code + The code identifying for the service type. + 0..1 + Utility Item + Subscriber Type Code + Code + Code. Type + + + + + + + + + BBIE + Utility Item. Description. Text + Text describing the consumption product. + 0..n + Utility Item + Description + Text + Text. Type + Basis price quarter (5.761 kWh per 35,58 cents), Transport of electricity, etc. + + + + + + + + + BBIE + Utility Item. Pack Quantity. Quantity + The unit packaging quantity. + 0..1 + Utility Item + Pack Quantity + Quantity + Quantity. Type + 1 + + + + + + + + + BBIE + Utility Item. Pack Size. Numeric + The number of items in a pack. + 0..1 + Utility Item + Pack Size + Numeric + Numeric. Type + + + + + + + + + BBIE + Utility Item. Consumption Type. Text + The type of product consumed, expressed as text. + 0..1 + Utility Item + Consumption Type + Text + Text. Type + Consumption + + + + + + + + + BBIE + Utility Item. Consumption Type Code. Code + The type of product consumed, expressed as a code. + 0..1 + Utility Item + Consumption Type Code + Code + Code. Type + Consumption + + + + + + + + + BBIE + Utility Item. Current_ Charge Type. Text + Information of the actual payments type for the utility Item + 0..1 + Utility Item + Current + Charge Type + Text + Text. Type + + + + + + + + + BBIE + Utility Item. Current_ Charge Type Code. Code + Information of the actual payments type code expressed as a code + 0..1 + Utility Item + Current + Charge Type Code + Code + Code. Type + + + + + + + + + BBIE + Utility Item. One Time_ Charge Type. Text + Information about the one-time payment type in case everything is paid One time + 0..1 + Utility Item + One Time + Charge Type + Text + Text. Type + + + + + + + + + BBIE + Utility Item. One Time_ Charge Type Code. Code + Information about the one-time payment type code + 0..1 + Utility Item + One Time + Charge Type Code + Code + Code. Type + + + + + + + + + ASBIE + Utility Item. Tax Category + The tax category applicable to this utility item. + 0..1 + Utility Item + Tax Category + Tax Category + Tax Category + + + + + + + + + ASBIE + Utility Item. Contract + A contract setting forth conditions applicable to this utility item. + 0..1 + Utility Item + Contract + Contract + Contract + + + + + + + + + + + ABIE + Web Site Access. Details + A class to describe access to a web site. + Web Site Access + + + + + + + + + BBIE + Web Site Access. URI. Identifier + The Uniform Resource Identifier (URI) for this web site; i.e., its Uniform Resource Locator (URL). + 0..1 + Web Site Access + URI + Identifier + Identifier. Type + + + + + + + + + BBIE + Web Site Access. Password. Text + A password to the web site. + 1 + Web Site Access + Password + Text + Text. Type + confidence + + + + + + + + + BBIE + Web Site Access. Login. Text + Text describing login details. + 1 + Web Site Access + Login + Text + Text. Type + Utsuser + + + + + + + + + + + ABIE + Winning Party. Details + A party that is identified as the awarded by a tender result. + Winning Party + + + + + + + + + BBIE + Winning Party. Rank. Text + Indicates the rank obtained in the award. + 0..1 + Winning Party + Rank + Text + Text. Type + + + + + + + + + ASBIE + Winning Party. Party + Information about an organization, sub-organization, or individual fulfilling a role in a business process. + 1 + Winning Party + Party + Party + Party + + + + + + + + + + + ABIE + Work Phase Reference. Details + A class that refers to a phase of work. Used for instance to specify what part of the contract the billing is referring to. + Work Phase Reference + + + + + + + + + BBIE + Work Phase Reference. Identifier + An identifier for this phase of work. + 0..1 + Work Phase Reference + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Work Phase Reference. Work Phase Code. Code + A code signifying this phase of work. + 0..1 + Work Phase Reference + Work Phase Code + Code + Code. Type + + + + + + + + + BBIE + Work Phase Reference. Work Phase. Text + Text describing this phase of work. + 0..n + Work Phase Reference + Work Phase + Text + Text. Type + + + + + + + + + BBIE + Work Phase Reference. Progress Percent. Percent + The progress percentage of the work phase. + 0..1 + Work Phase Reference + Progress Percent + Percent + Percent. Type + + + + + + + + + BBIE + Work Phase Reference. Start Date. Date + The date on which this phase of work begins. + 0..1 + Work Phase Reference + Start Date + Date + Date. Type + + + + + + + + + BBIE + Work Phase Reference. End Date. Date + The date on which this phase of work ends. + 0..1 + Work Phase Reference + End Date + Date + Date. Type + + + + + + + + + ASBIE + Work Phase Reference. Work Order_ Document Reference. Document Reference + A reference to a document regarding the work order for the project in which this phase of work takes place. + 0..n + Work Phase Reference + Work Order + Document Reference + Document Reference + Document Reference + + + + + + + + +]]>http://www.w3.org/2001/XMLSchemahttp://docs.oasis-open.org/ubl/os-UBL-2.1/xsd/common/UBL-CommonBasicComponents-2.1.xsd + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +]]>http://www.w3.org/2001/XMLSchemahttp://docs.oasis-open.org/ubl/os-UBL-2.1/xsd/common/UBL-QualifiedDataTypes-2.1.xsd + + + + + + + +]]>http://www.w3.org/2001/XMLSchemahttp://docs.oasis-open.org/ubl/os-UBL-2.1/xsd/common/UBL-UnqualifiedDataTypes-2.1.xsd + + + + + + + + UBLUDT000001 + UDT + Amount. Type + 1.0 + A number of monetary units specified using a given unit of currency. + Amount + + + + + + + + UNDT000001-SC2 + SC + Amount. Currency. Identifier + The currency of the amount. + Amount Currency + Identification + Identifier + string + Reference UNECE Rec 9, using 3-letter alphabetic codes. + + + + + + + + + + UBLUDT000002 + UDT + Binary Object. Type + 1.0 + A set of finite-length sequences of binary octets. + Binary Object + binary + + + + + + + + UNDT000002-SC3 + SC + Binary Object. Mime. Code + The mime type of the binary object. + Binary Object + Mime + Code + string + + + + + + + + + + UBLUDT000003 + UDT + Graphic. Type + 1.0 + A diagram, graph, mathematical curve, or similar representation. + Graphic + binary + + + + + + + + UNDT000003-SC3 + SC + Graphic. Mime. Code + The mime type of the graphic object. + Graphic + Mime + Code + normalizedString + + + + + + + + + + UBLUDT000004 + UDT + Picture. Type + 1.0 + A diagram, graph, mathematical curve, or similar representation. + Picture + binary + + + + + + + + UNDT000004-SC3 + SC + Picture. Mime. Code + The mime type of the picture object. + Picture + Mime + Code + normalizedString + + + + + + + + + + UBLUDT000005 + UDT + Sound. Type + 1.0 + An audio representation. + Sound + binary + + + + + + + + UNDT000005-SC3 + SC + Sound. Mime. Code + The mime type of the sound object. + Sound + Mime + Code + normalizedString + + + + + + + + + + UBLUDT000006 + UDT + Video. Type + 1.0 + A video representation. + Video + binary + + + + + + + + UNDT000006-SC3 + SC + Video. Mime. Code + The mime type of the video object. + Video + Mime + Code + normalizedString + + + + + + + + + + UBLUDT000007 + UDT + Code. Type + 1.0 + A character string (letters, figures, or symbols) that for brevity and/or language independence may be used to represent or replace a definitive value or text of an attribute, together with relevant supplementary information. + Code + string + Other supplementary components in the CCT are captured as part of the token and name for the schema module containing the code list and thus, are not declared as attributes. + + + + + + + + + + UBLUDT000008 + UDT + Date Time. Type + 1.0 + A particular point in the progression of time, together with relevant supplementary information. + Date Time + string + Can be used for a date and/or time. + + + + + + + + + + UBLUDT000009 + UDT + Date. Type + 1.0 + One calendar day according the Gregorian calendar. + Date + string + + + + + + + + + + UBLUDT0000010 + UDT + Time. Type + 1.0 + An instance of time that occurs every day. + Time + string + + + + + + + + + + UBLUDT0000011 + UDT + Identifier. Type + 1.0 + A character string to identify and uniquely distinguish one instance of an object in an identification scheme from all other objects in the same scheme, together with relevant supplementary information. + Identifier + string + Other supplementary components in the CCT are captured as part of the token and name for the schema module containing the identifier list and thus, are not declared as attributes. + + + + + + + + + + UBLUDT0000012 + UDT + Indicator. Type + 1.0 + A list of two mutually exclusive Boolean values that express the only possible states of a property. + Indicator + string + + + + + + + + + + UBLUDT0000013 + UDT + Measure. Type + 1.0 + A numeric value determined by measuring an object using a specified unit of measure. + Measure + Type + decimal + + + + + + + + UNDT000013-SC2 + SC + Measure. Unit. Code + The type of unit of measure. + Measure Unit + Code + Code + normalizedString + Reference UNECE Rec. 20 and X12 355 + + + + + + + + + + UBLUDT0000014 + UDT + Numeric. Type + 1.0 + Numeric information that is assigned or is determined by calculation, counting, or sequencing. It does not require a unit of quantity or unit of measure. + Numeric + string + + + + + + + + + + UBLUDT0000015 + UDT + 1.0 + Value. Type + Numeric information that is assigned or is determined by calculation, counting, or sequencing. It does not require a unit of quantity or unit of measure. + Value + string + + + + + + + + + + UBLUDT0000016 + UDT + 1.0 + Percent. Type + Numeric information that is assigned or is determined by calculation, counting, or sequencing and is expressed as a percentage. It does not require a unit of quantity or unit of measure. + Percent + string + + + + + + + + + + UBLUDT0000017 + UDT + 1.0 + Rate. Type + A numeric expression of a rate that is assigned or is determined by calculation, counting, or sequencing. It does not require a unit of quantity or unit of measure. + Rate + string + + + + + + + + + + UBLUDT0000018 + UDT + Quantity. Type + 1.0 + A counted number of non-monetary units, possibly including a fractional part. + Quantity + decimal + + + + + + + + + + UBLUDT0000019 + UDT + Text. Type + 1.0 + A character string (i.e. a finite set of characters), generally in the form of words of a language. + Text + string + + + + + + + + + + UBLUDT0000020 + UDT + Name. Type + 1.0 + A character string that constitutes the distinctive designation of a person, place, thing or concept. + Name + string + + + + + + + + +]]>http://www.w3.org/2001/XMLSchemahttp://docs.oasis-open.org/ubl/os-UBL-2.1/xsd/common/CCTS_CCT_SchemaModule-2.1.xsd + + + + + + + + + + + + UNDT000001 + CCT + Amount. Type + 1.0 + A number of monetary units specified in a currency where the unit of the currency is explicit or implied. + Amount + decimal + + + + + + + + UNDT000001-SC2 + SC + Amount Currency. Identifier + The currency of the amount. + Amount Currency + Identification + Identifier + string + Reference UNECE Rec 9, using 3-letter alphabetic codes. + + + + + + + UNDT000001-SC3 + SC + Amount Currency. Code List Version. Identifier + The VersionID of the UN/ECE Rec9 code list. + Amount Currency + Code List Version + Identifier + string + + + + + + + + + + + + UNDT000002 + CCT + Binary Object. Type + 1.0 + A set of finite-length sequences of binary octets. + Binary Object + binary + + + + + + + + UNDT000002-SC2 + SC + Binary Object. Format. Text + The format of the binary content. + Binary Object + Format + Text + string + + + + + + + UNDT000002-SC3 + SC + Binary Object. Mime. Code + The mime type of the binary object. + Binary Object + Mime + Code + string + + + + + + + UNDT000002-SC4 + SC + Binary Object. Encoding. Code + Specifies the decoding algorithm of the binary object. + Binary Object + Encoding + Code + string + + + + + + + UNDT000002-SC5 + SC + Binary Object. Character Set. Code + The character set of the binary object if the mime type is text. + Binary Object + Character Set + Code + string + + + + + + + UNDT000002-SC6 + SC + Binary Object. Uniform Resource. Identifier + The Uniform Resource Identifier that identifies where the binary object is located. + Binary Object + Uniform Resource Identifier + Identifier + string + + + + + + + UNDT000002-SC7 + SC + Binary Object. Filename.Text + The filename of the binary object. + Binary Object + Filename + Text + string + + + + + + + + + + + + UNDT000007 + CCT + Code. Type + 1.0 + A character string (letters, figures, or symbols) that for brevity and/or languange independence may be used to represent or replace a definitive value or text of an attribute together with relevant supplementary information. + Code + string + Should not be used if the character string identifies an instance of an object class or an object in the real world, in which case the Identifier. Type should be used. + + + + + + + + UNDT000007-SC2 + SC + Code List. Identifier + The identification of a list of codes. + Code List + Identification + Identifier + string + + + + + + + UNDT000007-SC3 + SC + Code List. Agency. Identifier + An agency that maintains one or more lists of codes. + Code List + Agency + Identifier + string + Defaults to the UN/EDIFACT data element 3055 code list. + + + + + + + UNDT000007-SC4 + SC + Code List. Agency Name. Text + The name of the agency that maintains the list of codes. + Code List + Agency Name + Text + string + + + + + + + UNDT000007-SC5 + SC + Code List. Name. Text + The name of a list of codes. + Code List + Name + Text + string + + + + + + + UNDT000007-SC6 + SC + Code List. Version. Identifier + The version of the list of codes. + Code List + Version + Identifier + string + + + + + + + UNDT000007-SC7 + SC + Code. Name. Text + The textual equivalent of the code content component. + Code + Name + Text + string + + + + + + + UNDT000007-SC8 + SC + Language. Identifier + The identifier of the language used in the code name. + Language + Identification + Identifier + string + + + + + + + UNDT000007-SC9 + SC + Code List. Uniform Resource. Identifier + The Uniform Resource Identifier that identifies where the code list is located. + Code List + Uniform Resource Identifier + Identifier + string + + + + + + + UNDT000007-SC10 + SC + Code List Scheme. Uniform Resource. Identifier + The Uniform Resource Identifier that identifies where the code list scheme is located. + Code List Scheme + Uniform Resource Identifier + Identifier + string + + + + + + + + + + + + UNDT000008 + CCT + Date Time. Type + 1.0 + A particular point in the progression of time together with the relevant supplementary information. + Date Time + string + Can be used for a date and/or time. + + + + + + + + UNDT000008-SC1 + SC + Date Time. Format. Text + The format of the date time content + Date Time + Format + Text + string + + + + + + + + + + + + UNDT000011 + CCT + Identifier. Type + 1.0 + A character string to identify and distinguish uniquely, one instance of an object in an identification scheme from all other objects in the same scheme together with relevant supplementary information. + Identifier + string + + + + + + + + UNDT000011-SC2 + SC + Identification Scheme. Identifier + The identification of the identification scheme. + Identification Scheme + Identification + Identifier + string + + + + + + + UNDT000011-SC3 + SC + Identification Scheme. Name. Text + The name of the identification scheme. + Identification Scheme + Name + Text + string + + + + + + + UNDT000011-SC4 + SC + Identification Scheme Agency. Identifier + The identification of the agency that maintains the identification scheme. + Identification Scheme Agency + Identification + Identifier + string + Defaults to the UN/EDIFACT data element 3055 code list. + + + + + + + UNDT000011-SC5 + SC + Identification Scheme Agency. Name. Text + The name of the agency that maintains the identification scheme. + Identification Scheme Agency + Agency Name + Text + string + + + + + + + UNDT000011-SC6 + SC + Identification Scheme. Version. Identifier + The version of the identification scheme. + Identification Scheme + Version + Identifier + string + + + + + + + UNDT000011-SC7 + SC + Identification Scheme Data. Uniform Resource. Identifier + The Uniform Resource Identifier that identifies where the identification scheme data is located. + Identification Scheme Data + Uniform Resource Identifier + Identifier + string + + + + + + + UNDT000011-SC8 + SC + Identification Scheme. Uniform Resource. Identifier + The Uniform Resource Identifier that identifies where the identification scheme is located. + Identification Scheme + Uniform Resource Identifier + Identifier + string + + + + + + + + + + + + UNDT000012 + CCT + Indicator. Type + 1.0 + A list of two mutually exclusive Boolean values that express the only possible states of a Property. + Indicator + string + + + + + + + + UNDT000012-SC2 + SC + Indicator. Format. Text + Whether the indicator is numeric, textual or binary. + Indicator + Format + Text + string + + + + + + + + + + + + UNDT000013 + CCT + Measure. Type + 1.0 + A numeric value determined by measuring an object along with the specified unit of measure. + Measure + decimal + + + + + + + + UNDT000013-SC2 + SC + Measure Unit. Code + The type of unit of measure. + Measure Unit + Code + Code + string + Reference UNECE Rec. 20 and X12 355 + + + + + + + UNDT000013-SC3 + SC + Measure Unit. Code List Version. Identifier + The version of the measure unit code list. + Measure Unit + Code List Version + Identifier + string + + + + + + + + + + + + UNDT000014 + CCT + Numeric. Type + 1.0 + Numeric information that is assigned or is determined by calculation, counting, or sequencing. It does not require a unit of quantity or unit of measure. + Numeric + string + + + + + + + + UNDT000014-SC2 + SC + Numeric. Format. Text + Whether the number is an integer, decimal, real number or percentage. + Numeric + Format + Text + string + + + + + + + + + + + + UNDT000018 + CCT + Quantity. Type + 1.0 + A counted number of non-monetary units possibly including fractions. + Quantity + decimal + + + + + + + + UNDT000018-SC2 + SC + Quantity. Unit. Code + The unit of the quantity + Quantity + Unit Code + Code + string + + + + + + + UNDT000018-SC3 + SC + Quantity Unit. Code List. Identifier + The quantity unit code list. + Quantity Unit + Code List + Identifier + string + + + + + + + UNDT000018-SC4 + SC + Quantity Unit. Code List Agency. Identifier + The identification of the agency that maintains the quantity unit code list + Quantity Unit + Code List Agency + Identifier + string + Defaults to the UN/EDIFACT data element 3055 code list. + + + + + + + UNDT000018-SC5 + SC + Quantity Unit. Code List Agency Name. Text + The name of the agency which maintains the quantity unit code list. + Quantity Unit + Code List Agency Name + Text + string + + + + + + + + + + + + UNDT000019 + CCT + Text. Type + 1.0 + A character string (i.e. a finite set of characters) generally in the form of words of a language. + Text + string + + + + + + + + UNDT000019-SC2 + SC + Language. Identifier + The identifier of the language used in the content component. + Language + Identification + Identifier + string + + + + + + + UNDT000019-SC3 + SC + Language. Locale. Identifier + The identification of the locale of the language. + Language + Locale + Identifier + string + + + + + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-FilingListQueryMessage.xsd + + + + FilingListQueryMessage + + true + + + + + + + + + + + This is query to get a list of filings by Filer Identification, Case ID, and/or time period. + + + + + + + + + + + + + + This is query to get a list of filings by Filer Identification, Case ID, or time period. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-FilingListResponseMessage.xsd + + + + FilingListResponseMessage + + true + + + + + + + + + + + A court's response to a FilingListQueryMessage. + + + + + + + + + + + + A court's response to a FilingListQueryMessage. + + + + + + + + + + + + + A court's response to a FilingListQueryMessage. + + + + + A filing that matches the criteria in a FilingListQueryMessage. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-FilingStatusQueryMessage.xsd + + + + FilingStatusQueryMessage + + true + + + + + + + + + + + This is query to get a filing’s status by Filing Number. + + + + + + + + + + + + This is query to get a filing's status by Filer Identification, Case ID, or Filing Number. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-FilingStatusResponseMessage.xsd + + + + FilingStatusResponseMessage + + true + + + + + + + + + + + A court's response to a FilingStatusQueryMessage. + + + + + + + + + + + + + + A court's response to a FilingStatusQueryMessage. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-MessageReceiptMessage.xsd + + + + MessageReceiptMessage + + true + + + + + + + + + + + A message returned synchronously to indicate receipt by an MDE of another message. The intent is that this will serve as the synchronous reply to all MDE operations that have an additional asynchronous callback. + + + + + + + + + + + + + A message returned synchronously to indicate receipt by an MDE of another message. The intent is that this will serve as the synchronous reply to all MDE operations that have an additional asynchronous callback. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-PaymentMessage.xsd + + + + + + + + The payment submitted with a filing. The payment may consist of a fee for filing of the document(s) submitted, or for a fine or other payment due to the court. + + + + + + + + + + + + + A code for the reason why a filer does not have to pay an otherwise applicable payment. Allowable values set forth in Court Policy. Examples are in forma pauperis status granted or a fee waiver application submitted with the filing.. + + true + + + + + + Any text needed to support the exemption assertion (reference to a court order, etc.) + + + + + The payment submitted with a filing. The payment may consist of a fee for filing of the document(s) submitted, or for a fine or other payment due to the court. + + + + + Name of the payer of the FilingPayment. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-PaymentReceiptMessage.xsd + + + + + + + + A receipt to the payment submitted with a filing. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-RecordDocketingCallbackMessage.xsd + + + + RecordDocketingCallbackMessage + + true + + + + + + + + + + + The message returned from the Court Record MDE to the Filing Review MDE when the functions of entering information onto the docket or register of actions and commiting a filed document(s) to the official court record have been completed, conveying the results of those functions. + + + + + + + + The message returned from the Court Record MDE to the Filing Review MDE when the functions of entering information onto the docket or register of actions and commiting a filed document(s) to the official court record have been completed, conveying the results of those functions. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-RecordDocketingMessage.xsd + + + + RecordDocketingMessage + + true + + + + + + + + + + + Message resulting from clerk review and edit of a CoreFilingMessage. + + + + + + + + + + + + + + + + + Comments provided by the clerk to the court record system during review. + + + + + Message resulting from clerk review and edit of a CoreFilingMessage. + + + + + Instruction from the clerk to the court record to represent this case as "sealed." + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-ReviewFilingCallbackMessage.xsd + + + + ReviewFilingCallbackMessage + + true + + + + + + + + + + + The asynchronous message from the Filing Review MDE to the Filing Assembly MDE conveying information concerning the court's actions on the documents submitted for filing in a CoreFilingMessage. + + + + + + + + The asynchronous message from the Filing Review MDE to the Filing Assembly MDE conveying information concerning the court's actions on the documents submitted for filing in a CoreFilingMessage. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-ServiceInformationQueryMessage.xsd + + + + ServiceInformationQueryMessage + + true + + + + + + + + + + + A message requesting information concerning the persons entitled to services of filings in a particular court case, together with the electronic addresses and message profiles of their Filing Assembly MDEs and their physical addresses if they are not currently using a Filing Assembly MDE. + + + + + + + + + + + + A message requesting information concerning the persons entitled to services of filings in a particular court case, together with the electronic addresses and message profiles of their Filing Assembly MDEs and their physical addresses if they are not currently using a Filing Assembly MDE. + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-ServiceInformationResponseMessage.xsd + + + + ServiceInformationResponseMessage + + true + + + + + + + + + + + The response to a serviceInformationQueryMessage, setting forth the requested information. + + + + + + + + + + + + + The response to a serviceInformationQueryMessage, setting forth the requested information. + + + + + The person or organization to be served in this case + + +]]>http://www.w3.org/2001/XMLSchemafile:\C:\src\beanstalksvn\internalapps\JusticeTech\ECF\Artifacts\trunk\xsd\message\ECF-4.0-ServiceReceiptMessage.xsd + + + + ServiceReceiptMessage + + true + + + + + + + + + + + + + A synchronous response by a Filing Assembly MDE acknowledging receipt of a service message for one of its clients. + + + + + + + + + + + + A value describing the status of electronic service on a particular recipient. + + + + + + + + + + + + + A synchronous response by a Filing Assembly MDE acknowledging receipt of a service message for one of its clients. + + + + + A value describing the status of electronic service on a particular recipient. + + + + + Status of the service as determined by the system receiving the service. Allowable values defined in ECF-4.0-ValueLevelCode.gc. + + + + + +]]>http://www.w3.org/2001/XMLSchema<xml-fragment/>UTF-8http://localhost:8733/Design_Time_Addresses/Service.JusticeTech/Service1 + + + + + filing-cce6676b + + + TBD + + urn:oasis:names:tc:legalxml-courtfiling:schema:xsd:WebServicesMessaging-2.0 + + KING V. MAPLES + CZP + 2013-208435-CZP + 35764 + + + + ACS + + + + + + 0 + false + + false + + + + accepted + + + + + cce6676b-b399-4741-b597-6d19e933d79f + + + + + + + + + + + + + + +]]>BasicBasicGlobal HTTP SettingsJT-SecuritytruetruePasswordDigest \ No newline at end of file diff --git a/TrueFilingEcf4/src/main/resources/wsdl/WebServices/ECF-4.0-FilingReviewMDEService-DOC-LIT-WRAP.wsdl b/TrueFilingEcf4/src/main/resources/wsdl/WebServices/ECF-4.0-FilingReviewMDEService-DOC-LIT-WRAP.wsdl new file mode 100644 index 000000000..f9a3b5a53 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/WebServices/ECF-4.0-FilingReviewMDEService-DOC-LIT-WRAP.wsdl @@ -0,0 +1,15 @@ + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/WebServices/ECF-4.0-WebServicesProfile-Definitions-4.0.xsd b/TrueFilingEcf4/src/main/resources/wsdl/WebServices/ECF-4.0-WebServicesProfile-Definitions-4.0.xsd new file mode 100644 index 000000000..278ba0f68 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/WebServices/ECF-4.0-WebServicesProfile-Definitions-4.0.xsd @@ -0,0 +1,89 @@ + + + ECF 4.0 Web services SIP WSDL Schema + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Multi-part message type (required for conformance with WS-I Basic Profile 1.1 + + + + + + + + + + + + + Multi-part message (required for conformance with WS-I Basic Profile 1.1 + + + + + Multi-part message type (required for conformance with WS-I Basic Profile 1.1 + + + + + + + + + + + + + Multi-part message (required for conformance with WS-I Basic Profile 1.1 + + + + + Multi-part message type (required for conformance with WS-I Basic Profile 1.1 + + + + + + + + + + + + + Multi-part message (required for conformance with WS-I Basic Profile 1.1 + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/WebServices/ECF-4.0-WebServicesProfile-Definitions-v2.1-DOC-LIT-WRAP.wsdl b/TrueFilingEcf4/src/main/resources/wsdl/WebServices/ECF-4.0-WebServicesProfile-Definitions-v2.1-DOC-LIT-WRAP.wsdl new file mode 100644 index 000000000..a46236cac --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/WebServices/ECF-4.0-WebServicesProfile-Definitions-v2.1-DOC-LIT-WRAP.wsdl @@ -0,0 +1,332 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/WebServices/ECF-4.0-WebServicesProfile-Definitions-v2.1-DOC-LIT-WRAP.xsd b/TrueFilingEcf4/src/main/resources/wsdl/WebServices/ECF-4.0-WebServicesProfile-Definitions-v2.1-DOC-LIT-WRAP.xsd new file mode 100644 index 000000000..ed13b0a37 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/WebServices/ECF-4.0-WebServicesProfile-Definitions-v2.1-DOC-LIT-WRAP.xsd @@ -0,0 +1,476 @@ + + + + + + WS-SIP Types + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + + Multi-part message type (required for conformance with WS-I Basic Profile 1.1 + + + + + + + + + Multi-part message (required for conformance with WS-I Basic Profile 1.1 + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + + Multi-part message type (required for conformance with WS-I Basic Profile 1.1 + + + + + + + + + Multi-part message (required for conformance with WS-I Basic Profile 1.1 + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + + Multi-part message type (required for conformance with WS-I Basic Profile 1.1 + + + + + + + + + Multi-part message (required for conformance with WS-I Basic Profile 1.1 + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + + + + Document/literal wrapped pattern + + + + + + + + Document/literal wrapped pattern + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/WebServices/ECF-4.0-WebServicesProfile-Definitions-v2.1-RPC-LIT.wsdl b/TrueFilingEcf4/src/main/resources/wsdl/WebServices/ECF-4.0-WebServicesProfile-Definitions-v2.1-RPC-LIT.wsdl new file mode 100644 index 000000000..d706ef1db --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/WebServices/ECF-4.0-WebServicesProfile-Definitions-v2.1-RPC-LIT.wsdl @@ -0,0 +1,473 @@ + + + + + + + + + + + + + + + + + ECF 4.0 Web services SIP WSDL Schema + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Multi-part message type (required for conformance with WS-I Basic Profile 1.1 + + + + + + + + + + + + + Multi-part message (required for conformance with WS-I Basic Profile 1.1 + + + + + Multi-part message type (required for conformance with WS-I Basic Profile 1.1 + + + + + + + + + + + + + Multi-part message (required for conformance with WS-I Basic Profile 1.1 + + + + + Multi-part message type (required for conformance with WS-I Basic Profile 1.1 + + + + + + + + + + + + + Multi-part message (required for conformance with WS-I Basic Profile 1.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/WebServices/ECF-4.0-WebServicesProfile-Definitions-v2.1.wsdl b/TrueFilingEcf4/src/main/resources/wsdl/WebServices/ECF-4.0-WebServicesProfile-Definitions-v2.1.wsdl new file mode 100644 index 000000000..8888b1665 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/WebServices/ECF-4.0-WebServicesProfile-Definitions-v2.1.wsdl @@ -0,0 +1,477 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ECF 4.0 Web services SIP WSDL Schema + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Multi-part message type (required for conformance with WS-I Basic Profile 1.1 + + + + + + + + + + + + + Multi-part message (required for conformance with WS-I Basic Profile 1.1 + + + + + Multi-part message type (required for conformance with WS-I Basic Profile 1.1 + + + + + + + + + + + + + Multi-part message (required for conformance with WS-I Basic Profile 1.1 + + + + + Multi-part message type (required for conformance with WS-I Basic Profile 1.1 + + + + + + + + + + + + + Multi-part message (required for conformance with WS-I Basic Profile 1.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/WebServices/_readme.txt b/TrueFilingEcf4/src/main/resources/wsdl/WebServices/_readme.txt new file mode 100644 index 000000000..0e531aa98 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/WebServices/_readme.txt @@ -0,0 +1,17 @@ +This folder contains the WSDL files for the ECF Web Services SIP. + +Note that there are multiple files with a .WSDL extension. Some are implementation specific, some are only to define the service. + +ECF-4.0-WebServicesProfile-Definitions-v2.1.wsdl +* This is the current definition as published by the OASIS ECF TC. +* This WSDL uses a Document/Literal message format, which incidentally conflicts with the specification's section 2.5 which states: + "Each message transmission MUST identify the operation being invoked within the SOAP Body only; + the (qualified) operation name MUST be the qualified name of the first child element of the SOAP body + element, as called for in section 7.1 of the [SOAP 1.1] specification" + Document/Literal format does not include an operation name in the body. +* This is a deficiency that is already recognized by the ECF Technical Committee and a remedy is currently in process by the TC + +ECF-4.0-WebServicesProfile-Definitions-v2.1-DOC-LIT-WRAP.wsdl +* This is a modified version of the published WSDL, which is currently under review by the ECF TC for consideration as an update + to the existing 4.0 WS-SIP, and as the baseline for ECF 5.0 +* This WSDL follows a Document/Literal/Wrapped style, which satisfies section 2.5 of the Web Services SIP specification. diff --git a/TrueFilingEcf4/src/main/resources/wsdl/WebServices/dev/ECF-4.0-CourtRecordMDEService.wsdl b/TrueFilingEcf4/src/main/resources/wsdl/WebServices/dev/ECF-4.0-CourtRecordMDEService.wsdl new file mode 100644 index 000000000..0cf254350 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/WebServices/dev/ECF-4.0-CourtRecordMDEService.wsdl @@ -0,0 +1,15 @@ + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/WebServices/dev/ECF-4.0-FilingAssemblyMDEService.wsdl b/TrueFilingEcf4/src/main/resources/wsdl/WebServices/dev/ECF-4.0-FilingAssemblyMDEService.wsdl new file mode 100644 index 000000000..27bdce003 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/WebServices/dev/ECF-4.0-FilingAssemblyMDEService.wsdl @@ -0,0 +1,15 @@ + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/WebServices/dev/ECF-4.0-FilingReviewMDEService.wsdl b/TrueFilingEcf4/src/main/resources/wsdl/WebServices/dev/ECF-4.0-FilingReviewMDEService.wsdl new file mode 100644 index 000000000..79805d852 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/WebServices/dev/ECF-4.0-FilingReviewMDEService.wsdl @@ -0,0 +1,15 @@ + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/WebServices/ecf-v4.0-webservices-spec-v2.01-csd02.pdf b/TrueFilingEcf4/src/main/resources/wsdl/WebServices/ecf-v4.0-webservices-spec-v2.01-csd02.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b9e79bbb88b2ddba36cc86cc6c30fa5e36bfb146 GIT binary patch literal 427444 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

cg?OHb<^9Ej>+8Lr9 zI3~kuKZbU^(9Df0`Q5Oc3V|V8=Y20pB~9~ljm9zT;ZI-&4fgP6T^;EkhT^M~?QWgn zodI(w=`u^W%Fu{h*?9eentSfqzGH_kU0M9(2IJDXPr(}=1pI>hLl5SDI=&`C@_XdV zj^e+F1e#x=B6!aUW$rNH3*xevlTMxG&!l}IDfog4@C9Y$%uO^+R9!F?vT-^QA-Rf8 zvJ~4QuzVlc#3t_B?#oYXzX#BJXs}HZP8;VZDxQyC8}!(~o)95;08ULJCnIoSWMgDY zq&LDul$6-FaNs`h3GskjWm99;Ys`s^D8d+;s;ijii`(CzM1)bIlq#4m1Xx|Y$|VqbyP6f{1O~LvH#?x4 zR(^QR)6It5Et|JYnzZiX?q76|xw*N1F?=Mq{h>jlCrx>HEzF)hjHDC6C_a*o1ite4 z0yZm9lE4A3k3^m%HLkVk{#jI+zY;3NyrcU>4(aM(^3vS{Rp3Fv@Q`Kv!+Z8{MN=UQ?tkHLq&cqasBUmXB1kzKpcPVu}jg z1S}kx67S=Zz&J0*_<*!fXGpyW9+?Tn{g0k*&D|70ODi6k4!JLxG@uj|4FOI^v!N=4 zN2r(pG7@7-9y;YZIuo~4-De!!XM8{!3wW$}^6l^sHijs&KtHHvsw8-Yd9}IDq|Joe z(A#TG%oGMDb~|FcBxA&iT-@4uIiAcgoFe+Ts2H|bhGIBblr_OJC?DlAlJ zjLD>8Pa#Kxb7^{HNhe3kQ`@Md>5N600xzU^J*D9^PUC46C@FPU??GoM_EIX+zG{-I zsle~!B-t#N(&kiVvNYRVV6HUpHziYIkS=0zxPtk90YYv1RIOX~WE{i)+|?ibMjby* z3KMu%lq3P=D3W2C$iI)<&QcbNS;ji^Bwb6qY4SpXH!Um8@_v@(H6-Vhs`*t_6HvO7 zmIOa~I<8jmEQNxAw-`Y;6-^}{&q972_uImzW9hhxS@NGYRDfIibgHzv3q0#ciDn7h zD&2*dyKtH#Hk;s9^DYw?2~Bfkg9WVwC#I2cJ-Y*(_MM(bLZa~aQ!Ona6xX0%Y-BB= ze_yHKS)ECa{~v`4yk<1w8y@4^xGnK1GrHA;l7O%F9z`+jQA+DQ&`k~06Bg3ZzCOD% z$8E_>A^kfJY~^w1RCJ+a%D63cgs3F+9^J|(+^d$?YXO%=9@vROLG;?lTOHWO55%vy zjT#1byYJNZ;(gDv$@9$KquZqflc0uqRS;gGhELCHX^5m_)^K4=l&&K9Q`Y>RJ zLi~x(Cgl=z1r5gKf4cyOKzP6V`6j0B`Byg7U$S#^zWcY&SN$0|m?w^zZ^K)1kG-=G z&O3V;uH12MKmL=xXdU`5S8p8(=s@NeC~}Zfkw)qyBG+rvL@7z%yy(li1@zLe z+u&tlI6F)K8S^vYaqZ`N58K1_@bBoN?gX!H_r|>XNaS+ABgM)mPK7R|RUSe^~=(kg^7;*#g#B^-iT! z(y!yhI~@tF3@DCiSaanb?=N?d#R9Dr#%IQ<6F;b67?5u9 zw6(=+WseIONY%m~_lQnBsbpyMl%iV;6=g|rfn1bTO6@F-ZutJTlB_{0=mJ?#T9Or= zSYLCUnFKT?dqlW|z{X3@P`o=tR{$N{lYjhgPY;OIq_+P#{}b@Qk;4u7FJUFfe>ZyI zWp!u&FMHn}A60So|ID17vzzSM3rR>q2xP$!5&}sifj~?#(nwLc$xR5zCXj?Age2s$ z8xU_)DOxC&A{9im8WGVdA|PVCf(q8E7`0k#D~cjk1r;x7$-dv2b2eG5w*9^D`}=&} zKiK&^Gv703=9y=n=b1TkW_Qo&G)}+7E}q$WIr`PF^HS|o_(&4_+VYV;(QzKlsU`RF z#OO{vwkXEqa~2ss%U613XD0n6De;dxGwR`*=2 z2V9GLEQwpv^Lp2fJyyo7jJ+Z5mgp_ccJE_7_QZV@eKhV%*J9 z9Al!PO)^62|1zT=&h|hz{QMogeM>PhLV2gBcDA*>hwM z>#y81<$75@k_qk;JJ9@mXr$=RbN3xO87qKyXjN_uHiQd_4Dxc~oiJIiC zW%KwvM@`fftl4oz)GyifjvJy*v6J%g#c3?Vkr_48akt}7%q~aEBi^2Q9Mfx*eEP#V zxRK@sQPJEH9X)_?T>dzdkM8AV^6wCObeW6Hw-TwVd8Rv>?`EDIxEKokF+Pik>~h;m zZPxd9-Qi~BE^?Q;uW_Gn3-w$7RC&tXOwm^{_8_r|R8Jw&NIm|6dU?Ff{p7SEcLA;M zu1`yFBvbvOOg%I?v(WoKZV}&CKd!WvnqK!l>)}p|E?3JjSaW9vOLNFg8B==>sY@I^ z^N7@22Ceag_fMOIF`h#l`8ExX2MGM4PfkT+nL z%d6io`HWyK^r`qzbl~chLIo_h$hS6TZTziCxAxtvZE6Hm-*)qxM0Kd5p_gi5b_BfwQ19>?al#Co(QX$6v+?__R^W?kXu(nZ; zogM#)d`H~Lu0OI{5Byhe0P>zbqV7GX=H?F=#8NWSVg|U=_<+7?@oCWm^t7Y_xr2tK zQ2qc!Jv?#!D1{~WV+m0}z3f1F=|fZ4@U#&r6zlT#V|_G4J)MdDsJBS$7qLo@{9JqO zwd`^h@dOpFTH$S_#^OonI zXH|QjWefIRc~|Gbw!1oCzvmv7c~=|DzU#C%^~#%%yl~y#c~>v&bMeHs_3Lk|lHVCj z(Z1j%u(wn0_!P~)z1M@i_;LI3SpGNr-(va8_LpP%llCWL`GfWcWBKj&+hh4^`|4PJ zmHnz%{+;8yI9}_hjpHSbk~nTSj5r<_>#!#n9w%v@Q*P}Pce^+<3SCqv--R-%C_A>^ zezkqIU9+>;5pjiXmr;l%Z&5;0p1XzFM>q;Oqe4wv%^B~NXubZ@d=@Fpsb1Qp5S=d{ zxATejj0eP<&xn`1Jk+>o(IU3U`oJVT&ruIShvx15A~1`4+Bay{;QTy|tqmjFzJqr! zFPxMyCSlfP-3XfcnRbj%5C@c|4i!yMnmXY)5yzQ>#qoFS@5J&~?61V~r|eI~@@@8Q zvHVW^ow0n4eN8N1W?vS|8|)3Syuwit$EP@^Seo(}PL1O3i@p*V zL4lkK8FPCI4d`p2D`AvjxTLyVEu3qG1eFaW`TyjaMC;X^)-&{_s*ZRSR?mi)FOLkT zXDX{pPmAQU_08X6#o5hA>*q$`%brfjoHcm(FzwASuzdpsop))*&*J@4x{<8z3XsP`Jw?BsHTM981Ct9J^CyVOr@$ftfb zbtL=^%f~xh<^v;6bU#Tl{54CF`G&zh>e6$U&D`0rw#neCAIL?1q4{{j=XR(c_Ay$} zIg2O5n|jg(JDgEQLDX)(bEkXbMD@yw5-i?Wv{B%^TMxvHXM7{Z&!~svFIy}bpO$mp z5&0LvMPGe#(hJ53`MK(uY?Rt<}L3xZTd~Wo;=D~)OSu=pM+5x9$FAR zE$@;hqs5jK*C!@94);)d*Z{VL$+vYTK2Dq;C&vGdx#7e^f@OP;sF!=nS01n}oiXfF zHsAp=>xka}zK-bq?d_thyAGottMh($JJh*{jp?rA_z&th=<7X>h&tZ?ppKW0@9~D~ zsNYz^8$2}WQR28M%5oTaZapg5<{_QAG~G3Til``WL>?9OOw5y)M?Mj&4W1&uj_cu7 zZ()+RkPNHH@u&Cs=Ugr?Npc+_)bAO?R_T$;3UWuUyQsMT@RafK(K`zEPAHFE@1Af@ zjcvAiL32+lETAX5!n>?LYf<4L_8R+~57Hc3!1hbgs;Aq9{e)vo)J@S_qu+GqBh({& z=={)l+;xLH&HaLBu;&-viQZRx6!+L2(-E5(_xqm9;*;ZVPgtM$a#Cv26}?@(pHKdv zZ*9u?2+ata5uQqUs$WL`#QvY3^J40K1E!^oADA+5efofmMH$C4?U^49{=<;pXSHU1 zm-F(uWkYjv&mY!2e0l!%5u5*m@bZ5zjC}roHx$e+_`Klr^NRmR;rcVefwSRkI2+D} ze-qyO{}N804QIpuy-=7?cy8e(XT#ZWHk=J-!`W~)oDFBg*>EI`K=n&#U#BmfCs-jfVke`ZtiASoqAhZK!Vsb#@m@=Az^w#GcM?5cg1V zD#{E~vJFFB85gKn%9*dq=c^X;$qNqos@;6*qvF0QmK^eFs47{ka>l55tcu5>^?aJF z@HB;|D?CHt62)^i;*n^j7_nF39t!tCnUQEk#;4kB`s?0dFI1-#Co~FvoP_gW9 z0l2M3>_wRZaFe)?!hKbos>&3rc&y492g?>f2ufs=Ev%#bG7H;jPgfZS<sYHEuxI6Llc`iG_k2e6Pr3T zv8h87n>v&@IzoP@lC4o;BO>3eu*u&mWwWnQI2Jg@euu(w5#@U-J|>Qj$nT}+)F+h3XSB@2%xD{MHNWL zQ$5vznrSgLsGOhTs1aDkWyr5qC9-hl0;)yu(PZS!NBw4MQb!d?D^NOsxEv)f0Io(| zS+-i0DFZbte&r~$5NRVVKwdpn{x@WiTe;?&e7)i7|#q2WO3;8cwk8gZsc z^|BdPm2O_+(dU2e?bI$*toj>N{hW{EiQrJFILfm_lq~f$*V4lTb*2hAQnDr*jJ!!o z2aW1XwbK6-#4So2rqn(<7qj{Z_{2=537@jdVx%p~o~C|H`&BAgn^j&t;&PSWpxRs9 zrDY#-8kJ1VmVWD$9n9l0#i>EHzEIgKY_YkDN7$ORRzK^yq%doQ@QC%9V$IUlX!MtwQN2pMg|*?_5jnALd>6Kj?cm_wp{= zH!9x@+cG=`ey9hLeZU(1mbR6Va(Blcf;LfIKsudqhh z_s5#lYBS2UsG3sRK$kb0d}PU5l=xRZly$FfXim-u-_)uK-}w5v`sT$A6~3R=H#XEa zmNi$`*Jb%GsIB!)uAX1j+~k{F(NxhGs3_06ps~8F)>qx+EAursmX%j5ENfigtFQb~ zF23qIUo*~4tE+CVDECciE^Dqp<+}3h`bJ+p&NTYw)wk3&H&$0PWrZ0On5|5%nBP)c z)>tsTqOnP`8kUta+?PJSdR}9FQ+;J~hAK6FYFD#UWmMc)7ObwD@0(azSv{}9H^eu& zelBE~P(81zzP7Asuy0Zs8k<*L=9^O1QdbVvzH>*87&^1Q#ka6*v9G160`j7NmGyPa zzUF#gd394mElxmWUqfRxGUwq;1=6x6UqeOX!s=$(vAK&?H*3*mon(O%l1HP;ZD_17 zZ<*IDbrGzBAQ3Gft*)C_+fokQ`ocog*VQierB`S8Di+QK?}*ZM|FU&eyj=Fav7$-# zQd*$90n-*1uk%!o(yP%*bHzewuEuJ#T3#QltF139KT`>1X4he?F00kIG&i&~`^qZ< zQq3q+RZ-h;riQXGm)5H>Drf0Bj0QQ&E@m!xU=5CssTn(b-n`PtQ6)!Dxwb)jNPAp+ z67;CHN4r0QSDBjC!pDad?}{_psyKt2;%Dn?JJ)uJ?Ps>1ARdX*Wf(PbJepUHDz=UN z4ogBgOUNrrqjfbav(~2+8Ythc{evHkPPa21IKzp%OlO|+9^fs`2Z6Uap9X%$xexeR=O2JybpDaJ z^Cjmo;E$Z2ApcY67r-Z-UjcvZ{2KThCp7Oo<@^@-I~Y$hn6VeD#C^u|!26BQfxj?L z5;wkdd5O7txO$Q1N^;422%BYdPW_bTO`V(Cw)BiXPDYQWI-obl3_t4{1Xlw3lIThV?j`$W^(UIvv33$= zjb(GmH*axcEsdJrSh0X6R8`Dvq&c-^&2R2DeTP3)Bc)x`;ob^(V1r?2TRHfoN6*sGRiM)8xH7Z`A z;+s^wPQ_bQ{E~{_UASQ30{TkDoib*+irp%XS8-pf|34ISq&y;3|7eHoLf$Px-e~mR zK)*;zOEDA+z4Szn5-5>+Q4;m0Wa>kGDFs*YAFlU9d0f6_;f&M+{y&yxV8uKe^IZ^W@3=_WJ3e7Bia zWSQywcva3;omD-$dU|z@c~o;p&5oM=HE)|owQ;rSwS~2l%%g>TVf?~D3rCst>jGw4 zKi5nf3RNk`qWDFF78Na;zNmK5vPHKndO+p6TH0E6x4hW$PRq%FBaj@(2^0rr1Zo4< z1lF3;28(2jw9@1jtTWTrv1Yos-AtE!ZkAhGX{B|_+t|`|#5@g3L)G*)(_y!vtccBF z4Qv^Ek#nBM8~IXxBVP;J#M}6GzMp@Dq2tzkpo_HzEuih!Ud1&c$u`5*Xj@^s({{fY zD(=wsix+gCUZXeYoAtLfw_Uf#p$39|w0(wsj=kKz)qccL;JDxMoZ}V8w^7MaL!*kK zDx=m$eHEP-z1=y^S?65oT<5&Qxz%~Zh%t(d>Bd^)4HvnhT{*7Nt_IfzSDS0Q>owO` zZijoQyV~_JxIBeDfb`cE~ebWlslMm|58)CiEjllzr6 zweKc(-Q;eY++VXPdE`E2fhiY8v?>FBa_3O;m3xzY75^%=D=GIR<&LD>kCZ!daxYTu z7s`D|xnn5zAmt9EOYK0KT#D7+quhCvT;!gf+;fyWj&i?I)|NG;oQB$$llzQvXHM=h z${j|zzbJPX$Eq5K)Q;i|rG-y1BZPY;cM@gK;h=G#OGE8^YN#FK!4pbB zofNE)+F<8m*tr;XF6K$0Eqox&Ac5RN$UTHyY56B$`6oz2?z3G-Ha0Z$9#0Ov#ZyBE z_{z|G6wR_i@3Cyqxu9H}^@0*WK2U#98YmMbquAik>udf!k@m4)BVhoH?vkUWK>K937cfF>qDt2IiieUSFW zyx_yRb3&7#oz;8*@&-~nPe-{7!1XpPsTX>Ow3hd;{t=sgUy3tr8V~%#c3rIO zD*bOew7(r3w}az$$iE$0e+#9yL*v^~YCAN(9cu!}^}p^{G2j$L`#Zob2uo}Q#~@?~ zqV^$3zZJC)L7q+Ea0ncvXKe+CAY==ILlCkBVZE*Je2gn{{gXHSkSF#3o;S%_hf(V= zY8^%`X~n}ReHf(=qx3;o>}AwAj2eewrI%6bu+rTD)H;A#2TY92t% z1E_HTvp{&<%Q5f#(R$%JX=XjNascZVPe_MH>U3`?NLxYMLmim8c7;k+9K@<^7c@SK ziunbhWBfuI!pDX>_(i~%AeFP&_|RrP0W;a9z?UJfgc5iy(uF8f2OOj!mKno#DPt`aA{ZV zPlOyMmsQ}<&gY<9C8!oy%2E$n1iUzO46Du`=r>vlqNN~O=|C&1_!!7H7U?D6Dmj(_ z&j!sw89!()a0RFmG#^xjyc(nnk+vWWfLcL|!C&X&p^FKsr+auA^jU@Dh0qOG?Ja;* z(UyifOby}uc<6g7Nb1xNf2vYiIYtgk3t?S$Knur|E-wX!{&1y<)VA679^6gKGP6|6 z2^3}3IA-z(NtqUyXQ8WOuw4Qb7knN5~IuSZC+v8Hc|)7xTB2-NihgfKzc=$B@)qN2>FJV3c_d1OIgJAz zuRLLub#2|F{7Lq%6k0@&aHkPo0o@zg4B0kYmX|)(&Wlje66t+Yd{Nt>yb8q z8bM8{hho#ka)$%xS9N%T(J>b|*b|qJM@I!>yUDyud^b?b~7yG?5gMQlCoPuHG^BTCR)P$1p9)=5H(kn zN!>@x8MPK~DGyha|T-y((gciVlxy zrF-cYO7ECsO^sQ-K}j!4=AvXSZAJYOYcA}rk)UdrRyv9?W7d>92wEOy@6uSL^kLbe zx~w18XScP(y6iv?zIPT{@>@p>mG){e0v4%Jsca*)9k#!9b*=A`C#=!1o61uuho|v0I+thg3>wNac_!uZES^PqJdZo3Q!}@K&0~m-FRR$ye|d zG@q~JE2)Z@UaoJI-?Y*`ZH0W0qHxS z4?rKI&IzQSgT4WE;=BzM4f2BGLCK*0pmb0cC=YeMLRtVSQs-FkAL=}7V6P(ah=AB?E z^2Q=>tjWLjmcaeN%E0zuWy?#!5_SGHq#q#dZuhzfT-ovsFeng>dhsaR87x8m794L0 zqz4~Ra>?|a;10C$9FE`YN;`vpm4xy~Bq8r3(1}16j`Ki8!H+;EQ2(RAj8?azajiUz z!+l>+*_tLPu&i~cqF=R+g5F93YlC;nJ_L3{&aIH|iB?BoUu&_{MOX)cldW?>RkH7v zj!_=`C8f9Wu>QgXeNB}*4C_ttdb^un%b%fxk0bQ9KUk{l_7Y@xr*>0U{`b#E=n*<; zl?3}%M(Fy+NZbENnX3ZH=y!Z@9cUx)MrDuq;GHTzO#LnU*uFdc7}#ixWh+U$TURPdht6jpm4y7(HLY$*R+(EAMdnNUP6p+{U$$C) z4I6{E>ECnA6!}MxpA`0cl{Ux}b!%FEI9`V|DV!e&z&}>NHzY;krQH}lG#LIfLeX02 z^qpX1U;}h_2S^>)ZVGIMPj%bsCN*Blr43py4wLeUFiGEd*TNryK8^If@HoV{ljlyh z*5UXnq|Klufp3Ff1*!F#pl+s?9ri%~ud04^kCU%J|B!wUeNKYjrpxn++Jc4B2b3Q~ zTQ+_LHhBT#z)D;8w=P%yuY6LCgRsw*qCJ@ok}{h4NW*hOq|b(Z5dH`owJM*pS#to! z{t}WrK;K}De-k{hM8|l42h?dD8|cT3?qkzGmJCu9;Va>ODPQoKc2~zN`!h`Zm+6zQ>GH-(dDu-(B`o-&&rdzA;Qw-}hyK%U*t*?WA+HN3=(1sP?G#DCKI8X^&B!_PF*q z4bz^~o}}U0)7sONuRW_hOCz)c+Cdtrb!e~CXzfqhTXdmzNIOJhwZCYG=_2ht?LC^H zy|2Ab6Sbq-QJSP3(>|d~wd2|sG+m^N!8A)0ief4iW5gJ$7GuT5R3pZTakNlO5EH0Q zOcIl*UQ8B~sX7=t)g6% z(_&F6s%VL*5w&!ss1przjc63j^m7pqt+ZS$5liU?ah14=R*GxHHMB}B6U*pV;yQ61 ztrpA0a=J;Z5G&}{;zn^Jtr085O8SlXmG~8{6*q~S=w`7-tf6&ctyoLH73;)0xCpP#dfisHj5o%2i+rfiN|P*cw9V54~VD5UV2D8E1stv;(+)AJtF=n zUZy?bpg2g6iw@C2Pl(sW>-41fllT)oCEgNm(bM9PI7H8gzlgukUhy~aH`*r-i^KG+ zcu%}X&x!ZN`}DjxDvr{AaZDVe1LE)E@AQKBM0`Sj5XZ%FdQp5PKBGU1FT@x0lK4`5 zNiU19#n<$TI3-TeLGhjVj$Rd~MTk0drfc+uE_6G+rAO&bdRuqtF8Z79(LMBz-b3#} zhxJ%JmfqES>OJW_JwZ>PBYH2rH@&a-(fiYfda9mEpXzCP8Xecu^>jL+57GzGXZm1$ zFnz9P=~?uJo}=f`Nqwk3oW9gY=p*P`y+A*YzSBqPKc&<9Y<)J<^f~$*X46acQYQ4d z`dp@C)i|Ho^=iGEIrRm4Ei?2+y@|PrWD)H1(OXVkG$VtfR@s(bxhgY{@l4Y69Rqie7xt_c8dMY+8bM=d z67G!TuXkE$8LgysbO-KLchD2GpI)W6=>s}J-!dC>vqaXP<*_kr5^4S?N(cG(mFD>7RzsCQ8zs>(K&c7$dCQ!5gHUBmKKLgeHpYS*M-vBE0Kjp9V zzX~+nztun6zYS=d|9<~u|8}6!{&oHd{*6E*{I~dv{hNTY{G0uG{tZB>{_FgM{Of>{ z{B?ex|G&ul8lb4UGtJXigl<4W2!n(mA;@3&_>dUFl5PeNi0Nkdx|@a=>^~UdAYsuV ztTFcg5B*2440jR$ns3&>Vp4tVaP7{PZ#{BD+_?{bisGJ;JaPrKqXKM$N?qL0%(Eui26>T2j~M%0d~Lx z1PSTEJ!KE>Cwp)|*@OGYo+VOjEH#z`l|XGzno((NF=iQajYY;8V~@#YO?Z#6^ zyRp;gK^`=oMLKW1WV~t|M$L%v7SbK#1n5cQ!yZjfYmbpq^er;jA9twS8u#~vbb!U$$3FX5L7 z|A!PL{0asu`W=oWA~oa$o9hxH{^)r^ybv3#2Dc$#IAb_xxM;ZY&*__WV(u5*FCghU zw@ySmr90vCv6@&7*#X}>Ok!en@W7o3-%t2HiA{Ku@P@?wMtwvn%b%jZfk+hHCGdq~ z$v_&A3FHvY2VXl@2$TSbsmG-JaSd<~XylJIJX-lSM&L*oqGML@N+cZOBIiqCB{|j& zIvw(2cK!2WUUN(8Wn9J|5n!5s|{?#P)i$g!KDx}$XL+e|hlA3MJL zR)o&qrzQ7u-Jo^KGi*|u-JTKMW&4EZmg$f=&2z`3w@-Q|Oo!|bakc|Blcp}@4^7AI zGoBgK36s+^$7&`_X8WAysmW=7>UnPJvOh-~+WsZ_PI^{MKG5ro+iQ~^qpXb)&Xx-Xzm$bDB4m)nu3k?dzTq(*^r$Z?@^OeGd7Mxfl6$v)h}mn|5&C zV$-N)-Mim3qzpdP4kXa)GQ#+28Rsv z8ggWN51C##^1W5MB}cJWZ(4Hf_jaH@11(n_72Yn>EA%}MIs^2oqsn_ix8SJvnoVyU z4PG&FHROlgyiRkB%Ga9+MmDNz~hERVG zdVMH28y!>L4)YPmH1s|0nDt&qKJS^)y>Tpf^Ud9k7vS@j+%)A_@{Y2cwnT2a&hjzz zEjFh)j(dHk4#x>d+v`~Mj+sxQe%$1ArF2f3GaY8H*qq~VB2RYs(8ld}c zvlT7x=}tT2JuAIkj?-vU$Se@*RpL10Jy_e06jAvx7 zaSXwF8pm~(Q~Hc;1O7HUvp-9p6lK?bG)l&sk0C^9E3N%(k;OLZ_GEGCB7Klyt53} zyGd#DZA$Cr?UTNEbBt38|DdqmOtbx(Z@L5-X%+{eZp5}NpuE$ zQcDVEVFdIUUyUW5^0Z_*&v}bOv}wwD5uQN%9<<~-uXvYux`@)c%g$?_JC;)Cjm|ks zx$~xHh5Cc9#8OE$vebgZElAZ3TJF3Zrj^dShz!(L#n1>ed=Ipxh0+!+quZg;b4w@q zG+KJVhs}$x(bVC*@6%ZNoaaz~ib-pCKJeySJkI-&cFg$*bkLsb9kiTvKK9I*Yn)F! zGnTWCSw=r&G**Y@y!m41Bx1s8U#sPkbJ1tCTy-w{j#!4lzuPpX8~62EMi5EzX$147 zv6d(4C_bxc-nr&$#JXNV)S7ox_!`a0kmRMMlFdaUPj7g$Ew{{RzHZAMtFyBRs{r1v zk8zCo+$J;i2TP)hcsnc;yqz~7`DBQuYcOPgwodac59zqNDMtpho^i!`=Ph%tMCkq$ zZH6(Y8=Ys(Mq8%0!7}4M;Z3qUcbmP(K|2}kWAtYIQykp$AY+db7 z#<)ZMY4H5U{!B!SZW_ld>HRs-Yl_mk%dT9kVvI%Or>h9w_#B=yX?cmg>5loLtJL$< z^3qifuU>Ig!t(2`TJLGgYnR+}%gVWwu+kw{t*-=jYk^OWxwMEXYP2k-yM`~I8+5g^ znoi$AwCwSnv5H-N@Z^`SQ@(T7B$wTHkwz-t6>F-k+cRU$aCy9`mQGiY?ogIeNPf|p z!y34L%tSPlC2(P&18u8sUou<1g z_Ml>Kmvuj4SE{wbybMoHG!6M~!;_yQ3XPh&e0M4ByN}UZV2um*72gAEmFtf0k-6J- z%l8=8nD9LTpDN!oM9vA{A|eJNp=pZBY4!CN4&*>z@j#*NTz|94ij?r$7uwB7C33}|fk`&$QEb3X-NVeTeukNdj=9i|TJm`}s}hhTnteHuEypda*~9OyPp z^;;1iru*Fky|yR)0Z8=>Qk}FdLMp3mxj$2gA-b{tGrkzQBMi9FH^+M#ev91}W1WLv zT?9P^zXDDD3j4)_{)^tzA^)*FWi;C#t*h9ru3OIbr+Ehj+A-ySXqlkCXX)&}LZbnt zO=F;o!RMOiwQa5c#z4SaNNLk({|#@IrKSI-;GgIlrcLJlivwpYiB@jloawrC%GYb# zaOV$Pw3Rq-4_vX6{@d_@F+`Y5dn~Se#;v2+2aD<44P2vhH*kZlj*u3)26(~-;!l+?-ioV1 zKf&7ZP@i{Aviu?19CFS0W33Iy6KQ+odgLkQGp@PLbhNL<>@2vR(j2QV+uGp}`_px= zT+h86^(EA^v1snkGL4&75k0!BzHolrr1s~Aa??HYMSl@I|E2GS^@MB1U&``wmRGX% z(#z!U4S5$T^()#>JFe5Rgh^|{41q-YV;$ zKG|o4XI4>7VIQ|?)t%~Zfh2mr)_TFzb+q1k87mrV%AIkPvkqA=_}fiO)(b~DSn{bi zU!UyGhCN{opWCW;=Yzv5cd_@lRgIPI#x5iFx#@g)-_YFOX&Q3g^!Ly>?C-H&KpUf_ zlg=#U?0_Wm7`-oaRR(VRd3jD*ue&RtDXvcacI&9_GDb&z=UM9^ca`6xd*kx>8m*^w zqdud#8@pt&bvf!en#b?Ya~!_9fb@Hwh~%zD+|}FS^XhK>nZK; zvz)ijbQaP31;5fc*0E>3rn+FC0v+gLG$JtNU>dir`R8mkppV-Q>IMTR zSp9KYA22i8$=WDwjjpo+pH1T)^N!gX-Q$eD2U_Ev3Y@mJx~GwsV2^&y_R}fsGM>O7 zt~5CRb4J%QdXmu>7~N;ibkAZ>Uv{MWZbZ_Sr?6p(%}71jG7On7+m5)C0z-^eGx|E( z&m+cmn|lMJx`~ODp_YjMh_{#$~{uX%6{V0EVkURh@7 zogl7ZUU-k|#%ZTf8|i zkWA^oEThwOZ>&kUs*$>v1~P4K_p0}}E#Q8IsQAMD#E9SwvuizMV8h<-A?U^U*gHM3-fVl1CoxFq zxWQO9ZUr4Tn8@Ev(|hL%dhZ-ep^^mCnIsjPk_59tT7)7by;Bb6(tG4!Zb&bB=MK*7 z{+h-m)|c~6(;XyOM0b#2DXj^X(=`~(viF&LgOxnDAtvW3PfD;BQ<3HOgq}`>o*3BA zTBm|alOESO6ZZ3-++Yj;EP~zj+b?;Ff?E4kPie57f9AmK#y?eH_wV*Q9%ZnPe`*nW zJ`kcq&nwU?ptcWt%Kek}5l>~{y1ma+8|<{-^2mcd^gm{>UmcQ&UmbGnSBEj;T5&7c z$$n{=$$n}0IrdA#T=7Y`{iRB`<>%A zFvfn8OMagaQcnydgLDuVDI)_&E#xfu*W_#D3i*N~JVRD0v5-s^5xkK8>B>5Tn zL$W~rhJ1_sFS10wL)OW!h)u+aiilqn6rCocqVuAkk^d5$R(8dt9vOkK!b8yG8#dZckj6XejP;aSqWni9_P!c1i{$gWN93cO@6O-I9MN zxxsx#@&m~O?mfv*CG*@@B|n#}b1KO%<5RhB(!Vru{Rv44pWr+RDG9qdU&8-PSmaJ8 z_9kBD&L{r;E{^+)U7y+Y8SbaM_Uzir&F(7NRmA<}uJ?Dn&pja`*rl62Db1q4*OFfb zhJfq9D9Mly$*;>t7Ed|tjFe<5FzugYJce4~g_#4C~&X^Komj-pUO zpT+NBb4$c^;yS{K8^jIlHf5hvxOgyX8YYO;f?jy>m%= z>`!8ULZA1OIr5ZgmO_6KDeoa2@*a7g{FK}-hdav8%FoL$$*;p~zicy>$12wL=r{z3^HoF~R3+nVAZand*`(ZyB9 zRT6#NSL5Ww5T}dNleRcxoDu6qL@r?^Q7h+=oy=#5d<+-|?g3MzQobl(maoY-6hslL zNJO5ZNLOSjaur3WD^-*$DiyT~xk9OEL9PYb6`hJ6MW5mnl3n3Z1Qll$=M|TbUsVh% zMo@PPb$1jK3XlAm{IOzE{ut>I=qJb@%Wuo?%J0h`(BC48za{=Q`?YEO7HgT1%E*61 z`V#qTq;jnKzajsOEFx9JspHh-%W+?e`x=qP9f>wu}8o9#TZ&2sxYvWD=3? z70Mi-5cC@&(#P!Be>hpU#E_<2WuSDX?$zNO-5YjXsE;{ZqK{|wW%}g9Qhge$r{`&% z&`#(l&^7wZFmGB<`%+L|0!?`f^g(?N13gbmI*xEoK%>5pofrC1nvO?H0UC^_;q{?o zx1uycMp{Pm+fJrP*&^|_zR{q%9?_RDyY%YI!nzA`QCaADY9GO_nr+aHF(X0y381_ur zWaSxsW7zIODU3~z>3j;MAS1OG)rsnGPOte;e?d2)yr^$Id_`|Od`*93i=2_VM9Zp) zvV&0OM94<<5$qT33*8ZPq|YYvItccobpnqY`tB`b2xZz^^cVC^i_%{>rv5`|p&!Q5 zC57su%W#{U`rgC0^(VDNe_I=?zx!6ZY*)HJ=J|KE`*p_Y=ItxkIVWnqKB{zY9_vy= zdcUm{>=JEjT}H@G?<&LduGyxH)FaaOX?a&~4abf9diUW6`T(PaQi#dI`h2866F&D? ze~yhy{a%RIPxKcLKhs|c+bnt0H(0r-zZTY!wqMrYIJ|~78~U5!bJyMLRVp!)KwWC>go+MG_LC!40Ehb zZFs6XWO&Zn=@AoYyo{b>*ie@Z{?YYV|Jq@Lmic|h<{05Q?=rlkI)rWgF5l~pTHDb+ z6&a|7sXUxtN<@#l9 zrG71PpVHRqH?(pC(JBqGTX+fkETC;MBx<#W6h^lj(%GIXK;YA9$YN!WAy?aHDAJxX zlrsI_0lqrGHkVdYiufF0TVM(*t;AwSTL z7}}}6OvhV>PVF5-59>E!=!>+McG7T4`_N$5&KNw}IYUtU)Noe&+;Cp|(r`(;Vz{bZ zHwFx+H)PBYuX|dLbw}49ZojZA5Jqi=eTJ~IIjy)IoAMClvU$W;Sf5o1Q{4IShvLk~&7uiurpNs7HJbf;*qm(`u+3^M3 z(GHR8n@Ta#rXZB&xV*vdp%4oiiy5{yEV zlyRg-ISe&uE0q<}CjsKa^!>@Gds{PR#6}#rs~ti5GP}=}lAn+n+{w-&{l4hGiXM=v zm`5=`B{lSU6?%$DD=|jsTSx>6q!=%xxs=yk(A*uN^Eqft^}P)}ZzA1At8UqSCgTyv zxSRbVk-&TMQCEn>;a<9k>>$NRF{Fg-BRk0#$bQ^ke~DBO31q4#yU0PLBqB%p1ZhA@ zCXGm+Bub)!q)kLaQsHy0B#r$?&J1!A=`+NRlu4XOd&oniEa?7I@>x-mD2aTIy&Y=b z)KvhKKx@DGc*lO_;{&ghPn6G;i*@If%gQzBO#PH{O}U{Ws#xU{RU)VqRl2lYm40AJ zm8Ht9>r)k>uC%U2R(xQ!Hbzyhs+10^YH2P@l8NhDRC1M4I$YOxU|J?twJ4YCJY_v9 zt@5$*v8r9U$hf8}H#U>%)PdDds@K=XNM}@b%0);raVSYwRGsMQscTVZQ(mCYs?L}7 z)b)X0WLQ-7sQS=95&Ar#qp);IxdHjosoap_S^ed@KJ+@T3M!XX89wpXR#I7KzdxIa|QNZSugtI~0v0;BPm zQ$3}8g;5ws0g!=0^&I6IxB{w6DmzWo5~`P~mHH`FZ4G2pRifRx>a}u1&8fu#H&u!{ ziH^TzY(Sl=&QN8+`p_0qf)YS$SWmQKa{W43R1a;De+$$@(i!Qn`nq~lJ*FNH>l=aX z>S>+&-lpVRv_QRjiq3KfR0cXmSpFvmR#m0y{5lWvVtA#8aebzIqTVlEQCFy|>Q1Ta zmCNb|wOV~hI-^`;ekxY$Rk7+0wCYkHue+oQs!vcG!mehulUh>kQ=f+KRKjyHhw4G~ z1$alh`m#!{Ii;~{Jer{9tmeGtlIE&rSSr`ZRUYNCW`xZqM$p{S+@VkpYDQGGp&s;{ zW}>W<`A*oHAgFthi|z z_K`QOHEn1}{dE1bCRP7sZG4?vZD#8UBWo%(wdxD7T}SQ71G5^rMyY90a~iEGR?|*rNzmD$dbZfYg>J~sRr#DHseBgUJ?=8DA>AhItVm2 zX};v6zSGp&WMpxGrY<>s8HycE@l98nt~K2_Fs)pM_isoq9hsxiR`V3|@Kp0$)1&Fryi_S^JcNuJnENty zL)}$XsjL{WnP42bbT|}^>HKI`R97`cbmmoZj9#i)*Sv1#ROQX$=A`D-<_wj*tW!PM zoZXz?T&!wu-rro&T-99P+|aC+%9{^0>zg~8_bWH*E@8IPY0O2;Ms#ZKYCcYFLgj9D zh9V{PV9e@t^ND6N+YA5bpU@Rl7wKis%<2ENCtt*l3#5M0jO0Y}A$1|0MjHI$>=!Q} zT}IlEG=wyWbRB6FiPnuFjU(Md(j!eFO@DEk{&!1po4B3*7tgPdufnbh@&~xC_yAW2 zv7{N+OMsmXW`Gj-Z!#%<|A;Wmo*yH?s3T341)1k6DbDRG6s<-G^odXmC zC0pg(qD!=_(RPR~qsNS%i%3NJte}Hnzoktc)ny+s)^_?w%Me|@h?oaqe4#G70RZP^%Y&tZzI3J|6p}^?Nm1c8lKif zw2ScN>eh%h#t?tz_k6srJ_2+{*eudF==}FqZ&`=cCjl$qjU8WZ1aGlzl>(e)UsrZl8m zdiGgUA^`CSXh6;wK3nH#&5b$)V$u5fvvr)(E5wycYv$j{@R=8dq7;hbsa{< zC?OUdNUGj?O*9``#|Kh3^*fLe;TL?n1KCl2!rS{m@un@q^A@=VXq)`%82a85`^p0O zr*p3lN(GQ#Kn*yeRSzsPm0A2t~z$$hKYtw<%WB;>zHhv^nC7(Pse7R#w7kyR(Y{mrM)ytc zn?{S-h%`^%_5ARgzU<2)G3=WnzsJ5ElE%Ir@@e+fkWBWykUi`j-)#1d@B8c%HK=tDIh zUB6ADUo>QIaufFDn9w(4cCt6Q9*&F+v*zb@!8a+vU!VeQB$XD1GYtn%f{#!7g3-^yf z{~`3h#@!)1xpDByV0|*tB8}y|J+jM*h=P9giRSccMx=sNMYPB!DSPJk%xC8poGh?r z=VupZ@6SGjl$~9%=S6lEP@mn9t!6wf&^K_o?{VM5*x%>AkD4EFKOh`;lek8TnUefx! z7X>S@pZxZ!u=t-u&SW8upZ+*WMf@od{TM2CU}|FBjkC?c=r`{6kIK=`0W0|{DR>^ zb-_sCAwmDF7RX^QOfB#fW-z^i&{v?(7G|?~q~8Q1>n#*Oj=CR}amOWXy$M@!D-bHH7pU7*>>&`!mGc$W>>@(p-Ex8yiUl6*_@E%GV$)w9%uwS+aYJ7GOxousqxntl4$igB#~jW5Sp zl*?hiF&QFfa8$`hz8u!>K6~RpMCLc!iIT|%{W?#$oe0tB-@>Cg#3MF78!d~CM!)GR zW}Z%%r^hf)k7b@7$2?uaJUyOydICKCB-!;_=0vSQm^F4XYvlbu=0xp!p11!EX2ZR# zZh~1~L>@=fJ?HJeu~{b)GwX{)S$rM+FJS)=AEMrq{#KjEGERhX5;0C3 zxAxxoVaeFo32fA)w_5c#?f3DdrQUv#c-S0-yqJAuoA-bE{*q9~;acYcn}f)9S3@&E zZu51&Js?ricNN z%k?2Dew3n(f)p(x1+}P%h=|nU7g|NMf(odB%9j)Y0RgR|BzMl=+Qx9-d$%9sjdr{- z?%3n}_dIjWJ=a=u%{kXvd+(eKijQhJ1|2su{tT+8u|SSNe7@87ou>MFCUMr1snkEg zf7d=|T$*vI^lnVX80p=$8R}_&^_s*i!N1}s+WE4M$X{m8&tD=(e{gx-c}d-|JpcJR z`V~0@o2+ayr^#eJ>PfC`vXakt-@T^iIe)L=`8rKr&#n2*Jg3P>`K)U)uF1Om)%mLx zo2=7#$+$dYewZKS=j9jVx5#fTsONV1CHbA8yXN;0%**ec-%ofY z`4#ztgdUndf}=_#+vQJ?qj!81aD1n6QvMXMUH(*&QEdgWrs`NvmB>zoQ^3{wsi35i z9uCVG_cyE?f<$X}ehcI1FVg>;kXVqIm*^V$(2@a zG!26-!4}cEJ=iXJ?AfemC67HPd#xt2*Ls1G|I4}KAKN0`L*4=2^-rw(-hWEncl{IV zzWbk8_l$pH-S_+x>%Ny9Rg@@{)$w=#uenXUYSFto2ae(8%T6X?HXp-l!0KkzF+Bb| zt>nFWJX2%7l5ca5;e9Fk6K2{mynSYue4B6#Z>QNJ--aK<`^dasZ$;*L8)QxP{ff-< z-jcR`zasOzSJ^oPGsGdh}i2)AeQIYwxM2)6-WS<1yNowz8iLxS!^G)AoD0j7sE|7=K4DVKR-AU2kUH z_haVYNao*cnSZlQc9Coj7oyM>^hTg&%$*(GumWOowmn%zVAz2(Rge!uJrk?+YQLCz`@#id>4GbwuzW&UdY4B{xs9x6CAdqlnU`d@orr$M5E z9#%=eOYb77?kh~5tU*+chm(RoTd0|X1kx!|7y2z*8f6tw1&d;3E za7)7r1$Q>w+wfq+ujJUxq@ws1Irg9bWXOP%)QdW`lV`^5%tg@_bSv}?G zlXYR{)XYhG2;GNsPm$^Kmaa-INo~s+Cb&Aag-IkQxy_Q9_l0^t>xh*dmD?P)5`I(VXLPVKGp3p)`wC}U zc&qrx5NGt-T755hr=mzm{!jE_7T8%cMrlPmMLBlL(Tysjn4F}XU`2edtgY6in7kbR zKE+gJ%{<{xs14<+{)&m>+EKbv2zM){7Jw(fsQ{}%ZU5%5O4kqJPZd*Zk-SA`s8Hwf znW5eZ>X=HyuS7<1E@<2|MJ*NipTg+{E``Hgq~tc}2Jkl{KLz>urbOTGlF`$fFZ6noO^C9{(k}pu>GO^6#sh)!K!5N{9bnp_m58SAHd%V*2 zML27r*MRNdv`@Y)*b_Y0qw*6q&}$VFyP;nK$AewG40H zeuGRV*hn$e2W{IyuYaDMr+o(>u;T4@y<4J|QBKg`$zIj&NS-M8jB*miN!f=cPEoX- zpo>&K%!@TVCit@QgBy~~h5lD7?MZx*JYDGLxN5qh8w))GoDDvy7!E+Osv${vBzu6^`2v5OQ3eBQMAWPTqc4NrGq)px7gn5577I- zkChY52iGbm(H#C)ijq|d6_vIlz;=|bO*Ym3dOb=93!tw6HzK(jdOkQ1Y@d*98T6w) z?ZGazHVLi&TTyzHT&xJa)pN8BQoG7@2M5AGz_o|re5_b|AlXr@+SiR1T&%HguVO^5 zrL`lVr$f(E6q(WZyhtYBQViyERXaFMwbbrHW?al!iYG5sDZg2n^ zUW6W{rK#hPxf?tQ4b#z9L#C>wZIPnciq4m5^F;4g*!ha&X+o#)u}1FSMCJ^x>g@Xn z_ExOjrYrnl4tYMm_H(kg=Kn&a6U`}|ucg62==IP`z^TYr#(b4O45tL_3Fg%d{%&_C zr8=j)gM1MhinwYwcpWk|;Mt(xJH8C+f31-?l0BTX&0HyXCwlhPEYrRtvza+%jM9!; zL|!GQXnvMGu#CGz0<)W9vL*Dj;6x-xCVwrGm*^~z7!Y(;I_NJ}dODa4J`L``8e0W- z;8)p!WT7BIH1!8(;dSRF_vn0|+%BB^RkJNb|3K(niiyK;R=}A8_E$_cgK<7$0eUYC9j!`s6lKMnt6?mIsq5yiXqO?lst>E);nxU+OVP}D zB_5=%we)lycIf4`)iQ&NkL!BocWRB=#o8}$pQ7+JlPpz~b%=77QMv-`3BMZLqL}Q9 zOn))~hfpFBm7`Ob8Q&d}Md_7i0Cl9Q1y z0+s(~MWOqGjlnY3IVE5dRz#PAt-x30s^#k2LhJt~I*vJXpwnlg)w+f>TUl$(1-JT@ zn6^16a%2FvN>NvLL6NRk6GOsc@USABl`5H734bO0!*CA6ISgl|8?LBp-Na!ySv z)K%^E)1C*xikQ~Y3YC=Egd9tI=F_(M+9RQh$@%m}>ykCY80gvB9;?qyzcoMB(KpjT z{Y3y{I)U2S4D%Rxt>&@XC*;~k$g7Pcn~H`SW(Tku&Jo2#v8Q!CFRR&QTB>xS*rQ*u zb5${WfofLo)w=E#)J$8X{9qt5htW9%nIXDoaoizuja84}D01l_y$Z?0)Up!#K5!*9 z-Ul8==MY+WfYR$ca@BQ|ZlbPDw0|p-TfI(QfhUIec4D6+o)eeq8h#a5tx~>}c7yIl zPa}=@qYISdYe!G9j<`8+)W4UZ_rQ9AruKEg#3#z3~;TVsVTkQ_sGw!&`&6e#U++&&r+1Sly1sf3x}z9 zJa`Q_T2b=V>pCLZav7IQXl8$Hc`zKATd8p*^k%~@LuX8L zTY`OSY8crD8QdofHn=(3hHJPDW z$1douF)OiIt-0Fom*ZWnj}*1lY^>Kaw&6@&uR>>o-N7ALdpGn{zXAaVs=TZ>wDf{_ zG-sOlUU%X_IK0i6xY)~!4yj8qaTu&tG)JHx0aqeZ1TKJ644n;j2Y0~V4ZQ-K3hq<1 z{V9D7ydJ!OS`Hx71x_FELGS^vhSK$5C7cRcUcrc0sD~u_LSF!Vf%=B@+IzmvYbRsX z<6{rh{w~2+zh&Lk18q-%SF#lP_wS7`3(9MaFS|ct!s{c zMXAs=?>U*xk8aZ0xn_TuCHR@5c=)5>8~8165XE-`z65WegA!TsQKU=_&QIw~)%V*TKFTPpk+cs+O)cq8-gT<|5C1qP%`1z%H4ZdVLDD+XZF zfMel5s+hV%F@bylCyh+1d7Aqz$nT-_VsN3Nh3~dPqanE-&g*F24BZ{tfeqo5Lr+A0 z99TnL5m-p+K_q_yodJ5ymmp86&4Tj{r5)gW0_Ric$Dp&3&jBZZ0l1%D%mGKknGRN> z?IMttCr5z3*Nwq9;7kLDf^ESHa4<+8lULCa-?lU9-7_GiY2W^*D7_l`Me1z^-3O%Q zb{pEt;M|~?$rxoYUg_Z=d^;QcccP~~{9f=UaqYwC*#O=O2m3q5A~?Xc1(ZI7hI1)h ziU#4$ky)r{k$0@3E&7w| z;k-`0o1wcyJFp>~a_EW3j{|FHVFVUZdJxH+&zWpHlrqsgdk2G=u2Mls<>^HIf2FoO|K4+pu{&PKzX z)YTro@$%5UkeNhX4^!_3@K!jCmt*V#?qjD4D18WR=Tf>94e(tlH21pQKyW8m0w2Gs zy+rrIwHMclpV#(fR(-7Ie8KJDHHx;GVgd{d*ctxC;H!!T`2?IKGWJgRUjAB2+kpeX z$?y+Aqahdt?%>+d&<{WdU>eR`=pRCN0dIhFD_9NwJD3E$&c{LciCdtLQhFSmgK!Q* zuZKokkOI4c3Gg~(E&$Jfb1v8kZ6|>(;hYBg{$_%g!|4TI<)nNQeaUs|lWL;!D|B#}1(O~>dIkTX@K&EZ& zmwMlob>lL8^($77yq%T|L00UR_u$;4aBgRnxDyV$U^^IkG^G!NP0{u$xPm8HBe?3J znu)rzfHQ`@?G`k2151^YVvm++1^Ru#KqMPbi+{u99c_P#J)QIG{{p{XV_)1;(REc! zhTvlOU-6u1slOjv(_2^Uioq?~D!aztx1_F-V7ads4ewLB%kKxVVTGbyNMF_=xk&d! z*6$fhu>%=EB2G)U)AFT^!aiC!2oC&^_KQuV)U8rX_629_E;yJFxlmP!vo0T9orfH4a33v!ByTHWB;FrZwzLX{Robs@7Nq)TFSUgV8nBwe}RTq{O%I@F8-bj z8Vcxj6&^Se%U5w#FYhhhE8-Z*5c*cVD&#(co2I4V1~d;-J;}Z3-$;#j(5h*Q8TelM zpkj*q65;Y#!$d|zFvYGp9HO){@E2gW)m|rc&GEZt?(^(cOiuCsLknM|FXg6}Xz=$y zu1;(gesg4I(U$_~!HnqJa{ExvI@pETgW31;XbD^SZjLsSH%1vcf z#Otx1dKZHAZL1i2sY2_~mZD&N%R&*E>rAYazq>Cm0C-bZR__TB_hwV!c}E$w+Pl zv$Yq2e==_A%iDf@d8eX1dRXP!Q;=VQtzL!hM`>^9X3(rxWu#Q+A?W|`Rz-6g+Ed_Z z|3sdaze9~Xz&v`o1exoh_n~1Q^=|ZU1;F_f`6bXF`+oW7`>s~o8GGF?v^~08x1E)? zQ_x(D^SzxzeUqr1(utJzW9;6fG#d?DJPrSA?oRB19^!poX?qozg1^!u zqi_Iv6ZA}Qr}uexleS-J_b7Om_h-HDXLljf4BM`t_Bn7G$L~U1Pt*t|*lmeU==d#* z%hVfVpH#{5*zFcdFQS%3aMptCR)U`3HTeG?VuwAH9qh-NUfjsFH$v}+-tTFywbb}2 zEjbKUvoFBgQ?x(qqnN@!-74DixMKQAO7DT+6=cU`$9S8dhnA$UMmQ2{vqwl=?=uOt z7txYoUNah|(f(;ZKZFyo&jkGB7i1@;`-f$s;a+4qJI&a)=#weQIs0@Ur!r={(lYM6 zT>$n1xmy)fa1#Bx zj`pv{J`LcLZ=C^8hVv_A=3$dHipi#m?g*TZ;ADYiaE=GB^lS|8~T`D_%padG1(fKkD#*@!v`JSqL_LH4>^v$UrZa`LjSeSx06;mA7xs5FG`o8^K0m@ zu_swE8DNLU;jg9_&AdGQ{nq)IoxocS+QPNynGQV=s~)eIETgppC|$=@bN#&L=ZmGj8!)EaMw?t;#58MV)lX|FY=euIUG6@e3{ap za@7EAej2!qe%(*JG=p;z_#t=>d7vCR0o?%2#9(j*coYpUdObd}pbNR`OXyi#)yvNX zim6-BMxIYq`u6xNjpSW$_Ck}5#oAiRjF4hha?hiAo@;|Yw_&!ri1BKJ_qM^?+Yonm z>wPL}WR?sopwEUbpsu%Q`3vA)^v|WWuX@_+0biu9E08QB;--R?vHzDdIvUqEsD{iz zN@v`ybh;D_sFzhlMhBvacj_D~vDADtT!^nWg?=>74~mJ{^93`GR;9LoFSZ4$0o(Ff4o--o8qoIM@%}I>9PzGB(*w=&a-d_3-3Wkz}=*cui@E zh^cy?4IHeP7{Z8j)vJ+MB^j@Ivk#?SY=APbE~o_RHFJaPHRGT=fLkDB67Jso)AYouSt&CR%}S z!Wl?uf3OhF4Cn}YA2=Rd0DleieDGed1S|r3qB+BJj((uC8@-zVy%h~3DDAEs*~O^* z5U>XR$Ix4}H1KU$uXOS>=(UsNe1Asbw&9C6b5H*2T9FZGDkh28X_z z&0Z2tHu6)^xrKLkQ@+i<@5%}KgDZHhy%P;DQ@X^Df<6aN3<0a*ToKzuwH2cIZ2wf9 zYtKX5KCnAFpMYKuW_vp$-wMuT^i1K}_q+xCXi~a_9a$sfuZRB?{FmtU7;kN_hf)jn zgLAH@{V2p1Q$3s18xwCU%7`odHS*0U{VDPlw5m6?^oI6UYL84GTD!;hh(6AQe=4=) z)wWiov`bv0^4p_%xuUyEG5L*_3f)@s1DvM5CEn-tZG@l*Jl*?0bO~=MG)G%=-dotJ zX!9v;4_#P$m)e}Yt%W}aT;MI^5zb_=i!TM6fiu7*NWOsux_Q6#?E&|J!@!S`%=4ZD zr;@h42k!BAZ_x7-@72h>3a;hajr6MzI0W2JA3s6n88rVA{uXegk7(%2@RLqRj`!L? zi~YaGCTn~V^DaT->D<&53MTACt9g>85felO$Lf__b; zRTtqE!;vIwg5!T!uOhYONJ(QNPEU7`zejLzr=oID0in{;^|&{W8!xNGR>UCqsCoY zb?Gouc-g;KRho(`sxH6E3>kU(uqrdE^3rjm%>>nZasQr$riIKLwfetKO@_%b4NW7H zt>1)~Hu_gMO@yU1`>W8$|F@vl-l0 zdG%$LW*4~cXO|DZ(i{elR7r8dfZPi=$vU)9dUHx!7aqg;o=O<*S^IZiV$73W!5 z4^yDmlUWa=7#o__rr4C4uBNByYbwlOGu%{~aprn6#Y{6Z%xv?Z@qf#CyKi$M&!0p8 z{#qifziqGoX`pp{o*{jZb7nuoU%+H8rM-#Fx8n0=f6i^;&yAMIb#gwgmp>Pb^m+nL47>GGkKkEd2}UX*%{^AoA(IWJDVU;;V6DBl)|^h=x{Pp#y< zDD^VuCsMC)UYz=aNH0pgD&L+E>DM?vo?69uQR;QhPo!3JUYvSEq@PH=Dc=^0^dC7t zo_dS(qSPABPo&mzUYvScq!<4ei|Bu7m|!OVRTg=No-a(j8(U^wY?<}3Wj4f?c~9zD zn0i09&j+zxHpX_@6x(HUY>^LRi+mJYPTVjiB#Uk5ci)@cAvLm+0C$U9##uoV# z7TFbBw#a9H!6Gxw9P_YQ^nbO;zStuBV~ZS!E%JG6k%O^C4q=hQ zu|>X!J?6{UGJlRO^Hpq_ukn~8v3Cjswo$?k*r@cke8GnOCUNLW)b!M|zWVbnJjwFIaW;)YbB%S3gl8(GZ z(%If3=?2~+=^V94I@eny-OyVko#!o*ZsaYJZtN|RZlV@R=X;B!kMkBu7kH0J|G--& z-PBtqeY|>1x|z36x_NA$7O{O=#&-D^?P&s&@ z8#FUTrbO)3)ATa~qjx3KpOyY`^6qF|Oihp0L-iNlhM1Zjy(iS!$h{v^)1wcdRBmHT zP3QN9TAL20OvaEpVZw$#sqwCu0{Ln zT6CbUMW5HT=wMxoB=!>>5*=g#(==!*>%kL)6Pb%;<(6H_Dqx(^U(E}T87*1;*mFz} z{28iu9d&LU)u)a+56badpars4Y|WJix#|#C97g&JB)?Q|2@c8?>Mb+O5B_&snfqj2 zv&bwr?@0W7C6N;)@)L!Lc8StNw?yxRzVDpOS}D5jg?hP;dgVJR_@hv>px&yZ*3?mJ z>!`P(bX6J!?ZtWlR;<^+G!8a!g|_65KwEJSGVj%s$q%$mGlM@E zE0QyV_v!^?FsE_NYEl??0Hy4;f8NCjslj$1B+90@J>U*79 z?+;!Rsrv(2DFk!m`)aszf>pwu6Kt*1wJo+qD!4PK7Jr!=JS>t6f`ukCSQIQWIlxahkvtpR7u;u>2eX6OriJKu!L;Nrzq|97-{t%Qs10umZw+*}U@g_# zOq;3qp=^Xck+7eJ&8>QVB5WC+pe;-cHjmlewxw-r+uIJdqwQpGvQz9W_I5kf-f4en zXV`n}y>^bBXCJnY*vIVS_6hr>ecJxcK4)LDf3U0VTlQ_c-hN;|v|H^bqHC}H%pR}@ zU0YY|e(1WpAGxz!PuI(x>-xBUuD=`L2Du?_n7hJV<*s&P-F5Ci+$1;I-Q=dYTixw$ zs+;ESbk*)|H^a?zv)p}dwwvSTx(D3?x6mziOWiZ>S@(PQf_vG$=H75?+}m!Qd*5wx zAG_^tm)q+OxWn!%_l>I!ZI}wP!kn;S*eEEIc#p9{wmiD;yjS4KEMJW-ZBDnzbwnqA<#g8boKc_tXGiBo=SLSt716+Ga5OX;9_g=E{MM$eE;(A-mNE`)Y#S4ZmD|fWoNP~) z{BWv0)i`^)J>7)%Mth@4*_-XnCN0*##bnsq>}@8~{@niDWZ66H9VU{|_@&9V(`5u3 z$f(?7a%5!gHM#bFd%tODe`9}R^6W$QA=5}k>JigeM(Z)tL`Lj!lP{z8ggH(|?nzT1 zqxZD=fsEkqOj8-f=gjdkk}sKNGMaxd&F$;5nQ3eH+x_Mw`?>wxv=c9AYubw^6q{n# z)pa!|yKb(V>EOy;xjDu4a6L?kct=ljs(45*)6w;Iz0GOjDSb?-cuPNXx_C@~(@DH$ zfH^}vXOJlq?-^n`iw6xeUEBya!kp?U)Tc-j=xQ@rg~bGCTg?WUJ_-Bfdqc-}PATfFa1bFO$`wdo^Xc(*xE zJaLBUE8aNMoG%_Z%k&ekyw6-9o;llGDBd~8{8&76uIVpc`k=W;JavJo5N};*E*6hn zYzBzeE;T=K%iJO12Zmc9yT}E zO02Xp<0VpBn~4%FMdm*wV%nPPC2HE4{}t+Av`v!e>0oY<2r4m?!;WD`b7NQGz=tf#Y{Hg`(&1?HC$fuX6ED9ki>NhCHfcS|(pnduUd`DTVhWm9uc)FNtO zW=5@|R_0d{p+#nvL}^=duS9A)bDuKpYn^ChA$G!IHtSD1$+vIm-nCAtTj-%5lJH47xlhnq*DN{RJH zCEE9zvGxRek}a{N_K^LBz03Z}{@OlZ=iA@fr|dKK_x1%c=9_k{U1#67o9q_5-Tq1P z*Vu?d>mIUw5Iaa0A_7H`EPxBVDB%P; zz3NuGx9mDOZ*UvkhiAPmFIFx&pg^$nZYR^jnsW!TA82sI=e z7GB}DW-X7BQ96pE+^BI>5H*Vmqt;P}=(OmJ=**~lbXIgubY65p)IS;!4T^?D!=e$< zXz6PeIn9vM5@fT0Y-Y)3NwStBUxj3<6qzbbrph2wWs<3~$Vd?xDVvPcfQ*zwM#?24 zH6$bDk&zmaks6bcnvjw5$wj4Jky#y^DpF?BJxZd@=ROu%t_>#cI27%1y&L9JnkpViB0lJU@&LjhLB?J7B4A6}X(47oWP6qf98K4Il;4CsgPcp#S zWPn~|fOE(Iy~zOQk^%aV0nQ@>^d$qFPX_2m2DpF>aG}J0OY>u5xj#{S5m8)0}mgPY`$UF*mv!F5}O|r zo8m)pY_|KWV{^G{=bm#fxj(qq-5>3{a$fH~h-33p_nG_Lec`@#N5e$u!i>7uJV9df zDq`~lVsnJV<}?4t*z6c}in>JIq8?GNs87`Ie`520V)Osw*i0k>lO_A>A!hD>R&(a@ zQ0@O8KeO6*m9mX3J7>l^L}_rPvPV}cJ7b%{AWN39wvn<#wkS&|HzI2)g^*Ax*-C}7 zWT{B;J2RzpZ})fq_%1!ZGY@CppXI#g<9y!l=b6{%!$5b@3ZMaKp{v_hz+3t{30*e> zGLVjf^c&(G6w6e^2k01uScHyoh$ZM4kB$T2C@u6M=(rUf1RZtIA<&WV6A$m{9v0{x zKGHpWqI)<(_Yg?;5KQ-QnC=16f9OzJ54sih%?kf!MSQcU->k@QR@65unr_h*HR~MB zW}RQHfoL-f0I1KXWdIIw0n&*O8_)n6;sZ0l2<5di{r_GK=_^Q^0cE-uPL_5ko1rri zuU9R!FkS6;K&3fIy$#U&u_MBu+=tq}ydqxH6(UVh0Ca5tgU%eHX+ruQ1tVSYjzVg* zgti6(&-tPpfrl&{EbM>TxuA`Swl^gT$U#?k+t>AiHoBH=|EBw2(7yeUZoT|wy;`-< z0kq!#uQsOd*wA<6Sm`@W(4~UEMerkCkgiDL*PT1qmtFwCPy4PFUV1IS?+H@*iD)L7 z7=xG(Y%m6R4wc^;s4n8Dbk~0NEAo-9LutK1~m(J^cY$5sBQHUfjtOzJfYe(?# zeQ!4-kti4)KZ+~Khe!zog*LF^)j%v31l2(3VZDJ32V!wb*ssN3Fd`~UbnRt?r5*+wMX3V!eV}2037-#!{ND%R8s1yKYXquOWAx_3GZu zH}prDwbfJPilp#`6FVZek3@0QrhDwME1`y*vy~6nHJ(=CsF`jefMpct%`O^El;wM+ zb;g0$b}z~)TTsm`_CvvR68sK-&-Fce*b zs@3k~X4qo6vTy0UGc#j;cZ8+YbfxBj^$`KczV{86!jqTFI>LGjHu>0Wxm)*^F;5gM zM@P4oV*+@hhu{b(@be-H!H5fBL@snS1!2gDbTA?{oO9oO@-)#WOUyKs_sZ`0m9}#} z|NZ%+{zHr-Xmgl6#?p9VE|pJZ@)}J1aRAqxjV&%ai=|B)l^B=Ms_{x>_N~=vxvM$9 zwb)O8dep9|XcnU#1Ea15WR8x~%=c(9qiub(k%t{-gzKVh&; zae~Rxn|41GgkP8mA4XK{oBv~=#cIlFN3)qlWd%Ztd*x*BTgHUYYpJ)3)#P3Ty(kPA z@y`M7yKTMEt$K7=hr3Y4jomxyO4RT5Q$t5ZIGX ze#)&8d)hC%pgRYmf-Oiz?D|3lW`$y|ev=iO%(li=rU?Ej7(jWij)NW$0dNouusEow zvI>JhIzb^PXdd_;b1VRrb&gP7=i3xY)fb!;k2P}T1UB}=q*F}5Ym%%LYl|%ocMuy>3L^Oc^GbGS<)c?ss}7KW2xqfLl||@ zCMO~)I=*c7T2fx8dcH~Y2FX~X0q{MbHGgMOE21H0(gR$vwg8ZJeq#Owlwk=ey@@8hEiZw#8CAn`#p0h5AF~MzDCjnX^`! zQM+uYl2_Dk=&r2$hB0uj7~p(k?2!3aDtrVZK7c$lC`ce#L1r`~bVEa-7!Zj64ODQ@ z#>fMMtsqe#0(t=jX%+0q^+?`!!F&DydEe!kz9yq|Q(c8TU5B?I3$2+0iG6Fvk-KD&%)Dwmo*jo3ycGQRKxH}itR@KHU-U!q zXNMRQ1Tn_`D`V`?k`eSzNQ`Uq2nBKG7iKjLIO-5-a5yYZSw)2g91!~W0Tq>KMKB`r zKQcBpdf-5zi`;E&Vz$~H@i*Q7kv;W36-Pz|vZI?R*KBPNs#+PJ(}L2a^+n4HV$CO~ z^fj9Ip;)X6tL~!Odv*o@(HA%ZICebpmn)yyAsPg<3sBWq84?TqM~Lb3B~ z(l?jx-?G+r&}x?3!4e!8{WfmeyPjY@l2^_)w`WOW_&KI$H2px*1toc@Ff0B&Zmc-n zX=e}8TlI`-cxn2%fin!8>|6MV&jXG0d55cy-}m#(C;>9$x4$#JW<7sMFLGQVM7DN+ z$3{D;(j)@&ZMW?!S8ODq$J#VEw@??$Eykp=SBymsfxms|ha(2Dgy@sL3Hi2C3 zJf;|!L$%Kb#*sURO=Z?gJ?I)eE7Qrx*3ILcC_Q0Wzu0@5P4TjmyytE`X-l6d$qIEL+u}Q^Y>x_e z6Snzv4-N!OAGLAkh;>Y;sHv(ccCirAyJ+Y-YH{EguZ_#0iIX-6&P2vcaZKvi5Wqz) zTD;;zuDbO6X7+kGM4wEEKGCc6`OU0`P9Nm2qmKpA)5(`&=Sf~mA5{>KRRyssN_6c5 z=^$DW2hxgQME-wdY?7eF7y1Z!5r|}0Cm)QixgJK(+(<)LT?a2u&?gY&Rn+i=)s6@r zp}+aGy#tgbO|v#SZOpW7+qUg#+wPvWZQHh|ZQHhO+rB;T`@QG?&ROfb|6O;jv-Zx) z*cnmzL`GERuDz?Gf@mzm{VfDq`V+jkHuIgXP@h$bDFQKsA|s!ywUm9`J#`@^NW%=- zKa2K)4GD!kSO3F?e?;%uY?EG<;cJPFkM@&a!_;N{{s?1YN~Jc0w2U#L1apeeSz9(5 zAUExe)X|`$6dQI9Jx_+C?<%)I8%rFcO+xovO!9H;oAK@$4|3Z{>w-! z4A09t)z#`_gN%n@#k+4l7V7a50>5%3wY>t!49o;kGdR4^s8&JB)b7R6HO z8qWpi4T0vwxqHKRjAhW&8d#aD#HTlUXk2aoT8hJ;6w`c6{m{LLvXanOjl)W|;TH*C zSrzy`M@@<2es&}4Wt>!`)BTlJ{b?i}#eq6;M$lbV%5w8KelS}uKMlzN^|F2}?DwVt zzO5pM8#OQPwvlV$Jj0Iej*0<;Q}ptEUEHCC%i?BzGi#9=MT%O!+F_Vy6VGO;*02IL?YzN1Gnp>Vee5^~_g z+GCfNrAAgtY)ge7HFBp$0yQxYL<_ zyp6=jnUfKnx zAAR~`?g}z^Xu@iO<(X3IKyi6N4n}NBZv_yj1|$R6b-`4DfqPFx$(_@%Uy^u>uZ#z@ zqv^?wB6&?j0t|SjmpSRJEarMrAc%YJr|}x6d^&596d4jcC0grU zI$;hXo~P!HIsNcUJ>GxoP{p^2q9AXgikviFv!|E*y3DKV7B5hnGI$)#XJKrbA83>E zzQJehj!DC6YtR6LQ$0jryGFML5Fwc&6@-B3cfV_z4wBrh$KA?Xv`bcaFGLpR{_BY(9^Ig@$RT#6d@s8au6ptfTvT`ZUi?=!`2dlvBhH z5fc=MK+h{j{FRTxQ~P!z#01QxbG#Ap$EY{&^e1=(GKe-w9E6XdX6qPq#DQA~$S8D$ zg(g_22M=6GfZmu(kkfp{koBj>dL9*w>~hTIf~l!bqPetgKf3n|8{l@@H>@r&TtG)} zFmHgdZzNqHkeo2ZXLgo$O;4K}KgoOyV#A`amYHC0NwV=uXn8fvh{tYSF<{~1#_Y2S z2E6Sz%!(;Gz!LFYpH;&(=>*my<;GgjZ9fl6+rdUHu{JjEp7<(>M+2wJT(syAI_bH4 z6P0g}r_oepi1Vs2xG}H$ER3Dz)==Y`X;d4Imq6E;B|mKWMwr>~Wst3QMr|^Zmn_)M zW(Kl;`t*z$sv7`?5jrv_?&wK<$dZSnXom*&{xz zzI~KZay--BAZe3Bl&yHcyKMYPG0H{wR$$C3m4H0l5)W8;ax2~6-3qN>yoV7dNHlvM zzQJiVOx^t}HRUBQ8X!3QbIzrtz$fND^z(9ecY|Y~fTTOz;5FM$p@~*B;MOY(i7^q< zIN&$x=PBRwq1zNptnaq@&x13t=Y;|6(MJzl)Vs`0wVx``M+c!`)vT~Z{{5vo<)84b zB_#yPk6<<7Pv^A-7g97-cCwx)*CgW8{CzCsj2k_lDu;djSZj1a^2oWu1BZEOv9+nz`Zt}Y&PCjN$_|!QUJ0Gt z=3`x;F4noXnJ2zF0|v?bY7_P5D|G!Q6>>DTkG03u9^%A3O6U?Ar(V5a&A^@H&xk7J zEUx$c{j|`;-J|Nl?ip^XtHwRErED(&bR2OC6B9i3Fi@M}#OUliw_LBSX|Hycr#VBw zgE{g&MN58e4^J+jB_V)ntspnC38S}Gmuf@W+6wW3S8=KX3JNDYG1>X83zw&f{RLVv zp^h|^>vZO=9^CPD_&;mQe^v{~y$_Vd^nf1SeBz);aX>*q8d@6I+1ncGTKq*?>6t-6 z(lId5;nL#%MXTe|s^hXS(Q4x2GN|Lyv#@>J)$qHe@6Eg_P<6-|3{av!t}-eQ~%N9AGv?(KQ{Y||Br>fWdG>;r|n04>tL2ZxpYH$E|30pNbpKEFKk{EAU}gO3>5tss-uTP=BFSLKn%)f{H@8JJBCjO<+{~s6r+2`MT{A>FB%W?nF zd4Ie4Ya;&73HSFQ{hy}WADqAO{txOOr!jx^^zZc_?w__l<)1_B5C0F%%F6a%ynkdE zzS{oq|Jm;k{b%a`slUqqm>GW#)V~bM$w?z@`pe$XmPYuOuDzk4p}v)YA&sP=rLn!q z*YslI=7xg&XQ^~f*NpBq>!tk>cVXWRNu|fQmmVkHn$4%O$O$V$G3W*3_rfL7KIm z5m<3Cds8SKp|Z-&HfIp5U~>u24PE!qmk&BaOm94{bXi*(Oyp_c;&8 z*m|*Wzimb00#Y+rjTP_O*Z_P(I$~qaQEo$FU?2ZO{zs0arYbcnJm$n&Sxgg^n zaULutnT``*0fEIgLcGeyE6yeP_WBHd+o7Z2R?w1TGalPR$po2$?7CcDECQ_Dw9PN?M@6F*4*j5&VUw zA5tTsLC#B@&W4%ybNX9_DRJI%PY}RE!gcgd%ijxWg}*#4Ssf$pRT;oL;DO2}TIo#- z%~z0AaUBCpcaIi>z$g9kk`oT!xqLH*Y=Ut4?fks`t&-Rj*Z;He#fU~=LEDss z9H4izd{kTNY?Su&vk{srA4raW>$>&o;x2RfeBIXE?XoEU65mY%SOwomHQmWy+F0B5 zoqU%Ml)eLKkqJzYZ3qsl8*UmR{mIc9)L0P3n$I3Y`Ga`E0VEfr39rSEBNxmW*VUIK z7sdIOr7JBL<_R|!^Mgf$?H%^L8;9;2;M3_8%nKeUKdh}UY^4A#FoA6sULY^H9;rV* zIp6Rnq%LeADl}X$93lZ;Y$vEJYyc|MbTA#PAL{q&H^pE-);?!ZUdeArxuLn}b8kqZ z{(^mkqWqG91|RfyK_8+p-aeu*{(QlHq=meYdgS>xon1Pp;jF-cxP^S^pA0_&bc1_! zSa+I+dkpoff3_Mdxr!g=)!*jN#-VhZw_{e4oZf34vy1>^nxqwQs^uB>855IBRLF#8X;wSzx>QDC*b$Ai;! zzk2~TbSd?fU*Ug(w1Ly$y~FRIT+z4rK0&I$l~48H1R*a4HbFHISO#GQbLfzKvYq)W z!)XU-2DfG-RU3~WEPA4HAH?yw+;Z!?+y>kMX$p3R^W=R4pvLYLu|~V5 z*Vu;XMQRGYQ+z@?Hn+yQR(^uIX5VpZx@`8jgK7$KMp%iNg~oboo#OizLjo+TvTE~r zN}2>2_JQN5;v{{Oxx8c9%za04(Jqb?7dQTOYkT9Jy%H&)Zg61EM|U7&6iXk zkH4<0?F2Chopk-wCx1Qv;XBcRxQS_HPIUS1K~J2Mxjc+HzQt)omB1K1&^^1hW<%9* zur?O$tuwT~+Rg{rw1<%`NkCpHW3CxVcXgLuQUSUe zIceJ>wLjiIE_Z>rW<%L#bu@yXrIa5fo(lZh*tR>M$&bdBsq4O`{sn&WSF<0KQ+4=V zY)`^QlazIvfcIT|JXh^{>;6TRvxC%MEIs_UDbOSiU{M*e+%FrHU;Y;dKKFHdqMs=L zk}B8D$Z2t<^3n5!R>4D3?3&NSZwDG+Mn3d1W!+=={0qAu@r(#ca>u&%5_$O%S&XZ; z)!ZW}WRq$AFQvMH;!XTsu>kXn7_*HXJ1v{HHeQ><4D*xX=@=oMqP2c^G@`CBq@5;y zKW)$APF^02&p?af5Z(M^qWI-66M22hb-g61`&zlhT$aU}{O)jO9+8*7P(*gIh&>nW zgP2}u^3h!UtijNdHy)8){@`aUx$)3>pe##}lZp0P*j*KOG?E^rlwTxbd@&%t7;buJ zpJ;b|Qmn)~QH{VY9|Uk8SDgZQG%aCP%5z^mv|8G3zP8$>-a6Uy$AL5Arib~{cnT)* z(?oPC*p|G^P-lWQA>O!6+=sujJGUk=roL_W1{Ol0rKi%H@P6*)3)Yk4aZ@uBvy;=~ zb4sG2_ke(bJbb@;yuH7ExVf`-l5c8ZV>7xhUsfi~DV>K6yQAEtanl{sTOhqqKbyb&&C@(xvlFHqh!KLDk9F?aH-aQrS-zsQ2yxiS_bnUqj*jkm zVx<_KA`2_e#?*C)C{V=p3#}HXFOwq=WB@mRF|A^X++JJK(C730Fj9t^t*db zyCP=APumFPZv?z9*ZfYA3llN^6cygQkT$jy3sr4#4Fdye`g;DbF-BX-xskmlp1kfF z78G$6jAX3t*{?eIFG}jHDghTT5OAQ*E~TJfNy#-?OS%#dvsra8OcbgElnO;j*``!? zm{dtsmsD*_U1Hz~T);BMw3Jl)%6XIn8by?zbttYs;`G|fIXPrfxJ=amlIB$m9xWU_ z8`H}<_mxsIYFrHvs{q0?^Z-@VLiyNsl??IZw+xU1cC-9J9mGl%0%gV6{4q=w5hEIO zb2tg}qaxIvCHN^`p4wA1rB1h&E}rq$Z`SAR%nW38Wr5=|c*?6~H_CsIJOv{Ysj`;{ z2_zm!Q7n~rwQtS5`C9zYr4JQGZ1C4r?Y4wYk{&U%v9W)}s3X;3p`QM3 zS`tieqO~aQePfWp3D}}EFd+XEyU^KW*h%Km0RK8v2fs_St$IT;6oC}Fs2Dz4)-JUaAf%c|iCB&)~G+(7PXrY?UA>{@AC zGt4DNYcKIgM?b%MrfI23kP*BsU^b^UO>$OzqK$odwtH6hr#!`SrC0*=RV5_5uB zns~mHe1Q}}ffP`I6vRxSim7~49hu|_nOzc@0X02IiUx6AYpd!45Tpcb^y)~oxmYf)bC0#%xS|D7<@J5VD{0PW2%)0Wa=T9B1&bLd}SBQ z(HT5Fi>dHw>*V`(<$ij#Y7x0IwWq|LeeSKjtAZ~;`JaN6L6@=u z0=6_c)|{GNX&dKaQn+|yu=KrTI;u70ANpPv@sj7Z=*W{*8YKLbB|t2(ZPQ2_#kQDb zE3C2|q#U(;93*sdn8a|Oy7+6jJc^7mt1ghqYVVv;RFf7HU)4~M?KHxSiahutNy!%y zzRQ$vw8)oC)|thpXh^)YVTT?<^dFCmAtxs#Xiw40r-jM`Vj%2u;_EWU-wt3G(RfY2vYSJ*$|2?E;?^YX@rDc4@Q+e) zi@Eg0!vm;{K{*qGG-xFg;r%6bW-&}jcr{LM0Lfxjlg86Uxpsh^j;N0Mea8(~mJ{0d z`eKlq7*qOL{-L!zFS?U76KW(<^(`r;XVH}7tdYv}ddz_)Q+1#R!y4it1~nNR>8;IjcN^joq|Bnz)7 zZ)vhM7%pC(*q?x()R~tIx)f?2up9iU$`B%juvoX8>YLXX+Wl4q9C9>#Uk`$sPQ|S1 zvQxQ5UBiWTX4+zBOP_XVy5{bY?5=gBJYhj2*9D*qNHFPVSAnVQa-mO;kIUNw8%R+d zIzy3(KM=LUd}#C>rVU>R1Lan0X{dtMdJ^Qp(9M< z9IBM0wDWE5ZmFvHg{eM-Tz$Jdd*+bR?gyx04K z)(7oGhnrIHTxomWe`7T?3F*BVr;=rxg4J(Pl@$gBT%gY+FTHQ8V89%FI=b3`K1FOK zIHioJGFGW3s!gbaASvZzjF&herE8DgFg&E1Rw_KfRQG|wVvMGEUxzu2sTQV6eVJv+ zX*p_{hW2DIv<}~|Sokh^i2Oy;Ud&!~4iB^%z7n`vX>F||hoDuT9j6;+JM1~Z9YO1G zdXTSYRT4JjL9$PF9>QuqTk-4nNu}%Edaubex-+r|iSwnRNx&kV_$KT|jyKHq_qt08 zR;o54?+LiGTYNmiOu}5RpjcUFsa~7kM7P8IHKAn!JdM#A&RDqGxd~V%+lYnH%}FJO z2MiP`^<(m5mIvSLeu(%Q6S2Z~oRKo8WsFE0Um8-Kp+7)8h&`w}a;=VF>ue&^<#y+W zR^&1mi#C{X=63fh2B#)UNofu}<;b;S* zs=9q3Ku{G&%m>lJKU9Hhjb`gXq>UV-o56kY{z?Fo4+mT6Oa6q$^n(zG!EZ=GNu)66 z6J3-n1$wgTeF^GJg%!U7-{nkD4$vjH-dg^R*rY#Vj5!gGrRIE(y%uRi7m1*Rmqu73dI3)wein!&J>Dg=(;o0 zbe%YFLE-BjyDcd`ucmHOIBos3sq)aAKt(6s&lNx0*|U--K#IKMvAJwml*-jZj( zom-wCOM(io8F+rLh4J*S$66HH?BYHEmK;zN5HX&ZWPLobE=U1nK{HO5acPQ7wzeSe z-8DqZ%u)@{!b`;sQ3xvHsumse)xck6MLGt58qSq>*SAAVnjL5?+9$0jj8LvC z>b|ObVBD5gAZZO~3J7Wnh!5E!9>i`cf$N3Z5(GOs9dgG=AGn``aMzup#+|^H!^}~t z(Ft;aWdMGvR4M}q|Gs|5O7#99<#6!yl z0aGjoBNIYDm+3*8%S+E+AdSLs3~_yYd<}7&A0C0Vl|W~?#@d;TVMUx@L_%o7*sz#; z{SZK!H=2<6^}p&Aqr#&4GmAnF1azH;%FjRwr0v>hjU@1)iW<0PD--a$N?F7E3aXB z+vz-w!gb(f_r}2fugu-C*B}qi>getmOfBwM6>{Pp#N@H}y&Ocgb(HdA)=o zMYKIwbo84z_^qTjXX5V8 z<>Bt$UOg#_V@25BKJ7z}lR$HbFiH3XyD+)98YU|w%(^8lbC0(7O!)HjWCw8_)4c|# z+ykC5gjC^q(no-I%wYqTARqviCmftb>2aVMo?VOkgij^Ko28&zye_v6Owv@~XeV_D zO(`pN0fA?k$-OZ=tc3>@8wU!7xwXKi z&93ly=f%ONE+*i2iSEYxSNjS~aS?g@YGv>k%i$UhCIa?GR;iIWRr5BBbg;>R(Js|P zD8}e7IFHbb018pYAHL{PQ){U3SgSB7vjK5(T1z3~<0go3+g8H5BU zga!KK?87AqqE19K`xSyuL?JeAr8eQpLQe(xS`Z;*MUm)U*Ed2!ul)^}-BPsfZ~faS zG~_cgYsF#ia;6%Bg2GEi-d71w(qLo4!lVL3TA3T%8-OssV%2P zGHZ->H&hAWd)wFF4gyLT0~n0kU8z|bcUL`VJl!r&vpCdik}Pj9dlgJdV|!}}6uLm9Xr zwdMptOaa>ihjDRff3?&y(hiTx?!oW&QaQAqbTPy2pb(jbipQ}%2{pneB`UIB(+N{I zLm&%L#{%)!QQ$42ZYH zMT<$RCi<%kKVo1!SBRFlQ)~BPod&muWNnkhy1qE8ano!rRtGBQBA2hJf)s4V8QtLV zcYI62{au3_jqkwX_ExzTyo*5ZYLR&nhH_RaBmUQorve-AG?Sj5fox>XKga8Xm}FB7 z$8uq?U9Ee4?^hQ)&QFC4X-bEOG8~A?$oT&@k}~SgH(y2KxCRKPKRL zNDgrX{O|FZi=_BOun9Uw^#;>f8y-UR2QyXN!o?c7qI|Aoh*uTAAAVqQ|! z78y1rSvAZ;H{onp7VZ1{$(+{_5XOu;u0X`5fODKnF3<-!u7JQVN%SO+)fAU&T8xWu25Mv7Mgf8iJ}sso$3kdBCdIFs89d+8Q-bJ~8LZjg~@_a3Ra zM_Ve8wnkwOUuay$kU3WJNpzT2T`2G>qIM@~{dm47_9#&*I%Kwc-gmWZs~$1oLr&5y zV@4~jNA{}@Wl%hVZ;~t*dNod%`MQflLqN5;e{BC`{N+T=L(I6n+vPr?e*n_by1ZkB za!yJTHUA)Y0KxVCx@KBJVTv}8(2rWyrC^k=Ds)WG3pY(Oab=2|db{U9@%EI_=|!970dWf?mfvcXS>wlb z#C}5Rx(9WNL>d9r(%R*-srNP-B{^kgN z&nn|8%cSi|4&gA^N(#GvBtx*R`Nym^(V?lbxu|Nq6t9()U8}M^PuLo}WRWAGn@?fg zYe2OO*_xY7JH~ai%;;1f*+id|Y^%l%7Rb{;qRH1+=L;LdomEn>9F4Tr^%v!cE6d9J zN=+LRf!3A)f`C&qDPo-2_(AvE93xtm{VqPt{V|>1QKMpV@20JoQSYV@qC^8Hj0iL$ zXOV3)BgDzvIll<|n=c-qK;XY4m~_8h#vrec8Xsv;?Qd3{N!Ztw%TDJQx)Wg+@^ z<=jdnBftf+Mdf76+9MeexuFvBDw~95=HO@`;o?AX&O^m5)f#NO{+}}G*R@8-2c1Zs z0(PaGFqBVazVLl!q`HgMRA*X_JR7aci%TeYIIC&?n$j1~_nJIsv(`-QZno zm&|RV`Cgf2=kPaq&8>$@x*i}z4dpr>XddIK->|{6nuo}G7m#UZ)3LK$%hbbEZh}5Q z^9t@w?C5U%7yL}y&3?@;Tj86rfX|5v>6!zXsYehQwMkSbnULrFFsrKHDj{pE$M!Ct zcXmji$1Z=((`1f9udXz6g{K*O%P>1G>GXGXAT5DhwWbBQCo6b4E?Fpv_HEn}0lF6? zJ0JCppO7{+RcAP#_g* zkJWu@qfp`VQna$+WqhuuCNiZQ?2Ep4QZ<=ssc)9^F|}Kp{xB-*7Jw;2ASCjx>SNeK zUG5*VU3}5tnDD^upr9WqPF1VEQ4)b$5IRydPbV88WuFh?CEdsD+h)r?qDDT+Ji~ux zOS`O989zWIVuwsV&&=+$P$&s+VLG}i{Q`WI2zED+px|(i}OHNN|q!z@I{$rD5)oE_-J%wx{=Kgp?PPpp>??T|b0@`=SQ!vp!}a@6_DYI6tMIJ~>h|$dwg{TFC#`*nxTDsq zhYVF%|G*e9xa_NbU`dCN zp>j|rXCh&3L53~DOrA#nZqZoII3=`#_)E{{hUeL4j;R^;jAwa!mYmCm)+wh|o+$?* zL_%>y!!Y5HK>R{I3#t`TXPGHV&8G}%%_M)Nvh%62ptbA6V@i+PVJz^;*%g1SyKpSr zHbhe|F*aPOb=YWpn_yK=*J~zYe8W@>z}y(53E0@9V#nxUeNB}C?H^|4g4h&z_%pP@ zc)16h_k<1_DAJu!eBWOocm@Z|0YS4 z8KB(2g>iqWIu4~pG7oiz*S4Fc8b}+iH|N*a);TEKjU#P#<&NW)w&U2S2Din^kC7lC9h#Y3P* za}Z&thPv@I3FvPi;K00~qKIz8qtatIe{6qvzj+^iy3=h7n!+N=u!b4JGbe_bc|Pum zlf6Dd2QMb6S@(2=fL~uZEWGCcN@nL=G~+YUlaBHpYKEP<9_iUATNYrO3mCk8bz2@*26fi% z?!~q<98QQ!>SSr`UH6b)ybIRe&OPPXy^!!+eB{4gRE{dDPh`5}*$9oLjS3{jUwBmM z{H`|gT1gBhdc;(6E-3dpYJKy&`7MBD74dG?IA>vT^oG!j&jXoir|Yrf#*+bc&tYTo zS{&~1!I0*cx^mHe)BBcnv8g7B-Auo6eF`H`)OPhWos_iD@z!fT(ODP4v*DiC_G~zb zx0-~x_H`lg2?HhLC(Vn-x;B1qFj827e{k*`+)33$TPo#4Jq}Vhdo3A&%mwH+Ek!z# z$r-RKY)_bh83Z>f;EBBt3MG1(v@Fc8i_P>p6$`71(u$)6HN&ukik#S(Oz(P=e9*wK z^tl^pDwUKKA)OY;8h>SQqGG&*bwSjWw6{6#jO%e%*8Rf*{p^B1k^vae4hyBKFy!u~ z<;6}4XM$SoothUC{lzmY=NQaWmW$&0>gNiuDk=XOY$;yC87~;xdh*xJjgNd~yC(~K45SPz2x53MIGnupA zUPtcQ+ozI}w+<{Ts-_#C+1jK9$39PbLKa+HqMMbgYSthZ2Ozr%?x>8;i1xeV!)XbR zxIXB|ic(G2SI&>hv2Y$~5eM$=d8Xg-vv&dCZ3f8$D2AO~zVU?D~FZD_(PpUf@`ami}+=aaLeB z?99)rLcLB0mf@@X2On*^qay%Vr;{5D5^bJGXAG~4m`AK~_L_FmE9uYgxnhcw{cmq( zdH5$g1lr=MC^8x>R%K(VSk5ZfXJ_V{$ZeD>WiGbrbI&4e+L9b`#$z7_T?`x%L_VvF zedlPd6(6r7&5P}m!fkgWQ8EYTGksheYMlkUvuowki68{j`Jfib`yLI}GAhr9RkQ-t z2HU@0<2lQ;?k2R;W2GAl3H?L{4OR`pD9&#oHG)od92vq{i#0; zK*gc&OhF$yJwPGz+6*F(!_qZ+q&^Ej+ClGg9@ah0A3lIK*4*xnR+BWj4=ba1qBY7K z-A+S^wq`{-GoKj`r|EgjH~aEnGS!c6w>t5alU%~vY?|&v>>q~Y;|jx)c&>b}le|L! zbRl>!l$89nR_&HvufwDhf%Y8+JH2Y0hxzPgD@Q5q64Y6^>8vb9>qT-eF|vLl(6YaW zNpNH|zv(-Sn`77qItIa@)6AdQIG;Q@G!Da^)``6y&@Z@zJz6;1xtOe_M}f|Dd=$G3 z+^-uCx(p|XtZ;wSdG(-1D5siFuT?c>QM}uXgB4x|Wwf5PZH-19Se3O;T3;PQ$*}~l*+4vvHvl*F@Tp`bHq4#p=_)&* zNSn2|O8QfHm)Kc;cAktgl!g3?*oA<=qJa%n5Hle!mc)&nDiBr85BQDf1Dj8Zi$4ws zAu2C8_p<;vpFqezI~Va-3bC7_YD$WHe2%|fNOG~Cdm;V|NxW!w_VH8u^u__@T>@q5G$GK}+ zQ4x&Bds|dkQDdphHz*iLlW!rw-|mR94FK}XFl}p}Sn7^sl5AT@>b3O6?E-yYXLjDt zy-UK|OhV$al*9(<$x6x4tmngs(T36J9%?RV7}EibAU)K_UJf?aArL~vzJCRnSi{&O zo+2q>8-Q)52bWfIAEn3d;ioJWIA^DpuZhNp+iiGPpP(S6S0AC64g z0y|fCRYR0iqdEpZ8Hc-SkhLs-8Hy)^jHlBuCG&f=(L`I>6Q<@J0t82^bAbqikNw8) zP8;NqviBkb@6Z}M6T<1ju&8*=U`BQR?01LaB_v#$Z{ys| zr4@j7-Mrv_K7)C{3BZzS+x9bka+5M5k@X2tCQwMMYM0)N1>q&!X8(FJ)-R7Wm;Pn@n&j)dE_E6?cB< zU0vL|(U_iCoATB{NvT$WAq1&>pa$va=Y2RxQ5VY@!U5cwUReV{&@XE@@ zjJXY3xb_l7@KU~0-v9|FR5KI9Mb4rW2o8pq4WP)vO$UC9cjS{fRS#|8C~I7!wgPr! zu0)V^xSqIiRJJ|xT38**W9BNsN?~{BU_M~lT*h+${7|K1;`SIOM2>^pu7{LFE<#%k z@;#G)`B{&LZpz46H^|LTdS8!u$P&xQW{qD=-1Hutyt!LWWN6Y%;hn#Qe@2cD8OkQD z>vyh|Judc~L`U!wSP?Czx6t;tVS+Z-#XBphvJbN5cpPncuiGKw}RJ4&GuZ8}JFTA7Crt9=p(J@xa{5 z(h^TypXSv3@O6%{waFfk20hXc1Y!WmE>nM+itFI*p!rnx3T@%-A)zx31bZ?W>CzlY zw|2Ga@-h-jrld6Y9bb-V=Gp{Ce!>{c{T6QsCA{M0_NKWVZ@m`^xv+WvE#q9j_Be}* z+}`RmIO-te2XKel4wV1>H=^+1kzU7QXbHGw}eXs$C2bVsGm{3zT z+RG^sMyC2CsDFi*eHVEYeTUNrEG^coX-IF})7=bE&{aI%aPGX3ijcmr+wO3w)@}Ja zh#<@W0Ox1#T0s@NQG~zhF#lrLjM{NJym3s~jy3V4bHxb!b061TibnESDnIW%+zwOp z`UyA!c|$n%R|-*ggQBs(%yvaLh8|c~-;Kg!7psl5P3r!aOHI$M7^GfYV?{HP{$Xg? zn0S{FsG9#QGJECRL^0i0h^4__p^c7E5@mQ3V@eAOUce`yK_kC@N`bwRigGg3ZJ{ zG@%9YG|o@R9?8w6YYN(SYr^H(XX)t%4FuhI-e*l)aC|2>PxWNy`rO+@Jsy)EU!|s!OCwfXIU6Go z#E~^FI$z=`QU$%`h|1jEUI?P}>r%i=p+%sN^b1B+-K2OMsripS?_#uu9jygKQKSPJ)JW; zvg-nFZK(Zx^oa?FeYrQ_ut-_QbTtBxwJ<(NU%5Mnr?}DXnoz^${q-tH8q01)1ooKh z=w1z|z4|Gx3|bywuIc9d<7&eO5@QC!T5=G0^i$^$3wmZ_#r%1=fnmO8yiTvCAuHCbHzs-;`#NiZpTZ&9QuXr3;k$(s)q4XnG* zxsf(zz>;iK*l;Tezt}AT*zkW4hmhIWmP?-&RJH&9ohkVX=|_&e);&9$lg)5&Kz-_? zJrDm}i3qwyt|n_agEfMDudLeEJX{*07@W(q1n`s^owmh$WJ#z z!g3lF1)>a!${*)Iw3HGbEI3Yp6FNEgVLw zJPq(F=cdPLf*%vi*zf3gIhF4b9 zGikXAK{jAjjmt{t1Cr$J8GuSo_C&;pQXv6V<)xuBmk;89nF71zd~BW8!v<2qb=v!J zgn|G&muFwnF9_o#t@SSd?CTG)Wc^qx_B zIDmm@VSZ5vQ$pl-SyLF^Gdv;k0eXY(bMwi3(=;J7h>NcE}yD zWQF5(Chc6`)=%kEn?%x7;yAck#iA-j5Qvr+KK(DI6N&ezt%3?E>dO1hr|czi7<*1W zWK3+aTCOdzuYb_!kH+Zn5e7SUV!ZS}J=!g|aH^gnM@Ic%Id@t!ZE6!>K-J#wq**B& zQ}|CF{1ZR*e-G_oq-AAg{jbmtR$2x&=Kt=bGj|tv1)+rpHU}$`3|>(ZV0d``7SkGD zk~0Z#sN-mVDoOxALhslBURboLZ}{MXSQ>yMJAjZt;jO~i2tVO@!GSDEbBA_%eq`e^ z;O_uVgh#JEmYiI`{uJ5VeEhif+&tt;FFIM!Dw57%cQ_Z76dVU&cbGusa@Ls*&7AME z5D(7HL`#lg!=Iju_~dsFO_H+c8RaNaD4*#sDYi9y#Q zzo_%|*SVlZgwpMx(T~w{H6}`Iiv+j;PBq3n9i@$p#|b#1fSmT#u!D()j=3^a8BhV5n#1ACw=3EvABZoZxMocI3n@Y%ub`d&Z%NbIr9EgMw??X- zzh$VL%u{ao$W!V5d)Sg8>gl}}&iiW}Ei|wN<_K_}69^5B z&DKBK-urP#Ksad9fW`>3iu6U0hpz7L33j1Aag>jg$DrFli*IiDjvn>a5nx~VdN*0i zv`vSuxl$!fPYQj4hee_T*oR|Gil!^Yr(td&>0_4f@=GvM!yo+B0Hok@h~usn0sUzq zGzGBe$Q}Jt|Yk0S6)l52w{oEV!(UOx?YJI zCLF1&8Aa?6*)^e2mqPS<`0tl{3U>&h)f2oD0e7U%oXt6vT*of#;}Do49&~A{cOY4V zoH+U7;f9Px4XF2f$>Lo(bu&-Mx1aH+tjOnO{X=26E?%kBw#8^nMHJEbe$qMRuw#6- z)cJ=w@IrY==Q<=W_O_w86?<4~K~cP}`qRcxgm&@N;6<_`PI>o(Q`+!Km1vXubQ*i} ztj*Nlrwb|DQE%hhhFB>c@+Of&7kAsC+mpzs1xC3qz?;RWedcUsWomvIvndJQn25^K z3+Fh~8L?vDxCZ2zK()(!53j`xb!LEXn;L{a78*K%P{YgJ2Zfu)SIZ6ZfT0nrpgdnj z?u7l^7m>Ud;_cSj2)~c)-I%3~W&Axr33AZr<45**GT8krw#2H;CZ+r@hj38^z zUG7HIOczKd=t8>4Gx~Ny_zm6cm!HwOPnr7-1@#Y#it7HK7VB&&0f|;_E1ElcttT)A6 z($t#e>#QbD65&oD294ibnXq+HH{^J4i!u7MKg6r*2q$&loOCjKO};Jjs+zpBwFIq9 zw-?{jnn}3bpi}lRpBTAEAf*MN&raW>pIuQa;On`7!yI(yVp)NeZ!-lOhB)Su)VW4j zn@N-eZU$IZ9wOf{TI_K+(<(LkOH?bZ79%U^Lp*4kqx(EL-4VP;Wacg&8@eVj>m?-N zI>CG;kbQNE_mVs|rn)gh?5rGGwEceoQ9!Q0F)Z!1c9*C&Ws42%@f}!^ZAf`pr1LV) z=XU%ize!gFHWi=X)!-BSH2462${+J&Shh>Nm~*%no7tb^>2Z|)LJZ*#_#mHaa11KMjb#OF7YW?mz)jFZV%fk&%6E@ zGunbaEaM40i1&a7DY`@LBB_Z!ZMcJXwB1+Qp)f0Y|tj^BCUdm;@TTm!6$WC z@+u`g4JZ9N+U~P+jT!Bwz?WMhLPZqD@G$+GgOo3_TKOt1;0J|5-$ugw(81D+Zi(C^ z#j->N{9~C?Mz3I}-i~g|a35)b-SoNg?smcowm_=%?3~zLEm3c)^6d7*cUlF@D*a_A zc3EGPlAiLP6@3bCWIuFn6(!+LbB>B}qcDR4F&;Dat3N0ZePQQvrv^XJ=X1)QeKz3F zv<$l9sVnmWF#_pr-e`L~HfG0l9;jrW9q@Vg6(EmKdmo)sBlfi-cYMNi_D9;565QcB zC=cuw#N>T$xH{oW=zh>bPz61MvSV-_O{Lf1OG*!UCvKG?kX#F|^ioh_I8K?BRH~=~ z5;_5V7<35tEJ+_=bn-q}jrEXs!Zf^Hz|CwKZGwhv16QEe1?W}Ipoabc&#p}61bV5k zA@(9}lcAs)oWvbKN%VJ|h78{bw>GX5%|tWYw_NHLIG^T=o;Xo<0i8IfcFD6ql~|+5 z$s2L=>c+!3k9)8S?@rwQfVcz6yIU&uP9Jun_ECf>AlXN()=IVIY2nl)ld_NhDj-O!p{Dz**vD(K(Podmq6V4pt@zr44ypCR(b1q;|7=ZXyP#Ey){jY9Sm ziPe?d2L8Q^CZS#!W-4nhMw{CpWv2)dLBya0v^$QbsGS>2-LXSgsFN!ke!skt2Vx(M z!~T{xxaF|BO+oS$Gr?9#KHG5K*>Rtk?j>0wf?_zOVHe5WC-(qOK2<~Zvk!8R{Y&=k zh`Zr&C1O|jShgh4)@(E%{8wJ!wH7`b=CNZH@}~b2{y9%%1MKFt zTkZ8MJrrp{r1kM}<8KC%BcK&N_I*QW{4Jp|Z&kK3slgI8{?2eC`@TEe`2C?VTc9(N zeRpK(u}GFy%J-c@@)*=lM%oI@weSXN^cYb_6gQ&AdDsKj(+%}R5TAurcwBMd4W9y~ z-mYv!vd%iteq+Bnn;H`tvq4eVW7iWIUm0UTi$GC^zZ|<7BgVpIT%p<>r|#u*er=Aw zHkaShcO#O!PTt)^ut$4B4$#X+Z3{0=S3Z9NEO3~TuKYMEzZ)RWlhYu910Wd|fn-g1 zG_Y<7jmG0^(#aQ}#fCd#h}l2*`mX6&Owuu}5$x(8eVZL@PbCH?26e{Al<(ZIE}8sxTr4WR%)a zN_wP=r3HoOI}jA2Y)~0??jguvp0*V05XBo&%C5XDNo%0BHLzuO@ESUSyWnT)R&fxz z@CnBGKXr>}d{_7Sl{enMf6=S=dFnTWzWex%_wt{3);>@C#@hzr+}jP5C;D2PcX`nE z3pAWt!RI9SnP;GVW2q-_5mq#~;VXHP(#1;XQZdSp$C@m{8YH7_fA#%Q{#S)%(2m|5 zj9YLQo($69DP)VzJO@+=@7Rg;+Yis`DAL2AJ7Ju|!Jk-=fH(E9}ff}bvkNq|5jt;Qp!RjoM9z+hpV8o;i zuTZp8eX;Y|c6kotx;dMxy!ve8|7!gH_27Lwmik;sU=SV&+T>rzrm+) z^KdG!tqkW>887yHMdx{30$Vx{RK~G5vC7n`G6yGe31n`fNJt`yPlFbM&MR{IG=t@1 z(lmxsNfD;6n$*(2%mz+FbH^+no$riSfPcQ0YfMlUPq|H z=44SGNC>b6@JH;!P+&MU2S!ks@o#EHErF2=qbMBM8u%~l*$7}8Y6Xl@Xr(CQpRkP* z+fr+wouZ8&;5|u9-%}@w1$I{0 zh2nr+Dc<-F7Ow-aJ2`+ofZsy16M?-b37D*~H+3|=fvu6)hdKeB)CJfVc#-;1S70i2 z1G?0=+%)PA>`y&_=?XKbr*Q%MsuyqoB?AXiZ{Q%{S2UPXfJ3McFbjB|hLRIFOyO|q z2OL4E#+T4Bi6hAc97Sos(ZGK|FZ%<>C>%?f#^0gA1A(~;^JoxoJPkI^!7q_Gk%jpl~MT0%rkF!|vn(Z>I^sQs61u#Bbx?^bvZl^7>*=1Ke`-2z-f(}DK^KgF%= zR^S6P1Nb2D6Dp@a0GBFUMl*pA(JbR*Sj*dh%jtID3MvKSR%m>L{W}}@h{8u{j&U3| zVJ`4-g{x^Ea1GsQ9K(q#@kzQ1xK`mhT4)@lKhYxKdW9Qkv2lbp(%ry6D}0LX0X|Ll z8Xw}uD)CwRBk(ze&(jj)Fug$c0biv1fiKYm#s{!54+39SxQWVvn}P4s7Fr5)(=uSC z!YX>$ID~U@IdGf8S7?Rt9=)n?JFNs((<)#M@E~mJBfy>Xm?6KRt~TCsig0{786;C}j(ae!W@^}si11Mp4Y+w>M~1ir2C0R0*G4n1YOMeiy+ zNY4P@qi2DKfN#?K^c?U5g@@^R;|=5mMp*_ZK_))dM?`SXZd-{v<8eLL&nf3vHp#8vq z0(a5B=yl+~=`G-o3a`-H#!kAbu#OG@>**b12N?<*+w?$X(*ys%wCM@I+w|XU`tLUV z|G=iN`Q4`fZqxr)+4TRH{Pc|frcKZK-KPIXn||BxHvM-${Xg3D9sjFrI;n4Ul3RO! znY-Wfi(EcHI<$pgJ*|lO!Meu7>LtT&4S@a0hNYN>-FYW8aFe#k8fJ~Q#>wB+qI5iL zYBH=}8p;iY)hWOpzy11h#^=94MMlxpji=V1T77ECPkt%fEJkH|o)|S90%^KE5_G zG6xJCGG=m^AQ!hZQFmV-v2eLLh1UqBYZQbsx;ITdR5e$Xvu9%CP5I-4|4Rn2N7Z@gT%)HdL@?MwDb& z-JEaDbPt$YQl6Qgf#xck1g6{5ivyDqsWPw$qD>HUhuddWa(F*h5fPr5QYpwBgh9C@ z?HQTwR`v`z0=E{MSuok1Ju){lBg$sWOG8cyIU%K00bz_|- zXG2S^m5H_G%c?C@nD1yh**>{oVy;^&$di49IM8o~JAD3`h-HgcT6t!~ zG^>0qFTdaF-Z(P1ajs2bULM*&T@gDVzkC3?UIrm%jkcmUu_Q0o%}dawRnA1t$}_)W zd!|guzs2efu=lr@l;4t%rHL$e)2KUbRgsad8XWbJnbz{0T)WMk8fDKb$Y@;|M&+aK z+}g@zZFPN4Qeveg#3R_sX2IS_)1bzY;)XmGQ^jR0YgB_|S&qm)7z*LG7FjWpTs!8J zETK4=%8Qaw3{M`TmU}W*WSTo5J-^(NBGYAkw<*?Qx0YWfXn_5~SJ$T$cvJjhEtg3~ zrJgjX8uEQ{x5MG?&_Sw*e>&C_W9+Bidn6^!trpYlvn*Bw5Fcejwgq`9ogjXjO)l`# zY8Msa#a%Ws*Yj?r!l){8b#mmnMZV0b_2sk}BXi1pIStkG?a<_HYMZxko8ub(1zTD+ z&n!uCbIbpbUF^xv8g0)SIX>5#S)T8eZC1{8Z=U?*hCFY~-8?;4ixS?Lh|*LplyYK2 zVfm8V)UC(jpPy3d$<_X5Xr)SF>j1YUe~<_B0&TY6SgG3hM%GfnwQAmBx>Fq2zxTQB z{kq{bE!Qw$Jx*lhj4v+_ye@A5EKqs*0K0WSd4738wNX}Rw_5DwHCmh&S3WB<-?yUG z#*U>??g7j4Fo_aQfwl_jUuowDMpnA`fzji0Yb-G659H)l2^Q)3{qri@AuqSa3Y)7^ zMMJ85v&uKhVrY7mFsrPn8W&NS%GFhZdM~PGQfX#i8dFiV@T6H(8lI#baO!Kd+Nv?# zT-69tRIs&KyRKz2Y!alxs(@~(X`QrMng!khJ_Ocj5^%9MMWYyCDp;m2SNR*Yo#Y1B zg5L+rlpRRffs`Fc*@2W)t(sWduDx2-E(Tq1+uEvK*NbV9+Ey~aLR+aV#YHhjyV)B~ z@`lS1c0jno8$P5ht?CmKoECt0ri(xWEHJlqRRc$Ktx=I)P8C_}OIf=WDKTlSv~?KO zI*e)^Mzs#3x(H;nx)$kck-iq`YgPJMV%3zby|*cEWL;HoOK%DyX@OdvHWqi!7%kTu zj?>0gb&c7RmamOL(_0j7)N+8!6;4t(Lg8YSyI93%s`yM5PgU_$Z(L%hMi`?oSfVyc z8;$#Nj5bmmqQYz~6Zh&EZ3NzBI9wa7!eQD#6%Ivu1i~zo3q?3YQ@GCc!h$iSE~AS9Wx9J~>HQl(4+E(RY0YpNt`8K87fnwEwd zF0|o7j*B$S1xf|=)A}K&FUs}>x-_SnqZ6f^=*bCLInlBc%j3lIILTjg0I`;) zv%&db6WU2cy+n*F5j`YoNz@K)*~BsmLumDeF=DCwotD-{EUju2<4Ow<+bA2H51s`s z6Wgjxp}}ckC@0Hy0*?Ss0xt${0B-@CDbjrAR~2^a=?Pm$ zd%~uXU4zqZ*V;o&?P&v8!;sr!$n7yz-&+h=Ky~725BL!HBv=YO9>R!+Fyb-6c+`(q zrTkR6i(mt+L5bqg{`F-{s&)*xQ=?X7Y64Oc@Roo&2`HO@)RRC~HDrD^csY2FH?OTy z=C(>X+oG+u7;PtDs)_{zW3;waA|SXL^5vA^v|f<=2rx3mLy+b}klRC2LxkMKosg62 zEwLQD1#Hr4KCpaf7`kPT!7VFk4|SiKdX<)DW_4}q3}mSQ!+wm9}U#H1cGdo1p; zyvK$fTYBv2;lEQ9fbvDYE09{Y#7P($VvbC+2%RQU5dWxflfv5-x)g@HA}0o&nHcoe z#Gof820b=0D0gDe@QFbKCI)qy7*x%Lu5d@tr;eZ%j-auQpq`GP9*&@Hj-d9AptKOq z<8c&3yA}3V*i~U$h0#2&Du@Dh@dUD&q46BQ&31RpSzEQvRWbM4s?7-Q@w`p&1bt-U zt1+EzQ)3c6DRG{lo$WOpEzlT#nf%$|O7wr*f0Dn;zqfx!|0Mqe|9F49e~f>aIn-=1 zH#0Xi2b#@hKeKKYW-^CW8>d_jc?%2kv&g_tm#C|_MgDS0UD#OublEIu2)UbUSt4t6 zf6j8(7ExBA)&0Y0do>5*Of}j2vpY14vU2)IxO+LWs{M^o?qo-nJ0N>PZYA@>d3bY+ z2XJKN^<}1B zUuLQ*Gu2y0^OUhQD&v2OY^sdS|I|;)wD}EXVt=+wBWV`*cl?KkYiI}`t4yCSuL}A0 z%wll9d+FSg2zObb)mlU8e9U``h|4c5Dv@D9aWx;a7iYNB?HSg}A@hHl@18HShuAYJ zX?|u-ZsmMeaYoe;*N{wmK}O!zfdw5lUDw@%zV0eJ6#PtM1+uXYvaf-gekOa9%pNHF z+9dnhB>NiZ8mRhGS`W1}Q~x~prYhVjngl|D^P_Be{aadQ^;6p1#}=_DYKKnz0yTlF z-W1oqAh66zN=r(US=ePVtC_qJdb1)H^|3|m;1|4E79@w*`%^^bv<&5z2x&~5 zOHO)(?x3SI#`qSgHhP*aQX=)H5~E)I7O)d4eQ2riHI5mfU9>%c)ch)NS z9!f$hIrKP%(;>9j!3f0rRuL_nsFg$SXp_u|MrY$YuGQZ*3h60!ievg_dY3M6Tb=6f zHI^D{jdj$FE@{zq`;0Ee4AdG!`80>_!U)P}Jsspc(O2v-9#nsWU5wQ2^bR|qQ2Fra zMxpc{X${rTZaPFC(OG5=<^(R|5BZ3R>h{;~HwGJp#!Skj;gn5f$c^S$P7~v`@!BTs zc-`mqr;IjeJBQ}dJX%1@)!(Ndr;q7V)qJYeU$VGWREZ;+Lp!LC(>K>`t8YWA0Q zs9#gR)#z>vgKlYXx>`|pPztn3{uZ!Q{ciVZ^|vEip*_dwYmVSH+?faSSkC2qF5#Ix zi*Mrvd>5qpB5&iJe2hQkuW@zs6D=SohbR*Fh)2XWv0oe$XEf4A;|_D1wm^GC+orv* z{av@{iF#*!n4YiSsn0jTCG%@(e)nql)fsh#bx+pqtM6E!Q9r$YY5m^%WA&dIO^iLp zS-7H|F~&TaiZL$4{O_ZOX#@1*C5-Vjoul(u^Y0)FjRQCmBaTt)mX2``!^p?MWtsvi z;aed8GOpk%-o>@Nm*3`h_%NT~i?}?u5FJ5%unWeBDVW2PqC&XE$DqsN-?)}1YF)K% zxK-q1Huq}}U_Pt06WUo_=q>av`e=Qz{-#MYO*TDlT5H;Gddu{spT%#2*G62kAb7NQ z#a_Lib}Mbf?LgDM6o-YA7m6$Vyolz#=q(!et!$Al`oK5Z2`!&NVg76VY<@NoMi&2k z*@k#RBx&RHIIStomVY%O#*6zzK0U{~=!zHwO`EG76dT1PZLPja@5je+zu2pj2;v_o zjncRu*6u^P4J(wSZPDf5jgrZ%T{X=RLB{?1Ig`*1!w&Xkp&j7ye1Wq?OGvAac$n;X zx9|mogRuiYhUVA6?M&8BY0JbA@hQ@7rAK%#=D3q?6+8JUtV=TX$EPkh;M^5 zdebf9QEDq@iMG(^G4ws(!!59LuV8K3i7BLOL86F`h&-(N`y47d@*?Qz3|h+Nl*n~l zOYe%6)RT*~-B(-HB?!KHfh)B^RLNKLxAnK-d|!biqoKKGINYb9(`(Vo8)Vbspf$;4 z61c}jsJKfHg_?>un~J(-f_D z$BLh$e(GGj*jNm|Z{W533}<>}S(h*wcJi$tm;)x($~1PxLZX z;)KeAJZ?t4DRc|cOL0OiphejK_tP@ifXC@M`arxSHsFr?fOuWZ71QVw`b2wEbMaU@ zqCcoFrqQ?qkL2d)xffO`2KAO1AELMR6b0+w9lI2IZ=5%d886fwLVM52zgY9@Pv`y8 zDS<}t4|*h5PRU(5cMGwF#M(k^Q+2v()oQQ0Omu~;dM)?XKoQ6xpQZW=lT~>=(Tm*C>DX-z5g)bg1Xy z6ydP^aMOh|XDnyVP-^N0%LNVz?Tvq3I>Rh#et!10aq(JQkM2FYb#2)qOjGD*M=FxU z_Bat95*jXIMJKzxV{yErZ@&%_^i_4^t&x#d@mxfcwjDd#1FxFf^o zemqr0BOUtOjTod7$ zI>_%rfeFvMZgS;NDpme>jJ`Afh!PTYJgqRq@-ST zbL$f{!5lszBqU;j#bV|O{{H3@ottvgR#tQN-4PDz#88u)hFx-6E?|NeWPqM!)Pf;c z0_7A9lpkAntwu%Z~r9QYS zg6M)T+FP%-YN1uDSKBN0kNCJQqJN}l+3fwDNp^Xt{q+7ra^{>fNp|M<{Cb{~0wT5{D@a80j{{1ss7XUK_yU_)E1cKR*5?7Cz- zR*~URrw{uXSS2(v!0G|Gsp{m{=SiOOdp#sK^(e7AIC5vmKjqA>SU(k zQ<=HU#mp7>DrS{+74tKE2eT1B#5{?f#4qCCGJnGR@JGxce3UW zS(Lr9M>bo60VSXYLIK*6)KXen%V@O4?yxx+ht<*GFk4Jol#lBu?Dp$8Yf0!RPZxC@ zVLf-;5mL2vrC1@$COoYkF?Q=KQ@yrDZQr8-Z!X#@4n?&@dv{CIpRa!c3Qm+i(J z=|^vwaQ2cbU+s#?vFe_k+pqk6S5%JU$WG#Idm%-ANFN5K@c0(N8WlWgXNxMtQ46s!;FBIf;9gS_H)8UZ9nR1(Dn{fg2v;jF4R(BH72+iMZh|p|dDq z?u&!JId0I@h$@DbM+4bdd^6WwsI8q^i^C*t4KFkzS-862!?3c=D$|Gmex46Pog}z@ zbmQ3;nP;6=l5;kJB;EvH%Hr_j7OH#J?56_uteN&8G>GSJvpGCnQ8Pr5@-Vr$rpCZ_ z@TvdObAfp4DeN__70DH;73p85ewlvS@kEAk3O2Fi=*ZCNSVqlyl4>gE@Yso^I6oGK z#IJ;5kxp4hCHd#4>Vh;si}ylcwPPm)wYg6)jLqR6#9uyP{OqS8YlG9ny!Ac4D>2DQ z^#eTe!K@1Jw^Nq@i2UiOS8|6A5~qZQgubCN$agQK^|}~QO^o23!BAX~#6(#0MkF1% zW4w-iA&-uQI5c(dTDGhvZ+M^qJdmB!9;rhCh{EyqiBzc-%+=ChX{d?69=|M>2GlT2 zEhmZP$mzVExc}n&#Ql|Tq{x%cZSzDyar_`?FbJKr zm9=M6yr~EmA|Z1uh-5XK(sDAWerq@^^6IK94~1)_RxZkkfE1l@PI={WuOCf3}Dgl1QJjT-H@o! z271wI8fozvBSTB0K2lSX$-VfRF9sKWSYUk|=UMm2Eiat^WJUGM@+kwi-udHmZpm@H zotMtJ`p)&QETA^EZd>s456)}k1WsZvduq}2wPzAv!mH=bTRWlE!}z#V*ICbBKkH|Z zoBl-n32>8wfD7nO$md~7jhK~CPz15=ds0!J6Irh?i0A8q%k`W$9En^&nLHF_q9UO% z2>vOPi8e=6rwaWo$OXv<@|6-KZXhBS=0vY)kh)H1vDtNjqJ$8uVsHg@2X!fm;JLaT zd!07-H2PObM9G<`t} zEd^X2X|;44zSDZA{nq6A>|ObX@O{Z`)bq9-jvd)oZNJO9uf`iARFfwUv1dy#rVft$ zWlLkMuw&#e00#~~!CO< z{!g7tr$tWdGQH>TDvLcLB@W^t-QE)J;@-=3F>><>zyJc!L4w7>%!~U-_#7feZ`gQa zz9|smy|h&o!a53iAl(-lAgec;!O%mz0_olhP2O76Q4>Ibqv@WQ{?~Ios^H218t5j= z3fYklw?e*#8~Jc6q;Yc88zGCEB^a3{=wZ^sk}>CTl)VzX-Am@YWX?Q{-%7!2g#!5V=Xf^Mfl6OOw)6Oe{_)S_l3 zI(mBBp_zFewpQQw%Dfb|9CN9!R2!p$>UFqD##n$R(Vf7vcyyhvK5oHQhKVEWL5vL% zrWr>(^nrj{=VEf%$TpXs#NdaK4L^e%)XxCPY(iH2%ofXbJVWH7P4LqqUH@Hk1RGMYqA~rTV1kMiy>LO8E>vj7Q4Zt{+r&6VyFo{r%yV` zitl#a!&6SzdfPguDaj;a*Tx=m(Rr&C#Z0|4rUgGMCKl)H;s!RyszsGjX*#FkxxEb- zIC^RjkJsJB>#f%27Dq1PZ*k9+Y; z88zVd1Ok46=T#~Xm?IyL#cW`^Sk1D9P=P8G7&)KQ{BF%JQ~n)zHelu7r)H!%B%VWg%@SpM{JPodp+ghBm z5bU8wdj>#}1ftiv!v_B$NQ4+g#VGuNj#ruu7_t%!e&tU9jabLH&}Wr_B5({SVs< z_BU$8t0EI*1bNnDn_Jio@a#&ctQO~QH>_dRZjZ4tMKUnDGYH%tqk z9yv8WJ-fnXZf3`a$3?~^%9-)mDeTFdl_|>MU?h+TWCFz)o5@@V2luX9cL5MMx1Tt2v9YVr>k&OtF-!Ih<6|nwZqAs-iYEH;YzEw8j#w zBjhML%8njKpQGQ=;26Z$>FIm|@f=UF{91k|znkB~AK)##zcrZxu!=ZD9Uv*CW!lv> zn;QHlsg14f~cyZeQW*Im=Q z@%&+&68{@gTk@SSm z)*ftYoF-0do9mlfy2$r~((>RPMO#Y~8xBM!(ql8+d9v&v*H|kn7>H9ish4DIH>ooWp zn!ee7=Jd_+ndbuX3;i4m-h-{_Ka6AoICH7d8?Y2 zf3R{l9U4zm@=?ey1!hf}lMUr(^i7?8>oe8=p4aCUd0+9oN-S{7rk|d(>BpFC3MIci zhrR-QPk~V9&?En1TV=mNSmj>jxyidGv?jbda&vNZdQHY*PvK-Z9gL8zP|O|4Z4s*5 z>QhL(wfob^?^lrGvr=SSGN+BYhGOLlY)BPFMfF*;D#K8!m5OUDfJ8RTQmns_Q&k)W zZBt0jKaD%Fb&Nq&jyeMYvfuI`SG`ynJO4LX^Lpj+9 zfxo%vu|iK;`Qh^KTw9$$X4c`Ri?&zf_~iIaGpoDmPBFWq@1oN$T)gb_b0-t8SpBPc zznIZAr#E*h_`___M-lWasN8eMQ!Dmq`h}e&uPc$-M#4yukWM=r6I4{-GkwlfMAtR4f zpE#PWs_&ASSF6+ej5GU5+Xq@&4_aCbT53g~>GS5BG0Qlz9H%gmfLe-1l|W0LZ45P1 zjoH>#B@bz&jieDl_GWork+mF3b7?A_O(c|DG^WX|C=u5Xl0hqsOflBhL_VRR9GC0O znQ}zlxp+K=u*O9-6bJ{X-oS>yZUcvy184AI4kKzH)7?by!#_D*3CH0D zr|p|n06KUdpu22e^UV&GnkR}V7EK!tZ zWi^Je68OmXaF~mLQPuS+_@A4lL~)K5>ScJDFLv%%-+ ziATiakym{s4=n}Toegq}poMw|gq9KsEyQpE@&q8Xyi<=PB@#&}%^o1Zfn_k`2OCt~ zf*jp=^)U<9`zl~lwUWb8%lVo;k!8uF3y~-KZtZsP8&tul8qX&;@X|}hO}#&QGkAvT zmqXQgC)^N565P*DxStLxsgL`svQMR^qG=sF(Qfn_ek=F~o_@h zPVhl>yZSnM9lx%8j6YPIvsLUcl5C;LQ_J; zl3^juEp5%sr8cE#HydMX3vIQUX~iD!*1k-_tQ3+cDeaLYuSW?KQU+x~+1@ObO((P2 zR8lDnj@+mR6^z0`MNu*3!K76?5CV|tfhjadDY{)vXrYj*1{DpH@w8wt(9uqryjp-N z6q9XQv1qqDXt(CDYRQfcMOBsdHZ`fET{x8NOZF!pOFo}8C-r2yHK_|FHn}FbJGm!$ z0Okg%_jIok!hM)pgLjeNYDNcxG)2*n+^^O}ci2RGXtl?^%l)qVQ#b9FJAYk|^rw@6 z;+MH0iSI1do|OR@RbcnZzSwFjQN!=7tE_0hVLXdo!?} ztaOYsRE~3v%D_MALtpIiB|#$p_hRb=WxFc!~!!xIY_-o zVLP@20$2>tcHS^DS6Xnnc<|Unwq{HzoJ!|XsccS3*l6P|4K1dI2HK?9{2pTrn84@r zfHTKcGLA-Clt@HXlz4!`0#<_o4_FfpAa_K)JQ|Jf4 zdVT<`$BAToL?8Jr`+`gf`^0_Hm)w`aLGhq$c~SgN?mvY;iEm0DaUTf{e$Fp=MNy(( z6ux2)xlMO7w>$2q9x^|~-0%3E<#$%=b<|Dfo2^S70NuT}QR~dsc1ydpg_+m%%=+(zMF-S>I#7ax-zmaXTw zXNnbRJ$JkNR`D+B4%s@zJ;ggkoF<(npUa-hogrA$(m1xw-R|v_X0X$^DT38*u~`F_ zfHln~-AOMn8yVA9H|wNPgD*ide8OgOB?tiyqeip=nbDP=M1#E5-+fJe!^Uu>R=75Z zme1IUWIPCC1<$Qiz$Uhdwjf^?21gEUg(EjOa(JsCl|{0M?eYZ5q9iJ1i8Kt5m8}4d z;nc_EXdWE-)7aQ9knyj{k*Ocu z&RcfWj}lp(bn@xlln9gpQv%zwwv3P*9NDjPm;0~xQ%P&adaM8T5H*U7 zvUOzi%}A&TP;3ne&&Yre&-${cf#DB1G(o>JHB^2 zij4e5pAn8s%zAv%#JQ#KH(lOjYRHajn$~o#e|FR2@Z#K6rJG9|GY>cI(%uNY7JgTI zBmb$!1Eg%45}F#hDz`keI``AizlJvDUJCy~j#`e>(fFe}3WYP- zh$WiO#enFxX)=IUiOM6jSRi6A5Q!HGRw*6RG8uwqLp!KzP@dYLI}zN7%C#hdNWIa~w|LUD4(w1vmlwJHO9D|;)P!9Yd;UMA;CyD zVaFU`_TY8E_rERX*9}D!eWN&l(vpdmF_Sr~7X3FIV=+hWeslR<=PtcjC!?(^6@m4^4V-@*BQ=zAt8phjYZNh|BKGAKzkuKbrY)wSEO*A-u#3+ijC;HTWl~Vmv zJqf)@i)s3#{`8Xcn)LegV`+0*o^tmN96DN?A6|(H{{5Znh*)c9p1$Xvr>0J6{KX&6JMXneHq#S>L_2>{Nnvcon)92_XbJH_ zCAoUu+Lu=~l2ad&n%Q|jzh~j(3skQ^cFHNsuYZmpvo+w?6O4HJFM0-ueu)tMXfV`9 zN-@CgON86IWw8x-lpGTP`T>Qv%7eK7Nsi-H@)tG%(}lTUF*rZCD@e1!aJf=s8 z_>L!t)xQv{##dHX8Ao7x=uEK3AH#h&;^@;TNPc12$l)y^E=V>J1|Zi)uMF(9>@$lqRO3!w&P#b)WUp6}6(Q4DgROa-PosRk5h)qo zW`r{qSU9;T1!XO=K)7&9X`9fLe8#>Q%5wUzo7>tiA3{|BKk;?F?E2rC`+O}8NNv0}(5 zi!e3?w3SXklBVHL9$56~H7BcnmqV@L#&yqKd*-SO40chQpeGJbe*D0K7q6n8GfE)_ zf0%sZuTQ(@JI2f?1Lo?PCyVFk!3NYIHKNm`Y1#S8E!=M9OXB_v{^bJ(Gn?j*?p8&^!9n5_nN#g-a6vLz8&~FBvQM#=8QG8?=H`B2lrJD zR*XF+6~k9Xc_jH)ERM3tZ&*4zacRt8lmBp{u4Z5fhJML5H&9`1wIqgHzG;@)czJcs zB%jCW^!RY6XKKYM4#D01GG;0Jr*tOpqM!2P1jN<2^G@D(=5zD;`NDiRy^F$}$oX_p_t6p+@Tqc0QB!GO8`UN@`KD4+#Yw(7c&<3xcZ2Ui z-*2gx#JAzLjFnfO>*X+4@^GBnqc}a@NRrH|@o;=moI-If-W%T;-yJu{*QVm}WJ-yo zki%lUg<+WxL$S>B%)88|%m_H@S~J5~%!g0Q`Xee)YSk2eZY@>B798Li|~Svin_nVik})=re;4u=~@X8 z+tpjlVehl><2=X&KbppQ-5c`YogVDbI5S4(9`hRWE;DU@7S5*86g&$q?z^?c;~_B7 z{W7=L&kbjX2aNx|y-((b2mI2I!72tSd*Q6a?MGwrtzL%&Cm9+xYAsf>vTO$b80#Ee zYKHGSZn^lImXH7OM9pWWZ`J^qWdN8xMJ=WLKELR%L$K+a{bLJf)W|1WD64O9&+)HaJRd~?LJ}7^yc;ZKf3 z#Zod6GL?_~ik>(cHIGD1#Up<({ns&3v==;WDR^2p)uP`nl<>GnN37JXJ9@;P!laIw zjy|zcnAvf@<5Ka`!ucKd6xMb;5FHc-BZIAj-7g6*MP6!ssrxPTN$aQOq3*w-&+unl zRD!Q<#zHqQbjP@8jEl6kG~-BXYquZ>YNXW@iL^GyIDu1fvj^j53UD^3v6{`T30g!8 zYyQbvx7MnawDC<^vlbqtuF`{m(`{D2bv%`!K5fOVT6cH3qoW*)6$;620?mc;Br~UB zY<4)zisBGO1(Ru>H5bigu&X|^+3cUvti@nXT)8)Nu9Ic_=r zD_D3Kf!z3>mXXhNx64=NSw2|i&0f*~dnfE(cf(Xff|K2(;Uv~m`+hh!!|^FN@-E8`p)vfkx6Vx4eO^uI!PTCdKjn#)%7~_MgpYycf)zupe8-Jfz z^gMhLo;;8A_K~?Tb@$_Q%mHsONOFhf|w|H*%Z)(`!x!?b2aa+SPuE#x3__wPsyAC#a zZCJ(`Y`T-b%}@QPu)46W@UUxB;f1C*n%-}+rhpkfs{0egNFou9L{oy|_NCh*s4b06 zEeWX{B3(5+5@UpI~>@Mqi4kr1(s-8(E5j^|<=Q+>wKmU_dy6Wrd>gw*Q z`o8+=tG8-os8@3k7X@pAb;0ii9}MmY9ta)}YJ#3h=WWG7o?LI|ALI}4$9ax-SLE&= zR{e0^?EX*YC~zBPZst_YDGEs~sy{{aK#Eiy8ncYIjvu}9VCGJDN@N{CYEXa^gQrnB z9PYt0y9G_5CNml7cXg2Je=+%^3!Yv+XIGybP?4ys<&9N~^>PO3iFSRGsmE>%s` z*Wx<;1^!F$0#&`bUf+b5sao~j%r&}e{ObcZ`u7E%4eg0KKnk4RrMJZT20wqo?@-o1 z)Z;aau@&kF*+oRgsNqp&1Dt^X#<};t(}($if9^T9`NfPm=byZH=bi77gZs4q%|iqK zc>dtP=|d0GB`MW(;_KxH|MnHVF#lJkLh$$l()H0MO% zMDWki&vVofdyZp@G&?#wXMt27y)=wNgN8|Q66{`Wd!5WOK^}9LV_cLcOtT!b! zi+cn3_P}ofOu&;b2D3>e_hw^rb|CxqY&P4ScQB)#f!ipcrhd)rGs=1ta3@o6nqer7 zVjv(RDG<-ZG?O+F@R=q8M*r+0eK=l48xWX4?4Y0aCw3bQZ0iVcJpu7lEkjO?KS<^ADP z7v!$UWr$(zaTutou&RjK)i zy{IM|0yzU(sfX+?fw3n)8teguxewpGJ1@5MI(AQ4F{~5vu=O2ic z6wlo0NHM`~lSa@G5i`sedr>avRg#!P2J6{_pY9H8BJLp>HDovlm-9ozmr`fCDQAM& zIYtpNcYfIUhxP0Ku=d#9^t|KUEqA~B?%iA7{XEf2-rzi~b)XDTJ1q!(v zA!K$rL>@%KlU_04XZi-e7!vgu{(}z3DCm~bGLf3LTQyhk%`Y7v|LXGBC)rFEm!33U0qX8N+! zGNzO%kTyhn8tzbpsT}QZC;qEX5&x;}x31e*W_O7i+dV7V*5Mnepf&bSPisQVUeX>n zti0c$aR`Ewb+%63Kw=2je}CXQ?mB3hIj9W#<&vplhsYcYz8U=@crto6cqYQHimxtc zENU#f+IVezP1()yp0Wqxca%LA?=9QsH!&I_4VF>?p;f6g+7N^Mc_l8%;*_8+P5#X# zK}nYvM4PkKpsw?n$FVF4OFErJ+pFEFWzAY*tlFVH3?pDqd10_8e0#Vzyfe%l2pAZ{olkp+&TVRLz^p%cvomk-T~i)s@S9$sHoF|M3Q5vDvLl$DNH2XnpB z_eESCOJ-Bp&R;KFm*d#@*00Z={qe-bN+H-uaXBFOPv<>cX=w z$er}fUX1tb!DwLSU9bIq^IgCHJ@CQ;;Dyz|3zfK2F4*chD={3l<0ihFza8Jj^x~g0 zJMnHt_b~s6`bpIu^&$1U>f;`@M`LwTxos8$A|ozwiK5dLvc`+3!jr$GI6uFrI25<& z6nSsN#wFAc8L}w)t3J9UrN35|lJjtRQAv4uX-TLO6F?*vkHw(6D-ox*=rmf%ecXki zpLj^tPe4JbRqZT0rx%&t-+zPA{I2*4RUVCUFw$I^W2T@F87bzYMarr zNCZ8WH)t2BR3U@I=iXumJ(hiu>BDzD<>QS89m4xDFȽ^8$>O0w69SafGyv|$*= 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%0A& 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 literal 0 HcmV?d00001 diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/casetype/ECF-4.0-AppellateCase.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/casetype/ECF-4.0-AppellateCase.xsd new file mode 100644 index 000000000..5db09624d --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/casetype/ECF-4.0-AppellateCase.xsd @@ -0,0 +1,194 @@ + + + + + + AppellateCase + + true + + + + + + + + + + + + Party added to the appeal that was not a party in the original case. For instance, the attorney in the original case may appeal sanctions against the attorney by the court. + + + + + + + + + + + + + Party to the original case that is not party to the appeal. + + + + + + + + + + + + + Information required to initiate a new case in an appellate court. + + + + + + + + + + + + + + + + + + + + + + Additional information specific to civil appellate cases. + + + + + + + + + + + + Additional information specific to court rule appellate cases. + + + + + + + + + + + + + Information required to initiate a new case in an appellate court. + + + + + + + + Party added to the appeal that was not a party in the original case. For instance, the attorney in the original case may appeal sanctions against the attorney by the court. + + + + + The basis for the jurisdiction of the appellate court in the case. + + true + + + + + + A party being added or removed an appeal.. + + + + + The reason a party is being added to the appeal. + + true + + + + + + The reason a party is being removed from the appeal. + + true + + + + + + Party to the original case that is not party to the appeal. + + + + + A request for diversion to a settlement program in the appellate court. + + true + + + + + + Additional information specific to civil appellate cases. + + + + + Additional information specific to court rule appellate cases. + + + + + Indicator that the appellant is currently in custody. + + + + + Indicator that filing fees were waived or deferred in the case in the lower court. + + + + + An organized set or book of rules of the court that include the rule(s) in question. + + true + + + + + + A rule number (including rule subsection) in question. Each rule number must refer to a specific rule within the rule collection. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/casetype/ECF-4.0-BankruptcyCase.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/casetype/ECF-4.0-BankruptcyCase.xsd new file mode 100644 index 000000000..f38725d1d --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/casetype/ECF-4.0-BankruptcyCase.xsd @@ -0,0 +1,141 @@ + + + + + + BankruptcyCase + + true + + + + + + + + + + + + Additional information specific to bankruptcy cases. + + + + + + + + + + + + + + + + + + + + + + + + + Whether assets are available for distribution to creditors. + + + + + Additional information specific to bankruptcy cases. + + + + + + + + Section 11 of the United States Code pertaining to bankruptcy. + + + + + "Form of Origin" indicator from the Bankruptcy Petition Form. Allowable values defined in ECF-4.0-DebtorTypeCode.gc. + + + + + + + + A person or organization on whose behalf, or against whom, a bankruptcy petition is filed. + + + + + A coded set of ranges of dollar values for assets. Generally used for statistical reporting, not case management. Allowable values defined in ECF-4.0-ValueLevelCode.gc. + + + + + + + + A coded set of ranges of dollar values for debts. Generally used for statistical reporting, not case management. Allowable values defined in ECF-4.0-ValueLevelCode.gc. + + + + + + + + Whether or not spouses are filing as joint debtors + + + + + Whether the debts involved in the case are "business" or "consumer". Allowable values defined in ECF-4.0-NatureOfDebtCode.gc. + + + + + + + + A coded set of ranges of numbers of creditors involved in the case. Allowable values defined in ECF-4.0-NumberOfCreditorsValueLevelCode.gc. + + + + + + + + The debtor has elected to proceed under Section 1121 (e) of the bankruptcy code. + + + + + Whether the initiating party is a small business, as defined in bankruptcy code. + + + + + Whether the debtor has initiated bankruptcy (true, corresponding to Federal code "V") or a creditor has initiated bankruptcy (false, corresponding to Federal code "I") + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/casetype/ECF-4.0-CitationCase.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/casetype/ECF-4.0-CitationCase.xsd new file mode 100644 index 000000000..5174ed149 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/casetype/ECF-4.0-CitationCase.xsd @@ -0,0 +1,189 @@ + + + + + + CitationCase + + true + + + + + + + + + + + Additional information about a person alleged to have violated a statute or ordinance. + + + + + + + + + + + + A charge issued by a law enforcement officer for a "violation" requiring the person charged to plead guilty to the charge or to appear in court to contest the charge. A citation is issued in lieu of an arrest and booking. "Violations" are a subset of "charges" for which a law enforcement officer is authorized to issue a citation in lieu of arrest and booking. Examples: traffic ticket, parking ticket or ticket issued for some other ordinance violation such as barking dog or illegal dumping. + + + + + + + + + + + + + + + + + + + + + A charge issued by a law enforcement officer for a "violation" requiring the person charged to plead guilty to the charge or to appear in court to contest the charge. A citation is issued in lieu of an arrest and booking. "Violations" are a subset of "charges" for which a law enforcement officer is authorized to issue a citation in lieu of arrest and booking. Examples: traffic ticket, parking ticket or ticket issued for some other ordinance violation such as barking dog or illegal dumping. + + + + + + + + + + + + + + The incident from which a traffic ticket arose.. + + + + + + + + + + + + + + Information about a parking violation. + + + + + + + + + + + + + + + Information describing a motor vehicle. + + + + + + + + + + + + + A charge issued by a law enforcement officer for a "violation" requiring the person charged to plead guilty to the charge or to appear in court to contest the charge. A citation is issued in lieu of an arrest and booking. "Violations" are a subset of "charges" for which a law enforcement officer is authorized to issue a citation in lieu of arrest and booking. Examples: traffic ticket, parking ticket or ticket issued for some other ordinance violation such as barking dog or illegal dumping. + + + + + A charge issued by a law enforcement officer for a "violation" requiring the person charged to plead guilty to the charge or to appear in court to contest the charge. A citation is issued in lieu of an arrest and booking. "Violations" are a subset of "charges" for which a law enforcement officer is authorized to issue a citation in lieu of arrest and booking. Examples: traffic ticket, parking ticket or ticket issued for some other ordinance violation such as barking dog or illegal dumping. + + + + + + + + + + + + + A person named in a citation alleged to have violated a statute or ordinance + + + + + Information describing a motor vehicle. + + + + + The incident from which this traffic ticket arose. + + + + + A blood-alcohol percentage reading from a Blood Alcohol Test (BAC Test). A blank value represents not tested. + + + + + The name of a parking facility/lot.. + + + + + An identifier for a parking space or meter. + + + + + An identifier for a parking space or meter. + + + + + An indicator that a automated camera was used to detect traffic signal violations. + + + + + Information concerning whether an owner of a motor vehicle possesses proof of insurance coverage required by law. + + + + + Information concerning whether a driver of a motor vehicle possesses proof of insurance coverage required by law. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/casetype/ECF-4.0-CivilCase.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/casetype/ECF-4.0-CivilCase.xsd new file mode 100644 index 000000000..d9c27ccde --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/casetype/ECF-4.0-CivilCase.xsd @@ -0,0 +1,169 @@ + + + + + + CivilCase + + true + + + + + + + + + + + + + Information required to initiate a new civil case in a court. "Civil" includes conservatorships, guardianships, mental health and probate. + + + + + + + + + + + + + + + + + + + + + + + Information about a case administering and distributing the assets of a testate or intestate decedent. + + + + + + + + + + + + + + Information about a guardianship, conservatorship, trust, or mental health case. + + + + + + + + + + + + + Description of a person's relationship to the fiduciary (e.g., the initiating party). + + + + + + + + + + + + The amount set forth in an ad damnum clause in a complaint, counter claim, or cross complaint. + + + + + Whether the filer is requesting that this case proceed as a class action. + + + + + Information required to initiate a new civil case in a court. "Civil" includes conservatorships, guardianships, mental health and probate. + + + + + + + + Information about a case administering and distributing the assets of a testate or intestate decedent. + + + + + Information about a guardianship, conservatorship, trust, or mental health case. + + + + + Legal description of the role of the fiduciary. This is needed in addition to the Case Role Code (in the Review Filing message structure) because that code only defines the roles of other actors and other parties; the fiduciary per the specification is the initiating party. Examples: guardian, trustee, conservator of the person, conservator of the estate. + + true + + + + + + + The grounds for invoking the jurisdiction of a limited jurisdiction court. Allowed values set forth in Court policy. Not used in general jurisdiction courts. + + true + + + + + + Whether filer invokes the right to trial by jury. + + + + + Description of this person's relationship to the fiduciary (i.e., the initiating party). + + + + + Description of this person's relationship to the fiduciary (i.e., the initiating party). + + + + + Indicator of the type of relief requested in the case, e.g., damages, equitable relief (injunction). Allowable values defined in Court Policy. + + true + + + + + + Date on which the deceased person's will was filed in the court. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/casetype/ECF-4.0-CriminalCase.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/casetype/ECF-4.0-CriminalCase.xsd new file mode 100644 index 000000000..cf87a2b50 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/casetype/ECF-4.0-CriminalCase.xsd @@ -0,0 +1,205 @@ + + + + + + CriminalCase + + true + + + + + + + + + + + + + The crime or violation a defendant is alleged or found to have committed. + + + + + + + + + + + + + + Information required to initiate a new criminal case in a court. "Criminal" includes felonies and misdemeanors. + + + + + + + + + + + + + + + + + + + A representation or an encoding of the identifying characteristics of a person's fingerprint. + + + + + + + + + + + + A sentence associated with a specific charge in a case. A sentence may have multiple components (prison, probation, post-incarceration supervision/probation fine, etc.). + + + + + + + + + + + + + + Additional information about a defendant. + + + + + + + + + + + + + + + An agency which employs the arresting official. + + + + + + + + The act of taking physical control over the person of another by a law enforcement officer or other person acting under color of law. + + + + + The crime or violation a defendant is alleged or found to have committed. + + + + + An indicator that the charge submitted amends an earlier submitted charge. + + + + + An identifier of a section or category within a code book that promulgates jurisdiction for the charging agency. + + + + + The offense or incident which resulted in the charge. + + + + + Information required to initiate a new criminal case in a court. "Criminal" includes felonies and misdemeanors. + + + + + + + + Details about a representation of an image encoded for XML. + + + + + + + + Details about a representation of an image encoded for XML. + + + + + An indicator of whether or not a defendant or juvenile is held in a jail, prison, lock up or other facility. + + + + + The prosecutor's estimate of the time that will be required to conduct a preliminary hearing. + + + + + The bail amount recommended by the prosecutor. + + + + + A sentence associated with a specific charge in a case. A sentence may have multiple components (prison, probation, post-incarceration supervision/probation fine, etc.).. + + + + + Reference to another sentence which is to be served concurrent with this sentence. In the case of multiple sentences without references to concurrent sentences, they are assumed to be served consecutively. + + + + + The currency amount of a fine assigned to the defendant by the court. + + + + + The bail amount recommended by the prosecutor. + + + + + + + + Indicates whether an arrest warrant has been issued against the defendant. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/casetype/ECF-4.0-DomesticCase.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/casetype/ECF-4.0-DomesticCase.xsd new file mode 100644 index 000000000..51484e03d --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/casetype/ECF-4.0-DomesticCase.xsd @@ -0,0 +1,263 @@ + + + + + + DomesticCase + + true + + + + + + + + + + + + + Information required to initiate a new domestic case in a court. "Domestic" includes divorces, legal separations, annulment, child custody and visitation, paternity, child support, and domestic violence cases. + + + + + + + + + + + + + + + + + + + + + Information concerning a petition for child support. + + + + + + + + + + + + + A responsibility of a party in a case ordered by a court. + + + + + + + + + + + + Information concerning a court order in a domestic case. + + + + + + + + + + + + + + Information concerning a petition for domestic violence restraining or protective order. + + + + + + + + + + + + + + + + + + A financial responsibility of a party in a case ordered by a court. + + + + + + + + + + + + + + Information about a marriage, civil domestic union, or other domestic relationship defined by law. + + + + + + + + + + + + Whether a divorce is contested. + + + + + Description of temporary child support award that the court is being asked to order. + + + + + A description of the findings of the court. + + + + + Description of temporary custody award that court is being asked to include in the order. + + + + + Indicates if there is an ongoing divorce case. + + + + + Information concerning a petition for child support. + + + + + Information concerning a court order in a domestic case. + + + + + Category of order, including Establish, Modify, Enforce, Modify and Enforce, and Vacate. + + + + + Information required to initiate a new domestic case in a court. "Domestic" includes divorces, legal separations, annulment, child custody and visitation, paternity, child support, and domestic violence cases. + + + + + + + + Information about persons in a domestic case. + + + + + Information concerning a petition for domestic violence restraining or protective order + + + + + A responsibility of a party in a case ordered by a court. + + + + + A financial responsibility of a party in a case ordered by a court. + + + + + Text that extablishes jurisdiction to award custody in a case (e.g. addresses of petitioner and child for the last five years, identification of related and ongoing cases, the home state of the child, and who has current custody). + + + + + Information about a marriage, civil domestic union, or other domestic relationship defined by law. + + + + + Means of communication with initiating party that the court is being asked to prohibit. Allowed values to be set forth in Court Policy. + + true + + + + + + + Indicates whether the responsible party's income should be attached. + + + + + An amount owed each payment period. + + + + + Indicates whether the obligation will be collected and disbursed by a state agency. + + + + + Designation of place that abuser will be ordered to vacate. Allowable values to be set forth in Court Policy. + + true + + + + + + Open text designation of place that abuser will be ordered to vacate. This should contain a description of the place, and its location. + + + + + Whether the person against whom a proposed order would be entered should be considered a danger to others, including law enforcement officers responding to a domestic disturbance call. + + + + + Description of the distance abuser must maintain from abused person(s). + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/casetype/ECF-4.0-JuvenileCase.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/casetype/ECF-4.0-JuvenileCase.xsd new file mode 100644 index 000000000..e4a63aa71 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/casetype/ECF-4.0-JuvenileCase.xsd @@ -0,0 +1,268 @@ + + + + + + JuvenileCase + + true + + + + + + + + + + + + The statutory or ordinance section, the violation of which would constitute a crime if committed by an adult. May include a probation violation. + + + + + + + + + + + + + + + + The grounds for declaring a minor child to be a ward of the state because of the neglect or abuse of the minor child's parents or guardians. + + + + + + + + + + + + + Information about the juvenile's parent(s) or guardian(s). + + + + + + + + + + + + A delinquency or dependency case. + + + + + + + + + + + + + + + + + + + + A minor who is the subject of a delinquency or dependency case. + + + + + + + + + + + + + + + + Information about the person or organization orther than parent or guardian with whom the juvenile lives. Examples: Foster home, foster parents, state institution, hospital, shelter. + + + + + + + + + + + + + + An act or behavior that would not constitute a crime if committed by an adult, which will subject a juvenile to adjudication as a delinquent by a court. Examples include truancy and refusal to abide by a parent's orders or direction. + + + + + + + + + + + + Arrest of a minor for commission of an act subjecting the minor to adjudication as a delinquent. + + + + + An action or behavior of a juvenile that makes the juvenile potentially subject to adjudication by the juvenile court as a delinquent. The statutory or ordinance section, the violation of which would constitute a crime if committed by an adult. May include a probation violation. + + + + + Code designating the statutory or ordinance section, the violation of which would constitute a crime if committed by an adult. May include a probation violation. + + + + + Code identifying the level of the offense as defined in state law. Allowable values set forth in Court Policy. Example: Felony, Misdemeanor, Infraction, Ordinance Violation. + + true + + + + + + Code indicating the degree of an offense as defined in state law. Allowable values set forth in Court Policy. Examples: First Degree Murder, Felony Type A/B/C. + + true + + + + + + Code indicating the general category of the offense as set forth in state law. Allowable values set forth in Court Policy. Examples: Attempt, Conspiracy, Accessory before the fact, Accessory after the fact. + + true + + + + + + Code indicating the existence of a factor that, under state law, heightens the seriousness of the charge and would subject an adult to increase punishment. Allowable values set forth in Court Policy. Examples: Use of deadly weapon, use of gun. + + true + + + + + + The grounds for declaring a minor child to be a ward of the state because of the neglect or abuse of the minor child's parents or guardians. + + + + + A code identifying a specific ground sufficient in law for declaring the minor child a ward of the state. Allowable values set forth in Court Policy. + + true + + + + + + Legal term used to describe the ground on which the minor child can be declared a ward of the state. + + + + + Information about the juvenile's parent(s) or guardian(s). + + + + + A code describing the parent or guardian's relationship to the juvenile. Allowable values are set forth in court filing policy. Examples: Father, Mother, Guardian + + true + + + + + + + A delinquency or dependency case. + + + + + The minor who is the subject of this delinquency or dependency case. + + + + + Indicator whether a minor has been adjudicated an emancipated person by a court. + + + + + Information about the person or organization with whom the juvenile lives. + + + + + Information about the person or organization with whom the juvenile lives. + + + + + Code indicating the type of placement. Allowable values set forth in Court Policy. + + true + + + + + + Date on which the placement commenced. + + + + + An action or behavior of a juvenile that makes the juvenile potentially subject to adjudication by the juvenile court as a delinquent. but would not constitute a crime if committed by an adult. Examples include truancy and refusal to abide by a parent's orders or direction. + + + + + Code designating the statutory or ordinance section, the violation of which would not constitute a crime if committed by an adult (only if a juvenile). + + + + + Identifier assigned by the Immigration and Customs Enforcement Bureau of the U.S. Department of Homeland Security. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/common/ECF-4.0-AppInfo.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/common/ECF-4.0-AppInfo.xsd new file mode 100644 index 000000000..5b35ca67a --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/common/ECF-4.0-AppInfo.xsd @@ -0,0 +1,29 @@ + + + + + + ECF AppInfo + + + + References a genericode code list of acceptable values for an element. + + + + + + + + + + Indicates a code list to be defined in court policy. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/common/ECF-4.0-CommonTypes.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/common/ECF-4.0-CommonTypes.xsd new file mode 100644 index 000000000..aba9ce236 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/common/ECF-4.0-CommonTypes.xsd @@ -0,0 +1,935 @@ + + + + + + CommonTypes + + true + + + + + + + + + + + A name other than an official name used by a person or organization. + + + + + + + + + + + + + + + + A document or other piece of information filed by someone or something involved in a case. + + + + + + + + + + + + + The role played by an attorney in this case. + + + + + + + A reference to a person organization or property represented by an attorney. + + + + + + + + + Information about a case participant. + + + + + + + + + + + + + Additional information needed to initiate a court case. + + + + + + + + + + + + + + + + + + + + + The actor who performed the action as set forth in the docket entry. E.g. the person who filed the document. Does not include the name of the court clerk composing the docket entry. + + + + + + + + + + + + The actor on whose behalf the filing was submitted to the court as set forth in the docket entry.. + + + + + + + + + + + + Document descriptors (title, type description, etc.) for the Document. This is meant to include all the information about the document that is needed to index it into the Case Management System and enter it into the Document Management System. + + + + + + + + + + + + Details about an event on the court calendar. + + + + + + + + + + + + + + + + + + + + Information describing an attachment included within an ECF 4.0 base message. An attachment can be a binary file representing the document to be filed, an XML document, a digital signature, or other MIME file. + + + + + + + + + + + + Descriptors for a rendition of a Document. This is meant to include all the information about the document that is needed to enter it into the Document Management System. + + + + + + + + + + + + + + A rendition or version of a Document. + + + + + + + + + + + + + Information describing or constituting the signature on a document submitted to a court for filing. + + + + + + + + + + + + + Document descriptors (title, type description, etc.) for the Document. This is meant to include all the information about the document that is needed to index it into the Case Management System and enter it into the Document Management System. + + + + + + + + + + + + + + + + + + A Lead document that is the pleading, motion or order that is the main document in a Filing or a Connected Document. A Lead Document may have Connected Documents, which are "appendices" or "exhibits" that are intended for filing only in the context of the Lead Document. + + + + + + + + + + + + + The asynchronous message returned by the Filing Review MDE to the filing assembly MDE conveying information on the court's actions on the documents submitted for filing in the FilingReviewMessage. + + + + + + + + + + + + + + + + The base message for an electronic filing using ECF 4.0. + + + + + + + + + + + + The structure for the information needed to electronically serve other parties to the case. + + + + + + + + + + + + + + Representation of an error that occured when synchronously processing the message. + + + + + + + + + + + + + Status of the filing as determined by the system sending the callback. + + + + + + + + + + + + Details about a coverage by contract whereby one party agrees to indemnify or guarantee another against loss by a specified contingent event or peril. + + + + + + + + + + + + The relationship between two organizations. Example: subsidiary corporation. + + + + + + + + + + + + Additional information about an organization. + + + + + + + + + + + + + + Additional information about an organization. + + + + + + + + + + + + + A code for the type of relationship between two persons, between two organizations, or between a person and an organization in a case. Allowable values are set forth in Court Policy. Examples include parent/child, subsidiary corporation, and chief executive officer. + + + + + + + + + + + + Additional information about a person. + + + + + + + + + + + + + + + + A code for the type of relationship between two persons, between two organizations, or between a person and an organization in a case. Allowable values are set forth in Court Policy. Examples include parent/child, subsidiary corporation, and chief executive officer. + + + + + + + + + + + + Additional information about a person. + + + + + + + + + + + + A message returned synchronously as a response to a query. + + + + + + + + + + + + + + + A message returned synchronously as a response to a query. + + + + + + + + + + + + + + + Case or cases sharing characteristics, such as common parties or events, with this case. + + + + + + + + + + + + A document that has been reviewed through the clerk review process, and that potentially has been or will be reocrded in the court record system. + + + + + + + + + + + + + + A container for the data or information representating a signature. + + + + + + + + + + + + Additional information about a subject. + + + + + + + + + + + + + A name other than an official name used by a person or organization in this case. + + + + + An alternative name by which this person or organization is known. + + + + + A description of the type of the alternate name. Allowable values set forth in Court Policy. Examples: doing business as, formerly known as, also known as. + + true + + + + + + + An identifier that determines the attachment order in a set of related attachments. + + + + + Nature of the relationship between the current case and the related case. Allowable values to be set forth in Court Policy. + + true + + + + + + + Additional information needed to initiate a court case. + + + + + + + + An entry in the docket or register of actions for this case. + + + + + The abbreviated name of a case. + + + + + The classification used by a court to denote the type of case for purposes of statistical categorization, court record keeping, or case assignment. Allowable values set forth in Court Policy. + + true + + + + + + The role played by an attorney in this case. + + + + + Attorney representing a "other party" in this case. + + + + + Information about a case participant. + + + + + A code that describes the role played by a person or organization in a case. Allowed values are set forth in Court Policy. Examples: Lead attorney, guardian ad litem, friend of court, court appointed special advocate (CASA), caseworker, probation officer, bail bondsman, interested person, interested party, intervenor, heir, trustee or beneficiary (e.g., of a trust). + + true + + + + + + + A reference to a person or organization represented by an attorney. + + + + + + + + The legal ground on which the request for relief is based. Allowed values set forth in court policy. Example: the basis(es) for relief in a civil case; the grounds for divorce in a state that does not recognize no-fault divorce; grounds for entry of an order of protection in a domestic violence case. + + true + + + + + + A reference to an entry on the docket or register of actions that is a child of the current docket entry. + + + + + Indicates whether color is or is not relevant for the presentation of the document. + + + + + A document included in a Filing that supports the lead Document. This document is not separately entered on the docket or register of actions. + + + + + The actor who performed the action as set forth in the docket entry. E.g. the person who filed the document. Does not include the name of the court clerk composing the docket entry. + + + + + The pleading, motion or order that is the subject of this docket entry. + + + + + A reference to a pleading, motion or order that is the subject of this docket entry. + + + + + + + + Date of entry into the court record. + + + + + A code referring to the location in a court of the calendar event. Allowable values set forth in court policy. + + true + + + + + + A textual description of the location in a court of the calendar event. + + + + + The actor on whose behalf the filing was submitted to the court as set forth in the docket entry. + + + + + Code to categorize the docket entry. E.g. motion, hearing, complaint. Allowable values set forth in court policy. + + true + + + + + + A Lead document that is the pleading, motion or order that is the main document in a Filing or a Connected Document + + + + + Information describing an attachment included within an ECF 4.0 base message. An attachment can be a binary file representing the document to be filed, an XML document, a digital signature, or other MIME file. + + + + + The identifier from the court record system used to identify the document. This attribute is populated by the MDE/process that is authorized to create docket identifiers; the attribute will not be present before that creation takes place. For example, if the clerk review process creates docket identifiers, then this attribute will be present in the RecordDocketingMessage that goes to the court record MDE. However, if the court record process creates docket identifiers, then this attribute will not be present in the RecordDocketingMessage, but will be present in subsequent callbacks. This attribute will be absent in callbacks when the ReviewedDocument was rejected, either by clerk review or the court record system. + + + + + A hash of the document as it appears in the court record. This attribute will be populated by either the clerk review process or the court record system. If the latter, then it will be absent in the RecordDocketingMessage. It will also be absent in callbacks for rejected documents. + + + + + Document descriptors (title, type description, etc.) for the Document. This is meant to include all the information about the document that is needed to index it into the Case Management System and enter it into the Document Management System. + + + + + Descriptors for a rendition of a Document. This is meant to include all the information about the document that is needed to enter it into the Document Management System. + + + + + A rendition or version of a document. + + + + + Information describing or constituting the signature on a document submitted to a court for filing. + + + + + Information provided by the filing assembly MDE to the court identifying a person or organization for purposes of being served electronically with a copy of a document. + + + + + A code for the type of relationship between two persons, between two organizations, or between a person and an organization in a case. Allowable values are set forth in Court Policy. Examples include parent/child, subsidiary corporation, and chief executive officer. + + true + + + + + + + + + A property capable of bearing legal rights and responsibilities. + + + + + A property capable of bearing legal rights and responsibilities. + + + + + + + + + + + + An organization capable of bearing legal rights and responsibilities. + + + + + + + + A person capable of bearing legal rights and responsibilities. + + + + + Representation of an error that occured when synchronously processing the message. + + + + + A code that uniquely identifies an error. A value of '0' indicates no error. Other allowable values set forth in court policy. + + true + + + + + + + A more "user friendly" description of the error. + + + + + ID recognized by the court as being unique within this case,and used to identify the attorney who is filing this document. Not present for pro se litigants. + + + + + The date and time on which the Court Record MDE filing process was completed following the acceptance by the Filing Review MDE + + + + + ID recognized by the court as being unique within this case,and used to identify the party on whose behalf this document is being filed. + + + + + Status of the filing as determined by the system sending the callback. + + + + + Status of the filing as determined by the system sending the callback. Allowable values defined in ECF-4.0-FilingStatusCode.gc. + + + + + + + + Indicates whether the respondent has demonstrated a proof of insurance. + + + + + The relationship between two organizations. Example: subsidiary corporation. + + + + + Additional information about an organization. + + + + + Only present for supporting documents; indicates the identifier of the corresponding lead document. + + + + + + + + The relationship of a person to another person in a case. Allowable values set forth in Court Policy.. + + + + + Additional information about a person. + + + + + Information about a license issued by a state or federal entity authorizing operation of a motor vehicle on public streets and highways. + + + + + Details about a coverage by contract whereby one party agrees to indemnify or guarantee another against loss by a specified contingent event or peril. + + + + + The relationship between two organizations. Example: subsidiary corporation. + + + + + Person's organizational position or title. + + + + + An identifier of a related document that was previously filed in this case. For instance, the document to which this document is a response. + + + + + An entity that submits a query. + + + + + Indicator by the filer that the document must be redacted by the court. + + + + + An indicator that sensitive information has been removed from this rendition of the document. + + + + + Case or cases sharing characteristics, such as common parties or events, with this case. + + + + + Location for the MDE to which service messages can be sent. + + + + + Code identifying the service interaction profile being used by the MDE receiving service. + + + + + This association will be present for a lead document that is reviewed by clerk review. For documents that were rejected by the clerk review process or the court record system, only the documentStatusCode, originalDocumentID, and (optionally) the documentStatusReasonDescription will be present. For documents that were accepted and recorded, all attributes will be present, except for documentStatusReasonDescription, which may or may not be present. + + + + + This association will be present for each connected document that is reviewed by clerk review. For documents that were rejected by the clerk review process or the court record system, only the documentStatusCode, originalDocumentID, and (optionally) the documentStatusReasonDescription will be present. For documents that were accepted and recorded, all attributes will be present, except for documentStatusReasonDescription, which may or may not be present. + + + + + Clerk's instruction to court record system to seal this document. + + + + + Location for the MDE to which asynchronous and service messages can be sent. This unique location is self-assigned by the MDE. + + + + + Code identifying the service interaction profile being used by the sending filing assembly MDE. This list should be extensible to accommodate future messaging profiles. Each code value is specified within the message profile approved for use with ECF 4.0. + + + + + A unique identifier assigned by the filing assembly MDE for the person who is managing the interface between the filer and the filing assembly MDE. This person will receive secondary service on behalf of the filer. This is also the submitterID for filings in this case, and asynchronous responses to filings. + + + + + The data or information representing this signature. It must be valid according to the profile identified by the associated signatureProfileID. + + + + + An identifier from the Court Filing specification that indicates the Signature Profile governing the structure of this signature. + + + + + Any additional instructions for printing of a document (such as printing on front and back of the same page or printing on a particular color paper). + + + + + ID assigned by the Immigration and Customs Enforcement Bureau of the U.S. Department of Homeland Security. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/common/genericode.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/common/genericode.xsd new file mode 100644 index 000000000..04d58a4bf --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/common/genericode.xsd @@ -0,0 +1,1037 @@ + + + + + + + + Details of an agency which produces code lists or related artifacts. + + + + + Short name (without whitespace) for the agency. + + + + + Human-readable name for the agency. + + + + + Identifier for the agency. + + + + + + + User annotation information. + + + + + Human-readable information. + + + + + Machine-readable information. + + + + + + + Container for any XML content which is in a different namespace to the Schema's target namespace. + + + + + + + + Container for any human-readable XML content which is in a different namespace to the Schema's target namespace. + + + + + + Language for the human-readable XML content. + + + + + + + + Top-level (root) element for a genericode code list definition. +A code list definition defines the details of a particular (version of a) code list. + + + + + Document type for genericode code list definitions. + A code list must have at least one key, unless it is a metadata-only definition without a 'SimpleCodeList' element. + + + + + General information (metadata) for the code list. + + + + + A choice between a column set definition and a column set reference. + + + + + The only choice is a simple (explicit) code list definition. +Not used if the code list definition contains code list metadata only. + + + + + + Base URL which applies to relative location URIs. + xml:base does not apply to canonical URIs. + + + + + + Reference to a code list, possibly defined in an external document. + The code list reference must be valid. +An application may use the CanonicalVersionUri to select a local copy of the code list. +If there is no CanonicalVersionUri, the CanonicalUri may be used to select a local copy of the code list. +Otherwise the LocationUri value(s) may be tried in order, until a valid code list document is retrieved. +An application must signal an error to the user if it is not able to retrieve a code list document to match the code list reference. + + + + + User annotation for the referenced code list. + + + + + Canonical URI which uniquely identifies all versions (collectively) of the referenced code list. + Must be an absolute URI, must not be relative. + Must not be used as a de facto location URI. + + + + + Canonical URI which uniquely identifies a specific version of the referenced code list. + Must be an absolute URI, must not be relative. + Must not be used as a de facto location URI. + + + + + Suggested retrieval location for this code list, in genericode format. + + If the CanonicalVersionUri has been defined, the LocationUri must reference a genericode CodeList document. +If the CanonicalVersionUri is undefined, the LocationUri must reference a genericode CodeList Metadata document. +An application must signal an error to the user if a LocationUri does not reference the appropriate type of genericode document. + + An application must signal an error to the user if a document retrieved using a LocationUri is not in genericode format. + + + + + + Base URL which applies to relative location URIs. + xml:base does not apply to canonical URIs. + + + + + + Top-level element for the definition of a code list set. + + + + + Document type for the definition of a set of code lists. + + + + + General document information for the code list set. + + + + + Contents of the code list set. If the code list set does not have any contents, it is a CodeListSet Metadata definition. + + + + + + Base URL which applies to relative location URIs. + xml:base does not apply to canonical URIs. + + + + + + A choice between a code list reference, an inline code list set, or a code list set reference. + + + + + + + + + + Reference to a code list set, possibly defined in an external document. + The code list set reference must be valid. +An application may use the CanonicalVersionUri to select a local copy of the code list set. +If there is no CanonicalVersionUri, the CanonicalUri may be used to select a local copy of the code list set. +Otherwise the LocationUri value(s) may be tried in order, until a valid code list set document is retrieved. +An application must signal an error to the user if it is not able to retrieve a code list set document to match the code list set reference. + + + + + User annotation for the referenced code list set. + + + + + Canonical URI which uniquely identifies all versions (collectively) of the referenced code list set. + Must be an absolute URI, must not be relative. + Must not be used as a de facto location URI. + + + + + Canonical URI which uniquely identifies a specific version of the referenced code list set. + Must be an absolute URI, must not be relative. + Must not be used as a de facto location URI. + + + + + Suggested retrieval location for this code list set, in genericode format. + + If the CanonicalVersionUri has been defined, the LocationUri must reference a genericode CodeListSet document. +If the CanonicalVersionUri is undefined, the LocationUri must reference a genericode CodeListSet Metadata document. +An application must signal an error to the user if a LocationUri does not reference the appropriate type of genericode document. + + An application must signal an error to the user if a document retrieved using a LocationUri is not in genericode format. + + + + + + Base URL which applies to relative location URIs. + xml:base does not apply to canonical URIs. + + + + + + Definition of a column. + Each column of a code list defines a piece of metadata that can be specified for each item in the code list. + + + + + User information about the column. + + + + + Name(s) of the column. + + + + + URIs used to identify the column and/or the version of the column. + + + + + Data type of the column. + + + + + + ID which identifies the column within the document. + + + + + Whether the column is required or optional. + + + + + + A choice between a column definition and a column reference. + + + + + Definition of a column. + + + + + Reference to a column defined in an external column set or code list. + + + + + + + Reference to a column defined in an external column set or code list. + The column reference must be valid. +An application may use the CanonicalVersionUri to select a local copy of the code list or column set which contains the column definition. +Otherwise the LocationUri value(s) may be tried in order, until a valid code list or column set document (containing the necessary column definition) is retrieved. +An application must signal an error to the user if it is not able to retrieve a code list or column set document which contains the necessary column definition. + + + + + User annotation for the referenced column. + + + + + Identification of the external column set or code list document which contains the column set definition. + + + + + Restrictions to the data type of the referenced column. + + + + + + ID which identifies the column within this document. + + + + + ID which identifies which identifies the column within the external column set or code list. + + + + + Whether the column is required or optional. + If specified, this overrides the usage specified in the external column set or code list document. + + + + + Base URL which applies to relative location URIs. + xml:base does not apply to canonical URIs. + + + + + + Attribute set for referring to a column definition. + + + + Reference to a column ID in the document. + + + + + + Top-level element for the definition of a column set. + + + + + Definition of a column set (columns and keys for a code list). + + + + Column set definitions. + + + + + Identification of the default datatype library for the column set. + + + + + Base URL which applies to relative location URIs. + xml:base does not apply to canonical URIs. + + + + + + A choice between a column set definition and a column set reference. + + + + + Definition of a column set (columns and keys for the code list). + + + + + Reference to a column set defined in an external column set or code list document. + + + + + + + Specific details of a column set. + + + + + A choice between a column definition and a column reference. + + + + + A choice between a key definition and a key reference. + + + + + + + Document type for the definition of a column set, which is a set of code list columns and/or keys. + + + + + General document information for the column set. + + + + + Details of the column set. + + + + + + Identification of the default datatype library for the column set. + + + + + Base URL which applies to relative location URIs. + xml:base does not apply to canonical URIs. + + + + + + Reference to a column set defined in an external column set or code list document. + The column set reference must be valid. +An application may use the CanonicalVersionUri to select a local copy of the column set or code list. +Otherwise the LocationUri value(s) may be tried in order, until a valid column set or code list document is retrieved. +An application must signal an error to the user if it is not able to retrieve a column set or code list document to match the column set reference. + + + + + User annotation for the referenced column set. + + + + + Identification of the external column set or code list document which contains the column set definition. + + + + + + Base URL which applies to relative location URIs. + xml:base does not apply to canonical URIs. + + + + + + Data type definition. + + + + + User annotation for the datatype. + + + + + Facet parameter which refines the datatype. + + + + + + Unique ID for the datatype within its datatype library. + The datatype ID must not include a namespace prefix. +For the W3C XML Schema datatypes, possible datatype IDs are 'string', 'token', 'boolean', 'decimal', etc. + If the data is complex (i.e. XML), this value is set to the root element name for the XML value, or '*' if the root element name is not restricted. + + + + + URI which uniquely identifies the datatype library. + If this URI not explicitly provided, the datatype library for the enclosing column set is used. + If the data is complex (i.e. XML), this value is set to the namespace URI for the XML, or '*' if the namespace URI is not restricted. + + + + + Language from which the data is taken or derived. + + + + + + Restrictions to a data type. + The 'gc:lang' attribute may be specified only if no language is already set for the data type that is being restricted. + + + + + Facet parameter which refines the datatype. + + + + + + Language from which the data is taken or derived. + + + + + + Facet information for refining a datatype. + + + + + + Short name (token) for the datatype facet. + + + + + Long name for the datatype facet. + + + + + + + + Identification of the default datatype library for a column set. + + + + URI which uniquely identifies the default datatype library for the column set. If not provided, defaults to the URI for W3C XML Schema datatypes. + + + + + + General document information (metadata). + + + + + User annotation information. + + + + + Identification and location information (metadata). + + + + + + + Attribute set used to identify a definition within an external document. + + + + Unique ID within the external document. + The external reference must not be prefixed with a '#' symbol. + + + + + + An identifier value. Typically not a long or short name. + + + + + + + + + + Attribute set used to identify a definition within the document. + + + + Unique ID within the document. + + + + + + Identification and location information (metadata). + + + + + Various names. + + + + + Version identifier. + + + + + Canonical URI which uniquely identifies all versions (collectively). + Must be an absolute URI, must not be relative. + Must not be used as a de facto location URI. + + + + + Identification and location URIs for the version. + + + + + Agency that is responsible for publication and/or maintenance of the information. + + + + + + + Identification and location URIs. + + + + + Canonical URI which serves as a unique identifier for this version. + Must be an absolute URI, must not be relative. + Must not be used as a de facto location URI. + + + + + Suggested retrieval location for this version, in genericode format. + An application must signal an error to the user if a document retrieved using a LocationUri is not in genericode format. + + + + + + + URIs used as unique identifiers. + + + + + Canonical URI which uniquely identifies all versions collectively. + Must be an absolute URI, must not be relative. + Must not be used as a de facto location URI. + + + + + Canonical URI which uniquely identifies this version. + Must be an absolute URI, must not be relative. + Must not be used as a de facto location URI. + + + + + + + Definition of a key. +A key is a set of one or more columns whose values together provide a unique identification of each item in a code list. + Only required columns can be used for keys. + + + + + User annotation for the key. + + + + + Name(s) of the key. + + + + + URIs used to identify the key and/or the version of the key. + + + + + Reference to the document ID of a column in the key. + + + + + + ID which identifies the key within the document. + + + + + + A choice between a key definition and a key reference. + + + + + Definition of a key. + + + + + Reference to a key defined in an external column set or code list. + + + + + + + Reference to a column which forms part of a key. + + + + + User annotation for the column. + + + + + + Reference to the ID of the column within the document. + + + + + + Reference to a key defined in an external column set or code list. + The key reference must be valid. +An application may use the CanonicalVersionUri to select a local copy of the code list or column set which contains the key definition. +Otherwise the LocationUri value(s) may be tried in order, until a valid code list or column set document (containing the necessary key definition) is retrieved. +An application must signal an error to the user if it is not able to retrieve a code list or column set document which contains the necessary key definition. + + + + + User annotation for the referenced key. + + + + + Identification of the external column set or code list which contains the key definition. + + + + + + ID which identifies the key within this document. + + + + + ID which identifies which identifies the key within the external column set or code list. + + + + + Base URL which applies to relative location URIs. + xml:base does not apply to canonical URIs. + + + + + + Attributes which describe the language of a piece of text. + + + + Language code which accepts the same values as 'xml:lang'. +Unlike 'xml:lang', the scope of the language definition is not restricted to the XML content within the element where the 'lang' attribute appears. + + + + + + A human-readable name. + + + + + + Information used to identify a particular long name where multiple long names exist. + + + + + + + + URI for a resource, with support for specifying the MIME type. + + + + + + MIME type of the resource which can be retrieved from the URI. + + + + + + + + Various names. + + + + + Short name (without whitespace). + + + + + Human-readable name. + + + + + + + Attribute set which defines the usage (optional attribute). + + + + Whether the usage is required or optional. + + + + + + A choice which currently only allows a simple (explicit) code list definition. + + + + + Details of a simple code list definition. + + + + + + + Attribute set which defines the usage (required attribute). + + + + Whether the usage is required or optional. + + + + + + Row which represents an individual item in a code list. + + + + + User annotation for the row. + + + + + Column value for the row. + A value must be provided for each required column. +A value does not need to be provided for a column if the column is optional. + If a value does not have an explicit column reference, the column is taken to be the column following the column of the preceding value in the row, or the first column if the value is the first value of the row. + + + + + + + A short name without whitespace that is suitable for use in generating names for software artifacts. + Must not contain whitespace characters. + + + + + + The language from which the short name is taken or derived. + + + + + + + + Simple (explicit) code list definition. + Applications must not have any dependency on the ordering of the rows. + + + + + User annotation for the code list. + + + + + Row which represents an individual item in the code list. + + + + + + + Details of a simple code list definition. + + + + + Simple (explicit) code list definition. + + + + + + + Simple textual value. + + + + + + + + Indicates whether the usage is required or optional. + + + + + + + + + An individual code list metadata value. + + + + + User annotation for the value. + + + + + A choice between a simple textual value and a complex (structured) XML value. If the value is undefined, then neither choice is used. + + + + + + Reference to the column with which this value is associated. + + + + + + A choice between a simple textual value and a complex (structured) XML value. + + + + + Simple textual value. + The value must be valid with respect to the datatype and restrictions of the matching column. + + + + + Complex (structured) XML value. + The names of all direct child elements of the 'ComplexValue' element must match the datatype ID for the matching column, unless that ID is set to '*'. + The namespace URIs of all direct child elements of the 'ComplexValue' element must match the datatype library URI for the matching column, unless that URI is set to '*'. + + + + + + + Information which identifies one of a set of alternate values. + + + + A string which identifies one of a set of alternate values. + + + + + The language from which the value is taken or derived. + + + + + + Identification and location URIs for a version. + + + + + Canonical URI which uniquely identifies this version. + Must be an absolute URI, must not be relative. + Must not be used as a de facto location URI. + + + + + Suggested retrieval location for this version, in genericode format. + An application must signal an error to the user if a document retrieved using a LocationUri is not in genericode format. + + + + + Suggested retrieval location for this version, in a non-genericode format. +Such alternative formats are intended only as additional renditions of the code list information, not as a replacements nor as alternatives for use in application processing. + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/common/xmldsig-core-schema.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/common/xmldsig-core-schema.xsd new file mode 100644 index 000000000..8fc354bac --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/common/xmldsig-core-schema.xsd @@ -0,0 +1,326 @@ + + + + + + + + ]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/ansi-nist/2.0/ansi-nist.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/ansi-nist/2.0/ansi-nist.xsd new file mode 100644 index 000000000..2807de3ac --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/ansi-nist/2.0/ansi-nist.xsd @@ -0,0 +1,126 @@ + + + + ANSI/NIST Fingerprint and Biometric standard. + + true + + + + + + + + + Plain left thumb + + + + + Left little + + + + + Right thumb + + + + + Unused field value in record types 3-6 + + + + + Plain right four + + + + + Right middle + + + + + Left and right thumbs + + + + + Right index + + + + + Left ring + + + + + Left middle + + + + + Right little + + + + + Complete friction ridge exemplars + + + + + Left index + + + + + Plain right thumb + + + + + Plain left four + + + + + Unknown, or every finger 1-10 + + + + + Left thumb + + + + + Right ring + + + + + + + + + + + + + + + + + + + + + + + Set of possible finger position codes, most probable position first. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/ansi-nist/2.0/constraint-schema-transform.xsl b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/ansi-nist/2.0/constraint-schema-transform.xsl new file mode 100644 index 000000000..e7d714a92 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/ansi-nist/2.0/constraint-schema-transform.xsl @@ -0,0 +1,166 @@ + + + + +0 +1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/ansi_d20/2.0/ansi_d20.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/ansi_d20/2.0/ansi_d20.xsd new file mode 100644 index 000000000..956132333 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/ansi_d20/2.0/ansi_d20.xsd @@ -0,0 +1,180 @@ + + + + Motor vehicle administration codes from ANSI D20, the Data Dictionary for Traffic Record Systems, maintained by AAMVA, the American Association of Motor Vehicle Administrators. + + true + + + + + + + + + Non-incapacitating Evident Injury + + + + + Incapacitating Injury Accident + + + + + Unknown + + + + + Non-injury Accident + + + + + Possible Injury Accident + + + + + Fatal Accident + + + + + + + + + + + + + + + + Class "M" vehicles - Motorcycles, Mopeds, Motor-driven Cycles. + + + + + Class "B" vehicles - any single vehicle with a GVWR of 26,001 or more pounds, or any such vehicle towing a vehicle not in excess of 10,000 pounds GVWR [49 CFR 383.91(a)(2)]. (Holders of a Class B license may, with the appropriate endorsement, operate all Class C vehicles). + + + + + Class "C" vehicles - any single vehicle, or combination of vehicles, that meets neither the definition of Group A nor that of Group B, but that either is designed to transport 16 or more passengers including the driver, or is used in the transportation of materials found to be hazardous for the purposes of the Hazardous Materials Transportation Act and which require the motor vehicle to be placarded under the Hazardous Materials Regulations (49 CFR part 172, subpart F) [49 CFR 383.91(a)(3)]. + + + + + Class "A" vehicles - any combination of vehicles with a GCWR of 26,001 or more pounds, provided the GVWR of the vehicle(s) being towed is in excess of 10,000 pounds [49 CFR 383.91(a)(1)]. (Holders of a Class A license may, with the appropriate endorsement, operate all Class B & C vehicles). + + + + + + + + + + + + + + + + Other + + + + + Limited - other + + + + + Farm Waiver + + + + + Vehicles without Air Brakes + + + + + Mechanical Aid + + + + + Except Tractor-Trailer + + + + + Corrective lenses must be worn + + + + + CDL Intrastate Only + + + + + Outside Mirror + + + + + Automatic Transmission + + + + + Prosthetic Aid + + + + + Limit to Daylight Only + + + + + + + + + + + + + + + + Hazardous Materials + + + + + Unknown + + + + + No Hazardous Materials + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/ansi_d20/2.0/constraint-schema-transform.xsl b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/ansi_d20/2.0/constraint-schema-transform.xsl new file mode 100644 index 000000000..7bfe2b84f --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/ansi_d20/2.0/constraint-schema-transform.xsl @@ -0,0 +1,181 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/appinfo/2.0/appinfo.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/appinfo/2.0/appinfo.xsd new file mode 100644 index 000000000..7688d2819 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/appinfo/2.0/appinfo.xsd @@ -0,0 +1,94 @@ + + + + The appinfo schema provides support for high level + data model concepts and additional syntax to support the NIEM + conceptual model and validation of NIEM-conformant + instances. + + + + The Resource element provides a method for + application information to define a name within a schema, without the + name being bound to a schema component. This is used by the + structures schema to define names for structures:Object and + structures:Association. + + + + + + + + The Deprecated element provides a method for + identifying components as being deprecated. A deprecated component is + one which is provided, but whose use is not + recommended. + + + + + + + + + + + + + + The Base element provides a mechanism for + indicating base types and base elements in schema, for the cases in + which XML Schema mechanisms are insufficient. For example, it is used + to indicate Object or Association bases. + + + + + + + + + The ReferenceTarget element indicates a NIEM type + which may be a target (that is, a destination) of a NIEM reference + element. It may be used in combinations to indicate a set of valid + types. + + + + + + + + + The AppliesTo element is used in two ways. First, + it indicates the set of types to which a metadata type may be + applied. Second, it indicates the set of types to which an + augmentation element may be applied. + + + + + + + + + The ConformantIndicator element may be used in two + ways. First, it is included as application information for a schema + document element to indicate that the schema is NIEM-conformant. + Second, it is used as application information of a namespace import + to indicate that the schema is not + NIEM-conformant. + + + + + The ExternalAdapterTypeIndicator element indicates + that a complex type is an external adapter type. Such a type is one + that is composed of elements and attributes from non-NIEM-conformant + schemas. The indicator allows schema processors to switch to + alternative processing modes when processing NIEM-conformant versus + non-NIEM-conformant content. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/domains/jxdm/4.0/constraint-schema-transform.xsl b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/domains/jxdm/4.0/constraint-schema-transform.xsl new file mode 100644 index 000000000..2a6796773 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/domains/jxdm/4.0/constraint-schema-transform.xsl @@ -0,0 +1,708 @@ + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + unbounded + + + + + 0 + 1 + + + + + 0 + unbounded + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + unbounded + + + + + 1 + 1 + + + + + 0 + unbounded + + + + + 0 + unbounded + + + + + 0 + unbounded + + + + + 0 + unbounded + + + + + 0 + 1 + + + + + 0 + unbounded + + + + + 0 + unbounded + + + + + 0 + unbounded + + + + + 0 + unbounded + + + + + 0 + unbounded + + + + + 0 + unbounded + + + + + 0 + unbounded + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + unbounded + + + + + 0 + unbounded + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 1 + 1 + + + + + 1 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 1 + unbounded + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + 1 + + + + + 0 + unbounded + + + + + 0 + 1 + + + + + 0 + unbounded + + + + + 0 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/domains/jxdm/4.0/jxdm.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/domains/jxdm/4.0/jxdm.xsd new file mode 100644 index 000000000..894247e3c --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/domains/jxdm/4.0/jxdm.xsd @@ -0,0 +1,1056 @@ + + + + Justice + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + An association between an activity and a location. + + + + + Details about a single case heard by the Court of Appeals (Intermediate Court of Appeal) or Supreme Court (The Court of Last Resort). This case does not retry the original case but determines whether the original case was tried properly and the defendant received a fair trial. + + + + + A request filed with an appellate court to start an appellate case. + + + + + A statement explaining the reason for an appeal. + + + + + An original case that is being retried in an appellate court. + + + + + Details about the apprehension of a subject by a peace official based on an observed or a reported violation of a law or ordinance, an outstanding arrest warrant, or probable cause information. + + + + + An agency which employs the arresting official. + + + + + A records management system number of the originating case agency for an arrest. + + + + + A bail amount on a schedule recommended according to the offense(s). + + + + + A blood-alcohol percentage reading from a Blood Alcohol Test (BAC Test). + + + + + A formal allegation of a violation of a statute and/or ordinance in association with an arrest. + + + + + A location where a subject was arrested. + + + + + A peace official who makes an arrest. + + + + + A person who is arrested. + + + + + A court authorized order which commands a peace official to arrest a subject and bring that subject before the court. + + + + + Details about an administrative step taken after an arrested subject is brought to a police station or detention facility, which involves entry of the subject's name and other relevant facts on the police "blotter", and which may also include photographing, fingerprinting, and the like. + + + + + A booking identifier of the originating case agency. + + + + + Additional information about a case. + + + + + + + + A charge or accusation a person is being tried for in a court of law. + + + + + A court of law in which the case is being tried. + + + + + A court occurrence. + + + + + An entity being charged or sued in a court of law. + + + + + An attorney who defends a case. + + + + + The attorney in a court case representing the party that filed a petition for a court order or writ requiring the respondent to take some action, halt an activity or obey a courts direction. Representative of the party seeking action from the court. In such matters the moving party (the one filing the petition) is often called the "petitioner." The attorney representing a person requesting for filing a Request or Petition for Protection filed by a petitioner. + + + + + An entity that brings charges or a suit against another in a court of law. Can be either a victim in a criminal case or a plaintiff in a civil case. + + + + + A judicial official assigned to a case. + + + + + A description of a case at a previous stage. + + + + + Details about a justice official's involvement in a court case. + + + + + A unique identifier a justice official uses to identify a case. + + + + + A role a justice official played in a court case. + + + + + A miscellaneous entity involved in a court case. + + + + + An attorney who prosecutes a case. + + + + + The attorney in a court case representing the party that is required to answer a petition for a court order or writ requiring the respondent to take some action, halt an activity or obey a courts direction. In such matters the moving party (the one filing the petition) is often called the "petitioner." Thus, the respondent is equivalent to a defendant in a lawsuit. On an appeal, the party who must respond to an appeal by the losing party in the trial court (called "appellant") in the appeals court. The accused in a domestic violence case or civil action; a person responding to a Request or Petition for Protection filed by a petitioner. + + + + + An entity in a court case that is required to answer a petition for a court order or writ requiring the respondent to take some action, halt an activity or obey a courts direction. In such matters the moving party (the one filing the petition) is usually called the petitioner. Thus, the respondent is equivalent to a defendant in a lawsuit. On an appeal, the party who must respond to an appeal by the losing party in the trial court (called appellant) in the appeals court. The accused in a domestic violence case or civil action; a person responding to a Request or Petition for Protection filed by a petitioner. + + + + + Details about a formal allegation that a specific person has committed a specific offense. + + + + + + + + Details about a formal allegation that a specific person has committed a specific offense. + + + + + A degree of involvement a person is being charged with committing in an offense. + + + + + A degree of a charge. + + + + + A plain language description of a charge. + + + + + Details about the results or processing of a charge. + + + + + A formal allegation, contained in at least one charging instrument, that a defendant has violated a statute and/or ordinance in association with an incident. + + + + + An offense within the National Crime Information Center (NCIC) system. + + + + + Additional information that clarifies a charge. + + + + + A sequentially assigned number for charge tracking purposes.. + + + + + A severity level of a charge. + + + + + A factor that has enhanced a charge, making it a more serious offense. + + + + + A unique identifier of a law, rule, or ordinance within a jurisdiction that a person is accused of violating. + + + + + Details about an official summons to appear in court or pay a fine given to a subject from a peace official due to a subjects violation or infraction of a law. + + + + + An organization for whom the citation issuing official is employed. + + + + + True if a citation can be dismissed if certain conditions are met; false otherwise. + + + + + A peace official who gives a citation to a subject. + + + + + A person who violates a law and receives a citation. + + + + + An activity that is a violation of a law or ordinance that results in a subject being given a citation. + + + + + Details about a court or a unit of a court responsible for trying justice proceedings. + + + + + + + + Details about an appearance required of a party in a court of law on a certain date. + + + + + A date on which a party must appear in court. + + + + + Details about a court occurrence. + + + + + A judge associated with a court event. + + + + + Details about the days for which a court event is scheduled. + + + + + A unique identifier for a court case event record. + + + + + A name of a unit of a court. + + + + + Details about a direction of a judge not included in a judgement, which determines some point or directs some step in proceedings. + + + + + A state of a court order. + + + + + An association between a document and a court. + + + + + A severity level of an accident, based on the most intense injury to any person or, if none were injured, so designating. + + + + + A severity level of an accident, based on the most intense injury to any person or, if none were injured, so designating. + + + + + + + + Details about an incident involving a vehicle. + + + + + A determination of whether the incident occurred while the driver was operating a commercial vehicle that was carrying hazardous materials (that required a placard). + + + + + A determination of whether the incident occurred while the driver was operating a commercial vehicle that was carrying hazardous materials (that required a placard). + + + + + + + + True if a laser was involved in the detection of an incident; false otherwise. + + + + + A legally designated speed limit in the area where an incident occurred. + + + + + A number of people in a vehicle excluding the driver when an incident occurred. + + + + + True if radar was involved in the detection of an incident; false otherwise. + + + + + A speed a vehicle was moving at when an incident occurred. + + + + + A federal or state organization with jurisdiction over a person's driving privileges. + + + + + + + + An identifier used to refer to an enforcement official. + + + + + Dates and times an enforcement official is unavailable for scheduling. + + + + + An enforcement unit to which an enforcement officer is assigned. + + + + + A name of an enforcement unit. + + + + + An area, region, or unit in which a unique identification is issued. + + + + + + + + Additional information about an incident. + + + + + + + + A property item that was damaged in an incident. + + + + + + + + True if an official was present when an incident occurred; false otherwise. + + + + + True if an incident involved a traffic accident; false otherwise. + + + + + An identifier assigned to a judicial official after meeting the requirement to practice law in a region. + + + + + Details about a legal capacity in which a judicial official is able to practice law. + + + + + An act or a course of action which may constitute a violation of a criminal statute, ordinance or rule that occurred during an incident. + + + + + Additional information about an organization. + + + + + + + + A unique identifier assigned to a justice-related organization by the federal government. + + + + + A number issued by an agency's automatic fingerprint system based on submitted fingerprints other than PersonFBIID and PersonSSID. + + + + + Additional information about a person. + + + + + + + + An association between a person and a charge issued to that person. + + + + + An association between a person and a driver license. + + + + + A number issued by the FBI's Automated Fingerprint Identification System (AFIS) based on submitted fingerprints. + + + + + A representation or an encoding of the identifying characteristics of a person's palm print. + + + + + A number issued by a state Automated Fingerprint Identification System (AFIS) based on submitted fingerprints. + + + + + Additional information about a property item. + + + + + + + + A monetary value or worth of damage that occurred to a property item. + + + + + A description of something that happened in a case in a register of actions entry. + + + + + Identification information identifying a person as a certain kind of registered offender. + + + + + A person who is required to register as a sexual offender. + + + + + Details about a punishment resulting from conviction of charges in a court case. + + + + + A specific charge in a court case resulting in a sentence. + + + + + A description of the sentence being imposed. + + + + + A duration of a sentence. Specified as either a specific term in days-months-years or as a minimum - maximum range. + + + + + A narrative account of a severity level assigned to a charge. + + + + + A unique identifier of a Severity Level. + + + + + Details about a unique identifier of a law, rule, or ordinance within a jurisdiction. + + + + + + + + Details about a unique identifier of a law, rule, or ordinance within a jurisdiction. + + + + + An identifier of a set of laws for a particular jurisdiction. + + + + + An identifier of a section or category within a code book. + + + + + A description of a statute. + + + + + Details about an area in which a statute applies. + + + + + A level of crime a statute applies to. + + + + + An identification of a criminal offense within a code book. + + + + + A person who is involved or suspected of being involved in an incident or criminal activity. + + + + + + + + A person who is involved or suspected of being involved in an incident or criminal activity. + + + + + An assigned number or string that identifies a subject. + + + + + An incarceration, detention, or other form of supervision a subject is currently undergoing. + + + + + Details about a duration length specified as either a specific term in days-months-years or as a minimum - maximum range. + + + + + A specific range or duration of a term. + + + + + Details about a person, organization, or other entity who suffers injury, loss, or death as a result of an incident. + + + + + + + + Details about a statute that has been violated and associated information. + + + + + A limitation placed on the extradition of a subject from an area outside the immediate jurisdiction of the issuing court. + + + + + A kind of limitation placed on the extradition of a subject from an area outside the immediate jurisdiction of the issuing court. + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/domains/screening/2.0/constraint-schema-transform.xsl b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/domains/screening/2.0/constraint-schema-transform.xsl new file mode 100644 index 000000000..5c57beff6 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/domains/screening/2.0/constraint-schema-transform.xsl @@ -0,0 +1,118 @@ + + + + +0 +unbounded + + + + +0 +unbounded + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/domains/screening/2.0/screening.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/domains/screening/2.0/screening.xsd new file mode 100644 index 000000000..1cc298d7a --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/domains/screening/2.0/screening.xsd @@ -0,0 +1,46 @@ + + + + The People Screening domain provides harmonized information sharing content within the Screening Portfolio of DHS. The Screening namespace is initially being populated with person screening information for immigrant and non-immigrant person types who have been encountered and identified by the Screening Portfolio Components. Screening expands on encounter-related NIEM elements currently included in the Immigration and Intelligence domains. + + true + + + + + + + + + + + + + + + + + + + An indicator indicating whether the Notice of Divorce of MARRIAGE has been received by the Department of Homeland Security + + + + + The date on which the PERSON ALERT is no loner effective. + + + + + Additional information about a marriage. + + + + + + + + The name of the city where the MARRIAGE occurred. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/fbi/2.0/constraint-schema-transform.xsl b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/fbi/2.0/constraint-schema-transform.xsl new file mode 100644 index 000000000..fdb58969f --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/fbi/2.0/constraint-schema-transform.xsl @@ -0,0 +1,25090 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/fbi/2.0/fbi.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/fbi/2.0/fbi.xsd new file mode 100644 index 000000000..5d426f8df --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/fbi/2.0/fbi.xsd @@ -0,0 +1,41801 @@ + + + + FBI code lists for National Crime and Information Center (NCIC-2000), National Incident-Based Reporting System (NIBRS), and National Law Enforcement Data Exchange (N-DEx). + + true + + + + + + + + + FULL EXTRADITION UNLESS OTHERWISE NOTED IN THE MIS FIELD + + + + + FULL EXTRADITION UNLESS OTHERWISE NOTED IN THE MIS FIELD (default value) + + + + + EXTRADITION - SURROUNDING STATES ONLY + + + + + EXTRADITION - SURROUNDING STATES ONLY + + + + + NO EXTRADITION + + + + + PENDING EXTRADITION - SEE MIS FIELD + + + + + LIMITED EXTRADITION - SEE MIS FIELD + + + + + FULL EXTRADITION + + + + + EXTRADITION - SURROUNDING STATES ONLY + + + + + NO EXTRADITION + + + + + LIMITED EXTRADITION SEE MIS FIELD (requires data in the MIS Field) + + + + + LIMITED EXTRADITION SEE MIS FIELD (requires data in the MIS Field) + + + + + NO EXTRADITION + + + + + PENDING EXTRADITION SEE MIS FIELD (requires data in the MIS Field) + + + + + PENDING EXTRADITION SEE MIS FIELD (requires data in the MIS Field) + + + + + + + + + + + + + + + + MULTICOLORED + + + + + GRAY + + + + + BLACK + + + + + MAROON + + + + + GREEN + + + + + BLUE + + + + + HAZEL + + + + + BROWN + + + + + UNKNOWN + + + + + PINK + + + + + + + + + + + + + + + + unknown + + + + + Hispanic + + + + + non Hispanic + + + + + + + + + + + + + + + + Orange + + + + + Pink + + + + + Blond or Strawberry + + + + + Gray or Partially Gray + + + + + UNKNOWN OR COMPLETELY BALD + + + + + Sandy + + + + + Brown + + + + + Blue + + + + + Black + + + + + Red or Auburn + + + + + White + + + + + Green + + + + + Purple + + + + + + + + + + + + + + + + British Virgin Islands + + + + + West Bank + + + + + Lithuania + + + + + Bassas Da India (French possession) + + + + + CITIZEN BAND POTTAWATOMIE TRIBE + + + + + Morelos + + + + + Bonaire (Netherlands Antilles) + + + + + Guam + + + + + Libya + + + + + Guatemala + + + + + Ukraine + + + + + California + + + + + Tajikistan + + + + + New Zealand + + + + + Slovenia + + + + + French Guiana + + + + + Saudi Arabia + + + + + Howland Island + + + + + Iran + + + + + Bolivia + + + + + North Carolina + + + + + Martinique + + + + + Wisconsin + + + + + Kingman Reef + + + + + French Southern and Antartic Lands + + + + + Indonesia (now includes Portuguese Timor) + + + + + Sonora + + + + + Midway Islands + + + + + Alaska + + + + + New Brunswick + + + + + Mauritius + + + + + Mariana Islands + + + + + Armenia + + + + + Maryland + + + + + Macao (now spelled Macau) + + + + + South Africa + + + + + Prince Edward Island + + + + + Guyana + + + + + Liberia + + + + + Mayotte + + + + + Uganda + + + + + Chile + + + + + Hong Kong + + + + + Queretaro + + + + + District of Columbia + + + + + Manahiki Island + + + + + Ireland (does not include NorthernIreland, see Northern Ireland) + + + + + Japan + + + + + Seychelles + + + + + Cape Verde Islands + + + + + Luxembourg + + + + + Republic of Congo, Brazzaville + + + + + Costa Rica + + + + + India + + + + + Fiji + + + + + Tonga + + + + + Svalbard + + + + + Tamaulipas + + + + + Ellice Islands (now Tuvalu) + + + + + Saint Helena + + + + + Parcel Islands + + + + + Brunei + + + + + Tunisia + + + + + Nicaragua + + + + + Devil's Lake Sioux Tribe + + + + + South Dakota + + + + + Liechtenstein + + + + + Niue + + + + + Gabon + + + + + Russia + + + + + Northern Ireland + + + + + Dominican Republic + + + + + New Guinea (now Papua New Guinea) + + + + + Arkansas + + + + + Slovakia + + + + + CHEYENNE & ARAPAHO TRIBES + + + + + Coral Sea Islands (Australian territory) + + + + + Qatar + + + + + Saint Vincent and the Grenadines + + + + + Israel + + + + + Equatorial Guinea + + + + + Sweden + + + + + Chihuahua + + + + + Philippines + + + + + Jordan + + + + + Gambia, The + + + + + WYANDOTTE TRIBE + + + + + Hungary + + + + + SEMINOLE NATION + + + + + Pennsylvania + + + + + Maldives + + + + + U.S. Virgin Islands + + + + + Spain + + + + + Kenya + + + + + Utah + + + + + Tromelin Island (French possession) + + + + + Nayarit + + + + + Rhodesia (now Zimbabwe) + + + + + Cyprus + + + + + Belgium + + + + + Nevada + + + + + PAWNEE TRIBE + + + + + Alberta + + + + + Togo + + + + + Michoacan + + + + + Madagascar (included in Malagasy Republic) + + + + + Nepal + + + + + Socialist Republic of Vietnam + + + + + Europa Island (French possession) + + + + + Czech Republic + + + + + Mexico (State) + + + + + Ontario + + + + + Okinawa + + + + + Clipperton Island (French possession) + + + + + APACHE TRIBE + + + + + Eretria + + + + + Caroline Islands + + + + + Taiwan, Republic of China + + + + + Baker Island + + + + + Puebla + + + + + Leech Lake Band of Chippewa + + + + + Colombia + + + + + Idaho + + + + + Palmyra Atoll + + + + + Sinaloa + + + + + Palau, Republic of + + + + + West Virginia + + + + + Benin (formerly Dahomey) + + + + + Aruba (now independent of NetherlandsAntilles) + + + + + Iraq + + + + + French Polynesia + + + + + Western Samoa + + + + + Djibouti + + + + + New Caledonia + + + + + Louisiana + + + + + Monaco + + + + + New Hampshire + + + + + Quintana Roo + + + + + Syria + + + + + Sac & Fox + + + + + Iowa + + + + + Central African Republic + + + + + Burma + + + + + Guinea + + + + + Pitcairn,Henderson, Ducie, and OenoIslands + + + + + Nevis and Saint Christopher "Kitts" + + + + + Norway + + + + + Kuwait + + + + + Trucial States (now United Arab Emirates) + + + + + Egypt (formerly United Arab Republic) + + + + + Jersey + + + + + Bahrain/Bahrein + + + + + Reunion + + + + + Dominica + + + + + Maine + + + + + North Dakota + + + + + Yukon (Territory) + + + + + Gilbert Islands (now Kiribati) + + + + + Honduras + + + + + Namibia (South-West Africa) + + + + + OTOE-MISSOURIA TRIBE + + + + + PONCA TRIBE + + + + + Rhode Island + + + + + Ceylon (Now Sri Lanka) + + + + + Botswana + + + + + Marshall Islands + + + + + MIAMI TRIBE + + + + + Poland + + + + + Gibraltar + + + + + Burkina Faso (known as Burkina,formerly Upper Volta) + + + + + Kiowa + + + + + OSAGE NATION + + + + + Tennessee + + + + + Greenland + + + + + Falkland Islands + + + + + North Korea + + + + + Red Lake + + + + + Guernsey + + + + + San Marino + + + + + England + + + + + Argentina + + + + + Malta + + + + + New York + + + + + Croatia + + + + + Cayman Islands + + + + + Absentee Shawnee + + + + + Oregon + + + + + South Carolina + + + + + Jan Mayen + + + + + Swaziland + + + + + New Mexico + + + + + Kentucky + + + + + Cook Islands + + + + + British Solomon Islands (now SolomonIslands) + + + + + Baja California (Northern Section) + + + + + Vermont + + + + + Bahamas, The + + + + + Panama + + + + + Cameroon + + + + + Bermuda + + + + + Portugal + + + + + Chad + + + + + Iceland + + + + + Colorado + + + + + Navassa Island + + + + + Cuba + + + + + Federated States of Micronesia + + + + + Rwanda + + + + + San Luis Potosi + + + + + Sao Tome and Principe + + + + + Bhutan + + + + + Congo Kinshasa, now Zaire + + + + + Macedonia + + + + + Comoros (or Comoros Islands) + + + + + Morocco + + + + + Nigeria + + + + + Senegal + + + + + Guadeloupe + + + + + Shakopee + + + + + Georgia + + + + + Ethiopia + + + + + Pakistan + + + + + United States of America (USA) (Should beused in the following circumstances:1. To indicate the LIS + + + + + Delaware + + + + + Jalisco + + + + + Washington + + + + + Switzerland + + + + + Yucatan + + + + + Menominee + + + + + Thailand + + + + + Lesotho + + + + + Manitoba + + + + + Russian Federation + + + + + Georgia + + + + + Algeria + + + + + Chiapas + + + + + Spratly Islands + + + + + Connecticut + + + + + Faroe Islands + + + + + Surinam + + + + + Andorra + + + + + Baja California (Southern Section) + + + + + Uzbekistan + + + + + Missouri + + + + + Balearic Islands + + + + + Florida + + + + + Bosnia and Hercegovenia + + + + + Ashmore and Cartier Islands + + + + + Republic of Yemen + + + + + El Salvador + + + + + France + + + + + Albania + + + + + Michigan + + + + + Hawaii + + + + + Antigua and Barbuda (formerly Antigua) + + + + + Mexico (See separate list of MexicanStates; use code MM only when state isunknown) + + + + + Hidalgo + + + + + Angola + + + + + Tanzania, United Republic of + + + + + LATVIA + + + + + Austria + + + + + Kansas + + + + + Tuamotu Archipelago + + + + + Sierre Leone (Sierra Leone) + + + + + Malawi + + + + + Cote d'Ivoire (Ivory Coast) + + + + + Peru + + + + + Haiti + + + + + Oglala Sioux + + + + + Burundi + + + + + Laos + + + + + Bulgaria + + + + + Indiana + + + + + Oaxaca + + + + + Byelarus + + + + + Oklahoma + + + + + West Indies (for West Indies Islands notfound separately listed) + + + + + Azores Islands + + + + + Mozambique + + + + + Glorioso Islands (French possession) + + + + + South Korea + + + + + Johnston Island + + + + + Ohio + + + + + Turtle Mtn. Band of Chipewa + + + + + Newfoundland (includes Labrador) + + + + + South Georgia and the South SandwichIslands + + + + + Scotland + + + + + Niger + + + + + Guerrero + + + + + Christmas Island + + + + + Saint Lucia + + + + + Singapore + + + + + Colima + + + + + Distrito Federal (Mexico, D. F.) + + + + + Jamaica + + + + + Australia + + + + + Kyrgyzstan + + + + + IOWA TRIBE + + + + + Isle of Man + + + + + Venezuela + + + + + Juan de Nova Island + + + + + Nauru + + + + + WICHITA TRIBE + + + + + All others (Any foreign country/dependency/territory not included inthe above abbreviation list is t + + + + + Nova Scotia + + + + + Canal Zone + + + + + Veracruz + + + + + Somalia + + + + + MUSCOGEE (CREEK) TRIBE + + + + + Illinois + + + + + Canada(See separate list of CanadianProvinces; use code CD only whenprovince is unknown.) + + + + + Germany (East Germany: 1945-1989,for reference only)(West Germany: 1945-1989, for referenceonly) + + + + + Grenada + + + + + Italy (includes Sicily and Sardinia) + + + + + Azerbaijan + + + + + Coahuila + + + + + Uruguay + + + + + Malaysia + + + + + COMANCHE NATION + + + + + Cambodia (formerly Khmer Republic& Kampuchea) + + + + + KICKAPOO TRIBE + + + + + Belize (formerly British Honduras) + + + + + Norfolk Island + + + + + Guinea-Bissau (formerly Portuguese Guinea) + + + + + Canary Islands + + + + + Mille Lacs + + + + + Saint Pierre and Miquelon + + + + + Lac du Flambeau Band of Lake SuperiorChippewa + + + + + Madeira Islands + + + + + Tlaxcala + + + + + New Hebrides (now Vanuatu) + + + + + SENECA-CAYUGA TRIBES + + + + + Denmark + + + + + Sudan + + + + + Greece + + + + + Zambia + + + + + Romania/Rumania + + + + + Massachusetts + + + + + Wyoming + + + + + Holland (Netherlands) + + + + + Bangladesh + + + + + Lebanon + + + + + Nebraska + + + + + Virginia + + + + + British Indian Ocean Territory + + + + + Afghanistan + + + + + Wake Island + + + + + Alabama + + + + + Oman + + + + + New Jersey + + + + + Turkmenistan + + + + + Anguilla + + + + + Spanish Sahara (now Western Sahara) + + + + + Saskatchewan + + + + + Brazil + + + + + Puerto Rico + + + + + Kazakhstan + + + + + Tabasco + + + + + Turkey + + + + + Arizona + + + + + White Earth + + + + + Heard Island and McDonald Island + + + + + Nuevo Leon + + + + + Oneida Tribe of Indians of Wisconsin + + + + + Ecuador + + + + + Vatican City + + + + + Durango + + + + + Zacatecas + + + + + Trinidad and Tobago + + + + + Unknown Place of Birth (for use in IIIrecords only) + + + + + Mali + + + + + Estonia + + + + + Campeche + + + + + Texas + + + + + Trust Territory of the Pacific Islands + + + + + Mauritania + + + + + Guanajuato + + + + + Aguascalientes + + + + + Moldova + + + + + British Columbia + + + + + Turks and Calcos Islands + + + + + Barbados + + + + + Yugoslavia + + + + + Wallis and Futuna (French territory) + + + + + Tokelau + + + + + Montana + + + + + Montserrat + + + + + Fond du Lac + + + + + Mississippi + + + + + Northwest Territories + + + + + People's Republic of China + + + + + Jarvis Island + + + + + Paraquay + + + + + Ghana + + + + + Finland + + + + + Gaza + + + + + American Samoa (Islands) + + + + + Mongolia + + + + + Wales + + + + + Quebec + + + + + Bouvet Island (Norwegian territory) + + + + + Cocos (Keeling) Islands (Australiandependency) + + + + + Minnesota + + + + + + + + + + + + + + + + NORTH DAKOTA + + + + + VERMONT + + + + + BRITISH COLUMBIA + + + + + NEVADA + + + + + ITALY + + + + + ILLINOIS + + + + + MEXICO CITY + + + + + PUERTO RICO + + + + + MASSACHUSETTS + + + + + OKLAHOMA + + + + + PENNSYLVANIA + + + + + MONTANA + + + + + SOUTH CAROLINA + + + + + IOWA + + + + + HAWAII + + + + + FLORIDA + + + + + MISSOURI + + + + + NEW YORK + + + + + CALIFORNIA + + + + + WEST VIRGINIA + + + + + COLORADO + + + + + UTAH + + + + + TENNESSEE + + + + + MICHIGAN + + + + + VIRGINIA + + + + + ALABAMA + + + + + ROYAL CANADIAN MP + + + + + NEW BRUNSWICK + + + + + ALASKA + + + + + SOUTH DAKOTA + + + + + IDAHO + + + + + TEXAS + + + + + ARIZONA + + + + + ALBERTA + + + + + SASKATCHEWAN + + + + + NEW HAMPSHIRE + + + + + LOUISIANA + + + + + GEORGIA + + + + + MINNESOTA + + + + + MAINE + + + + + NEW MEXICO + + + + + QUEBEC + + + + + WASHINGTON + + + + + NORTH CAROLINA + + + + + ARKANSAS + + + + + OTHER CANADA + + + + + KENTUCKY + + + + + GUAM + + + + + WYOMING + + + + + MISSISSIPPI + + + + + VIRGIN ISLANDS + + + + + NORTHWEST TERRITORIES + + + + + MARYLAND + + + + + YUKON + + + + + OREGON + + + + + DELAWARE + + + + + NEW JERSEY + + + + + PRINCE EDWARD ISLAND + + + + + CONNECTICUT + + + + + WASHINGTON D.C. + + + + + NEWFOUNDLAND + + + + + MANITOBA + + + + + UNITED STATES + + + + + KANSAS + + + + + RHODE ISLAND + + + + + NEBRASKA + + + + + ONTARIO + + + + + INDIANA + + + + + OHIO + + + + + WISCONSIN + + + + + ENGLAND + + + + + NOVA SCOTIA + + + + + + + + + + + + + + + + SEX ASSLT - SODOMY-GIRL-STGARM + + + + + DRIVING UNDER INFLUENCE ALCOHOL + + + + + EXPLOITATION/ENTICEMENT + + + + + KICKBACK - GIVING + + + + + SPORTS TAMPERING + + + + + OBSCENE MATERIAL - MFR + + + + + HOMICIDE - WILLFUL KILL-PUB OFF-WEAPON + + + + + DRUGS - MISBRANDED + + + + + ESTABLISH GAMBLING PLACE + + + + + MARIJUANA - POSSESS + + + + + KIDNAP ADULT TO SEXUALLY ASSLT + + + + + SEX ASSAULT-ELDERLY + + + + + EMBEZZLE - PUBLIC PROP + + + + + NEGLECT ELDERLY + + + + + MARIJUANA - PRODUCING + + + + + PERJURY - SUBORNATION OF + + + + + SEX OFFENSE + + + + + THEFT OF US GOVT PROP + + + + + THEFT VEH BY BAILEE + + + + + FRAUD - FALSE STATEMENT + + + + + EXPLOSIVES - POSSESSING + + + + + KIDNAP MINOR + + + + + RAPE WITH WEAPON + + + + + HOMICIDE - WILLFUL KILL-FAMILY-GUN + + + + + CARD GAME + + + + + COMPOUNDING CRIME + + + + + AGGRAV ASSLT - PUB OFF-STGARM + + + + + COSMETICS - ADULTERATED + + + + + LIQUOR TAX + + + + + FORGERY + + + + + CONDIT RELEASE VIOLATION + + + + + ROBBERY - BUSINESS-STGARM + + + + + PROSTITUTION + + + + + LIQUOR - TRANSPORT + + + + + HALLUCINOGEN - POSSESS + + + + + THREAT - FEDERAL PROTECTEES + + + + + RIOT - ENGAGING IN + + + + + MANDATORY RELEASE VIOLATION + + + + + HOMICIDE - NEGLIG MANSL-WEAPON + + + + + INCEST WITH MINOR + + + + + OPIUM OR DERIV - POSSESS + + + + + SEXUAL EXPLOITATION OF MINOR-EXHIBITION OF MINOR + + + + + DAMAGE PROPERTY + + + + + KIDNAP ADULT + + + + + LOTTERY - OPERATING + + + + + HOMOSEXUAL ACT WITH WOMAN + + + + + WITNESS - DECEIVING + + + + + SEX ASSLT - SODOMY-MAN-WEAPON + + + + + TRANSPORT TOOLS FOR FORGERY/COUNTERFEITING + + + + + SEXUAL EXPLOITATION OF MINOR-VIA TELECOMMUNICATIONS + + + + + VEHICLE THEFT + + + + + PUBLIC ORDER CRIMES SEE MIS + + + + + SMUGGLE CONTRABAND INTO PRISON + + + + + RESISTING OFFICER + + + + + DIVULGE MESSAGE CONTENTS + + + + + OPIUM OR DERIV - SELL + + + + + BESTIALITY + + + + + FORCIBLE PURSE SNATCHING + + + + + MISCONDUCT - JUDIC OFFICER + + + + + MILITARY + + + + + RAPE - GUN + + + + + AGGRAV ASSLT - FAMILY-STGARM + + + + + DAMAGE PROP - PRIVATE + + + + + MILITARY DESERTION + + + + + SEXUAL EXPLOITATION OF MINOR-MATERIAL-PHOTOGRAPH + + + + + ROBBERY - RESID-GUN + + + + + RIOT - INCITING + + + + + EXTORT - THREAT DAMAGE PROP + + + + + SALES TAX + + + + + PASS FORGED + + + + + LIQUOR - MFR + + + + + LARC - FROM AUTO + + + + + OBSCENE MATERIAL - DISTRIB + + + + + ARSON - BUSINESS-DEFRAUD INSURER + + + + + LICENSING - REGISTRATION WEAPON + + + + + ARSON - PUB-BLDG + + + + + SABOTAGE + + + + + ENTICEMENT OF MINOR FOR INDECENT PURPOSES-VIA TELECOMMUNICATIONS + + + + + CARRYING CONCEALED WEAPON + + + + + DISORD CONDUCT + + + + + GAMBLING DEVICE + + + + + SYNTH NARCOTIC - SMUGGL + + + + + FORGERY OF CHECKS + + + + + FREQUENT HOUSE ILL FAME + + + + + DIVULGE EAVESDROP INFO + + + + + POSSESS TOOLS FOR FORGERY/COUNTERFEITING + + + + + CRUELTY TOWARD DISABLED + + + + + RECEIV STOLEN VEH + + + + + AGGRAV ASSLT - POL OFF-WEAPON + + + + + AGGRAV ASSLT - NONFAMILY-GUN + + + + + SYNTH NARCOTIC + + + + + RAPE - STRONGARM + + + + + COMMERCIAL SEX - HOMOSEXUAL PROSTITUTION + + + + + HIT AND RUN + + + + + AGGRAV ASSLT - POL OFF-GUN + + + + + BURGL TOOLS - POSSESS + + + + + ABORTIFACIENT + + + + + OBSTRUCT POLICE + + + + + EXTORTION + + + + + CONSERVATION - BIRDS + + + + + ESCAPE SEE MIS + + + + + LARC - PARTS FROM VEH + + + + + RECEIVE STOLEN PROP + + + + + SEX ASSAULT-DISABLED + + + + + TRANSPORT INTERSTATE FOR COMMERCIALIZED SEX + + + + + COCAINE - SELL + + + + + OBSCENE MATERIAL + + + + + CONSERVATION - LICENSE-STAMP + + + + + POSSESS STOLEN PROP + + + + + COUNTERFEITING + + + + + AIDING PRISONER ESCAPE SEE MIS + + + + + HOMICIDE - WILLFUL KILL-WEAPON + + + + + ARSON - RESID-DEFRAUD INSURER + + + + + HALLUCINOGEN - MFR + + + + + CONSERVATION - ANIMALS + + + + + NEGLECT FAMILY + + + + + SMUGGLE CONTRABAND + + + + + BURNING OF-SEE MIS + + + + + KIDNAP MINOR-PARENTAL + + + + + STOLEN PROPERTY + + + + + INTIMIDATION (INCLUDES STALKING) + + + + + HOMOSEXUAL ACT WITH MAN + + + + + INDECENT EXPOSURE TO MINOR + + + + + DICE GAME - OPERATING + + + + + ABSCOND WHILE ON PROBATION + + + + + SOUGHT FOR VIOLATION OF NATIONAL SECURITY REGISTRATION + + + + + FRAUD - ILLEG USE CREDIT CARDS + + + + + ABORTION + + + + + ALTERING IDENTIFICATION ON WEAPON + + + + + UNAUTH USE OF VEH + + + + + BARBITURATE - POSSESS + + + + + INDECENT EXPOSURE TO ADULT + + + + + HOMICIDE - WILLFUL KILL-POL OFF-WEAPON + + + + + CONSERVATION + + + + + HOMICIDE - WILLFUL KILL-POL OFF-GUN + + + + + DRUGS - HEALTH OR SAFETY + + + + + ESCAPE FROM CUSTODY + + + + + SEX ASSLT - SODOMY-GIRL-GUN + + + + + DAMAGE PROP - BUSINESS-WITH EXPLOSIVE + + + + + PROCURE FOR PROSTITUTE WHO IS AN ADULT + + + + + FAMILY OFFENSE + + + + + BURGL - FORCED ENTRY-NONRESID + + + + + NONPAYMENT OF ALIMONY + + + + + THREAT TO BURN + + + + + OBSTRUCT SEE MIS + + + + + SYNTH NARCOTIC - SELL + + + + + BARBITURATE - MFR + + + + + LIQUOR + + + + + OBSCENITY + + + + + BURGL - BANKING-TYPE INST + + + + + AGGRAV ASSLT - GUN + + + + + TRANSPORT FORGED - SEE MIS + + + + + TRANSMIT WAGER INFORMATION + + + + + KICKBACK - RECEIVING + + + + + ABORTIONAL ACT ON OTHER + + + + + SEX ASSLT - SODOMY-WOMAN-STGARM + + + + + KICKBACK - OFFERING + + + + + FALSE IMPRISONMENT-MINOR-NONPARENTAL + + + + + NEGLECT DISABLED + + + + + SMUGGLING ALIENS + + + + + MARIJUANA + + + + + SEX OFFENSE-ELDERLY + + + + + AGGRAV ASSLT - FAMILY-WEAPON + + + + + THEFT AND SALE VEH + + + + + KIDNAP MINOR FOR RANSOM + + + + + CARJACKING - ARMED + + + + + HEROIN - SELL + + + + + GRATUITY - RECEIVING + + + + + CIVIL RIGHTS + + + + + FRAUD + + + + + BURGLARY + + + + + AGGRAV ASSLT - POL OFF-STGARM + + + + + SEDITION + + + + + GAMBLING DEVICE - NOT REGISTERED + + + + + ROBBERY - BUSINESS-GUN + + + + + TAX REVENUE + + + + + RAPE-DRUG-INDUCED + + + + + PROPERTY CRIMES SEE MIS + + + + + CRUELTY TOWARD CHILD + + + + + FAILURE TO MOVE ON + + + + + DRUGS - ADULTERATED + + + + + LARC - FROM SHIPMENT + + + + + BRIBE + + + + + EVIDENCE - DESTROYING + + + + + INCENDIARY DEVICE - TEACHING USE + + + + + SEX ASSLT - SODOMY-MAN-STGARM + + + + + BURGL - FORCED ENTRY-RESID + + + + + RIOT - INTERFERE FIREMAN + + + + + WEAPON OFFENSE + + + + + HALLUCINOGEN + + + + + EXPLOSIVES - TRANSPORTING + + + + + GRATUITY - GIVING + + + + + AGGRAV ASSLT - FAMILY-GUN + + + + + LARC - FROM BANKING-TYPE INST + + + + + SUBMISSION TO ABORTIONAL ACT + + + + + STAT RAPE - NO FORCE + + + + + BRIBE - GIVING + + + + + ROBBERY - RESID-WEAPON + + + + + SEXUAL EXPLOITATION OF MINOR-MATERIAL-FILM + + + + + CRIMES AGAINST PERSON SEE MIS + + + + + EXPLOSIVES - USING + + + + + THEFT AND STRIP VEH + + + + + EXTORT - THREAT INJURE PERSON + + + + + SMUGGLING + + + + + COSMETICS - MISBRANDED + + + + + HOMICIDE - WILLFUL KILL-GUN + + + + + LARCENY + + + + + WEAPON TRAFFICKING + + + + + KIDNAP MINOR-NONPARENTAL + + + + + ARSON - BUSINESS + + + + + EMBEZZLE - BUSINESS PROP + + + + + ABSCOND WHILE ON PAROLE + + + + + FALSE IMPRISONMENT-MINOR-PARENTAL + + + + + OBSTRUCTING JUSTICE + + + + + PEEPING TOM + + + + + COCAINE + + + + + OBSCENE MATERIAL - TRANSPORT + + + + + AMPHETAMINE - MFR + + + + + CONTEMPT OF CONGRESS + + + + + MARIJUANA - SELL + + + + + ASSEMBLY - UNLAWFUL + + + + + EMBEZZLE - POSTAL + + + + + IMMIGRATION + + + + + CROSSING POLICE LINES + + + + + STATE/LOCAL - MATERIAL WITNESS + + + + + SELECTIVE SERVICE + + + + + ARSON + + + + + LARC - FROM BLDG + + + + + SALE OF STOLEN PROP + + + + + NARCOTIC EQUIP - POSSESS + + + + + BRIBERY + + + + + RIOT - INTERFERE OFFICER + + + + + SEX ASSLT - SODOMY-BOY-WEAPON + + + + + DRIVING UNDER INFLUENCE DRUGS + + + + + ROBBERY - STREET-GUN + + + + + FRAUD - IMPERSON + + + + + CONTEMPT OF COURT - SEE MIS + + + + + FLIGHT-ESCAPE + + + + + INCENDIARY DEVICE - USING + + + + + SEX OFFENDER REGISTRATION VIOLATION(SEE MIS) + + + + + EXTORT - THREAT OF INFORMING OF VIO + + + + + OBSCENE MATERIAL - SELL + + + + + INCEST WITH ADULT + + + + + HOMICIDE - WILLFUL KILL-PUB OFF-GUN + + + + + BRIBE - OFFERING + + + + + PAROLE VIOLATION - SEE MIS + + + + + INCENDIARY DEVICE - POSSESS + + + + + ASSAULT + + + + + SEX ASSLT - CARNAL ABUSE + + + + + NEGLECT CHILD + + + + + ROBBERY - STREET-STGARM + + + + + COMMERCIAL SEX + + + + + EMBEZZLE + + + + + BURGL - NO FORCED ENTRY-RESID + + + + + ILLEGAL ENTRY + + + + + FOOD - MISBRANDED + + + + + GAMBLING GOODS + + + + + SEX OFFENSE-DISABLED + + + + + PASS COUNTERFEITED + + + + + GRATUITY - OFFERING + + + + + DAMAGE PROP - PUBLIC-WITH EXPLOSIVE + + + + + AGGRAV ASSLT - PUB OFF-WEAPON + + + + + SEXUAL EXPLOITATION OF MINOR-PROSTITUTION + + + + + THREAT - TERRORISTIC - STATE OFFENSES + + + + + HARASSING COMMUNICATION + + + + + LARC - FROM YARDS + + + + + SEX ASSLT - SODOMY-WOMAN-GUN + + + + + SEX ASSLT - SODOMY-BOY-GUN + + + + + OPIUM OR DERIV - SMUGGL + + + + + DAMAGE PROP - BUSINESS + + + + + GAMBLING DEVICE - TRANSPORT + + + + + SEXUAL EXPLOITATION OF MINOR-MATERIAL-TRANSPORT + + + + + COSMETICS - HEALTH OR SAFETY + + + + + GRATUITY + + + + + VOYEURISM + + + + + ROBBERY - RESID-STGARM + + + + + AGGRAV ASSLT - WEAPON + + + + + POSSESS STOLEN VEHICLE + + + + + KIDNAP MINOR TO SEXUALLY ASSLT + + + + + GAMBLING + + + + + PROB VIOLATION - SEE MIS + + + + + CONCEAL STOLEN PROP + + + + + AMPHETAMINE + + + + + GAMBLING GOODS - TRANSPORT + + + + + AGGRAV ASSLT - NONFAMILY-STGARM + + + + + DIVULGE EAVESDROP ORDER + + + + + HOMOSEXUAL ACT WITH GIRL + + + + + FAILURE TO REGISTER AS A SEX OFFENDER + + + + + BOOKMAKING + + + + + ANTITRUST + + + + + FRAUD - SWINDLE + + + + + CONTRIB DELINQ MINOR + + + + + ALIEN UNLAWFULLY PRESENT DUE TO ORDER OF REMOVAL OR EXCLUSION FROM THE USA + + + + + AIRCRAFT THEFT + + + + + RAPE-ELDERLY + + + + + ABDUCT - NO RANSOM OR ASSLT + + + + + THREAT TO BOMB + + + + + HOMOSEXUAL ACT WITH BOY + + + + + TREASON MISPRISION + + + + + DANGEROUS DRUGS + + + + + STOLEN VEHICLE + + + + + EMBEZZLE - INTERSTATE SHIPMENT + + + + + FOOD - ADULTERATED + + + + + DESECRATING FLAG + + + + + SEXUAL ASSAULT-DRUG-INDUCED + + + + + FEDERAL - MATERIAL WITNESS + + + + + HOMICIDE - JOHN OR JANE DOE - NO WARRANT + + + + + MAIL FRAUD + + + + + PROCURE FOR PROSTITUTE WHO IS A MINOR + + + + + ELECTION LAWS + + + + + MARIJUANA - SMUGGL + + + + + SEXUAL EXPLOITATION OF MINOR-SEX PERFORMANCE + + + + + FALSE CITIZENSHIP + + + + + LARC ON US GOVT RESERV + + + + + BAIL - PERSONAL RECOG + + + + + WIRETAP - FAILURE TO REPORT + + + + + AMPHETAMINE - POSSESS + + + + + INCOME TAX + + + + + HEROIN - SMUGGL + + + + + OBSTRUCT CRIMINAL INVEST + + + + + COCAINE - POSSESS + + + + + FAILURE REPORT CRIME + + + + + LARC - FROM MAILS + + + + + BIGAMY + + + + + TRANSPORT INTERSTATE STOLEN PROP + + + + + KIDNAP ADULT FOR RANSOM + + + + + AGGRAV ASSLT - PUB OFF-GUN + + + + + GAMBLING GOODS - POSSESS + + + + + UNAUTH COMMUNICATION WITH PRISONER + + + + + KIDNAPPING + + + + + TRANSPORT COUNTERFEITED - SEE MIS + + + + + LIQUOR - SELL + + + + + ENTICEMENT OF MINOR FOR PROSTITUTION + + + + + OBSTRUCTING COURT ORDER + + + + + MORALS - DECENCY CRIMES SEE MIS + + + + + RIOT + + + + + CONTEMPT OF LEGISLATURE + + + + + TRANSP DANGEROUS MATERIAL + + + + + ABORTIONAL ACT ON SELF + + + + + EMBEZZLE - BANKING-TYPE INST + + + + + FRAUD - INSUFF FUNDS CHECK + + + + + TRAFFIC OFFENSE + + + + + LARC - FROM COIN MACHINE + + + + + ROBBERY - BANKING-TYPE INST + + + + + LIQUOR - POSSESS + + + + + WITNESS - DISSUADING + + + + + ARSON - RESID-ENDANGERED LIFE + + + + + SEX ASSAULT + + + + + BURGL - NO FORCED ENTRY-NONRESID + + + + + DAMAGE PROP - PUBLIC + + + + + SUBJECT IS A DEPORTED CRIMINAL/AGGRAVATED FELON + + + + + FOOD - HEALTH OR SAFETY + + + + + TRESPASSING + + + + + SYNTH NARCOTIC - POSSESS + + + + + FLIGHT TO AVOID SEE MIS + + + + + ROBBERY - BUSINESS-WEAPON + + + + + HEROIN + + + + + PROCURE FOR PROSTITUTE (PIMPING) + + + + + LARC - POSTAL + + + + + EXPLOSIVES - TEACHING USE + + + + + HOMICIDE - NEGLIG MANSL-VEH + + + + + HEROIN - POSSESS + + + + + LOTTERY + + + + + EAVESDROP EQUIP + + + + + PURSE SNATCHING - NO FORCE + + + + + BRIBE - RECEIVING + + + + + BARBITURATE - SELL + + + + + FORGERY OF + + + + + KIDNAP HOSTAGE FOR ESCAPE + + + + + ILLEGAL ARREST + + + + + RAPE-DISABLED + + + + + MONEY LAUNDERING + + + + + SEDUCTION OF ADULT + + + + + ESPIONAGE + + + + + FRAUD AND ABUSE, COMPUTER + + + + + OPENING SEALED COMMUNICATION + + + + + HALLUCINOGEN - SELL + + + + + POCKETPICKING + + + + + BURGL - SAFE-VAULT + + + + + PUBLIC PEACE + + + + + HOMICIDE + + + + + GAMBLING DEVICE - POSSESS + + + + + CONFLICT OF INTEREST + + + + + FAILURE TO APPEAR - SEE MIS + + + + + AMPHETAMINE - SELL + + + + + CARD GAME - OPERATING + + + + + CARRYING PROHIBITED WEAPON + + + + + HALLUCINOGEN - DISTRIB + + + + + SELLING WEAPON + + + + + ENTICEMENT OF MINOR FOR INDECENT PURPOSES + + + + + STRIP STOLEN VEH + + + + + VIOLATION OF A COURT ORDER + + + + + SMUGGLE TO AVOID PAYING DUTY + + + + + FRAUD - CONFIDENCE GAME + + + + + HOMICIDE - WILLFUL KILL-NONFAMILY-GUN + + + + + SEXUALLY VIOLATE HUMAN REMAINS/NECROPHILIA + + + + + EAVESDROPPING + + + + + HOMICIDE - WILLFUL KILL-FAMILY-WEAPON + + + + + BARBITURATE + + + + + CRUELTY TOWARD ELDERLY + + + + + ARSON - PUB-BLDG-ENDANGERED LIFE + + + + + OBSCENE COMMUNICATION + + + + + ROBBERY + + + + + SEX OFFENSE - AGAINST CHILD-FONDLING + + + + + DICE GAME + + + + + ARSON - BUSINESS-ENDANGERED LIFE + + + + + TRANSPORT INTERSTATE FOR SEXUAL ACTIVITY + + + + + SEX ASSLT - SODOMY-MAN-GUN + + + + + LARC - FROM INTERSTATE SHIPMENT + + + + + CONSERVATION - ENVIRONMENT + + + + + KICKBACK + + + + + HOMICIDE - WILLFUL KILL-NONFAMILY-WEAPON + + + + + CONSERVATION - FISH + + + + + OPIUM OR DERIV + + + + + OBSCENE MATERIAL - POSSESS + + + + + TREASON + + + + + INTERSTATE TRANSP STOLEN VEH + + + + + ARSON - RESID + + + + + ANARCHISM + + + + + NONSUPPORT OF PARENT + + + + + SHOPLIFTING + + + + + EXTORT - THREAT ACCUSE PERSON OF CRIME + + + + + SEX ASSLT - SODOMY-GIRL-WEAPON + + + + + COUNTERFEITING OF + + + + + POSSESS COUNTERFEITED - SEE MIS + + + + + INVADE PRIVACY + + + + + POSSESS FORGED - SEE MIS + + + + + MOLESTATION OF MINOR + + + + + LOTTERY - RUNNER + + + + + BAIL - SECURED BOND + + + + + FRAUD - BY WIRE + + + + + KIDNAP - HIJACK AIRCRAFT + + + + + POSSESSION OF WEAPON + + + + + EXTORT - THREAT INJURE REPUTATION + + + + + PERJURY + + + + + CRUELTY TOWARD WIFE + + + + + REFUSING TO AID OFFICER + + + + + SEX ASSLT - SODOMY-BOY-STGARM + + + + + FIRING WEAPON + + + + + DAMAGE PROP - PRIVATE-WITH EXPLOSIVE + + + + + LEWD OR LASCIVIOUS ACTS WITH MINOR + + + + + ROBBERY - STREET-WEAPON + + + + + INDECENT EXPOSURE (TO MINORS AND ADULTS) + + + + + HARBORING ESCAPE/FUGITIVE + + + + + OBSCENE MATERIAL - MAILING + + + + + KEEPING HOUSE ILL FAME + + + + + RAPE + + + + + OBSTRUCT CORRESPONDENCE + + + + + MAKING FALSE REPORT + + + + + SUBJECT IS A THREAT TO A U.S. SECRET SERVICE PROTECTEE + + + + + SIMPLE ASSLT + + + + + COCAINE - SMUGGL + + + + + AGGRAV ASSLT - NONFAMILY-WEAPON + + + + + SEX ASSLT - SODOMY-WOMAN-WEAPON + + + + + HEALTH - SAFETY + + + + + THEFT AND USE VEH OTHER CRIME + + + + + SOVEREIGNTY + + + + + TRNSP FEMALE INTERSTATE FOR IMMORAL PURP + + + + + + + + + + + + + + + + BLACK + + + + + AMERICAN INDIAN + + + + + UNKNOWN + + + + + WHITE + + + + + ASIAN + + + + + + + + + + + + + + + + UNKNOWN - FOR UNIDENTIFIED ONLY + + + + + FEMALE + + + + + MALE + + + + + + + + + + + + + + + + Toe(s), nonspecific, tattoo + + + + + Amphetamines (includes stimulants,speed, etc.) + + + + + Artificial hip joint + + + + + Ear, right + + + + + Foot, nonspecific + + + + + Breast, left + + + + + Forearm, nonspecific, discolored + + + + + Hand, right + + + + + Stomach + + + + + Buttocks, nonspecific + + + + + Extra toe(s), left + + + + + Buttocks, nonspecific + + + + + Toe(s), nonspecific, scar + + + + + Crippled finger(s), right hand(includes webbed fingers) + + + + + Elbow, nonspecific, needle mark + + + + + Leg, nonspecific, artificial + + + + + Hand, nonspecific, artificial + + + + + Brace, right arm + + + + + Head, nonspecific (Use the MIS fieldo further describe location) + + + + + Toe(s), nonspecific + + + + + Ankle, nonspecific, needle mark + + + + + Missing Penis + + + + + Pierced abdomen + + + + + Breast, nonspecific + + + + + Extra nipple, right + + + + + Cleft chin + + + + + Knee, left + + + + + Ankle, left + + + + + Orthopedic plate + + + + + Left Toe, remove tattoo + + + + + Arm, left + + + + + Skin Disorders(includes psoriasis and eczema) + + + + + Finger(s), nonspecific, extra + + + + + Thigh, nonspecific + + + + + Tube in left ear + + + + + Knee, right + + + + + Ear, left, artificial + + + + + Foot, left, artificial + + + + + Arm, left, nonspecific + + + + + Ear, nonspecific + + + + + Penis + + + + + Ankle, right + + + + + Pierced left eyebrow + + + + + Arm, right upper + + + + + Spine + + + + + Groin area + + + + + Toe(s), left foot + + + + + Buttock, right + + + + + Groin area + + + + + Groin, nonspecific, discolored + + + + + Protruding lower jaw + + + + + Right Shoulder, artificial + + + + + Wrist, nonspecific, needle mark + + + + + Testis, left + + + + + Buttocks, nonspecific + + + + + Eye, left + + + + + Right forearm, mole + + + + + Lip, nonspecific + + + + + Hand, left + + + + + Finger joint(s), right hand + + + + + Nose + + + + + Hand, right + + + + + Buttocks + + + + + Wrist, nonspecific + + + + + Arm, lower left + + + + + Calf, nonspecific, needle mark + + + + + Breast, left + + + + + Knee, nonspecific + + + + + Hand, nonspecific + + + + + Ritalin + + + + + Leg, left + + + + + Elbow, nonspecific, discolored + + + + + Right Hip, fractured + + + + + Forearm, nonspecific + + + + + Glaucoma + + + + + Finger, nonspecific + + + + + Ear, nonspecific, missing + + + + + Right Forearm, discolored + + + + + Foot, right + + + + + Nose + + + + + Ankle, left + + + + + Rohypnol(Brand name for Flunitrazepam.Also referred to as "rophies","roofies", "ruffies", and "roche + + + + + Rib(s), right + + + + + Eyebrow, right/right eye area + + + + + Foot, left + + + + + Foot, left + + + + + Knee, nonspecific + + + + + Hand, right + + + + + Foot, nonspecific + + + + + Foot, right + + + + + Finger(s), left hand + + + + + Crippled hand, left + + + + + Pelvis + + + + + Pierced left ear + + + + + Marijuana + + + + + Ear, nonspecific + + + + + Right Elbow, artificial + + + + + Pierced right eyebrow + + + + + Upper Left Arm, discolored + + + + + Wire sutures + + + + + Finger(s), right + + + + + Ear, left + + + + + Forehead + + + + + Hand, left, artificial + + + + + Brace, one arm, nonspecific + + + + + Upper Left Arm, needle mark + + + + + Buttock, left + + + + + Thigh, nonspecific + + + + + Ear, right + + + + + Elbow, right + + + + + Spine + + + + + Hand, nonspecific + + + + + Thyroid Conditions or Diseases + + + + + Crippled toe(s), right(includes webbed toes) + + + + + Foot, nonspecific, missing + + + + + Drug Abuse + + + + + Brace, left and right arms + + + + + Leg, right, nonspecific + + + + + Back + + + + + Foot, nonspecific + + + + + Elbow, nonspecific, fractured + + + + + Leg, nonspecific + + + + + Leg, nonspecific + + + + + Cheek, nonspecific, dimple + + + + + Buttocks, right + + + + + Neck + + + + + Thigh, left + + + + + Breast, left + + + + + Lip, lower + + + + + Extra finger(s), left hand + + + + + Cocaine (includes crack) + + + + + Foot, right + + + + + Shoulder, left + + + + + Cauliflower ear, left + + + + + Elbow, right + + + + + Forehead + + + + + Left Toe, scar + + + + + Hip, left + + + + + Arm, right + + + + + Hip, left + + + + + Knee, right + + + + + Lip, lower + + + + + Wrist, left + + + + + Cataract, (nonspecified) + + + + + Skull plate + + + + + Clavicle, right + + + + + Hip, left + + + + + Leg, lower right + + + + + Ritalin + + + + + Right Toe, discolored + + + + + Cauliflower Ear + + + + + Thigh, nonspecific + + + + + Ankle, nonspecific + + + + + Shoulder, nonspecific + + + + + Ankle, left + + + + + Ear, nonspecific + + + + + Finger(s), nonspecific, needle mark + + + + + Jaw, upper right + + + + + Pierced nipple, left + + + + + Extra toe(s), right + + + + + Deviated septum + + + + + Buttocks, right + + + + + Hand, left + + + + + Leg, right + + + + + Knee, left + + + + + Hand, right + + + + + Right Toe, needle mark + + + + + Blind, both eyes + + + + + Left Toe, needle mark + + + + + Toe(s), nonspecific, remove tattoo + + + + + Shunt, cerebral ventricule + + + + + Ankle, left + + + + + Right Elbow, discolored + + + + + Penis + + + + + Foot, nonspecific, crippled + + + + + Ankle, nonspecific + + + + + Buttocks, nonspecific + + + + + Arm, left upper + + + + + Antibiotics + + + + + Hand, right + + + + + Shoulder, right + + + + + Humpbacked + + + + + Ear, left + + + + + Back + + + + + Knee, right + + + + + Calf, left + + + + + Wrist, left + + + + + Forearm, right + + + + + Nose + + + + + Alcoholism + + + + + Extra breast, nonspecific + + + + + Leg, nonspecific, crippled + + + + + Foot, right + + + + + Thigh, left + + + + + Finger(s), left hand + + + + + Hair implants + + + + + Eye, nonspecific, mole + + + + + Right Calf, discolored + + + + + Face, mole + + + + + Lip, upper + + + + + Eye, nonspecific, remove tattoo + + + + + Wrist, left + + + + + Wrist, right + + + + + Leg, left + + + + + Calf, nonspecific + + + + + Elbow, right + + + + + Lung, nonspecific, missing + + + + + Left Calf, needle mark + + + + + Arm, left + + + + + Breast, left + + + + + Cancer + + + + + Shoulder, right + + + + + Left Knee, needle mark + + + + + Crosseyed + + + + + Leg, upper left + + + + + Deaf, one ear (nonspecific) + + + + + Shoulder, nonspecific + + + + + Arm, left, artificial + + + + + Finger joint(s), left hand + + + + + Abdomen + + + + + Ear, left + + + + + Groin, nonspecific, needle mark + + + + + Antidepressants (mood-lifters -(Mood lifters - includes: Amitriptylene, Elavil, Norpramine, Prozac,T + + + + + Ear, right + + + + + Leg, right + + + + + Finger(s), right hand + + + + + Finger, nonspecific + + + + + Leg, right + + + + + Nose + + + + + Finger(s), right hand + + + + + Ankle, right + + + + + Extra nipple, center + + + + + Hip, nonspecific + + + + + Skull + + + + + Hip, nonspecific, healed fractured + + + + + Hip, right + + + + + Finger(s), right hand + + + + + Brace, teeth + + + + + Ear, right + + + + + Calf, right + + + + + Lip, upper + + + + + Leg, left, nonspecific + + + + + Eyebrow, left/left eye area + + + + + Thigh, right + + + + + Missing Cervical Vertebra(e) + + + + + Right Ankle, needle mark + + + + + Toe(s), nonspecific + + + + + Leg, nonspecific + + + + + Right Hip, artificial + + + + + Right Leg, fractured + + + + + Toe(s), nonspecific, discolored + + + + + Wrist, right + + + + + Calf, nonspecific, mole + + + + + Hematological Diseases (disease ofthe blood - includes: anemia,hemophilia, leukemia, and sicklecell + + + + + Leg, nonspecific, short + + + + + Hip, right + + + + + Leg, nonspecific + + + + + Ear, left + + + + + Toe(s), nonspecific, mole + + + + + Eating Disorders(Includes Anorexia Nervosa andBulimia) + + + + + Breast, nonspecific + + + + + Toe(s), nonspecific, missing + + + + + Left Leg, fractured + + + + + Toe(s), nonspecific, extra + + + + + Extra breast, left + + + + + Ovary, left + + + + + Left Elbow, needle mark + + + + + Leg, left + + + + + Leg, left, artificial + + + + + Wrist, nonspecific + + + + + Chest + + + + + Ankle, nonspecific + + + + + Pulmonary (Lung) Diseases(includes Emphesyma, CysticFibrosis) + + + + + Upper Right Arm, mole + + + + + Paraplegic + + + + + Leg, lower right + + + + + Arm, nonspecific, crippled + + + + + Ear, right + + + + + Buttocks, left + + + + + Jaw, nonspecific, protruding + + + + + Hand, left + + + + + Buttock, right + + + + + Finger(s), right hand + + + + + Finger(s), nonspecific, missing + + + + + Breast implant, left and right + + + + + Arm, upper left + + + + + Arm, nonspecific + + + + + Face, nonspecific(use MIS field to further describelocation) + + + + + Leg, left + + + + + Kidney, right + + + + + Neck + + + + + Intestines + + + + + Right Leg, healed fractured + + + + + Lip, upper + + + + + Ankle, right + + + + + Artificial knee joint + + + + + Elbow, nonspecific, mole + + + + + Pierced nipple, right + + + + + Cheek (face), nonspecific + + + + + Right Elbow, fractured + + + + + Cleft Lip + + + + + Buttock, left + + + + + Artificial elbow joint + + + + + Wrist, left + + + + + Ear, right + + + + + Penis + + + + + Leg, left + + + + + Hand, left + + + + + Wrist, nonspecific + + + + + Arm, nonspecific + + + + + Eye, left, artificial + + + + + Wrist, right + + + + + Leg, nonspecific + + + + + Nose + + + + + Extra vertebrae, lumbar + + + + + Diabetic + + + + + Foot, left + + + + + Left Shoulder, needle mark + + + + + Right Toe, scar + + + + + Shoulder, right + + + + + Right Arm, healed fractured + + + + + Left Arm, fractured + + + + + Breast implant, left + + + + + Hand, right + + + + + Forearm, nonspecific, mole + + + + + Eye, nonspecific, missing + + + + + Foot, left + + + + + Skull + + + + + Calf, nonspecific + + + + + Clavicle, right + + + + + Arm, right upper + + + + + Shoulder, left + + + + + Protruding upper jaw + + + + + Left Forearm, discolored + + + + + Anticonvulsants (seizuremedicines - includes: DilantinMysoline, Phenobarbital, etc.) + + + + + Intrauterine device + + + + + Nervous conditions including:seizures, stroke, senility, andmental retardation + + + + + Denture, upper only + + + + + Thigh, right + + + + + Pierced eyebrow, nonspecific + + + + + Extra breast, center + + + + + Penis, needle mark + + + + + Jaw, lower left + + + + + Arm, lower left + + + + + Knee, left + + + + + Right Knee, artificial + + + + + Arm, upper right + + + + + Foot, left + + + + + Hand, left + + + + + Arm, nonspecific + + + + + Silver tooth + + + + + Wheelchair + + + + + Adenoids + + + + + Knee, nonspecific + + + + + Shoulder, right + + + + + Crippled leg, left + + + + + Finger, nonspecific + + + + + Left Leg, healed fractured + + + + + Left Knee, artificial + + + + + Right Calf, mole + + + + + Insulin + + + + + Ankle, nonspecific + + + + + Pancreas + + + + + Chin + + + + + Foot, left + + + + + Breast implant, right + + + + + Hip, left + + + + + Breast, left + + + + + Finger Joint, nonspecific, missing + + + + + Hearing Aid + + + + + Foot, nonspecific, needle mark + + + + + Finger(s), right hand + + + + + Neck + + + + + Angle, right + + + + + Brace, back + + + + + Quadriplegic + + + + + Left Calf, mole + + + + + Penile implant + + + + + Hand, nonspecific, missing + + + + + Lip, nonspecific + + + + + Chest + + + + + Knee, nonspecific + + + + + Freckles + + + + + Thigh, left + + + + + Hand, nonspecific, crippled + + + + + Ovary, nonspecific, missing + + + + + Arm, right + + + + + Finger, nonspecific + + + + + Leg, left + + + + + Calf, right + + + + + Lip, nonspecific + + + + + Shoulder, nonspecific, needle mark + + + + + Hypnotics (sleeping aides -includes: Barbiturates,Chloral Hydrate, Glutethemide,etc.) + + + + + Cheek (face), right + + + + + Hand, left + + + + + Full Body(Use only when the entire body - arms, legs, chest, and back are covered with tattoos.) + + + + + Hip, right + + + + + Spleen + + + + + Groin area + + + + + Foot, nonspecific + + + + + Arm, upper right + + + + + Right Hip, healed fractured + + + + + Buttock, nonspecific, needle mark + + + + + Finger(s), left + + + + + Tooth/Teeth, nonspecific, extra + + + + + Hip, nonspecific + + + + + Jaw, lower left + + + + + Pierced genitalia + + + + + Denture, lower only + + + + + Arm, left + + + + + EXTRA TOOTH/TEETH (LOWER JAW) + + + + + Narcotics (includes Heroin,Morphine, Dilaudid, Methadone,etc.) + + + + + Leg, right (Use the MIS field tourther describe location) + + + + + Buttocks, left + + + + + Chest + + + + + Thigh, right + + + + + Gallbladder + + + + + Left Hip, fractured + + + + + Arm, nonspecific, artificial + + + + + Buttock, right + + + + + Brace, left and right legs + + + + + Right Eye, tattoo + + + + + Left Toe, tattoo + + + + + Denture, upper and lower + + + + + Lip, lower + + + + + Artificial shoulder joint + + + + + Calf, left + + + + + Arthritis + + + + + Cardiac (heart medications -includes: Digitalis,Digoxin, etc.) + + + + + Abdomen + + + + + Right Calf, needle mark + + + + + Brace, left leg + + + + + Leg, right, artificial + + + + + Arm, lower right + + + + + Cheek (face), left + + + + + Cardiac pacemaker + + + + + Missing Vertebra(e),nonspecific + + + + + Extra vertebrae, nonspecific + + + + + Arm, left upper + + + + + Thigh, right + + + + + Blind, right eye + + + + + Hip, nonspecific + + + + + Chin + + + + + Full body + + + + + Buttock, left + + + + + Ankle, nonspecific + + + + + Arm, lower left + + + + + Thigh, right + + + + + Eyebrow, left/left eye area + + + + + Wrist, nonspecific + + + + + Calf, left + + + + + Breasts + + + + + Thigh, left + + + + + Deaf, left and right ears + + + + + Toe(s), right foot + + + + + Eye, right, artificial + + + + + Foot, right + + + + + Crippled leg, right + + + + + Pierced ear, one nonspecific + + + + + Leg, upper left + + + + + Hand, nonspecific + + + + + Hip, right + + + + + Breast + + + + + Neck + + + + + Head, nonspecific(use MIS field to further describelocation) + + + + + Cheek (face), left + + + + + Arm, upper left + + + + + Eyebrow, nonspecific + + + + + Staples + + + + + Cleft palate + + + + + Neck + + + + + Stutters + + + + + Back + + + + + Forearm, left + + + + + Cauliflower ear, right + + + + + Rib(s), nonspecific + + + + + Foot, right + + + + + Shoulder, nonspecific + + + + + Tuberculosis + + + + + Breast, right + + + + + Ear, nonspecific + + + + + Wrist, right + + + + + Knee, right + + + + + Breast, right + + + + + Uterus + + + + + Shoulder, left + + + + + Thigh, right + + + + + Shoulder, right + + + + + Nose + + + + + Liver Disease(Including cirrhosis andhepatitis) + + + + + Intramedullary rod + + + + + Clavicle, nonspecific + + + + + Jaw, upper left + + + + + Hand, left + + + + + Pierced right ear + + + + + Pierced tongue + + + + + Forearm, left + + + + + Knee, left + + + + + Back + + + + + Right Hip, needle mark + + + + + Mute (To be used if person is mutebut not deaf.) + + + + + Left Elbow, artificial + + + + + Leg, lower left + + + + + Foot, nonspecific + + + + + Finger(s), nonspecific, crippled + + + + + Back + + + + + Left Hip, needle mark + + + + + Down's Syndrome + + + + + Eyebrow, right/right eye area + + + + + Leg, nonspecific + + + + + Finger(s), nonspecific + + + + + Crippled foot, right(includes clubfoot) + + + + + Appendix + + + + + Chin + + + + + Left Elbow, mole + + + + + Extra vertebrae, cervical + + + + + Ear, right, artificial + + + + + Lip, lower + + + + + Neurological Conditions or Diseases(includes Cerebral Palsy, Epilepsy, Multiple Sclerosis, Parkinson + + + + + Jaw, nonspecific + + + + + Left Elbow, discolored + + + + + Pierced nose + + + + + Hip, right + + + + + Foot, right + + + + + Wrist, left + + + + + Behavior Disorder(includes Autism, Depression,Schizophrenia, Suicidal Tendencies(past and present) + + + + + Face, nonspecific(use MIS field to further describelocation) + + + + + Hand, nonspecific, discolored + + + + + Testis, right + + + + + Toe(s), nonspecific, needle mark + + + + + Shunt, arterial vascular + + + + + Pelvis bone, left + + + + + Breast, nonspecific + + + + + Breast, right + + + + + Arm, lower right + + + + + Lower Right Arm, needle mark + + + + + Gold tooth + + + + + Kidney, left + + + + + Leg, upper right + + + + + Pierced nipple, nonspecific + + + + + Breast, right + + + + + Crippled arm, right + + + + + Crippled foot, left(includes clubfoot) + + + + + Dimples, left cheek (face) + + + + + Jaw, nonspecific + + + + + Calf, right + + + + + Arm, right, nonspecific + + + + + Larynx + + + + + Abdomen + + + + + Ear, left + + + + + Arm, nonspecific, missing + + + + + Sternum + + + + + Barbiturates + + + + + Arm, left + + + + + Finger(s), left hand + + + + + Pierced ears + + + + + Knee, left + + + + + Arm, right, artificial + + + + + Knee, nonspecific + + + + + Cane + + + + + Finger(s), left hand + + + + + Right Arm, fractured + + + + + Heart or circulatory diseasesincluding: high blood pressure,heart failure, heart attack,hardening o + + + + + Deaf-mute + + + + + Artificial larynx + + + + + Arm, nonspecific + + + + + Finger(s), right hand + + + + + Forearm, left + + + + + Arm, left + + + + + Leg, lower left + + + + + Leg, lower left + + + + + Leg, nonspecific, missing + + + + + Ankle, right + + + + + Ear, nonspecific + + + + + Lip, lower + + + + + Shorter left leg + + + + + Contact lenses + + + + + Dimples, right cheek (face) + + + + + Arm, right upper + + + + + Penis + + + + + Chest + + + + + Anti-Inflammatory Medication + + + + + Shoulder, left + + + + + Clavicle, left + + + + + Finger(s), left hand + + + + + Bronchial Dilators(Includes inhalers) + + + + + Abdomen + + + + + Hip, nonspecific + + + + + Left Hip, healed fractured + + + + + Hand, nonspecific, needle mark + + + + + Hand, nonspecific + + + + + Prostate Gland + + + + + Foot, nonspecific + + + + + Elbow, nonspecific + + + + + Pelvis + + + + + Hand + + + + + Toes(s), right foot + + + + + Ear, nonspecific, artificial + + + + + Left forearm, mole + + + + + Tube in right ear + + + + + Extra finger(s), right hand + + + + + Hallucinogens + + + + + Deaf, left ear + + + + + Eyebrow, nonspecific + + + + + Finger, nonspecific + + + + + Right Eye, remove tattoo + + + + + Ankle, left + + + + + Cheek (face), nonspecific + + + + + Thyroid + + + + + Dimples, chin + + + + + Hand, right + + + + + Elbow, nonspecific, healed fractured + + + + + Hip, nonspecific, needle mark + + + + + Left Toe, discolored + + + + + Cheek (face), left + + + + + Knee, left + + + + + Rib(s), right + + + + + Hip, left + + + + + Leg, nonspecific, needle mark + + + + + Arm, right (Use the MIS field tofurther describe location) + + + + + Leg, right + + + + + Leg, right + + + + + Chin + + + + + Breast, right + + + + + Arm, right + + + + + Arm, nonspecific, needle mark + + + + + Extra nipple, nonspecific + + + + + Calf, nonspecific, discolored + + + + + Clavicle, nonspecific + + + + + Cheek (face), right + + + + + Tourette's Syndrome + + + + + Tranquilizers (includes:Valium, Thorazine, Stellazine,etc.) + + + + + Kidney, nonspecific, missing + + + + + Cheek, right + + + + + Elbow, left + + + + + Head + + + + + Shoulder, nonspecific + + + + + Forearm, right + + + + + Wrist, nonspecific + + + + + Brace, right leg + + + + + Arm, right + + + + + Jaw, upper right + + + + + Ankle, nonspecific + + + + + Leg, upper right + + + + + Toe(s), nonspecific, crippled + + + + + Breast, left + + + + + Shoulder, left + + + + + Left Hip, artificial + + + + + Back + + + + + Shoulder, nonspecific + + + + + Pierced back + + + + + Elbow, left + + + + + Pierced lip, lower + + + + + Tongue + + + + + Sternum + + + + + Brace, one leg, nonspecific + + + + + Left Eye, tattoo + + + + + Colostomy appliances + + + + + Finger(s), right + + + + + Right Toe, tattoo + + + + + Kidney Conditions or Diseases + + + + + Breast, nonspecific + + + + + Knee, right + + + + + Left Toe, mole + + + + + Buttock, left + + + + + Lip, upper + + + + + Arm, nonspecific + + + + + Penis + + + + + Left Elbow, healed fractured + + + + + Buttock, right + + + + + Wrist, left + + + + + Right Knee, needle mark + + + + + Finger(s), right hand + + + + + Left Calf, discolored + + + + + Eyebrow, right/right eye area + + + + + Paint (includes thinner) + + + + + Groin Area + + + + + Extra nipple, left + + + + + Face, dimple + + + + + Leg, lower right + + + + + Ear, left + + + + + Vascular prosthesis + + + + + Nose + + + + + Cheek (face), right + + + + + Attention Deficit Disorder + + + + + Breast, nonspecific, missing + + + + + Rib(s), left + + + + + Head, nonspecific + + + + + Arm, left upper + + + + + Elbow, nonspecific + + + + + Lower Left Arm, needle mark + + + + + Allergies including asthma + + + + + Deaf, right ear + + + + + Thigh, left + + + + + Hip, nonspecific, fractured + + + + + Ovary, right + + + + + Crutches + + + + + Forehead + + + + + Lip, right + + + + + Thigh, left + + + + + Forearm, nonspecific + + + + + Jaw, lower left + + + + + Crippled toe(s), left(includes webbed toes) + + + + + Neck + + + + + Analgesics (pain relievers -includes: Darvon, Acetominophen,Aspirin, etc.) + + + + + Elbow, left + + + + + Leg, nonspecific + + + + + Face, nonspecific (Use the MIS fieldo further describe location) + + + + + Pelvis bone, right + + + + + Arm, lower right + + + + + Orthopedic nail or pin + + + + + Upper Right Arm, needle mark + + + + + Crippled arm, left + + + + + Left Elbow, fractured + + + + + Cheek, left + + + + + Upper Left Arm, mole + + + + + Pelvis bone, right + + + + + Wrist, right + + + + + Blind, left eye + + + + + Transsexual(Miscellaneous field should indicate what the individual was at birth and what they are a + + + + + Pockmarks + + + + + Shoulder, right + + + + + Foot, left + + + + + Right Toe, mole + + + + + Foot, right, artificial + + + + + Left Arm, healed fractured + + + + + Foot, left + + + + + Ankle, right + + + + + Lung, left + + + + + Calf, nonspecific + + + + + Wrist, right + + + + + Shoulder, nonspecific + + + + + Shoulder, left + + + + + Crippled finger(s), left hand(includes webbed fingers) + + + + + Transvestite + + + + + Nose + + + + + Knee, right + + + + + Glue + + + + + Right Elbow, mole + + + + + Finger(s), left hand + + + + + Arm, right + + + + + Shoulder, right + + + + + Toe(s), left foot + + + + + Jaw, upper left + + + + + Crippled hand, right + + + + + Alzheimer's Disease + + + + + Toes(s), left foot + + + + + Knee, nonspecific + + + + + Left Eye, remove tattoo + + + + + Cheek (face), left + + + + + Breast, right + + + + + Pierced lip, nonspecific + + + + + Other therapeutic medicationsnot listed above, identify inthe MIS Field. + + + + + Alcohol + + + + + Ankle, nonspecific + + + + + Thigh, nonspecific, needle mark + + + + + Forearm, nonspecific + + + + + Left Ankle, needle mark + + + + + Bald/Balding + + + + + Knee, nonspecific, needle mark + + + + + Pregnancy - Present + + + + + Shoulder, nonspecific + + + + + Foot, nonspecific, artificial + + + + + Toe(s), right foot + + + + + Finger(s), left + + + + + Eyebrow, left/left eye area + + + + + Cheek (face), right + + + + + Knee, nonspecific + + + + + Foot, right + + + + + Hand, left + + + + + Eye, nonspecific, artificial + + + + + Tubes in ears, left and right + + + + + EXTRA TOOTH/TEETH (UPPER JAW) + + + + + Ankle, right + + + + + Hand, nonspecific + + + + + Arm, left + + + + + Rib(s), left + + + + + Chin + + + + + Right Elbow, needle mark + + + + + Wrist, nonspecific + + + + + Wrist, nonspecific, mole + + + + + Glasses (prescription) + + + + + Pierced lip, upper + + + + + Finger(s), left hand + + + + + Hip, nonspecific + + + + + Jaw, lower left + + + + + Forehead + + + + + Thigh, nonspecific + + + + + Cataract, right eye + + + + + Wrist, left + + + + + Eye, right + + + + + Elbow, nonspecific + + + + + Eye, nonspecific, tattoo + + + + + Wrist, right + + + + + Lung, right + + + + + Cataract, left eye + + + + + Blind, one eye, nonspecific + + + + + Abdomen + + + + + Wrist, left + + + + + Extra breast, right + + + + + Shoulder, left + + + + + Upper Right Arm, discolored + + + + + Right Shoulder, needle mark + + + + + Hand, right + + + + + Finger(s), nonspecific + + + + + Thigh, nonspecific + + + + + Arm, nonspecific + + + + + Missing Lumbar Vertebra(e) + + + + + Cheek, nonspecific + + + + + Lip, nonspecific + + + + + Knee, right + + + + + Hand, right + + + + + Face, nonspecific + + + + + Testical, nonspecific, missing + + + + + Ovaries + + + + + Chest + + + + + Forearm, right + + + + + Breast, nonspecific, artificial + + + + + Back + + + + + Clavicle, left + + + + + Other drugs of abuse not listedabove, identify in themiscellaneous (MIS) field + + + + + Cheek (face), nonspecific + + + + + Left Shoulder, artificial + + + + + Foot, left + + + + + Right Elbow, healed fractured + + + + + Knee, left + + + + + Head, nonspecific(use MIS field to further describelocation) + + + + + Rib(s), nonspecific + + + + + Hand, right, artificial + + + + + Forehead + + + + + Right Toe, remove tattoo + + + + + Lip, nonspecific + + + + + Cheek (face), nonspecific + + + + + Brace, left arm + + + + + Pelvis bone, left + + + + + Foot, nonspecific + + + + + Ankle, left + + + + + Arm, nonspecific, mole + + + + + Foot, right + + + + + Acne + + + + + Hand, left + + + + + Pregnancy - Past + + + + + Wrist, right + + + + + Neck + + + + + Ankle, left + + + + + Tonsils + + + + + Orthopedic screw + + + + + Other medical disorders/conditionsnot listed above, identify in theMiscellaneous (MIS) Field + + + + + Brace, neck + + + + + Shorter right leg + + + + + + + + + + + + + + + + CHROME, STAINLESS STEEL + + + + + BRONZE + + + + + MAUVE + + + + + GREEN, DARK + + + + + COPPER + + + + + BLACK + + + + + TURQUOISE (BLUE) + + + + + MAROON, BURGUNDY (PURPLE) + + + + + BLUE, DARK + + + + + BROWN + + + + + GOLD + + + + + SILVER + + + + + TAUPE + + + + + RED + + + + + CREAM, IVORY + + + + + CAMOUFLAGE + + + + + AMETHYST + + + + + BLUE + + + + + GRAY + + + + + ORANGE + + + + + PINK + + + + + TAN + + + + + TEAL + + + + + YELLOW + + + + + MULTICOLORED + + + + + GREEN + + + + + PURPLE + + + + + WHITE + + + + + GREEN, LIGHT + + + + + BLUE, LIGHT + + + + + LAVENDER (PURPLE) + + + + + BEIGE + + + + + + + + + + + + + + + + Friendship Mobile Homes + + + + + Augustana + + + + + Taylor Mfg. Co., Inc. + + + + + Evanston Coach Co. + + + + + Rover + + + + + Lee + + + + + Dave Hicks Co., Inc. + + + + + Rolite, Inc. + + + + + Capacity of Texas, Inc.Longview, Texas + + + + + American Steel Works + + + + + Harvest Motor Home + + + + + Imperial(for model years 1955-1983, useVMA/IMPE; for models prior to 1955and model years 1990-1993, + + + + + Caldweld Div., Smith International,Inc. + + + + + Kings Highway + + + + + Active Homes Corp. + + + + + Mobilemanor, Inc. + + + + + ShipmateSemek Mfg., Inc. + + + + + Holly Industries (or Coach Co.) + + + + + Craftsman (also see make Sears,Roebuck & Co.) + + + + + Top Kat + + + + + Panoz Auto Development Co. + + + + + Rockwell + + + + + Hairgrove Industries, Inc.Longview, Texas + + + + + Milwaukee Motorcycle Co. + + + + + Mustang Trailer Mfg., Inc.Quitman, Arkansas + + + + + S & M Trailer Co. + + + + + Bombardier Inc.Valcourt, Quebec; Ski-Doo/Moto Ski + + + + + Chaparral + + + + + Zollinger Trailer Co. + + + + + Wallstrong Boat Trailer + + + + + Aurora + + + + + CHEROKEE MANUFACTURING COMPANY; SWEETWATER, TN + + + + + Bowen Mobile Homes, Inc.Mfd. by Bowen Mobile Homes, Inc. + + + + + Onan Corp.Minneapolis, Minnesota + + + + + Sportmasters of Tennessee, Inc. + + + + + Corsair Div.Div. Divco-Wayne Industries + + + + + Amphicar + + + + + Colt + + + + + Goldenvale, Inc. + + + + + Quality Trailer + + + + + Cox Trailers + + + + + Asplundh Manufacturing Div.,Asplundh Tree Expert Co. + + + + + Ferrari + + + + + Scamper Coach Trailer + + + + + Aircap Manufacturers, Inc.Tupelo, Mississippi--mfrs. power mowers + + + + + Trojan + + + + + Scotsman Industries, Inc. + + + + + Galbreath, Inc.Mfrs. refuse containers and trailers--Winimac, Indiana + + + + + Jaclen Mfg. Co. + + + + + Bellamy's Mfr. & Research ProductsHiltons, Virginia + + + + + Chrysler Outboard CorporationHartford, WI + + + + + A & M Boat Trailer + + + + + Drive On Trailer Mfg.Mishawaka, Indiana + + + + + Hahn Motors, Inc. + + + + + Challenge-Cook Brothers, Inc.Industry, California + + + + + Butterfield Musketeer + + + + + World Trailers, Inc.Ocala, Florida + + + + + Peterson + + + + + Hollywood Mobile Homes + + + + + Fostron's Factory Outlet Trailers + + + + + Cruiser RV, LLC + + + + + Horseman Camper + + + + + Franklin Equipment Co. + + + + + GRM + + + + + Sachs + + + + + Nissan + + + + + Caravan Industries + + + + + Blackwell Burner Co.San Antonio, Texas . + + + + + Bricklin + + + + + B.FOSTER & COMPANY, INC.; WAYNESBORO,PA + + + + + Birmingham Mfg. Co., Inc.Springfield, Alabama + + + + + Lyncoach & Truck Co. + + + + + Bass Trail Trailer Co., Inc.Mfrs. boat trailers--Midway, Arkansas + + + + + Empress Industries + + + + + Schevelle Homes Sales Corp. of Alabama + + + + + RAYCO MANUFACTURING,INC.; WOOSTER, OH ; EQUIPMENT & TRAILERS + + + + + Puzey Bros., Inc.Fairmont, Illinois + + + + + Brentwood Mobile HomesSubsidiary DeRose Industries, Inc. + + + + + Vertex + + + + + Saturn Corporation + + + + + Roofmaster + + + + + Trail Aire, Inc. + + + + + New Idea Electric Lawn Garden Tractor + + + + + Prebuilt Mfg. + + + + + Classic Aluminum Trailer Corp. + + + + + Funliner Mfg. Co. + + + + + Biot Camping Trailer + + + + + Manitou Mobile HomesMfd. by Rochester Homes, Inc. + + + + + Victorian Homes, Inc.Middlebury, Indiana + + + + + Ajax Trailer Co. + + + + + Neckover Trailer Mfg. Co.Troup, Texas + + + + + U-HaulPhoenix, AZ; utility trailers + + + + + MCIsee Motor Coach Industries, Inc. + + + + + Alloy Machine Products Corp. + + + + + Automatic Drilling Machines, Inc. + + + + + Santa Fe Trailer Co. + + + + + Schantz & Sons, Inc.Marine, Illinois + + + + + Franklin Coach Co. + + + + + Tow Mor ProductsCanon, Georgia + + + + + Gardner, Inc.Mfrs. travel trailers--Bristol, Indiana + + + + + Silver Streak Trailer Co. + + + + + Mercury Coach Corp. + + + + + Buick + + + + + Trail-Easy Travel Trailer + + + + + FN + + + + + Fat City Choppers + + + + + Advanced Vehicle SystemChattanooga, TN; electric shuttle bus + + + + + Racmac Trailer + + + + + Original Equipment Manufacturing, LTD.Sudbury, Ontario + + + + + Dandy Mobile HomesMfd. by Dan's Trailer Supply, Inc. + + + + + Barcraft Homes, Inc. + + + + + Delta Homes Corp. + + + + + Bo-Mar Mfg. Co. + + + + + Chem-Farm, Inc. + + + + + B & J Enterprises, Inc.Sikeston, Mo; mfg. utility trailers + + + + + Big Valley Trailers, Inc.Wynne, Arkansas + + + + + Foremost (also see make J.C.Penney) + + + + + Oasis Travel Trailer + + + + + California Mobile Homes + + + + + Speed + + + + + Pinifarina + + + + + Vespa + + + + + Pierce Arrow + + + + + Trail Horse + + + + + Hitching Rail Trailer + + + + + COACH HOUSE,INC.; NOKOMIS,FL;CLASS B MOTORHOME + + + + + Blanco (model of Intramotor) + + + + + Skycraft Trailer + + + + + R & G + + + + + Sportsman's Dream Mfg. Co. + + + + + Leisure Home TrailerManufacturer-Leisure Time + + + + + Stoughton Trailers, Inc.Stoughton, Wisconsin + + + + + Cruisaire Motor Corp. + + + + + Black Knight (model of Vincent) + + + + + Poclain Div., J. I. Case + + + + + Skipper B Trailer Co., Inc.Div. of Anderson Ind., Inc., Burleson,(formerly Brown Ind.)Texas + + + + + Country EstateMfd. by Redman Homes, Inc. + + + + + TOMOS/TOMAS; BULLET, SPRINT & OTHER MODELS + + + + + WELDTITE TRAILERS; HUNTERSVILLE, NC + + + + + Jerry's Welding Service (JWS)Freeport, Illinois + + + + + Kanzol Enterprises, Inc. + + + + + Twilite Mobile Home Mfg. + + + + + R & H Horse Trailer + + + + + KMG INTERNATIONAL; TANGO TRADE NAME + + + + + Wrangler Recreational ProductsFlorence, Alabama + + + + + EXPEDITION MOTORHOMES; MANUFACTURED BY FLEETWOOD + + + + + Gin Ray Mfg. Co.Nicollet, Minnesota + + + + + LONE STAR MANUFACTURING; VALLEY VIEW , TEXAS + + + + + Warrenville Trailer Mfg., Inc.Warrenville, Illinois + + + + + Single Tilt Trailer + + + + + Superformance International (Maker of replica vehicles) + + + + + B & B Trailer Mfg., Inc.Wapanuck, Oklahoma + + + + + Quality Steel & Aluminum Products + + + + + Cony Truck (Japan) + + + + + Horizon Motor Home + + + + + Snapper + + + + + Aztec Mobile Homes + + + + + Herter + + + + + Raes Utility Trailer + + + + + Syrena + + + + + Nuttall Trailers + + + + + Clapper Camper + + + + + International Trailer Corp. + + + + + Junior Camping Trailer + + + + + Hiawatha Mobile Homes + + + + + Haban/Agri-Fab or Agri-Fab/Haban + + + + + JINSCENG MOTORCYCLES/MINIBIKES, CHINA + + + + + Wonder Land Camper + + + + + Safeway Mobile Homes Div.Div. Commodore Corporation + + + + + Crown + + + + + Goodyear Camper Mfg., Inc.Lincoln, Nebraska + + + + + American Aluminum Co. + + + + + Parkwood Mobile Homes of Florida + + + + + Nissan Diesel Motor Co. (for reference + + + + + Rutt + + + + + Travelmaster, Inc. + + + + + Peddlers Choice + + + + + Easy Rider Trailer + + + + + BERING TRUCK DISTRIBUTION, LLC FRONT ROYAL, VA + + + + + Circle J Stock TrailerMfd. by Western World Inc., previouslyknown as Western Trailers Works, Inc. + + + + + Wildcat + + + + + Motel Mobile Corporation of America + + + + + OZBIKE; CYCLE IMPORTS; MIAMI,FL + + + + + Powell + + + + + Demco + + + + + Steelco, Inc.Alto Loma, Texas + + + + + OCI MANUFACTURING CO.; OREGON, IL + + + + + L & D TRAILERS INCORPORATED; SIKESTON,MO + + + + + Teton Travel Trailer + + + + + McClenny Machine Co. of Virginia, Inc.Suffolk, Virginia + + + + + CONTRACT MANUFACTURERS INC ALSO KNOWN AS :CM TRAILERS; MADILL, OK + + + + + Shasta Industries + + + + + HEARTLAND TRAILER MANUFACTURING & SALES, INC.; SIKESTON, MO BARLOW TRAILERS + + + + + AAA Mobile Home Mfg. Co. + + + + + Mid States Camping Trailer + + + + + Cloud Electric Vehicles + + + + + Hycaloader Co., Inc. + + + + + L & L Trailers + + + + + Travco Corp. + + + + + Stockland + + + + + Brantley Mfg. Co.Fredrick, Oklahoma + + + + + Hill Country Homes, Inc. + + + + + Emmert Mfg. Co., Inc. + + + + + All Star Coach, Inc. + + + + + Hall, R.D. Mfg., Inc. + + + + + Graco, Inc. + + + + + Silverline + + + + + Southern Classic Trailer Mfg., Inc. + + + + + Ada Horse Trailer + + + + + Melvin Manufacturing Corp.See Whip It Snowmobiles + + + + + Rea Trailer Co.Elgin, Illinois + + + + + Coach Craft, Inc. + + + + + Luv-It Mfg. + + + + + Edsel + + + + + KENNY BOYCE MOTORCYCLES + + + + + U.S. AIRFORCE VEHICLE; MAKE IS UNKNOWN + + + + + Trailblazer Trailer + + + + + Envirotech Corp., EIMCO ProcessMachinery Div. + + + + + Vought Industries + + + + + Theurer Atlantic, Inc.Newark, New Jersey + + + + + Wolseley + + + + + CCM/Clews + + + + + Custom Craft Mfg. Co. + + + + + Mobile Office, Inc. + + + + + Electric Vehicle Systems, Inc. + + + + + Graciela + + + + + Allied + + + + + K & O MANUFACTURING CO., INC.;HULL, IA + + + + + Bell's Custom Coaches + + + + + Clark-Wilcox + + + + + Autobieu + + + + + Passport + + + + + UTILITY TOOL & BODY CO., INC. CLINTONVILLE, WI + + + + + Laconia Custom Cycles + + + + + Carson Trailer IncCarson, CA; utility trailers + + + + + All States Trailer Co. + + + + + Marco + + + + + Double Shuffle Mobile Home + + + + + Commander Motor Home + + + + + Kargo TrailersIvyland, Pennsylvania + + + + + Encore + + + + + Foxi + + + + + Palace Corp. + + + + + Norse Trailer + + + + + DuAl Mfg. Co. + + + + + Golden State Mobile Homes + + + + + Daytona + + + + + Florida Trailer Co. + + + + + Waverly StructuresNorth Carolina + + + + + North Country + + + + + Swan Industries + + + + + United Motors + + + + + HIGH-LITE RIDES, INC.; GREER, SC + + + + + Allied Steel and Tractor Products,Inc. + + + + + Luxury Homes, Inc. + + + + + Dickirson Equipment Corp.Salem, Illinois + + + + + HAWN FREEWAY TRAILER SALES (HAWN TRAILERS); DALLAS, TEXAS + + + + + Bolinger Flatbed Trailer + + + + + Corey Enterprises + + + + + ABC Coach Co.From 1960 on, see Vought Industries + + + + + Cadet Coach Corp. + + + + + Orbit Industries, Inc. + + + + + Appleton Trailer + + + + + Kampers Kabin + + + + + ISHIKAWAJIMA-HARIMA HEAVY INDURSTRIES CO, LTD.; JAPAN + + + + + Fiesta (imported by Ford) + + + + + Travel Mate Trailer + + + + + Bullet Trailers, Inc.Boat Trailers, Glen Burnie, Maryland + + + + + AMERICAN YARD PRODUCTS, RIDING MOWERS, MOWERS;WEEDEATER & ELECTOLUX BRAND PRODUCTS + + + + + Osterlund, Inc.Harrisburg, Pennsylvania + + + + + National Mobile Homes + + + + + Ascort + + + + + Windjammer Motorcoach + + + + + Gary Carolina Co. + + + + + Tri-Rod + + + + + Layton Mfg. Co., Inc.Salem, Oregon + + + + + Henderson Mfg. Co. + + + + + Gemtop + + + + + Born Free + + + + + White GMC + + + + + Bell Mfg. Corp. + + + + + Lorak, Inc. + + + + + Williams Craft, Inc. + + + + + Hy-line Enterprises, Inc.Elkhart, Indiana + + + + + Mitsubishi + + + + + Waymatic Welding & Fabricating Co.Fulton, Kentucky + + + + + Martco Waste System Equipment + + + + + Harris Honker Camper Mfg. + + + + + Felburn Flatbed Trailer + + + + + Camelot Camper Trailer + + + + + Marathon Homes Corp.Elkhart, Indiana + + + + + JAMIE'S WELDING; OKLAHOMA + + + + + Carl A. Johnson & Sons + + + + + Kden-Craft Products, Inc. + + + + + FIAT KOBELCO; CONSTRUCTION EQUIPMENT/MACHINERY + + + + + Royal Cargo Trailers, Inc. + + + + + Vacation Homes + + + + + STANLEY YARD & GARDEN TRACTOR/MOWER ETC. + + + + + Blaine's Custom Mfg. ServiceJackson, Mississippi + + + + + Felber + + + + + Sho-Me Campers Co. + + + + + Vogue Motor Home + + + + + Pathfinder Mobile Homes + + + + + Alabama Trailer Co.Birmingham, Alabama + + + + + Low Boy Trailer + + + + + F & H Mfg. Co. + + + + + Italtelai Mfg. Co. (Italy) + + + + + Rycsa + + + + + Allied Mfg. Co. + + + + + WTM, INC.; HALEYVILLE, AL + + + + + Tuk-A-Way-Trailer + + + + + Zeta + + + + + Dan Dee Industries, Inc. + + + + + Blue Gator Boat Trailer + + + + + Star + + + + + Pleasuremate Industries + + + + + FWD Corp. + + + + + Owatonna Manufacturing Co., Inc. + + + + + Crawler Trailer + + + + + Rokon + + + + + I.D.E.C.O. + + + + + Park Estates Homes + + + + + Carter Trailer Co., Inc.Newport, Arkansas + + + + + Sabra + + + + + Maxim Ind., Inc.Mfr. of Maxim Fire Trucks, Middleboro,Massachusetts + + + + + Scenic Campers Co. + + + + + SIMPSON WELDING & CUSTOM TRAILERS / HOWBOY TRAILERS; HUGO, OK + + + + + Telsmith Div., Subsidiary of Barber-Greene Co. + + + + + Comanche Mobile Homes + + + + + Langley Mfg. Div., M.D. Knowlton Co. + + + + + Squire Travel Trailer + + + + + HAWK TRAILERS, LLC; MANAWA, WI + + + + + UAZ (Ulianovsk Automobile Zavod) + + + + + Glasride Trailer + + + + + Essix + + + + + Allmand, Inc.Holdrege, Nebraska + + + + + Rootes + + + + + Apex Travelers, Inc.Elkhart, Indiana + + + + + Western Dynamics Corp. + + + + + Glastron, Inc.New Braunfels, Texas + + + + + Richland Homes Mfg. Co.Subsidiary Magnolia Mobile Home + + + + + Lichty's Blacksmithing, Inc.Silverton, Oregon + + + + + Vac-Con + + + + + Ontario Bus Industries, Inc.Mississauga, Ontario, Canada; bus. + + + + + Massey-Ferguson, Inc.Des Moines, IA + + + + + DeSoto + + + + + Flasko Mfg. Co. + + + + + Tennant Co. + + + + + Sun Devil Trailers, Inc.Boat trailers--Tulsa, Oklahoma + + + + + Beechcraft Mobile Home + + + + + BantamDiv. of Koehring Co., Waverly, Iowa + + + + + LES MACHINERIES PRONOVOST, INC; CANADA + + + + + Feldman Engineering & Mfg., Co. + + + + + Flamingo Trailer Mfg. + + + + + General Trailer Co., Inc.Springfield, Oregon + + + + + Holsclaw Brothers, Inc.Evansville, Indiana + + + + + Barnes Pump Drain Unit + + + + + Frost Trailer Co.West Monroe, Louisiana + + + + + VM Boat Trailer + + + + + Thomas Conveyor Co. + + + + + Boatel Trailer + + + + + GENIE CONSTRUCTION EQUIPMENT; AERIAL,SCISSOR LIFTS ETC. + + + + + Trans Canada Rent-A-Trailer System + + + + + Giddings Machine Co., Inc.Fort Collins, Colorado + + + + + Monroe Tractor + + + + + Highway Trailer of Wisconsin &California + + + + + Prairie Trailer Sales & Service + + + + + Hackney & Sons, Inc. + + + + + Bebe + + + + + Pilgrim Mfg. Co. + + + + + CHEROKEE MOTORCYCLE COMPANY; OKLAHOMA FORMERLY KNOWN AS ''FAST TRAC MANUFACTURING '' OUT OF CALIFORN + + + + + Victoria + + + + + Ditch Witch Div.Div. of Charles Machine Works, DIWTfor reference only + + + + + Orthman Mfg., Inc. + + + + + Chippewa Mobile Homes Corp. + + + + + Dutec Trailer + + + + + Taylor Machine Works, Inc. + + + + + RED HORSE MOTORWORKS; LENEXA, KS + + + + + Draglite Trailer + + + + + HME, INCORPORATED; WYOMING, MI + + + + + Wylie Manufacturing Co.Subsidiary E. D. Etynre & Co.--Oregon,Illinois + + + + + Mack Trucks, Inc. + + + + + DAWSON ENTERPRISES; ELKHART, IN + + + + + Falcon Coach Co. + + + + + Miller & Smith + + + + + U.S. COAST GUARD; MAKE IS UNKNOWN + + + + + Clark-Gravely Corp.Gravely tractors + + + + + MJM Enterprises, Inc. + + + + + Randolph Coach + + + + + Checker + + + + + Marine Camper Trailer + + + + + AquaforgeWentzville, Missouri + + + + + Cliff Hall, Inc. + + + + + Skylark Industries, Inc.Bristol, Indiana + + + + + PW Trailer + + + + + Eastern-Bilt, Inc. + + + + + Curbmaster of America, Inc. + + + + + Kiefer Built, Inc.Kanawha, Iowa + + + + + Empire Plow Co. + + + + + SMPMfd. by Sweetwater Metal Products Co.,Inc. + + + + + Bizzarrini + + + + + Dynacruiser Mount Trailer + + + + + Brandt Trailers, Inc. + + + + + Russco Lowboy Trailer + + + + + Sunshine HomesRed Bay, Alabama + + + + + Piqua Engineering, Inc. + + + + + Trans-Sport + + + + + Highway IndustriesEdgerton, Wisconsin + + + + + Independent Products Co. + + + + + Tote Co.Lenox, Iowa + + + + + Super Flea + + + + + Pre-Built Structures + + + + + FINN CORPORATION; FAIRFIELD, OH + + + + + Artcraft Mobile Homes Mfg. Co. + + + + + Azalea Homes + + + + + Robinhood Motor Homes, Inc.Redondo Beach, California + + + + + TRAILS WEST MANUFACTURING OF IDAHO, INC.; PRESTON, ID + + + + + Travis + + + + + Cycle-MateMfd. by T & T Industries + + + + + Burnup and Sims, Inc.West Palm Beach, Florida + + + + + Degelman Industries, Ltd. (Canada) + + + + + Ultra, Inc. + + + + + Fleming Equipment Co.Ashdown, Arkansas + + + + + Over-Lowe Co. + + + + + Willys-Overland + + + + + Travel Industries + + + + + Essick Trailer + + + + + WORKHORSE CUSTOM CHASIS + + + + + Renault + + + + + Quincy Compressor Div.Colt Ind, Inc., Quincy, Illinois + + + + + MastercraftBryan Metal Products, Inc. + + + + + Ajax Electric Motor Corp. + + + + + Volkswagen + + + + + Linville Horse Trailer + + + + + Ryder + + + + + Snow Tri Scat + + + + + Exco Boat Trailers + + + + + Brandywine Travel Trailer + + + + + Big Horn Trailer + + + + + Griffith + + + + + Astro Mobile Homes Mfg. Co. + + + + + CAR MATE TRAILERS; LEEPER, PENNSYLVANIA + + + + + Ag-Tronic, Inc. + + + + + Brigadier Mobile HomesDiv. Brigadier Industries, Inc. + + + + + CHEROKEE FABRICATION, INC.; OCALA, FLORIDA + + + + + Arista + + + + + Academy Mobile HomesMfd. by Skyline Motorized Div. + + + + + Gorman-Rupp Company, TheMansfield, Ohio + + + + + Dragon ESP, Ltd., or Environmental Service Products + + + + + AVANTI CYCLES,MOPEDS & SCOOTERS + + + + + Fortune Homes Corp. + + + + + NORTHWOOD OF VIRGINIA; WINCHESTER VIRGINIA + + + + + Norcal Boat Trailer + + + + + DMH Co.Div. of National Gypsum Co., St. Louis,Michigan + + + + + Commercial Vehicles, Inc.Tulsa, Oklahoma + + + + + Austin-Healy + + + + + COMPETITIVE TRAILERS, INC.; BELLFLOWER CALIFORNIA + + + + + Bug + + + + + Tama + + + + + WARRIOR TRAILERS, ONTARIO, CA + + + + + Century Engineering Corp. + + + + + Crimson HomesDiv. Winston Industries, Inc. + + + + + YARD MACHINE; SUBSIDIARY OF MTD INDUSTRIES (MOWERS ETC) + + + + + Newell Coach Corp.Miami, Oklahoma + + + + + Great Lakes Mobile HomesDiv. of Guerdon Industries + + + + + Ja-Mar Manufacturing IncSikeston, MO + + + + + Short Go, Inc. + + + + + Mobile Home Industries, Inc.Tallahassee, Florida + + + + + B & B Custom Built TrailersNewport, Arkansas + + + + + Zar Car + + + + + Enterprise Motor Home + + + + + Brewer Utility + + + + + Twin Grove Mfg., Inc.Verona, Wisconsin + + + + + Kenskill Trailer Corp. + + + + + KTM + + + + + CCCCrane Carrier (A CCI Co.) + + + + + Motobic + + + + + B & W Custom Trailers, Inc. + + + + + L & M Trailer Mfg. + + + + + Lonnie's Trailer Sales + + + + + Stoner Trail + + + + + DillyNelson-Dykes Co., Inc. + + + + + Haulmark Industries, Inc. + + + + + White Motor Corp. + + + + + Black Diamond Trailer, Inc.New Tazewell, Tennessee + + + + + Hus-Key Mfg., Inc. + + + + + CHASSIS KING, LLC; CLEARWATER, FL + + + + + Royal Crest Co. + + + + + Fountain Flatbed Trailer + + + + + Utopia Coach Corp. + + + + + Kropf Mfg. Co., Inc. + + + + + Chevallero Motor Home + + + + + DENCO MANUFACTURING + + + + + LOAD TRAIL, INC.; SUMNER, TX + + + + + Young Corp. + + + + + ROCKIN L. RIGGIN CORP.; GRAHAM, TEXAS + + + + + Murray Marine Corp. + + + + + Borella + + + + + Bros. Div.American Hoist Derrick Co., St. Paul,Minnesota + + + + + Phillips TrailersChickasha, Oklahoma + + + + + Eversman Mfg. Co. + + + + + TN TRAILERS, LLC; SHIPSHEWANA, INDIANA + + + + + Roadway Trailer, Ltd. + + + + + W & W White Horse Trailer + + + + + WORTHINGTON WELDING, INC. TRAILERS; PENNSYLVANIA 4MV OR 1W9/OO3 + + + + + R & A MANUFACTURING PARTENRS, LTD.; HOUSTON, TX + + + + + Bi-Motor Stallion + + + + + Hagon + + + + + Kal-Custom Boat Trailer + + + + + Millan Flatdeck + + + + + Supertrail Mfg. Co., Inc.Aberdeen, Misssippi + + + + + C&C MANUFACTURING & FAB; HAZLETON, PA + + + + + Malheur Mobile Homes, Inc. + + + + + Empire Corp., Inc. + + + + + Baker Equipment & Engineering Co. + + + + + AMC Trailer + + + + + Scepter Utility Trailer + + + + + General Engines Co., Inc.Throfare, New Jersey + + + + + Delavan Trailer + + + + + Gardner-Pacific-Sunrader, Inc.Vallejo, California + + + + + TRAILMANOR, INC.; LAKE CITY, TN + + + + + ADLER + + + + + Girard's Mfg. Co. + + + + + Valley TrailersCynthiana, Ohio + + + + + Insley Manufacturing Co.Subsidiary AMCA International Corp. + + + + + Jet + + + + + Chausse Manufacturing Co., Inc. + + + + + Gerard Lowboy Trailer + + + + + Lone Star Boat Mfg. + + + + + Titan Trailer Corp.Div. Concord Mobile Homes--Woodland,California + + + + + Tawas Trailers, Inc. + + + + + Crowley Mfg.Mathiston, Mississippi + + + + + Construction Machinery Div., ClarkEquipment Co. + + + + + Hornet Flatbed Trailer + + + + + Lintzcraft Travel Trailer + + + + + Watt Camper + + + + + Desperado Motor Racing & Motorcycles, Inc. + + + + + MADAMI MOTOR SCOOTERS, ETC. + + + + + BolensMfd. by Outdoor Power Equipment Div.,FMC + + + + + Camp-N-All Co. + + + + + Donahue Corp., The + + + + + Dana Truck Mount Camper + + + + + Conner Industries, Inc. + + + + + TROPHY HOMES, INC.; ELKHART, IN + + + + + Com-Fab, Inc. + + + + + Toyoco + + + + + Deere and CompanyMoline, IL + + + + + Klassic Trailer Mfg. + + + + + Clinton Engine Corp. + + + + + Lone Star Classics + + + + + Cyclescoot + + + + + Custom Bond Mfg. Co.Lansing, Michigan + + + + + Regis Corp. + + + + + Watsonian + + + + + Springcycle + + + + + C.M.Cub (mfd. by SWI Tong Corp.,imported by Convenience Machines) + + + + + Citroen + + + + + Italian Ford + + + + + Bullmobile Trailer, Inc.Caldwell, Kansas + + + + + A. J. Travelute Trailer Mfg. Co. + + + + + BRADTEC, LTD.; DERBY, KS + + + + + R. O. Corp. + + + + + WILKENS MANUFACTURING, INC.; STOCKTON, KANSAS + + + + + XYZ Trailer + + + + + Conestega Mfg. Co. + + + + + Wolfe Mfg. Co. + + + + + Raymond Products Co. + + + + + CARRY ON TRAILER CORP + + + + + Blair HouseMfd. by Manufactured Housing ManagementCorp. + + + + + Charlie Perkins Trailer Company, IncHamshire, TX + + + + + Howard Rotavator Co., Inc., Subsidi-ary of Howard Machinery, Ltd. + + + + + Kent Air Tool Co. + + + + + Herter's, Inc.Waseca, MN + + + + + Calis Travel Trailer + + + + + Commuter Vehicles, Inc. + + + + + Pontiac (Canadian) (Also see makePontiac) + + + + + Hallmark Motor Home + + + + + Jack's Trailer Mfg. + + + + + Craftmade Homes, Inc. + + + + + North American Shipbuilding + + + + + Winston IndustriesMobile homes--Double Springs, Alabama + + + + + Rance Aluminum, Inc. + + + + + GENERAL ENGINES CO. INC.; FLORIDA EAGER BEAVER & INTERSTATE + + + + + Strale + + + + + Beechwood Motor Home + + + + + GLENDALE RECREATIONAL VEHICLES; STRATHROY, ONTARIO, CANADA + + + + + Clayton Homes, Inc.Div. of Clayton Industries, Inc.,Knoxville, Tennessee + + + + + Thiele, Inc.Windber, Pennsylvania + + + + + Prior Products, Inc.Dallas, Texas + + + + + Oklahoma Horse Trailer + + + + + Bushog/Loadcraft (Div. Allied ProductsBrady, TexasCorp.) + + + + + Tuffy + + + + + Sears, Wendell + + + + + Bethany Fellowship + + + + + Zhejiang Lingyun Motorcycle Co., Ltd. + + + + + Trail Mate Trailer Co.Bellingham, Washington + + + + + Cooper + + + + + Sprite + + + + + BYSON TRAILERS + + + + + General Motors Corp. + + + + + Trailer Coach Metal Spec.Vancouver, Washington + + + + + Envoy + + + + + Interstate Trailers, Inc.Arlington, Texas + + + + + Caravel IndustriesWylliesburg, Virginia + + + + + GrasshopperMfd. by Moridge Mfg., Inc. + + + + + Navistar + + + + + Blix Coach + + + + + Riverdale Steel Works + + + + + Can-Car(Canadian Car Trailer Sales Div.)Rexdale, Ontario--Div. of Hawker-Siddeley, Canada + + + + + Cheston & Eshelman Co. + + + + + A & B Trailer Mfg. Co., Inc.Crown Point, Indiana + + + + + Perone Trailer + + + + + Three C's, Inc. + + + + + ZHONGYU GROUP; MOTORCYCLES ETC. + + + + + Speedway + + + + + Morgan Equipment Co. + + + + + Winpower Corp.Newton, Iowa + + + + + Sisu USA Inc. + + + + + Field Office Mfg. Co. + + + + + EXMARK RIDING LAWN MOWER + + + + + Chin Yuan Chi Casting Corp.Paichung, Taiwan + + + + + Eric Enterprises, Inc.Coventry, Connecticut + + + + + Gruendler Crusher and Pulverizer Co. + + + + + POWER TRAC MACHINERY + + + + + Red Arrow Trailer Co. + + + + + HAMPTON AMUSEMENT RIDES, LLC; MISSOURI + + + + + Pamco Trailer + + + + + Pauli Cooling Systems, Inc. + + + + + Asuna + + + + + Kioti + + + + + Huber-Warco + + + + + Peugeot + + + + + Batavus Mo-ped + + + + + American Hauler Ind. + + + + + Huntsman, Inc.Chetopa, Kansas + + + + + Lippert Components Mfg., Inc. + + + + + VAL + + + + + Taylor Made Choppers + + + + + Gator Products, Inc.Jacksonville, Florida + + + + + JOHN KERR MANUFACTURING, CO. + + + + + Carnes Welding & Fabricating Co.Crescent, Oklahoma + + + + + Kaj'n Homes, Inc. + + + + + USTS MANUFACTURING. INC; CANTON, OHIO + + + + + Willys + + + + + Connell Industries, Inc.Phil Campbell, Alabama + + + + + Hitachi + + + + + HRG + + + + + Loadmaster Trailer Co., Ltd. + + + + + Seagrave Fire ApparatusClintonville, Wisconsin + + + + + Sopko Mfg., Inc. + + + + + Dawes Products Co. + + + + + Dong Feng (East Wind) + + + + + Ioni-A-Home Mfg. Co. + + + + + Escape Trailer + + + + + Bass TrackerMfd. by JLM Industries + + + + + Trevco Enterprises + + + + + Pick-Up Top Mfg. + + + + + Zimmerman Automobiles + + + + + PEMBERTON FABRICATORS, INC.; RANCOCAS, NJ + + + + + American Jenbach Corp. + + + + + Hino + + + + + Nelson-Dykes Co. + + + + + Husqvarna + + + + + Lazer + + + + + Load Max Trailers, Ltd. + + + + + Scott Midland Div.Div. A-T-O, Inc. + + + + + Ponycycle + + + + + Circle S Star RouteSulphur Springs, Texas + + + + + Hyundai Trailers + + + + + Ikarus Buses and Coaches + + + + + WES-TEX MANUFACTURING, INC.; LUBBOCK, TX + + + + + Newman Trailers + + + + + Sellers Trailer + + + + + Rocket Trailer, Ltd. + + + + + Park Lane Mobile Homes + + + + + Northway Trailer + + + + + Westinghouse Equipped Mobile Home + + + + + IRONDOG TRAILERS + + + + + E-Max Motorcycles/GGC-Global Generation Cult GMBH + + + + + Wain-Roy, Inc. + + + + + Steyr-Puch + + + + + Bremen Sport Equipment, Inc.(Bremen,IN) + + + + + Wiggins Lifts Co., Inc.Mfgs. Forklifts + + + + + Lynnton Mfg. Co. + + + + + The Broyhill Co. + + + + + XPLORER MOTOR HOME DIV OF FRANK INDUSTRIES + + + + + Clenet Coach Works + + + + + Aluma-liteMfd. by Holiday Rambler Corp. + + + + + Cherokee Mobile Homes + + + + + Big Joe Manufacturing Co. + + + + + Kar-Go Metal Stamping Co.Willow Grove, Pennsylvania + + + + + Sierra Campers Mfg. + + + + + Elliott Mobile Home Mfg. + + + + + Krager Kustom Koach, Inc. + + + + + Acorn Equipment Corp. + + + + + Wenger Mfg. + + + + + Opel (imported by Buick) + + + + + Marcos + + + + + Elcar Mobile Homes, Inc.Div. Divco-Wayne Industries + + + + + Wisconsin Tag-A-Long Trailer + + + + + Reconstructed Motorcycle (SeeOperating Manual,Part 1) + + + + + Cadillac + + + + + Tanckon FRP, Inc. + + + + + Tem Ken Trailers Mfg. + + + + + Allen Engineering Corp. + + + + + Hoosier Mobile Homes + + + + + Yenko + + + + + Citicar (electric car) + + + + + Camp Equipment Co., Inc + + + + + Rhino Tool Company + + + + + WSK + + + + + Five-K Trailer Co., Inc.Bethalto, Illinois + + + + + California Camper Mfg. + + + + + Melroe Tractor Truck + + + + + Time OutT.O. Corp. + + + + + Grady-White Boat Co. + + + + + Milwaukee Electric Tool Corp. + + + + + Versa Two Wheel Trailer + + + + + (Generic Code--for use only whenmanufacturer is not listed) + + + + + Carrie-Craft Div.Div. Thrift Cts. of America + + + + + Argo + + + + + Canoga Mfg. Co., Inc.Mfg. Cement Mixer + + + + + Allied American Builders Corp. + + + + + Georgia Trailer & Equipment Corp.Macon, Georgia + + + + + Little Chum Mfg. Co. + + + + + Penn-Cupit Industries Ltd. + + + + + Pacific Boat Trailers, Inc.Anaheim, California + + + + + Bridge Mfg. and Equipment Co.Woodburn, Indiana + + + + + Comet Mobile Homes + + + + + Barrington HomesSubsidiary Fleetwood Interprises + + + + + Golfmobile + + + + + Transit + + + + + Joseph Thatcher + + + + + Sani-Cruiser Co. + + + + + CMI Corp. + + + + + Bowsman TrailersThree Rivers, Michigan + + + + + New Style Homes, Inc.Pineville, Missouri + + + + + U.S. COACHWORKS, INC.;ZEIGLER, IL + + + + + Wilray ManufacturingFt. Benton, Montana + + + + + The Highland GroupBeachwood, OH; utility trailers + + + + + TEC + + + + + Grove Mfg. Co.Affiliated with Kidde, Inc.,Shady Grove,Pennsylvania + + + + + Hoffman + + + + + COUNTRY CLIPPER; RIDING MOWERS; JAZEE MODEL DIVISION OF SHIVVERS MANUFACTURING + + + + + All A Cart Mfg., Inc. + + + + + Chrysler Boat Co. + + + + + Torch IndustriesElkhart, Indiana + + + + + Pama Camper + + + + + Road King Travel Trailer + + + + + Hide-A-Way Camper + + + + + Shivvers, Inc. + + + + + Aircraft (see Operating Manual,Part 1, Section 2.) + + + + + Gold Leaf Engineering Co. + + + + + GREAT DANE INCORPORATED; FARM & GARDEN EQUIP + + + + + Four Seasons Travel Trailer + + + + + Midway Engineering Co. + + + + + Traveliner Travel Trailer + + + + + Airflyte Mfg. Co. + + + + + Young Spring & Wire + + + + + Wagon Train, Inc. + + + + + Coyote Mfg. Corp.Corona, California + + + + + Copco Steel & EngineeringSouthbend, Indiana + + + + + Eager Beaver Trailer + + + + + Wigwam Motor Home + + + + + Graffin Wellpoint Corp. + + + + + Trailite Trailer + + + + + Neoplan USA CorporationLamar, CO; transit buses + + + + + Debonair + + + + + GAZ + + + + + Lee Coaches + + + + + Magnum Custom Trailer Mfg. Co.Boat utility trailers--Austin, Texas + + + + + Sportsman + + + + + Rockne + + + + + ColumbiaSee MTD Products, Inc. + + + + + Darvon Double Trailer + + + + + Indio Trailer Mfg. Corp. + + + + + Harlow Travel Trailer + + + + + Mercury Boat Co. + + + + + Stillwater Supply Co. + + + + + DKR + + + + + HITCH-HIKER MANUFACTURING, INC., NEW MIDDLETOWN, OH + + + + + Sloat Mfg. Co. + + + + + Pegaso + + + + + Meade + + + + + Countryside Mobile HomeMfd. by Remic Industries, Inc. + + + + + Hellwood Trailer + + + + + Flag Ship Boat Trailer + + + + + TEAM SPIRIT TRAILERS; ELKHART, INDIANA + + + + + Brookwood Mobile Home + + + + + WOOD-MIZER PRODUCTS, INC.; INDIANAPOLIS, IN + + + + + CROSS COUNTRY MANUFACTURING; GREENE, NEW YORK (TRAILERS) + + + + + Modern + + + + + Olympic Trailers + + + + + Excelsior + + + + + Clifford B. Hanney & Sons, Inc. + + + + + Karson Industries, Inc. + + + + + Great Escape + + + + + Montgomery Ward + + + + + R-VISION, INC. INDIANA; MANUFACTURER OF TRAIL BAY TRAVEL TRAILER AND OTHER BRANDS + + + + + Hampton Homes, Inc.Edwardsburg, Michigan + + + + + Sherwood Baronet Tent Trailer + + + + + CANNONDALE CORPORATION, MAKER OF MOTORCYCLES + + + + + Monarch Boat Co.Camper Division + + + + + D.B. + + + + + Magic Touch, Inc. + + + + + Wishbone Trailers, Inc.Hot Springs, Arkansas + + + + + Star Fire, Inc. + + + + + Part (Generic Code--for use onlywhen manufacturer is not listed) + + + + + Travel Supreme, Inc. + + + + + Custom Engineering + + + + + Ginetta + + + + + C & W Truck & Equip. Co., Inc. + + + + + Ruchmore Homes + + + + + Dutchman ManufacturingMiddlebury, IN + + + + + Ransome + + + + + G & F TrailerBoat trailer mfd. in Bainbridge, Georgia + + + + + Target Coach Mfg. Co.Div. Central Builders Supply + + + + + Contessa + + + + + Komatsu American Corp. + + + + + Kitty HawkMfd. by Wright Brothers, Inc. + + + + + Canton Trailer Co. + + + + + Pioneer Coach Mfg. + + + + + ULTIMA MOTORCYCLE + + + + + Roadliner Mfg. Division + + + + + Superior Mfg., Inc. + + + + + SCAG POWER EQUIPMENT, DIVISION OF MTEALCRAFT OF MAYVILLE,WI MAKER OF POWER RIDING MOWERS + + + + + LBTDiv. Fruehauf Corp. + + + + + CZ Engineering, Inc.Dixon, Missouri + + + + + Federal Trailer Co. + + + + + Genuine Scooter Co. + + + + + Harklau Industries, Ind.Humboldt, Iowa + + + + + Ben Hur + + + + + Tornado (British) + + + + + Ossa (Spain) + + + + + King Midget + + + + + Toro Co. + + + + + THOMAS EQUIPMENT LTD.; NEW BRUNSWICK, CANADA + + + + + Cozad Trailer SalesStockton, California + + + + + BANDIT INDUSTRIES; MICHIGAN + + + + + Hainan-Sundiro + + + + + M-System, Inc. + + + + + Shopmade Flatbed Trailer + + + + + Trojan Homes + + + + + Redstone Coach Co. + + + + + Kipco + + + + + Vito Mfg. Co.Hazleton, Pennsylvania + + + + + AMCO Products + + + + + Truco + + + + + Challenger Homes, Inc.Columbia, Tennessee + + + + + Larson Machine, Inc.Princeville, Illinois + + + + + Sahara Mobile Homes + + + + + Virginia Homes Mfg. Corp.Boydton, Virginia + + + + + Terramite Corp. + + + + + Eco-Bike Elec Motorcycle + + + + + Reliart Trailer Mfg. Co. + + + + + Sightseer Motor Home + + + + + Pride Heavy Vehicle Ind. & Pride Enterprises + + + + + Chappy (mfd. by Yamaha Motor Corp.) + + + + + Xkeleton Motorcycles, LLC + + + + + STOLL TRAILERS, INC; ABBEVILLE, SC + + + + + Aros + + + + + Aeta + + + + + Western Trailers IncCo-Tem Corp. Boise, Idaho + + + + + Ranger Boats & Trailers + + + + + Odyssey Trailer Co. + + + + + Air-O-Corp. + + + + + Trillium Trailer + + + + + THUNDER MOUNTAIN CUSTON CYCLES; LOVELAND, COLORADO + + + + + Welchel Enterprises, LLC + + + + + BROWN CARGO VAN, INC.; LAWRENCE, KS + + + + + Pyle Haul-It-All Flatbed + + + + + Buck Camper Co. + + + + + AMERICAN DIRT BIKE, INC.; CALIFORNIA + + + + + Athey Products Corp. + + + + + Fort Lupton Campers + + + + + PRATT INDUSTRIES, INC.; BELLEAIR BLUFFS, FL + + + + + Pacific Campers + + + + + Conestoga Mobile Homes + + + + + Nevlen Company Inc.Wakefield, Massachusetts + + + + + Long Trailer Co., Inc.Tarboro, North Carolina + + + + + Senora TrailersYuma, AZ; trailers + + + + + Van Tech + + + + + Lamborghini + + + + + Talbert Mfg. Inc.Rensselaer, Indiana + + + + + Performance Products, Inc. + + + + + Crescent Trailers, Inc. + + + + + TLC Carrossiers + + + + + Built Rite Trailer + + + + + Stewart Engineering & Equipment Co. + + + + + Trail King Travel Trailer + + + + + Barret + + + + + Break + + + + + Thompson Concrete Pump Trailer + + + + + Beall, Inc.Billings, Montana + + + + + Troy Industries + + + + + Christianson Industries, Inc.Edwardsburg, Michigan + + + + + Carley + + + + + Gooseneck Trailer Mfg. Co., Inc.Bryan, Texas + + + + + Travelcraft Motor Home + + + + + Big Bear (mfd. by Flexo Products Co) + + + + + Duke Mobile Homes + + + + + QUALITY BUILT TRAILER, INC.; NEW MARKET, TN + + + + + Skamper Corp. + + + + + Hendrickson Manufacturing Co. + + + + + Sportcoach Motor HomeMfd. by Sportscoach Corp. of America,Chatsworth, California + + + + + Kentucky Mfg. Co.Louisville, Kentucky + + + + + VENTURE TRAILERS + + + + + River Run + + + + + Beijing Jeep + + + + + Model A and Model T Motor CarReproduction Corp. + + + + + Kensington Welding & Trailer Co.Kensington, Connecticut + + + + + Nomanco, Inc. + + + + + FAST TRAC MANUFACTURING; MOTORCYCLES, CALIFORNIA AS OF 5/2002 KNOWN AS CHEROKEE MOTORCYCLE COMPANY, + + + + + Bills Welding Model Trailer + + + + + Iben Boat Trailer + + + + + Super CookerMfd. by Deep South Sales Co. + + + + + Tecumseh Products Co., Engine Div. + + + + + Cavalier Trailer Mfg. Co. + + + + + Belshe TrailerTecumseh, Oklahoma + + + + + Downey Sheet Metal Shop + + + + + Ber-Vac (Canada) + + + + + Les Autobus M.C.I. + + + + + W. F. Larson, Inc. + + + + + TCI,Inc.Benson, Minnesota + + + + + Galactic Corp. + + + + + U.S. CARGO, INC + + + + + American Duralite Corp. + + + + + Snyder Trailer Co. + + + + + Vacationar Motor Home Truck + + + + + Ampco Mfg. + + + + + Forest City Industries, Inc. + + + + + Mini-CruiserMfd. by R.B.R. Corp. + + + + + YENTES BROTHERS WELDING; LANCASTER, CALIFORNIA + + + + + Capriolo + + + + + Smalley Mfg. Co. + + + + + Feldman Custom TrailersBowling Green, Kentucky + + + + + Wynona Corp.Nappanee, Indiana + + + + + Bankhead Welding Service + + + + + Morger Welding & Mfg., Inc.Bakersfield, California + + + + + Wagon-Haven, Inc. + + + + + Parson Co. Div.Div. of Koehring Co. + + + + + Catalina Amphibious Homes + + + + + General Coach Works, Inc. + + + + + LaSalle HomesDiv. of Tidwell Industries, Inc.,Ripley, Mississippi + + + + + Bowie Industries Corp.Bowie, Texas + + + + + Homemade motorcycle code (seeOperating Manual, Part 1,Section 2.) + + + + + GULF STREAM + + + + + Lectracan + + + + + Multition Hydraulic Truck + + + + + RIDGELINE, INC; WASHBURN, TN + + + + + Comet Construction Co. + + + + + Ford (also see English, French,German, and Italian Ford) + + + + + H. & W. Mfg. Co. + + + + + Kenworth Northwest, Inc.Seattle, Washington + + + + + Triggs-Miner Corp. + + + + + Pryer Industries (Ada, Ohio) + + + + + Stoner Totter Trailer + + + + + Cambridge Mfg. Co., Inc. + + + + + Namco., Inc. + + + + + Speedster Motorcars + + + + + Sea Lion Utility Trailer + + + + + Bertone + + + + + Parkhurst + + + + + FAST ; SNOWMOBILES (TO INCLUDE BLADE MODEL) + + + + + Vanden Plas + + + + + PARIS CUSTOM TRAILER CO.; TEXAS + + + + + Oliver + + + + + Arps Div.Div. Chromalloy American Corp. + + + + + FIBERGLASS INTERNATIONAL, INC.; SCHALLER, IS + + + + + Muntz + + + + + MULTITEK, INC; PRENTICE, WI TRAILER & CONST EQUIP + + + + + GARDEN STATE CHASSIS REMANUFACTURING, INC + + + + + Mankato Mobile Homes, Inc. + + + + + Reids Trailers, Inc.Pleasant Garden, North Carolina + + + + + Baughman Mfg. Co. + + + + + United Fiberglass + + + + + Ring-o-matic Mfg. Co.Pella, Iowa + + + + + Mustang + + + + + Austin Products, Inc.Subsidiary Austin Industries, Inc. + + + + + Butler, L. T. + + + + + McBurnie Coach Craft, Inc. + + + + + SOUDRE KERR, INC.; COOKSHIRE, QUEBEC CANADA + + + + + Anderson Coach Co. + + + + + RETTIG ENTERPRISES; SIKESTON, MO + + + + + Flexi-Coil Ltd. + + + + + Johnny Lightning + + + + + Royal Land Yacht + + + + + McNamee Coach Corp. + + + + + Ohta + + + + + Bay Trailers + + + + + LIEBHERR COMPANIES; CRANES & CONSTRUCTION EQUIPMENT + + + + + SunBird, Inc. + + + + + Precision Cycle Works + + + + + Holland Camper Co. + + + + + Dico Co.Des Moines, Iowa + + + + + Hartman-Fabco, Inc. + + + + + Mobile of Marysville + + + + + Cascade Corp. + + + + + A D BOIVIN SNOWMOBILES; SNOW HAWK MODELS + + + + + Trivellato + + + + + Medford Industries + + + + + Pro-Trail, Inc.Nashville, Tennessee + + + + + Erie City Welding & Spring + + + + + HUTCO BOAT TRAILER + + + + + Mid-Atlantic Homes Co. + + + + + Arrowhead Trailers + + + + + Classic Roadsters, Ltd. + + + + + NorthlandMagline, Inc. + + + + + FlamencoMfd. by Sundancer Div. of WinstonIndustries + + + + + Jude Tent Trailer + + + + + EMERSON TRAILERS, INC., FLORIDA + + + + + Hester Plow Co., Inc. + + + + + Mark Line Industries, Inc.Bristol, Indiana + + + + + Trail Breaker + + + + + Noel Mfg. + + + + + Clypso Motor Home + + + + + Travel Car Motor Home + + + + + MCN Mobile Homes Corp. + + + + + K-D Mfg. Co. + + + + + Centurion International, Inc.Waco, Texas + + + + + Vada Open Top Cattle Trailer + + + + + Abbot, Paul Co., Inc. + + + + + Fuji Robbt Jr (Mfd. by H-MVehicles, Inc.) + + + + + Baker Material Handling Corp. + + + + + Longhorn Trailers; Also see McKinley Enterprises + + + + + Rivercraft Boat Trailers + + + + + Calvacade Industries, Inc.White Pigeon, Michigan + + + + + Target Products Division, Federal-Mogul Corp. + + + + + Star Meteor FloridaDiv. of Divco-Wayne Industries + + + + + MZ + + + + + Adventure Wheels Motor Home + + + + + Westways Mfg. + + + + + Pacemaker Boat Trailer + + + + + Thomas Built Bus Co. + + + + + Gates, Walter C. + + + + + Nova Bus + + + + + Beechwood Industries, Inc. + + + + + Gee-Bee-Dee Manufacturing & Supply Co. + + + + + Mid-West Choppers, Inc. + + + + + G & H Manufacturing, Inc.Arlington, TX; trailers. + + + + + New McGrath + + + + + Horch Limousine + + + + + Wayside Campers + + + + + K-Mart Camper Foldup + + + + + DORT MOTOR CAR COMPANY; FLINT, MICHIGAN + + + + + Whiteman Ind. + + + + + Rach WeldingSt. Joseph, Michigan + + + + + Shelby Mobile HomesDiv. Commodore Corporation + + + + + Taunus (German Ford) + + + + + Pitman Div., Emerson Electric Co. + + + + + All Around Horse Trailer + + + + + Sweepster, Inc. + + + + + Sterling + + + + + Aston-Martin + + + + + Hatfield Welding & TrailerSales, Inc.Mt. Pleasant, Texas + + + + + Penn Trailer + + + + + Chrysler + + + + + Colony Mfg. & Sales Corp. + + + + + Longlife + + + + + Maserati + + + + + PTV + + + + + Kinroad Xintian Motorcycle Mfg. Co., Ltd. + + + + + Bonanza + + + + + King Richards, Inc. + + + + + Steury Trailer + + + + + P.J. Trailer Manufacturing, IncSumner, TX; utility trailer + + + + + Bobbi-Kar + + + + + Gallatin HomesBelgrade, Montana + + + + + TWIST N GO MOTOR SCOOTERS & CYCLES + + + + + Condor Coach + + + + + Bond + + + + + PDV + + + + + Woodill Wildfire + + + + + Skyteam Corp., Ltd. + + + + + Number One + + + + + TBC + + + + + Kris Kraft Mobile Homes + + + + + Wells Western Trailers; Also see Western Recreation Mfg., Inc. + + + + + Darcell Industries, Inc. + + + + + ArgoSee Onatario Drive & Gear Ltd. + + + + + Enfield India LimitedMadras, India + + + + + Space Motor Home + + + + + Hitch HikerMfd.by R. V. Kompacts, Inc. + + + + + BSA (United Kingdom) + + + + + M.B.M. + + + + + Mountain Manufacturing Co., Inc. + + + + + Work-N-Play + + + + + Stew-Gar, Inc. + + + + + Portable Elevator Mfg. Div.,Dynamics Corp. of America + + + + + Buell Motor Co. + + + + + Scootalong + + + + + R-Anell Homes, Inc.Denver, Colorado + + + + + H.N.L. CORP AND OR HENRY L. LANCIANI CORP. + + + + + Go-Tel Leasing Corp. + + + + + G & G TRAILERS; GILLIAND & GILLIAND; PRESTON GILLIAND, HALLS, TN + + + + + Klein Products, Inc. + + + + + Highway Sleeper Corp. + + + + + Down (2) Earth Trailers + + + + + Plains Industries, Inc. + + + + + Islander Motor Home + + + + + Stuart + + + + + Cord + + + + + Towmaster + + + + + Badger Construction Equipment Co.,Division of Burro-Badger Corp. + + + + + Hyundai + + + + + Speedex Tractor Co.Ravenna, Ohio + + + + + Coose Trailer Mfg. Co.Lockwood, Missouri + + + + + Jec Ro + + + + + Leader Horse Trailer + + + + + Kountryaire Travel Trailer + + + + + HomeliteDiv. Textron, Inc. + + + + + Jays Hy Lift Manufacturing Co. + + + + + Essick/Hadco Div.Div. A-T-O, Inc. (Formerly EssickMfg. Co.) + + + + + Kempf Car Hauler + + + + + Happy Travl'r Coaches, Inc. + + + + + Reeves Roofing Equipment Co. + + + + + Lance Truck Mount Camper + + + + + Joplin + + + + + Derbi Motor Corp. + + + + + Skyjack + + + + + Jim Dandy, Inc.Chickasha, Oklahoma + + + + + Kodiak Coach & Mfg. Co. + + + + + CHOPPER WORKS, PERFORMANCE, INC.; HAMPSTESD, NH + + + + + JENNINGS TRAILERS, INC; EMORY, TEXAS + + + + + Wise-Craft Mfg. + + + + + BECKHAM TRAILERS, INC.; WICHITA , KANSAS + + + + + Phillips Mfg. Co., Inc.Lehi, Utah + + + + + Lufkin TrailersDiv. of Lufkin Industries--Lufkin, Texas + + + + + CARGOMATE TRAILER ; CAMPING + + + + + Glen Manor Homes, Inc. + + + + + Constructore Trailers, Inc.Sarasota, Florida + + + + + Lee Boy Construction Equipment + + + + + Zhejiang Xingfu Motorcycle Machine Co., Ltd. + + + + + Panhard + + + + + Nordic + + + + + Hylton Homes, Inc.Phil Campbell, Alabama + + + + + Bucko, Inc.Buhl, Indiana + + + + + Malaguti + + + + + Siata + + + + + Murray Ohio Manufacturing Co.Brentwood, Tennessee + + + + + New Horizons or Horizons, Inc. + + + + + Daewoo + + + + + Krown Camper + + + + + Hines Mfg. Co.Rocky Mount, North Carolina + + + + + Neosho Custom Coach Co.Div. Gearhart's Building Materials + + + + + Universal Camper Mfg. + + + + + Tatra + + + + + American Road Machinery, Inc. + + + + + Gafner Machine, Inc.Escanaba, Michigan + + + + + Buckeye Flatbed Trailer + + + + + Lady Bea TrailersMalden, Massachusetts + + + + + Dura-Craft Mobile Homes + + + + + Yenco + + + + + Medical Coaches, Inc. + + + + + Harnischfegar Corp.Subsidiary of Harnischfeger P&H + + + + + Triumph Motor Co. (TRIU for autoentry) + + + + + Maverick Mobile Home + + + + + H & H SnowmobilesCleveland, OH + + + + + Seabring Home, Inc. + + + + + Schertzer Equipment Co. + + + + + Jupiter + + + + + Dropbox, Inc. + + + + + Jahn Flatbed Trailer + + + + + Avalair Corp. + + + + + MINI DIVISION OF BMW MAKER OF COOPER & COOPER-S + + + + + Lakewood + + + + + Ernest Holmes Div. + + + + + J B EnterprisesElkhart, IN + + + + + Romae IndustriesMountain View, Missouri + + + + + Kasten Mfg. Co.Allenton, Wisconsin + + + + + Southwind Motor Home + + + + + Clemco Industries + + + + + Roam-A-Bout Camper + + + + + Omni Motorsports, Inc. + + + + + Rice & Woolard Mfg., IncNaylor, MO + + + + + Foreman Mfg. Co. + + + + + Audi + + + + + FeedlinerMfd. by Globe Fabricators, Inc. + + + + + Yanmar Tractor USA, Inc.Bensenville, Illinois + + + + + Salsbury + + + + + BETTER-WAY PRODUCTS, INC; INDIANA (BISSON) + + + + + TransporterAmerican Trailer & Mfg. Co. + + + + + FOUR H MFG., INC; SUMNER, IA + + + + + Hanson Camping Trailer + + + + + Escapade Motor Home + + + + + Highway Cruisers, Inc. + + + + + Middlesex Equipment Co. + + + + + Long Chih Industrial Co., LtdTaipai, Taiwan + + + + + Rabbit, Jr. + + + + + WTM, Inc. + + + + + Pace Arrow + + + + + Cardinal Homes, Inc. + + + + + BrockwayDiscontinued production in 1977 + + + + + Circle LMfd. by Well-Built Trailers, Inc. + + + + + Agricultural Machinery Div.Div. FMC--mfrs the Bean sprayer + + + + + Lincoln-Continental + + + + + Deluxe Homes, Inc. + + + + + Tel Star Trailers + + + + + Renaissance Motors + + + + + Herzig Mfg. Co. + + + + + New Paris Traveler Corp.New Paris, Indiana + + + + + Safari Motor Coaches, Inc.Harrisburg, OR + + + + + Pipestone Tandem Boat Trailer + + + + + Glasstite, Inc.Dunnell, Minnesota + + + + + Mondial + + + + + Badger Machine Div.Ronco Engineering Co. + + + + + Bantam Camp Trailer + + + + + AlsportSee Boa-Ski Alsport Ltd. + + + + + Dexter Trailer, Inc. + + + + + Presidential Mobile HomesDiv. U. S. Aluminum Company + + + + + Daffin Mfg. Co. + + + + + Carolina Mobile Homes + + + + + Belvedere Mobile Homes + + + + + Opel + + + + + Karl M. Neufeld + + + + + CARRON TRUCK REPAIR, LTD; GRANITE CITY ILLINOIS + + + + + DARDON, INC. + + + + + East Texas Longhorn Trailers, LLC + + + + + Camper Corp. of America + + + + + Urili Flatbed Trailer + + + + + Biltrite Mobile Homes + + + + + Kari Cool Trailer + + + + + Speedway Products, Inc.Mansfield, OH + + + + + Trailcraft Boat Trailer + + + + + THINK ELECTRIC VEHICLES; DIVISION OF FORD MOTOR COMPANY + + + + + Muhlberg + + + + + Pull A Long Mfg. & Sales + + + + + Cimatti + + + + + Amco Boat Trailer + + + + + Macanismos Ensamblados S. A. De C. V.Mexico; tank trailers + + + + + ZIMMERMAN TRAILERS + + + + + Carsons Mfg., Inc. + + + + + FMC Corp. + + + + + Trike + + + + + MayberryMfd. by Rollohome Corp. + + + + + Elgin Sweeper CompanyElgin, Illinois + + + + + B-M-B. Mfg. Co. + + + + + Marque, Inc.Bristol, Indiana + + + + + Suzuki + + + + + Marion Power Shovel Co., IncDiv. of Dresser Ind. + + + + + Aluminum + + + + + BRUSH ROADSTER + + + + + Piper Industries, Inc. + + + + + T&E ENTERPRISES OF HERSCHER, INC.; HERSCHER.IL + + + + + Fabricated Alloy Building Co., LLC + + + + + Richards Utility Trailer + + + + + Andrea Mobile Homes + + + + + Cleasby + + + + + Case, J. I., Co.Subsidiary Tenneco. Inc. + + + + + Trail It Horse Trailer + + + + + Necedah FlyersMfd. by Twin City Racing + + + + + FASTLINE; KANSAS + + + + + Chaika + + + + + Davenport Trailer or Mobile Home Co. + + + + + SEWER EQUIPMENT CO. OF AMERICA + + + + + General Moped Co. (New York,New York) + + + + + All Steel Mfg. Co. + + + + + Corbin Electric + + + + + JI-EE Ind., Co., Ltd. + + + + + Power Curber, Inc. + + + + + Vicon Farm Machinery, Inc. + + + + + Italvelo + + + + + Essex + + + + + Rebel Boat Trailer + + + + + Holandia Holder + + + + + Sensation + + + + + Ashland Industries, Inc. + + + + + Sabre Equipment Div.Div. Sabre Metal Products + + + + + Marshfield Homes, Inc. + + + + + Worthington Champ + + + + + Modern Mobile Homes + + + + + TRANSPORT TRAILERS; FENNVILLE, MI + + + + + AlyMfd. by Skyline Corp. + + + + + Dressen Custom Trailers, Inc. + + + + + Colonial Flatbed Trailer + + + + + APPALACHIAN MFG. INC.;ELKHART, IN + + + + + Air Support IndustriesGlassboro, New Jersey + + + + + BJ Mfg. Co.Harrison, Arkansas + + + + + Clark Mfg. Co. + + + + + Kent Industries, Inc.Bristol, Indiana + + + + + Fieldacre Horse Trailer + + + + + Ace Enterprises, Inc.Miami, Florida + + + + + Hummel + + + + + Atlantic Coast Camper + + + + + Trac-Machinery Corp.Subsidiary of E. D. Etnyre & Co. + + + + + All Seasons Motor Home + + + + + Wabash National CorporationLafayette, Indiana + + + + + Competitive Boat Trailer + + + + + Victory Motorcycles + + + + + Sila Autoretta + + + + + ASM TRAILERS; MOUNTAINBURG, AR + + + + + Phelps Horse Trailer + + + + + Henslee Mobile Homes, Inc. + + + + + Ducati + + + + + Joy Mfg. Co. (Air Power Group)Montgomeryville, Pennsylvania + + + + + Rebel Mobile HomeDiv. Skyline Homes + + + + + Guidon Camper Trailer + + + + + Broderson Manufacturing Corp. + + + + + Hy-Dynamic Div.Bucyrus-Erie Co. + + + + + Dart + + + + + Cullip Industries + + + + + Byers Mfg. Inc.Lawton, Michigan + + + + + Mid-Equipment Corp. + + + + + MLBLT + + + + + Ag-Chem Equipment Co. Inc.Edina, Minnesota + + + + + Tara Products, Inc.White Pigeon, Michigan + + + + + Aalite Co. + + + + + Farm Shop, Inc.Congerville, Illinois + + + + + Zanella + + + + + Budd Co. Trailer Division, TheFormerly Ginchy Mfg. Corp.--Downingtown,Pennsylvania + + + + + EHM Mfg. Co. + + + + + Stone Construction Equipment Inc.Honeyoye, New York + + + + + Western (NEV) Neighborhood Electric Vehicles + + + + + West Wind Trailer Co. + + + + + SpacemasterColumbia, Tennessee + + + + + Destiny Industries, Inc.Moultrie, Georgia + + + + + BoatoterMfd. by Thomas Mfg. + + + + + Futura Mobile Home + + + + + ROOSE MANUFACTURING; PELLA, IA + + + + + American Lifan Ind., Inc. + + + + + Swift Motorsports, Inc. + + + + + Atlas Hoist & Body, Inc. + + + + + Rite-Bilt + + + + + Thomas & Co. + + + + + Vance Campers, Inc. + + + + + Prew Proco Travel Trailer + + + + + Barker Trailer Manufacturers, Inc.Phoenix, Arizona + + + + + Bradley GT + + + + + Mazda + + + + + Hank's Mobile Home Service + + + + + Plastic Forming Co. + + + + + DOUBLETREE RV, LLC; LAGRANGE, INDIANA + + + + + Kayout-Forester Travel Trailer + + + + + Knowles Mfg. Co. + + + + + Steed-Pollak Mfg. Co. + + + + + Lovebug Travel Trailer + + + + + Howe Engineered Sales Co.Waterloo, Iowa + + + + + V. E. Enterprises + + + + + ExhibitorMfd. by Miley Trailer Co., Inc. + + + + + M.T. Trailers, Inc. + + + + + J & L Tank, Inc.Saginaw, Texas + + + + + Big Well Industries + + + + + Trainliner + + + + + Soni II + + + + + Lazy J Horse Trailer + + + + + PRO LINE TRAILERS; COCOA, FL + + + + + Steyr-Daimler-Puch + + + + + STROHL CORPORATION; MISHAWAKA,IN ; VARIOUS STYLES TRAILERS + + + + + Lindsay Co., Inc., P. K.Deerfield, New Hampshire + + + + + Paughco, Inc.Carson City, NV + + + + + Can-Am + + + + + Huron Industries, Inc. + + + + + Whitehaul Kaler Trailer + + + + + Lincoln Park Mobile Homes, Inc.Shipshewana, Indiana + + + + + American Trailer Specialists + + + + + TOP HAT INDUSTRIES, MT. PLEASANT, TX (TRAILERS) + + + + + Carey Trailers, Inc.Weatherford, Texas + + + + + Bertran Trailer + + + + + Fleetcraft Corp. + + + + + Dunham Lehr, Inc. + + + + + Parmiter, P. J. & Sons Ltd. + + + + + Novae Corp. + + + + + Wise Welding, Inc. + + + + + Masterline Co., Inc. + + + + + Summers Mfg. Co. + + + + + Road Roamer Campers + + + + + Bertolini Container Co.Butler, New Jersey + + + + + Conmaco, Inc. + + + + + Frazier + + + + + H & S Mfg. Co., Inc. + + + + + River Trail TrailersLittle Rock, Arkansas + + + + + Raymur Acceptance Corp. + + + + + Burch Trailer + + + + + MECOX RESOURCES SA DE CV; MEXICO + + + + + CMI Load KingElk Point, SD; commercial trailers + + + + + Darwin + + + + + AVENGER CORPORATION; MICHIGAN + + + + + Southwest Truck Body Co.St. Louis, Missouri + + + + + Dual-Wide, Inc. + + + + + JAMMER CYCLE PRODUCTS, INC BURBANK, CA + + + + + Otterbacher Mfg., Inc.Crestline, Ohio + + + + + CEI EQUIPMENT COMPANY, INC; CEDAR RAPIDS, IA + + + + + Universal Tractor Foreign Trade Co. + + + + + Seemore Flatbed Trailer + + + + + DMP + + + + + Brutt + + + + + Warner & Swasey Co. + + + + + Acura + + + + + CMWC Trailer Co., Inc. + + + + + Ferris Ind. + + + + + Long Haul, TheMfd. by Mark Fore Vatco Ind. (M.F.V.) + + + + + K & M Mfg. Co.Renville, Minnesota + + + + + Cleavers of BismarkBismark, Arkansas + + + + + Mobile Products, Inc. + + + + + Port Trailer Mfg. Co.City of Industry, California + + + + + Roll-O-Flex, LTD.Regina, Saskatchewan + + + + + Ramlin + + + + + Puch + + + + + C & S Trailer WorldFort Worth, Texas + + + + + Coon Custom Coach Mfg. + + + + + AMERICAN CRUISER MOTORHOME, NAPPANEE, IN + + + + + Arrow Campers, Inc. + + + + + Buckskin Trailer Mfg. Co.Boosier City, Lousisiana + + + + + Chromalloy American Corp., FarmSystems Division + + + + + Rexnord, Inc. + + + + + Idaho Norland Co. + + + + + Bo Cats, Inc.Garden City, Kansas + + + + + Pinson Truck Equipment Co. + + + + + Private CoachDiv. F & L Construction + + + + + Peerless DivisionDiv. of Lear Siegler--Tualatin, Oregon + + + + + Northern Star Mobile Home + + + + + Facellia + + + + + Terraplane + + + + + Multiquip + + + + + Trail Boss + + + + + Heritage by Abel Corp. or Franklin Coach Co., Inc. + + + + + Portland Wire & Iron Works + + + + + Madden TrailerAshdown, Arkansas + + + + + Elder Trailer & Body + + + + + Kolberg Mfg. Corp., Subsidiary ofPortec, Inc. + + + + + Reinell Boat Trailer + + + + + Tri-Way HD Snowmobile Trailer + + + + + Berkshire Industries + + + + + Klassen Homes, Ltd. + + + + + Balkan + + + + + Custom Plumbing Co. + + + + + ALFAB INC.; TRAILERS + + + + + Italia + + + + + Emergency One, Inc. + + + + + Creightons TrailerMaryland + + + + + MARTINS ENTERPRISES; DONALDS, SC + + + + + Estevan Industries, Ltd. + + + + + Right Products, Inc. + + + + + E-Z-GoSee Polaris Industries Inc. + + + + + Admiration HomesElkhart, Indiana + + + + + B & S Boat Trailer Mfg. Co.Gainesville, Florida + + + + + Christie, J. W. Bill, Inc.Collin County, Texas + + + + + Platt Trailer Co. + + + + + Woodsmen Camper + + + + + Don-A-Bell Homes, Inc. + + + + + Northwestern Motor Co.Subsidiary Fairmont Railway Motors, Inc. + + + + + Bilken EnterprisesMfr. of Specialty Trailer (bought out byAmerican Enterprises) + + + + + Sharratt Mobile Homes & Supplies + + + + + Liftall ForkliftMfg. by Lion Mfg. Co., Inc. + + + + + C & C TRAILERS, INC. NORMAN OKLAHOMA + + + + + Atlas Tool & Mfg. Co. + + + + + Brobts & Associates + + + + + Silver Star Trailer + + + + + Sea Breeze Trailer + + + + + CommandoYard tractor--mfd. by Daybrook-OttawaDiv. + + + + + Range Rover of North America + + + + + Delto Homes, Inc. + + + + + Barco Mfg. Co.Johnstown, Pennsylvania + + + + + Stam Mfg. Co. + + + + + Bel-Aire Campers or Coaches + + + + + TIMBERKING, INC + + + + + Thompson + + + + + Crown Coach or Crown Cargo Coach + + + + + Chunfeng Holding Group Co., Ltd. + + + + + Antique & Collectible Autos, Inc. + + + + + Lear SieglerMfd. by Signal Div. of Lear Siegler,Inc. + + + + + Gazelle + + + + + Dennison Utility Trailer + + + + + Mountain Valley Enterprises + + + + + Cambridge Homes, Inc. + + + + + Open Road Industries + + + + + M. P. McCaffrey + + + + + Sage Mfg. Co. + + + + + Bee Bob Trailers + + + + + Little Giant Crane & Shovel, Inc.Des Moines, Iowa + + + + + HOMESTEADER, INC.; NEW TAZEWELL, TN + + + + + Courthouse Camper Trailer + + + + + BMW + + + + + TMC Inc.Poskin, WI; mfg. pontoon trailers + + + + + Load Rite TrailersDiv. of Pennsbury Mfg., Inc. + + + + + Columbia Mfg. Co. (subsidiary Yard-Man Co. - Columbia Commuter) + + + + + Bingham + + + + + Bray Trailers + + + + + Sportsliner Camping Trailer + + + + + Safari + + + + + Yampa Coach Mfg. + + + + + Mascot Homes, Inc. + + + + + Dixon Industries, Inc.Coffeyville, Kansas + + + + + Cam-Pact Co., Inc. + + + + + Didier Mfg. Co.Franksville, Wisconsin + + + + + SterlingSterling-Salem Corp. + + + + + Crossroads + + + + + Chaparral Mfg., Inc. + + + + + Heron Travel Campers + + + + + Artcraft of Georgia + + + + + Yankee + + + + + Roadmaster Mfg. Co. + + + + + Circle H Horse Trailer + + + + + Carlisle + + + + + Scott Equipment Co. + + + + + MOFFETT ENGINEERING, LTD; FORKLIFTS ETC + + + + + Arnolt-Bristol + + + + + Howard Commercial Turf Equipment Co.Mfrs. Mowers--St. Louis, Missouri + + + + + Bedford + + + + + Alex Fiegelson Co. + + + + + Obrect Trailer + + + + + Lazy Daze Motor HomeMfd. in Pomona, California + + + + + Rambler-manufactured prior to 1966(1966 and later Ramblers manufac-tured by American Motors - seeAme + + + + + Brandy IndustriesColon, MI; white tail camping trailers. + + + + + Penn RoyalMfd. by Wisconsin Homes, Inc. + + + + + Tecumseh + + + + + Aero Glass Boat Co. + + + + + Tanden Boat Trailer + + + + + James + + + + + Sun Belt Energy Housing, Inc. + + + + + CompanionMfd. by Kit Mfg. Co. + + + + + Lighter-Bilt Trailers, Inc.Durham, California + + + + + U.S. Bus Corp. + + + + + Carabela (Mexico) + + + + + Selma Trailer & Mfg. Co. + + + + + Centurion Travel Trailer + + + + + GOLD STAR ENTERPRISES; SIKESTON, MO + + + + + ALLEN MANUFACTURING, INC; FORT MORGAN, CO; TRAILERS + + + + + Warrior Mfr.Henderson, Texas + + + + + How-Lo Campers Co. + + + + + LOAD-EAZ Trailer Inc.Bensalem, Pennsylvania + + + + + MPC Cruiser Camper Trailer + + + + + Irabeck & Co.Harrington, Delaware + + + + + Lambretta + + + + + SOUTHWEST GOOSENECK; SAN ANTONIO, TX + + + + + McCollough CorporationBrookfield, MO + + + + + Twilight Coach Mfg. + + + + + Showco Nomad Trailer + + + + + Wynn Trailer Works + + + + + JZ Riders Custom Motorcycles + + + + + Van American, Inc.Goshen, Indiana + + + + + EAST TENNESSEE TRAILERS LLC; MOSHEIM, TN + + + + + Red Gooser Horse Trailer + + + + + Holstein Mfg., Inc.Holstein, Iowa + + + + + Montebello Mobile Home Trailer + + + + + Olds Trails Trailer + + + + + Crossland Industries + + + + + Falco Mfg. Co. + + + + + SMB Teleiamotre (Bologna, Italy) + + + + + REMEQ, INC.; PRINCEVILLE, QUEBEC CANADA + + + + + Rolls International TrailerMobile Home + + + + + Double J Horse Trailer + + + + + Great Lakes Cargo, LLC + + + + + Iowa Mold Tooling Co., Inc. + + + + + Ken Craft Trailer + + + + + McCabe-Powers Body Co. + + + + + Eagle Crusher Co., Inc. + + + + + Cub Cadet Corp.Subsidiary of MTD Products, Inc.Purchased Cub Cadet tractor line fromInternational Ha + + + + + Stidham Horse Trailer + + + + + Hilltop Mfg., Inc.El Dorado, Arkansas + + + + + Bobby's Custom Camper Mfg. + + + + + Lewaub Trailer Mfg. + + + + + White Pine Campers, Inc.Waupaca, Wisconsin + + + + + Cooper Alpine Motor Home + + + + + Eljay Mfg. Co. + + + + + ASM TRAILERS; MOUNTAINBURG, AR + + + + + Kingston Horse Trailer + + + + + Token Flatbed Trailer + + + + + Clayton Craft + + + + + AMFSee Harley-Davidson + + + + + Metropolitan + + + + + Monroe Motors Inc., Wally-Mo DivisionHolladay, Tennessee; manufactures carcarriers and utility trail + + + + + Heathkit + + + + + Dairy Equipment Co.Madison, Wisconsin + + + + + Comanche Trailer Corp. + + + + + Autocarrier and A.C. + + + + + Fischer + + + + + C & C IndustriesMfg. of Master Track F.B. Trailer;Gaithersburg, MD + + + + + TK Sterling + + + + + PREMCO PRODUCTS, INC.; LA VERNE, CA; TRIPLE L TRIALERS + + + + + Columbia Mobile Homes, Inc. + + + + + Star Transport Trailers, Inc.Sunnyside, Washington + + + + + Pollock Industries + + + + + Cumberland CoachesH & W Mfg. Co. + + + + + Taylor-Dunn Industrial Electric VehiclesAnaheim, California + + + + + Beiler Hydraulics, Inc. + + + + + Beatrice Motor Mart Mfg. & Easy-Haul + + + + + Royer Foundry and Machine Co.Kingston, Pennsylvania + + + + + Reco Goliath Tent Trailer + + + + + Simek Mfg., Inc. + + + + + CORNELIUS MANUFACTURING, INC.; ELNORA, IN + + + + + Indiana + + + + + Y W + + + + + J-Rod Trailer Co.Red Oak, Texas + + + + + Oelrich Mfg. Co. + + + + + Ride-On, Inc.Mfrs. boat trailers--Ceres, California + + + + + Mauldin Mfg. Co., Inc. + + + + + Monte Carlo Mobile Homes + + + + + CARGO CRAFT, INC.; GEORGIA + + + + + Jay-Kee Mfg., Inc.State Center, Iowa + + + + + T & T Industtries, Inc. + + + + + Cline + + + + + Holden + + + + + Kar-Rite CorporationFranklin Park, Illinois + + + + + Pacemaker Mobile Homes & Travel TrailerDiv. Lonergan Corporation + + + + + Capital Industries, Inc. + + + + + Ryobi + + + + + New Flyer + + + + + Swinger Camper Mobile Home + + + + + Intrapid Trailer + + + + + Duplex Truck Div.Div. of The Nolan Co., Midvale, Ohio + + + + + Keystone Trailer & Equipment Co.Kansas City, Missouri + + + + + Talbot-Carlson, Inc.Audubon, Iowa + + + + + Grenadier Mobile HomesMfd. by Statler Homes Mfg. + + + + + SCOTT'S RIDING MOWERS/TRACTORS MFG FOR SCOTTS BY JOHN DEERE + + + + + Baker-York Forklift + + + + + Commodore Corp.Syracuse, Indiana + + + + + JD HANDLING SYSTEMS OR D.J. STEELE & CONSTRUCTION + + + + + Cortez House Trailer + + + + + Trail-It Coach Mfg. Co. + + + + + I. A. M. E. + + + + + Bergantine + + + + + INMAN TRAILERS; INMAN, KS + + + + + Breeze Camping Travel Trailer + + + + + Champion Pneumatic Machinery Co.,Inc. + + + + + Bigfoot Ind., Inc. + + + + + RIDLEY MOTORCYCLE COMPANY; OKLAHOMA CITY, OK + + + + + Powerline ProductsDiv. of White Oak, Inc.--Washington,Indiana + + + + + Simca + + + + + REINKE MFG. INC; DESCHLER, NEBRASKA + + + + + HICO Corp. of America + + + + + Arctco, Inc.See Arctic Enterprises + + + + + Kannon Motorcycles, LLC or SJH Mfg., Inc. + + + + + Sunbird Boat CompanyColumbia, SC; boat trailers.Haleyville, Alabama + + + + + G & L Utility Trailers + + + + + Arnold Travel Trailer Mfg. Co. + + + + + Jeep (for model years prior to 1970) + + + + + Car Caddy + + + + + KEARNEY TRAILERS CO. GRNADSALINE, TX + + + + + Popcycle Motors, LLC + + + + + Monson & Sons Trailer + + + + + Huffy + + + + + Boone Trailers, Inc.Palmer, Massachusetts + + + + + BrindleLaOtto Metal Fobricating Co., Inc. + + + + + Infinity Trailer Sales + + + + + Morgan Mobile, Inc. + + + + + Snake River Trailers + + + + + Dynamark Tractor Mower + + + + + Economy Camper Co. + + + + + Bounder Motor HomeMfd. by Fleetwood, Decatur, Indiana + + + + + Odyssey + + + + + McFarlane Mfg. Co., Inc. + + + + + MiddleburyMfd. by Coachmen Homes Div.Coachman Industries, Inc. + + + + + Holiday Royal Travel Trailer + + + + + Texan Trailer Mfg. Co. + + + + + CAREFREE CUSTOM CYCLES, LLC + + + + + Pace American, Inc.White Pigeon, Michigan (throughMarch, 1988)Middlebury, Indiana (EffectiveApril, 1 + + + + + DKW + + + + + ARSENAL TRAILER MANUFACTURING, INC; HARRISONBURG, VA + + + + + EXISS ALUMINAM TRAILERS, INC.; EL RENO, OK + + + + + Alcan American, Inc. + + + + + Sun Valley Car Carriers + + + + + Western Auto Supply Co.Also see make Wizard + + + + + Sunbeam + + + + + Camper De Ville, Inc. + + + + + CataphoteDiv. Ferro Corp., Jackson, Mississippi + + + + + Unpublished farm or garden equipment mfr(See Operating Manual, Part 1,Section 2) + + + + + Circle Supreme Mfg.Knowville, Tennessee + + + + + Advance Machine Co. + + + + + Polar Mfg. Co.Holdingford, Minnesota + + + + + Badger Trailer Co. + + + + + Rex Mobile HomesDiv. of Divco-Wayne Industries + + + + + Schult Mobile Homes Corp.Middlebury, Indiana + + + + + Whitehead & Kales + + + + + Starcraft Mfg. Co. + + + + + Gill Mfg. Co. + + + + + Dempster + + + + + Daihatsu + + + + + Continental + + + + + Autobianchi + + + + + E-Z Loader Boat Trailer + + + + + Firestone Tractor + + + + + Oriole Trailer Mfg. Co. + + + + + Cavco Ind. + + + + + CHARLY ELECTRIC MOTOR SCOOTERS ETC. + + + + + Chevrolet + + + + + A & C Knight, Ltd. + + + + + HUMMER; FORMERLY CODED AS AMGN/AMERICAN GENERAL CORP. AS OF 3/1/02 PART OF THE GENERAL MOTORS (GM) V + + + + + Dixie Chopper + + + + + Western Coach Corp. + + + + + Blue, John Co.Huntsville, Alabama + + + + + Golden Isle Trailers, Inc. + + + + + Roadmaster Rail, Inc. + + + + + Bulk-Hauler TrailerSee Kellebrew Mfg. Co. + + + + + Puma Camper SalesDiv. American Sterling Enterprises + + + + + ROLLS RITE TRAILERS, INC; MARIANNE, FL + + + + + Campfire Travel Trailer + + + + + Chibi + + + + + LEISURE TRAVEL VANS, LTD.; MORDEN, ME + + + + + RHEA'S TRAILER SALES, INC.; TEXAS + + + + + Bridgeville Trailers, Inc. + + + + + Pointer + + + + + M-B Co., Inc. of Wisconsin + + + + + Com-Camp + + + + + Charger Pick-up Campers + + + + + Starline Trailer Mfg. Co. + + + + + Schiebout Mfg. Co. + + + + + Ecohl Trailers + + + + + Nordine Mfg. Co. + + + + + Rugg Manufacturing Co. + + + + + Apache Corp. + + + + + Wisconsin Body & Hoist + + + + + Tiger Trailer + + + + + J. C. Penney + + + + + Peabody Solid Waste Management + + + + + Toyocar Van Container Trailer + + + + + Bloom, Inc. + + + + + Freeway, Inc. + + + + + Trail-Wide Corp. + + + + + Correct Craft, Inc. + + + + + Excel Industries, Inc.Hesston, Kansas + + + + + Beemer Trailer Mfg. & Sales + + + + + Calvade Trailer + + + + + Jason Mfg. + + + + + WeMac Mfg. Co.North Kansas City, Missouri + + + + + Tahiti Ski Trailers + + + + + Country-BoyMfd. by Reid's Mfg. & Welding Co. + + + + + Susquehanna-Santee Boat Works, Inc.Boat Trailers; Willow Street,Pennsylvania + + + + + Federal + + + + + Caulkins Boat Trailer + + + + + Butler Mfg. Co. + + + + + TRAILERS EXPRESS, INC. SIKESTON, MO + + + + + Fontenelle Homes, Inc. + + + + + Hi-U-Trailer Mfg. + + + + + Argosy Travel TrailerVersailles, Ohio--Sub. of Airstream + + + + + English Industries + + + + + Baron Motorcycle Co. + + + + + Erie-Sprayer Co. + + + + + Pierce Lowboy Trailer + + + + + Bultaco (Spain) + + + + + Merhow Industries + + + + + Briggs & Stratton Corp. + + + + + Wedgewood Homes + + + + + Excell Travel Trailer + + + + + Longrun + + + + + WRIGHT; STANDER & SENTAR MOWER MODELS;FARM & GARDEN EQUIPMENT + + + + + Roulette Caravan Co. + + + + + Manet + + + + + ASA + + + + + Byerly Trailer & Mfg. Co. + + + + + Unpublished trailer mfr. + + + + + T & L TrailersSikeston, MO; utility trailers + + + + + Gleason Corp. + + + + + R.E. Custom Boat TrailersWest Columbia, South Carolina + + + + + Highstone Trailer + + + + + Carolina Travel Trailers + + + + + TOP BRAND TRAILERS + + + + + J & J Flatbed Trailer + + + + + Mini-Marcellino + + + + + City Dump Trailer + + + + + Fruin + + + + + Heco Boat Trailer + + + + + Jay Wren Trailer + + + + + Ramses + + + + + Honorbuilt Trailer Mfg. + + + + + HYOSUNG MOTORCYCLES & MOPEDS; CHINA + + + + + Silver Eagle Travel Trailer + + + + + MID AMERICA MFG.; INC.; BERTRAND, MO + + + + + Solo Motors, Inc. + + + + + Bowman & Sons + + + + + Six Pac Camper + + + + + MDS + + + + + Realite Trailer + + + + + Pennsbury Manufacturing CorpBensalem, PA; boat trailers + + + + + ROYAL RIDER MOTORCYCLE MANUFACTURING CO., INC.; HUDSON, FL + + + + + MARINE TRANSPORTATION CO., INC.; NORWELL, MA + + + + + Magna American Corp. + + + + + Black Diamond Enterprises + + + + + E-Bus + + + + + Seiden Mobile Homes + + + + + Montgomery Ward (Riverside)MONT for reference only + + + + + Tyler Coach Mfg. + + + + + Rimer, Inc. + + + + + Circle K KennimoreOklahoma City, Oklahoma + + + + + Hill Dump Trailer + + + + + El Do-Craft Boat Co., Inc.Boat trailers--Smackover, Arkansas + + + + + Smily + + + + + Beall Trans-Liner, Inc.Portland, Oregon + + + + + Champion Home Builders Co.Dryden, Michigan + + + + + River Oaks Homes, Inc.Boaz, Alabama + + + + + Betten France TransportationKentucky + + + + + Page Trailer + + + + + Jacobsen Trailers, Inc. + + + + + Homeway Mobile Homes + + + + + Ebony Line Products + + + + + Mgnol Tandem Boat Trailer + + + + + Wicks Engineering & Construction Co. + + + + + Tempe Trailers + + + + + Seminole Boat Trailer + + + + + DAYTEC CENTER; HESPERIA, CA ; MOTORCYCLE FRAMES & PARTS + + + + + Borgward + + + + + Stilo Trailer + + + + + Electric Vehicle Corp. (mfrs. ofreplicas, Minneapolis, MN) + + + + + Davey Compressor Co. + + + + + Santa Cruz Trailer Mfg. Co. + + + + + Donnell Boat Trailer + + + + + Gad-About Trailers + + + + + Tigerline Trailer + + + + + Playmate Coaches + + + + + Biltwell (or Builtwell) + + + + + Ingersoll-Rand Co.Woodcliff Lake, New Jersey + + + + + Caribou Craft Pickup Camper & TrailerMfg. Co. + + + + + Parker + + + + + Silver Leaf Mfg. Co. + + + + + Del Rey Industries, Inc. + + + + + MK 5-1400 Motor Home + + + + + Rancho Trailers, Inc. + + + + + Duro Mobile Homes + + + + + Everybody's Motor Car Mfg. + + + + + RECREATION BY DESIGN LLC.; ELKHART, IN + + + + + Tejas Trailers, Inc.Bellville, Texas + + + + + Monon Trailer Div.Div. of Evans Products Co.--Monon,Indiana + + + + + Lola + + + + + Reo + + + + + Sparrowhawk Trailer Co. + + + + + Roust-About + + + + + Strick Trailers Corp.Fort Washington, Pennsylvania + + + + + Kato Engineering, Subsidiary ofReliance Electric + + + + + GENERAL WELDING & FAB., ELMA,NEW YORK + + + + + Gordon + + + + + Diamond City Trailer Mfg.Murfreesboro, Arkansas + + + + + Same & Lamborghini Tractors of NorthAmerica, Inc. + + + + + Suburban Motors, Inc. + + + + + Module, Inc. + + + + + SkeeterMfd. by Trailers, Inc. + + + + + Fox Better Built Trailers + + + + + Knox Homes Corp. + + + + + INDEPENDENCE MOTORCYCLE COMPANY + + + + + Cunningham + + + + + Travel Queen Motor Home + + + + + NEDLAND INDUSTRIES, INC.; RIDGELAND, WI + + + + + HoosierBoat Trailer--mfd. by Spreuer and Son,c. + + + + + New Bame Trailer + + + + + Zundapp + + + + + Drag Master Utility Trailer + + + + + Aero Liner Co. + + + + + International Mobile Homes of California + + + + + Ghieapy Jol Trailer + + + + + T & M EnterprisesCookville, Texas + + + + + MQ Power + + + + + Kit House Trailer + + + + + Mar-Val Industries, Inc. + + + + + Eagle Trailer Mfg., Inc. + + + + + Shippette Mobile Homes + + + + + CUSTOM AMUSEMENT PRODUCTS, COMPANY; DOVER, FLORIDA + + + + + Cimarron Mfg. Co.Oklahoma City, Oklahoma + + + + + Willborn Brothers + + + + + Landau Motor HomeAnaheim, Claifornia + + + + + Quaker City Iron Works, Inc.Philadelphia, Pennsylvania + + + + + Parkhurst Mfg. Co., Inc.Sedalia, Missouri + + + + + Tempo + + + + + PRO-TRAK TTRAILERS, INC.; CANTON, TX + + + + + AM General Corporation + + + + + Dynasty Electric Car Corp. + + + + + Weaver & SonsDiv. Ventoura Corporation + + + + + Wolverine Camper + + + + + Brooks Brothers Trailers, Inc. + + + + + Helmers Custom Coach + + + + + CLASSIC MANUFACTURING, INC. OR OWENS-CLASSIC MANUFACTURING, INC.; STURGIS, MI + + + + + Chevelle Mobile Homes, Inc. + + + + + J.F.W. Mfg., Inc.Wichita, Kansas + + + + + Unit Crane & Shovel Corp. + + + + + Soil Mover Mfd. Div. + + + + + Sebring Home Corp. + + + + + McCoy/Taylor, Inc. + + + + + Conway + + + + + Reddick Equipment Co., Inc. + + + + + Bonanza Travel Coach, Inc. + + + + + Lifetime Custom Coach + + + + + John T. Wydro + + + + + KINZE; FARM & GARDEN EQUIPMENT + + + + + Sea BirdMfd. by Sno-Bird Trailer Co., Inc. + + + + + Manatee HomesCommerce, Texas + + + + + Nothsway Tandem Trailer + + + + + Darian Mobile HomesMfd. by Richardson Div. GreatSouthwestern Corp. + + + + + Tradewind Industries, Inc.Formerly J. H. Holland Co. + + + + + Summitt Trailer + + + + + York Modern Corp. + + + + + Detroit Tool, Inc. + + + + + Bobcat Skid Steer LoaderManufactured by Melroe Div. + + + + + Chinook + + + + + Roaminghome Co., Inc. + + + + + TRANSTEQ (Transportation Techniques, LLC) + + + + + Blanchard Foundry Co. + + + + + Singer + + + + + Neville Welding, Inc. + + + + + Pullman TrailmobileDiv. of Pullman, Inc.--Chicago, Illinois + + + + + Design StructuresMfrs. office and special purposetrailers--Lombard, Illinois + + + + + HM + + + + + Gas Gas Motors of America, LLC + + + + + Kellogg-American, Inc. + + + + + Empire Trailer, Inc. + + + + + MGS, Inc. + + + + + DeCourville + + + + + Winter Weiss Co. + + + + + Kaiser + + + + + Truckin TrailerMfd. by V.W.T. Corp. + + + + + TransglobalNew York; flatbed trailers + + + + + Maico (West Germany) + + + + + Olson + + + + + Voloci + + + + + Tow Go TrailersTonganoxie, Kansas + + + + + Cagiva + + + + + Owen Div., Anvil Attachments, Inc. + + + + + Leisure Craft + + + + + General Coach Mfg. Co.Div. of Divco-Wayne Industries + + + + + Rotech, Inc. + + + + + Firma LenkoSee Larvin + + + + + Globe Camper Mfg. + + + + + Dynahoe Truck + + + + + Ti-Brook, Inc.Brookville, Pennsylvania + + + + + Coastal Mfg. Co. or Coastal Building Systems + + + + + Air-Flo Mfg. Co., Inc.Fort Worth, Texas + + + + + Monarch Mobile Homes + + + + + Holmes-Craft + + + + + Kontiki Camper Trailer + + + + + Kingsway Travel Trailer + + + + + Beaver Mfg. Corp. + + + + + Bradford IndustriesBradford, Illinois + + + + + Lawn FliteMfd. by MTD Products, Inc. + + + + + Arabi Homes, Inc.Arabi, Georgia + + + + + En Route, Inc.Elkhart, Indiana + + + + + SOUTH BAY TRAILERS; LOUISVILLE, KY + + + + + Brighton Built TrailersBrighton, Iowa + + + + + Concord Products, Inc. + + + + + GSM + + + + + Trail Haven Div. + + + + + CMW (Custom Metal Works) + + + + + ISO + + + + + J & J TRAILER MANUFACTURING OR J.D.J. TRAILER MANUFACTURING, ONTARIO, CANADA + + + + + Design Intennt, Inc.Livingston, Tennessee + + + + + Pull-Do Trailers + + + + + Cleveland Trencher Co.Div. American Hoist & Derrick Co. + + + + + Power Dyne + + + + + Jay Dee IndustriesCassopolis, Michigan + + + + + Leisure Manor, Inc. + + + + + Enzmann + + + + + Wago Campers + + + + + LamplighterMfd. by Moduline International, Inc. + + + + + Mate, Inc.Katy, Texas + + + + + Triple R TrailerStockton, Missouri + + + + + Johnson Corp. + + + + + Rockwood, Inc.Millersburg, Indiana + + + + + Holiday Trailer Sales & Mfg. Co. + + + + + Dart Truck Co., PACCAR, Inc. + + + + + National Crane Corporation, Subsidi-ary of Walter Kidde & Co., Inc. + + + + + Sun-RayMfd. by Wilson Trailer Mart + + + + + Cottage-Ette Mfg. + + + + + Revcon + + + + + K & G Mfg. Co.Decatur, Illinois + + + + + CUSTOM BUILT TRAILERS AN OR CUSTOM TRIKES, INC. + + + + + Velocette + + + + + Fairmont Steel Products + + + + + Atlantic Mobile Corp. + + + + + Spyker Motorcars + + + + + Snatcher Trailer CompanyBettendorf, Louisiana + + + + + Anton Mfg. Co. + + + + + Foster Flatbed Trailer + + + + + Avalon Mobile Homes + + + + + Ben Pearson Mfg. Co., Inc. + + + + + Westholt Mfg. + + + + + Vac-Tec + + + + + ScorpionCrosby, MN + + + + + Warren Mfg. Co. + + + + + Calumet Coach Co. + + + + + OUTLAW TRAILER, MFG.; ST. JOSEPH, MO + + + + + Classic Motor Carriages, Inc.(Hallandale, FL) + + + + + CapreCarrocerias Preconstruidas SASan Nicholas, Mexico, bus trailers + + + + + Malyette + + + + + Medallion Mobile Homes + + + + + Quickload + + + + + Zil + + + + + Wayne SweeperSweeper Div., FMC, Pomona, California + + + + + TZ + + + + + LOAD BOSS,INC/CHARLES H BURKETTS AUTORAMA INC; MANNS CHOICE,PENNSYLVANIA + + + + + Torino + + + + + Shaw-Wynn Homes Corp. + + + + + Meteor (Canadian Mercury) + + + + + J & W TRAILERS; LAMAR, MO + + + + + Little Prince Travel TrailerMfrs. boat trailers + + + + + Sureload + + + + + I.R. Witzer Company, Inc. + + + + + Chilton Trailer Co., Inc. + + + + + Classic Mfg., Inc. + + + + + Mangar Co. + + + + + SCI Trailer + + + + + Nationwide + + + + + Santeler Brothers + + + + + Rosemont Mobile HomeDiv. DeRose Industries + + + + + Aurora Mobile Homes + + + + + Molloy Mobile Crafts + + + + + Diva + + + + + Zhejiang Leike Machinery Co., Ltd. + + + + + AJW + + + + + Huffy Corp. (Dayton, Ohio) + + + + + Lucky + + + + + English Ford (British) + + + + + Bill James Trailer SalesWinfield, Texas + + + + + MEB TRAILER SALES; WALNUT RIDGE, ARKANSAS + + + + + Triton Trailer Corp.Allentown, Wisconsin; manufacturestrailers including snowmobile trailers + + + + + Shovel Supply Co., Inc. + + + + + Halliburton Co. + + + + + Hotchkiss + + + + + Thule Trailers, Inc. + + + + + LIBERTY INDUSTRIES; CLAYTON, INDIANA + + + + + CZ (Czechoslavakia--also see makeJawa/CZ) + + + + + Figura, MikeBruce, Wisconsin + + + + + Ventura Tent Camper + + + + + D.M.F. Trailer Mfg., Inc. + + + + + Thunderbird CastlesDiv. Thunderbird Products + + + + + Mair & Son., Inc. + + + + + Safet Camper + + + + + Bar-A-Horse Trailer + + + + + R.T.R. Trailers, Inc. + + + + + Vermeer Manufacturing Co. + + + + + Maxon EagleMfd. by Maxon Industries, Inc. + + + + + Alumna-Weld, Inc.Friendship, Arkansas + + + + + Interstate Products + + + + + Blitz Mfg. Co. + + + + + GLOBAL ELECTRIC MOTOR CARS, LLC, FARGO,NORTH DAKOTA 2 & 4 PASSENGER, LONG & SHORT UTILITY TYPE VEHIC + + + + + Humes Truck & Trailer Mfg. Co + + + + + Scoutboat Trailer + + + + + Car Camp + + + + + Sparta + + + + + Matrette + + + + + Tow Mobile Forklift + + + + + Wasp + + + + + Officer, TheElkhart, Indiana + + + + + American Trailer & Mfg. Co.See also Transporter, Downey, California + + + + + LIBERTY, INC. MAKER OF TRAV-A LONG TRAILER, LITTLE RIVER,SC + + + + + Pedalpower Electroped + + + + + CharismaMfd, by Merrimac Corp. + + + + + Northern Cruisers + + + + + Taylor Metal Works, Inc.Milan, Tennessee + + + + + Takeuchi Manufacturing (U.S.) Ltd.Atlanta, GA; manufactures compact trackequipment + + + + + Mighty MidgetMfd. by Owens-Classis, Inc. + + + + + Frank Motor Homes, Inc. + + + + + Golden West Mobile Homes + + + + + Silver Trail + + + + + Walker Stainless Equipment Co.New Lisbon, Wisconsin + + + + + Rex + + + + + Compact Equipment Co. + + + + + TOWRITE MANUFACTURING; BUNN LEVEL, NC; TTRAILERS & DOLLIES + + + + + Wanderer Camper + + + + + Pacesetter + + + + + Daimler + + + + + Yanger Mobile Homes + + + + + SKYTRAK; CONSTRUCTION EQUIPMENT;FORKLIFT ETC. + + + + + Transco Trailer + + + + + HORTON VANS, INC.; EATONTON, GO + + + + + A C (Great Britian) + + + + + Rec-Sha Trailer + + + + + Mobilaire Mobile Homes + + + + + Jerrytime Camper + + + + + SmallwoodCounty Line Co. + + + + + POLINI MOTORCYCLES + + + + + AquariusBoat trailers--mfd. by Trail-Rite, Inc. + + + + + Saturn + + + + + Brown + + + + + Mars Camper Co. + + + + + Zim + + + + + Jac-Trac, Inc.Marshfield, WI + + + + + Rush Industries, Inc.Elkhart, Indiana + + + + + MONSOON (ATV'S) ALL TERRAIN VEHICLES + + + + + Harley-Davidson + + + + + Promark Products Corp. + + + + + Budson Knobby Flatbed Trailer + + + + + Thunderbikes, Inc. + + + + + Olathe Mfg. Co., Inc. + + + + + Kinlon or Chongqing Kinlon Science & Tech. Grp. + + + + + Navajo Horse Trailer + + + + + Kenway Campers, Inc. + + + + + Pleasureway Mfg. + + + + + China Jiangmen Group Co., Ltd. + + + + + Dreamer + + + + + ATLAS SPECIALITY_PRODUCTS/TRAILERS + + + + + Brute Equipment Inc.Glen Alan, Mississippi + + + + + Bravo Trailer + + + + + Erskine + + + + + Monte + + + + + Canadian Trailmobile Ltd. + + + + + Apache Coach Co. + + + + + Transliner Insulated Tank Trailer + + + + + Baker Trailer & Body Co. + + + + + Wonder State Boat Trailer + + + + + D & D FABRICATIONS, ST LOUISS, MICHIGAN / TRAIL-TECH TRAILERS + + + + + Gronewegen B.V.Netherlands + + + + + LEVIS MOTORCYCLES; GREAT BRITAIN + + + + + WHEEL ESTATE SALES & SERVICE, INC; TRADE NAME/STEWART LODGES + + + + + Lotus + + + + + Jayco, Inc. + + + + + Meyer Morton Co. + + + + + Skim Air Trailer + + + + + Venus + + + + + Frolic Homes, Inc. + + + + + Semo Tank/Baker Equip. Co. + + + + + LOADMASTER INC; INDIANA + + + + + DISCOUNT TRAILERS; FORT WORTH, TX + + + + + Rosco Mfg. Co.Minneapolis, Minnesota + + + + + Landmaster + + + + + MOTOBECANE; SCOOTERS & CYCLES + + + + + Meitian Motorcycle Co., Ltd. Or Shanghai Meitian Motorcycle Co., Ltd. + + + + + Nevada Air Products Co. + + + + + Dodge + + + + + ConvertoCambridge City, Indiana--Div. Golay &Co., Inc. + + + + + Keel-HaulerMfd. by Precision Deburring &Fabricating, Inc. + + + + + Cotton + + + + + Wayne Corp.Richmond, IN + + + + + Evans-Plugge Co., Inc.Columbus, Nebraska + + + + + Metal Fabrication, IncWinchester, TN + + + + + Broncco (Italy) + + + + + Kaywood Homes, Inc. + + + + + ASI Trailer + + + + + General Marine Industries + + + + + Dormi Industries, Inc. + + + + + Ottawa Truck Div., Gulf & WesternMfg., Co. + + + + + Corbitt + + + + + Gulf States Mfg. Corp. + + + + + Alsport/Steen (also see Tri-Sport/Steen) + + + + + Silent Hoist & Crane Co. + + + + + Ken Trailer + + + + + Midmark + + + + + Moore Equipment Co. + + + + + Holly Parks, Inc.Mobile Homes + + + + + Triangle-K Trailer Co.Drumright, Oklahoma + + + + + Tri-State Homes, Inc. + + + + + Hooper Trailer Sales, Inc.Monticello, GA; flatbed trailers. + + + + + Pioneer Sales & Mfg. Co. + + + + + Furatell IndustriesBruce, Wisconsin + + + + + New Era Trans Co. + + + + + Scamp + + + + + Amerigo Travel Trailer + + + + + Penton (KTM--Austria) + + + + + Boulder Trailer + + + + + North American Mfg. Co. + + + + + WE-HAUL TRAILERS; DIVISION OF FOREST RIVER, INC. GOSHEN. IN + + + + + MountaineerLawn & Garden tractor--mfd. by UnitedFarm Tools, Inc. + + + + + Travette Mfg. + + + + + Truck Trailer Sales & ServiceYankton, South Dakota, Inc. + + + + + Scott + + + + + AlouetteSee Alouette Recreation Products, Ltd. + + + + + J. M. Huber Corp. + + + + + Pennstyle Campers, Inc. + + + + + Wendax + + + + + Cleveland Mfg. Co., Inc. (CMC) + + + + + Shanghai Jialing Vehicle Business Co., Ltd. + + + + + Bar-C Horse Trailer + + + + + VULCAN WORKS, INC; MANCHESTER, NEW HAMPSHIRE; MOTORCYCLES + + + + + Culpepper Trailer Co.Clinton, Arkansas + + + + + Poloron ProductsMfrs. riding mowers--Harrison, New York + + + + + Colony Factory Crafted HomesShippenville, PA + + + + + Gypsum Express LTDBaldwinsville, NY; makes convertordollies + + + + + Jersey Trailer + + + + + Glass Stream TrailersNashville, Georgia + + + + + ARMOR CHASSIS, LLC; RIDGELAND, SC + + + + + General Homes Div.Div. of Divco-Wayne Industries + + + + + Drifter Mfg. Co. + + + + + Volga + + + + + Ashdown Mfg. Corp.Ashdown, Arkansas + + + + + Carry Craft Trailers + + + + + Beaver Trailer + + + + + Seco Mfg. Co. + + + + + Allard + + + + + Explorer + + + + + Burlington Mfg. Co. + + + + + Big AMfd. by Rickel Mfg. Corp. + + + + + Pontiac + + + + + Sportliner Tent Trailer + + + + + Fox + + + + + Atwood Mobile Home + + + + + Starlite Mfg. Co. + + + + + Marion Trailer SalesMarion, Indiana + + + + + Florida Wholesale Distributor + + + + + Pannonia + + + + + BIG DOG CUSTOM MOTORCYCLES, INC. + + + + + Nu-Wa Campers, Inc. + + + + + Away We Go Travel Trailer + + + + + Pardonnet Mfg. Co.Livonia, Michigan + + + + + Dekco Mobile Mfg.Menahga, Minnesota + + + + + Bendix Corp.Mfr. of mobile homes and recreationalvehicles + + + + + Greeves + + + + + Pitman Brothers Co. + + + + + Ranger Mobile HomesMfd. by Ritz-Craft, Inc. of Indiana(see Ritz-Craft of Pa., Inc.) + + + + + CassMfd. by Custom Assembly + + + + + Rockin-Bar Trailers Ltd.Durant, Oklahoma + + + + + L & S LINE MFG.; BRISTOL, TENNESSEE + + + + + LaforzaUtility vehicle; Hayward, California + + + + + Rolco Mfg. Co. + + + + + Goliath + + + + + TERRY'S UTILITY TRAILER OR TERRY W. BECK; WARRENVILLE, SC + + + + + Stanley Hydraulic Tools + + + + + Gator Trailers Corp. + + + + + Country-Aire Travel Trailer + + + + + Boles-Aero, Inc. + + + + + WILD WEST MOTOR COMPANY; POWAY, CA. (PEACEMAKER MODEL) + + + + + Southwest Welding & Mfg. Co. + + + + + BonnavillaMfd. by Chief Industries + + + + + Denzel + + + + + Ravens-Metal Products, Inc.Parkersburg, West Virginia + + + + + Yazoo Mfg. Co., Inc.Jackson, Mississippi + + + + + Dolan Corp. + + + + + Keystone Coach Mfg. Co. + + + + + Hongki or Hong-Chi + + + + + Zoboda + + + + + McCulloch Mite-E-Lite, Inc.,McCulloch Corp. + + + + + Action Industries + + + + + Royal Brothers + + + + + Phelan Mfg. Co.Nashville, Tennessee + + + + + Winco Div.Dyna Technology, Inc., Minneapolis,Minnesota + + + + + Stewart Park Homes, Inc. + + + + + Aspes + + + + + Westward Coach Mfg. + + + + + Chateau Mfg. Co., Inc. + + + + + Country Coach Motor HomeJunction City, Oregon + + + + + Ski-Tow Mfg. Co., Inc.Elkhart, Indiana + + + + + Coleman + + + + + Broadmore Mobile HomesSubsidiary of Fleetwood Trailers &Mobile Homes + + + + + NorthwaySee Northway Snowmobiles + + + + + Trail-Et Horse Trailer + + + + + Sunset Mobile Homes + + + + + Steelcraft Log Trailer + + + + + Fanc Motor Home Truck + + + + + Rickman + + + + + Coastal Trailer Corp. + + + + + Bird Engineering, Inc. + + + + + AMERICAN TRANSPORTATION; BUS + + + + + C-Mor + + + + + Avco Corp. + + + + + Kenworth Motor Truck Co.Div. of Paccar, Inc. Also includesKenworth Glider. + + + + + Conceptor Industries, Inc. + + + + + Prince Motors + + + + + McQuerry Horse Trailer + + + + + Durabilt Industries, Inc. + + + + + Pennsylvania Furnace and IronMfrs. tankers--company bought out byDairy Equipment, Madison, Wisconsin + + + + + Nickel & HolmanFenton, Michigan + + + + + Caprice Homes Mfs. Co. + + + + + ASPT + + + + + Vista Queen Trailer + + + + + Greenhaven Mobile House Trailer + + + + + Allis Chalmers + + + + + Poloron + + + + + Amtec Trailer + + + + + Benlo Co. + + + + + MAX-ATLAS EQUIPMENT INTERNATIONAL, INC.; ST-JEAN-SUR-RICHELIEU, QUEBEC CANADA + + + + + I.S.E., Inc.Denver, Colorado + + + + + Doolittle + + + + + American DreamMfd. by American Family Homes, Inc. + + + + + Mobilux + + + + + Dart, KW + + + + + Turnbow Trailer + + + + + Kilgore IndustriesPomona, California + + + + + Fleet Cap'n Trailers + + + + + ULTRA MOTORCYCLE CO. + + + + + U-Dump, Inc.Ocala, Florida + + + + + EMW + + + + + Griswold IndustriesSee Swinger Snowmobiles + + + + + Pride & Joy Mini Motor Home + + + + + Auto Union + + + + + Shelby American + + + + + MacDonald's Mobile Homes + + + + + ATK America Inc + + + + + Traveliner Motor Home + + + + + Concord Mobile Homes + + + + + Condor + + + + + Centaur + + + + + AGCO INC. FORMERLY ALLIS CHALMERS & K-H DEUTZ OF GERMANY + + + + + Malro USA DistributorsHeber, CA; recreational trailer + + + + + Perris Valley Campers + + + + + Norman + + + + + Argonaut State Limousine + + + + + Mobile Freeze + + + + + Camel Camper Trailer + + + + + KTMMEX Motorcycle Mfg. + + + + + Branstrator Engineering Corp. + + + + + Champion Trailers + + + + + General Engines Co., Inc.Throfare, New Jersey + + + + + Run-About + + + + + Rainbow Camper Co. + + + + + FWT, Inc. + + + + + Bee-Line Travel Trailers or MobileHomes, Inc. + + + + + Peel + + + + + Vulcan Trailer Mfg. Co.Birmingham, Alabama + + + + + Trail Car Boat Trailer + + + + + Sunset Travelers + + + + + Trojan Industries, Inc. + + + + + Semlac Corp. + + + + + Saling Mfg. Co. + + + + + Demo Horse Trailer + + + + + Dazon, Inc. + + + + + Main Line, Inc. + + + + + Copperstate Coach Co. + + + + + American Pipe & Steel Corp. + + + + + Sun L Group, Inc. + + + + + Cub Camper Trailers + + + + + Lafayette Motor Home + + + + + Cleveland Brothers Equipment Co.D & B Products + + + + + Alloway Mfg. Co., Inc. + + + + + TRL ENTERPRISES TRAILERS LOVELAND, COLORADO + + + + + Generac Corp. + + + + + EvinrudeSee Outboard Marine Corporation + + + + + LORANGER ENTERPRISES, INC.; SAN ANTONIO, TX + + + + + McClain Trailer Mfg. Co.Boat trailers--Houston, Texas + + + + + Ellis Mfg. Co., Inc. + + + + + Eagle + + + + + Remington HomesDallas, Texas (Division of SunrizonHomes, Inc.) + + + + + Burris Stock Trailer + + + + + David Mfg. Co.Mason City, Iowa + + + + + Horizon Mobile Homes + + + + + Stage Coach Mfg. Co. + + + + + Whizzer + + + + + Champ Corp. + + + + + DIAMOND G TRAILER COMPANY /GRAHAM FABRICATIONS, INC.; PURVIS, MISSISSIPPI; MANUFACTURING HOME OF DRE + + + + + Charmac Trailers + + + + + Jenkins Equipment Co., Inc. Subsidi-ary of Sweepster, Inc. + + + + + Drydock Trailer, Inc.Boat trailers--Freeport, Florida + + + + + CHAMPION BUS, INC. MICHIGAN + + + + + United Mfg. Co. + + + + + Deville Industries, Inc. + + + + + M.G.M., Inc. + + + + + Rabbit + + + + + Coburn Industries, Inc. + + + + + Ag-Systems, Inc.Hutchinson, Minnesota + + + + + DurobiltEl Monte, California + + + + + BOAT TRAILERS, WAUKEGAN, ILLINOIS + + + + + A-A WELDING SERVICEMOUNT PLEASANT, TEXAS_; ANS OR CLINT R. WOODS INC + + + + + Mercury Trailer Industries + + + + + Holden Trailer Mfg. Co.Holiday House, Inc. + + + + + Contempori Mobile Homes, Inc. + + + + + Autokraft + + + + + Henry J. + + + + + Maple Leaf, Inc.Middlebury, Indiana + + + + + Commuter Industries, Inc. + + + + + Olympia Motor Home + + + + + All Lakes Trailer + + + + + Abarth + + + + + Tampo Manufacturing Co. Inc. + + + + + Edwards Trailer + + + + + Mayco Pump Corp.Los Angeles, California + + + + + Kuhn Farm Machinery, Inc. + + + + + Simenson Mfg. Co. + + + + + Magnolia Travel Trailer + + + + + St. Joseph Marine Trailer + + + + + Kent Mfg. Co., Inc. + + + + + Westerwalder EisenwerkWest Germany + + + + + Ching-Kan-Shan + + + + + Porta-Kamp Mfg. + + + + + Lincoln Electric Co.Cleveland, Ohio + + + + + Springtrail Mfg. Co.Springfield, Missouri + + + + + Savage Coach Mfg., Inc. + + + + + Euclid, Inc., Subsidiary of WhiteMotor Corp. + + + + + Stucco Trailer + + + + + SOUTHERN SALES, INC; TRAVELERS REST,SC + + + + + Wagner + + + + + TET + + + + + XTREME ATVS + + + + + Whitley Mfg. Co. + + + + + Mercury (See Mercury Marine) + + + + + CIRCLE C MANUFACTURER; LIVINGSTON, TX + + + + + Caterpillar Tractor Co. + + + + + AMERICAN QUANTUM CYCLES, INC. ; MELBOURNE, FL + + + + + American Way Homes Corp. + + + + + Jetmobile + + + + + L. A. Woods Co., Inc.Lawrenceville, Illinois + + + + + CPI U.S.A. + + + + + Muv-All Trailers Multech Corp. + + + + + House of Architecture + + + + + Midwest Mini-Tote Co.Muskego, Wisconsin + + + + + Holva Travel Trailer + + + + + GEO + + + + + Triple Crown Trailers, Inc. + + + + + Binks Mfg. Co.Franklin Park, Illinois + + + + + DINLI ATV'S + + + + + Benelli (Italy) + + + + + Good Mfg. Co. + + + + + Zipper, Inc. + + + + + Richardson Mfg. Co., Inc. + + + + + KNL Holdings, LLC + + + + + Hudson Trailer + + + + + Moling Corp. and Car King Dolly Trailers + + + + + Titleist Travel Trailer + + + + + KIDRON; TRAILERS + + + + + Maverick + + + + + Weld-It CompanyLos Angeles, California + + + + + Marmon + + + + + Raider + + + + + Armstrong Siddeley + + + + + MANGMfd. by Oregon Mfg. Co., Inc. + + + + + Custom Coach Co. + + + + + Coventry Mobile HomeMfd. by Great Southwest Corp. + + + + + King Fish Boat Trailer + + + + + Kut-Kwick Corp.Mfrs. industrial mowers--Brunswick,Georgia + + + + + Tohatsu + + + + + Texarkana Div.Div. of Divco-Wayne Industries + + + + + Powell Mfg. Co., Inc. + + + + + Lexus + + + + + W.F. Mickey Body Co., Inc. + + + + + Mohawk, Inc. + + + + + Art James Mfg. + + + + + Adams Engineering Co. + + + + + Lee Enterprises Mfg. Co., Inc. + + + + + DALTON ENTERPRISES INC. + + + + + Covered Wagon Trailer + + + + + Sprayline Two Wheel Trailer + + + + + Pettibone Mercury, SubsidiaryMercury Mfg. Co. + + + + + Wil-Trail Corp. + + + + + Davis + + + + + Rollfast + + + + + Wayfarer Coach Mfg.Div. St. Paul Fence & Iron Works + + + + + Northwestern Mobile HomesDiv. Rainway Manufacturing Company + + + + + AMERICAN TRAVEL SYSTEMS, INC.; ELKHART, IN + + + + + Liberty Homes, Inc.Goshen, Indiana + + + + + Nu-Life Environmental, Inc. + + + + + MAC-LANDER, INC; OSCEOLA, FL + + + + + Star Custom Trailers, Inc.Lebanon, Tennessee + + + + + Braughms Travel Trailer + + + + + Total Performance, Inc. + + + + + Carpenter Manufacturing, IncMitchell, IN + + + + + Motom + + + + + Damon Industries, Inc.Elkhart, Indiana + + + + + Lemco Tool Corp.Cogan Station, Pennsylvania + + + + + East Se Trailer + + + + + OBERBILT TRAILER COMPANY DRUMRIGHT, OK + + + + + Avanti + + + + + Traxcavator Tract + + + + + Diamond G EquipmentOklahoma City, Oklahoma + + + + + McCrabb Mfg., Inc.West Liberty, Iowa + + + + + Ottawa Truck, Inc. + + + + + SAUK CENTRE WELDING & MACHINE WORKS, INC. FELLING TRAILERS + + + + + HogerMfd. by Sundowner Trailer Co. + + + + + Hiab Cranes and Loaders, Inc.Newark, Delaware + + + + + Monticlaire Mobile Homes + + + + + Lodal, Inc.Kinsford, Michigan + + + + + Trav-L-Homes + + + + + Elite Mfg.Camper Shells--Merced, California + + + + + BLUE RIDGE TRAILERS + + + + + International Harvester Co. + + + + + BPMfd, by SS Trailer Co. + + + + + Smokey Trailer + + + + + Piazio + + + + + Omsteel Products Corp. + + + + + Arctic Enterprises, Inc.Thief River Falls, Minnesota + + + + + Hostar Marine Transport Systems, Inc. + + + + + Schetzky Equipment Corp. + + + + + Cam-O-Tel Corp. + + + + + Hough Brothers, Inc. + + + + + Loncin Group Import & Export Co., Ltd. + + + + + Load King Trailer Co.Div. of CMI Corp.--Elk Point, SouthDakota + + + + + Ayr-Way CampersDiv. K. V. Molded Products, Inc. + + + + + E-Z Camper (or Kamper) + + + + + Sanker Mfg. & Supply + + + + + Thames + + + + + Travelaire Trailer Mfg. + + + + + Ventura Mfg. and Implement Co.Oxnard, California + + + + + + Hobbs TrailersDiv. of Fruehauf Corp.--Fort Worth,Texas + + + + + Kohler Co. + + + + + General Electric + + + + + Prevost Car, Inc.Mfrs. of "Prevost Bus"--Sainte Claire,Quebec, Canada + + + + + Aztec Products Inc.Mansfield, Texas + + + + + S M Moon + + + + + Float-On of FloridaBoat Trailers--Ft. Pierce, Florida + + + + + Panterra + + + + + Treasure Chest Products + + + + + Adette + + + + + Speicher Brothers, Inc.Auger products + + + + + Dynaweld Trailer + + + + + Dalton, Inc. + + + + + Advance MixerFt. Wayne, IN; truck, front dischargetransit mix + + + + + Brunswick Travel Trailer + + + + + Rockland Homes, Inc. + + + + + Decamp Homes, Inc. + + + + + Volunteer Mfg. Corp. + + + + + HerculiftMfd. by TCI Power Products, Inc. + + + + + High Country Trailer Sales & Mfg. + + + + + Inger-Teco Corp. + + + + + Schramm, Inc.West Chester, Pennsylvania + + + + + WALTRON LIMITED/ALDURA; RIDGETOWN, ONTARIO CANADA + + + + + Hillco, Inc. + + + + + Air-Flo Mobile HomeMfd. by Gregory Mfg. Co. + + + + + Road Clipper + + + + + U.S. MARINE CORPS; MAKE IS UNKNOWN + + + + + NEWMAR CORPORATION; NAPPANEE, IN_ + + + + + Itasca Motor HomesDiv. Winnebago Ind., Inc.,Forest City, Iowa + + + + + Sea Stallion TrailersKlamath Falls, Oregon + + + + + CARPENTER INDUSTRIES INC. + + + + + Mistral + + + + + Buffalo-Bomag Div.Div. of Koehring Co. + + + + + EnerexMfd. by Hayes Equip. Corp. + + + + + Jaeger Machine co.Columbus, Ohio + + + + + Comet Motorcycle TrailerMfd. by Yarbrough Mfg. Co., Inc. + + + + + Corn Belt Manufacturing, Inc.Early, Iowa + + + + + Yuchi Mobile Homes + + + + + Bluebird International + + + + + Custom Fab Body Bodies andTrailers, Inc.Indiana, Pennsylvania + + + + + CARGO PRO TRAILERS + + + + + Chukar, Inc.Phoenix, Arizona + + + + + Lagusa Motor Coach + + + + + Sovam + + + + + Brown Trencher Div., Rivinius, Inc. + + + + + MODULAR SYSTEMS, INC; INDIANA + + + + + First American Coach + + + + + Skat (or Skat-Kitty) + + + + + Shertzer Dump Trailer + + + + + Braco Custom ProductsCassopolis, Michigan + + + + + Levco Manufacturers, Inc. + + + + + Utah Mobile Homes + + + + + Standard + + + + + Terravac Corp.Stockton, California + + + + + Trailco-Norwin + + + + + Weeres Trailer + + + + + Brooten Fabricating, Inc. + + + + + Hop Cap P/U Camper Trailer + + + + + J.P. Utility Trailers & Welding + + + + + Rainway Mfg. Co. + + + + + Rushmore Homes + + + + + Roper Outdoor Power ProductsKankakee, Illinois + + + + + Ledwell & Son Enterprises, Inc.Texarkana, Texas + + + + + Travelpak Car Topper Sales + + + + + Landis Steel Co. + + + + + Boise Mobile Equipment + + + + + Burrito (also see make J.C.Penney) + + + + + Johnson's Trailer Building & Repair + + + + + Linco Trailer Home + + + + + ANDERSON MANUFACTURING; CAMILLA, GA + + + + + Hibdon Mfg. Co. + + + + + Pelican Aluminum Mfg. + + + + + Van Art, Inc. + + + + + Yacht Club + + + + + Trailorama + + + + + AG-Rain, Inc. + + + + + Simpson Enterprises, Inc. + + + + + FallsRiding lawn mower + + + + + Detroiter Homes + + + + + Chris Craft Corp. + + + + + Luedtke Mfg., Inc.Allenton, Wisconsin + + + + + Tru-Tow Trailers + + + + + Gitane + + + + + Pincor Products + + + + + Westland Trailer Co.Portland, Oregon + + + + + PORTA-DOCK, INC + + + + + SEXTON MOTORCYCLE COMPANY + + + + + All American Campers + + + + + Criterion Homes Mfg. Inc.Largo, Florida + + + + + Sportsman + + + + + Byers + + + + + URAL MOTORCYCLES OF AMERICA; PREVIOUSLY OR ALSO KNOWN AS: IRBIT MOTORWORKS OF AMERICA; REDMOND, WA + + + + + Stack Truck, Inc. + + + + + Monark + + + + + Three-Dimensional Mobiles + + + + + Four Star Coach Co. + + + + + Venus Coaches + + + + + MacGregor Yacht Corp.Costa Mesa, California + + + + + New England Homes or Trailers + + + + + ALL-AMERICAN TRAILER MFG. CO., INC.; SELMA, AL + + + + + I. M. P. (U.S.) + + + + + PEQUAGordonville, Pennsylvania + + + + + Marvell Mobile Home + + + + + Rinso Forklift + + + + + Chaperalle Horse Trailer + + + + + Bilt-Rite Trailers, Inc. + + + + + Swanson Tilt trailer + + + + + Low Pro Custom Trailer + + + + + Sherwood Sentry Horse Trailer + + + + + Uteliner Motor Home + + + + + Digmor Equipment & Engineering Co., Inc. + + + + + Melody Home Mfg. Co. + + + + + Western + + + + + Walter Motor Truck Co. + + + + + Pacemaker + + + + + Calvia Brothers Trailer Mfg. + + + + + Auto Trailer Co. + + + + + Embassy HomesDiv. of Guerdon Industries + + + + + Komar + + + + + Cliff Office Trailer + + + + + Dillon Enterprises, Inc.North Liberty, Indiana + + + + + Toura Products + + + + + Satoh Japanese Tractor + + + + + Dayton Electric Mfg. Co.Mfrs. air compressors--Chicago, Illinois + + + + + White Materials Handling, SubsidiaryWhite Motor Corp. + + + + + Parilla + + + + + FORCE MANUFACTURING, INC. AND/OR HARVEY; BANGOR MAINE, NANCY HARVEY + + + + + R.C. Industries, Inc.Goshen, Indiana + + + + + Haul-A-Day Trailers + + + + + Dolphin HomesDiv. Tidwell Ind., Inc., Haleyville,Alabama + + + + + Cuke, Inc.Mendota, Illinois + + + + + Ramada Tent Camping Trailer + + + + + International Coach Mfg. + + + + + Sunflower Mfg. Co., Inc. + + + + + Black and Decker + + + + + Malibu Campers + + + + + Rayne Plane, Inc. + + + + + Bentley + + + + + Space Assemblies, Inc.Middlebury, Indiana + + + + + Villager Travel Trailer + + + + + Dynamic Industries, Inc. + + + + + Bob Coons + + + + + Jim Glo TrailersWilcox, AZ + + + + + Ace (model of Hodaka) + + + + + BEHNKE ENTERPRISES, INC; FARLEY, IA + + + + + Royco Mfg. Co. + + + + + Hindustan + + + + + Florig Equipment Co., Inc.Conshohocken, Pennsylvania + + + + + Walter Products & Engineering Co. + + + + + Office Master, Inc.Hampshire, Tennessee + + + + + Beaver Monterey Motor Home + + + + + Schnure Ho' Trailer + + + + + Mercantile Mfg. Co., Inc. + + + + + Independent Mfg. Co., Inc. + + + + + Jalldee, Inc.Spencer, Wisconsin + + + + + Globemaster Mobile Homes + + + + + Troxell Trailer Mfg.Ft. Worth, Texas + + + + + Skippy Trailer + + + + + Avenger + + + + + Zaporozhets + + + + + LMC + + + + + Red River Custom TrailerClarksville, Texas + + + + + Lawn BoyMfrd. by Outboard Marine Corp. + + + + + Cushman Turf-OMC Lincoln + + + + + Cameo Travel Trailer + + + + + Beemer & Grubb Enterprises + + + + + Fiat-Abarth + + + + + Isuzu + + + + + Loodcraft + + + + + GEELY OF SHANGHAI CHINA; MOTORCYCLES,MOPEDS & PASSENGER CARS + + + + + Scamp Trailer + + + + + COMPETITION TRAILERS, INC HENDERSON, TEXAS + + + + + Martin Trailers, Ltd.St. Laurent, Montreal + + + + + Superior Trailer WorksLos Angeles, California + + + + + Bowers Mfg. Co. + + + + + J.S. Mobile Homes + + + + + JOHNSTON SWEEPER CO., CHINO, CA + + + + + Mzma + + + + + CAMPAGNA MOTO SPORT, INC; PLESSISVILLE, QUEBEC, CANADA + + + + + Sun Blazer Travel Trailer + + + + + Twin Trailer + + + + + Tioga Motor Home + + + + + Gordon Smith & Co., Inc.Bowling Green, Kentucky + + + + + Indian Campers, Inc. + + + + + Hilltopper Mfg. Corp. + + + + + A & M Coach + + + + + Deep Sanderson + + + + + Aloha Trailer Co. + + + + + Nsu-Fiat + + + + + Delhi Metal Products, Ltd.Delhi, Ontario, Canada--mfrs. boattrailers + + + + + Univision Industries Ltd. + + + + + Custom Trailers, Inc.Springfield, Missouri + + + + + HARRIMAN SALES, INC.; DEKALB JCT, NEW YORK + + + + + Gentry + + + + + Remke Trailer + + + + + Mobility, Inc.Minneapolis, Minnesota + + + + + Master View + + + + + AJS (United Kingdom) + + + + + Martinez Trailer + + + + + Cinderella Mobile HomesMfd. by Mobile Structures, Inc. + + + + + Lift Truck, Inc. + + + + + Moody Mfg. Co. + + + + + LINHAI MOPEDS, POWERMAX; CHINA + + + + + All South Equipment Corp. + + + + + Great Lake + + + + + ElktonMfd. by Price-Meyers Corp. + + + + + Dunbar KappleBatavia, Illinois + + + + + Big Tex + + + + + Royal Industries Noble Div. + + + + + Swisher Mower & Machine Co.Warrensburg, Missouri + + + + + Ogle + + + + + D & P Welding Co. + + + + + D.M. & V. Enterprises, Inc. + + + + + Monaco Motor Home + + + + + Monitor Coach Co. + + + + + Casa Manana Mfg. Corp. + + + + + Becker, Charles H., Inc. + + + + + Superior Equipment Co.Buckeye Products + + + + + AA WELDING SERVICE/CLINT R. WOODS, INC.; MT. PLEASANT, TX + + + + + Mech Handling Co. + + + + + NOVA FABRICATING, INC.; AVON, MN + + + + + C. B. Mfg. Co., Inc. + + + + + Gregory Trailer Sales + + + + + LEBEAU ENTERPRISES; LEXINGTON, NC + + + + + Cruzmaster Camper + + + + + Highway Trailer + + + + + Kurmann Trailer Mfg. Co. + + + + + Ziegler + + + + + Broken Arrow Mobile Home + + + + + Custom Camper Co. + + + + + Davron Traveler, Inc. + + + + + Aardvark Co.Waxahachie, Texas + + + + + BJ'S CUSTOM TRAILERS; WOODSTOCK, AL + + + + + Westank Industries, Inc. + + + + + Society Coach Builders + + + + + Park Royal + + + + + Ransome Lift Equipment Co., Subsidi-ary of Giles & Ransome, Inc. + + + + + Turtle Top + + + + + Amerind-Mackissic, Inc. + + + + + Master HouseMfd. by Highlander + + + + + GreenvillaMfd. by Greenville Mobile Homes + + + + + Cricket Corp.Elkhart, Indiana + + + + + CALIFORNIA MOTORCYCLE COMPANY; GILROY,CA; VENTANA,CABRILLO KING & DIABLO MOTORCYCLES + + + + + Micro Concept Cars + + + + + Cullison Mfg., Inc. + + + + + Schlemmer Boat Co. + + + + + Kelley ManufacturingBogata, Texas + + + + + American La FranceDiv. of A-T-O, Inc. + + + + + GILLIG CORPORATION HAYWARD, CALIFORNIA , BUS + + + + + LandlordMfd. by Simplicity Mfg. Co., Inc. + + + + + Osage Trailer Mfg. Co., Inc. + + + + + Speed King Mfg. Co., Inc. + + + + + Pioneer Div., Portec, Inc. + + + + + ABC HomesDiv. Divco-Wayne Industries + + + + + Mayrath Industries, Inc. + + + + + Clement-Braswell + + + + + Paris Trailer Co. + + + + + Chuck Beck Motorsports + + + + + AMF Lawn & Garden Div.AMF, Inc. + + + + + Bantam + + + + + Xplorer Enterprises of Constantine + + + + + Laser + + + + + Brown, Dave L., Inc. + + + + + Ohio Body Mfg. Co.New London, Ohio + + + + + Bushcraft Trailer + + + + + Lundell Mfg. Co., Inc. + + + + + Liberty Travel Trailers + + + + + Sun ChaserMfd. by Sun Recreational Industries, Ltd + + + + + SUPERIOR TRAILERS OF GA. INC.; DANIELSVILLE, GA + + + + + Electric Vehicle Technologies + + + + + EXCELSIOR-HENDERSON MOTORCYCLES + + + + + Dorsey Trailers Inc.Elba, Alabama + + + + + Virginian Coach Camper Corp. + + + + + Alpine + + + + + Elcona Homes Corp + + + + + Maybach (Brand within Mercedes-Benz) + + + + + Ashby Brothers + + + + + Alaskan Camper + + + + + Heald, Inc. + + + + + Joshua Trailer + + + + + Sunflower Travel Trailer + + + + + Fiesta + + + + + Mobley Metal Works + + + + + Maxcraft Trailer Mfg. + + + + + VANTAGE DUMP TRAILERS, INC.; KATY, TX + + + + + De Soto Coach Co. + + + + + Clua . + + + + + HORSE CREEK MANUFACTURING; COOKVILLE, TX + + + + + Travel Queen Coaches + + + + + McCoy Mfg. & Sales Co. + + + + + Rainbow Corp. + + + + + Hinomoto Tractor Sales USA, Inc.Houston, Texas + + + + + SearsSears, Roebuck & Company + + + + + Robin Mfg. Co. + + + + + Guizzo + + + + + Messerschmitt + + + + + Kozy Coach Co. + + + + + Southern Missouri Trailer Sales + + + + + Francis-Barnett + + + + + Beta + + + + + Driftwood Homes Corp. + + + + + Century Auto Body & Trailer Mfg. Co. + + + + + Hyster Co. + + + + + Rockland Mfg. Co., Inc. + + + + + Nashua Mfg. Co. + + + + + IndependenceMfd. by Patriot Homes, Inc. + + + + + Superior Office Trailer + + + + + Fairthorpe + + + + + Giannini + + + + + Specialty Mfg. Co.Red Bay, Alabama + + + + + JLG Ind., Inc. + + + + + Miller Tilt-Top Trailer Inc.Milwaukee, Wisconsin + + + + + Tailgater + + + + + Grizzly Corp. + + + + + Hearthside Mobile HomesDiv. Moduline International, Inc. + + + + + AvionMfd. by Fleetwood Enterprises + + + + + Newport Homes, Inc. + + + + + Eidal International Corp. + + + + + Arctic Cat + + + + + Moto Beta + + + + + Chicago Pneumatic Equipment Div.Chicago Pneumatic Tool Co., FranklinPennsylvania + + + + + Hendrix Manufacturing Co. + + + + + Kamp King Utopian + + + + + Connell Industries, Inc.Greene, New York + + + + + Hunter's DreamMfd. by Wright Industries, Inc. + + + + + Ecstasy Trikes of Allentown, Inc + + + + + MONGOOSE TRAILERS;TEXAS + + + + + Luxor-Leffingwell Coach + + + + + Volvo + + + + + Dresser Industries, Inc. + + + + + Trail Blazer + + + + + Castle Enterprises, Inc. + + + + + Electric Vehicles Northwest, Inc. + + + + + E-Z Utility TrailerMfd. by Dutchie, Leola, Pennsylvania + + + + + Lil Indian + + + + + Banner Industries, Inc. + + + + + Allis-Chalmers Corp. + + + + + Unverferth-McCurdy Mfg. Co., Inc. + + + + + American Custom Electric Cars and Golf Carts + + + + + Timken Bearing Boat Trailer + + + + + Isetta + + + + + Houle Industries, Inc. + + + + + Savannah Homes, Inc.Savannah, Tennessee + + + + + Alcoa Trailer + + + + + Goff Mfg. Corp. + + + + + Pro One + + + + + MASTER TOW INC. FAYETTEVILLE, NC + + + + + Valkrie + + + + + Prestige HousingConway, Arkansas + + + + + Bucita Pop Top Trailer + + + + + Gabriel Auto Carrier + + + + + Hauler-TrailerMfd. by Nodine Mfg. + + + + + Manor Homes, Inc. + + + + + Richardson Homes Corp. + + + + + Marbrough Boat Trailer + + + + + Vista Liner Coach & Trailer + + + + + CLASSIC ACQUISITIONS/CLASSIC VENTURES; HERNANDO,FLORIDA + + + + + Cherne Industrial, Inc.Edina, Minnesota + + + + + Trihawk Inc. + + + + + COBRA MOTORCYCLES + + + + + Mobile Home Co. + + + + + Mikasa + + + + + Forester + + + + + WILD SIDE LLC; FRANKLIN, TN + + + + + COLLINS BUS + + + + + Kenron Corp. + + + + + American Coach Co.Div. Detroiter Homes + + + + + Attex + + + + + MoserSee also Vim Trailer + + + + + Apeco Mobile HomesDiv. Apeco Corp. + + + + + Alpine Mfg. Co. + + + + + Unpublished motorcycle mfr. (seeOperating Manual, Part 1,Section 2) + + + + + Kay Park-Rec Corp. + + + + + Downer Industries + + + + + Camp Cruiser Mfg. Co. + + + + + Morgan + + + + + Gustafson Mfg. Co., Inc. + + + + + Thorns Trailer + + + + + Outdoor Power Equipment + + + + + Capco Flatbed + + + + + Barrentine Mfg. Co.Greenwood, Mississippi + + + + + Smith, T. L., Co.Div. A-T-O, Inc. + + + + + Salem Mobile Home Trailer + + + + + Darby Industries + + + + + UNIMOG + + + + + Brooks Horse Trailer + + + + + Al Tucker Trailer Co. + + + + + Eshelman Sportabout + + + + + Great Bend Mfg. Co., Inc. + + + + + Star Mobile Homes + + + + + Travel World, Inc.Utility Trailers; Hope Hill,North Carolina + + + + + Puma + + + + + Fruehauf Corp.Detroit, Michigan + + + + + The Lely Corp. + + + + + Shadow TrailersShadow Boat Trailer, Glencoe, OK + + + + + Van Camp Equipment + + + + + Atlantic Mobile Sales + + + + + McDonald Camper Kit Distributor + + + + + Pettibone Michigan Corp., SubsidiaryMercury Mfg., Co. + + + + + BunkhouseModel of Siesta--mfd.by Park Homes, Inc. + + + + + Aire-Line Mobile Homes + + + + + Cal Trailer ManufacturingSan Fernando, California + + + + + Tracer Horse Trailer + + + + + Hunter Custom TrailersKingsbury, Indiana + + + + + Hustler Boat TrailerPowell, Tennessee + + + + + Roycraft Coach Co. + + + + + Northwest Trailers + + + + + Snowflake Coach Industry + + + + + COBRA TRAILERS, GERMANY; ALFRED SPINDELBERGER + + + + + Southlane Horse Trailer + + + + + Heafty Trailer Mfg. & Sales + + + + + Luger Industries + + + + + Wildgoose + + + + + Dillis Trailer Mfg. + + + + + Beaird PaylinerShreveport, Louisiana + + + + + BUCK DANDY COMPANY; TEXAS + + + + + Worthington Compressors, Inc.Holyoke, Massachusetts + + + + + Pierce Mfg., Inc.Mfr. of Pierce Duplex,Appleton, Wisconsin + + + + + Maxwell Trailers & Pickup AccessoriesMexico, MO + + + + + Esquire + + + + + General Motors + + + + + Stardust Travel Trailer + + + + + Consort Mobile HomesMfd. by Zimmer Homes Corp. + + + + + Ockelbo Industry AB + + + + + Brent IndustriesShell Rock, Iowa + + + + + Palm Trailers + + + + + Sears, Roebuck & Co. + + + + + Spyder + + + + + Mitchell Camper Trailer + + + + + Clar-Mont Mfg. Co. + + + + + Aberdeen Boat Trailer + + + + + Beachcomber Industries Ltd.Morden, Manitoba + + + + + LOCKE ENTERPRISES OF NEW YORK, INC; LOCKE,NEW YORK + + + + + TIFFIN MOTORHOMES, INC; RED BAY, ALABAMA; ALLEGRO, PHAETON, ZEPHER MODELS + + + + + KEYSTONE RV COMPANY, GOSHEN, IN. (SPRINGDALE TRAILER MODEL) + + + + + Carrier King Trailer + + + + + Four State Industries, Inc.Elkhart, Indiana + + + + + Kwick Kit Cement Mixer + + + + + Triad Trailers Ltd.New Milford, Connecticut + + + + + Wildfire + + + + + Marauder Travelers, Inc. + + + + + AMERICAN PERFORMANCE CYCLE;BULLHEAD CITY, AZ; SPIRIT AND BIG BOY CYCLES + + + + + Brown TrailerDiv. Clark Equipment Co. + + + + + Kama + + + + + Kill Bros.Delphos, Ohio + + + + + Bell's Camp Trailers + + + + + Surf-Rider, Inc. + + + + + SCHIFSKY TRAILERS + + + + + Bill Rivers + + + + + Ranch King Enterprises, Inc.Bellville, Texas + + + + + Adams Trailer Mfg. + + + + + Falcon (British) + + + + + Larsen Lapline Trailer + + + + + Cummins Engine Co., Inc. + + + + + Cheetah + + + + + Hamilton Trailer + + + + + Trail King IndustriesDiv. W.A.S., Inc., Mitchell,South Dakota + + + + + Vengeance Motorcycle; Div. of Vengeance Performance Products, LLC + + + + + Gadabout + + + + + Easom Engineering + + + + + Neptune Corp. + + + + + Ono, Inc. + + + + + Claxton + + + + + SMART + + + + + Duesenberg + + + + + Daco Trailer Corp.Pocahontas, Arkansas + + + + + Vegas Mfg. Co. + + + + + Bandera Trailer + + + + + Pan American Mobile HomesDiv. of Divco-Wayne Industries + + + + + Doonan Trailer Corp.Great Bend, Kansas + + + + + Leer, Inc.Elkhart, Indiana + + + + + Dons Boat Trailer + + + + + Suvega Tiger + + + + + Big Inch Bikes + + + + + TM Trailer + + + + + All State + + + + + Garber Seeders, Inc. + + + + + Woods Div., Hesston Corp. + + + + + Merry Mfg. Corp.Marysville,Washington--mfrs. cultivators + + + + + Lane Flatbed Trailer + + + + + Norris Homes, Inc. + + + + + Tow Pro, Inc.McKinney, Texas + + + + + Rockford + + + + + Academy Mobile Home Corp. + + + + + Hickey Trail-Blazer + + + + + Porsche + + + + + AC Cobra + + + + + METAVIC TRAILERS; ST. PIERRE-BAPTISTE, QUEBEC CANADA + + + + + Nobility Homes, Inc.Ocala, Florida + + + + + Arndt TrailersHorse trailers + + + + + Cortez Motor Home + + + + + Spen & Co. + + + + + Multi Trailer + + + + + United Trailer Service & Supply Co. + + + + + HOLIDAY HOUSE + + + + + Lynn-Towtruck + + + + + Ratco WeldingBillings, Montana + + + + + New Dimension + + + + + W & M ENTERPRISES, INC.; LAWRENCEBURG, INDIANA + + + + + Vermette Machine Co. + + + + + Montgomery Ward - Snowmobiles + + + + + GRAND PRIX TRAILER MANUFACTURING, CO.; FREDERICK, MD + + + + + GradallDiv. of Warner & Swasey Co. + + + + + Hart Mfg., Inc.Chickasha, Oklahoma + + + + + Boanza Mobile Homes + + + + + Tow-Rite Mfg. + + + + + Harbortown Mobile HomeLeola, Pennsylvania + + + + + Vet Boat Trailer + + + + + Craft Weld Trailer + + + + + Nash-Healy + + + + + AMRAD PRODUCTS & SUPPLY (SNOWMOBILE & UTILITY TRAILERS) + + + + + Marquette Custom Boat Trailer + + + + + C. D. Osborn & SonGrand Rapids, Michigan + + + + + Thomsen Equipment Co. + + + + + Stopover Traveler & Camper Co. + + + + + KMMKoffel Machine & Metal Fabricating, Inc. + + + + + Monarch + + + + + Motocicletas Carabela SA + + + + + G. & C. Mfg. Co. + + + + + Sun-Lite, Inc.Bristol, Indiana + + + + + Red Cat Motors + + + + + Troyer Mfg. Co. + + + + + Scad-A-Bout Mfg. & Aluminum Co. + + + + + Freightliner Corp. + + + + + Continental of Colorado, Inc. + + + + + Spartan Motors, Inc.Mfd. in Charlotte, Michigan + + + + + Ellis Trailer Co.Sylmar, California + + + + + Forest ParkMfd. by Gerring Industries, Inc. + + + + + Tessy + + + + + Harrison Trailer Mfg. Co. + + + + + Tryco Mfg. Co., Inc.Decatur, Illinois + + + + + READI-BUILT TRAILERS; THOMASVILLE, NC + + + + + FNM + + + + + Kamasura (U.S.A.) + + + + + Woodland Camper Co. + + + + + Startrek + + + + + G & F HORSE TRAILER REPAIR; RIVERSIDE, CALIFORNIA + + + + + Sperry Rand + + + + + Qvale Automotive Group + + + + + Nelson Mfg. Co.Ottawa, Ohio + + + + + Maxwell + + + + + UNILLI ATVS ETC + + + + + Bivouac Industries, Inc.Vandalia, Michigan + + + + + Lloyd + + + + + Leland Engineering, Inc. + + + + + Finger Lakes Trailer + + + + + Hein-Werner Corp. + + + + + Towner Mfg. Co. + + + + + Easy Lawn, Inc. + + + + + Connaught + + + + + Jen Sell Corp.Elkhart, Indiana + + + + + Richard Piche, Inc.Quebec, Canada + + + + + OK Horse Trailer + + + + + Besasie Automobile Co., Inc + + + + + Caveman Industries + + + + + Argyle + + + + + Plymouth + + + + + Associated Truck & TrailerTigard, Oregon + + + + + Shalimar Mobile HomesMfd. by Sportcraft Homes + + + + + Walker Tractor Mfg. + + + + + Rich Industries + + + + + Harben, Inc. + + + + + Heckaman Mfg., Inc. + + + + + Por Trailer + + + + + Westgo Industries, Inc. + + + + + Husky + + + + + CANADIAN MOTORHOME + + + + + Harmon Tank Co.Lubbock, Texas + + + + + Pickwick + + + + + Tufby Converter Dolly + + + + + Overland Mfg. Co. + + + + + Easton Car & Construction + + + + + Ford's Mobile Home Mfg. + + + + + Ward LaFrance International Inc. + + + + + Auto Ski IncLevis, Quebec + + + + + Magnolia Mobile Homes Mfg. + + + + + Stewart, Inc. + + + + + Daytona Mobile HomesMfd. by Monarch Industries + + + + + Lubbock + + + + + Wartburg + + + + + Acro Tank Co.Springfield, Missouri + + + + + Poole, Inc. + + + + + Kelson Engineering Co. + + + + + Chevron Corp.Elkhart, Indiana + + + + + Moritz, Inc.Mansfield, Ohio + + + + + Balboa Motor Home + + + + + Lawrence Trailer + + + + + Sams + + + + + U.S. NAVY; MAKE IS UNKNOWN + + + + + Linde + + + + + Riverside Trailer Mfg. Co. + + + + + Tonco Lowboy Trailer + + + + + Simplex + + + + + American Microcar, Inc. + + + + + Bellaire Products + + + + + Condor Motor Home + + + + + Load Star Corp.Macon, Georgia + + + + + Fuller Mfg. Co. + + + + + ZAP (Zero Air Pollution) + + + + + Neal Mfg. Co., Inc. + + + + + Blue Bird Body Co. + + + + + Oberlin Trailers, Inc. + + + + + Advance Mfg. Co. + + + + + Swanee Trailer Mfg. Co. + + + + + Lesco, Inc. + + + + + IRD + + + + + Palmetto Sales of Laurens + + + + + Hickory King Horse Trailer + + + + + Croft-INS + + + + + Southern Trailers + + + + + Energy Mfg. Co. + + + + + Valiant Mobile Homes + + + + + Otasco + + + + + P & H + + + + + Titan Trailers, Inc. + + + + + Puller-TensionerMfd. by Sherman & Reilly, Inc. + + + + + Gorilla Electric Vehicles + + + + + Safti + + + + + Jack's Trailer Mfg. of Florida + + + + + Light Equipment Div.Div. of J. I. Case Co. + + + + + Alloy Trailers, Inc.Spokane, Washington + + + + + Lomac Boat Trailer + + + + + Car-Tel Corp. + + + + + Buffalo-Springfield Div.Div. of Koehring Co. + + + + + Glitsch + + + + + Plastic Engs. & Consultants + + + + + Camp Four Industries, Inc. + + + + + IMEIndustrial & Municipal Engineering, Inc. + + + + + Gibraltar Industries, Inc. + + + + + Jeraco Enterprises, Inc.Milton, Pennsylvania + + + + + Big Bear Choppers + + + + + SNUB-HARBOR OR DAY'S DRYDOCK TRAILERS; INDIANA + + + + + Holiday Marine Sales, Inc. + + + + + Harrell Mfr.North Carolina + + + + + Friggstad Mfg., Ltd., (Canada) + + + + + El-Jay Div. Iowa Mfg. Co. + + + + + Melmak Motor Home + + + + + Steadman Containers Ltd.Brampton, Ontario + + + + + Schuler Mfg. & Equipment Co., Inc. + + + + + Patz Co. + + + + + Travoy Motor Home + + + + + Cherokee Camper + + + + + Metzendorf Trailer Mfg. + + + + + USA Motor Corp.Bremen, IN; manufactures motor homes + + + + + Columbia Trailer Co., Ltd.Vancouver, Canada + + + + + Calico TrailersQuitman, Arkansas + + + + + Gindy Mfg. Corp.Downingtown, Pennsylvania + + + + + JamaicaMfd. by Marion Homes, Inc. + + + + + Roadrunner Mfg. Corp. + + + + + Italjet + + + + + Columbine Camp & Coach + + + + + Hilo Snyder Travel Trailer + + + + + Big SurMfg. by Vacation Industries + + + + + ZIMMER MOTOR CAR COMPANY; SYRACUSE, NY + + + + + Frazer-Nash + + + + + American Pride HomesDiv. Challenger Homes + + + + + Monte Aluminum Trailer Dump + + + + + Yangzhou Tonghua Semi-Trailer Co., Ltd. + + + + + Hillman + + + + + Alpha + + + + + J-J-N ENTERPRISES; SISKETON,MO + + + + + Lundgreen Flatbed + + + + + Haynes Mfg. Co., Inc.Chickasha, Oklahoma + + + + + PLATINUM MANUFACTURING LLC; OKLAHOMA CITY, OK + + + + + Multech Corp.Canton, South Dakota and Souix City,Iowa + + + + + Open Roadsters of Texas + + + + + Colt Camper, Inc. + + + + + Kazuma (Stannic Mfg. Co., Ltd.) + + + + + DEW Eze Mfg., Inc. + + + + + Appleby Camper Trailer + + + + + DRAKE TRUCK BODIES, VERNON BRIDGE, PRINCE EDWARD ISLAND , CANADA + + + + + Fey, Frank & Co. + + + + + Arrow Motor Homes + + + + + CADILLAC FABRICATION INC + + + + + Rogers Trailers, Inc. + + + + + Creekside Welding and Jamar Trailers + + + + + Cree Coaches, Inc.Div. of Southwest Michigan Ind.,Marcellus, Michigan + + + + + Blue-Ridge Pre-Built Mobile Homes + + + + + SUGGS MANUFACTURING CO., INC.; LAGRANGE, NC + + + + + Apollo Homes + + + + + RAPTOR; ATV + + + + + Lanchester + + + + + VACTRON TRAILERS, MANUFACTURED BY: A COMPLETE ASSEMBLY;MASCOTTE, FL + + + + + Golden Coach Mfg. Co. + + + + + Littleford Brothers, Inc.Mfrs. rollers + + + + + Henred-Fruehauf (Pty.) Ltd.South Africa + + + + + Kensington Motor + + + + + Unger Motor Home + + + + + Motobee + + + + + Ammex + + + + + LONE WOLF TTRAILER CO. INC.; FALKVILLE, AL + + + + + Bering + + + + + Park Trailer Corp. + + + + + Mayfairer Motor Home + + + + + AKTIVSee Tucker Sno-Cat Corporation + + + + + Chipmore Mfg. Co., Inc.Mfrs. chippers--Bay City, Michigan + + + + + Calcinator + + + + + Jowett + + + + + Terry Industries of Virginia + + + + + M & M Mfg. Co. + + + + + Mobile Unit Mfg., Inc. + + + + + Austin-Western Div.Clark Equipment Co. + + + + + Acton Mobile Industries, Inc.Elburn, Illinois + + + + + Calypso + + + + + Dorsett Mobile HomesMfd. by Silvercrest Industries, Inc. + + + + + FECHTNER TRAILERS, ELBOW LAKE, MN + + + + + Sprayrite Mfg. Co. + + + + + Feterl Mfg. Co. + + + + + Hartford Homes, Inc. + + + + + King of the Road Trailer Co.Conyers, Georgia + + + + + Factory Outlet Trailers + + + + + HAULIN TRAILERS LLC, MUSKEGON, MI TRAILERS + + + + + Harding Trailer Co.Fort Myers, Florida + + + + + Phoenix + + + + + Worrell Trailer Mfg. + + + + + Pixie Piker Travel Trailer + + + + + SHL + + + + + ULTRA ACQUISITION CORPORATION; RIVERSIDE, CA + + + + + Daton + + + + + Boat Master TrailersFt. Myers, FL + + + + + Catolac Corp. + + + + + Detrail Trailer + + + + + Pasquali, USAVerona, Wisconsin + + + + + Concord Travelers + + + + + Allentown Brake & Wheel Service, Inc.Allentown, Pennsylvania + + + + + Halco Co. + + + + + BILLY GOAT LAWN VACUUM + + + + + JAMCO TRAILERS; BRUCEFIELD, ONTARIO, CANADA + + + + + J & L'S CARGO EXPRESS, INC.; BRISTOL, INDIANA + + + + + LaSalleDiv. Globemaster M.H. + + + + + Yellowstone, Inc. + + + + + Deico Auto Carrier Trailer + + + + + Osi + + + + + NUWA Horizon Camper Trailer + + + + + Peerless + + + + + Gilson Brothers Co. + + + + + Golden Nugget Travel Trailer + + + + + Wheeler Truck TrailerMorley, Missouri + + + + + Howdan Mfg. Co. + + + + + Mobile Sweeper Div.Div. of Athey Products Corp. + + + + + Denver Trailer Supply, Inc. + + + + + Carriage, Inc. + + + + + ABCO Trailer Mfg. Co. + + + + + EXTREME CYCLES (MOTORCYCLES) + + + + + Formaloy Flat Snowmobile Trailer + + + + + Transportation Manufacturing CorporationRoswell, New Mexico + + + + + Carry-AllScrapers, rooters and chisels--mfd. byMurray Mfg. Co. + + + + + ARISTOCRAT INDUSTRIES, INC.; GOSHEN, IN + + + + + Moto Morini + + + + + LML Corp. + + + + + Reed Mfg. Co. + + + + + Kawasaki Motors Corp., U.S.A.Santa Ana, CA + + + + + Glenhill Road Machinery + + + + + Double Delight, Inc. + + + + + Air-O-Motor Home + + + + + Gehl Co. + + + + + K & K Mobile Homes + + + + + CHARLESTON MARINE CONTAINERS, INC. CHARLESTON, SC + + + + + Wrangler Trailers + + + + + Poloron Homes of Pa., Inc.Middleburg, Pennsylvania + + + + + Trailerette Trailer + + + + + Specialized Trailers + + + + + Fuerst Brothers, Inc. + + + + + M-D Trailer Co.Fort Worth, Texas + + + + + Rapid Traveler Coaches + + + + + J. E. Love Co. + + + + + Dynapac Mfg., Inc. + + + + + Glider Mobile Homes Corp + + + + + Trailer Wheel and Frame Co.Bellville, Texas + + + + + Ander-Ett, Inc. + + + + + Frederick-Willys + + + + + Rallymaster Travel TrailerArlington, Texas + + + + + HAYSHED TRAILERS; ALBERTA CANADA + + + + + Land Rover + + + + + Vauxhall + + + + + Kalyn Co. + + + + + THOROUGHBRED INDUSTRIES, INC; RIDGELAND, SC STARLITE MODEL + + + + + Capri + + + + + Mikrus + + + + + Travois Trailer + + + + + C & W TrailersGolden, MS + + + + + Trailco Mfg. & Sales Co.Div. of Dorsey Trailers--Hummels Wharf,Pennsylvania + + + + + Montgomery Mfg. Co. + + + + + Reliant + + + + + Watson Tractor Co., Inc.Danielsville, Georgia + + + + + Ashton Trailer + + + + + Marmon Harrington + + + + + BuckinghamMfd. by King Homes, Inc., Elkhart,Indiana + + + + + M.V. Agusta + + + + + Royals InternationalMillersburg, Indiana + + + + + Cash Trailers, Inc.Troy, Alabama + + + + + Rent-A-Trailer Corp. + + + + + Leisure Products, Inc. + + + + + Bitter + + + + + Mallard + + + + + EconorollMfd. by Stow Mfg. Co. + + + + + Easy Traveler Trailer + + + + + American BeautyMfd. by American Shelter Systems, Inc. + + + + + Presvac Systems (Burlington) Ltd. + + + + + Mobile Traveler + + + + + Alois Kober (AL-KO) + + + + + Vador + + + + + Devil Travel Trailer + + + + + Garrett-Weldco Industries, Inc. + + + + + Randall's VIP Trailers, IncTempe, AZ; boat and utilitytrailers + + + + + PANZER MOTORCYCLE WORKS, LLC COLORADO + + + + + Horner-Golem Co. + + + + + Seaman Digz-AllMerrill, Iowa + + + + + Transport Trailers, Inc.Cedar Rapids, Iowa + + + + + Plattsburg Mfg. + + + + + Kross KountryLittle Chute, Wisconsin + + + + + Allen Camper Mfg. Co., Inc. + + + + + CrestlaneMfd. by Lonergan Corp. + + + + + Linwood Mfg., Inc. + + + + + Bedell Trailers + + + + + Taylor Mobile HomesDiv. Troy Lumber Company + + + + + Murena + + + + + Foretravel, Inc.Nacogdoches, Texas + + + + + Flair Industries of Illinois, Inc.Macomb, Illinois + + + + + Stampings, Inc. + + + + + Boise Cascade Mobile HOmeBoise, Idaho + + + + + Niceson Boat Trailer + + + + + Budger Mfg. Co. + + + + + HUSKEE LAWN & GARDEN EQUIPMENT + + + + + Randall, Walter + + + + + Pines Trailer Corp.Pine Grove, Pennsylvania + + + + + Country Comfort Trailers + + + + + Bermar Mfg. Corp. + + + + + Coachmen Homes Corp.Subsidiary Coachmen Industries, Inc.,Middlebury, Indiana + + + + + Oneida Coach Mfg.Grand Ledge, Michigan + + + + + Spencer Sports Products + + + + + Auto Homes Industries + + + + + U.S. Electricar Corp. + + + + + Imperial Mobile Homes + + + + + Starcrest Motor Home + + + + + Morgan Trailer Mfg. CoMorgantown, Pennsylvania + + + + + Acme Trailer Mfg. Co. + + + + + Bucyrus-Erie Co. + + + + + Frank Russell Mfg. Co. + + + + + Journey Motor Homes, Inc.Elkhart, Indiana + + + + + Toyota + + + + + Canoga Classic Campers + + + + + JCB Excavators, Inc.Whitemarsh, Maryland + + + + + Salvaco, Inc.Columbus, Ohio + + + + + United Mobile Sales + + + + + IC CORPORATION;FORMERLY AMERICAN TRANSPORTATION CORPORATION + + + + + Fast Load + + + + + Great Dane Trailers, Inc.Savannah, Georgia + + + + + Mobile Holding Corp. + + + + + Camper City Coach Craft + + + + + Trailmaster Tanks, Inc.Ft. Worth, Texas + + + + + American Augers, Inc. + + + + + Osca + + + + + Rustler Horse Trailer + + + + + Pal Mfg. Co., Inc. + + + + + Pines Trailer CorpChicago, Illinios + + + + + Holmes Trailers + + + + + Thimsen Mfg. Co. + + + + + Bod-Eze + + + + + Trail Tramp + + + + + Danuvia + + + + + K Line Trailer + + + + + Zieman + + + + + ENCORE; RIDING LAWNMOWERS + + + + + CAVALLO + + + + + Kan Haul Trailer Sales + + + + + Lull Engineering Co.Subsidiary N. Marshal Seeburg & Sons,Inc. + + + + + Roadcraft Mfg. & Leasing + + + + + Lancer + + + + + Estate Mfg., Inc.Motor homes--Elkhart, Indiana + + + + + Parkway Mfg. Co. + + + + + FloTrailMfd. by Lynch Manufacturing + + + + + Starbuck Trailer + + + + + Butler, C. Trailer Mfg. Co.Greensboro, North Carolina + + + + + Graham + + + + + Tide Craft, Inc. + + + + + Ava Travel Trailer + + + + + Givens Mfg. Co. + + + + + Bunyan, Paul Co. + + + + + SIEMS ENTERPRISES; SHELLEY, IDAHO TRAILERS + + + + + Neckar + + + + + Letourneau, R. G. + + + + + Spartan Aircraft Co. + + + + + Riviera Mfg. Co. + + + + + Pointer-Willamette + + + + + Tru-Trailer Co. + + + + + Duplex Mill & Manufacturing Co. + + + + + Campus Bike + + + + + Windham Mfg. Co., Inc.Mfgs. loaders + + + + + Rockie Mountain Mfg., Inc. + + + + + Oklahoma Trailer, Inc.Mfrs. boat trailers--Kingfisher,Oklahoma + + + + + Pilgrim Intl., Inc. + + + + + B & B Cozy-Home + + + + + RON'S TRAILERS INC.; OREGON, OH + + + + + Angelus Trailer Mfg. Co. + + + + + Grumman-Olsen + + + + + Flintstone IndustriesOcilla, Georgia + + + + + Diamond T + + + + + Mc Kee Roughrider + + + + + Sprite + + + + + Elgin + + + + + Mahoning Homes, Inc. + + + + + SHIJIAZHUANG MFG MOTORCYCLES AND ATV'S + + + + + Lane Horse Trailer + + + + + Sunhome Mfg. + + + + + CommuneMfd. by Community Homes, Inc. + + + + + Bainbridge Motor Home + + + + + Mountain View Campers + + + + + Martin Lowboy Semi Trailer + + + + + Dreamliner Trailer + + + + + Cat + + + + + Ownahome, Inc. + + + + + Hupmobile + + + + + Tag-A-Long Trailers + + + + + Cavalier Homes, Inc. + + + + + Brae Trailers, IncStoughton, WI; piggyback semi-trailers + + + + + Schrader Dump Trailer + + + + + Dynacycle + + + + + American Eagle (also see make Eagle) + + + + + Windward Enterprises + + + + + Precision Fire Apparatus + + + + + Arkansas TravelerMfd. by Rawhide Stock & Horse TrailerMfr., Inc. + + + + + Tex Willett Co. + + + + + Oakland + + + + + Farmhand, Inc. + + + + + Fontaine Truck Equipment Co.Birmingham, Alabama + + + + + Cheney Weeder, Inc. + + + + + Gogomobile + + + + + Mid-Cal Forklift, Inc. + + + + + Chisolm Trailers, Inc.Chickasha, Oklahoma + + + + + Bellew's Perris Balley Campers + + + + + Saab + + + + + Mark V Trailer + + + + + Ballien Mfg. Co. + + + + + Garelli + + + + + TARASPORT TRAILERS, INC.; SWEETWATER, TN + + + + + DOUBLE D DISTRIBUTORS, INC; PINK HILL, NORTH CAROLINA + + + + + French Horse Trailer + + + + + High View, Inc. + + + + + Pittsburgh Forging Co., Farm ToolsDiv. + + + + + FabcoDiv. of Kelsey-Hayes Co. + + + + + Acme Mfg. Co., Inc. + + + + + M-B-W, Inc. + + + + + TRAILERMAN TRAILERS,INC/INLOW CUSTOM TRAILERS; LOUISIANA, MISSOURI + + + + + Tote Gote + + + + + Allied Leisure, Inc. + + + + + Nomad Trailers & Mobile HomesDewey, Oklahoma + + + + + Tourite Mobile Homes Mfg. + + + + + Bristol HomesDiv. Tidwell Ind., Inc., Goshen, Indiana + + + + + Morse Horse Trailer + + + + + Paris + + + + + American Coupler Systems, Inc. + + + + + TotemallMfd. by Birmingham Mfg. Co., Inc. + + + + + Starmaster Camping Trailer + + + + + Panorama Homes, Inc. + + + + + B & M Mfg. Co.South Camdenton, Missouri + + + + + BAJA USA MOPEDS, CYCLES & 3 WHEELERS + + + + + Alforge Metals Corp.Ontario, Canada + + + + + Nash Mfg. + + + + + Aqualand TrailersDiv. Mid-Atlantic Metal Distributors + + + + + Iveco Trucks of North America, Inc.Mfrs. of Magirus Tractors + + + + + Marvin Landplane + + + + + Gemini + + + + + Impala Mobile Homes & Travel Trailers + + + + + BRADCO; DIVISION OF ATTACHMENT TECHNOLOGIES, INC.IOWA + + + + + GMR Enterprises, Inc. + + + + + Tramper Travel Trailer + + + + + Cosmo + + + + + City Welding & Mfg. Co.Aluminum truck bodies & steel chassis + + + + + TVR + + + + + Cody Motorcycle Trailer + + + + + Clough Equipment Co.Seattle, Washington + + + + + Marion Metal Products Co. + + + + + Trail Master Trailers, Inc.Coleman, Oklahoma + + + + + Contrail International + + + + + Malanca + + + + + Wheel Campers Corp. + + + + + Progress + + + + + CREW CHIEF MOTORHOME/HAULER + + + + + Forte Trailer + + + + + Lional Enterprises, Inc. + + + + + Tecnica AutomotrizDel Noroeste SAMexico; trailers + + + + + RC Motor Home + + + + + HORTON TRAILERS + + + + + Montesa (Spain) + + + + + Tracpac Snowmobile Trailer + + + + + Brenner Tank, Inc.Fond du Lac, Wisconsin + + + + + Miller Trailers Inc.Bradenton, Florida + + + + + Lilliston Corp.Albany, Georgia + + + + + Master Liner Mfg. Co. + + + + + Holland Trailers + + + + + SOUTHMAYD EQUIPMENT CORPORATION + + + + + Bartolini Chassis Trailer + + + + + Gerlinger Foundry Machine Works + + + + + C & C DISTRIBUTORS, INC.; WINSLOW, ME + + + + + McKee Farm Technologies, Inc. + + + + + Speedway Trailer Div.Div. Dunphy Boat Corp. + + + + + Tailor Maid Industries + + + + + Scotsman Mfg. Co. + + + + + Vindale Corp. + + + + + Studebaker + + + + + Will Craft Camper Trailer + + + + + Diamond B + + + + + Circle R, Inc. + + + + + Attachment Technologies, Inc. (ATI) + + + + + Dot + + + + + Benson Truck Bodies, Inc.Mineral Wells, West Virginia + + + + + Seat + + + + + Columbia + + + + + Dina Camiones S. A. De C. V. + + + + + Modena + + + + + PEAGUSAS + + + + + Agrolina SAMexicali, Baha, CA; trailers + + + + + Assembled Vehicle (for furtherexplanation see Operating Manual,Part 1, Section 2.) + + + + + HullcoSikeson, Missouri (Sikeston TrailerSales) + + + + + Hewitt-Robins Crushing & VibratingDiv. Litton Systems, Inc.Equipment Div. + + + + + Valiant + + + + + Key Industries, Inc. + + + + + Nsu Prinz + + + + + FairwayMfd. by Holiday Homes, Div. of BeatriceFoods + + + + + Klinger Products + + + + + Thoroughbred Boat Trailer + + + + + Traveleze Industries, Inc. + + + + + Pyramid Mobil Homes + + + + + Lawndale Homes, Inc. + + + + + Brougham Industries, Inc. + + + + + Jimglo Trailers & ProductsPhoenix, AZ; car trailers andutility trailers + + + + + Southern Lifestyle Homes, Inc.Addison, Alabama + + + + + Tuff-N-Lite + + + + + Erickson Corp. + + + + + Shiloh HomesDouble Springs, Alabama + + + + + Crystal Welding Inc. + + + + + Flow Boy, Inc.Norman, Oklahoma + + + + + American Motors (see make Ramblerfor Ramblers manufactured priorto 1966) + + + + + Yamaha Motor Company, Ltd.Cypress, CA + + + + + Oak Coach Co. + + + + + Triple B Mfg. Co., Inc.Mascoutah, Illinois + + + + + LafayetteLowboy trailers + + + + + Philift Equipment Sales Co. + + + + + Elec-Trac + + + + + Alma Trailer Co. + + + + + AAA Trailer SalesMt. Pleasant, TX + + + + + KMN Modern Farm Equipment, Inc. + + + + + Space-Craft Trailers Mfg. + + + + + LA NEW INDUSTRIES, INC; MINNESOTA + + + + + Crest Mobile Homes, Inc. + + + + + Campers, Inc. + + + + + Hamby Co. + + + + + Truck Equipment Service Co.Lincoln, Nebraska + + + + + Rockett TrailersMedley, FL; boat trailers + + + + + Jamboree Motor Home Truck + + + + + KAUFMAN TRAILERS INC. + + + + + CSM Manufacturing Co.Oklahoma City, Oklahoma + + + + + Aly AllianceMfd. by Homette Corp. + + + + + Del RioMfd. by Madrid Homes + + + + + Road Runner + + + + + DM Utility TrailerGoodfield, Illinois + + + + + Mojave + + + + + French Ford + + + + + White Line Mfg. & Dist. Co. + + + + + Dugan Trailer, Inc.Groesbeck, Texas + + + + + JIANSHE MOTORCYCLES & MOTORSCOOTERS, CHINA + + + + + Scotty SportsmanMfd. by Serro Travel Trailer Co. + + + + + Michigan Central Airlines + + + + + Wells Cargo, IncElkhart, IN; commercial trailers + + + + + ParkmasterDiv. American Sterling Enterprises + + + + + Indies House, Inc.Hackleburg, Alabama + + + + + Maurell Trailer + + + + + Can-Car Inc.Tree-farming equipment--Div. Hawker-Siddeley Canada, Ontario, Canada + + + + + Herd Seeder Co., Inc. + + + + + HanoverKingfisher, Oklahoma + + + + + JERR-DAN + + + + + Princess Homes + + + + + New Holland Haybine + + + + + JEHM POWERSPORTS; MOTOR SCOOTERS, MOTORCYCLES, ATVS, ETC. + + + + + Texoma, Inc. + + + + + King-Co + + + + + Fiberfab, Inc. (Minneapolis, MN) + + + + + Ariel (British) + + + + + Honda + + + + + Easy RiderMfd. by Landoll Corp. + + + + + NISSAN DIESEL MOTOR CO. + + + + + J & R MANUFACTURING CO., LLC; TRINITY AL. + + + + + Babetta (mfd. by Jawa, imported byAmerican Jawa, Ltd., Plainview,New York) + + + + + Gardner-Denver Cooper Industries, Inc.Denver, Colorado (formerly Gardener-Denver Co.) + + + + + Racine Construction Tool Div.,Racine Federated, Inc. + + + + + C/P Products Corp. + + + + + Citation Travel Trailer + + + + + Play-Mor Trailers, Inc.Westphalia, Missouri + + + + + Marusho + + + + + REEL TRAILERS + + + + + Hale Horse Trailer + + + + + Job Site Trailer + + + + + Kromag (Subs. of Puch) + + + + + Glen-L TrailersLewiston, Idaho + + + + + Liberty Coach Co. + + + + + Travel Long Inc. + + + + + Sportcoach Corporation of America + + + + + Echelon Motorcycles + + + + + ICL Cargo Trailer + + + + + Fat CatMfd. by R & R Mfg. Co. + + + + + DWS Storeway TrailerCrossville, Tennessee + + + + + Heil Co. + + + + + Gilbern + + + + + DO-MOR Equipment, Inc. + + + + + La Crosse + + + + + Tinker Clubs of America, Inc. + + + + + Globestar Industries, Inc. + + + + + Taube Tool Corp.Mfd. Taube n Taube Trailer,Richmond, Indiana + + + + + CORN PRO TRAILERS + + + + + Minelli + + + + + Cezetta + + + + + VOR ENDURO MOTORCYCLE, ITALY + + + + + Meyer Mfg. Corp. + + + + + EBY, M.H., Inc.Blue Ball, Pennsylvania + + + + + West Coach Mfg. Co. + + + + + Campers Unlimited + + + + + Kami + + + + + Buckeye Mobile Homes, Inc. + + + + + Sport King Campers + + + + + Baillie's Tri-R Welding + + + + + P/D + + + + + Don May EnterprisesRichardson, Texas + + + + + Johnson Welding & Steel SupplyPhilo, Illinois + + + + + Commercial StructuresNappanee, Indiana + + + + + Newham Enterprises + + + + + APRILIA MOTORCYCLES + + + + + QUALITY MFG. CO., INC.; ROME, NEW YORK + + + + + Nardi-Danese + + + + + Ashley + + + + + NuWay Mobile Home Mfg. Co. + + + + + Armadillo Trailers, Inc.Utility Trailer, Deport, Texas + + + + + Williamsen Truck Equipment Corp.Mfr. "Williamsen Dump & Special Trailer"Salt Lake City, Utah + + + + + Rogers Brothers Corp. + + + + + Fertilizer Dealer Supply, Inc.Philo, Illinois + + + + + RemcoMfd. by Rome Engineering & Mfg. Co. + + + + + Unpublished truck mfr.(see Operating Manual, Part 1,Section 2) + + + + + Lancia + + + + + Triumph Machinery Co. + + + + + Yukon Delta + + + + + Lonaire Mfg. Corp. + + + + + W.C. Manufacturing & Specialty Co. + + + + + Marking Mfg. + + + + + Unipower + + + + + Ferrara Fire Apparatus + + + + + Fort Smith Camper Mfg. Co. + + + + + Gast Manufacturing Co. + + + + + Rumi + + + + + C & V Welding and Fabricating + + + + + Tjaarda + + + + + D & D Trailer Inc.Trenton, New Jersey + + + + + Komfort Travel Trailer + + + + + Coleman Camping Trailers + + + + + Ken-Bar + + + + + Lyman Metal Products Corp. + + + + + Prarie Schooner, Inc.Elkhart, Indiana + + + + + Chubbs, Inc. + + + + + Layton Homes Corp. + + + + + Magline, Inc.Pinconning, Michigan + + + + + Rolls-Royce + + + + + Ranchette Travel Trailer + + + + + Herrli Industries, Inc. + + + + + Biltmore Mobile Homes + + + + + Biewer Industries + + + + + Drott Manufacturing Co.Div. J. I. Case Co. + + + + + ABC (Aluminum Body Corp.) + + + + + Leesburg Div.Div. of Divco-Wayne Industries + + + + + CIRCLE M TRAILERS + + + + + TOPLINE MANUFACTURING, CO., INC.; TREMONT, MISSISSIPPI + + + + + DELOUPE, INC.; QUEBEC, CANADA + + + + + Snowbear, Ltd. + + + + + Erectors & Fabricators, Inc.Tonganoxie, Kansas + + + + + Jantz Mfg., Inc. + + + + + Viva Motor Home + + + + + Brock Star Trailer + + + + + EXCEL EZLOAD TRAILERS, LLC; AMARILLO,TX + + + + + Sol Cat Boat Trailer + + + + + Ferree Trailer Corp.Climax, North Carolina + + + + + Gold Star Mobile Homes, Inc. + + + + + Klimek Welding and ManufacturingMaple Lake, MN; manufactures trailers. + + + + + MOND INDUSTRIES, INC.MISSISSAUGA, ONTARIO, CANADA; PURCHASED BY TRAILMOBILE IN 1999 TRAILEMOBILE IN + + + + + Stow and GoMfd. by TRV Corp. + + + + + Motor Homes of America, Inc. + + + + + Rhino Trailer Mfg. + + + + + RFC Mfg., Inc. + + + + + Badger-Northland, Inc.Subsidiary Massey-Ferguson, Inc. + + + + + Bomag Trailer + + + + + Happy Wanderer Industry, Inc. + + + + + MUSTANG; CONSTRUCTION EQUIPMENT ETC. + + + + + TimberwolfElkhart, Indiana + + + + + Callahan Engineering Co. + + + + + Siefmund Werner + + + + + Erin Truck and Body EquipmentDolton, Illinois + + + + + Dupont Service Center, Inc. + + + + + Charlamor Corp. + + + + + Conwed Trailer + + + + + DUN-RITE MANUFACTURING LLC; DENVER, CO + + + + + ROLLINGSTAR, MFG., INC. ; BARNEVELD, NY + + + + + Hahn, Inc.Evansville, Indiana + + + + + Lac St-Jean Motoneige, Ltd.See Montagnais + + + + + Donhal, Inc. + + + + + PERFECTION ARCHITECTURAL SYSTEMS, INC.; BOYNTON BEACH, FL + + + + + Witzco Trailers, Inc. + + + + + Aristocrat Trailer SalesDiv. I. B. Perch Company + + + + + Pendlay + + + + + K-Bar Industries, IncSavage, MN; utility trailers + + + + + MOBILE CONCEPTS BY SCOTTY; MT. PLEASANT, PA + + + + + Bulk Resources, Inc., doing business as Bulk Mfg. Co. + + + + + Norjack, Incl + + + + + Murphy Engineering Co., Inc. + + + + + X-CEL TRAILERS, INC.; FORNEY, TX + + + + + C & B CUSTOM MODULAR, INC.; BRISTOL, TENNESSEE + + + + + International Industries, Inc. + + + + + Briggs Manufacturing, Inc. + + + + + Seal MateDiv. of Tateco, Inc. + + + + + Craftsman Ind., Inc. + + + + + Allen, R. L. Company, Inc.Battle Creek, Michigan + + + + + Holland Transplanter Co. + + + + + Panther Westwinds, Ltd. + + + + + General + + + + + Mallard Coach Corp. + + + + + BOURGET'S BIKE WORKS + + + + + DeTomaso + + + + + Woodline Custom Camper + + + + + Rink Mfg. Co. + + + + + Unicar + + + + + White Star Trailer + + + + + El Dorado Mfg., Ltd. + + + + + AMERICAN IRONHORSE MOTORCYCLES FT. WORTH, TEXAS + + + + + London Taxi + + + + + E Z Tow Manufacturing Co.Madison, Connecticut + + + + + A.Claeys Flandria (Belgium,imported by Saint Tropez) + + + + + Lechmere Construction + + + + + Caper Cycle + + + + + Comet Riding Mower + + + + + ONYX FLYER + + + + + ELKHART, INDIANA + + + + + Tacoma Trailer + + + + + Alexander-Reynolds Corp. + + + + + Eagle Equipment + + + + + Redi-Go Traveler + + + + + Milco Tank & Boat Co. + + + + + WESTERN RECREATIONAL VEHICLES, INC.; YAKIMA, WA + + + + + Santa Fe Springs Div.Div. of Divco-Wayne Industries + + + + + Robin Hood Travel Trailers + + + + + Van Guard Trailer, Ltd. + + + + + TRINITY TRAILER MEG., INC. BOISE, ID + + + + + Armor Mobile Homes Mfg. Co.Subsidiary Magnolia Mobile Home + + + + + King Horse Trailer + + + + + Raynell Campers + + + + + Ponderosa Industries + + + + + North River HomesHamilton, Alabama + + + + + Pure Steel Custom Cycles, Inc. + + + + + Werts BiltMfd. by Werts Welding Service + + + + + Kartote + + + + + Travel Equipment Corp. + + + + + Security Industries + + + + + Clay Camper Co. + + + + + Hyde Corp.Hurst, Texas + + + + + Tule Trooper + + + + + Double E Trailer Mfg.Commanche, Oklahoma + + + + + Kovatch + + + + + U-Save TrailersPomona, California + + + + + American Trencher, Inc. + + + + + Berkley + + + + + Midwest Industries, Inc.Ida Grove, Iowa + + + + + Zastavia (ZCZ-Yugoslavia) + + + + + Establishment + + + + + PROTAINER, INC; PROTRAILER (TRADE NAME) ALEXANDRIA, MN + + + + + Mobile Facility Engineering Co. + + + + + SHERCO MOTORCYCLE + + + + + PALM AIRE, INC.; ELKHART, IN + + + + + Zeligson + + + + + INNO VAN; MORAINE, OHIO/MERC HOLDING CO. + + + + + Haulette Trailer + + + + + Dively Mfg. Co.Claysburg, Pennsylvania + + + + + Cardinal Industries + + + + + Rembrant Mobile Home + + + + + Boyd, E.G., Trailer Co. + + + + + Circle V Horse Trailer + + + + + Kory Farm Equipment Div. + + + + + Yard-Man Co. + + + + + Bantam + + + + + Campbell-Hausfeld Div., Scott &Fetzer Co. + + + + + Allegro Motor Home + + + + + Diamond SWalters, Oklahoma + + + + + Green Mfg., Inc. + + + + + Merkur + + + + + Sabine Mfg., Inc. + + + + + Blake TrailersStar, Idaho + + + + + M.J.M. Trailer Mfg., Inc. + + + + + Kismet Mfg. Co. + + + + + Tilton-Hilton + + + + + Colorado Mobile Homes + + + + + Gore Trailer + + + + + Lark Trailer + + + + + Bombardier Ltd. + + + + + Viking + + + + + Unlisted Snowmobile Manufacturer + + + + + Leon Manufacturing Co., Ltd.,(Canada) + + + + + Gannon Manufacturing Co., Inc. + + + + + Discover 25 Motor Home + + + + + BEAVER CREK ENT. ; MOKENA, IL + + + + + McCain Industries + + + + + Seacamper Boat Trailer + + + + + DIAMOND C MT. PLEASANT,TX, CAR HAULER + + + + + Bellview Camper + + + + + Kon Kwest Mfg. + + + + + Terex Div.Euclid & Terex products + + + + + Lancer Mobile Homes + + + + + Centreville Trailer + + + + + Kempter Trailer + + + + + Star Tank & Trailer Mfg. Co. + + + + + Prairie Schooner + + + + + Wil-Ro, Inc.Gallatin, Tennessee + + + + + NICHOLS CUSTOM WELDING; HOME OF NICHOLS TRAILERS; FARMINGTON, ME + + + + + Wagon Master Trailer + + + + + International Jet Boats De Mexico S.A.De C. V.Mexico; trailers + + + + + Chance Coach IncWitchita, KS, city transit buses + + + + + All Purpose Trailer Co., Inc.Jefferson, South Dakota + + + + + American Body & Trailer Co. + + + + + Solo Electra + + + + + Todco + + + + + GiantManufactured by Caldwell & Sons + + + + + RC COMPONENTS + + + + + Stoddard Mfg. Co.Waterloo, Iowa + + + + + Four Winds + + + + + EPI Erwin Precision Inc. & EPI Custom Cycles + + + + + DIAMOND TRAILERS, INC. SHANDON,OH + + + + + T & M MANUFACTURING, INC.; PRINCETON, ONTARIO CANADA + + + + + Page Engineering Co. + + + + + Iowa Manufacturing Co.Cedar Rapids, Iowa + + + + + Gonard Enterprises, Inc. + + + + + Breeze Motor Home + + + + + Logan Coach, Inc.Logan, Utah + + + + + Lakeland Camper & Mfg.Drayton Plains, Michigan + + + + + SAM PATTON INDUSTRIES + + + + + Maginniss Vibrator Equip Co. + + + + + Bella Casa Co. + + + + + RV Industries, Inc. + + + + + Marathon Le Tourneau Co. + + + + + Equipment Pro or Milron Co., Inc. + + + + + Qianjiang Motorcycle Group Corp. + + + + + Red Dale Coach Co. + + + + + Craftsman + + + + + Jacobsen Mobile Homes + + + + + CONFEDERATE MOTOR WORKS, INC. + + + + + Comet Corp.Spokane, Washington + + + + + ELK AUTOMOTIVE; ELKHART, IN + + + + + Perma Tent Camper + + + + + VENTURI PARIS S. A. + + + + + Subaru + + + + + Aristocrat Motor Home + + + + + Idle-Time Cabover Camper Trailer + + + + + MILLENIUM TRAILERS, INC.; ADDISON, AL + + + + + Nash + + + + + Turner + + + + + EcsaMexico; trailers + + + + + Scout Motor Home + + + + + BULK MANUFACTURING COMPANY; PLANT CITY, FLORIDA + + + + + B & Z Electric Car Co. + + + + + Helm Mfg. Co. + + + + + Pleasure Homes Mfg. + + + + + Canadian Electric Vehicles, Ltd. + + + + + BaleMuvr + + + + + Aragon Distributing Co., Inc. + + + + + Fiat-Allis Construction Machinery, Inc. + + + + + Farm King, Ltd., (Canada) + + + + + Hustler-Rustler + + + + + C & S + + + + + Tartan Corp.Div. American Duralite Corporation + + + + + Classic Trailer Mfg. + + + + + Reliable Tank Inc.Rhone, Texas + + + + + Galion Manufacturing Div.Div. Dresser Industries, Inc. + + + + + CHINA QINGQI GROUP, INC; MOTORCYCLES, MOPEDS, SCOOTERS, ETC + + + + + Sampson + + + + + Marine Venture Enterprisers, Inc.Baltimore, Maryland + + + + + Ana-Log + + + + + Challenger Trailer + + + + + Alta + + + + + Holiday Industries, Inc. + + + + + Ridge Runner Industries, Inc.Fairmount, West Virginia + + + + + John A. McKay + + + + + Van Veen + + + + + Larado Mobile Homes + + + + + Mesa III Travel Trailer + + + + + Chicago Pneumatic Tool Co. + + + + + Warhawk Mfg. Co. + + + + + Altec IndustriesIndianapolis, Indiana + + + + + SPECTRUM STEEL, HYRUM, UTAH + + + + + Mitts-Merrill, Inc. + + + + + D & A Vehicles, Inc. + + + + + Playcat Industries, Inc.Polar BearSee Raybon Manufacturing CompanyPolar Bear/Whip ItSee Raybon Manuf + + + + + Austin + + + + + Douglas Homes, Inc. + + + + + Snowton Trailer + + + + + Seagull + + + + + HERITAGE CUSTOM TRAILERS; BENTON,ILLINOIS + + + + + Moto Guzzi (Italy) + + + + + Ace Traveler Corp. + + + + + Extreme Custom Trailers + + + + + Magic Tilt Trailer Mfg. Co., Inc.Boat trailers--Clearwater, Florida + + + + + UNITED EXPRESS LINE,INC; BRISTOL INDIANA + + + + + Selby Mfg. Co.Nicollet, Minnesota + + + + + King Trailer Co., Inc. + + + + + Wood/Chuck Chipper Corp.Mfrs. brushchippers--Shelby, NorthCarolina + + + + + COR-TECH MFG., INC., LUVERNE, MN + + + + + Nallej of Florida + + + + + Roll-A-Long & Sterling Coach Co. + + + + + Invader Travel Trailer + + + + + Tora (Imported by Rockford) + + + + + Crofton Cub + + + + + Lilac + + + + + Gilson + + + + + Viking Snowmobiles, Inc.Twin Valley, MN + + + + + Lislet Foundries, Ltd. + + + + + Eagle International, Inc.Mfrs. buses--Brownsville, Texas + + + + + Sprinter + + + + + Aerocar + + + + + Babcock's Mobile Home Mfg. Co. + + + + + SUN INTERNATIONAL RACING CORPORATION; CALIFORNIA + + + + + Remolques Tanques Y Equipos S.A. DE C.V. + + + + + Horex + + + + + SAUBER MANUFACTURING COMPANY; VIRGIL, IL + + + + + Easy Loader Trailer + + + + + Moretti + + + + + Graham-Paige + + + + + Raygo, Inc.Minneapolis, Minnesota + + + + + Hicks + + + + + Parkwood Homes, Inc. + + + + + Frye + + + + + Marvin A. Spears Co. + + + + + Little Prospector Motor Home + + + + + L & G Trailer + + + + + American Clipper Corp.Morgan Hill, California + + + + + Valley Foundry & Machine Works + + + + + Fost Joe Dog + + + + + Radamacher Trailer + + + + + Cascade Coach Co. + + + + + Spector Manufacturing, Inc. + + + + + Wy Frame Corp.Elkhart, Indiana + + + + + Bugatti + + + + + DovekieMfd. by Edey & Duff + + + + + Robert Horse Trailer + + + + + Star Trans + + + + + Pike Trailer CoSouth Gate, California + + + + + Panther + + + + + Batavia Trailers, Inc. + + + + + Chateau Recreational Vehicle Div.Christiana, Pennsylvania + + + + + Stepper Trailer + + + + + Ruttman + + + + + Streamline Trailer Co. + + + + + Oldsmobile + + + + + Cross Hill Mobile Homes + + + + + Tri-Pak Systems Co.Louisville, Kentucky + + + + + Dynamics Corp. of America + + + + + Tow Low + + + + + Transmobile Trailer + + + + + MARINE GROUP LLC; MURFREESBORO, TN (PRO-CRAFT) + + + + + Inland Equipment Corp.St. Charles, Illinois + + + + + Kayot, Inc. + + + + + Bon-Aire Homes, Inc. + + + + + Jim's Trailer ShopPortland, Oregon + + + + + Kurtis Kraft + + + + + Blue Ribbon Coach Co. + + + + + CurtisDiv. Globemaster Mobile Homes + + + + + HI-WAY STAR, INC; ODESSA, FL + + + + + Mack Trailer Mfg. Co., Inc.Detroit, Michigan + + + + + Texas Bragg EnterprisesMt. Pleasant, TX; utility trailers + + + + + Chatham Enterprises Custom Mfg. & Sales + + + + + Kallio Co.Fremont, Nebraska + + + + + LAND PRIDE FARM & GARDENING EQUIPMENT; MOWERS, ETC. + + + + + TIMBERLAND RV COMPANY; PERU, IN + + + + + Intermeccanica + + + + + Victor Mobile HomesDiv. DeRose Industries + + + + + Davenco, Inc.Roscoe, Illinois + + + + + Ariens Co. + + + + + Fawn Corp. + + + + + ULTIMATE TRAILERS; LAKEVIEW TERRACE, CA + + + + + Diamond-BiltMfd. by Diamond Steel Co., Inc. + + + + + Hylander Utility Trailer + + + + + Waldon, Inc. + + + + + Care-Free Camper Mfg. Co. + + + + + Motoroam Industries, Inc.Galva, Illinois + + + + + AlanMfd. by Giles Industries + + + + + Legendary Luxury Coach, LLC + + + + + Deutz-Allis Corporation + + + + + Tuff Thom Trailers, Inc.Brunswick, Georgia + + + + + Logic Motor Co. + + + + + Shipbuilt Van Trailer + + + + + Blazer + + + + + Super Two + + + + + Winder Liberator Camper + + + + + Geering Industries, Inc. + + + + + Riviera + + + + + Binkley Co., The + + + + + TC Industries, Inc.Crystal Lake, Illinois + + + + + Electra Vacation Home + + + + + Beach-Craft Motor Homes Corp.Elkhart, Indiana + + + + + Smartlee + + + + + COUNTRY BLACKSMITH LLC + + + + + Ski Kart + + + + + Ryan Mfg. + + + + + Fellwon Trailer + + + + + YLN (Yue Loong Motor Co.) + + + + + Trailers Y Casetas Bonanza S. A.Mexico; trailers + + + + + Tourhome Camper Trailer + + + + + Boxer Trailer + + + + + IPSCO-Lambton Steel + + + + + Lake & Shore Camper + + + + + Evinrude Motors + + + + + Trans-Trail Trailer + + + + + Supreme Industries, Inc.Louisville, Tennessee + + + + + Mobile InternationalTulsa, Oklahoma + + + + + Pennco Industries, Inc.Subsidiary of DEC International, Inc.--Warren, Pennsylvania + + + + + M & W Gear Co., Inc. + + + + + Ramsey Trailers + + + + + Mo Trailer Corp.Goshen, Indiana + + + + + Mobile Engineering Co. + + + + + Delmar Mfg. Co., Inc. + + + + + L & E Enterprises + + + + + Welch Mfg. & Engineering Co. + + + + + Wacker Corp.Milwaukee, Wisconsin + + + + + Tracker Marine, Inc.Nixa, Missouri + + + + + Yetter Mfg. Co. + + + + + Raybon Manufacturing CompanyWallingford, CT + + + + + Bulk Equipment Mfr. Inc.Bulkiner Feed Trailer + + + + + B.M. Clark Co., Inc. + + + + + Northwest Custom TrailerRochester, Washington + + + + + Detroit Trailer Co.Detroit, Michigan + + + + + MANCO PRODUCTS, INC + + + + + Paiute Trailers + + + + + Dusgo Trailer + + + + + Asbury Industries, Inc. + + + + + Buck Dragster Flatbed + + + + + VENTO MOTORCYCLES + + + + + Forage King Industries Inc. + + + + + George White & Sons Co., Ltd.,(Canada) + + + + + Hire Dump Trailer + + + + + Goebel Trailer Co. + + + + + Sutphen Corp.Amlin, Ohio + + + + + Avia + + + + + Holmes Wrecker + + + + + T.E.S. (Truck Equipment & Sales Co.) + + + + + Holman + + + + + Gar-Bro Manufacturing Co. + + + + + Boardman Co. + + + + + Sabre JetSee Sno*Jet, Inc. + + + + + BIBB WELDING & TRAILERS, LLC; MACON, GEORGIA + + + + + VERTEMATI MOTORCYCLES + + + + + HADDOX QUALITY TRAILERS; OKLAHOMA + + + + + Mirage Motorhomes, Inc. + + + + + Sera + + + + + Lil' Cat, Inc.Elkhart, Indiana + + + + + Devine's Machine & Design, Inc.Grantville, Pennsylvania + + + + + Hercules + + + + + F.A.B. Mfg. Co. + + + + + Buccaneer Mobile HomesDiv. Brigadier Industries, Inc. + + + + + Joe's Custom Boat Trailer + + + + + Atlas + + + + + Saturn HomesDiv. Harrelson Corporation + + + + + Monarch (Sweden) + + + + + Orcon Incustries + + + + + MODERN, INC. TEXAS + + + + + Charger + + + + + Stewart & Stevenson + + + + + Lagonda + + + + + R/S Truck Body Co., Inc.Allen, Kentucky + + + + + Selox Mfg., Ltd.Toronto, Ontario, Canada + + + + + Danny Boy Trailer + + + + + Continental Homes, Inc. + + + + + Show-Me Trailers, Inc.Smithton, Missouri + + + + + Lem + + + + + Son-Dyke Trailer Co.Boat Trailers--Calico Rock, Arakansas + + + + + Fleet-Aire Camper Co. + + + + + Rogue River Trailer Mfg. Co. + + + + + MG + + + + + Cozy CraftMfd. by Travelcraft, Inc. + + + + + RUSH & SON, INC; LENOIR CITY, TENNESSEE + + + + + Spano Crane Sales & Service Corp. + + + + + Viscount Trailers + + + + + Johns Corp. + + + + + AljoDiv. Skyline Homes + + + + + VAN HOOL BUSES & MOTOR COACHES + + + + + PCM Div.Div. of Koehring Co. + + + + + Midas International Corp. + + + + + BeeBee Sales Co. + + + + + LONG CHANG; USA ATVS + + + + + Hudson + + + + + Insley Four Wheel Tag Trailer + + + + + Heilite Trailers, Inc. + + + + + Alma + + + + + Mercedes-Benz + + + + + Corvette Travel Trailer + + + + + Versatile Manufacturing Co.Div. Versatile Cornat Corp., KansasCity, Missouri + + + + + Northern Hydrolics, Inc. + + + + + Ezzy Load Boat Trailer + + + + + Diplomat Motor Home + + + + + Dean Industries, Inc. + + + + + Miller + + + + + Bartlett Trailer Corp.Chicago, Illinois--Predecessor toBartlett Lifting Devices + + + + + Wa-Nee Homes Corp. + + + + + Shamrock CampersDiv. Classic Mfg. Co. + + + + + INTERMOUNTAIN WHOLESALE, INC. ;COMMERCE CITY, CO + + + + + Transmission (Generic Code--for useonly when manufacturer is notlisted) + + + + + Kassborth + + + + + Delahaye + + + + + Major Way + + + + + Hillsboro Industries, Inc. + + + + + Rotocraft Boat TrailerGrants Pass, Oregon + + + + + Catalina Motor Home + + + + + Brown Industries + + + + + Francis Travel Trailer + + + + + MacDonald Camper Kit + + + + + Mono + + + + + Dominion Road Machinery Co., Ltd. + + + + + Boyer Industries + + + + + Trek, Inc.Elkhart, Indiana + + + + + Dorado Mobile HomesMfd. by Tidwell Industries, Inc. + + + + + A & J Industries Custom Fiberglassing + + + + + Hadley Trailer Mfg. Co.North Carolina + + + + + Bristol + + + + + Bristol Mfg. Co. + + + + + Bunton CompanyLouisville, Kentucky + + + + + Yamoto + + + + + Mount Vernon Mobile HomeDiv. Concord Mobile Homes + + + + + Colonial Mobile Homes Mfg. + + + + + Merit Tank & BodyBerkeley, California + + + + + STEPHENS PNEUMATICS, INC.; HASLET, TEXAS + + + + + EconomyGarden tractor--mfd. by EngineeringProducts Co., Inc. + + + + + Integrity Custom Trailers or R & D Fabrication + + + + + W.W. TRAILER MANUFACTURERS, INC; OKLAHOMA + + + + + Victory Implement Co. + + + + + Sangyong + + + + + Executive Industries, Inc. + + + + + Moto Rumi + + + + + Vanette + + + + + Airstream Travel TrailersJackson Center, Ohio + + + + + LEITCHFIELD TRUCK EQUIPMENT, INC,; LEITCHFIELD, KY + + + + + Sycamore Mobile Homes + + + + + E. D. Etnyre & CompanyOregon, Illinois + + + + + Interstate Travel Trailer + + + + + Reed Enterprises, Inc. + + + + + ENVASES DE ACERO, S.A. DE C.V. MEXICO; TRAILER + + + + + DixieFruehauf Corp. Plant + + + + + SCION; NEW LINE/MAKE OF VEHICLE UNDER THE TOYOTA BRAND ______MODELS INCLUDE THE XA & AB + + + + + Angel + + + + + MAUER MANUFACTURER, INC.; IOWA, TRAILERS + + + + + High Chaparral, Inc.Ft. Worth, Texas + + + + + New Comer Industries, Inc.Goshen, Indiana + + + + + Peek + + + + + Jaguar + + + + + Nabors Trailers, Inc.Mansfield, Louisiana + + + + + Vector Aeromotive Corporation + + + + + Shoops Horse Trailer + + + + + Ozark TrailwayMfd. by Tri-Lakes Mfg. Co., Inc. + + + + + LEGEND TRAILERS, INC + + + + + Sun State Mobile Homes + + + + + Rolling Homes, Ltd. + + + + + Bocar + + + + + Bonnieville Mfg. Co. + + + + + SNOW Co. + + + + + Saracen + + + + + Hewitt-Lucas Body Co. + + + + + Jet Stream Camping Trailer + + + + + American Transportation Corp. + + + + + Joe's Welding ServiceSalem, Illinois + + + + + WADE SERVICES, INC.; ELLISVILLE, MS + + + + + Packard + + + + + Red Ewald, Inc. + + + + + Utah King Motor Home + + + + + Highway Manufacturing Co.Div. of Motac, Inc. + + + + + Conroy IndustriesNew Braunfels, Texas + + + + + Foot Hill Horse Trailer + + + + + Field & StreamManufacturer Vacation Industries + + + + + PACE AMERICAN OF UTAH, INC.; HURRICAN UTAH + + + + + Ensenada Mobile Homes + + + + + Special Endeavors, Inc.Omaha, Nebraska + + + + + Herter Snowmobile Trailer + + + + + Chamberlin TrailersHampton, Iowa + + + + + Inline Southwest Horse Trailer + + + + + Auranthetic Charger + + + + + Arnold Mfg. Co. + + + + + Haul-It-All-Flatbed Trailer + + + + + Aqua Cruiser, Inc.Columbia, Tennessee + + + + + Danco Trailers, Inc. + + + + + ECONOLINE TRAILERS, INC. ; DOUBLE SPRINGS, ALABAMA + + + + + The Salem Tool Co. + + + + + Modernistic Industries + + + + + Diamond ReoDiscontinued production in 1974 + + + + + Kosch Co. + + + + + Owens Mfg. Co. + + + + + Foland Enterprises + + + + + Topper Mobile Homes, Inc. + + + + + New Heights, LLC + + + + + Trophy Travel Trailer + + + + + Harvard (model of Negrini) + + + + + Hairgrove Construction Equipment + + + + + RAPSURE, INC; NAPPANEE, IN UTILITY & OTHER TYPE TRAILERS + + + + + Aeroil Products Co., Inc.Bensenville, Illinois + + + + + Getman Brothers Mfg. Co.Marion, Ohio + + + + + Muncy Homes, Inc.Muncy, Pennsylvania + + + + + Callen Camper Co. + + + + + ChanceyMfd. by Trail-O-Matic + + + + + Big Bubba's + + + + + Sundial Motor Home + + + + + Prowler Industries + + + + + QE Mfg. Co., Inc.New Berlin, Pennsylvania + + + + + Doepker Industries Ltd. + + + + + Recreative Industries, Inc. + + + + + Lanes Pacesetter Trailer + + + + + CAM SUPERLINE, INC.; GREENCASTLE,PA + + + + + AUTOCAR & AUTOCAR LLC CARS & TRUCKS + + + + + Dellow + + + + + Twister + + + + + Valley Campers + + + + + Brillion Iron Works Div., BeatriceFoods Co. + + + + + Hartline Travel Trailers + + + + + G. S. Industries, Inc. + + + + + Heinkel + + + + + G.T.Wolfe Mobile Homes + + + + + Erie-Go Mfg., Inc. + + + + + Brooklyn Trailer + + + + + Tennessee Trailer + + + + + Speed Bird + + + + + Trav Otel Industries + + + + + Lewis-Shepard + + + + + Bame Three Axle Trailer + + + + + SWM + + + + + Jackson Trailer + + + + + Hunter Structures Trailer + + + + + Richards & Clark Mfg. Co. + + + + + Alberta Trailer Co., Ltd. + + + + + Gibraltar Coach Mfg. Co. + + + + + TRAILER WHEEL & FRAME COMPANY; TEXAS + + + + + Triumph Sales & Service + + + + + Bushog Div.Subsidary of Allied Products Corp.Selma, Alabama + + + + + Lanheim, Inc. + + + + + Mitchell Industrial Tire Co., Inc.Chattanooga, Tennessee + + + + + Scorpion + + + + + Melges Boat Works, Inc.Zenda, Wisconsin + + + + + Capitol Trailer Coach Co. + + + + + Gladding Travel Trailer + + + + + Flaherty Manufacturing Co.Div. of Koehring Co. + + + + + Custom Frames, Inc.Normandy, Tennessee + + + + + Balderson, Inc. + + + + + Felps Mfg. Corp.Johnson City, Texas + + + + + Honeywell Motor Prods., Honeywell,Inc. + + + + + Streamline Motor Home + + + + + Corner Utility Trailer + + + + + Motorette + + + + + SCAT TRAK; CONSTRUCTION EQUIPMENT + + + + + Winnebago Industries, Inc. + + + + + B-Line Farm EQuip.Mfrs. Cartow & Snowmobile trailersBristol, Virginia + + + + + Downs Clark Trailer + + + + + AriensSee Skiroule Ltd + + + + + Trotwood Trailer + + + + + Dalesman (United Kingdom) + + + + + Warwick + + + + + Zongshen Motorcycle Co., Ltd., or Cixi Zongshen Motorcycle Co., Ltd. + + + + + Mark Twain Mfg. Co. + + + + + Hurst Trailers, Inc.Washburn, Tennessee + + + + + ROBB KAUFMAN, INC.; LEXINGTON, NORTH CAROLINA + + + + + Lombard + + + + + GalwayMfd. by Shamrock Homes + + + + + Co Corp. + + + + + Peterbilt Motors Co.Div. of Paccar, Inc. + + + + + Kelly-Creswall Co., Inc.Xenia, Ohio + + + + + Traveler Mfg. Inc.Concordia, Missouri + + + + + ELK RIVER MACHINE CO.; ELK RIVER, MN + + + + + Burkhart Trailer Mfg. Co. + + + + + Thor California, Inc. + + + + + Space Age Campers + + + + + Glover Plastic Sprayer + + + + + Rockford Welding & Machine + + + + + Aluma Craft + + + + + Ameri-Camp + + + + + Arlberg + + + + + Hayes Log Truck + + + + + MANN MADE PRODUCTS INC. TRAILMANN TRAILERS (TRADE NAME) + + + + + Superior Ideal, Inc.Oskaloosa, Iowa + + + + + Montgomery, Bill + + + + + Coynco Products + + + + + EstatePower mowers--mfd. by Jacobsen Manu-facturing Co. + + + + + Gem Industries, Inc.Grand Rapids, Michigan + + + + + Balzer Manufacturing Corp. + + + + + Reeves Trailer + + + + + MercurySee Mercury Marine + + + + + Boerne Trailer Mfg. or Inter-National Crane & Trailer, Inc. + + + + + Koehn Mfg., Inc. + + + + + TWINKLE; HEARSES + + + + + Bear Trailer Mfg., Inc.Lebanon, Missouri + + + + + Wilson Trailer Co., Inc.Grain, livestock trailers--Sioux City,Iowa + + + + + PEGASUS VANS & TRAILERS, INC SANDUSKY, OH + + + + + Darf Corp. + + + + + Bee Trailers, Inc. + + + + + Tri-Star Corp. + + + + + Custom Homes, Inc. + + + + + Marquez Mfg., Ltd.Sunnyside, Washington + + + + + Southeastern + + + + + Husqvarna + + + + + MI-JACK PRODUCTS; HAZEL CREST, IL + + + + + CARGO KING, LLC; WHITE PEGEON, MICHIGAN + + + + + Reynolds Mfg. Co. + + + + + U.S. Suzuki Motor Corp., Inc.Santa Fe Springs, CA + + + + + Trail-Or-Floats + + + + + Huntington Distributors + + + + + Wheel Horse Products, Inc.Subsidiary American Motors Corp., SouthBend, Indiana + + + + + Peninsula Camper Mfg. + + + + + Central Industries, Inc. + + + + + Spirit Eagle + + + + + DeGeest Mfg. Co.Sioux Falls, South Dakota + + + + + Bock Products, Inc.Elkhart, Indiana + + + + + Grycner + + + + + Cook Semi Trailer + + + + + Fargo + + + + + Taizhou Hisource Intl. Trade Co., Ltd. + + + + + FOREST RIVER, INC.; GOSHEN, INDIANA TRAILERS + + + + + Lea-Francis + + + + + York Forklift + + + + + LONE WOLFE + + + + + Double Horse Trailer + + + + + Veritas + + + + + Star Machine Shop Co. Ltd. + + + + + Nichols Mfg. Co., Inc. + + + + + McQuerry Tan Trailer + + + + + Califfo + + + + + De Rose Industries Inc.Indianapolis, Indiana + + + + + Sterline Flatbed Trailer + + + + + Broce Manufacturing Co. + + + + + Liquid & Bulk Tank Div.Div. of Fruehauf Corp.--Omaha, Nebraska + + + + + Longmark Mobile Homes + + + + + E-One + + + + + KARD CO, RENSSELAER, INDIANA + + + + + Evans Mfg. Co., Inc., JohnSumter, South Carolina + + + + + Matlock Trailer Corp.Nashville, Tennessee + + + + + Encore Motorcycle Co., USA + + + + + Kubota Tractor Corp.Compton, California + + + + + Trabant + + + + + Reliance Trailer Mfg.Div. Redwood Reliance Sales Co.,Cotati, California + + + + + Hiawatha + + + + + Diamond Mobile Home Mfg. + + + + + Majestic Rides Mfg., Inc.New Waterford, Ohio + + + + + VagabondDiv. Guerdon Industries + + + + + Walker + + + + + MIGHTY MOVER TRAILERS, INC; CALIFORNIA + + + + + Excalibur + + + + + Midwest Mobile Homes & Trailer Mfg. Co. + + + + + Lorain Div.Div. of Koehring Co. + + + + + Omaha Standard Flatbed Trailer + + + + + Wanamaker Trailer + + + + + Orange County Choppers + + + + + Prime Mover + + + + + Super Vacuuming Mfg. Co., Inc. + + + + + ChaparralSee Chaparral Industries, Inc. + + + + + HUSABERG MOTORCYCLES, SWEDEN + + + + + Emmco Trailer + + + + + De-Lar, Inc. + + + + + Economy-Wisconsin + + + + + Berkeley Pump Co. + + + + + Baron Homes, Inc. (old code CGC)Formerly C&G Corp., Elhart, Indiana + + + + + Mayflower Trailers or Homes + + + + + Rowse Hydraulic Rake Co. + + + + + Minneapolis-Moline (MOTEC), Inc. + + + + + X-L SPECIALIZED TRAILERS; OELWIN, IA.; SD,DDE,MFG,HDG,LSD TRAILERS + + + + + Cisitalia + + + + + Calkins Trailer + + + + + Transport Systems, Inc.Denton, Texas + + + + + Foremost Mobile Home Mfg. + + + + + W-W TrailersStock Trailers + + + + + Week-N-Der Pickup Camper + + + + + Thiermann Utility Equipment Div.Milwaukee, Wisconsin + + + + + AZTX or Az-Tex Trailers + + + + + Jerry James TrailersSikeston, MO; utility trailers + + + + + Marlette Homes, Inc.Marlette, Michigan (formerly MarletteCoach Co.) + + + + + Sprout, Waldron & Co., Inc. + + + + + Five Star Engineering, Inc. + + + + + FHL + + + + + BOYDSTUN METAL WORKS, INC.PORTLAND, OREGON + + + + + Royal Enfield + + + + + Atlas DivisionDiv. Lonergan Corporation + + + + + Vintage Homes + + + + + Alair Coach Corp. + + + + + Sun Trailer & UtilitiesMid-West City, Oklahoma + + + + + Ace Trailer of America + + + + + M & R Enterprises, Inc., or Honeysuckle Enterprises, Inc. + + + + + Heltzel Co. + + + + + Thor Power Tool Co. + + + + + Ripco, Inc. + + + + + My-Way Corp.Longwood, Florida + + + + + Hopkins Mfg. Corp. + + + + + Moskovitch + + + + + Glas + + + + + AAPEX TRAILERS, INC.; CHICAGO, IL + + + + + Mobile Scout Mfg. Corp.Arlington, Texas + + + + + Work Horse Mfg. + + + + + Otosan + + + + + Belarus Machinery, Inc. + + + + + Frontier Homes Corp. + + + + + Mean + + + + + Flote-Aire Corp. + + + + + E-TON DYNAMICS TECHNOLOGY INDUSTRY CO., LTD + + + + + Di Tella + + + + + D & E WELDING; LYONS, GA + + + + + Mal Tractor + + + + + Jialing Ind., Co., Ltd. Group + + + + + Johnson Motors + + + + + Durcholz Trailer + + + + + Ronco Coaches, Inc. + + + + + Ideal Industries + + + + + Tri-Way Trailer + + + + + Strahan Mfg. Co. + + + + + Haul-A-Fame, Inc. + + + + + Trac + + + + + Morris + + + + + Beaird-Poulan Div., Emerson ElectricCo. + + + + + Majestic Corp. + + + + + Eight Point + + + + + Green & Green Mfg. Co., Inc.Lancaster, Texas + + + + + Dual Evans Corp. + + + + + Zetor/Zetor North America + + + + + Elva + + + + + Allen Coachworks Inc.(Mexican Manufacturer) + + + + + Villiers + + + + + Lemoped (model of Motobecane) + + + + + Towncrier Camper + + + + + Bimota Motorcycles + + + + + Tebben Mfg. Co., Inc. + + + + + Werts Corp., Inc. + + + + + Auburn + + + + + R & I IndustriesCity of Industry, California + + + + + Andrews Payloader + + + + + Lori Engineering Corp. + + + + + Marlin Mfg. + + + + + United States Aluminum Co. + + + + + Recreatives, Inc.See Sabre + + + + + Fantic + + + + + Camp-A-While Homes Mfg. Co. + + + + + Suzulight Su + + + + + Garway Homes, Inc. + + + + + Hornet Industries, Inc. + + + + + Trailex, Inc.Canfield, Ohio + + + + + De Lorean (imported from Belfast,Northern Ireland, UK) + + + + + C.C. Kelley & Son + + + + + Twentieth Century Mfg. Co.or 20th Century Mfg. Co. + + + + + Mobile Mfg. Corp. + + + + + B & W Homes, Inc. + + + + + Ute Trailer + + + + + Innocenti + + + + + MILLER INDUSTRIES, INC., OOLTEWAH, TENNESSEE + + + + + Corona Coach Co. + + + + + Tear Drop, Inc. + + + + + BestrailMfd. by Lakeside Industries + + + + + Schwinn Motor Scooters + + + + + Huss Sales, Inc. + + + + + Pederson + + + + + United States Mobile Homes (Florida) + + + + + American Hoist & Derrick Co. + + + + + HYDRO TEK CORP.; REDLANDS, CA + + + + + Excellance, Inc. + + + + + Dakota Mfg. Co., Inc.Mitchell, South Dakota + + + + + Bridgestone + + + + + Wabco Construction & Mining EquipmentSubsidiary of American Standard, Inc.Group + + + + + ALUTREC INC. STE-AGATHE, QUEBEC CANADA + + + + + Imperial Industries + + + + + Thunderbolt Trailer + + + + + A-Z MANUFACTURING; MADERA, CA + + + + + American Road EquipmentOmaha, Nebraska + + + + + Henke Manufacturing Corp. + + + + + Acadian (GM of Canada) + + + + + SANDPIPER + + + + + Hesse Corp.Kansas City, Missouri + + + + + Travel Home, Inc. + + + + + Bianchi + + + + + Forrest City Machine Works, Inc. + + + + + Fife Trailer + + + + + Miller Equip. Div., Miller Equip. Co + + + + + Taka (Imported by Rockford) + + + + + John Pitzer Mfg. Co.Glenwood, Iowa + + + + + MASSON'S WELDING + + + + + Tropicana Mfg. Co. + + + + + Grizzly Mfg. Co., Inc. + + + + + H & B Trailer Co.Damascus, Arkansas + + + + + Fleming Mfg. Co., Inc.Long Lake, Minnesota + + + + + Camp-Mor, Inc. + + + + + Leyland TractorsBritish Leyland - Dist. by UniversalTractor-Equipment Corp. Richmond,Virginia + + + + + Forlyn Engineering Co. + + + + + Ceva Mfg. Co. + + + + + Stutz + + + + + Busse Brown Trailer + + + + + Kamp-A-While Industries + + + + + Blazon Mobile Homes Corp. + + + + + American Trailers, Inc.Div. Polar Mfg. Co. + + + + + Belmont Machine + + + + + Globe + + + + + Grace, W. E., Manufacturing Co. + + + + + Nuell Coach Corp. + + + + + Columbia Tractor Mower + + + + + Weber + + + + + RAZORBACK TRAILERS; PENNSYLVANIA + + + + + Jackel Motorsports or China Jialing Ind. Co., Ltd. + + + + + Ferguson Mfg. Co., Inc. + + + + + Ysob Co. + + + + + Hawthorne + + + + + Kevco Ind. + + + + + Siebert Trailers, Inc.Stockton, California + + + + + Glassic + + + + + Indian (Taiwan) + + + + + Beck Camping Trailer + + + + + Bob S Trailer + + + + + Lil'ZManufactured by Zieman Products + + + + + Crown Line + + + + + JB + + + + + Bird + + + + + Vanguard National Trailer Corp. + + + + + Sterling Industrial Corp. + + + + + Vermont Traveler + + + + + Tracker Corp.Boat trailers--Winchester, Tennessee + + + + + Bond Mobile Homes, Inc. + + + + + Arrow Trailers, Inc.Affiliated with Great Dane Trailers--Memphis, Tennessee + + + + + Peerless International Co., Inc. + + + + + Killer Chopper Cycle Fabrication, LLC + + + + + Pinto + + + + + Starcraft Corp. + + + + + Grimmer-Schmidt Corp.Franklin, Indiana + + + + + Baretta + + + + + Tybex Corp.Bangor, Pennsylvania & Belvidere, N.J. + + + + + CapellaMfd. by Midland Industries, Inc. + + + + + Sunliner Motor Home + + + + + ACCU-TEK,INC.; SHREWSBURY, MASSACHUSETTS + + + + + Tannehill Trailer + + + + + Toddy Custom Built TrailersMfrs. stock trailers--Bradford, Arizona + + + + + E Z HaulDiv. of Parkhurst Manufacturing Co. + + + + + Macoma Engineering, Inc. + + + + + Ira Jorgenson + + + + + Tacquito + + + + + J.H. Ross Co. + + + + + INDIANA TRAILER MANUFACTURING + + + + + Eidal International Corp. + + + + + Al-Mac Products, Inc. + + + + + Open Road Campers, Inc. + + + + + Marliss Industries, Inc. + + + + + Kruz, Inc. + + + + + KESLER MANUFACTURING, INC; LOYAL, WISCONSIN;TRAILERS + + + + + Hardee Mfg. Co.Affiliated with Harsco Corp., PlantCity, Florida + + + + + Sunline Coach Co. + + + + + Ho-Bo Trailers + + + + + Materials Handling Div., Eaton Corp. + + + + + Realco Trailer + + + + + Swinger + + + + + Van Bibber Enterprises + + + + + Addison HomesDiv. of Penthouse Industries, Inc.Addison, Alabama + + + + + Garson Flatbed Trailer + + + + + Little Dude Trailer Co.Affiliated with Texas Dude, Inc.(Formerly Texas Royal Mfg. Co.)Fort Worth, Te + + + + + Hilbilt Mfg. Co.Benton, Arkansas + + + + + Torrot + + + + + Rexhall + + + + + AERO MANUFACTURING, INC.; SYRACUSE, INDIANA + + + + + Barth corp. + + + + + Roketa Powersports + + + + + Tucker + + + + + Cross Lander + + + + + Pak-Mor Mfg. Co. + + + + + Mobile Chapel Trailer + + + + + TITAN MOTORCYCLE + + + + + Custom King Horse Trailer + + + + + Jim & Dave's Trailer Mfg. + + + + + Knight Mfg. Corp. + + + + + Jensen + + + + + Elgin-Leach Corp. + + + + + ODell Mfg. Co. + + + + + Vanson Boat Trailer + + + + + Style-Craft Mobile HomesMfd. by Wickes Homes + + + + + Trinity Products + + + + + Lawn Chief + + + + + Surveyor Motor Home + + + + + Windsor Mobile Homes (old code WIND) + + + + + Premier + + + + + Specialized Vehicles Corp. + + + + + Topline Trailers ManufacturingFort Worth, TX + + + + + Corder Mfg. Co., Inc. + + + + + Katolight Corp. + + + + + Amen + + + + + Utility Trailer Mfg. Co.City of Industry, California + + + + + Masterbilt Trailers, Inc. + + + + + Wesco Truck & Trailer SalesWoodland, California + + + + + TRIPLE "J" CUSTOM TRAILERS, GANSEVOORT, NY + + + + + Cochran Western Corp.Subsidiary of Western Gear Corp. + + + + + Testi + + + + + Cross Truck Equipment Co., Inc.Canton, Ohio + + + + + Festival Homes of Ohio, Inc.Greenwich, Ohio + + + + + Sooner Mfg. + + + + + Starcraft Corporation + + + + + Broadlane Homes, Inc. of Indiana + + + + + NVT America (moped) + + + + + Smith-Roles Ltd. + + + + + Ponderosa Homes, Inc. + + + + + KBH CORPORATION; CLARKSDALE, MS + + + + + Nerco Trailer + + + + + Cuyler Corp. + + + + + Warszawa + + + + + PRESTON AMUSEMENTS, INC.; ALVARADO, TX + + + + + General Coach Works of CanadaDiv. of Divco-Wayne Industries + + + + + Green Boat Trailer + + + + + Loprofile Boat Trailer + + + + + A-T-O Construction Equipment Div.,A-T-O, Inc. + + + + + HAULRITE, INC.; MT. JULIET, TENNESSEE **(NOT HAULRITE OF MISSOURI VMA/BMMF)** + + + + + TROY-BILT FARM & GARDEN EQUIPMENT + + + + + Master Craft Industrial Equip. Corp. + + + + + Bankhead Enterprises, Inc.Atlanta, Georgia + + + + + Hi-Lo Travel Trailer + + + + + Puckett Brothers Mfd. Div. Co. Inc.Lithonia, Georgia + + + + + American Tractor Equipment Corp. + + + + + Lieber Industries, Inc. + + + + + Muller Machinery Co.Metuchen, New Jersey + + + + + Watson Industries + + + + + Union Machine & Tool Works + + + + + Troyler Corp. + + + + + Sun + + + + + Excel Motor Home Truck + + + + + Murray TrailersCaldwell, Idaho + + + + + Escort Trailer Corp.Seattle, Washington + + + + + Harrington Mfg. Co., Inc.Mfr. of Roanoke-Hustler, Lewiston, NorthCarolina + + + + + Scully Coach Co., Inc. + + + + + SPRINTER MOTORCYCLE + + + + + Dutton-Lainson Co., Mfg. Div.Mfrs. of boat trailers, + + + + + Construction Machinery Co. + + + + + ApacheMfd. by Lindig Mfg. Corp. + + + + + Manning, Richard + + + + + Hanson Machinery Co. + + + + + Bomford & Evershed, Ltd. (England) + + + + + Gran Spree Mini Camper + + + + + VANGUARD INDUSTRIES OF MICHIGAN, INC.; COLON, MI + + + + + Southern Energy Homes, Inc.Addison, Alabama + + + + + ScaniaOrange, Connecticut (Saab-Scania ofAmerica, Inc.) + + + + + Frisky + + + + + Blizzard Mfg., Inc. + + + + + Elkhart Mfg. Co. + + + + + Maxi Products Co., Inc. + + + + + Trombly Woodworking Co. + + + + + EE-ZY Trailer Co. + + + + + Fayette Trailer + + + + + A-OK Trailers + + + + + Country Squire Travel Trailer + + + + + Tee Nee Trailer Co.Youngstown, Ohio + + + + + Elk River Corp. + + + + + TWN + + + + + Haflinger + + + + + Axle & Equipment Sales Co.Naperville, Indiana + + + + + Travelo Homes Co.Div. Saginaw Products + + + + + Buhl Machine Works + + + + + Burro, Inc.Plymouth, Minnesota + + + + + Ridgecraft Corp.Breckenridge, Texas + + + + + Marshall + + + + + Road Rescue + + + + + Palliser (racing car) + + + + + Omega (Italian) + + + + + American Road Trailer Camper + + + + + Allied ProductsDiv. Lonergan Corporation + + + + + Allied Tank + + + + + MCCLOSKEY BROTHERS MANUFACTURING; CANADA LIT.ONTARIO + + + + + Boatel Ski + + + + + Special (Go-cart, Golf Cart, seeOperating Manual, Part 1,Section 2) + + + + + Santo + + + + + Rome Industries, Inc. + + + + + Hartman + + + + + Transcraft Corp.Anna, Illinois + + + + + Mobile Home Service + + + + + Top Campers + + + + + Ingerson Mfg. Co. + + + + + Kane TrailersGreeley, Colorado + + + + + Gorbett BrothersFort Worth, Texas + + + + + Spartan ProductsWest St. Paul, Minnesota + + + + + Wallstrom Boat Trailer + + + + + Rite-On TrailersDiv. of Windward Marketing + + + + + Tramco, Inc.Mfrs. liquid propane gas transport--Dallas, Texas + + + + + Duel + + + + + Cushman + + + + + Cruisemaster Motor HomeMfd. by Georgie Boy Mfg., Inc.Edwardsburg, Michigan + + + + + X-Tra Camper Co. + + + + + M-R-S Manufacturing Co. + + + + + Eaton Corp.Cleveland, Ohio + + + + + Orlando Boar Co. + + + + + Fireball Trailer Mfg. + + + + + Panda Motor Home + + + + + Kompak Camping Trailer + + + + + Sigame Corp.Gardena, California + + + + + Rear's Mfg. Co. + + + + + St. Clair Custom Built + + + + + Embassy Mobile HomesDiv. of Guerdon Industries + + + + + Dude Trailer + + + + + Edwins + + + + + Bobko, IncMichigan City, Indiana + + + + + DMI, Inc.Goodfield, Illinois + + + + + GIGI Industries, Inc.Motor homes + + + + + Delta Truck Trailer Co., Inc.Camden, Arkansas + + + + + Bear Cat Mfg., Inc.Wickenburg, Arizona + + + + + Tour-A-Lodge + + + + + PANDA MOTOR SPORTS NORTH AMERICA, INC. + + + + + Capitol + + + + + Landola Homes, Inc. + + + + + Consolidated Mobile Industries + + + + + I. K. A. + + + + + QUIK MANUFACTURING, CO; FOUNTAIN VALLEY, CA + + + + + The Tye Co., Inc. + + + + + Allisons Fiberglass mfg.,Inc. + + + + + Merritt Equipment Co.Portland, Oregon + + + + + Fotografix Boat Trailers + + + + + L. B. Smith, Inc.Manufacturer of Smithco. Trailers + + + + + Peace + + + + + Blair Horse Trailer + + + + + OMC JohnsonBoat trailers--Waukegan, Illinois + + + + + Husky Farm Equipment Ltd.Ontario, Canada + + + + + Dille & McGuire Mfg. Co.Richmond, Indiana + + + + + Freeway Travelers, Inc. + + + + + Locomobile + + + + + Wig-A-Wam, Inc. + + + + + Beardmore + + + + + Funtime Camper Trailer + + + + + Veglia + + + + + Clipper Mfg. Co. + + + + + Guest Industries, Inc. + + + + + Gelt Trailers + + + + + Crest Trailer + + + + + SOUTHWEST EXPRESSLINE, WHITE PIGEON,MICHIGAN + + + + + Porta-Built Industries + + + + + Indiana Phoenix + + + + + Loftness Mfg. Co. + + + + + Portable Structures + + + + + Outdoor Equipment + + + + + Servicycle + + + + + NU-CENTURY; MADERA, CA + + + + + Air BuoyBoat trailers--mfd. by Firestone Tire &bber Products + + + + + Planet Plows, Inc. + + + + + Casal + + + + + Forney Horse Trailer + + + + + Yadro TrailersMilwaukee, Wisconsin + + + + + Burkeen Equipment & Supply Co.Memphis, Tennessee + + + + + Americana Mobile Homes, Inc. + + + + + Alfa Romeo + + + + + Travel Cruiser + + + + + Koster Mfg., Inc. + + + + + Vivian Industrial PlasticsVivian, Louisiana + + + + + West Texas Dollies + + + + + United Rock Picker Co. + + + + + American Economobile Hilif + + + + + Franklin + + + + + Extend-Ell Industries + + + + + McCarthy Trailers + + + + + Vesely Co. + + + + + HODGES CUSTOM HAULERS; BENTON, KY + + + + + Guthrie Trailer Sales, Inc.Great Bend, Kansas + + + + + WHISPERING PINE CAMPER TRAILER + + + + + Massey + + + + + Revella Camping Trailer + + + + + Morris Brothers + + + + + Overland + + + + + Avant + + + + + Wilson + + + + + PiedmontDiv. of Concord Mobile Homes + + + + + Continental World MarineMexico; trailers + + + + + B M C + + + + + Armor Homes of Virginia + + + + + Silver Pigeon + + + + + Flying Dutchman + + + + + Jeep (for model years 1989 throughresent) + + + + + Leisure Vehicles, Inc.Troy, MI + + + + + Mowett Sales Co., Inc. + + + + + New CastleMfd. by Town & Country Mfg. Co. + + + + + Go-Tag-Along + + + + + Bay City Shovels, Inc. + + + + + Cubster + + + + + Pastime Mfg. Co. + + + + + Gilmore-Tatge Mfg. Co., Inc. + + + + + Better Built + + + + + DOLPHIN MOTORHOMES + + + + + Crosley + + + + + John R. Kovar Mfg. Co., Inc. + + + + + Interconsult Mfg. Co. + + + + + Whites/Keene Mfg. + + + + + Evens Trailer Mfg., Inc. + + + + + Go Kart + + + + + J.T. Ind., Ltd.Lenox, Iowa + + + + + Herbst Brothers + + + + + KARAVAN TRAILERS, INC. + + + + + Little Sport Enterprises + + + + + Garlock Equipment Co. + + + + + Country R. V. Mfg., Inc.Elkhart, Indiana + + + + + Solectria + + + + + Mays Industries, Inc.Boaz, Alabama + + + + + Tuff Cat Trailers, Inc.Tekonsha, Michigan + + + + + Mississippi Tank Co., Inc.Hattiesburg, Mississippi + + + + + Brall Motor Home + + + + + Long Mfg. N.C., Inc., Const. & Ind. Div.Tarboro, North Carolina + + + + + Tiara Industries + + + + + Central Trailer Corp. + + + + + Regent Homes Corp. + + + + + World Wide Industries + + + + + BirchwoodMfd. by Conchemco Homes Group + + + + + Lear Siegler, Inc., Hutchinson Div. + + + + + Western Products Div., DouglasDynamics, Inc. + + + + + Weirs Trailer Sales + + + + + Hinson Mfg. Co., Inc. + + + + + KometicSee Moto Kometik + + + + + Vanguard (Canada) + + + + + Dupage Coach Co. + + + + + EK-CHOR MOTORCYCLE COMPANY; SHANGHAI, CHINA + + + + + Hobart Brothers Co.Troy, Ohio + + + + + Smeal + + + + + Deere, JohnDeere & Co. + + + + + House of Harmony, Inc. + + + + + Melmar Motor Home + + + + + Eaglerock Trailers, Inc. + + + + + Free-Way II, (Mfd. by H-MVehicles, Inc.) + + + + + MAHINDRA; TOMBALL,TX;MAKER OF VARIOUS SIZES TRACTORS & OTHER FARM/GARDEN EQUIPMENT + + + + + Schien Body & Equipment Co.Carlinville, Illinois + + + + + Metal Craft ManufacturingGreenville, North Carolina + + + + + Util-I-VanMfd. by Utilimaster Div. HolidayRambler Corp. + + + + + Aly Travel TrailersDiv. Layton Homes Corp. + + + + + Simson + + + + + Bender-Florin + + + + + Vehiculos Automares Mexacano S. A.De C. V. (Mexican manufacturer) + + + + + Almac Industries, Ltd.Ville D'Anjou, Quebec + + + + + International Truck & Engine Corp. + + + + + Chickasha Mobile Homes + + + + + Tyson Skylark Trailer + + + + + Denzin & Rahn Mfg. Co., Inc. + + + + + SANDS WELDING INC; ALBANY,MN + + + + + M & W Mfg. Co. + + + + + Loudo Enterprises, LLC + + + + + Available + + + + + Geer Co. + + + + + Mitsubishi FUSO Truck of America, IncFor vehicles with gross vehicle weight(GVW) of over 7,000 pound + + + + + West Coaster Mailster3 wheels + + + + + Schenkel Brothers Mfg. Co. + + + + + SANTEE INDUSTRIES SYLMAR, CA + + + + + Countryside Industries, Inc. + + + + + Cabana Motor Home + + + + + Liftmaster, Inc. + + + + + New Yorker Homes Corp. + + + + + Peter Pirsch & Sons Co.Kenosha, Wisconsin + + + + + Dalewood Manufacturing Co., Inc.Lauderdale, Mississippi + + + + + H. D. Hudson Manufacturing Co. + + + + + Tankraft Trailer + + + + + Flexible + + + + + Tchaika + + + + + Electric Vehicles of Texas + + + + + Optima Ind., LLC + + + + + BrutanzaSee Brutanza Engineering, Inc. + + + + + Esco Corp. + + + + + Fulton Boat Trailer + + + + + Master Div., Koehring Co. + + + + + Mod Cycles Corp. + + + + + FIRST LINE REFINISHING; CORINTH, NY + + + + + KIA Motors Corporation + + + + + Five-Star ST, LTD Edition. or C2(mfd. by Juili Entp. Co., Ltd.,imported by General Moped Co. Inc) + + + + + Art Roll Mfg. Co., Inc.New name is Trail-R-Craft, Inc. + + + + + Mai Mfg. Co. + + + + + Evergreen Log Trailer + + + + + Mobile Traveler + + + + + Braun Ind., Inc. + + + + + Pfaudler Co. + + + + + Continental Wheel & Trailer + + + + + Hawkeye Camping Trailer + + + + + Glendale Mobile Homes + + + + + Rockport Trailer Mfg. Corp. + + + + + Southeast Mfg. Co., Inc. + + + + + Cable Crane and Excavator Div.FMC Corp. + + + + + Vacationeer Trail trailer + + + + + Glen & Cecil Mobile Home Manufacturing& Sales + + + + + Trail Star Tent Trailer + + + + + Calumet Co., Inc. + + + + + TrailevatorDiv. Magline, Inc. + + + + + Oshkosh Trailer DivisionBradenton, FL; manufactures trailers + + + + + KUTZ FARM EQUIPMENT; PINE GROVE, PA + + + + + LaSalle + + + + + Carma Mfg. Co. + + + + + Wilderness Travel Trailer + + + + + JINDO CORPORATION; SEOUL,SOUTH KOREA + + + + + Lada (imported from USSR) + + + + + Balko, Inc. + + + + + Humbee Surrey + + + + + Le Roi Div.Dresser Ind., Inc., Sidney, Ohio + + + + + Matchless + + + + + Padgett, Inc. + + + + + KRISTI TRAILER INDUSTRIES, INC; CANASTOTA, NY + + + + + Nimrod Tent Trailer + + + + + Continental Mfg. Co., Inc. + + + + + Skyhomes, Inc.Div. Skyline Homes + + + + + McCord Manufacturing Co. + + + + + Deep South Sales Co.Valdosta, Georgia + + + + + Dauphin + + + + + AhoyMfd. by Anchor Homes, Inc. + + + + + Whiteman Mfg. Co. + + + + + Road Motor Home + + + + + Pitman Div., A. B. Chance Co. + + + + + Kaydel, Inc. + + + + + Gilmore Trailer, Inc.Seneca, Pennsylvania + + + + + Divco + + + + + Anderson Mobile Homes Mfg. Co. + + + + + Versatile Power Corp.Grantsburg, Wisconsin + + + + + The Thackery Co., Inc. + + + + + Terra Cruiser Div.Div, of Divco-Wayne Industries + + + + + Easyown Mfg. Co. + + + + + TRAILTECH; GRAVELBOURG,SASKATCHEWAN CANADA + + + + + Continental Cargo + + + + + Hillcrest Homes, Inc.Div. Skyline Homes + + + + + Fleetwing Mobile Homes + + + + + Rolling Thunder + + + + + Totem Total Trailer + + + + + Star TrailMfd. by Stark Bros. Motor Sales + + + + + Trail Hawk + + + + + Road Ranger Camper Trailer + + + + + E. L. Caldwell & Sons, Inc. + + + + + Paccar IncorporatedBellvue, WA + + + + + Bel-Aire Mobile Homes + + + + + Wisconsin Trailer Co., Inc.Richfield, Wisconsin + + + + + Great Divide Coach Mfg. + + + + + Nasan Trailer + + + + + Circle D Trailer + + + + + Prestige Custom TrailersChristopher,I1 + + + + + Olgen Mfg. Co. + + + + + Black Built + + + + + Michalke Mfg. Corp. + + + + + Proper Chopper Motorcycles + + + + + Howse Implement Co., Inc. + + + + + Charlevoix Mobile HomesMfd. by Dickinson Homes, Inc. + + + + + Cycle Kamp, Inc.Anaheim, California + + + + + Ingram Manufacturing Co. + + + + + Aloutte + + + + + Blaw-Knox Construction Equipment Co.Div. of White Consolidated Industries,Inc. Matoon, Illinois + + + + + Brasinca + + + + + Crane & Hoist OperationsSubsidiary of Dresser Industries, Inc. + + + + + EZZ PullMfd. by Glass-Wood Products, Inc. + + + + + C. S. Johnson Co. + + + + + Krause Plow Corp., Inc. + + + + + Dodd Mfg. Co., Inc. + + + + + Baldwin Enterprises + + + + + Gray-Velle Mobile HomesDiv. of Stahan Manufacturing Co. + + + + + United States Mobile Homes + + + + + Mobile Tops, Inc. + + + + + Sullair Corp.Michigan City, Indiana + + + + + Jarco, Inc.Newport Beach, California + + + + + CONSTRUCTION TRAILER SPECIALISTS, INC.; SIKESTON, MO + + + + + All-State Trailer Co. + + + + + Anthony Co. + + + + + Motoc Semi Flatbed Trailer + + + + + MANAC, Inc. + + + + + Buddy Mobile Homes, Inc.Div. Skyline Homes + + + + + Montone Mfg. Co.Hazelton, Pennsylvania + + + + + Campsite Mfg. Co.Seminole, Texas + + + + + Hart Mobile Homes Corp. + + + + + Transvair + + + + + Rucker Performance Motorcycle Co. + + + + + I.B. Perch Co. + + + + + LONGHORN TANK & TRAILER, INC; GRAVETTE, ARKANSAS + + + + + DANZER INDUSTRIES & DANZER/MORRISON; HAGERSTOWN, MD + + + + + DAF + + + + + Gilera + + + + + Artex Fabricators, Ltd. + + + + + Armor Mobile Systems, Inc. + + + + + IRON HORSE TRAILER MANUFACTURING; TEXAS + + + + + Armet Armored Vehicles + + + + + Four Winns + + + + + Watford + + + + + Phill Trailer + + + + + Magnum ManufacturingHarrisburg, OR; recreational vehicles + + + + + Chesapeake Mobile Homes + + + + + Thru-Air Trailers, LLC + + + + + Hill Mfg. Co. + + + + + Westcraft Mobile Homes + + + + + Electric Cycle + + + + + THE ALUMINUM TRAILER COMPANY; NAPPANEE, INDIANA + + + + + Avion Coach Corp. + + + + + Heritage Mobile Homes + + + + + Zwickau + + + + + TUFF/LUGG MANUFACTURING + + + + + Sleep Easy Trailer + + + + + Selburn Flatbed Trailer + + + + + Tyran + + + + + Vaquero Trailer + + + + + Northwest Engineering Co. + + + + + Fiat + + + + + Playboy + + + + + Schwartz Mfg. Co. + + + + + Skoda + + + + + Apacheon Coach Co. + + + + + Cane River Trailer Co., Inc.Natchitoches, Louisiana + + + + + Greencastle Coach Co. + + + + + Matra + + + + + COMPTANK, CORP.; BOTHWELL, ONTARIO, CANADA + + + + + Rochdale + + + + + Franklin Homes, Inc.Russellville, Alabama + + + + + Deutz Tractor + + + + + Garwood + + + + + Shaver Mfg. Co. + + + + + Niagara Trailer Co. + + + + + Coos-Bilt Trailers + + + + + Aspen Camper, Inc. + + + + + Lektracycle + + + + + CARTER BROTHERS + + + + + Arrow + + + + + Glenbrook Homes Of Tennesee + + + + + Massey-Ferguson, Inc. + + + + + Hamlite + + + + + Leisuretime Motor Home + + + + + Van Car Corp. + + + + + BRI-MAR MANUFACTURING; CHAMBERSBURG, PA + + + + + Transfer + + + + + Western Star + + + + + Relco Corp.Mfd. in North Billerica, Massachusetts + + + + + Hole Pumps + + + + + Pullers Pride, Inc., or Murphy's Welding + + + + + Vacation Wagon, Inc. + + + + + TRIPLR R TRAILERS INC. BOONEVILLE,MISSISSIPPI + + + + + Claster Trailer + + + + + Myco Industries + + + + + Capri (imported by Mercury priorto 1979) + + + + + Johnson Mfg. Co., Inc. + + + + + Mays Enterprises, Inc.Albertville, Alabama + + + + + Artie + + + + + Electric Wheel Co. + + + + + Peco, Inc. + + + + + General Amer Aero Coach + + + + + Itom + + + + + Tex Mex Trailers + + + + + Barrett Trailers, Inc.Oklahoma City, Oklahoma--(See Circle BLivestock Trailer) + + + + + Colonnade Mobile HomesMfd. by Fairmont Homes, Inc. + + + + + NORTHERN BAY CO. INC. ; PENOBSCOT, ME + + + + + Maxey Mfg., Inc. + + + + + Gypsy Campers, Inc. + + + + + Eagle (also see make American Eagle) + + + + + Delphi Body Works, Inc. + + + + + Nevadan Mfg. Co. + + + + + Tri-Sport/Steen (formerly Alsport/Steen) + + + + + Veenema & Wiegers, Inc.Mfrs. "V & W" trailers--No. Haledon,New Jersey + + + + + Poirier + + + + + Farenwald Boat Trailer + + + + + Soderstrom Machine ShopCanton, South Dakota + + + + + Facel-Vega + + + + + BOSS HOSS CYCLE, INC. ; DYERSBURG, TN + + + + + Kinetic + + + + + DUTCH PARK HOMES, INC.; GOSHEN, IN + + + + + Laverda + + + + + ABF, INDUSTRIES; NEBRASKA + + + + + Concrete Surfacing Machinery Div.,Stewart Industries, Inc. + + + + + Hed-Way, Inc. + + + + + SFM + + + + + Durant + + + + + Atlas Copco, Inc.Wayne, New Jersey + + + + + Futurama + + + + + Grove + + + + + Manitowc Engineering Co., Inc. + + + + + Riley + + + + + Empire Generator Corp. + + + + + Tahoe Motor Home + + + + + Metoo Travel Trailer + + + + + KIBBI, INC.; ELKHART, INDIANA + + + + + Cycle-SleeperMfd. by Howard Mfg. Co. + + + + + Triumph + + + + + reconstructed trailers + + + + + Walker Mobile Homes + + + + + Lloyd's Trailer Finishing + + + + + Sweetheart Motor Home + + + + + Adspa Mobile HomeMfd. by Ad Space, Inc., Pomona, CA + + + + + Tecnoma, Ltd., (Canada) + + + + + HRI (Heartland Rig) + + + + + Champ Horse Trailer + + + + + Norwin Trailer + + + + + TOP-3 TRAILERS; TEXAS + + + + + Dixie Craft Trailers, Inc.Eupora, Mississippi + + + + + TRAILERS DE MONTERREY, S.A. NUEVO LEON, MEXICO + + + + + PRO LITE TRAILERS; PECULIAR, MISSOURI + + + + + ABI Leisure Inc.Ontario, Canada + + + + + MantaSee Three R Industries, Inc. + + + + + Woodland Park, Inc.Middleberry, Iowa + + + + + Arcos Boat Trailer + + + + + Baja Custom Trailers + + + + + Kools Brothers, Inc. + + + + + Timpte, Inc.Denver, Colorado + + + + + Oshkosh Motor Truck Co. + + + + + Gramm + + + + + Lincraft Industries + + + + + Allied + + + + + Searover TC Camper + + + + + PEAK MANUFACTURING, INC. NORTH BATLEFORD, SK CANADA + + + + + Ozark Trailer & Mobile Homes + + + + + Mountaineer Mfg. Co. + + + + + Chief Ocala Trailer Mfg. + + + + + Trader Horn Trailer Supply + + + + + Western Trailer Coach + + + + + Toyopet + + + + + BLOOMERTRAILER MANUFACTURING, INC.; LAMARQUE, TX + + + + + A.A.B. Co., Inc. + + + + + Swiss Colony Travelers, Inc.Div. Herrli Industries + + + + + SETRA OF NORTH AMERICA + + + + + Kingham + + + + + Steco Trailer Co. + + + + + Tandom Boat Trailer + + + + + Monarc + + + + + Borg Co. + + + + + Kreidler + + + + + COASTAL METAL FAB, INC.; TOPSHAM, ME + + + + + Aladdin Trailer Co. + + + + + General Coach of FloridaDiv. of Divco-Wayne Industries + + + + + Humber + + + + + All Terrain Vehicle (for furtherexplanation--see OperatingManual, Part 1, Section 2.) + + + + + Lacey, W.E. & Sons + + + + + Winger Mfg. Co. + + + + + DMB Trailers + + + + + Ambassador + + + + + Vista Custom TrailerJane, Missouri + + + + + Datsun + + + + + North American Bus Ind. + + + + + Cushman + + + + + Certified Boat Trailer + + + + + Spokane Travel Homes + + + + + Miniscooter + + + + + Go-Lite, Inc. + + + + + S & H Trailer Mfg. Co., Inc.Madill, Oklahoma + + + + + Eagle Custom Coach Mfg. Co. + + + + + Friess Trailer + + + + + Auburn Homes + + + + + Infiniti + + + + + U.S. ARMY VEHICLE; MAKE IS UNKNOWN + + + + + DELKRON TRANSMISSION + + + + + Whippet + + + + + A-1 Trailer + + + + + Mr. Ed. Boat Trailer + + + + + Econo Flo Bulk Service + + + + + Timberline Mfg. Co. + + + + + Nolena Foster Trailer + + + + + Hunt's Trailer Mfg. + + + + + Norton (England) + + + + + BEACON METAL WORKS + + + + + Hughes + + + + + DNEPR/Kiev Motorzykly Zavod + + + + + Noble Cultivators Ltd. + + + + + L-Cart, Inc. + + + + + Trailmobile + + + + + Day's DrydockNorth Webster, IN; trailers. + + + + + EML + + + + + Guerdon Industries + + + + + KISSEL MOTOR CAR COMPANY OR KISSEL INDUSTRIES + + + + + Campbell Coach Co., Inc.Mfrs. horse trailes--Cheney, Kansas + + + + + KASEA MOTORCYCLES + + + + + McKay Mfg. Co., Inc. + + + + + Dodge Woodcraft + + + + + Trail Flight + + + + + Simon Utility Trailer + + + + + Dynastar/Dynastar Motorsports, Inc. + + + + + Consulier + + + + + SPORT HAULER BY SPORT CHASSIS AT FREIGHTRLINER IN TULSA, OK___MAKER OF SPORT HAULER TRUCK & TRAILER + + + + + De Muth Steel Products Co. + + + + + EVERLITE, INC.; LONGVIEW, TX - FLEETRITE & OTHER MODEL OR SERIES + + + + + Miller Electric Mfg. Co.Manufactures arc welders + + + + + Kawasaki (Japan) + + + + + Terra-Marina Mfg. Co. + + + + + Odom Boyd Trailer Mfg. Co.Conroe, Texas + + + + + H & H TRAILER CO. + + + + + Kasey + + + + + Fahrzeugwerke GMBHKarls Kaessbohrer, Germany + + + + + Fields Mfg. Co. + + + + + Little Giant Products, Inc.Peoria, Illinois + + + + + Kustom Kraft + + + + + J.J.J., Inc. + + + + + Landcraft Corp. + + + + + Ranger Trail TrailersMfd. by Wood Mfg. Co., Inc. + + + + + Sylvan Double Snowmobile Trailer + + + + + Sun Valley + + + + + Alvis + + + + + Mud Cat Div., National Car RentalSystem, Inc. + + + + + CURRAHEE TRAILERS + + + + + WAYNE METAL PRODUCTS;MARKLE,INDIANA + + + + + Fuqua Homes, Inc.Div. Fuqua Industries--Arlington, Texas + + + + + Rupp + + + + + LEINARD ALUMINUM BUILDINGS, UTILITY TRAILERS; MT. AIRY, NC + + + + + Easy Trail, IncBoat Trailers - Madison, Alabama + + + + + Walsh Body & Trailer + + + + + Jewel Trailer, Inc. + + + + + KYMCO SCOOTERS & MOTORCYCLES + + + + + Virginia Mobile Homes Industries + + + + + PINE-HILL MANUFACTURING, CO.; GAP, PENNSYLVANIA + + + + + Holt Trailer + + + + + CWC Feather-Lite Mfg. Co.El Reno, Oklahoma + + + + + F. A. Long + + + + + East Dump Trailer + + + + + Dethmers Manufacturing CompanyBoyden, IA + + + + + Divco-Wayne Industries + + + + + Sno-CatMfd. by Tucker-Sno-Cat Corp. + + + + + Unpublished construction equipment mfr.(See Operating Manual, Part 1,Section 2) + + + + + McCook Mfg. Co. + + + + + Gabbianno + + + + + Dargo Mfg. + + + + + FLOE INTERNATIONAL + + + + + CIMC HEAVY INDUSTRIES, LTD.; SHENZHEN, CHINA + + + + + Heckendorn Mfg. Co.Cedar Point, Kansas + + + + + E.Z.A. Mfg. Co. + + + + + Doo Snowmobile Trailer + + + + + Auto-Mate + + + + + Palmer Machine Works, Inc.Armory, Mississippi + + + + + Superior Motor Home + + + + + Standard Steel + + + + + Alexandria Mobile HomeMfd. by Marietta Homes + + + + + Towmotor Corp.Subsidiary Caterpillar Tractor Co. + + + + + Agri-Supply Co. + + + + + London Motors + + + + + Neval Motorcycles Ltd. + + + + + Broward Trailer + + + + + Guazzoni + + + + + Ventoura Corp. + + + + + EZ Dumper + + + + + Hilton Mobile Homes, Inc. + + + + + Lowe IndustriesLebanon, Missouri + + + + + Blaze Industries + + + + + Willmar ManufacturingWillmar, Minnesota + + + + + McCoy Miller + + + + + Classic (model of Motron) + + + + + Mobile Garage Mfg. Co. + + + + + Three-Way Campers Mfg. + + + + + N & Ha Mfg. Co. + + + + + Bear Industrial Trailers + + + + + Beeat Truck Mount Camper + + + + + Pagsta + + + + + Gilson Brothers Company + + + + + Baltz Industries, Inc.Pocahontas, Arizona + + + + + Star Electric Cars + + + + + Amphicat + + + + + Cleveland T-Trike Mfg., Inc. + + + + + Dunham Mfg. Co., Inc.Minden, Louisiana + + + + + Palamino Camping Trailer + + + + + Universal Trailers, Inc. + + + + + Homemade Trailer code (See OperatingManual, Part 1, Section 2.)page 1-33) + + + + + Mayfair Mobile HomeDiv. of DeRose Ind., Inc.,Indianapolis, Indiana + + + + + Sperry New HollandDiv. Sperry Corp., New Holland,Pennsylvania + + + + + GENERAL SHELTERS; CENTER, TX CARGO TRAILERS ETC. + + + + + Kitty Cat (Kit Kat) + + + + + Flying L Trailer, Inc.Falls City, Nebraska + + + + + + + + + + + + + + + + (DKW) F102, DKW + + + + + (ALFA) Milano, Alfa Romeo; (MAZD) Millenia, Mazda + + + + + (DETO) Pantera, DeTomaso + + + + + (FORD) Granada, Ford (see English, French, German, and Italian Ford); (PONT) Grand Prix, Pontiac; (STU) Grand Turismo, Studebaker + + + + + L200 + + + + + (BMW) 545i, BMW + + + + + (INFI) I30, Infiniti + + + + + (VOLV) 765 Series, Volvo + + + + + (OLDS) Delmont 88, Oldsmobile + + + + + (OPEL) Kapitan, Opel (imported by Buick) + + + + + (BMW) X3, BMW + + + + + (CHEV) C10, Chevrolet + + + + + (FORD) Ranch Wagon, Ford (see English, French, German, and Italian Ford); (METE) Ranch Wagon, Meteor (Canadian Mercury) + + + + + (AERO) Hot Air Balloon + + + + + (ACUR) SLX (sport utility), Acura + + + + + (RENA) Gordini, Renault + + + + + (PACK) Request, Packard + + + + + (VAUX) Viva, Vauxhall + + + + + (SAA) 95, Saab + + + + + (MERK) XR4Ti, Merkur + + + + + (MAZD) Cosmo, Mazda + + + + + (HYUN) Elantra, Hyundai + + + + + (AMER) Eagle, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (ROV) Land Rover, Rover + + + + + (ASTO) DB7 (Coupe), Volante (DB7), Aston Martin + + + + + (SIM) GLS, Simca + + + + + (HYUN) Excel, Hyundai; (FORD) Excursion, Ford (see English, French, German, and Italian Ford) + + + + + Construction Equipment + + + + + (FORD) Customline, Ford (see English, French, German, and Italian Ford); (TOYT) Celica, Toyota + + + + + (SUZI) X-90 (sport utility), Suzuki + + + + + (AUHE) Saxon, Austin-Healy + + + + + (VOLK) 411/412, Volkswagen + + + + + (GMC) Sierra, General Motors Corp. + + + + + (BMW) Bavaria, BMW + + + + + (HOND) Prelude, Honda; (EGIL) Premier, Eagle; (LINC) Premiere, Lincoln-Continental; (MITS) Precis, Mitsubishi; (STU) President, Studebaker; (TOYT) Pre Runner, Toyota + + + + + (BUIC) Reatta, Buick + + + + + (OPEL) Rallye, Opel (imported by Buick) + + + + + (FIAT) Rimto, Fiat + + + + + RDX + + + + + (VOLK) Variant, Volkswagen + + + + + (BUIC) Apollo, Buick + + + + + (FORD) Fairlane, Ford (see English, French, German, and Italian Ford) + + + + + (MERC) LN7, Mercury + + + + + (FORD) Club Wagon E350, Ford (see English, French, German, and Italian Ford) + + + + + (MAZD) B2600, Mazda + + + + + (AUDI) Quattro, Audi + + + + + (AMER) Gremlin, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (STRN) Ion, Saturn + + + + + (CHEV) Monte Carlo, Chevrolet + + + + + (VOLV) S80, Volvo + + + + + (GMC) Jimmy, General Motors Corp. + + + + + (HYUN) Atos, Hyundai + + + + + (DATS) 710, Datsun + + + + + (AMER) Encore, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (BUIC) Enclave, Buick + + + + + (DATS) 510, Datsun + + + + + (BMW) 328i, BMW + + + + + (PASS) Optima, Passport; (KIA) Optima, Kia; (CHEV) Optra, Chevrolet + + + + + (BMW) Z8, BMW + + + + + (CHEV) Blazer, Chevrolet + + + + + (TOYT) SR5, Toyota + + + + + (SAA) 900, Saab + + + + + (ISU) Trooper, Isuzu + + + + + (ROL) Phantom, Rolls-Royce + + + + + (VOLK) R32, Volkswagen + + + + + (RENA) 18i, Renault + + + + + (ISU) Impulse, Isuzu; (CHEV) Impala, Chevrolet; (HILL) IMP, Hillman; (ROOT) Imp, Rootes; (SUBA) Impreza, Outback Impreza, Subaru; (SUNB) IMP, Sunbeam + + + + + (SAA) 9000, Saab + + + + + (SUBA) Baja, Subaru + + + + + (MAZD) Mazda 3, Mazda + + + + + (AUDI) S8, Audi + + + + + (ROL) Flying Spur, Rolls-Royce + + + + + (STRN) SC, Saturn + + + + + (ASUN) Sunfire, Asuna + + + + + (VOLK) Fastback, Volkswagen + + + + + (FORD) Econoline E-450, Ford + + + + + (MNNI) Cooper/Cooper-S (rights bought by BMW), Mini + + + + + (AMER) Javelin, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (AUST) 1100, Austin; (DATS) 110, Datsun; (FIAT) 1100 - D or R, Fiat; (MORR) 1100, Morris; (NSU) 110 Type, Nsu Prinz; (SUBA) 1100 Series, Subaru + + + + + Fusion + + + + + (MITS) Sigma, Mitsubishi; (PLYM) Signet (Valiant), Plymouth + + + + + (MERZ) 190 Series, Mercedes-Benz; (OPEL) 1900, Opel (imported by Buick); (VOLV) P1900, Volvo + + + + + (CITR) ID-19, Citroen + + + + + (FERR) 348, Ferrari + + + + + (CHEV) Express (full-size van), Chevrolet; (FORD) EXP, Ford (see English, French, German, and Italian Ford); (MITS) Expo, Mitsubishi; (RENA) Export, Renault + + + + + (DATS) 280ZX, Datsun + + + + + (KIA) Clarus, Kia Motors Corp. + + + + + (MERC) S-33, Mercury; (METE) S-33, Meteor (Canadian Mercury) + + + + + (EDSE) Ranger, Edsel; (FORD) Ranchero, Ford (see English, French, German, and Italian Ford) + + + + + (PEUG) 505 Series, Peugeot + + + + + (AUDI) RS6, Audi + + + + + (AUDI) S4, Audi + + + + + (PONT) G4, Pontiac + + + + + (AUHE) Sprite, Austin-Healy; (CHEV) Sprint, Chevrolet; (MG) Sprite, MG; (ROL) Silver Spur, Rolls-Royce; (MERZ) Sprinter, Mercedes-Benz ; (DODG) Sprinter, Dodge + + + + + (LOTU) Plus Two, Lotus + + + + + (HOND) FCX (Fuel Cell Vehicle), Honda + + + + + (ALFA) Giulia Sprint, Alfa Romeo + + + + + (ASUN) GT, Asuna; (ENGF) GT, English Ford (British); (OPEL) GT, Opel (imported by Buick); (TRIU) GT Series, Triumph; (FORD) GT, Ford + + + + + (DODG) 440 Series, Dodge + + + + + (MAZD) 616, Mazda + + + + + (DODG) Ram 1500 (pickup), Dodge; (RENA) R-15, Renault + + + + + (CHRY) E Class, Chrysler; (LOTU) Eclat, Lotus; (MITS) Eclipse, Eclipse Spyder GS-T, Mitsubishi + + + + + (LEXS) GS430, Lexus + + + + + (IMPE) Crown, Imperial (for vehicle years 1955-1983, use VMA/IMPE; for vehicle years prior to 1955 and vehicle years 1990-1993, see make Chrysler); (TOYT) Crown, Toyota + + + + + (JEEP) CJ-7, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) CJ-7, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) CJ-7, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (BMW) 325, BMW; (BMW) 325Xi, BMW + + + + + (DODG) 330 Series, Dodge; (BMW) 330I, BMW; (LEXS) ES330, Lexus; (BMW) 330Xi, BMW + + + + + (ACUR) Legend, Acura; (DAEW) Leganza, Daewoo; (SUBA) Legacy, Outback Legacy, Subaru + + + + + (HUMB) Hawk, Humber; (STU) Hawk Series, Studebaker + + + + + (HUDS) Italia, Hudson + + + + + A3 (Sportback) + + + + + (DODG) Swinger (Dart), Dodge + + + + + Replica + + + + + (BUIC) Skylark, Buick; (PONT) Sky Chief, Pontiac; (STRN) Sky, Saturn + + + + + (DODG) Power Ram, Dodge + + + + + (METE) Niagara, Meteor (Canadian Mercury) + + + + + (AUST) A99 & 110, Austin + + + + + (JAGU) Sovereign, Jaguar + + + + + (LNDR) Range Rover, Land Rover + + + + + (MERZ) SL600, Mercedes-Benz + + + + + (RENA) R-12, Renault + + + + + (AUDI) 4000, Audi; (DODG) 400 Series, Dodge; (LEXS) LS400, Lexus; (MASE) 4000 (series), Maserati; (MERZ) 400 Series, Mercedes-Benz + + + + + (BMW) L7, BMW + + + + + (ROL) Phantom, Rolls-Royce; (VOLK) Phaeton, Volkswagen + + + + + (GMC) Yukon, General Motors Corp. + + + + + (OLDS) Alero, Oldsmobile + + + + + (CADI) DeVille, Cadillac; (PANE) DeVille, Panther Westwinds, Ltd. + + + + + (ROOT) Alpine, Rootes; (SUNB) Alpine, Sunbeam + + + + + (MERZ) CLK55, Mercedes-Benz + + + + + (LAMO) Murcielago, Lamborghini ; (NISS) Murano, Nissan + + + + + (MERZ) SL500, Mercedes-Benz + + + + + (ENGF) Thames, English Ford (British) + + + + + (GEO) Storm, GEO + + + + + (CHRY) New Yorker, Chrysler + + + + + SLS (Badged Separately Beginning 7/2003) + + + + + (BMW) 524 Series, BMW + + + + + (ACUR) EL, Acura (Import from Canada) + + + + + (GLAS) Goggomobile, Glas + + + + + (CHEV) Style Master, Chevrolet + + + + + (HUMB) Snipe, Humber; (HILL) Snipe, Hillman + + + + + (ROL) Silver Wraith, Rolls-Royce + + + + + (MERC) Country Cruiser, Mercury; (OLDS) Custom Cruiser, Oldsmobile + + + + + (ISU) Oasis (minivan), Isuzu + + + + + (MERZ) 380 Series, Mercedes-Benz + + + + + (BMW) M5, BMW + + + + + (VOLK) Dasher, Volkswagen + + + + + (HOND) CRV, Honda; (OLDS) Caravan, Oldsmobile; (RENA) Caravelle, Renault + + + + + (ACUR) RSX, Acura + + + + + (FERR) Quattrovalvolve, Ferrari; (MASE) Quattroporte, Maserati + + + + + (DODG) Challenger, Dodge + + + + + (SOLE) Force, Solectria; (SUBA) Forrester, Subaru; (SUZI) Forsa, Suzuki + + + + + (CHRY) Newport, Chrysler + + + + + (FERR) 575 MM, Ferrari + + + + + 9-2X + + + + + EL, Acura (Import from Canada) + + + + + (TRIU) TR6, Triumph + + + + + (AUST) Mini, Austin; (BREM) Mini-Mark, Bremen Sport Equipment, Inc. (Bremen, IN); (HILL) Minx, Hillman; (MITS) Minica, Mitsubishi; (MORR) Minor, Morris; (SUNB) Minx, Sunbeam + + + + + (VACR) Vector, Vector Aeromotive Corp. + + + + + (LEXS) SC430, Lexus; (MERZ) S430V, Mercedes-Benz + + + + + (CREL) Merlin, Corbin Motors (electric vehicles) + + + + + (MICC) MC1, Micro Concept Cars + + + + + (CHRY) Saratoga, Chrysler + + + + + (SHEB) Cobra GT500, Shelby American; (MERZ) G500, Mercedes-Benz + + + + + (BUIC) Skyhawk, Buick + + + + + (DODG) Avenger, Dodge + + + + + (FORD) Elite, Ford (see English, French, German, and Italian Ford); (LOTU) Elite, Lotus + + + + + (DESO) Firesweep, DeSoto + + + + + (CHRY) Pacifica (Sport Wagon), Chrysler + + + + + (HUDS) Wasp, Hudson + + + + + (ACUR) CL (sport coupe), Acura + + + + + LR3 + + + + + (TOYT) Land Cruiser, Toyota; (BUIC) Lacrosse, Buick + + + + + (HUMM) Hummer 2, HUMMER + + + + + (GM) EV1, General Motors + + + + + (OLDS) 88, Oldsmobile + + + + + (AUST) Cambridge, Austin + + + + + (VOLK) Vanagon, Volkswagen + + + + + (OLDS) Jetfire, Oldsmobile + + + + + (HYUN) Marcia, Hyundai; (JAGU) Mark V Series, Jaguar; (AMER) Marlin, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (AUST) Marina, Austin; (FERR) F-550 Maranello, Ferrari; (MERC) Marquis, Mercury; (MG) Marina, MG + + + + + (LEXS) RX300, Lexus; (MAZD) RX3 (rotary engine), Mazda + + + + + (PORS) 930, Porsche + + + + + (BMW) 530i, BMW + + + + + (AUDI) 100GL, Audi + + + + + (LNCI) Dedra, Lancia + + + + + (MASE) 228, Maserati + + + + + (SCIO) XA, Scion + + + + + (BREM) Sebring, Bremen Sport Equipment, Inc. (Bremen, IN); (CHRY) Sebring, Chrysler; (MASE) Sebring, Maserati + + + + + (DATS) 310, Datsun + + + + + (MERC) Sable, Mercury + + + + + (BUIC) Grand Sports (G.S.), Buick + + + + + (ROOT) Arrow, Rootes; (SUNB) Arrow, Sunbeam + + + + + (MERC) Montego, Mercury; (METE) Montego, Meteor (Canadian Mercury) + + + + + (BUIC) Estate Wagon, Buick; (CHEV) Estate Wagon, Chevrolet; (RENA) Estafette, Renault; (SUZI) Esteem, Suzuki + + + + + (JAGU) XJ6, Jaguar + + + + + (GMC) Canyon, General Motors Corp. ; (PORS) Cayenne, Porsche + + + + + Raider + + + + + HHR + + + + + (ENGF) 105 E Series, English Ford (British) + + + + + (AUDI) 100LS, Audi + + + + + (MERZ) 230 Series, Mercedes-Benz + + + + + (DAYO) Migi, Daytona + + + + + (MERC) Mountaineer (sport utility), Mercury + + + + + (SUBA) 1400 Series, Subaru; (VOLV) 140 Series, Volvo + + + + + (LAMO) Diablo, Lamborghini; (MITS) Diamante, Mitsubishi + + + + + (DODG) Fleet Special, Dodge; (SOLE) Flash, Solectria + + + + + (TOYT) Highlander (beginning vehicle year 2001), Toyota + + + + + (HYUN) Accent, Hyundai; (HOND) Accord, Honda; (PLYM) Acclaim, Plymouth + + + + + (OLDS) Bravada, Oldsmobile + + + + + (PORS) 911, Porsche + + + + + (SUZI) Swift, Suzuki + + + + + (DATS) 610, Datsun + + + + + (HUDS) Jet, Hudson; (AERO) Jet Propelled; (MUNT) Jet, Muntz; (VOLK) Jetta, Volkswagen + + + + + (VOLV) 960, Volvo + + + + + (JAGU) XJR, Jaguar + + + + + (VOLK) Pointer, Volkswagon + + + + + (NISS) Terrano, Nissan; (OLDS) Trofeo, Oldsmobile + + + + + (RENA) R-8, Renault + + + + + (PLYM) Duster, Plymouth + + + + + (MASE) Shamal, Maserati + + + + + (KIA) Sedona, Kia + + + + + (CHEV) Brookwood, Chevrolet + + + + + (CADI) 62 Series, Cadillac + + + + + (CADI) Allante, Cadillac; (AUDI) Allroad, Audi + + + + + (ACUR) MDX, Acura + + + + + (HOND) Insight, Honda + + + + + (VOLV) V40, Volvo + + + + + 9-7X + + + + + Commander + + + + + (DODG) Viper, Dodge; (PLYM) Vip, Plymouth + + + + + (MASE) Ghibli, Maserati + + + + + (PONT) GT0, Pontiac + + + + + (ACUR) TSX, Acura + + + + + (MERK) Scorpio, Merkur; (STU) Scotsman, Studebaker + + + + + (BMW) 2500 Series, BMW; (LEXS) ES250, Lexus; (MDNA) GT250, Modena; (MERZ) 250 Series, Mercedes-Benz; (TRIU) 250, Triumph; (LEXS) IS250, Lexus + + + + + RS4 + + + + + (BENT) Corniche, Bentley; (CHRY) Cordoba, Chrysler; (DODG) Coronet, Dodge; (EDSE) Corsair, Edsel; (ENGF) Corsair, English Ford (British); (MITS) Cordia, Mitsubishi; (ROL) Corniche, Rolls-Royce; (TOYT) Corona, Toyota; (VOLK) Corrado, Volkswagen + + + + + (RENA) R-4, Renault + + + + + (SUZI) Grand Vitara, Suzuki + + + + + (MAZD) Tribute, Mazda; (SUBA) B9 Tribeca, Subaru + + + + + (LINC) Mark V, Lincoln-Continental; (MORG) 4/4 Mark 5, Morgan + + + + + (FORD) Model T, Ford (see English, French, German, and Italian Ford); (MERC) Montclair, Mercury + + + + + (PORS) Karman, Porsche; (VOLK) Karmann Ghia, Volkswagen + + + + + (LNCI) Fulvia, Lancia + + + + + (LINC) Navigator, Lincoln-Continental; (MAZD) Navajo, Mazda + + + + + (CHEV) U100 (Joint Venture w/Daewoo); (DAEW) U100 (Joint Venture w/Chevrolet) + + + + + (ALFA) Zagato, Alfa Romeo; (LNCI) Zagato, Lancia + + + + + (CHEV) Suburban, Chevrolet; (GMC) Suburban, General Motors Corp.; (PLYM) Suburban, Plymouth + + + + + (PLYM) Plaza, Plymouth + + + + + (STU) Champion, Studebaker + + + + + (DATS) F-10, Datsun; (FORD) F100, Ford (see English, French, German, and Italian Ford) + + + + + (PLYM) Valiant, Plymouth + + + + + (CHRY) Town & Country Minivan, Chrysler + + + + + (MERZ) Smart City Vehicle, Mercedes-Benz + + + + + (BMW) 735 Series, BMW + + + + + (IMPE) Custom, Imperial (for vehicle years 1955-1983, use VMA/IMPE; for vehicle years prior to 1955 and vehicle years 1990-1993, see make Chrysler); (CHEC) Custom, Checker; (DESO) Custom, DeSoto; (FORD) Custom, Ford (see English, French, German, and Italian Ford); (LINC) Custom, Lincoln-Continental; (MERC) Custom, Mercury; (OLDS) Custom, Oldsmobile; (PONT) Custom, Pontiac; (RAMB) Custom, Rambler (mfd. prior to 1966; 1966 and later Ramblers - see make American Motors) + + + + + (LINC) Mark VI, Lincoln-Continental + + + + + (DODG) Shadow, Dodge + + + + + (MERZ) ML500, Mercedes-Benz + + + + + (MESS) KR201, Messerschmitt + + + + + (NISS) XE, Nissan + + + + + (ALFA) 2600 Sprint, Alfa Romeo + + + + + (FORD) Futura, Ford (see English, French, German, and Italian Ford) + + + + + (FORD) KA, Ford (see English, French, German, and Italian Ford) + + + + + (MAZD) MPV, Mazda + + + + + (RENA) Luxe, Renault + + + + + (CITR) DS-19, Citroen + + + + + (DODG) Nitro, Dodge + + + + + (SKOD) Fabia, Skoda + + + + + (PEUG) 504 Series, Peugeot + + + + + (FORD) Victoria, Ford (see English, French, German, and Italian Ford); (VAUX) Victor, Vauxhall + + + + + (CHRY) LHS, Chrysler + + + + + (ATV) Wheels only; (SNOW) Wheels only, Snowmobiles; (SPEC) Motorized Wheelchairs + + + + + (DODG) Mirada, Dodge; (MITS) Mirage, Mitsubishi + + + + + Cayman + + + + + (BMW) L6, BMW + + + + + (GMC) Rally, General Motors Corp.; (SAT) Relay, Saturn + + + + + (LINC) Versailles, Lincoln-Continental + + + + + (MERC) Turnpike Cruiser, Mercury; (PLYM) Turismo, Plymouth + + + + + (MERC) Topaz, Mercury + + + + + (NISS) Titan, Nissan + + + + + (BUIC) GS400, Buick + + + + + (VOLV) 760, Volvo; (BMW) 760 LI, BMW ; (BMW) 760i, BMW + + + + + (PONT) G5, Pontiac + + + + + (DETO) Mangusta, DeTomaso + + + + + (BREM) Creighton, Bremen Sport Equipment, Inc. (Bremen, IN); (FORD) Crestline, Ford (see English, French, German, and Italian Ford); (TOYT) Cressida, Toyota; (VAUX) Cresta, Vauxhall + + + + + (TVR) Vixen, TVR + + + + + NSX + + + + + (MASE) Mexico, Maserati + + + + + (BMW) 840Ci, BMW + + + + + (NISS) Pathfinder (Armada), Nissan + + + + + (NASH) Lafayette, Nash + + + + + (SUZI) XL-7 or XL-7 Grand Vitara, Suzuki + + + + + (AUDI) 80, Audi + + + + + (DAYO) Moya, Daytona + + + + + (ENGF) Zephyr, English Ford (British); (LINC) Zephyr, Lincoln-Continental; (MERC) Zephyr, Mercury + + + + + (MASE) 430, Maserati + + + + + (HUDS) Super, Hudson; (BUIC) Super, Buick; (FORD) Super, Ford (see English, French, German, and Italian Ford); (HILL) Super Minx, Hillman; (LOTU) Super 7, Lotus; (OLDS) Super 88, Oldsmobile; (PONT) Super Chief, Pontiac; (PORS) Super, Porsche; (RAMB) Super, Rambler (mfd. prior to 1966; 1966 and later Ramblers - see make American Motors); (TOYT) Supra, Toyota + + + + + (MERZ) C320, Mercedes-Benz + + + + + (BUIC) Allure, Buick + + + + + (MERZ) E320, Mercedes-Benz + + + + + (GMC) Savanna (full-size van), General Motors Corp.; (PLYM) Savoy, Plymouth + + + + + (BMW) 635 Series, BMW + + + + + (VOLV) 122 Series, Volvo + + + + + (JAGU) XJ12, Jaguar + + + + + (DODG) St. Regis, Dodge; (FIAT) Strada, Fiat; (PONI) Strato Chief, Pontiac (Canadian) (Also see make Pontiac); (PONT) Streamliner, Pontiac + + + + + (TOYT) Sienna (van), Toyota + + + + + (DODG) Daytona, Dodge; (FERR) Daytona, Ferrari; (STU) Daytona, Studebaker + + + + + (MASE) Bora, Maserati + + + + + (CONU) GCP, Consulier + + + + + (DODG) Ram Charger, Dodge + + + + + (FORD) F250 Supercab (pickup), Ford (see English, French, German, and Italian Ford) + + + + + (RAMB) Classic, Rambler (mfd. prior to 1966; 1966 and later Ramblers - see make American Motors); (CHEV) Classic, Chevrolet + + + + + (BUIC) Regal, Buick; (OLDS) Regency (Ninety-eight Series), Oldsmobile + + + + + (STRN) LW-Wagon, Saturn + + + + + (PACK) Predictor, Packard + + + + + (FORD) Econoline E350, Ford (see English, French, German, and Italian Ford) + + + + + (MASE) 3500 (series), Maserati; (ROV) 3500, Rover; (NISS) 350Z, Nissan ; (MERZ) E350 OR SLK350, Mercedes Benz; (MERZ) S350, Mercedes - Benz; (ISU) i350, Isuzu; (LEXS) IS350, Lexus + + + + + (PONT) Chieftain, Pontiac + + + + + (MERZ) C220, Mercedes-Benz + + + + + (MASE) Khamsin, Maserati + + + + + (BUIC) Electra (Park Avenue), Park Avenue (Electra), Buick; (BZEL) Electra-King, B & Z Electric Car Co.; (HOND) Element, Honda + + + + + (PORS) 968, Porsche + + + + + (MERZ) 220 Series, Mercedes-Benz + + + + + (CADI) XLR, Cadillac + + + + + (ATV) Tracks only; (MERC) Tracer, Mercury; (SNOW) Tracks only, Snowmobiles + + + + + (FORD) Galaxie, Ford (see English, French, German, and Italian Ford); (MITS) Galant, Mitsubishi; (LAMO) Gallardo, Lamborghini + + + + + (VOLK) Beetle (Super Beetle or Bug), Volkswagen + + + + + (OLDS) 37350, Oldsmobile + + + + + (MAZD) CX7, Mazda + + + + + (MERC) Monarch, Mercury + + + + + (SPYK) C8 Laviolette, Spyker Motorcars; (SPYK) C8 Spyder, Spyker Motorcars + + + + + (SIM) Aronde, Simca; (SUZI) Aerio, Suzuki + + + + + (SANG) CM600S, Sangyong + + + + + (RENA) R-16, Renault + + + + + (TOYT) T-150, Toyota + + + + + (SUZI) Sidekick, Suzuki + + + + + (VOLK) The Thing, Volkswagen + + + + + (MG) MGB, MG + + + + + (DAIH) Rocky, Daihatsu + + + + + (CHRY) Crossfire, Chrysler + + + + + (FORD) Econoline E150, Ford (see English, French, German, and Italian Ford) + + + + + (SUBA) Loyale, Subaru + + + + + Trailers + + + + + (BMW) 740, BMW; (VOLV) 740 Series, Volvo + + + + + (LINC) Mark III, Lincoln-Continental; (VANG) Mark III, Vanguard (Canada) + + + + + (DODG) Caravan, Dodge; (CHRY) Caravan, Chrysler + + + + + (FERR) 308, Ferrari + + + + + (SCIO) XB, Scion + + + + + (SANG) Jeep, Sangyong + + + + + (NISS) Altima, Nissan + + + + + (BUIC) Roadmaster, Buick; (CLEN) Roadster, Clenet Coach Works; (DECO) Roadster, DeCourville + + + + + (BESA) Baci, Besasie Automobile Co., Inc. + + + + + (OLDS) Firenza, Oldsmobile + + + + + (FORD) Maverick, Ford (see English, French, German, and Italian Ford) + + + + + (ALFA) Montreal, Alfa Romeo; (CHEV) Monza, Chevrolet; (DODG) Monaco, Dodge; (FERR) Mondial, Ferrari; (MERC) Monterey, Mercury; (METE) Montcalm, Meteor (Canadian Mercury); (MITS) Montero/Montero Sport, Mitsubishi + + + + + (JAGU) 3.8 Litre, Jaguar + + + + + (TOYT) Yaris, Toyota + + + + + (CHEV) Camaro, Chevrolet; (PLYM) Cambridge, Plymouth; (ROL) Camargue, Rolls-Royce; (TOYT) Camry, Toyota + + + + + (MAZD) MX6, Mazda + + + + + (CLND) 244X, Cross Lander + + + + + (CHRY) Concorde, Chrysler + + + + + (MERZ) C36, Mercedes-Benz + + + + + (VOLV) V50 (Sport Wagon), Volvo + + + + + (FORD) Taurus, Ford (see English, French, German, and Italian Ford) + + + + + (MERZ) SLR McLaren, Mercedes-Benz + + + + + (CHEV) Equinox, Chevrolet + + + + + (SAA) 93 & 93B, Saab + + + + + (HOND) Odyssey (minivan), Honda + + + + + (CHEV) Cavalier, Chevrolet; (PACK) Cavalier, Packard; (TOYT) Cavalier, Toyota + + + + + (BMW) Z3, BMW + + + + + (RENA) R-5, Renault + + + + + (FORD) Festiva, Ford (see English, French, German, and Italian Ford) + + + + + (CADI) Escalade, Cadillac; (ENGF) Escort, English Ford (British); (FORD) Escort, Ford (see English, French, German, and Italian Ford) + + + + + (DODG) Meadowbrook, Dodge + + + + + (FERR) Enzo, Ferrari + + + + + (DETO) Deauville, DeTomaso + + + + + (VOLK) Golf, Volkswagen + + + + + (ENCR) M151, Encore + + + + + (MERC) Bobcat, Mercury + + + + + (BMW) 533i, BMW + + + + + (USEL) Lectric Leopard, U.S. Electricar Corp. + + + + + (KIA) Opirus, KIA + + + + + (PEUG) 304, Peugeot + + + + + (HYUN) Sonata, Hyundai; (GMC) Sonoma, General Motors Corp.; (SAA) Sonnet, Saab + + + + + (MERZ) CLK500, Mercedes-Benz + + + + + (AUDI) A6, Audi + + + + + (HOND) S2000, Honda + + + + + (CREL) Sparrow, Corbin Motors (electric vehicles) + + + + + (CADI) Catera, Cadillac; (PONT) Catalina, Pontiac + + + + + (DETO) Longchamp, DeTomaso + + + + + (FORD) Falcon, Ford (see English, French, German, and Italian Ford) + + + + + (HOND) Passport, Honda; (TOYT) Paseo, Toyota; (VOLK) Passat, Volkswagen + + + + + (MASE) GTI Series, Maserati; (VOLK) GTI, Volkswagen + + + + + (VOLK) Quantum, Volkswagen + + + + + (FORD) XL, Ford (see English, French, German, and Italian Ford) + + + + + (ACUR) Vigor, Acura + + + + + (FIAT) Brava, Fiat + + + + + (PORS) 914, Porsche + + + + + (SPEC) Dune Buggies + + + + + (MG) Mark II, MG + + + + + Milan + + + + + (VOLV) XC90, Volvo + + + + + (SUBA) Leone GL Coupe, Subaru + + + + + (TOYT) Tundra, Toyota + + + + + (STRN) Vue, Saturn + + + + + (JAGU) Mark Ten Salon, Jaguar + + + + + (BMW) 320i, BMW; (MERZ) 320 Series, Mercedes-Benz + + + + + (PORS) Targa, Porsche + + + + + (FORD) Club Wagon E250, Ford (see English, French, German, and Italian Ford) + + + + + (SUZI) Forenza (S, EX, LX), Suzuki + + + + + (FORD) Explorer Sport Trac, Ford (see English, French, German, and Italian Ford) + + + + + (TOYT) Previa, Toyota + + + + + (DESO) Adventurer, DeSoto + + + + + (FORD) Mustang, Ford (see English, French, German, and Italian Ford) + + + + + (CHRY) Fifth Avenue, Chrysler + + + + + (OLDS) 98, Oldsmobile + + + + + (GZL) Rage (sport utility), Gazelle + + + + + (BMW) M3, BMW + + + + + (FORD) Torino (Fairlane), Ford (see English, French, German, and Italian Ford); (OLDS) Toronado, Oldsmobile; (PONT) Torrent, Pontiac + + + + + (CHEV) Corvette, Chevrolet + + + + + (BMW) 750iL, BMW + + + + + (LEXS) GX470, Lexus + + + + + (CHRY) Voyager, Chrysler; (MERC) Voyager, Mercury; (PLYM) Voyager, Plymouth + + + + + (TOYT) RAV4 (sport utility), Toyota + + + + + (FIAT) 850 Fastback, Fiat + + + + + (ALFA) Duetto, Alfa Romeo + + + + + (ASTO) DB-6, Aston Martin + + + + + (DODG) Ram 3500 (van), Dodge + + + + + (VOLV) GLE, Volvo + + + + + (CHEV) Townsman, Chevrolet; (CHRY) Town & Country, Chrysler; (LINC) Town Car, Lincoln-Continental + + + + + (OLDS) Aurora, Oldsmobile; (STRN) Aura, XE, XR, Saturn + + + + + (BERO) Palinuro, Bertone + + + + + (JAGU) V12, Jaguar + + + + + (ISU) Stylus, Isuzu; (JAGU) S-Type, Jaguar; (CHEV) Style Line, Chevrolet + + + + + (MASE) Biturbo, Maserati + + + + + (MERZ) E430, Mercedes-Benz + + + + + (AUST) A55, Austin + + + + + (LAMO) LM129, Lamborghini + + + + + (DAIH) Charade, Daihatsu; (DODG) Charger (and Shelby Charger), Dodge; (GAZ) Chaika, GAZ; (MITS) Chariot, Mitsubishi; (PLYM) Champ (imported), Plymouth; (SIN) Chamois, Singer; (STU) Challenger, Studebaker + + + + + (VOLV) S70, Volvo + + + + + (CADI) Touring Sedan, Cadillac + + + + + (STLG) 827, Sterling + + + + + (SHEB) CSX, Shelby American; (ACUR) CSX, Acura + + + + + (ALFA) 164, Alfa Romeo; (VOLV) 164 Series, Volvo + + + + + (HYUN) Entourage, Hyundai + + + + + (TVR) Tuscan, TVR + + + + + (BMW) 325i, BMW + + + + + (VOLV) GLT, Volvo + + + + + (OPEL) Olympia, Opel (imported by Buick) + + + + + (FERR) F355, Ferrari; (FORD) F350, Ford (see English, French, German, and Italian Ford) + + + + + (MERZ) ML55, Mercedes-Benz + + + + + (SUZI) Vitara, Suzuki; (TRIU) Vitesse, Triumph + + + + + (AUDI) 100, Audi; (AUHE) 100 Series, Austin-Healy; (DODG) A 100 Compact, Dodge; (ENGF) 100 E Series, English Ford (British); (NSU) 1000, Nsu Prinz; (SIM) 1000 & 1000GL, Simca; (SUBA) 100 Series, Subaru + + + + + Grand Marquis + + + + + (BERO) X19, Bertone; (FIAT) X19, Fiat + + + + + (LINC) Mark VII, Lincoln-Continental + + + + + (ISU) Ascender, Isuzu + + + + + (TOYT) 4-Runner, Highlander (4Runner), Toyota + + + + + (CHEV) Celebrity, Chevrolet + + + + + (CHRY) PT Cabrio, Chrysler + + + + + (BUIC) Park Avenue, Buick; (ROL) Park Ward, Rolls-Royce + + + + + RL + + + + + (MORR) Oxford, Morris + + + + + (AUST) Westminster, Austin + + + + + (SNOW) Skis and Wheels, Snowmobiles + + + + + (FERR) Testarossa, Ferrari + + + + + (AMER) Rambler Rogue, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (FORD) Nevada, Ford (see English, French, German, and Italian Ford) + + + + + (JEEP) Grand Cherokee, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) Grand Cherokee, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) Grand Cherokee, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (FIAT) Uno, Fiat + + + + + (HYUN) Steilar, Hyundai; (DODG) Stealth, Dodge + + + + + (ISU) VehiCross, Isuzu + + + + + (BMW) 535 Series, BMW + + + + + (DODG) Polara, Dodge; (VOLK) Polo, Volkswagen + + + + + (BMW) 645, BMW + + + + + (BMW) 750, BMW; (FIAT) 750, Fiat; (RENA) 750, Renault; (BMW) 750i, BMW; (BMW) 750L, BMW + + + + + (DATS) 260Z, Datsun; (MERZ) 260 Series, Mercedes-Benz; (VOLV) 260 Series, Volvo + + + + + (DODG) Magnum, Dodge; (MG) Magnette, MG + + + + + (NISS) Pulsar, Nissan + + + + + (AUDI) 850, Audi; (AUST) 850, Austin; (BMW) 850i, BMW; (MORR) 850 Series, Morris; (VOLV) 850 Series, Volvo + + + + + (CHEV) Lumina, Chevrolet + + + + + (FERR) Tipo, Ferrari + + + + + (DODG) Aries, Dodge + + + + + FJ Cruiser + + + + + (MITS) 3000 GT, Spyder 3000 GT, Mitsubishi + + + + + (HUDS) Pacemaker, Hudson; (AMER) Pacer, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (EDSE) Pacer, Edsel + + + + + (CITR) SM, Citroen + + + + + (MORG) Plus 4 Series, Morgan + + + + + (ALFA) 2600 Spider, Alfa Romeo + + + + + (DODG) Dynasty, Dodge; (OLDS) Dynamic 88, Oldsmobile; (CHRY) Dynasty, Chrysler + + + + + (CHEV) Matiz, Chevrolet; (PONT) Matiz, Pontiac + + + + + (MERZ) C43, Mercedes-Benz + + + + + (CADI) SRX, Cadillac + + + + + (BUIC) Centurion, Buick; (FORD) Contour, Ford (see English, French, German, and Italian Ford) + + + + + (PONT) Vibe (sport wagon), Pontiac + + + + + (JAGU) X-Type, Jaguar + + + + + (AUDI) 5000, Audi; (MASE) 5000 (series), Maserati; (FORD) Five Hundred (500), Ford; (MERZ) CLS500, Mercedes Benz; (MERZ) S500, Mercedes - Benz + + + + + RX400 or RX400H (Hybrid) + + + + + (CHEV) Tracker (beginning vehicle year 1998), Chevrolet; (GEO) Tracker, GEO + + + + + (VOLV) S60, Volvo + + + + + (ASTO) Lagonda, Aston Martin + + + + + (CADI) 75 Series, Cadillac; (ROV) Rover 75, Rover + + + + + (SUNB) Rapier, Sunbeam + + + + + (JAGU) XJC, Jaguar + + + + + (FERR) F40, Ferrari + + + + + (CHEV) Tahoe, Chevrolet + + + + + (BMW) 600, BMW; (DODG) 600, Dodge; (FIAT) 600D, Fiat; (MERZ) 600 Series, S600, Mercedes-Benz; (PONT) 6000, Pontiac + + + + + (MERZ) E420, Mercedes-Benz + + + + + (AERO) Sailplane (Glider); (CHRY) Salon, Chrysler + + + + + (BORG) Biscayne, Borgward; (CHEV) Biscayne, Chevrolet + + + + + (PLYM) Road Runner, Plymouth + + + + + (FORD) Think Neighbor (Elec. Veh. Model Year 2002), Ford + + + + + (MAZD) B2500, Mazda + + + + + (DESO) Powermaster, DeSoto + + + + + (VOLV) PV544, Volvo + + + + + (CHRY) Windsor, Chrysler; (FORD) Windstar, Ford (see English, French, German, and Italian Ford) + + + + + (CHEV) Astro Van, Chevrolet; (OPEL) Astra, Opel (imported by Buick); (PONT) Astre, Pontiac + + + + + (CHRY) TC, Chrysler; (SCIO) TC, Scion + + + + + (BUIC) Terraza, Buick + + + + + (BUIC) Limited, Buick; (CHRY) Limousine, Chrysler; (PANE) Lima, Panther Westwinds, Ltd. + + + + + (PEUG) 203, Peugeot + + + + + (OPEL) Kadette, Opel (imported by Buick) + + + + + (VAUX) Velox, Vauxhall + + + + + (CHEV) El Camino, Chevrolet + + + + + (INFI) J30, Infiniti + + + + + (PLYM) Scamp (Valiant), Plymouth + + + + + (FIAT) Punto, Fiat + + + + + (ASUN) SE, Asuna; (NISS) SE-V6, Nissan + + + + + (MASE) 425, Maserati + + + + + (MERZ) E55, Mercedes-Benz; (FORD) Econoline E-550, Ford + + + + + (BMW) 525ia, BMW; (BMW) 525i, BMW + + + + + (TOYT) MR2, Toyota + + + + + (SUBA) SVX, Subaru + + + + + (JEEP) Cherokee, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) Cherokee, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) Cherokee, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (HUDS) Commodore, Hudson; (JEEP) Comanche, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) Comanche, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) Comanche, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (CHRY) Commander, Chrysler; (COMV) Comuta-Car, Commuter Vehicles, Inc.; (DODG) Compact Sportsman, Dodge; (FREF) Comete, French Ford; (MERC) Comet, Mercury; (STU) Commander, Studebaker + + + + + (ENGF) Cortina, English Ford (British) + + + + + (DODG) Diplomat, Dodge + + + + + (MERC) Nautica Villager, Villager Minivan, Mercury + + + + + (CITR) DS-21 & D21, Citroen + + + + + (HUDS) Hornet, Hudson; (AMER) Hornet, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (PLYM) Horizon (also TC3), Plymouth + + + + + (ASTO) Saloon (Virage), Virage (Saloon), Aston Martin + + + + + (DATS) Honey Bee, Datsun + + + + + (MASE) Merak, Maserati + + + + + (FORD) Econoline E250, Ford (see English, French, German, and Italian Ford) + + + + + (LINC) LS8, Lincoln-Continental + + + + + (INTL) Scout, International Harvester + + + + + (CHEV) S10, Chevrolet + + + + + (RENA) R-10, Renault + + + + + (BUIC) Special, Buick; (CHEV) Spectrum, Chevrolet; (FORD) Special, Ford (see English, French, German, and Italian Ford) + + + + + (TRIU) 1250, Triumph + + + + + (DAEW) Korando, Daewoo + + + + + (CHEV) Metro (beginning vehicle year 1998), Chevrolet; (GEO) Metro, GEO; (NASH) Metropolitan, Nash + + + + + (AUDI) Cabriolet, Audi; (BERO) Cabrio, Bertone; (GMC) Cabellero, General Motors Corp.; (PORS) Cabriolet, Porsche; (VOLK) Cabriolet, Volkswagen + + + + + (FERR) 512, Ferrari + + + + + (MERZ) 219 Series, Mercedes-Benz + + + + + (PLYM) Fury (also Grand Fury), Plymouth + + + + + (HYUN) Avatar, Hyundai; (AUDI) Avant, Audi; (CHEV) Avalanche, Chevrolet; (NSU) Auto Nova, Nsu Prinz; (STU) Avanti, Studebaker; (TOYT) Avalon, Toyota; (LINC) Aviator, Lincoln + + + + + (CHEV) 210 Series, Chevrolet; (DATS) 210 (or B-210), B-210 (or 210), Datsun + + + + + (FORD) Ranger (pickup), Ford (see English, French, German, and Italian Ford) + + + + + (PONT) SSE, Pontiac + + + + + (MORR) Mini Series, Morris; (TOYT) Mark II, Toyota + + + + + (ISU) Axiom, Isuzu + + + + + (HUDS) Rambler, Hudson; (NASH) Rambler, Nash + + + + + (BMW) Isetta, BMW + + + + + (BENT) Brooklands, Bentley; (CADI) Brougham, Cadillac; (FORD) Bronco/Bronco II, Ford (see English, French, German, and Italian Ford); (MERC) Brougham, Mercury + + + + + (FORD) Escape, Ford (see English, French, German, and Italian Ford) + + + + + (VAUX) Firenza, Vauxhall + + + + + (LOTU) Elan, Lotus + + + + + (ROL) Silver Dawn, Rolls-Royce + + + + + (JENS) Healy, Jensen + + + + + (PLYM) Satellite, Plymouth + + + + + (MAZD) RX8, Mazda + + + + + (RENA) Le Car, Renault + + + + + (MAZD) B2000, Mazda + + + + + (VOLV) V70, Volvo + + + + + (SOLE) Citi Van, Solectria + + + + + (BUIC) GS455, Buick; (LEXS) GS450h, Lexus + + + + + (EXCL) SSK, Excalibur + + + + + 612 Scaglietti + + + + + (TRIU) TR-4 & TR-4A, Triumph + + + + + STS (Badged Separately Beginning 7/2003) + + + + + (BMW) 745i, BMW; (VOLV) 745 Series, Volvo + + + + + (FORD) LTD II, Ford (see English, French, German, and Italian Ford) + + + + + (FREF) Vedette, French Ford; (SIM) Vedette, Simca + + + + + (MERZ) 450 Series, Mercedes-Benz + + + + + Vanquish, Vanquish S + + + + + (CHEV) Corsa (Corvair), Corvair, Chevrolet + + + + + (BMW) 2.8, BMW + + + + + (AUDI) 90, Audi + + + + + (HOND) EVPLUS, Honda + + + + + (PLYM) Sapporo (imported), Plymouth + + + + + (HOND) Pilot, Honda + + + + + (ROL) Silver Cloud, Rolls-Royce + + + + + (MONA) Lucerne, Monarch; (BUIC) Lucerne, Buick + + + + + (BUIC) Somerset, Buick + + + + + (INFI) FX45, Infiniti + + + + + (ALFA) Giulia, Alfa Romeo + + + + + (PONT) Trans Sport/Transport, Pontiac; (VOLK) Transporter, Volkswagen + + + + + (KAIS) Darrin, Kaiser; (DODG) Dart, Dodge + + + + + (BUGA) EB110, Bugatti + + + + + (AMER) Alliance, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (JEEP) Liberty, Jeep + + + + + (PONT) Aztek, Pontiac + + + + + (TOYT) Solara, Toyota; (PONT) Solstice, Pontiac + + + + + (JEEP) Compass, Jeep + + + + + (MAZD) B2300, Mazda + + + + + (CHRY) Executive Sedan, Chrysler; (PONT) Executive, Pontiac + + + + + (MERC) S-22, Mercury + + + + + (OLDS) Delta 88, LSS (Delta 88), Royale, Oldsmobile + + + + + (STU) Lark Series, Studebaker + + + + + (ISU) Rodeo, Isuzu; (DLHY) Roadster, Delahaye; (LAMO) Roadster, Lamborghini; (PANZ) Roadster, Panoz Auto Development Co.; (BRSH) Roadster, Brush (antique vehicles); (SHEB) Roadster, Shelby + + + + + (SAA) 99, Saab + + + + + (AVTI) Series A, Avanti + + + + + (PANE) Killeta, Panther Westwinds, Ltd. + + + + + (STRN) SL, Saturn + + + + + (HILL) Husky, Hillman + + + + + (JAGU) 340, Jaguar + + + + + (LAMO) Jalpa, Lamborghini + + + + + (MERC) Breezeway, Mercury + + + + + (CHEV) Sportvan, Chevrolet; (ENCR) Sport, Encore; (KIA) Sportage (sport utility), Kia Motors Corp.; (SUBA) Outback Sport (station wagon), Subaru + + + + + (FORD) Thunderbird, Ford (see English, French, German, and Italian Ford); (MODE) 1955 Thunderbird, Model A and Model T Motor Car Reproduction Corp. + + + + + (VANG) Ensign, Vanguard (Canada) + + + + + (ISU) I-Mark, Isuzu + + + + + (CHEV) Silverado, Chevrolet + + + + + (MERC) Colony Park, Mercury + + + + + (FORD) ZX2, Ford + + + + + (MG) MGB/GT, MG + + + + + (SUBA) Fe, Subaru + + + + + (PORS) 924, Porsche + + + + + (CITR) AX, Citroen + + + + + (BMW) 328is, BMW; (FERR) 328, Ferrari + + + + + (BMW) 633csi, BMW + + + + + (DATS) 240Z, Datsun + + + + + (JEEP) J-10, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) J-10, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) J-10, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (TRIU) TR-3 & TR-3A, Triumph + + + + + (INFI) Q45, Infiniti + + + + + (CHRY) Lido, Chrysler + + + + + (FORD) Club Wagon E150, Ford (see English, French, German, and Italian Ford) + + + + + (MAZD) B3000, Mazda + + + + + (MERC) Caliente, Mercury; (PACK) Clipper, Packard + + + + + (CHRY) Grand Voyager, Chrysler + + + + + (SAA) GT 750, Saab + + + + + (BMW) 733 Series, BMW + + + + + (SUZI) Verona, Suzuki + + + + + (CHEC) Aerobus, Checker; (FORD) Aerostar, Ford (see English, French, German, and Italian Ford) + + + + + Elise + + + + + (MAZD) B4000, Mazda + + + + + (RENA) Fuego, Renault + + + + + (LINC) Blackwood, Lincoln + + + + + (MASE) Mistrell, Maserati; (MAZD) Miser (piston engine), Mazda + + + + + (STRN) SW, Saturn + + + + + (MAZD) GLC ("Great Little Car"), Mazda + + + + + (INTL) Travelall, International Harvester + + + + + (CHEV) Chevette, Chevrolet + + + + + Mariner + + + + + (OLDS) Jetstar, Oldsmobile + + + + + (GMC) Syclone, General Motors Corp. + + + + + (CHEC) Superba, Checker + + + + + (FORD) Mainline, Ford (see English, French, German, and Italian Ford) + + + + + (BENT) Azure, Bentley + + + + + (CHRY) Imperial (for vehicle years prior to 1955 and for vehicle years 1990-1993; for 1955-1983, see make Imperial), Chrysler + + + + + (BENT) Mulsanne, Bentley; (ROL) Mulsanne, Rolls-Royce + + + + + (PONT) Bonneville, Pontiac + + + + + (JAGU) XKR, Jaguar + + + + + (ROV) Rover 25, Rover + + + + + (BORG) Hansa, Borgward + + + + + (CADI) Seville, Cadillac + + + + + (INFI) QX4, Infiniti + + + + + (PORS) 928, Porsche + + + + + (HUDS) Deluxe, Hudson; (KAIS) Deluxe, Kaiser; (CHEV) Del Ray, Chevrolet; (DESO) Deluxe, DeSoto; (DODG) Deluxe, Dodge; (FORD) Deluxe, Ford (see English, French, German, and Italian Ford); (HILL) Deluxe, Hillman; (MORR) Deluxe, Morris; (OLDS) Deluxe, Oldsmobile; (PONT) Deluxe, Pontiac; (RAMB) Deluxe, Rambler (mfd. prior to 1966; 1966 and later Ramblers - see make American Motors); (SUNB) Deluxe, Sunbeam; (VANG) Deluxe, Vanguard (Canada) + + + + + (BMW) 1600, BMW; (HILL) 1600 Series, Hillman; (MG) 1600, MG; (PORS) 1600, Porsche; (SUBA) 1600 Series, Subaru + + + + + (MERZ) ML430, Mercedes-Benz + + + + + (GMC) Sprint (VMA/GMSP for reference only), General Motors Corp. + + + + + (AMER) Matador, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (BUIC) Riviera, Buick + + + + + (CHEV) Caprice, Chevrolet; (ENGF) Capri, English Ford (British); (MERC) Capri (1979 and later), Mercury + + + + + (DODG) Phoenix, Dodge; (PONT) Phoenix, Pontiac + + + + + (MERZ) CLK430, Mercedes-Benz + + + + + (CHRY) Royal, Chrysler; (DODG) Royal, Dodge + + + + + (AUST) A40, Austin + + + + + (PANE) J72, Panther Westwinds, Ltd. + + + + + (NISS) X-Terra, Nissan + + + + + (DESO) Firedom, DeSoto + + + + + (AMER) Concord, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (BENT) Continental Convertible, Bentley; (CADI) Concours, Cadillac; (CHRY) Conquest (vehicle year 1987 and later), Chrysler; (DODG) Conquest (vehicle year 1986 only), Dodge; (ENGF) Consul, English Ford (British); (LINC) Continental, Lincoln-Continental + + + + + (OLDS) Holiday, Oldsmobile + + + + + (MERZ) C280, Mercedes-Benz + + + + + (VOLK) Squareback, Volkswagen + + + + + (ASUN) Sunrunner, Asuna; (VOLK) Sunroof, Volkswagen + + + + + (ALFA) GT Veloce, Alfa Romeo + + + + + (KAIS) Carolina, Kaiser; (OPEL) Caravan, Opel (imported by Buick); (PACK) Caribbean, Packard; (PORS) Carrera, Porsche; (TOYT) Carina, Toyota + + + + + (FIAT) Ulysse, Fiat + + + + + (PORS) Boxter 986, Porsche + + + + + (CHEV) Parkwood, Chevrolet; (MERC) Parklane, Mercury; (PONI) Parisienne, Pontiac (Canadian) (Also see make Pontiac); (PONT) Parisienne, Pontiac + + + + + (CHEC) Marathon, Checker + + + + + (FORD) Expedition, Ford (see English, French, German, and Italian Ford) + + + + + (ACUR) TL, Acura + + + + + (MAZD) RX7 (rotary engine), Mazda + + + + + (MG) MGC, MG + + + + + (DODG) Neon, Dodge; (PLYM) Neon, Plymouth + + + + + (HYUN) Santa Fe, Hyundai + + + + + (JAGU) 4.2 Litre, Jaguar + + + + + (JAGU) XK-E Series, Jaguar + + + + + (FORD) Tempo, Ford (see English, French, German, and Italian Ford); (PONI) Tempest, Pontiac (Canadian) (Also see make Pontiac) + + + + + (BREM) Laufer, Bremen Sport Equipment, Inc. (Bremen, IN); (PONI) Laurentian, Pontiac (Canadian) (Also see make Pontiac) + + + + + (LINC) Mark VIII, Lincoln-Continental + + + + + (CHEV) Vega, Chevrolet + + + + + (VOLV) 940, Volvo + + + + + (DESO) Firelite, DeSoto + + + + + (CONU) GTP, Consulier + + + + + (DODG) Ram 1500 (van), Dodge + + + + + Farm and Garden Equipment + + + + + (AUDI) S6, Audi + + + + + (SUBA) RX, Subaru + + + + + (MERZ) SLK230, Mercedes-Benz + + + + + (VOLV) C70, Volvo + + + + + (JAGU) XJS, Jaguar + + + + + (LADA) Niva, Lada (imported from USSR) + + + + + (LEXS) LX450 (luxury sport utility), Lexus + + + + + Ridgeline + + + + + (AUST) 1800, Austin; (BMW) 1800, BMW; (MERZ) 180 Series, Mercedes-Benz; (VOLV) 1800 Series, Volvo + + + + + (SUZI) SX4, Suzuki + + + + + (TRIU) Sport "6", Triumph + + + + + (FORD) Pinto, Ford (see English, French, German, and Italian Ford) + + + + + Motorcycles + + + + + (MERC) Cyclone, Mercury + + + + + (FORD) Model A, Ford (see English, French, German, and Italian Ford) + + + + + (OLDS) Achieva, Oldsmobile + + + + + (MESS) KR200, Messerschmitt + + + + + (SUBA) GLF, Subaru + + + + + (BMW) TI, BMW + + + + + (JEEP) Wagoneer, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) Wagoneer, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) Wagoneer, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (STU) Wagonaire, Studebaker + + + + + (VOLV) V90, Volvo + + + + + (ITAF) Anglia, Italian Ford; (ENGF) Anglia, English Ford (British) + + + + + (TOYT) Hi-Lux, Toyota + + + + + (NISS) Versa, Nissan + + + + + (MERZ) C240, Mercedes-Benz + + + + + Wave + + + + + (BUIC) GS350, Buick; (SHEB) Cobra GT350, Shelby American; (INFI) G35, Infiniti + + + + + (LEXS) GS300, Lexus + + + + + (ALFA) Berlina, Alfa Romeo; (BORG) Beretta, Borgward; (CHEV) Beretta, Chevrolet; (LNCI) Berlina, Lancia; (SIM) Bertone, Simca + + + + + (LEXS) IS300, Lexus + + + + + (BENT) Eight, Bentley + + + + + (HYUN) Scoupe, Hyundai; (HILL) Sceptre, Hillman; (MONA) Sceptre, Monarch + + + + + (AUDI) 80 LS (Fox), Audi; (VOLK) Fox, Volkswagen + + + + + (MITS) Tredia, Mitsubishi + + + + + Micra + + + + + (LINC) Mark IV, Lincoln-Continental; (ROV) Mark IV, Rover + + + + + (ALFA) Alfa GT6, Alfa Romeo + + + + + (KAIS) Manhattan, Kaiser; (OPEL) Manta, Opel (imported by Buick); (QVAL) Mangusta, Qvale Automotive Group + + + + + (SIN) Vogue, Singer + + + + + (BUIC) Le Sabre, Buick + + + + + (CADI) CTS, Cadillac + + + + + (FIAT) 131 Series, Fiat + + + + + (AUDI) Super 90, Audi; (VOLV) S90, Volvo + + + + + (MG) Princess 4-R, MG + + + + + Tucson + + + + + Mark LT + + + + + (AERO) Ultralights + + + + + (NISS) ALTRA-EV, Nissan + + + + + (PONI) Grand Parisienne, Pontiac (Canadian) (Also see make Pontiac) + + + + + (ACAD) Canso Series, Acadian (GM of Canada) + + + + + (KIA) Amanti, Kia Motors Corp. + + + + + (VOLK) Touareg, Volkswagen + + + + + (LEXS) SC300, Lexus + + + + + (ISU) Hombre (pickup), Isuzu + + + + + (SAA) 96, Saab + + + + + (CHEV) Trail Blazer, Chevrolet + + + + + (BMW) 630csi, BMW + + + + + (OPEL) Diplomat, Opel (imported by Buick) + + + + + (FERR) 456GT, Ferrari + + + + + (EXCL) SS Phaeton, Excalibur; (ROL) Silver Spirit, Rolls-Royce + + + + + (DODG) Seneca, Dodge; (NISS) Sentra, Nissan + + + + + (BUIC) Wildcat, Buick + + + + + Mazda 5 (Five) + + + + + (FORD) Ranch, Ford (see English, French, German, and Italian Ford) + + + + + (JEEP) CJ-6, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) CJ-6, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) CJ-6, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (EXCL) Cobra, Excalibur; (FORD) Cobra (also see make Shelby American), Ford (see English, French, German, and Italian Ford); (VOLV) Combi, Volvo + + + + + (SPEC) Go-Carts + + + + + (MG) 1100, MG + + + + + (ZCZY) Yugo (series), Zastavia (ZCZ-Yugoslavia) + + + + + (LNCI) Flaminia, Lancia + + + + + (LAMO) Silhouette, Lamborghini + + + + + (BMW) 318ti, BMW + + + + + (FORD) LTD, Ford (see English, French, German, and Italian Ford) + + + + + (BMW) M6, BMW + + + + + (METE) Lemoyne, Meteor (Canadian Mercury); (PONT) LeMans, Pontiac + + + + + (BMW) 850Ci, BMW + + + + + (FORD) F550, Ford (see English, French, German, and Italian Ford) + + + + + (AUDI) A2, Audi + + + + + (DODG) Aspen, Dodge; (FORD) Aspire, Ford (see English, French, German, and Italian Ford); (CHRY) Aspen, Chrysler + + + + + (CADI) 61 Series, Cadillac + + + + + (AMER) Rebel, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (LNDR) Discovery, Land Rover + + + + + (ENGF) Squire, English Ford (British); (FORD) Squire (Falcon or Fairlane), Ford (see English, French, German, and Italian Ford) + + + + + (ACAD) Invader Series, Acadian (GM of Canada); (BUIC) Invicta, Buick + + + + + (VOLK) Touran, Volkswagen + + + + + (VOLK) Scirocco, Volkswagen + + + + + (FORD) Crown Victoria, Ford + + + + + (BUIC) Century, Buick + + + + + (EGIL) Vision, Eagle; (OLDS) Vista Cruiser, Oldsmobile + + + + + (PONT) Tempest GT0, Pontiac + + + + + (CHEV) Chevelle, Concours (Chevelle only), Deluxe (Chevelle), Greenbrier (Chevelle), Nomad (Chevelle), Chevrolet + + + + + (FIAT) 124 Series, Fiat + + + + + (GMC) Typhoon, General Motors Corp.; (RAMB) Typhoon, Rambler (mfd. prior to 1966; 1966 and later Ramblers - see make American Motors) + + + + + (DATS) 1200, Datsun; (FIAT) 1200, Fiat; (SIM) 120, Simca; (TRIU) 1200, Triumph; (VOLK) 1200, Volkswagen + + + + + (CHEV) Nova (Chevy II & Concours), Chevrolet + + + + + (PLYM) GTX, Plymouth + + + + + (FERR) 206, Ferrari + + + + + (LNCI) Beta Series, Lancia + + + + + (DATS) 810, Datsun + + + + + (ENVY) Epic, Envoy; (CHEV) Epica, LS & LT, Chevrolet + + + + + (KAIS) Dragon, Kaiser + + + + + (BMW) 200, BMW + + + + + (ENGF) Lotus, English Ford (British) + + + + + (PONT) Sunfire, Pontiac + + + + + (SUBA) XT6, Subaru + + + + + (EGIL) Talon, Eagle; (TLCC) Talbo, TLC Carrossiers; (TLCC) Talbo Lago, TLC Carrossiers + + + + + (EXCL) JAC 427 Cobra, Excalibur + + + + + (AUDI) V-8, Audi + + + + + (FORD) Econoline 100, Ford (see English, French, German, and Italian Ford); (TOYT) Echo, Toyota + + + + + (CADI) Cimarron, Cadillac + + + + + Gran Sport + + + + + (ALFA) Giulia Spider, Alfa Romeo + + + + + (BMW) 3.0 Si, BMW + + + + + (NISS) Axxess, Nissan + + + + + (ROL) Silver Shadow, Rolls-Royce + + + + + (AUST) Cooper "S", Austin + + + + + (VACR) M12 (sport coupe), Vector Aeromotive Corp. + + + + + (INFI) I35, Infinit + + + + + (LEXS) RX330, Lexus + + + + + (FORD) F450, Ford (see English, French, German, and Italian Ford) + + + + + (SPEC) Golf Carts + + + + + (AMER) Sportabout, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (BUIC) Sportswagon, Buick; (VOLV) Sport, Volvo + + + + + (NISS) Frontier, Nissan + + + + + (CITR) AM16, Citroen + + + + + (PONT) G6, Pontiac + + + + + (FIAT) 1500, Fiat; (PORS) 1500, Porsche; (VOLK) 1500, Volkswagen + + + + + (TRIU) TR8, Triumph + + + + + (DODG) Colt (imported), Dodge; (PLYM) Colt (Canadian), Plymouth + + + + + (DODG) Omni (also 024), Dodge + + + + + (PLYM) Reliant, Plymouth + + + + + DTS (Replaced DeVille Model Name) + + + + + (JAGU) XJ, Jaguar + + + + + (AUDI) 2000 TT-Coupe, 2000 TT-Roadster, Audi + + + + + (AUDI) A8, Audi + + + + + Spyder + + + + + (BMW) 550i, BMW + + + + + (STLG) 825, Sterling; (GLBL) E825, Global Electric Motorcars + + + + + (EGIL) Summit, Eagle + + + + + C55, CLS55 + + + + + (MERZ) CLK320, Mercedes-Benz + + + + + (PONT) T-1000, Pontiac; (TOYT) T-100, Toyota + + + + + (FORD) F650 Super Crew, Ford + + + + + CL65 + + + + + (OPEL) Rekord, Opel (imported by Buick) + + + + + (CHRY) Cirrus, Chrysler + + + + + (DAEW) Nubira, Daewoo + + + + + (DKW) Vemag, DKW + + + + + (TOYT) Tercel, Toyota + + + + + (PLYM) Cricket (imported), Plymouth + + + + + (DODG) 880 Series, Dodge + + + + + (PONT) Pursuit, Pontiac + + + + + (LNDR) Freelander, Land Rover; (FORD) Freestar, Ford + + + + + (LAMO) Miura SV, Lamborghini + + + + + (LEXS) GS400, Lexus + + + + + (BORG) Bel Air, Borgward; (CHEV) Bel Air, Chevrolet; (PLYM) Belvedere, Plymouth + + + + + (BMW) 520, BMW + + + + + (MERC) Commuter, Mercury + + + + + (ROV) 3 Litre, Rover + + + + + (CADI) 60 Series, Cadillac + + + + + (GMC) Denali, General Motors Corp. + + + + + (JEEP) CJ-8, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) CJ-8, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) CJ-8, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (PORS) 1300, Porsche; (SUBA) 1300 Series, Subaru; (TRIU) 1300, Triumph; (VOLK) 1300, Volkswagen + + + + + (FORD) Focus, Ford (see English, French, German, and Italian Ford) + + + + + (LEXS) LS430, Lexus + + + + + (SKOD) Octavia, Skoda + + + + + (KIA) Spectra, Kia Motors Corp. + + + + + (AMER) Rambler Classic, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (VAUX) Epic, Vauxhall + + + + + (JAGU) XK Series, Jaguar + + + + + L300 + + + + + (CHEV) Malibu Maxx + + + + + (LEXS) SC400, Lexus; (VOLV) S40, Volvo + + + + + (FORD) F-150XLT (has third door on passenger side), Ford (see English, French, German, and Italian Ford) + + + + + (DKW) Audi, DKW + + + + + (MG) MGC/GT, MG + + + + + (MERC) Mystique, Mercury + + + + + (BMW) 740i, BMW + + + + + (DODG) Durango, Dodge + + + + + (DODG) Pioneer, Dodge + + + + + (PEUG) 405, Peugeot + + + + + (INFI) M30, Infiniti + + + + + (CHEV) C/K 2500, Chevrolet + + + + + (RENA) R-17, Renault + + + + + (CITR) 2CV, Citroen + + + + + (CHEV) Chevy II, Chevrolet + + + + + Reno + + + + + (AMER) AMX, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (MERZ) CL600, Mercedes-Benz + + + + + (CHRY) Le Baron (for vehicle year 1978 or later), Chrysler + + + + + (FORD) Country Squire, Ford (see English, French, German, and Italian Ford); (PLYM) Conquest (vehicle years 1984-1986), Plymouth + + + + + (LAMO) Espada, Lamborghini; (LOTU) Esprit, Lotus; (PANZ) Esperante, Panoz + + + + + (DATS) 200SX, Datsun + + + + + (ENGF) Perfect, English Ford (British) + + + + + (PEUG) 403, Peugeot + + + + + (SUBA) DL, Subaru; (VOLV) DL, Volvo + + + + + (MITS) Mighty Max, Mitsubishi; (TOYT) Matrix (sport wagon), Toyota + + + + + (OLDS) Omega, Oldsmobile + + + + + (GMC) Envoy, General Motors Corp.; (VAUX) Envoy, Vauxhall + + + + + (MERC) Marauder, Mercury + + + + + (BENT) Turbo R, Bentley + + + + + (MERZ) 240 Series, Mercedes-Benz; (NISS) 240SX, Nissan; (VOLV) 240 Series, Volvo + + + + + Trucks (including heavy-duty trucks, buses, motorized homes, etc.) + + + + + (MAZD) 626, Mazda + + + + + (ALFA) GTV6 2.5, Alfa Romeo + + + + + SL65 + + + + + (RENA) Dauphine, Renault + + + + + (HOND) Civic (and CRX), Del Sol, Honda + + + + + (SUBA) GL, Subaru; (VOLV) GL, Volvo + + + + + (ASTO) DB-5, Aston Martin + + + + + (MAZD) 618, Mazda + + + + + (FORD) Explorer, Ford (see English, French, German, and Italian Ford) + + + + + (VOLK) Rabbit, Volkswagen + + + + + (MERZ) ML350, Mercedes-Benz; (INFI) M35, M35 Sport, M35 X, Infiniti + + + + + (MAZD) 808 Series (piston engine), Mazda + + + + + (MERZ) C230, Mercedes-Benz + + + + + (PONT) 2+2, Pontiac + + + + + (HYUN) Tiburon, Hyundai + + + + + (MERZ) Gelaendewagen (G-Wagen), Mercedes-Benz + + + + + (DODG) Stratus, Dodge; (FORD) Starliner, Ford (see English, French, German, and Italian Ford); (LINC) Standard, Lincoln-Continental; (MITS) Starion, Mitsubishi; (NASH) Statesman, Nash; (NISS) Stanza, Nissan; (OLDS) Starfire, Oldsmobile; (PONT) Star Chief, Pontiac; (PORS) Standard, Porsche; (SUBA) Standard, Subaru; (TOYT) Starlet, Toyota; (TRIU) Stag, Triumph + + + + + (IMPE) Le Baron (for vehicle year thru 1975), Imperial (for vehicle years 1955-1983, use VMA/IMPE; for vehicle years prior to 1955 and vehicle years 1990-1993, see make Chrysler) + + + + + (MERZ) G55, Mercedes-Benz + + + + + (PLYM) Cranbrook, Plymouth + + + + + (PEUG) 604, Peugeot + + + + + (ALFA) Spider Series, Alfa Romeo; (AMER) Spirit, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (DODG) Spirit, Dodge; (FIAT) Spider Series, Fiat; (NSU) Spider (Wankel), Nsu Prinz; (PINI) Spidereuropa, Pinifarina; (TRIU) Spitfire, Triumph + + + + + Armada (Formerly Pathfinder Armada) + + + + + (VOLV) 245 Series, Volvo + + + + + (KIA) Avella, Kia Motors Corp.; (TOYT) Avensis, Toyota + + + + + (HYUN) XG, Hyundai + + + + + (MORG) Plus 8 Series, Morgan + + + + + (DATS) LiL Hustler, Datsun + + + + + (PLYM) Trail Duster, Plymouth + + + + + (MITS) Endeavor, Mitsubishi + + + + + (TOYT) Corolla, Toyota + + + + + (ALFA) Giulietta, Alfa Romeo + + + + + (JENS) Interceptor, Jensen; (ACUR) Integra, Acura; (DODG) Intrepid, Dodge; (OLDS) Intrigue, Oldsmobile; (CHRY) Intrepid, Chrysler + + + + + (AERO) Blimp + + + + + (LOTU) Europa, Lotus; (VOLK) Eurovan, Volkswagen + + + + + (OPEL) Luxus, Opel (imported by Buick); (VANG) Luxury, Vanguard (Canada) + + + + + (MG) Midget, MG + + + + + (ATV) Tracks and Wheels; (SNOW) Tracks and Wheels, Snowmobiles + + + + + (AERO) Propeller Driven; (FORD) Probe, Ford (see English, French, German, and Italian Ford); (MAZD) Familia, Protege, Mazda + + + + + (BMW) X5, BMW + + + + + (MERZ) SLK320 Coupe/Roadster, Mercedes-Benz + + + + + (VOLK) 113, Volkswagen + + + + + (CHEV) Kingswood, Chevrolet + + + + + (MORR) Traveller, Morris + + + + + (PEUG) 404, Peugeot + + + + + (CHRY) Laser, Chrysler; (FORD) Laser (foreign and Puerto Rican distribution only), Ford (see English, French, German, and Italian Ford); (PLYM) Laser, Plymouth + + + + + (PLYM) Prowler, Plymouth + + + + + (BUIC) Ranier, Buick + + + + + (MAZD) B2200, Mazda + + + + + (GMC) Safari, General Motors Corp.; (PONT) Safari, Pontiac + + + + + (MG) MGA, MG + + + + + (PONI) Firefly, Pontiac (Canadian) (Also see make Pontiac) + + + + + (TRIU) TR7, Triumph + + + + + (SUBA) Justy, Subaru + + + + + (SNOW) Skis and Tracks, Snowmobiles + + + + + (CHRY) PT Cruiser, Chrysler; (STU) Cruiser, Studebaker + + + + + (PLYM) Caravelle, Plymouth + + + + + (CHEV) Cobal, Chevrolet + + + + + (ISU) Amigo, Isuzu + + + + + (CHEV) Uplander (Crossover Sport Van), Chevrolet + + + + + (BMW) 540, BMW + + + + + (DODG) Ram 3500 (pickup), Dodge; (LEXS) RX350, Lexus; (MERZ) R350 (Sport Wagon), Mercedes Benz + + + + + Lancer Evolution + + + + + (EXCL) SS Roadster, Excalibur; (CHEV) SSR, Chevrolet + + + + + (CHEV) C/K 3500, Chevrolet; (MERZ) C350, Mercedes Benz + + + + + HU3 + + + + + (BMW) 323i, BMW; (MAZD) 323, Mazda + + + + + (CHEV) Lumina APV, Chevrolet + + + + + (ACAD) Beaumont Series, Acadian (GM of Canada) + + + + + (JEEP) J-20, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) J-20, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) J-20, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (PONT) J2000, Pontiac + + + + + (MAZD) 6 (Six), Mazda + + + + + (MG) TF Series, MG + + + + + Azera + + + + + (MERC) Lynx, Mercury + + + + + (HYUN) Pony, Hyundai + + + + + (PONT) Fiero, Pontiac + + + + + (METE) Rideau, Meteor (Canadian Mercury) + + + + + (OLDS) F-85, Oldsmobile + + + + + (INFI) G20, Infiniti + + + + + (PACK) Balboa, Packard + + + + + (JAGU) 3.4 Litre, Jaguar + + + + + (CHEV) Venture (minivan), Chevrolet; (FREF) Vendome, French Ford; (PONT) Ventura, Pontiac + + + + + (CHEV) Aveo, Chevrolet + + + + + (BREM) Maxi-Taxi, Bremen Sport Equipment, Inc. (Bremen, IN); (DATS) Maxima, Datsun; (NISS) Maxima, Nissan + + + + + (PLYM) Arrow (imported), Plymouth + + + + + (TRIU) Herald, Triumph + + + + + (AMER) Medallion (through vehicle year 1987), American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (EGIL) Medallion (vehicle year 1988), Eagle; (MERC) Medalist, Mercury + + + + + (MODE) Model A, Model A and Model T Motor Car Reproduction Corp. + + + + + (VOLV) XC70, Volvo + + + + + (CHEV) C/K 1500, Chevrolet + + + + + (PORS) 356, Porsche + + + + + (ALFA) Alfetta GT, Alfa Romeo + + + + + (LINC) LS, Lincoln-Continental; (STRN) LS-Sedan, Saturn + + + + + (MERZ) E300, Mercedes-Benz + + + + + (LAMO) Jarma, Lamborghini + + + + + (SUBA) XT Coupe, Subaru + + + + + (JAGU) "E" Type, Jaguar + + + + + (AMGN) Hummer, AM General Corp.; (HUMM) Hummer, HUMMER + + + + + (OLDS) Cutlass/Ciera, Supreme, Oldsmobile + + + + + (ALFA) Arna, Alfa Romeo; (AMER) American, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (BENT) Arnage, Bentley; (RAMB) American (AME for reference only), Rambler (mfd. prior to 1966; 1966 and later Ramblers - see make American Motors) + + + + + (CHEV) Luv, Chevrolet + + + + + (PONT) Grand Ville, Pontiac + + + + + (FORD) Brewster (antique vehicle), Ford + + + + + (KIA) Sorrento, Kia + + + + + (PLYM) Breeze, Plymouth + + + + + (MASE) Indy, Maserati + + + + + (NISS) NX, Nissan + + + + + (ZMCC) Golden Spirit, Zimmer Motor Car Co. + + + + + Freestyle + + + + + (JEEP) CJ-5, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) CJ-5, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) CJ-5, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (DODG) Ram 2500 (pickup), Dodge + + + + + (CHEV) Confederate (antique vehicle), Chevrolet + + + + + (CADI) Eldorado, Cadillac + + + + + (SPEC) Motorized Ride-On Toys + + + + + (BUIC) Rendezvous, Buick + + + + + (ENGF) Mark II, English Ford (British); (LINC) Mark II, Lincoln-Continental + + + + + (BMW) 318i, BMW + + + + + (FERR) 208, Ferrari + + + + + (KIA) Sephia, Kia Motors Corp. + + + + + (MAZD) Miata (MX5), Merlot Mica (Miata), Mazda + + + + + (BEJE) Gang Star, Beijing Jeep + + + + + (BMC) Princess, B M C; (CHEV) Prism (beginning vehicle year 1998), Chevrolet; (GEO) Prizm, GEO; (NSU) Prinz, Nsu Prinz; (TOYT) Prius, Toyota + + + + + (FORD) Country Sedan, Ford (see English, French, German, and Italian Ford); (METE) Country Sedan, Meteor (Canadian Mercury) + + + + + (LNCI) Flavia, Lancia + + + + + (SUBA) Brat, Subaru + + + + + (FORD) Sunliner, Ford (see English, French, German, and Italian Ford); (PLYM) Sundance, Plymouth; (PONT) Sunbird, Pontiac; (SOLE) Sunrise, Solectria + + + + + (INFI) QX56, Infiniti + + + + + (MAZD) 929, Mazda + + + + + (JAGU) XK8, Jaguar + + + + + (DODG) Raider, Dodge + + + + + (LAMO) Countach, Lamborghini; (MERC) Cougar, Mercury + + + + + (FORD) 7 Litre, Ford (see English, French, German, and Italian Ford) + + + + + (PONT) Montana, Pontiac + + + + + (PACK) Patrician, Packard; (JEEP) Patriot, Jeep + + + + + (MERZ) 560 Series, Mercedes-Benz + + + + + (MG) Sports Sedan, MG + + + + + (NISS) Quest, Nissan + + + + + (FORD) Frontenac, Ford (see English, French, German, and Italian Ford) + + + + + (AUDI) A4, Audi + + + + + (SIM) Etoile, Simca + + + + + (LEXS) LX470, Lexus + + + + + (JAGU) 420, Jaguar; (MASE) 4200 GT, Maserati; (MERZ) 420 Series, Mercedes-Benz + + + + + (JAGU) XJ8, Jaguar + + + + + (BMW) 2800 Series, BMW; (DATS) 280Z, Datsun; (MERZ) 280 Series, Mercedes-Benz; (MERZ) SLK280, Mercedes - Benz; (ISU) i280, Isuzu + + + + + (MITS) Outlander, Mitsubishi ; (STRN) Outlook, Saturn; (SUBA) Outback, Subaru + + + + + (OLDS) Standard, Oldsmobile + + + + + (MONA) Richelieu, Monarch + + + + + (CHEV) Colorado, Chevrolet + + + + + (VOLK) Microbus, Volkswagen + + + + + (OLDS) Silhouette, Oldsmobile + + + + + (DODG) Ram 2500 (van), Dodge + + + + + (JEEP) Dakar, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) Dakar, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) Dakar, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (DODG) Dakota, Dodge + + + + + (BUIC) California, Buick; (CADI) Calais, Cadillac; (OLDS) Calais, Oldsmobile; (DODG) Caliber, Dodge + + + + + (DATS) 311, Datsun + + + + + (VOLV) PV444, Volvo + + + + + (CHEV) Citation, Chevrolet; (EDSE) Citation, Edsel + + + + + (INFI) M45, Infiniti + + + + + 360 Challenge Stradale + + + + + (MERZ) E500, Mercedes-Benz + + + + + (JAGU) XJ40, Jaguar + + + + + (PONT) Firebird, Firehawk, Trans Am (Firebird), Pontiac + + + + + (INFI) FX35, Infiniti + + + + + (EDSE) Villager, Edsel; (MERC) Villager, Mercury + + + + + (SUZI) Samurai, Suzuki + + + + + (FORD) Think City (Elec.Veh. Model Year 2002), Ford + + + + + (GAZ) Volga, GAZ; (PLYM) Volare, Plymouth + + + + + (AERO) Helicopters and other Rotor Wing (or rotary- blade drive aircraft) + + + + + (TOYT) Tacoma, Toyota + + + + + (CHEV) Corsica, Chevrolet + + + + + (AMER) Ambassador, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER); (NASH) Ambassador, Nash; (RAMB) Ambassador, Rambler (mfd. prior to 1966; 1966 and later Ramblers - see make American Motors) + + + + + (ROL) Silver Seraph, Rolls-Royce + + + + + (CADI) Fleetwood, Cadillac; (CHEV) Fleetline, Chevrolet + + + + + (MAZD) MX3, Mazda + + + + + (ROV) Rover 45, Rover + + + + + (MASE) Coupe/Coupe GT, Maserati + + + + + (PONT) Grand AM, Pontiac + + + + + (DODG) Demon (Dart), Dodge + + + + + (DODG) Wayfarer, Dodge + + + + + DB9 + + + + + (FORD) Fairmont, Ford (see English, French, German, and Italian Ford) + + + + + (FIAT) 128 Series, Fiat + + + + + (TOYT) Sequoia, Toyota + + + + + (KIA) RIO, Kia + + + + + Fit + + + + + (VOLK) Kombi, Volkswagen + + + + + (BMW) 2002 Series, BMW + + + + + (JAGU) Vanden Plas, Jaguar; (ASTO) Vantage, Aston Martin; (GMC) Vandura, General Motors Corp. + + + + + (PORS) 912, Porsche + + + + + (JEEP) Wrangler, Jeep (for vehicle years 1989 to present, use VMA/JEEP); (JEP) Wrangler, Jeep (for vehicle years prior to 1970, use VMA/JEP); (AMER) Wrangler, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (BMW) 650Ci, BMW; (BMW) 650i, BMW + + + + + (LNDR) Defender 90, Defender 110, Land Rover + + + + + (JAGU) 2.4 Litre, Jaguar + + + + + (AVTI) Series B, Avanti + + + + + (ASVE) Assembled Vehicles + + + + + (ZMCC) Quick Silver, Zimmer Motor Car Co. + + + + + (BORG) Isabella, Borgward + + + + + (PORS) 944, Porsche + + + + + (VOLV) 780 Series, Volvo + + + + + (FERR) Barchetta (or F130), F130 (Barchetta), Ferrari; (PLYM) Barracuda, Plymouth + + + + + (MERZ) ML320 (sport utility), Mercedes-Benz + + + + + (MERZ) CLK350, Mercedes Benz + + + + + (LINC) LS6, Lincoln-Continental + + + + + (MERZ) CL500, Mercedes-Benz + + + + + SLK55 + + + + + (MESS) Tiger, Messerschmitt; (ROOT) Tiger, Rootes; (SUNB) Tiger, Sunbeam + + + + + (MAZD) RX2 (rotary engine), Mazda + + + + + (AMER) Rambler American, American Motors (see make Rambler for Ramblers mfd. prior to 1966), Jeep (for vehicle years 1970-1988, use VMA/AMER) + + + + + (ENGF) Zodiac, English Ford (British) + + + + + (BMW) 528i, BMW + + + + + + + + + + + + + + + + TrencherAlso known as a ditcher + + + + + Potato Digger + + + + + Garbage or Refuse + + + + + Asphalt Distributor + + + + + Welder + + + + + Utility + + + + + Stump Grinder + + + + + PaverAlso known as a finisher or roadsurfacer. + + + + + Drill, RockAlso known as a drifter drill. + + + + + Hardtop, 4 door. + + + + + Brush Chipper + + + + + Loader + + + + + Beverage Truck + + + + + Moped + + + + + Flatbed or Platform + + + + + HouseMobile home + + + + + Harvester + + + + + Corn Picker + + + + + Backhoe + + + + + Touring Car. + + + + + Twin-Engine, Propeller + + + + + Construction Signal + + + + + Blimp + + + + + Mower, Riding or Garden Tractor + + + + + Tanker + + + + + ShovelAlso known as a power or steamshovel. + + + + + Crane + + + + + SweeperAlso known as a power broom usedto clean streets and parking lots + + + + + Enclosed Body, Removable Enclosure + + + + + GeneratorEnter as a part, if not permanentlymounted. + + + + + Lift Boom (personnel)Also known as an orchard or cherrypicker. + + + + + Log SkidderAlso known as a grappler skidder. + + + + + Ambulance + + + + + Hopper + + + + + Pickup with mounted camperenter as a part or add-on part + + + + + Polealso known as logging trailer-usedto transport logs and pipes + + + + + Lowboy or Lowbed + + + + + Minicycle + + + + + Flotation ChassisAlso known as implement carrier + + + + + Hatchback, 4 door. + + + + + Light Tower (Typically used around or near construction sites and powered by a generator.) + + + + + Enclosed Body, Nonremovableenclosure + + + + + Pallet + + + + + Semiuse only when the specific bodystyle of the semi-trailer isunknown + + + + + Snowmobile + + + + + Mower-ConditionerFor grass or hay + + + + + Armored Truck + + + + + Campingalso known as camper or traveltrailer + + + + + Dump Trailer + + + + + LogUsed to transport logs, poles, orpipe. May be self loading or mayhave a grappling arm or jammer. + + + + + SEDAN, 4 DOOR; TRUCK/PICK-UP 4 DOOR + + + + + Field ChopperAlso known as a sileage cutter + + + + + Snowblower + + + + + Retractable Hardtop. + + + + + Boat + + + + + Bus + + + + + Helicopter + + + + + Coupe. Use this code when unable to determine if vehicle is a two-door sedan or a two-door hardtop. + + + + + Vacuum CleanerHeavy duty ride-on type enter as apart, if not permanently mounted + + + + + Bulk AgricultureBulk transport of raw vegetables.May have live floor, belt, or tiphead. + + + + + Tractor Truck, Gasoline + + + + + Ultralight (including hang gliders) + + + + + Motorbike + + + + + Flatrack + + + + + Tractor Truck, Diesel + + + + + Well Driller + + + + + Detasseling Equipment + + + + + Tractor, Wheel Type + + + + + CombineAlso known as a grain harvester + + + + + Sprayer + + + + + SedanUse this code only if the number ofdoors is unknown. + + + + + Unpublished style of ConstructionEquipmentExplain style in the MIS field + + + + + Backhoe/Loader + + + + + SawUsed in cutting asphalt, concrete,or masonry. + + + + + Horse + + + + + Refrigerated Vanalso known as reefer + + + + + Wagonalso known as Gondola, Cart, orContainer + + + + + Stake or Rack + + + + + Striper + + + + + Tri-Engine, Propeller + + + + + Wood Splitter + + + + + Auto Tow DollyTwo-wheel towing equipment + + + + + Glass Rack + + + + + Hydraulic Dump + + + + + Sailplane + + + + + Lunch Wagon + + + + + Hot Air Ballon + + + + + Tractor, Track Type + + + + + Windrower + + + + + Concrete mixer + + + + + Air CompressorShould be entered as a part if notif not permanently mounted. + + + + + Hardtop. This code is used only when the number of doors is unknown. + + + + + Auxiliary Dolly + + + + + Prime MoverAlso known as a road packer. + + + + + Bulldozer + + + + + Carry-allrugged trail and pleasure vehicles(e.g., Blazaer, Bronco, Jeep, etcetc.) + + + + + Livestock Rack + + + + + Multi-wheeled vehicleManufactured for off-road use, butbut licensed as street legal,e.g., 3-wheel mo + + + + + Single-Engine, Propeller + + + + + Chassis and Cab + + + + + 3-DoorSome truck makes will have twodoors on the drivers side andone on the passenger side. Otherm + + + + + Pickup + + + + + Convertible + + + + + Hay Baler + + + + + Motorcycle Trailer + + + + + Grain + + + + + Motorscooter + + + + + Hammer + + + + + RollerAlso known as a compactor. + + + + + Grader + + + + + Vanette + + + + + Minibike + + + + + Converter Gear + + + + + Roadster. + + + + + Fire Truck + + + + + Sedan, 2 door + + + + + Cotton Picker + + + + + Coach. + + + + + Law Enforcement + + + + + Station Wagon + + + + + Open Body + + + + + Hay Bale Loader + + + + + Tri-Engine, Jet + + + + + Limousine + + + + + Multi-Engine, Propeller + + + + + Multi-Engine, Jet + + + + + Fork LiftAlso known as a lift truck. + + + + + Cotton Stripper + + + + + Tent Trailer + + + + + Tow Truck/Wrecker + + + + + Search and Rescue + + + + + Vanincludes open or closed top boxtrailers + + + + + Motorized Home + + + + + Single-Engine, Jet + + + + + Scraper + + + + + Aerial Platform + + + + + Hardtop, 2 door. + + + + + Hearse + + + + + Biohazard + + + + + Fertilizer SpreaderEnter as a part if not permanentlymounted + + + + + Dump + + + + + Unpublished Style of Farm Equipment + + + + + ExcavatorAlso known as a digger. + + + + + Hatchback/Fastback. Use this code for a vehicle that has a rear door, and the number of side doors is unknown. + + + + + Twin-Engine, Jet + + + + + Hatchback, 2 door. + + + + + Tree HarvesterAlso known as a feller-buncher + + + + + Van Camper + + + + + Auto Carrier + + + + + Motorcycle + + + + + Buggy, ConcreteAlso known as a power cart. + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/fips_10-4/2.0/constraint-schema-transform.xsl b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/fips_10-4/2.0/constraint-schema-transform.xsl new file mode 100644 index 000000000..db8eaa2d8 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/fips_10-4/2.0/constraint-schema-transform.xsl @@ -0,0 +1,904 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/fips_10-4/2.0/fips_10-4.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/fips_10-4/2.0/fips_10-4.xsd new file mode 100644 index 000000000..8f11e5eeb --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/fips_10-4/2.0/fips_10-4.xsd @@ -0,0 +1,1352 @@ + + + + Countries, dependencies, areas of special sovereignty, and their principal administrative divisions from the Federal Information Processing Standards (FIPS) 10-4. + + true + + + + + + + + + PORTUGAL + + + + + WEST BANK + + + + + BENIN + + + + + ANTARCTICA + + + + + AMERICAN SAMOA + + + + + PAKISTAN + + + + + SURINAME + + + + + UNDERSEA FEATURES + + + + + COSTA RICA + + + + + ALGERIA + + + + + WALLIS AND FUTUNA + + + + + GUYANA + + + + + EUROPA ISLAND + + + + + ITALY + + + + + TOGO + + + + + PERU + + + + + COLOMBIA + + + + + MALAWI + + + + + FRENCH POLYNESIA + + + + + VANUATU + + + + + SWITZERLAND + + + + + LIBYA + + + + + ARGENTINA + + + + + SEYCHELLES + + + + + GERMANY + + + + + MARSHALL ISLANDS + + + + + BRUNEI + + + + + SOMALIA + + + + + TURKEY + + + + + BAKER ISLAND + + + + + CAMBODIA + + + + + HUNGARY + + + + + HONDURAS + + + + + ZIMBABWE + + + + + ASHMORE AND CARTIER ISLANDS + + + + + CHINA + + + + + FRANCE + + + + + INDIA + + + + + SINGAPORE + + + + + FINLAND + + + + + RWANDA + + + + + OCEANS + + + + + BURMA + + + + + ESTONIA + + + + + COTE D'IVOIRE + + + + + CAPE VERDE + + + + + TONGA + + + + + CAYMAN ISLANDS + + + + + JAMAICA + + + + + CONGO + + + + + ALBANIA + + + + + LITHUANIA + + + + + TAJIKISTAN + + + + + MALI + + + + + NAVASSA ISLAND + + + + + SPRATLY ISLANDS + + + + + TURKMENISTAN + + + + + SVALBARD + + + + + RUSSIA + + + + + CUBA + + + + + BELARUS + + + + + EAST TIMOR + + + + + GABON + + + + + HONG KONG + + + + + BULGARIA + + + + + GUINEA + + + + + JOHNSTON ATOLL + + + + + IRAN + + + + + UGANDA + + + + + TRINIDAD AND TOBAGO + + + + + NETHERLANDS + + + + + JAPAN + + + + + SWEDEN + + + + + LEBANON + + + + + SAUDI ARABIA + + + + + MACAU + + + + + PUERTO RICO + + + + + ROMANIA + + + + + IRAQ + + + + + SAMOA + + + + + CZECH REPUBLIC + + + + + GHANA + + + + + FIJI + + + + + SPAIN + + + + + MOZAMBIQUE + + + + + CENTRAL AFRICAN REPUBLIC + + + + + UZBEKISTAN + + + + + GUAM + + + + + UNITED STATES VIRGIN ISLANDS + + + + + AZERBAIJAN + + + + + ETHIOPIA + + + + + NORWAY + + + + + JERSEY + + + + + JARVIS ISLAND + + + + + IRELAND + + + + + NO MAN'S LAND + + + + + BAHRAIN + + + + + EQUATORIAL GUINEA + + + + + COMOROS + + + + + LIECHTENSTEIN + + + + + GAZA STRIP + + + + + ISLE OF MAN + + + + + PARACEL ISLANDS + + + + + TUNISIA + + + + + EL SALVADOR + + + + + VENEZUELA + + + + + MEXICO + + + + + LATVIA + + + + + AUSTRIA + + + + + GUATEMALA + + + + + PHILIPPINES + + + + + HOWLAND ISLAND + + + + + CHAD + + + + + QATAR + + + + + CORAL SEA ISLANDS + + + + + KUWAIT + + + + + PALMYRA ATOLL + + + + + PAPUA NEW GUINEA + + + + + MIDWAY ISLANDS + + + + + BANGLADESH + + + + + MAURITANIA + + + + + ZAMBIA + + + + + PANAMA + + + + + BRITISH VIRGIN ISLANDS + + + + + VATICAN CITY + + + + + MAURITIUS + + + + + ERITREA + + + + + CROATIA + + + + + SAINT LUCIA + + + + + GIBRALTAR + + + + + VIETNAM + + + + + BRITISH INDIAN OCEAN TERRITORY + + + + + TAIWAN + + + + + GEORGIA + + + + + HAITI + + + + + LESOTHO + + + + + NORTH KOREA + + + + + MADAGASCAR + + + + + BURKINA FASO + + + + + GRENADA + + + + + TUVALU + + + + + NEW ZEALAND + + + + + BHUTAN + + + + + BOLIVIA + + + + + SWAZILAND + + + + + NIGERIA + + + + + ISRAEL + + + + + KINGMAN REEF + + + + + SIERRA LEONE + + + + + EGYPT + + + + + HEARD ISLAND AND MCDONALD ISLANDS + + + + + BAHAMAS, THE + + + + + JORDAN + + + + + CAMEROON + + + + + GREENLAND + + + + + NETHERLANDS ANTILLES + + + + + DOMINICA + + + + + JUAN DE NOVA ISLAND + + + + + ICELAND + + + + + SENEGAL + + + + + ARUBA + + + + + WESTERN SAHARA + + + + + CANADA + + + + + SAINT KITTS AND NEVIS + + + + + BASSAS DA INDIA + + + + + NAURU + + + + + SOLOMON ISLANDS + + + + + TURKS AND CAICOS ISLANDS + + + + + MONACO + + + + + INDONESIA + + + + + SAINT VINCENT AND THE GRENADINES + + + + + FRENCH SOUTHERN AND ANTARCTIC LANDS + + + + + COCOS (KEELING) ISLANDS + + + + + MARTINIQUE + + + + + ANGOLA + + + + + FAROE ISLANDS + + + + + GLORIOSO ISLANDS + + + + + GREECE + + + + + BOUVET ISLAND + + + + + SOUTH AFRICA + + + + + PALAU + + + + + TOKELAU + + + + + SAINT PIERRE AND MIQUELON + + + + + AUSTRALIA + + + + + SYRIA + + + + + NAMIBIA + + + + + FRENCH GUIANA + + + + + REUNION + + + + + BOTSWANA + + + + + KIRIBATI + + + + + MAYOTTE + + + + + BELIZE + + + + + NEW CALEDONIA + + + + + ARMENIA + + + + + OMAN + + + + + NIGER + + + + + ECUADOR + + + + + BARBADOS + + + + + MOLDOVA + + + + + NICARAGUA + + + + + SUDAN + + + + + BURUNDI + + + + + NORFOLK ISLAND + + + + + GUADELOUPE + + + + + SAINT HELENA + + + + + GUERNSEY + + + + + MACEDONIA + + + + + WAKE ISLAND + + + + + CHILE + + + + + TROMELIN ISLAND + + + + + ANDORRA + + + + + MALDIVES + + + + + KYRGYZSTAN + + + + + TANZANIA + + + + + NEPAL + + + + + UNITED KINGDOM + + + + + BOSNIA AND HERZEGOVINA + + + + + NIUE + + + + + MALTA + + + + + ANTIGUA AND BARBUDA + + + + + MONTENEGRO + + + + + URUGUAY + + + + + UKRAINE + + + + + UNITED ARAB EMIRATES + + + + + JAN MAYEN + + + + + LUXEMBOURG + + + + + PARAGUAY + + + + + GUINEA-BISSAU + + + + + UNITED STATES + + + + + KENYA + + + + + SRI LANKA + + + + + MOROCCO + + + + + KAZAKHSTAN + + + + + THAILAND + + + + + GAMBIA, THE + + + + + CYPRUS + + + + + CONGO, DEMOCRATIC REPUBLIC OF THE + + + + + SOUTH GEORGIA AND THE SOUTH SANDWICH ISLANDS + + + + + BRAZIL + + + + + SERBIA + + + + + DJIBOUTI + + + + + CLIPPERTON ISLAND + + + + + MALAYSIA + + + + + AFGHANISTAN + + + + + POLAND + + + + + YEMEN + + + + + MONTSERRAT + + + + + PITCAIRN ISLANDS + + + + + DENMARK + + + + + SOUTH KOREA + + + + + ANGUILLA + + + + + SAN MARINO + + + + + BERMUDA + + + + + LIBERIA + + + + + DOMINICAN REPUBLIC + + + + + CHRISTMAS ISLAND + + + + + MONGOLIA + + + + + SAO TOME AND PRINCIPE + + + + + FALKLAND ISLANDS (ISLAS MALVINAS) + + + + + SLOVAKIA + + + + + MICRONESIA, FEDERATED STATES OF + + + + + COOK ISLANDS + + + + + SLOVENIA + + + + + LAOS + + + + + NORTHERN MARIANA ISLANDS + + + + + BELGIUM + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/fips_6-4/2.0/constraint-schema-transform.xsl b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/fips_6-4/2.0/constraint-schema-transform.xsl new file mode 100644 index 000000000..d681bc47c --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/fips_6-4/2.0/constraint-schema-transform.xsl @@ -0,0 +1,1171 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/fips_6-4/2.0/fips_6-4.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/fips_6-4/2.0/fips_6-4.xsd new file mode 100644 index 000000000..a422ed92e --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/fips_6-4/2.0/fips_6-4.xsd @@ -0,0 +1,1797 @@ + + + + Counties and equivalent entities of the U.S., its possessions, and associated areas from the Federal Information Processing Standards (FIPS) 6-4. + + true + + + + + + + + + (02) Ketchikan Gateway, Alaska; (68) Jemo Island, Marshall Islands + + + + + (48) Young, Texas + + + + + (13) Morgan, Georgia; (21) Shelby, Kentucky; (29) Sullivan, Missouri; (48) Hemphill, Texas + + + + + (02) Southeast Fairbanks, Alaska + + + + + (48) Potter, Texas + + + + + (13) Treutlen, Georgia; (48) La Salle, Texas + + + + + (51) Hampton, Virginia + + + + + (48) Somervell, Texas + + + + + (13) Thomas, Georgia; (48) Knox, Texas + + + + + (13) White, Georgia; (48) McMullen, Texas + + + + + (01) Washington, Alabama; (05) Searcy, Arkansas; (12) Wakulla, Florida; (13) Gordon, Georgia; (17) Menard, Illinois; (18) Posey, Indiana; (19) Mills, Iowa; (20) Morton, Kansas; (21) Lee, Kentucky; (26) Ogemaw, Michigan; (27) Renville, Minnesota; (28) Smith, Mississippi; (29) Mercer, Missouri; (31) Nuckolls, Nebraska; (37) New Hanover, North Carolina; (39) Pickaway, Ohio; (40) Roger Mills, Oklahoma; (42) Westmoreland, Pennsylvania; (46) Walworth, South Dakota; (47) Morgan, Tennessee; (48) Donley, Texas; (55) Washburn, Wisconsin; (72) San Lorenzo, Puerto Rico + + + + + (48) Real, Texas; (68) Toke, Marshall Islands + + + + + (01) Autauga, Alabama; (04) Apache, Arizona; (05) Arkansas, Arkansas; (06) Alameda, California; (08) Adams, Colorado; (09) Fairfield, Connecticut; (10) Kent, Delaware; (11) District of Columbia, District of Columbia; (12) Alachua, Florida; (13) Appling, Georgia; (15) Hawaii, Hawaii; (16) Ada, Idaho; (17) Adams, Illinois; (18) Adams, Indiana; (19) Adair, Iowa; (20) Allen, Kansas; (21) Adair, Kentucky; (22) Acadia, Louisiana; (23) Androscoggin, Maine; (24) Allegany, Maryland; (25) Barnstable, Massachusetts; (26) Alcona, Michigan; (27) Aitkin, Minnesota; (28) Adams, Mississippi; (29) Adair, Missouri; (30) Beaverhead, Montana; (31) Adams, Nebraska; (32) Churchill, Nevada; (33) Belknap, New Hampshire; (34) Atlantic, New Jersey; (35) Bernalillo, New Mexico; (36) Albany, New York; (37) Alamance, North Carolina; (38) Adams, North Dakota; (39) Adams, Ohio; (40) Adair, Oklahoma; (41) Baker, Oregon; (42) Adams, Pennsylvania; (44) Bristol, Rhode Island; (45) Abbeville, South Carolina; (46) Armstrong, South Dakota; (47) Anderson, Tennessee; (48) Anderson, Texas; (49) Beaver, Utah; (50) Addison, Vermont; (51) Accomack, Virginia; (53) Adams, Washington; (54) Barbour, West Virginia; (55) Adams, Wisconsin; (56) Albany, Wyoming; (72) Adjuntas, Puerto Rico + + + + + (01) Calhoun, Alabama; (04) Mohave, Arizona; (05) Carroll, Arkansas; (06) Del Norte, California; (08) Chaffee, Colorado; (09) Windham, Connecticut; (12) Charlotte, Florida; (13) Bartow, Georgia; (16) Boise, Idaho; (17) Carroll, Illinois; (18) Carroll, Indiana; (19) Boone, Iowa; (20) Butler, Kansas; (21) Boone, Kentucky; (22) Bossier, Louisiana; (23) Lincoln, Maine; (24) Cecil, Maryland; (25) Hampshire, Massachusetts; (26) Barry, Michigan; (27) Brown, Minnesota; (28) Carroll, Mississippi; (29) Benton, Missouri; (30) Chouteau, Montana; (31) Boyd, Nebraska; (32) Lander, Nevada; (33) Rockingham, New Hampshire; (34) Gloucester, New Jersey; (35) Eddy, New Mexico; (36) Chemung, New York; (37) Bertie, North Carolina; (38) Burleigh, North Dakota; (39) Brown, Ohio; (40) Caddo, Oklahoma; (41) Curry, Oregon; (42) Bradford, Pennsylvania; (45) Berkeley, South Carolina; (46) Brule, South Dakota; (47) Cannon, Tennessee; (48) Austin, Texas; (49) Emery, Utah; (50) Lamoille, Vermont; (51) Augusta, Virginia; (53) Cowlitz, Washington; (54) Clay, West Virginia; (55) Calumet, Wisconsin; (56) Goshen, Wyoming; (72) Arroyo, Puerto Rico + + + + + (13) Liberty, Georgia; (17) Tazewell, Illinois; (18) Wells, Indiana; (19) Wapello, Iowa; (20) Sheridan, Kansas; (21) Nelson, Kentucky; (29) Reynolds, Missouri; (31) Wayne, Nebraska; (37) Union, North Carolina; (47) Washington, Tennessee; (48) Gray, Texas; (51) Stafford, Virginia + + + + + (48) Victoria, Texas + + + + + (24) Baltimore City, Maryland; (29) St Louis City, Missouri; (32) Carson City, Nevada; (51) Alexandria, Virginia + + + + + (01) Randolph, Alabama; (05) Poinsett, Arkansas; (06) Ventura, California; (08) San Juan, Colorado; (12) St Lucie, Florida; (13) Fannin, Georgia; (17) McHenry, Illinois; (18) Newton, Indiana; (19) Lee, Iowa; (20) Lyon, Kansas; (21) Jefferson, Kentucky; (22) Union, Louisiana; (26) Midland, Michigan; (27) Otter Tail, Minnesota; (28) Perry, Mississippi; (29) Lewis, Missouri; (30) Yellowstone, Montana; (31) Lincoln, Nebraska; (36) Ulster, New York; (37) McDowell, North Carolina; (39) Monroe, Ohio; (40) Okmulgee, Oklahoma; (42) Somerset, Pennsylvania; (46) Sanborn, South Dakota; (47) Macon, Tennessee; (48) Dallam, Texas; (51) Lunenburg, Virginia; (55) Sauk, Wisconsin; (72) Penuelas, Puerto Rico + + + + + (68) Ujae, Marshall Islands + + + + + (01) Morgan, Alabama; (05) Ouachita, Arkansas; (06) Tehama, California; (08) Rio Blanco, Colorado; (12) Pinellas, Florida; (13) Effingham, Georgia; (17) Lee, Illinois; (18) Miami, Indiana; (19) Johnson, Iowa; (20) Leavenworth, Kansas; (21) Henry, Kentucky; (22) St Tammany, Louisiana; (26) Marquette, Michigan; (27) Nicollet, Minnesota; (28) Noxubee, Mississippi; (29) Knox, Missouri; (30) Treasure, Montana; (31) Keya Paha, Nebraska; (36) Suffolk, New York; (37) Jones, North Carolina; (38) Wells, North Dakota; (39) Medina, Ohio; (40) Noble, Oklahoma; (42) Pike, Pennsylvania; (46) Pennington, South Dakota; (47) Lincoln, Tennessee; (48) Crane, Texas; (51) Lancaster, Virginia; (54) Wetzel, West Virginia; (55) Richland, Wisconsin; (72) Naguabo, Puerto Rico + + + + + (55) Menominee, Wisconsin + + + + + (05) Van Buren, Arkansas; (13) Hancock, Georgia; (17) Ogle, Illinois; (18) St Joseph, Indiana; (19) O\Brien, Iowa; (20) Osborne, Kansas; (21) Logan, Kentucky; (26) Presque Isle, Michigan; (27) Sherburne, Minnesota; (28) Tishomingo, Mississippi; (29) Morgan, Missouri; (31) Platte, Nebraska; (37) Pender, North Carolina; (39) Ross, Ohio; (40) Tillman, Oklahoma; (47) Putnam, Tennessee; (48) El Paso, Texas; (51) Patrick, Virginia; (55) Wood, Wisconsin; (72) Utuado, Puerto Rico + + + + + (13) Newton, Georgia; (21) Taylor, Kentucky; (29) Vernon, Missouri; (48) Hill, Texas + + + + + (01) Montgomery, Alabama; (05) Newton, Arkansas; (06) Sutter, California; (08) Pueblo, Colorado; (12) Pasco, Florida; (13) Echols, Georgia; (17) Lawrence, Illinois; (18) Martin, Indiana; (19) Jefferson, Iowa; (20) Lane, Kansas; (21) Henderson, Kentucky; (22) St Mary, Louisiana; (26) Manistee, Michigan; (27) Murray, Minnesota; (28) Newton, Mississippi; (29) Johnson, Missouri; (30) Toole, Montana; (31) Keith, Nebraska; (36) Steuben, New York; (37) Johnston, North Carolina; (38) Ward, North Dakota; (39) Marion, Ohio; (40) Muskogee, Oklahoma; (42) Philadelphia, Pennsylvania; (46) Moody, South Dakota; (47) Lewis, Tennessee; (48) Cottle, Texas; (51) King William, Virginia; (54) Webster, West Virginia; (55) Racine, Wisconsin; (72) Morovis, Puerto Rico + + + + + (51) Clifton Forge, Virginia + + + + + (48) Polk, Texas + + + + + (13) Murray, Georgia; (21) Simpson, Kentucky; (29) Taney, Missouri; (48) Henderson, Texas + + + + + (48) Trinity, Texas + + + + + (68) Mili, Marshall Islands + + + + + (13) Jenkins, Georgia; (17) Saline, Illinois; (18) Vermillion, Indiana; (19) Shelby, Iowa; (20) Rush, Kansas; (21) Menifee, Kentucky; (26) Wexford, Michigan; (27) Watonwan, Minnesota; (29) Platte, Missouri; (31) Sioux, Nebraska; (37) Scotland, North Carolina; (39) Warren, Ohio; (47) Sumner, Tennessee; (48) Gaines, Texas; (51) Rockingham, Virginia + + + + + (51) Danville, Virginia + + + + + (48) Van Zandt, Texas + + + + + (13) Paulding, Georgia; (21) Trimble, Kentucky; (29) Wayne, Missouri; (48) Hopkins, Texas; (70) Ngaremlengui, Palau + + + + + (74) Kingman Reef, U.S. Minor Outlying Islands + + + + + (01) Clarke, Alabama; (04) Yavapai, Arizona; (05) Cleveland, Arkansas; (06) Imperial, California; (08) Crowley, Colorado; (12) Dade, Florida; (13) Brantley, Georgia; (16) Camas, Idaho; (17) Clay, Illinois; (18) Crawford, Indiana; (19) Calhoun, Iowa; (20) Clark, Kansas; (21) Breathitt, Kentucky; (22) Catahoula, Louisiana; (23) Somerset, Maine; (24) Harford, Maryland; (25) Suffolk, Massachusetts; (26) Calhoun, Michigan; (27) Chisago, Minnesota; (28) Clay, Mississippi; (29) Caldwell, Missouri; (30) Fallon, Montana; (31) Cass, Nebraska; (34) Monmouth, New Jersey; (35) Lea, New Mexico; (36) Delaware, New York; (37) Cabarrus, North Carolina; (38) Dunn, North Dakota; (39) Clermont, Ohio; (40) Cimarron, Oklahoma; (41) Harney, Oregon; (42) Carbon, Pennsylvania; (45) Chesterfield, South Carolina; (46) Clark, South Dakota; (47) Claiborne, Tennessee; (48) Bee, Texas; (49) Kane, Utah; (50) Windham, Vermont; (51) Brunswick, Virginia; (53) Grant, Washington; (54) Greenbrier, West Virginia; (55) Dane, Wisconsin; (56) Natrona, Wyoming; (72) Caguas, Puerto Rico + + + + + (17) Woodford, Illinois; (20) Wichita, Kansas; (21) Rockcastle, Kentucky; (29) Shannon, Missouri; (48) Harrison, Texas + + + + + (48) Waller, Texas + + + + + (60) Rose Island, American Samoa; (68) Ailuk, Marshall Islands; (75) Trust Territory of the Pacific Islands, ; (78) St. Thomas, Virgin Islands of the U.S. + + + + + (01) Cullman, Alabama; (05) Drew, Arkansas; (06) Mariposa, California; (08) Fremont, Colorado; (12) Glades, Florida; (13) Candler, Georgia; (16) Fremont, Idaho; (17) Du Page, Illinois; (18) Floyd, Indiana; (19) Clayton, Iowa; (20) Doniphan, Kansas; (21) Carter, Kentucky; (22) Grant, Louisiana; (24) Washington, Maryland; (26) Dickinson, Michigan; (27) Faribault, Minnesota; (28) Grenada, Mississippi; (29) Christian, Missouri; (30) Jefferson, Montana; (31) Dakota, Nebraska; (35) Sandoval, New Mexico; (36) Herkimer, New York; (37) Clay, North Carolina; (38) Kidder, North Dakota; (39) Erie, Ohio; (40) Dewey, Oklahoma; (41) Linn, Oregon; (42) Dauphin, Pennsylvania; (45) Georgetown, South Carolina; (46) Douglas, South Dakota; (47) Dickson, Tennessee; (48) Brewster, Texas; (49) Summit, Utah; (51) Clarke, Virginia; (53) Lincoln, Washington; (54) Lincoln, West Virginia; (55) Grant, Wisconsin; (56) Washakie, Wyoming; (72) Coamo, Puerto Rico + + + + + (01) Jefferson, Alabama; (05) Lafayette, Arkansas; (06) San Diego, California; (08) Lincoln, Colorado; (12) Leon, Florida; (13) Columbia, Georgia; (16) Owyhee, Idaho; (17) Henry, Illinois; (18) Jasper, Indiana; (19) Greene, Iowa; (20) Greenwood, Kansas; (21) Franklin, Kentucky; (22) Ouachita, Louisiana; (26) Isabella, Michigan; (27) Lac Qui Parle, Minnesota; (28) Lamar, Mississippi; (29) Gasconade, Missouri; (30) Pondera, Montana; (31) Gosper, Nebraska; (36) Orleans, New York; (37) Gates, North Carolina; (38) Ransom, North Dakota; (39) Hocking, Ohio; (40) Kingfisher, Oklahoma; (42) Lawrence, Pennsylvania; (45) Oconee, South Carolina; (46) Jerauld, South Dakota; (47) Hawkins, Tennessee; (48) Cherokee, Texas; (51) Gloucester, Virginia; (53) Whatcom, Washington; (54) Pleasants, West Virginia; (55) Marathon, Wisconsin; (68) Bokak, Marshall Islands; (72) Jayuya, Puerto Rico + + + + + (13) Telfair, Georgia; (48) Kinney, Texas + + + + + (48) Webb, Texas + + + + + (48) San Saba, Texas + + + + + (13) Richmond, Georgia; (48) Jefferson, Texas + + + + + (13) Jasper, Georgia; (17) Richland, Illinois; (18) Tipton, Indiana; (19) Ringgold, Iowa; (20) Rice, Kansas; (21) Martin, Kentucky; (26) Van Buren, Michigan; (27) Wadena, Minnesota; (28) Winston, Mississippi; (29) Pettis, Missouri; (31) Seward, Nebraska; (37) Rowan, North Carolina; (39) Union, Ohio; (47) Smith, Tennessee; (48) Franklin, Texas; (51) Richmond, Virginia + + + + + (02) Haines, Alaska; (68) Erikub, Marshall Islands; (69) Rota, Northern Mariana Islands; (70) Kayangel, Palau; (74) Howland Island, U.S. Minor Outlying Islands + + + + + (35) Cibola, New Mexico + + + + + (51) Fredericksburg, Virginia + + + + + (01) Marshall, Alabama; (05) Monroe, Arkansas; (06) Solano, California; (08) Phillips, Colorado; (12) Orange, Florida; (13) Dougherty, Georgia; (17) Knox, Illinois; (18) Madison, Indiana; (19) Iowa, Iowa; (20) Kingman, Kansas; (21) Harlan, Kentucky; (22) St John The Baptist, Louisiana; (26) Luce, Michigan; (27) Mille Lacs, Minnesota; (28) Monroe, Mississippi; (29) Jackson, Missouri; (30) Stillwater, Montana; (31) Jefferson, Nebraska; (36) Schoharie, New York; (37) Hyde, North Carolina; (38) Towner, North Dakota; (39) Lucas, Ohio; (40) Marshall, Oklahoma; (42) Northampton, Pennsylvania; (46) Mellette, South Dakota; (47) Lake, Tennessee; (48) Concho, Texas; (51) James City, Virginia; (54) Tyler, West Virginia; (55) Polk, Wisconsin; (72) Maunabo, Puerto Rico + + + + + (48) Titus, Texas + + + + + (01) St Clair, Alabama; (05) Pope, Arkansas; (06) Yuba, California; (08) Sedgwick, Colorado; (12) Sarasota, Florida; (13) Floyd, Georgia; (17) Macon, Illinois; (18) Ohio, Indiana; (19) Louisa, Iowa; (20) Marion, Kansas; (21) Johnson, Kentucky; (22) Vernon, Louisiana; (26) Monroe, Michigan; (27) Pine, Minnesota; (28) Pontotoc, Mississippi; (29) Linn, Missouri; (31) Loup, Nebraska; (36) Washington, New York; (37) Madison, North Carolina; (39) Morgan, Ohio; (40) Ottawa, Oklahoma; (42) Susquehanna, Pennsylvania; (46) Spink, South Dakota; (47) Marion, Tennessee; (48) Dawson, Texas; (51) Mathews, Virginia; (55) Shawano, Wisconsin; (72) Quebradillas, Puerto Rico + + + + + (13) Jeff Davis, Georgia; (17) Rock Island, Illinois; (18) Union, Indiana; (19) Sac, Iowa; (20) Riley, Kansas; (21) Mason, Kentucky; (26) Washtenaw, Michigan; (27) Waseca, Minnesota; (28) Yalobusha, Mississippi; (29) Phelps, Missouri; (31) Sheridan, Nebraska; (37) Rutherford, North Carolina; (39) Van Wert, Ohio; (47) Stewart, Tennessee; (48) Freestone, Texas; (51) Roanoke, Virginia + + + + + (13) Webster, Georgia; (48) McCulloch, Texas + + + + + (48) Wood, Texas + + + + + (05) Union, Arkansas; (13) Hall, Georgia; (17) Moultrie, Illinois; (18) Rush, Indiana; (19) Muscatine, Iowa; (20) Osage, Kansas; (21) Livingston, Kentucky; (26) Ottawa, Michigan; (27) Scott, Minnesota; (28) Tippah, Mississippi; (29) Montgomery, Missouri; (31) Pierce, Nebraska; (37) Pasquotank, North Carolina; (39) Richland, Ohio; (40) Texas, Oklahoma; (47) Polk, Tennessee; (48) Ellis, Texas; (51) Page, Virginia; (55) Winnebago, Wisconsin; (72) Trujillo Alto, Puerto Rico + + + + + (13) Pierce, Georgia; (21) Washington, Kentucky; (29) Wright, Missouri; (48) Hudspeth, Texas + + + + + (48) Milam, Texas + + + + + (51) Manassas, Virginia + + + + + (01) Winston, Alabama; (05) Sevier, Arkansas; (12) Washington, Florida; (13) Greene, Georgia; (17) Monroe, Illinois; (18) Putnam, Indiana; (19) Monona, Iowa; (20) Neosho, Kansas; (21) Letcher, Kentucky; (26) Osceola, Michigan; (27) Rock, Minnesota; (28) Sunflower, Mississippi; (29) Mississippi, Missouri; (31) Pawnee, Nebraska; (37) Onslow, North Carolina; (39) Portage, Ohio; (40) Seminole, Oklahoma; (42) York, Pennsylvania; (46) Washington, South Dakota; (47) Overton, Tennessee; (48) Eastland, Texas; (51) Northumberland, Virginia; (55) Waukesha, Wisconsin; (72) Santa Isabel, Puerto Rico + + + + + (01) Colbert, Alabama; (05) Crawford, Arkansas; (06) Lake, California; (08) Dolores, Colorado; (12) Escambia, Florida; (13) Burke, Georgia; (16) Clark, Idaho; (17) Crawford, Illinois; (18) De Kalb, Indiana; (19) Cerro Gordo, Iowa; (20) Comanche, Kansas; (21) Caldwell, Kentucky; (22) East Baton Rouge, Louisiana; (24) Prince George\s, Maryland; (26) Chippewa, Michigan; (27) Cottonwood, Minnesota; (28) De Soto, Mississippi; (29) Carroll, Missouri; (30) Garfield, Montana; (31) Cheyenne, Nebraska; (32) White Pine, Nevada; (34) Salem, New Jersey; (35) Mora, New Mexico; (36) Franklin, New York; (37) Caswell, North Carolina; (38) Golden Valley, North Dakota; (39) Crawford, Ohio; (40) Cotton, Oklahoma; (41) Josephine, Oregon; (42) Clearfield, Pennsylvania; (45) Dillon, South Carolina; (46) Custer, South Dakota; (47) Crockett, Tennessee; (48) Borden, Texas; (49) Rich, Utah; (51) Caroline, Virginia; (53) King, Washington; (54) Harrison, West Virginia; (55) Dunn, Wisconsin; (56) Sheridan, Wyoming; (72) Catano, Puerto Rico + + + + + (70) Ngatpang, Palau + + + + + (05) Yell, Arkansas; (13) Heard, Georgia; (17) Pike, Illinois; (18) Starke, Indiana; (19) Plymouth, Iowa; (20) Pottawatomie, Kansas; (21) McLean, Kentucky; (26) St Joseph, Michigan; (27) Stevens, Minnesota; (28) Warren, Mississippi; (29) Oregon, Missouri; (31) Rock, Nebraska; (37) Polk, North Carolina; (39) Shelby, Ohio; (40) Washita, Oklahoma; (47) Rutherford, Tennessee; (48) Fayette, Texas; (51) Prince George, Virginia; (72) Villalba, Puerto Rico + + + + + (48) Motley, Texas + + + + + (48) Montague, Texas + + + + + (01) Perry, Alabama; (05) Perry, Arkansas; (06) Trinity, California; (08) Rio Grande, Colorado; (12) Polk, Florida; (13) Elbert, Georgia; (17) Livingston, Illinois; (18) Monroe, Indiana; (19) Jones, Iowa; (20) Lincoln, Kansas; (21) Hickman, Kentucky; (22) Tangipahoa, Louisiana; (26) Mason, Michigan; (27) Nobles, Minnesota; (28) Oktibbeha, Mississippi; (29) Laclede, Missouri; (30) Valley, Montana; (31) Kimball, Nebraska; (36) Sullivan, New York; (37) Lee, North Carolina; (38) Williams, North Dakota; (39) Meigs, Ohio; (40) Nowata, Oklahoma; (42) Potter, Pennsylvania; (46) Perkins, South Dakota; (47) Loudon, Tennessee; (48) Crockett, Texas; (51) Lee, Virginia; (54) Wirt, West Virginia; (55) Rock, Wisconsin; (72) Naranjito, Puerto Rico + + + + + (51) Radford, Virginia + + + + + (13) McDuffie, Georgia; (17) Washington, Illinois; (19) Winnebago, Iowa; (20) Stevens, Kansas; (21) Owsley, Kentucky; (29) St Louis, Missouri; (37) Watauga, North Carolina; (47) Wilson, Tennessee; (48) Hale, Texas + + + + + (48) Nolan, Texas + + + + + (48) Palo Pinto, Texas + + + + + (51) Galax, Virginia + + + + + (48) Parmer, Texas + + + + + (70) Aimeliik, Palau + + + + + (13) Houston, Georgia; (17) Pulaski, Illinois; (18) Sullivan, Indiana; (19) Polk, Iowa; (20) Rawlins, Kansas; (21) Magoffin, Kentucky; (26) Schoolcraft, Michigan; (27) Todd, Minnesota; (28) Wayne, Mississippi; (29) Ozark, Missouri; (31) Sarpy, Nebraska; (37) Richmond, North Carolina; (39) Summit, Ohio; (40) Woodward, Oklahoma; (47) Sequatchie, Tennessee; (48) Floyd, Texas; (51) Prince William, Virginia; (72) Yauco, Puerto Rico + + + + + (13) Washington, Georgia; (48) Lubbock, Texas + + + + + (01) Tallapoosa, Alabama; (05) St Francis, Arkansas; (08) Weld, Colorado; (12) Taylor, Florida; (13) Gilmer, Georgia; (17) Marshall, Illinois; (18) Perry, Indiana; (19) Mahaska, Iowa; (20) Mitchell, Kansas; (21) Larue, Kentucky; (22) West Carroll, Louisiana; (26) Newaygo, Michigan; (27) Ramsey, Minnesota; (28) Scott, Mississippi; (29) Madison, Missouri; (31) Morrill, Nebraska; (36) Yates, New York; (37) Montgomery, North Carolina; (39) Ottawa, Ohio; (40) Pontotoc, Oklahoma; (42) Warren, Pennsylvania; (46) Tripp, South Dakota; (47) Monroe, Tennessee; (48) De Witt, Texas; (51) Nansemond, Virginia; (55) Vernon, Wisconsin; (72) Salinas, Puerto Rico + + + + + (01) Etowah, Alabama; (05) Greene, Arkansas; (06) Napa, California; (08) Huerfano, Colorado; (12) Highlands, Florida; (13) Chattooga, Georgia; (16) Kootenai, Idaho; (17) Franklin, Illinois; (18) Greene, Indiana; (19) Delaware, Iowa; (20) Finney, Kansas; (21) Crittenden, Kentucky; (22) Lafayette, Louisiana; (26) Grand Traverse, Michigan; (27) Houston, Minnesota; (28) Issaquena, Mississippi; (29) Crawford, Missouri; (30) McCone, Montana; (31) Douglas, Nebraska; (35) Taos, New Mexico; (36) Monroe, New York; (37) Dare, North Carolina; (38) McLean, North Dakota; (39) Geauga, Ohio; (40) Greer, Oklahoma; (41) Sherman, Oregon; (42) Franklin, Pennsylvania; (45) Kershaw, South Carolina; (46) Haakon, South Dakota; (47) Giles, Tennessee; (48) Caldwell, Texas; (49) Wayne, Utah; (53) San Juan, Washington; (54) Mercer, West Virginia; (55) Jefferson, Wisconsin; (72) Guanica, Puerto Rico + + + + + (13) Seminole, Georgia; (48) Jones, Texas + + + + + (13) Towns, Georgia; (48) Lampasas, Texas + + + + + (48) Upshur, Texas + + + + + (48) Parker, Texas + + + + + (48) Newton, Texas + + + + + (01) Limestone, Alabama; (05) Logan, Arkansas; (06) Santa Barbara, California; (08) Montezuma, Colorado; (12) Marion, Florida; (13) Dade, Georgia; (16) Twin Falls, Idaho; (17) Jersey, Illinois; (18) Knox, Indiana; (19) Hardin, Iowa; (20) Hodgeman, Kansas; (21) Graves, Kentucky; (22) Richland, Louisiana; (26) Keweenaw, Michigan; (27) Lyon, Minnesota; (28) Leflore, Mississippi; (29) Henry, Missouri; (30) Richland, Montana; (31) Harlan, Nebraska; (36) Rensselaer, New York; (37) Halifax, North Carolina; (38) Sheridan, North Dakota; (39) Knox, Ohio; (40) Logan, Oklahoma; (42) McKean, Pennsylvania; (45) Spartanburg, South Carolina; (46) Lincoln, South Dakota; (47) Houston, Tennessee; (48) Coleman, Texas; (51) Halifax, Virginia; (54) Randolph, West Virginia; (55) Oconto, Wisconsin; (72) Las Marias, Puerto Rico + + + + + (48) Wise, Texas + + + + + (48) Sutton, Texas + + + + + (48) Refugio, Texas + + + + + (01) Tuscaloosa, Alabama; (05) Saline, Arkansas; (08) Yuma, Colorado; (12) Union, Florida; (13) Glascock, Georgia; (17) Mason, Illinois; (18) Pike, Indiana; (19) Marion, Iowa; (20) Montgomery, Kansas; (21) Laurel, Kentucky; (22) West Feliciana, Louisiana; (26) Oakland, Michigan; (27) Red Lake, Minnesota; (28) Sharkey, Mississippi; (29) Maries, Missouri; (31) Nance, Nebraska; (37) Moore, North Carolina; (39) Paulding, Ohio; (40) Pottawatomie, Oklahoma; (42) Washington, Pennsylvania; (46) Turner, South Dakota; (47) Montgomery, Tennessee; (48) Dickens, Texas; (51) Nelson, Virginia; (55) Vilas, Wisconsin; (72) San German, Puerto Rico + + + + + (13) Mitchell, Georgia; (20) Wilson, Kansas; (21) Rowan, Kentucky; (29) Shelby, Missouri; (48) Hartley, Texas + + + + + (13) Wilkes, Georgia; (48) Martin, Texas + + + + + (13) Twiggs, Georgia; (48) Leon, Texas + + + + + (48) Orange, Texas + + + + + (68) Mejit, Marshall Islands + + + + + (01) Lee, Alabama; (05) Little River, Arkansas; (06) San Mateo, California; (08) Moffat, Colorado; (12) Manatee, Florida; (13) Crisp, Georgia; (16) Teton, Idaho; (17) Jefferson, Illinois; (18) Johnson, Indiana; (19) Hancock, Iowa; (20) Haskell, Kansas; (21) Grant, Kentucky; (22) Red River, Louisiana; (26) Kent, Michigan; (27) Lincoln, Minnesota; (28) Lee, Mississippi; (29) Harrison, Missouri; (30) Ravalli, Montana; (31) Hamilton, Nebraska; (36) Queens, New York; (37) Guilford, North Carolina; (38) Sargent, North Dakota; (39) Jefferson, Ohio; (40) Lincoln, Oklahoma; (42) Lycoming, Pennsylvania; (45) Saluda, South Carolina; (46) Lawrence, South Dakota; (47) Hickman, Tennessee; (48) Coke, Texas; (51) Greensville, Virginia; (54) Raleigh, West Virginia; (55) Monroe, Wisconsin; (72) Lares, Puerto Rico + + + + + (51) Norton, Virginia + + + + + (01) Clay, Alabama; (04) Yuma, Arizona; (05) Columbia, Arkansas; (06) Inyo, California; (08) Custer, Colorado; (12) De Soto, Florida; (13) Brooks, Georgia; (16) Canyon, Idaho; (17) Clinton, Illinois; (18) Daviess, Indiana; (19) Carroll, Iowa; (20) Clay, Kansas; (21) Breckinridge, Kentucky; (22) Claiborne, Louisiana; (23) Waldo, Maine; (24) Howard, Maryland; (25) Worcester, Massachusetts; (26) Cass, Michigan; (27) Clay, Minnesota; (28) Coahoma, Mississippi; (29) Callaway, Missouri; (30) Fergus, Montana; (31) Cedar, Nebraska; (32) Pershing, Nevada; (34) Morris, New Jersey; (35) Lincoln, New Mexico; (36) Dutchess, New York; (37) Caldwell, North Carolina; (38) Eddy, North Dakota; (39) Clinton, Ohio; (40) Cleveland, Oklahoma; (41) Hood River, Oregon; (42) Centre, Pennsylvania; (45) Clarendon, South Carolina; (46) Clay, South Dakota; (47) Clay, Tennessee; (48) Bell, Texas; (49) Millard, Utah; (50) Windsor, Vermont; (51) Buchanan, Virginia; (53) Grays Harbor, Washington; (54) Hampshire, West Virginia; (55) Dodge, Wisconsin; (56) Niobrara, Wyoming; (72) Camuy, Puerto Rico + + + + + (02) North Slope, Alaska; (13) Lowndes, Georgia; (17) Wabash, Illinois; (19) Wayne, Iowa; (20) Stafford, Kansas; (21) Oldham, Kentucky; (29) St Clair, Missouri; (31) York, Nebraska; (37) Warren, North Carolina; (47) White, Tennessee; (48) Grimes, Texas; (51) Tazewell, Virginia + + + + + (13) Marion, Georgia; (17) Will, Illinois; (19) Wright, Iowa; (20) Wabaunsee, Kansas; (21) Powell, Kentucky; (29) Schuyler, Missouri; (37) Yadkin, North Carolina; (48) Hardeman, Texas; (51) Wythe, Virginia + + + + + (48) Red River, Texas + + + + + (02) Valdez-Cordova, Alaska; (13) Sumter, Georgia; (48) Kenedy, Texas + + + + + (48) Panola, Texas + + + + + (13) Polk, Georgia; (21) Webster, Kentucky; (48) Hutchinson, Texas + + + + + (48) Shackelford, Texas + + + + + (13) Pickens, Georgia; (21) Warren, Kentucky; (29) Worth, Missouri; (48) Howard, Texas + + + + + (13) Long, Georgia; (17) Vermilion, Illinois; (18) Whitley, Indiana; (19) Washington, Iowa; (20) Smith, Kansas; (21) Ohio, Kentucky; (29) St Charles, Missouri; (31) Wheeler, Nebraska; (37) Wake, North Carolina; (47) Weakley, Tennessee; (48) Gregg, Texas; (51) Sussex, Virginia + + + + + (51) Roanoke, Virginia + + + + + (48) Rockwall, Texas + + + + + (70) Ngardmau, Palau + + + + + (13) Lanier, Georgia; (17) Shelby, Illinois; (18) Warrick, Indiana; (19) Taylor, Iowa; (20) Sedgwick, Kansas; (21) Montgomery, Kentucky; (27) Yellow Medicine, Minnesota; (29) Ralls, Missouri; (31) Thurston, Nebraska; (37) Swain, North Carolina; (39) Wood, Ohio; (47) Union, Tennessee; (48) Glasscock, Texas; (51) Smyth, Virginia + + + + + (48) Starr, Texas + + + + + (13) Monroe, Georgia; (20) Woodson, Kansas; (21) Russell, Kentucky; (29) Stoddard, Missouri; (48) Haskell, Texas + + + + + (48) Nueces, Texas + + + + + (48) Throckmorton, Texas + + + + + (51) Petersburg, Virginia + + + + + (48) Wilbarger, Texas + + + + + (02) Prince of Wales-Outer Ketchikan, Alaska; (13) Miller, Georgia; (17) Winnebago, Illinois; (20) Washington, Kansas; (21) Robertson, Kentucky; (29) Scott, Missouri; (48) Harris, Texas + + + + + (51) Virginia Beach, Virginia + + + + + (48) San Jacinto, Texas + + + + + (01) Jackson, Alabama; (05) Johnson, Arkansas; (06) San Bernardino, California; (08) Las Animas, Colorado; (12) Lee, Florida; (13) Colquitt, Georgia; (16) Oneida, Idaho; (17) Henderson, Illinois; (18) Jackson, Indiana; (19) Fremont, Iowa; (20) Greeley, Kansas; (21) Floyd, Kentucky; (22) Orleans, Louisiana; (26) Iron, Michigan; (27) Koochiching, Minnesota; (28) Lafayette, Mississippi; (29) Franklin, Missouri; (30) Phillips, Montana; (31) Garfield, Nebraska; (36) Orange, New York; (37) Gaston, North Carolina; (38) Ramsey, North Dakota; (39) Highland, Ohio; (40) Kay, Oklahoma; (41) Yamhill, Oregon; (42) Lancaster, Pennsylvania; (45) Newberry, South Carolina; (46) Jackson, South Dakota; (47) Hardin, Tennessee; (48) Chambers, Texas; (51) Giles, Virginia; (53) Walla Walla, Washington; (54) Pendleton, West Virginia; (55) Manitowoc, Wisconsin; (72) Isabela, Puerto Rico + + + + + (13) McIntosh, Georgia; (17) Wayne, Illinois; (19) Winneshiek, Iowa; (20) Sumner, Kansas; (21) Pendleton, Kentucky; (37) Wayne, North Carolina; (48) Hall, Texas; (51) Washington, Virginia + + + + + (01) Escambia, Alabama; (05) Grant, Arkansas; (06) Monterey, California; (08) Hinsdale, Colorado; (12) Hernando, Florida; (13) Chattahoochee, Georgia; (16) Jerome, Idaho; (17) Ford, Illinois; (18) Grant, Indiana; (19) Decatur, Iowa; (20) Ellsworth, Kansas; (21) Clinton, Kentucky; (22) Jefferson Davis, Louisiana; (26) Gogebic, Michigan; (27) Hennepin, Minnesota; (28) Humphreys, Mississippi; (29) Cooper, Missouri; (30) Lincoln, Montana; (31) Dodge, Nebraska; (35) Socorro, New Mexico; (36) Madison, New York; (37) Currituck, North Carolina; (38) McKenzie, North Dakota; (39) Gallia, Ohio; (40) Grant, Oklahoma; (41) Polk, Oregon; (42) Forest, Pennsylvania; (45) Jasper, South Carolina; (46) Gregory, South Dakota; (47) Gibson, Tennessee; (48) Burnet, Texas; (49) Washington, Utah; (51) Dinwiddie, Virginia; (53) Pierce, Washington; (54) Mason, West Virginia; (55) Jackson, Wisconsin; (72) Fajardo, Puerto Rico + + + + + (48) Moore, Texas + + + + + (01) Marion, Alabama; (05) Mississippi, Arkansas; (06) Siskiyou, California; (08) Park, Colorado; (12) Okeechobee, Florida; (13) Dooly, Georgia; (17) Kendall, Illinois; (18) Lawrence, Indiana; (19) Ida, Iowa; (20) Kearny, Kansas; (21) Hardin, Kentucky; (22) St James, Louisiana; (26) Livingston, Michigan; (27) Meeker, Minnesota; (28) Marshall, Mississippi; (29) Iron, Missouri; (30) Silver Bow, Montana; (31) Howard, Nebraska; (36) Schenectady, New York; (37) Hoke, North Carolina; (38) Stutsman, North Dakota; (39) Lorain, Ohio; (40) Major, Oklahoma; (42) Montour, Pennsylvania; (46) Meade, South Dakota; (47) Knox, Tennessee; (48) Comanche, Texas; (51) Isle Of Wight, Virginia; (54) Tucker, West Virginia; (55) Pierce, Wisconsin; (72) Maricao, Puerto Rico + + + + + (13) Irwin, Georgia; (17) Putnam, Illinois; (18) Switzerland, Indiana; (19) Pottawattamie, Iowa; (20) Reno, Kansas; (21) Marion, Kentucky; (26) Shiawassee, Michigan; (27) Traverse, Minnesota; (28) Webster, Mississippi; (29) Pemiscot, Missouri; (31) Saunders, Nebraska; (37) Robeson, North Carolina; (39) Trumbull, Ohio; (47) Sevier, Tennessee; (48) Foard, Texas; (51) Pulaski, Virginia + + + + + (48) Sherman, Texas + + + + + (51) Staunton, Virginia + + + + + (51) Fairfax, Virginia + + + + + (48) Uvalde, Texas + + + + + (68) Jaluit, Marshall Islands; (69) Tinian, Northern Mariana Islands + + + + + (48) Zapata, Texas + + + + + (13) Lee, Georgia; (17) Stephenson, Illinois; (18) Wayne, Indiana; (19) Van Buren, Iowa; (20) Shawnee, Kansas; (21) Muhlenberg, Kentucky; (29) Ray, Missouri; (31) Washington, Nebraska; (37) Tyrrell, North Carolina; (47) Warren, Tennessee; (48) Gonzales, Texas; (51) Spotsylvania, Virginia + + + + + (13) Terrell, Georgia; (48) Kleberg, Texas + + + + + (68) Namu, Marshall Islands + + + + + (01) Lauderdale, Alabama; (05) Lee, Arkansas; (06) San Joaquin, California; (08) Mesa, Colorado; (12) Liberty, Florida; (13) Coweta, Georgia; (16) Power, Idaho; (17) Jackson, Illinois; (18) Jefferson, Indiana; (19) Guthrie, Iowa; (20) Harper, Kansas; (21) Gallatin, Kentucky; (22) Pointe Coupee, Louisiana; (26) Kalamazoo, Michigan; (27) Lake Of The Woods, Minnesota; (28) Lawrence, Mississippi; (29) Greene, Missouri; (30) Powell, Montana; (31) Greeley, Nebraska; (36) Otsego, New York; (37) Granville, North Carolina; (38) Richland, North Dakota; (39) Huron, Ohio; (40) Latimer, Oklahoma; (42) Lehigh, Pennsylvania; (45) Pickens, South Carolina; (46) Kingsbury, South Dakota; (47) Henderson, Tennessee; (48) Clay, Texas; (51) Grayson, Virginia; (53) Yakima, Washington; (54) Preston, West Virginia; (55) Marquette, Wisconsin; (72) Juncos, Puerto Rico + + + + + (13) Oconee, Georgia; (21) Todd, Kentucky; (29) Warren, Missouri; (48) Hockley, Texas + + + + + (01) Baldwin, Alabama; (04) Cochise, Arizona; (05) Ashley, Arkansas; (06) Alpine, California; (08) Alamosa, Colorado; (09) Hartford, Connecticut; (10) New Castle, Delaware; (12) Baker, Florida; (13) Atkinson, Georgia; (15) Honolulu, Hawaii; (16) Adams, Idaho; (17) Alexander, Illinois; (18) Allen, Indiana; (19) Adams, Iowa; (20) Anderson, Kansas; (21) Allen, Kentucky; (22) Allen, Louisiana; (23) Aroostook, Maine; (24) Anne Arundel, Maryland; (25) Berkshire, Massachusetts; (26) Alger, Michigan; (27) Anoka, Minnesota; (28) Alcorn, Mississippi; (29) Andrew, Missouri; (30) Big Horn, Montana; (31) Antelope, Nebraska; (32) Clark, Nevada; (33) Carroll, New Hampshire; (34) Bergen, New Jersey; (35) Catron, New Mexico; (36) Allegany, New York; (37) Alexander, North Carolina; (38) Barnes, North Dakota; (39) Allen, Ohio; (40) Alfalfa, Oklahoma; (41) Benton, Oregon; (42) Allegheny, Pennsylvania; (44) Kent, Rhode Island; (45) Aiken, South Carolina; (46) Aurora, South Dakota; (47) Bedford, Tennessee; (48) Andrews, Texas; (49) Box Elder, Utah; (50) Bennington, Vermont; (51) Albemarle, Virginia; (53) Asotin, Washington; (54) Berkeley, West Virginia; (55) Ashland, Wisconsin; (56) Big Horn, Wyoming; (72) Aguada, Puerto Rico + + + + + (02) Wrangell-Petersburg, Alaska + + + + + (70) Ngiwal, Palau + + + + + (48) Sabine, Texas + + + + + (13) Lincoln, Georgia; (17) Union, Illinois; (18) White, Indiana; (19) Warren, Iowa; (20) Sherman, Kansas; (21) Nicholas, Kentucky; (29) Ripley, Missouri; (31) Webster, Nebraska; (37) Vance, North Carolina; (47) Wayne, Tennessee; (48) Grayson, Texas; (51) Surry, Virginia + + + + + (51) Martinsville, Virginia + + + + + (51) Lexington, Virginia + + + + + (13) Rabun, Georgia; (48) Jasper, Texas + + + + + (01) Cherokee, Alabama; (04) Pima, Arizona; (05) Clark, Arkansas; (06) Fresno, California; (08) Clear Creek, Colorado; (12) Clay, Florida; (13) Berrien, Georgia; (16) Bonneville, Idaho; (17) Champaign, Illinois; (18) Clark, Indiana; (19) Buchanan, Iowa; (20) Chautauqua, Kansas; (21) Boyd, Kentucky; (22) Calcasieu, Louisiana; (23) Penobscot, Maine; (24) Dorchester, Maryland; (25) Nantucket, Massachusetts; (26) Benzie, Michigan; (27) Carver, Minnesota; (28) Choctaw, Mississippi; (29) Boone, Missouri; (30) Daniels, Montana; (31) Buffalo, Nebraska; (32) Lyon, Nevada; (33) Sullivan, New Hampshire; (34) Hunterdon, New Jersey; (35) Guadalupe, New Mexico; (36) Clinton, New York; (37) Brunswick, North Carolina; (38) Cavalier, North Dakota; (39) Carroll, Ohio; (40) Carter, Oklahoma; (41) Douglas, Oregon; (42) Butler, Pennsylvania; (45) Charleston, South Carolina; (46) Butte, South Dakota; (47) Carter, Tennessee; (48) Bandera, Texas; (49) Grand, Utah; (50) Orleans, Vermont; (51) Bedford, Virginia; (53) Ferry, Washington; (54) Fayette, West Virginia; (55) Clark, Wisconsin; (56) Johnson, Wyoming; (72) Barranquitas, Puerto Rico + + + + + (01) Marengo, Alabama; (05) Miller, Arkansas; (06) Sierra, California; (08) Ouray, Colorado; (12) Okaloosa, Florida; (13) Dodge, Georgia; (17) Kankakee, Illinois; (18) La Porte, Indiana; (19) Humboldt, Iowa; (20) Johnson, Kansas; (21) Hancock, Kentucky; (22) St Helena, Louisiana; (26) Lenawee, Michigan; (27) Martin, Minnesota; (28) Marion, Mississippi; (29) Howell, Missouri; (30) Sheridan, Montana; (31) Hooker, Nebraska; (36) Saratoga, New York; (37) Hertford, North Carolina; (38) Steele, North Dakota; (39) Logan, Ohio; (40) McIntosh, Oklahoma; (42) Montgomery, Pennsylvania; (45) York, South Carolina; (46) Marshall, South Dakota; (47) Johnson, Tennessee; (48) Comal, Texas; (51) Highland, Virginia; (54) Taylor, West Virginia; (55) Pepin, Wisconsin; (72) Manati, Puerto Rico + + + + + (13) Jackson, Georgia; (17) Randolph, Illinois; (18) Tippecanoe, Indiana; (19) Poweshiek, Iowa; (20) Republic, Kansas; (21) Marshall, Kentucky; (26) Tuscola, Michigan; (27) Wabasha, Minnesota; (28) Wilkinson, Mississippi; (29) Perry, Missouri; (31) Scotts Bluff, Nebraska; (37) Rockingham, North Carolina; (39) Tuscarawas, Ohio; (47) Shelby, Tennessee; (48) Fort Bend, Texas; (51) Rappahannock, Virginia + + + + + (68) Majuro, Marshall Islands + + + + + (51) Lynchburg, Virginia + + + + + (48) Upton, Texas + + + + + (01) Fayette, Alabama; (05) Hempstead, Arkansas; (06) Nevada, California; (08) Jackson, Colorado; (12) Hillsborough, Florida; (13) Cherokee, Georgia; (16) Latah, Idaho; (17) Fulton, Illinois; (18) Hamilton, Indiana; (19) Des Moines, Iowa; (20) Ford, Kansas; (21) Cumberland, Kentucky; (22) Lafourche, Louisiana; (26) Gratiot, Michigan; (27) Hubbard, Minnesota; (28) Itawamba, Mississippi; (29) Dade, Missouri; (30) Madison, Montana; (31) Dundy, Nebraska; (35) Torrance, New Mexico; (36) Montgomery, New York; (37) Davidson, North Carolina; (38) Mercer, North Dakota; (39) Greene, Ohio; (40) Harmon, Oklahoma; (41) Tillamook, Oregon; (42) Fulton, Pennsylvania; (45) Lancaster, South Carolina; (46) Hamlin, South Dakota; (47) Grainger, Tennessee; (48) Calhoun, Texas; (49) Weber, Utah; (51) Essex, Virginia; (53) Skagit, Washington; (54) Mineral, West Virginia; (55) Juneau, Wisconsin; (72) Guayama, Puerto Rico + + + + + (01) Wilcox, Alabama; (05) Sebastian, Arkansas; (12) Walton, Florida; (13) Grady, Georgia; (17) Mercer, Illinois; (18) Pulaski, Indiana; (19) Mitchell, Iowa; (20) Nemaha, Kansas; (21) Leslie, Kentucky; (26) Ontonagon, Michigan; (27) Rice, Minnesota; (28) Stone, Mississippi; (29) Miller, Missouri; (31) Otoe, Nebraska; (37) Northampton, North Carolina; (39) Pike, Ohio; (40) Rogers, Oklahoma; (42) Wyoming, Pennsylvania; (46) Washabaugh, South Dakota; (47) Obion, Tennessee; (48) Duval, Texas; (51) Northampton, Virginia; (55) Washington, Wisconsin; (72) San Sebastian, Puerto Rico + + + + + (51) Charlottesville, Virginia + + + + + (51) Norfolk, Virginia + + + + + (01) Geneva, Alabama; (05) Howard, Arkansas; (06) Placer, California; (08) Kiowa, Colorado; (12) Indian River, Florida; (13) Clay, Georgia; (16) Lewis, Idaho; (17) Greene, Illinois; (18) Harrison, Indiana; (19) Dubuque, Iowa; (20) Geary, Kansas; (21) Edmonson, Kentucky; (22) Lincoln, Louisiana; (26) Houghton, Michigan; (27) Itasca, Minnesota; (28) Jasper, Mississippi; (29) Daviess, Missouri; (30) Mineral, Montana; (31) Franklin, Nebraska; (35) Valencia, New Mexico; (36) New York, New York; (37) Duplin, North Carolina; (38) Mountrail, North Dakota; (39) Hamilton, Ohio; (40) Haskell, Oklahoma; (41) Union, Oregon; (42) Huntingdon, Pennsylvania; (45) Lee, South Carolina; (46) Hanson, South Dakota; (47) Grundy, Tennessee; (48) Cameron, Texas; (51) Fauquier, Virginia; (53) Snohomish, Washington; (54) Monongalia, West Virginia; (55) Kewaunee, Wisconsin; (72) Guaynabo, Puerto Rico + + + + + (01) Lamar, Alabama; (05) Lawrence, Arkansas; (06) San Francisco, California; (08) Logan, Colorado; (12) Levy, Florida; (13) Cook, Georgia; (16) Payette, Idaho; (17) Iroquois, Illinois; (18) Jay, Indiana; (19) Grundy, Iowa; (20) Hamilton, Kansas; (21) Fulton, Kentucky; (22) Plaquemines, Louisiana; (26) Jackson, Michigan; (27) Lake, Minnesota; (28) Lauderdale, Mississippi; (29) Gentry, Missouri; (30) Powder River, Montana; (31) Grant, Nebraska; (36) Oswego, New York; (37) Graham, North Carolina; (38) Renville, North Dakota; (39) Holmes, Ohio; (40) Kiowa, Oklahoma; (42) Lebanon, Pennsylvania; (45) Orangeburg, South Carolina; (46) Jones, South Dakota; (47) Haywood, Tennessee; (48) Childress, Texas; (51) Goochland, Virginia; (53) Whitman, Washington; (54) Pocahontas, West Virginia; (55) Marinette, Wisconsin; (72) Juana Diaz, Puerto Rico + + + + + (68) Maloelap, Marshall Islands; (70) Palau Islands, Palau; (74) Midway Islands, U.S. Minor Outlying Islands + + + + + (01) De Kalb, Alabama; (05) Fulton, Arkansas; (06) Modoc, California; (08) Grand, Colorado; (12) Hardee, Florida; (13) Charlton, Georgia; (16) Idaho, Idaho; (17) Effingham, Illinois; (18) Fulton, Indiana; (19) Dallas, Iowa; (20) Elk, Kansas; (21) Clark, Kentucky; (22) Jackson, Louisiana; (26) Genesee, Michigan; (27) Goodhue, Minnesota; (28) Hinds, Mississippi; (29) Clinton, Missouri; (30) Lewis And Clark, Montana; (31) Deuel, Nebraska; (35) Santa Fe, New Mexico; (36) Lewis, New York; (37) Craven, North Carolina; (38) McHenry, North Dakota; (39) Franklin, Ohio; (40) Garvin, Oklahoma; (41) Morrow, Oregon; (42) Erie, Pennsylvania; (45) Hampton, South Carolina; (46) Faulk, South Dakota; (47) Fentress, Tennessee; (48) Brown, Texas; (49) Utah, Utah; (51) Cumberland, Virginia; (53) Pacific, Washington; (54) Marion, West Virginia; (55) Iowa, Wisconsin; (72) Culebra, Puerto Rico + + + + + (01) Hale, Alabama; (05) Izard, Arkansas; (06) Riverside, California; (08) Lake, Colorado; (12) Jefferson, Florida; (13) Clinch, Georgia; (16) Madison, Idaho; (17) Hamilton, Illinois; (18) Henry, Indiana; (19) Fayette, Iowa; (20) Graham, Kansas; (21) Estill, Kentucky; (22) Madison, Louisiana; (26) Ingham, Michigan; (27) Kanabec, Minnesota; (28) Jefferson Davis, Mississippi; (29) Dent, Missouri; (30) Musselshell, Montana; (31) Furnas, Nebraska; (36) Oneida, New York; (37) Edgecombe, North Carolina; (38) Oliver, North Dakota; (39) Hardin, Ohio; (40) Jackson, Oklahoma; (41) Wasco, Oregon; (42) Jefferson, Pennsylvania; (45) McCormick, South Carolina; (46) Hughes, South Dakota; (47) Hamilton, Tennessee; (48) Carson, Texas; (51) Fluvanna, Virginia; (53) Stevens, Washington; (54) Morgan, West Virginia; (55) Lafayette, Wisconsin; (72) Hatillo, Puerto Rico + + + + + (13) Quitman, Georgia; (21) Woodford, Kentucky; (48) Jackson, Texas + + + + + (13) Stewart, Georgia; (48) Kendall, Texas + + + + + (48) Val Verde, Texas + + + + + (74) Wake Island, U.S. Minor Outlying Islands + + + + + (48) Robertson, Texas + + + + + (48) Smith, Texas + + + + + (01) Monroe, Alabama; (05) Nevada, Arkansas; (06) Stanislaus, California; (08) Prowers, Colorado; (12) Palm Beach, Florida; (13) Early, Georgia; (17) La Salle, Illinois; (18) Marshall, Indiana; (19) Jasper, Iowa; (20) Labette, Kansas; (21) Hart, Kentucky; (22) St Martin, Louisiana; (26) Macomb, Michigan; (27) Mower, Minnesota; (28) Neshoba, Mississippi; (29) Jefferson, Missouri; (30) Teton, Montana; (31) Kearney, Nebraska; (36) Seneca, New York; (37) Jackson, North Carolina; (38) Walsh, North Dakota; (39) Mahoning, Ohio; (40) Murray, Oklahoma; (42) Perry, Pennsylvania; (46) Minnehaha, South Dakota; (47) Lawrence, Tennessee; (48) Coryell, Texas; (51) King George, Virginia; (54) Wayne, West Virginia; (55) Price, Wisconsin; (72) Moca, Puerto Rico + + + + + (01) Dallas, Alabama; (05) Franklin, Arkansas; (06) Merced, California; (08) Gilpin, Colorado; (12) Hamilton, Florida; (13) Catoosa, Georgia; (16) Gooding, Idaho; (17) Edwards, Illinois; (18) Franklin, Indiana; (19) Crawford, Iowa; (20) Edwards, Kansas; (21) Christian, Kentucky; (22) Iberville, Louisiana; (24) Worcester, Maryland; (26) Emmet, Michigan; (27) Freeborn, Minnesota; (28) Harrison, Mississippi; (29) Clay, Missouri; (30) Lake, Montana; (31) Dawson, Nebraska; (35) San Miguel, New Mexico; (36) Kings, New York; (37) Columbus, North Carolina; (38) Logan, North Dakota; (39) Fayette, Ohio; (40) Garfield, Oklahoma; (41) Marion, Oregon; (42) Elk, Pennsylvania; (45) Greenwood, South Carolina; (46) Fall River, South Dakota; (47) Fayette, Tennessee; (48) Brooks, Texas; (49) Uintah, Utah; (51) Culpeper, Virginia; (53) Okanogan, Washington; (54) McDowell, West Virginia; (55) Green Lake, Wisconsin; (72) Corozal, Puerto Rico + + + + + (51) Bristol, Virginia + + + + + (13) Upson, Georgia; (48) Limestone, Texas + + + + + (05) Washington, Arkansas; (13) Haralson, Georgia; (17) Peoria, Illinois; (18) Scott, Indiana; (19) Osceola, Iowa; (20) Ottawa, Kansas; (21) Lyon, Kentucky; (26) Roscommon, Michigan; (27) Sibley, Minnesota; (28) Tunica, Mississippi; (29) New Madrid, Missouri; (31) Polk, Nebraska; (37) Perquimans, North Carolina; (39) Sandusky, Ohio; (40) Tulsa, Oklahoma; (47) Rhea, Tennessee; (48) Erath, Texas; (51) Pittsylvania, Virginia; (72) Vega Alta, Puerto Rico + + + + + (51) Williamsburg, Virginia + + + + + (51) Emporia, Virginia + + + + + (01) Houston, Alabama; (05) Jefferson, Arkansas; (06) San Benito, California; (08) Larimer, Colorado; (12) Lake, Florida; (13) Coffee, Georgia; (16) Nez Perce, Idaho; (17) Hardin, Illinois; (18) Huntington, Indiana; (19) Franklin, Iowa; (20) Gray, Kansas; (21) Fleming, Kentucky; (22) Natchitoches, Louisiana; (26) Iosco, Michigan; (27) Kittson, Minnesota; (28) Kemper, Mississippi; (29) Dunklin, Missouri; (30) Petroleum, Montana; (31) Garden, Nebraska; (36) Ontario, New York; (37) Franklin, North Carolina; (38) Pierce, North Dakota; (39) Henry, Ohio; (40) Johnston, Oklahoma; (41) Wheeler, Oregon; (42) Lackawanna, Pennsylvania; (45) Marlboro, South Carolina; (46) Hyde, South Dakota; (47) Hardeman, Tennessee; (48) Castro, Texas; (51) Frederick, Virginia; (53) Wahkiakum, Washington; (54) Ohio, West Virginia; (55) Lincoln, Wisconsin; (72) Humacao, Puerto Rico + + + + + (48) Midland, Texas + + + + + (48) Travis, Texas + + + + + (02) Juneau, Alaska; (68) Jabat, Marshall Islands; (69) Saipan, Northern Mariana Islands + + + + + (70) Ngaraard, Palau + + + + + (13) Taylor, Georgia; (48) King, Texas + + + + + (51) Newport News, Virginia + + + + + (13) Laurens, Georgia; (17) Stark, Illinois; (18) Washington, Indiana; (19) Union, Iowa; (20) Seward, Kansas; (21) Morgan, Kentucky; (29) Randolph, Missouri; (31) Valley, Nebraska; (37) Transylvania, North Carolina; (39) Wyandot, Ohio; (47) Van Buren, Tennessee; (48) Goliad, Texas; (51) Southampton, Virginia + + + + + (02) Yukon-Koyukuk, Alaska + + + + + (68) Rongrik, Marshall Islands + + + + + (68) Namorik, Marshall Islands + + + + + (02) Northwest Arctic (Kobuk), Alaska; (68) Kili, Marshall Islands + + + + + (01) Butler, Alabama; (02) Aleutians East, Alaska; (04) Maricopa, Arizona; (05) Calhoun, Arkansas; (06) Contra Costa, California; (08) Boulder, Colorado; (09) Tolland, Connecticut; (12) Calhoun, Florida; (13) Barrow, Georgia; (16) Blaine, Idaho; (17) Calhoun, Illinois; (18) Brown, Indiana; (19) Black Hawk, Iowa; (20) Brown, Kansas; (21) Bell, Kentucky; (22) Bienville, Louisiana; (23) Knox, Maine; (24) Carroll, Maryland; (25) Hampden, Massachusetts; (26) Baraga, Michigan; (27) Blue Earth, Minnesota; (28) Calhoun, Mississippi; (29) Bates, Missouri; (30) Cascade, Montana; (31) Box Butte, Nebraska; (32) Humboldt, Nevada; (33) Merrimack, New Hampshire; (34) Essex, New Jersey; (35) Dona Ana, New Mexico; (36) Chautauqua, New York; (37) Beaufort, North Carolina; (38) Burke, North Dakota; (39) Belmont, Ohio; (40) Bryan, Oklahoma; (41) Crook, Oregon; (42) Blair, Pennsylvania; (45) Beaufort, South Carolina; (46) Brown, South Dakota; (47) Campbell, Tennessee; (48) Atascosa, Texas; (49) Duchesne, Utah; (50) Grand Isle, Vermont; (51) Arlington, Virginia; (53) Columbia, Washington; (54) Calhoun, West Virginia; (55) Burnett, Wisconsin; (56) Fremont, Wyoming; (72) Arecibo, Puerto Rico + + + + + (35) Los Alamos, New Mexico + + + + + (13) Walker, Georgia; (48) Lipscomb, Texas + + + + + (01) Shelby, Alabama; (05) Prairie, Arkansas; (08) Summit, Colorado; (12) Seminole, Florida; (13) Forsyth, Georgia; (17) Macoupin, Illinois; (18) Orange, Indiana; (19) Lucas, Iowa; (20) Marshall, Kansas; (21) Kenton, Kentucky; (22) Washington, Louisiana; (26) Montcalm, Michigan; (27) Pipestone, Minnesota; (28) Prentiss, Mississippi; (29) Livingston, Missouri; (31) McPherson, Nebraska; (36) Wayne, New York; (37) Martin, North Carolina; (39) Morrow, Ohio; (40) Pawnee, Oklahoma; (42) Tioga, Pennsylvania; (46) Stanley, South Dakota; (47) Marshall, Tennessee; (48) Deaf Smith, Texas; (51) Mecklenburg, Virginia; (55) Sheboygan, Wisconsin; (72) Rincon, Puerto Rico + + + + + (51) Salem, Virginia + + + + + (72) Florida, Puerto Rico + + + + + (02) Bristol Bay, Alaska; (64) Yap, Federated States of Micronesia; (68) Bikar, Marshall Islands; (75) Trust Territory of the Pacific Islands, + + + + + (01) Covington, Alabama; (05) Dallas, Arkansas; (06) Madera, California; (08) Elbert, Colorado; (12) Gadsden, Florida; (13) Camden, Georgia; (16) Elmore, Idaho; (17) De Witt, Illinois; (18) Elkhart, Indiana; (19) Clarke, Iowa; (20) Decatur, Kansas; (21) Carlisle, Kentucky; (22) Evangeline, Louisiana; (24) Somerset, Maryland; (26) Crawford, Michigan; (27) Dodge, Minnesota; (28) George, Mississippi; (29) Cedar, Missouri; (30) Granite, Montana; (31) Cuming, Nebraska; (34) Union, New Jersey; (35) Rio Arriba, New Mexico; (36) Greene, New York; (37) Cherokee, North Carolina; (38) Griggs, North Dakota; (39) Defiance, Ohio; (40) Custer, Oklahoma; (41) Lane, Oregon; (42) Crawford, Pennsylvania; (45) Fairfield, South Carolina; (46) Deuel, South Dakota; (47) Decatur, Tennessee; (48) Brazoria, Texas; (49) Sanpete, Utah; (53) Klickitat, Washington; (54) Kanawha, West Virginia; (55) Fond Du Lac, Wisconsin; (56) Teton, Wyoming; (72) Ciales, Puerto Rico + + + + + (13) Screven, Georgia; (48) Johnson, Texas + + + + + (48) Williamson, Texas + + + + + (02) Nome, Alaska; (68) Likiep, Marshall Islands + + + + + (01) Talladega, Alabama; (05) Randolph, Arkansas; (08) Washington, Colorado; (12) Suwannee, Florida; (13) Fulton, Georgia; (17) Marion, Illinois; (18) Parke, Indiana; (19) Madison, Iowa; (20) Miami, Kansas; (21) Knox, Kentucky; (22) West Baton Rouge, Louisiana; (26) Muskegon, Michigan; (27) Pope, Minnesota; (28) Rankin, Mississippi; (29) Macon, Missouri; (31) Merrick, Nebraska; (36) Wyoming, New York; (37) Mitchell, North Carolina; (39) Noble, Ohio; (40) Pittsburg, Oklahoma; (42) Venango, Pennsylvania; (46) Todd, South Dakota; (47) Meigs, Tennessee; (48) Denton, Texas; (51) Montgomery, Virginia; (55) Trempealeau, Wisconsin; (72) Sabana Grande, Puerto Rico + + + + + (01) Coffee, Alabama; (05) Craighead, Arkansas; (06) Kings, California; (08) Denver, Colorado; (12) Duval, Florida; (13) Bulloch, Georgia; (16) Cassia, Idaho; (17) Cook, Illinois; (18) Decatur, Indiana; (19) Cedar, Iowa; (20) Coffey, Kansas; (21) Butler, Kentucky; (22) De Soto, Louisiana; (23) York, Maine; (24) Montgomery, Maryland; (26) Cheboygan, Michigan; (27) Cook, Minnesota; (28) Covington, Mississippi; (29) Cape Girardeau, Missouri; (30) Gallatin, Montana; (31) Cherry, Nebraska; (32) Washoe, Nevada; (34) Passaic, New Jersey; (35) McKinley, New Mexico; (36) Essex, New York; (37) Carteret, North Carolina; (38) Foster, North Dakota; (39) Coshocton, Ohio; (40) Comanche, Oklahoma; (41) Jefferson, Oregon; (42) Clarion, Pennsylvania; (45) Darlington, South Carolina; (46) Corson, South Dakota; (47) Coffee, Tennessee; (48) Blanco, Texas; (49) Piute, Utah; (51) Campbell, Virginia; (53) Jefferson, Washington; (54) Hardy, West Virginia; (55) Douglas, Wisconsin; (56) Platte, Wyoming; (72) Carolina, Puerto Rico + + + + + (13) Taliaferro, Georgia; (48) Kerr, Texas + + + + + (48) Taylor, Texas + + + + + (13) Wilcox, Georgia; (48) Marion, Texas + + + + + (68) Lae, Marshall Islands + + + + + (01) Pickens, Alabama; (05) Phillips, Arkansas; (06) Tulare, California; (08) Routt, Colorado; (12) Putnam, Florida; (13) Emanuel, Georgia; (17) Logan, Illinois; (18) Montgomery, Indiana; (19) Keokuk, Iowa; (20) Linn, Kansas; (21) Hopkins, Kentucky; (22) Tensas, Louisiana; (26) Mecosta, Michigan; (27) Norman, Minnesota; (28) Panola, Mississippi; (29) Lafayette, Missouri; (30) Wheatland, Montana; (31) Knox, Nebraska; (36) Tioga, New York; (37) Lenoir, North Carolina; (39) Mercer, Ohio; (40) Okfuskee, Oklahoma; (42) Schuylkill, Pennsylvania; (46) Potter, South Dakota; (47) McMinn, Tennessee; (48) Crosby, Texas; (51) Loudoun, Virginia; (54) Wood, West Virginia; (55) Rusk, Wisconsin; (72) Orocovis, Puerto Rico + + + + + (51) Franklin, Virginia + + + + + (51) Buena Vista, Virginia + + + + + (13) Troup, Georgia; (48) Lavaca, Texas + + + + + (48) Scurry, Texas + + + + + (01) Chilton, Alabama; (04) Pinal, Arizona; (05) Clay, Arkansas; (06) Glenn, California; (08) Conejos, Colorado; (12) Collier, Florida; (13) Bibb, Georgia; (16) Boundary, Idaho; (17) Christian, Illinois; (18) Clay, Indiana; (19) Buena Vista, Iowa; (20) Cherokee, Kansas; (21) Boyle, Kentucky; (22) Caldwell, Louisiana; (23) Piscataquis, Maine; (24) Frederick, Maryland; (25) Norfolk, Massachusetts; (26) Berrien, Michigan; (27) Cass, Minnesota; (28) Claiborne, Mississippi; (29) Buchanan, Missouri; (30) Dawson, Montana; (31) Burt, Nebraska; (32) Mineral, Nevada; (34) Mercer, New Jersey; (35) Harding, New Mexico; (36) Columbia, New York; (37) Buncombe, North Carolina; (38) Dickey, North Dakota; (39) Champaign, Ohio; (40) Cherokee, Oklahoma; (41) Gilliam, Oregon; (42) Cambria, Pennsylvania; (45) Cherokee, South Carolina; (46) Campbell, South Dakota; (47) Cheatham, Tennessee; (48) Bastrop, Texas; (49) Iron, Utah; (50) Rutland, Vermont; (51) Bland, Virginia; (53) Franklin, Washington; (54) Gilmer, West Virginia; (55) Columbia, Wisconsin; (56) Laramie, Wyoming; (72) Bayamon, Puerto Rico + + + + + (01) Barbour, Alabama; (04) Coconino, Arizona; (05) Baxter, Arkansas; (06) Amador, California; (08) Arapahoe, Colorado; (09) Litchfield, Connecticut; (10) Sussex, Delaware; (12) Bay, Florida; (13) Bacon, Georgia; (15) Kalawao, Hawaii; (16) Bannock, Idaho; (17) Bond, Illinois; (18) Bartholomew, Indiana; (19) Allamakee, Iowa; (20) Atchison, Kansas; (21) Anderson, Kentucky; (22) Ascension, Louisiana; (23) Cumberland, Maine; (24) Baltimore, Maryland; (25) Bristol, Massachusetts; (26) Allegan, Michigan; (27) Becker, Minnesota; (28) Amite, Mississippi; (29) Atchison, Missouri; (30) Blaine, Montana; (31) Arthur, Nebraska; (32) Douglas, Nevada; (33) Cheshire, New Hampshire; (34) Burlington, New Jersey; (35) Chaves, New Mexico; (36) Bronx, New York; (37) Alleghany, North Carolina; (38) Benson, North Dakota; (39) Ashland, Ohio; (40) Atoka, Oklahoma; (41) Clackamas, Oregon; (42) Armstrong, Pennsylvania; (44) Newport, Rhode Island; (45) Allendale, South Carolina; (46) Beadle, South Dakota; (47) Benton, Tennessee; (48) Angelina, Texas; (49) Cache, Utah; (50) Caledonia, Vermont; (51) Alleghany, Virginia; (53) Benton, Washington; (54) Boone, West Virginia; (55) Barron, Wisconsin; (56) Campbell, Wyoming; (64) Kosrae, Federated States of Micronesia; (72) Aguadilla, Puerto Rico; (75) Trust Territory of the Pacific Islands, + + + + + (51) Colonial Heights, Virginia + + + + + (70) Tobi, Palau + + + + + (13) Montgomery, Georgia; (20) Wyandotte, Kansas; (21) Scott, Kentucky; (29) Stone, Missouri; (48) Hays, Texas + + + + + (48) Oldham, Texas + + + + + (01) Russell, Alabama; (05) Polk, Arkansas; (06) Yolo, California; (08) San Miguel, Colorado; (12) Santa Rosa, Florida; (13) Fayette, Georgia; (17) McLean, Illinois; (18) Noble, Indiana; (19) Linn, Iowa; (20) McPherson, Kansas; (21) Jessamine, Kentucky; (22) Vermilion, Louisiana; (26) Missaukee, Michigan; (27) Pennington, Minnesota; (28) Pike, Mississippi; (29) Lincoln, Missouri; (30) Yellowstone Natl Park (part), Montana; (31) Logan, Nebraska; (36) Warren, New York; (37) Macon, North Carolina; (39) Montgomery, Ohio; (40) Osage, Oklahoma; (42) Sullivan, Pennsylvania; (46) Shannon, South Dakota; (47) Madison, Tennessee; (48) Dallas, Texas; (51) Madison, Virginia; (55) Sawyer, Wisconsin; (72) Ponce, Puerto Rico + + + + + (68) Wotho, Marshall Islands + + + + + (48) Menard, Texas + + + + + (02) Matanuska-Susitna, Alaska; (68) Lib, Marshall Islands + + + + + (13) Wayne, Georgia; (48) Lynn, Texas + + + + + (51) Suffolk, Virginia + + + + + (02) Fairbanks North Star, Alaska; (68) Enewetak, Marshall Islands + + + + + (77) US Miscellaneous Pacific Islands, + + + + + (02) Kodiak Island, Alaska; (68) Kwajalein, Marshall Islands; (70) Koror, Palau; (74) Jarvis Island, U.S. Minor Outlying Islands + + + + + (13) Pulaski, Georgia; (21) Whitley, Kentucky; (48) Irion, Texas + + + + + (13) Worth, Georgia; (48) Matagorda, Texas + + + + + (48) Terrell, Texas + + + + + (60) Swains Island, American Samoa; (64) Ponape, Federated States of Micronesia; (68) Arno, Marshall Islands; (75) Trust Territory of the Pacific Islands, + + + + + (48) Swisher, Texas + + + + + (48) Pecos, Texas + + + + + (02) Dillingham, Alaska; (68) Bikini, Marshall Islands + + + + + (05) White, Arkansas; (13) Harris, Georgia; (17) Perry, Illinois; (18) Shelby, Indiana; (19) Page, Iowa; (20) Pawnee, Kansas; (21) McCracken, Kentucky; (26) Saginaw, Michigan; (27) Stearns, Minnesota; (28) Union, Mississippi; (29) Newton, Missouri; (31) Red Willow, Nebraska; (37) Person, North Carolina; (39) Scioto, Ohio; (40) Wagoner, Oklahoma; (47) Roane, Tennessee; (48) Falls, Texas; (51) Powhatan, Virginia; (72) Vega Baja, Puerto Rico + + + + + (48) Sterling, Texas + + + + + (74) Johnston Atoll, U.S. Minor Outlying Islands + + + + + (48) Willacy, Texas + + + + + (13) Oglethorpe, Georgia; (21) Trigg, Kentucky; (29) Washington, Missouri; (48) Hood, Texas + + + + + (01) Lowndes, Alabama; (05) Lonoke, Arkansas; (06) Santa Clara, California; (08) Montrose, Colorado; (12) Martin, Florida; (13) Dawson, Georgia; (16) Valley, Idaho; (17) Jo Daviess, Illinois; (18) Kosciusko, Indiana; (19) Harrison, Iowa; (20) Jackson, Kansas; (21) Grayson, Kentucky; (22) Sabine, Louisiana; (26) Lake, Michigan; (27) McLeod, Minnesota; (28) Lincoln, Mississippi; (29) Hickory, Missouri; (30) Roosevelt, Montana; (31) Hayes, Nebraska; (36) Richmond, New York; (37) Harnett, North Carolina; (38) Sioux, North Dakota; (39) Lake, Ohio; (40) Love, Oklahoma; (42) Mercer, Pennsylvania; (45) Sumter, South Carolina; (46) Lyman, South Dakota; (47) Humphreys, Tennessee; (48) Collin, Texas; (51) Hanover, Virginia; (54) Ritchie, West Virginia; (55) Oneida, Wisconsin; (69) Northern Islands, Northern Mariana Islands; (72) Las Piedras, Puerto Rico + + + + + (13) Schley, Georgia; (48) Jim Wells, Texas + + + + + (68) Ujelang, Marshall Islands; (74) Palmyra Atoll, U.S. Minor Outlying Islands + + + + + (51) Richmond, Virginia + + + + + (13) Lamar, Georgia; (17) Scott, Illinois; (18) Warren, Indiana; (19) Tama, Iowa; (20) Scott, Kansas; (21) Monroe, Kentucky; (27) Wright, Minnesota; (29) Putnam, Missouri; (31) Thomas, Nebraska; (37) Surry, North Carolina; (39) Williams, Ohio; (47) Unicoi, Tennessee; (48) Gillespie, Texas; (51) Shenandoah, Virginia + + + + + (48) Stephens, Texas + + + + + (13) Wheeler, Georgia; (48) McLennan, Texas + + + + + (13) Muscogee, Georgia; (21) Spencer, Kentucky; (29) Texas, Missouri; (48) Hidalgo, Texas + + + + + (48) Mitchell, Texas + + + + + (51) Nansemond, Virginia + + + + + (48) Reeves, Texas + + + + + (01) Macon, Alabama; (05) Madison, Arkansas; (06) Santa Cruz, California; (08) Morgan, Colorado; (12) Monroe, Florida; (13) Decatur, Georgia; (16) Washington, Idaho; (17) Johnson, Illinois; (18) Lagrange, Indiana; (19) Henry, Iowa; (20) Jefferson, Kansas; (21) Green, Kentucky; (22) St Bernard, Louisiana; (26) Lapeer, Michigan; (27) Mahnomen, Minnesota; (28) Lowndes, Mississippi; (29) Holt, Missouri; (30) Rosebud, Montana; (31) Hitchcock, Nebraska; (36) Rockland, New York; (37) Haywood, North Carolina; (38) Slope, North Dakota; (39) Lawrence, Ohio; (40) McClain, Oklahoma; (42) Mifflin, Pennsylvania; (45) Union, South Carolina; (46) McCook, South Dakota; (47) Jackson, Tennessee; (48) Collingsworth, Texas; (51) Henrico, Virginia; (54) Roane, West Virginia; (55) Outagamie, Wisconsin; (72) Loiza, Puerto Rico + + + + + (68) Wotje, Marshall Islands + + + + + (02) Bethel, Alaska; (60) Western, American Samoa; (64) Truk, Federated States of Micronesia; (68) Aur, Marshall Islands; (74) Baker Island, U.S. Minor Outlying Islands; (75) Trust Territory of the Pacific Islands, + + + + + (13) Putnam, Georgia; (21) Wolfe, Kentucky; (48) Jack, Texas + + + + + (13) Warren, Georgia; (48) Loving, Texas + + + + + (13) Talbot, Georgia; (48) Kent, Texas + + + + + (48) Washington, Texas + + + + + (51) Bedford, Virginia + + + + + (04) La Paz, Arizona + + + + + (48) Montgomery, Texas + + + + + (01) Blount, Alabama; (04) Graham, Arizona; (05) Boone, Arkansas; (06) Calaveras, California; (08) Baca, Colorado; (09) New Haven, Connecticut; (12) Brevard, Florida; (13) Baldwin, Georgia; (15) Maui, Hawaii; (16) Benewah, Idaho; (17) Brown, Illinois; (18) Blackford, Indiana; (19) Audubon, Iowa; (20) Barton, Kansas; (21) Barren, Kentucky; (22) Avoyelles, Louisiana; (23) Hancock, Maine; (24) Calvert, Maryland; (25) Essex, Massachusetts; (26) Antrim, Michigan; (27) Benton, Minnesota; (28) Benton, Mississippi; (29) Barry, Missouri; (30) Carbon, Montana; (31) Blaine, Nebraska; (32) Esmeralda, Nevada; (33) Grafton, New Hampshire; (34) Cape May, New Jersey; (35) Curry, New Mexico; (36) Cattaraugus, New York; (37) Ashe, North Carolina; (38) Bottineau, North Dakota; (39) Athens, Ohio; (40) Beckham, Oklahoma; (41) Columbia, Oregon; (42) Bedford, Pennsylvania; (44) Washington, Rhode Island; (45) Bamberg, South Carolina; (46) Bon Homme, South Dakota; (47) Blount, Tennessee; (48) Archer, Texas; (49) Daggett, Utah; (50) Essex, Vermont; (51) Amherst, Virginia; (53) Clallam, Washington; (54) Brooke, West Virginia; (55) Brown, Wisconsin; (56) Converse, Wyoming; (72) Aibonito, Puerto Rico + + + + + (13) Meriwether, Georgia; (17) Williamson, Illinois; (20) Wallace, Kansas; (21) Pulaski, Kentucky; (29) Scotland, Missouri; (37) Yancey, North Carolina; (48) Hardin, Texas; (51) York, Virginia + + + + + (51) Covington, Virginia + + + + + (01) Mobile, Alabama; (05) Montgomery, Arkansas; (06) Sonoma, California; (08) Pitkin, Colorado; (12) Osceola, Florida; (13) Douglas, Georgia; (17) Lake, Illinois; (18) Marion, Indiana; (19) Jackson, Iowa; (20) Kiowa, Kansas; (21) Harrison, Kentucky; (22) St Landry, Louisiana; (26) Mackinac, Michigan; (27) Morrison, Minnesota; (28) Montgomery, Mississippi; (29) Jasper, Missouri; (30) Sweet Grass, Montana; (31) Johnson, Nebraska; (36) Schuyler, New York; (37) Iredell, North Carolina; (38) Traill, North Dakota; (39) Madison, Ohio; (40) Mayes, Oklahoma; (42) Northumberland, Pennsylvania; (46) Miner, South Dakota; (47) Lauderdale, Tennessee; (48) Cooke, Texas; (51) King And Queen, Virginia; (54) Upshur, West Virginia; (55) Portage, Wisconsin; (72) Mayaguez, Puerto Rico + + + + + (01) Cleburne, Alabama; (05) Conway, Arkansas; (06) Kern, California; (08) Delta, Colorado; (12) Dixie, Florida; (13) Bryan, Georgia; (16) Caribou, Idaho; (17) Coles, Illinois; (18) Dearborn, Indiana; (19) Cass, Iowa; (20) Cloud, Kansas; (21) Bullitt, Kentucky; (22) Concordia, Louisiana; (23) Washington, Maine; (24) Kent, Maryland; (26) Charlevoix, Michigan; (27) Clearwater, Minnesota; (28) Copiah, Mississippi; (29) Camden, Missouri; (30) Flathead, Montana; (31) Chase, Nebraska; (32) Storey, Nevada; (34) Ocean, New Jersey; (35) Luna, New Mexico; (36) Erie, New York; (37) Camden, North Carolina; (38) Emmons, North Dakota; (39) Columbiana, Ohio; (40) Coal, Oklahoma; (41) Jackson, Oregon; (42) Chester, Pennsylvania; (45) Colleton, South Carolina; (46) Codington, South Dakota; (47) Cocke, Tennessee; (48) Bexar, Texas; (49) Morgan, Utah; (51) Buckingham, Virginia; (53) Island, Washington; (54) Hancock, West Virginia; (55) Door, Wisconsin; (56) Park, Wyoming; (72) Canovanas, Puerto Rico + + + + + (13) Tattnall, Georgia; (48) Kimble, Texas + + + + + (70) Ngarchelong, Palau + + + + + (02) Aleutian Islands, Alaska; (60) Eastern, American Samoa; (66) Guam, Guam; (68) Ailinglaplap, Marshall Islands; (69) Garapan, Northern Mariana Islands; (70) Angaur, Palau; (78) St. Croix, Virgin Islands of the U.S. + + + + + (05) Sharp, Arkansas; (13) Gwinnett, Georgia; (17) Montgomery, Illinois; (18) Randolph, Indiana; (19) Monroe, Iowa; (20) Ness, Kansas; (21) Lewis, Kentucky; (26) Oscoda, Michigan; (27) Roseau, Minnesota; (28) Tallahatchie, Mississippi; (29) Moniteau, Missouri; (31) Perkins, Nebraska; (37) Orange, North Carolina; (39) Preble, Ohio; (40) Sequoyah, Oklahoma; (46) Yankton, South Dakota; (47) Perry, Tennessee; (48) Ector, Texas; (51) Nottoway, Virginia; (55) Waupaca, Wisconsin; (72) Toa Alta, Puerto Rico + + + + + (13) Jones, Georgia; (17) Schuyler, Illinois; (18) Wabash, Indiana; (19) Story, Iowa; (20) Saline, Kansas; (21) Metcalfe, Kentucky; (27) Winona, Minnesota; (29) Pulaski, Missouri; (31) Thayer, Nebraska; (37) Stokes, North Carolina; (39) Wayne, Ohio; (47) Trousdale, Tennessee; (48) Garza, Texas; (51) Scott, Virginia + + + + + (13) Ware, Georgia; (48) Llano, Texas + + + + + (01) Lawrence, Alabama; (05) Lincoln, Arkansas; (06) San Luis Obispo, California; (08) Mineral, Colorado; (12) Madison, Florida; (13) Crawford, Georgia; (16) Shoshone, Idaho; (17) Jasper, Illinois; (18) Jennings, Indiana; (19) Hamilton, Iowa; (20) Harvey, Kansas; (21) Garrard, Kentucky; (22) Rapides, Louisiana; (26) Kalkaska, Michigan; (27) Le Sueur, Minnesota; (28) Leake, Mississippi; (29) Grundy, Missouri; (30) Prairie, Montana; (31) Hall, Nebraska; (36) Putnam, New York; (37) Greene, North Carolina; (38) Rolette, North Dakota; (39) Jackson, Ohio; (40) Le Flore, Oklahoma; (42) Luzerne, Pennsylvania; (45) Richland, South Carolina; (46) Lake, South Dakota; (47) Henry, Tennessee; (48) Cochran, Texas; (51) Greene, Virginia; (54) Putnam, West Virginia; (55) Milwaukee, Wisconsin; (72) Lajas, Puerto Rico + + + + + (51) Portsmouth, Virginia + + + + + (13) Randolph, Georgia; (48) Jeff Davis, Texas + + + + + (13) Jefferson, Georgia; (17) St Clair, Illinois; (18) Vanderburgh, Indiana; (19) Scott, Iowa; (20) Rooks, Kansas; (21) Meade, Kentucky; (26) Wayne, Michigan; (27) Washington, Minnesota; (28) Yazoo, Mississippi; (29) Pike, Missouri; (31) Sherman, Nebraska; (37) Sampson, North Carolina; (39) Vinton, Ohio; (47) Sullivan, Tennessee; (48) Frio, Texas; (51) Rockbridge, Virginia + + + + + (70) Ngchesar, Palau + + + + + (48) Randall, Texas + + + + + (68) Rongelap, Marshall Islands; (70) Peleliu, Palau; (74) Navassa Island, U.S. Minor Outlying Islands + + + + + (01) Dale, Alabama; (05) Faulkner, Arkansas; (06) Mendocino, California; (08) Garfield, Colorado; (12) Gulf, Florida; (13) Carroll, Georgia; (16) Gem, Idaho; (17) Edgar, Illinois; (18) Fountain, Indiana; (19) Clinton, Iowa; (20) Douglas, Kansas; (21) Casey, Kentucky; (22) Iberia, Louisiana; (24) Wicomico, Maryland; (26) Eaton, Michigan; (27) Fillmore, Minnesota; (28) Hancock, Mississippi; (29) Clark, Missouri; (30) Judith Basin, Montana; (31) Dawes, Nebraska; (35) San Juan, New Mexico; (36) Jefferson, New York; (37) Cleveland, North Carolina; (38) La Moure, North Dakota; (39) Fairfield, Ohio; (40) Ellis, Oklahoma; (41) Malheur, Oregon; (42) Delaware, Pennsylvania; (45) Greenville, South Carolina; (46) Edmunds, South Dakota; (47) Dyer, Tennessee; (48) Briscoe, Texas; (49) Tooele, Utah; (51) Craig, Virginia; (53) Mason, Washington; (54) Logan, West Virginia; (55) Green, Wisconsin; (56) Weston, Wyoming; (72) Comerio, Puerto Rico + + + + + (01) Franklin, Alabama; (05) Hot Spring, Arkansas; (06) Orange, California; (08) Jefferson, Colorado; (12) Holmes, Florida; (13) Clarke, Georgia; (16) Lemhi, Idaho; (17) Gallatin, Illinois; (18) Hancock, Indiana; (19) Dickinson, Iowa; (20) Franklin, Kansas; (21) Daviess, Kentucky; (22) La Salle, Louisiana; (26) Hillsdale, Michigan; (27) Isanti, Minnesota; (28) Jackson, Mississippi; (29) Dallas, Missouri; (30) Meagher, Montana; (31) Fillmore, Nebraska; (35) Union, New Mexico; (36) Nassau, New York; (37) Davie, North Carolina; (38) Morton, North Dakota; (39) Guernsey, Ohio; (40) Harper, Oklahoma; (41) Umatilla, Oregon; (42) Greene, Pennsylvania; (45) Laurens, South Carolina; (46) Hand, South Dakota; (47) Greene, Tennessee; (48) Callahan, Texas; (51) Fairfax, Virginia; (53) Skamania, Washington; (54) Mingo, West Virginia; (55) Kenosha, Wisconsin; (72) Guayanilla, Puerto Rico + + + + + (13) Walton, Georgia; (48) Live Oak, Texas + + + + + (13) Union, Georgia; (48) Liberty, Texas + + + + + (48) Maverick, Texas + + + + + (48) San Augustine, Texas + + + + + (48) Wharton, Texas + + + + + (51) Waynesboro, Virginia + + + + + (48) Navarro, Texas + + + + + (01) Sumter, Alabama; (05) Pulaski, Arkansas; (08) Teller, Colorado; (12) Sumter, Florida; (13) Franklin, Georgia; (17) Madison, Illinois; (18) Owen, Indiana; (19) Lyon, Iowa; (20) Meade, Kansas; (21) Knott, Kentucky; (22) Webster, Louisiana; (26) Montmorency, Michigan; (27) Polk, Minnesota; (28) Quitman, Mississippi; (29) McDonald, Missouri; (31) Madison, Nebraska; (36) Westchester, New York; (37) Mecklenburg, North Carolina; (39) Muskingum, Ohio; (40) Payne, Oklahoma; (42) Union, Pennsylvania; (46) Sully, South Dakota; (47) Maury, Tennessee; (48) Delta, Texas; (51) Middlesex, Virginia; (55) Taylor, Wisconsin; (72) Rio Grande, Puerto Rico + + + + + (01) Chambers, Alabama; (04) Navajo, Arizona; (05) Chicot, Arkansas; (06) El Dorado, California; (08) Cheyenne, Colorado; (12) Citrus, Florida; (13) Ben Hill, Georgia; (16) Bonner, Idaho; (17) Cass, Illinois; (18) Cass, Indiana; (19) Bremer, Iowa; (20) Chase, Kansas; (21) Bourbon, Kentucky; (22) Caddo, Louisiana; (23) Oxford, Maine; (24) Charles, Maryland; (25) Middlesex, Massachusetts; (26) Bay, Michigan; (27) Carlton, Minnesota; (28) Chickasaw, Mississippi; (29) Bollinger, Missouri; (30) Custer, Montana; (31) Brown, Nebraska; (32) Lincoln, Nevada; (33) Strafford, New Hampshire; (34) Hudson, New Jersey; (35) Grant, New Mexico; (36) Chenango, New York; (37) Bladen, North Carolina; (38) Cass, North Dakota; (39) Butler, Ohio; (40) Canadian, Oklahoma; (41) Deschutes, Oregon; (42) Bucks, Pennsylvania; (45) Calhoun, South Carolina; (46) Buffalo, South Dakota; (47) Carroll, Tennessee; (48) Bailey, Texas; (49) Garfield, Utah; (50) Orange, Vermont; (51) Bath, Virginia; (53) Douglas, Washington; (54) Doddridge, West Virginia; (55) Chippewa, Wisconsin; (56) Hot Springs, Wyoming; (72) Barceloneta, Puerto Rico + + + + + (01) Madison, Alabama; (05) Marion, Arkansas; (06) Shasta, California; (08) Otero, Colorado; (12) Nassau, Florida; (13) De Kalb, Georgia; (17) Kane, Illinois; (18) Lake, Indiana; (19) Howard, Iowa; (20) Jewell, Kansas; (21) Greenup, Kentucky; (22) St Charles, Louisiana; (26) Leelanau, Michigan; (27) Marshall, Minnesota; (28) Madison, Mississippi; (29) Howard, Missouri; (30) Sanders, Montana; (31) Holt, Nebraska; (36) St Lawrence, New York; (37) Henderson, North Carolina; (38) Stark, North Dakota; (39) Licking, Ohio; (40) McCurtain, Oklahoma; (42) Monroe, Pennsylvania; (45) Williamsburg, South Carolina; (46) McPherson, South Dakota; (47) Jefferson, Tennessee; (48) Colorado, Texas; (51) Henry, Virginia; (54) Summers, West Virginia; (55) Ozaukee, Wisconsin; (72) Luquillo, Puerto Rico + + + + + (05) Woodruff, Arkansas; (13) Hart, Georgia; (17) Piatt, Illinois; (18) Spencer, Indiana; (19) Palo Alto, Iowa; (20) Phillips, Kansas; (21) McCreary, Kentucky; (26) St Clair, Michigan; (27) Steele, Minnesota; (28) Walthall, Mississippi; (29) Nodaway, Missouri; (31) Richardson, Nebraska; (37) Pitt, North Carolina; (39) Seneca, Ohio; (40) Washington, Oklahoma; (47) Robertson, Tennessee; (48) Fannin, Texas; (51) Prince Edward, Virginia; (72) Vieques, Puerto Rico + + + + + (02) Sitka, Alaska + + + + + (51) Manassas Park, Virginia + + + + + (01) Bullock, Alabama; (04) Greenlee, Arizona; (05) Bradley, Arkansas; (06) Colusa, California; (08) Bent, Colorado; (09) New London, Connecticut; (12) Broward, Florida; (13) Banks, Georgia; (16) Bingham, Idaho; (17) Bureau, Illinois; (18) Boone, Indiana; (19) Benton, Iowa; (20) Bourbon, Kansas; (21) Bath, Kentucky; (22) Beauregard, Louisiana; (23) Kennebec, Maine; (24) Caroline, Maryland; (25) Franklin, Massachusetts; (26) Arenac, Michigan; (27) Big Stone, Minnesota; (28) Bolivar, Mississippi; (29) Barton, Missouri; (30) Carter, Montana; (31) Boone, Nebraska; (32) Eureka, Nevada; (33) Hillsborough, New Hampshire; (34) Cumberland, New Jersey; (35) De Baca, New Mexico; (36) Cayuga, New York; (37) Avery, North Carolina; (38) Bowman, North Dakota; (39) Auglaize, Ohio; (40) Blaine, Oklahoma; (41) Coos, Oregon; (42) Berks, Pennsylvania; (45) Barnwell, South Carolina; (46) Brookings, South Dakota; (47) Bradley, Tennessee; (48) Armstrong, Texas; (49) Davis, Utah; (50) Franklin, Vermont; (51) Appomattox, Virginia; (53) Clark, Washington; (54) Cabell, West Virginia; (55) Buffalo, Wisconsin; (56) Crook, Wyoming; (72) Anasco, Puerto Rico + + + + + (01) Walker, Alabama; (05) Scott, Arkansas; (12) Volusia, Florida; (13) Glynn, Georgia; (17) Massac, Illinois; (18) Porter, Indiana; (19) Marshall, Iowa; (20) Morris, Kansas; (21) Lawrence, Kentucky; (22) Winn, Louisiana; (26) Oceana, Michigan; (27) Redwood, Minnesota; (28) Simpson, Mississippi; (29) Marion, Missouri; (31) Nemaha, Nebraska; (37) Nash, North Carolina; (39) Perry, Ohio; (40) Pushmataha, Oklahoma; (42) Wayne, Pennsylvania; (46) Union, South Dakota; (47) Moore, Tennessee; (48) Dimmit, Texas; (51) New Kent, Virginia; (55) Walworth, Wisconsin; (72) San Juan, Puerto Rico + + + + + (48) Wilson, Texas + + + + + (48) Shelby, Texas + + + + + (48) Morris, Texas + + + + + (02) Kenai Peninsula, Alaska + + + + + (48) Runnels, Texas + + + + + (48) Reagan, Texas + + + + + (01) Crenshaw, Alabama; (05) Desha, Arkansas; (06) Marin, California; (08) El Paso, Colorado; (12) Gilchrist, Florida; (16) Franklin, Idaho; (17) Douglas, Illinois; (18) Fayette, Indiana; (19) Clay, Iowa; (20) Dickinson, Kansas; (21) Carroll, Kentucky; (22) Franklin, Louisiana; (24) Talbot, Maryland; (26) Delta, Michigan; (27) Douglas, Minnesota; (28) Greene, Mississippi; (29) Chariton, Missouri; (30) Hill, Montana; (31) Custer, Nebraska; (34) Warren, New Jersey; (35) Roosevelt, New Mexico; (36) Hamilton, New York; (37) Chowan, North Carolina; (38) Hettinger, North Dakota; (39) Delaware, Ohio; (40) Delaware, Oklahoma; (41) Lincoln, Oregon; (42) Cumberland, Pennsylvania; (45) Florence, South Carolina; (46) Dewey, South Dakota; (47) De Kalb, Tennessee; (48) Brazos, Texas; (49) Sevier, Utah; (51) Chesterfield, Virginia; (53) Lewis, Washington; (54) Lewis, West Virginia; (55) Forest, Wisconsin; (56) Uinta, Wyoming; (72) Cidra, Puerto Rico + + + + + (13) Wilkinson, Georgia; (48) Mason, Texas + + + + + (01) Pike, Alabama; (05) Pike, Arkansas; (06) Tuolumne, California; (08) Saguache, Colorado; (12) St Johns, Florida; (13) Evans, Georgia; (17) McDonough, Illinois; (18) Morgan, Indiana; (19) Kossuth, Iowa; (20) Logan, Kansas; (21) Jackson, Kentucky; (22) Terrebonne, Louisiana; (26) Menominee, Michigan; (27) Olmsted, Minnesota; (28) Pearl River, Mississippi; (29) Lawrence, Missouri; (30) Wibaux, Montana; (31) Lancaster, Nebraska; (36) Tompkins, New York; (37) Lincoln, North Carolina; (39) Miami, Ohio; (40) Oklahoma, Oklahoma; (42) Snyder, Pennsylvania; (46) Roberts, South Dakota; (47) McNairy, Tennessee; (48) Culberson, Texas; (51) Louisa, Virginia; (54) Wyoming, West Virginia; (55) St Croix, Wisconsin; (72) Patillas, Puerto Rico + + + + + (01) Coosa, Alabama; (05) Cross, Arkansas; (06) Los Angeles, California; (08) Eagle, Colorado; (12) Franklin, Florida; (13) Calhoun, Georgia; (16) Custer, Idaho; (17) De Kalb, Illinois; (18) Dubois, Indiana; (19) Chickasaw, Iowa; (20) Crawford, Kansas; (21) Campbell, Kentucky; (22) East Feliciana, Louisiana; (24) St Mary\s, Maryland; (26) Clinton, Michigan; (27) Dakota, Minnesota; (28) Franklin, Mississippi; (29) Cass, Missouri; (30) Golden Valley, Montana; (31) Colfax, Nebraska; (34) Sussex, New Jersey; (35) Quay, New Mexico; (36) Genesee, New York; (37) Chatham, North Carolina; (38) Grant, North Dakota; (39) Darke, Ohio; (40) Creek, Oklahoma; (41) Lake, Oregon; (42) Columbia, Pennsylvania; (45) Edgefield, South Carolina; (46) Day, South Dakota; (47) Davidson, Tennessee; (48) Bowie, Texas; (49) San Juan, Utah; (51) Charlotte, Virginia; (53) Kittitas, Washington; (54) Jefferson, West Virginia; (55) Florence, Wisconsin; (56) Sweetwater, Wyoming; (72) Ceiba, Puerto Rico + + + + + (13) Stephens, Georgia; (48) Kaufman, Texas + + + + + (13) Tift, Georgia; (48) Lamar, Texas + + + + + (02) Wade Hampton, Alaska + + + + + (48) Wichita, Texas + + + + + (13) Whitfield, Georgia; (48) Madison, Texas + + + + + (01) Elmore, Alabama; (05) Garland, Arkansas; (06) Mono, California; (08) Gunnison, Colorado; (12) Hendry, Florida; (13) Chatham, Georgia; (16) Jefferson, Idaho; (17) Fayette, Illinois; (18) Gibson, Indiana; (19) Davis, Iowa; (20) Ellis, Kansas; (21) Clay, Kentucky; (22) Jefferson, Louisiana; (26) Gladwin, Michigan; (27) Grant, Minnesota; (28) Holmes, Mississippi; (29) Cole, Missouri; (30) Liberty, Montana; (31) Dixon, Nebraska; (35) Sierra, New Mexico; (36) Livingston, New York; (37) Cumberland, North Carolina; (38) McIntosh, North Dakota; (39) Fulton, Ohio; (40) Grady, Oklahoma; (41) Multnomah, Oregon; (42) Fayette, Pennsylvania; (45) Horry, South Carolina; (46) Grant, South Dakota; (47) Franklin, Tennessee; (48) Burleson, Texas; (49) Wasatch, Utah; (51) Dickenson, Virginia; (53) Pend Oreille, Washington; (54) Marshall, West Virginia; (55) Iron, Wisconsin; (72) Dorado, Puerto Rico + + + + + (01) Choctaw, Alabama; (04) Santa Cruz, Arizona; (05) Cleburne, Arkansas; (06) Humboldt, California; (08) Costilla, Colorado; (12) Columbia, Florida; (13) Bleckley, Georgia; (16) Butte, Idaho; (17) Clark, Illinois; (18) Clinton, Indiana; (19) Butler, Iowa; (20) Cheyenne, Kansas; (21) Bracken, Kentucky; (22) Cameron, Louisiana; (23) Sagadahoc, Maine; (24) Garrett, Maryland; (25) Plymouth, Massachusetts; (26) Branch, Michigan; (27) Chippewa, Minnesota; (28) Clarke, Mississippi; (29) Butler, Missouri; (30) Deer Lodge, Montana; (31) Butler, Nebraska; (32) Nye, Nevada; (34) Middlesex, New Jersey; (35) Hidalgo, New Mexico; (36) Cortland, New York; (37) Burke, North Carolina; (38) Divide, North Dakota; (39) Clark, Ohio; (40) Choctaw, Oklahoma; (41) Grant, Oregon; (42) Cameron, Pennsylvania; (45) Chester, South Carolina; (46) Charles Mix, South Dakota; (47) Chester, Tennessee; (48) Baylor, Texas; (49) Juab, Utah; (50) Washington, Vermont; (51) Botetourt, Virginia; (53) Garfield, Washington; (54) Grant, West Virginia; (55) Crawford, Wisconsin; (56) Lincoln, Wyoming; (72) Cabo Rojo, Puerto Rico + + + + + (51) Harrisonburg, Virginia + + + + + (02) Skagway-Yakutat-Angoon, Alaska; (13) Pike, Georgia; (21) Wayne, Kentucky; (48) Hunt, Texas + + + + + (13) Toombs, Georgia; (48) Lamb, Texas + + + + + (48) Rains, Texas + + + + + (48) Medina, Texas + + + + + (01) Greene, Alabama; (05) Independence, Arkansas; (06) Plumas, California; (08) Kit Carson, Colorado; (12) Jackson, Florida; (13) Clayton, Georgia; (16) Lincoln, Idaho; (17) Grundy, Illinois; (18) Hendricks, Indiana; (19) Emmet, Iowa; (20) Gove, Kansas; (21) Elliott, Kentucky; (22) Livingston, Louisiana; (26) Huron, Michigan; (27) Jackson, Minnesota; (28) Jefferson, Mississippi; (29) De Kalb, Missouri; (30) Missoula, Montana; (31) Frontier, Nebraska; (36) Niagara, New York; (37) Durham, North Carolina; (38) Nelson, North Dakota; (39) Hancock, Ohio; (40) Hughes, Oklahoma; (41) Wallowa, Oregon; (42) Indiana, Pennsylvania; (45) Lexington, South Carolina; (46) Harding, South Dakota; (47) Hamblen, Tennessee; (48) Camp, Texas; (51) Floyd, Virginia; (53) Spokane, Washington; (54) Monroe, West Virginia; (55) La Crosse, Wisconsin; (72) Gurabo, Puerto Rico + + + + + (48) Ochiltree, Texas + + + + + (51) Charles City, Virginia + + + + + (13) Lumpkin, Georgia; (17) Warren, Illinois; (19) Webster, Iowa; (20) Stanton, Kansas; (21) Owen, Kentucky; (29) St Francois, Missouri; (37) Washington, North Carolina; (47) Williamson, Tennessee; (48) Guadalupe, Texas; (51) Warren, Virginia + + + + + (13) Spalding, Georgia; (48) Karnes, Texas + + + + + (48) Rusk, Texas + + + + + (48) Nacogdoches, Texas + + + + + (48) Roberts, Texas + + + + + (13) Rockdale, Georgia; (48) Jim Hogg, Texas + + + + + (48) Presidio, Texas + + + + + (13) Madison, Georgia; (17) Whiteside, Illinois; (19) Worth, Iowa; (20) Trego, Kansas; (21) Pike, Kentucky; (29) Saline, Missouri; (37) Wilson, North Carolina; (48) Hansford, Texas; (51) Wise, Virginia + + + + + (70) Melekeiok, Palau + + + + + (51) South Boston, Virginia + + + + + (68) Utrik, Marshall Islands + + + + + (02) Anchorage, Alaska; (60) Manu\a, American Samoa; (75) Trust Territory of the Pacific Islands, ; (78) St. John, Virgin Islands of the U.S. + + + + + (01) Conecuh, Alabama; (05) Crittenden, Arkansas; (06) Lassen, California; (08) Douglas, Colorado; (12) Flagler, Florida; (13) Butts, Georgia; (16) Clearwater, Idaho; (17) Cumberland, Illinois; (18) Delaware, Indiana; (19) Cherokee, Iowa; (20) Cowley, Kansas; (21) Calloway, Kentucky; (22) East Carroll, Louisiana; (24) Queen Anne\s, Maryland; (26) Clare, Michigan; (27) Crow Wing, Minnesota; (28) Forrest, Mississippi; (29) Carter, Missouri; (30) Glacier, Montana; (31) Clay, Nebraska; (34) Somerset, New Jersey; (35) Otero, New Mexico; (36) Fulton, New York; (37) Catawba, North Carolina; (38) Grand Forks, North Dakota; (39) Cuyahoga, Ohio; (40) Craig, Oklahoma; (41) Klamath, Oregon; (42) Clinton, Pennsylvania; (45) Dorchester, South Carolina; (46) Davison, South Dakota; (47) Cumberland, Tennessee; (48) Bosque, Texas; (49) Salt Lake, Utah; (51) Carroll, Virginia; (53) Kitsap, Washington; (54) Jackson, West Virginia; (55) Eau Claire, Wisconsin; (56) Sublette, Wyoming; (72) Cayey, Puerto Rico + + + + + (48) Wheeler, Texas + + + + + (13) Henry, Georgia; (17) Pope, Illinois; (18) Steuben, Indiana; (19) Pocahontas, Iowa; (20) Pratt, Kansas; (21) Madison, Kentucky; (26) Sanilac, Michigan; (27) Swift, Minnesota; (28) Washington, Mississippi; (29) Osage, Missouri; (31) Saline, Nebraska; (37) Randolph, North Carolina; (39) Stark, Ohio; (40) Woods, Oklahoma; (47) Scott, Tennessee; (48) Fisher, Texas; (72) Yabucoa, Puerto Rico + + + + + (48) Tom Green, Texas + + + + + (05) Stone, Arkansas; (13) Habersham, Georgia; (17) Morgan, Illinois; (18) Ripley, Indiana; (19) Montgomery, Iowa; (20) Norton, Kansas; (21) Lincoln, Kentucky; (26) Otsego, Michigan; (27) St Louis, Minnesota; (28) Tate, Mississippi; (29) Monroe, Missouri; (31) Phelps, Nebraska; (37) Pamlico, North Carolina; (39) Putnam, Ohio; (40) Stephens, Oklahoma; (46) Ziebach, South Dakota; (47) Pickett, Tennessee; (48) Edwards, Texas; (51) Orange, Virginia; (55) Waushara, Wisconsin; (72) Toa Baja, Puerto Rico + + + + + (51) Winchester, Virginia + + + + + (48) San Patricio, Texas + + + + + (01) Henry, Alabama; (05) Jackson, Arkansas; (06) Sacramento, California; (08) La Plata, Colorado; (12) Lafayette, Florida; (13) Cobb, Georgia; (16) Minidoka, Idaho; (17) Hancock, Illinois; (18) Howard, Indiana; (19) Floyd, Iowa; (20) Grant, Kansas; (21) Fayette, Kentucky; (22) Morehouse, Louisiana; (26) Ionia, Michigan; (27) Kandiyohi, Minnesota; (28) Jones, Mississippi; (29) Douglas, Missouri; (30) Park, Montana; (31) Gage, Nebraska; (36) Onondaga, New York; (37) Forsyth, North Carolina; (38) Pembina, North Dakota; (39) Harrison, Ohio; (40) Jefferson, Oklahoma; (41) Washington, Oregon; (42) Juniata, Pennsylvania; (45) Marion, South Carolina; (46) Hutchinson, South Dakota; (47) Hancock, Tennessee; (48) Cass, Texas; (51) Franklin, Virginia; (53) Thurston, Washington; (54) Nicholas, West Virginia; (55) Langlade, Wisconsin; (72) Hormigueros, Puerto Rico + + + + + (13) Johnson, Georgia; (17) Sangamon, Illinois; (18) Vigo, Indiana; (19) Sioux, Iowa; (20) Russell, Kansas; (21) Mercer, Kentucky; (27) Wilkin, Minnesota; (29) Polk, Missouri; (31) Stanton, Nebraska; (37) Stanly, North Carolina; (39) Washington, Ohio; (47) Tipton, Tennessee; (48) Galveston, Texas; (51) Russell, Virginia + + + + + (02) Northwest Arctic, Alaska + + + + + (13) Peach, Georgia; (21) Union, Kentucky; (29) Webster, Missouri; (48) Houston, Texas + + + + + (48) Winkler, Texas + + + + + (51) Falls Church, Virginia + + + + + (48) Zavala, Texas + + + + + (48) Walker, Texas + + + + + (48) Tyler, Texas + + + + + (13) Turner, Georgia; (48) Lee, Texas + + + + + (51) Poquoson, Virginia + + + + + (48) Mills, Texas + + + + + (51) Hopewell, Virginia + + + + + (13) Macon, Georgia; (17) White, Illinois; (19) Woodbury, Iowa; (20) Thomas, Kansas; (21) Perry, Kentucky; (29) Ste Genevieve, Missouri; (37) Wilkes, North Carolina; (48) Hamilton, Texas; (51) Westmoreland, Virginia + + + + + (48) Terry, Texas + + + + + (70) Sonsorol, Palau + + + + + (01) Bibb, Alabama; (04) Gila, Arizona; (05) Benton, Arkansas; (06) Butte, California; (08) Archuleta, Colorado; (09) Middlesex, Connecticut; (12) Bradford, Florida; (13) Baker, Georgia; (15) Kauai, Hawaii; (16) Bear Lake, Idaho; (17) Boone, Illinois; (18) Benton, Indiana; (19) Appanoose, Iowa; (20) Barber, Kansas; (21) Ballard, Kentucky; (22) Assumption, Louisiana; (23) Franklin, Maine; (25) Dukes, Massachusetts; (26) Alpena, Michigan; (27) Beltrami, Minnesota; (28) Attala, Mississippi; (29) Audrain, Missouri; (30) Broadwater, Montana; (31) Banner, Nebraska; (32) Elko, Nevada; (33) Coos, New Hampshire; (34) Camden, New Jersey; (35) Colfax, New Mexico; (36) Broome, New York; (37) Anson, North Carolina; (38) Billings, North Dakota; (39) Ashtabula, Ohio; (40) Beaver, Oklahoma; (41) Clatsop, Oregon; (42) Beaver, Pennsylvania; (44) Providence, Rhode Island; (45) Anderson, South Carolina; (46) Bennett, South Dakota; (47) Bledsoe, Tennessee; (48) Aransas, Texas; (49) Carbon, Utah; (50) Chittenden, Vermont; (51) Amelia, Virginia; (53) Chelan, Washington; (54) Braxton, West Virginia; (55) Bayfield, Wisconsin; (56) Carbon, Wyoming; (68) Ailinginae, Marshall Islands; (72) Aguas Buenas, Puerto Rico + + + + + (48) Yoakum, Texas + + + + + (48) Schleicher, Texas + + + + + (48) Tarrant, Texas + + + + + (70) Airai, Palau + + + + + (51) Chesapeake, Virginia + + + + + (48) Ward, Texas + + + + + (68) Ebon, Marshall Islands + + + + + (48) Stonewall, Texas + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/iso_4217/2.0/constraint-schema-transform.xsl b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/iso_4217/2.0/constraint-schema-transform.xsl new file mode 100644 index 000000000..ebe9d41a5 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/iso_4217/2.0/constraint-schema-transform.xsl @@ -0,0 +1,709 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/iso_4217/2.0/iso_4217.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/iso_4217/2.0/iso_4217.xsd new file mode 100644 index 000000000..7f2974b15 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/iso_4217/2.0/iso_4217.xsd @@ -0,0 +1,1020 @@ + + + + Codes for the representation of currencies and funds from the International Organization for Standardization (ISO) 4217:2001. + + true + + + + + + + + + Mauritius Rupee: Mauritius + + + + + Uzbekistan Sum: Uzbekistan + + + + + New Dinar: Yugoslavia + + + + + Sudanese Dinar: Sudan + + + + + St Helena Pound: St Helena + + + + + European Unit of Account 17 (E.U.A.- 17): Bond Markets Units + + + + + Irish Pound: Ireland + + + + + Schilling: Austria + + + + + Pataca: Macau + + + + + Pakistan Rupee: Pakistan + + + + + Riel: Cambodia + + + + + Gourde: Haiti + + + + + Italian Lira: Italy, San Marino, Vatican City State (Holy See) + + + + + Quetzal: Guatemala + + + + + Russian Ruble: Russian Federation + + + + + Jamaican Dollar: Jamaica + + + + + Trinidad and Tobago Dollar: Trinidad and Tobago + + + + + Zimbabwe Dollar: Zimbabwe + + + + + Tanzanian Shilling: Tanzania, United Republic Of + + + + + Somoni: Tajikistan + + + + + Cape Verde Escudo: Cape Verde + + + + + Tenge: Kazakhstan + + + + + Guyana Dollar: Guyana + + + + + Tala: Samoa + + + + + Dominican Peso: Dominican Republic + + + + + Andorran Peseta: Andorra + + + + + North Korean Won: Korea, Democratic People's Republic Of + + + + + Dalasi: Gambia + + + + + Unidad de Valor Constante (UVC): Ecuador + + + + + Nakfa: Eritrea + + + + + Codes specifically reserved for testing purposes: + + + + + Kwanza Reajustado: Angola + + + + + Unidades de fomento: Chile + + + + + European Unit of Account 9 (E.U.A.- 9): Bond Markets Units + + + + + Pa'anga: Tonga + + + + + Barbados Dollar: Barbados + + + + + Gold Bond Markets Units: + + + + + Sri Lanka Rupee: Sri Lanka + + + + + Maltese Lira: Malta + + + + + Guinea Franc: Guinea + + + + + Lari: Georgia + + + + + Timor Escudo: East Timor + + + + + Liberian Dollar: Liberia + + + + + Latvian Lats: Latvia + + + + + Seychelles Rupee: Seychelles + + + + + French Franc: Andorra, France, French Guiana, French Southern Territories, Guadeloupe, Martinique, Monaco, Reunion, St Pierre and Miquelon + + + + + Mexican Peso: Mexico + + + + + Gold-Franc: Special settlement currencies + + + + + Drachma: Greece + + + + + Moroccan Dirham: Morocco, Western Sahara + + + + + Tunisian Dinar: Tunisia + + + + + Kwacha: Malawi + + + + + Silver: Bond Markets Units + + + + + CFP Franc: French Polynesia, New Caledonia, Wallis and Futuna Islands + + + + + Yen: Japan + + + + + Leone: Sierra Leone + + + + + Afghani: Afghanistan + + + + + Malaysian Ringgit: Malaysia + + + + + Kina: Papua New Guinea + + + + + Naira: Nigeria + + + + + Dobra: Sao Tome and Principe + + + + + Kwacha: Zambia + + + + + East Caribbean Dollar: Anguilla, Antigua and Barbuda, Dominica, Grenada, Montserrat, St Kitts - Nevis, Saint Lucia, Saint Vincent and The Grenadines + + + + + Convertible Marks: Bosnia and Herzegovina + + + + + European Monetary Unit (E.M.U.-6): Bond Markets Units + + + + + Gibraltar Pound: Gibraltar + + + + + Costa Rican Colon: Costa Rica + + + + + Manat: Turkmenistan + + + + + Kenyan Shilling: Kenya + + + + + Euro: + + + + + New Taiwan Dollar: Taiwan, Province Of China + + + + + Saudi Riyal: Saudi Arabia + + + + + Pula: Botswana + + + + + Iraqi Dinar: Iraq + + + + + Canadian Dollar: Canada + + + + + Swiss Franc: Liechtenstein, Switzerland + + + + + Balboa: Panama + + + + + Pound Sterling: United Kingdom + + + + + Colombian Peso: Colombia + + + + + New Israeli Sheqel: Israel + + + + + CFA Franc BEAC: Cameroon, Central African Republic, Chad, Congo, Equatorial Guinea, Gabon + + + + + Cordoba Oro: Nicaragua + + + + + Spanish Peseta: Andorra, Spain + + + + + Jordanian Dinar: Jordan + + + + + Dong: Vietnam + + + + + Libyan Dinar: Libyan Arab Jamahiriya + + + + + Solomon Islands Dollar: Solomon Islands + + + + + Metical: Mozambique + + + + + Kroon: Estonia + + + + + (Same day): United States + + + + + Algerian Dinar: Algeria + + + + + Lebanese Pound: Lebanon + + + + + Belgian Franc: Belgium + + + + + (financial Rand): Lesotho + + + + + Chilean Peso: Chile + + + + + Uganda Shilling: Uganda + + + + + Kuna: Croatia + + + + + Belize Dollar: Belize + + + + + Bahamian Dollar: Bahamas + + + + + Kip: Lao People's Democratic Republic + + + + + Leu: Romania + + + + + Taka: Bangladesh + + + + + Kyat: Myanmar + + + + + Cyprus Pound: Cyprus + + + + + Palladium: Bond Markets Units + + + + + Mexican Unidad de Inversion (UDI): Mexico + + + + + Hong Kong Dollar: Hong Kong + + + + + Somali Shilling: Somalia + + + + + Kuwaiti Dinar: Kuwait + + + + + Won: Korea, Republic Of + + + + + Nuevo Sol: Peru + + + + + New Kwanza: Angola + + + + + Bulgarian LEV: Bulgaria + + + + + Aruban Guilder: Aruba + + + + + Franc Congolais: Congo, The Democratic Republic Of + + + + + Hryvnia: Ukraine + + + + + Netherlands Guilder: Netherlands + + + + + Brazilian Real: Brazil + + + + + Peso Uruguayo: Uruguay + + + + + Rufiyaa: Maldives + + + + + Luxembourg Franc: Luxembourg + + + + + Tajik Ruble (old): Tajikistan (Old) + + + + + Deutsche Mark: Germany + + + + + Pound: Falkland Islands (Malvinas) + + + + + Yemeni Rial: Yemen + + + + + Comoro Franc: Comoros + + + + + Singapore Dollar: Singapore + + + + + Azerbaijanian Manat: Azerbaijan + + + + + Antillian Guilder: Netherlands Antilles + + + + + CFA Franc BCEAO: Benin, Burkina Faso, Cote D'ivoire, Guinea-Bissau, Mali, Niger, Senegal, Togo + + + + + Lilangeni: Swaziland + + + + + Loti: Lesotho + + + + + Czech Koruna: Czech Republic + + + + + SDR: International Monetary Fund (Imf) + + + + + Sucre: Ecuador + + + + + Platinum: Bond Markets Units + + + + + Yuan Renminbi: China + + + + + El Salvador Colon: El Salvador + + + + + Burundi Franc: Burundi + + + + + Cuban Peso: Cuba + + + + + Cayman Islands Dollar: Cayman Islands + + + + + Rupiah: East Timor, Indonesia + + + + + Guarani: Paraguay + + + + + Norwegian Krone: Bouvet Island, Norway, Svalbard and Jan Mayen Islands + + + + + Ouguiya: Mauritania + + + + + Argentine Peso: Argentina + + + + + Portuguese Escudo: Portugal + + + + + Fiji Dollar: Fiji + + + + + Surinam Guilder: Suriname + + + + + Rial Omani: Oman + + + + + Turkish Lira: Turkey + + + + + Slovak Koruna: Slovakia + + + + + Denar: Macedonia, The Former Yugoslav Republic Of + + + + + Ethiopian Birr: Ethiopia + + + + + Namibia Dollar: Namibia + + + + + Bermudian Dollar: Bermuda + + + + + Rand: Lesotho, Namibia, South Africa + + + + + US Dollar: American Samoa, British Indian Ocean Territory,, Guam, Haiti, Marshall Islands, Micronesia, Northern Mariana Islands, Palau, Panama, Puerto Rico, Turks and Caicos Islands, United States, United States Minor Outlaying Islands, Virgin Islands (British), Virgin Islands (U.S.) + + + + + Lek: Albania + + + + + Rwanda Franc: Rwanda + + + + + Tolar: Slovenia + + + + + UAE Dirham: United Arab Emirates + + + + + Qatari Rial: Qatar + + + + + Russian Ruble: Russian Federation + + + + + Belarussian Ruble: Belarus + + + + + New Zealand Dollar: Cook Islands, New Zealand, Niue, Pitcairn, Tokelau + + + + + Tugrik: Mongolia + + + + + Iranian Rial: Iran (Islamic Republic Of) + + + + + Vatu: Vanuatu + + + + + Swedish Krona: Sweden + + + + + Moldovan Leu: Moldova, Republic Of + + + + + Syrian Pound: Syrian Arab Republic + + + + + Indian Rupee: Bhutan, India + + + + + Lempira: Honduras + + + + + Forint: Hungary + + + + + Nepalese Rupee: Nepal + + + + + Baht: Thailand + + + + + Guinea-Bissau Peso: Guinea-Bissau + + + + + Zloty: Poland + + + + + Danish Krone: Denmark, Faeroe Islands, Greenland + + + + + Lithuanian Litas: Lithuania + + + + + Iceland Krona: Iceland + + + + + Cedi: Ghana + + + + + New Zaire: Zaire + + + + + Egyptian Pound: Egypt + + + + + Bolivar: Venezuela + + + + + European Composite Unit (EURCO): Bond Markets Units + + + + + Markka: Finland + + + + + Armenian Dram: Armenia + + + + + Som: Kyrgyzstan + + + + + Lev: Bulgaria + + + + + UIC-Franc: Special settlement currencies + + + + + Djibouti Franc: Djibouti + + + + + Bahraini Dinar: Bahrain + + + + + Australian Dollar: Australia, Christmas Island, Cocos (Keeling) Islands, Heard and Mcdonald Islands, Kiribati, Nauru, Norfolk Island, Tuvalu + + + + + Philippine Peso: Philippines + + + + + Brunei Dollar: Brunei Darussalam + + + + + (Next day): United States + + + + + Malagasy Franc: Madagascar + + + + + Ngultrum: Bhutan + + + + + The codes assigned for transactions where no currency is involved are:: + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/iso_639-3/2.0/constraint-schema-transform.xsl b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/iso_639-3/2.0/constraint-schema-transform.xsl new file mode 100644 index 000000000..b80acf8e6 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/iso_639-3/2.0/constraint-schema-transform.xsl @@ -0,0 +1,22873 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/iso_639-3/2.0/iso_639-3.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/iso_639-3/2.0/iso_639-3.xsd new file mode 100644 index 000000000..dcd1d8779 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/iso_639-3/2.0/iso_639-3.xsd @@ -0,0 +1,37967 @@ + + + + Codes for the representation of names of languages - Part 3: Alpha-3 code for comprehensive coverage of languages. + + true + + + + + + + + + Lomavren + + + + + Aghul + + + + + Tuwuli + + + + + Ritarungo + + + + + Tokelau + + + + + Garreh-Ajuran + + + + + Naba + + + + + Danish + + + + + Marghi South + + + + + Moldavian + + + + + Wilawila + + + + + Kinaray-A + + + + + Remun + + + + + Ebira + + + + + South Muyu + + + + + Kaduo + + + + + Thado Chin + + + + + Bisu + + + + + Jarawa (India) + + + + + Western Tawbuid + + + + + Yidgha + + + + + Old Norse + + + + + Dagbani + + + + + Ndaka + + + + + Tugutil + + + + + Kayabi + + + + + Alak + + + + + Citak + + + + + Kabardian + + + + + Kapori + + + + + Kabalai + + + + + Sekpele + + + + + Yalarnnga + + + + + Western Subanon + + + + + Zirenkel + + + + + Cuneiform Luwian + + + + + Sadri + + + + + Ciwogai + + + + + Chrau + + + + + Wolof + + + + + Kako + + + + + Ngomba + + + + + Northern Luri + + + + + Ngando (Central African Republic) + + + + + Roviana + + + + + Worodougou + + + + + Galo Adi + + + + + Sarudu + + + + + Wuvulu-Aua + + + + + Central Sama + + + + + Pele-Ata + + + + + Kadara + + + + + Mono (Cameroon) + + + + + Navarro-Labourdin Basque + + + + + Lala + + + + + Geme + + + + + Sicite Senoufo + + + + + Toura (Cote d'Ivoire) + + + + + Veracruz Huastec + + + + + Ersu + + + + + Pande + + + + + Khezha Naga + + + + + Minica Huitoto + + + + + Vaghua + + + + + Palumata + + + + + Kara-Kalpak + + + + + Playero + + + + + Navut + + + + + Old Kentish Sign Language + + + + + Sanskrit + + + + + Ligbi + + + + + Serawai + + + + + Ili'uun + + + + + Surigaonon + + + + + Southern Tutchone + + + + + Resigaro + + + + + Wambon + + + + + White Gelao + + + + + Dumun + + + + + Dabe + + + + + Minriq + + + + + Achumawi + + + + + Asurini + + + + + Keder + + + + + Varisi + + + + + Tita + + + + + Barama + + + + + Bandjigali + + + + + Cua + + + + + Old Persian + + + + + Borei + + + + + Legenyem + + + + + Vafsi + + + + + Besisi + + + + + Mokole + + + + + Taino + + + + + Woun Meu + + + + + Wageman + + + + + Ninggerum + + + + + Abure + + + + + Biem + + + + + Nanerige Senoufo + + + + + Kwese + + + + + Bumbita Arapesh + + + + + Muluridyi + + + + + Niuafo'ou + + + + + Skou + + + + + Lua' + + + + + Asumboa + + + + + Tay Boi + + + + + Bali Sign Language + + + + + Esuma + + + + + Halang + + + + + Ogbogolo + + + + + Kaivi + + + + + Lenyima + + + + + Pahlavani + + + + + Mankanya + + + + + Birri + + + + + Mountain Koiali + + + + + Dyangadi + + + + + Northern One + + + + + Arequipa-La Union Quechua + + + + + Shuwa-Zamani + + + + + Usan + + + + + Ayi (China) + + + + + Tabaa Zapotec + + + + + Goanese Konkani + + + + + Mpi + + + + + Pemon + + + + + Bwe Karen + + + + + Lahul Lohar + + + + + Tonga (Nyasa) + + + + + Kawi + + + + + Mburku + + + + + Tagalog + + + + + Bangi + + + + + Mogum + + + + + Gawwada + + + + + Sanga (Democratic Republic of Congo) + + + + + Miriti + + + + + Kumam + + + + + Judeo-Tunisian Arabic + + + + + Soi + + + + + North Wemale + + + + + Pochutec + + + + + Mewati + + + + + Ukuriguma + + + + + Dicamay Agta + + + + + Western Karaboro + + + + + Wagi + + + + + Kumba + + + + + Atruahi + + + + + Chinese + + + + + Maragus + + + + + Mbabaram + + + + + Da'a Kaili + + + + + Sunam + + + + + Kamo + + + + + Aweti + + + + + Yucatec Maya Sign Language + + + + + Kala Lagaw Ya + + + + + Khe + + + + + Ngambay + + + + + Mono (Solomon Islands) + + + + + Ngasa + + + + + Old Georgian + + + + + Abaga + + + + + Higaonon + + + + + Remo + + + + + Badaga + + + + + Male (Papua New Guinea) + + + + + Pankarare + + + + + Modole + + + + + Gbii + + + + + Chumburung + + + + + San Juan Atzingo Popoloca + + + + + Zhang-Zhung + + + + + Nagumi + + + + + Wahgi + + + + + Wojenaka + + + + + Ngalakan + + + + + Karadjeri + + + + + Pije + + + + + Lari + + + + + Warembori + + + + + Tlamacazapa Nahuatl + + + + + Miani + + + + + Bitare + + + + + Ulithian + + + + + Hung + + + + + Mubi + + + + + Central Subanen + + + + + Papiamento + + + + + Icelandic Sign Language + + + + + Surui + + + + + Filomena Mata-Coahuitlan Totonac + + + + + Lolak + + + + + Kei + + + + + Gamale Kham + + + + + Amahuaca + + + + + Pataxo-Hahaai + + + + + Suku + + + + + Nipsan + + + + + Sempan + + + + + Ga'anda + + + + + Orizaba Nahuatl + + + + + Cogui + + + + + Mango + + + + + Guinean Sign Language + + + + + Kwanja + + + + + Kw'adza + + + + + Aushiri + + + + + Kelo + + + + + Yakut + + + + + Biete + + + + + Udmurt + + + + + Jumli + + + + + Natioro + + + + + Western Highland Chatino + + + + + Amundava + + + + + Amikoana + + + + + Miskito + + + + + Croatian + + + + + Samaritan Aramaic + + + + + Mama + + + + + Enrekang + + + + + Sembakung Murut + + + + + Balantak + + + + + Cakfem-Mushere + + + + + Mulam + + + + + Aguaruna + + + + + Ulumanda' + + + + + Northern Ohlone + + + + + Western Lawa + + + + + Judeo-Italian + + + + + Migaama + + + + + Baga Mboteni + + + + + Manda (India) + + + + + Hoava + + + + + Seba + + + + + Solano + + + + + Grass Koiari + + + + + Yoloxochitl Mixtec + + + + + Temoaya Otomi + + + + + Ngongo + + + + + Mbara (Australia) + + + + + Koongo + + + + + Cuyonon + + + + + Midob + + + + + Wahau Kenyah + + + + + Shihhi Arabic + + + + + Ende + + + + + Kwang + + + + + Vunjo + + + + + Liv + + + + + Zome + + + + + Tumbuka + + + + + Rapanui + + + + + Southwest Pashayi + + + + + Namo + + + + + Trinidadian Creole English + + + + + Tungag + + + + + Trio + + + + + Baygo + + + + + Palauan + + + + + Ipeka-Tapuia + + + + + Nyore + + + + + German + + + + + Queyu + + + + + Green Gelao + + + + + Inonhan + + + + + Tobanga + + + + + Kulfa + + + + + Minangkabau + + + + + Slovakian Sign Language + + + + + Irula + + + + + Burmeso + + + + + Laka (Chad) + + + + + Kirike + + + + + Ngam + + + + + Kalispel-Pend d'Oreille + + + + + Brek Karen + + + + + Krio + + + + + Kulisusu + + + + + Avestan + + + + + Lakha + + + + + Kott + + + + + Moksela + + + + + Arhuaco + + + + + Tlalitzlipa Nahuatl + + + + + Busa + + + + + Boon + + + + + Kofa + + + + + Pitjantjatjara + + + + + Ghera + + + + + Nsari + + + + + Yine + + + + + Ndasa + + + + + Comecrudo + + + + + Mum + + + + + Maremgi + + + + + Cypriot Arabic + + + + + Walak + + + + + Idon + + + + + Kudmali + + + + + Baure + + + + + Uare + + + + + Musak + + + + + Muduapa + + + + + Ban Khor Sign Language + + + + + Luyia + + + + + Alcozauca Mixtec + + + + + Urningangg + + + + + Assangori + + + + + Edopi + + + + + Kuikuro-Kalapalo + + + + + Ikulu + + + + + Western Acipa + + + + + Gabri + + + + + Khorasani Turkish + + + + + Arua + + + + + Kalao + + + + + Mamusi + + + + + Carolinian + + + + + Tidikelt Tamazight + + + + + Yanahuanca Pasco Quechua + + + + + Manambu + + + + + Nyungwe + + + + + Birgit + + + + + Mahican + + + + + Senara Senoufo + + + + + Desano + + + + + Bubia + + + + + Mandeali + + + + + Nawdm + + + + + Turumsa + + + + + Bidiyo + + + + + Gilyak + + + + + Wejewa + + + + + Kwakum + + + + + Angguruk Yali + + + + + Tanema + + + + + Brokskat + + + + + Sie + + + + + East Tarangan + + + + + Mbunga + + + + + Oluta Popoluca + + + + + Tagoi + + + + + Arutani + + + + + Kawacha + + + + + Eastern Acipa + + + + + Warumungu + + + + + Nathembo + + + + + Ilongot + + + + + Marik + + + + + Nigerian Pidgin + + + + + Saidi Arabic + + + + + Central Kanuri + + + + + Ganggalida + + + + + Karon + + + + + Laragia + + + + + Soyaltepec Mazatec + + + + + Lengilu + + + + + Yiwom + + + + + San Mateo Del Mar Huave + + + + + Sorsogon Ayta + + + + + Plains Miwok + + + + + Ponam + + + + + Tojolabal + + + + + Choapan Zapotec + + + + + Xiang Chinese + + + + + Lisabata-Nuniali + + + + + Dumbea + + + + + Watubela + + + + + Ogbia + + + + + Southwestern Guiyang Hmong + + + + + Bendi + + + + + Souletin Basque + + + + + Sogdian + + + + + Fernando Po Creole English + + + + + Adabe + + + + + Macuna + + + + + Old Breton + + + + + Tomini + + + + + Che + + + + + Pacahuara + + + + + Banda-Ndele + + + + + Kurama + + + + + Tadyawan + + + + + Canichana + + + + + Anyin Morofo + + + + + Asheninka Perene + + + + + Garza + + + + + Oro + + + + + Otoro + + + + + Abron + + + + + Church Slavic + + + + + Sehwi + + + + + Hitu + + + + + Ma (Democratic Republic of Congo) + + + + + Imonda + + + + + Swampy Cree + + + + + Kuku-Muminh + + + + + Ancient Macedonian + + + + + Warrgamay + + + + + Camtho + + + + + Chiquian Ancash Quechua + + + + + Mapos Buang + + + + + Roma + + + + + Kabatei + + + + + Oloma + + + + + Kele + + + + + Papasena + + + + + Nyawaygi + + + + + Tanacross + + + + + Angal + + + + + Dungmali + + + + + Saterfriesisch + + + + + Baima + + + + + Faliscan + + + + + Akrukay + + + + + Karao + + + + + Yafi + + + + + Nyaturu + + + + + Eastern Maninkakan + + + + + Yaeyama + + + + + Kir-Balar + + + + + Guinea Kpelle + + + + + Balti + + + + + Lu + + + + + Pai Tavytera + + + + + Pisidian + + + + + Tajik + + + + + Geba Karen + + + + + Santa Maria Zacatepec Mixtec + + + + + Isthmus-Mecayapan Nahuatl + + + + + Konjo + + + + + Manombai + + + + + Maindo + + + + + Mohegan-Montauk-Narragansett + + + + + Hupla + + + + + Pite Sami + + + + + Asaro'o + + + + + Gor + + + + + Hibito + + + + + Arosi + + + + + Yakan + + + + + Akkadian + + + + + Loarki + + + + + Duruma + + + + + Budukh + + + + + Budza + + + + + Tho + + + + + Maonan + + + + + Sirenik Yupik + + + + + Munsee + + + + + Central Khmer + + + + + Catalonian Sign Language + + + + + Estado de Mexico Otomi + + + + + Maxi Gbe + + + + + Urat + + + + + Western Gurung + + + + + Puluwatese + + + + + Jehai + + + + + Aiklep + + + + + San Felipe Otlaltepec Popoloca + + + + + Dhaiso + + + + + Saudi Arabian Sign Language + + + + + Ahtena + + + + + Binumarien + + + + + Koraku + + + + + Shelta + + + + + Kakanda + + + + + Huixtan Tzotzil + + + + + Zotung Chin + + + + + Gabutamon + + + + + Bekati' + + + + + Kandas + + + + + Ligenza + + + + + Yazgulyam + + + + + Xerente + + + + + Chhintange + + + + + Cataelano Mandaya + + + + + Ugaritic + + + + + Kimaama + + + + + Naxi + + + + + Montagnais + + + + + Zo'e + + + + + Iwaidja + + + + + Bada (Nigeria) + + + + + Sar + + + + + Hmong Do + + + + + Pouye + + + + + Cia-Cia + + + + + Sarua + + + + + Ronga + + + + + Djinba + + + + + Mpur + + + + + Uda + + + + + Iyo'wujwa Chorote + + + + + Lola + + + + + Minokok + + + + + Gikyode + + + + + Bila + + + + + Cun + + + + + Old Spanish + + + + + Tennet + + + + + Mara Chin + + + + + Acoli + + + + + Lala-Bisa + + + + + Dororo + + + + + Southern Bobo Madare + + + + + Tebilung + + + + + Tewe + + + + + Northern Tepehuan + + + + + Ukaan + + + + + Domu + + + + + Baelelea + + + + + Shabak + + + + + Baham + + + + + Ubir + + + + + Inebu One + + + + + Kayong + + + + + Gothic + + + + + Rudbari + + + + + Tobo + + + + + Munggui + + + + + Mbe' + + + + + Totoro + + + + + Meoswar + + + + + Rogo + + + + + Rajasthani + + + + + Wawonii + + + + + Sapo + + + + + Sha + + + + + Kutep + + + + + Irigwe + + + + + Chinook + + + + + Doe + + + + + Alacatlatzala Mixtec + + + + + Tinigua + + + + + Bunaba + + + + + Yeniche + + + + + Para Gaviao + + + + + Sivandi + + + + + Lopa + + + + + Yanomamo + + + + + Hajong + + + + + Pumpokol + + + + + Cumbric + + + + + Jorto + + + + + Namakura + + + + + Banda-Mbres + + + + + Northern Guiyang Hmong + + + + + Khoibu Naga + + + + + Tiruray + + + + + Eastern Highland Chatino + + + + + Krisa + + + + + Bodo Gadaba + + + + + Kohin + + + + + Chenapian + + + + + Tomo Kan Dogon + + + + + Kadaru + + + + + Norwegian Sign Language + + + + + Kutenai + + + + + Panobo + + + + + Bandi + + + + + Pitcairn-Norfolk + + + + + Gbiri-Niragu + + + + + Senggi + + + + + Meroitic + + + + + Limilngan + + + + + Mfumte + + + + + Maeng Itneg + + + + + Southern Pesisir + + + + + Turka + + + + + Atikamekw + + + + + Fataleka + + + + + Westphalien + + + + + Djimini Senoufo + + + + + Semimi + + + + + Kokola + + + + + Tol + + + + + Algonquin + + + + + Musasa + + + + + Medumba + + + + + Columbia-Wenatchi + + + + + Akwa + + + + + Southern Puget Sound Salish + + + + + Ralte + + + + + Boko (Democratic Republic of Congo) + + + + + Japanese + + + + + Ughele + + + + + Syenara Senoufo + + + + + Western Apache + + + + + Northwest Pashayi + + + + + Somali + + + + + Pohnpeian + + + + + Bussa + + + + + Western Lalu Yi + + + + + Veps + + + + + Birale + + + + + Kwambi + + + + + Djeebbana + + + + + Vaghat-Ya-Bijim-Legeri + + + + + Wudu + + + + + Vale + + + + + Tangko + + + + + Rien + + + + + Dzao Min + + + + + Nobiin + + + + + !Xoo + + + + + Kalanga + + + + + Mag-Anchi Ayta + + + + + Sala + + + + + Intha + + + + + Zemgalian + + + + + Kimbu + + + + + Foodo + + + + + Karolanos + + + + + Dem + + + + + Sindhi Bhil + + + + + Safeyoka + + + + + Wangaaybuwan-Ngiyambaa + + + + + Mahei + + + + + Guanche + + + + + Aheu + + + + + Kemak + + + + + Margos-Yarowilca-Lauricocha Quechua + + + + + Katingan + + + + + Mirpur Panjabi + + + + + Wewaw + + + + + Anal + + + + + Momuna + + + + + Southern Rincon Zapotec + + + + + Giiwo + + + + + North Tugen + + + + + Awak + + + + + Sholaga + + + + + Western Abnaki + + + + + Guahibo + + + + + Spokane + + + + + Malinguat + + + + + Nokuku + + + + + Brunei + + + + + Budibud + + + + + Silimo + + + + + Alabat Island Agta + + + + + Dima + + + + + Red Gelao + + + + + Juquila Mixe + + + + + Northeastern Pomo + + + + + Takuu + + + + + Tooro + + + + + Kapingamarangi + + + + + Karipuna + + + + + Papi + + + + + Ndaktup + + + + + Omejes + + + + + Shina + + + + + Kwara'ae + + + + + Laura + + + + + Sedang + + + + + Etruscan + + + + + Cutchi-Swahili + + + + + Lipo + + + + + Shall-Zwall + + + + + Chamari + + + + + Makah + + + + + Lihir + + + + + Lantanai + + + + + Simeulue + + + + + Miju-Mishmi + + + + + Numanggang + + + + + Maiwa (Indonesia) + + + + + Honi + + + + + Kopkaka + + + + + Varli + + + + + Mainfrankisch + + + + + Blang + + + + + Awutu + + + + + Senaya + + + + + Katawixi + + + + + Siksika + + + + + Vestinian + + + + + Lamalera + + + + + Kasem + + + + + Coast Miwok + + + + + Mono (Democratic Republic of Congo) + + + + + Sowanda + + + + + Kaluli + + + + + Belgian Sign Language + + + + + Wa'ema + + + + + Gusii + + + + + Sere + + + + + Budik + + + + + Tay Tac + + + + + Bidyogo + + + + + Bura-Pabir + + + + + Mal Paharia + + + + + Ngad'a + + + + + Tay Sa Pa + + + + + Katabaga + + + + + Turoyo + + + + + Wotapuri-Katarqalai + + + + + San Francisco Matlatzinca + + + + + Northwestern Tamang + + + + + Khakas + + + + + Pongyong + + + + + Nigerian Fulfulde + + + + + Coatlan Zapotec + + + + + Old Mon + + + + + Moose Cree + + + + + Korra Koraga + + + + + Akolet + + + + + Galela + + + + + Bom + + + + + Jebero + + + + + Tunia + + + + + Osatu + + + + + Oko-Juwoi + + + + + Gondi + + + + + Jair Awyu + + + + + Ngbee + + + + + Khua + + + + + Sop + + + + + Zulgo-Gemzek + + + + + Tlacoapa Tlapanec + + + + + Konyak Naga + + + + + Ansus + + + + + Lengo + + + + + Yakima + + + + + Guarani + + + + + Viti + + + + + Esimbi + + + + + Arandai + + + + + Garhwali + + + + + Kupang Malay + + + + + Broome Pearling Lugger Pidgin + + + + + Western Jacalteco + + + + + Hupa + + + + + Venetian + + + + + Semai + + + + + Quechua + + + + + Macedo Romanian + + + + + Maligo + + + + + Jinyu Chinese + + + + + Dongxiang + + + + + Central-Eastern Niger Fulfulde + + + + + Friulian + + + + + Rempi + + + + + Lokaa + + + + + Hiw + + + + + Arin + + + + + Bakumpai + + + + + Yucuna + + + + + Tunggare + + + + + Isthmus-Cosoleacaque Nahuatl + + + + + Papuma + + + + + Tefaro + + + + + Sinaugoro + + + + + Duvle + + + + + Xeta + + + + + Ubang + + + + + North Slavey + + + + + Huba + + + + + Votic + + + + + Tingui-Boto + + + + + Meyah + + + + + American Sign Language + + + + + Selee + + + + + Lydian + + + + + Lombi + + + + + Hittite + + + + + Legbo + + + + + Ngaing + + + + + Wambule + + + + + Anindilyakwa + + + + + Olulumo-Ikom + + + + + Youle Jinuo + + + + + Takelma + + + + + Demisa + + + + + North Mesopotamian Arabic + + + + + Akha + + + + + Labuk-Kinabatangan Kadazan + + + + + Sukur + + + + + Kataang + + + + + Davawenyo + + + + + Keliko + + + + + Bilbil + + + + + Tagal Murut + + + + + Muyang + + + + + Deccan + + + + + Klamath-Modoc + + + + + Sapuan + + + + + Classical Mongolian + + + + + Baltic Romani + + + + + Keuru + + + + + Lufu + + + + + Ncane + + + + + Mamara Senoufo + + + + + Wusa Yi + + + + + Cabecar + + + + + Sikiana + + + + + Mannan + + + + + Savosavo + + + + + Wawa + + + + + Pyen + + + + + Southern One + + + + + Powari + + + + + Sekapan + + + + + Bainouk-Samik + + + + + Chiquihuitlan Mazatec + + + + + Palu + + + + + Pintupi-Luritja + + + + + Sanapana + + + + + Wagdi + + + + + Indonesian Sign Language + + + + + Nyenkha + + + + + Aimaq + + + + + Hamap + + + + + Bagirmi + + + + + Even + + + + + Wunai Bunu + + + + + Palaka Senoufo + + + + + Li'o + + + + + Kasua + + + + + Serua + + + + + Mbesa + + + + + Campidanese Sardinian + + + + + Badui + + + + + Garre + + + + + Amis + + + + + Batak + + + + + Batak Mandailing + + + + + Gey + + + + + Gheg Albanian + + + + + Ngbaka Manza + + + + + Tobelo + + + + + Nalca + + + + + Auwe + + + + + Balanta-Kentohe + + + + + Tai Dam + + + + + Baangi + + + + + Western Katu + + + + + Godwari + + + + + Gaviao Do Jiparana + + + + + Blagar + + + + + Bodo (India) + + + + + Upper Tanana + + + + + Shasta + + + + + Toposa + + + + + Santa Maria Quiegolani Zapotec + + + + + Umbuygamu + + + + + Kemiehua + + + + + Bali (Nigeria) + + + + + Nebaj Ixil + + + + + Tyaraity + + + + + Colorado + + + + + Bathari + + + + + Doghoro + + + + + Pushto + + + + + Tumleo + + + + + Waka + + + + + Larevat + + + + + Lombard + + + + + Juma + + + + + Bongo + + + + + Copala Triqui + + + + + Laopang + + + + + Toma + + + + + Iceve-Maci + + + + + Malayalam + + + + + Ao Naga + + + + + Romano-Serbian + + + + + Sumariup + + + + + Sui + + + + + Arop-Sissano + + + + + Mangole + + + + + Mala (Papua New Guinea) + + + + + Igwe + + + + + Angika + + + + + Nauete + + + + + Dass + + + + + Sharanahua + + + + + Ofo + + + + + Karaga Mandaya + + + + + Pelende + + + + + Kowiai + + + + + Gadang + + + + + Saparua + + + + + Jaya + + + + + Lakota Dida + + + + + Tumtum + + + + + Kadiweu + + + + + Luwo + + + + + Nding + + + + + Kaningdon-Nindem + + + + + Hausa Sign Language + + + + + Bissa + + + + + Giryama + + + + + Tutong 2 + + + + + Oko-Eni-Osayen + + + + + Teke-Tege + + + + + Gogo + + + + + Samaritan + + + + + Cuyamecalco Mixtec + + + + + Logooli + + + + + Nunggubuyu + + + + + Imbabura Highland Quichua + + + + + Nomatsiguenga + + + + + Kado + + + + + Maslam + + + + + Maria (Papua New Guinea) + + + + + Uduk + + + + + Arammba + + + + + Chulym + + + + + Teop + + + + + Mayo + + + + + Turks And Caicos Creole English + + + + + Eastern Lalu Yi + + + + + Toura (Papua New Guinea) + + + + + Orowe + + + + + Tauade + + + + + Abung + + + + + Mursi + + + + + Seke (Vanuatu) + + + + + Uspanteco + + + + + Nen + + + + + Kwamera + + + + + Amganad Ifugao + + + + + Zhire + + + + + Finnish-Swedish Sign Language + + + + + Masiwang + + + + + Mudbura + + + + + Paici + + + + + Nyarafolo Senoufo + + + + + Jara + + + + + Southern Kurdish + + + + + Megleno Romanian + + + + + East Limba + + + + + Yugoslavian Sign Language + + + + + Baoule + + + + + Ajie + + + + + Kangjia + + + + + Mittu + + + + + Waffa + + + + + Uru-Eu-Wau-Wau + + + + + Domaaki + + + + + Mawchi + + + + + To'abaita + + + + + Nume + + + + + Cajonos Zapotec + + + + + Kayapa Kallahan + + + + + Tombelala + + + + + Malango + + + + + Pokanga + + + + + Munduruku + + + + + Tsaangi + + + + + Chicahuaxtla Triqui + + + + + Emiliano-Romagnolo + + + + + Titan + + + + + Tarifit + + + + + Kreye + + + + + Duala + + + + + Tokharian B + + + + + Panoan Katukina + + + + + Labu + + + + + Czech Sign Language + + + + + Gelao + + + + + Xaracuu + + + + + Kamayo + + + + + Kung + + + + + Horo + + + + + Southern Catanduanes Bicolano + + + + + Barbareno + + + + + Ndobo + + + + + Marghi Central + + + + + Udihe + + + + + Santo Domingo Xenacoj Cakchiquel + + + + + Dibiyaso + + + + + Yetfa + + + + + Middle Watut + + + + + Gaam + + + + + Nzakambay + + + + + Romany + + + + + Lavatbura-Lamusong + + + + + Aka-Cari + + + + + Siane + + + + + Tuvalu + + + + + Xipaya + + + + + Kpati + + + + + Jamamadi + + + + + Tadaksahak + + + + + Sepa (Papua New Guinea) + + + + + Tukang Besi South + + + + + Kaian + + + + + Yale + + + + + Limassa + + + + + Livvi + + + + + Albanian + + + + + Indonesian + + + + + Mono (USA) + + + + + Aigon + + + + + Multiple languages + + + + + Kanite + + + + + Quenya + + + + + Northern Tujia + + + + + Eitiep + + + + + Yucatan Maya + + + + + Susuami + + + + + Tuma-Irumu + + + + + Rama + + + + + Torona + + + + + Bandial + + + + + Pendau + + + + + Naasioi + + + + + Old Irish (to 900) + + + + + Vasekela Bushman + + + + + Dezfuli + + + + + Kelinyau Kenyah + + + + + Barrow Point + + + + + Chinali + + + + + Sira + + + + + Huarijio + + + + + Kibet + + + + + Urubu-Kaapor + + + + + Kasiguranin + + + + + Libido + + + + + Kawe + + + + + Woods Cree + + + + + Dilling + + + + + Bilua + + + + + Chuvantsy + + + + + Waritai + + + + + Ikpeng + + + + + Mazatlan Mazatec + + + + + Santo Domingo Albarradas Zapotec + + + + + Ikposo + + + + + Oroqen + + + + + Makayam + + + + + Korean + + + + + Teressa + + + + + Camarines Norte Agta + + + + + Latvian + + + + + Lele (Papua New Guinea) + + + + + Abai Sungai + + + + + Ebughu + + + + + Yareba + + + + + Semnam + + + + + Ocotlan Zapotec + + + + + Mi'kmaq + + + + + Baramu + + + + + Erre + + + + + Beele + + + + + Sonha + + + + + Nete + + + + + Biritai + + + + + Murik + + + + + Mozambican Sign Language + + + + + Yeretuar + + + + + Western Balochi + + + + + Guanyinqiao + + + + + Una + + + + + Mali + + + + + Lungga + + + + + Ron + + + + + Bozaba + + + + + Djauan + + + + + Rawas + + + + + Yerukula + + + + + Jarnango + + + + + Chan Santa Cruz Maya + + + + + Tulu + + + + + Southern Dagaare + + + + + North Mofu + + + + + Dungra Bhil + + + + + Apiaca + + + + + Old Avar + + + + + Czech + + + + + Dewoin + + + + + Maba (Chad) + + + + + Viemo + + + + + Lenca + + + + + Bushi + + + + + Seke (Nepal) + + + + + Ugandan Sign Language + + + + + Cinamiguin Manobo + + + + + Mandan + + + + + Waneci + + + + + Dangaleat + + + + + Daloa Bete + + + + + Kurudu + + + + + Ukwa + + + + + Amba (Solomon Islands) + + + + + Sebob Kenyah + + + + + Madi + + + + + Koke + + + + + Southeast Ijo + + + + + Beng + + + + + Polonombauk + + + + + Arabana + + + + + Pubian + + + + + Suarmin + + + + + Barzani Jewish Neo-Aramaic + + + + + Thu Lao + + + + + Terei + + + + + Romblomanon + + + + + Mt. Iraya Agta + + + + + Moni + + + + + Bukharic + + + + + Ngadjunmaya + + + + + Sonia + + + + + Unserdeutsch + + + + + Nahari + + + + + Kwere + + + + + Latvian Sign Language + + + + + Neko + + + + + Occidental + + + + + Sara Kaba + + + + + Shanga + + + + + Wailapa + + + + + Tso + + + + + Kaur + + + + + Duguri + + + + + Malimpung + + + + + Sa'och + + + + + Brahui + + + + + Atorada + + + + + Mang + + + + + Jemez + + + + + Yonggom + + + + + 'Auhelawa + + + + + Yabem + + + + + Southern Qiandong Hmong + + + + + Lao + + + + + Borgu Fulfulde + + + + + Rapa + + + + + Urali + + + + + Kho'ini + + + + + Xingu Asurini + + + + + Nigeria Mambila + + + + + Guduf-Gava + + + + + Gooniyandi + + + + + Hyam + + + + + North Fali + + + + + Bakairi + + + + + Bete + + + + + Juxtlahuaca Mixtec + + + + + West Kewa + + + + + Moroccan Arabic + + + + + Mor (Mor Islands) + + + + + Ghomara + + + + + Chara + + + + + Bolivian Sign Language + + + + + Swiss-German Sign Language + + + + + Ding + + + + + Coyaima + + + + + Taungyo + + + + + Waigeo + + + + + Kais + + + + + We Western + + + + + Ixtatan Chuj + + + + + Warkay-Bipim + + + + + Maritsaua + + + + + Chazumba Mixtec + + + + + Svan + + + + + Chamicuro + + + + + Tugun + + + + + Basketo + + + + + Southern Mashan Hmong + + + + + Aghem + + + + + Bisorio + + + + + Likuba + + + + + Luna + + + + + Boor + + + + + Masbate Sorsogon + + + + + Elepi + + + + + Molbog + + + + + Tremembe + + + + + Texistepec Popoluca + + + + + Taiwan Sign Language + + + + + Bondum Dom Dogon + + + + + Horom + + + + + Amarasi + + + + + Dhurga + + + + + Krongo + + + + + Harami + + + + + Sorothaptic + + + + + Asheninka Pajonal + + + + + Marsian + + + + + Arha + + + + + Kalabakan + + + + + Teke-Ebo + + + + + Sou + + + + + Kabixi + + + + + Burunge + + + + + Arbereshe Albanian + + + + + Mexican Sign Language + + + + + Darwazi + + + + + Gboloo Grebo + + + + + Min Zhong Chinese + + + + + Humene + + + + + Estonian Sign Language + + + + + Classical Mandaic + + + + + Tanimbili + + + + + Tene Kan Dogon + + + + + Mahou + + + + + Stellingwerfs + + + + + Saafi-Saafi + + + + + Nankina + + + + + Todrah + + + + + Molengue + + + + + Koba + + + + + Parsi-Dari + + + + + Keninjal + + + + + Temacine Tamazight + + + + + Eastern Tzutujil + + + + + Libyan Sign Language + + + + + Pear + + + + + Hattic + + + + + Madukayang Kalinga + + + + + Kxoe + + + + + Taje + + + + + Kriol + + + + + Dugwor + + + + + Amele + + + + + Laki + + + + + Kolom + + + + + Denya + + + + + Doka + + + + + Ngando (Democratic Republic of Congo) + + + + + Belait + + + + + Sabaean + + + + + Arguni + + + + + Southern Cakchiquel + + + + + Mondropolon + + + + + Retta + + + + + Gumalu + + + + + Dangaura Tharu + + + + + Sanglechi-Ishkashimi + + + + + Indri + + + + + Coxima + + + + + Boruca + + + + + Akebu + + + + + Sabine + + + + + Khamyang + + + + + Bhili + + + + + Kosraean + + + + + Welsh + + + + + Tutong 1 + + + + + Kapinawa + + + + + Chalikha + + + + + Geser-Gorom + + + + + Kobon + + + + + Benggoi + + + + + Bolgo + + + + + Samo + + + + + Lenje + + + + + /Gwi + + + + + Tai Daeng + + + + + Wara + + + + + Atsugewi + + + + + Inupiaq + + + + + Kon Keu + + + + + Iku-Gora-Ankwa + + + + + Aka + + + + + Atatlahuca Mixtec + + + + + Maisin + + + + + Abanyom + + + + + Jeri Kuo + + + + + Neapolitan + + + + + Santa Catarina Albarradas Zapotec + + + + + South Watut + + + + + Salasaca Highland Quichua + + + + + Shan + + + + + Tukang Besi North + + + + + Akuku + + + + + Mashco Piro + + + + + Copainala Zoque + + + + + North Junin Quechua + + + + + Neyo + + + + + Yamap + + + + + Sengele + + + + + Fa D'ambu + + + + + Loniu + + + + + Tai Mene + + + + + Kashaya + + + + + Ukhwejo + + + + + Biyom + + + + + Monumbo + + + + + Reunion Creole French + + + + + Palya Bareli + + + + + Nisa + + + + + Etchemin + + + + + Zangskari + + + + + Kombio + + + + + Northeastern Dian Hmong + + + + + Marfa + + + + + Wailaki + + + + + Median + + + + + Kannada + + + + + Lhomi + + + + + Fum + + + + + Bekwarra + + + + + El Nayar Cora + + + + + Siri + + + + + South Tairora + + + + + Buxinhua + + + + + Mortlockese + + + + + Mandandanyi + + + + + Puquina + + + + + Layakha + + + + + Ashtiani + + + + + Awa + + + + + Kamula + + + + + Khamti + + + + + Holoholo + + + + + Mocovi + + + + + Mandjak + + + + + Tulu-Bohuai + + + + + Lango (Uganda) + + + + + Undetermined + + + + + Vanuma + + + + + Isebe + + + + + Mbukushu + + + + + Ogbah + + + + + Malo + + + + + Dyan + + + + + Simba + + + + + Kusu + + + + + Itawit + + + + + Khengkha + + + + + Eastern Katu + + + + + Tarok + + + + + Dibo + + + + + Onjob + + + + + Bandjalang + + + + + Beli (Papua New Guinea) + + + + + Papar + + + + + Pekal + + + + + Jakati + + + + + Gallurese Sardinian + + + + + Virgin Islands Creole English + + + + + Sininkere + + + + + Spanish Sign Language + + + + + Huachipaeri + + + + + Ogea + + + + + Coastal Konjo + + + + + Gronings + + + + + Finallig + + + + + Central Pomo + + + + + Walmajarri + + + + + Low German + + + + + Butbut Kalinga + + + + + Nai + + + + + Kabwa + + + + + Mbelime + + + + + Southern Kalapuya + + + + + Chigmecatitlan Mixtec + + + + + Labo + + + + + South West Bay + + + + + Janji + + + + + Yom + + + + + Ghotuo + + + + + Hadiyya + + + + + Awun + + + + + Yao + + + + + Bungu + + + + + Simbali + + + + + Kabiye + + + + + Hanga Hundi + + + + + Karang + + + + + Mari (Madang Province) + + + + + Parachi + + + + + Tai Loi + + + + + Bugan + + + + + Fuliiru + + + + + Waiwai + + + + + Savara + + + + + Abureni + + + + + Birked + + + + + Rennellese Sign Language + + + + + Talondo' + + + + + Kirmanjki + + + + + Kabwari + + + + + Mlabri + + + + + Mandara + + + + + Sause + + + + + Warlmanpa + + + + + Vasavi + + + + + Wadjiginy + + + + + Dido + + + + + Changriwa + + + + + Kukna + + + + + Rer Bare + + + + + Galeya + + + + + Malvi + + + + + Tepetotutla Chinantec + + + + + Liberia Kpelle + + + + + Guarayu + + + + + Mangbutu + + + + + Runa + + + + + Turiwara + + + + + Bauria + + + + + Belhariya + + + + + Kamu + + + + + Abe + + + + + Elkei + + + + + Nyanga + + + + + Skolt Sami + + + + + Musan + + + + + Bajelani + + + + + Katbol + + + + + Som + + + + + Lithuanian + + + + + Gorovu + + + + + Aore + + + + + Eki + + + + + Ketengban + + + + + Paraguayan Guarani + + + + + Wumeng Yi + + + + + Assan + + + + + Kwesten + + + + + Aer + + + + + Isu (Menchum Division) + + + + + Basa (Cameroon) + + + + + Parakana + + + + + South Levantine Arabic + + + + + Ashkun + + + + + !O!ung + + + + + Ajawa + + + + + Papantla Totonac + + + + + Danish Sign Language + + + + + Toda + + + + + Peve + + + + + Dhimal + + + + + Kunja + + + + + Merlav + + + + + Karo (Brazil) + + + + + Muslim Tat + + + + + Zimbabwe Sign Language + + + + + Yindjilandji + + + + + Jah Hut + + + + + Yuwana + + + + + Turkmen + + + + + Mwaghavul + + + + + Ghanaian Sign Language + + + + + Russia Buriat + + + + + Interlingue + + + + + Kunza + + + + + Mbre + + + + + Tenis + + + + + Queretaro Otomi + + + + + Central Siberian Yupik + + + + + Klingon + + + + + Dari + + + + + Penchal + + + + + Parkwa + + + + + Phake + + + + + Punan Merah + + + + + Amarakaeri + + + + + Xakriaba + + + + + Tayabas Ayta + + + + + Kanashi + + + + + Western Yiddish + + + + + Horuru + + + + + Jutish + + + + + Makhuwa-Moniga + + + + + Tsuvadi + + + + + Esperanto + + + + + Beeke + + + + + Lagwan + + + + + Mota + + + + + Bipi + + + + + Efik + + + + + Atzingo Matlatzinca + + + + + Omaha-Ponca + + + + + Duma + + + + + Southwestern Tamang + + + + + Mubami + + + + + Mann + + + + + Tondano + + + + + Chayahuita + + + + + Cupeno + + + + + Hernican + + + + + Ili Turki + + + + + Upper Grand Valley Dani + + + + + Kamara + + + + + Eastern Abnaki + + + + + Tem + + + + + Moklen + + + + + Nda'nda + + + + + Mendalam Kayan + + + + + Mafa + + + + + Kayan + + + + + Oruma + + + + + Lasi + + + + + Maung + + + + + Kumbainggar + + + + + Middle Cornish + + + + + Ruma + + + + + Bua + + + + + Havu + + + + + Harzani + + + + + Isthmus Zapotec + + + + + Santa Maria De Jesus Cakchiquel + + + + + Bana + + + + + Njen + + + + + Yecuatla Totonac + + + + + Kaba + + + + + Sileibi + + + + + Kosarek Yale + + + + + Sankaran Maninka + + + + + Saliba + + + + + Mandari + + + + + Kis + + + + + Southeastern Nochixtlan Mixtec + + + + + Kalabra + + + + + Fijian + + + + + Luiseno + + + + + San Marcos Tlalcoyalco Popoloca + + + + + Pahari-Potwari + + + + + Mwali Comorian + + + + + Caribbean Hindustani + + + + + Karami + + + + + Hijazi Arabic + + + + + Rembarunga + + + + + Mbere + + + + + Wanap + + + + + Jaruara + + + + + Gweda + + + + + Boano (Sulawesi) + + + + + Burduna + + + + + Southern Sierra Miwok + + + + + Semnani + + + + + Inapang + + + + + Sepen + + + + + Bagheli + + + + + Gone Dau + + + + + Atemble + + + + + Pangasinan + + + + + Boselewa + + + + + Iraqw + + + + + Suba + + + + + Riang (India) + + + + + Edomite + + + + + Wik-Iiyanh + + + + + Nimoa + + + + + Luvale + + + + + Shoshoni + + + + + Hebrew + + + + + Diuwe + + + + + Khao + + + + + Bariai + + + + + Kuku-Ugbanh + + + + + Kakabai + + + + + Gail + + + + + Purum + + + + + Dzuungoo + + + + + Lowa + + + + + Bharia + + + + + Southern Carrier + + + + + Pangutaran Sama + + + + + Zinza + + + + + Mele-Fila + + + + + Maskelynes + + + + + Bwa + + + + + Mambai + + + + + Central Mashan Hmong + + + + + Tokano + + + + + Kaningra + + + + + Yug + + + + + Kari + + + + + Coatzospan Mixtec + + + + + Abom + + + + + Mlomp + + + + + C'lela + + + + + Western Farsi + + + + + Nenets + + + + + Mvuba + + + + + Limbu + + + + + Kele (Democratic Republic of Congo) + + + + + Parawen + + + + + Sihuas Ancash Quechua + + + + + Muna + + + + + Kuni + + + + + Lembak + + + + + Ife + + + + + Lehali + + + + + Amo + + + + + Middle Armenian + + + + + Asturian + + + + + Wadiyara Koli + + + + + North Azerbaijani + + + + + Paama + + + + + Portuguese Sign Language + + + + + Madngele + + + + + Isarog Agta + + + + + Bardi + + + + + Aimol + + + + + Nnam + + + + + Suau + + + + + Tonsawang + + + + + Cherokee + + + + + Babatana + + + + + Keningau Murut + + + + + Ndamba + + + + + Messapic + + + + + Chechen + + + + + Lewo + + + + + Kupia + + + + + Biao Mon + + + + + Southern Nambikuara + + + + + Omotik + + + + + Dargwa + + + + + Tupinikin + + + + + Hema + + + + + Seneca + + + + + Hone + + + + + Gende + + + + + Argentine Sign Language + + + + + Mapun + + + + + Kokata + + + + + Ngombale + + + + + Cashinahua + + + + + Mocheno + + + + + Amanaye + + + + + Vengo + + + + + Abaza + + + + + Kamas + + + + + West Yugur + + + + + Tboli + + + + + Degaru + + + + + Pak-Tong + + + + + Arafundi + + + + + Hadza + + + + + Muinane + + + + + New Zealand Sign Language + + + + + Adap + + + + + Maria (India) + + + + + Waray Sorsogon + + + + + Ontenu + + + + + Kubi + + + + + Maringarr + + + + + Mangerr + + + + + Guambiano + + + + + Biali + + + + + Yekora + + + + + Teke-Kukuya + + + + + Korlai Creole Portuguese + + + + + Gule + + + + + Western Magar + + + + + San Miguel Creole French + + + + + Kinga + + + + + Neme + + + + + Burmbar + + + + + Umbundu + + + + + Bamali + + + + + Yangkam + + + + + Tawara + + + + + Dusun Malang + + + + + Mosiro + + + + + Tay + + + + + Ahe + + + + + Archi + + + + + Nila + + + + + Moraid + + + + + Seze + + + + + Talysh + + + + + Swedish Sign Language + + + + + Gbayi + + + + + Uru + + + + + Bavarian + + + + + Marti Ke + + + + + Guerrero Amuzgo + + + + + Samba + + + + + Salas + + + + + Bauzi + + + + + Malaynon + + + + + Nakara + + + + + Buruwai + + + + + Ambele + + + + + Nekgini + + + + + Katua + + + + + Alladian + + + + + Aka-Kede + + + + + Adang + + + + + Shark Bay + + + + + Chambeali + + + + + Tontemboan + + + + + Lahu + + + + + Namibian Sign Language + + + + + Western Parbate + + + + + Iyayu + + + + + Santa Maria Del Mar Huave + + + + + Mor (Bomberai Peninsula) + + + + + Chayuco Mixtec + + + + + Riverain Sango + + + + + Allar + + + + + Amanab + + + + + Chut + + + + + Katla + + + + + Warnang + + + + + Maritime Sign Language + + + + + Choctaw + + + + + Koenoem + + + + + Dogri (individual language) + + + + + Manchu + + + + + Olekha + + + + + Luwati + + + + + Ali + + + + + Judeo-Tat + + + + + Baga Manduri + + + + + Kaxuiana + + + + + Garig-Ilgar + + + + + Ehueun + + + + + Sampang + + + + + Tula + + + + + Chukwa + + + + + Kayeli + + + + + Sakan + + + + + Bekwil + + + + + Anufo + + + + + Matepi + + + + + Chilean Quechua + + + + + Tajumulco Mam + + + + + Dorze + + + + + Lele (Democratic Republic of Congo) + + + + + Sungkai + + + + + Buru (Nigeria) + + + + + Kauwera + + + + + Borana-Arsi-Guji Oromo + + + + + Zaza + + + + + Rangkas + + + + + Lepki + + + + + Dungan + + + + + Coatecas Altas Zapotec + + + + + Yoba + + + + + Noone + + + + + Olu'bo + + + + + Haya + + + + + Cayuga + + + + + Parsi + + + + + Kaingang + + + + + Guevea De Humboldt Zapotec + + + + + Namonuito + + + + + Dehu + + + + + Indian Sign Language + + + + + Sewa Bay + + + + + Yakaikeke + + + + + Jicarilla Apache + + + + + Kayu Agung + + + + + Ladino + + + + + Uzbek + + + + + Sabu + + + + + Abipon + + + + + Tartessian + + + + + Eastern Balochi + + + + + Simbo + + + + + Glaro-Twabo + + + + + Ndut + + + + + Australian Aborigines Sign Language + + + + + Mbosi + + + + + Ngwaba + + + + + Wakde + + + + + Kakauhua + + + + + Lamaholot + + + + + Maranunggu + + + + + Yuhup + + + + + Western Pokomchi + + + + + East Damar + + + + + Yinbaw Karen + + + + + Jangshung + + + + + Dibabawon Manobo + + + + + Skagit + + + + + Pokoot + + + + + Wedau + + + + + Anambe + + + + + Nottoway + + + + + Tai Hongjin + + + + + Judeo-Georgian + + + + + Asuncion Mixtepec Zapotec + + + + + Latu + + + + + Ware + + + + + Tututni + + + + + Manta + + + + + Ngemba + + + + + Ayoquesco Zapotec + + + + + Zabana + + + + + Sinsauru + + + + + Burumakok + + + + + Enawene-Nawe + + + + + Barai + + + + + Southwest Gbaya + + + + + Kurdish + + + + + Kua + + + + + Bilba + + + + + Nalu + + + + + Hainyaxo Bozo + + + + + Lom + + + + + Bangwinji + + + + + Ayere + + + + + Yil + + + + + Yosondua Mixtec + + + + + Niuean + + + + + Yogad + + + + + Bilakura + + + + + Pinotepa Nacional Mixtec + + + + + Hani + + + + + Enwan (Akwa Ibom State) + + + + + Nomane + + + + + Krache + + + + + Yawanawa + + + + + Zaachila Zapotec + + + + + Sedoa + + + + + Nicaragua Creole English + + + + + Makaa + + + + + Seraiki + + + + + Maykulan + + + + + Balinese + + + + + Konda-Dora + + + + + Laos Sign Language + + + + + Puerto Rican Sign Language + + + + + Komi-Permyak + + + + + Ndai + + + + + Toro Tegu Dogon + + + + + Mefele + + + + + Matis + + + + + Mander + + + + + Uighur + + + + + Tippera + + + + + Nkukoli + + + + + Pwaamei + + + + + Miyobe + + + + + Tolaki + + + + + Yahuna + + + + + Anfillo + + + + + Middle Hittite + + + + + Sulka + + + + + Jiba + + + + + Tuwari + + + + + Musi + + + + + Idu-Mishmi + + + + + Koromira + + + + + Cocos Islands Malay + + + + + Bisis + + + + + Yiddish + + + + + Southern Haida + + + + + Anakalangu + + + + + Santiago del Estero Quichua + + + + + Koibal + + + + + Lanoh + + + + + Italian + + + + + Kwama + + + + + Balanta-Ganja + + + + + Chumash + + + + + Mungaka + + + + + Lehalurup + + + + + Uisai + + + + + Bonerif + + + + + Bomu + + + + + Nyahkur + + + + + Norwegian Bokmal + + + + + Puri + + + + + Mak (Nigeria) + + + + + Lasgerdi + + + + + Tilapa Otomi + + + + + Tase Naga + + + + + Kalenjin + + + + + Botlikh + + + + + Mahasu Pahari + + + + + Cumeral + + + + + Kakabe + + + + + Malas + + + + + Beami + + + + + Arbore + + + + + Jiarong + + + + + Kungarakany + + + + + Idoma + + + + + Kera + + + + + Gula (Chad) + + + + + Miri + + + + + Sheshi Kham + + + + + Guhu-Samane + + + + + Bitur + + + + + Massalat + + + + + Norra + + + + + Tajio + + + + + Kafoa + + + + + Phu Thai + + + + + Auyokawa + + + + + Dhao + + + + + Sighu + + + + + Diriku + + + + + Fulnio + + + + + Wurrugu + + + + + Northern Oaxaca Nahuatl + + + + + Jalapa De Diaz Mazatec + + + + + Sukuma + + + + + Huaylas Ancash Quechua + + + + + Haigwai + + + + + Notsi + + + + + Kamba (Brazil) + + + + + Man Met + + + + + Krevinian + + + + + Gumuz + + + + + Bosngun + + + + + Wallisian + + + + + Chiltepec Chinantec + + + + + Humla + + + + + Adamorobe Sign Language + + + + + Australian Sign Language + + + + + Mangarayi + + + + + Tedim Chin + + + + + Cishingini + + + + + Khamba + + + + + Xiriana + + + + + Cisalpine Gaulish + + + + + South Ucayali Asheninka + + + + + Waja + + + + + Yaka (Congo) + + + + + Tainae + + + + + Blafe + + + + + Mokerang + + + + + Iwam + + + + + Kwer + + + + + Raji + + + + + Rufiji + + + + + Sara + + + + + Moldova Sign Language + + + + + Apali + + + + + Anam + + + + + Tenango Nahuatl + + + + + Kyaka + + + + + Ukrainian Sign Language + + + + + Southwest Tanna + + + + + Mabire + + + + + Pray 3 + + + + + Chacobo + + + + + Tseku + + + + + Nias + + + + + =/Hua + + + + + Karbi + + + + + Nyanja + + + + + Qawasqar + + + + + Alumu-Tesu + + + + + Okpe (Northwestern Edo) + + + + + Dama + + + + + Dengese + + + + + Litzlitz + + + + + Zarma + + + + + Nopala Chatino + + + + + Miltu + + + + + Walamo + + + + + Beti (Cameroon) + + + + + Mwera (Nyasa) + + + + + Armazic + + + + + Pyapun + + + + + Endo + + + + + Smarky Kanum + + + + + Aguano + + + + + Kavalan + + + + + Mato + + + + + Luchazi + + + + + Yaqui + + + + + Dyirbal + + + + + Tikopia + + + + + Texcatepec Otomi + + + + + Comorian + + + + + Tanggu + + + + + Salchuq + + + + + Sarangani Blaan + + + + + Bai + + + + + Pangwali + + + + + Central Puebla Nahuatl + + + + + Kag-Fer-Jiir-Koor-Ror-Us-Zuksun + + + + + Sonsorol + + + + + Pottangi Ollar Gadaba + + + + + Tibea + + + + + Tchumbuli + + + + + Changthang + + + + + Kam + + + + + Embaloh + + + + + Mato Grosso Arara + + + + + Karekare + + + + + Solong + + + + + Lumba-Yakkha + + + + + Uripiv-Wala-Rano-Atchin + + + + + Pongu + + + + + Ibibio + + + + + Nyunga + + + + + Tenggarong Kutai Malay + + + + + Plains Indian Sign Language + + + + + Kagate + + + + + Ufim + + + + + Hunzib + + + + + Tena Lowland Quichua + + + + + Classical Tibetan + + + + + Benyadu' + + + + + Rabinal Achi + + + + + Baga Sitemu + + + + + Hinukh + + + + + Cruzeno + + + + + Malankuravan + + + + + Tomoip + + + + + Tinani + + + + + Pagu + + + + + Karore + + + + + Semandang + + + + + Itonama + + + + + Ineseno + + + + + Bamunka + + + + + Nkutu + + + + + Pilaga + + + + + Skalvian + + + + + Arakanese + + + + + Nusa Laut + + + + + Falam Chin + + + + + Zeem + + + + + Khotanese + + + + + Mokpwe + + + + + Palor + + + + + Lamba + + + + + Sarangani Manobo + + + + + Wiradhuri + + + + + Batak Karo + + + + + Apurina + + + + + Marwari (India) + + + + + Iloko + + + + + Laha (Indonesia) + + + + + Tanguat + + + + + Emerillon + + + + + Angor + + + + + Turi + + + + + Written Oirat + + + + + Ngawn Chin + + + + + Keley-I Kallahan + + + + + Balangao + + + + + Duungooma + + + + + Southern Tiwa + + + + + Gagu + + + + + Bangolan + + + + + E + + + + + Tumbala Chol + + + + + Nyaw + + + + + Perai + + + + + Gulf Arabic + + + + + Nyengo + + + + + Rumai Palaung + + + + + Wayana + + + + + Elotepec Zapotec + + + + + Kuanyama + + + + + Karamojong + + + + + Nanai + + + + + Tetum + + + + + Makasae + + + + + Kol (Papua New Guinea) + + + + + Waci Gbe + + + + + Ndo + + + + + Border Kuna + + + + + Nafi + + + + + Tchitchege + + + + + Gangte + + + + + Western Bru + + + + + Kalagan + + + + + Haisla + + + + + Rayon Zoque + + + + + Yurok + + + + + Usku + + + + + Zakhring + + + + + Eastern Tawbuid + + + + + Tshangla + + + + + Amarag + + + + + Bola + + + + + Lambadi + + + + + Punu + + + + + Centuum + + + + + Bare + + + + + Alngith + + + + + Carijona + + + + + Tobian + + + + + Aka-Kora + + + + + Quileute + + + + + Yassic + + + + + Waddar + + + + + Komso + + + + + Kota Bangun Kutai Malay + + + + + Peere + + + + + Eastern Highland Otomi + + + + + Koguryo + + + + + San Andres Quiche + + + + + Mahongwe + + + + + Ledo Kaili + + + + + Acroa + + + + + Coptic + + + + + Kol (Cameroon) + + + + + Gbanu + + + + + Kono (Nigeria) + + + + + Aruamu + + + + + Wom (Papua New Guinea) + + + + + Turaka + + + + + Burushaski + + + + + Laghu + + + + + Geman Deng + + + + + Evant + + + + + Laru + + + + + Parenga + + + + + Coos + + + + + Jauja Wanca Quechua + + + + + Luxembourgish + + + + + Buru (Indonesia) + + + + + Luri + + + + + Masai + + + + + Pisaflores Tepehua + + + + + Oksapmin + + + + + Guro + + + + + Aghu + + + + + Fon + + + + + Wyandot + + + + + Wirangu + + + + + Kreen-Akarore + + + + + Puinave + + + + + Western Canadian Inuktitut + + + + + West Central Oromo + + + + + Dela-Oenale + + + + + Zhuang + + + + + Bulu (Papua New Guinea) + + + + + Chewong + + + + + Lote + + + + + Baldemu + + + + + Putoh + + + + + Tandia + + + + + Sinasina + + + + + Nhengatu + + + + + Buna + + + + + Yugambal + + + + + Gadsup + + + + + Marubo + + + + + /Xam + + + + + Mwani + + + + + Western Arrarnta + + + + + Armenian + + + + + Gujari + + + + + Nakama + + + + + Bodo (Central African Republic) + + + + + Godie + + + + + Zambian Sign Language + + + + + Baba + + + + + Taabwa + + + + + Manangkari + + + + + Obanliku + + + + + Latin + + + + + Begbere-Ejar + + + + + Reshe + + + + + Sahu + + + + + Hixkaryana + + + + + Krim + + + + + Esselen + + + + + Huitepec Mixtec + + + + + Benabena + + + + + Dakota + + + + + Central Pashto + + + + + Onin + + + + + Potiguara + + + + + Ixcatec + + + + + Sibu + + + + + Ancient Hebrew + + + + + Tangshewi + + + + + Kairak + + + + + Ngindo + + + + + Sindang Kelingi + + + + + Kuku-Mu'inh + + + + + Maskoy Pidgin + + + + + Mingang Doso + + + + + Mabaka Valley Kalinga + + + + + Bishuo + + + + + Bati (Cameroon) + + + + + Burui + + + + + Kami (Nigeria) + + + + + Axamb + + + + + Besoa + + + + + Ladakhi + + + + + Kaamba + + + + + Southern Ohlone + + + + + Maia + + + + + Sobei + + + + + Nobonob + + + + + Ma'anyan + + + + + Kanggape + + + + + Nupe-Nupe-Tako + + + + + Guila Zapotec + + + + + Lutos + + + + + Nyangbo + + + + + Tewa (Indonesia) + + + + + Omi + + + + + Eastern Karaboro + + + + + Soqotri + + + + + Kuman + + + + + Numana-Nunku-Gbantu-Numbu + + + + + Heyo + + + + + Sindhi + + + + + Afitti + + + + + Madak + + + + + Mukulu + + + + + Quinqui + + + + + Malayo + + + + + Lahanan + + + + + Martuyhunira + + + + + Papitalai + + + + + Tareng + + + + + Tirahi + + + + + Seeku + + + + + Agarabi + + + + + Chicomuceltec + + + + + Tajuasohn + + + + + Kurti + + + + + Hanunoo + + + + + Herero + + + + + Tagargrent + + + + + Tsotsitaal + + + + + Old English (ca. 450-1100) + + + + + Elu + + + + + Aklanon + + + + + Pima Bajo + + + + + Fanti + + + + + Buamu + + + + + Ghulfan + + + + + Mbo-Ung + + + + + Kibiri + + + + + Nyabwa + + + + + Tai Hang Tong + + + + + Kugama + + + + + Mairasi + + + + + Kayupulau + + + + + Lauan + + + + + Central Pame + + + + + Sawai + + + + + Kosadle + + + + + Suganga + + + + + Moresada + + + + + Isabi + + + + + Tamagario + + + + + Umbrian + + + + + Principense + + + + + Zenaga + + + + + Tuyuca + + + + + Embera-Catio + + + + + Galice + + + + + Javanese + + + + + Hmong + + + + + North Levantine Arabic + + + + + Wirafed + + + + + Bada (Indonesia) + + + + + Megam + + + + + Buduma + + + + + Molale + + + + + Southern Bai + + + + + Mbe + + + + + Bile + + + + + Koasati + + + + + Comanche + + + + + Murui Huitoto + + + + + Central Mnong + + + + + South Slavey + + + + + Southeastern Tarahumara + + + + + Kati + + + + + Nguon + + + + + Mitla Zapotec + + + + + Kalumpang + + + + + Nsenga + + + + + Kotafon Gbe + + + + + Baga Sobane + + + + + Pakaasnovos + + + + + Kwalhioqua-Tlatskanai + + + + + Wanggamala + + + + + Adhola + + + + + Late Middle Chinese + + + + + Teke-Fuumu + + + + + Moro + + + + + Yakamul + + + + + Forest Enets + + + + + Yamba + + + + + Twents + + + + + Sabah Bisaya + + + + + Paluan + + + + + Kela (Democratic Republic of Congo) + + + + + Tangga + + + + + Karipuna + + + + + Manumanaw Karen + + + + + Kemezung + + + + + Aja (Benin) + + + + + Tlachichilco Tepehua + + + + + Ede Nago + + + + + Bankon + + + + + Madang + + + + + Inapari + + + + + Galindan + + + + + Cebuano + + + + + Sara Dunjo + + + + + Subi + + + + + Wunambal + + + + + Yugh + + + + + Koresh-e Rostam + + + + + Lamatuka + + + + + Tii + + + + + Bawm Chin + + + + + Bahamas Creole English + + + + + Haka Chin + + + + + Kadai + + + + + Petjo + + + + + Ibanag + + + + + Bolo + + + + + Boni + + + + + Sa + + + + + Tuki + + + + + Chiangmai Sign Language + + + + + Thai Sign Language + + + + + Samoan + + + + + Lundayeh + + + + + Nawathinehena + + + + + Moksha + + + + + Buli (Ghana) + + + + + Qabiao + + + + + Batu + + + + + Aiton + + + + + Mapena + + + + + Thompson + + + + + Zay + + + + + Borong + + + + + Kituba (Congo) + + + + + Obulom + + + + + Tutuba + + + + + Northern Mam + + + + + Nyindrou + + + + + Gedeo + + + + + Zimba + + + + + Guerrero Nahuatl + + + + + Maaka + + + + + Jamaican Country Sign Language + + + + + Indo-Portuguese + + + + + Tay Khang + + + + + Bahau River Kenyah + + + + + Bragat + + + + + Tambotalo + + + + + Kabore One + + + + + Ketangalan + + + + + Karkin + + + + + Banawa + + + + + Ormu + + + + + Camling + + + + + Savi + + + + + Warrwa + + + + + Kiput + + + + + Tamazola Mixtec + + + + + Fali Of Baissa + + + + + Warao + + + + + Areba + + + + + Morouas + + + + + Oroha + + + + + Bungku + + + + + Moi (Congo) + + + + + Nhuwala + + + + + Matumbi + + + + + Yaoure + + + + + Yamphe + + + + + Gagauz + + + + + Silt'e + + + + + Wano + + + + + Mbula + + + + + Narango + + + + + Musgu + + + + + Dema + + + + + Tee + + + + + Ntcham + + + + + Guizhou Yi + + + + + Patamona + + + + + Thracian + + + + + Banjar + + + + + Tai Pao + + + + + Taznatit + + + + + Kusunda + + + + + Muyuw + + + + + Petats + + + + + Tonga (Zambia) + + + + + Brazilian Sign Language + + + + + Bahing + + + + + Byep + + + + + Murkim + + + + + Tillamook + + + + + Cree + + + + + Umotina + + + + + Leco + + + + + Bhatri + + + + + Mehri + + + + + Yango + + + + + Kudiya + + + + + Mal + + + + + Nupbikha + + + + + Yamdena + + + + + Cumanagoto + + + + + Soga + + + + + Yuki + + + + + //Gana + + + + + Bilur + + + + + Tofanma + + + + + Laimbue + + + + + Zangwal + + + + + Konai + + + + + Warungu + + + + + Bodo Parja + + + + + Wala + + + + + Mamasa + + + + + Aringa + + + + + Yir Yoront + + + + + Ajyininka Apurucayali + + + + + Sagalla + + + + + Mpuono + + + + + Petapa Zapotec + + + + + Sakam + + + + + Bankagooma + + + + + Furu + + + + + Bondo + + + + + Komo (Sudan) + + + + + Kubo + + + + + Xiri + + + + + Alamblak + + + + + Gumawana + + + + + Enggano + + + + + Chamalal + + + + + Ndoe + + + + + Amdo Tibetan + + + + + Vaagri Booli + + + + + Minigir + + + + + Toba-Maskoy + + + + + Massep + + + + + West Masela + + + + + Durango Nahuatl + + + + + Yuchi + + + + + Yawalapiti + + + + + Kuwaa + + + + + Bassa + + + + + Kwaio + + + + + Serili + + + + + Orokaiva + + + + + Anasi + + + + + Mok + + + + + Ika + + + + + Ghomala' + + + + + Maleku Jaika + + + + + Chuukese + + + + + Chittagonian + + + + + Buol + + + + + Old Marathi + + + + + Ilue + + + + + Akpa + + + + + Dutch + + + + + Pancana + + + + + Baloi + + + + + Northern Cakchiquel + + + + + Lesing-Gelimi + + + + + Antakarinya + + + + + Kashmiri + + + + + British Sign Language + + + + + Car Nicobarese + + + + + Ami + + + + + Yoidik + + + + + Waskia + + + + + Obispeno + + + + + Kono (Guinea) + + + + + Dadibi + + + + + Lapuyan Subanun + + + + + Chonyi + + + + + Dyugun + + + + + Yagwoia + + + + + Tima + + + + + Eggon + + + + + Talieng + + + + + Baluan-Pam + + + + + Fuyug + + + + + Doondo + + + + + Temuan + + + + + Kalam + + + + + Marwari + + + + + Okolod + + + + + Daza + + + + + Boguru + + + + + Cayuse + + + + + Kuy + + + + + Eastern Tamang + + + + + Ifo + + + + + Karitiana + + + + + Nara + + + + + Liberian English + + + + + Bukar Sadong + + + + + Duupa + + + + + Kelon + + + + + Ushojo + + + + + Clallam + + + + + Europanto + + + + + Leningitij + + + + + Babanki + + + + + Southern Nuni + + + + + Ososo + + + + + Orang Kanaq + + + + + Kwadi + + + + + Honduras Sign Language + + + + + Boma + + + + + Iteri + + + + + Paranan + + + + + Lithuanian Sign Language + + + + + Tai Long + + + + + Judeo-Moroccan Arabic + + + + + Kofei + + + + + Zayse-Zergulla + + + + + Southern Kiwai + + + + + Elseng + + + + + San Juan Colorado Mixtec + + + + + Umatilla + + + + + Lenakel + + + + + Songomeno + + + + + Taroko + + + + + Hiberno-Scottish Gaelic + + + + + Northern Tutchone + + + + + Pye Krumen + + + + + Iau + + + + + Cubulco Achi + + + + + Northeastern Thai + + + + + Old Aramaic + + + + + Liburnian + + + + + Dawawa + + + + + Najdi Arabic + + + + + Wanji + + + + + Asho Chin + + + + + Chothe Naga + + + + + Paipai + + + + + Early Tripuri + + + + + Tsoa + + + + + Vunapu + + + + + Dhatki + + + + + Hoti + + + + + Susu + + + + + Iowa-Oto + + + + + Bepour + + + + + Chambri + + + + + Dime + + + + + Rennell-Belona + + + + + Rundi + + + + + Ngombe (Democratic Republic of Congo) + + + + + Majera + + + + + Bung + + + + + Wapan + + + + + Mattole + + + + + Picard + + + + + Alor + + + + + Iwur + + + + + Tamki + + + + + Central Cakchiquel + + + + + Sawi + + + + + Mwan + + + + + Old High German (ca. 750-1050) + + + + + Gusan + + + + + Taman (Indonesia) + + + + + Kwini + + + + + Yinglish + + + + + Mori Atas + + + + + Old Uighur + + + + + Sauri + + + + + Anus + + + + + Bogaya + + + + + Kunimaipa + + + + + Filipino + + + + + Njalgulgule + + + + + Para Arara + + + + + Kumak + + + + + Cauca + + + + + Bohtan Neo-Aramaic + + + + + Lere + + + + + Pengo + + + + + Iha + + + + + Hai//om + + + + + Aequian + + + + + Kujarge + + + + + Eastern Kayah + + + + + Iriga Bicolano + + + + + Urartian + + + + + Maramba + + + + + Lama (Myanmar) + + + + + Mapoyo + + + + + Mazatlan Mixe + + + + + Mangareva + + + + + Persian Sign Language + + + + + Siamou + + + + + Ngbaka Ma'bo + + + + + Sengseng + + + + + Dhanwar (Nepal) + + + + + Atuence + + + + + Hmar + + + + + Guramalum + + + + + Ama (Sudan) + + + + + Illyrian + + + + + Romam + + + + + Kung-Ekoka + + + + + Yahang + + + + + Yevanic + + + + + Safwa + + + + + South African Sign Language + + + + + Old Dutch + + + + + North Moluccan Malay + + + + + Kenga + + + + + Hewa + + + + + Narom + + + + + Chorotega + + + + + Gourmanchema + + + + + Southern Lorung + + + + + Wandala + + + + + Kambera + + + + + Yulu + + + + + Mbati + + + + + Belarusian + + + + + Anuak + + + + + Kambaata + + + + + Jurchen + + + + + Paku + + + + + Emplawas + + + + + Dusun Deyah + + + + + Hermit + + + + + Nukuria + + + + + Langbashe + + + + + Antankarana Malagasy + + + + + Chadian Sign Language + + + + + Were + + + + + Northern Yukaghir + + + + + Shakara + + + + + Nakanai + + + + + Kaike + + + + + Nyindu + + + + + Igo + + + + + Nimanbur + + + + + Zumbun + + + + + Mixtepec Mixtec + + + + + Xiandao + + + + + Central Nahuatl + + + + + Bemba (Democratic Republic of Congo) + + + + + Old Hittite + + + + + Gilaki + + + + + Lelepa + + + + + Gorap + + + + + Ixcatlan Mazatec + + + + + Kamakan + + + + + Karas + + + + + Dixon Reef + + + + + Buhutu + + + + + Southeast Babar + + + + + Southeast Ambrym + + + + + Jalkunan + + + + + Western Cham + + + + + Sangu (Gabon) + + + + + Dhanki + + + + + Bonjo + + + + + Miwa + + + + + Luo (Kenya and Tanzania) + + + + + Old Ossetic + + + + + Adiwasi Garasia + + + + + Koorete + + + + + Banda-Yangere + + + + + Kumalu + + + + + Finnish Sign Language + + + + + Mansoanka + + + + + Koneraw + + + + + Kunama + + + + + Rao + + + + + Maku'a + + + + + Tapirape + + + + + Santa Ines Ahuatempan Popoloca + + + + + Lembena + + + + + Mbulungish + + + + + Tina Sambal + + + + + Likila + + + + + South Lembata + + + + + Macushi + + + + + Northern Roglai + + + + + Bukit Malay + + + + + Xaasongaxango + + + + + Rungwa + + + + + Lamu-Lamu + + + + + Ngong + + + + + Akar-Bale + + + + + Bolia + + + + + Bariji + + + + + Highland Oaxaca Chontal + + + + + Bugawac + + + + + Teribe + + + + + Buya + + + + + West Damar + + + + + Kwoma + + + + + Karaja + + + + + Kamantan + + + + + Kaimbe + + + + + Burarra + + + + + Ghodoberi + + + + + Jora + + + + + Caka + + + + + Makurap + + + + + Min Bei Chinese + + + + + Morelos Nahuatl + + + + + Ambonese Malay + + + + + Kisar + + + + + Kendayan + + + + + Numidian + + + + + Tapiete + + + + + Kerek + + + + + Uruguayan Sign Language + + + + + Djawi + + + + + Lahnda + + + + + Guwamu + + + + + Tasmate + + + + + Samba Daka + + + + + Longuda + + + + + Kachin + + + + + Shixing + + + + + Gwahatike + + + + + Nanticoke + + + + + Meramera + + + + + Ache + + + + + Uri + + + + + Worimi + + + + + Daonda + + + + + Southern Rengma Naga + + + + + Gwamhi-Wuri + + + + + Ama (Papua New Guinea) + + + + + Kapya + + + + + Riantana + + + + + Akurio + + + + + Middle Korean (10th - 16th cent.) + + + + + Gowli + + + + + Hmong Njua + + + + + Baluchi + + + + + Maghdi + + + + + Monsang Naga + + + + + Arawum + + + + + Tumak + + + + + Eteocypriot + + + + + Silopi + + + + + Tigrinya + + + + + Bukwen + + + + + Mbangwe + + + + + Minoan + + + + + Catawba + + + + + Amri + + + + + Geko Karen + + + + + Asu (Nigeria) + + + + + Kombai + + + + + Carutana + + + + + Punan Batu 1 + + + + + Sylheti + + + + + Chokwe + + + + + Achagua + + + + + Tamashek + + + + + Penang Sign Language + + + + + Jagoi + + + + + Bo (Laos) + + + + + Elip + + + + + Sulung + + + + + Deg + + + + + Phuong + + + + + Gyem + + + + + Owiniga + + + + + Varhadi-Nagpuri + + + + + Wotu + + + + + Lele (Guinea) + + + + + Northwestern Ojibwa + + + + + Northeastern Dinka + + + + + Abar + + + + + Bago-Kusuntu + + + + + Thangmi + + + + + Suabo + + + + + Pulabu + + + + + Kwerba Mamberamo + + + + + Far Western Muria + + + + + Kaxarari + + + + + Chemakum + + + + + Tidong + + + + + Southern Aymara + + + + + Choni + + + + + Sheko + + + + + Somray + + + + + Uneapa + + + + + Central Dusun + + + + + Dogri (macrolanguage) + + + + + Aoheng + + + + + Loma (Liberia) + + + + + Yaweyuha + + + + + Faita + + + + + Sajalong + + + + + Monde + + + + + Andaman Creole Hindi + + + + + Merey + + + + + Kosena + + + + + Nocaman + + + + + Lower Ta'oih + + + + + Thudam + + + + + Koshin + + + + + Cuba Sign Language + + + + + Southern Sotho + + + + + Guana (Brazil) + + + + + Land Dayak + + + + + Central Bicolano + + + + + Biatah + + + + + Pirlatapa + + + + + Yalalag Zapotec + + + + + Aramanik + + + + + Paynamar + + + + + Larteh + + + + + Dyaberdyaber + + + + + Huli + + + + + Eloyi + + + + + Bhatola + + + + + Tambas + + + + + Xanaguia Zapotec + + + + + Judeo-Yemeni Arabic + + + + + Fanagalo + + + + + Toromono + + + + + Totomachapan Zapotec + + + + + Kangri + + + + + Kodagu + + + + + Venetic + + + + + Mpiemo + + + + + Comox + + + + + Fwe + + + + + Feroge + + + + + Eastern Jacalteco + + + + + Sena + + + + + Yoron + + + + + Tacanec + + + + + Gaikundi + + + + + Buyang + + + + + Katcha-Kadugli-Miri + + + + + Chala + + + + + Kerewo + + + + + Uzbeki Arabic + + + + + Awbono + + + + + Riung + + + + + Bwisi + + + + + Kildin Sami + + + + + Jamsay Dogon + + + + + Ipulo + + + + + Piapoco + + + + + Lindu + + + + + Apalai + + + + + Nepalese Sign Language + + + + + Capanahua + + + + + Khetrani + + + + + Irarutu + + + + + Tapeba + + + + + Middle High German (ca. 1050-1500) + + + + + Kumhali + + + + + Vili + + + + + Urapmin + + + + + Bafaw-Balong + + + + + Oroch + + + + + Lyele + + + + + Tigon Mbembe + + + + + Bengkulu + + + + + San Miguel Piedras Mixtec + + + + + Samberigi + + + + + Kokota + + + + + Jerung + + + + + Teluti + + + + + Kwaja + + + + + Shumcho + + + + + Kaiep + + + + + Ninzo + + + + + Tindi + + + + + Awa-Cuaiquer + + + + + Western Muria + + + + + Gawar-Bati + + + + + Nateni + + + + + Tangchangya + + + + + Hehe + + + + + Siriono + + + + + Gera + + + + + Nahali + + + + + Bats + + + + + Iguta + + + + + Ndun + + + + + Mpongmpong + + + + + Isekiri + + + + + Ong + + + + + Idi + + + + + Spanish + + + + + Matses + + + + + Kaningi + + + + + Berom + + + + + Tengger + + + + + Buksa + + + + + Barambu + + + + + Ainbai + + + + + Northern Rengma Naga + + + + + Sea Island Creole English + + + + + Kanufi + + + + + Lower Silesian + + + + + Wipi + + + + + Mudhili Gadaba + + + + + Turkic Khalaj + + + + + Neku + + + + + Venustiano Carranza Tzotzil + + + + + Nkem-Nkum + + + + + Alsea + + + + + Lingao + + + + + Bahau + + + + + Yawiyo + + + + + Bedoanas + + + + + Anserma + + + + + Tha + + + + + Lamja-Dengsa-Tola + + + + + Nar Phu + + + + + Sansu + + + + + Ihievbe + + + + + Kota Marudu Tinagas + + + + + Seit-Kaitetu + + + + + Holu + + + + + Aribwatsa + + + + + Katkari + + + + + Ho Chi Minh City Sign Language + + + + + Tigak + + + + + Western Dani + + + + + Phrygian + + + + + Vlax Romani + + + + + Upper Baram Kenyah + + + + + Ririo + + + + + Northern Huishui Hmong + + + + + Miarra + + + + + Sawknah + + + + + Meriam + + + + + Tamil + + + + + Mada (Cameroon) + + + + + Ndzwani Comorian + + + + + Central Sierra Miwok + + + + + Tsuvan + + + + + Jere + + + + + Firan + + + + + Igala + + + + + Eastern Huishui Hmong + + + + + Soli + + + + + Jiamao + + + + + Uma + + + + + Dayao Yi + + + + + Chincha Quechua + + + + + Northern Haida + + + + + Northern Pame + + + + + Ma'ya + + + + + Nanti + + + + + Baraamu + + + + + Lakalei + + + + + Gwere + + + + + Ngatik Men's Creole + + + + + Osage + + + + + Gabrielino-Fernandeno + + + + + Bumaji + + + + + Quiotepec Chinantec + + + + + Kango (Bas-Uele District) + + + + + Lombo + + + + + Okanagan + + + + + Maden + + + + + Lepcha + + + + + Busang Kayan + + + + + Mariyedi + + + + + Kehu + + + + + Chichimeca-Jonaz + + + + + Avau + + + + + Mingrelian + + + + + Alune + + + + + Sansi + + + + + Achuar-Shiwiar + + + + + Meru + + + + + Bhele + + + + + Sikaritai + + + + + Mamulique + + + + + Mazaltepec Zapotec + + + + + Wagawaga + + + + + Japanese Sign Language + + + + + Tsogo + + + + + Pankhu + + + + + Mehek + + + + + Russian + + + + + Maguindanao + + + + + Nindi + + + + + Ito + + + + + Northern Tarahumara + + + + + Chibcha + + + + + Crimean Tatar + + + + + Maii + + + + + Kota Marudu Talantang + + + + + Xokleng + + + + + Urarina + + + + + Polish + + + + + Likum + + + + + Oune + + + + + Bambili-Bambui + + + + + Kwak + + + + + Sakata + + + + + Pamona + + + + + Gros Ventre + + + + + Modang + + + + + Kande + + + + + Tehit + + + + + Ngamini + + + + + Umon + + + + + Sangir + + + + + Yawuru + + + + + Gobu + + + + + Tasmanian + + + + + Surbakhal + + + + + Texmelucan Zapotec + + + + + Isoko + + + + + Southeastern Kolami + + + + + Kyerung + + + + + Gade Lohar + + + + + Khunsari + + + + + Kullu Pahari + + + + + Batak Angkola + + + + + Merei + + + + + Pattani + + + + + Dondo + + + + + Mengisa + + + + + Classical Syriac + + + + + Sanye + + + + + Lower Sorbian + + + + + Bafia + + + + + Margany + + + + + Zaghawa + + + + + Nukuini + + + + + Kunyi + + + + + Angami Naga + + + + + Kapin + + + + + Sausi + + + + + Bangala + + + + + Laz + + + + + Mariri + + + + + Ebrie + + + + + Waura + + + + + Severn Ojibwa + + + + + Pennsylvania German + + + + + Rawang + + + + + Ati + + + + + Eastern Magar + + + + + Pulaar + + + + + Mea + + + + + Eastern Pokomam + + + + + Guguyimidjir + + + + + Huichol + + + + + Kobiana + + + + + Marau + + + + + Dia + + + + + Carolina Algonquian + + + + + Tal + + + + + Southeastern Pomo + + + + + Sika + + + + + Kate + + + + + Wutunhua + + + + + Buwal + + + + + Masbatenyo + + + + + Nagarchal + + + + + Banda-Banda + + + + + Gan Chinese + + + + + Malaccan Creole Malay + + + + + Southeastern Puebla Nahuatl + + + + + Taloki + + + + + Kru'ng 2 + + + + + Chitkuli Kinnauri + + + + + Kaninuwa + + + + + Samre + + + + + Bulu (Cameroon) + + + + + Ixtayutla Mixtec + + + + + Mator-Taygi-Karagas + + + + + Oromo + + + + + Selayar + + + + + Weme Gbe + + + + + Mantsi + + + + + Uya + + + + + Kuri + + + + + Budeh Stieng + + + + + Joyabaj Quiche + + + + + Bannoni + + + + + Wangganguru + + + + + Limburgan + + + + + Lama (Togo) + + + + + Waling + + + + + French Sign Language + + + + + Abidji + + + + + Qashqa'i + + + + + Tetete + + + + + Asoa + + + + + Palu'e + + + + + Alagwa + + + + + Serrano + + + + + Agoi + + + + + Huilliche + + + + + Miu + + + + + Naaba + + + + + Arigidi + + + + + Lintang + + + + + Abadi + + + + + Sierra de Juarez Zapotec + + + + + Gula Iro + + + + + Panamint + + + + + Saxwe Gbe + + + + + Dek + + + + + Manza + + + + + Bolondo + + + + + Na-Meo + + + + + Lemolang + + + + + Jilim + + + + + Moskona + + + + + Omani Arabic + + + + + Snohomish + + + + + Ma (Papua New Guinea) + + + + + Mina (India) + + + + + Gun + + + + + Chipiajes + + + + + Pingelapese + + + + + Dandami Maria + + + + + Komi-Zyrian + + + + + Djamindjung + + + + + Badeshi + + + + + Matal + + + + + Patla-Chicontla Totonac + + + + + Puno Quechua + + + + + Northeast Maidu + + + + + Halbi + + + + + Fala + + + + + Umiray Dumaget Agta + + + + + Ahanta + + + + + Kenyan Sign Language + + + + + Busoa + + + + + Mokilese + + + + + Bamu + + + + + Bangba + + + + + Morigi + + + + + Purubora + + + + + Leelau + + + + + Sangisari + + + + + Kumauni + + + + + Tinoc Kallahan + + + + + Romanian Sign Language + + + + + Upper Sorbian + + + + + Dzando + + + + + Pomo + + + + + Zenzontepec Chatino + + + + + Iha Based Pidgin + + + + + Songe + + + + + Saam + + + + + Dacian + + + + + Lahu Shi + + + + + Tepecano + + + + + North Ndebele + + + + + Pale Palaung + + + + + Okpe (Southwestern Edo) + + + + + Simaa + + + + + Ura (Vanuatu) + + + + + Lower Grand Valley Dani + + + + + Bure + + + + + Wampur + + + + + Homa + + + + + Gungu + + + + + Koro (Cote d'Ivoire) + + + + + Watam + + + + + Dongotono + + + + + Trinitario + + + + + Swiss-Italian Sign Language + + + + + Idun + + + + + Welsh Romani + + + + + Yaben + + + + + Coeur d'Alene + + + + + Isanzu + + + + + Bit + + + + + Classical Nahuatl + + + + + Jahanka + + + + + Makhuwa-Marrevone + + + + + Lasalimu + + + + + San Blas Kuna + + + + + Subiya + + + + + Sengo + + + + + Kwaya + + + + + Romanova + + + + + Kein + + + + + Lealao Chinantec + + + + + Eastern Xwla Gbe + + + + + Dza + + + + + Southern Lolopho Yi + + + + + Bukiyip + + + + + Ginuman + + + + + Amara + + + + + Wumboko + + + + + Kambiwa + + + + + French + + + + + Ekajuk + + + + + Pahlavi + + + + + Harauti + + + + + Camunic + + + + + Yamna + + + + + Western Yi + + + + + Ke'o + + + + + Southern Zhuang + + + + + Guliguli + + + + + Inga + + + + + Ngie + + + + + Mugom + + + + + Kim + + + + + Eastern Bru + + + + + Istro Romanian + + + + + Karnai + + + + + Paniya + + + + + Traveller Danish + + + + + Alekano + + + + + Siwai + + + + + Enepa + + + + + Chickasaw + + + + + Finongan + + + + + Russian Sign Language + + + + + Wiarumus + + + + + Chaura + + + + + Yendang + + + + + Tawoyan + + + + + Kutang Ghale + + + + + Basa-Gurmana + + + + + Zaramo + + + + + Gants + + + + + Hiri Motu + + + + + Aribwaung + + + + + Manipa + + + + + Machinere + + + + + Bulgarian + + + + + Bayali + + + + + Tubatulabal + + + + + Southern Mnong + + + + + Buyu + + + + + Malua Bay + + + + + Urigina + + + + + Kodeoha + + + + + Nali + + + + + Ese + + + + + Utu + + + + + Southern Toussian + + + + + Geez + + + + + Ngarla + + + + + Tsishingini + + + + + Palantla Chinantec + + + + + Banda Malay + + + + + Yinchia + + + + + Jiiddu + + + + + Dhangu + + + + + Fordata + + + + + Mekeo + + + + + Nkongho + + + + + Suma + + + + + Mbangala + + + + + Mumuye + + + + + Ambala Ayta + + + + + Tairuma + + + + + Luimbi + + + + + Momina + + + + + Bende + + + + + Ganzi + + + + + Sangab Mandaya + + + + + Southern Nicobarese + + + + + Hmong Don + + + + + Nimo + + + + + Motlav + + + + + Dengka + + + + + Marwari (Pakistan) + + + + + Sindarin + + + + + Tulishi + + + + + Umeda + + + + + Quetzaltepec Mixe + + + + + Kantosi + + + + + Kuranko + + + + + Ngiemboon + + + + + Mmen + + + + + Yahadian + + + + + Ocotepec Mixtec + + + + + Koyaga + + + + + Tunisian Sign Language + + + + + Yautepec Zapotec + + + + + Burji + + + + + Ucayali-Yurua Asheninka + + + + + Eipomek + + + + + Dii + + + + + Nengone + + + + + Teke-Nzikou + + + + + Vangunu + + + + + Kaiy + + + + + Lardil + + + + + Kaskean + + + + + Gugu Badhun + + + + + Padoe + + + + + Ejamat + + + + + Gagnoa Bete + + + + + Nungu + + + + + Pecheneg + + + + + Atong + + + + + Panang + + + + + Yatzachi Zapotec + + + + + Baiso + + + + + Boano (Maluku) + + + + + Njerep + + + + + Tira + + + + + Old Cornish + + + + + Simbari + + + + + Cacaloxtepec Mixtec + + + + + Ha + + + + + Gudu + + + + + Lozi + + + + + Middle Welsh + + + + + Bentong + + + + + Wab + + + + + Gwich'in + + + + + Phong-Kniang + + + + + Atsam + + + + + Adivasi Oriya + + + + + Chipewyan + + + + + Malapandaram + + + + + Sichuan Yi + + + + + Yonaguni + + + + + Bayot + + + + + Angaatiha + + + + + South Bolivian Quechua + + + + + Sauk + + + + + Ura (Papua New Guinea) + + + + + Orokolo + + + + + Chokri Naga + + + + + Kaansa + + + + + Sagala + + + + + Maru + + + + + Korwa + + + + + Apalik + + + + + Yaur + + + + + Gwa + + + + + Leipon + + + + + Bukitan + + + + + Pwo Northern Karen + + + + + Degenan + + + + + Sursurunga + + + + + Dakpakha + + + + + Wajarri + + + + + Guato + + + + + Wom (Nigeria) + + + + + Nsongo + + + + + Mbwela + + + + + Serudung Murut + + + + + Ngom + + + + + Zaiwa + + + + + Paliyan + + + + + Pa'a + + + + + Mekmek + + + + + Kalmyk + + + + + Tasawaq + + + + + Piya-Kwonci + + + + + Mikasuki + + + + + Yombe + + + + + Novial + + + + + Mongolian + + + + + Mosimo + + + + + Hahon + + + + + Turung + + + + + Termanu + + + + + Yelogu + + + + + Me'en + + + + + Sentani + + + + + Kamberau + + + + + Zande (individual language) + + + + + Ndonde Hamba + + + + + Hungarian + + + + + Kachi Koli + + + + + Polish Sign Language + + + + + Ganglau + + + + + Panao Huanuco Quechua + + + + + Fore + + + + + Chenoua + + + + + Binukid + + + + + Dumpu + + + + + Santa Maria La Alta Nahuatl + + + + + Sakao + + + + + Babine + + + + + Mundang + + + + + Etebi + + + + + Guiqiong + + + + + Salt-Yui + + + + + Kelabit + + + + + Southern Thai + + + + + Wiaki + + + + + Zacatepec Chatino + + + + + Nande + + + + + Kamasau + + + + + San Vicente Coatlan Zapotec + + + + + Bagvalal + + + + + Kerinci + + + + + Fania + + + + + Campalagian + + + + + Koroshi + + + + + Jabuti + + + + + Piame + + + + + Juruna + + + + + Lavukaleve + + + + + Bauwaki + + + + + Chamula Tzotzil + + + + + Mentawai + + + + + Vietnamese + + + + + Tieyaxo Bozo + + + + + Sota Kanum + + + + + Yuqui + + + + + Nganasan + + + + + Urhobo + + + + + Tsimshian + + + + + Gbaya (Central African Republic) + + + + + Bintulu + + + + + Khisa + + + + + Maquiritari + + + + + Phrae Pwo Karen + + + + + Jeng + + + + + Onobasulu + + + + + Temoq + + + + + Bidyara + + + + + Adi + + + + + Mwera (Chimwera) + + + + + South Central Dinka + + + + + Nkhumbi + + + + + Ejagham + + + + + Sechelt + + + + + Sanggau + + + + + Lishan Didan + + + + + Mamanwa + + + + + Mixifore + + + + + Lele (Chad) + + + + + Pacoh + + + + + Oxchuc Tzeltal + + + + + Lole + + + + + Koti + + + + + Boloki + + + + + Longgu + + + + + Horpa + + + + + Disa + + + + + Manda (Tanzania) + + + + + Kanju + + + + + Chuwabu + + + + + Yamphu + + + + + Louisiana Creole French + + + + + Udi + + + + + Ashe + + + + + Umbugarla + + + + + Achinese + + + + + Nyigina + + + + + Gambian Wolof + + + + + Lowland Oaxaca Chontal + + + + + Hrangkhol + + + + + Golin + + + + + Northwest Oaxaca Mixtec + + + + + Mawes + + + + + Kiorr + + + + + Penrhyn + + + + + Batuley + + + + + Bo (Papua New Guinea) + + + + + Guyanese Creole English + + + + + Southern Amami-Oshima + + + + + Chipaya + + + + + Central Huishui Hmong + + + + + Sacapulteco + + + + + Mbula-Bwazza + + + + + Nukumanu + + + + + Glio-Oubi + + + + + Alago + + + + + West Lembata + + + + + Degema + + + + + Tunni + + + + + Sula + + + + + Ronji + + + + + Shughni + + + + + Nshi + + + + + Ibaloi + + + + + Hanga + + + + + Leyigha + + + + + Kemtuik + + + + + Banda (Indonesia) + + + + + Old Provencal (to 1500) + + + + + Lewo Eleng + + + + + Lampung + + + + + San Luis Temalacayuca Popoloca + + + + + China Buriat + + + + + Avikam + + + + + Middle Irish (900-1200) + + + + + Ngizim + + + + + Timucua + + + + + Kerak + + + + + Mochi + + + + + Pwapwa + + + + + Western Cakchiquel + + + + + Kuo + + + + + Nijadali + + + + + Kagulu + + + + + Bube + + + + + Ngulu + + + + + Northern Nambikuara + + + + + Roria + + + + + Old Manipuri + + + + + Mpade + + + + + Ede Ica + + + + + Occitan (post 1500) + + + + + Wamin + + + + + Loloda + + + + + Chilean Sign Language + + + + + Duna + + + + + Standard Arabic + + + + + Interlingua (International Auxiliary Language Association) + + + + + Powhatan + + + + + Shamang + + + + + Nayi + + + + + Guragone + + + + + Mengen + + + + + Baibai + + + + + Koryak + + + + + Ega + + + + + Sa'ban + + + + + Gonja + + + + + Bajan + + + + + To + + + + + Epigraphic Mayan + + + + + Yagnobi + + + + + Giyug + + + + + Tahaggart Tamahaq + + + + + Jonkor Bourmataguil + + + + + Central Awyu + + + + + Tedaga + + + + + Kenati + + + + + Samei + + + + + Marathi + + + + + Trimuris + + + + + Ga'dang + + + + + Paumari + + + + + Chorti + + + + + So (Democratic Republic of Congo) + + + + + Gitonga + + + + + Awara + + + + + Ligurian (Ancient) + + + + + Western Xiangxi Hmong + + + + + Belize Kriol English + + + + + Kare (Papua New Guinea) + + + + + Hausa + + + + + Kalarko + + + + + Pinyin + + + + + Cajun French + + + + + Koda + + + + + Bole + + + + + Merwari + + + + + Casiguran Dumagat Agta + + + + + Mbalanhu + + + + + Klao + + + + + Southwestern Fars + + + + + Ewondo + + + + + Wulna + + + + + Likwala + + + + + Chimborazo Highland Quichua + + + + + Laro + + + + + Central Yupik + + + + + Noiri + + + + + Enga + + + + + Masikoro Malagasy + + + + + Nyemba + + + + + San Pedro Amuzgos Amuzgo + + + + + Yuaga + + + + + Mawayana + + + + + Sikkimese + + + + + Ngawun + + + + + Atayal + + + + + Dumi + + + + + Central Tagbanwa + + + + + Sepa (Indonesia) + + + + + Ampanang + + + + + Bezhta + + + + + Rombo + + + + + Mian + + + + + Yana + + + + + Sindihui Mixtec + + + + + Kaiwa + + + + + Aulua + + + + + Chodri + + + + + Mangbetu + + + + + Hawai'i Creole English + + + + + Sibe + + + + + Bernde + + + + + Dedua + + + + + Wasembo + + + + + Basa-Gumna + + + + + Wersing + + + + + Nuk + + + + + Tolowa + + + + + Topoiyo + + + + + Ede Ije + + + + + Bilaspuri + + + + + Kagoro + + + + + Eastern Ngad'a + + + + + Surajpuri + + + + + Tai Ya + + + + + Swahili (macrolanguage) + + + + + Calderon Highland Quichua + + + + + Benga + + + + + Ormuri + + + + + Western Krahn + + + + + Kumukio + + + + + Nocte Naga + + + + + Cappadocian Greek + + + + + Baras + + + + + Bobot + + + + + Tafi + + + + + Loxicha Zapotec + + + + + Awiyaana + + + + + Isconahua + + + + + Mbunda + + + + + Nyankole + + + + + Karko + + + + + Konomala + + + + + Kakihum + + + + + Southern Dong + + + + + Boikin + + + + + Mogholi + + + + + Mangas + + + + + Old Persian (ca. 600-400 B.C.) + + + + + Gimnime + + + + + Gedaged + + + + + Fipa + + + + + Namuyi + + + + + Nicaraguan Sign Language + + + + + Mituku + + + + + Nihali + + + + + Guya + + + + + Jaqaru + + + + + Angloromani + + + + + Burum-Mindik + + + + + Digo + + + + + Garo + + + + + Zoogocho Zapotec + + + + + Kur + + + + + Lyons Sign Language + + + + + Mufian + + + + + Northwestern Kolami + + + + + Rwa + + + + + Niksek + + + + + Kekchi + + + + + Jakun + + + + + Shuswap + + + + + Sikaiana + + + + + Jilbe + + + + + Kaulong + + + + + Nkoroo + + + + + Rema + + + + + Amapa Creole + + + + + Zigula + + + + + Kove + + + + + Ayautla Mazatec + + + + + Mid-Southern Banda + + + + + Southeastern Tepehuan + + + + + Western Keres + + + + + Erzya + + + + + Bina (Nigeria) + + + + + Desiya Oriya + + + + + Colombian Sign Language + + + + + Talai + + + + + Papavo + + + + + Liangmai Naga + + + + + Ndam + + + + + Machiguenga + + + + + Yangho + + + + + Berawan + + + + + Paranawat + + + + + Miahuatlan Zapotec + + + + + Yagua + + + + + Egyptian (Ancient) + + + + + Banggarla + + + + + Cubeo + + + + + Siroi + + + + + Bini + + + + + Central Asmat + + + + + Poumei Naga + + + + + Magahat + + + + + Wik-Keyangan + + + + + Carabayo + + + + + Melo + + + + + Rajput Garasia + + + + + Matengo + + + + + Maiadomu + + + + + Pawaia + + + + + Judeo-Crimean Tatar + + + + + Tunica + + + + + Han + + + + + Sayula Popoluca + + + + + Hidatsa + + + + + N'Ko + + + + + Kpessi + + + + + Punan Merap + + + + + Adzera + + + + + Suena + + + + + Ono + + + + + Pular + + + + + Nepali Kurux + + + + + Huaylla Wanca Quechua + + + + + Bine + + + + + Saho + + + + + Kunggari + + + + + Celtiberian + + + + + Edolo + + + + + Sarsi + + + + + Dar Sila Daju + + + + + Kwomtari + + + + + Maiwala + + + + + Kare (Central African Republic) + + + + + Sian + + + + + Utarmbung + + + + + Wusi + + + + + Tsakwambo + + + + + Hatam + + + + + Nisenan + + + + + Yala + + + + + Nakwi + + + + + Lak + + + + + Nyam + + + + + Zarphatic + + + + + Ndogo + + + + + Chiquitano + + + + + Southeastern Ixtlan Zapotec + + + + + North Watut + + + + + Tsat + + + + + Tatuyo + + + + + Dombe + + + + + Hre + + + + + Upper Kinabatangan + + + + + Xavante + + + + + Chenalho Tzotzil + + + + + Haroi + + + + + Jad + + + + + Vumbu + + + + + Kete + + + + + Bahonsuai + + + + + Inor + + + + + Papel + + + + + Upper Pokomo + + + + + Attie + + + + + Wik-Ngathana + + + + + Kuijau + + + + + Binongan Itneg + + + + + Bainouk-Gunyaamolo + + + + + Port Sandwich + + + + + Ogan + + + + + Anor + + + + + Kharia + + + + + Dar Daju Daju + + + + + Singa + + + + + Naka'ela + + + + + Eastern Cakchiquel + + + + + Middle French (ca. 1400-1600) + + + + + Ache Yi + + + + + Sarikoli + + + + + Gengle + + + + + Gresi + + + + + Judeo-Tripolitanian Arabic + + + + + Temiar + + + + + Kwerisa + + + + + Kono (Sierra Leone) + + + + + Cholon + + + + + Ngombe (Central African Republic) + + + + + Gilbertese + + + + + Vame + + + + + Deori + + + + + Anyin + + + + + Kagoma + + + + + Mansaka + + + + + Warlpiri + + + + + Classical Quechua + + + + + Takestani + + + + + Siuslaw + + + + + Metlatonoc Mixtec + + + + + Phom Naga + + + + + Makolkol + + + + + Toba + + + + + Baimak + + + + + Kim Mun + + + + + South Azerbaijani + + + + + Tunen + + + + + Gorontalo + + + + + Wappo + + + + + Minaveha + + + + + Mpotovoro + + + + + Glavda + + + + + Chakali + + + + + Owa + + + + + Yelmek + + + + + Wadjigu + + + + + Dumpas + + + + + Kulon-Pazeh + + + + + Akhvakh + + + + + Venezuelan Sign Language + + + + + Futuna-Aniwa + + + + + Lake Miwok + + + + + Salar + + + + + Kunjen + + + + + Huallaga Huanuco Quechua + + + + + Saek + + + + + Malgbe + + + + + Teke-Tsaayi + + + + + Ambai + + + + + Dori'o + + + + + Iko + + + + + Ngul + + + + + Iyive + + + + + Lacandon + + + + + Wali (Sudan) + + + + + Anmatyerre + + + + + Tofin Gbe + + + + + Mansi + + + + + Atohwaim + + + + + Marino + + + + + Bubi + + + + + Marka + + + + + San Dionisio Del Mar Huave + + + + + Alawa + + + + + Noon + + + + + Tangoa + + + + + Pentlatch + + + + + Abkhazian + + + + + Qatabanian + + + + + Sensi + + + + + Dhofari Arabic + + + + + Asilulu + + + + + Kara (Papua New Guinea) + + + + + East Masela + + + + + Lhokpu + + + + + Misima-Paneati + + + + + Holikachuk + + + + + Emok + + + + + Wae Rana + + + + + Seroa + + + + + Shempire Senoufo + + + + + Moroccan Sign Language + + + + + Pogolo + + + + + Northwest Alaska Inupiatun + + + + + Gbagyi + + + + + Nauna + + + + + Northern Nuni + + + + + Tela-Masbuar + + + + + Bahnar + + + + + Koho + + + + + Ponares + + + + + Ringgou + + + + + Sape + + + + + Binandere + + + + + Xamtanga + + + + + Lachi + + + + + Yuruti + + + + + Nage + + + + + Zenag + + + + + Kumbewaha + + + + + Lamnso' + + + + + Owenia + + + + + Guajajara + + + + + Cacaopera + + + + + Upper Chehalis + + + + + Polari + + + + + Vai + + + + + Yatee Zapotec + + + + + Tumi + + + + + Balkan Gagauz Turkish + + + + + Suga + + + + + Hano + + + + + Lishana Deni + + + + + Aneityum + + + + + Malgana + + + + + Tembe + + + + + Folopa + + + + + Bachajon Tzeltal + + + + + Repanbitip + + + + + Kominimung + + + + + Quiavicuzas Zapotec + + + + + Iberian + + + + + Gbati-ri + + + + + Langobardic + + + + + Chagatai + + + + + Panytyima + + + + + Wikngenchera + + + + + Kugbo + + + + + Polabian + + + + + Mori Bawah + + + + + Omok + + + + + Ainu (Japan) + + + + + Dusner + + + + + Hupde + + + + + Surubu + + + + + Shwai + + + + + Yari + + + + + Northern Hindko + + + + + Jirel + + + + + Dogrib + + + + + 'Areare + + + + + Faiwol + + + + + Mobumrin Aizi + + + + + Crow + + + + + Mwatebu + + + + + Warapu + + + + + Kwami + + + + + Santa Lucia Monteverde Mixtec + + + + + Gal + + + + + Molof + + + + + Mosina + + + + + Ujir + + + + + Putai + + + + + Gamo-Gofa-Dawro + + + + + South Ndebele + + + + + Tharaka + + + + + Te'un + + + + + Krenak + + + + + Kalou + + + + + Kraho + + + + + San Miguel El Grande Mixtec + + + + + Waama + + + + + Xaragure + + + + + Kayagar + + + + + Inabaknon + + + + + Mezquital Otomi + + + + + Shehri + + + + + Towei + + + + + Mvanip + + + + + Andegerebinha + + + + + Mangga Buang + + + + + Kulere + + + + + Wichita + + + + + Mapudungun + + + + + Pam + + + + + Lisu + + + + + Romano-Greek + + + + + Mozarabic + + + + + Palikur + + + + + Scots + + + + + Gugadj + + + + + Umpila + + + + + Uamue + + + + + Mangayat + + + + + Guatemalan Sign Language + + + + + Finnish + + + + + Naluo Yi + + + + + Lau + + + + + Yami + + + + + Burate + + + + + Judeo-Iraqi Arabic + + + + + Zauzou + + + + + Karagas + + + + + Ratagnon + + + + + Ipili + + + + + Burun + + + + + Lou + + + + + Western Frisian + + + + + Omati + + + + + Mzieme Naga + + + + + Karelian + + + + + Rarotongan + + + + + Okiek + + + + + Enwan (Edu State) + + + + + Kanembu + + + + + Kepo' + + + + + Vemgo-Mabas + + + + + Efe + + + + + South Efate + + + + + Fiwaga + + + + + Amto + + + + + Piemontese + + + + + Santa Cruz + + + + + Jiongnai Bunu + + + + + Jur Modo + + + + + Rajah Kabunsuwan Manobo + + + + + Arua + + + + + Angoram + + + + + Sudanese Arabic + + + + + Spiti Bhoti + + + + + Southern Tujia + + + + + Ternate + + + + + Kachama-Ganjule + + + + + Northwestern Fars + + + + + Sur + + + + + Kura Ede Nago + + + + + Biloxi + + + + + Cusco Quechua + + + + + Tonjon + + + + + Mayoyao Ifugao + + + + + Thai Song + + + + + N/u + + + + + Komo (Democratic Republic of Congo) + + + + + Daur + + + + + Mossi + + + + + Kathoriya Tharu + + + + + Luang + + + + + Moinba + + + + + Baga Koga + + + + + Guyani + + + + + Nyole + + + + + Northwest Gbaya + + + + + Eastern Muria + + + + + Mindiri + + + + + Ngile + + + + + Tambunan Dusun + + + + + Bakoko + + + + + Zumaya + + + + + Dhundari + + + + + Eastern Pokomchi + + + + + Dutton World Speedwords + + + + + Badimaya + + + + + Bundeli + + + + + Ambelau + + + + + Ngamambo + + + + + Cocama-Cocamilla + + + + + Kato + + + + + S'gaw Karen + + + + + Pa'o Karen + + + + + Yuracare + + + + + Nugunu (Australia) + + + + + Klias River Kadazan + + + + + Tswa + + + + + Pume + + + + + Laal + + + + + West Uvean + + + + + Oriya + + + + + Bari + + + + + Tora + + + + + Kwerba + + + + + Chaima + + + + + Lenkau + + + + + Maltese + + + + + Sulod + + + + + Mapidian + + + + + Purum Naga + + + + + Arma + + + + + Bantawa + + + + + South Giziga + + + + + Khun + + + + + Saluma + + + + + Bambara + + + + + Vamale + + + + + Lalana Chinantec + + + + + Kholok + + + + + Mudu Koraga + + + + + Dagba + + + + + Nukuoro + + + + + Baikeno + + + + + Pech + + + + + Gorowa + + + + + Kendeje + + + + + Marimanindji + + + + + Kravet + + + + + Kensiu + + + + + Ganza + + + + + Teke-Tyee + + + + + Yaka (Democratic Republic of Congo) + + + + + Tae' + + + + + South Nuaulu + + + + + Wik-Epa + + + + + Duhwa + + + + + Lule Sami + + + + + Philippine Sign Language + + + + + Seluwasan + + + + + Ngundi + + + + + Mangseng + + + + + Araona + + + + + Holma + + + + + Mongolia Buriat + + + + + Nyeu + + + + + Dano + + + + + Mwimbi-Muthambi + + + + + Buyuan Jinuo + + + + + Saotomense + + + + + Nuer + + + + + Beezen + + + + + Jordanian Sign Language + + + + + Miriwung + + + + + Northern Tlaxiaco Mixtec + + + + + Igbo + + + + + Aymara + + + + + Ogbronuagum + + + + + Male (Ethiopia) + + + + + Warluwara + + + + + Mintil + + + + + Tiene + + + + + Berakou + + + + + Havasupai-Walapai-Yavapai + + + + + Island Carib + + + + + Hya + + + + + Lendu + + + + + Southern Hindko + + + + + Yangben + + + + + Awing + + + + + Haida + + + + + Tataltepec Chatino + + + + + Bench + + + + + Manyika + + + + + Lafofa + + + + + Goaria + + + + + Taita + + + + + Ngala + + + + + Lotha Naga + + + + + Northwest Maidu + + + + + Upper Tanudan Kalinga + + + + + Songa + + + + + Khlor + + + + + Wiyot + + + + + Sajau Basap + + + + + Semendo + + + + + Dominican Sign Language + + + + + Paasaal + + + + + Tagbu + + + + + Migabac + + + + + Xinca + + + + + Lojban + + + + + Chong + + + + + Busami + + + + + Nde-Gbite + + + + + Atsahuaca + + + + + Kpatili + + + + + Watakataui + + + + + Tektiteko + + + + + Makonde + + + + + Martu Wangka + + + + + Cornish + + + + + Orya + + + + + Berti + + + + + Sikule + + + + + Amharic + + + + + Bhilali + + + + + Nganyaywana + + + + + Iquito + + + + + Tupari + + + + + Northern Khmer + + + + + Prasuni + + + + + Northern Betsimisaraka Malagasy + + + + + Western Neo-Aramaic + + + + + Kusaal + + + + + Ikwere + + + + + Pipil + + + + + Chonganjiang Hmong + + + + + Tehuelche + + + + + Ivatan + + + + + Chamorro + + + + + Tezoatlan Mixtec + + + + + Aekyom + + + + + Gbanziri + + + + + Ruga + + + + + Khehek + + + + + Fataluku + + + + + Pyu (Myanmar) + + + + + Berta + + + + + Tanjong + + + + + Foma + + + + + Torwali + + + + + Wampar + + + + + Kukatja + + + + + Sumbwa + + + + + Yangman + + + + + Lepontic + + + + + Arabic + + + + + Swati + + + + + Sonde + + + + + Shom Peng + + + + + Berik + + + + + Naro + + + + + Duruwa + + + + + Pacaraos Quechua + + + + + Rutul + + + + + Betawi + + + + + Tjurruru + + + + + Wapha + + + + + Puelche + + + + + Daasanach + + + + + Kiowa Apache + + + + + North Efate + + + + + Negeri Sembilan Malay + + + + + Avaric + + + + + Arho + + + + + Ngangam + + + + + Slovak + + + + + Khorezmian + + + + + Burusu + + + + + Thuri + + + + + Chinbon Chin + + + + + Coahuilteco + + + + + Ume Sami + + + + + Gunwinggu + + + + + Mbo (Cameroon) + + + + + Aushi + + + + + Khvarshi + + + + + Dendi (Central African Republic) + + + + + Pana (Burkina Faso) + + + + + Ningye + + + + + Kalabari + + + + + Drung + + + + + Camsa + + + + + Barro Negro Tunebo + + + + + Kinuku + + + + + Angal Enen + + + + + Tsou + + + + + Totontepec Mixe + + + + + Jaru + + + + + Kami (Tanzania) + + + + + Fwai + + + + + Gula'alaa + + + + + Old Chinese + + + + + Phalura + + + + + Tala + + + + + Tomadino + + + + + Cajatambo North Lima Quechua + + + + + Seru + + + + + Mao Naga + + + + + Maasina Fulfulde + + + + + Kven Finnish + + + + + Northern Frisian + + + + + Tanaina + + + + + Adyghe + + + + + Wandji + + + + + Yis + + + + + Arikem + + + + + Kalapuya + + + + + Pasemah + + + + + Dobel + + + + + Carian + + + + + Jamaican Creole English + + + + + Kamaru + + + + + Danau + + + + + Puyuma + + + + + Saint Lucian Creole French + + + + + Oblo + + + + + Kanikkaran + + + + + Iyojwa'ja Chorote + + + + + Salvadoran Sign Language + + + + + Naki + + + + + Dimli + + + + + Lelemi + + + + + Oscan + + + + + Suri + + + + + Gaddi + + + + + Badyara + + + + + Mampruli + + + + + Natchez + + + + + Talmudic Aramaic + + + + + Bokoto + + + + + Ngelima + + + + + Chinese Sign Language + + + + + Taveta + + + + + Bwile + + + + + Nomu + + + + + Mixtepec Zapotec + + + + + Cayubaba + + + + + Kalo Finnish Romani + + + + + Bun + + + + + Ida'an + + + + + Zari + + + + + Martha's Vineyard Sign Language + + + + + Hawai'i Pidgin Sign Language + + + + + Wan + + + + + Juwal + + + + + Mara + + + + + Konni + + + + + Shona + + + + + Tunjung + + + + + Kanyok + + + + + Reel + + + + + Semaq Beri + + + + + Nubi + + + + + Limbum + + + + + Oneida + + + + + Rembong + + + + + Lambya + + + + + Koy Sanjaq Surat + + + + + Yoy + + + + + Boga + + + + + Grenadian Creole English + + + + + Machame + + + + + Ibu + + + + + Keyagana + + + + + Tai Don + + + + + Khiamniungan Naga + + + + + Western Niger Fulfulde + + + + + Yanesha' + + + + + Bebe + + + + + Babalia Creole Arabic + + + + + Yintale Karen + + + + + Western Bukidnon Manobo + + + + + Kuan + + + + + Avatime + + + + + Molmo One + + + + + Konkani (individual language) + + + + + Kembra + + + + + Tonga (Tonga Islands) + + + + + Gupapuyngu + + + + + Ginyanga + + + + + Angosturas Tunebo + + + + + Suya + + + + + Tuxa + + + + + Arapaso + + + + + Naukan Yupik + + + + + Ju + + + + + Esan + + + + + Logol + + + + + Mpoto + + + + + Kumyk + + + + + Amahai + + + + + Italian Sign Language + + + + + Kawaiisu + + + + + Knaanic + + + + + Mandinka + + + + + Fembe + + + + + Guruntum-Mbaaru + + + + + Lumbu + + + + + Namiae + + + + + Rade + + + + + Narrinyeri + + + + + Kachchi + + + + + Rejang + + + + + Kudu-Camo + + + + + Konongo + + + + + Waropen + + + + + Rengao + + + + + Truka + + + + + Od + + + + + Uvbie + + + + + Sened + + + + + English + + + + + Samba Leko + + + + + Rawat + + + + + Paekche + + + + + Jadgali + + + + + Sabum + + + + + Ngwe + + + + + Kobol + + + + + Tetun Dili + + + + + Southeastern Huastec + + + + + Tutelo + + + + + Tuscarora + + + + + Diri + + + + + Abon + + + + + Diuxi-Tilantongo Mixtec + + + + + Malay (macrolanguage) + + + + + Bactrian + + + + + Naskapi + + + + + Bujhyal + + + + + Ake + + + + + Aguna + + + + + Punan Bah-Biau + + + + + Calamian Tagbanwa + + + + + Bhalay + + + + + Ambo-Pasco Quechua + + + + + Southeastern Dinka + + + + + Daba + + + + + Darkhat + + + + + Fungwa + + + + + Kube + + + + + Gurani + + + + + Mofu-Gudur + + + + + Rotokas + + + + + Emae + + + + + Dupaninan Agta + + + + + Girawa + + + + + Straits Salish + + + + + Kgalagadi + + + + + Central Yi + + + + + Baatonum + + + + + Isu (Fako Division) + + + + + Pasi + + + + + Hangaza + + + + + Ngwo + + + + + Eton (Cameroon) + + + + + Tamasheq + + + + + Adonara + + + + + Dirari + + + + + Betaf + + + + + Ayizo Gbe + + + + + Tampias Lobu + + + + + Koronadal Blaan + + + + + Seberuang + + + + + Shangzhai + + + + + Agusan Manobo + + + + + Kuruaya + + + + + Ottawa + + + + + Eastern Arrernte + + + + + Vincentian Creole English + + + + + Rejang Kayan + + + + + Eblan + + + + + Siwu + + + + + Makhuwa + + + + + Kagan Kalagan + + + + + Malavedan + + + + + Quebec Sign Language + + + + + Yemba + + + + + Kurmukar + + + + + Gane + + + + + Izora + + + + + Piro + + + + + Kirghiz + + + + + Northern Ghale + + + + + Koyukon + + + + + Bu-Nao Bunu + + + + + Yau (Morobe Province) + + + + + Waruna + + + + + Putukwam + + + + + Kurukh + + + + + Krui + + + + + Quinault + + + + + Banda-Bambari + + + + + Bakung Kenyah + + + + + Phai + + + + + Barok + + + + + Yoke + + + + + Ilianen Manobo + + + + + Urubu-Kaapor Sign Language + + + + + Oring + + + + + Bamun + + + + + Yamongeri + + + + + Vatrata + + + + + Ndombe + + + + + Asuri + + + + + Kpagua + + + + + North Central Mixe + + + + + Salampasu + + + + + Northern Kalapuya + + + + + Kisi + + + + + Tingal + + + + + Tachelhit + + + + + Gureng Gureng + + + + + Seget + + + + + Olo + + + + + Kabyle + + + + + Talise + + + + + San Andres Larrainzar Tzotzil + + + + + Serbo-Croatian + + + + + Yaul + + + + + Odoodee + + + + + Saruga + + + + + Beti (Cote d'Ivoire) + + + + + Luyana + + + + + Thaypan + + + + + Nigerian Sign Language + + + + + Phula + + + + + Shama-Sambuga + + + + + Vano + + + + + Kafa + + + + + Nusu + + + + + Tembo (Kitembo) + + + + + Hutterite German + + + + + Munkip + + + + + Waxianghua + + + + + Samosa + + + + + Obo Manobo + + + + + Koro (Vanuatu) + + + + + Adele + + + + + Abui + + + + + Leti (Indonesia) + + + + + Kisankasa + + + + + Dutch Sign Language + + + + + Pitta Pitta + + + + + Matigsalug Manobo + + + + + Anamgura + + + + + Njebi + + + + + Safaliba + + + + + Zire + + + + + Ikoma + + + + + Irish + + + + + Hmwaveke + + + + + Kanauji + + + + + Morerebi + + + + + Tswana + + + + + Sora + + + + + Tarpia + + + + + Chhattisgarhi + + + + + Korana + + + + + Ivbie North-Okpela-Arhe + + + + + Doko-Uyanga + + + + + Gowro + + + + + Bierebo + + + + + Plapo Krumen + + + + + Gyele + + + + + Sicanian + + + + + Ancient Greek (to 1453) + + + + + Okodia + + + + + Thangal Naga + + + + + Nooksack + + + + + Nyamwezi + + + + + Singpho + + + + + Uneme + + + + + Asu (Tanzania) + + + + + Domari + + + + + Badi Kanum + + + + + Kendem + + + + + Ndumu + + + + + Mitlatongo Mixtec + + + + + Sumau + + + + + Mape + + + + + Musar + + + + + Oraon Sadri + + + + + Yimchungru Naga + + + + + Dubu + + + + + Bogan + + + + + Hunnic + + + + + Bunama + + + + + Ese Ejja + + + + + Awar + + + + + Djingili + + + + + Ho-Chunk + + + + + Pyu + + + + + Bilma Kanuri + + + + + Vono + + + + + Komyandaret + + + + + Yarawata + + + + + Nimi + + + + + Wuliwuli + + + + + Ir + + + + + Suoy + + + + + Sandawe + + + + + Segai + + + + + Imeraguen + + + + + Ibino + + + + + Yemsa + + + + + Colonia Tovar German + + + + + Malagasy + + + + + Traveller Scottish + + + + + Tonkawa + + + + + Bolango + + + + + Eastern Gurung + + + + + Paraujano + + + + + Sunwar + + + + + Western Penan + + + + + Tangut + + + + + Moabite + + + + + Eastern Quiche + + + + + Lese + + + + + Buriat + + + + + Duriankere + + + + + Central Bontoc + + + + + Kwa + + + + + Engenni + + + + + Creek + + + + + Central Palawano + + + + + Peruvian Sign Language + + + + + Nyambo + + + + + Erokwanas + + + + + Bazigar + + + + + Fasu + + + + + Konkani (macrolanguage) + + + + + Eastern Meohang + + + + + Santa Ana de Tusi Pasco Quechua + + + + + Southern Pashto + + + + + Kalami + + + + + Kabuverdianu + + + + + Central Maewo + + + + + Karon Dori + + + + + Pakistan Sign Language + + + + + Cagua + + + + + Oti + + + + + Gbari + + + + + Forak + + + + + Sowa + + + + + Tangale + + + + + Purik + + + + + Western Tamang + + + + + Bolon + + + + + Shubi + + + + + Cotoname + + + + + Aduge + + + + + Nkari + + + + + Tacana + + + + + Hukumina + + + + + Maram Naga + + + + + Parecis + + + + + Sherdukpen + + + + + Teke-Laali + + + + + Ndunga + + + + + Zeme Naga + + + + + Tandroy-Mahafaly Malagasy + + + + + Laba + + + + + Lugbara + + + + + Bo-Rukul + + + + + Bualkhaw Chin + + + + + Gongduk + + + + + Casuarina Coast Asmat + + + + + Nalik + + + + + Southern Conchucos Ancash Quechua + + + + + Tenango Otomi + + + + + Lingala + + + + + Elamite + + + + + Xicotepec De Juarez Totonac + + + + + Munji + + + + + Wanambre + + + + + Hemba + + + + + Karey + + + + + Kara (Central African Republic) + + + + + Matukar + + + + + Kanowit + + + + + Lodhi + + + + + Niuatoputapu + + + + + Sinicahua Mixtec + + + + + Panchpargania + + + + + Yukpa + + + + + Northern Pomo + + + + + Chang Naga + + + + + Polci + + + + + Rapting + + + + + Bhunjia + + + + + South Picene + + + + + Anglo-Norman + + + + + Niellim + + + + + Suundi + + + + + Bulgarian Sign Language + + + + + Tupi + + + + + Tsikimba + + + + + Akoose + + + + + Timugon Murut + + + + + Nisi + + + + + Nyeng + + + + + Western Bolivian Guarani + + + + + Western Kenyah + + + + + Selangor Sign Language + + + + + Sorkhei + + + + + Northern Kurdish + + + + + Nggem + + + + + Andoa + + + + + Khazar + + + + + Ak + + + + + Southern Uzbek + + + + + Delaware + + + + + West Central Quiche + + + + + Usui + + + + + Stod Bhoti + + + + + Ixtenco Otomi + + + + + Malfaxal + + + + + Beembe + + + + + Unami + + + + + Volapuk + + + + + Tiale + + + + + O'du + + + + + Bugun + + + + + Duke + + + + + Twi + + + + + Nubaca + + + + + Mbandja + + + + + Kurrama + + + + + Abun + + + + + Breton + + + + + Southern Mam + + + + + Ambo + + + + + Woi + + + + + Sanuma + + + + + Mayaguduna + + + + + Zoroastrian Dari + + + + + Simeku + + + + + Edera Awyu + + + + + Ata Manobo + + + + + Jennu Kurumba + + + + + Old Welsh + + + + + Bolgarian + + + + + Bete-Bendi + + + + + Laiyolo + + + + + Bonkiman + + + + + Eastern Krahn + + + + + Haiphong Sign Language + + + + + Galoli + + + + + Kuku-Uwanh + + + + + Embu + + + + + Sangtam Naga + + + + + Urim + + + + + Aragonese + + + + + Inuktitut + + + + + Loma (Cote d'Ivoire) + + + + + Runga + + + + + Puma + + + + + Ukpe-Bayobiri + + + + + Wanggom + + + + + Wiru + + + + + Ullatan + + + + + Kulung (Nigeria) + + + + + Chiripa + + + + + Komi + + + + + Karachay-Balkar + + + + + Basap + + + + + Pampanga + + + + + Lower Tanudan Kalinga + + + + + Tabo + + + + + Mazanderani + + + + + Ramopa + + + + + Mbule + + + + + Tututepec Mixtec + + + + + Au + + + + + Thurawal + + + + + Sasak + + + + + Giangan + + + + + Luba-Lulua + + + + + Gidar + + + + + Koluwawa + + + + + Bondoukou Kulango + + + + + Mullu Kurumba + + + + + Ghadames + + + + + Bunak + + + + + Algerian Sign Language + + + + + Korean Sign Language + + + + + Xwela Gbe + + + + + Pawnee + + + + + Ndonga + + + + + Lalia + + + + + Upper Saxon + + + + + Pimbwe + + + + + Duau + + + + + Mawa (Chad) + + + + + Suki + + + + + Batanga + + + + + Fayu + + + + + Chachapoyas Quechua + + + + + Halang Doan + + + + + Gbaya-Bozoum + + + + + Garifuna + + + + + Waru + + + + + Lehar + + + + + Vehes + + + + + Kaikadi + + + + + Soo + + + + + Northwestern Dinka + + + + + Asas + + + + + Western Ojibwa + + + + + Yambes + + + + + Yaka (Central African Republic) + + + + + Hote + + + + + Punan Tubu + + + + + Usarufa + + + + + West-Central Limba + + + + + Malakote + + + + + Central Bai + + + + + Ashaninka + + + + + Wabo + + + + + Dogoso + + + + + Sardinian + + + + + Antigua and Barbuda Creole English + + + + + Ternateno + + + + + Taman (Myanmar) + + + + + Emumu + + + + + Buhid + + + + + Sidamo + + + + + Kistane + + + + + Libinza + + + + + Ci Gbe + + + + + North Muyu + + + + + Maleu-Kilenge + + + + + Nakai + + + + + Sake + + + + + Lotud + + + + + Ossetian + + + + + Laha (Viet Nam) + + + + + Levuka + + + + + Keapara + + + + + Bengali + + + + + Boko (Benin) + + + + + Northern Subanen + + + + + Yasa + + + + + Classical Armenian + + + + + Inlaod Itneg + + + + + Mt. Iriga Agta + + + + + Wichi Lhamtes Vejoz + + + + + Wa + + + + + Traveller Norwegian + + + + + Wares + + + + + Bolongan + + + + + Margu + + + + + Wongo + + + + + Idakho-Isukha-Tiriki + + + + + Ngeq + + + + + Tupuri + + + + + Chinese Pidgin English + + + + + Kwegu + + + + + Koitabu + + + + + Kansa + + + + + Kinalakna + + + + + We Southern + + + + + Belanda Viri + + + + + Faire Atta + + + + + Cahuilla + + + + + Kunggara + + + + + Kahe + + + + + Lusitanian + + + + + Morori + + + + + Wagaya + + + + + Korandje + + + + + Chitimacha + + + + + Lega-Mwenga + + + + + Elpaputih + + + + + Manda (Australia) + + + + + Mundani + + + + + Takia + + + + + Jola-Kasa + + + + + Kanasi + + + + + Gudanji + + + + + Oki-No-Erabu + + + + + Wichi Lhamtes Guisnay + + + + + Isirawa + + + + + North Babar + + + + + Vlaams + + + + + Datooga + + + + + Koromfe + + + + + Bamwe + + + + + Mun Chin + + + + + Apma + + + + + Maltese Sign Language + + + + + War + + + + + Assiniboine + + + + + Nataoran Amis + + + + + Day + + + + + Shua + + + + + Lemnian + + + + + Embera-Baudo + + + + + Taupota + + + + + Ter Sami + + + + + Ewe + + + + + No linguistic content + + + + + Chilisso + + + + + Swedish + + + + + Gumatj + + + + + Wik-Me'anha + + + + + Nimboran + + + + + San Martin Itunyoso Triqui + + + + + Bomboli + + + + + Ratahan + + + + + Sinagen + + + + + Pal + + + + + Hdi + + + + + Lusengo + + + + + San Francisco Del Mar Huave + + + + + Jiru + + + + + Eastern Cham + + + + + Maya Samo + + + + + Mbuko + + + + + Maleng + + + + + Miship + + + + + Kota (India) + + + + + Nemi + + + + + Dogose + + + + + Abua + + + + + Iwal + + + + + Sicilian + + + + + Tawr Chin + + + + + Pemono + + + + + Mawa (Nigeria) + + + + + Ulukwumi + + + + + Kolbila + + + + + Western Mari + + + + + Bikol + + + + + Abinomn + + + + + Seimat + + + + + Kunda + + + + + Tera + + + + + Mongolian Sign Language + + + + + Nambya + + + + + Northern Bobo Madare + + + + + Sumerian + + + + + Dehwari + + + + + Chepang + + + + + Tomyang + + + + + Maiwa (Papua New Guinea) + + + + + Tubar + + + + + Gahri + + + + + Nyaneka + + + + + Mamboru + + + + + Malecite-Passamaquoddy + + + + + Nafaanra + + + + + West Makian + + + + + Dimir + + + + + Keiga + + + + + Tikar + + + + + Lower Chehalis + + + + + Inari Sami + + + + + Kupsabiny + + + + + Tetela + + + + + Mussau-Emira + + + + + Dzalakha + + + + + Pijin + + + + + Bwaidoka + + + + + Yau (Sandaun Province) + + + + + Baruga + + + + + Lanas Lobu + + + + + Brooke's Point Palawano + + + + + Cocopa + + + + + Kongo + + + + + Banao Itneg + + + + + Gurmana + + + + + Tilquiapan Zapotec + + + + + Pahi + + + + + Cerma + + + + + Ribun + + + + + Tenharim + + + + + Afro-Seminole Creole + + + + + Syriac + + + + + Borna + + + + + Andra-Hus + + + + + Wintu + + + + + Karok + + + + + Toro + + + + + Asue Awyu + + + + + Yabaana + + + + + Ankave + + + + + Arifama-Miniafia + + + + + Lolo + + + + + Iaai + + + + + Ik + + + + + Itik + + + + + Uokha + + + + + Maring Naga + + + + + Coastal Saluan + + + + + Tsakonian + + + + + Ngalkbun + + + + + Orma + + + + + Kembayan + + + + + Fang (Cameroon) + + + + + Mesmes + + + + + Mafea + + + + + Kayan Mahakam + + + + + Labir + + + + + North Asmat + + + + + Jina + + + + + Lame + + + + + Cavinena + + + + + Western Meohang + + + + + Basque + + + + + Harsusi + + + + + Kedang + + + + + Koyra Chiini Songhay + + + + + Akan + + + + + Wushi + + + + + Hadrami Arabic + + + + + Alege + + + + + Bateri + + + + + T'en + + + + + Upper Ta'oih + + + + + Michoacan Mazahua + + + + + Muniche + + + + + Jaunsari + + + + + Senthang Chin + + + + + Maranao + + + + + Nawuri + + + + + Bukusu + + + + + Ziriya + + + + + Mailu + + + + + Teso + + + + + Amaimon + + + + + Bhojpuri + + + + + Saleman + + + + + Telefol + + + + + Hpon + + + + + Langi + + + + + Northern Puebla Nahuatl + + + + + Palembang + + + + + Southern Puebla Mixtec + + + + + Magdalena Penasco Mixtec + + + + + Malinaltepec Tlapanec + + + + + Sabaot + + + + + Mutu + + + + + Waboda + + + + + Manggarai + + + + + Gilima + + + + + Southern Ngbandi + + + + + Lwalu + + + + + Logudorese Sardinian + + + + + Negerhollands + + + + + Mundari + + + + + Haryanvi + + + + + Nedebang + + + + + Masadiit Itneg + + + + + Nend + + + + + Walla Walla + + + + + Gazi + + + + + Menominee + + + + + Gobasi + + + + + Nehan + + + + + Dubli + + + + + Temascaltepec Nahuatl + + + + + Lachiguiri Zapotec + + + + + Siar-Lak + + + + + Dobu + + + + + Monimbo + + + + + Ramoaaina + + + + + Rahambuu + + + + + Efai + + + + + Kanakanabu + + + + + Kaidipang + + + + + Mundat + + + + + Murrinh-Patha + + + + + Nek + + + + + Tonsea + + + + + Northern Kankanay + + + + + White Lachi + + + + + Matagalpa + + + + + Norn + + + + + Biseni + + + + + Bu + + + + + Kele (Papua New Guinea) + + + + + El Alto Zapotec + + + + + Mak (China) + + + + + Kariya + + + + + Kwangali + + + + + Ngumba + + + + + Bwanabwana + + + + + Mongo + + + + + Ts'un-Lao + + + + + Kemi Sami + + + + + Ndom + + + + + Southern Altai + + + + + Pichis Asheninka + + + + + Adynyamathanha + + + + + Manipuri + + + + + Cashibo-Cacataibo + + + + + Nyangga + + + + + Dhanwar (India) + + + + + Manado Malay + + + + + Kela (Papua New Guinea) + + + + + Blablanga + + + + + Banaro + + + + + Baram Kayan + + + + + Mba + + + + + Mendankwe-Nkwen + + + + + Ma'di + + + + + Cheke Holo + + + + + Wambaya + + + + + Purari + + + + + Kolsch + + + + + Longto + + + + + Itu Mbon Uzo + + + + + Mambwe-Lungu + + + + + Scythian + + + + + Mamuju + + + + + Nyamusa-Molo + + + + + Ipalapa Amuzgo + + + + + Sama + + + + + Laa Laa Bwamu + + + + + Dambi + + + + + Kaurna + + + + + Kacipo-Balesi + + + + + Eton (Vanuatu) + + + + + Tswapong + + + + + Busuu + + + + + Hungana + + + + + Dalmatian + + + + + Forest Maninka + + + + + Anuki + + + + + Karahawyana + + + + + Mina (Cameroon) + + + + + Kimre + + + + + Itundujia Mixtec + + + + + Lakkia + + + + + Shi + + + + + She + + + + + Waamwang + + + + + Lamboya + + + + + Kuot + + + + + Kula + + + + + Palaic + + + + + Arawete + + + + + Turkish + + + + + Kalamse + + + + + Old French (842-ca. 1400) + + + + + Cunen Quiche + + + + + Bambam + + + + + Raetic + + + + + Wayu + + + + + Wampanoag + + + + + Cacua + + + + + Bangandu + + + + + Karaim + + + + + Usila Chinantec + + + + + Kubu + + + + + So (Cameroon) + + + + + Chimakum + + + + + Momare + + + + + Nukna + + + + + Con + + + + + Manangba + + + + + Yarsun + + + + + Mesme + + + + + Palpa + + + + + Ditammari + + + + + Tiwi + + + + + Maring + + + + + Lukpa + + + + + Apasco-Apoala Mixtec + + + + + Doso + + + + + Baka (Cameroon) + + + + + Manikion + + + + + Rawo + + + + + Mayogo + + + + + Mbole + + + + + Kplang + + + + + Puyo-Paekche + + + + + Obokuitai + + + + + Austrian Sign Language + + + + + Quioquitani-Quieri Zapotec + + + + + Kairiru + + + + + Tiema Ciewe Bozo + + + + + Umbu-Ungu + + + + + Heiltsuk + + + + + Kahua + + + + + Domung + + + + + Caddo + + + + + Cinda-Regi-Tiyal + + + + + Kwanga + + + + + Pakanha + + + + + Talinga-Bwisi + + + + + Dimasa + + + + + Afade + + + + + Mamvu + + + + + Moi (Indonesia) + + + + + Gbaya (Sudan) + + + + + Tohono O'odham + + + + + Evenki + + + + + Tlazoyaltepec Mixtec + + + + + Aghwan + + + + + Bolinao + + + + + Araki + + + + + Yos + + + + + Nkangala + + + + + Boghom + + + + + Kuria + + + + + Tonga (Thailand) + + + + + Guana (Paraguay) + + + + + Tlingit + + + + + Koonzime + + + + + Marind + + + + + Dan + + + + + Chaungtha + + + + + Doromu + + + + + Sarawak Bisaya + + + + + Xipinawa + + + + + Darling + + + + + Kaska + + + + + Awngi + + + + + Tubarao + + + + + Aleut + + + + + Seko Padang + + + + + Kadar + + + + + Weri + + + + + East Futuna + + + + + Bribri + + + + + Tsum + + + + + Minanibai + + + + + Rajbanshi + + + + + Katukina + + + + + Segeju + + + + + Mapia + + + + + Bughotu + + + + + Aputai + + + + + Central Mam + + + + + Tucano + + + + + Batak Alas-Kluet + + + + + Yandruwandha + + + + + Adioukrou + + + + + Hindi + + + + + Pinigura + + + + + Kusaghe + + + + + Western Kayah + + + + + Central Ojibwa + + + + + Lopi + + + + + Chichicapan Zapotec + + + + + Slovenian + + + + + Guriaso + + + + + Macedonian + + + + + Pambia + + + + + Rampi + + + + + Sinyar + + + + + Bwela + + + + + Kapriman + + + + + Chachi + + + + + Mag-Indi Ayta + + + + + Stoney + + + + + Agatu + + + + + Ukpet-Ehom + + + + + Aquitanian + + + + + Hungarian Sign Language + + + + + Khowar + + + + + Coquille + + + + + Ngkalmpw Kanum + + + + + Mabaale + + + + + Tai + + + + + Galibi Carib + + + + + Jungle Inga + + + + + Boro + + + + + Duwet + + + + + Dieri + + + + + Ganda + + + + + San Martin Quechua + + + + + Pini + + + + + Yele + + + + + Khinalugh + + + + + Duri + + + + + Mandahuaca + + + + + Tepinapa Chinantec + + + + + Opuuo + + + + + Biafada + + + + + Ai-Cham + + + + + Limos Kalinga + + + + + Afrikaans + + + + + Southwestern Tlaxiaco Mixtec + + + + + Makhuwa-Shirima + + + + + Waima'a + + + + + Ngurimi + + + + + Ambulas + + + + + Port Vato + + + + + Nambo + + + + + Daw + + + + + Myene + + + + + Sakalava Malagasy + + + + + Nadeb + + + + + Upper Umpqua + + + + + Berau Malay + + + + + Ngundu + + + + + Cacgia Roglai + + + + + Central Kurdish + + + + + Ibuoro + + + + + Ngbinda + + + + + Judeo-Arabic + + + + + Ede Cabe + + + + + Dohoi + + + + + Saraveca + + + + + Kutto + + + + + Kioko + + + + + Santa Ines Yatzechi Zapotec + + + + + Ta'izzi-Adeni Arabic + + + + + Nayini + + + + + Sokoro + + + + + Hozo + + + + + Cwi Bwamu + + + + + Ukit + + + + + Koireng + + + + + Oorlams + + + + + Ava-Canoeiro + + + + + Numbami + + + + + Ghayavi + + + + + Ayiwo + + + + + Okobo + + + + + Balangingi + + + + + Yela + + + + + Riang (Myanmar) + + + + + Tregami + + + + + Imbongu + + + + + Mongol + + + + + Wamas + + + + + Takpa + + + + + Israeli Sign Language + + + + + Tegali + + + + + Miya + + + + + Biak + + + + + Peripheral Mongolian + + + + + Kenswei Nsei + + + + + Pardhan + + + + + Papora + + + + + Mesqan + + + + + Miyako + + + + + Sissano + + + + + Monom + + + + + Panjabi + + + + + Gana + + + + + El Hugeirat + + + + + Macaguan + + + + + Binahari + + + + + Iresim + + + + + Dirasha + + + + + Puoc + + + + + Yuanjiang-Mojiang Yi + + + + + Kakwa + + + + + Susquehannock + + + + + Chiru + + + + + Laeko-Libuat + + + + + Bantoanon + + + + + Mandarin Chinese + + + + + Anuta + + + + + Hieroglyphic Luwian + + + + + Congo Swahili + + + + + Mlap + + + + + I-Wak + + + + + Yabong + + + + + Costa Rican Sign Language + + + + + Pero + + + + + Taliabu + + + + + Bokyi + + + + + Ngiti + + + + + Tempasuk Dusun + + + + + Baniwa + + + + + Timne + + + + + Ju/'hoan + + + + + Djangun + + + + + Luguru + + + + + Southwest Palawano + + + + + Bieria + + + + + Bakhtiari + + + + + Zinacantan Tzotzil + + + + + Bullom So + + + + + Koro (Papua New Guinea) + + + + + Uruangnirin + + + + + Vandalic + + + + + Northern Conchucos Ancash Quechua + + + + + Nama (Namibia) + + + + + Sa'a + + + + + Bashkir + + + + + Loja Highland Quichua + + + + + South Central Cakchiquel + + + + + Nde-Nsele-Nta + + + + + Tamanaku + + + + + Ingush + + + + + Dhalandji + + + + + Paiwan + + + + + Konyanka Maninka + + + + + Kimbundu + + + + + Konda + + + + + Islander Creole English + + + + + Khumi Awa Chin + + + + + Nisga'a + + + + + Biao + + + + + Akoye + + + + + Birao + + + + + Gata' + + + + + Sihan + + + + + Bongili + + + + + Kirikiri + + + + + Bebele + + + + + Ainu (China) + + + + + Lopit + + + + + Cabiyari + + + + + Djinang + + + + + Pfaelzisch + + + + + Sera + + + + + Bafut + + + + + Yaminahua + + + + + Khandesi + + + + + Idere + + + + + Northern Amami-Oshima + + + + + Aiku + + + + + Seta + + + + + Acheron + + + + + Jarai + + + + + Iranun + + + + + Achterhoeks + + + + + Anaang + + + + + Kire + + + + + Apatani + + + + + Maridan + + + + + Wapishana + + + + + Sok + + + + + Kuturmi + + + + + Pwo Eastern Karen + + + + + Maay + + + + + Galician + + + + + Ari + + + + + Pali + + + + + Otank + + + + + Rasawa + + + + + Moere + + + + + Penesak + + + + + Vinza + + + + + Judeo-Berber + + + + + Vishavan + + + + + Chenchu + + + + + Tampuan + + + + + Bataan Ayta + + + + + Doga + + + + + Noric + + + + + Barakai + + + + + Barbacoas + + + + + Maco + + + + + Toraja-Sa'dan + + + + + Dawera-Daweloor + + + + + Jola-Fonyi + + + + + Southern Luri + + + + + Arop-Lukep + + + + + Kimki + + + + + Worora + + + + + Lezghian + + + + + Eastern Penan + + + + + Winye + + + + + Medebur + + + + + Tombonuwo + + + + + Ghanongga + + + + + Lonwolwol + + + + + Goemai + + + + + Izon + + + + + Yeni + + + + + Dirim + + + + + Teutila Cuicatec + + + + + Waioli + + + + + Ap Ma + + + + + Moikodi + + + + + Ikobi-Mena + + + + + Gaa + + + + + Kikai + + + + + Wahau Kayan + + + + + Isnag + + + + + Masmaje + + + + + Kickapoo + + + + + Tabaru + + + + + Mandobo Atas + + + + + Aura + + + + + Corsican + + + + + Hertevin + + + + + Doyayo + + + + + Hamtai + + + + + Michif + + + + + Hadrami + + + + + Leti (Cameroon) + + + + + Bijori + + + + + Sidetic + + + + + Nangikurrunggurr + + + + + So + + + + + Gbesi Gbe + + + + + Andi + + + + + Loncong + + + + + Macanese + + + + + Baki + + + + + Toram + + + + + Tumzabt + + + + + Kamwe + + + + + Mullukmulluk + + + + + Logba + + + + + Carapana + + + + + Kepkiriwat + + + + + Zaparo + + + + + Mator + + + + + Matya Samo + + + + + Hulaula + + + + + Kesawai + + + + + Saponi + + + + + Punan Aput + + + + + Manigri-Kambole Ede Nago + + + + + Venda + + + + + Korowai + + + + + Patani + + + + + Fas + + + + + Northern Dagara + + + + + Mom Jango + + + + + Jarawa (Nigeria) + + + + + Iamalele + + + + + Ayoreo + + + + + Kagayanen + + + + + Nyong + + + + + Yue Chinese + + + + + Baga Kaloum + + + + + Ninia Yali + + + + + Oku + + + + + Serbian + + + + + Kuk + + + + + Ayacucho Quechua + + + + + Numee + + + + + Tanjijili + + + + + Eastern Keres + + + + + Yukuben + + + + + Limi Yi + + + + + Luba-Katanga + + + + + Danaru + + + + + Kyenga + + + + + Thayore + + + + + Southern Pokomam + + + + + Ido + + + + + Wuzlam + + + + + Japreria + + + + + Morawa + + + + + Fyam + + + + + Seti + + + + + Ruli + + + + + Coastal Kadazan + + + + + Tagakaulu Kalagan + + + + + Gafat + + + + + Ibilo + + + + + Sumbawa + + + + + Tidore + + + + + Jimi (Cameroon) + + + + + Manusela + + + + + Sawila + + + + + Southern Ma'di + + + + + Mekwei + + + + + Dulbu + + + + + Hwana + + + + + Pangseng + + + + + Parauk + + + + + Serui-Laut + + + + + Kambaira + + + + + Mboko + + + + + Ndali + + + + + Koi + + + + + Kaonde + + + + + Dar Fur Daju + + + + + Piru + + + + + Gua + + + + + Dera (Indonesia) + + + + + Are + + + + + Wauyai + + + + + Koya + + + + + Bilin + + + + + Media Lengua + + + + + Tawala + + + + + Armenian Sign Language + + + + + Sasaru + + + + + Lower Tanana + + + + + Teen + + + + + Tabla + + + + + Yaqay + + + + + Ngas + + + + + Rawa + + + + + Eastern Kanjobal + + + + + South Wemale + + + + + Shambala + + + + + Lauje + + + + + Humburi Senni Songhay + + + + + North Awyu + + + + + Mili Yi + + + + + Tiagbamrin Aizi + + + + + Swabian + + + + + Vidunda + + + + + Izere + + + + + Cara + + + + + Tiefo + + + + + Jambi Malay + + + + + Biri + + + + + Moba + + + + + Aka-Jeru + + + + + Lingua Franca + + + + + Turkish Sign Language + + + + + Tacahua Mixtec + + + + + Tutoh Kenyah + + + + + Hijuk + + + + + Washo + + + + + Aukan + + + + + Dzodinka + + + + + Madurese + + + + + Opao + + + + + Loko + + + + + Sudovian + + + + + Tupinamba + + + + + U + + + + + The + + + + + Mon + + + + + Murik Kayan + + + + + Ndau + + + + + Interglossa + + + + + Somrai + + + + + Lubu + + + + + Chakma + + + + + Ekpeye + + + + + Kanuri + + + + + Nachering + + + + + Phangduwali + + + + + Marenje + + + + + Eastern Xiangxi Hmong + + + + + Zizilivakan + + + + + Kanjari + + + + + Majhwar + + + + + Tuamotuan + + + + + Sialum + + + + + Kajali + + + + + Gimi (Eastern Highlands) + + + + + Obolo + + + + + Wannu + + + + + Bashkardi + + + + + Muratayak + + + + + Barapasi + + + + + Francisco Leon Zoque + + + + + Besme + + + + + Larike-Wakasihu + + + + + Igana + + + + + Rajong + + + + + Ayi (Papua New Guinea) + + + + + Dendi (Benin) + + + + + Oya'oya + + + + + Ambakich + + + + + Manem + + + + + Bagusa + + + + + Byangsi + + + + + Sheni + + + + + Icelandic + + + + + Parya + + + + + Duguza + + + + + Sierra Leone Sign Language + + + + + Piamatsina + + + + + Akawaio + + + + + Halh Mongolian + + + + + Wara + + + + + Ngungwel + + + + + Podena + + + + + Anem + + + + + Razajerdi + + + + + Lokoya + + + + + Beaver + + + + + Northern Grebo + + + + + Satere-Mawe + + + + + Wasco-Wishram + + + + + Sio + + + + + Duwai + + + + + Eastern Parbate + + + + + Sangil + + + + + Azerbaijani + + + + + Woccon + + + + + Songoora + + + + + Sudest + + + + + Bafanji + + + + + Tagabawa + + + + + Songo + + + + + Puyo + + + + + Drents + + + + + Cung + + + + + Munit + + + + + A-Pucikwar + + + + + Western Xwla Gbe + + + + + Cameroon Pidgin + + + + + Warduji + + + + + Ticuna + + + + + Brem + + + + + Damal + + + + + Tayo + + + + + Barombi + + + + + Maklew + + + + + Unua + + + + + Chadian Arabic + + + + + Cimbrian + + + + + Eastern Apurimac Quechua + + + + + Ingrian + + + + + Harari + + + + + Lemoro + + + + + Yameo + + + + + Totoli + + + + + Bian Marind + + + + + Bushoong + + + + + Dayi + + + + + Dera (Nigeria) + + + + + Samarokena + + + + + Kupa + + + + + Harijan Kinnauri + + + + + Kumarbhag Paharia + + + + + Majang + + + + + Mende (Papua New Guinea) + + + + + Mahali + + + + + Bassa-Kontagora + + + + + Sabanes + + + + + Yokuts + + + + + Wogamusin + + + + + Marovo + + + + + Lonzo + + + + + Milyan + + + + + Lusi + + + + + Bhoti Kinnauri + + + + + Western Kanjobal + + + + + Cowlitz + + + + + Konkomba + + + + + Pamplona Atta + + + + + Kohistani Shina + + + + + Shekkacho + + + + + Sanaani Arabic + + + + + Chuka + + + + + Mirgan + + + + + Teshenawa + + + + + Malol + + + + + Unde Kaili + + + + + Veddah + + + + + Ranau + + + + + Breri + + + + + Makassar Malay + + + + + East Yugur + + + + + Lunda + + + + + Bulo Stieng + + + + + Namia + + + + + Moo + + + + + Lakota + + + + + Lamkang + + + + + Arta + + + + + Vanimo + + + + + Ancient North Arabian + + + + + Sori-Harengan + + + + + Chiga + + + + + Providencia Sign Language + + + + + Korku + + + + + Jowulu + + + + + Walloon + + + + + Hmong Daw + + + + + Paez + + + + + Menya + + + + + Urdu + + + + + Ngabere + + + + + Tsakhur + + + + + Ibatan + + + + + Moloko + + + + + Laurentian + + + + + Basay + + + + + Remontado Agta + + + + + Puari + + + + + Wane + + + + + Upper Guinea Crioulo + + + + + Kuuku-Ya'u + + + + + Eastern Qiandong Hmong + + + + + Juang + + + + + Southern Gondi + + + + + Ofaye + + + + + Alur + + + + + Tahltan + + + + + Bellari + + + + + Djongkang + + + + + Lilau + + + + + Natanzi + + + + + Selungai Murut + + + + + Gurdjar + + + + + Basa (Nigeria) + + + + + Jwira-Pepesa + + + + + Taworta + + + + + Gowlan + + + + + Tumari Kanuri + + + + + Shahmirzadi + + + + + Roon + + + + + Rana Tharu + + + + + Hula + + + + + Bintauna + + + + + Luhu + + + + + Central Quiche + + + + + Mada (Nigeria) + + + + + Donno So Dogon + + + + + Bouyei + + + + + Bomitaba + + + + + Shoo-Minda-Nye + + + + + Negidal + + + + + Balo + + + + + Agwagwune + + + + + Arvanitika Albanian + + + + + Uruava + + + + + Piu + + + + + Kwa' + + + + + Amerax + + + + + Arabela + + + + + Awyi + + + + + Ngoni + + + + + Inoke-Yate + + + + + Andoque + + + + + Central Pokomam + + + + + Hunde + + + + + Lega-Shabunda + + + + + Lika + + + + + Malayic Dayak + + + + + Ija-Zuba + + + + + Montol + + + + + Highland Puebla Nahuatl + + + + + Zazao + + + + + Muthuvan + + + + + Pnar + + + + + Mehinaku + + + + + Matbat + + + + + Amdang + + + + + Yareni Zapotec + + + + + Gibanawa + + + + + Tu + + + + + Shiki + + + + + Samburu + + + + + Ngarinyin + + + + + Mobilian + + + + + Mabaan + + + + + Tornedalen Finnish + + + + + Kompane + + + + + Poluo Yi + + + + + Andaqui + + + + + Mimi + + + + + Tangkhul Naga + + + + + Kenuzi-Dongola + + + + + Itene + + + + + Kryts + + + + + Gozarkhani + + + + + Maridjabin + + + + + Gugu Warra + + + + + Kasanga + + + + + Kolum So Dogon + + + + + As + + + + + Hamba + + + + + Pass Valley Yali + + + + + Sirmauri + + + + + Mengaka + + + + + Dyaabugay + + + + + Calo + + + + + Lubila + + + + + Pauserna + + + + + Nyoro + + + + + Caramanta + + + + + Lango (Sudan) + + + + + Mbugwe + + + + + Karankawa + + + + + Batad Ifugao + + + + + Bella Coola + + + + + Ekit + + + + + Rerau + + + + + Southern Guiyang Hmong + + + + + Nimadi + + + + + Oirata + + + + + Balkan Romani + + + + + Judeo-Persian + + + + + Fulah + + + + + Zeeuws + + + + + Rerep + + + + + Pontic + + + + + San Pedro Quiatoni Zapotec + + + + + Yansi + + + + + Haruku + + + + + Kuvi + + + + + Yagomi + + + + + Wolani + + + + + Western Maninkakan + + + + + Ghari + + + + + Pu-Xian Chinese + + + + + Jukun Takum + + + + + Yawa + + + + + Birwa + + + + + Bote-Majhi + + + + + Lillooet + + + + + Phunoi + + + + + Catalan + + + + + Weyto + + + + + Semelai + + + + + Ile Ape + + + + + Bay Miwok + + + + + Telugu + + + + + Western Panjabi + + + + + Zhaba + + + + + Upper Kuskokwim + + + + + Siraya + + + + + Aari + + + + + Ottoman Turkish (1500-1928) + + + + + Masimasi + + + + + Orejon + + + + + Ewage-Notu + + + + + Ngete + + + + + Ozolotepec Zapotec + + + + + Kok Borok + + + + + Lemio + + + + + Mangala + + + + + Bimoba + + + + + Cuvok + + + + + Pei + + + + + Galatian + + + + + Ngaanyatjarra + + + + + South Central Banda + + + + + Nabak + + + + + Mo'da + + + + + Kaba Deme + + + + + Tepo Krumen + + + + + Lawangan + + + + + Ibani + + + + + Mulaha + + + + + Pardhi + + + + + Sochiapan Chinantec + + + + + Bari + + + + + Santiago Xanica Zapotec + + + + + Hanoi Sign Language + + + + + Old Burmese + + + + + Musom + + + + + Maxakali + + + + + Bikaru + + + + + Gimme + + + + + Gavar + + + + + Majhi + + + + + Bimin + + + + + Teanu + + + + + Zulu + + + + + Kaba Na + + + + + Rusyn + + + + + Kyak + + + + + Tulehu + + + + + Bangeri Me Dogon + + + + + Lelak + + + + + Tijaltepec Mixtec + + + + + East Nyala + + + + + Nzanyi + + + + + Karkar-Yuri + + + + + Talaud + + + + + Slave (Athapascan) + + + + + Gulay + + + + + Mashi (Zambia) + + + + + North Tanna + + + + + Wasu + + + + + Aneme Wake + + + + + Komering + + + + + Mbya Guarani + + + + + Tilung + + + + + Aruek + + + + + Gadjerawang + + + + + Eleme + + + + + Korupun-Sela + + + + + Northern Alta + + + + + Gen + + + + + Ontong Java + + + + + Anu + + + + + Younuo Bunu + + + + + Bookan + + + + + Quapaw + + + + + Greek Sign Language + + + + + Apinaye + + + + + Dyula + + + + + Yiddish Sign Language + + + + + Kalaallisut + + + + + Sao Paulo Kaingang + + + + + Thulung + + + + + Bamenyam + + + + + Carpathian Romani + + + + + Caluyanun + + + + + Tokharian A + + + + + Ngandyera + + + + + Tuwali Ifugao + + + + + Nottoway-Meherrin + + + + + Tsimihety Malagasy + + + + + Coatlan Mixe + + + + + Mbu' + + + + + Chantyal + + + + + Piratapuyo + + + + + Dongo + + + + + Anca + + + + + Bolyu + + + + + Shekhawati + + + + + Buraka + + + + + Natagaimas + + + + + Baetora + + + + + Dampelas + + + + + Kango (Tshopo District) + + + + + Acatepec Tlapanec + + + + + Northern Dong + + + + + Foi + + + + + Tausug + + + + + Wayampi + + + + + Twendi + + + + + Chopi + + + + + Siriano + + + + + Alabama + + + + + Noy + + + + + Pana (Central African Republic) + + + + + Zanaki + + + + + Gurinji + + + + + Jenaama Bozo + + + + + Matipuhy + + + + + Jawe + + + + + East Ambae + + + + + Askopan + + + + + Bhadrawahi + + + + + Aimele + + + + + Halkomelem + + + + + Pare + + + + + Lambayeque Quechua + + + + + Chhulung + + + + + Ozumacin Chinantec + + + + + Suruaha + + + + + Lumbee + + + + + Loun + + + + + Seki + + + + + Kilivila + + + + + Berinomo + + + + + Machinga + + + + + Axi Yi + + + + + Mandaic + + + + + Santali + + + + + Mundabli + + + + + Akaselem + + + + + Shuadit + + + + + Hazaragi + + + + + Pedi + + + + + Morokodo + + + + + Mukha-Dora + + + + + Goundo + + + + + Huamalies-Dos de Mayo Huanuco Quechua + + + + + Potawatomi + + + + + Sissala + + + + + Warji + + + + + Itelmen + + + + + Kayapo + + + + + Epie + + + + + Kazukuru + + + + + Kochila Tharu + + + + + Waorani + + + + + Tewa (USA) + + + + + Raute + + + + + Aproumu Aizi + + + + + Tamnim Citak + + + + + Pileni + + + + + Kaibobo + + + + + Indus Kohistani + + + + + Kraol + + + + + Amatlan Zapotec + + + + + Guadeloupean Creole French + + + + + Tai Nua + + + + + Yakoma + + + + + Wuding-Luquan Yi + + + + + Eastern Oromo + + + + + Kwamtim One + + + + + Lachixio Zapotec + + + + + Duli + + + + + Canela + + + + + Osing + + + + + Vilela + + + + + Highland Konjo + + + + + Baruya + + + + + Kimaragang + + + + + Moronene + + + + + Beba + + + + + Sam + + + + + Waray (Australia) + + + + + Romkun + + + + + Bomboma + + + + + Jumjum + + + + + Idate + + + + + Gamit + + + + + Northern Catanduanes Bicolano + + + + + Ahom + + + + + Tring + + + + + Swiss German + + + + + Selaru + + + + + Mbato + + + + + Batek + + + + + Balinese Malay + + + + + Georgian + + + + + Jimi (Nigeria) + + + + + Saniyo-Hiyewe + + + + + Lashi + + + + + Fagani + + + + + Ayutla Mixtec + + + + + Degexit'an + + + + + //Xegwi + + + + + Liki + + + + + Jeh + + + + + Anii + + + + + Agavotaguerra + + + + + Sakechep + + + + + Nyali + + + + + Yaaku + + + + + Athpariya + + + + + Malimba + + + + + Loreto-Ucayali Spanish + + + + + Andarum + + + + + Sabah Malay + + + + + Bade + + + + + Krikati-Timbira + + + + + Elymian + + + + + Lowland Tarahumara + + + + + Valley Maidu + + + + + Igede + + + + + Ketum + + + + + Mmaala + + + + + Mandar + + + + + Mohave + + + + + Barikanchi + + + + + Tawallammat Tamajaq + + + + + Puragi + + + + + San Juan Teita Mixtec + + + + + Kalkoti + + + + + Kara (Tanzania) + + + + + Chaldean Neo-Aramaic + + + + + Narak + + + + + Nungali + + + + + Tavringer Romani + + + + + Wolio + + + + + Kariri-Xoco + + + + + Ozumatlan Totonac + + + + + Fyer + + + + + Sundanese + + + + + Kamarian + + + + + Mbara (Chad) + + + + + Makhuwa-Meetto + + + + + Ntomba + + + + + Tajiki Arabic + + + + + Takua + + + + + Daai Chin + + + + + Yangulam + + + + + Nancere + + + + + Daho-Doo + + + + + Yerakai + + + + + Batak Toba + + + + + Cherepon + + + + + Muskum + + + + + Alutor + + + + + Opata + + + + + Mycenaean Greek + + + + + Northern East Cree + + + + + Dai + + + + + Lomwe + + + + + Sherbro + + + + + Chaudangsi + + + + + Moru + + + + + Ngandi + + + + + Caac + + + + + Northern Pashto + + + + + Dizi + + + + + Puimei Naga + + + + + Koch + + + + + Halia + + + + + Panim + + + + + Gurgula + + + + + Huehuetla Tepehua + + + + + Tumulung Sisaala + + + + + Dom + + + + + Kandawo + + + + + Kaure + + + + + Langam + + + + + Zan Gula + + + + + Taulil + + + + + Tachawit + + + + + Tringgus + + + + + Laven + + + + + Beothuk + + + + + Kao + + + + + Lefa + + + + + Rakahanga-Manihiki + + + + + Aasax + + + + + Arapaho + + + + + Guiberoua Bete + + + + + Gude + + + + + Southern Roglai + + + + + Balaesang + + + + + Malaccan Creole Portuguese + + + + + Weh + + + + + Cibak + + + + + Zyphe + + + + + Pamlico + + + + + Gokana + + + + + Andio + + + + + Yimas + + + + + Central Tarahumara + + + + + Canar Highland Quichua + + + + + Loup A + + + + + Mbum + + + + + Mazagway + + + + + Gugubera + + + + + Timbe + + + + + Eten + + + + + Wali (Ghana) + + + + + Wardaman + + + + + Lobi + + + + + Kinnauri + + + + + Naga Pidgin + + + + + Ngarinman + + + + + Sekar + + + + + Betta Kurumba + + + + + Bukat + + + + + Ruund + + + + + Pinji + + + + + El Molo + + + + + Kwinti + + + + + Gamkonora + + + + + Acatenango Southwestern Cakchiquel + + + + + Efutop + + + + + North Alaskan Inupiatun + + + + + Waimaha + + + + + Old Russian + + + + + Chimariko + + + + + Bouna Kulango + + + + + Coyutla Totonac + + + + + Southern Balochi + + + + + Northern Qiang + + + + + Luo + + + + + Tama (Colombia) + + + + + Yankunytjatjara + + + + + Culina + + + + + Arikapu + + + + + Nimbari + + + + + San Jeronimo Tecoatl Mazatec + + + + + Phende + + + + + Chetco + + + + + Middle Mongolian + + + + + Mambae + + + + + German Sign Language + + + + + Brunei Bisaya + + + + + Wanda + + + + + Okpamheri + + + + + Bosnian + + + + + Siyin Chin + + + + + Khirwar + + + + + Shatt + + + + + Bomwali + + + + + Malalamai + + + + + Wantoat + + + + + Bali (Democratic Republic of Congo) + + + + + Adangme + + + + + Southwestern Tepehuan + + + + + Zhoa + + + + + Togbo-Vara Banda + + + + + Alviri-Vidari + + + + + Makhuwa-Saka + + + + + Uradhi + + + + + Pagibete + + + + + Cheyenne + + + + + Logorik + + + + + Sani Yi + + + + + Itutang + + + + + Befang + + + + + Himarima + + + + + Kitja + + + + + Taushiro + + + + + Kalasha + + + + + Joba + + + + + Cochimi + + + + + Tarao Naga + + + + + Awadhi + + + + + Highland Popoluca + + + + + Mysian + + + + + Khasi + + + + + Malakhel + + + + + Scottish Gaelic + + + + + Eastern Yiddish + + + + + Toto + + + + + Biwat + + + + + Saurashtra + + + + + Darang Deng + + + + + Wandarang + + + + + Bwatoo + + + + + Nyamal + + + + + Mocho + + + + + Ngoshie + + + + + Croatia Sign Language + + + + + Kaan + + + + + Bungain + + + + + Makwe + + + + + Qimant + + + + + Shau + + + + + Lamma + + + + + Tetelcingo Nahuatl + + + + + Mbedam + + + + + Rongmei Naga + + + + + Afrihili + + + + + Dahalo + + + + + Yapunda + + + + + Tlacoatzintepec Chinantec + + + + + Monzombo + + + + + Porohanon + + + + + Ngazidja Comorian + + + + + Mirandese + + + + + Pankararu + + + + + Kitan + + + + + Sumo-Mayangna + + + + + Baka (Sudan) + + + + + Menka + + + + + Gaddang + + + + + Notre + + + + + Jamiltepec Mixtec + + + + + Fortsenal + + + + + Curonian + + + + + Puwa Yi + + + + + Helong + + + + + Tanahmerah + + + + + Ningera + + + + + Bulgebi + + + + + Bacama + + + + + South Marquesan + + + + + Nyiha + + + + + Gimi (West New Britain) + + + + + Lishanid Noshan + + + + + Koreguaje + + + + + Buglere + + + + + Lorang + + + + + Muya + + + + + Temi + + + + + Gao + + + + + Sango + + + + + Cotabato Manobo + + + + + Toga + + + + + Hinduri + + + + + Mende (Sierra Leone) + + + + + Nyaheun + + + + + Sherpa + + + + + Coong + + + + + Southwestern Huishui Hmong + + + + + Nilamba + + + + + Bislama + + + + + Komodo + + + + + Nupode Huitoto + + + + + Malay (individual language) + + + + + Walungge + + + + + Assamese + + + + + Macaguaje + + + + + Nyang'i + + + + + Ndolo + + + + + Frankish + + + + + Neo-Hittite + + + + + Sentinel + + + + + San Juan Cotzal Ixil + + + + + Extremaduran + + + + + Gorakor + + + + + Aiome + + + + + Nasarian + + + + + Min Nan Chinese + + + + + Gagadu + + + + + Nafusi + + + + + Buli (Indonesia) + + + + + Biyo + + + + + Kita Maninkakan + + + + + Cahuarano + + + + + Chochotec + + + + + Southeastern Lolo Yi + + + + + Tundra Enets + + + + + Pintiini + + + + + Urak Lawoi' + + + + + Vao + + + + + Agariya + + + + + Southern Pastaza Quechua + + + + + Kuku-Yalanji + + + + + Masaba + + + + + Kinyarwanda + + + + + Chavacano + + + + + Lushootseed + + + + + Epena + + + + + Bena (Nigeria) + + + + + Gizrra + + + + + Dagoman + + + + + Kwato + + + + + Kopar + + + + + Amblong + + + + + Dakaka + + + + + Malaryan + + + + + Zayein Karen + + + + + Berbice Creole Dutch + + + + + Plautdietsch + + + + + Ukwuani-Aboh-Ndoni + + + + + Gwandara + + + + + Bemba (Zambia) + + + + + Central Aymara + + + + + Old Frisian + + + + + Egypt Sign Language + + + + + Walser + + + + + Lingarak + + + + + Mewari + + + + + Ket + + + + + Taiap + + + + + Bainouk-Gunyuno + + + + + Miqie Yi + + + + + Dair + + + + + Alyawarr + + + + + Tiwa + + + + + Central Tunebo + + + + + Nawaru + + + + + Andh + + + + + Sakirabia + + + + + Tila Chol + + + + + Tifal + + + + + Kyenele + + + + + Assyrian Neo-Aramaic + + + + + Todos Santos Cuchumatan Mam + + + + + Akei + + + + + Hun-Saare + + + + + Pochuri Naga + + + + + Mari (Russia) + + + + + Michigamea + + + + + Nyakyusa-Ngonde + + + + + Tinputz + + + + + Pidgin Delaware + + + + + Mlahso + + + + + Holiya + + + + + Usaghade + + + + + West Ambae + + + + + Kumiai + + + + + Piti + + + + + Yace + + + + + Comaltepec Chinantec + + + + + Selkup + + + + + Malba Birifor + + + + + Kaki Ae + + + + + Nabi + + + + + Ibali Teke + + + + + Manna-Dora + + + + + Kazakh + + + + + Northern Lorung + + + + + Saep + + + + + Surui Do Para + + + + + Dhuwal + + + + + Tongwe + + + + + Wamey + + + + + Mese + + + + + Agi + + + + + Bakole + + + + + Big Nambas + + + + + Embera-Tado + + + + + Lubuagan Kalinga + + + + + Egyptian Arabic + + + + + Transalpine Gaulish + + + + + Barasana + + + + + Nama (Papua New Guinea) + + + + + San Baltazar Loxicha Zapotec + + + + + Gamo-Ningi + + + + + Helambu Sherpa + + + + + Nchumbulu + + + + + Koyraboro Senni Songhai + + + + + Pa Di + + + + + Northern Pastaza Quichua + + + + + Southern Pumi + + + + + Kom (Cameroon) + + + + + Yakha + + + + + Darmiya + + + + + Dakka + + + + + Tampulma + + + + + Sumi Naga + + + + + Sekani + + + + + Didinga + + + + + Shahrudi + + + + + Khmu + + + + + Kanoe + + + + + Cameroon Mambila + + + + + Bera + + + + + Yei + + + + + Dogul Dom Dogon + + + + + Sizaki + + + + + Pictish + + + + + Garawa + + + + + Zimakani + + + + + Bau + + + + + Bumthangkha + + + + + Bahinemo + + + + + Rapoisi + + + + + Pauri Bareli + + + + + Bembe + + + + + Southern Samo + + + + + Bongu + + + + + Ojitlan Chinantec + + + + + Kituba (Democratic Republic of Congo) + + + + + Shendu + + + + + Butuanon + + + + + Nadruvian + + + + + Kamasa + + + + + Mawan + + + + + Pa-Hng + + + + + Lematang + + + + + Yoruba + + + + + North Nuaulu + + + + + Franco-Provencal + + + + + Ulch + + + + + Mamaa + + + + + Poyanawa + + + + + Takwane + + + + + Huizhou Chinese + + + + + Orang Seletar + + + + + Mandobo Bawah + + + + + Adasen Itneg + + + + + Ubi + + + + + Tabasco Chontal + + + + + Mushungulu + + + + + Mboi + + + + + Pao + + + + + Pari + + + + + Cao Lan + + + + + Carrier + + + + + Yauyos Quechua + + + + + Kikuyu + + + + + Sauria Paharia + + + + + Burmese + + + + + Ulau-Suain + + + + + Western Fijian + + + + + Wayuu + + + + + Nyamwanga + + + + + Fam + + + + + Mongondow + + + + + Kodia + + + + + Bonggo + + + + + Settla + + + + + Lamang + + + + + Brithenig + + + + + Laua + + + + + Eastern Egyptian Bedawi Arabic + + + + + Navajo + + + + + Lushai + + + + + Bunun + + + + + Mro Chin + + + + + Wakhi + + + + + Siwi + + + + + Umanakaina + + + + + Ojibwa + + + + + Bayono + + + + + Nyulnyul + + + + + Sanga (Nigeria) + + + + + Tigre + + + + + Kerewe + + + + + Kenyi + + + + + Mbonga + + + + + Middle English (1100-1500) + + + + + Kunfal + + + + + Tagbanwa + + + + + Isthmus-Pajapan Nahuatl + + + + + North Giziga + + + + + San Luis Potosi Huastec + + + + + Duduela + + + + + Fijian Hindustani + + + + + Narau + + + + + Wayoro + + + + + Punic + + + + + Ayu + + + + + Baharna Arabic + + + + + Mualang + + + + + Laari + + + + + San Agustin Mixtepec Zapotec + + + + + Reli + + + + + Rungus + + + + + Mesquakie + + + + + Yessan-Mayo + + + + + Lave + + + + + Hiligaynon + + + + + Kintaq + + + + + Paku Karen + + + + + Xishan Lalu Yi + + + + + Poke + + + + + Maek + + + + + Sugut Dusun + + + + + Guianese Creole French + + + + + Defaka + + + + + Nanggu + + + + + Molima + + + + + Panasuan + + + + + North Wahgi + + + + + Candoshi-Shapra + + + + + Namat + + + + + Yamana + + + + + Eastern Frisian + + + + + Melpa + + + + + Khams Tibetan + + + + + Demta + + + + + Kohumono + + + + + Logo + + + + + Nootka + + + + + Old Tibetan + + + + + Itza + + + + + Memoni + + + + + Ngbundu + + + + + Lamenu + + + + + Patep + + + + + Xhosa + + + + + Yong + + + + + Iapama + + + + + Label + + + + + Yeyi + + + + + Awabakal + + + + + Nyangumarta + + + + + Hamer-Banna + + + + + Serer + + + + + Samtao + + + + + Bassari + + + + + North Bolivian Quechua + + + + + Kumzari + + + + + Laghuu + + + + + Chimalapa Zoque + + + + + Mararit + + + + + Tanosy Malagasy + + + + + Mochica + + + + + Bauro + + + + + Laka (Nigeria) + + + + + Ngumbi + + + + + Tunisian Arabic + + + + + Hmong Shua + + + + + Aranama-Tamique + + + + + Lipan Apache + + + + + Teme + + + + + Aka-Bo + + + + + Namosi-Naitasiri-Serua + + + + + Beja + + + + + Solos + + + + + Temein + + + + + Wadaginam + + + + + Patpatar + + + + + Tagish + + + + + Mae + + + + + Cinta Larga + + + + + Gunya + + + + + Bondei + + + + + Ngura + + + + + Tuxinawa + + + + + Bati (Indonesia) + + + + + Southern Qiang + + + + + Skepi Creole Dutch + + + + + Villa Viciosa Agta + + + + + Argobba + + + + + Maiani + + + + + Ngaju + + + + + Northern Embera + + + + + Yucuane Mixtec + + + + + Central Masela + + + + + Maa + + + + + Kalkutung + + + + + Ona + + + + + Kangean + + + + + Fongoro + + + + + Moyon Naga + + + + + Khana + + + + + Tichurong + + + + + Southern Sami + + + + + Yindjibarndi + + + + + Lewotobi + + + + + Soyaltepec Mixtec + + + + + Tabriak + + + + + Talodi + + + + + Hakka Chinese + + + + + Onge + + + + + Lucumi + + + + + =/Kx'au//ein + + + + + Onin Based Pidgin + + + + + Tolomako + + + + + //Ani + + + + + Lingkhim + + + + + Teor + + + + + Letemboi + + + + + Mbangi + + + + + Dwang + + + + + Trumai + + + + + Bassossi + + + + + Seselwa Creole French + + + + + Lumun + + + + + Gusilay + + + + + Ometepec Nahuatl + + + + + Terebu + + + + + Kiowa + + + + + Bamukumbit + + + + + Palenquero + + + + + Western Highland Purepecha + + + + + Mayeka + + + + + Somyev + + + + + Akpes + + + + + Welaung + + + + + Braj + + + + + Yepocapa Southwestern Cakchiquel + + + + + Thai + + + + + Inpui Naga + + + + + Bororo + + + + + Beli (Sudan) + + + + + Ute-Southern Paiute + + + + + Karawa + + + + + Kabola + + + + + Dong + + + + + Bagri + + + + + Ndoola + + + + + West Tarangan + + + + + Saya + + + + + Babuza + + + + + Kohoroxitari + + + + + Kunbarlang + + + + + Mediak + + + + + Tavoyan + + + + + Bima + + + + + Kereho-Uheng + + + + + Bacanese Malay + + + + + Northern Pumi + + + + + Mopan Maya + + + + + Tagwana Senoufo + + + + + Ecuadorian Sign Language + + + + + Faroese + + + + + Eman + + + + + Marba + + + + + Peranakan Indonesian + + + + + Pijao + + + + + Nii + + + + + Tsonga + + + + + Abu + + + + + Chru + + + + + Krobu + + + + + Shabo + + + + + We Northern + + + + + Corongo Ancash Quechua + + + + + Umbindhamu + + + + + Tatana + + + + + Kpala + + + + + Baba Malay + + + + + Shumashti + + + + + Kwakiutl + + + + + Ethiopian Sign Language + + + + + Dibole + + + + + Karanga + + + + + Papapana + + + + + Sebuyau + + + + + Omurano + + + + + Seri + + + + + Wasa + + + + + Toala' + + + + + Central Grebo + + + + + Tami + + + + + Kamba (Kenya) + + + + + Afar + + + + + Baeggu + + + + + Jandavra + + + + + Eshtehardi + + + + + Pukapuka + + + + + Kharia Thar + + + + + Kuku-Mangk + + + + + Kenyang + + + + + Rathwi Bareli + + + + + Zia + + + + + Kang + + + + + Central Nicobarese + + + + + Ngarluma + + + + + Rongpo + + + + + Mauwake + + + + + Khaling + + + + + Busam + + + + + Adangbe + + + + + Nyanga-li + + + + + Saposa + + + + + Tobagonian Creole English + + + + + Mer + + + + + Abenlen Ayta + + + + + Koroni + + + + + Wariyangga + + + + + Mescalero-Chiricahua Apache + + + + + Cemuhi + + + + + Rongga + + + + + Middle Dutch (ca. 1050-1350) + + + + + Malasanga + + + + + Veluws + + + + + Classical Newari + + + + + Hruso + + + + + Barwe + + + + + Huautla Mazatec + + + + + Pela + + + + + Bagupi + + + + + Tahitian + + + + + Nguluwan + + + + + Kuanhua + + + + + West Coast Bajau + + + + + Maca + + + + + Hassaniyya + + + + + Woleaian + + + + + Otuke + + + + + Old Japanese + + + + + Valman + + + + + Izi-Ezaa-Ikwo-Mgbo + + + + + Penoles Mixtec + + + + + Napu + + + + + Parkari Koli + + + + + Chuvash + + + + + Northern Thai + + + + + Ponosakan + + + + + Otuho + + + + + Komba + + + + + Khang + + + + + Sene + + + + + Kachari + + + + + Baniva + + + + + Ipiko + + + + + Aghu Tharnggalu + + + + + Akum + + + + + Kilmeri + + + + + Kuanua + + + + + Pula Yi + + + + + Cofan + + + + + Mfinu + + + + + Ga + + + + + Ngalum + + + + + Tariano + + + + + Sicel + + + + + Phoenician + + + + + Awjilah + + + + + Tukumanfed + + + + + Ludian + + + + + Eastern Mnong + + + + + Idesa + + + + + Pamosu + + + + + Kaytetye + + + + + Kashubian + + + + + Amoltepec Mixtec + + + + + Yekhee + + + + + Banggai + + + + + Awtuw + + + + + Phana' + + + + + Maraghei + + + + + Selian + + + + + Kajakse + + + + + Sudanese Creole Arabic + + + + + Kahumamahon Saluan + + + + + Alu Kurumba + + + + + Mser + + + + + La'bi + + + + + Mundu + + + + + Rumu + + + + + Arawak + + + + + Northern Sierra Miwok + + + + + Tanzanian Sign Language + + + + + Khumi Chin + + + + + Makasar + + + + + Sinte Romani + + + + + Singapore Sign Language + + + + + Koma + + + + + Cuiba + + + + + Chinook jargon + + + + + Laadan + + + + + Galambu + + + + + North Marquesan + + + + + Birhor + + + + + Azoyu Tlapanec + + + + + Korop + + + + + Herde + + + + + Southern Betsimisaraka Malagasy + + + + + Yinggarda + + + + + Kamoro + + + + + Wikalkan + + + + + Churahi + + + + + Volscian + + + + + Northern Bai + + + + + Sranan Tongo + + + + + Qaqet + + + + + Southern Yukaghir + + + + + Dhivehi + + + + + Barein + + + + + Koiwat + + + + + Old Nubian + + + + + Salinan + + + + + Yangbye + + + + + Uhami + + + + + Lomaiviti + + + + + Psikye + + + + + Grebo + + + + + Santiago Lapaguia Zapotec + + + + + Caribbean Javanese + + + + + Wumbvu + + + + + Khalaj + + + + + Chocangacakha + + + + + Khanty + + + + + Kayan River Kayan + + + + + Maricopa + + + + + Isinai + + + + + Eastern Bolivian Guarani + + + + + Xibe + + + + + Kiliwa + + + + + Lala-Roba + + + + + Persian + + + + + South Awyu + + + + + Mombum + + + + + Southwestern Tarahumara + + + + + Pe + + + + + Molo + + + + + Kurtokha + + + + + Central Okinawan + + + + + Old Hungarian + + + + + Kamayura + + + + + Saisiyat + + + + + Northern Uzbek + + + + + Oyda + + + + + Kpelle + + + + + Geruma + + + + + Chuave + + + + + Wanman + + + + + Tayart Tamajeq + + + + + Kajaman + + + + + Hurrian + + + + + Haitian + + + + + Awu Yi + + + + + Cineni + + + + + Ndendeule + + + + + Northern Ngbandi + + + + + Akkala Sami + + + + + Kasseng + + + + + Tok Pisin + + + + + Ukue + + + + + Mbay + + + + + Tomedes + + + + + Mbariman-Gudhinma + + + + + Bantik + + + + + Lamogai + + + + + Min Dong Chinese + + + + + Ninam + + + + + Kamang + + + + + Loup B + + + + + Santa Teresa Cora + + + + + Touo + + + + + Liana-Seti + + + + + Kaco' + + + + + Algerian Saharan Arabic + + + + + Bauchi + + + + + Zuni + + + + + Yopno + + + + + Lachirioag Zapotec + + + + + Maithili + + + + + Bakwe + + + + + Nefamese + + + + + Karipuna Creole French + + + + + Yalahatan + + + + + Wanukaka + + + + + Nubri + + + + + Chilcotin + + + + + Biangai + + + + + Loo + + + + + Haveke + + + + + Kayardild + + + + + Tabasco Zoque + + + + + Kokoda + + + + + Jju + + + + + Gola + + + + + Bebil + + + + + Tsetsaut + + + + + Hulung + + + + + Vagla + + + + + Romanian + + + + + Kola + + + + + Dolpo + + + + + Zaniza Zapotec + + + + + Daga + + + + + Tombulu + + + + + Angolar + + + + + Kutu + + + + + Dura + + + + + Dolgan + + + + + Tocho + + + + + Chane + + + + + Dugun + + + + + Kota (Gabon) + + + + + Epi-Olmec + + + + + Mire + + + + + Rukai + + + + + Tsimane + + + + + Pacific Gulf Yupik + + + + + Coyotepec Popoloca + + + + + Alangan + + + + + Pwo Western Karen + + + + + Kanu + + + + + Nomaande + + + + + Tidaa Mixtec + + + + + Cebaara Senoufo + + + + + Fur + + + + + Old Saxon + + + + + Malawi Sena + + + + + Juray + + + + + Nyangatom + + + + + Old Tamil + + + + + Moingi + + + + + Dimbong + + + + + Nung (Viet Nam) + + + + + Iu Mien + + + + + Barclayville Grebo + + + + + Moken + + + + + Piraha + + + + + Embera-Chami + + + + + Grangali + + + + + Satawalese + + + + + Yabarana + + + + + Butmas-Tur + + + + + Lui + + + + + Ndengereko + + + + + Ila + + + + + Mesaka + + + + + Fe'fe + + + + + Tatar + + + + + Shawnee + + + + + Bofi + + + + + Abishira + + + + + Whitesands + + + + + Plateau Malagasy + + + + + Ere + + + + + Musey + + + + + Mashi (Nigeria) + + + + + Babango + + + + + Etkywan + + + + + Yanomami + + + + + Kunigami + + + + + Bedjond + + + + + Doutai + + + + + Murupi + + + + + Magori + + + + + Tereno + + + + + Nafri + + + + + Samvedi + + + + + Southern Birifor + + + + + Sebat Bet Gurage + + + + + Ikpeshi + + + + + Dungu + + + + + Darlong + + + + + Ladin + + + + + Orok + + + + + Onondaga + + + + + Sri Lankan Creole Malay + + + + + Alanic + + + + + Buginese + + + + + Southern Yi + + + + + Eastern Gorkha Tamang + + + + + Torau + + + + + Rendille + + + + + Northern Tiwa + + + + + Eritai + + + + + Meta' + + + + + Muong + + + + + Paafang + + + + + Northern Kissi + + + + + Bakaka + + + + + Wakawaka + + + + + Kaniet + + + + + East Makian + + + + + Liabuku + + + + + Shinabo + + + + + Narim + + + + + Mari (East Sepik Province) + + + + + Oroko + + + + + Khuen + + + + + Bum + + + + + Chorasmian + + + + + Kuman (Russia) + + + + + Tembo (Motembo) + + + + + Southern Kalinga + + + + + Fang (Equatorial Guinea) + + + + + Binji + + + + + Apalachee + + + + + Shuar + + + + + Nogai + + + + + Swahili (individual language) + + + + + Bonerate + + + + + Eastern Ojibwa + + + + + Tabassaran + + + + + Ayabadhu + + + + + Balau + + + + + Baga Binari + + + + + Wakona + + + + + Maori + + + + + Waigali + + + + + Batak Simalungun + + + + + Irantxe + + + + + Iduna + + + + + Chippewa + + + + + Kuni-Boazi + + + + + Kaimbulawa + + + + + San Salvador Kongo + + + + + Tyap + + + + + Bara Malagasy + + + + + Michoacan Nahuatl + + + + + Mbo (Democratic Republic of Congo) + + + + + Gayo + + + + + Duano' + + + + + Supyire Senoufo + + + + + Lorediakarkar + + + + + Bebeli + + + + + Geji + + + + + Lamet + + + + + Na + + + + + Chukot + + + + + Karo (Ethiopia) + + + + + Wandamen + + + + + Tuvinian + + + + + Odual + + + + + Emai-Iuleha-Ora + + + + + Marshallese + + + + + Eastern Pomo + + + + + Squamish + + + + + North Picene + + + + + Huambisa + + + + + Bikya + + + + + Omagua + + + + + Ombo + + + + + Odut + + + + + Kankanaey + + + + + Kamar + + + + + Toro So Dogon + + + + + Bambalang + + + + + Mohawk + + + + + Morisyen + + + + + Kurichiya + + + + + Cori + + + + + Adamawa Fulfulde + + + + + Ugong + + + + + Miami + + + + + Bakpinka + + + + + Diodio + + + + + Turkana + + + + + Bambassi + + + + + Nkonya + + + + + Djambarrpuyngu + + + + + Motu + + + + + Mezontla Popoloca + + + + + Urimo + + + + + Manam + + + + + Albay Bicolano + + + + + Awera + + + + + Wutung + + + + + Moma + + + + + Northern Gondi + + + + + Yagaria + + + + + Central Cagayan Agta + + + + + Narungga + + + + + Biao-Jiao Mien + + + + + Koyo + + + + + Coatepec Nahuatl + + + + + Gangulu + + + + + Uru-Pa-In + + + + + Huaxcaleca Nahuatl + + + + + Shilluk + + + + + Amal + + + + + Ventureno + + + + + Hlai + + + + + Northern Paiute + + + + + Gitua + + + + + Mbala + + + + + Totela + + + + + Kemberano + + + + + Auye + + + + + Phimbi + + + + + Tutsa Naga + + + + + Mednyj Aleut + + + + + Tiv + + + + + Aramaic + + + + + Chitwania Tharu + + + + + Burak + + + + + Manyawa + + + + + Toaripi + + + + + Eastern Lawa + + + + + Wik-Mungkan + + + + + Gupa-Abawa + + + + + Hasha + + + + + Senhaja De Srair + + + + + Nivacle + + + + + Imroing + + + + + Melanau + + + + + Dusun Witu + + + + + Northern Toussian + + + + + Togoyo + + + + + Chajul Ixil + + + + + Mru + + + + + Atakapa + + + + + Yawarawarga + + + + + Lamam + + + + + Nake + + + + + Avokaya + + + + + Rincon Zapotec + + + + + Northern Qiandong Hmong + + + + + Norwegian + + + + + Cross River Mbembe + + + + + Chamacoco + + + + + Malawi Lomwe + + + + + Xadani Zapotec + + + + + Jita + + + + + Kouya + + + + + Mandingo + + + + + Cakchiquel-Quiche Mixed Language + + + + + North Korowai + + + + + Sarli + + + + + Ocaina + + + + + Ukrainian + + + + + Northern Zhuang + + + + + Kitsai + + + + + Bonan + + + + + Northern Sami + + + + + Kamviri + + + + + Iyo + + + + + Ata + + + + + Nugunu (Cameroon) + + + + + Karingani + + + + + Mahakam Kenyah + + + + + Tause + + + + + Tiri + + + + + Secoya + + + + + Kharam Naga + + + + + North Ambrym + + + + + Pagi + + + + + Haeke + + + + + Kowaki + + + + + Muko-Muko + + + + + Tai Thanh + + + + + Airoran + + + + + Nyalayu + + + + + Ignaciano + + + + + Sangu (Tanzania) + + + + + Irish Sign Language + + + + + Oy + + + + + Brokpake + + + + + Kushi + + + + + Central Atlas Tamazight + + + + + Western Sisaala + + + + + Vaiphei + + + + + Angal Heneng + + + + + Thao + + + + + Yerong + + + + + Wetamut + + + + + Chiapanec + + + + + Istriot + + + + + Manx + + + + + Saaroa + + + + + Enya + + + + + Tepeuxila Cuicatec + + + + + Nez Perce + + + + + Ede Idaca + + + + + Phuan + + + + + Botolan Sambal + + + + + Karata + + + + + Simte + + + + + Piaroa + + + + + Farefare + + + + + Gamilaraay + + + + + Gaina + + + + + Aariya + + + + + Lower Pokomo + + + + + Urum + + + + + Kanga + + + + + Reyesano + + + + + Manga Kanuri + + + + + Nung (Myanmar) + + + + + Pom + + + + + Groma + + + + + Zemba + + + + + Sharwa + + + + + Tanimuca-Retuara + + + + + Ombamba + + + + + Dameli + + + + + Mbowe + + + + + Tuotomb + + + + + Minaean + + + + + Plains Cree + + + + + Southwestern Dinka + + + + + Arikara + + + + + Soninke + + + + + Gogodala + + + + + Yalunka + + + + + Algerian Arabic + + + + + Valpei + + + + + Masana + + + + + Eyak + + + + + Dabarre + + + + + Nga La + + + + + Nzima + + + + + Bamako Sign Language + + + + + Lycian + + + + + Kayort + + + + + Kpasam + + + + + Kulung (Nepal) + + + + + Wu Chinese + + + + + Erave + + + + + Kurumba + + + + + Kom (India) + + + + + Voro + + + + + Ngurmbur + + + + + Alatil + + + + + Middle Breton + + + + + Ikizu + + + + + Masalit + + + + + Biga + + + + + Kahayan + + + + + Dao + + + + + Tai Do + + + + + Guaja + + + + + Aka-Bea + + + + + Vaghri + + + + + Seko Tengah + + + + + Korubo + + + + + Mbongno + + + + + Buso + + + + + Anjam + + + + + Vute + + + + + Tabasco Nahuatl + + + + + Norwegian Nynorsk + + + + + Indonesian Bajau + + + + + Yaosakor Asmat + + + + + Lahta Karen + + + + + Lakona + + + + + Bobongko + + + + + Mouk-Aria + + + + + Dghwede + + + + + Paulohi + + + + + Middle Newar + + + + + Caquinte + + + + + Korak + + + + + Maba (Indonesia) + + + + + Portuguese + + + + + Highland Totonac + + + + + Nzakara + + + + + Gapapaiwa + + + + + Waima + + + + + Darai + + + + + Hu + + + + + North Tairora + + + + + Yavitero + + + + + Eruwa + + + + + Deni + + + + + Aguacateco + + + + + Sri Lankan Sign Language + + + + + Torres Strait Creole + + + + + Mbugu + + + + + Kaiku + + + + + Arem + + + + + Rang + + + + + Paelignian + + + + + Miluk + + + + + Daro-Matu + + + + + Lambichhong + + + + + Uab Meto + + + + + Mid Grand Valley Dani + + + + + Ahirani + + + + + Gungabula + + + + + Omie + + + + + Bangubangu + + + + + New Caledonian Javanese + + + + + Quechan + + + + + Gujarati + + + + + South Fali + + + + + Siang + + + + + Ndyuka-Trio Pidgin + + + + + Iban + + + + + Pannei + + + + + Koalib + + + + + Moyadan Itneg + + + + + Alaba + + + + + Manya + + + + + Garus + + + + + Atampaya + + + + + Aka-Kol + + + + + Hungworo + + + + + Delo + + + + + Eastern Canadian Inuktitut + + + + + Central Mazahua + + + + + Batak Dairi + + + + + Kaburi + + + + + Budong-Budong + + + + + Piscataway + + + + + Saliba + + + + + Shipibo-Conibo + + + + + Tagdal + + + + + Kamano + + + + + Tejalapan Zapotec + + + + + Haruai + + + + + Malaysian Sign Language + + + + + Bonkeng + + + + + Nepali + + + + + Lawunuia + + + + + Northern Altai + + + + + Western Huasteca Nahuatl + + + + + Parthian + + + + + Ekari + + + + + Budu + + + + + Aralle-Tabulahan + + + + + Setaman + + + + + Timor Pidgin + + + + + Ho + + + + + Dagik + + + + + Rabha + + + + + Tauya + + + + + Lijili + + + + + Enim + + + + + Sallands + + + + + Bishnupriya + + + + + Southern Kisi + + + + + Wancho Naga + + + + + Tereweng + + + + + Tsamai + + + + + Nggwahyi + + + + + Pattani Malay + + + + + Heiban + + + + + Rotuman + + + + + Digaro-Mishmi + + + + + Dompo + + + + + Eshan-Xinping Yi + + + + + Gweno + + + + + Fali + + + + + Cafundo Creole + + + + + Oro Win + + + + + Deno + + + + + Suwawa + + + + + Marithiel + + + + + Prussian + + + + + Toku-No-Shima + + + + + Thakali + + + + + Aja (Sudan) + + + + + Phudagi + + + + + Nukak Maku + + + + + Sassarese Sardinian + + + + + East Kewa + + + + + Tobati + + + + + Pinai-Hagahai + + + + + Bokobaru + + + + + Yutanduchi Mixtec + + + + + Huaulu + + + + + Kolibugan Subanon + + + + + Ngamo + + + + + Torricelli + + + + + Dinka + + + + + Lobala + + + + + Gula (Central African Republic) + + + + + Valle Nacional Chinantec + + + + + Tenino + + + + + Kariyarra + + + + + Bon Gula + + + + + Yocoboue Dida + + + + + Hako + + + + + Selako + + + + + Chak + + + + + Yauma + + + + + Bhattiyali + + + + + Yapese + + + + + Xukuru + + + + + Kofyar + + + + + Tlahuitoltepec Mixe + + + + + Aruop + + + + + Monastic Sign Language + + + + + Southeast Pashayi + + + + + Isthmus Mixe + + + + + Capiznon + + + + + Woria + + + + + Bargam + + + + + Gundi + + + + + Urumi + + + + + Aloapam Zapotec + + + + + Wogeo + + + + + Hopi + + + + + Modern Greek (1453-) + + + + + Bonggi + + + + + Luopohe Hmong + + + + + Kedah Malay + + + + + Baan + + + + + Selepet + + + + + Cao Miao + + + + + Curripaco + + + + + Lisela + + + + + Chimila + + + + + Kayan River Kenyah + + + + + Foau + + + + + Purisimeno + + + + + Dijim-Bwilim + + + + + Central Huasteca Nahuatl + + + + + Tlacolulita Zapotec + + + + + Amba (Uganda) + + + + + Sepik Iwam + + + + + Guayabero + + + + + West Central Banda + + + + + Dadiya + + + + + Gitxsan + + + + + Hovongan + + + + + Belanda Bor + + + + + Dagaari Dioula + + + + + Kanamari + + + + + Rikbaktsa + + + + + Kiong + + + + + En + + + + + Old Turkish + + + + + Nkoya + + + + + Ndemli + + + + + Napo Lowland Quechua + + + + + Austral + + + + + Western Juxtlahuaca Mixtec + + + + + Zapotec + + + + + Yeskwa + + + + + Bina (Papua New Guinea) + + + + + Kara (Korea) + + + + + Western Tzutujil + + + + + Uzekwe + + + + + Korafe + + + + + Ouma + + + + + Bena (Tanzania) + + + + + Guntai + + + + + Agob + + + + + Kui (India) + + + + + Malila + + + + + Gbaya-Bossangoa + + + + + Gvoko + + + + + Yidiny + + + + + Pudtol Atta + + + + + Tibetan + + + + + Kwaami + + + + + Gela + + + + + Gade + + + + + Eastern Mari + + + + + Sila + + + + + Gebe + + + + + Vinmavis + + + + + Kuwaataay + + + + + Kuthant + + + + + Bora + + + + + Subtiaba + + + + + Awad Bing + + + + + Saweru + + + + + Odiai + + + + + Magahi + + + + + Saba + + + + + Ko + + + + + Pangwa + + + + + Lengua + + + + + Rathawi + + + + + Lunanakha + + + + + Habu + + + + + Murle + + + + + Kui (Indonesia) + + + + + Madagascar Sign Language + + + + + Nyadu + + + + + Tanapag + + + + + Newari + + + + + Achang + + + + + Abau + + + + + Southern Ghale + + + + + Purepecha + + + + + Western Tunebo + + + + + Walio + + + + + Como Karim + + + + + Kodi + + + + + Ndunda + + + + + Silacayoapan Mixtec + + + + + Muji Yi + + + + + Western Mashan Hmong + + + + + Aranadan + + + + + Shwe Palaung + + + + + Siona + + + + + Gambera + + + + + Mala (Nigeria) + + + + + Wichi Lhamtes Nocten + + + + + Tukudede + + + + + Jibu + + + + + Dhargari + + + + + Kovai + + + + + Mesopotamian Arabic + + + + + Movima + + + + + Nduga + + + + + Southern Sama + + + + + Ngbaka + + + + + Tiang + + + + + Indus Valley Language + + + + + Agutaynen + + + + + Yora + + + + + Hobyot + + + + + Trieng + + + + + Defi Gbe + + + + + Ubaghara + + + + + Tosk Albanian + + + + + Northeast Pashayi + + + + + Djiwarli + + + + + Adai + + + + + Phuie + + + + + Estonian + + + + + Ahan + + + + + Taikat + + + + + Ningil + + + + + Kukele + + + + + Pu Ko + + + + + Lengola + + + + + Twana + + + + + Libyan Arabic + + + + + Mai Brat + + + + + Guanano + + + + + Azhe Yi + + + + + Old Korean (3rd - 9th cent.) + + + + + Talur + + + + + Yambeta + + + + + Sipacapense + + + + + Siliput + + + + + Cajamarca Quechua + + + + + Iatmul + + + + + Swiss-French Sign Language + + + + + Ravula + + + + + Sinhala + + + + + Bagirmi Fulfulde + + + + + Flinders Island + + + + + Southern Pame + + + + + Njyem + + + + + Callawalla + + + + + Kabutra + + + + + Eteocretan + + + + + Ubykh + + + + + San Sebastian Coatan Chuj + + + + + Paite Chin + + + + + Bata + + + + + Waray (Philippines) + + + + + Iraya + + + + + Southern East Cree + + + + + Marrucinian + + + + + Yanyuwa + + + + + Dzongkha + + + + + Guarequena + + + + + Haitian Vodoun Culture Language + + + + + So'a + + + + + Muruwari + + + + + Landoma + + + + + Dazaga + + + + + Kairui-Midiki + + + + + Southern Pomo + + + + + Animere + + + + + Gnau + + + + + Eastern Huasteca Nahuatl + + + + + Southern Grebo + + + + + Waris + + + + + Magoma + + + + + Romansh + + + + + Northeast Kiwai + + + + + Bayungu + + + + + Pisabo + + + + + Tukpa + + + + + Bhaya + + + + + Southern Alta + + + + + A'tong + + + + + Upper Taromi + + + + + Kpan + + + + + Hawaiian + + + + + Lara' + + + + + San Juan Guelavia Zapotec + + + + + Mawak + + + + + Etulo + + + + + Tama (Chad) + + + + + Dhodia + + + + + Tese + + + + + Nauru + + + + + Saramaccan + + + + + Ligurian + + + + + Brokkat + + + + + Weliki + + + + + Shor + + + + + Northern Mashan Hmong + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/niem-core/2.0/constraint-schema-transform.xsl b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/niem-core/2.0/constraint-schema-transform.xsl new file mode 100644 index 000000000..f43fef11e --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/niem-core/2.0/constraint-schema-transform.xsl @@ -0,0 +1,1360 @@ + + + + +1 +1 + + + + +1 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +1 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +1 +unbounded + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +unbounded + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +1 +2 + + + + +0 +14 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +1 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +1 +1 + + + + +1 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +1 +1 + + + + +0 +1 + + + + +0 +1 + + + + +1 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +1 +1 + + + + +1 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +1 +1 + + + + +1 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +1 +1 + + + + +0 +1 + + + + +0 +1 + + + + +1 +1 + + + + +1 +1 + + + + +1 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +1 +1 + + + + +0 +1 + + + + +0 +1 + + + + +2 +unbounded + + + + +1 +1 + + + + +1 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +2 +unbounded + + + + +1 +1 + + + + +1 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +1 +1 + + + + +1 +1 + + + + +1 +unbounded + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +1 +unbounded + + + + +1 +unbounded + + + + +0 +1 + + + + +0 +1 + + + + +0 +unbounded + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +unbounded + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +unbounded + + + + +0 +unbounded + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +2 +unbounded + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +unbounded + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + +0 +1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/niem-core/2.0/niem-core.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/niem-core/2.0/niem-core.xsd new file mode 100644 index 000000000..d1d7a3377 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/niem-core/2.0/niem-core.xsd @@ -0,0 +1,2593 @@ + + + + NIEM Core includes both Universal (U) and Common (C) components. The identities for U and C components in Core are maintained with metadata. + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A version of a computer application. + + + + + A unit of money or exchange. + + + + + A unit of money or exchange. + + + + + A language in which a character string is recorded. + + + + + A comment about a kind of name for a person. + + + + + A single or set of related actions, events, or process steps. + + + + + + + + + A date of an activity. + + + + + + + + A period of time over which an activity occurs. + + + + + + + + A date an activity occurs. + + + + + A description of an activity. + + + + + A result or outcome of an activity. + + + + + An identification that references an activity. + + + + + A status of an activity. + + + + + A postal location to which paper mail can be directed. + + + + + A single place or unit at which mail is delivered. + + + + + An identifier of a single place or unit at which mail is delivered. + + + + + + + + A single place or unit at which mail is delivered. + + + + + + + + A complete address. + + + + + + + + A private mailbox within a company. + + + + + + + + A name of a person, organization, or other recipient to whom physical mail may be sent. + + + + + A representation of an address. + + + + + A particular unit within a larger unit or grouping at a location. + + + + + + + + A connection, relationship, or involvement somehow linking people and/or things together. + + + + + A binary attachment to a report or document. + + + + + A binary encoding of data. + + + + + + + + A date on which a binary object is captured or created. + + + + + An entity which captured or created a binary object. + + + + + A kind of object that has been encoded. + + + + + A description of a binary object. + + + + + A name of a standard or protocol used to classify binary content. + + + + + A URL or file reference of a binary object. + + + + + A binary encoding of data. + + + + + A size of a binary object in kilobytes. + + + + + Information used to measurable a biological or behavioral characteristic, which can reliably recognize the identity, or verify the claimed identity, of a person. + + + + + An entity that collected a biometric sample. + + + + + A picture of a biometric sample. + + + + + A description of a capacity or ability. + + + + + An aggregation of information about a set of related activities and events. + + + + + A kind of case. + + + + + An outcome or processing of a case. + + + + + + + + A case disposition occurring as a result of some decision. + + + + + A date that all charges in a case were disposed. + + + + + An identifier used to reference a case docket. + + + + + A document or other piece of information filed by someone or something involved in a case. + + + + + An official name of a case. + + + + + An identifier used to track a case. + + + + + An electronic mailing address by which a person or organization may be contacted. + + + + + + + + An entity that may be contacted by using the given contact information. + + + + + A description, title or function of a person with the given contact information. + + + + + A telephone number for a facsimile device by which a person or organization may be contacted. + + + + + + + + Details about how to contact a person or an organization. + + + + + + + + Details about how to contact a person or an organization. + + + + + A description of the methods available to contact a person or organization. + + + + + True if the contact information is the daytime contact information; false otherwise. + + + + + True if the contact information is the emergency contact information; false otherwise. + + + + + True if the contact information is the late day / early night contact information; false otherwise. + + + + + True if the contact information is the home contact information; false otherwise. + + + + + True if the contact information is the late night contact information; false otherwise. + + + + + True if the contact information is the primary method for contact; false otherwise. + + + + + True if the contact information is the employment contact information; false otherwise. + + + + + A postal address by which a person or organization may be contacted. + + + + + + + + A means of contacting someone. + + + + + A third party person who answers a call and connects or directs the caller to the intended person. + + + + + A telephone number for a telecommunication device by which a person or organization may be contacted. + + + + + + + + A means of transport from place to place. + + + + + + + + A single, upper-most, front-most, or majority color of a conveyance. + + + + + + + + An identification on a metal plate fixed to a conveyance. + + + + + An image of a DNA strand. + + + + + Location specific information regarding a person's DNA. + + + + + A location within a strand of DNA that a value is determined. + + + + + A value string for a DNA locus. + + + + + A full date. + + + + + + + + A time period measured by a starting and ending point. + + + + + A representation of a date. + + + + + A full date and time. + + + + + + + + A result or outcome that is the product of handling, processing, or finalizing something. + + + + + A kind of disposition. + + + + + A date a disposition occurred. + + + + + A description of a disposition. + + + + + A result or outcome of a disposition. + + + + + A paper or electronic document. + + + + + + + + A paper or electronic document. + + + + + A name of an application used to create and/or display an electronic document. + + + + + A binary encoding of the content of a document. + + + + + A kind of document; a nature or genre of the content. + + + + + A description of the content of a document. + + + + + A date the information in a document takes effect. + + + + + An identifier assigned to a document to locate it within a file control system. + + + + + A date a document was filed. + + + + + An identification that references a document. + + + + + A date after which contributions to the content of a document will no longer be accepted. + + + + + A language of the intellectual content of the resource. + + + + + A language of the intellectual content of the resource. + + + + + + + + A date a document is posted to an information system or network. + + + + + A date a transmitted document was received. + + + + + An identifier that determines the document order in a set of related documents. + + + + + A status of a document. + + + + + A fee or price required to submit a document. + + + + + An entity responsible for making the resource available. + + + + + A name given to a document. + + + + + Details about a license issued to a person granting driving privileges. + + + + + + + + Details about a license issued to a person granting driving privileges. + + + + + Details about an authorization issued to a driver granting driving privileges. + + + + + A kind of commercial vehicle that a licensed driver has been examined on and approved to operate. + + + + + A kind of commercial vehicle that a licensed driver has been examined on and approved to operate. + + + + + + + + The date after which a driver license or driver license permit is no longer valid. + + + + + Details about a driver license identifier or driver license permit identifier, including the number and state. + + + + + The date when a driver license or driver license permit is issued or renewed. + + + + + A restriction on a driver license or driver license permit. + + + + + Details regarding a driver license withdrawal. + + + + + A date on which a driver license withdrawal becomes effective. + + + + + A category of a driving restriction. + + + + + + + + A date on which a special restriction ends. + + + + + A category of a driving restriction. + + + + + + + + A driving restriction. + + + + + A date that information take effect. + + + + + A person who works for a business or a person. + + + + + + + + A business or person which employs a person. + + + + + An end date. + + + + + A person, organization, or thing capable of bearing legal rights and responsibilities. + + + + + + + + A person, organization, or thing capable of bearing legal rights and responsibilities. + + + + + An organization capable of bearing legal rights and responsibilities. + + + + + + + + + An organization capable of bearing legal rights and responsibilities. + + + + + + + + A person capable of bearing legal rights and responsibilities. + + + + + + + + + A person capable of bearing legal rights and responsibilities. + + + + + + + + A person, organization, or thing capable of bearing legal rights and responsibilities. + + + + + An identification assigned to a facility. + + + + + A kind of relationship between family members. + + + + + A kind of relationship between family members. + + + + + + + + A kind of relationship between family members. + + + + + + + + An amount of an exemption from a payment obligation. + + + + + A representation or an encoding of the identifying characteristics of a persons fingerprints. + + + + + A full telephone number. + + + + + + + + An association between a guardian and a dependent. + + + + + A representation of an identity. + + + + + A kind of identification. + + + + + A kind of identification. + + + + + + + + A value that identifies something. + + + + + An area, region, or unit in which a unique identification is issued. + + + + + A person, organization, or locale which issues an identification. + + + + + A picture or visual representation of something. + + + + + An association between parents and children. + + + + + An occurrence or an event that may require a response. + + + + + + + + A location where an incident occurred. + + + + + An association between an incident and a vehicle. + + + + + A coverage by a contract whereby one party agrees to indemnify or guarantee another against loss by a specified contingent event or peril. + + + + + True if an insurance policy is active; false otherwise. + + + + + A name of a company which underwrites an insurance policy. + + + + + A kind of insurance coverage. + + + + + A kind of insurance coverage. + + + + + + + + An international telephone number. + + + + + + + + An article or thing. + + + + + A color of an item. + + + + + A description of an item. + + + + + A year in which an item was manufactured or produced. + + + + + An identification assigned to an item. + + + + + A style of an item. + + + + + An evaluation of the monetary worth of an item. + + + + + A system of words or symbols used for communication. + + + + + A system of words or symbols used for communication. + + + + + + + + A unit of measure of a length value. + + + + + Details about a physical location. + + + + + + + + Details about a physical location. + + + + + A geophysical location described by postal information. + + + + + A name of a city or town. + + + + + A country, territory, dependency, or other such geopolitical subdivision of a location. + + + + + A country, territory, dependency, or other such geopolitical subdivision of a location. + + + + + + + + A country, territory, dependency, or other such geopolitical subdivision of a location. + + + + + + + + A county, parish, vicinage, or other such geopolitical subdivision of a state. + + + + + A county, parish, vicinage, or other such geopolitical subdivision of a state. + + + + + + + + A county, parish, vicinage, or other such geopolitical subdivision of a state. + + + + + + + + A description of a location. + + + + + A name of a location. + + + + + An identifier of a post office-assigned zone for an address. + + + + + An identifier of a smaller area within a post office-assigned zone for an address. + + + + + A name and number of a postal route. + + + + + + + + A state, commonwealth, province, or other such geopolitical subdivision of a country. + + + + + A state, commonwealth, province, or other such geopolitical subdivision of a country. + + + + + + + + A state, commonwealth, province, or other such geopolitical subdivision of a country. + + + + + + + + A road, thoroughfare or highway. + + + + + + + + An association between two persons who are legally married to each other. + + + + + A measurement. + + + + + A measurement value. + + + + + + + + A unit that qualifies the measurement value. + + + + + A measurement value. + + + + + Information that further qualifies primary data; data about data. + + + + + A North American Numbering Plan telephone number. + + + + + + + + A thing that is owed to someone else. + + + + + A kind of obligation. + + + + + An amount of money or quantity of time still required to be spent in order to fulfill an obligation. + + + + + An amount of a payment obligation that has not been made. + + + + + + + + A date on which an obligation ends. + + + + + An entity that must fulfill an obligation. + + + + + A waival or dismissal of an obligation. + + + + + A description of an exemption from an obligation. + + + + + An interval or period at which an obligation is required to be fulfilled. + + + + + An entity to whom an obligation must be fulfilled. + + + + + A periodic basis on which an obligation must be met. + + + + + A description of what is necessary in order to fulfill an obligation. + + + + + A date on which an obligation begins. + + + + + A unit which conducts some sort of business or operations. + + + + + + + + A unit which conducts some sort of business or operations. + + + + + An association between an organization and another organization. + + + + + An association between an organization and contact information. + + + + + An identification that references an organization. + + + + + A location of an organization. + + + + + A name of an organization. + + + + + A preferred means of contacting an organization. + + + + + A name of a subdivision of an organization. + + + + + A tax identification assigned to an organization. + + + + + A name of a high-level division of an organization. + + + + + A human being. + + + + + + + + A human being. + + + + + An association between people. + + + + + A date a person was born. + + + + + A capacity or ability of a person for something. + + + + + A son or daughter of a person. + + + + + + + + A county that assigns rights, duties, and privileges to a person because of the birth or naturalization of the person in that country. + + + + + A county that assigns rights, duties, and privileges to a person because of the birth or naturalization of the person in that country. + + + + + + + + An association between a person and contact information. + + + + + A representation or an encoding of the identifying characteristics of a person's DNA. + + + + + A date a person died or was declared legally dead. + + + + + A person dependent upon the guardianship of another. + + + + + + + + An employment of a person. + + + + + A cultural lineage of a person. + + + + + A cultural lineage of a person. + + + + + + + + A cultural lineage of a person. + + + + + + + + A color of the eyes of a person. + + + + + A color of the eyes of a person. + + + + + + + + A representation or an encoding of the identifying characteristics of a set of a persons fingerprints. + + + + + A complete name of a person. + + + + + An association between a person and a gang. + + + + + A first name of a person. + + + + + A person with guardianship over another. + + + + + + + + A color of the hair of a person. + + + + + A color of the hair of a person. + + + + + + + + A measurement of the height of a person. + + + + + True if a person understands and speaks English; false otherwise. + + + + + An original surname of a person before changed by marriage. + + + + + A middle name of a person. + + + + + A combination of names and/or titles by which a person is known. + + + + + A title or honorific used by a person. + + + + + A term appended after the family name that qualifies the name. + + + + + An association between a person and an organization. + + + + + Information about an identifier with a kind that is not explicitly defined in the standard that refers to a person within a certain domain. + + + + + A father or mother of a person. + + + + + + + + A prominent or easily identifiable aspect of a person. + + + + + A capacity of a person for a language with which that person has the strongest familiarity. + + + + + A classification of a person based on factors such as geographical locations and genetics. + + + + + A classification of a person based on factors such as geographical locations and genetics. + + + + + + + + A classification of a person based on factors such as geographical locations and genetics. + + + + + + + + A gender or sex of a person. + + + + + A gender or sex of a person. + + + + + + + + An identification of a person based on a state-issued ID card. + + + + + A last name or family name of a person. + + + + + An identification used to refer to a specific person within the tax system of a country. + + + + + A kind of union between two people. + + + + + A kind of union between two people. + + + + + + + + A status of a union between two people. + + + + + A measurement of the weight of a person. + + + + + A specific kind of physical feature. + + + + + A specific kind of physical feature. + + + + + + + + A specific kind of physical feature. + + + + + + + + A state or other jurisdictional unit where a property registration was issued. + + + + + An association between related cases. + + + + + A property of a role object. This specifies the base object, of which the role object is a function. + + + + + An entity of whom the role object is a function. + + + + + + + + + An organization of whom the role object is a function. + + + + + + + + + A person of whom the role object is a function. + + + + + + + + + An activity planned to occur on a certain date and time. + + + + + A date for which an activity is scheduled. + + + + + A time at which an activity is scheduled to end. + + + + + A time at which an activity is scheduled to begin. + + + + + A sensitivity level of the information. + + + + + A unit of measurement of speed. + + + + + A date on which something begins. + + + + + A date a status was set, effected, or reported. + + + + + A description of a status or condition of something or someone. + + + + + A status or condition of something or someone. + + + + + A kind of street. + + + + + Any additional parts of a street reference that follows the street category and post directional. + + + + + A complete reference for a street. + + + + + A name of a street. + + + + + A number that identifies a particular unit or location within a street. + + + + + A direction that appears after a street name. + + + + + A direction that appears before a street name. + + + + + An address. + + + + + + + + A process of overseeing, supervising, or keeping track in some capacity of a person. + + + + + A status of the custody of a person under supervision. + + + + + A facility at which a subject is being supervised. + + + + + A dialing code for a state or province for phone numbers in the USA, Canada, Mexico, and the Caribbean. + + + + + An international dialing code for a country. + + + + + A portion of a telephone number that usually represents a central telephone switch. + + + + + A portion of a telephone number that identifies the individual circuit within an exchange. + + + + + A telephone number for a telecommunication device. + + + + + A complete telephone number. + + + + + A telephone number. + + + + + A telephone number. + + + + + Additional numbers to be entered after a call connects to be directed to the appropriate place. + + + + + A motor-driven conveyance designed to carry its operator, and optionally passengers and cargo, over land. + + + + + A single, upper-most, front-most, or majority color of a vehicle. + + + + + + + + A unique combination of alphanumeric characters that identifies a specific vehicle. + + + + + A manufacturer of a vehicle. + + + + + A specific design or class of vehicle made by a manufacturer. + + + + + A style of a vehicle. + + + + + + + + A unit of measure of the weight value. + + + + + A year. + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/nonauthoritative-code/2.0/constraint-schema-transform.xsl b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/nonauthoritative-code/2.0/constraint-schema-transform.xsl new file mode 100644 index 000000000..f2e9f1524 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/nonauthoritative-code/2.0/constraint-schema-transform.xsl @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/nonauthoritative-code/2.0/nonauthoritative-code.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/nonauthoritative-code/2.0/nonauthoritative-code.xsd new file mode 100644 index 000000000..6950d371b --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/nonauthoritative-code/2.0/nonauthoritative-code.xsd @@ -0,0 +1,41 @@ + + + + Non-authoritative codes for the direction of a person's pose in an image. + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/proxy/xsd/2.0/xsd.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/proxy/xsd/2.0/xsd.xsd new file mode 100644 index 000000000..e7a7cc315 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/proxy/xsd/2.0/xsd.xsd @@ -0,0 +1,139 @@ + + + + Proxy types that carry dictionary metadata and have XML data type simple contents. + + true + + + + + + + + + + + + + + + + + + + A data type for Base64-encoded binary data. + + + + + + + + + + + + + A data type for binary-valued logic (true/false). + + + + + + + + + + + + + A data type for a calendar date with the format CCYY-MM-DD. + + + + + + + + + + + + + + + + + + + + + + + + + A data type for arbitrary precision decimal numbers. + + + + + + + + + + + + + A data type for a duration of time with the format PnYnMnDTnHnMnS, where nY is the number of years, nM is the number of months, nD is the number of days, nH is the number of hours, nM is the number of minutes, and nS is the number of seconds. + + + + + + + + + + + + + A data type for a Gregorian calendar year with the format CCYY. + + + + + + + + + + + + + A data type for character strings in XML. + + + + + + + + + + + + + A data type for an instant of time with the format hh:mm:ss.sss. + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/structures/2.0/structures.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/structures/2.0/structures.xsd new file mode 100644 index 000000000..a9166ee7a --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/structures/2.0/structures.xsd @@ -0,0 +1,145 @@ + + + + The structures schema provides support for + fundamental NIEM linking mechanisms, as well as providing base types + for definition of NIEM-conformant types. + + + + The Object resource defines an identifier which acts + as a conceptual base for objects in NIEM-conformant + schemas. + + + + + + The Association resource defines an identifier which + acts as a conceptual base for association in NIEM-conformant + schemas. + + + + + + + The id attribute is used to define XML IDs for + NIEM objects. These IDs may be targets of reference elements, + metadata attributes, and link metadata + attributes. + + + + + The linkMetadata attribute allows an element to + point to metadata that affects the relationship between the context + and the value of the object. + + + + + The attribute metadata allows an object to point + to metadata that affects itself. + + + + + The ref attribute is used by reference elements in + NIEM to refer to an object via an ID reference, rather than including + the object itself as element content. + + + + + The sequenceID attribute allows a series of + elements to define a sequence for content that does not correspond to + the order of element declarations within a type. This attribute may + override the sequence of elements appearing within an + instance. + + + + + The SimpleObjectAttributeGroup attribute group + provides a collection of attributes which are appropriate for + definition of object types. + + + + + + + + The Augmentation element provides a substitution + group head for augmentations. The designer of a message or object may + use this element within an object definition. This will allow the + selection of augmentations dynamically, at run time (or at least + schema selection time) rather than at schema authoring + time. + + + + + The Metadata element provides a substitution group + head for metadata. Like the substitution group head for + augmentations, this allows selection of metadata to be decided late + in message creation, rather than at schema authoring time. This + element may also be used to provide a single point in a container + where all metadata for a message may be + deposited. + + + + + The AugmentationType type is a base type for all + augmentations. An augmentation may have metadata and an ID, but may + not have link metadata, as it does not establish a relationship + between its value and its context. The individual element contents of + an augmentation, however, do establish a relationship between the + context of the augmentation and the values of the individual + elements. + + + + + + + The ComplexObjectType type provides a base class + for object definition, association definitions, and external adapter + type definitions. An instance of one of these types may have an ID. + It may have metadata as it establishes the existence of an object + (maybe a conceptual object). It may also have link metadata, as an + element of one of these types establishes a relationship between its + value and its context. + + + + + + + + The MetadataType type is a base class for metadata + type definition. This type provides only an ID, as the metadata may + be referenced. It does not itself have metadata, and does not have + link metadata. + + + + + + The ReferenceType type is the type of all + reference elements within NIEM-conformant schemas. This type provides + a reference attribute, to reference an object defined elsewhere. It + includes an ID, as the link established by a reference element may + need to be identified, and it includes link metadata, as an element + of this type establishes a relationship between its context and the + referenced object. It does not contain metadata, as it does not + itself establish the existence of an object; it relies on a + definition located elsewhere. + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/unece_rec20-misc/2.0/constraint-schema-transform.xsl b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/unece_rec20-misc/2.0/constraint-schema-transform.xsl new file mode 100644 index 000000000..a2a65c383 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/unece_rec20-misc/2.0/constraint-schema-transform.xsl @@ -0,0 +1,244 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/unece_rec20-misc/2.0/unece_rec20-misc.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/unece_rec20-misc/2.0/unece_rec20-misc.xsd new file mode 100644 index 000000000..274b4f718 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/unece_rec20-misc/2.0/unece_rec20-misc.xsd @@ -0,0 +1,263 @@ + + + + Miscellaneous unit of measure codes from the United Nations Economic Commission for Europe Recommendation No. 20, Codes for Units of Measure used in International Trade. + + true + + + + + + + + + micro-inch + + + + + nautical mile + + + + + parsec + + + + + decimetre + + + + + micrometre (micron) + + + + + foot + + + + + yard + + + + + hectometre + + + + + fathom + + + + + chain + + + + + mile (statute mile) + + + + + kilometre + + + + + milli-inch + + + + + millimetre + + + + + inch + + + + + nanometre + + + + + astronomical unit + + + + + femtometre + + + + + light year + + + + + centimetre + + + + + picometre + + + + + metre + + + + + angstrom + + + + + decametre + + + + + + + + + + + + + + + + centigram + + + + + decigram + + + + + milligram + + + + + microgram + + + + + decagram + + + + + gram + + + + + hundred pounds (cwt) / hundred weight (US) + + + + + megagram + + + + + decitonne + + + + + tonne (metric ton) + + + + + stone (UK) + + + + + grain + + + + + kilotonne + + + + + ton (UK) or long ton (US) + + + + + troy ounce or apothecary ounce + + + + + ton (US) or short ton (UK/US) + + + + + megagram + + + + + pound + + + + + kilogram + + + + + ounce + + + + + hundred weight (UK) + + + + + hectogram + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/usps_states/2.0/constraint-schema-transform.xsl b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/usps_states/2.0/constraint-schema-transform.xsl new file mode 100644 index 000000000..239fee3d7 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/usps_states/2.0/constraint-schema-transform.xsl @@ -0,0 +1,292 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/usps_states/2.0/usps_states.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/usps_states/2.0/usps_states.xsd new file mode 100644 index 000000000..83a1256de --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/constraint/niem/usps_states/2.0/usps_states.xsd @@ -0,0 +1,332 @@ + + + + U.S. state and possession abbreviations from the U.S. Postal Service (USPS). + + true + + + + + + + + + KANSAS + + + + + NORTH DAKOTA + + + + + MASSACHUSETTS + + + + + GEORGIA + + + + + IOWA + + + + + NEW HAMPSHIRE + + + + + MARSHALL ISLANDS + + + + + TEXAS + + + + + NEVADA + + + + + OKLAHOMA + + + + + Armed Forces Americas (except Canada) + + + + + ALASKA + + + + + PUERTO RICO + + + + + IDAHO + + + + + VERMONT + + + + + SOUTH CAROLINA + + + + + AMERICAN SAMOA + + + + + MONTANA + + + + + WEST VIRGINIA + + + + + MISSOURI + + + + + DISTRICT OF COLUMBIA + + + + + WISCONSIN + + + + + ILLINOIS + + + + + COLORADO + + + + + VIRGIN ISLANDS + + + + + DELAWARE + + + + + NEW JERSEY + + + + + Armed Forces Africa, Canada, Europe, Middle East + + + + + NORTHERN MARIANA ISLANDS + + + + + MICHIGAN + + + + + WASHINGTON + + + + + FEDERATED STATES OF MICRONESIA + + + + + CALIFORNIA + + + + + OREGON + + + + + NEW YORK + + + + + NORTH CAROLINA + + + + + KENTUCKY + + + + + UTAH + + + + + MARYLAND + + + + + SOUTH DAKOTA + + + + + PALAU + + + + + CONNECTICUT + + + + + NEBRASKA + + + + + ARIZONA + + + + + MAINE + + + + + OHIO + + + + + HAWAII + + + + + WYOMING + + + + + RHODE ISLAND + + + + + ARKANSAS + + + + + GUAM + + + + + NEW MEXICO + + + + + PENNSYLVANIA + + + + + ALABAMA + + + + + TENNESSEE + + + + + MINNESOTA + + + + + INDIANA + + + + + VIRGINIA + + + + + LOUISIANA + + + + + FLORIDA + + + + + Armed Forces Pacific + + + + + MISSISSIPPI + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/CCTS_CCT_SchemaModule-2.1.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/CCTS_CCT_SchemaModule-2.1.xsd new file mode 100644 index 000000000..c5f66db90 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/CCTS_CCT_SchemaModule-2.1.xsd @@ -0,0 +1,731 @@ + + + + + + + + + + + + + + UNDT000001 + CCT + Amount. Type + 1.0 + A number of monetary units specified in a currency where the unit of the currency is explicit or implied. + Amount + decimal + + + + + + + + UNDT000001-SC2 + SC + Amount Currency. Identifier + The currency of the amount. + Amount Currency + Identification + Identifier + string + Reference UNECE Rec 9, using 3-letter alphabetic codes. + + + + + + + UNDT000001-SC3 + SC + Amount Currency. Code List Version. Identifier + The VersionID of the UN/ECE Rec9 code list. + Amount Currency + Code List Version + Identifier + string + + + + + + + + + + + + UNDT000002 + CCT + Binary Object. Type + 1.0 + A set of finite-length sequences of binary octets. + Binary Object + binary + + + + + + + + UNDT000002-SC2 + SC + Binary Object. Format. Text + The format of the binary content. + Binary Object + Format + Text + string + + + + + + + UNDT000002-SC3 + SC + Binary Object. Mime. Code + The mime type of the binary object. + Binary Object + Mime + Code + string + + + + + + + UNDT000002-SC4 + SC + Binary Object. Encoding. Code + Specifies the decoding algorithm of the binary object. + Binary Object + Encoding + Code + string + + + + + + + UNDT000002-SC5 + SC + Binary Object. Character Set. Code + The character set of the binary object if the mime type is text. + Binary Object + Character Set + Code + string + + + + + + + UNDT000002-SC6 + SC + Binary Object. Uniform Resource. Identifier + The Uniform Resource Identifier that identifies where the binary object is located. + Binary Object + Uniform Resource Identifier + Identifier + string + + + + + + + UNDT000002-SC7 + SC + Binary Object. Filename.Text + The filename of the binary object. + Binary Object + Filename + Text + string + + + + + + + + + + + + UNDT000007 + CCT + Code. Type + 1.0 + A character string (letters, figures, or symbols) that for brevity and/or languange independence may be used to represent or replace a definitive value or text of an attribute together with relevant supplementary information. + Code + string + Should not be used if the character string identifies an instance of an object class or an object in the real world, in which case the Identifier. Type should be used. + + + + + + + + UNDT000007-SC2 + SC + Code List. Identifier + The identification of a list of codes. + Code List + Identification + Identifier + string + + + + + + + UNDT000007-SC3 + SC + Code List. Agency. Identifier + An agency that maintains one or more lists of codes. + Code List + Agency + Identifier + string + Defaults to the UN/EDIFACT data element 3055 code list. + + + + + + + UNDT000007-SC4 + SC + Code List. Agency Name. Text + The name of the agency that maintains the list of codes. + Code List + Agency Name + Text + string + + + + + + + UNDT000007-SC5 + SC + Code List. Name. Text + The name of a list of codes. + Code List + Name + Text + string + + + + + + + UNDT000007-SC6 + SC + Code List. Version. Identifier + The version of the list of codes. + Code List + Version + Identifier + string + + + + + + + UNDT000007-SC7 + SC + Code. Name. Text + The textual equivalent of the code content component. + Code + Name + Text + string + + + + + + + UNDT000007-SC8 + SC + Language. Identifier + The identifier of the language used in the code name. + Language + Identification + Identifier + string + + + + + + + UNDT000007-SC9 + SC + Code List. Uniform Resource. Identifier + The Uniform Resource Identifier that identifies where the code list is located. + Code List + Uniform Resource Identifier + Identifier + string + + + + + + + UNDT000007-SC10 + SC + Code List Scheme. Uniform Resource. Identifier + The Uniform Resource Identifier that identifies where the code list scheme is located. + Code List Scheme + Uniform Resource Identifier + Identifier + string + + + + + + + + + + + + UNDT000008 + CCT + Date Time. Type + 1.0 + A particular point in the progression of time together with the relevant supplementary information. + Date Time + string + Can be used for a date and/or time. + + + + + + + + UNDT000008-SC1 + SC + Date Time. Format. Text + The format of the date time content + Date Time + Format + Text + string + + + + + + + + + + + + UNDT000011 + CCT + Identifier. Type + 1.0 + A character string to identify and distinguish uniquely, one instance of an object in an identification scheme from all other objects in the same scheme together with relevant supplementary information. + Identifier + string + + + + + + + + UNDT000011-SC2 + SC + Identification Scheme. Identifier + The identification of the identification scheme. + Identification Scheme + Identification + Identifier + string + + + + + + + UNDT000011-SC3 + SC + Identification Scheme. Name. Text + The name of the identification scheme. + Identification Scheme + Name + Text + string + + + + + + + UNDT000011-SC4 + SC + Identification Scheme Agency. Identifier + The identification of the agency that maintains the identification scheme. + Identification Scheme Agency + Identification + Identifier + string + Defaults to the UN/EDIFACT data element 3055 code list. + + + + + + + UNDT000011-SC5 + SC + Identification Scheme Agency. Name. Text + The name of the agency that maintains the identification scheme. + Identification Scheme Agency + Agency Name + Text + string + + + + + + + UNDT000011-SC6 + SC + Identification Scheme. Version. Identifier + The version of the identification scheme. + Identification Scheme + Version + Identifier + string + + + + + + + UNDT000011-SC7 + SC + Identification Scheme Data. Uniform Resource. Identifier + The Uniform Resource Identifier that identifies where the identification scheme data is located. + Identification Scheme Data + Uniform Resource Identifier + Identifier + string + + + + + + + UNDT000011-SC8 + SC + Identification Scheme. Uniform Resource. Identifier + The Uniform Resource Identifier that identifies where the identification scheme is located. + Identification Scheme + Uniform Resource Identifier + Identifier + string + + + + + + + + + + + + UNDT000012 + CCT + Indicator. Type + 1.0 + A list of two mutually exclusive Boolean values that express the only possible states of a Property. + Indicator + string + + + + + + + + UNDT000012-SC2 + SC + Indicator. Format. Text + Whether the indicator is numeric, textual or binary. + Indicator + Format + Text + string + + + + + + + + + + + + UNDT000013 + CCT + Measure. Type + 1.0 + A numeric value determined by measuring an object along with the specified unit of measure. + Measure + decimal + + + + + + + + UNDT000013-SC2 + SC + Measure Unit. Code + The type of unit of measure. + Measure Unit + Code + Code + string + Reference UNECE Rec. 20 and X12 355 + + + + + + + UNDT000013-SC3 + SC + Measure Unit. Code List Version. Identifier + The version of the measure unit code list. + Measure Unit + Code List Version + Identifier + string + + + + + + + + + + + + UNDT000014 + CCT + Numeric. Type + 1.0 + Numeric information that is assigned or is determined by calculation, counting, or sequencing. It does not require a unit of quantity or unit of measure. + Numeric + string + + + + + + + + UNDT000014-SC2 + SC + Numeric. Format. Text + Whether the number is an integer, decimal, real number or percentage. + Numeric + Format + Text + string + + + + + + + + + + + + UNDT000018 + CCT + Quantity. Type + 1.0 + A counted number of non-monetary units possibly including fractions. + Quantity + decimal + + + + + + + + UNDT000018-SC2 + SC + Quantity. Unit. Code + The unit of the quantity + Quantity + Unit Code + Code + string + + + + + + + UNDT000018-SC3 + SC + Quantity Unit. Code List. Identifier + The quantity unit code list. + Quantity Unit + Code List + Identifier + string + + + + + + + UNDT000018-SC4 + SC + Quantity Unit. Code List Agency. Identifier + The identification of the agency that maintains the quantity unit code list + Quantity Unit + Code List Agency + Identifier + string + Defaults to the UN/EDIFACT data element 3055 code list. + + + + + + + UNDT000018-SC5 + SC + Quantity Unit. Code List Agency Name. Text + The name of the agency which maintains the quantity unit code list. + Quantity Unit + Code List Agency Name + Text + string + + + + + + + + + + + + UNDT000019 + CCT + Text. Type + 1.0 + A character string (i.e. a finite set of characters) generally in the form of words of a language. + Text + string + + + + + + + + UNDT000019-SC2 + SC + Language. Identifier + The identifier of the language used in the content component. + Language + Identification + Identifier + string + + + + + + + UNDT000019-SC3 + SC + Language. Locale. Identifier + The identification of the locale of the language. + Language + Locale + Identifier + string + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-CaseListQueryMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-CaseListQueryMessage.xsd new file mode 100644 index 000000000..6826bcff3 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-CaseListQueryMessage.xsd @@ -0,0 +1,86 @@ + + + + + + CaseListQueryMessage + + true + + + + + + + + + + + This is a query for a list of cases that match a set of criteria including case participants, case classification, case status, and date of the case was initiated. + + + + + + + + + + + + + + Placeholder for all case participants, i.e. persons or organizations playing a role in a case. This is where all actor details are expressed. + + + + + + + + + + + + + + + Structure for general information about a case used in a query. + + + + + This is a query for a list of cases that match a set of criteria including case participants, case classification, case status, and date of the case was initiated. + + + + + The beginning and ending filing dates/times of cases about which information is sought in this query. + + + + + Information describing a participant when a query seeks information about the cases in which the person or organization is a participant. + + + + + A unique identifier assigned by the filing assembly MDE for the person who is managing the interface between the filer and the filing assembly MDE. This person will receive secondary service on behalf of the filer. This is also the serviceRecipientID for subsequent filings in this case, and asynchronous responses to this filing. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-CaseListResponseMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-CaseListResponseMessage.xsd new file mode 100644 index 000000000..d121e9c32 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-CaseListResponseMessage.xsd @@ -0,0 +1,49 @@ + + + + + + CaseListResponseMessage + + true + + + + + + + + + + + A synchronous response to a GetCaseListQueryMessage. + + + + + + + + + + + + A synchronous response to a GetCaseListQueryMessage. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-CaseQueryMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-CaseQueryMessage.xsd new file mode 100644 index 000000000..694c66b51 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-CaseQueryMessage.xsd @@ -0,0 +1,108 @@ + + + + + + CaseQueryMessage + + true + + + + + + + + + + + A message requesting a list of cases from a court's case management information system conforming to the parameter or parameters identified in the message. + + + + + + + + + + + + + A message requesting a list of cases from a court's case management information system conforming to the parameter or parameters identified in the message. + + + + + + + + + + + + + + + + + + A filter criterion for calendar events. If present, the response should only include calendar events that fall between the from and to dates and times. + + + + + Filter criterion indicating that only calendar entries of a specified type are being requested. + + + + + Criteria limiting the case information to be returned. + + + + + A message requesting a list of cases from a court's case management information system conforming to the parameter or parameters identified in the message. + + + + + A filter criterion for docket entries. If present, the response should only include docket entries that fall between the from and to dates and times. + + + + + Filter criterion indicating that only docket entries of a specified type are being requested. + + + + + Indicates whether requester wishes participant information to be included in the response. + + + + + Indicates whether requester wishes docket entry information to be included in the response. + + + + + Indicates whether requester wishes calendar event information to be included in the response. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-CaseResponseMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-CaseResponseMessage.xsd new file mode 100644 index 000000000..90d19b2e4 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-CaseResponseMessage.xsd @@ -0,0 +1,48 @@ + + + + + + CaseResponseMessage + + true + + + + + + + + + + The response to a GetCaseInformationQuery. + + + + + + + + + + + + A message requesting a list of cases from a court's case management information system conforming to the parameter or parameters identified in the message. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-CoreFilingMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-CoreFilingMessage.xsd new file mode 100644 index 000000000..c02a1267f --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-CoreFilingMessage.xsd @@ -0,0 +1,66 @@ + + + + + + CoreFilingMessage + + true + + + + + + + + + + The structure of a Filing including any Payment Information will be documented in this section. This describes the filing transaction between the Filing Assembly MDE and the Filing Review MDE. This information will become part of the Record Docketing between the Filing Review MDE and the Court Record MDE but does not necessarily describe the information that is actually stored in the Court Record. + + + + + + + + + + + + + + + The structure of a Filing including any Payment Information will be documented in this section. This describes the filing transaction between the Filing Assembly MDE and the Filing Review MDE. This information will become part of the Record Docketing between the Filing Review MDE and the Court Record MDE but does not necessarily describe the information that is actually stored in the Court Record. + + + + + Indicator by the filer that something in the message requires sensitive or confidential treatment. (This replaces the former "request to seal" document metadata.) + + + + + A document included in a Filing that supports the Document. This document is not separately entered on the docket or register of actions. + + + + + The pleading, motion or order that is the main document in a Filing. A Document may have Attachments. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-CourtPolicyQueryMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-CourtPolicyQueryMessage.xsd new file mode 100644 index 000000000..2eafbeff1 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-CourtPolicyQueryMessage.xsd @@ -0,0 +1,45 @@ + + + + + + CourtPolicyQueryMessage + + true + + + + + + + + + + + A request for a court's Court Policy. + + + + + + + + A request for a court's Court Policy. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-CourtPolicyResponseMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-CourtPolicyResponseMessage.xsd new file mode 100644 index 000000000..5e369ab6c --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-CourtPolicyResponseMessage.xsd @@ -0,0 +1,446 @@ + + + + + + CourtPolicyResponseMessage + + true + + + + + + + + + + + + A type of court case. + + + + + Appellate case type + + + + + Bankruptcy case type + + + + + Citation case type + + + + + Civil case type + + + + + Criminal case type + + + + + Domestic case type + + + + + Juvenile case type + + + + + + + A type of court case. + + + + + + + + + + A Genericode list of valid codes for an element in a particular court to be substituted for an ECF element. + + + + + + + + + + + + + + + A schema that defines a court-specific data structure to be substituted for an ECF element. + + + + + + + + + + + + + A request for a court's Court Policy. + + + + + + + + The response to a request for a court's Court Policy. + + + + + + + + + + + + + + + Within Court Policy, the policies that are accessed by a person or organization developing an applications or configuring an application to interact with a court for the purpose of structuring the interactions with that court. This information is needed once and is not accessed dynamically while interacting with the court. + + + + + + + + + + + + + + + + + + + + + + + + + Name of a major design element. + + + + + CourtRecord MDE + + + + + FilingAssembly MDE + + + + + FilingReview MDE + + + + + Service MDE + + + + + + + Name of a major design element. + + + + + + + + + + Name of an MDE operation. + + + + + GetFeesCalculation query + + + + + GetCase query + + + + + GetFeesCaseList query + + + + + GetDocument query + + + + + GetFilingList query + + + + + GetFilingStatus query + + + + + GetPolicy query + + + + + GetServiceInformation query + + + + + NotifyFilingReview message + + + + + NotifyDocketing message + + + + + RecordFiling message + + + + + ReviewFiling message + + + + + ServeFiling message + + + + + + + Name of an MDE operation. + + + + + + + + + + Symmetric or asymmetric keys used to encrypt and decrypt, or verify signed messages or documents exchanged with the court. + + + + + + + + + + + + Within Court Policy, the policies that are accessed dynamically by applications interacting with a court. + + + + + + + + + + + + + Whether the court will accept electronic filing of documents requiring filing fees. + + + + + Whether the court will accept electronic filing of documents for which the filer requests confidential or sealed treatment by the court. + + + + + Does court accept placing multiple lead documents in a single message + + + + + A Genericode list of valid codes for an element in a particular court to be substituted for an ECF element. The 'code' column of the codelist includes the allowed values. + + + + + A URI reference to a court-specific codelist defined in Genericode. + + + + + A schema that defines a court-specific data structure to be substituted for an ECF element.. + + + + + A URI reference to a court-specific extension. + + + + + The response to a request for a court's Court Policy. + + + + + Within Court Policy, the policies that are accessed by a person or organization developing an applications or configuring an application to interact with a court for the purpose of structuring the interactions with that court. This information is needed once and is not accessed dynamically while interacting with the court. + + + + + The name of an ECF element to be substituted by a court-specific codelist or extension. + + + + + The date on which a court code list or extension became or will become allowed. + + + + + The date on which a court code list or extension was or will be terminated. + + + + + Indicates whether fees may be required for some filings. + + + + + Indicates whether the e-filing system supports the GetFeesCalculation query. + + + + + Indicates whether the e-filing system supports the GetCaseList query. + + + + + Name of a major design element. + + + + + The maximum allowed attachment size, in bytes. Does not appear if there is no maximum. + + + + + Maximum allowed size of the Court Filing Message Stream, in bytes. Does not appear if there is no maximum. + + + + + The date on which a court's Court Policy was last revised. + + + + + The version of court policy reported by this message. Up to the court to define the format of this, and describe in human-readable court policy. + + + + + Symmetric or asymmetric keys used to encrypt and decrypt, or verify signed messages or documents exchanged with the court. + + + + + Within Court Policy, the policies that are accessed dynamically by applications interacting with a court. + + + + + A structure containing indicators that signal support by the e-filing system for each ECF case type. + + + + + A message profile approved for use by the OASIS LegalXML Member Section Electronic Court Filing Technical Committee that is supported by this court. + + true + + + + + + Name of an MDE operation. + + + + + A signature profile approved for use by the OASIS LegalXML Member Section Electronic Court Filing Technical Committee that is supported by this court. + + true + + + + + + Whether court allows attachments via remote URLs. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-DocumentQueryMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-DocumentQueryMessage.xsd new file mode 100644 index 000000000..1e86edeb8 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-DocumentQueryMessage.xsd @@ -0,0 +1,50 @@ + + + + + + DocumentQueryMessage + + true + + + + + + + + + + + A request for an electronic document in the court's official record. + + + + + + + + + + + + + A request for an electronic document in the court's official record. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-DocumentResponseMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-DocumentResponseMessage.xsd new file mode 100644 index 000000000..c3c14ef7a --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-DocumentResponseMessage.xsd @@ -0,0 +1,49 @@ + + + + + + DocumentResponseMessage + + true + + + + + + + + + + + The court's response to a request for an electronic document in the court's official record. + + + + + + + + + + + + The court's response to a request for an electronic document in the court's official record. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-FeesCalculationQueryMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-FeesCalculationQueryMessage.xsd new file mode 100644 index 000000000..a410b717d --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-FeesCalculationQueryMessage.xsd @@ -0,0 +1,49 @@ + + + + + + FeesCalculationQueryMessage + + true + + + + + + + + + + + This query is a request for the total amount of court fees required for filing of one or more documents in a case. + + + + + + + + + + + + This query is a request for the total amount of court fees required for filing of one or more documents in a case. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-FeesCalculationResponseMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-FeesCalculationResponseMessage.xsd new file mode 100644 index 000000000..0904be469 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-FeesCalculationResponseMessage.xsd @@ -0,0 +1,55 @@ + + + + + + FeesCalculationResponseMessage + + true + + + + + + + + + + + The response to a FeesCalculationQueryMessage, which may either be "0" indicating no fee is due, a currency amount indicating the fee due upon filing, or "unknown" indicating that the court's case management information system is unable to calculate the fee for the proposed filing. + + + + + + + + + + + + + A fee or price required to submit a document. + + + + + The response to a FeesCalculationQueryMessage, which may either be "0" indicating no fee is due, a currency amount indicating the fee due upon filing, or "unknown" indicating that the court's case management information system is unable to calculate the fee for the proposed filing. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-FilingListQueryMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-FilingListQueryMessage.xsd new file mode 100644 index 000000000..32408a4e5 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-FilingListQueryMessage.xsd @@ -0,0 +1,51 @@ + + + + + + FilingListQueryMessage + + true + + + + + + + + + + + This is query to get a list of filings by Filer Identification, Case ID, and/or time period. + + + + + + + + + + + + + + This is query to get a list of filings by Filer Identification, Case ID, or time period. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-FilingListResponseMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-FilingListResponseMessage.xsd new file mode 100644 index 000000000..e14dd3843 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-FilingListResponseMessage.xsd @@ -0,0 +1,67 @@ + + + + + + FilingListResponseMessage + + true + + + + + + + + + + + A court's response to a FilingListQueryMessage. + + + + + + + + + + + + A court's response to a FilingListQueryMessage. + + + + + + + + + + + + + A court's response to a FilingListQueryMessage. + + + + + A filing that matches the criteria in a FilingListQueryMessage. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-FilingStatusQueryMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-FilingStatusQueryMessage.xsd new file mode 100644 index 000000000..4abdd3b43 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-FilingStatusQueryMessage.xsd @@ -0,0 +1,49 @@ + + + + + + FilingStatusQueryMessage + + true + + + + + + + + + + + This is query to get a filing’s status by Filing Number. + + + + + + + + + + + + This is query to get a filing's status by Filer Identification, Case ID, or Filing Number. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-FilingStatusResponseMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-FilingStatusResponseMessage.xsd new file mode 100644 index 000000000..9715ca2a7 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-FilingStatusResponseMessage.xsd @@ -0,0 +1,51 @@ + + + + + + FilingStatusResponseMessage + + true + + + + + + + + + + + A court's response to a FilingStatusQueryMessage. + + + + + + + + + + + + + + A court's response to a FilingStatusQueryMessage. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-MessageReceiptMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-MessageReceiptMessage.xsd new file mode 100644 index 000000000..dd7c5bea9 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-MessageReceiptMessage.xsd @@ -0,0 +1,50 @@ + + + + + + MessageReceiptMessage + + true + + + + + + + + + + + A message returned synchronously to indicate receipt by an MDE of another message. The intent is that this will serve as the synchronous reply to all MDE operations that have an additional asynchronous callback. + + + + + + + + + + + + + A message returned synchronously to indicate receipt by an MDE of another message. The intent is that this will serve as the synchronous reply to all MDE operations that have an additional asynchronous callback. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-PaymentMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-PaymentMessage.xsd new file mode 100644 index 000000000..1e1bfcf93 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-PaymentMessage.xsd @@ -0,0 +1,59 @@ + + + + + + + + + + The payment submitted with a filing. The payment may consist of a fee for filing of the document(s) submitted, or for a fine or other payment due to the court. + + + + + + + + + + + + + A code for the reason why a filer does not have to pay an otherwise applicable payment. Allowable values set forth in Court Policy. Examples are in forma pauperis status granted or a fee waiver application submitted with the filing.. + + true + + + + + + Any text needed to support the exemption assertion (reference to a court order, etc.) + + + + + The payment submitted with a filing. The payment may consist of a fee for filing of the document(s) submitted, or for a fine or other payment due to the court. + + + + + Name of the payer of the FilingPayment. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-PaymentReceiptMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-PaymentReceiptMessage.xsd new file mode 100644 index 000000000..8e88384da --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-PaymentReceiptMessage.xsd @@ -0,0 +1,28 @@ + + + + + + + + + + A receipt to the payment submitted with a filing. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-RecordDocketingCallbackMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-RecordDocketingCallbackMessage.xsd new file mode 100644 index 000000000..73e9807ad --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-RecordDocketingCallbackMessage.xsd @@ -0,0 +1,45 @@ + + + + + + RecordDocketingCallbackMessage + + true + + + + + + + + + + + The message returned from the Court Record MDE to the Filing Review MDE when the functions of entering information onto the docket or register of actions and commiting a filed document(s) to the official court record have been completed, conveying the results of those functions. + + + + + + + + The message returned from the Court Record MDE to the Filing Review MDE when the functions of entering information onto the docket or register of actions and commiting a filed document(s) to the official court record have been completed, conveying the results of those functions. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-RecordDocketingMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-RecordDocketingMessage.xsd new file mode 100644 index 000000000..c92a0f5ee --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-RecordDocketingMessage.xsd @@ -0,0 +1,64 @@ + + + + + + RecordDocketingMessage + + true + + + + + + + + + + + Message resulting from clerk review and edit of a CoreFilingMessage. + + + + + + + + + + + + + + + + + Comments provided by the clerk to the court record system during review. + + + + + Message resulting from clerk review and edit of a CoreFilingMessage. + + + + + Instruction from the clerk to the court record to represent this case as "sealed." + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-ReviewFilingCallbackMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-ReviewFilingCallbackMessage.xsd new file mode 100644 index 000000000..644b34c6d --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-ReviewFilingCallbackMessage.xsd @@ -0,0 +1,45 @@ + + + + + + ReviewFilingCallbackMessage + + true + + + + + + + + + + + The asynchronous message from the Filing Review MDE to the Filing Assembly MDE conveying information concerning the court's actions on the documents submitted for filing in a CoreFilingMessage. + + + + + + + + The asynchronous message from the Filing Review MDE to the Filing Assembly MDE conveying information concerning the court's actions on the documents submitted for filing in a CoreFilingMessage. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-ServiceInformationQueryMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-ServiceInformationQueryMessage.xsd new file mode 100644 index 000000000..1f3bdb3ac --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-ServiceInformationQueryMessage.xsd @@ -0,0 +1,49 @@ + + + + + + ServiceInformationQueryMessage + + true + + + + + + + + + + + A message requesting information concerning the persons entitled to services of filings in a particular court case, together with the electronic addresses and message profiles of their Filing Assembly MDEs and their physical addresses if they are not currently using a Filing Assembly MDE. + + + + + + + + + + + + A message requesting information concerning the persons entitled to services of filings in a particular court case, together with the electronic addresses and message profiles of their Filing Assembly MDEs and their physical addresses if they are not currently using a Filing Assembly MDE. + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-ServiceInformationResponseMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-ServiceInformationResponseMessage.xsd new file mode 100644 index 000000000..227c16cbc --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-ServiceInformationResponseMessage.xsd @@ -0,0 +1,55 @@ + + + + + + ServiceInformationResponseMessage + + true + + + + + + + + + + + The response to a serviceInformationQueryMessage, setting forth the requested information. + + + + + + + + + + + + + The response to a serviceInformationQueryMessage, setting forth the requested information. + + + + + The person or organization to be served in this case + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-ServiceReceiptMessage.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-ServiceReceiptMessage.xsd new file mode 100644 index 000000000..66c599396 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/ECF-4.0-ServiceReceiptMessage.xsd @@ -0,0 +1,77 @@ + + + + + + ServiceReceiptMessage + + true + + + + + + + + + + + + + A synchronous response by a Filing Assembly MDE acknowledging receipt of a service message for one of its clients. + + + + + + + + + + + + A value describing the status of electronic service on a particular recipient. + + + + + + + + + + + + + A synchronous response by a Filing Assembly MDE acknowledging receipt of a service message for one of its clients. + + + + + A value describing the status of electronic service on a particular recipient. + + + + + Status of the service as determined by the system receiving the service. Allowable values defined in ECF-4.0-ValueLevelCode.gc. + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/UBL-CommonAggregateComponents-2.1.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/UBL-CommonAggregateComponents-2.1.xsd new file mode 100644 index 000000000..8e019a4b3 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/UBL-CommonAggregateComponents-2.1.xsd @@ -0,0 +1,36247 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ABIE + Activity Data Line. Details + This class links a Time Period, Measurement for the quantity involved, and to Collaborative Trade Item for the required product. + Activity Data Line + + + + + + + + + BBIE + Activity Data Line. Identifier + An identifier for the Activity Data Line. + 1 + Activity Data Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Activity Data Line. Supply Chain Activity Type Code. Code + A code used to identify an operational exception + 1 + Activity Data Line + Supply Chain Activity Type Code + Code + Code. Type + + + + + + + + + ASBIE + Activity Data Line. Buyer_ Customer Party. Customer Party + An association to the Buyer. + 0..1 + Activity Data Line + Buyer + Customer Party + Customer Party + + + + + + + + + ASBIE + Activity Data Line. Seller_ Supplier Party. Supplier Party + An association to the Seller. + 0..1 + Activity Data Line + Seller + Supplier Party + Supplier Party + + + + + + + + + ASBIE + Activity Data Line. Activity_ Period. Period + An association to Period in which the activity is realized. + 0..1 + Activity Data Line + Activity + Period + Period + + + + + + + + + ASBIE + Activity Data Line. Activity Origin_ Location. Location + An association to a Location (the place where the movement of goods are observed or where the goods are moved from). + 1 + Activity Data Line + Activity Origin + Location + Location + + + + + + + + + ASBIE + Activity Data Line. Activity Final_ Location. Location + An association to a Location (the place where the goods are moved to). + 0..1 + Activity Data Line + Activity Final + Location + Location + + + + + + + + + ASBIE + Activity Data Line. Sales Item + An association to one or more Sales Item. + 1..n + Activity Data Line + Sales Item + Sales Item + + + + + + + + + + + ABIE + Activity Property. Details + Information about specific Activity Properties. + Activity Property + + + + + + + + + BBIE + Activity Property. Name + The name of the Activity Property. + 1 + Activity Property + Name + Name + Name. Type + + + + + + + + + BBIE + Activity Property. Value. Text + The Activity Property value. + 1 + Activity Property + Value + Text + Text. Type + + + + + + + + + + + ABIE + Address. Details + Information about a structured address. + Address + + + + + + + + + BBIE + Address. Identifier + An identifier for a specific address within a scheme of registered addresses. + 0..1 + Address + Identifier + Identifier + Identifier. Type + DetailsKey + + + + + + + + + BBIE + Address. Address Type Code. Code + A code specifying the type of this address, such as business address or home address. + 0..1 + Address + Address Type Code + Code + Code. Type + + + + + + + + + BBIE + Address. Address Format Code. Code + A code specifying the format of this address. + 0..1 + Address + Address Format Code + Code + Code. Type + + + + + + + + + BBIE + Address. Postbox. Text + A post office box number. + 0..1 + Address + Postbox + Text + Text. Type + PostBox, PO Box + 123 + + + + + + + + + BBIE + Address. Floor. Text + An addressable floor of a building. + 0..1 + Address + Floor + Text + Text. Type + SubPremiseNumber + 30 + + + + + + + + + BBIE + Address. Room. Text + A room, suite, or apartment of a building. + 0..1 + Address + Room + Text + Text. Type + SubPremiseNumber + Reception + + + + + + + + + BBIE + Address. Street Name. Name + The name of a street. + 0..1 + Address + Street Name + Name + Name. Type + Thoroughfare + Kwun Tong Road + + + + + + + + + BBIE + Address. Additional_ Street Name. Name + An additional name of a street used to further specify the street name. + 0..1 + Address + Additional + Street Name + Name + Name. Type + Thoroughfare + Cnr Aberdeen Road + + + + + + + + + BBIE + Address. Block Name. Name + The block name, expressed as text, for an area surrounded by streets and usually containing several buildings for this address. + 0..1 + Address + Block Name + Name + Name. Type + Seabird + + + + + + + + + BBIE + Address. Building Name. Name + The name of a building. + 0..1 + Address + Building Name + Name + Name. Type + BuildingName + Plot 421 + + + + + + + + + BBIE + Address. Building Number. Text + The number of a building. + 0..1 + Address + Building Number + Text + Text. Type + PremiseNumber + 388 + + + + + + + + + BBIE + Address. Inhouse_ Mail. Text + A specific location within a building. + 0..1 + Address + Inhouse + Mail + Text + Text. Type + MailStop + + + + + + + + + BBIE + Address. Department. Text + An addressable department of an organization. + 0..1 + Address + Department + Text + Text. Type + Department + Accounts Payable + + + + + + + + + BBIE + Address. Mark Attention. Text + The name, expressed as text, of a person or department in the organization to whom incoming mail is marked with words such as for the attention of or FAO or ATTN for this address. + 0..1 + Address + Mark Attention + Text + Text. Type + + + + + + + + + BBIE + Address. Mark Care. Text + The name, expressed as text, of a person or organization at this address to whom incoming mail is marked with words such as care of or C/O . + 0..1 + Address + Mark Care + Text + Text. Type + + + + + + + + + BBIE + Address. Plot Identification. Text + The textual expression of the unique identifier for the piece of land on which this address is located such as a plot number. + 0..1 + Address + Plot Identification + Text + Text. Type + + + + + + + + + BBIE + Address. City Subdivision Name. Name + A name, expressed as text, of a subdivision of a city for this address, for example, a district or borough. + 0..1 + Address + City Subdivision Name + Name + Name. Type + + + + + + + + + BBIE + Address. City Name. Name + The name of a city, town, or village. + 0..1 + Address + City Name + Name + Name. Type + LocalityName + Hong Kong + + + + + + + + + BBIE + Address. Postal_ Zone. Text + The identifier for an addressable group of properties according to the relevant national postal service, such as a ZIP code or Post Code. + 0..1 + Address + Postal + Zone + Text + Text. Type + PostalCodeNumber + SW11 4EW 2500 GG + + + + + + + + + BBIE + Address. Country Subentity. Text + A territorial division of a country, such as a county or state. + 0..1 + Address + Country Subentity + Text + Text. Type + AdministrativeArea, State, Country, Shire, Canton + Florida , Tamilnadu + + + + + + + + + BBIE + Address. Country Subentity Code. Code + A territorial division of a country, such as a county or state, expressed as a code. + 0..1 + Address + Country Subentity Code + Code + Code. Type + AdministrativeAreaCode, State Code + + + + + + + + + BBIE + Address. Region. Text + An addressable region or group of countries. + 0..1 + Address + Region + Text + Text. Type + LocalityName, Economic Zone + European Union + + + + + + + + + BBIE + Address. District. Text + A geographical division of a country. + 0..1 + Address + District + Text + Text. Type + LocalityName, Area + East Coast + + + + + + + + + BBIE + Address. Timezone Offset. Text + For the time zone in which the address is situated, the measure of time offset from Universal Coordinated Time (UTC). + 0..1 + Address + Timezone Offset + Text + Text. Type + +8:00 -3:00 + + + + + + + + + ASBIE + Address. Address Line + An association to Address Line. + 0..n + Address + Address Line + Address Line + + + + + + + + + ASBIE + Address. Country + An association to Country. + 0..1 + Address + Country + Country + + + + + + + + + ASBIE + Address. Location Coordinate + An association to Location Coordinate. + 0..n + Address + Location Coordinate + Location Coordinate + + + + + + + + + + + ABIE + Address Line. Details + Information about a line of address expressed as unstructured text. + Address Line + + + + + + + + + BBIE + Address Line. Line. Text + A line of address expressed as unstructured text. + 1 + Address Line + Line + Text + Text. Type + 123 Standard Chartered Tower + + + + + + + + + + + ABIE + Air Transport. Details + Information related to an aircraft. + Air Transport + + + + + + + + + BBIE + Air Transport. Aircraft Identifier. Identifier + Identifies a specific aircraft. + 1 + Air Transport + Aircraft Identifier + Identifier + Identifier. Type + + + + + + + + + + + ABIE + Allowance Charge. Details + Information about a charge or discount price component. + Allowance Charge + + + + + + + + + BBIE + Allowance Charge. Identifier + Identifies an Allowance Charge. + 0..1 + Allowance Charge + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Allowance Charge. Charge_ Indicator. Indicator + Indicates whether the Allowance Charge is a charge (true) or a discount (false). + 1 + Allowance Charge + Charge + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Allowance Charge. Allowance Charge Reason Code. Code + The reason for the Allowance Charge, expressed as a code. + 0..1 + Allowance Charge + Allowance Charge Reason Code + Code + Allowance Charge Reason_ Code. Type + + + + + + + + + BBIE + Allowance Charge. Allowance Charge_ Reason. Text + The reason for the Allowance Charge, expressed as text. + 0..1 + Allowance Charge + Allowance Charge + Reason + Text + Text. Type + + + + + + + + + BBIE + Allowance Charge. Multiplier_ Factor. Numeric + The factor applied to the Base Amount to calculate the Allowance Charge. + 0..1 + Allowance Charge + Multiplier + Factor + Numeric + Numeric. Type + 0.20 + + + + + + + + + BBIE + Allowance Charge. Prepaid_ Indicator. Indicator + Indicates whether the Allowance Charge is prepaid (true) or not (false). + 0..1 + Allowance Charge + Prepaid + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Allowance Charge. Sequence. Numeric + Identifies the numerical order sequence in which Allowance Charges are calculated when multiple Allowance Charges apply. If all Allowance Charges apply to the same Base Amount, SequenceNumeric will be 1 for all Allowance Charges. + 0..1 + Allowance Charge + Sequence + Numeric + Numeric. Type + 1, 2, 3, 4, etc. + + + + + + + + + BBIE + Allowance Charge. Amount + The Allowance Charge amount. + 1 + Allowance Charge + Amount + Amount + Amount. Type + 35,23 + + + + + + + + + BBIE + Allowance Charge. Base_ Amount. Amount + The amount to which the MultiplierFactorNumeric is applied to calculate the Allowance Charge. + 0..1 + Allowance Charge + Base + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Allowance Charge. Accounting Cost Code. Code + The buyer s accounting code as applied to the Allowance Charge. + 0..1 + Allowance Charge + Accounting Cost Code + Code + Code. Type + + + + + + + + + BBIE + Allowance Charge. Accounting Cost. Text + The buyer s accounting cost centre as applied to the Allowance Charge expressed as text. + 0..1 + Allowance Charge + Accounting Cost + Text + Text. Type + + + + + + + + + BBIE + Allowance Charge. Per Unit_ Amount. Amount + When this element is used would mean that the |Amount| of the |Allowance Charge| is equal to the PerUnitAmount * the Quantity of Items at the specific line level or, when used at the header level, the total number of items. + 0..1 + Allowance Charge + Per Unit + Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Allowance Charge. Tax Category + An association to Tax Category. + 0..n + Allowance Charge + Tax Category + Tax Category + + + + + + + + + ASBIE + Allowance Charge. Tax Total + An association to Tax Total. + 0..1 + Allowance Charge + Tax Total + Tax Total + + + + + + + + + ASBIE + Allowance Charge. Payment Means + An association to Payment Means. + 0..n + Allowance Charge + Payment Means + Payment Means + + + + + + + + + + + ABIE + Appeal Terms. Details + Information about the terms to present an appeal. + Appeal Terms + + + + + + + + + BBIE + Appeal Terms. Description. Text + Textual description to specifies the terms of the appeal. + 0..n + Appeal Terms + Description + Text + Text. Type + + + + + + + + + ASBIE + Appeal Terms. Presentation_ Period. Period + The time where an appeal can be presented. + 0..1 + Appeal Terms + Presentation + Period + Period + + + + + + + + + ASBIE + Appeal Terms. Appeal Information_ Party. Party + A party that has appeal information. + 0..1 + Appeal Terms + Appeal Information + Party + Party + + + + + + + + + ASBIE + Appeal Terms. Appeal Receiver_ Party. Party + A party to whom appeals should be presented. + 0..1 + Appeal Terms + Appeal Receiver + Party + Party + + + + + + + + + ASBIE + Appeal Terms. Mediation_ Party. Party + A party that can mediate when an appeal is presented. + 0..1 + Appeal Terms + Mediation + Party + Party + + + + + + + + + + + ABIE + Attachment. Details + Information about an attached document. An attachment can be referred to externally (with the URI element) or internally (with the MIME reference element) or contained within the document itself (with the EmbeddedDocument element). + Attachment + + + + + + + + + BBIE + Attachment. Embedded_ Document. Binary Object + Contains an embedded document as a BLOB (binary large object). + 0..1 + Attachment + Embedded + Document + Binary Object + Binary Object. Type + + + + + + + + + ASBIE + Attachment. External Reference + An attached document, externally referred to, referred to in the MIME location, or embedded. + 0..1 + Attachment + External Reference + External Reference + + + + + + + + + + + ABIE + Auction Terms. Details + Terms to be fulfilled by the tenderers if an auction is going to be executed before the awarding. + Auction Terms + + + + + + + + + BBIE + Auction Terms. Auction_ Constraint. Indicator + An indicator that states the use of electronic auctions during the awarding of this tendering process + 0..1 + Auction Terms + Auction + Constraint + Indicator + Indicator. Type + + + + + + + + + BBIE + Auction Terms. Justification_ Description. Text + A textual description justifying the use of an auction for this tendering process. + 0..n + Auction Terms + Justification + Description + Text + Text. Type + + + + + + + + + BBIE + Auction Terms. Description. Text + Textual description of the information available for tenderers during the auction + 0..n + Auction Terms + Description + Text + Text. Type + + + + + + + + + BBIE + Auction Terms. Process_ Description. Text + Textual description of the auction process + 0..n + Auction Terms + Process + Description + Text + Text. Type + + + + + + + + + BBIE + Auction Terms. Conditions_ Description. Text + Textual description of the conditions under which the tenderers will be able to bid + 0..n + Auction Terms + Conditions + Description + Text + Text. Type + + + + + + + + + BBIE + Auction Terms. Electronic Device_ Description. Text + Electronic device and connection technical specifications used for the auction + 0..n + Auction Terms + Electronic Device + Description + Text + Text. Type + + + + + + + + + BBIE + Auction Terms. Auction_ URI. Identifier + URI for the used electronic device. + 0..1 + Auction Terms + Auction + URI + Identifier + Identifier. Type + + + + + + + + + + + ABIE + Awarding Criteria. Details + Criteria defined by a contracting party that will be taken into account when awarding a contract. + Awarding Criteria + + + + + + + + + BBIE + Awarding Criteria. Identifier + The unique identification for this awarding criteria + 0..1 + Awarding Criteria + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Awarding Criteria. Awarding Criteria Type Code. Code + Code that defines the awarding criteria. An awarding criteria can be objective, when it can be evaluated following a formula, or subjective, when a human analysis is required. + 0..1 + Awarding Criteria + Awarding Criteria Type Code + Code + Code. Type + + + + + + + + + BBIE + Awarding Criteria. Description. Text + Textual description of the awarding criteria. + 0..n + Awarding Criteria + Description + Text + Text. Type + + + + + + + + + BBIE + Awarding Criteria. Weight Numeric. Numeric + Specific weight assigned to this awarding criteria. + 0..1 + Awarding Criteria + Weight Numeric + Numeric + Numeric. Type + + + + + + + + + BBIE + Awarding Criteria. Weight. Text + Textual description of the assigned weight for this awarding criteria. + 0..n + Awarding Criteria + Weight + Text + Text. Type + + + + + + + + + BBIE + Awarding Criteria. Calculation Expression. Text + Textual description of the mathematical expression that will be used to evaluate this criteria. + 0..n + Awarding Criteria + Calculation Expression + Text + Text. Type + + + + + + + + + BBIE + Awarding Criteria. Calculation Expression Code. Code + Coded description of the mathematical expression that will be used to evaluate this criteria. + 0..1 + Awarding Criteria + Calculation Expression Code + Code + Code. Type + + + + + + + + + BBIE + Awarding Criteria. Minimum_ Quantity. Quantity + Minimum quantity for a specified or expected awarding criteria. + 0..1 + Awarding Criteria + Minimum + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Awarding Criteria. Maximum_ Quantity. Quantity + Maximum quantity for a specified or expected awarding criteria. + 0..1 + Awarding Criteria + Maximum + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Awarding Criteria. Minimum_ Amount. Amount + Minimum amount for a specified or expected awarding criteria. + 0..1 + Awarding Criteria + Minimum + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Awarding Criteria. Maximum_ Amount. Amount + Maximum amount for a specified or expected awarding criteria. + 0..1 + Awarding Criteria + Maximum + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Awarding Criteria. Minimum Improvement Bid. Text + Textual description of the minimum improvement bid for this awarding criteria when an auction is used. + 0..n + Awarding Criteria + Minimum Improvement Bid + Text + Text. Type + + + + + + + + + ASBIE + Awarding Criteria. Subordinate_ Awarding Criteria. Awarding Criteria + Subcriteria for this awarding criteria + 0..n + Awarding Criteria + Subordinate + Awarding Criteria + Awarding Criteria + + + + + + + + + + + ABIE + Awarding Criteria Response. Details + Response for an awaring criteria defined by the contracting party. + Awarding Criteria Response + + + + + + + + + BBIE + Awarding Criteria Response. Identifier + The unique identification for this awarding criteria response. + 0..1 + Awarding Criteria Response + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Awarding Criteria Response. Awarding Criteria Identifier. Identifier + Identifier for the referred awarding criteria. + 0..1 + Awarding Criteria Response + Awarding Criteria Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Awarding Criteria Response. Awarding Criteria_ Description. Text + Textual description of the awarding criteria. + 0..n + Awarding Criteria Response + Awarding Criteria + Description + Text + Text. Type + + + + + + + + + BBIE + Awarding Criteria Response. Description. Text + Textual description of the awarding criteria response. + 0..n + Awarding Criteria Response + Description + Text + Text. Type + + + + + + + + + BBIE + Awarding Criteria Response. Quantity + Quantity for this awarding criteria. + 0..1 + Awarding Criteria Response + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Awarding Criteria Response. Amount + Amount for this awarding criteria. + 0..1 + Awarding Criteria Response + Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Awarding Criteria Response. Subordinate_ Awarding Criteria Response. Awarding Criteria Response + Subcriteria response for this awarding criteria response. + 0..n + Awarding Criteria Response + Subordinate + Awarding Criteria Response + Awarding Criteria Response + + + + + + + + + + + ABIE + Awarding Terms. Details + Information about the awarding terms of a contract. + Awarding Terms + + + + + + + + + BBIE + Awarding Terms. Weighting Algorithm Code. Code + Code that defines the weighting algorithm for the awarding criteria. + 0..1 + Awarding Terms + Weighting Algorithm Code + Code + Code. Type + + + + + + + + + BBIE + Awarding Terms. Description. Text + Textual general description of the awarding terms. + 0..n + Awarding Terms + Description + Text + Text. Type + + + + + + + + + BBIE + Awarding Terms. Technical Committee_ Description. Text + Textual description of the experts committee evaluating the subjective criteria. + 0..n + Awarding Terms + Technical Committee + Description + Text + Text. Type + + + + + + + + + BBIE + Awarding Terms. Low Tenders_ Description. Text + Textual description of the low tenders exclusion criteria. + 0..n + Awarding Terms + Low Tenders + Description + Text + Text. Type + + + + + + + + + ASBIE + Awarding Terms. Awarding Criteria + A set of defined criteria for awarding this project. + 0..n + Awarding Terms + Awarding Criteria + Awarding Criteria + + + + + + + + + ASBIE + Awarding Terms. Technical Committee_ Person. Person + An association to one or more persons involved in the technical committee to evaluate the subjective criteria. + 0..n + Awarding Terms + Technical Committee + Person + Person + + + + + + + + + + + ABIE + Billing Reference. Details + Information directly relating to a related document. + Billing Reference + + + + + + + + + ASBIE + Billing Reference. Invoice_ Document Reference. Document Reference + An associative reference to Invoice. + 0..1 + Billing Reference + Invoice + Document Reference + Document Reference + + + + + + + + + ASBIE + Billing Reference. Self Billed Invoice_ Document Reference. Document Reference + An associative reference to Self Billed Invoice. + 0..1 + Billing Reference + Self Billed Invoice + Document Reference + Document Reference + + + + + + + + + ASBIE + Billing Reference. Credit Note_ Document Reference. Document Reference + An associative reference to Credit Note. + 0..1 + Billing Reference + Credit Note + Document Reference + Document Reference + + + + + + + + + ASBIE + Billing Reference. Self Billed Credit Note_ Document Reference. Document Reference + An associative reference to Self Billed Credit Note. + 0..1 + Billing Reference + Self Billed Credit Note + Document Reference + Document Reference + + + + + + + + + ASBIE + Billing Reference. Debit Note_ Document Reference. Document Reference + An associative reference to Debit Note. + 0..1 + Billing Reference + Debit Note + Document Reference + Document Reference + + + + + + + + + ASBIE + Billing Reference. Reminder_ Document Reference. Document Reference + An associative reference to Reminder Document Reference + 0..1 + Billing Reference + Reminder + Document Reference + Document Reference + + + + + + + + + ASBIE + Billing Reference. Additional_ Document Reference. Document Reference + An associative reference to Additional Document. + 0..1 + Billing Reference + Additional + Document Reference + Document Reference + + + + + + + + + ASBIE + Billing Reference. Billing Reference Line + An association to Billing Reference Line. + 0..n + Billing Reference + Billing Reference Line + Billing Reference Line + + + + + + + + + + + ABIE + Billing Reference Line. Details + Information about the reference to a Billing line. + Billing Reference Line + + + + + + + + + BBIE + Billing Reference Line. Identifier + An identifier for the Billing Line. + 1 + Billing Reference Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Billing Reference Line. Amount + The amount of the Billing Line, including Allowance Charges but net of taxes. + 0..1 + Billing Reference Line + Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Billing Reference Line. Allowance Charge + An association to Allowance Charge. + 0..n + Billing Reference Line + Allowance Charge + Allowance Charge + + + + + + + + + + + ABIE + Branch. Details + Information about a branch or division of an organization. + Branch + + + + + + + + + BBIE + Branch. Identifier + An identifier for a branch or division of an organization. + 0..1 + Branch + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Branch. Name + The name of a branch or division of an organization. + 0..1 + Branch + Name + Name + Name. Type + + + + + + + + + ASBIE + Branch. Financial Institution + An association to Financial Institution. + 0..1 + Branch + Financial Institution + Financial Institution + + + + + + + + + ASBIE + Branch. Address + An association to Address. + 0..1 + Branch + Address + Address + + + + + + + + + + + ABIE + Budget Account. Details + Information about the budget account. + Budget Account + + + + + + + + + BBIE + Budget Account. Identifier + Identifier for the buget account. + 0..1 + Budget Account + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Budget Account. Budget Year. Numeric + The year for this budget account. + 0..1 + Budget Account + Budget Year + Numeric + Numeric. Type + + + + + + + + + ASBIE + Budget Account. Required_ Classification Scheme. Classification Scheme + An association to required classification categories for budget account + 0..1 + Budget Account + Required + Classification Scheme + Classification Scheme + + + + + + + + + + + ABIE + Budget Account Line. Details + Information about a Budget Account Line + Budget Account Line + + + + + + + + + BBIE + Budget Account Line. Identifier + Identifies a Budget Account Line + 0..1 + Budget Account Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Budget Account Line. Total_ Amount. Amount + Total amount for this Budget Account Line + 0..1 + Budget Account Line + Total + Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Budget Account Line. Budget Account + An association to budget account for this Budget Account Line. + 0..n + Budget Account Line + Budget Account + Budget Account + + + + + + + + + + + ABIE + Budget Amount. Details + Monetary amounts budgeted for the project. + Budget Amount + + + + + + + + + BBIE + Budget Amount. Estimated_ Overall Contract. Amount + The estimated overall amount for the whole project. + 0..1 + Budget Amount + Estimated + Overall Contract + Amount + Amount. Type + + + + + + + + + BBIE + Budget Amount. Total_ Amount. Amount + The monetary value of the total budget which includes net amount, taxes, and material and instalment costs for this procurement project. + 0..1 + Budget Amount + Total + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Budget Amount. Tax Exclusive Amount. Amount + The monetary value of the net budget for this procurement project. + 0..1 + Budget Amount + Tax Exclusive Amount + Amount + Amount. Type + + + + + + + + + BBIE + Budget Amount. Minimum_ Amount. Amount + The total tax amount for the procurement project. + 0..1 + Budget Amount + Minimum + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Budget Amount. Monetary Scope. Text + Textual description of the monetary scope. + 0..n + Budget Amount + Monetary Scope + Text + Text. Type + + + + + + + + + BBIE + Budget Amount. Average_ Subsequent Contract. Amount + The average amount for the subsequent contracts in the framework agreement. + 0..1 + Budget Amount + Average + Subsequent Contract + Amount + Amount. Type + + + + + + + + + ASBIE + Budget Amount. Applicable_ Tax Category. Tax Category + List of taxes that apply to the project + 0..n + Budget Amount + Applicable + Tax Category + Tax Category + + + + + + + + + + + ABIE + Capability. Details + Capability of an economic operator. + Capability + + + + + + + + + BBIE + Capability. Capability Type Code. Code + Code that defines the financial or technical capability such as total revenue, qualified staff, etc + 0..1 + Capability + Capability Type Code + Code + Code. Type + + + + + + + + + BBIE + Capability. Description. Text + Textual description of the capability. + 0..n + Capability + Description + Text + Text. Type + + + + + + + + + BBIE + Capability. Value. Amount + Amount for that capability. + 0..1 + Capability + Value + Amount + Amount. Type + + + + + + + + + BBIE + Capability. Value_ Quantity. Quantity + Quantity for that capability. + 0..1 + Capability + Value + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Capability. Evidence Supplied. Identifier + An ID reference to the Evidence that justifies this capability. + 0..n + Capability + Evidence Supplied + Identifier + Identifier. Type + + + + + + + + + ASBIE + Capability. Validity_ Period. Period + Period of time that capability has been valid. + 0..1 + Capability + Validity + Period + Period + + + + + + + + + + + ABIE + Card Account. Details + Information about a credit card, debit card, or charge card. + Card Account + + + + + + + + + BBIE + Card Account. Primary_ Account Number. Identifier + The card number; the Primary Account Number (PAN). + 1 + Card Account + Primary + Account Number + Identifier + Identifier. Type + 4558 XXXX XXXX XXXX (a real card number) + + + + + + + + + BBIE + Card Account. Network. Identifier + The card network provider. + 1 + Card Account + Network + Identifier + Identifier. Type + VISA, MasterCard, American Express + + + + + + + + + BBIE + Card Account. Card Type Code. Code + The type of card. + 0..1 + Card Account + Card Type Code + Code + Code. Type + Debit Card, Credit Card, Procurement Card + + + + + + + + + BBIE + Card Account. Validity Start Date. Date + The date from which the card is valid. + 0..1 + Card Account + Validity Start Date + Date + Date. Type + + + + + + + + + BBIE + Card Account. Expiry Date. Date + The date up to which the card is valid. + 0..1 + Card Account + Expiry Date + Date + Date. Type + + + + + + + + + BBIE + Card Account. Issuer. Identifier + The identifier for the card issuer. + 0..1 + Card Account + Issuer + Identifier + Identifier. Type + + + + + + + + + BBIE + Card Account. Issue Number. Identifier + The card issue number. + 0..1 + Card Account + Issue Number + Identifier + Identifier. Type + + + + + + + + + BBIE + Card Account. CV2. Identifier + The Card Verification Value. + 0..1 + Card Account + CV2 + Identifier + Identifier. Type + + + + + + + + + BBIE + Card Account. Card Chip Code. Code + The distinction between CHIP and MAG STRIPE cards. + 0..1 + Card Account + Card Chip Code + Code + Chip_ Code. Type + + + + + + + + + BBIE + Card Account. Chip_ Application. Identifier + An identifier for the application (AID) on a chip card that provides the information quoted. + 0..1 + Card Account + Chip + Application + Identifier + Identifier. Type + + + + + + + + + BBIE + Card Account. Holder. Name + The name of the cardholder. + 0..1 + Card Account + Holder + Name + Name. Type + + + + + + + + + + + ABIE + Catalogue Item Specification Update Line. Details + Details of Catalogue Line Item Specification. + Catalogue Item Specification Update Line + + + + + + + + + BBIE + Catalogue Item Specification Update Line. Identifier + A unique instance identifier for the line in this Catalogue document. + 1 + Catalogue Item Specification Update Line + Identifier + Identifier + Identifier. Type + 1 + + + + + + + + + ASBIE + Catalogue Item Specification Update Line. Contractor_ Customer Party. Customer Party + The Customer Party responsible for the contract to which the Catalogue relates. + 0..1 + Catalogue Item Specification Update Line + Contractor + Customer Party + Customer Party + + + + + + + + + ASBIE + Catalogue Item Specification Update Line. Seller_ Supplier Party. Supplier Party + An association to the Seller of the item. + 0..1 + Catalogue Item Specification Update Line + Seller + Supplier Party + Supplier Party + + + + + + + + + ASBIE + Catalogue Item Specification Update Line. Item + An association to Item itself. + 1 + Catalogue Item Specification Update Line + Item + Item + + + + + + + + + + + ABIE + Catalogue Line. Details + The basic element of Catalogue; something that can be bought. + Catalogue Line + + + + + + + + + BBIE + Catalogue Line. Identifier + A unique instance identifier for the line in this Catalogue document. + 1 + Catalogue Line + Identifier + Identifier + Identifier. Type + 1 + + + + + + + + + BBIE + Catalogue Line. Action Code. Code + Code indicating the action required for this item to synchronize with external repositories. + 0..1 + Catalogue Line + Action Code + Code + Code. Type + Replace , Update , Delete , Add + + + + + + + + + BBIE + Catalogue Line. Life Cycle Status Code. Code + Code indicating availability of this line. + 0..1 + Catalogue Line + Life Cycle Status Code + Code + Code. Type + new - announcement only , new and available , deleted - announcement only + + + + + + + + + BBIE + Catalogue Line. Contract Subdivision. Text + Identifies a subdivision of a contract or tender. + 0..1 + Catalogue Line + Contract Subdivision + Text + Text. Type + Installation , Phase One , Support and Maintenance + + + + + + + + + BBIE + Catalogue Line. Note. Text + Free-text note used for non-structured information about the line in the specific Catalogue document (intended to be human readable). + 0..n + Catalogue Line + Note + Text + Text. Type + + + + + + + + + BBIE + Catalogue Line. Orderable_ Indicator. Indicator + Indicates whether the line is orderable (that is, not just for information only). + 0..1 + Catalogue Line + Orderable + Indicator + Indicator + Indicator. Type + TRUE means orderable, FALSE means not orderable + + + + + + + + + BBIE + Catalogue Line. Orderable_ Unit. Text + The unit that can be ordered. + 0..1 + Catalogue Line + Orderable + Unit + Text + Text. Type + + + + + + + + + BBIE + Catalogue Line. Content Unit. Quantity + The quantity of the order unit of measure of the line. + 0..1 + Catalogue Line + Content Unit + Quantity + Quantity. Type + If order unit measure identifier is each , then content unit quantity is 1 . + + + + + + + + + BBIE + Catalogue Line. Order Quantity Increment. Numeric + The number of items that can set the order quantity increments. + 0..1 + Catalogue Line + Order Quantity Increment + Numeric + Numeric. Type + + + + + + + + + BBIE + Catalogue Line. Minimum_ Order Quantity. Quantity + The minimum amount of items that can be ordered. + 0..1 + Catalogue Line + Minimum + Order Quantity + Quantity + Quantity. Type + 10 boxes + + + + + + + + + BBIE + Catalogue Line. Maximum_ Order Quantity. Quantity + The maximum amount of items that can be ordered. + 0..1 + Catalogue Line + Maximum + Order Quantity + Quantity + Quantity. Type + 1 tonne + + + + + + + + + BBIE + Catalogue Line. Warranty_ Information. Text + Information regarding the warranty for the good or service. Warranty may be provided by any Party (can be described in the association to Warranty Party). + 0..n + Catalogue Line + Warranty + Information + Text + Text. Type + Unless specified otherwise and in addition to any rights the Customer may have under statute, Dell warrants to the Customer that Dell branded Products (excluding third party products and software), will be free from defects in materials and workmanship affecting normal use for a period of one year from invoice date ( Standard Warranty ). + + + + + + + + + BBIE + Catalogue Line. Pack Level Code. Code + The level of packaging involved. + 0..1 + Catalogue Line + Pack Level Code + Code + Code. Type + Consumer Unit, Trading Unit + level 2 , Group 4 + + + + + + + + + ASBIE + Catalogue Line. Contractor_ Customer Party. Customer Party + The Customer Party responsible for the contract to which the Catalogue relates. + 0..1 + Catalogue Line + Contractor + Customer Party + Customer Party + + + + + + + + + ASBIE + Catalogue Line. Seller_ Supplier Party. Supplier Party + An association to Seller of the item. + 0..1 + Catalogue Line + Seller + Supplier Party + Supplier Party + + + + + + + + + ASBIE + Catalogue Line. Warranty_ Party. Party + The party responsible for the Warranty. + 0..1 + Catalogue Line + Warranty + Party + Party + + + + + + + + + ASBIE + Catalogue Line. Warranty Validity_ Period. Period + The period for which the Warranty is valid. + 0..1 + Catalogue Line + Warranty Validity + Period + Period + + + + + + + + + ASBIE + Catalogue Line. Line Validity_ Period. Period + The period for which the Catalogue Line is valid. + 0..1 + Catalogue Line + Line Validity + Period + Period + + + + + + + + + ASBIE + Catalogue Line. Item Comparison + An association to comparative details for this Item. + 0..n + Catalogue Line + Item Comparison + Item Comparison + + + + + + + + + ASBIE + Catalogue Line. Component_ Related Item. Related Item + An association that describes any catalogue items that may be components of this Item. + 0..n + Catalogue Line + Component + Related Item + Related Item + + + + + + + + + ASBIE + Catalogue Line. Accessory_ Related Item. Related Item + An association that describes any catalogue items that may be optional accessories to this Item. + 0..n + Catalogue Line + Accessory + Related Item + Related Item + + + + + + + + + ASBIE + Catalogue Line. Required_ Related Item. Related Item + An association that describes any catalogue items that may be required for this Item. + 0..n + Catalogue Line + Required + Related Item + Related Item + + + + + + + + + ASBIE + Catalogue Line. Replacement_ Related Item. Related Item + An association that describes any catalogue items that may be replacements for this Item. + 0..n + Catalogue Line + Replacement + Related Item + Related Item + + + + + + + + + ASBIE + Catalogue Line. Complementary_ Related Item. Related Item + An association that describes any catalogue items that may complement this Item. + 0..n + Catalogue Line + Complementary + Related Item + Related Item + + + + + + + + + ASBIE + Catalogue Line. Required_ Item Location Quantity. Item Location Quantity + An association to the description of properties related to locations and quantities of the Item. + 0..n + Catalogue Line + Required + Item Location Quantity + Item Location Quantity + + + + + + + + + ASBIE + Catalogue Line. Document Reference + An association to Document Reference. + 0..n + Catalogue Line + Document Reference + Document Reference + + + + + + + + + ASBIE + Catalogue Line. Item + An association to the Item itself. + 1 + Catalogue Line + Item + Item + + + + + + + + + ASBIE + Catalogue Line. Keyword_ Item Property. Item Property + Associates the catalogue line with a set of keyword related to the item. + 0..n + Catalogue Line + Keyword + Item Property + Item Property + + + + + + + + + + + ABIE + Catalogue Pricing Update Line. Details + Details of Catalogue Line Pricing. + Catalogue Pricing Update Line + + + + + + + + + BBIE + Catalogue Pricing Update Line. Identifier + A unique instance identifier for the line in this Catalogue document. + 1 + Catalogue Pricing Update Line + Identifier + Identifier + Identifier. Type + 1 + + + + + + + + + ASBIE + Catalogue Pricing Update Line. Contractor_ Customer Party. Customer Party + The Customer Party responsible for the contract to which the Catalogue relates. + 0..1 + Catalogue Pricing Update Line + Contractor + Customer Party + Customer Party + + + + + + + + + ASBIE + Catalogue Pricing Update Line. Seller_ Supplier Party. Supplier Party + An association to the Seller of the Item. + 0..1 + Catalogue Pricing Update Line + Seller + Supplier Party + Supplier Party + + + + + + + + + ASBIE + Catalogue Pricing Update Line. Required_ Item Location Quantity. Item Location Quantity + An association to the description of properties related to locations and quantities of the item. + 0..n + Catalogue Pricing Update Line + Required + Item Location Quantity + Item Location Quantity + + + + + + + + + + + ABIE + Catalogue Reference. Details + A reference to a Catalogue. + Catalogue Reference + + + + + + + + + BBIE + Catalogue Reference. Identifier + Identifies a reference to a Catalogue document. + 1 + Catalogue Reference + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Catalogue Reference. UUID. Identifier + A universally unique identifier for an instance of this ABIE. + 0..1 + Catalogue Reference + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Catalogue Reference. Issue Date. Date + The date when the Catalogue was issued. + 0..1 + Catalogue Reference + Issue Date + Date + Date. Type + + + + + + + + + BBIE + Catalogue Reference. Issue Time. Time + The time when the Catalogue was issued. + 0..1 + Catalogue Reference + Issue Time + Time + Time. Type + + + + + + + + + BBIE + Catalogue Reference. Revision Date. Date + The date on which the information in the Catalogue was revised. + 0..1 + Catalogue Reference + Revision Date + Date + Date. Type + + + + + + + + + BBIE + Catalogue Reference. Revision Time. Time + The time at which the information in the Catalogue was revised. + 0..1 + Catalogue Reference + Revision Time + Time + Time. Type + + + + + + + + + BBIE + Catalogue Reference. Note. Text + A free-text note about the Catalogue. This is used for information which is only human readable. + 0..n + Catalogue Reference + Note + Text + Text. Type + + + + + + + + + BBIE + Catalogue Reference. Description. Text + A description of the Catalogue. + 0..n + Catalogue Reference + Description + Text + Text. Type + computer accessories for laptops + + + + + + + + + BBIE + Catalogue Reference. Version. Identifier + Indicates the current version of the Catalogue. + 0..1 + Catalogue Reference + Version + Identifier + Identifier. Type + 1.1 + + + + + + + + + BBIE + Catalogue Reference. Previous_ Version. Identifier + Indicates the previous version (the version superseded by this Catalogue). + 0..1 + Catalogue Reference + Previous + Version + Identifier + Identifier. Type + 1.0 + + + + + + + + + + + ABIE + Catalogue Request Line. Details + The basic element of Catalogue; something that can be bought. + Catalogue Request Line + + + + + + + + + BBIE + Catalogue Request Line. Identifier + A unique instance identifier for the line in this Catalogue document. + 1 + Catalogue Request Line + Identifier + Identifier + Identifier. Type + 1 + + + + + + + + + BBIE + Catalogue Request Line. Contract Subdivision. Text + Identifies a subdivision of a contract or tender. + 0..1 + Catalogue Request Line + Contract Subdivision + Text + Text. Type + Installation , Phase One , Support and Maintenance + + + + + + + + + BBIE + Catalogue Request Line. Note. Text + Free-text note used for non-structured information about the line in the specific Catalogue document (intended to be human readable). + 0..n + Catalogue Request Line + Note + Text + Text. Type + + + + + + + + + ASBIE + Catalogue Request Line. Line Validity_ Period. Period + The period for which the Catalogue Line is valid. + 0..1 + Catalogue Request Line + Line Validity + Period + Period + + + + + + + + + ASBIE + Catalogue Request Line. Required_ Item Location Quantity. Item Location Quantity + An association to the description of properties related to locations and quantities of the item. + 0..n + Catalogue Request Line + Required + Item Location Quantity + Item Location Quantity + + + + + + + + + ASBIE + Catalogue Request Line. Item + An association to the Item itself. + 1 + Catalogue Request Line + Item + Item + + + + + + + + + + + ABIE + Certificate. Details + Information about a Certificate. + Certificate + + + + + + + + + BBIE + Certificate. Identifier + A unique identifier for the Certificate. + 1 + Certificate + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Certificate. Certificate Type Code. Code + Type of Cerfificate expressed as a code. + 1 + Certificate + Certificate Type Code + Code + Code. Type + + + + + + + + + BBIE + Certificate. Certificate Type. Text + Type of Certificate expressed as text. + 1 + Certificate + Certificate Type + Text + Text. Type + + + + + + + + + BBIE + Certificate. Remarks. Text + Remarks by the applicant for the Certificate. + 0..1 + Certificate + Remarks + Text + Text. Type + + + + + + + + + ASBIE + Certificate. Issuer_ Party. Party + Details of the authorized organization that issued the Certificate. + 1 + Certificate + Issuer + Party + Party + + + + + + + + + ASBIE + Certificate. Document Reference + An associative reference to a document. + 0..n + Certificate + Document Reference + Document Reference + + + + + + + + + ASBIE + Certificate. Signature + One or more signatures applied to the document instance. + 0..n + Certificate + Signature + Signature + + + + + + + + + + + ABIE + Certificate Of Origin Application. Details + Information about a Certificate of Origin application. + Certificate Of Origin Application + + + + + + + + + BBIE + Certificate Of Origin Application. Reference. Identifier + Holds the unique number that identifies the Despatch Advice, typically according to the seller s system that generated the Despatch Advice. + 1 + Certificate Of Origin Application + Reference + Identifier + Identifier. Type + + + + + + + + + BBIE + Certificate Of Origin Application. Certificate Type. Text + Type of CO. Type could be Ordinary, Re-export, Commonwealth Preferential etc. + 1 + Certificate Of Origin Application + Certificate Type + Text + Text. Type + + + + + + + + + BBIE + Certificate Of Origin Application. Application Status Code. Code + Indicates the status of the application (revision, replacement, etc.). + 0..1 + Certificate Of Origin Application + Application Status Code + Code + Code. Type + + + + + + + + + BBIE + Certificate Of Origin Application. Original_ Job Identifier. Identifier + The latest Job Number given to the Origin application. This is used by the system to keep track of the amendments or cancellation of the origin application applied earlier. + 1 + Certificate Of Origin Application + Original + Job Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Certificate Of Origin Application. Previous_ Job Identifier. Identifier + The previous Job Number assigned in case the application undergoes query or change. This is used by the system to keep track of the amendments or cancellation of the origin application applied earlier. + 0..1 + Certificate Of Origin Application + Previous + Job Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Certificate Of Origin Application. Remarks. Text + Remarks by the applicant for the Certificate of Origin Application. + 0..1 + Certificate Of Origin Application + Remarks + Text + Text. Type + + + + + + + + + ASBIE + Certificate Of Origin Application. Shipment + An association to Shipment. + 1 + Certificate Of Origin Application + Shipment + Shipment + + + + + + + + + ASBIE + Certificate Of Origin Application. Endorser Party + The party providing the endorsement. + 1..n + Certificate Of Origin Application + Endorser Party + Endorser Party + + + + + + + + + ASBIE + Certificate Of Origin Application. Preparation_ Party. Party + Details of an individual, a group, or a body that prepares the Certificate of Origin application. + 1 + Certificate Of Origin Application + Preparation + Party + Party + + + + + + + + + ASBIE + Certificate Of Origin Application. Issuer_ Party. Party + Details of the authorized organization that issued the Certificate of Origin. + 1 + Certificate Of Origin Application + Issuer + Party + Party + + + + + + + + + ASBIE + Certificate Of Origin Application. Exporter_ Party. Party + The party who makes the export declaration, or on whose behalf the export declaration is made, and who is the owner of the goods or has similar right of disposal over them at the time when the declaration is accepted. + 0..1 + Certificate Of Origin Application + Exporter + Party + Party + + + + + + + + + ASBIE + Certificate Of Origin Application. Importer_ Party. Party + The party who makes an import declaration, or on whose behalf a Customs clearing agent or other authorized person makes an import declaration. This may include a person who has possession of the goods or to whom the goods are consigned. + 0..1 + Certificate Of Origin Application + Importer + Party + Party + + + + + + + + + ASBIE + Certificate Of Origin Application. Issuing_ Country. Country + The country for which the Certificate of Origin is issued. + 1 + Certificate Of Origin Application + Issuing + Country + Country + + + + + + + + + ASBIE + Certificate Of Origin Application. Document Distribution + The distribution of the Certificate of Origin to interested parties. + 0..n + Certificate Of Origin Application + Document Distribution + Document Distribution + + + + + + + + + ASBIE + Certificate Of Origin Application. Supporting_ Document Reference. Document Reference + An associative reference to a supporting document. + 0..n + Certificate Of Origin Application + Supporting + Document Reference + Document Reference + + + + + + + + + ASBIE + Certificate Of Origin Application. Signature + One or more signatures applied to the document instance. + 0..n + Certificate Of Origin Application + Signature + Signature + + + + + + + + + + + ABIE + Classification Category. Details + Information about a Classification Category; a subdivision of a Classification Scheme. + Classification Category + + + + + + + + + BBIE + Classification Category. Name + The name of the Classification Category. + 0..1 + Classification Category + Name + Name + Name. Type + Code List Name + UNSPSC Class , UNSPSC Segment , UNSPSC Family + + + + + + + + + BBIE + Classification Category. Code Value. Text + The Classification Category value. + 0..1 + Classification Category + Code Value + Text + Text. Type + Code Value + 3420001, 3273666, HSJJD-213 + + + + + + + + + BBIE + Classification Category. Description. Text + The description of the Classification Category. + 0..n + Classification Category + Description + Text + Text. Type + Code Name + Electrical Goods , Wooden Toys + + + + + + + + + ASBIE + Classification Category. Categorizes_ Classification Category. Classification Category + An association to subcategories within the Category. + 0..n + Classification Category + Categorizes + Classification Category + Classification Category + + + + + + + + + + + ABIE + Classification Scheme. Details + Information about Classification Scheme; a scheme that defines a taxonomy for classifying goods or services. + Classification Scheme + + + + + + + + + BBIE + Classification Scheme. Identifier + An identifier for the classification scheme. + 1 + Classification Scheme + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Classification Scheme. UUID. Identifier + A universally unique identifier for an instance of this ABIE. + 0..1 + Classification Scheme + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Classification Scheme. Last_ Revision Date. Date + The date at which the classification scheme was last revised. + 0..1 + Classification Scheme + Last + Revision Date + Date + Date. Type + + + + + + + + + BBIE + Classification Scheme. Last_ Revision Time. Time + The time at which the classification scheme was last revised. + 0..1 + Classification Scheme + Last + Revision Time + Time + Time. Type + + + + + + + + + BBIE + Classification Scheme. Note. Text + Free-form text applying to the Classification Scheme. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Classification Scheme + Note + Text + Text. Type + + + + + + + + + BBIE + Classification Scheme. Name + The name of the Classification Scheme. + 0..1 + Classification Scheme + Name + Name + Name. Type + UNSPSC + + + + + + + + + BBIE + Classification Scheme. Description. Text + A description of the Classification Scheme. + 0..n + Classification Scheme + Description + Text + Text. Type + an open, global multi-sector standard for classification of products and services + + + + + + + + + BBIE + Classification Scheme. Agency Identifier. Identifier + Identifies the agency that maintains the Classification Scheme. + 0..1 + Classification Scheme + Agency Identifier + Identifier + Identifier. Type + Defaults to the UN/EDIFACT data element 3055 code list. + + + + + + + + + BBIE + Classification Scheme. Agency Name. Text + The name of the agency that maintains the Classification Scheme. + 0..1 + Classification Scheme + Agency Name + Text + Text. Type + + + + + + + + + BBIE + Classification Scheme. Version. Identifier + Identifies the version of the Classification Scheme. + 0..1 + Classification Scheme + Version + Identifier + Identifier. Type + + + + + + + + + BBIE + Classification Scheme. URI. Identifier + The Uniform Resource Identifier (URI) that identifies where the Classification is located. + 0..1 + Classification Scheme + URI + Identifier + Identifier. Type + + + + + + + + + BBIE + Classification Scheme. Scheme_ URI. Identifier + The Uniform Resource Identifier (URI) that identifies where the Classification Scheme is located. + 0..1 + Classification Scheme + Scheme + URI + Identifier + Identifier. Type + + + + + + + + + BBIE + Classification Scheme. Language. Identifier + Identifies the language of the Classification Scheme. + 0..1 + Classification Scheme + Language + Identifier + Identifier. Type + + + + + + + + + ASBIE + Classification Scheme. Classification Category + An association to Classification Category. + 1..n + Classification Scheme + Classification Category + Classification Category + + + + + + + + + + + ABIE + Commodity Classification. Details + Information about Commodity Classification. + Commodity Classification + + + + + + + + + BBIE + Commodity Classification. Nature Code. Code + The high-level nature of the Classification issued by a specific maintenance agency, expressed as a code. + 0..1 + Commodity Classification + Nature Code + Code + Code. Type + wooden products + + + + + + + + + BBIE + Commodity Classification. Cargo Type Code. Code + The type of cargo, expressed as a code. + 0..1 + Commodity Classification + Cargo Type Code + Code + Code. Type + Refrigerated + + + + + + + + + BBIE + Commodity Classification. Commodity Code. Code + The harmonized international commodity code for regulatory (customs and trade statistics) purposes. + 0..1 + Commodity Classification + Commodity Code + Code + Code. Type + Harmonized Code + 1102222883 + + + + + + + + + BBIE + Commodity Classification. Item Classification Code. Code + The trade commodity classification, expressed as a code. + 0..1 + Commodity Classification + Item Classification Code + Code + Code. Type + UN/SPSC Code + 3440234 + + + + + + + + + + + ABIE + Communication. Details + Information about a means of communication. + Communication + + + + + + + + + BBIE + Communication. Channel Code. Code + The method of communication, expressed as a code. + 0..1 + Communication + Channel Code + Code + Channel_ Code. Type + Phone Fax Email + + + + + + + + + BBIE + Communication. Channel. Text + The method of communication, expressed as text. + 0..1 + Communication + Channel + Text + Text. Type + Skype + + + + + + + + + BBIE + Communication. Value. Text + The communication value, such as phone number or email address. + 0..1 + Communication + Value + Text + Text. Type + +44 1 2345 6789 president@whitehouse.com + + + + + + + + + + + ABIE + Completed Task. Details + Completion of a mental or physical effort to a specific purpose in the tendering process. + Completed Task + + + + + + + + + BBIE + Completed Task. Annual_ Average. Amount + The monetary value that constitutes the average amount of this completed task. + 0..1 + Completed Task + Annual + Average + Amount + Amount. Type + + + + + + + + + BBIE + Completed Task. Total Task. Amount + The monetary value that constitutes the actual amount of this completed task. + 0..1 + Completed Task + Total Task + Amount + Amount. Type + + + + + + + + + BBIE + Completed Task. Party Capacity. Amount + The monetary value that constitutes the capacity of the party which carried out this completed task. + 0..1 + Completed Task + Party Capacity + Amount + Amount. Type + + + + + + + + + BBIE + Completed Task. Description. Text + The textual expression of the description of this completed task. + 0..n + Completed Task + Description + Text + Text. Type + + + + + + + + + BBIE + Completed Task. Evidence Supplied. Identifier + An ID reference to the Evidence that justifies this task. + 0..1 + Completed Task + Evidence Supplied + Identifier + Identifier. Type + + + + + + + + + ASBIE + Completed Task. Period + The specified period where the task has been performed. + 0..1 + Completed Task + Period + Period + + + + + + + + + ASBIE + Completed Task. Recipient_ Customer Party. Customer Party + The original customer for this completed task. + 0..1 + Completed Task + Recipient + Customer Party + Customer Party + + + + + + + + + + + ABIE + Consignment. Details + An identifiable collection of one or more goods items to be transported between the consignor and the consignee. This information may be defined within a transport contract. A consignment may comprise more than one shipment (e.g., when consolidated by a freight forwarder). + Consignment + + + + + + + + + BBIE + Consignment. Identifier + Unique number assigned to goods, both for import and export. + 1 + Consignment + Identifier + Identifier + Identifier. Type + Unique consignment reference number (UCR) + + + + + + + + + BBIE + Consignment. Carrier Assigned_ Identifier. Identifier + The identifier assigned by the carrier for this consignment. + 0..1 + Consignment + Carrier Assigned + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Consignment. Consignee Assigned_ Identifier. Identifier + The identifier assigned by the Consignee for this consignment. + 0..1 + Consignment + Consignee Assigned + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Consignment. Consignor Assigned_ Identifier. Identifier + The identifier assigned by the Consignor of this consignment. + 0..1 + Consignment + Consignor Assigned + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Consignment. Freight Forwarder Assigned_ Identifier. Identifier + The identifier assigned by the Freightforwarder for this consignment. + 0..1 + Consignment + Freight Forwarder Assigned + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Consignment. Broker Assigned_ Identifier. Identifier + The identifier assigned by the Broker for this consignment. + 0..1 + Consignment + Broker Assigned + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Consignment. Contracted Carrier Assigned_ Identifier. Identifier + The identifier assigned by the Contracted Carrier for this consignment. + 0..1 + Consignment + Contracted Carrier Assigned + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Consignment. Performing Carrier Assigned_ Identifier. Identifier + The identifier assigned by the performing carrier for this consignment. + 0..1 + Consignment + Performing Carrier Assigned + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Consignment. Summary_ Description. Text + General descriptive text that is not part of any remarks. + 0..n + Consignment + Summary + Description + Text + Text. Type + + + + + + + + + BBIE + Consignment. Total_ Invoice Amount. Amount + Total of all invoice amounts declared in a single consignment. + 0..1 + Consignment + Total + Invoice Amount + Amount + Amount. Type + + + + + + + + + BBIE + Consignment. Declared Customs_ Value. Amount + Amount declared for customs purposes of those goods in a consignment, whether or not they are subject to the same customs procedure, tariff/statistical heading, country information, and duty regime. + 0..1 + Consignment + Declared Customs + Value + Amount + Amount. Type + + + + + + + + + BBIE + Consignment. Tariff Description. Text + A description of the tariff applied to a consignment. + 0..n + Consignment + Tariff Description + Text + Text. Type + + + + + + + + + BBIE + Consignment. Tariff Code. Code + Code specifying a tariff applied to a consignment. + 0..1 + Consignment + Tariff Code + Code + Code. Type + Tariff code number (WCO ID 145) + + + + + + + + + BBIE + Consignment. Insurance Premium Amount. Amount + Amount of premium payable to the insurance company for insuring the goods. + 0..1 + Consignment + Insurance Premium Amount + Amount + Amount. Type + Insurance Cost + + + + + + + + + BBIE + Consignment. Gross_ Weight. Measure + Total weight (mass) of goods for a declaration, including packaging but excluding the carrier s equipment. + 0..1 + Consignment + Gross + Weight + Measure + Measure. Type + Total gross weight (WCO ID 131) + Total cube of all goods items referred to as one consignment. + + + + + + + + + BBIE + Consignment. Net_ Weight. Measure + Total net weight (mass) of all the goods items referred to as one consignment. + 0..1 + Consignment + Net + Weight + Measure + Measure. Type + + + + + + + + + BBIE + Consignment. Net Net_ Weight. Measure + Weight (mass) of the goods themselves without any packing. + 0..1 + Consignment + Net Net + Weight + Measure + Measure. Type + + + + + + + + + BBIE + Consignment. Chargeable_ Weight. Measure + Gross weight (mass) on which a charge is to be based. + 0..1 + Consignment + Chargeable + Weight + Measure + Measure. Type + Chargeable Weight. Basis.Measure + + + + + + + + + BBIE + Consignment. Gross_ Volume. Measure + Total volume of all goods items referred to as one consignment. + 0..1 + Consignment + Gross + Volume + Measure + Measure. Type + Cube + + + + + + + + + BBIE + Consignment. Net_ Volume. Measure + Net volume of all goods items referred to as one consignment. + 0..1 + Consignment + Net + Volume + Measure + Measure. Type + + + + + + + + + BBIE + Consignment. Loading_ Length. Measure + Total length in a means of transport or a piece of transport equipment whereby the complete width and height over that length is needed for loading all the consignments referred to as one consolidation. + 0..1 + Consignment + Loading + Length + Measure + Measure. Type + + + + + + + + + BBIE + Consignment. Remarks. Text + Remarks concerning the complete consignment to be printed on the transport document. + 0..n + Consignment + Remarks + Text + Text. Type + + + + + + + + + BBIE + Consignment. Hazardous Risk_ Indicator. Indicator + Indication that the transport is or is not subject to an international regulation concerning the carriage of dangerous goods. + 0..1 + Consignment + Hazardous Risk + Indicator + Indicator + Indicator. Type + Dangerous Goods RID Indicator + default is negative + + + + + + + + + BBIE + Consignment. Animal_ Food Indicator. Indicator + Indication that the transported goods are animal foodstuffs. + 0..1 + Consignment + Animal + Food Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Consignment. Human_ Food Indicator. Indicator + Indication that the transported goods are for human consumption + 0..1 + Consignment + Human + Food Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Consignment. Livestock_ Indicator. Indicator + Indication that the transported goods are livestock. + 0..1 + Consignment + Livestock + Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Consignment. Bulk Cargo_ Indicator. Indicator + Indication that the transported goods are bulk cargoes + 0..1 + Consignment + Bulk Cargo + Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Consignment. Containerized_ Indicator. Indicator + Indication that the transported goods are containerized cargoes + 0..1 + Consignment + Containerized + Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Consignment. General Cargo_ Indicator. Indicator + Indication that the transported goods are general cargoes + 0..1 + Consignment + General Cargo + Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Consignment. Special_ Security Indicator. Indicator + Indication that the transported goods require special security + 0..1 + Consignment + Special + Security Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Consignment. Third Party Payer_ Indicator. Indicator + Indication that the consignment will be paid for by a third party. + 0..1 + Consignment + Third Party Payer + Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Consignment. Carrier Service_ Instructions. Text + Service instructions to the carrier expressed as text. + 0..1 + Consignment + Carrier Service + Instructions + Text + Text. Type + + + + + + + + + BBIE + Consignment. Customs Clearance Service_ Instructions. Text + Service instructions for customs clearance expressed as text. + 0..1 + Consignment + Customs Clearance Service + Instructions + Text + Text. Type + + + + + + + + + BBIE + Consignment. Forwarder Service_ Instructions. Text + Service instructions for the forwarder. + 0..1 + Consignment + Forwarder Service + Instructions + Text + Text. Type + + + + + + + + + BBIE + Consignment. Special Service_ Instructions. Text + Special service instructions expressed as text. + 0..1 + Consignment + Special Service + Instructions + Text + Text. Type + + + + + + + + + BBIE + Consignment. Sequence Identifier. Identifier + The sequence identifier for this consignment. + 0..1 + Consignment + Sequence Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Consignment. Shipping Priority Level Code. Code + The priority or level of service required for a consignment, expressed as a code. + 0..1 + Consignment + Shipping Priority Level Code + Code + Code. Type + + + + + + + + + BBIE + Consignment. Handling Code. Code + The handling required for a consignment, expressed as a code. + 0..1 + Consignment + Handling Code + Code + Code. Type + Special Handling + + + + + + + + + BBIE + Consignment. Handling_ Instructions. Text + Free-form text describing Handling Instructions for a consignment. + 0..1 + Consignment + Handling + Instructions + Text + Text. Type + + + + + + + + + BBIE + Consignment. Information. Text + Free-form text applying to a consignment. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..1 + Consignment + Information + Text + Text. Type + + + + + + + + + BBIE + Consignment. Total_ Goods Item Quantity. Quantity + Count of the total number of goods items within a consignment. + 0..1 + Consignment + Total + Goods Item Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Consignment. Total_ Transport Handling Unit Quantity. Quantity + Count of the number of pieces of transport handling equipment in a consignment, such as pallets, boxes, and cases. + 0..1 + Consignment + Total + Transport Handling Unit Quantity + Quantity + Quantity. Type + Number of THUs + + + + + + + + + BBIE + Consignment. Insurance_ Value. Amount + The total sum covered by an insurance for the consignment. + 0..1 + Consignment + Insurance + Value + Amount + Amount. Type + Value Insured + + + + + + + + + BBIE + Consignment. Declared For Carriage_ Value. Amount + Value, declared by the shipper or his agent solely for the purpose of varying the carrier s level of liability from that provided in the contract of carriage, in case of loss or damage to goods or delayed delivery. + 0..1 + Consignment + Declared For Carriage + Value + Amount + Amount. Type + Declared value for carriage, Interest in delivery + + + + + + + + + BBIE + Consignment. Declared Statistics_ Value. Amount + Value declared for statistical purposes of those goods in a consignment which have the same statistical heading. + 0..1 + Consignment + Declared Statistics + Value + Amount + Amount. Type + Statistical Value + + + + + + + + + BBIE + Consignment. Free On Board_ Value. Amount + Monetary amount that has to be or has been paid as calculated under the applicable trade delivery. + 0..1 + Consignment + Free On Board + Value + Amount + Amount. Type + FOB Value + + + + + + + + + BBIE + Consignment. Special_ Instructions. Text + Special instructions relating to a consignment. + 0..n + Consignment + Special + Instructions + Text + Text. Type + + + + + + + + + BBIE + Consignment. Split Consignment_ Indicator. Indicator + Indicates whether the consignment has been split in transit. + 0..1 + Consignment + Split Consignment + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Consignment. Delivery_ Instructions. Text + Delivery instructions relating to a consignment. + 0..n + Consignment + Delivery + Instructions + Text + Text. Type + + + + + + + + + BBIE + Consignment. Consignment_ Quantity. Quantity + The count of this consignment. + 0..1 + Consignment + Consignment + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Consignment. Consolidatable_ Indicator. Indicator + The indication of whether or not this consignment can be consolidated. + 0..1 + Consignment + Consolidatable + Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Consignment. Haulage_ Instructions. Text + Instructions regarding haulage of this consignment. + 0..n + Consignment + Haulage + Instructions + Text + Text. Type + + + + + + + + + BBIE + Consignment. Loading_ Sequence Identifier. Identifier + The identifier for the loading sequence of this consignment. + 0..1 + Consignment + Loading + Sequence Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Consignment. Consignee_ Party. Party + Party to which goods are consigned. + 0..1 + Consignment + Consignee + Party + Party + + + + + + + + + ASBIE + Consignment. Exporter_ Party. Party + The party who makes the export declaration, or on whose behalf the export declaration is made, and who is the owner of the goods or has similar right of disposal over them at the time when the declaration is accepted. + 0..1 + Consignment + Exporter + Party + Party + + + + + + + + + ASBIE + Consignment. Consignor_ Party. Party + The party consigning goods, as stipulated in the transport contract by the party ordering transport. + 0..1 + Consignment + Consignor + Party + Party + + + + + + + + + ASBIE + Consignment. Importer_ Party. Party + The party who makes an import declaration, or on whose behalf a Customs clearing agent or other authorized person makes an import declaration. This may include a person who has possession of the goods or to whom the goods are consigned. + 0..1 + Consignment + Importer + Party + Party + + + + + + + + + ASBIE + Consignment. Carrier_ Party. Party + The party providing the transport of goods between named points. + 0..1 + Consignment + Carrier + Party + Party + + + + + + + + + ASBIE + Consignment. Freight Forwarder_ Party. Party + The party combining individual smaller consignments into a single larger shipment (so called consolidated shipment) that is sent to a counterpart who mirrors the consolidator s activity by dividing the consolidated consignment into its original components. + 0..1 + Consignment + Freight Forwarder + Party + Party + + + + + + + + + ASBIE + Consignment. Notify_ Party. Party + The party to be notified. + 0..1 + Consignment + Notify + Party + Party + + + + + + + + + ASBIE + Consignment. Original Despatch_ Party. Party + The original despatch party. + 0..1 + Consignment + Original Despatch + Party + Party + + + + + + + + + ASBIE + Consignment. Final Delivery_ Party. Party + The final delivery party. + 0..1 + Consignment + Final Delivery + Party + Party + + + + + + + + + ASBIE + Consignment. Performing Carrier_ Party. Party + The party performing the carriage. + 0..1 + Consignment + Performing Carrier + Party + Party + + + + + + + + + ASBIE + Consignment. Substitute Carrier_ Party. Party + A substitute party performing the carriage. + 0..1 + Consignment + Substitute Carrier + Party + Party + + + + + + + + + ASBIE + Consignment. Logistics Operator_ Party. Party + A logistics operator party. + 0..1 + Consignment + Logistics Operator + Party + Party + + + + + + + + + ASBIE + Consignment. Transport Advisor_ Party. Party + A party providing transport advice. + 0..1 + Consignment + Transport Advisor + Party + Party + + + + + + + + + ASBIE + Consignment. Hazardous Item Notification_ Party. Party + A party who would be notified of a hazardous items. + 0..1 + Consignment + Hazardous Item Notification + Party + Party + + + + + + + + + ASBIE + Consignment. Insurance_ Party. Party + A party holding the insurance of this consignment. + 0..1 + Consignment + Insurance + Party + Party + + + + + + + + + ASBIE + Consignment. Mortgage Holder_ Party. Party + A party holding the mortgage on this consignment. + 0..1 + Consignment + Mortgage Holder + Party + Party + + + + + + + + + ASBIE + Consignment. Bill Of Lading Holder_ Party. Party + A party holding the bill of lading for this consignment. + 0..1 + Consignment + Bill Of Lading Holder + Party + Party + + + + + + + + + ASBIE + Consignment. Original Departure_ Country. Country + The country from which the goods are originally exported, without any commercial transaction taking place in intermediate countries. + 0..1 + Consignment + Original Departure + Country + Country + + + + + + + + + ASBIE + Consignment. Final Destination_ Country. Country + Name of the country to which the goods are to be delivered to the final consignee or buyer. + 0..1 + Consignment + Final Destination + Country + Country + + + + + + + + + ASBIE + Consignment. Transit_ Country. Country + The countries through which goods or passengers are routed between the country of original departure and the country of final destination. + 0..n + Consignment + Transit + Country + Country + + + + + + + + + ASBIE + Consignment. Transport_ Contract. Contract + An association to Transport Contact. + 0..1 + Consignment + Transport + Contract + Contract + + + + + + + + + ASBIE + Consignment. Original Despatch_ Transportation Service. Transportation Service + The service for pick-up from the consignor under the transport contract. + 0..1 + Consignment + Original Despatch + Transportation Service + Transportation Service + Door-to-door , Pier-to-door + + + + + + + + + ASBIE + Consignment. Final Delivery_ Transportation Service. Transportation Service + The service for delivery to the consignee under the transport contract. + 0..1 + Consignment + Final Delivery + Transportation Service + Transportation Service + Door-to-door , Pier-to-door + + + + + + + + + ASBIE + Consignment. Delivery Terms + All the conditions agreed upon between a seller and a buyer with regard to the delivery of goods and/or services, e.g., CIF, FOB, or EXW from the INCOTERMS Terms of Delivery. + 0..1 + Consignment + Delivery Terms + Delivery Terms + + + + + + + + + ASBIE + Consignment. Payment Terms + The conditions of payment between the parties in a transaction. + 0..1 + Consignment + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Consignment. Collect_ Payment Terms. Payment Terms + An association to payment terms for collection. + 0..1 + Consignment + Collect + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Consignment. Disbursement_ Payment Terms. Payment Terms + An association to payment terms for disbursement. + 0..1 + Consignment + Disbursement + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Consignment. Prepaid_ Payment Terms. Payment Terms + An association to payment terms for prepayment. + 0..1 + Consignment + Prepaid + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Consignment. Freight_ Allowance Charge. Allowance Charge + Costs incurred by the shipper in moving goods, by whatever means, from one place to another under the terms of the contract of carriage. In addition to transport costs, this may include such elements as packing, documentation, loading, unloading, and insurance (to the extent that they relate to the freight costs). + 0..n + Consignment + Freight + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Consignment. Extra_ Allowance Charge. Allowance Charge + An association to charges for extra allowance. + 0..n + Consignment + Extra + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Consignment. Main Carriage_ Shipment Stage. Shipment Stage + An association to the shipment stage during main carriage. + 0..1 + Consignment + Main Carriage + Shipment Stage + Shipment Stage + + + + + + + + + ASBIE + Consignment. Pre Carriage_ Shipment Stage. Shipment Stage + An association to the shipment stage during precarriage. + 0..n + Consignment + Pre Carriage + Shipment Stage + Shipment Stage + + + + + + + + + ASBIE + Consignment. On Carriage_ Shipment Stage. Shipment Stage + An association to the shipment stage during on carriage. + 0..n + Consignment + On Carriage + Shipment Stage + Shipment Stage + + + + + + + + + ASBIE + Consignment. Transport Handling Unit + An association to Transport Handling Unit used for loose and containerized goods. + 0..n + Consignment + Transport Handling Unit + Transport Handling Unit + + + + + + + + + ASBIE + Consignment. First Arrival Port_ Location. Location + Identifies the first arrival location. This would be a port for sea, airport for air, and border post for land crossing. + 0..1 + Consignment + First Arrival Port + Location + Location + + + + + + + + + ASBIE + Consignment. Last Exit Port_ Location. Location + Identifies the final exporting location. This would be a port for sea, airport for air, and border post for land crossing. + 0..1 + Consignment + Last Exit Port + Location + Location + + + + + + + + + ASBIE + Consignment. Consolidated_ Shipment. Shipment + An association to shipment consolidation. + 0..n + Consignment + Consolidated + Shipment + Shipment + + + + + + + + + + + ABIE + Consumption. Details + + Consumption + + + + + + + + + BBIE + Consumption. Utility Statement Type Code. Code + Code specifying the type of the UtilityStatement + 0..1 + Consumption + Utility Statement Type Code + Code + Code. Type + Electricity + + + + + + + + + ASBIE + Consumption. Main_ Period. Period + An association to period(s) to which the UtilityStatement applies + 0..1 + Consumption + Main + Period + Period + + + + + + + + + ASBIE + Consumption. Allowance Charge + An association to Allowances and Charges that apply to the UtilityStatement as a whole + 0..n + Consumption + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Consumption. Tax Total + An association to tax total for specific tax types/rates + 0..n + Consumption + Tax Total + Tax Total + + + + + + + + + ASBIE + Consumption. Energy Water Supply + An association to the total amount payable on the UtilityStatement including Allowances, Charges and Taxes. +This class is mandatory and sums the totals on UtilityChargeableConsumption level (for each ConsumptionPoint). This class must not be confused with the UBL MonetaryTotal class. + 0..1 + Consumption + Energy Water Supply + Energy Water Supply + + + + + + + + + ASBIE + Consumption. Telecommunications Supply + An association to the total amount payable on the UtilityStatement including Allowances, Charges and Taxes. +This class is mandatory and sums the totals on UtilityChargeableConsumption level (for each ConsumptionPoint). This class must not be confused with the UBL MonetaryTotal class. + 0..1 + Consumption + Telecommunications Supply + Telecommunications Supply + + + + + + + + + ASBIE + Consumption. Legal_ Monetary Total. Monetary Total + An association to the total amount payable on the UtilityStatement including Allowances, Charges and Taxes. +This class is mandatory and sums the totals on UtilityChargeableConsumption level (for each ConsumptionPoint). This class must not be confused with the UBL MonetaryTotal class. + 1 + Consumption + Legal + Monetary Total + Monetary Total + + + + + + + + + + + ABIE + Consumption Average. Details + The Average price included VAT. +This clas are suplementary utility Statements, that depending of type of Utility and scenario, needs to be present on a UtilityStatement, in order to meet the legal requirement and/or to give the Buyer proper informations. Note that these suplementary Statements are related to one common ConsumptionPoint as specified in UtilityChargeableConsumption/ConsumptionPoint above. + Consumption Average + + + + + + + + + BBIE + Consumption Average. Average_ Amount. Amount + The average amount + 0..1 + Consumption Average + Average + Amount + Amount + Amount. Type + 1.65 + + + + + + + + + BBIE + Consumption Average. Description. Text + Description of the average amount + 0..1 + Consumption Average + Description + Text + Text. Type + Average price incl. value added tax per kilowatt-hour in the billing period. + + + + + + + + + + + ABIE + Consumption History. Details + Informations about the consumption developement. + Consumption History + + + + + + + + + BBIE + Consumption History. Meter Number. Text + A reference to the utility meter. + 0..1 + Consumption History + Meter Number + Text + Text. Type + 61722x + + + + + + + + + BBIE + Consumption History. Quantity + Statement of the consumed quantity. + 1 + Consumption History + Quantity + Quantity + Quantity. Type + 7621.00 + + + + + + + + + BBIE + Consumption History. Amount + Amount for the consumed quantity. + 0..1 + Consumption History + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Consumption History. Consumption Level Code. Code + Statement of the consumption level as a code. + 0..1 + Consumption History + Consumption Level Code + Code + Code. Type + B + + + + + + + + + BBIE + Consumption History. Consumption Level Text. Text + Statement of the consumptionl level as plain test. + 0..1 + Consumption History + Consumption Level Text + Text + Text. Type + Average + + + + + + + + + BBIE + Consumption History. Description. Text + Description of the consumption development as plain text. + 0..n + Consumption History + Description + Text + Text. Type + 2004/2005 + + + + + + + + + ASBIE + Consumption History. Period + The Consumption period + 1 + Consumption History + Period + Period + + + + + + + + + + + ABIE + Consumption Line. Details + Statement of one product. If you need to specifier more than one product, you must specifier one ChargeableConsumptionLine for each product. This could for exampel be necesarry if the customer have to pay both for the cables and the internet connection. + Consumption Line + + + + + + + + + BBIE + Consumption Line. Identifier + Identification of the ConsumptionPoint data linie + 1 + Consumption Line + Identifier + Identifier + Identifier. Type + 1 + + + + + + + + + BBIE + Consumption Line. Parent_ Document Line Reference Identifier. Identifier + This element is used if you for each line in this document UBL UTS , want to indicate which line on the UBL Invoice or UBL CreditNote, the line is contained in. For examples: If there is a line on the main invoice: 1 Consumption xxx , and in the UBL UTS document there is 20 different lines, there together make up the consumption, then you make up |Consumption| in the element ParentDocumentReferenceID. + 0..1 + Consumption Line + Parent + Document Line Reference Identifier + Identifier + Identifier. Type + Consumption + + + + + + + + + BBIE + Consumption Line. Invoiced_ Quantity. Quantity + The invoiced quantity. + 1 + Consumption Line + Invoiced + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Consumption Line. Line Extension Amount. Amount + The line amount including discount. + 1 + Consumption Line + Line Extension Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Consumption Line. Period + Information about a period of time + 0..1 + Consumption Line + Period + Period + + + + + + + + + ASBIE + Consumption Line. Delivery + An association to delivery. + 0..n + Consumption Line + Delivery + Delivery + + + + + + + + + ASBIE + Consumption Line. Allowance Charge + An association to Allowances and Charges that apply to the UtilityStatement as a whole. + 0..n + Consumption Line + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Consumption Line. Tax Total + An association to tax total for specific tax types/rates + 0..n + Consumption Line + Tax Total + Tax Total + + + + + + + + + ASBIE + Consumption Line. Utility Item + Informations about a product of consumption + 1 + Consumption Line + Utility Item + Utility Item + + + + + + + + + ASBIE + Consumption Line. Price + Information about the price + 0..1 + Consumption Line + Price + Price + + + + + + + + + ASBIE + Consumption Line. Unstructured Price + This class is a alternative to the class Price, and it contain a Tele line + 0..1 + Consumption Line + Unstructured Price + Unstructured Price + + + + + + + + + + + ABIE + Consumption Point. Details + Content information about UtilityConsumptionPoint and about metering + Consumption Point + + + + + + + + + BBIE + Consumption Point. Identifier + Identification og the ConsumptionsPoint. This element are the demanded decrease number + 1 + Consumption Point + Identifier + Identifier + Identifier. Type + 7411013716x + + + + + + + + + BBIE + Consumption Point. Description. Text + Free form text applying to the ConsumptionPoint + 0..1 + Consumption Point + Description + Text + Text. Type + Additional informations concerning the consumption point + + + + + + + + + BBIE + Consumption Point. Subscriber Identifier. Identifier + Identification of the subscriber + 0..1 + Consumption Point + Subscriber Identifier + Identifier + Identifier. Type + 98143211 + + + + + + + + + BBIE + Consumption Point. Subscriber Type Identifier. Text + Identification of the subscriber type + 0..1 + Consumption Point + Subscriber Type Identifier + Text + Text. Type + APL + + + + + + + + + BBIE + Consumption Point. Subscriber Type Code. Code + The code for the service type + 0..1 + Consumption Point + Subscriber Type Code + Code + Code. Type + APL + + + + + + + + + BBIE + Consumption Point. Total_ Delivered Quantity. Quantity + The sum of the total consumpted quantity calculated from the ConsumptionPoint + 0..1 + Consumption Point + Total + Delivered Quantity + Quantity + Quantity. Type + 5761.00 + + + + + + + + + ASBIE + Consumption Point. Address + Association to the address of the Utility Concumption Point. Is only fill out if the address is different from the buyer address + 0..1 + Consumption Point + Address + Address + + + + + + + + + ASBIE + Consumption Point. WebSiteAccess + Association to the access information to website + 0..1 + Consumption Point + WebSiteAccess + WebSiteAccess + + + + + + + + + ASBIE + Consumption Point. Utility_ Meter. Meter + Information about Meter(s) and meteringdata + 0..n + Consumption Point + Utility + Meter + Meter + + + + + + + + + + + ABIE + Consumption Report. Details + Staticstisc about the consumers consumption and the development in comsumption. + Consumption Report + + + + + + + + + BBIE + Consumption Report. Identifier + Identification of the consumption report + 1 + Consumption Report + Identifier + Identifier + Identifier. Type + n/a + + + + + + + + + BBIE + Consumption Report. Consumption Type. Text + Identification of the consumption type + 0..1 + Consumption Report + Consumption Type + Text + Text. Type + Consumption + + + + + + + + + BBIE + Consumption Report. Consumption Type Code. Code + Specfication of the consumption type as a code + 0..1 + Consumption Report + Consumption Type Code + Code + Code. Type + Consumption + + + + + + + + + BBIE + Consumption Report. Description. Text + Description of the consumption report + 0..n + Consumption Report + Description + Text + Text. Type + This report contain the latest year consumption + + + + + + + + + BBIE + Consumption Report. Total_ Consumed Quantity. Quantity + Statement of the total consumpted quantity, witch the report inclued + 0..1 + Consumption Report + Total + Consumed Quantity + Quantity + Quantity. Type + 20479.00 + + + + + + + + + BBIE + Consumption Report. Basic_ Consumed Quantity. Quantity + Statement of the total consumpted quantity, witch is normative for analogous users. + 0..1 + Consumption Report + Basic + Consumed Quantity + Quantity + Quantity. Type + 20000.00 + + + + + + + + + BBIE + Consumption Report. Resident_ Occupants Numeric. Numeric + The number of people living in the residence + 0..1 + Consumption Report + Resident + Occupants Numeric + Numeric + Numeric. Type + 4.0 + + + + + + + + + BBIE + Consumption Report. Consumers_ Energy Level Code. Code + Statement of the consumers energylevel compared to the Recidencetype and the number of people living in the residence. - as a code + 0..1 + Consumption Report + Consumers + Energy Level Code + Code + Code. Type + B + + + + + + + + + BBIE + Consumption Report. Consumers_ Energy Level. Text + Statement of the consumers energylevel compared to the Recidencetype and the number of people living in the residence. - as a plain text. + 0..1 + Consumption Report + Consumers + Energy Level + Text + Text. Type + Middel + + + + + + + + + BBIE + Consumption Report. Residence Type. Text + Statement of the residence type as plain text + 0..1 + Consumption Report + Residence Type + Text + Text. Type + House + + + + + + + + + BBIE + Consumption Report. Residence Type Code. Code + Statement of the residence type as a code + 0..1 + Consumption Report + Residence Type Code + Code + Code. Type + House + + + + + + + + + BBIE + Consumption Report. Heating Type. Text + Statement of the heatingtype as plain text + 0..1 + Consumption Report + Heating Type + Text + Text. Type + District heating + + + + + + + + + BBIE + Consumption Report. Heating Type Code. Code + Statement of the heatingtype as a code. + 0..1 + Consumption Report + Heating Type Code + Code + Code. Type + DistrictHeating + + + + + + + + + ASBIE + Consumption Report. Period + Information about the consumption period. + 0..1 + Consumption Report + Period + Period + + + + + + + + + ASBIE + Consumption Report. Guidance_ Document Reference. Document Reference + An association to a guide document that explains the report. + 0..1 + Consumption Report + Guidance + Document Reference + Document Reference + + + + + + + + + ASBIE + Consumption Report. Document Reference + A reference to the report in an other document format or another kind of reference. + 0..1 + Consumption Report + Document Reference + Document Reference + + + + + + + + + ASBIE + Consumption Report. Consumption Report Reference + Informations about ealiere reports, for exampel last years consumption. + 0..n + Consumption Report + Consumption Report Reference + Consumption Report Reference + + + + + + + + + ASBIE + Consumption Report. Consumption History + Informations about the consumption developement. + 0..n + Consumption Report + Consumption History + Consumption History + + + + + + + + + + + ABIE + Consumption Report Reference. Details + Informations about ealiere reports, for exampel last years consumption + Consumption Report Reference + + + + + + + + + BBIE + Consumption Report Reference. Consumption_ Report Identifier. Identifier + Identification of the Consumption report referred. + 1 + Consumption Report Reference + Consumption + Report Identifier + Identifier + Identifier. Type + n/a + + + + + + + + + BBIE + Consumption Report Reference. Consumption Type. Text + Statement of the consumption type. + 0..1 + Consumption Report Reference + Consumption Type + Text + Text. Type + Consumption + + + + + + + + + BBIE + Consumption Report Reference. Consumption Type Code. Code + Statement of the consumptiontype as a code. + 0..1 + Consumption Report Reference + Consumption Type Code + Code + Code. Type + Consumption + + + + + + + + + BBIE + Consumption Report Reference. Total_ Consumed Quantity. Quantity + Statement of the total consumed quantity in the period the referred report are including. + 1 + Consumption Report Reference + Total + Consumed Quantity + Quantity + Quantity. Type + 20479.00 + + + + + + + + + ASBIE + Consumption Report Reference. Period + The consumption period + 1 + Consumption Report Reference + Period + Period + + + + + + + + + + + ABIE + Contact. Details + Information about a contactable person or organization department. + Contact + + + + + + + + + BBIE + Contact. Identifier + An identifier for the Contact. + 0..1 + Contact + Identifier + Identifier + Identifier. Type + Receivals Clerk + + + + + + + + + BBIE + Contact. Name + The name of the Contact (it is recomanded this is not to be used for person name but for functional names). + 0..1 + Contact + Name + Name + Name. Type + Delivery Dock + + + + + + + + + BBIE + Contact. Telephone. Text + The telephone number of the Contact. + 0..1 + Contact + Telephone + Text + Text. Type + + + + + + + + + BBIE + Contact. Telefax. Text + The fax number of the Contact. + 0..1 + Contact + Telefax + Text + Text. Type + + + + + + + + + BBIE + Contact. Electronic_ Mail. Text + The email address of the Contact. + 0..1 + Contact + Electronic + Mail + Text + Text. Type + + + + + + + + + BBIE + Contact. Note. Text + A note such as Emergency or After Hours describing the circumstances in which the Contact can be used. + 0..n + Contact + Note + Text + Text. Type + + + + + + + + + ASBIE + Contact. Other_ Communication. Communication + An association to Other Communication. + 0..n + Contact + Other + Communication + Communication + + + + + + + + + + + ABIE + Contract. Details + Information about a Contract. + Contract + + + + + + + + + BBIE + Contract. Identifier + Identifies the Contract. + 0..1 + Contract + Identifier + Identifier + Identifier. Type + CC23 + + + + + + + + + BBIE + Contract. Issue Date. Date + The date on which the Contract was issued. + 0..1 + Contract + Issue Date + Date + Date. Type + + + + + + + + + BBIE + Contract. Issue Time. Time + The time at which the Contract was issued. + 0..1 + Contract + Issue Time + Time + Time. Type + + + + + + + + + BBIE + Contract. Nomination Date. Date + The deadline date for which the services referred to in the Transport Execution Plan has to be booked. For example if this service is a carrier service executed Wednesday February 16th 2011 at 10 a.m. CET, the Nomination Date might be Tuesday February 15th 2011. + 0..1 + Contract + Nomination Date + Date + Date. Type + + + + + + + + + BBIE + Contract. Nomination Time. Time + The deadline time for which the service(s) referred to in the Transport Execution Plan has to be booked. For example if this service is executed Wednesday February 16th 2011 at 10 a.m. CET, the Nomination Date might be Tuesday February 15th 2011 and Nomination Time 4 p.m. latest. + 0..1 + Contract + Nomination Time + Time + Time. Type + + + + + + + + + BBIE + Contract. Contract Type Code. Code + The type of Contract, expressed as a code. + 0..1 + Contract + Contract Type Code + Code + Code. Type + + + + + + + + + BBIE + Contract. Contract Type. Text + The type of Contract, expressed as text. + 0..1 + Contract + Contract Type + Text + Text. Type + + + + + + + + + BBIE + Contract. Note. Text + Remarks to the Contract, expressed as text. + 0..n + Contract + Note + Text + Text. Type + Remarks + + + + + + + + + BBIE + Contract. Version. Identifier + Identifies the current version of this contract. + 0..1 + Contract + Version + Identifier + Identifier. Type + + + + + + + + + BBIE + Contract. Description. Text + Textual description of the contract instance. + 0..n + Contract + Description + Text + Text. Type + + + + + + + + + ASBIE + Contract. Validity_ Period. Period + An association to Validity Period. + 0..1 + Contract + Validity + Period + Period + + + + + + + + + ASBIE + Contract. Contract_ Document Reference. Document Reference + An associative reference to Contract Document. + 0..n + Contract + Contract + Document Reference + Document Reference + + + + + + + + + ASBIE + Contract. Nomination_ Period. Period + An association to Period. The nomination period is the period required to book the services specified in the contract before the services can begin. + 0..1 + Contract + Nomination + Period + Period + + + + + + + + + ASBIE + Contract. Contractual_ Delivery. Delivery + An association to Delivery. Describes the delivery of the services required to book the services specified in the contract. + 0..1 + Contract + Contractual + Delivery + Delivery + + + + + + + + + + + ABIE + Contract Execution Requirement. Details + Information about the requirement for the execution of the contract . + Contract Execution Requirement + + + + + + + + + BBIE + Contract Execution Requirement. Name + Name of the requirement. + 0..n + Contract Execution Requirement + Name + Name + Name. Type + + + + + + + + + BBIE + Contract Execution Requirement. Execution Requirement Code. Code + A code specifying the type of party that is independent of its role. + 0..1 + Contract Execution Requirement + Execution Requirement Code + Code + Code. Type + + + + + + + + + BBIE + Contract Execution Requirement. Description. Text + A textual description of the requirement. + 0..n + Contract Execution Requirement + Description + Text + Text. Type + + + + + + + + + + + ABIE + Contract Extension. Details + Information about the possible extensions of a contract. + Contract Extension + + + + + + + + + BBIE + Contract Extension. Options Description. Text + Option Description to be executed while awarding the contract. + 0..n + Contract Extension + Options Description + Text + Text. Type + + + + + + + + + BBIE + Contract Extension. Minimum_ Number. Numeric + Minimum number of contract extensions. + 0..1 + Contract Extension + Minimum + Number + Numeric + Numeric. Type + + + + + + + + + BBIE + Contract Extension. Maximum_ Number. Numeric + Maximum number of contract extensions. + 0..1 + Contract Extension + Maximum + Number + Numeric + Numeric. Type + + + + + + + + + ASBIE + Contract Extension. Option Validity_ Period. Period + The period during which the option for extending the contract is available. + 0..1 + Contract Extension + Option Validity + Period + Period + + + + + + + + + ASBIE + Contract Extension. Renewal + Period allowed for each contract extension. + 0..n + Contract Extension + Renewal + Renewal + + + + + + + + + + + ABIE + Contracting Party. Details + An individual, a group, or a body having a procurement role in a tendering process. + Contracting Party + + + + + + + + + BBIE + Contracting Party. Contracting Party Type Code. Code + A code specifying the type of party that is independent of its role. + 0..1 + Contracting Party + Contracting Party Type Code + Code + Code. Type + + + + + + + + + BBIE + Contracting Party. Activity Code. Code + A code specifying the nature of the type of business of the organization. + 0..n + Contracting Party + Activity Code + Code + Code. Type + + + + + + + + + BBIE + Contracting Party. Buyer Profile_ URI. Identifier + Uniform Resource Identifier (URI) communication information for this party s buyer profile. A buyer profile is a website where the party publishes its procurement opportunities. + 0..1 + Contracting Party + Buyer Profile + URI + Identifier + Identifier. Type + Buyer Profile + + + + + + + + + ASBIE + Contracting Party. Party + An association to Party + 1 + Contracting Party + Party + Party + + + + + + + + + + + ABIE + Corporate Registration Scheme. Details + Information directly relating a scheme for corporate registration of businesses. + Corporate Registration Scheme + + + + + + + + + BBIE + Corporate Registration Scheme. Identifier + Identifies the scheme. + 0..1 + Corporate Registration Scheme + Identifier + Identifier + Identifier. Type + ASIC in Australia + + + + + + + + + BBIE + Corporate Registration Scheme. Name + Identifies the scheme by name. + 0..1 + Corporate Registration Scheme + Name + Name + Name. Type + Australian Securities and Investment Commission in Australia + + + + + + + + + BBIE + Corporate Registration Scheme. Corporate Registration Type Code. Code + Identifies the type of scheme. + 0..1 + Corporate Registration Scheme + Corporate Registration Type Code + Code + Code. Type + ACN + + + + + + + + + ASBIE + Corporate Registration Scheme. Jurisdiction Region_ Address. Address + Associates the registration scheme with particulars that identify and locate the geographic area to which the scheme applies. + 0..n + Corporate Registration Scheme + Jurisdiction Region + Address + Address + England , Wales + + + + + + + + + + + ABIE + Correction. Details + The Statement of correction, for examples heating correction. + Correction + + + + + + + + + BBIE + Correction. Correction Type. Text + Statement for the correction type. + 0..1 + Correction + Correction Type + Text + Text. Type + Heating Correction + + + + + + + + + BBIE + Correction. Correction Type Code. Code + Statement at the code for the correction type. + 0..1 + Correction + Correction Type Code + Code + Code. Type + HeatingCorrection + + + + + + + + + BBIE + Correction. Meter Number. Text + Statement for meter number. + 0..1 + Correction + Meter Number + Text + Text. Type + 530071575 + + + + + + + + + BBIE + Correction. Gas Pressure. Quantity + Correction of the gas pressure. + 0..1 + Correction + Gas Pressure + Quantity + Quantity. Type + + + + + + + + + BBIE + Correction. Actual_ Temperature Reduction. Quantity + Statement for the actuel heating correction temperature. + 0..1 + Correction + Actual + Temperature Reduction + Quantity + Quantity. Type + -36.69 + + + + + + + + + BBIE + Correction. Normal_ Temperature Reduction. Quantity + Statement for the standard for heating correction temperature. + 0..1 + Correction + Normal + Temperature Reduction + Quantity + Quantity. Type + -37.00 + + + + + + + + + BBIE + Correction. Difference_ Temperature Reduction. Quantity + Deviation from standard heating correction. + 0..1 + Correction + Difference + Temperature Reduction + Quantity + Quantity. Type + 0.31 + + + + + + + + + BBIE + Correction. Description. Text + Description related to the corrections. + 0..1 + Correction + Description + Text + Text. Type + + + + + + + + + BBIE + Correction. Correction Unit Amount. Amount + Correction per MWH per degree C. + 0..1 + Correction + Correction Unit Amount + Amount + Amount. Type + 0.0000 + + + + + + + + + BBIE + Correction. Consumption Energy. Quantity + Your consumpt for district heating energy. + 0..1 + Correction + Consumption Energy + Quantity + Quantity. Type + 563.6240 + + + + + + + + + BBIE + Correction. Consumption Water. Quantity + Your consumpt for district heating water. + 0..1 + Correction + Consumption Water + Quantity + Quantity. Type + 13212.14 + + + + + + + + + BBIE + Correction. Correction Amount. Amount + Your correction for heating correction. + 0..1 + Correction + Correction Amount + Amount + Amount. Type + 0.00 + + + + + + + + + + + ABIE + Country. Details + Information about a geopolitical country. + Country + + + + + + + + + BBIE + Country. Identification Code. Code + An identifier for the Country. + 0..1 + Country + Identification Code + Code + Country Identification_ Code. Type + + + + + + + + + BBIE + Country. Name + The name of the Country. + 0..1 + Country + Name + Name + Name. Type + SOUTH AFRICA + + + + + + + + + + + ABIE + Credit Account. Details + Information about a Credit Account (for sales on account). + Credit Account + + + + + + + + + BBIE + Credit Account. Account Identifier. Identifier + Identifies the Credit Account. + 1 + Credit Account + Account Identifier + Identifier + Identifier. Type + Customer Code 29 + + + + + + + + + + + ABIE + Credit Note Line. Details + Information about a Credit Note Line. + Credit Note Line + + + + + + + + + BBIE + Credit Note Line. Identifier + Identifies the Credit Note Line. + 1 + Credit Note Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Credit Note Line. UUID. Identifier + A universally unique identifier for an instance of this ABIE. + 0..1 + Credit Note Line + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Credit Note Line. Note. Text + Free-form text applying to the Credit Note Line. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Credit Note Line + Note + Text + Text. Type + + + + + + + + + BBIE + Credit Note Line. Credited_ Quantity. Quantity + The quantity of Items credited. + 0..1 + Credit Note Line + Credited + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Credit Note Line. Line Extension Amount. Amount + The total amount for the Credit Note Line, including Allowance Charges but net of taxes. + 0..1 + Credit Note Line + Line Extension Amount + Amount + Amount. Type + + + + + + + + + BBIE + Credit Note Line. Tax Point Date. Date + The date of the Credit Note Line, used to indicate the point at which tax becomes applicable. + 0..1 + Credit Note Line + Tax Point Date + Date + Date. Type + + + + + + + + + BBIE + Credit Note Line. Accounting Cost Code. Code + The buyer s accounting code applied to the Credit Note Line. + 0..1 + Credit Note Line + Accounting Cost Code + Code + Code. Type + + + + + + + + + BBIE + Credit Note Line. Accounting Cost. Text + The buyer s accounting cost centre applied to the Credit Note Line, expressed as text. + 0..1 + Credit Note Line + Accounting Cost + Text + Text. Type + + + + + + + + + BBIE + Credit Note Line. Payment Purpose Code. Code + The business purposes for payment express as code. + 0..1 + Credit Note Line + Payment Purpose Code + Code + Code. Type + + + + + + + + + BBIE + Credit Note Line. Free Of Charge_ Indicator. Indicator + Indicates whether the Invoice Line is Free Of Charge (default = false). + 0..1 + Credit Note Line + Free Of Charge + Indicator + Indicator + Indicator. Type + + + + + + + + + ASBIE + Credit Note Line. Invoice_ Period. Period + An association to period(s) to which the Credit Note Line applies. + 0..n + Credit Note Line + Invoice + Period + Period + + + + + + + + + ASBIE + Credit Note Line. Order Line Reference + An association to Order Line Reference. + 0..n + Credit Note Line + Order Line Reference + Order Line Reference + + + + + + + + + ASBIE + Credit Note Line. Discrepancy_ Response. Response + An association to Discrepancy Response; the reason for the Credit. + 0..n + Credit Note Line + Discrepancy + Response + Response + + + + + + + + + ASBIE + Credit Note Line. Despatch_ Line Reference. Line Reference + An associative reference to Despatch Line. + 0..n + Credit Note Line + Despatch + Line Reference + Line Reference + + + + + + + + + ASBIE + Credit Note Line. Receipt_ Line Reference. Line Reference + An associative reference to Receipt Line. + 0..n + Credit Note Line + Receipt + Line Reference + Line Reference + + + + + + + + + ASBIE + Credit Note Line. Billing Reference + An association to Billing Reference. + 0..n + Credit Note Line + Billing Reference + Billing Reference + + + + + + + + + ASBIE + Credit Note Line. Document Reference + An association to Document Reference. + 0..n + Credit Note Line + Document Reference + Document Reference + + + + + + + + + ASBIE + Credit Note Line. Pricing Reference + An association to Pricing Reference. + 0..1 + Credit Note Line + Pricing Reference + Pricing Reference + + + + + + + + + ASBIE + Credit Note Line. Originator_ Party. Party + The party who originated the Order to which the Credit Note is related. + 0..1 + Credit Note Line + Originator + Party + Party + + + + + + + + + ASBIE + Credit Note Line. Delivery + An association to Delivery. + 0..n + Credit Note Line + Delivery + Delivery + + + + + + + + + ASBIE + Credit Note Line. Payment Terms + An association to Payment Terms. + 0..n + Credit Note Line + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Credit Note Line. Tax Total + An association to Tax Total. + 0..n + Credit Note Line + Tax Total + Tax Total + + + + + + + + + ASBIE + Credit Note Line. Allowance Charge + An association to Allowance Charge. + 0..n + Credit Note Line + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Credit Note Line. Item + An association to Item + 0..1 + Credit Note Line + Item + Item + + + + + + + + + ASBIE + Credit Note Line. Price + An association to Price. + 0..1 + Credit Note Line + Price + Price + + + + + + + + + ASBIE + Credit Note Line. Delivery Terms + An association to Delivery Terms. + 0..n + Credit Note Line + Delivery Terms + Delivery Terms + + + + + + + + + ASBIE + Credit Note Line. Sub_ Credit Note Line. Credit Note Line + An association to one or more Credit Note Lines. + 0..n + Credit Note Line + Sub + Credit Note Line + Credit Note Line + + + + + + + + + + + ABIE + Customer Party. Details + Information about the Customer Party. + Customer Party + + + + + + + + + BBIE + Customer Party. Customer Assigned_ Account Identifier. Identifier + An identifier for the Customer s account, assigned by the Customer itself. + 0..1 + Customer Party + Customer Assigned + Account Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Customer Party. Supplier Assigned_ Account Identifier. Identifier + An identifier for the Customer s account, assigned by the Supplier. + 0..1 + Customer Party + Supplier Assigned + Account Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Customer Party. Additional_ Account Identifier. Identifier + An identifier for the Customer s account, assigned by a third party. + 0..n + Customer Party + Additional + Account Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Customer Party. Party + An association to Party. + 0..1 + Customer Party + Party + Party + + + + + + + + + ASBIE + Customer Party. Delivery_ Contact. Contact + An association to Delivery Contact. + 0..1 + Customer Party + Delivery + Contact + Contact + + + + + + + + + ASBIE + Customer Party. Accounting_ Contact. Contact + An association to Accounting Contact (Customer). + 0..1 + Customer Party + Accounting + Contact + Contact + + + + + + + + + ASBIE + Customer Party. Buyer_ Contact. Contact + An association to Buyer Contact. + 0..1 + Customer Party + Buyer + Contact + Contact + + + + + + + + + + + ABIE + Debit Note Line. Details + Information about a Debit Note Line. + Debit Note Line + + + + + + + + + BBIE + Debit Note Line. Identifier + Identifies the Debit Note Line. + 1 + Debit Note Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Debit Note Line. UUID. Identifier + A universally unique identifier for an instance of this ABIE. + 0..1 + Debit Note Line + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Debit Note Line. Note. Text + Free-form text applying to the Debit Note Line. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Debit Note Line + Note + Text + Text. Type + + + + + + + + + BBIE + Debit Note Line. Debited_ Quantity. Quantity + The quantity of Items debited. + 0..1 + Debit Note Line + Debited + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Debit Note Line. Line Extension Amount. Amount + The total amount for the Debit Note Line, including Allowance Charges but net of taxes. + 1 + Debit Note Line + Line Extension Amount + Amount + Amount. Type + + + + + + + + + BBIE + Debit Note Line. Tax Point Date. Date + The date of the Debit Note Line, used to indicate the point at which tax becomes applicable. + 0..1 + Debit Note Line + Tax Point Date + Date + Date. Type + + + + + + + + + BBIE + Debit Note Line. Accounting Cost Code. Code + The buyer s accounting code applied to the Debit Note Line. + 0..1 + Debit Note Line + Accounting Cost Code + Code + Code. Type + + + + + + + + + BBIE + Debit Note Line. Accounting Cost. Text + The buyer s accounting cost centre applied to the Debit Note Line, expressed as text. + 0..1 + Debit Note Line + Accounting Cost + Text + Text. Type + + + + + + + + + BBIE + Debit Note Line. Payment Purpose Code. Code + The business purposes for payment express as code. + 0..1 + Debit Note Line + Payment Purpose Code + Code + Code. Type + + + + + + + + + ASBIE + Debit Note Line. Discrepancy_ Response. Response + An association to Discrepancy Response; the reason for the Debit. + 0..n + Debit Note Line + Discrepancy + Response + Response + + + + + + + + + ASBIE + Debit Note Line. Despatch_ Line Reference. Line Reference + An associative reference to Despatch Line. + 0..n + Debit Note Line + Despatch + Line Reference + Line Reference + + + + + + + + + ASBIE + Debit Note Line. Receipt_ Line Reference. Line Reference + An associative reference to Receipt Line. + 0..n + Debit Note Line + Receipt + Line Reference + Line Reference + + + + + + + + + ASBIE + Debit Note Line. Billing Reference + An association to Billing Reference. + 0..n + Debit Note Line + Billing Reference + Billing Reference + + + + + + + + + ASBIE + Debit Note Line. Document Reference + An association to Document Reference. + 0..n + Debit Note Line + Document Reference + Document Reference + + + + + + + + + ASBIE + Debit Note Line. Pricing Reference + An association to Pricing Reference. + 0..1 + Debit Note Line + Pricing Reference + Pricing Reference + + + + + + + + + ASBIE + Debit Note Line. Delivery + An association to Delivery. + 0..n + Debit Note Line + Delivery + Delivery + + + + + + + + + ASBIE + Debit Note Line. Tax Total + An association to Tax Total. + 0..n + Debit Note Line + Tax Total + Tax Total + + + + + + + + + ASBIE + Debit Note Line. Allowance Charge + Information about a charge or discount price component. + 0..n + Debit Note Line + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Debit Note Line. Item + An association to Item + 0..1 + Debit Note Line + Item + Item + + + + + + + + + ASBIE + Debit Note Line. Price + An association to Price. + 0..1 + Debit Note Line + Price + Price + + + + + + + + + ASBIE + Debit Note Line. Sub_ Debit Note Line. Debit Note Line + An association to one or more Debit Note Lines. + 0..n + Debit Note Line + Sub + Debit Note Line + Debit Note Line + + + + + + + + + + + ABIE + Declaration. Details + A declaration defined by an economic operator. + Declaration + + + + + + + + + BBIE + Declaration. Name + Name of the declaration. + 0..n + Declaration + Name + Name + Name. Type + + + + + + + + + BBIE + Declaration. Declaration Type Code. Code + A code specifying the declaration. + 0..1 + Declaration + Declaration Type Code + Code + Code. Type + + + + + + + + + BBIE + Declaration. Description. Text + A textual description of the declaration. + 0..n + Declaration + Description + Text + Text. Type + + + + + + + + + BBIE + Declaration. Evidence Supplied. Identifier + An ID reference to the Evidence that justifies this declaration. + 0..n + Declaration + Evidence Supplied + Identifier + Identifier. Type + + + + + + + + + + + ABIE + Delivery. Details + Information about Delivery. + Delivery + + + + + + + + + BBIE + Delivery. Identifier + Identifies the Delivery. + 0..1 + Delivery + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Delivery. Quantity + The quantity in a Delivery. + 0..1 + Delivery + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Delivery. Minimum_ Quantity. Quantity + The minimum quantity in a Delivery. + 0..1 + Delivery + Minimum + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Delivery. Maximum_ Quantity. Quantity + The maximum quantity in a Delivery. + 0..1 + Delivery + Maximum + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Delivery. Actual_ Delivery Date. Date + The actual Delivery date. + 0..1 + Delivery + Actual + Delivery Date + Date + Date. Type + + + + + + + + + BBIE + Delivery. Actual_ Delivery Time. Time + The actual Delivery time. + 0..1 + Delivery + Actual + Delivery Time + Time + Time. Type + + + + + + + + + BBIE + Delivery. Latest_ Delivery Date. Date + The latest delivery date allowed by the buyer. + 0..1 + Delivery + Latest + Delivery Date + Date + Date. Type + + + + + + + + + BBIE + Delivery. Latest_ Delivery Time. Time + The latest delivery time allowed by the buyer. + 0..1 + Delivery + Latest + Delivery Time + Time + Time. Type + + + + + + + + + BBIE + Delivery. Release. Identifier + The Release ID is used for identifying legit access to delivery locations, e.g. Port terminals. + 0..1 + Delivery + Release + Identifier + Identifier. Type + + + + + + + + + BBIE + Delivery. Tracking Identifier. Identifier + The delivery Tracking ID (for transport tracking). + 0..1 + Delivery + Tracking Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Delivery. Delivery_ Address. Address + An association to Delivery Address. + 0..1 + Delivery + Delivery + Address + Address + + + + + + + + + ASBIE + Delivery. Delivery_ Location. Location + An association to Location. + 0..1 + Delivery + Delivery + Location + Location + + + + + + + + + ASBIE + Delivery. Alternative Delivery_ Location. Location + An association to an alternative delivery location. + 0..1 + Delivery + Alternative Delivery + Location + Location + + + + + + + + + ASBIE + Delivery. Requested Delivery_ Period. Period + The requested Period for Delivery. + 0..1 + Delivery + Requested Delivery + Period + Period + + + + + + + + + ASBIE + Delivery. Promised Delivery_ Period. Period + The promised Period for Delivery. + 0..1 + Delivery + Promised Delivery + Period + Period + + + + + + + + + ASBIE + Delivery. Estimated Delivery_ Period. Period + The estimated Period for Delivery. + 0..1 + Delivery + Estimated Delivery + Period + Period + + + + + + + + + ASBIE + Delivery. Carrier_ Party. Party + The party responsible for delivering the goods. + 0..1 + Delivery + Carrier + Party + Party + + + + + + + + + ASBIE + Delivery. Delivery_ Party. Party + The party to whom the goods/services are delivered. + 0..1 + Delivery + Delivery + Party + Party + + + + + + + + + ASBIE + Delivery. Notify_ Party. Party + Any party that should be notified of the Delivery. + 0..n + Delivery + Notify + Party + Party + + + + + + + + + ASBIE + Delivery. Despatch + An association to the Despatch. + 0..1 + Delivery + Despatch + Despatch + + + + + + + + + ASBIE + Delivery. Delivery Terms + An association to the Delivery Terms + 0..n + Delivery + Delivery Terms + Delivery Terms + + + + + + + + + ASBIE + Delivery. Minimum_ Delivery Unit. Delivery Unit + An association to Delivery Unit + 0..1 + Delivery + Minimum + Delivery Unit + Delivery Unit + + + + + + + + + ASBIE + Delivery. Maximum_ Delivery Unit. Delivery Unit + An association to Delivery Unit + 0..1 + Delivery + Maximum + Delivery Unit + Delivery Unit + + + + + + + + + ASBIE + Delivery. Shipment + An association to Shipment. + 0..1 + Delivery + Shipment + Shipment + + + + + + + + + + + ABIE + Delivery Terms. Details + Information about Delivery Terms. + Delivery Terms + + + + + + + + + BBIE + Delivery Terms. Identifier + Identifies the Delivery Terms. + 0..1 + Delivery Terms + Identifier + Identifier + Identifier. Type + CIF, FOB, or EXW from the INCOTERMS Terms of Delivery. (2000 version preferred.) + + + + + + + + + BBIE + Delivery Terms. Special_ Terms. Text + A description of special conditions relating to the Delivery Terms. + 0..1 + Delivery Terms + Special + Terms + Text + Text. Type + + + + + + + + + BBIE + Delivery Terms. Loss Risk Responsibility Code. Code + An identifier for the responsibility for loss risk in the context of the Delivery Terms, expressed as a code. + 0..1 + Delivery Terms + Loss Risk Responsibility Code + Code + Code. Type + + + + + + + + + BBIE + Delivery Terms. Loss Risk. Text + A description of the loss risk in the context of the Delivery Terms. + 0..1 + Delivery Terms + Loss Risk + Text + Text. Type + + + + + + + + + BBIE + Delivery Terms. Amount + + 0..1 + Delivery Terms + Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Delivery Terms. Delivery_ Location. Location + An association to Location, e.g., a port. + 0..1 + Delivery Terms + Delivery + Location + Location + + + + + + + + + ASBIE + Delivery Terms. Allowance Charge + An association to Allowance Charge. + 0..1 + Delivery Terms + Allowance Charge + Allowance Charge + + + + + + + + + + + ABIE + Delivery Unit. Details + Information about a Delivery Unit. + Delivery Unit + + + + + + + + + BBIE + Delivery Unit. Batch Quantity. Quantity + The quantity of ordered Items that constitutes a batch for delivery purposes. + 1 + Delivery Unit + Batch Quantity + Quantity + Quantity. Type + 100 units , by the dozen + + + + + + + + + BBIE + Delivery Unit. Consumer_ Unit. Quantity + The quantity of consumer units in the Delivery Unit. + 0..1 + Delivery Unit + Consumer + Unit + Quantity + Quantity. Type + packs of 10 + + + + + + + + + BBIE + Delivery Unit. Hazardous Risk_ Indicator. Indicator + Indicates whether the Item as delivered is hazardous. + 0..1 + Delivery Unit + Hazardous Risk + Indicator + Indicator + Indicator. Type + Default is negative + + + + + + + + + + + ABIE + Dependent Price Reference. Details + Information about the price of an item as a percentage of the price of another item. + Dependent Price Reference + + + + + + + + + BBIE + Dependent Price Reference. Percent + The price, expressed as a percentage of the price of referred item. + 0..1 + Dependent Price Reference + Percent + Percent + Percent. Type + + + + + + + + + ASBIE + Dependent Price Reference. Location_ Address. Address + An association to Address. + 0..1 + Dependent Price Reference + Location + Address + Address + + + + + + + + + ASBIE + Dependent Price Reference. Dependent_ Line Reference. Line Reference + Reference to a Line on a document. + 0..1 + Dependent Price Reference + Dependent + Line Reference + Line Reference + + + + + + + + + + + ABIE + Despatch. Details + Information about Despatch. + Despatch + + + + + + + + + BBIE + Despatch. Identifier + The identifier for the Delivery. + 0..1 + Despatch + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Despatch. Requested_ Despatch Date. Date + The despatch (pick-up) date requested by the buyer. + 0..1 + Despatch + Requested + Despatch Date + Date + Date. Type + + + + + + + + + BBIE + Despatch. Requested_ Despatch Time. Time + The despatch (pick-up) time requested by the buyer. + 0..1 + Despatch + Requested + Despatch Time + Time + Time. Type + + + + + + + + + BBIE + Despatch. Estimated_ Despatch Date. Date + The despatch (pick-up) date estimated by the seller or Despatch. + 0..1 + Despatch + Estimated + Despatch Date + Date + Date. Type + + + + + + + + + BBIE + Despatch. Estimated_ Despatch Time. Time + The despatch (pick-up) time estimated by the seller or Despatch. + 0..1 + Despatch + Estimated + Despatch Time + Time + Time. Type + + + + + + + + + BBIE + Despatch. Actual_ Despatch Date. Date + The actual despatch (pick-up) date. + 0..1 + Despatch + Actual + Despatch Date + Date + Date. Type + + + + + + + + + BBIE + Despatch. Actual_ Despatch Time. Time + The actual despatch (pick-up) time. + 0..1 + Despatch + Actual + Despatch Time + Time + Time. Type + + + + + + + + + BBIE + Despatch. Guaranteed_ Despatch Date. Date + + 0..1 + Despatch + Guaranteed + Despatch Date + Date + Date. Type + + + + + + + + + BBIE + Despatch. Guaranteed_ Despatch Time. Time + + 0..1 + Despatch + Guaranteed + Despatch Time + Time + Time. Type + + + + + + + + + BBIE + Despatch. Release. Identifier + The Release ID is used for identifying legit access to despatch/pickup locations, e.g. Port terminals. + 0..1 + Despatch + Release + Identifier + Identifier. Type + + + + + + + + + BBIE + Despatch. Instructions. Text + + 0..1 + Despatch + Instructions + Text + Text. Type + + + + + + + + + ASBIE + Despatch. Despatch_ Address. Address + An association to Despatch Address. + 0..1 + Despatch + Despatch + Address + Address + + + + + + + + + ASBIE + Despatch. Despatch_ Location. Location + An association to Despatch Location. + 0..1 + Despatch + Despatch + Location + Location + + + + + + + + + ASBIE + Despatch. Despatch_ Party. Party + The party who despatched the delivery. + 0..1 + Despatch + Despatch + Party + Party + + + + + + + + + ASBIE + Despatch. Carrier_ Party. Party + The party who received the despatch. + 0..1 + Despatch + Carrier + Party + Party + + + + + + + + + ASBIE + Despatch. Notify_ Party. Party + Any party that should be notified of the Despatch. + 0..n + Despatch + Notify + Party + Party + + + + + + + + + ASBIE + Despatch. Contact + An association to Contact. + 0..1 + Despatch + Contact + Contact + + + + + + + + + ASBIE + Despatch. Estimated Despatch_ Period. Period + The estimated Period for Despatch/Pickup. + 0..1 + Despatch + Estimated Despatch + Period + Period + + + + + + + + + ASBIE + Despatch. Requested Despatch_ Period. Period + The requested Period for Despatch/Pickup. + 0..1 + Despatch + Requested Despatch + Period + Period + + + + + + + + + + + ABIE + Despatch Line. Details + Information about a Despatch Line. + Despatch Line + + + + + + + + + BBIE + Despatch Line. Identifier + Identifies the Despatch Line. + 1 + Despatch Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Despatch Line. UUID. Identifier + A universally unique identifier for an instance of this ABIE. + 0..1 + Despatch Line + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Despatch Line. Note. Text + Free-form text applying to the Despatch Line. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Despatch Line + Note + Text + Text. Type + + + + + + + + + BBIE + Despatch Line. Line Status Code. Code + Identifies the status of the Despatch Line with respect to its original state. + 0..1 + Despatch Line + Line Status Code + Code + Line Status_ Code. Type + + + + + + + + + BBIE + Despatch Line. Delivered_ Quantity. Quantity + The quantity despatched. + 0..1 + Despatch Line + Delivered + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Despatch Line. Backorder_ Quantity. Quantity + The quantity on Back Order at the Supplier. + 0..1 + Despatch Line + Backorder + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Despatch Line. Backorder_ Reason. Text + The reason for the Back Order. + 0..1 + Despatch Line + Backorder + Reason + Text + Text. Type + + + + + + + + + BBIE + Despatch Line. Outstanding_ Quantity. Quantity + The quantity outstanding (which will follow in a later despatch). + 0..1 + Despatch Line + Outstanding + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Despatch Line. Outstanding_ Reason. Text + The reason for the Outstanding Quantity. + 0..1 + Despatch Line + Outstanding + Reason + Text + Text. Type + + + + + + + + + BBIE + Despatch Line. Oversupply_ Quantity. Quantity + The quantity over-supplied. + 0..1 + Despatch Line + Oversupply + Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Despatch Line. Order Line Reference + An association to Order Line Reference. + 1..n + Despatch Line + Order Line Reference + Order Line Reference + + + + + + + + + ASBIE + Despatch Line. Document Reference + An association to Document Reference. + 0..n + Despatch Line + Document Reference + Document Reference + + + + + + + + + ASBIE + Despatch Line. Item + An association to Item. + 1 + Despatch Line + Item + Item + + + + + + + + + ASBIE + Despatch Line. Shipment + An association to Shipment. + 0..n + Despatch Line + Shipment + Shipment + + + + + + + + + + + ABIE + Dimension. Details + Information about a measurable dimension of an item. + Dimension + + + + + + + + + BBIE + Dimension. Attribute Identifier. Identifier + An identifier for the attribute to which the measure applies. + 1 + Dimension + Attribute Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Dimension. Measure + The measurement value. + 0..1 + Dimension + Measure + Measure + Measure. Type + + + + + + + + + BBIE + Dimension. Description. Text + A description of the measurement attribute. + 0..n + Dimension + Description + Text + Text. Type + + + + + + + + + BBIE + Dimension. Minimum_ Measure. Measure + The minimum value in a range of measurement. + 0..1 + Dimension + Minimum + Measure + Measure + Measure. Type + + + + + + + + + BBIE + Dimension. Maximum_ Measure. Measure + The maximum value in a range of measurement. + 0..1 + Dimension + Maximum + Measure + Measure + Measure. Type + + + + + + + + + + + ABIE + Document Distribution. Details + The details of the distribution of the document among business partners. + Document Distribution + + + + + + + + + BBIE + Document Distribution. Print_ Qualifier. Text + The access right for a Party to distribute the document. + 1 + Document Distribution + Print + Qualifier + Text + Text. Type + + + + + + + + + BBIE + Document Distribution. Maximum_ Copies. Numeric + Specifies the maximum number of copies of the document that the user can print. + 1 + Document Distribution + Maximum + Copies + Numeric + Numeric. Type + + + + + + + + + ASBIE + Document Distribution. Party + Details of the Party who can access the document. + 1 + Document Distribution + Party + Party + + + + + + + + + + + ABIE + Document Reference. Details + Information about a document referred to in another document. + Document Reference + + + + + + + + + BBIE + Document Reference. Identifier + Identifies the document being referred to. + 1 + Document Reference + Identifier + Identifier + Identifier. Type + PO-001 3333-44-123 + + + + + + + + + BBIE + Document Reference. Copy_ Indicator. Indicator + Indicates whether the referenced document is a copy (true) or the original (false). + 0..1 + Document Reference + Copy + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Document Reference. UUID. Identifier + A universally unique identifier for an instance of this ABIE. + 0..1 + Document Reference + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Document Reference. Issue Date. Date + The date, assigned by the sender of the referenced document, on which the referenced document was issued. + 0..1 + Document Reference + Issue Date + Date + Date. Type + + + + + + + + + BBIE + Document Reference. Issue Time. Time + The time, assigned by the sender of the referenced document, on which the referenced document was issued. + 0..1 + Document Reference + Issue Time + Time + Time. Type + + + + + + + + + BBIE + Document Reference. Document Type Code. Code + The referenced document type, expressed as a code. + 0..1 + Document Reference + Document Type Code + Code + Code. Type + + + + + + + + + BBIE + Document Reference. Document Type. Text + The referenced document type, expressed as text. + 0..1 + Document Reference + Document Type + Text + Text. Type + + + + + + + + + BBIE + Document Reference. XPath. Text + Refers to another part of the same document instance. + 0..n + Document Reference + XPath + Text + Text. Type + + + + + + + + + BBIE + Document Reference. Language. Identifier + Identifies the language used in the referenced document. + 0..1 + Document Reference + Language + Identifier + Identifier. Type + + + + + + + + + BBIE + Document Reference. Locale Code. Code + The locale where the language is used, expressed as a code. + 0..1 + Document Reference + Locale Code + Code + Code. Type + + + + + + + + + BBIE + Document Reference. Version. Identifier + Indicates the current version of the referred document. + 0..1 + Document Reference + Version + Identifier + Identifier. Type + 1.1 + + + + + + + + + BBIE + Document Reference. Document Status Code. Code + Identifies the status of the referred document with respect to its original state. + 0..1 + Document Reference + Document Status Code + Code + Document Status_ Code. Type + + + + + + + + + BBIE + Document Reference. Document_ Description. Text + Textual description of the referred document. + 0..n + Document Reference + Document + Description + Text + Text. Type + stock no longer provided + + + + + + + + + ASBIE + Document Reference. Attachment + An attached document, externally referred to, referred to in the MIME location, or embedded. + 0..1 + Document Reference + Attachment + Attachment + + + + + + + + + ASBIE + Document Reference. Validity_ Period. Period + An association to Validity Period. + 0..1 + Document Reference + Validity + Period + Period + + + + + + + + + ASBIE + Document Reference. Issuer_ Party. Party + Details of the Party who issued the referenced document. + 0..1 + Document Reference + Issuer + Party + Party + + + + + + + + + ASBIE + Document Reference. Result Of Verification + + 0..1 + Document Reference + Result Of Verification + Result Of Verification + + + + + + + + + + + ABIE + Document Response. Details + Information about responses to a document (at the application level). + Document Response + + + + + + + + + ASBIE + Document Response. Response + The response to the document. + 1 + Document Response + Response + Response + + + + + + + + + ASBIE + Document Response. Document Reference + An association to Document Reference. + 1..n + Document Response + Document Reference + Document Reference + + + + + + + + + ASBIE + Document Response. Issuer_ Party. Party + The party who issued a document. + 0..1 + Document Response + Issuer + Party + Party + + + + + + + + + ASBIE + Document Response. Recipient_ Party. Party + The party for whom the document is intended. + 0..1 + Document Response + Recipient + Party + Party + + + + + + + + + ASBIE + Document Response. Line Response + Response to various lines in the document. + 0..n + Document Response + Line Response + Line Response + + + + + + + + + + + ABIE + Duty. Details + Statement of duties - both call duties and time duties. + Duty + + + + + + + + + BBIE + Duty. Amount + The duty amount. + 1 + Duty + Amount + Amount + Amount. Type + 88.23 + + + + + + + + + BBIE + Duty. Duty. Text + The duty. + 0..1 + Duty + Duty + Text + Text. Type + ConnectionFee + + + + + + + + + BBIE + Duty. Duty Code. Code + The duty code. + 0..1 + Duty + Duty Code + Code + Code. Type + ConnectionFee + + + + + + + + + ASBIE + Duty. Tax Category + An association to Tax Category. + 0..1 + Duty + Tax Category + Tax Category + + + + + + + + + + + ABIE + Economic Operator Short List. Details + Information about the creation of a short list of economic operators for a tendering process + Economic Operator Short List + + + + + + + + + BBIE + Economic Operator Short List. Limitation_ Description. Text + Criteria to select a restricted number of candidates + 0..n + Economic Operator Short List + Limitation + Description + Text + Text. Type + + + + + + + + + BBIE + Economic Operator Short List. Expected_ Quantity. Quantity + Expected number of economic operators in this tendering process. + 0..1 + Economic Operator Short List + Expected + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Economic Operator Short List. Maximum_ Quantity. Quantity + Maximum number of economic operators in this tendering process. + 0..1 + Economic Operator Short List + Maximum + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Economic Operator Short List. Minimum_ Quantity. Quantity + Minimum number of economic operators in thistendering process. + 0..1 + Economic Operator Short List + Minimum + Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Economic Operator Short List. Pre Selected_ Party. Party + Parties preselected in a negotiated procedure. + 0..n + Economic Operator Short List + Pre Selected + Party + Party + + + + + + + + + + + ABIE + Endorsement. Details + Details of an endorsement on the document. + Endorsement + + + + + + + + + BBIE + Endorsement. Document. Identifier + Identifies the endorsement. + 1 + Endorsement + Document + Identifier + Identifier. Type + + + + + + + + + BBIE + Endorsement. Approval Status. Text + Specifies the status of the endorsement. + 1 + Endorsement + Approval Status + Text + Text. Type + Authentication Code + + + + + + + + + BBIE + Endorsement. Remarks. Text + Remarks by the endorsing party. + 0..n + Endorsement + Remarks + Text + Text. Type + + + + + + + + + ASBIE + Endorsement. Endorser Party + The type of party providing the endorsement. + 1 + Endorsement + Endorser Party + Endorser Party + + + + + + + + + ASBIE + Endorsement. Signature + One or more signatures applied to the endorsement. + 0..n + Endorsement + Signature + Signature + + + + + + + + + + + ABIE + Endorser Party. Details + The party endorsing a document. + Endorser Party + + + + + + + + + BBIE + Endorser Party. Role Code. Code + The role of the party providing the endorsement, e.g., Issuer, Embassy, Insurance, etc. + 1 + Endorser Party + Role Code + Code + Code. Type + + + + + + + + + BBIE + Endorser Party. Sequence. Numeric + The sequence in which the endorsements are to be applied. + 1 + Endorser Party + Sequence + Numeric + Numeric. Type + + + + + + + + + ASBIE + Endorser Party. Party + Details of the party endorsing the application. + 1 + Endorser Party + Party + Party + + + + + + + + + ASBIE + Endorser Party. Signatory_ Contact. Contact + Details of the individual representing the exporter who signs the Certificate of Origin application before submitting it to the Issuer Party. + 1 + Endorser Party + Signatory + Contact + Contact + + + + + + + + + + + ABIE + Energy Tax Report. Details + A report of energy taxes. + Energy Tax Report + + + + + + + + + BBIE + Energy Tax Report. Tax Energy Amount. Amount + Statement of the amount for the tax and duties. + 0..1 + Energy Tax Report + Tax Energy Amount + Amount + Amount. Type + 3087.90 + + + + + + + + + BBIE + Energy Tax Report. Tax Energy_ On Account Amount. Amount + Statement of the amount for the tax and duties, who is payed a conto. + 0..1 + Energy Tax Report + Tax Energy + On Account Amount + Amount + Amount. Type + 2855.40 + + + + + + + + + BBIE + Energy Tax Report. Tax Energy Balance. Amount + Statement of the tax amout balace. + 0..1 + Energy Tax Report + Tax Energy Balance + Amount + Amount. Type + 232.49 + + + + + + + + + ASBIE + Energy Tax Report. Tax Scheme + Information about a tax scheme. + 1 + Energy Tax Report + Tax Scheme + Tax Scheme + + + + + + + + + + + ABIE + Energy Water Supply. Details + + Energy Water Supply + + + + + + + + + ASBIE + Energy Water Supply. Consumption Report + Staticstisc about the consumers consumption and the development in comsumption. + 0..n + Energy Water Supply + Consumption Report + Consumption Report + + + + + + + + + ASBIE + Energy Water Supply. Energy Tax Report + A report of energy taxes. + 0..n + Energy Water Supply + Energy Tax Report + Energy Tax Report + + + + + + + + + ASBIE + Energy Water Supply. Consumption Average + The Average price included VAT. + 0..n + Energy Water Supply + Consumption Average + Consumption Average + + + + + + + + + ASBIE + Energy Water Supply. Energy Water_ Correction. Correction + The Statement of correction, for examples heating correction. + 0..n + Energy Water Supply + Energy Water + Correction + Correction + + + + + + + + + + + ABIE + Environmental Emission. Details + Specifies the environmental emission (footprint). + Environmental Emission + + + + + + + + + BBIE + Environmental Emission. Environmental Emission Type Code. Code + Defines the type of environmental emission. For example CO2, NOX, etc. + 1 + Environmental Emission + Environmental Emission Type Code + Code + Code. Type + + + + + + + + + BBIE + Environmental Emission. Value. Measure + Specifies the value of the environmental emission. + 1 + Environmental Emission + Value + Measure + Measure. Type + + + + + + + + + BBIE + Environmental Emission. Description. Text + Textual descriptions related to the environmental emission. + 0..n + Environmental Emission + Description + Text + Text. Type + + + + + + + + + + + ABIE + Evaluation Criteria. Details + Criteria that is required to a tenderer in order to admit or reject him in the tendering process. + Evaluation Criteria + + + + + + + + + BBIE + Evaluation Criteria. Evaluation Criteria Type Code. Code + Code that defines the financial or technical criteria, such as total revenue, qualified staff. + 0..1 + Evaluation Criteria + Evaluation Criteria Type Code + Code + Code. Type + + + + + + + + + BBIE + Evaluation Criteria. Description. Text + Textual description of the criteria. + 0..n + Evaluation Criteria + Description + Text + Text. Type + + + + + + + + + BBIE + Evaluation Criteria. Threshold_ Amount. Amount + Estimated threshold amount for that criteria in this tendering process. + 0..1 + Evaluation Criteria + Threshold + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Evaluation Criteria. Threshold_ Quantity. Quantity + Estimated threshold quantity for that criteria in this tendering process. + 0..1 + Evaluation Criteria + Threshold + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Evaluation Criteria. Expression Code. Code + Code describing the expression that would evaluate the criteria. + 0..n + Evaluation Criteria + Expression Code + Code + Code. Type + + + + + + + + + ASBIE + Evaluation Criteria. Duration_ Period. Period + Period during which the evaluation criteria should be positive. + 0..1 + Evaluation Criteria + Duration + Period + Period + + + + + + + + + ASBIE + Evaluation Criteria. Suggested_ Evidence. Evidence + Evidence that is suggested to be used to fulfil the criteria. + 0..n + Evaluation Criteria + Suggested + Evidence + Evidence + + + + + + + + + + + ABIE + Event. Details + A significant occurrence or happening related to an object process, or person. + Event + + + + + + + + + BBIE + Event. Identification. Identifier + A unique identifier for this event. + 0..1 + Event + Identification + Identifier + Identifier. Type + + + + + + + + + BBIE + Event. Occurrence Date. Date + A date of an occurrence of this event. + 0..1 + Event + Occurrence Date + Date + Date. Type + + + + + + + + + BBIE + Event. Occurrence Time. Time + A time of an occurrence of this event. + 0..1 + Event + Occurrence Time + Time + Time. Type + + + + + + + + + BBIE + Event. Type Code. Code + A type for this event, coded. + 0..1 + Event + Type Code + Code + Code. Type + + + + + + + + + BBIE + Event. Description. Text + A textual description of the event. + 0..n + Event + Description + Text + Text. Type + + + + + + + + + BBIE + Event. Completion_ Indicator. Indicator + Indicates if this event is completed + 0..1 + Event + Completion + Indicator + Indicator + Indicator. Type + + + + + + + + + ASBIE + Event. Current_ Status. Status + Association to current status information for this event. + 0..n + Event + Current + Status + Status + + + + + + + + + ASBIE + Event. Contact + Association to the contacts for this event. + 0..n + Event + Contact + Contact + + + + + + + + + ASBIE + Event. Occurence_ Location. Location + Location information where this event will occur or has occurred. + 0..1 + Event + Occurence + Location + Location + + + + + + + + + + + ABIE + Event Comment. Details + This information on EventComment for RetailEvent + Event Comment + + + + + + + + + BBIE + Event Comment. Comment. Text + Generic field for communicating additional information on a retail event + 1 + Event Comment + Comment + Text + Text. Type + + + + + + + + + BBIE + Event Comment. Issue Date. Date + The date that comment was made + 0..1 + Event Comment + Issue Date + Date + Date. Type + + + + + + + + + BBIE + Event Comment. Issue Time. Time + The time that comment was made + 0..1 + Event Comment + Issue Time + Time + Time. Type + + + + + + + + + + + ABIE + Event Line Item. Details + Information about an Event Line item + Event Line Item + + + + + + + + + BBIE + Event Line Item. Line Number. Numeric + Line Number of Event Line Item + 0..1 + Event Line Item + Line Number + Numeric + Numeric. Type + + + + + + + + + ASBIE + Event Line Item. Participating Locations_ Location. Location + An association to the Locations of the stores involved in the event. + 0..1 + Event Line Item + Participating Locations + Location + Location + + + + + + + + + ASBIE + Event Line Item. Retail Planned Impact + Planned Impact of Event Line Item. + 0..n + Event Line Item + Retail Planned Impact + Retail Planned Impact + + + + + + + + + ASBIE + Event Line Item. Supply_ Item. Item + Identifies the product. + 1 + Event Line Item + Supply + Item + Item + + + + + + + + + + + ABIE + Event Tactic. Details + Information about an event tactic. + Event Tactic + + + + + + + + + BBIE + Event Tactic. Comment. Text + Generic field to add additional information or to specify mutually defined eventTacticTypes that are not currently listed + 0..1 + Event Tactic + Comment + Text + Text. Type + + + + + + + + + BBIE + Event Tactic. Quantity + The currencies, units, etc. that describes what is need for the event or promotion + 0..1 + Event Tactic + Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Event Tactic. Event Tactic Enumeration + Information about an event tactic aggregate of enumerated valued aggregates. + 1 + Event Tactic + Event Tactic Enumeration + Event Tactic Enumeration + + + + + + + + + ASBIE + Event Tactic. Period + To specify any indicator related to this period of time + 0..1 + Event Tactic + Period + Period + + + + + + + + + + + ABIE + Event Tactic Enumeration. Details + Information about an event tactic aggregate of enumerated valued aggregates. + Event Tactic Enumeration + + + + + + + + + BBIE + Event Tactic Enumeration. Consumer Incentive Tactic Type Code. Code + The consumer incentive tactic type, expressed as a code. + 0..1 + Event Tactic Enumeration + Consumer Incentive Tactic Type Code + Code + Code. Type + + + + + + + + + BBIE + Event Tactic Enumeration. Display Tactic Type Code. Code + The display tactic type code, expressed as a code. + 0..1 + Event Tactic Enumeration + Display Tactic Type Code + Code + Code. Type + + + + + + + + + BBIE + Event Tactic Enumeration. Feature Tactic Type Code. Code + The feature tactic type, expressed as a code. + 0..1 + Event Tactic Enumeration + Feature Tactic Type Code + Code + Code. Type + + + + + + + + + BBIE + Event Tactic Enumeration. Trade Item Packing Labeling Type Code. Code + The trade item packing labeling type code, expressed as a code. + 0..1 + Event Tactic Enumeration + Trade Item Packing Labeling Type Code + Code + Code. Type + + + + + + + + + + + ABIE + Evidence. Details + Evidentiary support for capabilities or requirements, an economic operator has to provide for being accepted in a tendering process. + Evidence + + + + + + + + + BBIE + Evidence. Identifier + Identifies the Evidence. + 0..1 + Evidence + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Evidence. Evidence Type Code. Code + The coded type for this evidence. + 0..1 + Evidence + Evidence Type Code + Code + Code. Type + + + + + + + + + BBIE + Evidence. Name + The textual description for this Evidence. + 0..n + Evidence + Name + Name + Name. Type + + + + + + + + + ASBIE + Evidence. Evidence Issuing_ Party. Party + An association to the Party that has issued this evidence. + 0..1 + Evidence + Evidence Issuing + Party + Party + + + + + + + + + ASBIE + Evidence. Document Reference + An association to Document Reference handling the actual evidentiary document. + 0..1 + Evidence + Document Reference + Document Reference + + + + + + + + + + + ABIE + Exception Criteria Line. Details + Exception Criterion define the threshold for forecast variance, product activity and performance history beyond which an exception message should be triggered. + Exception Criteria Line + + + + + + + + + BBIE + Exception Criteria Line. Identifier + An identifier for the Exception Criteria Line + 1 + Exception Criteria Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Exception Criteria Line. Note. Text + Free-form text applying to the Exception Criteria Line. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Exception Criteria Line + Note + Text + Text. Type + + + + + + + + + BBIE + Exception Criteria Line. Threshold Value Comparison Code. Code + A value assigned to an Exception Criterion for the purpose of comparison selected from a list + 1 + Exception Criteria Line + Threshold Value Comparison Code + Code + Code. Type + + + + + + + + + BBIE + Exception Criteria Line. Threshold_ Quantity. Quantity + A value once exceeded that triggers an exception. + 1 + Exception Criteria Line + Threshold + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Exception Criteria Line. Exception Status Code. Code + Status Information specific to a shipment exception. + 0..1 + Exception Criteria Line + Exception Status Code + Code + Code. Type + + + + + + + + + BBIE + Exception Criteria Line. Collaboration_ Priority Code. Code + A descriptive priority code assigned through collaboration and selected from a list of codes + 0..1 + Exception Criteria Line + Collaboration + Priority Code + Code + Code. Type + + + + + + + + + BBIE + Exception Criteria Line. Exception_ Resolution Code. Code + A list that will provide an understanding as to how to resolve exception. + 0..n + Exception Criteria Line + Exception + Resolution Code + Code + Code. Type + + + + + + + + + BBIE + Exception Criteria Line. Supply Chain Activity Type Code. Code + Establishes the criterion for one of the three types of exceptions. + 0..1 + Exception Criteria Line + Supply Chain Activity Type Code + Code + Code. Type + + + + + + + + + BBIE + Exception Criteria Line. Performance Metric Type Code. Code + A code used to identify a measure of performance + 0..1 + Exception Criteria Line + Performance Metric Type Code + Code + Code. Type + + + + + + + + + ASBIE + Exception Criteria Line. Effective_ Period. Period + An association to Period. + 0..1 + Exception Criteria Line + Effective + Period + Period + + + + + + + + + ASBIE + Exception Criteria Line. Supply_ Item. Item + A value once exceeded that triggers an exception. + 1..n + Exception Criteria Line + Supply + Item + Item + + + + + + + + + ASBIE + Exception Criteria Line. Forecast Exception Criteria Line + Establishes the criterion for one of the three types of exceptions. This class provides criteria for the kind of forecast exception, the identification of the purpose of the forecast, the source of data and the time basis criteria for the exception. + 0..1 + Exception Criteria Line + Forecast Exception Criteria Line + Forecast Exception Criteria Line + + + + + + + + + + + ABIE + Exception Notification Line. Details + A Exception Notification data item + Exception Notification Line + + + + + + + + + BBIE + Exception Notification Line. Identifier + An identifier for the Exception Notification Line + 1 + Exception Notification Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Exception Notification Line. Note. Text + Free-form text applying to the Exception Notification Line. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Exception Notification Line + Note + Text + Text. Type + + + + + + + + + BBIE + Exception Notification Line. Description. Text + A string of text intended as an explanation or illustration for the exception + 0..1 + Exception Notification Line + Description + Text + Text. Type + + + + + + + + + BBIE + Exception Notification Line. Exception Status Code. Code + Status Information specific to a shipment exception. + 0..1 + Exception Notification Line + Exception Status Code + Code + Code. Type + + + + + + + + + BBIE + Exception Notification Line. Collaboration_ Priority Code. Code + A descriptive priority code assigned through collaboration and selected from a list of codes + 0..1 + Exception Notification Line + Collaboration + Priority Code + Code + Code. Type + + + + + + + + + BBIE + Exception Notification Line. Resolution Code. Code + A description selected from a list that will provide an understanding as to why an exception is generated + 0..1 + Exception Notification Line + Resolution Code + Code + Code. Type + + + + + + + + + BBIE + Exception Notification Line. Compared Value. Measure + The value that was compared with the source value that resulted in the exception + 1 + Exception Notification Line + Compared Value + Measure + Measure. Type + + + + + + + + + BBIE + Exception Notification Line. Source Value. Measure + The value used as the basis of comparison + 1 + Exception Notification Line + Source Value + Measure + Measure. Type + + + + + + + + + BBIE + Exception Notification Line. Variance. Quantity + The variance of a data item from an expected value during a particular time interval. + 0..1 + Exception Notification Line + Variance + Quantity + Quantity. Type + + + + + + + + + BBIE + Exception Notification Line. Supply Chain Activity Type Code. Code + Establishes the criterion for one of the three types of exceptions. + 0..1 + Exception Notification Line + Supply Chain Activity Type Code + Code + Code. Type + + + + + + + + + BBIE + Exception Notification Line. Performance Metric Type Code. Code + A code used to identify a measure of performance + 0..1 + Exception Notification Line + Performance Metric Type Code + Code + Code. Type + + + + + + + + + ASBIE + Exception Notification Line. Exception Observation_ Period. Period + An association to Period. + 0..1 + Exception Notification Line + Exception Observation + Period + Period + + + + + + + + + ASBIE + Exception Notification Line. Document Reference + Identification of a document to which the message makes reference. + 0..n + Exception Notification Line + Document Reference + Document Reference + + + + + + + + + ASBIE + Exception Notification Line. Forecast Exception + An association to Forecast Accuracy or Comparison Exception. + 0..1 + Exception Notification Line + Forecast Exception + Forecast Exception + + + + + + + + + ASBIE + Exception Notification Line. Supply_ Item. Item + An association to one Item. + 1 + Exception Notification Line + Supply + Item + Item + + + + + + + + + + + ABIE + Exchange Rate. Details + Information about Exchange Rate. + Exchange Rate + + + + + + + + + BBIE + Exchange Rate. Source_ Currency Code. Code + The reference currency for the Exchange Rate; the currency from which the exchange is being made (CC Definition). + 1 + Exchange Rate + Source + Currency Code + Code + Currency_ Code. Type + + + + + + + + + BBIE + Exchange Rate. Source_ Currency Base Rate. Rate + The unit base of the source currency for currencies with small denominations. + 0..1 + Exchange Rate + Source + Currency Base Rate + Rate + Rate. Type + + + + + + + + + BBIE + Exchange Rate. Target_ Currency Code. Code + The target currency for the Exchange Rate; the currency to which the exchange is being made (CC Definition). + 1 + Exchange Rate + Target + Currency Code + Code + Currency_ Code. Type + + + + + + + + + BBIE + Exchange Rate. Target_ Currency Base Rate. Rate + The unit base of the target currency for currencies with small denominations. + 0..1 + Exchange Rate + Target + Currency Base Rate + Rate + Rate. Type + + + + + + + + + BBIE + Exchange Rate. Exchange Market Identifier. Identifier + Identifies the currency exchange market used as the source of the Exchange Rate. + 0..1 + Exchange Rate + Exchange Market Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Exchange Rate. Calculation Rate. Rate + The factor applied to the source currency to calculate the target currency. + 0..1 + Exchange Rate + Calculation Rate + Rate + Rate. Type + + + + + + + + + BBIE + Exchange Rate. Mathematic Operator Code. Code + An identifier for whether the Calculation Rate should be used to multiply or to divide, expressed as a code. + 0..1 + Exchange Rate + Mathematic Operator Code + Code + Operator_ Code. Type + + + + + + + + + BBIE + Exchange Rate. Date + The date of the Exchange. + 0..1 + Exchange Rate + Date + Date + Date. Type + + + + + + + + + ASBIE + Exchange Rate. Foreign Exchange_ Contract. Contract + An association to Foreign Exchange Contract. + 0..1 + Exchange Rate + Foreign Exchange + Contract + Contract + + + + + + + + + + + ABIE + External Reference. Details + Information directly relating to an external reference i.e. a document stored at a remote location. + External Reference + + + + + + + + + BBIE + External Reference. URI. Identifier + The Uniform Resource Identifier (URI) that identifies where the external document is located. + 0..1 + External Reference + URI + Identifier + Identifier. Type + + + + + + + + + BBIE + External Reference. Document Hash. Text + Specifies the hash code for the externally stored document. + 0..1 + External Reference + Document Hash + Text + Text. Type + + + + + + + + + BBIE + External Reference. Hash Algorithm Method. Text + + 0..n + External Reference + Hash Algorithm Method + Text + Text. Type + + + + + + + + + BBIE + External Reference. Expiry Date. Date + The date on which the document can no longer be found on the URI. + 0..1 + External Reference + Expiry Date + Date + Date. Type + + + + + + + + + BBIE + External Reference. Expiry Time. Time + The time on which the document can no longer be found on the URI. + 0..1 + External Reference + Expiry Time + Time + Time. Type + + + + + + + + + BBIE + External Reference. Mime Code. Code + The mime type of the external document. + 0..1 + External Reference + Mime Code + Code + Code. Type + + + + + + + + + BBIE + External Reference. Format Code. Code + The format of the external document. + 0..1 + External Reference + Format Code + Code + Code. Type + + + + + + + + + BBIE + External Reference. Encoding Code. Code + Specifies the decoding algorithm of the external document. + 0..1 + External Reference + Encoding Code + Code + Code. Type + + + + + + + + + BBIE + External Reference. Character Set Code. Code + The character set of the external document if the mime type is text. + 0..1 + External Reference + Character Set Code + Code + Code. Type + + + + + + + + + BBIE + External Reference. File Name. Name + The filename of the external document. + 0..1 + External Reference + File Name + Name + Name. Type + + + + + + + + + BBIE + External Reference. Description. Text + Textual description of the external document. + 0..n + External Reference + Description + Text + Text. Type + computer accessories for laptops + + + + + + + + + + + ABIE + Financial Account. Details + Information about a Financial Account. + Financial Account + + + + + + + + + BBIE + Financial Account. Identifier + The identifier for the Financial Account; the Bank Account Number. + 0..1 + Financial Account + Identifier + Identifier + Identifier. Type + SWIFT(BIC) and IBAN are defined in ISO 9362 and ISO 13616. + + + + + + + + + BBIE + Financial Account. Name + The name of the Financial Account. + 0..1 + Financial Account + Name + Name + Name. Type + + + + + + + + + BBIE + Financial Account. Alias_ Name. Name + An alias name for the Financial Account. Use it if the account id information is not directly provided for security reasons. + 0..1 + Financial Account + Alias + Name + Name + Name. Type + + + + + + + + + BBIE + Financial Account. Account Type Code. Code + The type of Financial Account, expressed as a code. + 0..1 + Financial Account + Account Type Code + Code + Code. Type + + + + + + + + + BBIE + Financial Account. Account Format Code. Code + The format of Financial Account, expressed as a code. + 0..1 + Financial Account + Account Format Code + Code + Code. Type + ISO20022 Clearing System Identification Code + + + + + + + + + BBIE + Financial Account. Currency Code. Code + The currency in which the Financial Account is held, expressed as a code. + 0..1 + Financial Account + Currency Code + Code + Currency_ Code. Type + + + + + + + + + BBIE + Financial Account. Payment_ Note. Text + Free-form text applying to the Payment to the owner of this account. + 0..n + Financial Account + Payment + Note + Text + Text. Type + + + + + + + + + ASBIE + Financial Account. Financial Institution_ Branch. Branch + An association to Financial Institution Branch. + 0..1 + Financial Account + Financial Institution + Branch + Branch + + + + + + + + + ASBIE + Financial Account. Country + An association to Country. + 0..1 + Financial Account + Country + Country + + + + + + + + + + + ABIE + Financial Guarantee. Details + The Information about the bond guarantee of a tender or bid submitter to actually enter into a contract if they are the successful bidder. + Financial Guarantee + + + + + + + + + BBIE + Financial Guarantee. Guarantee Type Code. Code + Code that identifies the type of guarantee. + 1 + Financial Guarantee + Guarantee Type Code + Code + Code. Type + + + + + + + + + BBIE + Financial Guarantee. Description. Text + Textual description of the financial guarantee. + 0..n + Financial Guarantee + Description + Text + Text. Type + + + + + + + + + BBIE + Financial Guarantee. Liability. Amount + The monetary value that constitutes the liability amount in the bid bond guarantee. + 0..1 + Financial Guarantee + Liability + Amount + Amount. Type + + + + + + + + + BBIE + Financial Guarantee. Amount. Rate + The rate used to calculate a bid bond guarantee amount. + 0..1 + Financial Guarantee + Amount + Rate + Rate. Type + + + + + + + + + ASBIE + Financial Guarantee. Constitution_ Period. Period + The specified period in the tendering process for which this bid bond guarantee has to be constituted. + 0..1 + Financial Guarantee + Constitution + Period + Period + + + + + + + + + + + ABIE + Financial Institution. Details + Information about a Financial Institution. + Financial Institution + + + + + + + + + BBIE + Financial Institution. Identifier + The identifier for the Financial Institution expressed as a code; ISO 9362 BIC (Bank Identification Code) is recommended. + 0..1 + Financial Institution + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Financial Institution. Name + The name of the Financial Institution. + 0..1 + Financial Institution + Name + Name + Name. Type + + + + + + + + + ASBIE + Financial Institution. Address + An association to Address. + 0..1 + Financial Institution + Address + Address + + + + + + + + + + + ABIE + Forecast Exception. Details + This class identifies the exception as a Forecast Exception + Forecast Exception + + + + + + + + + BBIE + Forecast Exception. Forecast_ Purpose Code. Code + The purpose for the Forecast that is assigned to each ForecastException Criterion. + 1 + Forecast Exception + Forecast + Purpose Code + Code + Code. Type + + + + + + + + + BBIE + Forecast Exception. Forecast Type Code. Code + A description of a Forecast selected from a list + 1 + Forecast Exception + Forecast Type Code + Code + Code. Type + + + + + + + + + BBIE + Forecast Exception. Issue Date. Date + The date the Forecast was issued + 1 + Forecast Exception + Issue Date + Date + Date. Type + + + + + + + + + BBIE + Forecast Exception. Issue Time. Time + The time that the Forecast was issued + 0..1 + Forecast Exception + Issue Time + Time + Time. Type + + + + + + + + + BBIE + Forecast Exception. Data Source Code. Code + Indication of the partner who provides the information + 1 + Forecast Exception + Data Source Code + Code + Code. Type + + + + + + + + + BBIE + Forecast Exception. Comparison Data Code. Code + Indication of the partner who provides the information in case of Forecase Comparison Exception + 0..1 + Forecast Exception + Comparison Data Code + Code + Code. Type + + + + + + + + + BBIE + Forecast Exception. Comparison Forecast Issue Time. Time + The time that the Comparison Forecast was issued. + 0..1 + Forecast Exception + Comparison Forecast Issue Time + Time + Time. Type + + + + + + + + + BBIE + Forecast Exception. Comparison Forecast Issue Date. Date + The date the Comparison Forecast was issued. + 0..1 + Forecast Exception + Comparison Forecast Issue Date + Date + Date. Type + + + + + + + + + + + ABIE + Forecast Exception Criteria Line. Details + Establishes the criterion for one of the three types of exceptions. This class provides criteria for the kind of forecast exception, the identification of the purpose of the forecast, the source of data and the time basis criteria for the exception. + Forecast Exception Criteria Line + + + + + + + + + BBIE + Forecast Exception Criteria Line. Forecast_ Purpose Code. Code + A description of the purpose for the forecast that is assigned to each forecast data item exception criterion. + 1 + Forecast Exception Criteria Line + Forecast + Purpose Code + Code + Code. Type + + + + + + + + + BBIE + Forecast Exception Criteria Line. Forecast Type Code. Code + A description of a Forecast selected from a list + 1 + Forecast Exception Criteria Line + Forecast Type Code + Code + Code. Type + + + + + + + + + BBIE + Forecast Exception Criteria Line. Comparison Data Source Code. Code + If it is a forecast comparison exception, this value indicates the other source of information + 0..1 + Forecast Exception Criteria Line + Comparison Data Source Code + Code + Code. Type + + + + + + + + + BBIE + Forecast Exception Criteria Line. Data Source Code. Code + Indication of the partner who provides the information + 1 + Forecast Exception Criteria Line + Data Source Code + Code + Code. Type + + + + + + + + + BBIE + Forecast Exception Criteria Line. Time Delta Days Quantity. Quantity + Time basis in days for the Exception + 0..1 + Forecast Exception Criteria Line + Time Delta Days Quantity + Quantity + Quantity. Type + + + + + + + + + + + ABIE + Forecast Line. Details + A forecast line + Forecast Line + + + + + + + + + BBIE + Forecast Line. Identifier + An identifier for the Forecast Line + 1 + Forecast Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Forecast Line. Note. Text + Free-form text applying to the Forecast Line. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Forecast Line + Note + Text + Text. Type + + + + + + + + + BBIE + Forecast Line. Frozen Document Indicator. Indicator + The status of the forecast. Is it either modifiable or not? + 0..1 + Forecast Line + Frozen Document Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Forecast Line. Forecast Type Code. Code + The type of the forecast + 1 + Forecast Line + Forecast Type Code + Code + Code. Type + seasonal, total + + + + + + + + + ASBIE + Forecast Line. Forecast_ Period. Period + An association to Period for which forecast is made. + 0..1 + Forecast Line + Forecast + Period + Period + + + + + + + + + ASBIE + Forecast Line. Sales Item + An association to Sales Item. + 0..1 + Forecast Line + Sales Item + Sales Item + + + + + + + + + + + ABIE + Forecast Revision Line. Details + A Forecast Revision Line + Forecast Revision Line + + + + + + + + + BBIE + Forecast Revision Line. Identifier + An identifier for the Exception Notification Line + 1 + Forecast Revision Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Forecast Revision Line. Note. Text + Free-form text applying to the Exception Notification Line. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Forecast Revision Line + Note + Text + Text. Type + + + + + + + + + BBIE + Forecast Revision Line. Description. Text + A string of text intended as an explanation or illustration for the exception + 0..1 + Forecast Revision Line + Description + Text + Text. Type + + + + + + + + + BBIE + Forecast Revision Line. Revised_ Forecast Line Identifier. Identifier + The time the Forecast which is modified by this revision was generated/created. + 1 + Forecast Revision Line + Revised + Forecast Line Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Forecast Revision Line. Source Forecast_ Issue Date. Date + The date the Forecast which is modified by this revision was generated/created. + 1 + Forecast Revision Line + Source Forecast + Issue Date + Date + Date. Type + + + + + + + + + BBIE + Forecast Revision Line. Source Forecast_ Issue Time. Time + The time the Forecast which is modified by this revision was generated/created. + 1 + Forecast Revision Line + Source Forecast + Issue Time + Time + Time. Type + + + + + + + + + BBIE + Forecast Revision Line. Adjustment Reason Code. Code + The reason for the adjustment specified by the Forecast Revision Line to the Forecast. + 0..1 + Forecast Revision Line + Adjustment Reason Code + Code + Code. Type + + + + + + + + + ASBIE + Forecast Revision Line. Forecast_ Period. Period + An association to Period. + 0..1 + Forecast Revision Line + Forecast + Period + Period + + + + + + + + + ASBIE + Forecast Revision Line. Sales Item + An association to a Sales Item. + 0..1 + Forecast Revision Line + Sales Item + Sales Item + + + + + + + + + + + ABIE + Framework Agreement. Details + The information about a tendering framework agreement. + Framework Agreement + + + + + + + + + BBIE + Framework Agreement. Expected_ Operator. Quantity + Expected number of economic operators in this framework agreement. + 0..1 + Framework Agreement + Expected + Operator + Quantity + Quantity. Type + + + + + + + + + BBIE + Framework Agreement. Maximum_ Operator. Quantity + Maximum number of economic operators in this framework agreement. + 0..1 + Framework Agreement + Maximum + Operator + Quantity + Quantity. Type + + + + + + + + + BBIE + Framework Agreement. Justification. Text + The textual description of the justification for this framework agreement. + 0..n + Framework Agreement + Justification + Text + Text. Type + + + + + + + + + BBIE + Framework Agreement. Frequency. Text + The frequency by which the subsequent contracts will be awarded. + 0..n + Framework Agreement + Frequency + Text + Text. Type + + + + + + + + + ASBIE + Framework Agreement. Duration_ Period. Period + The duration period for the framework agreement. + 0..1 + Framework Agreement + Duration + Period + Period + + + + + + + + + ASBIE + Framework Agreement. Subsequent Process_ Tender Requirement. Tender Requirement + Used to specify what requirements are made to different processes in the result from the current one. + 0..n + Framework Agreement + Subsequent Process + Tender Requirement + Tender Requirement + Curricula required + + + + + + + + + + + ABIE + Goods Item. Details + A separately identifiable quantity of products of a single product type. + Goods Item + + + + + + + + + BBIE + Goods Item. Identifier + An identifier for the goods item. + 0..1 + Goods Item + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Goods Item. Sequence Number. Identifier + Sequence number differentiating a specific goods item within a consignment. + 0..1 + Goods Item + Sequence Number + Identifier + Identifier. Type + + + + + + + + + BBIE + Goods Item. Description. Text + Plain language description of a goods item sufficient to identify it for customs, statistical, or transport purposes. + 0..n + Goods Item + Description + Text + Text. Type + Description of goods (WCO ID 137) + + + + + + + + + BBIE + Goods Item. Hazardous Risk_ Indicator. Indicator + Indicates whether the goods item includes hazardous items (dangerous goods). + 0..1 + Goods Item + Hazardous Risk + Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Goods Item. Declared Customs_ Value. Amount + Amount declared for Customs purposes of those goods in a consignment which are subject to the same Customs procedure and have the same tariff/statistical heading, country information, and duty regime. + 0..1 + Goods Item + Declared Customs + Value + Amount + Amount. Type + For Customs Value (WCO ID 108) + + + + + + + + + BBIE + Goods Item. Declared For Carriage_ Value. Amount + Value declared by the shipper or his agent solely for the purpose of varying the carrier s level of liability from that provided in the contract of carriage in case of loss or damage to goods or delayed delivery. + 0..1 + Goods Item + Declared For Carriage + Value + Amount + Amount. Type + Interest in delivery, declared value for carriage + + + + + + + + + BBIE + Goods Item. Declared Statistics_ Value. Amount + Value declared for statistical purposes of those goods in a consignment which have the same statistical heading. + 0..1 + Goods Item + Declared Statistics + Value + Amount + Amount. Type + Statistical Value (WCO ID 114) + + + + + + + + + BBIE + Goods Item. Free On Board_ Value. Amount + Monetary amount that has to be or has been paid as calculated under the applicable trade delivery. + 0..1 + Goods Item + Free On Board + Value + Amount + Amount. Type + FOB Value + + + + + + + + + BBIE + Goods Item. Insurance_ Value. Amount + The amount covered by an insurance for a particular goods item. + 0..1 + Goods Item + Insurance + Value + Amount + Amount. Type + Value Insured + + + + + + + + + BBIE + Goods Item. Value. Amount + Specifies the amount on which a duty, tax, or fee will be assessed. + 0..1 + Goods Item + Value + Amount + Amount. Type + + + + + + + + + BBIE + Goods Item. Gross_ Weight. Measure + Weight (mass) of goods, including packaging but excluding the carrier s equipment. + 0..1 + Goods Item + Gross + Weight + Measure + Measure. Type + Actual Gross Weight + + + + + + + + + BBIE + Goods Item. Net_ Weight. Measure + Weight (mass) of goods item, excluding all packing but including any packaging that normally goes with the goods. + 0..1 + Goods Item + Net + Weight + Measure + Measure. Type + + + + + + + + + BBIE + Goods Item. Net Net_ Weight. Measure + Weight (mass) of goods without any packaging. + 0..1 + Goods Item + Net Net + Weight + Measure + Measure. Type + Customs Weight (WCO ID 128) + + + + + + + + + BBIE + Goods Item. Chargeable_ Weight. Measure + Gross weight (mass) on which a charge is to be based. + 0..1 + Goods Item + Chargeable + Weight + Measure + Measure. Type + + + + + + + + + BBIE + Goods Item. Gross_ Volume. Measure + Measurement normally arrived at by multiplying the maximum length, width, and height of the goods item. + 0..1 + Goods Item + Gross + Volume + Measure + Measure. Type + Volume, Gross Measurement Cube (GMC), Cube (WCO ID 134) + + + + + + + + + BBIE + Goods Item. Net_ Volume. Measure + The volume contained by a goods item, excluding the volume of any packaging material. + 0..1 + Goods Item + Net + Volume + Measure + Measure. Type + + + + + + + + + BBIE + Goods Item. Quantity + Number of goods items. + 0..1 + Goods Item + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Goods Item. Preference Criterion Code. Code + Specifies the treatment preference for this good according to international trading agreements. + 0..1 + Goods Item + Preference Criterion Code + Code + Code. Type + Preference Criterion is used in the following manner in the paper CO of another country (e.g.): + A - The good is wholly obtained or produced entirely in the territory of one or more of the NAFTA countries as reference in Article 415. Note: The purchase of a good in the territory does not necessarily render it wholly obtained or produced . If the good is an agricultural good, see also criterion F and Annex 703.2. (Reference: Article 401(a), 415). + B - ... + C - ... + D - ... + E - ... + F - The good is an originating agricultural good under preference criterion A,B, or C above and is not subjected to quantitative restriction in the importing NAFTA country because.... +Thus, the column Preference Criterion will indicate either A, B, C,... + + + + + + + + + BBIE + Goods Item. Required_ Customs Identifier. Identifier + Additional tariff codes required to specify a type of goods for Customs, transport, statistical, or other regulatory purposes. + 0..1 + Goods Item + Required + Customs Identifier + Identifier + Identifier. Type + Tariff code extensions (WCO ID 255) + + + + + + + + + BBIE + Goods Item. Customs Status Code. Code + Status of goods as identified by customs for regulation purposes. + 0..1 + Goods Item + Customs Status Code + Code + Code. Type + Customs status of goods (WCO ID 094) + + + + + + + + + BBIE + Goods Item. Customs Tariff Quantity. Quantity + Quantity of the goods in the unit as required by Customs for tariff, statistical, or fiscal purposes. + 0..1 + Goods Item + Customs Tariff Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Goods Item. Customs Import_ Classified Indicator. Indicator + Indicates whether the goods have been customs classified for import. + 0..1 + Goods Item + Customs Import + Classified Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Goods Item. Chargeable_ Quantity. Quantity + + 0..1 + Goods Item + Chargeable + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Goods Item. Returnable_ Quantity. Quantity + + 0..1 + Goods Item + Returnable + Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Goods Item. Item + Association to a description of the good or service. + 0..n + Goods Item + Item + Item + + + + + + + + + ASBIE + Goods Item. Goods Item Container + Association to describe the transporting of a goods item in a unit of transport equipment (e.g., container). + 0..n + Goods Item + Goods Item Container + Goods Item Container + + + + + + + + + ASBIE + Goods Item. Freight_ Allowance Charge. Allowance Charge + Costs incurred by the shipper in moving goods, by whatever means, from one place to another under the terms of the contract of carriage. In addition to transport costs, this may include such elements as packing, documentation, loading, unloading, and insurance (to the extent that they relate to the freight costs). + 0..n + Goods Item + Freight + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Goods Item. Invoice Line + Association to information directly relating to a line item of an invoice. + 0..n + Goods Item + Invoice Line + Invoice Line + + + + + + + + + ASBIE + Goods Item. Temperature + Any temperatures associated with the goods. + 0..n + Goods Item + Temperature + Temperature + maximum, storage, minimum + + + + + + + + + ASBIE + Goods Item. Contained_ Goods Item. Goods Item + Associates with any other goods items contained in this goods item. + 0..n + Goods Item + Contained + Goods Item + Goods Item + + + + + + + + + ASBIE + Goods Item. Origin_ Address. Address + Region in which the goods have been produced or manufactured, according to criteria laid down for the purposes of application of the Customs tariff, or quantitative restrictions, or any other measure related to trade. + 0..1 + Goods Item + Origin + Address + Address + + + + + + + + + ASBIE + Goods Item. Delivery + An association to Delivery. + 0..1 + Goods Item + Delivery + Delivery + + + + + + + + + ASBIE + Goods Item. Pickup + An association to Pickup. + 0..1 + Goods Item + Pickup + Pickup + + + + + + + + + ASBIE + Goods Item. Despatch + An association to Despatch. + 0..1 + Goods Item + Despatch + Despatch + + + + + + + + + ASBIE + Goods Item. Measurement_ Dimension. Dimension + An association to describe the measurement dimensions of the goods item. + 0..n + Goods Item + Measurement + Dimension + Dimension + + + + + + + + + ASBIE + Goods Item. Containing_ Package. Package + One or more packages containing this goods item. + 0..n + Goods Item + Containing + Package + Package + + + + + + + + + ASBIE + Goods Item. Shipment_ Document Reference. Document Reference + A reference to any shipment documents this goods item is associated with. + 0..1 + Goods Item + Shipment + Document Reference + Document Reference + + + + + + + + + + + ABIE + Goods Item Container. Details + How goods items are split across transport equipment. + Goods Item Container + + + + + + + + + BBIE + Goods Item Container. Identifier + Identifies goods items split across transport equipment. + 1 + Goods Item Container + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Goods Item Container. Quantity + Number of goods items loaded into or onto one piece of transport equipment as a total consignment or part of a consignment. + 0..1 + Goods Item Container + Quantity + Quantity + Quantity. Type + Number of packages stuffed + + + + + + + + + ASBIE + Goods Item Container. Transport Equipment + Associates the containers for a single goods item. + 0..n + Goods Item Container + Transport Equipment + Transport Equipment + + + + + + + + + + + ABIE + Hazardous Goods Transit. Details + Information about Hazardous Goods Transit. + Hazardous Goods Transit + + + + + + + + + BBIE + Hazardous Goods Transit. Transport Emergency Card Code. Code + The identifier for a transport emergency card, describing the actions to be taken in an emergency in transporting the Hazardous Goods. May be the identity number of a hazardous emergency response plan assigned by the appropriate authority. + 0..1 + Hazardous Goods Transit + Transport Emergency Card Code + Code + Code. Type + TREM card + + + + + + + + + BBIE + Hazardous Goods Transit. Packing Criteria Code. Code + A code identifying the packaging requirement for the transportation of the Hazardous Goods as assigned by IATA/IMDB/ADR/RID etc. + 0..1 + Hazardous Goods Transit + Packing Criteria Code + Code + Code. Type + Packing Group + + + + + + + + + BBIE + Hazardous Goods Transit. Hazardous Regulation Code. Code + The identifier for a set of legal regulations that govern the transportation of the Hazardous Goods, expressed as a code. + 0..1 + Hazardous Goods Transit + Hazardous Regulation Code + Code + Code. Type + + + + + + + + + BBIE + Hazardous Goods Transit. Inhalation Toxicity Zone Code. Code + An identifier for the Inhalation Toxicity Hazard Zone for the Hazardous Goods, as defined by the US Department of Transportation, expressed as a code. + 0..1 + Hazardous Goods Transit + Inhalation Toxicity Zone Code + Code + Code. Type + + + + + + + + + BBIE + Hazardous Goods Transit. Transport Authorization Code. Code + Code specifying the authorization for the transportation of hazardous cargo. + 0..1 + Hazardous Goods Transit + Transport Authorization Code + Code + Code. Type + Permission for Transport + + + + + + + + + ASBIE + Hazardous Goods Transit. Maximum_ Temperature. Temperature + An association to Maximum Temperature (at which the Hazardous Goods can be safely transported). + 0..1 + Hazardous Goods Transit + Maximum + Temperature + Temperature + + + + + + + + + ASBIE + Hazardous Goods Transit. Minimum_ Temperature. Temperature + An association to Minimum Temperature (at which the Hazardous Goods can be safely transported). + 0..1 + Hazardous Goods Transit + Minimum + Temperature + Temperature + + + + + + + + + + + ABIE + Hazardous Item. Details + Information about a Hazardous Item. + Hazardous Item + + + + + + + + + BBIE + Hazardous Item. Identifier + The identifier for a Hazardous Item. + 0..1 + Hazardous Item + Identifier + Identifier + Identifier. Type + Round Up + + + + + + + + + BBIE + Hazardous Item. Placard Notation. Text + The placard notation corresponding to the hazard class of the hazardous commodity. Can also be the hazard identification number of the orange placard (upper part) required on the means of transport. + 0..1 + Hazardous Item + Placard Notation + Text + Text. Type + 5.1 + + + + + + + + + BBIE + Hazardous Item. Placard Endorsement. Text + The placard endorsement that is to be shown on the shipping papers for the hazardous commodity. Can also be used for the number of the orange placard (lower part) required on the means of transport. + 0..1 + Hazardous Item + Placard Endorsement + Text + Text. Type + 2 + + + + + + + + + BBIE + Hazardous Item. Additional_ Information. Text + Additional information about the hazardous substance. Can be used to specify information such as the type of regulatory requirements that apply to a description. + 0..1 + Hazardous Item + Additional + Information + Text + Text. Type + Must be stored away from flammable materials N.O.S. or a Waste Characteristics Code in conjunction with an EPA Waste Stream code + + + + + + + + + BBIE + Hazardous Item. UNDG Code. Code + The identifier assigned to transportable hazardous goods by the United Nations, expressed as a code. + 0..1 + Hazardous Item + UNDG Code + Code + Code. Type + UN Code + + + + + + + + + BBIE + Hazardous Item. Emergency Procedures Code. Code + The emergency procedures for the Hazardous Item, expressed as a code. + 0..1 + Hazardous Item + Emergency Procedures Code + Code + Code. Type + EMG code, EMS Page Number + + + + + + + + + BBIE + Hazardous Item. Medical First Aid Guide Code. Code + The identifier of a medical first aid guide that is relevant to specific hazardous goods, expressed as a code. + 0..1 + Hazardous Item + Medical First Aid Guide Code + Code + Code. Type + MFAG page number + + + + + + + + + BBIE + Hazardous Item. Technical_ Name. Name + The full technical name of the specific hazardous substance. + 0..1 + Hazardous Item + Technical + Name + Name + Name. Type + Granular Sodium Chlorate WeedKiller + + + + + + + + + BBIE + Hazardous Item. Category. Name + The name of the category of hazard that applies to the Item. + 0..1 + Hazardous Item + Category + Name + Name. Type + + + + + + + + + BBIE + Hazardous Item. Hazardous Category Code. Code + Code specifying a kind of hazard for a material. + 0..1 + Hazardous Item + Hazardous Category Code + Code + Code. Type + Hazardous material class code + + + + + + + + + BBIE + Hazardous Item. Upper_ Orange Hazard Placard Identifier. Identifier + Specifies the identity number for the upper part of the orange hazard placard required on the means of transport. + 0..1 + Hazardous Item + Upper + Orange Hazard Placard Identifier + Identifier + Identifier. Type + Hazard identification number (upper part) + + + + + + + + + BBIE + Hazardous Item. Lower_ Orange Hazard Placard Identifier. Identifier + Specifies the identity number for the lower part of the orange hazard placard required on the means of transport. + 0..1 + Hazardous Item + Lower + Orange Hazard Placard Identifier + Identifier + Identifier. Type + Substance identification number (lower part) + + + + + + + + + BBIE + Hazardous Item. Marking Identifier. Identifier + Identifies the marking of dangerous goods. + 0..1 + Hazardous Item + Marking Identifier + Identifier + Identifier. Type + Dangerous goods label marking + + + + + + + + + BBIE + Hazardous Item. Hazard Class Identifier. Identifier + Identifies a hazard class applicable to dangerous goods as defined by the relevant regulation authority, such as the IMDG Class Number of the SOLAS Convention of IMO and the ADR/RID Class Number for the road/rail environment. + 0..1 + Hazardous Item + Hazard Class Identifier + Identifier + Identifier. Type + IMDG Class Number, ADR/RID Class Number + + + + + + + + + BBIE + Hazardous Item. Net_ Weight. Measure + The total net weight of hazardous goods; the weight of the goods plus packaging. + 0..1 + Hazardous Item + Net + Weight + Measure + Measure. Type + + + + + + + + + BBIE + Hazardous Item. Net_ Volume. Measure + The volume of hazardous goods net of packaging and transport equipment. + 0..1 + Hazardous Item + Net + Volume + Measure + Measure. Type + + + + + + + + + BBIE + Hazardous Item. Quantity + The quantity of goods that are hazardous. + 0..1 + Hazardous Item + Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Hazardous Item. Contact_ Party. Party + Associates the Hazardous Item with details of an individual, group, or body that is the contact in case of hazard incident. + 0..1 + Hazardous Item + Contact + Party + Party + + + + + + + + + ASBIE + Hazardous Item. Secondary Hazard + Associates the Hazardous Item with information about secondary hazards. + 0..n + Hazardous Item + Secondary Hazard + Secondary Hazard + + + + + + + + + ASBIE + Hazardous Item. Hazardous Goods Transit + Associates the Hazardous Item with information about the transportation of hazardous goods. + 0..n + Hazardous Item + Hazardous Goods Transit + Hazardous Goods Transit + + + + + + + + + ASBIE + Hazardous Item. Emergency_ Temperature. Temperature + Associates the Hazardous Item with the temperature at which emergency procedures apply during the handling of temperature-controlled hazardous goods. + 0..1 + Hazardous Item + Emergency + Temperature + Temperature + + + + + + + + + ASBIE + Hazardous Item. Flashpoint_ Temperature. Temperature + Associates the Hazardous Item with the lowest temperature at which the vapor of a combustible liquid can be made to ignite momentarily in air, known in hazardous goods procedures as the flashpoint. + 0..1 + Hazardous Item + Flashpoint + Temperature + Temperature + + + + + + + + + ASBIE + Hazardous Item. Additional_ Temperature. Temperature + Information providing details of temperatures relevant to the handling of hazardous goods. + 0..n + Hazardous Item + Additional + Temperature + Temperature + + + + + + + + + + + ABIE + Immobilized Security. Details + Information about an immobilized security to be used as a guarantee. + Immobilized Security + + + + + + + + + BBIE + Immobilized Security. Immobilization Certificate Identifier. Identifier + Identifier for the certificate of this immobilized security. + 0..1 + Immobilized Security + Immobilization Certificate Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Immobilized Security. Security Identifier. Identifier + Identifier for the security being immobilized. + 0..1 + Immobilized Security + Security Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Immobilized Security. Issue Date. Date + Issue date for this immobilized security. + 0..1 + Immobilized Security + Issue Date + Date + Date. Type + + + + + + + + + BBIE + Immobilized Security. Face Value. Amount + Value amount for the security the day it has been immobilized. + 0..1 + Immobilized Security + Face Value + Amount + Amount. Type + + + + + + + + + BBIE + Immobilized Security. Market Value. Amount + Market value amount for the immobiized securities. + 0..1 + Immobilized Security + Market Value + Amount + Amount. Type + + + + + + + + + BBIE + Immobilized Security. Shares Number. Quantity + Number of shares immobilized. + 0..1 + Immobilized Security + Shares Number + Quantity + Quantity. Type + + + + + + + + + ASBIE + Immobilized Security. Issuer_ Party. Party + Association to the party issuing the immobilized security certificate. + 0..1 + Immobilized Security + Issuer + Party + Party + + + + + + + + + + + ABIE + Instruction For Returns Line. Details + Information about an Instruction For RetursLine. + Instruction For Returns Line + + + + + + + + + BBIE + Instruction For Returns Line. Identifier + An identifier for the Instruction For Returns Line. + 1 + Instruction For Returns Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Instruction For Returns Line. Note. Text + Free-form text applying to the Instruction For Returs Line. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Instruction For Returns Line + Note + Text + Text. Type + + + + + + + + + BBIE + Instruction For Returns Line. Quantity + The quantity that has to be returned. + 1 + Instruction For Returns Line + Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Instruction For Returns Line. Manufacturer_ Party. Party + Associates the goods with its manufacturer. + 0..1 + Instruction For Returns Line + Manufacturer + Party + Party + + + + + + + + + ASBIE + Instruction For Returns Line. Item + An association to an Item. + 1 + Instruction For Returns Line + Item + Item + + + + + + + + + + + ABIE + Inventory Report Line. Details + Information about an Inventory Report Line. + Inventory Report Line + + + + + + + + + BBIE + Inventory Report Line. Identifier + An identifier for the Inventory Report Line. + 1 + Inventory Report Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Inventory Report Line. Note. Text + Free-form text applying to the Inventory Report Line. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Inventory Report Line + Note + Text + Text. Type + + + + + + + + + BBIE + Inventory Report Line. Quantity + The quantity that is currently on stock. + 1 + Inventory Report Line + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Inventory Report Line. Inventory_ Value. Amount + The amount of the stock quantity. + 0..1 + Inventory Report Line + Inventory + Value + Amount + Amount. Type + + + + + + + + + BBIE + Inventory Report Line. Availability Date. Date + The date from which the goods will be available. If not present, the goods are available now. + 0..1 + Inventory Report Line + Availability Date + Date + Date. Type + + + + + + + + + BBIE + Inventory Report Line. Availability Status Code. Code + A code that classifies the availability level of the good. + 0..1 + Inventory Report Line + Availability Status Code + Code + Code. Type + + + + + + + + + ASBIE + Inventory Report Line. Item + An association to an Item. + 1 + Inventory Report Line + Item + Item + + + + + + + + + + + ABIE + Invoice Line. Details + Information about an Invoice Line. + Invoice Line + + + + + + + + + BBIE + Invoice Line. Identifier + Identifies the Invoice Line. + 1 + Invoice Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Invoice Line. UUID. Identifier + A universally unique identifier for an instance of this ABIE. + 0..1 + Invoice Line + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Invoice Line. Note. Text + Free-form text applying to the Invoice Line. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Invoice Line + Note + Text + Text. Type + + + + + + + + + BBIE + Invoice Line. Invoiced_ Quantity. Quantity + The quantity (of Items) on the Invoice Line. + 0..1 + Invoice Line + Invoiced + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Invoice Line. Line Extension Amount. Amount + The total amount for the Invoice Line, including Allowance Charges but net of taxes. + 1 + Invoice Line + Line Extension Amount + Amount + Amount. Type + + + + + + + + + BBIE + Invoice Line. Tax Point Date. Date + The date of the Invoice Line, used to indicate the point at which tax becomes applicable. + 0..1 + Invoice Line + Tax Point Date + Date + Date. Type + + + + + + + + + BBIE + Invoice Line. Accounting Cost Code. Code + The buyer s accounting code applied to the Invoice Line. + 0..1 + Invoice Line + Accounting Cost Code + Code + Code. Type + + + + + + + + + BBIE + Invoice Line. Accounting Cost. Text + The buyer s accounting cost centre applied to the Invoice Line, expressed as text. + 0..1 + Invoice Line + Accounting Cost + Text + Text. Type + + + + + + + + + BBIE + Invoice Line. Payment Purpose Code. Code + The business purposes for payment express as code. + 0..1 + Invoice Line + Payment Purpose Code + Code + Code. Type + + + + + + + + + BBIE + Invoice Line. Free Of Charge_ Indicator. Indicator + Indicates whether the Invoice Line is Free Of Charge (default = false). + 0..1 + Invoice Line + Free Of Charge + Indicator + Indicator + Indicator. Type + + + + + + + + + ASBIE + Invoice Line. Invoice_ Period. Period + An association to period(s) to which the Invoice Line applies. + 0..n + Invoice Line + Invoice + Period + Period + + + + + + + + + ASBIE + Invoice Line. Order Line Reference + An association to Order Line Reference. + 0..n + Invoice Line + Order Line Reference + Order Line Reference + + + + + + + + + ASBIE + Invoice Line. Despatch_ Line Reference. Line Reference + An associative reference to Despatch Line. + 0..n + Invoice Line + Despatch + Line Reference + Line Reference + + + + + + + + + ASBIE + Invoice Line. Receipt_ Line Reference. Line Reference + An associative reference to Receipt Line. + 0..n + Invoice Line + Receipt + Line Reference + Line Reference + + + + + + + + + ASBIE + Invoice Line. Billing Reference + An association to Billing Reference. + 0..n + Invoice Line + Billing Reference + Billing Reference + + + + + + + + + ASBIE + Invoice Line. Document Reference + An association to Document Reference. + 0..n + Invoice Line + Document Reference + Document Reference + + + + + + + + + ASBIE + Invoice Line. Pricing Reference + An association to Pricing Reference. + 0..1 + Invoice Line + Pricing Reference + Pricing Reference + + + + + + + + + ASBIE + Invoice Line. Originator_ Party. Party + The party who originated the Order to which the Invoice is related. + 0..1 + Invoice Line + Originator + Party + Party + + + + + + + + + ASBIE + Invoice Line. Delivery + An association to Delivery. + 0..n + Invoice Line + Delivery + Delivery + + + + + + + + + ASBIE + Invoice Line. Payment Terms + An association to Payment Terms. + 0..n + Invoice Line + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Invoice Line. Allowance Charge + An association to Allowance Charge. + 0..n + Invoice Line + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Invoice Line. Tax Total + An association to Tax Total. + 0..n + Invoice Line + Tax Total + Tax Total + + + + + + + + + ASBIE + Invoice Line. Item + An association to Item. + 1 + Invoice Line + Item + Item + + + + + + + + + ASBIE + Invoice Line. Price + An association to Price. + 0..1 + Invoice Line + Price + Price + + + + + + + + + ASBIE + Invoice Line. Delivery Terms + An association to Delivery Terms. + 0..1 + Invoice Line + Delivery Terms + Delivery Terms + + + + + + + + + ASBIE + Invoice Line. Sub_ Invoice Line. Invoice Line + An association to one or more Invoice Lines. + 0..n + Invoice Line + Sub + Invoice Line + Invoice Line + + + + + + + + + + + ABIE + Item. Details + Information directly relating to an item. + Item + article, product, goods item + + + + + + + + + BBIE + Item. Description. Text + Free-form field that can be used to give a text description of the item. + 0..n + Item + Description + Text + Text. Type + + + + + + + + + BBIE + Item. Pack Quantity. Quantity + The unit packaging quantity. + 0..1 + Item + Pack Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Item. Pack Size. Numeric + The number of items in a pack. + 0..1 + Item + Pack Size + Numeric + Numeric. Type + + + + + + + + + BBIE + Item. Catalogue_ Indicator. Indicator + Indicates whether the item was ordered from a Catalogue (true) or not (false). + 0..1 + Item + Catalogue + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Item. Name + A short name optionally given to an item, such as a name from a Catalogue, as distinct from a description. + 0..1 + Item + Name + Name + Name. Type + + + + + + + + + BBIE + Item. Hazardous Risk_ Indicator. Indicator + Indicates whether the item as delivered is hazardous. + 0..1 + Item + Hazardous Risk + Indicator + Indicator + Indicator. Type + Default is negative + + + + + + + + + BBIE + Item. Additional_ Information. Text + Provides more details of the item (e.g., the URL of a relevant web page). + 0..1 + Item + Additional + Information + Text + Text. Type + + + + + + + + + BBIE + Item. Keyword. Text + A Seller Party-defined search string for the item. Also could be synonyms for identifying the item. + 0..n + Item + Keyword + Text + Text. Type + + + + + + + + + BBIE + Item. Brand Name. Name + Brand name for the item. + 0..n + Item + Brand Name + Name + Name. Type + Coca-Cola + + + + + + + + + BBIE + Item. Model Name. Name + Model name for the item. + 0..n + Item + Model Name + Name + Name. Type + VW Beetle + + + + + + + + + ASBIE + Item. Buyers_ Item Identification. Item Identification + Associates the item with its identification according to the buyer s system. + 0..1 + Item + Buyers + Item Identification + Item Identification + + + + + + + + + ASBIE + Item. Sellers_ Item Identification. Item Identification + Associates the item with its identification according to the seller s system. + 0..1 + Item + Sellers + Item Identification + Item Identification + + + + + + + + + ASBIE + Item. Manufacturers_ Item Identification. Item Identification + Associates the item with its identification according to the manufacturer s system. + 0..n + Item + Manufacturers + Item Identification + Item Identification + + + + + + + + + ASBIE + Item. Standard_ Item Identification. Item Identification + Associates the item with its identification according to a standard system. + 0..1 + Item + Standard + Item Identification + Item Identification + + + + + + + + + ASBIE + Item. Catalogue_ Item Identification. Item Identification + Associates the item with its identification according to a cataloguing system. + 0..1 + Item + Catalogue + Item Identification + Item Identification + + + + + + + + + ASBIE + Item. Additional_ Item Identification. Item Identification + Associates the item with other identification means. + 0..n + Item + Additional + Item Identification + Item Identification + + + + + + + + + ASBIE + Item. Catalogue_ Document Reference. Document Reference + An associative reference to Catalogue. + 0..1 + Item + Catalogue + Document Reference + Document Reference + + + + + + + + + ASBIE + Item. Item Specification_ Document Reference. Document Reference + An associative reference to a document providing Item specification. + 0..n + Item + Item Specification + Document Reference + Document Reference + + + + + + + + + ASBIE + Item. Origin_ Country. Country + Associates the item with its country of origin. + 0..1 + Item + Origin + Country + Country + + + + + + + + + ASBIE + Item. Commodity Classification + Associates the item with its classification(s) according to a commodity classifying system. + 0..n + Item + Commodity Classification + Commodity Classification + + + + + + + + + ASBIE + Item. Transaction Conditions + Associates the item with sales conditions appertaining to it. + 0..n + Item + Transaction Conditions + Transaction Conditions + + + + + + + + + ASBIE + Item. Hazardous Item + Associates the item with its hazardous item information. + 0..n + Item + Hazardous Item + Hazardous Item + + + + + + + + + ASBIE + Item. Classified_ Tax Category. Tax Category + Classifies the item using one or more categories of taxes. + 0..n + Item + Classified + Tax Category + Tax Category + + + + + + + + + ASBIE + Item. Additional_ Item Property. Item Property + Associates the item with a set of additional properties. + 0..n + Item + Additional + Item Property + Item Property + + + + + + + + + ASBIE + Item. Manufacturer_ Party. Party + Associates the item with its manufacturer. + 0..n + Item + Manufacturer + Party + Party + + + + + + + + + ASBIE + Item. Information Content Provider_ Party. Party + Associates the item with the party responsible for the its specification. + 0..1 + Item + Information Content Provider + Party + Party + + + + + + + + + ASBIE + Item. Origin_ Address. Address + Associates the item with the region of origin (not the country). + 0..n + Item + Origin + Address + Address + + + + + + + + + ASBIE + Item. Item Instance + An association to Item Instance. + 0..n + Item + Item Instance + Item Instance + + + + + + + + + ASBIE + Item. Certificate + An association to one or more Certificate. + 0..n + Item + Certificate + Certificate + + + + + + + + + ASBIE + Item. Dimension + An association to Dimension + 0..n + Item + Dimension + Dimension + + + + + + + + + + + ABIE + Item Comparison. Details + Used to compare different items based on cost, quantity, or measurements. + Item Comparison + + + + + + + + + BBIE + Item Comparison. Price Amount. Amount + The price for the comparison quantity of the item. + 0..1 + Item Comparison + Price Amount + Amount + Amount. Type + + + + + + + + + BBIE + Item Comparison. Quantity + The quantity used for price comparison with other items. + 0..1 + Item Comparison + Quantity + Quantity + Quantity. Type + per unit + + + + + + + + + + + ABIE + Item Identification. Details + Information about item identification. + Item Identification + + + + + + + + + BBIE + Item Identification. Identifier + An identifier for an item. + 1 + Item Identification + Identifier + Identifier + Identifier. Type + CUST001 3333-44-123 + + + + + + + + + BBIE + Item Identification. Extended_ Identifier. Identifier + An extended identifier for the item that identifies the item with specific properties, e.g., Item 123 = Chair / Item 123 Ext 45 = brown chair. + 0..1 + Item Identification + Extended + Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Item Identification. Physical Attribute + An association to Physical Attribute. + 0..n + Item Identification + Physical Attribute + Physical Attribute + + + + + + + + + ASBIE + Item Identification. Measurement_ Dimension. Dimension + An association to Measurement Dimension. + 0..n + Item Identification + Measurement + Dimension + Dimension + + + + + + + + + ASBIE + Item Identification. Issuer_ Party. Party + An association to Issuer Party i.e. the Party that issued the Item Identification. + 0..1 + Item Identification + Issuer + Party + Party + + + + + + + + + + + ABIE + Item Information Request Line. Details + A request to trading partner for item information. + Item Information Request Line + + + + + + + + + BBIE + Item Information Request Line. Time Frequency Code. Code + Standard period of time, how often the requested information shall be sent to the requester.. + 0..1 + Item Information Request Line + Time Frequency Code + Code + Code. Type + + + + + + + + + BBIE + Item Information Request Line. Supply Chain Activity Type Code. Code + A code used to identify an operational exception. + 0..1 + Item Information Request Line + Supply Chain Activity Type Code + Code + Code. Type + + + + + + + + + BBIE + Item Information Request Line. Forecast Type Code. Code + A description of a forecast selected from a list. + 0..1 + Item Information Request Line + Forecast Type Code + Code + Code. Type + + + + + + + + + BBIE + Item Information Request Line. Performance Metric Type Code. Code + A code used to identify a measure of performance. + 0..1 + Item Information Request Line + Performance Metric Type Code + Code + Code. Type + + + + + + + + + ASBIE + Item Information Request Line. Period + An association to Period for which the information requested. + 1..n + Item Information Request Line + Period + Period + + + + + + + + + ASBIE + Item Information Request Line. Sales Item + An association to one or more Sales Item. + 1..n + Item Information Request Line + Sales Item + Sales Item + + + + + + + + + + + ABIE + Item Instance. Details + Information about a specific instance of an item. + Item Instance + + + + + + + + + BBIE + Item Instance. Product Trace_ Identifier. Identifier + An identifier used for tracing the item, such as the EPC number used in RFID. + 0..1 + Item Instance + Product Trace + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Item Instance. Manufacture Date. Date + The date of manufacture of the Item Instance. + 0..1 + Item Instance + Manufacture Date + Date + Date. Type + + + + + + + + + BBIE + Item Instance. Manufacture Time. Time + The time of manufacture of the Item Instance. + 0..1 + Item Instance + Manufacture Time + Time + Time. Type + + + + + + + + + BBIE + Item Instance. BestBefore Date. Date + The date before which the use of the item Instance is better. + 0..1 + Item Instance + BestBefore Date + Date + Date. Type + + + + + + + + + BBIE + Item Instance. Registration Identifier. Identifier + The registration identifier of the Item Instance. + 0..1 + Item Instance + Registration Identifier + Identifier + Identifier. Type + car registration or licensing number + + + + + + + + + BBIE + Item Instance. Serial Identifier. Identifier + The serial number of the Item Instance. + 0..1 + Item Instance + Serial Identifier + Identifier + Identifier. Type + chassis number of a car + + + + + + + + + ASBIE + Item Instance. Additional_ Item Property. Item Property + An association to Additional Item Property. + 0..n + Item Instance + Additional + Item Property + Item Property + + + + + + + + + ASBIE + Item Instance. Lot Identification + Associates the item instance with its lot identification (the identification that allows recall of the item if necessary). + 0..1 + Item Instance + Lot Identification + Lot Identification + + + + + + + + + + + ABIE + Item Location Quantity. Details + Information about the properties of an item as they relate to specific quantities and/or specific locations. + Item Location Quantity + + + + + + + + + BBIE + Item Location Quantity. Lead Time. Measure + The time taken from the time of order to the time of delivery for an item. + 0..1 + Item Location Quantity + Lead Time + Measure + Measure. Type + 2 days , 24 hours + + + + + + + + + BBIE + Item Location Quantity. Minimum_ Quantity. Quantity + The minimum quantity that can be ordered to qualify for a specific price. + 0..1 + Item Location Quantity + Minimum + Quantity + Quantity + Quantity. Type + 10 boxes , 1 carton , 1000 sheets + + + + + + + + + BBIE + Item Location Quantity. Maximum_ Quantity. Quantity + The maximum quantity that can be ordered to qualify for a specific price. + 0..1 + Item Location Quantity + Maximum + Quantity + Quantity + Quantity. Type + 10 boxes , 1 carton , 1000 sheets + + + + + + + + + BBIE + Item Location Quantity. Hazardous Risk_ Indicator. Indicator + Indicates whether the item as delivered, in the stated quantity to the stated location, is hazardous. + 0..1 + Item Location Quantity + Hazardous Risk + Indicator + Indicator + Indicator. Type + Default is negative + + + + + + + + + BBIE + Item Location Quantity. Trading Restrictions. Text + A description of trade restrictions that apply to the item or quantities of the item. + 0..n + Item Location Quantity + Trading Restrictions + Text + Text. Type + not for export + + + + + + + + + ASBIE + Item Location Quantity. Applicable Territory_ Address. Address + An association to Territory (Address). + 0..n + Item Location Quantity + Applicable Territory + Address + Address + + + + + + + + + ASBIE + Item Location Quantity. Price + An association to Price. + 0..1 + Item Location Quantity + Price + Price + + + + + + + + + ASBIE + Item Location Quantity. Delivery Unit + An association to Delivery Unit. + 0..n + Item Location Quantity + Delivery Unit + Delivery Unit + + + + + + + + + ASBIE + Item Location Quantity. Applicable_ Tax Category. Tax Category + An association to Tax Category. + 0..n + Item Location Quantity + Applicable + Tax Category + Tax Category + + + + + + + + + ASBIE + Item Location Quantity. Package + An association to Package. + 0..1 + Item Location Quantity + Package + Package + + + + + + + + + ASBIE + Item Location Quantity. Allowance Charge + An association to Allowance Charge. + 0..n + Item Location Quantity + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Item Location Quantity. Dependent Price Reference + Information about the price of an item as a percentage of the price of another item. + 0..1 + Item Location Quantity + Dependent Price Reference + Dependent Price Reference + + + + + + + + + + + ABIE + Item Management Profile. Details + Profile for one or many items in the item location profile + Item Management Profile + + + + + + + + + BBIE + Item Management Profile. Frozen Period Days. Numeric + The number of days in the future that an Order Forecast quantity automatically +becomes a confirmed order for a product + 0..1 + Item Management Profile + Frozen Period Days + Numeric + Numeric. Type + + + + + + + + + BBIE + Item Management Profile. Minimum_ Inventory Quantity. Quantity + An indicator at which point a replenishment order should be placed to avoid +depleting the safety stock. + 0..1 + Item Management Profile + Minimum + Inventory Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Item Management Profile. Multiple_ Order Quantity. Quantity + The order quantity multiples in which the product may be ordered. + 0..1 + Item Management Profile + Multiple + Order Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Item Management Profile. Order Interval Days. Numeric + The number of days between regular replenishment orders for a product. + 0..1 + Item Management Profile + Order Interval Days + Numeric + Numeric. Type + + + + + + + + + BBIE + Item Management Profile. Replenishment Owner Description. Text + A description of the trading partner maintaining the item location profile + 0..1 + Item Management Profile + Replenishment Owner Description + Text + Text. Type + + + + + + + + + BBIE + Item Management Profile. Target Service Percent. Percent + A percentage designed to specify what Unit Service Level the trading partners expect to be maintained. + 0..1 + Item Management Profile + Target Service Percent + Percent + Percent. Type + + + + + + + + + BBIE + Item Management Profile. Target_ Inventory Quantity. Quantity + The target inventory expressed by a qualifier such as turns, total dollar value or + total quantity + 0..1 + Item Management Profile + Target + Inventory Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Item Management Profile. Effective_ Period. Period + An association to Effective Period. + 1 + Item Management Profile + Effective + Period + Period + + + + + + + + + ASBIE + Item Management Profile. Item + An association to one or more Goods Item. + 1 + Item Management Profile + Item + Item + + + + + + + + + ASBIE + Item Management Profile. Item Location Quantity + An association to the Item Location Quantity. + 0..1 + Item Management Profile + Item Location Quantity + Item Location Quantity + + + + + + + + + + + ABIE + Item Property. Details + Information about specific Item Properties. + Item Property + + + + + + + + + BBIE + Item Property. Identifier + An identifie for the Item Property. + 0..1 + Item Property + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Item Property. Name + The name of the Item Property. + 1 + Item Property + Name + Name + Name. Type + Energy Rating , Collar Size , Fat Content + + + + + + + + + BBIE + Item Property. Name Code. Code + The name of the Item Property expressed as code. + 0..1 + Item Property + Name Code + Code + Code. Type + + + + + + + + + BBIE + Item Property. Test Method. Text + The method of testing the value of Item Property expressed as text + 0..1 + Item Property + Test Method + Text + Text. Type + 100 watts , 15 European , 20% +/- 5% + + + + + + + + + BBIE + Item Property. Value. Text + The Item Property value expressed as a text. + 0..1 + Item Property + Value + Text + Text. Type + 100 watts , 15 European , 20% +/- 5% + + + + + + + + + BBIE + Item Property. Value_ Quantity. Quantity + The Item Property value expressed as a quantity. + 0..1 + Item Property + Value + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Item Property. Value Qualifier. Text + A text qualifier for the value of the property. + 0..n + Item Property + Value Qualifier + Text + Text. Type + + + + + + + + + BBIE + Item Property. Importance Code. Code + A code establishing the importance for the property when using it to describe a required Item. + 0..1 + Item Property + Importance Code + Code + Code. Type + + + + + + + + + BBIE + Item Property. List Value. Text + The List of Values for the Item Property. + 0..n + Item Property + List Value + Text + Text. Type + + + + + + + + + ASBIE + Item Property. Usability_ Period. Period + The period for which the Item Property is valid. + 0..1 + Item Property + Usability + Period + Period + + + + + + + + + ASBIE + Item Property. Item Property Group + An association to Item Property Group. + 0..n + Item Property + Item Property Group + Item Property Group + + + + + + + + + ASBIE + Item Property. Range_ Dimension. Dimension + An association to Dimension. + 0..1 + Item Property + Range + Dimension + Dimension + + + + + + + + + ASBIE + Item Property. Item Property Range + The range of values for the Item Property. + 0..1 + Item Property + Item Property Range + Item Property Range + + + + + + + + + + + ABIE + Item Property Group. Details + Information about sets of classifications (or groups) of Item Properties. + Item Property Group + + + + + + + + + BBIE + Item Property Group. Identifier + An identifier for the Item Property Group. + 1 + Item Property Group + Identifier + Identifier + Identifier. Type + 233-004 + + + + + + + + + BBIE + Item Property Group. Name + The name of the Item Property Group. + 0..1 + Item Property Group + Name + Name + Name. Type + Electrical Specifications , Dietary Content + + + + + + + + + BBIE + Item Property Group. Importance Code. Code + A code establishing the importance for the property group when using it to describe a required Item. + 0..1 + Item Property Group + Importance Code + Code + Code. Type + + + + + + + + + + + ABIE + Item Property Range. Details + The range of values for the Item Property. + Item Property Range + + + + + + + + + BBIE + Item Property Range. Minimum_ Value. Text + The minimum value in a range of property. + 0..1 + Item Property Range + Minimum + Value + Text + Text. Type + +44 1 2345 6789 president@whitehouse.com + + + + + + + + + BBIE + Item Property Range. Maximum_ Value. Text + The maximum value in a range of property. + 0..1 + Item Property Range + Maximum + Value + Text + Text. Type + +44 1 2345 6789 president@whitehouse.com + + + + + + + + + + + ABIE + Language. Details + Information about Language. + Language + + + + + + + + + BBIE + Language. Identifier + An identifier for a language, expressed as a code. + 0..1 + Language + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Language. Name + The name of the language. + 0..1 + Language + Name + Name + Name. Type + + + + + + + + + BBIE + Language. Locale Code. Code + The locale where the language is used, expressed as a code. + 0..1 + Language + Locale Code + Code + Code. Type + + + + + + + + + + + ABIE + Line Item. Details + Information about a Line Item. + Line Item + + + + + + + + + BBIE + Line Item. Identifier + Identifies the Line Item assigned by the buyer. + 1 + Line Item + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Line Item. Sales_ Order Identifier. Identifier + The identification given to a Line by the seller. + 0..1 + Line Item + Sales + Order Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Line Item. UUID. Identifier + A universally unique identifier for an instance of this ABIE. + 0..1 + Line Item + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Line Item. Note. Text + Free-form text applying to the Line Item. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Line Item + Note + Text + Text. Type + + + + + + + + + BBIE + Line Item. Line Status Code. Code + Identifies the status of the Line with respect to its original state. + 0..1 + Line Item + Line Status Code + Code + Line Status_ Code. Type + + + + + + + + + BBIE + Line Item. Quantity + The quantity of Items for the Line Item. + 0..1 + Line Item + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Line Item. Line Extension Amount. Amount + The total amount for the Line Item, including Allowance Charges but net of taxes. + 0..1 + Line Item + Line Extension Amount + Amount + Amount. Type + + + + + + + + + BBIE + Line Item. Total_ Tax Amount. Amount + The total tax amount for the Line Item. + 0..1 + Line Item + Total + Tax Amount + Amount + Amount. Type + + + + + + + + + BBIE + Line Item. Minimum_ Quantity. Quantity + The minimum quantity for the Item on the Line. + 0..1 + Line Item + Minimum + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Line Item. Maximum_ Quantity. Quantity + The maximum quantity for the Item on the Line. + 0..1 + Line Item + Maximum + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Line Item. Minimum_ Backorder. Quantity + The minimum back order quantity (where back order is allowed). + 0..1 + Line Item + Minimum + Backorder + Quantity + Quantity. Type + + + + + + + + + BBIE + Line Item. Maximum_ Backorder. Quantity + The maximum back order quantity (where back order is allowed). + 0..1 + Line Item + Maximum + Backorder + Quantity + Quantity. Type + + + + + + + + + BBIE + Line Item. Inspection Method Code. Code + Inspection requirements for a Line Item, expressed as a code. + 0..1 + Line Item + Inspection Method Code + Code + Code. Type + + + + + + + + + BBIE + Line Item. Partial Delivery Indicator. Indicator + Indicates whether a partial delivery is allowed. + 0..1 + Line Item + Partial Delivery Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Line Item. Back Order Allowed Indicator. Indicator + Indicates whether back order is allowed. + 0..1 + Line Item + Back Order Allowed Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Line Item. Accounting Cost Code. Code + The buyer s accounting code applied to the Line Item. + 0..1 + Line Item + Accounting Cost Code + Code + Code. Type + + + + + + + + + BBIE + Line Item. Accounting Cost. Text + The buyer s accounting cost centre applied to the Line Item, expressed as text. + 0..1 + Line Item + Accounting Cost + Text + Text. Type + + + + + + + + + BBIE + Line Item. Warranty_ Information. Text + Information regarding the warranty for the good or service. Warranty may be provided by any Party (can be described in the association to Warranty Party). + 0..n + Line Item + Warranty + Information + Text + Text. Type + Unless specified otherwise and in addition to any rights the Customer may have under statute, Dell warrants to the Customer that Dell branded Products (excluding third party products and software), will be free from defects in materials and workmanship affecting normal use for a period of one year from invoice date ( Standard Warranty ). + + + + + + + + + ASBIE + Line Item. Delivery + An association to Delivery. + 0..n + Line Item + Delivery + Delivery + + + + + + + + + ASBIE + Line Item. Delivery Terms + An association to Delivery Terms. + 0..1 + Line Item + Delivery Terms + Delivery Terms + + + + + + + + + ASBIE + Line Item. Originator_ Party. Party + The party who originated Order. + 0..1 + Line Item + Originator + Party + Party + + + + + + + + + ASBIE + Line Item. Ordered Shipment + An association to Ordered Shipment. + 0..n + Line Item + Ordered Shipment + Ordered Shipment + + + + + + + + + ASBIE + Line Item. Pricing Reference + An association to Pricing Reference. + 0..1 + Line Item + Pricing Reference + Pricing Reference + + + + + + + + + ASBIE + Line Item. Allowance Charge + An association to Allowance Charge. + 0..n + Line Item + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Line Item. Price + An association to Price. + 0..1 + Line Item + Price + Price + + + + + + + + + ASBIE + Line Item. Item + An association to Item. + 1 + Line Item + Item + Item + + + + + + + + + ASBIE + Line Item. Sub_ Line Item. Line Item + An association to one or more Line Item. + 0..n + Line Item + Sub + Line Item + Line Item + + + + + + + + + ASBIE + Line Item. Warranty Validity_ Period. Period + Association with a period to indicate the guarantee for the work, service or goods. + 0..1 + Line Item + Warranty Validity + Period + Period + + + + + + + + + ASBIE + Line Item. Warranty_ Party. Party + The party responsible for the Warranty. + 0..1 + Line Item + Warranty + Party + Party + + + + + + + + + + + ABIE + Line Reference. Details + Reference to a Line on a document. + Line Reference + + + + + + + + + BBIE + Line Reference. Line Identifier. Identifier + Identifies the Line on the referenced document. + 1 + Line Reference + Line Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Line Reference. UUID. Identifier + A universally unique identifier for an instance of this ABIE. + 0..1 + Line Reference + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Line Reference. Line Status Code. Code + Identifies the status of the referenced Line with respect to its original state. + 0..1 + Line Reference + Line Status Code + Code + Line Status_ Code. Type + + + + + + + + + ASBIE + Line Reference. Document Reference + An association to Document Reference. + 0..1 + Line Reference + Document Reference + Document Reference + + + + + + + + + + + ABIE + Line Response. Details + A response to a Line in a Document. + Line Response + + + + + + + + + ASBIE + Line Response. Line Reference + An association to Line Reference. + 1 + Line Response + Line Reference + Line Reference + + + + + + + + + ASBIE + Line Response. Response + An association to Response. + 1..n + Line Response + Response + Response + + + + + + + + + + + ABIE + Location. Details + Information about a location. + Location + + + + + + + + + BBIE + Location. Identifier + The unique identifier for the location, e.g., the EAN Location Number, GLN. + 0..1 + Location + Identifier + Identifier + Identifier. Type + 5790002221134 + + + + + + + + + BBIE + Location. Description. Text + The description or name of the location. + 0..1 + Location + Description + Text + Text. Type + + + + + + + + + BBIE + Location. Conditions. Text + Conditions describing the location. + 0..1 + Location + Conditions + Text + Text. Type + + + + + + + + + BBIE + Location. Country Subentity. Text + A territorial division of a country, such as a county or state. + 0..1 + Location + Country Subentity + Text + Text. Type + AdministrativeArea, State, Country, Shire, Canton + Florida , Tamilnadu + + + + + + + + + BBIE + Location. Country Subentity Code. Code + The territorial division of a country, such as a county or state, expressed as a code. + 0..1 + Location + Country Subentity Code + Code + Code. Type + AdministrativeAreaCode, State Code + + + + + + + + + BBIE + Location. Location Type Code. Code + The code specifying the location type. + 0..1 + Location + Location Type Code + Code + Code. Type + + + + + + + + + BBIE + Location. Information_ URI. Identifier + The URI pointing to information about location. + 0..1 + Location + Information + URI + Identifier + Identifier. Type + + + + + + + + + ASBIE + Location. Validity_ Period. Period + Period(s) in which the location can be used, e.g., for delivery. + 0..n + Location + Validity + Period + Period + + + + + + + + + ASBIE + Location. Address + Association to the address of the location. + 0..1 + Location + Address + Address + + + + + + + + + ASBIE + Location. Subsidiary_ Location. Location + Information about a subsidiary location. + 0..n + Location + Subsidiary + Location + Location + + + + + + + + + ASBIE + Location. Location Coordinate + Information about physical (geographical) location. + 0..n + Location + Location Coordinate + Location Coordinate + + + + + + + + + + + ABIE + Location Coordinate. Details + Information about physical (geographical) location. + Location Coordinate + + + + + + + + + BBIE + Location Coordinate. Coordinate System Code. Code + An identifier for the location system used. + 0..1 + Location Coordinate + Coordinate System Code + Code + Code. Type + + + + + + + + + BBIE + Location Coordinate. Latitude_ Degrees. Measure + The measure of latitude in degrees. + 0..1 + Location Coordinate + Latitude + Degrees + Measure + Measure. Type + + + + + + + + + BBIE + Location Coordinate. Latitude_ Minutes. Measure + The measure of latitude in minutes. + 0..1 + Location Coordinate + Latitude + Minutes + Measure + Measure. Type + + + + + + + + + BBIE + Location Coordinate. Latitude Direction Code. Code + The direction of latitude measurement from the equator. + 0..1 + Location Coordinate + Latitude Direction Code + Code + Latitude Direction_ Code. Type + + + + + + + + + BBIE + Location Coordinate. Longitude_ Degrees. Measure + The measure of longitude in degrees. + 0..1 + Location Coordinate + Longitude + Degrees + Measure + Measure. Type + + + + + + + + + BBIE + Location Coordinate. Longitude_ Minutes. Measure + The measure of longitude in minutes. + 0..1 + Location Coordinate + Longitude + Minutes + Measure + Measure. Type + + + + + + + + + BBIE + Location Coordinate. Longitude Direction Code. Code + The direction of longitude measurement from the meridian. + 0..1 + Location Coordinate + Longitude Direction Code + Code + Longitude Direction_ Code. Type + + + + + + + + + BBIE + Location Coordinate. Altitude. Measure + The measure of altitude. + 0..1 + Location Coordinate + Altitude + Measure + Measure. Type + + + + + + + + + + + ABIE + Lot Identification. Details + Information about a lot (of Item Instances). + Lot Identification + + + + + + + + + BBIE + Lot Identification. Lot Number. Identifier + Identifies the lot. + 0..1 + Lot Identification + Lot Number + Identifier + Identifier. Type + + + + + + + + + BBIE + Lot Identification. Expiry Date. Date + The expiry date of the lot. + 0..1 + Lot Identification + Expiry Date + Date + Date. Type + + + + + + + + + ASBIE + Lot Identification. Additional_ Item Property. Item Property + An association to Additional Item Property. + 0..n + Lot Identification + Additional + Item Property + Item Property + + + + + + + + + + + ABIE + Maritime Transport. Details + Describes a water (including sea, river, and canal) transport vessel. + Maritime Transport + + + + + + + + + BBIE + Maritime Transport. Vessel Identifier. Identifier + Identifies a specific vessel. + 0..1 + Maritime Transport + Vessel Identifier + Identifier + Identifier. Type + Lloyds Number, Registration Number (WCO ID 167) + International Maritime Organisation number of a vessel + + + + + + + + + BBIE + Maritime Transport. Vessel Name. Name + The name of the vessel. + 0..1 + Maritime Transport + Vessel Name + Name + Name. Type + Ships Name + + + + + + + + + + + ABIE + Meter. Details + Information about Meter(s) and meteringdata + Meter + + + + + + + + + BBIE + Meter. Meter Number. Text + Actual meter number (Current) + 0..1 + Meter + Meter Number + Text + Text. Type + 61722x + + + + + + + + + BBIE + Meter. Meter Name. Text + Statement af the meter name, so it s possible to identifier if it concern about a main meter or a sub meter. + 0..1 + Meter + Meter Name + Text + Text. Type + + + + + + + + + BBIE + Meter. Meter Constant. Text + Factor, the meterstand must multiplies with to come up with the consumption. + 0..1 + Meter + Meter Constant + Text + Text. Type + 1.000 + + + + + + + + + BBIE + Meter. Meter Constant Code. Code + The formula to use, when the value i MeterConstant is used. + 0..1 + Meter + Meter Constant Code + Code + Code. Type + Factor + + + + + + + + + BBIE + Meter. Total_ Delivered Quantity. Quantity + The sum of the total consumpted quantity calculated from the meterreading + 0..1 + Meter + Total + Delivered Quantity + Quantity + Quantity. Type + 5761.00 + + + + + + + + + ASBIE + Meter. Meter Reading + Readings of the meterstand on the current meter + 0..n + Meter + Meter Reading + Meter Reading + + + + + + + + + ASBIE + Meter. Meter Property + Information about specific Meter Properties. + 0..n + Meter + Meter Property + Meter Property + + + + + + + + + + + ABIE + Meter Property. Details + Information about specific Meter Properties. + Meter Property + + + + + + + + + BBIE + Meter Property. Name + The name of the Meter Property. + 0..1 + Meter Property + Name + Name + Name. Type + Energy Rating , Collar Size , Fat Content + + + + + + + + + BBIE + Meter Property. Name Code. Code + The name of the Meter Property expressed as code. + 0..1 + Meter Property + Name Code + Code + Code. Type + + + + + + + + + BBIE + Meter Property. Value. Text + The Meter Property value expressed as a text. + 0..n + Meter Property + Value + Text + Text. Type + 100 watts , 15 European , 20% +/- 5% + + + + + + + + + BBIE + Meter Property. Value_ Quantity. Quantity + The Meter Property value expressed as a quantity. + 0..1 + Meter Property + Value + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Meter Property. Value Qualifier. Text + A text qualifier for the value of the property. + 0..n + Meter Property + Value Qualifier + Text + Text. Type + + + + + + + + + + + ABIE + Meter Reading. Details + Readings of the meterstand on the current meter + Meter Reading + + + + + + + + + BBIE + Meter Reading. Meter Reading Type. Text + Statement of the meterreading type + 0..1 + Meter Reading + Meter Reading Type + Text + Text. Type + Electricity + + + + + + + + + BBIE + Meter Reading. Meter Reading Type Code. Code + Statement of the meterreading type code + 0..1 + Meter Reading + Meter Reading Type Code + Code + Code. Type + Electricity + + + + + + + + + BBIE + Meter Reading. Previous_ Meter Reading Date. Date + Statement of the ealiere meterreading + 1 + Meter Reading + Previous + Meter Reading Date + Date + Date. Type + 2006-09-01 + + + + + + + + + BBIE + Meter Reading. Previous_ Meter Quantity. Quantity + Statement of the eailere meterreading + 1 + Meter Reading + Previous + Meter Quantity + Quantity + Quantity. Type + 122604.00 + + + + + + + + + BBIE + Meter Reading. Latest_ Meter Reading Date. Date + Statement of the latest meterreading + 1 + Meter Reading + Latest + Meter Reading Date + Date + Date. Type + 2006-09-01 + + + + + + + + + BBIE + Meter Reading. Latest_ Meter Quantity. Quantity + Statement of the latest MeterPoint. + 1 + Meter Reading + Latest + Meter Quantity + Quantity + Quantity. Type + 128365.00 + + + + + + + + + BBIE + Meter Reading. Meter Reading_ Method. Text + Indicatation of whitch method of reading there are used. + 0..1 + Meter Reading + Meter Reading + Method + Text + Text. Type + Manuel + + + + + + + + + BBIE + Meter Reading. Meter Reading_ Method Code. Code + Indicatation of the code, whitch refer to the method of reading there are used. + 0..1 + Meter Reading + Meter Reading + Method Code + Code + Code. Type + Estimated + + + + + + + + + BBIE + Meter Reading. Meter Reading_ Comments. Text + Comments in relation to the meter reading. + 0..n + Meter Reading + Meter Reading + Comments + Text + Text. Type + The last stated meterstand is estimated + + + + + + + + + BBIE + Meter Reading. Delivered_ Quantity. Quantity + Cunsumption in the period from PreviousMeterReadingDate to LatestMeterReadingDate. + 1 + Meter Reading + Delivered + Quantity + Quantity + Quantity. Type + + + + + + + + + + + ABIE + Miscellaneous Event. Details + Information on MiscellenaousEvent for RetailEvent + Miscellaneous Event + + + + + + + + + BBIE + Miscellaneous Event. Miscellaneous Event Type Code. Code + A further refinement of type of miscellenaous event that is being communicated + 1 + Miscellaneous Event + Miscellaneous Event Type Code + Code + Code. Type + + + + + + + + + ASBIE + Miscellaneous Event. Event Line Item + Event Line Item of Miscellaneous Event + 1..n + Miscellaneous Event + Event Line Item + Event Line Item + + + + + + + + + + + ABIE + Monetary Total. Details + Information about Monetary Totals. + Monetary Total + + + + + + + + + BBIE + Monetary Total. Line Extension Amount. Amount + The total of Line Extension Amounts net of tax and settlement discounts, but inclusive of any applicable rounding amount. + 0..1 + Monetary Total + Line Extension Amount + Amount + Amount. Type + + + + + + + + + BBIE + Monetary Total. Tax Exclusive Amount. Amount + The total amount exclusive of taxes. + 0..1 + Monetary Total + Tax Exclusive Amount + Amount + Amount. Type + + + + + + + + + BBIE + Monetary Total. Tax Inclusive Amount. Amount + The Invoice total including taxes (the sum of payable amount plus the prepaid amount). + 0..1 + Monetary Total + Tax Inclusive Amount + Amount + Amount. Type + + + + + + + + + BBIE + Monetary Total. Allowance_ Total Amount. Amount + The total amount of all allowances. + 0..1 + Monetary Total + Allowance + Total Amount + Amount + Amount. Type + + + + + + + + + BBIE + Monetary Total. Charge_ Total Amount. Amount + The total amount of all charges. + 0..1 + Monetary Total + Charge + Total Amount + Amount + Amount. Type + + + + + + + + + BBIE + Monetary Total. Prepaid Amount. Amount + The total prepaid amount. + 0..1 + Monetary Total + Prepaid Amount + Amount + Amount. Type + + + + + + + + + BBIE + Monetary Total. Payable_ Rounding Amount. Amount + The rounding amount (positive or negative) added to the calculated Line Extension Total Amount to produce the rounded Line Extension Total Amount. + 0..1 + Monetary Total + Payable + Rounding Amount + Amount + Amount. Type + + + + + + + + + BBIE + Monetary Total. Payable_ Amount. Amount + The total amount to be paid. + 1 + Monetary Total + Payable + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Monetary Total. Payable_ Alternative Amount. Amount + + 0..1 + Monetary Total + Payable + Alternative Amount + Amount + Amount. Type + + + + + + + + + + + ABIE + Notification Requirement. Details + Information about Notification Requirements. + Notification Requirement + + + + + + + + + BBIE + Notification Requirement. Notification Type Code. Code + Identifies the type of notification. For example Pickup status. + 1 + Notification Requirement + Notification Type Code + Code + Code. Type + + + + + + + + + ASBIE + Notification Requirement. Notify_ Party. Party + The party to be notified. + 0..n + Notification Requirement + Notify + Party + Party + + + + + + + + + ASBIE + Notification Requirement. Pre Event_ Period. Period + The period before a certain event a status notification should be issued. + 0..1 + Notification Requirement + Pre Event + Period + Period + + + + + + + + + ASBIE + Notification Requirement. Post Event_ Period. Period + The (maximum) period after a certain event a status notification should be issued. + 0..1 + Notification Requirement + Post Event + Period + Period + + + + + + + + + + + ABIE + On Account Payment. Details + The coming planned a conto payments + On Account Payment + + + + + + + + + BBIE + On Account Payment. Estimated_ Consumed Quantity. Quantity + The quantity utilize during the period to be paid for. + 1 + On Account Payment + Estimated + Consumed Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + On Account Payment. Note. Text + Free-form text explaining the usage of Account Payment. + 0..1 + On Account Payment + Note + Text + Text. Type + We make a reservation for price regulations. You will receive you next yearly statement about one year from today. + + + + + + + + + ASBIE + On Account Payment. Payment Terms + An association to Payment Terms. + 1..n + On Account Payment + Payment Terms + Payment Terms + + + + + + + + + + + ABIE + Order Line. Details + Information about an Order Line. + Order Line + + + + + + + + + BBIE + Order Line. Substitution Status Code. Code + A code indicating the substitution status of the Order Line. Order Line may indicate that a substitute is proposed by the buyer or by the seller (in Order Response) or that a substitution has been made by the seller (in Order Response). + 0..1 + Order Line + Substitution Status Code + Code + Substitution Status_ Code. Type + + + + + + + + + BBIE + Order Line. Note. Text + Free-form text applying to the Order Line. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Order Line + Note + Text + Text. Type + + + + + + + + + ASBIE + Order Line. Line Item + An association to Line Item. + 1 + Order Line + Line Item + Line Item + + + + + + + + + ASBIE + Order Line. Seller Proposed Substitute_ Line Item. Line Item + Substitute Line Items proposed by the seller (in Order Response). + 0..n + Order Line + Seller Proposed Substitute + Line Item + Line Item + + + + + + + + + ASBIE + Order Line. Seller Substituted_ Line Item. Line Item + Item(s) replaced by the seller. The original ordered quantity and pricing may be different from the substituted item. However, when an item is substituted by the seller, it is assumed that other information, such as shipment details, will be the same. + 0..n + Order Line + Seller Substituted + Line Item + Line Item + + + + + + + + + ASBIE + Order Line. Buyer Proposed Substitute_ Line Item. Line Item + Possible alternatives, proposed by the buyer, to the Line Item. + 0..n + Order Line + Buyer Proposed Substitute + Line Item + Line Item + + + + + + + + + ASBIE + Order Line. Catalogue_ Line Reference. Line Reference + An associative reference to Catalogue Line. + 0..1 + Order Line + Catalogue + Line Reference + Line Reference + + + + + + + + + ASBIE + Order Line. Quotation_ Line Reference. Line Reference + an associative reference to Quotation Line. + 0..1 + Order Line + Quotation + Line Reference + Line Reference + + + + + + + + + ASBIE + Order Line. Document Reference + An association to Document Reference. + 0..n + Order Line + Document Reference + Document Reference + + + + + + + + + + + ABIE + Order Line Reference. Details + Information about an Order Line Reference. + Order Line Reference + + + + + + + + + BBIE + Order Line Reference. Line Identifier. Identifier + Identifies the referenced Order Line assigned by the buyer. + 1 + Order Line Reference + Line Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Order Line Reference. Sales Order_ Line Identifier. Identifier + Identifies the referenced Order Line assigned by the seller. + 0..1 + Order Line Reference + Sales Order + Line Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Order Line Reference. UUID. Identifier + A universally unique identifier for an instance of this ABIE. + 0..1 + Order Line Reference + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Order Line Reference. Line Status Code. Code + Identifies the status of the referenced Order Line with respect to its original state. + 0..1 + Order Line Reference + Line Status Code + Code + Line Status_ Code. Type + + + + + + + + + ASBIE + Order Line Reference. Order Reference + An association to Order Reference. + 0..1 + Order Line Reference + Order Reference + Order Reference + + + + + + + + + + + ABIE + Order Reference. Details + Information about an Order Reference. + Order Reference + + + + + + + + + BBIE + Order Reference. Identifier + Identifies the referenced Order assigned by the buyer. + 1 + Order Reference + Identifier + Identifier + Identifier. Type + PO-001 3333-44-123 + + + + + + + + + BBIE + Order Reference. Sales_ Order Identifier. Identifier + Identifies the referenced Order assigned by the seller. + 0..1 + Order Reference + Sales + Order Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Order Reference. Copy_ Indicator. Indicator + Indicates whether the referenced Order is a copy (true) or the original (false). + 0..1 + Order Reference + Copy + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Order Reference. UUID. Identifier + A universally unique identifier for an instance of this ABIE. + 0..1 + Order Reference + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Order Reference. Issue Date. Date + The date on which the referenced Order was issued. + 0..1 + Order Reference + Issue Date + Date + Date. Type + + + + + + + + + BBIE + Order Reference. Issue Time. Time + The time at which the referenced Order was issued. + 0..1 + Order Reference + Issue Time + Time + Time. Type + + + + + + + + + BBIE + Order Reference. Customer_ Reference. Text + A reference used (CRI) for tagging purchasing card transactions. + 0..1 + Order Reference + Customer + Reference + Text + Text. Type + + + + + + + + + BBIE + Order Reference. Order Type Code. Code + A code indicating the type of Order. + 0..1 + Order Reference + Order Type Code + Code + Code. Type + + + + + + + + + ASBIE + Order Reference. Document Reference + An association to Document Reference. + 0..1 + Order Reference + Document Reference + Document Reference + + + + + + + + + + + ABIE + Ordered Shipment. Details + Information about an Ordered Shipment. + Ordered Shipment + + + + + + + + + ASBIE + Ordered Shipment. Shipment + An association to Shipment. + 1 + Ordered Shipment + Shipment + Shipment + + + + + + + + + ASBIE + Ordered Shipment. Package + An association to Package. + 0..n + Ordered Shipment + Package + Package + + + + + + + + + + + ABIE + Package. Details + Information about a package. + Package + + + + + + + + + BBIE + Package. Identifier + Identifies the package. + 0..1 + Package + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Package. Quantity + The quantity (of items) contained in the package. + 0..1 + Package + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Package. Returnable Material_ Indicator. Indicator + Indicates whether the packaging material is returnable (true) or not (false). + 0..1 + Package + Returnable Material + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Package. Package Level Code. Code + Code specifying a level of packaging. + 0..1 + Package + Package Level Code + Code + Code. Type + + + + + + + + + BBIE + Package. Packaging Type Code. Code + Code specifying the type of packaging of an item. + 0..1 + Package + Packaging Type Code + Code + Packaging Type_ Code. Type + Package classification code + + + + + + + + + BBIE + Package. Packing Material. Text + Description of the type of packaging of an item. + 0..n + Package + Packing Material + Text + Text. Type + + + + + + + + + BBIE + Package. Trace_ Identifier. Identifier + An identifier used for tracing the package such as the EPC number used in RFID. + 0..1 + Package + Trace + Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Package. Contained_ Package. Package + An association to Contained Package; used to describe a package within a package. + 0..n + Package + Contained + Package + Package + + + + + + + + + ASBIE + Package. Containing_ Transport Equipment. Transport Equipment + An association to a Transport Equipment containing this package. + 0..1 + Package + Containing + Transport Equipment + Transport Equipment + + + + + + + + + ASBIE + Package. Goods Item + An association to Goods Item. + 0..n + Package + Goods Item + Goods Item + + + + + + + + + ASBIE + Package. Measurement_ Dimension. Dimension + An association to describe the measurement dimensions of the package. + 0..n + Package + Measurement + Dimension + Dimension + + + + + + + + + ASBIE + Package. Delivery Unit + An association to Delivery Units in the package. + 0..n + Package + Delivery Unit + Delivery Unit + + + + + + + + + ASBIE + Package. Delivery + An association to Delivery. + 0..1 + Package + Delivery + Delivery + + + + + + + + + ASBIE + Package. Pickup + An association to Pickup. + 0..1 + Package + Pickup + Pickup + + + + + + + + + ASBIE + Package. Despatch + An association to Despatch. + 0..1 + Package + Despatch + Despatch + + + + + + + + + + + ABIE + Party. Details + Information about an organization, sub-organization, or individual fulfilling a role in a business process. + Party + + + + + + + + + BBIE + Party. Mark Care_ Indicator. Indicator + Indicates whether a party is C/O (care of). + 0..1 + Party + Mark Care + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Party. Mark Attention_ Indicator. Indicator + Indicates whether a party is FAO (for the attention of). + 0..1 + Party + Mark Attention + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Party. Website_ URI. Identifier + The Uniform Resource Identifier (URI) of the party. + 0..1 + Party + Website + URI + Identifier + Identifier. Type + + + + + + + + + BBIE + Party. Logo Reference. Identifier + A party s logo. + 0..1 + Party + Logo Reference + Identifier + Identifier. Type + http://www2.coca-cola.com/images/logo.gif + + + + + + + + + BBIE + Party. Endpoint Identifier. Identifier + Identifies the end point of the routing service, e.g., EAN Location Number, GLN. + 0..1 + Party + Endpoint Identifier + Identifier + Identifier. Type + 5790002221134 + + + + + + + + + BBIE + Party. Industry Classification Code. Code + Indicates the role of a Party + 0..1 + Party + Industry Classification Code + Code + Code. Type + Public authority , NAIC codes + + + + + + + + + ASBIE + Party. Party Identification + An association to Party Identification. + 0..n + Party + Party Identification + Party Identification + + + + + + + + + ASBIE + Party. Party Name + An association to Party Name. + 0..n + Party + Party Name + Party Name + + + + + + + + + ASBIE + Party. Language + An association to Language. + 0..1 + Party + Language + Language + + + + + + + + + ASBIE + Party. Postal_ Address. Address + The party s postal address. + 0..1 + Party + Postal + Address + Address + + + + + + + + + ASBIE + Party. Physical_ Location. Location + The party s physical location. + 0..1 + Party + Physical + Location + Location + + + + + + + + + ASBIE + Party. Party Tax Scheme + An association to Party Tax Scheme. + 0..n + Party + Party Tax Scheme + Party Tax Scheme + + + + + + + + + ASBIE + Party. Party Legal Entity + An association to Party Legal Entity. + 0..n + Party + Party Legal Entity + Party Legal Entity + + + + + + + + + ASBIE + Party. Contact + Contact information related to the Party. + 0..1 + Party + Contact + Contact + + + + + + + + + ASBIE + Party. Person + An association to a person. + 0..n + Party + Person + Person + + + + + + + + + ASBIE + Party. Agent_ Party. Party + An association to another party who acts as an agent for this party. + 0..1 + Party + Agent + Party + Party + Customs Broker + + + + + + + + + ASBIE + Party. Service Provider Party + An association to another party who provides a service to this party. + 0..n + Party + Service Provider Party + Service Provider Party + + + + + + + + + ASBIE + Party. Power Of Attorney + An association to one or more Power of Attorney. + 0..n + Party + Power Of Attorney + Power Of Attorney + + + + + + + + + ASBIE + Party. Financial Account + An association to Financial Account + 0..1 + Party + Financial Account + Financial Account + + + + + + + + + + + ABIE + Party Identification. Details + Information about a party s identification. + Party Identification + + + + + + + + + BBIE + Party Identification. Identifier + Identifies a party. + 1 + Party Identification + Identifier + Identifier + Identifier. Type + + + + + + + + + + + ABIE + Party Legal Entity. Details + Information directly relating to the legal registration that is applicable to a party. + Party Legal Entity + + + + + + + + + BBIE + Party Legal Entity. Registration_ Name. Name + The name of a party as registered with the legal authority. + 0..1 + Party Legal Entity + Registration + Name + Name + Name. Type + Microsoft Corporation + + + + + + + + + BBIE + Party Legal Entity. Company Identifier. Identifier + Identifies a company as registered with the company registration scheme. + 0..1 + Party Legal Entity + Company Identifier + Identifier + Identifier. Type + Business Registration Number, Company Number + 3556625 + + + + + + + + + BBIE + Party Legal Entity. Registration_ Date. Date + The registration date of the CompanyID. + 0..1 + Party Legal Entity + Registration + Date + Date + Date. Type + + + + + + + + + BBIE + Party Legal Entity. Registration Expiration_ Date. Date + The expiration date, e.g. for Import/Export licenses. + 0..1 + Party Legal Entity + Registration Expiration + Date + Date + Date. Type + + + + + + + + + BBIE + Party Legal Entity. Company Legal Form Code. Code + The company legal status, expressed as a code. + 0..1 + Party Legal Entity + Company Legal Form Code + Code + Code. Type + Legal Status + + + + + + + + + BBIE + Party Legal Entity. Sole Proprietorship Indicator. Indicator + An indicator to state if the company is owned and controlled by one person (true) or more (false) + 0..1 + Party Legal Entity + Sole Proprietorship Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Party Legal Entity. Company Liquidation Status Code. Code + The company liquidation status, expressed as a code. + 0..1 + Party Legal Entity + Company Liquidation Status Code + Code + Code. Type + + + + + + + + + BBIE + Party Legal Entity. Corporate Stock_ Amount. Amount + The Capital Stock (equities) of a corporate. + 0..1 + Party Legal Entity + Corporate Stock + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Party Legal Entity. Fully Paid Shares Indicator. Indicator + An indicator to state that all shares of the corporate stock have been paid by shareholders. + 0..1 + Party Legal Entity + Fully Paid Shares Indicator + Indicator + Indicator. Type + + + + + + + + + ASBIE + Party Legal Entity. Registration_ Address. Address + Associates with the registered address of the party within a Corporate Registration Scheme. + 0..1 + Party Legal Entity + Registration + Address + Address + + + + + + + + + ASBIE + Party Legal Entity. Corporate Registration Scheme + Associates the party with a Corporate Registration Scheme. + 0..1 + Party Legal Entity + Corporate Registration Scheme + Corporate Registration Scheme + + + + + + + + + ASBIE + Party Legal Entity. Head_ Party. Party + An associationt to the Head Party. + 0..1 + Party Legal Entity + Head + Party + Party + + + + + + + + + ASBIE + Party Legal Entity. Shareholder Party + Information about the shareholder. + 0..n + Party Legal Entity + Shareholder Party + Shareholder Party + + + + + + + + + + + ABIE + Party Name. Details + Information about a party s name. + Party Name + + + + + + + + + BBIE + Party Name. Name + The name of the party. + 1 + Party Name + Name + Name + Name. Type + Microsoft + + + + + + + + + + + ABIE + Party Tax Scheme. Details + Information about a party s Tax Scheme. + Party Tax Scheme + + + + + + + + + BBIE + Party Tax Scheme. Registration_ Name. Name + The official name of the party as registered with the relevant fiscal authority. + 0..1 + Party Tax Scheme + Registration + Name + Name + Name. Type + Microsoft Corporation + + + + + + + + + BBIE + Party Tax Scheme. Company Identifier. Identifier + The identifier assigned for tax purposes to a party by the taxation authority. + 0..1 + Party Tax Scheme + Company Identifier + Identifier + Identifier. Type + VAT Number + 3556625 + + + + + + + + + BBIE + Party Tax Scheme. Tax Level Code. Code + The section or role within the tax scheme that applies to the party. + 0..1 + Party Tax Scheme + Tax Level Code + Code + Code. Type + + + + + + + + + BBIE + Party Tax Scheme. Exemption Reason Code. Code + A reason for a party s exemption from tax, expressed as a code. + 0..1 + Party Tax Scheme + Exemption Reason Code + Code + Code. Type + + + + + + + + + BBIE + Party Tax Scheme. Exemption_ Reason. Text + A reason for a party s exemption from tax, expressed as text. + 0..1 + Party Tax Scheme + Exemption + Reason + Text + Text. Type + + + + + + + + + ASBIE + Party Tax Scheme. Registration_ Address. Address + An association to Registered Address (for tax purposes). + 0..1 + Party Tax Scheme + Registration + Address + Address + + + + + + + + + ASBIE + Party Tax Scheme. Tax Scheme + An association to Tax Scheme. + 1 + Party Tax Scheme + Tax Scheme + Tax Scheme + + + + + + + + + + + ABIE + Payment. Details + Information directly relating to a specific payment. + Payment + + + + + + + + + BBIE + Payment. Identifier + Identifies the payment. + 0..1 + Payment + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Payment. Paid_ Amount. Amount + The amount paid. + 0..1 + Payment + Paid + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Payment. Received_ Date. Date + The date on which the payment was received. + 0..1 + Payment + Received + Date + Date + Date. Type + + + + + + + + + BBIE + Payment. Paid_ Date. Date + The date at which the payment was made. + 0..1 + Payment + Paid + Date + Date + Date. Type + + + + + + + + + BBIE + Payment. Paid_ Time. Time + The time at which the payment was made. + 0..1 + Payment + Paid + Time + Time + Time. Type + + + + + + + + + BBIE + Payment. Instruction Identifier. Identifier + Identifies the Payment Instruction. + 0..1 + Payment + Instruction Identifier + Identifier + Identifier. Type + + + + + + + + + + + ABIE + Payment Mandate. Details + Information about Payment Mandate. + Payment Mandate + + + + + + + + + BBIE + Payment Mandate. Identifier + Identifies the Payment Mandate. + 0..1 + Payment Mandate + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Payment Mandate. Mandate Type Code. Code + The Payment Mandate type expressed as a code + 0..1 + Payment Mandate + Mandate Type Code + Code + Code. Type + + + + + + + + + BBIE + Payment Mandate. Clause. Text + Contract clauses, textual. + 0..n + Payment Mandate + Clause + Text + Text. Type + + + + + + + + + BBIE + Payment Mandate. Clause Code. Code + Contract clauses, coded. + 0..n + Payment Mandate + Clause Code + Code + Code. Type + + + + + + + + + BBIE + Payment Mandate. Maximum Payment Instructions. Numeric + The Maximum Payment Instructions that are allowed within the validity period. + 0..1 + Payment Mandate + Maximum Payment Instructions + Numeric + Numeric. Type + + + + + + + + + BBIE + Payment Mandate. Maximum_ Paid Amount. Amount + The Maximum Paid Amount within a single instruction. + 0..1 + Payment Mandate + Maximum + Paid Amount + Amount + Amount. Type + + + + + + + + + BBIE + Payment Mandate. Signature Identifier. Identifier + Identifies the related Signature applied by a signatory party. + 0..1 + Payment Mandate + Signature Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Payment Mandate. Payer_ Party. Party + An association to the Payer Party. It should be used if different from the debtor. + 0..1 + Payment Mandate + Payer + Party + Party + + + + + + + + + ASBIE + Payment Mandate. Payer_ Financial Account. Financial Account + An association to the payer s Financial Account. + 0..1 + Payment Mandate + Payer + Financial Account + Financial Account + + + + + + + + + ASBIE + Payment Mandate. Validity_ Period. Period + An association to period during which the mandate is valid. + 0..1 + Payment Mandate + Validity + Period + Period + + + + + + + + + ASBIE + Payment Mandate. Payment Reversal_ Period. Period + The Reversal Period of the Payment. + 0..1 + Payment Mandate + Payment Reversal + Period + Period + + + + + + + + + + + ABIE + Payment Means. Details + Information about Payment Means. + Payment Means + + + + + + + + + BBIE + Payment Means. Identifier + Identifies the Payment Means. + 0..1 + Payment Means + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Payment Means. Payment Means Code. Code + The Payment Means expressed as a code + 1 + Payment Means + Payment Means Code + Code + Payment Means_ Code. Type + + + + + + + + + BBIE + Payment Means. Payment Due Date. Date + The date on which payment is due for the Payment Means. + 0..1 + Payment Means + Payment Due Date + Date + Date. Type + + + + + + + + + BBIE + Payment Means. Payment Channel Code. Code + The Payment Channel, expressed as a code. + 0..1 + Payment Means + Payment Channel Code + Code + Code. Type + + + + + + + + + BBIE + Payment Means. Instruction Identifier. Identifier + Identifies the Payment Instruction. + 0..1 + Payment Means + Instruction Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Payment Means. Instruction_ Note. Text + Free-form text applying to the Payment. + 0..n + Payment Means + Instruction + Note + Text + Text. Type + + + + + + + + + BBIE + Payment Means. Payment Identifier. Identifier + Identifies the Payment(s). + 0..n + Payment Means + Payment Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Payment Means. Card Account + An association to Card Account. + 0..1 + Payment Means + Card Account + Card Account + + + + + + + + + ASBIE + Payment Means. Payer_ Financial Account. Financial Account + An association to the payer s Financial Account. + 0..1 + Payment Means + Payer + Financial Account + Financial Account + + + + + + + + + ASBIE + Payment Means. Payee_ Financial Account. Financial Account + An association to the payee s Financial Account. + 0..1 + Payment Means + Payee + Financial Account + Financial Account + + + + + + + + + ASBIE + Payment Means. Credit Account + An association to Credit Account. + 0..1 + Payment Means + Credit Account + Credit Account + + + + + + + + + ASBIE + Payment Means. Payment Mandate + An association to Payment Mandate. + 0..1 + Payment Means + Payment Mandate + Payment Mandate + + + + + + + + + ASBIE + Payment Means. Trade Financing + An association to a Trade Financing. + 0..1 + Payment Means + Trade Financing + Trade Financing + + + + + + + + + + + ABIE + Payment Terms. Details + Information about Payment Terms. + Payment Terms + + + + + + + + + BBIE + Payment Terms. Identifier + Identifies the Payment Terms. + 0..1 + Payment Terms + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Payment Terms. Payment Means Identifier. Identifier + Identifies the applicable Payment Means. + 0..n + Payment Terms + Payment Means Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Payment Terms. Prepaid Payment Reference Identifier. Identifier + Identifies a reference to a prepaid payment. + 0..1 + Payment Terms + Prepaid Payment Reference Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Payment Terms. Note. Text + Free-form text applying to the Payment Terms. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Payment Terms + Note + Text + Text. Type + + + + + + + + + BBIE + Payment Terms. Reference_ Event Code. Code + The event from which terms are offered for a length of time, identified by a standard code. + 0..1 + Payment Terms + Reference + Event Code + Code + Code. Type + + + + + + + + + BBIE + Payment Terms. Settlement_ Discount Percent. Percent + The settlement discount rate (percentage) offered for payment within the settlement period. + 0..1 + Payment Terms + Settlement + Discount Percent + Percent + Percent. Type + + + + + + + + + BBIE + Payment Terms. Penalty_ Surcharge Percent. Percent + The penalty rate (percentage) charged for late payment. + 0..1 + Payment Terms + Penalty + Surcharge Percent + Percent + Percent. Type + + + + + + + + + BBIE + Payment Terms. Payment Percent. Percent + The percentage of staged payment. + 0..1 + Payment Terms + Payment Percent + Percent + Percent. Type + + + + + + + + + BBIE + Payment Terms. Amount + The payment amount for the Payment Terms. + 0..1 + Payment Terms + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Payment Terms. Settlement_ Discount Amount. Amount + The settlement discount amount offered for payment within the settlement period. + 0..1 + Payment Terms + Settlement + Discount Amount + Amount + Amount. Type + + + + + + + + + BBIE + Payment Terms. Penalty_ Amount. Amount + The penalty amount charged for late payment. + 0..1 + Payment Terms + Penalty + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Payment Terms. Payment Terms Details URI. Identifier + An URI pointing to additional payment terms details. For example a company web site. + 0..1 + Payment Terms + Payment Terms Details URI + Identifier + Identifier. Type + + + + + + + + + BBIE + Payment Terms. Payment Due Date. Date + The date on which payment is due. + 0..1 + Payment Terms + Payment Due Date + Date + Date. Type + + + + + + + + + BBIE + Payment Terms. Installment Due Date. Date + The date on which Installment is due. + 0..1 + Payment Terms + Installment Due Date + Date + Date. Type + + + + + + + + + BBIE + Payment Terms. Invoicing Party_ Reference. Text + An internal reference of the order for payment for the Invoicing Party. This may have been requested by the Payee of the Payer to accompany their remittance. + 0..1 + Payment Terms + Invoicing Party + Reference + Text + Text. Type + + + + + + + + + ASBIE + Payment Terms. Settlement_ Period. Period + An association to Settlement Period. + 0..1 + Payment Terms + Settlement + Period + Period + + + + + + + + + ASBIE + Payment Terms. Penalty_ Period. Period + An association to Penalty Period. + 0..1 + Payment Terms + Penalty + Period + Period + + + + + + + + + ASBIE + Payment Terms. Exchange Rate + + 0..1 + Payment Terms + Exchange Rate + Exchange Rate + + + + + + + + + ASBIE + Payment Terms. Validity_ Period. Period + An association to Validity Period. + 0..1 + Payment Terms + Validity + Period + Period + + + + + + + + + + + ABIE + Performance Data Line. Details + A Performance History data item + Performance Data Line + + + + + + + + + BBIE + Performance Data Line. Identifier + An identifier for the Exception Notification Line + 1 + Performance Data Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Performance Data Line. Note. Text + Free-form text applying to the Exception Notification Line. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Performance Data Line + Note + Text + Text. Type + + + + + + + + + BBIE + Performance Data Line. Performance Value. Quantity + Value of the attribute measured + 1 + Performance Data Line + Performance Value + Quantity + Quantity. Type + + + + + + + + + BBIE + Performance Data Line. Performance Metric Type Code. Code + The measurement of performance + 1 + Performance Data Line + Performance Metric Type Code + Code + Code. Type + + + + + + + + + ASBIE + Performance Data Line. Period + An association to Period. + 0..1 + Performance Data Line + Period + Period + + + + + + + + + ASBIE + Performance Data Line. Item + An association to Item. + 0..1 + Performance Data Line + Item + Item + + + + + + + + + + + ABIE + Period. Details + Information about a period of time. + Period + + + + + + + + + BBIE + Period. Start Date. Date + The start date of the period. + 0..1 + Period + Start Date + Date + Date. Type + + + + + + + + + BBIE + Period. Start Time. Time + The start time of the period. + 0..1 + Period + Start Time + Time + Time. Type + + + + + + + + + BBIE + Period. End Date. Date + The end date of the period. + 0..1 + Period + End Date + Date + Date. Type + + + + + + + + + BBIE + Period. End Time. Time + The end time of the period. + 0..1 + Period + End Time + Time + Time. Type + + + + + + + + + BBIE + Period. Duration. Measure + The duration of a period, expressed as a code; ISO 8601. + 0..1 + Period + Duration + Measure + Measure. Type + + + + + + + + + BBIE + Period. Description Code. Code + A description of the period, expressed as a code. + 0..n + Period + Description Code + Code + Code. Type + + + + + + + + + BBIE + Period. Description. Text + A description of the period. + 0..n + Period + Description + Text + Text. Type + + + + + + + + + + + ABIE + Person. Details + Information about a person. + Person + + + + + + + + + BBIE + Person. Identifier + Identifier for this person. + 0..1 + Person + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Person. First_ Name. Name + A person s forename or first name. + 0..1 + Person + First + Name + Name + Name. Type + + + + + + + + + BBIE + Person. Family_ Name. Name + A person s surname or family name. + 0..1 + Person + Family + Name + Name + Name. Type + + + + + + + + + BBIE + Person. Title. Text + A person s title of address, e.g., Mr, Ms, Dr, Sir. + 0..1 + Person + Title + Text + Text. Type + + + + + + + + + BBIE + Person. Middle_ Name. Name + A person s middle name(s) and/or initial(s). + 0..1 + Person + Middle + Name + Name + Name. Type + + + + + + + + + BBIE + Person. Name Suffix. Text + A suffix to a person s name, e.g., PhD, OBE, Jnr. + 0..1 + Person + Name Suffix + Text + Text. Type + + + + + + + + + BBIE + Person. Job Title. Text + A person s job title within an organization (for a particular role). + 0..1 + Person + Job Title + Text + Text. Type + + + + + + + + + BBIE + Person. Nationality. Identifier + A person's nationality + 0..1 + Person + Nationality + Identifier + Identifier. Type + + + + + + + + + BBIE + Person. Gender Code. Code + The gender of a Person (see ISO Gender Code 5218). + 0..1 + Person + Gender Code + Code + Code. Type + + + + + + + + + BBIE + Person. Birth Date. Date + The birth date of a Person. + 0..1 + Person + Birth Date + Date + Date. Type + + + + + + + + + BBIE + Person. Organization_ Department. Text + The department or subdivision of an organization that the person belongs to (for a particular role). + 0..1 + Person + Organization + Department + Text + Text. Type + + + + + + + + + ASBIE + Person. Contact + Contact information related to the Person. + 0..1 + Person + Contact + Contact + + + + + + + + + ASBIE + Person. Financial Account + An association to Financial Account + 0..1 + Person + Financial Account + Financial Account + + + + + + + + + ASBIE + Person. Identity_ Document Reference. Document Reference + A reference to an identity document that can precisely identify a person (for example a licence to drive). + 0..1 + Person + Identity + Document Reference + Document Reference + + + + + + + + + + + ABIE + Physical Attribute. Details + Information about physical attributes. + Physical Attribute + + + + + + + + + BBIE + Physical Attribute. Attribute Identifier. Identifier + Identifies the physical attribute. + 1 + Physical Attribute + Attribute Identifier + Identifier + Identifier. Type + colour style + + + + + + + + + BBIE + Physical Attribute. Position Code. Code + The position of the physical attribute, expressed as a code. + 0..1 + Physical Attribute + Position Code + Code + Code. Type + + + + + + + + + BBIE + Physical Attribute. Description Code. Code + The description of the physical attribute, expressed as a code. + 0..1 + Physical Attribute + Description Code + Code + Code. Type + XXL , Small + + + + + + + + + BBIE + Physical Attribute. Description. Text + The description of the physical attribute, expressed as text. + 0..n + Physical Attribute + Description + Text + Text. Type + + + + + + + + + + + ABIE + Pickup. Details + Information about a pickup. + Pickup + Collection + + + + + + + + + BBIE + Pickup. Identifier + Identifies the pickup. + 0..1 + Pickup + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Pickup. Actual_ Pickup Date. Date + The actual pickup date. + 0..1 + Pickup + Actual + Pickup Date + Date + Date. Type + + + + + + + + + BBIE + Pickup. Actual_ Pickup Time. Time + The actual pickup time. + 0..1 + Pickup + Actual + Pickup Time + Time + Time. Type + + + + + + + + + BBIE + Pickup. Earliest_ Pickup Date. Date + The earliest pickup date. + 0..1 + Pickup + Earliest + Pickup Date + Date + Date. Type + + + + + + + + + BBIE + Pickup. Earliest_ Pickup Time. Time + The earliest pickup time. + 0..1 + Pickup + Earliest + Pickup Time + Time + Time. Type + + + + + + + + + BBIE + Pickup. Latest_ Pickup Date. Date + The latest pickup date. + 0..1 + Pickup + Latest + Pickup Date + Date + Date. Type + + + + + + + + + BBIE + Pickup. Latest_ Pickup Time. Time + The latest pickup time. + 0..1 + Pickup + Latest + Pickup Time + Time + Time. Type + + + + + + + + + ASBIE + Pickup. Pickup_ Location. Location + The pickup location. + 0..1 + Pickup + Pickup + Location + Location + + + + + + + + + ASBIE + Pickup. Pickup_ Party. Party + An association to the pickup party. + 0..1 + Pickup + Pickup + Party + Party + + + + + + + + + + + ABIE + Power Of Attorney. Details + Information about the power of attorney. + Power Of Attorney + + + + + + + + + BBIE + Power Of Attorney. Identifier + Identifier for this power of attorney. + 0..1 + Power Of Attorney + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Power Of Attorney. Issue Date. Date + Issue date for this power of attorney. + 0..1 + Power Of Attorney + Issue Date + Date + Date. Type + + + + + + + + + BBIE + Power Of Attorney. Issue Time. Time + Issue time for this power of attorney. + 0..1 + Power Of Attorney + Issue Time + Time + Time. Type + + + + + + + + + BBIE + Power Of Attorney. Description. Text + Textual description of the power of attorney. + 0..n + Power Of Attorney + Description + Text + Text. Type + + + + + + + + + ASBIE + Power Of Attorney. Notary_ Party. Party + An association to a Notary Party + 1 + Power Of Attorney + Notary + Party + Party + + + + + + + + + ASBIE + Power Of Attorney. Agent_ Party. Party + An association to the Agent Party + 1 + Power Of Attorney + Agent + Party + Party + + + + + + + + + ASBIE + Power Of Attorney. Mandate_ Document Reference. Document Reference + An association to the mandate. + 0..n + Power Of Attorney + Mandate + Document Reference + Document Reference + + + + + + + + + + + ABIE + Price. Details + Information about the price. + Price + + + + + + + + + BBIE + Price. Price Amount. Amount + The price amount. + 1 + Price + Price Amount + Amount + Amount. Type + unit price + 23.45 + + + + + + + + + BBIE + Price. Base_ Quantity. Quantity + The actual quantity to which the price applies. + 0..1 + Price + Base + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Price. Price Change_ Reason. Text + The reason for the price change, expressed as text. + 0..n + Price + Price Change + Reason + Text + Text. Type + Clearance of old stock , New contract applies + + + + + + + + + BBIE + Price. Price Type Code. Code + The price type, expressed as a code. + 0..1 + Price + Price Type Code + Code + Code. Type + + + + + + + + + BBIE + Price. Price Type. Text + The price type, expressed as text. + 0..1 + Price + Price Type + Text + Text. Type + retail, wholesale, discount, contract + + + + + + + + + BBIE + Price. Orderable Unit Factor. Rate + The factor by which the base price unit can be converted to the orderable unit. + 0..1 + Price + Orderable Unit Factor + Rate + Rate. Type + Nails are priced by weight but ordered by quantity. So this would say how many nails per kilo + + + + + + + + + ASBIE + Price. Validity_ Period. Period + An association to Validity Period. + 0..n + Price + Validity + Period + Period + + + + + + + + + ASBIE + Price. Price List + A reference to a Price List. + 0..1 + Price + Price List + Price List + + + + + + + + + ASBIE + Price. Allowance Charge + An association to Allowance Charge. + 0..n + Price + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Price. Pricing_ Exchange Rate. Exchange Rate + An association to Exchange Rate. It defines the exchange rate if the exchange rate differs from the document level exchange rate. + 0..1 + Price + Pricing + Exchange Rate + Exchange Rate + + + + + + + + + + + ABIE + Price List. Details + Information about a Price List. + Price List + + + + + + + + + BBIE + Price List. Identifier + Identifies the Price List. + 0..1 + Price List + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Price List. Status Code. Code + Identifies whether the price list is an original , copy , revision , or cancellation . + 0..1 + Price List + Status Code + Code + Code. Type + new - announcement only , new and available , deleted - announcement only + + + + + + + + + ASBIE + Price List. Validity_ Period. Period + An association to Validity Period. + 0..n + Price List + Validity + Period + Period + + + + + + + + + ASBIE + Price List. Previous_ Price List. Price List + An association to Previous Price List. + 0..1 + Price List + Previous + Price List + Price List + + + + + + + + + + + ABIE + Pricing Reference. Details + A reference to Pricing Information. + Pricing Reference + + + + + + + + + ASBIE + Pricing Reference. Original_ Item Location Quantity. Item Location Quantity + An association to the original Item Location Quantity. + 0..1 + Pricing Reference + Original + Item Location Quantity + Item Location Quantity + + + + + + + + + ASBIE + Pricing Reference. Alternative Condition_ Price. Price + The price expressed in terms other than the actual price, e.g., the list price v. the contracted price, or the price in bags v. the price in kilos, or the list price in bags v. the contracted price in kilos. + 0..n + Pricing Reference + Alternative Condition + Price + Price + + + + + + + + + + + ABIE + Process Justification. Details + Information needed to justify certain tendering processes + Process Justification + + + + + + + + + BBIE + Process Justification. Previous_ Cancellation Reason Code. Code + Code that specifies the type of the previous cancelled tendering process + 0..1 + Process Justification + Previous + Cancellation Reason Code + Code + Code. Type + + + + + + + + + BBIE + Process Justification. Process_ Reason Code. Code + Code that specifies the reason why the contracting authority has followed a particular tendering procedure for the awarding of a contract. + 0..1 + Process Justification + Process + Reason Code + Code + Code. Type + + + + + + + + + BBIE + Process Justification. Process_ Reason. Text + The textual description of the reason why the contracting authority has followed a particular tendering procedure for the awarding of a contract. + 0..n + Process Justification + Process + Reason + Text + Text. Type + + + + + + + + + BBIE + Process Justification. Description. Text + The textual description justifying the selection of this process. + 0..n + Process Justification + Description + Text + Text. Type + + + + + + + + + + + ABIE + Procurement Project. Details + An endeavour carefully planned to achieve a procurement of goods, works and service. + Procurement Project + + + + + + + + + BBIE + Procurement Project. Identifier + The unique identifier of this Procurement project. + 0..1 + Procurement Project + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Procurement Project. Name + The name, expressed as text, of this Procurement project. + 1..n + Procurement Project + Name + Name + Name. Type + + + + + + + + + BBIE + Procurement Project. Description. Text + The textual description of this Procurement project. + 0..n + Procurement Project + Description + Text + Text. Type + + + + + + + + + BBIE + Procurement Project. Procurement_ Type Code. Code + The code specifying the type of Procurement project, such as goods, works and service. + 0..1 + Procurement Project + Procurement + Type Code + Code + Code. Type + + + + + + + + + BBIE + Procurement Project. Procurement Sub_ Type Code. Code + The code specifying the sub works type of work for this Procurement project, such as land surveying or IT consulting. + 0..1 + Procurement Project + Procurement Sub + Type Code + Code + Code. Type + + + + + + + + + BBIE + Procurement Project. Quality Control Code. Code + The indication of whether or not the control quality is included in the works project. + 0..1 + Procurement Project + Quality Control Code + Code + Code. Type + + + + + + + + + BBIE + Procurement Project. Required_ Fee. Amount + The reimbursement fee amount for concession procurement projects. + 0..1 + Procurement Project + Required + Fee + Amount + Amount. Type + + + + + + + + + BBIE + Procurement Project. Fee_ Description. Text + Textual description of the reimbursement fee amount for concession procurement projects. + 0..n + Procurement Project + Fee + Description + Text + Text. Type + + + + + + + + + BBIE + Procurement Project. Requested_ Delivery Date. Date + The requested delivery date for this procurement project. + 0..1 + Procurement Project + Requested + Delivery Date + Date + Date. Type + + + + + + + + + BBIE + Procurement Project. Estimated_ Overall Contract. Quantity + The estimated overall quantity for this procurement project. + 0..1 + Procurement Project + Estimated + Overall Contract + Quantity + Quantity. Type + + + + + + + + + ASBIE + Procurement Project. Budget Amount + Budget monetary amounts for the project as whole. + 0..1 + Procurement Project + Budget Amount + Budget Amount + + + + + + + + + ASBIE + Procurement Project. Required_ Commodity Classification. Commodity Classification + An association to classification categories for the deliverable requested. + 0..n + Procurement Project + Required + Commodity Classification + Commodity Classification + + + + + + + + + ASBIE + Procurement Project. Realized_ Location. Location + The physical actualization location of this Procurement project. + 0..n + Procurement Project + Realized + Location + Location + + + + + + + + + ASBIE + Procurement Project. Planned_ Period. Period + The planned period for performing this Procurement project in the tendering process. + 0..1 + Procurement Project + Planned + Period + Period + + + + + + + + + ASBIE + Procurement Project. Contract Extension + The contract extension for this tendering process. + 0..1 + Procurement Project + Contract Extension + Contract Extension + + + + + + + + + ASBIE + Procurement Project. Request For Tender Line + The goods or the service which is the subject to be procured in the tendering process. + 0..n + Procurement Project + Request For Tender Line + Request For Tender Line + + + + + + + + + + + ABIE + Procurement Project Lot. Details + A division of a procurement project, set up to create different contracts allowing the contracting party to award different lots to different economic operators. + Procurement Project Lot + + + + + + + + + BBIE + Procurement Project Lot. Identifier + The unique identifier of this Procurement Project Lot. + 1 + Procurement Project Lot + Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Procurement Project Lot. Tendering Terms + Tendering terms for an specific procurement project lot. + 0..1 + Procurement Project Lot + Tendering Terms + Tendering Terms + + + + + + + + + ASBIE + Procurement Project Lot. Procurement Project + The goods or the service which is the subject to be procured in the tendering process. + 1 + Procurement Project Lot + Procurement Project + Procurement Project + + + + + + + + + + + ABIE + Promotional Event. Details + This information on promotionalEvent for RetailEvent + Promotional Event + + + + + + + + + BBIE + Promotional Event. Promotional Event Type Code. Code + A further refinement of type of promotional event that is being communicated + 1 + Promotional Event + Promotional Event Type Code + Code + Code. Type + + + + + + + + + BBIE + Promotional Event. Submission. Date + Date that the proposed event or promotion was submitted + 0..1 + Promotional Event + Submission + Date + Date. Type + + + + + + + + + BBIE + Promotional Event. First Shipment Availibility Date. Date + The first day that a product or products would be available to ship to the Buyer from the Seller for a specific event or promotion + 0..1 + Promotional Event + First Shipment Availibility Date + Date + Date. Type + + + + + + + + + BBIE + Promotional Event. Latest_ Proposal Acceptance Date. Date + Date which marks a deadline for accepting a promotion or event. + 0..1 + Promotional Event + Latest + Proposal Acceptance Date + Date + Date. Type + + + + + + + + + ASBIE + Promotional Event. Promotional Specification + An association to promotional specification + 1..n + Promotional Event + Promotional Specification + Promotional Specification + + + + + + + + + + + ABIE + Promotional Event Line Item. Details + Information about an Promotional Event Line item + Promotional Event Line Item + + + + + + + + + BBIE + Promotional Event Line Item. Amount + Quantity of money. + 1 + Promotional Event Line Item + Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Promotional Event Line Item. Event Line Item + An association to event line item + 1 + Promotional Event Line Item + Event Line Item + Event Line Item + + + + + + + + + + + ABIE + Promotional Specification. Details + Information about an Promotional Specification + Promotional Specification + + + + + + + + + BBIE + Promotional Specification. Specification Identifier. Identifier + A unique identification number to a back system that defines a set of item location +combinations that share a set of promotion tactics + 0..1 + Promotional Specification + Specification Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Promotional Specification. Promotional Event Line Item + An association to promotional event line item + 1..n + Promotional Specification + Promotional Event Line Item + Promotional Event Line Item + + + + + + + + + ASBIE + Promotional Specification. Event Tactic + Information about an event tactic. + 0..n + Promotional Specification + Event Tactic + Event Tactic + + + + + + + + + + + ABIE + Qualification Resolution. Details + Distinctive features or characteristics required for a business in the tendering process such as number of employees, number of operating units, business type. + Qualification Resolution + + + + + + + + + BBIE + Qualification Resolution. Admission Code. Code + Indicates whether the economic operator has been accepted (true) to the tendering process or rejected (false). + 1 + Qualification Resolution + Admission Code + Code + Code. Type + + + + + + + + + BBIE + Qualification Resolution. Procurement Project Lot. Identifier + Identifier of the Procurement project lot to which this tenderer is accepted or rejected. + 0..1 + Qualification Resolution + Procurement Project Lot + Identifier + Identifier. Type + + + + + + + + + BBIE + Qualification Resolution. Exclusion Reason. Text + Textual description of the exclusion reason. + 0..n + Qualification Resolution + Exclusion Reason + Text + Text. Type + + + + + + + + + BBIE + Qualification Resolution. Resolution. Text + The textual description for this qualification resolution. + 0..n + Qualification Resolution + Resolution + Text + Text. Type + + + + + + + + + BBIE + Qualification Resolution. Resolution Date. Date + The date at which qualification resolution has been formalized. + 1 + Qualification Resolution + Resolution Date + Date + Date. Type + + + + + + + + + BBIE + Qualification Resolution. Resolution Time. Time + The time at which qualification resolution has been formalized. + 0..1 + Qualification Resolution + Resolution Time + Time + Time. Type + + + + + + + + + + + ABIE + Qualifying Party. Details + Distinctive features or characteristics required for a party in the tendering process such as number of employees, number of operating units, business type, definition of technical and financial capabilities or explanation of completed tasks. + Qualifying Party + + + + + + + + + BBIE + Qualifying Party. Participation. Percent + Participation percentage of the party in this tendering process. + 0..1 + Qualifying Party + Participation + Percent + Percent. Type + + + + + + + + + BBIE + Qualifying Party. Personal Situation. Text + Textual description of the personal situation of the economic operators in this tendering process. + 0..n + Qualifying Party + Personal Situation + Text + Text. Type + + + + + + + + + BBIE + Qualifying Party. Operating Years. Quantity + The number of years that the economic operatos has been in operation. + 0..1 + Qualifying Party + Operating Years + Quantity + Quantity. Type + + + + + + + + + BBIE + Qualifying Party. Employee. Quantity + The number of employees of the economic operator. + 0..1 + Qualifying Party + Employee + Quantity + Quantity. Type + + + + + + + + + BBIE + Qualifying Party. Business Classification Evidence. Identifier + Identifier of the evidence where the contracting party will find evidences of the classification of the economic operator. + 0..1 + Qualifying Party + Business Classification Evidence + Identifier + Identifier. Type + + + + + + + + + BBIE + Qualifying Party. Business Identity Evidence. Identifier + Identifier of the evidence where the contracting party will find evidences of the business identity of the economic operator. + 0..1 + Qualifying Party + Business Identity Evidence + Identifier + Identifier. Type + + + + + + + + + ASBIE + Qualifying Party. Business_ Classification Scheme. Classification Scheme + An association to a classification scheme for the business profile. + 0..1 + Qualifying Party + Business + Classification Scheme + Classification Scheme + + + + + + + + + ASBIE + Qualifying Party. Technical_ Capability. Capability + Technical capabilities of an economic operator. + 0..n + Qualifying Party + Technical + Capability + Capability + + + + + + + + + ASBIE + Qualifying Party. Financial_ Capability. Capability + Financial capabilities of an economic operator. + 0..n + Qualifying Party + Financial + Capability + Capability + + + + + + + + + ASBIE + Qualifying Party. Completed Task + Tasks completed by the economic operator. + 0..n + Qualifying Party + Completed Task + Completed Task + + + + + + + + + ASBIE + Qualifying Party. Declaration + An association to declarations from the economic operator to fulfill the requirements specified in the call for tenders. + 0..n + Qualifying Party + Declaration + Declaration + + + + + + + + + ASBIE + Qualifying Party. Party + An association to the Party + 0..1 + Qualifying Party + Party + Party + + + + + + + + + + + ABIE + Quotation Line. Details + Information about a Quotation Line. + Quotation Line + + + + + + + + + BBIE + Quotation Line. Identifier + Identifies the Quotation Line. + 0..1 + Quotation Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Quotation Line. Note. Text + Free-form text applying to the Quotation Line. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Quotation Line + Note + Text + Text. Type + + + + + + + + + BBIE + Quotation Line. Quantity + The quantity of the item quoted. + 0..1 + Quotation Line + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Quotation Line. Line Extension Amount. Amount + The total amount for the Quotation Line, including Allowance Charges but net of taxes. + 0..1 + Quotation Line + Line Extension Amount + Amount + Amount. Type + + + + + + + + + BBIE + Quotation Line. Total_ Tax Amount. Amount + The total tax amount for the Quotation Line. + 0..1 + Quotation Line + Total + Tax Amount + Amount + Amount. Type + + + + + + + + + BBIE + Quotation Line. Request For Quotation Line Identifier. Identifier + Identifies the Request For Quotation Line the Quatation Line is related to. + 0..1 + Quotation Line + Request For Quotation Line Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Quotation Line. Document Reference + An association to Document Reference. + 0..n + Quotation Line + Document Reference + Document Reference + + + + + + + + + ASBIE + Quotation Line. Line Item + An association to Line Item. + 1 + Quotation Line + Line Item + Line Item + + + + + + + + + ASBIE + Quotation Line. Seller Proposed Substitute_ Line Item. Line Item + An association to a proposed substitute Line Item. + 0..n + Quotation Line + Seller Proposed Substitute + Line Item + Line Item + + + + + + + + + ASBIE + Quotation Line. Alternative_ Line Item. Line Item + An association to an alternative Line Item (use it to give the buyer a secondary choise). + 0..n + Quotation Line + Alternative + Line Item + Line Item + + + + + + + + + ASBIE + Quotation Line. Request_ Line Reference. Line Reference + An associative reference to Request Line. + 0..1 + Quotation Line + Request + Line Reference + Line Reference + + + + + + + + + + + ABIE + Rail Transport. Details + Describes a train. + Rail Transport + + + + + + + + + BBIE + Rail Transport. Train Identifier. Identifier + Identifies a train. + 1 + Rail Transport + Train Identifier + Identifier + Identifier. Type + Train Number (WCO ID 167) + + + + + + + + + BBIE + Rail Transport. Rail Car Identifier. Identifier + Identifies the rail car on the train used for the means of transport. + 0..1 + Rail Transport + Rail Car Identifier + Identifier + Identifier. Type + + + + + + + + + + + ABIE + Receipt Line. Details + Information about a Receipt Line. + Receipt Line + + + + + + + + + BBIE + Receipt Line. Identifier + Identifies the Receipt Line. + 1 + Receipt Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Receipt Line. UUID. Identifier + A universally unique identifier for an instance of this ABIE. + 0..1 + Receipt Line + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Receipt Line. Note. Text + Free-form text applying to the Receipt Line. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Receipt Line + Note + Text + Text. Type + + + + + + + + + BBIE + Receipt Line. Received_ Quantity. Quantity + The quantity received. + 0..1 + Receipt Line + Received + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Receipt Line. Short_ Quantity. Quantity + The quantity received short; the difference between the quantity reported despatched and the quantity actually received. + 0..1 + Receipt Line + Short + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Receipt Line. Shortage Action Code. Code + The action that the Delivery Party wishes the Despatch Party to take as a result of the shortage, expressed as a code. + 0..1 + Receipt Line + Shortage Action Code + Code + Code. Type + + + + + + + + + BBIE + Receipt Line. Rejected_ Quantity. Quantity + The quantity rejected. + 0..1 + Receipt Line + Rejected + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Receipt Line. Reject Reason Code. Code + The reason for rejection, expressed as a code. + 0..1 + Receipt Line + Reject Reason Code + Code + Code. Type + + + + + + + + + BBIE + Receipt Line. Reject_ Reason. Text + The reason for rejection. + 0..1 + Receipt Line + Reject + Reason + Text + Text. Type + + + + + + + + + BBIE + Receipt Line. Reject Action Code. Code + The action that the Delivery Party wishes the Despatch Party to take as a result of the rejection, expressed as a code. + 0..1 + Receipt Line + Reject Action Code + Code + Code. Type + + + + + + + + + BBIE + Receipt Line. Quantity Discrepancy Code. Code + A code describing the type of discrepancy. + 0..1 + Receipt Line + Quantity Discrepancy Code + Code + Code. Type + + + + + + + + + BBIE + Receipt Line. Oversupply_ Quantity. Quantity + The quantity over-supplied, i.e., the quantity over and above that ordered. + 0..1 + Receipt Line + Oversupply + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Receipt Line. Received_ Date. Date + The date on which the good/services are received. + 0..1 + Receipt Line + Received + Date + Date + Date. Type + + + + + + + + + BBIE + Receipt Line. Timing Complaint Code. Code + A complaint about the timing of delivery, expressed as a code. + 0..1 + Receipt Line + Timing Complaint Code + Code + Code. Type + + + + + + + + + BBIE + Receipt Line. Timing Complaint. Text + A complaint about the timing of delivery. + 0..1 + Receipt Line + Timing Complaint + Text + Text. Type + + + + + + + + + ASBIE + Receipt Line. Order Line Reference + An association to Order Line Reference. + 0..1 + Receipt Line + Order Line Reference + Order Line Reference + + + + + + + + + ASBIE + Receipt Line. Despatch_ Line Reference. Line Reference + An associative reference to Despatch Line. + 0..n + Receipt Line + Despatch + Line Reference + Line Reference + + + + + + + + + ASBIE + Receipt Line. Document Reference + An association to Document Reference. + 0..n + Receipt Line + Document Reference + Document Reference + + + + + + + + + ASBIE + Receipt Line. Item + An association to Item. + 0..n + Receipt Line + Item + Item + + + + + + + + + ASBIE + Receipt Line. Shipment + An association to Shipment. + 0..n + Receipt Line + Shipment + Shipment + + + + + + + + + + + ABIE + Regulation. Details + Regulation + Regulation + Points to regulation at atomic level + + + + + + + + + BBIE + Regulation. Name + Name. + 1..n + Regulation + Name + Name + Name. Type + + + + + + + + + BBIE + Regulation. Legal Reference. Text + Legal Reference + 0..1 + Regulation + Legal Reference + Text + Text. Type + Art. 45 2 b + + + + + + + + + BBIE + Regulation. Ontology URI. Identifier + URI + 0..1 + Regulation + Ontology URI + Identifier + Identifier. Type + + + + + + + + + + + ABIE + Related Item. Details + Information about the relationship between two items. + Related Item + + + + + + + + + BBIE + Related Item. Identifier + An identifier for the related item. + 0..1 + Related Item + Identifier + Identifier + Identifier. Type + First , Second + + + + + + + + + BBIE + Related Item. Quantity + The quantity that applies to the relationship. + 0..1 + Related Item + Quantity + Quantity + Quantity. Type + 6 , 10mg per Kilo + + + + + + + + + BBIE + Related Item. Description. Text + A description for the relationship. + 0..n + Related Item + Description + Text + Text. Type + If used in wet conditions or extreme environments + + + + + + + + + + + ABIE + Reminder Line. Details + Information about a Line on a Reminder document. + Reminder Line + + + + + + + + + BBIE + Reminder Line. Identifier + Identifies the Reminder Line. + 1 + Reminder Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Reminder Line. Note. Text + Free-form text applying to the Reminder Line. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Reminder Line + Note + Text + Text. Type + + + + + + + + + BBIE + Reminder Line. UUID. Identifier + A universally unique identifier for an instance of this ABIE. + 0..1 + Reminder Line + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Reminder Line. Balance Brought Forward_ Indicator. Indicator + If true, indicates that the Remonder Line contains a balance brought forward. + 0..1 + Reminder Line + Balance Brought Forward + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Reminder Line. Debit_ Line Amount. Amount + The amount debited on the Reminder Line. + 0..1 + Reminder Line + Debit + Line Amount + Amount + Amount. Type + + + + + + + + + BBIE + Reminder Line. Credit_ Line Amount. Amount + The amount credited on the Reminder Line. + 0..1 + Reminder Line + Credit + Line Amount + Amount + Amount. Type + + + + + + + + + BBIE + Reminder Line. Accounting Cost Code. Code + The buyer s accounting code applied to the Reminder Line. + 0..1 + Reminder Line + Accounting Cost Code + Code + Code. Type + + + + + + + + + BBIE + Reminder Line. Accounting Cost. Text + The buyer s accounting cost centre applied to the Reminder Line, expressed as text. + 0..1 + Reminder Line + Accounting Cost + Text + Text. Type + + + + + + + + + BBIE + Reminder Line. Penalty_ Surcharge Percent. Percent + The penalty rate (percentage) charged for late payment. + 0..1 + Reminder Line + Penalty + Surcharge Percent + Percent + Percent. Type + + + + + + + + + BBIE + Reminder Line. Amount + The amount on the Reminder Line. + 0..1 + Reminder Line + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Reminder Line. Payment Purpose Code. Code + The business purposes for payment express as code. + 0..1 + Reminder Line + Payment Purpose Code + Code + Code. Type + + + + + + + + + ASBIE + Reminder Line. Reminder_ Period. Period + An association to Period. + 0..n + Reminder Line + Reminder + Period + Period + + + + + + + + + ASBIE + Reminder Line. Billing Reference + An association to Billing Reference + 0..n + Reminder Line + Billing Reference + Billing Reference + + + + + + + + + ASBIE + Reminder Line. Exchange Rate + An association to Exchange Rate (between the Reminder Line Currency and the Related Document currency). + 0..1 + Reminder Line + Exchange Rate + Exchange Rate + + + + + + + + + + + ABIE + Remittance Advice Line. Details + Information about a Line on a Remittance Advice. + Remittance Advice Line + + + + + + + + + BBIE + Remittance Advice Line. Identifier + Identifies the Remittance Advice Line. + 1 + Remittance Advice Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Remittance Advice Line. Note. Text + Free-form text applying to the Remittance Advice Line. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Remittance Advice Line + Note + Text + Text. Type + + + + + + + + + BBIE + Remittance Advice Line. UUID. Identifier + A universally unique identifier for an instance of this ABIE. + 0..1 + Remittance Advice Line + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Remittance Advice Line. Debit_ Line Amount. Amount + The amount debited on the Remittance Advice Line. + 0..1 + Remittance Advice Line + Debit + Line Amount + Amount + Amount. Type + + + + + + + + + BBIE + Remittance Advice Line. Credit_ Line Amount. Amount + The amount credited on the Remittance Advice Line. + 0..1 + Remittance Advice Line + Credit + Line Amount + Amount + Amount. Type + + + + + + + + + BBIE + Remittance Advice Line. Balance Amount. Amount + The balance amount on the Remittance Advice Line. + 0..1 + Remittance Advice Line + Balance Amount + Amount + Amount. Type + + + + + + + + + BBIE + Remittance Advice Line. Payment Purpose Code. Code + The business purposes for payment express as code. + 0..1 + Remittance Advice Line + Payment Purpose Code + Code + Code. Type + + + + + + + + + BBIE + Remittance Advice Line. Invoicing Party_ Reference. Text + An internal reference of the order for payment for the Invoicing Party. This may have been requested by the Payee of the Payer to accompany their remittance. + 0..1 + Remittance Advice Line + Invoicing Party + Reference + Text + Text. Type + + + + + + + + + ASBIE + Remittance Advice Line. Accounting_ Supplier Party. Supplier Party + An association to Supplier Accounting Party. + 0..1 + Remittance Advice Line + Accounting + Supplier Party + Supplier Party + + + + + + + + + ASBIE + Remittance Advice Line. Accounting_ Customer Party. Customer Party + An association to Customer Accounting Party. + 0..1 + Remittance Advice Line + Accounting + Customer Party + Customer Party + + + + + + + + + ASBIE + Remittance Advice Line. Buyer_ Customer Party. Customer Party + An association to Buyer. + 0..1 + Remittance Advice Line + Buyer + Customer Party + Customer Party + + + + + + + + + ASBIE + Remittance Advice Line. Seller_ Supplier Party. Supplier Party + An association to Seller. + 0..1 + Remittance Advice Line + Seller + Supplier Party + Supplier Party + + + + + + + + + ASBIE + Remittance Advice Line. Originator_ Customer Party. Customer Party + An association to Originator. + 0..1 + Remittance Advice Line + Originator + Customer Party + Customer Party + + + + + + + + + ASBIE + Remittance Advice Line. Payee_ Party. Party + An association to Payee. + 0..1 + Remittance Advice Line + Payee + Party + Party + + + + + + + + + ASBIE + Remittance Advice Line. Invoice_ Period. Period + An association to Invoice Period. + 0..n + Remittance Advice Line + Invoice + Period + Period + + + + + + + + + ASBIE + Remittance Advice Line. Billing Reference + An association to Billing Reference. + 0..n + Remittance Advice Line + Billing Reference + Billing Reference + + + + + + + + + ASBIE + Remittance Advice Line. Document Reference + An association to Document Reference. + 0..n + Remittance Advice Line + Document Reference + Document Reference + + + + + + + + + ASBIE + Remittance Advice Line. Exchange Rate + An association to Exchange Rate (between the Remittance Advice Line currency and the Related Document currency). + 0..1 + Remittance Advice Line + Exchange Rate + Exchange Rate + + + + + + + + + + + ABIE + Renewal. Details + + Renewal + + + + + + + + + BBIE + Renewal. Amount + The amount of the renewal period. + 0..1 + Renewal + Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Renewal. Period + The renewal period. + 0..1 + Renewal + Period + Period + + + + + + + + + + + ABIE + Request For Quotation Line. Details + Information about a Line on a Request For Quotation. + Request For Quotation Line + + + + + + + + + BBIE + Request For Quotation Line. Identifier + Identifies the Request For Quotation Line. + 0..1 + Request For Quotation Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Request For Quotation Line. UUID. Identifier + A universally unique identifier for an instance of this ABIE. + 0..1 + Request For Quotation Line + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Request For Quotation Line. Note. Text + Free-form text applying to the Request For Quotation Line. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Request For Quotation Line + Note + Text + Text. Type + + + + + + + + + BBIE + Request For Quotation Line. Optional_ Line Item Indicator. Indicator + An indicator to identify wheter the Request For Quotation line is optional (true) or not (false) in the Quotation. + 0..1 + Request For Quotation Line + Optional + Line Item Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Request For Quotation Line. Privacy Code. Code + Statement of the level of confidential of the Request For Quotataion Line. + 0..1 + Request For Quotation Line + Privacy Code + Code + Code. Type + + + + + + + + + BBIE + Request For Quotation Line. Security Classification Code. Code + + 0..1 + Request For Quotation Line + Security Classification Code + Code + Code. Type + + + + + + + + + ASBIE + Request For Quotation Line. Document Reference + An association to Document Reference. + 0..n + Request For Quotation Line + Document Reference + Document Reference + + + + + + + + + ASBIE + Request For Quotation Line. Line Item + An association to Line Item. + 1 + Request For Quotation Line + Line Item + Line Item + + + + + + + + + + + ABIE + Request For Tender Line. Details + Specific goods or services expected to be delivered in this procurement project. + Request For Tender Line + + + + + + + + + BBIE + Request For Tender Line. Identifier + The identifier for the request for tender line. + 0..1 + Request For Tender Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Request For Tender Line. UUID. Identifier + The unique identification for the request for tender line. + 0..1 + Request For Tender Line + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Request For Tender Line. Note. Text + Additional information for this request for tender line. + 0..n + Request For Tender Line + Note + Text + Text. Type + + + + + + + + + BBIE + Request For Tender Line. Quantity + The quantity of the item in this line. + 0..1 + Request For Tender Line + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Request For Tender Line. Minimum_ Quantity. Quantity + The minimum quantity for this item. + 0..1 + Request For Tender Line + Minimum + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Request For Tender Line. Maximum_ Quantity. Quantity + The maximum quantity for this item. + 0..1 + Request For Tender Line + Maximum + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Request For Tender Line. Maximum_ Tax Exclusive Amount. Amount + The maximum total amount exclusive of taxes + 0..1 + Request For Tender Line + Maximum + Tax Exclusive Amount + Amount + Amount. Type + + + + + + + + + BBIE + Request For Tender Line. Maximum_ Tax Inclusive Amount. Amount + The maximum total amount inclusive of taxes + 0..1 + Request For Tender Line + Maximum + Tax Inclusive Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Request For Tender Line. Document Reference + An association to Document Reference. + 0..n + Request For Tender Line + Document Reference + Document Reference + + + + + + + + + ASBIE + Request For Tender Line. Delivery_ Period. Period + An applicable period for the deliverable or set of deliverables in this tendering process. + 0..n + Request For Tender Line + Delivery + Period + Period + + + + + + + + + ASBIE + Request For Tender Line. Required_ Item Location Quantity. Item Location Quantity + An association to the description of properties related to locations and quantities of the item. + 0..n + Request For Tender Line + Required + Item Location Quantity + Item Location Quantity + + + + + + + + + ASBIE + Request For Tender Line. Warranty Validity_ Period. Period + Association with a period to indicate the guarantee for the work, service or goods. + 0..1 + Request For Tender Line + Warranty Validity + Period + Period + + + + + + + + + ASBIE + Request For Tender Line. Item + An association to Item. + 1 + Request For Tender Line + Item + Item + + + + + + + + + ASBIE + Request For Tender Line. Sub_ Request For Tender Line. Request For Tender Line + An association to a Request For Tender Line. + 0..n + Request For Tender Line + Sub + Request For Tender Line + Request For Tender Line + + + + + + + + + + + ABIE + Response. Details + Information about responses to a document (at the application level). + Response + + + + + + + + + BBIE + Response. Reference. Identifier + Identifies the section (or line) of the document to which the response applies. + 0..1 + Response + Reference + Identifier + Identifier. Type + + + + + + + + + BBIE + Response. Response Code. Code + A code for the description of the response to the transaction document. + 0..1 + Response + Response Code + Code + Code. Type + + + + + + + + + BBIE + Response. Description. Text + The description of the response to the transaction document. + 0..n + Response + Description + Text + Text. Type + + + + + + + + + BBIE + Response. Effective Date. Date + The effective date for which the response is valid. + 0..1 + Response + Effective Date + Date + Date. Type + + + + + + + + + BBIE + Response. Effective Time. Time + The effective time for which the response is valid. + 0..1 + Response + Effective Time + Time + Time. Type + + + + + + + + + ASBIE + Response. Status + An association to Status + 0..1 + Response + Status + Status + + + + + + + + + + + ABIE + Result Of Verification. Details + Information about the result of a process of verification of a signature. + Result Of Verification + + + + + + + + + BBIE + Result Of Verification. Validator. Identifier + Identifier of the validator system. + 0..1 + Result Of Verification + Validator + Identifier + Identifier. Type + + + + + + + + + BBIE + Result Of Verification. Validation_ Result Code. Code + Code describing the result of the validation. + 0..1 + Result Of Verification + Validation + Result Code + Code + Code. Type + + + + + + + + + BBIE + Result Of Verification. Validation Date. Date + Date when the validation was done. + 0..1 + Result Of Verification + Validation Date + Date + Date. Type + + + + + + + + + BBIE + Result Of Verification. Validation Time. Time + Time when the validation was done. + 0..1 + Result Of Verification + Validation Time + Time + Time. Type + + + + + + + + + BBIE + Result Of Verification. Validate_ Process. Text + Textual description of the process of validation. + 0..1 + Result Of Verification + Validate + Process + Text + Text. Type + + + + + + + + + BBIE + Result Of Verification. Validate_ Tool. Text + Textual description of the tool used to validate the signature. + 0..1 + Result Of Verification + Validate + Tool + Text + Text. Type + + + + + + + + + BBIE + Result Of Verification. Validate_ Tool Version. Text + Textual descrition of the version of the tool used to validate the signature. + 0..1 + Result Of Verification + Validate + Tool Version + Text + Text. Type + + + + + + + + + ASBIE + Result Of Verification. Signatory_ Party. Party + An association to the signing Party. + 0..1 + Result Of Verification + Signatory + Party + Party + + + + + + + + + + + ABIE + Retail Planned Impact. Details + Effect of the discrete activity affecting supply or demand in the supply chain (eg. Promotion, inventory policy change) + Retail Planned Impact + + + + + + + + + BBIE + Retail Planned Impact. Amount + Monetary value assigned to a specific sub line within the planning of the estimated impact of a retail event + 1 + Retail Planned Impact + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Retail Planned Impact. Forecast_ Purpose Code. Code + A description of the purpose for the forecast that is assigned to each forecast data item exception criterion. + 1 + Retail Planned Impact + Forecast + Purpose Code + Code + Code. Type + + + + + + + + + BBIE + Retail Planned Impact. Forecast Type Code. Code + A description of a forecast selected from a list + 1 + Retail Planned Impact + Forecast Type Code + Code + Code. Type + + + + + + + + + ASBIE + Retail Planned Impact. Period + An association to period + 0..1 + Retail Planned Impact + Period + Period + + + + + + + + + + + ABIE + Road Transport. Details + Describes a road transport vehicle. + Road Transport + + + + + + + + + BBIE + Road Transport. License Plate Identifier. Identifier + Identifies a specific vehicle. + 1 + Road Transport + License Plate Identifier + Identifier + Identifier. Type + Vehicle registration number (WCO ID 167) + + + + + + + + + + + ABIE + Sales Item. Details + Information about a Sales Item. + Sales Item + + + + + + + + + BBIE + Sales Item. Quantity + The sold quantity. + 1 + Sales Item + Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Sales Item. Activity Property + An association to Activity Property. + 0..n + Sales Item + Activity Property + Activity Property + + + + + + + + + ASBIE + Sales Item. Tax Exclusive_ Price. Price + An association to an Item. + 0..n + Sales Item + Tax Exclusive + Price + Price + + + + + + + + + ASBIE + Sales Item. Tax Inclusive_ Price. Price + An association to an Item. + 0..n + Sales Item + Tax Inclusive + Price + Price + + + + + + + + + ASBIE + Sales Item. Item + An association to an Item. + 1 + Sales Item + Item + Item + + + + + + + + + + + ABIE + Secondary Hazard. Details + Information about Secondary Hazard (related to a Hazardous Item). + Secondary Hazard + + + + + + + + + BBIE + Secondary Hazard. Identifier + Identifies the Secondary Hazard. + 0..1 + Secondary Hazard + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Secondary Hazard. Placard Notation. Text + The placard notation corresponding to the hazard class of the hazardous commodity. Can also be the hazard identification number of the orange placard (upper part) required on the means of transport. + 0..1 + Secondary Hazard + Placard Notation + Text + Text. Type + 5.1 + + + + + + + + + BBIE + Secondary Hazard. Placard Endorsement. Text + The placard endorsement that is to be shown on the shipping papers for the hazardous commodity. Can also be used for the number of the orange placard (lower part) required on the means of transport. + 0..1 + Secondary Hazard + Placard Endorsement + Text + Text. Type + 2 + + + + + + + + + BBIE + Secondary Hazard. Emergency Procedures Code. Code + Emergency procedures for hazardous goods, expressed as a code. + 0..1 + Secondary Hazard + Emergency Procedures Code + Code + Code. Type + EMG code, EMS Page Number + + + + + + + + + BBIE + Secondary Hazard. Extension. Text + Additional information about the hazardous substance. Can be used to specify information such as the type of regulatory requirements that apply to a description. + 0..1 + Secondary Hazard + Extension + Text + Text. Type + N.O.S. or a Waste Characteristics Code in conjunction with an EPA Waste Stream code + + + + + + + + + + + ABIE + Service Point. Details + A service point or stage in a transportation service. + Service Point + + + + + + + + + BBIE + Service Point. Sequence Number. Identifier + Sequence number differentiating one Service Point from another. + 1 + Service Point + Sequence Number + Identifier + Identifier. Type + + + + + + + + + BBIE + Service Point. Transport Mode Code. Code + The method of transport used from this service point to another. + 0..1 + Service Point + Transport Mode Code + Code + Transport Mode_ Code. Type + + + + + + + + + BBIE + Service Point. Remarks. Text + Any remarks relevant for this service point. + 0..n + Service Point + Remarks + Text + Text. Type + + + + + + + + + ASBIE + Service Point. Service Point_ Location. Location + Information about a location. + 0..1 + Service Point + Service Point + Location + Location + + + + + + + + + ASBIE + Service Point. Transport Means + The particular vehicle used for the transport of goods or persons. + 0..1 + Service Point + Transport Means + Transport Means + + + + + + + + + ASBIE + Service Point. Planned Departure_ Period. Period + Information about a period of time. + 0..1 + Service Point + Planned Departure + Period + Period + + + + + + + + + ASBIE + Service Point. Planned Arrival_ Period. Period + Information about a period of time. + 0..1 + Service Point + Planned Arrival + Period + Period + + + + + + + + + ASBIE + Service Point. Despatch_ Period. Period + Information about a period of time. + 0..1 + Service Point + Despatch + Period + Period + + + + + + + + + ASBIE + Service Point. Delivery_ Period. Period + Information about a period of time. + 0..1 + Service Point + Delivery + Period + Period + + + + + + + + + + + ABIE + Service Provider Party. Details + Information about the Service Provider Party. + Service Provider Party + + + + + + + + + BBIE + Service Provider Party. Identifier + The identifier for the Service Provider Party. + 0..1 + Service Provider Party + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Service Provider Party. Service Type Code. Code + + 0..1 + Service Provider Party + Service Type Code + Code + Code. Type + + + + + + + + + BBIE + Service Provider Party. Service Type. Text + + 0..n + Service Provider Party + Service Type + Text + Text. Type + + + + + + + + + ASBIE + Service Provider Party. Party + An association to Party. + 1 + Service Provider Party + Party + Party + + + + + + + + + ASBIE + Service Provider Party. Seller_ Contact. Contact + An association to Service Contact. + 0..1 + Service Provider Party + Seller + Contact + Contact + + + + + + + + + + + ABIE + Shareholder Party. Details + Information about the shareholder. + Shareholder Party + + + + + + + + + BBIE + Shareholder Party. Partecipation. Percent + Percentage. + 0..1 + Shareholder Party + Partecipation + Percent + Percent. Type + + + + + + + + + ASBIE + Shareholder Party. Party + An association to a shareholder. + 0..1 + Shareholder Party + Party + Party + + + + + + + + + + + ABIE + Shipment. Details + An identifiable collection of one or more goods items to be transported between the seller party and the buyer party. This information may be defined within a commercial contract. A shipment can be transported in different consignments (e.g., split for logistical purposes). + Shipment + + + + + + + + + BBIE + Shipment. Identifier + Identifies a shipment. + 1 + Shipment + Identifier + Identifier + Identifier. Type + Waybill Number + + + + + + + + + BBIE + Shipment. Shipping Priority Level Code. Code + The priority or level of service required for a shipment, expressed as a code. + 0..1 + Shipment + Shipping Priority Level Code + Code + Code. Type + Service Level, Service Priority + + + + + + + + + BBIE + Shipment. Handling Code. Code + The handling required for a shipment, expressed as a code. + 0..1 + Shipment + Handling Code + Code + Code. Type + Special Handling + + + + + + + + + BBIE + Shipment. Handling_ Instructions. Text + Free-form text describing Handling Instructions for a shipment. + 0..1 + Shipment + Handling + Instructions + Text + Text. Type + + + + + + + + + BBIE + Shipment. Information. Text + Free-form text applying to a shipment. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..1 + Shipment + Information + Text + Text. Type + + + + + + + + + BBIE + Shipment. Gross_ Weight. Measure + The total gross weight of a shipment; the weight of the goods plus packaging plus transport equipment. + 0..1 + Shipment + Gross + Weight + Measure + Measure. Type + + + + + + + + + BBIE + Shipment. Net_ Weight. Measure + The total net weight of a shipment; the weight of the goods plus packaging. + 0..1 + Shipment + Net + Weight + Measure + Measure. Type + + + + + + + + + BBIE + Shipment. Net Net_ Weight. Measure + The weight of the goods net of packaging and transport equipment. + 0..1 + Shipment + Net Net + Weight + Measure + Measure. Type + + + + + + + + + BBIE + Shipment. Gross_ Volume. Measure + The total volume of the goods in a shipment plus packaging. + 0..1 + Shipment + Gross + Volume + Measure + Measure. Type + + + + + + + + + BBIE + Shipment. Net_ Volume. Measure + The volume of a shipment net of packaging and transport equipment. + 0..1 + Shipment + Net + Volume + Measure + Measure. Type + + + + + + + + + BBIE + Shipment. Total_ Goods Item Quantity. Quantity + Count of the total number of goods items within a shipment. + 0..1 + Shipment + Total + Goods Item Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Shipment. Total_ Transport Handling Unit Quantity. Quantity + Count of the number of pieces of transport handling equipment in a shipment, such as pallets, boxes, and cases. + 0..1 + Shipment + Total + Transport Handling Unit Quantity + Quantity + Quantity. Type + Number of THUs + + + + + + + + + BBIE + Shipment. Insurance_ Value. Amount + The total sum covered by an insurance for the shipment. + 0..1 + Shipment + Insurance + Value + Amount + Amount. Type + Value Insured + + + + + + + + + BBIE + Shipment. Declared Customs_ Value. Amount + Amount declared for customs purposes of those goods in a shipment which are subject to the same customs procedure, and have the same tariff/statistical heading, country information, and duty regime. + 0..1 + Shipment + Declared Customs + Value + Amount + Amount. Type + + + + + + + + + BBIE + Shipment. Declared For Carriage_ Value. Amount + Value, declared by the shipper or his agent solely for the purpose of varying the carrier s level of liability from that provided in the contract of carriage, in case of loss or damage to goods or delayed delivery. + 0..1 + Shipment + Declared For Carriage + Value + Amount + Amount. Type + Declared value for carriage, Interest in delivery + + + + + + + + + BBIE + Shipment. Declared Statistics_ Value. Amount + Value declared for statistical purposes of those goods in a consignment which have the same statistical heading. + 0..1 + Shipment + Declared Statistics + Value + Amount + Amount. Type + Statistical Value + + + + + + + + + BBIE + Shipment. Free On Board_ Value. Amount + Monetary amount that has to be or has been paid as calculated under the applicable trade delivery. + 0..1 + Shipment + Free On Board + Value + Amount + Amount. Type + FOB Value + + + + + + + + + BBIE + Shipment. Special_ Instructions. Text + Special instructions relating to a shipment. + 0..n + Shipment + Special + Instructions + Text + Text. Type + + + + + + + + + BBIE + Shipment. Delivery_ Instructions. Text + Delivery instructions relating to a shipment. + 0..n + Shipment + Delivery + Instructions + Text + Text. Type + + + + + + + + + BBIE + Shipment. Split Consignment_ Indicator. Indicator + Indicates whether the consignment has been split in transit. + 0..1 + Shipment + Split Consignment + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Shipment. Consignment_ Quantity. Quantity + Count of the total number of consignments items within a shipment. + 0..1 + Shipment + Consignment + Quantity + Quantity + Quantity. Type + + + + + + + + + ASBIE + Shipment. Consignment + An association to Consignment covering the shipment. + 1..n + Shipment + Consignment + Consignment + + + + + + + + + ASBIE + Shipment. Goods Item + An association to Goods Item (for Bulk Goods). + 0..n + Shipment + Goods Item + Goods Item + + + + + + + + + ASBIE + Shipment. Shipment Stage + An association to Shipment Stage. + 0..n + Shipment + Shipment Stage + Shipment Stage + + + + + + + + + ASBIE + Shipment. Delivery + An association to Delivery. + 0..1 + Shipment + Delivery + Delivery + + + + + + + + + ASBIE + Shipment. Transport Handling Unit + An association to Transport Handling Unit used for loose and containerized goods. + 0..n + Shipment + Transport Handling Unit + Transport Handling Unit + + + + + + + + + ASBIE + Shipment. Return_ Address. Address + An association to the region in which the goods have been produced or manufactured, according to criteria laid down for the purposes of application of the Customs tariff, or quantitative restrictions, or of any other measure related to trade. + 0..1 + Shipment + Return + Address + Address + + + + + + + + + ASBIE + Shipment. Origin_ Address. Address + An association to the address to which a shipment would be returned. + 0..1 + Shipment + Origin + Address + Address + + + + + + + + + ASBIE + Shipment. First Arrival Port_ Location. Location + Identifies the first arrival location. This would be a port for sea, airport for air, and border post for land crossing. + 0..1 + Shipment + First Arrival Port + Location + Location + + + + + + + + + ASBIE + Shipment. Last Exit Port_ Location. Location + Identifies the final exporting location. This would be a port for sea, airport for air, and border post for land crossing. + 0..1 + Shipment + Last Exit Port + Location + Location + + + + + + + + + ASBIE + Shipment. Export_ Country. Country + Identifies the country from which the goods are originally exported without any commercial transaction taking place in intermediate countries. + 0..1 + Shipment + Export + Country + Country + + + + + + + + + ASBIE + Shipment. Freight_ Allowance Charge. Allowance Charge + Costs incurred by the shipper in moving goods, by whatever means, from one place to another under the terms of the contract of carriage. In addition to transport costs, this may include such elements as packing, documentation, loading, unloading, and insurance (to the extent that they relate to the freight costs). + 0..n + Shipment + Freight + Allowance Charge + Allowance Charge + + + + + + + + + + + ABIE + Shipment Stage. Details + Information about a shipment stage. + Shipment Stage + + + + + + + + + BBIE + Shipment Stage. Identifier + Identifies a shipment stage. + 0..1 + Shipment Stage + Identifier + Identifier + Identifier. Type + 1 , 2 , etc.. + + + + + + + + + BBIE + Shipment Stage. Transport Mode Code. Code + The method of transport used for a shipment stage. + 0..1 + Shipment Stage + Transport Mode Code + Code + Transport Mode_ Code. Type + + + + + + + + + BBIE + Shipment Stage. Transport Means Type Code. Code + The type of vehicle used for a shipment stage. + 0..1 + Shipment Stage + Transport Means Type Code + Code + Code. Type + + + + + + + + + BBIE + Shipment Stage. Transit_ Direction Code. Code + The direction of transit for a shipment stage. + 0..1 + Shipment Stage + Transit + Direction Code + Code + Code. Type + + + + + + + + + BBIE + Shipment Stage. Pre Carriage_ Indicator. Indicator + Indicates whether the stage is before the main carriage of the shipment. + 1 + Shipment Stage + Pre Carriage + Indicator + Indicator + Indicator. Type + Truck delivery to wharf + + + + + + + + + BBIE + Shipment Stage. On Carriage_ Indicator. Indicator + Indicates whether the stage is after the main carriage of the shipment. + 1 + Shipment Stage + On Carriage + Indicator + Indicator + Indicator. Type + Truck delivery from wharf + + + + + + + + + BBIE + Shipment Stage. Estimated_ Delivery Date. Date + The estimated delivery date. + 0..1 + Shipment Stage + Estimated + Delivery Date + Date + Date. Type + + + + + + + + + BBIE + Shipment Stage. Estimated_ Delivery Time. Time + The estimated delivery time. + 0..1 + Shipment Stage + Estimated + Delivery Time + Time + Time. Type + + + + + + + + + BBIE + Shipment Stage. Required_ Delivery Date. Date + The required delivery date by the buyer. + 0..1 + Shipment Stage + Required + Delivery Date + Date + Date. Type + + + + + + + + + BBIE + Shipment Stage. Required_ Delivery Time. Time + The required delivery time by the buyer. + 0..1 + Shipment Stage + Required + Delivery Time + Time + Time. Type + + + + + + + + + BBIE + Shipment Stage. Loading_ Sequence Identifier. Identifier + The identifier for the loading sequence of this consignment. + 0..1 + Shipment Stage + Loading + Sequence Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Shipment Stage. Successive_ Sequence Identifier. Identifier + The identifier for the successive loading sequence for this consignment. + 0..1 + Shipment Stage + Successive + Sequence Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Shipment Stage. Instructions. Text + Instructions for loading expressed as text. + 0..1 + Shipment Stage + Instructions + Text + Text. Type + + + + + + + + + BBIE + Shipment Stage. Demurrage_ Instructions. Text + Demurrage instructions expressed as text. + 0..1 + Shipment Stage + Demurrage + Instructions + Text + Text. Type + + + + + + + + + ASBIE + Shipment Stage. Transit_ Period. Period + An association to Transit Period. + 0..1 + Shipment Stage + Transit + Period + Period + + + + + + + + + ASBIE + Shipment Stage. Carrier_ Party. Party + An association to Carrier. + 0..n + Shipment Stage + Carrier + Party + Party + + + + + + + + + ASBIE + Shipment Stage. Transport Means + An association to the means of transport. + 0..1 + Shipment Stage + Transport Means + Transport Means + + + + + + + + + ASBIE + Shipment Stage. Loading Port_ Location. Location + An association to the port location of loading. + 0..1 + Shipment Stage + Loading Port + Location + Location + + + + + + + + + ASBIE + Shipment Stage. Unloading Port_ Location. Location + An association to the port location of unloading. + 0..1 + Shipment Stage + Unloading Port + Location + Location + + + + + + + + + ASBIE + Shipment Stage. Transship Port_ Location. Location + An association to the port location of transshipment. + 0..1 + Shipment Stage + Transship Port + Location + Location + + + + + + + + + ASBIE + Shipment Stage. Loading_ Transport Event. Transport Event + An association to the transport event of loading. + 0..1 + Shipment Stage + Loading + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Examination_ Transport Event. Transport Event + An association to the transport event of examination. + 0..1 + Shipment Stage + Examination + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Availability_ Transport Event. Transport Event + An association to the transport event of Availability. + 0..1 + Shipment Stage + Availability + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Exportation_ Transport Event. Transport Event + An assoiciaton to the transport event of Exportation. + 0..1 + Shipment Stage + Exportation + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Discharge_ Transport Event. Transport Event + An association to the transport event of Discharge. + 0..1 + Shipment Stage + Discharge + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Warehousing_ Transport Event. Transport Event + An assoication to the transport event of Warehousing. + 0..1 + Shipment Stage + Warehousing + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Takeover_ Transport Event. Transport Event + An association to the transport event of Takeover. + 0..1 + Shipment Stage + Takeover + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Optional Takeover_ Transport Event. Transport Event + An association to the transport event of Optional Takeover. + 0..1 + Shipment Stage + Optional Takeover + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Dropoff_ Transport Event. Transport Event + An association to the transport event of dropoff. + 0..1 + Shipment Stage + Dropoff + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Actual Pickup_ Transport Event. Transport Event + An association to the transport event of actual pickup. + 0..1 + Shipment Stage + Actual Pickup + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Delivery_ Transport Event. Transport Event + An association to the transport event of delivery. + 0..1 + Shipment Stage + Delivery + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Receipt_ Transport Event. Transport Event + An association to the transport eent of receipt. + 0..1 + Shipment Stage + Receipt + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Storage_ Transport Event. Transport Event + An assoiciation to the transport event of storage. + 0..1 + Shipment Stage + Storage + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Acceptance_ Transport Event. Transport Event + An association to the transport event of acceptance. + 0..1 + Shipment Stage + Acceptance + Transport Event + Transport Event + + + + + + + + + ASBIE + Shipment Stage. Terminal Operator_ Party. Party + An association to the Terminal operator party. + 0..1 + Shipment Stage + Terminal Operator + Party + Party + + + + + + + + + ASBIE + Shipment Stage. Customs Agent_ Party. Party + An association to the Customs agent party. + 0..1 + Shipment Stage + Customs Agent + Party + Party + + + + + + + + + + + ABIE + Signature. Details + Information about signature. A placeholder for signature. + Signature + + + + + + + + + BBIE + Signature. Identifier + An identifier for the Signature. + 1 + Signature + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Signature. Note. Text + Free form text about the signature or the circumstances where the signature has been used. + 0..n + Signature + Note + Text + Text. Type + + + + + + + + + BBIE + Signature. Validation Date. Date + Specifies the date when the signature was approved. + 0..1 + Signature + Validation Date + Date + Date. Type + + + + + + + + + BBIE + Signature. Validation Time. Time + Specifies the time when the signature was approved. + 0..1 + Signature + Validation Time + Time + Time. Type + + + + + + + + + BBIE + Signature. Validator. Identifier + Identifies the organization, person, service or server that has validated the signature. + 0..1 + Signature + Validator + Identifier + Identifier. Type + + + + + + + + + BBIE + Signature. Canonicalization Method. Text + The mathematical logic method used by the Signature. + 0..1 + Signature + Canonicalization Method + Text + Text. Type + + + + + + + + + BBIE + Signature. Signature Method. Text + The method of signature. + 0..1 + Signature + Signature Method + Text + Text. Type + + + + + + + + + ASBIE + Signature. Signatory_ Party. Party + An association to the signing Party. + 0..1 + Signature + Signatory + Party + Party + + + + + + + + + ASBIE + Signature. Digital Signature_ Attachment. Attachment + Refers to the actual encoded signature (e.g., in XMLDSIG format). + 0..1 + Signature + Digital Signature + Attachment + Attachment + + + + + + + + + ASBIE + Signature. Original_ Document Reference. Document Reference + A reference to the actual document that the signature applies to. For evidentiary purposes, this may be the document image that the signatory party saw when applying their signature. + 0..1 + Signature + Original + Document Reference + Document Reference + + + + + + + + + + + ABIE + Statement Line. Details + Information about a Line on a Statement of Account. + Statement Line + + + + + + + + + BBIE + Statement Line. Identifier + Identifies the Statement Line. + 1 + Statement Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Statement Line. Note. Text + Free-form text applying to the Statement Line. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Statement Line + Note + Text + Text. Type + + + + + + + + + BBIE + Statement Line. UUID. Identifier + A universally unique identifier for an instance of this ABIE. + 0..1 + Statement Line + UUID + Identifier + Identifier. Type + + + + + + + + + BBIE + Statement Line. Balance Brought Forward_ Indicator. Indicator + If true, indicates that the Statement Line has a balance outstanding from the previous bill(s). + 0..1 + Statement Line + Balance Brought Forward + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Statement Line. Debit_ Line Amount. Amount + The amount debited on the Statement Line. + 0..1 + Statement Line + Debit + Line Amount + Amount + Amount. Type + + + + + + + + + BBIE + Statement Line. Credit_ Line Amount. Amount + The amount credited on the Statement Line. + 0..1 + Statement Line + Credit + Line Amount + Amount + Amount. Type + + + + + + + + + BBIE + Statement Line. Balance Amount. Amount + The balance amount on the Statement Line. + 0..1 + Statement Line + Balance Amount + Amount + Amount. Type + + + + + + + + + BBIE + Statement Line. Payment Purpose Code. Code + The business purposes for payment express as code. + 0..1 + Statement Line + Payment Purpose Code + Code + Code. Type + + + + + + + + + ASBIE + Statement Line. Payment Means + An association to Payment Means. + 0..1 + Statement Line + Payment Means + Payment Means + + + + + + + + + ASBIE + Statement Line. Payment Terms + An association to Payment Terms. + 0..n + Statement Line + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Statement Line. Buyer_ Customer Party. Customer Party + An association to Buyer. + 0..1 + Statement Line + Buyer + Customer Party + Customer Party + + + + + + + + + ASBIE + Statement Line. Seller_ Supplier Party. Supplier Party + An association to Seller. + 0..1 + Statement Line + Seller + Supplier Party + Supplier Party + + + + + + + + + ASBIE + Statement Line. Originator_ Customer Party. Customer Party + An association to Originator. + 0..1 + Statement Line + Originator + Customer Party + Customer Party + + + + + + + + + ASBIE + Statement Line. Accounting_ Customer Party. Customer Party + An association to Accounting Customer Party. + 0..1 + Statement Line + Accounting + Customer Party + Customer Party + + + + + + + + + ASBIE + Statement Line. Accounting_ Supplier Party. Supplier Party + An association to Accounting Supplier Party. + 0..1 + Statement Line + Accounting + Supplier Party + Supplier Party + + + + + + + + + ASBIE + Statement Line. Payee_ Party. Party + An association to Payee. + 0..1 + Statement Line + Payee + Party + Party + + + + + + + + + ASBIE + Statement Line. Invoice_ Period. Period + An association to Invoice Period. + 0..n + Statement Line + Invoice + Period + Period + + + + + + + + + ASBIE + Statement Line. Billing Reference + An association to Billing Reference. + 0..n + Statement Line + Billing Reference + Billing Reference + + + + + + + + + ASBIE + Statement Line. Document Reference + An association to Document Reference. + 0..n + Statement Line + Document Reference + Document Reference + + + + + + + + + ASBIE + Statement Line. Exchange Rate + An association to Exchange Rate (between the Statement Line currency and the Related Document Currency). + 0..1 + Statement Line + Exchange Rate + Exchange Rate + + + + + + + + + ASBIE + Statement Line. Allowance Charge + Information about a charge or discount price component. + 0..n + Statement Line + Allowance Charge + Allowance Charge + + + + + + + + + + + ABIE + Status. Details + The information relevant to a condition or a position of an object. + Status + + + + + + + + + BBIE + Status. Condition Code. Code + A code specifying the status condition of the related object. + 0..1 + Status + Condition Code + Code + Code. Type + UN/ECE Rec 24 + + + + + + + + + BBIE + Status. Reference Date. Date + A reference date value for this status. + 0..1 + Status + Reference Date + Date + Date. Type + + + + + + + + + BBIE + Status. Reference Time. Time + A reference time value for this status. + 0..1 + Status + Reference Time + Time + Time. Type + + + + + + + + + BBIE + Status. Description. Text + A textual description of this status. + 0..n + Status + Description + Text + Text. Type + + + + + + + + + BBIE + Status. Status Reason Code. Code + A code specifying a reason for a status condition. + 0..1 + Status + Status Reason Code + Code + Code. Type + + + + + + + + + BBIE + Status. Status_ Reason. Text + The reason, expressed as text, for this status condition or position. + 0..n + Status + Status + Reason + Text + Text. Type + + + + + + + + + BBIE + Status. Sequence Identifier. Identifier + A unique identifier of the sequence of this status. + 0..1 + Status + Sequence Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Status. Text + Provides any textual information related to this status. + 0..n + Status + Text + Text + Text. Type + + + + + + + + + BBIE + Status. Indication_ Indicator. Indicator + Specifies an indicator relevant to a specific status. + 0..1 + Status + Indication + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Status. Percent + Specifies a percentage relevant to a specific status. + 0..1 + Status + Percent + Percent + Percent. Type + + + + + + + + + BBIE + Status. Condition Value. Measure + Provides a measurement of the condition. For example if it is the temperature condition, then this measurement could be degrees celcius or fahrenheit. + 0..n + Status + Condition Value + Measure + Measure. Type + + + + + + + + + BBIE + Status. Reliability Percent. Percent + Indicates the reliability of the status in percent + 0..1 + Status + Reliability Percent + Percent + Percent. Type + + + + + + + + + + + ABIE + Stock Availability Report Line. Details + Information about a Stock Availability Report Line. + Stock Availability Report Line + + + + + + + + + BBIE + Stock Availability Report Line. Identifier + An identifier for the Stock Availability Report Line. + 1 + Stock Availability Report Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Stock Availability Report Line. Note. Text + Free-form text applying to the Catalogue. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Stock Availability Report Line + Note + Text + Text. Type + + + + + + + + + BBIE + Stock Availability Report Line. Quantity + The quantity that is currently on stock. + 1 + Stock Availability Report Line + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Stock Availability Report Line. Value. Amount + The amount of the stock quantity. + 0..1 + Stock Availability Report Line + Value + Amount + Amount. Type + + + + + + + + + BBIE + Stock Availability Report Line. Availability Date. Date + The date from which the goods will be available. If not present, the goods are available now. + 0..1 + Stock Availability Report Line + Availability Date + Date + Date. Type + + + + + + + + + BBIE + Stock Availability Report Line. Availability Status Code. Code + A code that classifies the availability level of the good. + 0..1 + Stock Availability Report Line + Availability Status Code + Code + Code. Type + + + + + + + + + ASBIE + Stock Availability Report Line. Item + Information directly relating to an item. + 1 + Stock Availability Report Line + Item + Item + + + + + + + + + + + ABIE + Stowage. Details + A location on board a means of transport where specified goods or transport equipment have been or are to be stowed. + Stowage + + + + + + + + + BBIE + Stowage. Location Identifier. Identifier + Identifies a location on board a means of transport where specified goods or transport equipment have been or are to be stowed. + 0..1 + Stowage + Location Identifier + Identifier + Identifier. Type + Cell Location, coded + + + + + + + + + BBIE + Stowage. Location. Text + Describes a location on board a means of transport where specified goods or transport equipment have been or are to be stowed. + 0..n + Stowage + Location + Text + Text. Type + Cell Location + + + + + + + + + ASBIE + Stowage. Measurement_ Dimension. Dimension + Associates any measurements (including lengths, mass, and volume) for this stowage. + 0..n + Stowage + Measurement + Dimension + Dimension + + + + + + + + + + + ABIE + Subcontract Terms. Details + Information about the subcontract terms for this tendering process. + Subcontract Terms + + + + + + + + + BBIE + Subcontract Terms. Rate + The rate assigned to the subcontracted task. + 0..1 + Subcontract Terms + Rate + Rate + Rate. Type + + + + + + + + + BBIE + Subcontract Terms. Unknown_ Price. Indicator + The indication of whether or not the subcontract price is known. + 0..1 + Subcontract Terms + Unknown + Price + Indicator + Indicator. Type + + + + + + + + + BBIE + Subcontract Terms. Description. Text + A textual description of this subcontracted task rate + 0..n + Subcontract Terms + Description + Text + Text. Type + + + + + + + + + BBIE + Subcontract Terms. Amount + The amount assigned to the subcontracted task. + 0..1 + Subcontract Terms + Amount + Amount + Amount. Type + + + + + + + + + + + ABIE + Subscriber Consumption. Details + This class contain the Statement for the consumptionpoint. Is there a need for specify more than one consumptionpoint, then use one UtilityChargeableConsumption for each consumptionpoint, so you have several instance of UtilityChargeableConsumption. This could for exampel be a big company, there have severals branches. + Subscriber Consumption + + + + + + + + + BBIE + Subscriber Consumption. Consumption Identifier. Identifier + The identifier tor this specification. + 0..1 + Subscriber Consumption + Consumption Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Subscriber Consumption. Specification Type Code. Code + The code who specifices the type of this specification. + 0..1 + Subscriber Consumption + Specification Type Code + Code + Code. Type + + + + + + + + + BBIE + Subscriber Consumption. Note. Text + Free form text applying to the utility Energy Water Supply . This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Subscriber Consumption + Note + Text + Text. Type + This is how we have calculating your yearly statement + + + + + + + + + BBIE + Subscriber Consumption. Total Metered Quantity. Quantity + The total amount for the consumpted quantity - calculated from the meterreadings + 0..1 + Subscriber Consumption + Total Metered Quantity + Quantity + Quantity. Type + 2000.0 + + + + + + + + + ASBIE + Subscriber Consumption. Subscriber_ Party. Party + Contact and address information about the Subscriber + 0..1 + Subscriber Consumption + Subscriber + Party + Party + + + + + + + + + ASBIE + Subscriber Consumption. Utility_ Consumption Point. Consumption Point + Content information about UtilityConsumptionPoint + 1 + Subscriber Consumption + Utility + Consumption Point + Consumption Point + + + + + + + + + ASBIE + Subscriber Consumption. On Account Payment + The coming planed a conto payments + 0..n + Subscriber Consumption + On Account Payment + On Account Payment + + + + + + + + + ASBIE + Subscriber Consumption. Consumption + Contain the sub Statement for one and only one supplier + 0..1 + Subscriber Consumption + Consumption + Consumption + + + + + + + + + ASBIE + Subscriber Consumption. Supplier Consumption + Contain the sub Statement for one and only one supplier + 0..n + Subscriber Consumption + Supplier Consumption + Supplier Consumption + + + + + + + + + + + ABIE + Supplier Consumption. Details + Contain the sub Statement for one and only one supplier + Supplier Consumption + + + + + + + + + BBIE + Supplier Consumption. Description. Text + Free form text for information there isn t direcly in another structure + 0..1 + Supplier Consumption + Description + Text + Text. Type + This is what you pay for electricity to DONG Energy North Utility + + + + + + + + + ASBIE + Supplier Consumption. Utility Supplier_ Party. Party + Contact and address information about the Supplier + 0..1 + Supplier Consumption + Utility Supplier + Party + Party + + + + + + + + + ASBIE + Supplier Consumption. Utility Customer_ Party. Party + Contact and address information about the Customer + 0..1 + Supplier Consumption + Utility Customer + Party + Party + + + + + + + + + ASBIE + Supplier Consumption. Consumption + Contain the sub Statement for one and only one supplier + 1 + Supplier Consumption + Consumption + Consumption + + + + + + + + + ASBIE + Supplier Consumption. Consumption Line + Statement of one product. + 1..n + Supplier Consumption + Consumption Line + Consumption Line + + + + + + + + + + + ABIE + Supplier Party. Details + Information about the Supplier Party. + Supplier Party + + + + + + + + + BBIE + Supplier Party. Customer Assigned_ Account Identifier. Identifier + The customer s internal identifier for the supplier. + 0..1 + Supplier Party + Customer Assigned + Account Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Supplier Party. Additional_ Account Identifier. Identifier + The customer s internal identifier for the supplier. + 0..n + Supplier Party + Additional + Account Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Supplier Party. Data Sending Capability. Text + Capability to send invoice data via the purchase card provider (VISA/MasterCard/American Express). + 0..1 + Supplier Party + Data Sending Capability + Text + Text. Type + + + + + + + + + ASBIE + Supplier Party. Party + An association to Party. + 0..1 + Supplier Party + Party + Party + + + + + + + + + ASBIE + Supplier Party. Despatch_ Contact. Contact + An association to Despatch Contact. + 0..1 + Supplier Party + Despatch + Contact + Contact + + + + + + + + + ASBIE + Supplier Party. Accounting_ Contact. Contact + An association to Supplier Accounting Contact. + 0..1 + Supplier Party + Accounting + Contact + Contact + + + + + + + + + ASBIE + Supplier Party. Seller_ Contact. Contact + An association to Seller Contact. + 0..1 + Supplier Party + Seller + Contact + Contact + + + + + + + + + + + ABIE + Tax Category. Details + Information about a tax category. + Tax Category + + + + + + + + + BBIE + Tax Category. Identifier + Identifies the tax category. + 0..1 + Tax Category + Identifier + Identifier + Identifier. Type + ZeroRatedGoods NotTaxable Standard Rate + + + + + + + + + BBIE + Tax Category. Name + The name of the tax category. + 0..1 + Tax Category + Name + Name + Name. Type + Luxury Goods , Wine Equalization , Exempt + + + + + + + + + BBIE + Tax Category. Percent + The tax rate for the category, expressed as a percentage. + 0..1 + Tax Category + Percent + Percent + Percent. Type + + + + + + + + + BBIE + Tax Category. Base Unit Measure. Measure + Where a tax is applied at a certain rate per unit, the measure of units on which the tax calculation is based. + 0..1 + Tax Category + Base Unit Measure + Measure + Measure. Type + + + + + + + + + BBIE + Tax Category. Per Unit_ Amount. Amount + Where a tax is applied at a certain rate per unit, the rate per unit applied. + 0..1 + Tax Category + Per Unit + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Tax Category. Tax Exemption Reason Code. Code + The reason for tax being exempted expressed as a code. + 0..1 + Tax Category + Tax Exemption Reason Code + Code + Code. Type + + + + + + + + + BBIE + Tax Category. Tax Exemption Reason. Text + The reason for tax being exempted. + 0..1 + Tax Category + Tax Exemption Reason + Text + Text. Type + + + + + + + + + BBIE + Tax Category. Tier Range. Text + Where a tax is tiered, the range of tiers applied in the calculation of the tax subtotal for the tax category. + 0..1 + Tax Category + Tier Range + Text + Text. Type + + + + + + + + + BBIE + Tax Category. Tier Rate. Percent + Where a tax is tiered, the rate of tax applied to the range of tiers in the calculation of the tax subtotal for the tax category. + 0..1 + Tax Category + Tier Rate + Percent + Percent. Type + + + + + + + + + ASBIE + Tax Category. Tax Scheme + An association to Tax Scheme. + 1 + Tax Category + Tax Scheme + Tax Scheme + + + + + + + + + + + ABIE + Tax Scheme. Details + Information about a tax scheme. + Tax Scheme + + + + + + + + + BBIE + Tax Scheme. Identifier + Identifies the tax scheme. + 0..1 + Tax Scheme + Identifier + Identifier + Identifier. Type + VAT , GST + + + + + + + + + BBIE + Tax Scheme. Name + The name of the tax scheme. + 0..1 + Tax Scheme + Name + Name + Name. Type + Value Added Tax , Wholesale Tax , Sales Tax , State Tax + + + + + + + + + BBIE + Tax Scheme. Tax Type Code. Code + An identifier for the tax type. + 0..1 + Tax Scheme + Tax Type Code + Code + Code. Type + Consumption , Sales + + + + + + + + + BBIE + Tax Scheme. Currency Code. Code + The currency in which the tax is collected and reported, expressed as a code. + 0..1 + Tax Scheme + Currency Code + Code + Currency_ Code. Type + + + + + + + + + ASBIE + Tax Scheme. Jurisdiction Region_ Address. Address + An association with Address (of taxation jurisdiction). + 0..n + Tax Scheme + Jurisdiction Region + Address + Address + + + + + + + + + + + ABIE + Tax Subtotal. Details + Information about the subtotal for a particular tax category within a tax scheme, such as standard rate within VAT. + Tax Subtotal + + + + + + + + + BBIE + Tax Subtotal. Taxable_ Amount. Amount + The net amount to which the tax percent (rate) is applied to calculate the tax amount. + 0..1 + Tax Subtotal + Taxable + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Tax Subtotal. Tax Amount. Amount + The amount of tax stated explicitly. + 1 + Tax Subtotal + Tax Amount + Amount + Amount. Type + + + + + + + + + BBIE + Tax Subtotal. Calculation Sequence. Numeric + Identifies the numerical order sequence in which taxes are applied when multiple taxes are attracted. If all taxes apply to the same taxable amount, CalculationSequenceNumeric will be 1 for all taxes. + 0..1 + Tax Subtotal + Calculation Sequence + Numeric + Numeric. Type + + + + + + + + + BBIE + Tax Subtotal. Transaction Currency_ Tax Amount. Amount + The tax amount, expressed in the currency used for invoicing. + 0..1 + Tax Subtotal + Transaction Currency + Tax Amount + Amount + Amount. Type + + + + + + + + + BBIE + Tax Subtotal. Percent + The tax rate for the category, expressed as a percentage. + 0..1 + Tax Subtotal + Percent + Percent + Percent. Type + + + + + + + + + BBIE + Tax Subtotal. Base Unit Measure. Measure + Where a tax is applied at a certain rate per unit, the measure of units on which the tax calculation is based. + 0..1 + Tax Subtotal + Base Unit Measure + Measure + Measure. Type + + + + + + + + + BBIE + Tax Subtotal. Per Unit_ Amount. Amount + Where a tax is applied at a certain rate per unit, the rate per unit applied. + 0..1 + Tax Subtotal + Per Unit + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Tax Subtotal. Tier Range. Text + Where a tax is tiered, the range of tiers applied in the calculation of the tax subtotal for the tax category. + 0..1 + Tax Subtotal + Tier Range + Text + Text. Type + + + + + + + + + BBIE + Tax Subtotal. Tier Rate. Percent + Where a tax is tiered, the rate of tax applied to the range of tiers in the calculation of the tax subtotal for the tax category. + 0..1 + Tax Subtotal + Tier Rate + Percent + Percent. Type + + + + + + + + + ASBIE + Tax Subtotal. Tax Category + An association to Tax Category. + 1 + Tax Subtotal + Tax Category + Tax Category + + + + + + + + + + + ABIE + Tax Total. Details + Information about a total amount of a particular type of tax. + Tax Total + + + + + + + + + BBIE + Tax Total. Tax Amount. Amount + The total tax amount for particular tax scheme e.g. VAT; the sum of each of the tax subtotals for each tax category within the tax scheme. + 1 + Tax Total + Tax Amount + Amount + Amount. Type + + + + + + + + + BBIE + Tax Total. Rounding Amount. Amount + The rounding amount (positive or negative) added to the calculated tax total to produce the rounded TotalTaxAmount. + 0..1 + Tax Total + Rounding Amount + Amount + Amount. Type + + + + + + + + + BBIE + Tax Total. Tax Evidence_ Indicator. Indicator + An indicator as to whether these totals are recognized as legal evidence for taxation purposes. + 0..1 + Tax Total + Tax Evidence + Indicator + Indicator + Indicator. Type + default is negative + + + + + + + + + BBIE + Tax Total. Tax Included_ Indicator. Indicator + An indicator to tell whether tax is included in the calculation. + 0..1 + Tax Total + Tax Included + Indicator + Indicator + Indicator. Type + + + + + + + + + ASBIE + Tax Total. Tax Subtotal + An association to Tax Subtotal. + 0..n + Tax Total + Tax Subtotal + Tax Subtotal + + + + + + + + + + + ABIE + Telecommunications Service. Details + Informations about each Telecommunications Service + Telecommunications Service + + + + + + + + + BBIE + Telecommunications Service. Identifier + Identifies the Telecommunications Service. + 0..1 + Telecommunications Service + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Telecommunications Service. Call_ Date. Date + Information about the date for the call + 1 + Telecommunications Service + Call + Date + Date + Date. Type + 2008-01-01 + + + + + + + + + BBIE + Telecommunications Service. Call_ Time. Time + Information about the time for the call + 1 + Telecommunications Service + Call + Time + Time + Time. Type + 00:01:00 + + + + + + + + + BBIE + Telecommunications Service. Service Number Called. Text + Information about the phone number called + 1 + Telecommunications Service + Service Number Called + Text + Text. Type + 12345679 + + + + + + + + + BBIE + Telecommunications Service. Telecommunications Service Category. Text + Information about the tele category + 0..1 + Telecommunications Service + Telecommunications Service Category + Text + Text. Type + Subscription + + + + + + + + + BBIE + Telecommunications Service. Telecommunications Service Category Code. Code + Statement of the tele category code + 0..1 + Telecommunications Service + Telecommunications Service Category Code + Code + Code. Type + Subscription + + + + + + + + + BBIE + Telecommunications Service. Movie Title. Text + Information about a movie title + 0..1 + Telecommunications Service + Movie Title + Text + Text. Type + The Matrix + + + + + + + + + BBIE + Telecommunications Service. Roaming Partner Name. Text + Statement of the roaming partner name. + 0..n + Telecommunications Service + Roaming Partner Name + Text + Text. Type + + + + + + + + + BBIE + Telecommunications Service. Pay Per View. Text + Note about the pay per view + 0..1 + Telecommunications Service + Pay Per View + Text + Text. Type + + + + + + + + + BBIE + Telecommunications Service. Quantity + Information about number of calls + 0..1 + Telecommunications Service + Quantity + Quantity + Quantity. Type + 5761 + + + + + + + + + BBIE + Telecommunications Service. Telecommunications Service Call. Text + Information about tele calls + 0..1 + Telecommunications Service + Telecommunications Service Call + Text + Text. Type + CallAttempt + + + + + + + + + BBIE + Telecommunications Service. Telecommunications Service Call Code. Code + Statement of the tele call code + 0..1 + Telecommunications Service + Telecommunications Service Call Code + Code + Code. Type + CallAttempt + + + + + + + + + BBIE + Telecommunications Service. Call Base_ Amount. Amount + The amount to be payed as the base for one call + 0..1 + Telecommunications Service + Call Base + Amount + Amount + Amount. Type + + + + + + + + + BBIE + Telecommunications Service. Call Extension_ Amount. Amount + The amount to be payed for the call + 0..1 + Telecommunications Service + Call Extension + Amount + Amount + Amount. Type + 542.44 + + + + + + + + + ASBIE + Telecommunications Service. Price + The duty for the time consumption + 0..1 + Telecommunications Service + Price + Price + + + + + + + + + ASBIE + Telecommunications Service. Country + An association to Country. + 0..1 + Telecommunications Service + Country + Country + + + + + + + + + ASBIE + Telecommunications Service. Exchange Rate + Information related to tele exchange rate + 0..n + Telecommunications Service + Exchange Rate + Exchange Rate + + + + + + + + + ASBIE + Telecommunications Service. Allowance Charge + An association to Allowances and Charges that apply to the UtilityStatement as a whole. + 0..n + Telecommunications Service + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Telecommunications Service. Tax Total + An association to tax total for specific tax types/rates + 0..n + Telecommunications Service + Tax Total + Tax Total + + + + + + + + + ASBIE + Telecommunications Service. Call_ Duty. Duty + The duty for calls + 0..n + Telecommunications Service + Call + Duty + Duty + + + + + + + + + ASBIE + Telecommunications Service. Time_ Duty. Duty + The duty for the time consumption + 0..n + Telecommunications Service + Time + Duty + Duty + + + + + + + + + + + ABIE + Telecommunications Supply. Details + The class contain the detailed / Telecommunications Supply. + Telecommunications Supply + + + + + + + + + BBIE + Telecommunications Supply. Telecommunications Supply Type. Text + Specifying the type of the Telecommunications Supply. + 0..1 + Telecommunications Supply + Telecommunications Supply Type + Text + Text. Type + Itemized tele Statement + + + + + + + + + BBIE + Telecommunications Supply. Telecommunications Supply Type Code. Code + Code specifying the type of the Telecommunications Supply. + 0..1 + Telecommunications Supply + Telecommunications Supply Type Code + Code + Code. Type + TeleExtended + + + + + + + + + BBIE + Telecommunications Supply. Privacy Code. Code + Statement of the level of confidential of the UtilityStatement. + 1 + Telecommunications Supply + Privacy Code + Code + Code. Type + CompanyLevel + + + + + + + + + BBIE + Telecommunications Supply. Description. Text + Description of the Statement. + 0..1 + Telecommunications Supply + Description + Text + Text. Type + Extended conversation Statement January quarter 2008. + + + + + + + + + BBIE + Telecommunications Supply. Total_ Amount. Amount + The total amount. + 0..1 + Telecommunications Supply + Total + Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Telecommunications Supply. Telecommunications Supply Line + This class contain a tele specifikation on line level. Here you can make up unitprice /itemprice related each service. + 1..n + Telecommunications Supply + Telecommunications Supply Line + Telecommunications Supply Line + + + + + + + + + + + ABIE + Telecommunications Supply Line. Details + This class contain a tele specifikation on line level. Here you can make up unitprice /itemprice related each service. + Telecommunications Supply Line + + + + + + + + + BBIE + Telecommunications Supply Line. Identifier + Identification of the TeleStatement line. + 1 + Telecommunications Supply Line + Identifier + Identifier + Identifier. Type + 1 + + + + + + + + + BBIE + Telecommunications Supply Line. Phone Number. Text + The number witch is specified. One phonenumber can have many calls. + 1 + Telecommunications Supply Line + Phone Number + Text + Text. Type + 12345678 + + + + + + + + + BBIE + Telecommunications Supply Line. Description. Text + Description. + 0..1 + Telecommunications Supply Line + Description + Text + Text. Type + Additional informations + + + + + + + + + BBIE + Telecommunications Supply Line. Line Extension Amount. Amount + Statement of the line amount. + 0..1 + Telecommunications Supply Line + Line Extension Amount + Amount + Amount. Type + + + + + + + + + ASBIE + Telecommunications Supply Line. Exchange Rate + Information related to tele exchange rate. + 0..n + Telecommunications Supply Line + Exchange Rate + Exchange Rate + + + + + + + + + ASBIE + Telecommunications Supply Line. Allowance Charge + An association to Allowances and Charges that apply to the UtilityStatement as a whole. + 0..n + Telecommunications Supply Line + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Telecommunications Supply Line. Tax Total + An association to tax total for specific tax types/rates. + 0..n + Telecommunications Supply Line + Tax Total + Tax Total + + + + + + + + + ASBIE + Telecommunications Supply Line. Telecommunications Service + Informations about each call. + 1..n + Telecommunications Supply Line + Telecommunications Service + Telecommunications Service + + + + + + + + + + + ABIE + Temperature. Details + Information about temperature. + Temperature + + + + + + + + + BBIE + Temperature. Attribute Identifier. Identifier + An identifier for temperature. + 1 + Temperature + Attribute Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Temperature. Measure + The temperature measurement value. + 1 + Temperature + Measure + Measure + Measure. Type + + + + + + + + + BBIE + Temperature. Description. Text + A description of the temperature measurement. + 0..n + Temperature + Description + Text + Text. Type + at sea level + + + + + + + + + + + ABIE + Tender Line. Details + Reference to a line on a Tender. + Tender Line + + + + + + + + + BBIE + Tender Line. Identifier + The identifier for the Tender Line. + 0..1 + Tender Line + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Tender Line. Note. Text + Free form text applying to the Tender Line. This element may contain notes or any other similar information that is not contained explicitly in another structure. + 0..n + Tender Line + Note + Text + Text. Type + + + + + + + + + BBIE + Tender Line. Quantity + The quantity of the Item quoted + 0..1 + Tender Line + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Tender Line. Line Extension Amount. Amount + The total amount for the Tender Line including Allowance Charges but net of taxes. + 0..1 + Tender Line + Line Extension Amount + Amount + Amount. Type + + + + + + + + + BBIE + Tender Line. Total_ Tax Amount. Amount + The total tax amount for the Tender Line + 0..1 + Tender Line + Total + Tax Amount + Amount + Amount. Type + + + + + + + + + BBIE + Tender Line. Orderable_ Unit. Text + The unit that can be ordered. + 0..n + Tender Line + Orderable + Unit + Text + Text. Type + + + + + + + + + BBIE + Tender Line. Content Unit. Quantity + The quantity of the order unit of measure of the line. + 0..1 + Tender Line + Content Unit + Quantity + Quantity. Type + If order unit measure identifier is each , then content unit quantity is 1 . + + + + + + + + + BBIE + Tender Line. Order Quantity Increment. Numeric + The number of items that can set the order quantity increments. + 0..1 + Tender Line + Order Quantity Increment + Numeric + Numeric. Type + + + + + + + + + BBIE + Tender Line. Minimum_ Order Quantity. Quantity + The minimum amount of items that can be ordered. + 0..1 + Tender Line + Minimum + Order Quantity + Quantity + Quantity. Type + 10 boxes + + + + + + + + + BBIE + Tender Line. Maximum_ Order Quantity. Quantity + The maximum amount of items that can be ordered. + 0..1 + Tender Line + Maximum + Order Quantity + Quantity + Quantity. Type + 1 tonne + + + + + + + + + BBIE + Tender Line. Warranty_ Information. Text + Information regarding the warranty for the good or service. Warranty may be provided by any Party (can be described in the assiciation to Warranty Party). + 0..n + Tender Line + Warranty + Information + Text + Text. Type + Unless specified otherwise and in addition to any rights the Customer may have under statute, Dell warrants to the Customer that Dell branded Products (excluding third party products and software), will be free from defects in materials and workmanship affecting normal use for a period of one year from invoice date ( Standard Warranty ). + + + + + + + + + BBIE + Tender Line. Pack Level Code. Code + The level of packaging involved. + 0..1 + Tender Line + Pack Level Code + Code + Code. Type + Consumer Unit, Trading Unit + level 2 , Group 4 + + + + + + + + + ASBIE + Tender Line. Document Reference + An association to Document Reference + 0..n + Tender Line + Document Reference + Document Reference + + + + + + + + + ASBIE + Tender Line. Item + An association to Item + 0..1 + Tender Line + Item + Item + + + + + + + + + ASBIE + Tender Line. Offered_ Item Location Quantity. Item Location Quantity + An association to the description of properties related to locations and quantities of the Item. + 0..n + Tender Line + Offered + Item Location Quantity + Item Location Quantity + + + + + + + + + ASBIE + Tender Line. Replacement_ Related Item. Related Item + An association that describes any catalogue items that may be replacements for this Item. + 0..n + Tender Line + Replacement + Related Item + Related Item + + + + + + + + + ASBIE + Tender Line. Warranty_ Party. Party + The party responsible for the Warranty. + 0..1 + Tender Line + Warranty + Party + Party + + + + + + + + + ASBIE + Tender Line. Warranty Validity_ Period. Period + The period for which the Warranty is valid. + 0..1 + Tender Line + Warranty Validity + Period + Period + + + + + + + + + ASBIE + Tender Line. Sub_ Tender Line. Tender Line + An association to a Sub Tender Line + 0..n + Tender Line + Sub + Tender Line + Tender Line + + + + + + + + + + + ABIE + Tender Preparation. Details + Information about how to prepare a tender. + Tender Preparation + + + + + + + + + BBIE + Tender Preparation. Tender_ Envelope Identifier. Identifier + Identifier of the tender envelope. + 1 + Tender Preparation + Tender + Envelope Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Tender Preparation. Tender_ Envelope Type Code. Code + A code to specify the type of tender envelope (economical or objective criteria versus technical or subjective criteria). + 0..1 + Tender Preparation + Tender + Envelope Type Code + Code + Code. Type + + + + + + + + + BBIE + Tender Preparation. Description. Text + Textual description of the tender envelope. + 0..n + Tender Preparation + Description + Text + Text. Type + + + + + + + + + BBIE + Tender Preparation. Open Tender Identifier. Identifier + Identifier of the open tender event to which this Tender Praparation is related to. + 0..1 + Tender Preparation + Open Tender Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Tender Preparation. Procurement Project Lot. Identifier + Identifier of the Procurement project lot to which this tenderer is accepted or rejected. + 0..n + Tender Preparation + Procurement Project Lot + Identifier + Identifier. Type + + + + + + + + + ASBIE + Tender Preparation. Document_ Tender Requirement. Tender Requirement + Documents required to annex to this tender for this tendering process. + 0..n + Tender Preparation + Document + Tender Requirement + Tender Requirement + Curricula required, Experience required, .... + + + + + + + + + + + ABIE + Tender Requirement. Details + An action or statement that is imperative in a tender. + Tender Requirement + + + + + + + + + BBIE + Tender Requirement. Name + Name of the requirement. + 0..n + Tender Requirement + Name + Name + Name. Type + + + + + + + + + BBIE + Tender Requirement. Description. Text + A textual description of the requirement. + 0..n + Tender Requirement + Description + Text + Text. Type + + + + + + + + + ASBIE + Tender Requirement. Template_ Document Reference. Document Reference + An associative reference to template to fulfill the requirement. + 0..1 + Tender Requirement + Template + Document Reference + Document Reference + + + + + + + + + + + ABIE + Tender Result. Details + The result of the bid opening in the tendering process + Tender Result + + + + + + + + + BBIE + Tender Result. Tender_ Result Code. Code + The code specifiying the tender result for this tendering process. + 0..1 + Tender Result + Tender + Result Code + Code + Code. Type + + + + + + + + + BBIE + Tender Result. Description. Text + The textual description for this tender result for this tendering process. + 0..n + Tender Result + Description + Text + Text. Type + + + + + + + + + BBIE + Tender Result. Advertisement. Amount + The monetary value of the advertisement for this tendering process. + 0..1 + Tender Result + Advertisement + Amount + Amount. Type + + + + + + + + + BBIE + Tender Result. Award Date. Date + The date at which awarding has been formalized + 1 + Tender Result + Award Date + Date + Date. Type + + + + + + + + + BBIE + Tender Result. Award Time. Time + The time at which awarding has been formalized + 0..1 + Tender Result + Award Time + Time + Time. Type + + + + + + + + + BBIE + Tender Result. Received_ Tender. Quantity + The total number of tenders received in this tendering process. + 0..1 + Tender Result + Received + Tender + Quantity + Quantity. Type + + + + + + + + + BBIE + Tender Result. Lower_ Tender. Amount + The most economical tender received in this tendering process. + 0..1 + Tender Result + Lower + Tender + Amount + Amount. Type + + + + + + + + + BBIE + Tender Result. Higher_ Tender. Amount + The most expensive tender received in this tendering process. + 0..1 + Tender Result + Higher + Tender + Amount + Amount. Type + + + + + + + + + BBIE + Tender Result. Start Date. Date + The date on which this contract starts. + 0..1 + Tender Result + Start Date + Date + Date. Type + + + + + + + + + ASBIE + Tender Result. Contract + A contract that is identified in this tender result. + 0..1 + Tender Result + Contract + Contract + + + + + + + + + ASBIE + Tender Result. Winning_ Party. Party + A party that is identified as the awarded by this tender result. + 0..1 + Tender Result + Winning + Party + Party + + + + + + + + + ASBIE + Tender Result. Awarded_ Tendered Project. Tendered Project + The awarded tendered project for this tender result. + 0..1 + Tender Result + Awarded + Tendered Project + Tendered Project + + + + + + + + + ASBIE + Tender Result. Contract Formalization_ Period. Period + Information about the period of time to formalize the contract. + 0..1 + Tender Result + Contract Formalization + Period + Period + + + + + + + + + ASBIE + Tender Result. Subcontract Terms + The actual subcontract information for this tender result. + 0..n + Tender Result + Subcontract Terms + Subcontract Terms + + + + + + + + + + + ABIE + Tendered Project. Details + A set of lines of a tender refering to the same procurement project lot in the tendering process. + Tendered Project + + + + + + + + + BBIE + Tendered Project. Procurement Project Lot. Identifier + The identifier for the procurement project lot to which this Tender Line refers to. If there are no lots, this identifier should not be defined. + 0..1 + Tendered Project + Procurement Project Lot + Identifier + Identifier. Type + + + + + + + + + BBIE + Tendered Project. Variant. Identifier + Identifies the variant of this tendered project + 0..1 + Tendered Project + Variant + Identifier + Identifier. Type + + + + + + + + + BBIE + Tendered Project. Fee. Amount + The fee amount for tendered projects. + 0..1 + Tendered Project + Fee + Amount + Amount. Type + + + + + + + + + BBIE + Tendered Project. Fee_ Description. Text + Textual description of the fee amount for tendered projects. + 0..n + Tendered Project + Fee + Description + Text + Text. Type + + + + + + + + + ASBIE + Tendered Project. Tax Total + An association to the total tax amount. + 0..n + Tendered Project + Tax Total + Tax Total + + + + + + + + + ASBIE + Tendered Project. Legal_ Monetary Total. Monetary Total + An assocation to the total amounts for the tender. + 0..1 + Tendered Project + Legal + Monetary Total + Monetary Total + + + + + + + + + ASBIE + Tendered Project. Tender Line + An association to a set of Tender Lines. + 0..n + Tendered Project + Tender Line + Tender Line + + + + + + + + + ASBIE + Tendered Project. Awarding Criteria Response + An association to a set of Awarding Criteria Responses. + 0..n + Tendered Project + Awarding Criteria Response + Awarding Criteria Response + + + + + + + + + + + ABIE + Tenderer Party Qualification. Details + Information about the tenderer party qualifications + Tenderer Party Qualification + + + + + + + + + BBIE + Tenderer Party Qualification. Interested Procurement Lots Identifier. Identifier + Identifier for the procurement project lot the party is interested in. + 0..n + Tenderer Party Qualification + Interested Procurement Lots Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Tenderer Party Qualification. Main_ Qualifying Party. Qualifying Party + Main party qualifications. + 1 + Tenderer Party Qualification + Main + Qualifying Party + Qualifying Party + + + + + + + + + ASBIE + Tenderer Party Qualification. Additional_ Qualifying Party. Qualifying Party + Additional party qualifications when the bidding in a consortium. + 0..n + Tenderer Party Qualification + Additional + Qualifying Party + Qualifying Party + + + + + + + + + + + ABIE + Tenderer Qualification Request. Details + The evaluation that the Contracting Authority party requests to fulfill to the tenderers. + Tenderer Qualification Request + + + + + + + + + BBIE + Tenderer Qualification Request. Legal Form. Text + Textual description of the legal form requested for potential tenderers. + 0..n + Tenderer Qualification Request + Legal Form + Text + Text. Type + + + + + + + + + BBIE + Tenderer Qualification Request. Personal Situation. Text + Textual description of the personal situation of the economic operators in this tendering process. + 0..n + Tenderer Qualification Request + Personal Situation + Text + Text. Type + + + + + + + + + BBIE + Tenderer Qualification Request. Operating Years. Quantity + The minimum number of years that the business in this tendering business profile has been in operation. + 0..1 + Tenderer Qualification Request + Operating Years + Quantity + Quantity. Type + + + + + + + + + BBIE + Tenderer Qualification Request. Employee. Quantity + The minimum number of employees of the business in this tendering business profile. + 0..1 + Tenderer Qualification Request + Employee + Quantity + Quantity. Type + + + + + + + + + BBIE + Tenderer Qualification Request. Description. Text + Textual information stating the evaluation requirements for this tenderer. + 0..n + Tenderer Qualification Request + Description + Text + Text. Type + + + + + + + + + ASBIE + Tenderer Qualification Request. Required Business_ Classification Scheme. Classification Scheme + An association to a classification scheme for the business profile. + 0..n + Tenderer Qualification Request + Required Business + Classification Scheme + Classification Scheme + + + + + + + + + ASBIE + Tenderer Qualification Request. Technical_ Evaluation Criteria. Evaluation Criteria + Technical evaluation criteria required for an economic operator in a tendering process. + 0..n + Tenderer Qualification Request + Technical + Evaluation Criteria + Evaluation Criteria + + + + + + + + + ASBIE + Tenderer Qualification Request. Financial_ Evaluation Criteria. Evaluation Criteria + Financial evaluation criteria required for an economic operator in a tendering process. + 0..n + Tenderer Qualification Request + Financial + Evaluation Criteria + Evaluation Criteria + + + + + + + + + ASBIE + Tenderer Qualification Request. Specific_ Tenderer Requirement. Tenderer Requirement + Specific requirements that shall be met by the tenderer. + 0..n + Tenderer Qualification Request + Specific + Tenderer Requirement + Tenderer Requirement + Preregistration in a Business Registry + + + + + + + + + + + ABIE + Tenderer Requirement. Details + An action or statement imperative for an economic operator participating in a tendering process. + Tenderer Requirement + + + + + + + + + BBIE + Tenderer Requirement. Name + Name of the requirement. + 0..n + Tenderer Requirement + Name + Name + Name. Type + + + + + + + + + BBIE + Tenderer Requirement. Tenderer Requirement_ Type Code. Code + A code specifying the requirement for the tenderer. + 0..1 + Tenderer Requirement + Tenderer Requirement + Type Code + Code + Code. Type + + + + + + + + + BBIE + Tenderer Requirement. Description. Text + A textual description of the requirement. + 0..n + Tenderer Requirement + Description + Text + Text. Type + + + + + + + + + ASBIE + Tenderer Requirement. Suggested_ Evidence. Evidence + Evidence that is suggested to be used to fulfil the criteria. + 0..n + Tenderer Requirement + Suggested + Evidence + Evidence + + + + + + + + + + + ABIE + Tendering Process. Details + The process of a formal offer and response to execute work or supply goods at a stated price. + Tendering Process + + + + + + + + + BBIE + Tendering Process. Identifier + A unique identifier of the process. + 0..1 + Tendering Process + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Tendering Process. Original_ Contracting System. Identifier + Identifier for the Framework Agreement or DPS when reopening for competition. + 0..1 + Tendering Process + Original + Contracting System + Identifier + Identifier. Type + + + + + + + + + BBIE + Tendering Process. Description. Text + A textual description of the process. + 0..n + Tendering Process + Description + Text + Text. Type + + + + + + + + + BBIE + Tendering Process. Negotiation_ Description. Text + The textual description of the negotiation to be followed during the tendering process. + 0..n + Tendering Process + Negotiation + Description + Text + Text. Type + + + + + + + + + BBIE + Tendering Process. Procedure Code. Code + A code specifying the type of this tendering procedure. + 0..1 + Tendering Process + Procedure Code + Code + Code. Type + Open, Restricted, Negotiated + + + + + + + + + BBIE + Tendering Process. Urgency Code. Code + A code specifying the urgency for this tendering process. + 0..1 + Tendering Process + Urgency Code + Code + Code. Type + Urgent, Normal, Emergency + + + + + + + + + BBIE + Tendering Process. Expense Code. Code + A code specifying the type of expense for this tendering process. + 0..1 + Tendering Process + Expense Code + Code + Code. Type + Normal, Anticipated + + + + + + + + + BBIE + Tendering Process. Part Presentation Code. Code + A code specifying the type of presentation of tenders required, such as one lot, multiple lots or all the lots. + 0..1 + Tendering Process + Part Presentation Code + Code + Code. Type + One Lot, Multiple Lots, All Lots + + + + + + + + + BBIE + Tendering Process. Contracting System Code. Code + The code specifying the type of contracting system such as framework agreement or dynamic purchasing system. If not present, the procedure is individual, i.e. Not repetitive. + 0..1 + Tendering Process + Contracting System Code + Code + Code. Type + Framework Agreement, Dynamic Purchasing System + + + + + + + + + BBIE + Tendering Process. Submission Method Code. Code + A code specifying how the tenders should be submitted. + 0..1 + Tendering Process + Submission Method Code + Code + Code. Type + Manual, Electronically, etc. + + + + + + + + + BBIE + Tendering Process. Candidate Reduction_ Constraint. Indicator + An indicator that states the reduction of the number of operators during the negotiation or dialogue. + 0..1 + Tendering Process + Candidate Reduction + Constraint + Indicator + Indicator. Type + + + + + + + + + BBIE + Tendering Process. Government Agreement_ Constraint. Indicator + The indication of whether or not the project is constrained by the Government Procurement Agreement. + 0..1 + Tendering Process + Government Agreement + Constraint + Indicator + Indicator. Type + + + + + + + + + ASBIE + Tendering Process. Document Availability_ Period. Period + The period of completion (deadline) for getting the tender information documents. + 0..1 + Tendering Process + Document Availability + Period + Period + + + + + + + + + ASBIE + Tendering Process. Tender Submission Deadline_ Period. Period + The period of completion (deadline) for delivering (accepting) tenders. + 0..1 + Tendering Process + Tender Submission Deadline + Period + Period + + + + + + + + + ASBIE + Tendering Process. Invitation Submission_ Period. Period + The period of completion (deadline) for sending invitations to tender. + 0..1 + Tendering Process + Invitation Submission + Period + Period + + + + + + + + + ASBIE + Tendering Process. Participation Request Reception_ Period. Period + The period of completion (deadline) for delivering request for participation. + 0..1 + Tendering Process + Participation Request Reception + Period + Period + + + + + + + + + ASBIE + Tendering Process. Notice_ Document Reference. Document Reference + An reference to a previous notices. + 0..n + Tendering Process + Notice + Document Reference + Document Reference + + + + + + + + + ASBIE + Tendering Process. Additional_ Document Reference. Document Reference + An reference to additional relevant documents. + 0..n + Tendering Process + Additional + Document Reference + Document Reference + + + + + + + + + ASBIE + Tendering Process. Process Justification + Justification of the selection of the process. + 0..n + Tendering Process + Process Justification + Process Justification + + + + + + + + + ASBIE + Tendering Process. Economic Operator Short List + A set of objective criteria to create the short list of candidates. + 0..1 + Tendering Process + Economic Operator Short List + Economic Operator Short List + + + + + + + + + ASBIE + Tendering Process. Open Tender_ Event. Event + Tender Opening event. + 0..n + Tendering Process + Open Tender + Event + Event + + + + + + + + + ASBIE + Tendering Process. Auction Terms + The information about a terms for running an auction. + 0..1 + Tendering Process + Auction Terms + Auction Terms + + + + + + + + + ASBIE + Tendering Process. Framework Agreement + The information about a tendering framework agreement. + 0..1 + Tendering Process + Framework Agreement + Framework Agreement + + + + + + + + + + + ABIE + Tendering Terms. Details + General tendering terms for this tendering process + Tendering Terms + + + + + + + + + BBIE + Tendering Terms. Awarding Method Type Code. Code + A code specifying the awarding criteria in the tendering process, such as lowest price or the most economically advantageous tender. + 0..1 + Tendering Terms + Awarding Method Type Code + Code + Code. Type + Price, Multiple criteria + + + + + + + + + BBIE + Tendering Terms. Price Evaluation Code. Code + A code specifying the type of valoration of tenders required. + 0..1 + Tendering Terms + Price Evaluation Code + Code + Code. Type + Unit prices, global price + + + + + + + + + BBIE + Tendering Terms. Maximum Variant_ Quantity. Quantity + Maximum number of variants allowed. + 0..1 + Tendering Terms + Maximum Variant + Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Tendering Terms. Variant_ Constraint. Indicator + It is used to indicate that variants are allowed but you do not constraint the number of variants. + 0..1 + Tendering Terms + Variant + Constraint + Indicator + Indicator. Type + + + + + + + + + BBIE + Tendering Terms. Accepted Variants_ Description. Text + Textual description to specify the things for which variants are accepted. + 0..n + Tendering Terms + Accepted Variants + Description + Text + Text. Type + + + + + + + + + BBIE + Tendering Terms. Price Revision_ Formula Description. Text + Textual description of the formula to revise the prices. + 0..n + Tendering Terms + Price Revision + Formula Description + Text + Text. Type + + + + + + + + + BBIE + Tendering Terms. Funding_ Program Code. Code + Coded description of the program that funds this tendering process such as "European","National", etc. + 0..1 + Tendering Terms + Funding + Program Code + Code + Code. Type + + + + + + + + + BBIE + Tendering Terms. Funding_ Program. Text + Textual description of the program that funds this tendering process such as |EU 6th Framework Program|. + 0..n + Tendering Terms + Funding + Program + Text + Text. Type + + + + + + + + + BBIE + Tendering Terms. Maximum_ Advertisement. Amount + The maximum monetary value of the advertisement for this tendering process. + 0..1 + Tendering Terms + Maximum + Advertisement + Amount + Amount. Type + + + + + + + + + BBIE + Tendering Terms. Note. Text + Additional information. + 0..n + Tendering Terms + Note + Text + Text. Type + + + + + + + + + BBIE + Tendering Terms. Payment Frequency Code. Code + The payment frequency for this tendering process. + 0..1 + Tendering Terms + Payment Frequency Code + Code + Code. Type + + + + + + + + + BBIE + Tendering Terms. Economic Operator Registry_ URI. Identifier + Uniform Resource Identifier (URI) communication information to find electronic registry applicable to this tendering process. + 0..1 + Tendering Terms + Economic Operator Registry + URI + Identifier + Identifier. Type + Web site + + + + + + + + + BBIE + Tendering Terms. Penalty Clauses. Text + Textual description of the penalty clauses. + 0..n + Tendering Terms + Penalty Clauses + Text + Text. Type + + + + + + + + + BBIE + Tendering Terms. Required Curricula. Indicator + It is used to indicate if the curricula is required or not. + 0..1 + Tendering Terms + Required Curricula + Indicator + Indicator. Type + + + + + + + + + ASBIE + Tendering Terms. Required_ Financial Guarantee. Financial Guarantee + The Information about the bond guarantee of a tender or bid submitter to actually enter into a contract if they are the successful bidder. + 0..n + Tendering Terms + Required + Financial Guarantee + Financial Guarantee + + + + + + + + + ASBIE + Tendering Terms. Procurement Legislation_ Document Reference. Document Reference + References to information to find procurement legislation applicable to this tendering process. + 0..1 + Tendering Terms + Procurement Legislation + Document Reference + Document Reference + + + + + + + + + ASBIE + Tendering Terms. Fiscal Legislation_ Document Reference. Document Reference + References to information to find fiscal legislation applicable to this tendering process. + 0..1 + Tendering Terms + Fiscal Legislation + Document Reference + Document Reference + + + + + + + + + ASBIE + Tendering Terms. Environmental Legislation_ Document Reference. Document Reference + References to information to find environmental legislation applicable to this tendering process. + 0..1 + Tendering Terms + Environmental Legislation + Document Reference + Document Reference + + + + + + + + + ASBIE + Tendering Terms. Employment Legislation_ Document Reference. Document Reference + References to information to find employment legislation applicable to this tendering process. + 0..1 + Tendering Terms + Employment Legislation + Document Reference + Document Reference + + + + + + + + + ASBIE + Tendering Terms. Contractual_ Document Reference. Document Reference + References to documents that will be part of the future contract. + 0..n + Tendering Terms + Contractual + Document Reference + Document Reference + + + + + + + + + ASBIE + Tendering Terms. Call For Tender_ Document Reference. Document Reference + References to the call for tender document. + 0..1 + Tendering Terms + Call For Tender + Document Reference + Document Reference + + + + + + + + + ASBIE + Tendering Terms. Warranty Validity_ Period. Period + Association with a period to indicate the guarantee for the work, service or goods. + 0..1 + Tendering Terms + Warranty Validity + Period + Period + + + + + + + + + ASBIE + Tendering Terms. Payment Terms + Payment terms for this tendering process. + 0..n + Tendering Terms + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Tendering Terms. Tenderer Qualification Request + Required qualification for a tenderer in this tendering process. + 0..1 + Tendering Terms + Tenderer Qualification Request + Tenderer Qualification Request + + + + + + + + + ASBIE + Tendering Terms. Allowed_ Subcontract Terms. Subcontract Terms + Allowed subcontract terms for this tendering process. + 0..n + Tendering Terms + Allowed + Subcontract Terms + Subcontract Terms + + + + + + + + + ASBIE + Tendering Terms. Tender Preparation + Requirements to prepare a tender for this tendering process. + 0..n + Tendering Terms + Tender Preparation + Tender Preparation + Curricula required, Experience required, .... + + + + + + + + + ASBIE + Tendering Terms. Contract Execution Requirement + Specified requirements for the execution of the contract when this tendering process is awarded. + 0..n + Tendering Terms + Contract Execution Requirement + Contract Execution Requirement + + + + + + + + + ASBIE + Tendering Terms. Awarding Terms + Awarding terms for awarding this project in this tendering process. + 0..1 + Tendering Terms + Awarding Terms + Awarding Terms + + + + + + + + + ASBIE + Tendering Terms. Additional Information_ Party. Party + A party that has additional information about this tendering process. + 0..1 + Tendering Terms + Additional Information + Party + Party + + + + + + + + + ASBIE + Tendering Terms. Document Provider_ Party. Party + A party that has the contract documents for this tendering process. + 0..1 + Tendering Terms + Document Provider + Party + Party + + + + + + + + + ASBIE + Tendering Terms. Tender Recipient_ Party. Party + A party to whom tenderers should present their tenders. + 0..1 + Tendering Terms + Tender Recipient + Party + Party + + + + + + + + + ASBIE + Tendering Terms. Contract Responsible_ Party. Party + A party responsible for the execution of the contract. + 0..1 + Tendering Terms + Contract Responsible + Party + Party + + + + + + + + + ASBIE + Tendering Terms. Tender Evaluation_ Party. Party + A party responsible for the evaluation of the received tenders in the contracting authority. + 0..n + Tendering Terms + Tender Evaluation + Party + Party + + + + + + + + + ASBIE + Tendering Terms. Tender Validity_ Period. Period + The period of completion (deadline) for the validity of tenders. + 0..1 + Tendering Terms + Tender Validity + Period + Period + + + + + + + + + ASBIE + Tendering Terms. Contract Acceptance_ Period. Period + The period of time the Contracting Authority has to accept the contract. + 0..1 + Tendering Terms + Contract Acceptance + Period + Period + + + + + + + + + ASBIE + Tendering Terms. Appeal Terms + Information about the terms to present an appeal. + 0..1 + Tendering Terms + Appeal Terms + Appeal Terms + + + + + + + + + ASBIE + Tendering Terms. Language + Default languages specified for this tendering process. + 0..n + Tendering Terms + Language + Language + + + + + + + + + ASBIE + Tendering Terms. Budget Account Line + Budget Account lines for this tendering process + 0..n + Tendering Terms + Budget Account Line + Budget Account Line + + + + + + + + + + + ABIE + Trade Financing. Details + Information about the Financing instrument supporting this Trade or part of it (see instalments). + Trade Financing + + + + + + + + + BBIE + Trade Financing. Identifier + An identifier for the Trade Financing. + 0..1 + Trade Financing + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Trade Financing. Financing Instrument Code. Code + The Financing Instrument adopted into this Trade + 0..1 + Trade Financing + Financing Instrument Code + Code + Code. Type + Factoring , Invoice Financing , Pre-shipment Financing , Letter of Credit , Irrevocable Letter of Credit . + + + + + + + + + BBIE + Trade Financing. Clause Code. Code + Contract clauses, expressed as code. + 0..n + Trade Financing + Clause Code + Code + Code. Type + + + + + + + + + BBIE + Trade Financing. Clause. Text + Contract clauses, expressed as text. + 0..n + Trade Financing + Clause + Text + Text. Type + + + + + + + + + ASBIE + Trade Financing. Contract_ Document Reference. Document Reference + An associative reference to Contract Document. + 0..1 + Trade Financing + Contract + Document Reference + Document Reference + + + + + + + + + ASBIE + Trade Financing. Document Reference + An association to Document Reference + 0..n + Trade Financing + Document Reference + Document Reference + + + + + + + + + ASBIE + Trade Financing. Financing_ Party. Party + An association to a Financing Party (could be a Bank or other enabled Party). + 1 + Trade Financing + Financing + Party + Party + + + + + + + + + ASBIE + Trade Financing. Financing_ Financial Account. Financial Account + An association to an Internal bank account used by the Bank or its First Agent to manage the line of credit granted to Financing Requestor + 0..1 + Trade Financing + Financing + Financial Account + Financial Account + + + + + + + + + + + ABIE + Trading Terms. Details + Information about the terms of a trade agreement. + Trading Terms + + + + + + + + + BBIE + Trading Terms. Information. Text + The terms in text. + 0..n + Trading Terms + Information + Text + Text. Type + Unless credit terms have been expressly agreed by Dell, payment for the products or services shall be made in full before physical delivery of products or services. Customer shall pay for all shipping and handling charges. + + + + + + + + + BBIE + Trading Terms. Reference. Text + A reference to the terms. + 0..1 + Trading Terms + Reference + Text + Text. Type + http://www1.ap.dell.com/content/topics/topic.aspx/ap/policy/en/au/sales_terms_au?c=au&l=en&s=gen + + + + + + + + + ASBIE + Trading Terms. Applicable_ Address. Address + An association to the address at which the trading terms apply. + 0..1 + Trading Terms + Applicable + Address + Address + + + + + + + + + + + ABIE + Transaction Conditions. Details + Information about purchasing, sales, or payment conditions. + Transaction Conditions + Payment Conditions, Sales Conditions + + + + + + + + + BBIE + Transaction Conditions. Identifier + Identifies conditions of the transaction, typically Purchase/Sales Conditions. + 0..1 + Transaction Conditions + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Transaction Conditions. Action Code. Code + An action relating to sales or payment conditions, expressed as a code. + 0..1 + Transaction Conditions + Action Code + Code + Code. Type + + + + + + + + + BBIE + Transaction Conditions. Description. Text + The description of the transaction conditions. + 0..n + Transaction Conditions + Description + Text + Text. Type + + + + + + + + + ASBIE + Transaction Conditions. Document Reference + An association to Document Reference. + 0..n + Transaction Conditions + Document Reference + Document Reference + + + + + + + + + + + ABIE + Transport Equipment. Details + Information about Transport Equipment; a piece of equipment used to transport goods. + Transport Equipment + Shipping Container, Sea Container, Rail Wagon, Pallet, Trailer, Unit Load Device, ULD + + + + + + + + + BBIE + Transport Equipment. Identifier + Identifies the transport equipment. + 0..1 + Transport Equipment + Identifier + Identifier + Identifier. Type + OCLU 1234567 + + + + + + + + + BBIE + Transport Equipment. Referenced_ Consignment Identifier. Identifier + An identifier for the referenced consignment. + 0..1 + Transport Equipment + Referenced + Consignment Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Transport Equipment. Transport Equipment Type Code. Code + Identifies the type of the transport equipment. + 0..1 + Transport Equipment + Transport Equipment Type Code + Code + Transport Equipment Type_ Code. Type + + + + + + + + + BBIE + Transport Equipment. Provider Type Code. Code + Identifies the type of provider of the transport equipment. + 0..1 + Transport Equipment + Provider Type Code + Code + Code. Type + + + + + + + + + BBIE + Transport Equipment. Owner Type Code. Code + Identifies the type of owner of a piece of transport equipment. + 0..1 + Transport Equipment + Owner Type Code + Code + Code. Type + + + + + + + + + BBIE + Transport Equipment. Size Type Code. Code + The size and type of a piece of transport equipment, expressed as a code. When the transport equipment is a shipping container, it is recommended to use ContainerSizeTypeCode for validation. + 0..1 + Transport Equipment + Size Type Code + Code + Code. Type + Container Size Type Code + + + + + + + + + BBIE + Transport Equipment. Disposition Code. Code + The current disposition of the transport equipment, expressed as a code. + 0..1 + Transport Equipment + Disposition Code + Code + Code. Type + Status + + + + + + + + + BBIE + Transport Equipment. Fullness Indication Code. Code + A code indicating whether a piece of transport equipment is full, partially full, or empty. + 0..1 + Transport Equipment + Fullness Indication Code + Code + Code. Type + + + + + + + + + BBIE + Transport Equipment. Refrigeration On_ Indicator. Indicator + Indicates whether the transport equipment s refrigeration is on (true) or off (false). + 0..1 + Transport Equipment + Refrigeration On + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Transport Equipment. Information. Text + Additional information about the transport equipment. + 0..1 + Transport Equipment + Information + Text + Text. Type + + + + + + + + + BBIE + Transport Equipment. Returnability_ Indicator. Indicator + Indicates whether a particular item of transport equipment is returnable. + 0..1 + Transport Equipment + Returnability + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Transport Equipment. Legal Status_ Indicator. Indicator + Legal status of the transport equipment with respect to the Container Convention code. + 0..1 + Transport Equipment + Legal Status + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Transport Equipment. Air Flow Percent. Percent + The percent of the airflow within the transport equipment. + 0..1 + Transport Equipment + Air Flow Percent + Percent + Percent. Type + + + + + + + + + BBIE + Transport Equipment. Humidity Percent. Percent + The percent humidity within the transport equipment. + 0..1 + Transport Equipment + Humidity Percent + Percent + Percent. Type + + + + + + + + + BBIE + Transport Equipment. Animal Food_ Approved Indicator. Indicator + The indication of whether or not the transport equipment is approved for animal food. + 0..1 + Transport Equipment + Animal Food + Approved Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Transport Equipment. Human Food_ Approved Indicator. Indicator + The indication of whether or not the transport equipment is approved for human food. + 0..1 + Transport Equipment + Human Food + Approved Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Transport Equipment. Dangerous Goods_ Approved Indicator. Indicator + The indication that the transport equipment is approved for dangerous goods. + 0..1 + Transport Equipment + Dangerous Goods + Approved Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Transport Equipment. Refrigerated_ Indicator. Indicator + The indication that the transport equipment is refrigerated. + 0..1 + Transport Equipment + Refrigerated + Indicator + Indicator + Indicator. Type + + + + + + + + + BBIE + Transport Equipment. Characteristics. Text + Characteristics of the transport equipment expresssed as text. + 0..1 + Transport Equipment + Characteristics + Text + Text. Type + + + + + + + + + BBIE + Transport Equipment. Damage_ Remarks. Text + Damage remarks expressed as text. + 0..1 + Transport Equipment + Damage + Remarks + Text + Text. Type + + + + + + + + + BBIE + Transport Equipment. Description. Text + Description of the transprort equipment expressed as text. + 0..1 + Transport Equipment + Description + Text + Text. Type + + + + + + + + + BBIE + Transport Equipment. Special_ Transport Requirments. Text + Special transport requirements expressed as text. + 0..1 + Transport Equipment + Special + Transport Requirments + Text + Text. Type + + + + + + + + + BBIE + Transport Equipment. Gross_ Weight. Measure + The measure of the gross weight for this transport equipment. + 0..1 + Transport Equipment + Gross + Weight + Measure + Measure. Type + + + + + + + + + BBIE + Transport Equipment. Gross_ Volume. Measure + The measure of the gross volume for this transport equipment. + 0..1 + Transport Equipment + Gross + Volume + Measure + Measure. Type + + + + + + + + + BBIE + Transport Equipment. Tare_ Weight. Measure + The measure of the tare weight for this transport equipment. + 0..1 + Transport Equipment + Tare + Weight + Measure + Measure. Type + + + + + + + + + BBIE + Transport Equipment. Tracking Device Code. Code + The code specifiying the tracking device for this tranpsort equipment. + 0..1 + Transport Equipment + Tracking Device Code + Code + Code. Type + + + + + + + + + BBIE + Transport Equipment. Power. Indicator + Indicates whether a Transport Equipment has power supply. + 0..1 + Transport Equipment + Power + Indicator + Indicator. Type + + + + + + + + + BBIE + Transport Equipment. Trace_ Identifier. Identifier + An identifier used for tracing the tranpsort equipment such as the EPC number used in RFID. + 0..1 + Transport Equipment + Trace + Identifier + Identifier + Identifier. Type + + + + + + + + + ASBIE + Transport Equipment. Measurement_ Dimension. Dimension + An association to Dimension. + 0..n + Transport Equipment + Measurement + Dimension + Dimension + + + + + + + + + ASBIE + Transport Equipment. Transport Equipment Seal + An association to Transport Equipment Seal. + 0..n + Transport Equipment + Transport Equipment Seal + Transport Equipment Seal + + + + + + + + + ASBIE + Transport Equipment. Minimum_ Temperature. Temperature + The minimum required operating temperature for the container (reefer). + 0..1 + Transport Equipment + Minimum + Temperature + Temperature + + + + + + + + + ASBIE + Transport Equipment. Maximum_ Temperature. Temperature + The maximum required operating temperature for the container (reefer). + 0..1 + Transport Equipment + Maximum + Temperature + Temperature + + + + + + + + + ASBIE + Transport Equipment. Provider_ Party. Party + The party that provides the transport equipment. + 0..1 + Transport Equipment + Provider + Party + Party + + + + + + + + + ASBIE + Transport Equipment. Loading Proof_ Party. Party + The authorized party responsible for certifying that the goods were loaded into the transport equipment. + 0..1 + Transport Equipment + Loading Proof + Party + Party + + + + + + + + + ASBIE + Transport Equipment. Supplier Party + The supplier party associated to this transport equipment. + 0..1 + Transport Equipment + Supplier Party + Supplier Party + + + + + + + + + ASBIE + Transport Equipment. Owner_ Party. Party + The owner party associated to this transport equipment. + 0..1 + Transport Equipment + Owner + Party + Party + + + + + + + + + ASBIE + Transport Equipment. Operating_ Party. Party + The operating party associated to this transport equipment. + 0..1 + Transport Equipment + Operating + Party + Party + + + + + + + + + ASBIE + Transport Equipment. Loading_ Location. Location + Identifies the location where the goods are loaded into the transport equipment. + 0..1 + Transport Equipment + Loading + Location + Location + + + + + + + + + ASBIE + Transport Equipment. Unloading_ Location. Location + The undloading location associated to this transprt equipment. + 0..1 + Transport Equipment + Unloading + Location + Location + + + + + + + + + ASBIE + Transport Equipment. Storage_ Location. Location + The storage location associated to this transport equipment. + 0..1 + Transport Equipment + Storage + Location + Location + + + + + + + + + ASBIE + Transport Equipment. Positioning_ Transport Event. Transport Event + The prositioning transport event associated to this transport equipment. + 0..n + Transport Equipment + Positioning + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Equipment. Quarantine_ Transport Event. Transport Event + The quarantine transport event associated to this transport equipment. + 0..n + Transport Equipment + Quarantine + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Equipment. Delivery_ Transport Event. Transport Event + The delivery transport event associated to this transport equipment. + 0..n + Transport Equipment + Delivery + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Equipment. Pickup_ Transport Event. Transport Event + The pickup transport event associated to this transport equipment. + 0..n + Transport Equipment + Pickup + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Equipment. Handling_ Transport Event. Transport Event + The handling transport event associated to this transport equipment. + 0..n + Transport Equipment + Handling + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Equipment. Loading_ Transport Event. Transport Event + The loading transport event associated to this transport equipment. + 0..n + Transport Equipment + Loading + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Equipment. Transport Event + The transport event associated to this transport equipment. + 0..n + Transport Equipment + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Equipment. Applicable_ Transport Means. Transport Means + The applicable transport means associated to this transport equipment. + 0..1 + Transport Equipment + Applicable + Transport Means + Transport Means + + + + + + + + + ASBIE + Transport Equipment. Haulage_ Trading Terms. Trading Terms + The haulage trading terms associated to this transprort equipment. + 0..n + Transport Equipment + Haulage + Trading Terms + Trading Terms + + + + + + + + + ASBIE + Transport Equipment. Hazardous Goods Transit + The hazardous goods transit associated to this transport equipment. + 0..n + Transport Equipment + Hazardous Goods Transit + Hazardous Goods Transit + + + + + + + + + ASBIE + Transport Equipment. Packaged_ Transport Handling Unit. Transport Handling Unit + The packing transport handling unit associated to this transport equipment. + 0..n + Transport Equipment + Packaged + Transport Handling Unit + Transport Handling Unit + + + + + + + + + ASBIE + Transport Equipment. Service_ Allowance Charge. Allowance Charge + The service allowance charge associated to this transport equipment. + 0..n + Transport Equipment + Service + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Transport Equipment. Freight_ Allowance Charge. Allowance Charge + The freight allowance charge associated to this transport equipment. + 0..n + Transport Equipment + Freight + Allowance Charge + Allowance Charge + + + + + + + + + ASBIE + Transport Equipment. Attached_ Transport Equipment. Transport Equipment + The attached transport equipment associated to this transport equipment. + 0..n + Transport Equipment + Attached + Transport Equipment + Transport Equipment + + + + + + + + + ASBIE + Transport Equipment. Goods Item + An association to Goods Item. + 0..n + Transport Equipment + Goods Item + Goods Item + + + + + + + + + ASBIE + Transport Equipment. Delivery + An association to Delivery. + 0..1 + Transport Equipment + Delivery + Delivery + + + + + + + + + ASBIE + Transport Equipment. Contained In_ Transport Equipment. Transport Equipment + A transport equipment may contain other transport equipments. + 0..n + Transport Equipment + Contained In + Transport Equipment + Transport Equipment + e.g. pallets inside containers + + + + + + + + + ASBIE + Transport Equipment. Pickup + An association to Pickup. + 0..1 + Transport Equipment + Pickup + Pickup + + + + + + + + + ASBIE + Transport Equipment. Despatch + An association to Despatch. + 0..1 + Transport Equipment + Despatch + Despatch + + + + + + + + + ASBIE + Transport Equipment. Shipment_ Document Reference. Document Reference + A reference to any shipment documents this transport equipment is associated with. + 0..1 + Transport Equipment + Shipment + Document Reference + Document Reference + + + + + + + + + + + ABIE + Transport Equipment Seal. Details + Information about a transport equipment seal (a security device attached to the doors of a shipping container). + Transport Equipment Seal + Container Seal + + + + + + + + + BBIE + Transport Equipment Seal. Identifier + Identifies the seal. + 1 + Transport Equipment Seal + Identifier + Identifier + Identifier. Type + ACS1234 + + + + + + + + + BBIE + Transport Equipment Seal. Seal Issuer Type Code. Code + The type of party that issues and is responsible for a seal, expressed as a code. + 0..1 + Transport Equipment Seal + Seal Issuer Type Code + Code + Code. Type + + + + + + + + + BBIE + Transport Equipment Seal. Condition. Text + Information about the condition of a seal. + 0..1 + Transport Equipment Seal + Condition + Text + Text. Type + + + + + + + + + BBIE + Transport Equipment Seal. Seal Status Code. Code + The status of a seal, expressed as a code. + 0..1 + Transport Equipment Seal + Seal Status Code + Code + Code. Type + + + + + + + + + BBIE + Transport Equipment Seal. Sealing Party Type. Text + Textual description of the role of a sealing party. + 0..1 + Transport Equipment Seal + Sealing Party Type + Text + Text. Type + Sealing Party + + + + + + + + + + + ABIE + Transport Event. Details + A significant occurrence or happening related to the transportation of goods. + Transport Event + + + + + + + + + BBIE + Transport Event. Identification. Identifier + An identifier for the event. + 0..1 + Transport Event + Identification + Identifier + Identifier. Type + + + + + + + + + BBIE + Transport Event. Occurrence Date. Date + The date of an occurrence of the event. + 0..1 + Transport Event + Occurrence Date + Date + Date. Type + + + + + + + + + BBIE + Transport Event. Occurrence Time. Time + The time of an occurrence of the event. + 0..1 + Transport Event + Occurrence Time + Time + Time. Type + + + + + + + + + BBIE + Transport Event. Transport Event Type Code. Code + A code specifying the type of event. + 0..1 + Transport Event + Transport Event Type Code + Code + Code. Type + + + + + + + + + BBIE + Transport Event. Description. Text + A textual description of the event. + 0..1 + Transport Event + Description + Text + Text. Type + + + + + + + + + BBIE + Transport Event. Completion_ Indicator. Indicator + Indicates if this event is completed. + 0..1 + Transport Event + Completion + Indicator + Indicator + Indicator. Type + + + + + + + + + ASBIE + Transport Event. Reported_ Shipment. Shipment + Information about the separately identifiable collection of goods items (available to be) transported from one consignor to one consignee via one or more modes of transport. + 0..1 + Transport Event + Reported + Shipment + Shipment + + + + + + + + + ASBIE + Transport Event. Current_ Status. Status + The status of the event. + 1..n + Transport Event + Current + Status + Status + + + + + + + + + ASBIE + Transport Event. Contact + Any contacts for the event. + 0..n + Transport Event + Contact + Contact + + + + + + + + + ASBIE + Transport Event. Location + + 0..1 + Transport Event + Unqualified + Location + Location + + + + + + + + + + + ABIE + Transport Execution Terms. Details + Information about terms related to the Transport Execution Plan + Transport Execution Terms + + + + + + + + + BBIE + Transport Execution Terms. Transport User_ Special Terms. Text + Special terms from the Transport User + 0..n + Transport Execution Terms + Transport User + Special Terms + Text + Text. Type + + + + + + + + + BBIE + Transport Execution Terms. Transport Service Provider_ Special Terms. Text + Special terms from the Transport Service Provider + 0..n + Transport Execution Terms + Transport Service Provider + Special Terms + Text + Text. Type + + + + + + + + + BBIE + Transport Execution Terms. Change Conditions. Text + Conditions related to the ability to change the terms for the Transport Execution Plan + 0..n + Transport Execution Terms + Change Conditions + Text + Text. Type + + + + + + + + + ASBIE + Transport Execution Terms. Payment Terms + An association to Payment Terms. + 1 + Transport Execution Terms + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Transport Execution Terms. Delivery Terms + Delivery Terms related to the transport service. For example Incoterms. + 0..n + Transport Execution Terms + Delivery Terms + Delivery Terms + + + + + + + + + ASBIE + Transport Execution Terms. Bonus_ Payment Terms. Payment Terms + Terms related to bonuses which may apply. + 0..1 + Transport Execution Terms + Bonus + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Transport Execution Terms. Commission_ Payment Terms. Payment Terms + Payment Terms related to commission that may apply in the Transport Execution Plan + 0..1 + Transport Execution Terms + Commission + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Transport Execution Terms. Penalty_ Payment Terms. Payment Terms + Terms related to penalties which may apply + 0..1 + Transport Execution Terms + Penalty + Payment Terms + Payment Terms + + + + + + + + + ASBIE + Transport Execution Terms. Environmental Emission + Environmental impact or footprint of this transport service. + 0..n + Transport Execution Terms + Environmental Emission + Environmental Emission + + + + + + + + + ASBIE + Transport Execution Terms. Notification Requirement + Notification Requirements related to the transport service. For example that the Transport User should be notified when goods ready for pickup. + 0..n + Transport Execution Terms + Notification Requirement + Notification Requirement + + + + + + + + + + + ABIE + Transport Handling Unit. Details + A uniquely identifiable physical unit consisting of one or more packages (not necessarily containing the same articles) for enabling physical handling during the transport process. + Transport Handling Unit + Logistics Unit, Handling Unit, THU + + + + + + + + + BBIE + Transport Handling Unit. Identifier + Identifies the transport handling unit. + 0..1 + Transport Handling Unit + Identifier + Identifier + Identifier. Type + + + + + + + + + BBIE + Transport Handling Unit. Transport Handling Unit Type Code. Code + The type of transport handling unit, expressed as a code. + 0..1 + Transport Handling Unit + Transport Handling Unit Type Code + Code + Code. Type + + + + + + + + + BBIE + Transport Handling Unit. Handling Code. Code + The handling required for a shipment, expressed as a code. + 0..1 + Transport Handling Unit + Handling Code + Code + Code. Type + Special Handling + + + + + + + + + BBIE + Transport Handling Unit. Handling_ Instructions. Text + Free-form text describing handling instructions for a shipment. + 0..1 + Transport Handling Unit + Handling + Instructions + Text + Text. Type + + + + + + + + + BBIE + Transport Handling Unit. Hazardous Risk_ Indicator. Indicator + Indicates whether the shipment contains hazardous materials. + 0..1 + Transport Handling Unit + Hazardous Risk + Indicator + Indicator + Indicator. Type + Default is negative + + + + + + + + + BBIE + Transport Handling Unit. Total_ Goods Item Quantity. Quantity + The total number of goods items in the transport handling unit. + 0..1 + Transport Handling Unit + Total + Goods Item Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Transport Handling Unit. Total_ Package Quantity. Quantity + The total number of packages in the transport handling unit. + 0..1 + Transport Handling Unit + Total + Package Quantity + Quantity + Quantity. Type + + + + + + + + + BBIE + Transport Handling Unit. Damage_ Remarks. Text + Description of a type of damage. + 0..n + Transport Handling Unit + Damage + Remarks + Text + Text. Type + + + + + + + + + BBIE + Transport Handling Unit. Shipping_ Marks. Text + Free-form description of the marks and numbers on a transport unit or package. + 0..n + Transport Handling Unit + Shipping + Marks + Text + Text. Type + Marks and Numbers, Shipping Marks + + + + + + + + + ASBIE + Transport Handling Unit. Handling Unit_ Despatch Line. Despatch Line + An association to Handling Unit Despatch Line. + 0..n + Transport Handling Unit + Handling Unit + Despatch Line + Despatch Line + + + + + + + + + ASBIE + Transport Handling Unit. Actual_ Package. Package + An association to Actual Package. + 0..n + Transport Handling Unit + Actual + Package + Package + + + + + + + + + ASBIE + Transport Handling Unit. Received Handling Unit_ Receipt Line. Receipt Line + An association to Receipt Line. + 0..n + Transport Handling Unit + Received Handling Unit + Receipt Line + Receipt Line + + + + + + + + + ASBIE + Transport Handling Unit. Transport Equipment + An association to Transport Equipment. + 0..n + Transport Handling Unit + Transport Equipment + Transport Equipment + + + + + + + + + ASBIE + Transport Handling Unit. Transport Means + An association to Transport Means carrying this Transport Handling Unit. + 0..n + Transport Handling Unit + Transport Means + Transport Means + + + + + + + + + ASBIE + Transport Handling Unit. Hazardous Goods Transit + An association to information about the transportation of hazardous goods. + 0..n + Transport Handling Unit + Hazardous Goods Transit + Hazardous Goods Transit + + + + + + + + + ASBIE + Transport Handling Unit. Measurement_ Dimension. Dimension + An association to Dimension. + 0..n + Transport Handling Unit + Measurement + Dimension + Dimension + + + + + + + + + ASBIE + Transport Handling Unit. Minimum_ Temperature. Temperature + The minimum required operating temperature. + 0..1 + Transport Handling Unit + Minimum + Temperature + Temperature + + + + + + + + + ASBIE + Transport Handling Unit. Maximum_ Temperature. Temperature + The maximum required operating temperature. + 0..1 + Transport Handling Unit + Maximum + Temperature + Temperature + + + + + + + + + ASBIE + Transport Handling Unit. Goods Item + The contained goods item associated to this transport handlng unit. + 0..n + Transport Handling Unit + Goods Item + Goods Item + + + + + + + + + ASBIE + Transport Handling Unit. Floor Space Measurement_ Dimension. Dimension + The floor space measurement dimension associated to this transport handling unit. + 0..1 + Transport Handling Unit + Floor Space Measurement + Dimension + Dimension + + + + + + + + + ASBIE + Transport Handling Unit. Pallet Space Measurement_ Dimension. Dimension + The pallet space measurement dimension associated to this transport handling unit. + 0..1 + Transport Handling Unit + Pallet Space Measurement + Dimension + Dimension + + + + + + + + + ASBIE + Transport Handling Unit. Shipment_ Document Reference. Document Reference + A reference to any shipment documents this transport handling unit is associated with. + 0..n + Transport Handling Unit + Shipment + Document Reference + Document Reference + + + + + + + + + ASBIE + Transport Handling Unit. Status + The status of a Transport Handling Unit. + 0..n + Transport Handling Unit + Status + Status + + + + + + + + + + + ABIE + Transport Location. Details + A location specifically used in transport. + Transport Location + + + + + + + + + ASBIE + Transport Location. Planned Departure_ Period. Period + The planned departure from this transport location. During the communication of the Transport Execution Plan this may be revised. + 0..1 + Transport Location + Planned Departure + Period + Period + + + + + + + + + ASBIE + Transport Location. Planned Arrival_ Period. Period + The planned arrival at this transport location. During the communication of the Transport Execution Plan this may be revised. + 0..1 + Transport Location + Planned Arrival + Period + Period + + + + + + + + + ASBIE + Transport Location. Estimated Departure_ Period. Period + An estimate from the Transport Service Provider for when the transport will depart from this transport location. + 0..1 + Transport Location + Estimated Departure + Period + Period + + + + + + + + + ASBIE + Transport Location. Estimated Arrival_ Period. Period + An estimate from the Transport Service Provider for when the transport will arrive at this transport location. + 0..1 + Transport Location + Estimated Arrival + Period + Period + + + + + + + + + ASBIE + Transport Location. Actual Departure_ Transport Event. Transport Event + When the departure actually took place from this transport location. + 0..1 + Transport Location + Actual Departure + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Location. Transport Event + When the arrival actually took place at this transport location. + 0..1 + Transport Location + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Location. Location + Information about a location. + 1 + Transport Location + Location + Location + + + + + + + + + + + ABIE + Transport Means. Details + The particular vehicle used for the transport of goods or persons. + Transport Means + Conveyance + + + + + + + + + BBIE + Transport Means. Journey Identifier. Identifier + An identifier assigned to a regularly scheduled service of a means of transport. + 0..1 + Transport Means + Journey Identifier + Identifier + Identifier. Type + Voyage Number, Scheduled Conveyance Identifier (WCO ID 205), Flight Number + + + + + + + + + BBIE + Transport Means. Registration_ Nationality Identifier. Identifier + Formal identification of the country in which a means of transport is registered. + 0..1 + Transport Means + Registration + Nationality Identifier + Identifier + Identifier. Type + Nationality of Means of Transport (WCO 175, 178 and 179) + LIB + + + + + + + + + BBIE + Transport Means. Registration_ Nationality. Text + Name of the country in which a means of transport is registered. + 0..n + Transport Means + Registration + Nationality + Text + Text. Type + Flag of Vessel, Nationality of Ship + Liberia + + + + + + + + + BBIE + Transport Means. Direction Code. Code + The direction of the transport means. + 0..1 + Transport Means + Direction Code + Code + Code. Type + Transit Direction + North , East + + + + + + + + + BBIE + Transport Means. Transport Means Type Code. Code + A code indicating what kind of transport means this is. E.g. Vessel, Truck, etc. + 0..1 + Transport Means + Transport Means Type Code + Code + Code. Type + + + + + + + + + BBIE + Transport Means. Trade Service Code. Code + Information showing the regular service provided by that carrier. + 0..1 + Transport Means + Trade Service Code + Code + Code. Type + + + + + + + + + ASBIE + Transport Means. Stowage + Association to a location on board a means of transport where specified goods or transport equipment have been or are to be stowed. + 0..1 + Transport Means + Stowage + Stowage + + + + + + + + + ASBIE + Transport Means. Air Transport + Association to identify an aircraft. + 0..1 + Transport Means + Air Transport + Air Transport + + + + + + + + + ASBIE + Transport Means. Road Transport + Association to identify a road vehicle. + 0..1 + Transport Means + Road Transport + Road Transport + + + + + + + + + ASBIE + Transport Means. Rail Transport + Association to identify a train. + 0..1 + Transport Means + Rail Transport + Rail Transport + + + + + + + + + ASBIE + Transport Means. Maritime Transport + Association to identify a ship. + 0..1 + Transport Means + Maritime Transport + Maritime Transport + + + + + + + + + ASBIE + Transport Means. Owner_ Party. Party + Association to the party owning the means of transport. + 0..1 + Transport Means + Owner + Party + Party + + + + + + + + + ASBIE + Transport Means. Operator_ Party. Party + The operator(s) of the Transport Means. + 0..n + Transport Means + Operator + Party + Party + + + + + + + + + + + ABIE + Transport Schedule. Details + to be done + Transport Schedule + + + + + + + + + BBIE + Transport Schedule. Sequence Number. Identifier + A sequence number to differentiate the transport schedule statuses. + 1 + Transport Schedule + Sequence Number + Identifier + Identifier. Type + + + + + + + + + BBIE + Transport Schedule. Reference Date. Date + The reference date for the transport schedule status. + 1 + Transport Schedule + Reference Date + Date + Date. Type + + + + + + + + + BBIE + Transport Schedule. Reference Time. Time + The reference time for the transport schedule status. + 1 + Transport Schedule + Reference Time + Time + Time. Type + + + + + + + + + BBIE + Transport Schedule. Reliability Percent. Percent + Indicates the reliability of the transport schedule status. + 0..1 + Transport Schedule + Reliability Percent + Percent + Percent. Type + + + + + + + + + BBIE + Transport Schedule. Remarks. Text + Textual remarks related to the transport schedule status. + 0..n + Transport Schedule + Remarks + Text + Text. Type + + + + + + + + + ASBIE + Transport Schedule. Status_ Location. Location + The location where the event leading to a status is read. + 1 + Transport Schedule + Status + Location + Location + + + + + + + + + ASBIE + Transport Schedule. Estimated Arrival_ Period. Period + Specifies the estimated arrival at a location. + 0..1 + Transport Schedule + Estimated Arrival + Period + Period + + + + + + + + + ASBIE + Transport Schedule. Estimated Departure_ Period. Period + Specifies the estimated departure from a location. + 0..1 + Transport Schedule + Estimated Departure + Period + Period + + + + + + + + + ASBIE + Transport Schedule. Actual Arrival_ Transport Event. Transport Event + Describes the actual arrival at a location. + 0..1 + Transport Schedule + Actual Arrival + Transport Event + Transport Event + + + + + + + + + ASBIE + Transport Schedule. Actual Departure_ Transport Event. Transport Event + Describes the actual departure from a location. + 0..1 + Transport Schedule + Actual Departure + Transport Event + Transport Event + + + + + + + + + + + ABIE + Transport Status. Details + Status of individual transport items + Transport Status + + + + + + + + + BBIE + Transport Status. Time Deviation. Indicator + Indicates whether the status reports of a time deviation. + 1 + Transport Status + Time Deviation + Indicator + Indicator. Type + + + + + + + + + BBIE + Transport Status. Condition Deviation. Indicator + Indicates whether the status reports of a condition deviation. + 1 + Transport Status + Condition Deviation + Indicator + Indicator. Type + + + + + + + + + ASBIE + Transport Status. Updated_ Delivery. Delivery + Specifies an updated delivery time for the transport items in question. + 0..1 + Transport Status + Updated + Delivery + Delivery + + + + + + + + + ASBIE + Transport Status. Updated_ Despatch. Despatch + Specifies an updated despatch time for the transport items in question. + 0..1 + Transport Status + Updated + Despatch + Despatch + + + + + + + + + ASBIE + Transport Status. Status_ Location. Location + The location where the event leading to a status is read. + 0..1 + Transport Status + Status + Location + Location + + + + + + + + + ASBIE + Transport Status. Referenced_ Transport Handling Unit. Transport Handling Unit + A reference to a transport handling unit being transported. + 0..n + Transport Status + Referenced + Transport Handling Unit + Transport Handling Unit + + + + + + + + + + + ABIE + Transportation Segment. Details + A Transportation Segment is defined as one segment or leg in a transport service + Transportation Segment + + + + + + + + + BBIE + Transportation Segment. Sequence Number. Identifier + Sequence number differentiating one Transportation Segment from another + 1 + Transportation Segment + Sequence Number + Identifier + Identifier. Type + + + + + + + + + BBIE + Transportation Segment. Transport Execution Plan Reference. Identifier + A reference to the identifier of a Transport Execution Plan document. + 1 + Transportation Segment + Transport Execution Plan Reference + Identifier + Identifier. Type + + + + + + + + + BBIE + Transportation Segment. Transport Mode Code. Code + The method of transport used for a Transportation Segment. + 0..1 + Transportation Segment + Transport Mode Code + Code + Transport Mode_ Code. Type + + + + + + + + + BBIE + Transportation Segment. Transport Means Type Code. Code + Defines the type of transport means being used at this Transportation Segment. + 0..1 + Transportation Segment + Transport Means Type Code + Code + Code. Type + + + + + + + + + ASBIE + Transportation Segment. Transportation Service + The transportation service used in this transportation segment. + 1 + Transportation Segment + Transportation Service + Transportation Service + + + + + + + + + ASBIE + Transportation Segment. Transport Service Provider_ Party. Party + The transport service provider responsible for carrying out transport services at this transportation segment. + 1 + Transportation Segment + Transport Service Provider + Party + Party + + + + + + + + + ASBIE + Transportation Segment. Carrying_ Transport Equipment. Transport Equipment + The transport equipment used to contain a particular goods item or package at this transportation segment. + 0..1 + Transportation Segment + Carrying + Transport Equipment + Transport Equipment + + + + + + + + + ASBIE + Transportation Segment. Carrying_ Package. Package + The package used to contain a particular goods item or package at this transportation segment. + 0..1 + Transportation Segment + Carrying + Package + Package + + + + + + + + + ASBIE + Transportation Segment. Carrying_ Transport Means. Transport Means + The transport means used to carry a particular goods item or package at this transportation segment. + 0..1 + Transportation Segment + Carrying + Transport Means + Transport Means + + + + + + + + + ASBIE + Transportation Segment. Departure_ Transport Location. Transport Location + The departure location at this transportation segment. + 0..1 + Transportation Segment + Departure + Transport Location + Transport Location + + + + + + + + + ASBIE + Transportation Segment. Intermediate_ Transport Location. Transport Location + An intermediate location (e.g. customs office, intermediate storage location, etc.) at this transportation segment. + 0..n + Transportation Segment + Intermediate + Transport Location + Transport Location + + + + + + + + + ASBIE + Transportation Segment. Arrival_ Transport Location. Transport Location + The arrival location for this transportation segment. + 0..1 + Transportation Segment + Arrival + Transport Location + Transport Location + + + + + + + + + + + ABIE + Transportation Service. Details + Transport service details. + Transportation Service + + + + + + + + + BBIE + Transportation Service. Transport Service Code. Code + A code which describes the general type of service required for the transportation of goods. Specifically, it identifies the extent of the transportation service, e.g., door-to-door, port-to-port. + 1 + Transportation Service + Transport Service Code + Code + Code. Type + + + + + + + + + BBIE + Transportation Service. Tariff Class Code. Code + Specification of a tariff class applicable to a transportation service. + 0..1 + Transportation Service + Tariff Class Code + Code + Code. Type + Tariff Class Specifier + + + + + + + + + BBIE + Transportation Service. Priority. Text + Statement indicating priority of requested transportation service. + 0..1 + Transportation Service + Priority + Text + Text. Type + + + + + + + + + BBIE + Transportation Service. Freight Rate Class Code. Code + Code to indicate applicable rate class for freight. + 0..1 + Transportation Service + Freight Rate Class Code + Code + Code. Type + Charge Basis + + + + + + + + + BBIE + Transportation Service. Transportation Service Description. Text + A textual description of the transportation service + 0..1 + Transportation Service + Transportation Service Description + Text + Text. Type + + + + + + + + + BBIE + Transportation Service. Transportation Service Details URI. Identifier + An URI to additional specification of the transportation service, e.g. a company website with service specifications + 0..1 + Transportation Service + Transportation Service Details URI + Identifier + Identifier. Type + + + + + + + + + BBIE + Transportation Service. Nomination Date. Date + The deadline date for which this service has to be booked. For example if this service is executed Wednesday February 16th 2011 at 10 a.m. CET, the Nomination Date might be Tuesday February 15th 2011. + 0..1 + Transportation Service + Nomination Date + Date + Date. Type + + + + + + + + + BBIE + Transportation Service. Nomination Time. Time + The deadline time for which this service has to be booked. For example if this service is executed Wednesday February 16th 2011 at 10 a.m. CET, the Nomination Date might be Tuesday February 15th 2011 and Nomination Time 4 p.m. latest. + 0..1 + Transportation Service + Nomination Time + Time + Time. Type + + + + + + + + + + + ABIE + Unstructured Price. Details + This class is a alternative to the class Price, and it contain a Tele line + Unstructured Price + + + + + + + + + BBIE + Unstructured Price. Price Amount. Amount + Statement for the price amount + 0..1 + Unstructured Price + Price Amount + Amount + Amount. Type + 23.45 + + + + + + + + + BBIE + Unstructured Price. Time Amount. Text + Statement for the time amount. + 0..1 + Unstructured Price + Time Amount + Text + Text. Type + + + + + + + + + + + ABIE + Utility Item. Details + Informations about a product of consumption + Utility Item + + + + + + + + + BBIE + Utility Item. Identifier + Identification of the consumption product + 1 + Utility Item + Identifier + Identifier + Identifier. Type + 1 + + + + + + + + + BBIE + Utility Item. Subscriber Identifier. Identifier + Identification of the subscriber + 0..1 + Utility Item + Subscriber Identifier + Identifier + Identifier. Type + 98143211 + + + + + + + + + BBIE + Utility Item. Subscriber ID Type. Text + Identification of the subscriber type + 0..1 + Utility Item + Subscriber ID Type + Text + Text. Type + APL + + + + + + + + + BBIE + Utility Item. Subscriber ID Type Code. Code + The code for the service type + 0..1 + Utility Item + Subscriber ID Type Code + Code + Code. Type + APL + + + + + + + + + BBIE + Utility Item. Description. Text + Desciption of the consumption product + 0..n + Utility Item + Description + Text + Text. Type + Basis price quarter (5.761 kWh per 35,58 cents), Transport of electricity, etc. + + + + + + + + + BBIE + Utility Item. Pack Quantity. Quantity + The unit packaging quantity + 0..1 + Utility Item + Pack Quantity + Quantity + Quantity. Type + 1 + + + + + + + + + BBIE + Utility Item. Pack Size. Numeric + The number of items in a pack + 0..1 + Utility Item + Pack Size + Numeric + Numeric. Type + + + + + + + + + BBIE + Utility Item. Consumption Type. Text + Description of the of the consumption product type + 0..1 + Utility Item + Consumption Type + Text + Text. Type + Consumption + + + + + + + + + BBIE + Utility Item. Consumption Type Code. Code + Description of the of the consumption product type as a code + 0..1 + Utility Item + Consumption Type Code + Code + Code. Type + Consumption + + + + + + + + + BBIE + Utility Item. Current_ Charge Type. Text + Information of the actual paymentstype + 0..1 + Utility Item + Current + Charge Type + Text + Text. Type + + + + + + + + + BBIE + Utility Item. Current_ Charge Type Code. Code + Information of the actual paymentstype code + 0..1 + Utility Item + Current + Charge Type Code + Code + Code. Type + + + + + + + + + BBIE + Utility Item. One Time_ Charge Type. Text + Information about the one-time payment type + 0..1 + Utility Item + One Time + Charge Type + Text + Text. Type + + + + + + + + + BBIE + Utility Item. One Time_ Charge Type Code. Code + Information about the one-time payment type code + 0..1 + Utility Item + One Time + Charge Type Code + Code + Code. Type + + + + + + + + + ASBIE + Utility Item. Tax Category + An association to Tax Category + 0..1 + Utility Item + Tax Category + Tax Category + + + + + + + + + ASBIE + Utility Item. Contract + Informations about the contract. + 0..1 + Utility Item + Contract + Contract + + + + + + + + + + + ABIE + WebSiteAccess. Details + Information about how to access the suppliere website. + WebSiteAccess + + + + + + + + + BBIE + WebSiteAccess. URI. Identifier + Website address. + 0..1 + WebSiteAccess + URI + Identifier + Identifier. Type + + + + + + + + + BBIE + WebSiteAccess. Password. Text + The customers password to login to the suppliers website. + 1 + WebSiteAccess + Password + Text + Text. Type + confidence + + + + + + + + + BBIE + WebSiteAccess. Login. Text + Login information . + 1 + WebSiteAccess + Login + Text + Text. Type + Utsuser + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/UBL-CommonBasicComponents-2.1.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/UBL-CommonBasicComponents-2.1.xsd new file mode 100644 index 000000000..c9fed0068 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/UBL-CommonBasicComponents-2.1.xsd @@ -0,0 +1,5151 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/UBL-QualifiedDataTypes-2.1.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/UBL-QualifiedDataTypes-2.1.xsd new file mode 100644 index 000000000..cca8b40f6 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/UBL-QualifiedDataTypes-2.1.xsd @@ -0,0 +1,69 @@ + + + + + + + + + + diff --git a/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/UBL-UnqualifiedDataTypes-2.1.xsd b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/UBL-UnqualifiedDataTypes-2.1.xsd new file mode 100644 index 000000000..d381f90b4 --- /dev/null +++ b/TrueFilingEcf4/src/main/resources/wsdl/xsd/message/UBL-UnqualifiedDataTypes-2.1.xsd @@ -0,0 +1,435 @@ + + + + + + + + + + UBLUDT000001 + UDT + Amount. Type + 1.0 + A number of monetary units specified in a currency where the unit of the currency is explicit or implied. + Amount + + + + + + + + + + + UBLUDT000002 + UDT + Binary Object. Type + 1.0 + A set of finite-length sequences of binary octets. + Binary Object + binary + + + + + + + + + + + UBLUDT000003 + UDT + Graphic. Type + 1.0 + A diagram, graph, mathematical curves, or similar representation. + Graphic + binary + + + + + + + + + + + UBLUDT000004 + UDT + Picture. Type + 1.0 + A diagram, graph, mathematical curves, or similar representation. + Picture + binary + + + + + + + + + + + UBLUDT000005 + UDT + Sound. Type + 1.0 + A diagram, graph, mathematical curves, or similar representation. + Sound + binary + + + + + + + + + + + UBLUDT000006 + UDT + Video. Type + 1.0 + A diagram, graph, mathematical curves, or similar representation. + Graphic + binary + + + + + + + + + + + UBLUDT000007 + UDT + Code. Type + 1.0 + A character string (letters, figures, or symbols) that for brevity and/or languange independence may be used to represent or replace a definitive value or text of an attribute together with relevant supplementary information. + Code + string + Other supplementary components in the CCT are captured as part of the token and name for the schema module containing the code list and thus, are not declared as attributes. + + + + + + + + + + + UBLUDT000008 + UDT + Date Time. Type + 1.0 + A particular point in the progression of time together with the relevant supplementary information. + Date Time + string + Can be used for a date and/or time. + + + + + + + + + + + UBLUDT000009 + UDT + Date. Type + 1.0 + One calendar day according the Gregorian calendar. + Date + string + + + + + + + + + + + UBLUDT0000010 + UDT + Time. Type + 1.0 + The instance of time that occurs every day. + Time + string + + + + + + + + + + + UBLUDT0000011 + UDT + Identifier. Type + 1.0 + A character string to identify and distinguish uniquely, one instance of an object in an identification scheme from all other objects in the same scheme together with relevant supplementary information. + Identifier + string + Other supplementary components in the CCT are captured as part of the token and name for the schema module containing the identifer list and thus, are not declared as attributes. + + + + + + + + + + + UBLUDT0000012 + UDT + Indicator. Type + 1.0 + A list of two mutually exclusive Boolean values that express the only possible states of a property. + Indicator + string + + + + + + + + + + + UBLUDT0000013 + UDT + Measure. Type + 1.0 + A numeric value determined by measuring an object along with the specified unit of measure. + Measure + Type + decimal + + + + + + + + + + + UBLUDT0000014 + UDT + Numeric. Type + 1.0 + Numeric information that is assigned or is determined by calculation, counting, or sequencing. It does not require a unit of quantity or unit of measure. + Numeric + string + + + + + + + + + + + UBLUDT0000015 + UDT + 1.0 + Value. Type + Numeric information that is assigned or is determined by calculation, counting, or sequencing. It does not require a unit of quantity or unit of measure. + Value + string + + + + + + + + + + + UBLUDT0000016 + UDT + 1.0 + Percent. Type + Numeric information that is assigned or is determined by calculation, counting, or sequencing. It does not require a unit of quantity or unit of measure. + Percent + string + + + + + + + + + + + UBLUDT0000017 + UDT + 1.0 + Rate. Type + Numeric information that is assigned or is determined by calculation, counting, or sequencing. It does not require a unit of quantity or unit of measuret. + Rate + string + + + + + + + + + + + UBLUDT0000018 + UDT + Quantity. Type + 1.0 + A counted number of non-monetary units possibly including fractions. + Quantity + decimal + + + + + + + + + + + UBLUDT0000019 + UDT + Text. Type + 1.0 + A character string (i.e. a finite set of characters) generally in the form of words of a language. + Text + string + + + + + + + + + + + UBLUDT0000020 + UDT + Name. Type + 1.0 + A character string that consititues the distinctive designation of a person, place, thing or concept. + Name + string + + + + + + + \ No newline at end of file diff --git a/docs/architecture.md b/docs/architecture.md index 0cd2d8438..de87592c9 100644 --- a/docs/architecture.md +++ b/docs/architecture.md @@ -58,7 +58,7 @@ You will have to use the Autogenerated code a lot when working with the SOAP API * `w3._2000._09.xmldsig_` * Tyler's extensions on ECF (`tyler.ecf.*` for the datatypes, and `tyler.efm` for the APIs themselves) -All of this autogenerated code can be found in the [TylerEfmClient](../TylerEfmClient/README.md), [TylerEcf4](../TylerEcf4/README.md), and [TylerEcf5](../TylerEcf5/README.md) packages. +All of this autogenerated code can be found in the [TylerEfmClient](../TylerEfmClient/README.md), [TylerEcf4](../TylerEcf4/README.md), [TrueFilingEcf4](../TrueFilingEcf4/README.md), and [TylerEcf5](../TylerEcf5/README.md) packages. TrueFilingEcf4 generates this code automatically on build (not possible with Tyler due to needing to handle multiple versions of the API). Each terminal subpackage usually has an `ObjectFactory.java` class. You will often need to this class to create the proper XML wrappers around the Java objects so the SOAP / XML stuff understands the type correctly. You will need to include multiple ObjectFactory classes in the same file often, so you will need to refer to the full package namespace. diff --git a/env.example b/env.example index 2018aa41b..9e35bd34c 100644 --- a/env.example +++ b/env.example @@ -54,6 +54,9 @@ TOGA_CLIENT_KEYS= PATH_TO_KEYSTORE=MyOrg.pfx X509_PASSWORD= +##### TrueFiling Related environment variables #### +TRUEFILING_INTEGRATOR_ID=... + ##### Secured Files ##### # These are secured files that are stored in encrypted cloud storage. Use this for any secured files that are not # baked into your Docker image. This is useful in the case of continuous deployment. diff --git a/proxyserver/src/main/java/edu/suffolk/litlab/efsp/tyler/ecfcodes/CodeUpdater.java b/proxyserver/src/main/java/edu/suffolk/litlab/efsp/tyler/ecfcodes/CodeUpdater.java index e150d6163..65662a374 100644 --- a/proxyserver/src/main/java/edu/suffolk/litlab/efsp/tyler/ecfcodes/CodeUpdater.java +++ b/proxyserver/src/main/java/edu/suffolk/litlab/efsp/tyler/ecfcodes/CodeUpdater.java @@ -622,6 +622,7 @@ private static CodeDatabaseAPI makeCodeDatabase(Jurisdiction jurisdiction) { return switch (jurisdiction.getVendor()) { case Jurisdiction.Vendor.TYLER -> CodeDatabase.fromDS(jurisdiction, ds); + default -> throw new RuntimeException("Other databases not yet supported"); }; } catch (Exception ex) { throw new RuntimeException(ex);

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