@sythos/js_barcode_universal 1.0.0 → 1.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +16 -17
- package/NOTICE.md +24 -22
- package/README.md +137 -60
- package/bundle/sythos-barcode.esm.js +3380 -216
- package/bundle/sythos-barcode.js +3368 -216
- package/examples/create.html +2 -0
- package/examples/read.html +341 -341
- package/licenses/README.md +58 -29
- package/licenses/aztec-code.license +74 -0
- package/licenses/codabar.license +9 -9
- package/licenses/code-11.license +9 -9
- package/licenses/code-128.license +6 -6
- package/licenses/code-39.license +6 -6
- package/licenses/code-93.license +7 -7
- package/licenses/data-matrix.license +11 -11
- package/licenses/ean-13.license +6 -6
- package/licenses/ean-8.license +6 -6
- package/licenses/gs1-128.license +6 -6
- package/licenses/isbn.license +7 -7
- package/licenses/itf-14.license +6 -6
- package/licenses/itf.license +6 -6
- package/licenses/micropdf417.license +96 -0
- package/licenses/msi-plessey.license +7 -7
- package/licenses/pdf417.license +37 -0
- package/licenses/pharmacode.license +7 -7
- package/licenses/qr-code.license +6 -6
- package/licenses/upc-a.license +7 -7
- package/licenses/upc-e.license +6 -6
- package/package.json +13 -3
- package/src/aztec/decoder.js +317 -0
- package/src/aztec/detector.js +224 -0
- package/src/aztec/encoder.js +257 -0
- package/src/aztec/high-level.js +211 -0
- package/src/aztec/index.js +45 -0
- package/src/aztec/tables.js +210 -0
- package/src/core/galois-field.js +3 -0
- package/src/core/reed-solomon.js +64 -50
- package/src/datamatrix/decoder.js +262 -262
- package/src/datamatrix/detector.js +225 -225
- package/src/datamatrix/encoder.js +191 -191
- package/src/datamatrix/index.js +42 -42
- package/src/datamatrix/tables.js +123 -123
- package/src/index.js +113 -3
- package/src/micropdf417/compaction.js +116 -0
- package/src/micropdf417/decoder.js +183 -0
- package/src/micropdf417/detector.js +149 -0
- package/src/micropdf417/encoder.js +209 -0
- package/src/micropdf417/error-correction.js +55 -0
- package/src/micropdf417/index.js +49 -0
- package/src/micropdf417/tables.js +184 -0
- package/src/pdf417/compaction.js +298 -0
- package/src/pdf417/decoder.js +75 -0
- package/src/pdf417/detector.js +468 -0
- package/src/pdf417/encoder.js +91 -0
- package/src/pdf417/error-correction.js +47 -0
- package/src/pdf417/index.js +6 -0
- package/src/pdf417/tables.js +317 -0
package/licenses/README.md
CHANGED
|
@@ -8,36 +8,65 @@ on which this project implements and redistributes it.
|
|
|
8
8
|
The library is MIT licensed in full — see [`../LICENSE`](../LICENSE), whose
|
|
9
9
|
appendix carries the consolidated inventory these files expand on.
|
|
10
10
|
|
|
11
|
-
| Format | File |
|
|
11
|
+
| Format | File | Review status |
|
|
12
12
|
|---|---|---:|
|
|
13
|
-
|
|
|
14
|
-
|
|
|
15
|
-
|
|
|
16
|
-
|
|
|
17
|
-
|
|
|
18
|
-
|
|
|
19
|
-
|
|
|
20
|
-
|
|
|
21
|
-
|
|
|
22
|
-
|
|
|
23
|
-
| Code
|
|
24
|
-
|
|
|
25
|
-
|
|
|
26
|
-
|
|
|
27
|
-
|
|
|
28
|
-
|
|
|
29
|
-
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
13
|
+
| Aztec Code | [`aztec-code.license`](aztec-code.license) | Scoped labels |
|
|
14
|
+
| QR Code | [`qr-code.license`](qr-code.license) | Scoped labels |
|
|
15
|
+
| Data Matrix ECC 200 | [`data-matrix.license`](data-matrix.license) | Scoped labels |
|
|
16
|
+
| PDF417 | [`pdf417.license`](pdf417.license) | Scoped labels |
|
|
17
|
+
| MicroPDF417 | [`micropdf417.license`](micropdf417.license) | Scoped labels |
|
|
18
|
+
| EAN-13 | [`ean-13.license`](ean-13.license) | Scoped labels |
|
|
19
|
+
| EAN-8 | [`ean-8.license`](ean-8.license) | Scoped labels |
|
|
20
|
+
| UPC-A | [`upc-a.license`](upc-a.license) | Scoped labels |
|
|
21
|
+
| UPC-E | [`upc-e.license`](upc-e.license) | Scoped labels |
|
|
22
|
+
| ISBN (Bookland EAN-13) | [`isbn.license`](isbn.license) | Scoped labels |
|
|
23
|
+
| Code 128 | [`code-128.license`](code-128.license) | Scoped labels |
|
|
24
|
+
| GS1-128 | [`gs1-128.license`](gs1-128.license) | Scoped labels |
|
|
25
|
+
| Code 39 | [`code-39.license`](code-39.license) | Scoped labels |
|
|
26
|
+
| Code 93 | [`code-93.license`](code-93.license) | Scoped labels |
|
|
27
|
+
| ITF (Interleaved 2 of 5) | [`itf.license`](itf.license) | Scoped labels |
|
|
28
|
+
| ITF-14 | [`itf-14.license`](itf-14.license) | Scoped labels |
|
|
29
|
+
| Codabar | [`codabar.license`](codabar.license) | Scoped labels |
|
|
30
|
+
| Code 11 | [`code-11.license`](code-11.license) | Scoped labels |
|
|
31
|
+
| MSI Plessey | [`msi-plessey.license`](msi-plessey.license) | Scoped labels |
|
|
32
|
+
| Pharmacode | [`pharmacode.license`](pharmacode.license) | Scoped labels |
|
|
33
|
+
|
|
34
|
+
## Review labels
|
|
35
|
+
|
|
36
|
+
The inventory now uses scoped labels instead of one generic marker:
|
|
37
|
+
|
|
38
|
+
- `[VERIFIED FACT]` — supported by a primary or authoritative public source.
|
|
39
|
+
- `[REGISTRY CHECK REQUIRED]` — a live trademark, ownership or registration
|
|
40
|
+
status still needs a current office-record search.
|
|
41
|
+
- `[PATENT FAMILY REVIEW REQUIRED]` — a patent family, continuation,
|
|
42
|
+
jurisdiction, term adjustment or maintenance record still needs review.
|
|
43
|
+
- `[LICENSE TERMS REVIEW REQUIRED]` — the standard or publisher's text,
|
|
44
|
+
copyright and redistribution terms still need confirmation.
|
|
45
|
+
- `[LEGAL REVIEW]` — an attribution, commercial conclusion or jurisdictional
|
|
46
|
+
issue should be reviewed by qualified counsel before relying on it.
|
|
47
|
+
|
|
48
|
+
These labels distinguish engineering facts from unresolved legal questions.
|
|
49
|
+
They do not certify that a format is free of patent, trademark or copyright
|
|
50
|
+
constraints in every country.
|
|
51
|
+
|
|
52
|
+
The primary references used for the current review include:
|
|
53
|
+
|
|
54
|
+
- [ISO/IEC 24778:2024 — Aztec Code](https://www.iso.org/standard/82441.html)
|
|
55
|
+
- [GS1 EAN/UPC standards](https://www.gs1.org/standards/barcodes/ean-upc)
|
|
56
|
+
- [GS1 Application Identifiers](https://www.gs1.org/gs1-application-identifiers)
|
|
57
|
+
- [GS1 DataMatrix Guideline](https://www.gs1.org/sites/default/files/docs/barcodes/GS1_DataMatrix_Guideline.pdf)
|
|
58
|
+
- [ISO/IEC 15438:2015 — PDF417](https://www.iso.org/standard/65502.html)
|
|
59
|
+
- [ISO/IEC 24728:2006 — MicroPDF417](https://www.iso.org/standard/38838.html)
|
|
60
|
+
- [MicroPDF417 overview](https://en.wikipedia.org/wiki/MicroPDF417)
|
|
61
|
+
- [US 6,047,892 record](https://patents.google.com/patent/US6047892A/en) and [direct PDF](https://patentimages.storage.googleapis.com/0a/79/f5/e8d374043414f3/US6047892.pdf)
|
|
62
|
+
- [ZXing-C++ consultative interoperability reference](https://github.com/zxing-cpp/zxing-cpp)
|
|
63
|
+
- [AIM USS-PDF417 public reference](https://www.expresscorp.com/uploads/specifications/44/USS-PDF-417.pdf)
|
|
64
|
+
- [US 5,243,655 patent record](https://patents.google.com/patent/US5243655A/en)
|
|
65
|
+
- [US 5,304,786 patent record](https://patents.google.com/patent/US5304786A/en)
|
|
66
|
+
- [DENSO QR Code technology position](https://www.denso.com/global/home/business/innovation/qrcode/)
|
|
67
|
+
- [USPTO Aztec patent dedication notice](https://www.uspto.gov/web/offices/com/sol/og/1997/week24/patdisc.htm)
|
|
68
|
+
- [USPTO patent-term guidance](https://www.uspto.gov/web/offices/pac/mpep/s2701.html)
|
|
69
|
+
- [U.S. Copyright Office — ideas, methods and systems](https://www.copyright.gov/circs/circ31.pdf)
|
|
41
70
|
|
|
42
71
|
These are engineering assessments, **not legal advice**. If your use is
|
|
43
72
|
commercially sensitive, obtain your own legal review.
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
Aztec Code — format provenance and usability
|
|
2
|
+
==========================================================================
|
|
3
|
+
|
|
4
|
+
This file records where the Aztec Code symbology comes from, what governs
|
|
5
|
+
it, and the basis on which this project implements and redistributes it.
|
|
6
|
+
|
|
7
|
+
It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items carrying a review label
|
|
8
|
+
have not been independently confirmed by the author.
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
ORIGIN
|
|
12
|
+
--------------------------------------------------------------------------
|
|
13
|
+
|
|
14
|
+
Created by Andrew Longacre, Jr. of Welch Allyn in the 1990s. The inventor,
|
|
15
|
+
assignee and public dedication are supported by the USPTO Official Gazette;
|
|
16
|
+
ownership history outside that record remains [LEGAL REVIEW].
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
SPECIFICATION
|
|
20
|
+
--------------------------------------------------------------------------
|
|
21
|
+
|
|
22
|
+
ISO/IEC 24778:2024 — Aztec Code bar code symbology specification.
|
|
23
|
+
Published by ISO/IEC. The specification TEXT is copyrighted by its
|
|
24
|
+
publisher and is paywalled; it is not reproduced here.
|
|
25
|
+
|
|
26
|
+
Specification TEXT is copyrighted by its publisher. The SYMBOLOGY it
|
|
27
|
+
describes is not — an encoding scheme is a system, not a work of
|
|
28
|
+
authorship. This project implements the symbology; it does not reproduce,
|
|
29
|
+
redistribute or excerpt any specification document.
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
PATENT STATUS
|
|
33
|
+
--------------------------------------------------------------------------
|
|
34
|
+
|
|
35
|
+
The original US patent was dedicated to the public, as recorded by the USPTO.
|
|
36
|
+
International patent families, continuations and current effects remain
|
|
37
|
+
[PATENT FAMILY REVIEW REQUIRED].
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
TRADEMARK
|
|
41
|
+
--------------------------------------------------------------------------
|
|
42
|
+
|
|
43
|
+
The current registration status and ownership of the words "Aztec Code"
|
|
44
|
+
have not been independently established. [REGISTRY CHECK REQUIRED] The name is used
|
|
45
|
+
descriptively here and does not imply endorsement by any rights holder.
|
|
46
|
+
|
|
47
|
+
A trademark does not restrict implementing a symbology. It restricts
|
|
48
|
+
branding — how a product names and presents itself.
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
IMPLEMENTATION BASIS IN THIS PROJECT
|
|
52
|
+
--------------------------------------------------------------------------
|
|
53
|
+
|
|
54
|
+
Aztec Code is implemented here from published descriptions of the format,
|
|
55
|
+
which are systems and facts rather than works of authorship. No source
|
|
56
|
+
code and no constant table from any other barcode implementation was used,
|
|
57
|
+
consulted or copied, under any licence.
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
CONCLUSION
|
|
61
|
+
--------------------------------------------------------------------------
|
|
62
|
+
|
|
63
|
+
This project's original implementation is distributed under the MIT
|
|
64
|
+
License. The ISO/IEC reference establishes the technical standard; this
|
|
65
|
+
engineering inventory does not claim to have resolved the patent or
|
|
66
|
+
trademark entries that remain open for review.
|
|
67
|
+
|
|
68
|
+
References relied upon:
|
|
69
|
+
- ISO/IEC 24778:2024, ISO/IEC
|
|
70
|
+
- Aztec Code origin, patent position and trademark status [LEGAL REVIEW]
|
|
71
|
+
|
|
72
|
+
This is an engineering assessment, not legal advice. Open review labels
|
|
73
|
+
identify claims that have not been independently confirmed by the author. If your
|
|
74
|
+
use is commercially sensitive, obtain your own legal review.
|
package/licenses/codabar.license
CHANGED
|
@@ -4,14 +4,14 @@ Codabar — format provenance and usability
|
|
|
4
4
|
This file records where the Codabar symbology comes from, what governs
|
|
5
5
|
it, and the basis on which this project implements and redistributes it.
|
|
6
6
|
|
|
7
|
-
It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items
|
|
7
|
+
It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items carrying a review label
|
|
8
8
|
have not been independently confirmed by the author.
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
ORIGIN
|
|
12
12
|
--------------------------------------------------------------------------
|
|
13
13
|
|
|
14
|
-
Developed in the early 1970s. [
|
|
14
|
+
Developed in the early 1970s. [LEGAL REVIEW] COMPETING ATTRIBUTIONS CIRCULATE
|
|
15
15
|
in secondary sources — Monarch Marking Systems and Pitney Bowes are both
|
|
16
16
|
cited — so the credit is deliberately NOT treated as settled here and no
|
|
17
17
|
single originator is asserted. Long used by blood banks, libraries and
|
|
@@ -23,8 +23,8 @@ SPECIFICATION
|
|
|
23
23
|
|
|
24
24
|
AIM USS-Codabar (Uniform Symbology Specification) is understood to exist,
|
|
25
25
|
but no document number is asserted here because none has been confirmed.
|
|
26
|
-
[
|
|
27
|
-
Also known as NW-7, and in the United States as Code 2 of 7. [
|
|
26
|
+
[LEGAL REVIEW]
|
|
27
|
+
Also known as NW-7, and in the United States as Code 2 of 7. [LEGAL REVIEW]
|
|
28
28
|
|
|
29
29
|
Specification TEXT is copyrighted by its publisher. The SYMBOLOGY it
|
|
30
30
|
describes is not — an encoding scheme is a system, not a work of
|
|
@@ -36,14 +36,14 @@ PATENT STATUS
|
|
|
36
36
|
--------------------------------------------------------------------------
|
|
37
37
|
|
|
38
38
|
The originating patents date from the 1970s-1980s and are understood to
|
|
39
|
-
have expired long ago. [
|
|
39
|
+
have expired long ago. [PATENT FAMILY REVIEW REQUIRED]
|
|
40
40
|
|
|
41
41
|
|
|
42
42
|
TRADEMARK
|
|
43
43
|
--------------------------------------------------------------------------
|
|
44
44
|
|
|
45
45
|
No live trademark restriction on implementing Codabar is known to the
|
|
46
|
-
author. [
|
|
46
|
+
author. [REGISTRY CHECK REQUIRED] That is a statement about the author's knowledge, not
|
|
47
47
|
a finding that no mark subsists: no trademark search was carried out.
|
|
48
48
|
|
|
49
49
|
A trademark does not restrict implementing a symbology. It restricts
|
|
@@ -67,8 +67,8 @@ implementable and redistributable, and this project's implementation of it
|
|
|
67
67
|
is distributed under the MIT License with no additional restriction.
|
|
68
68
|
|
|
69
69
|
References relied upon:
|
|
70
|
-
- AIM USS-Codabar [
|
|
70
|
+
- AIM USS-Codabar [LICENSE TERMS REVIEW REQUIRED]
|
|
71
71
|
|
|
72
|
-
This is an engineering assessment, not legal advice.
|
|
73
|
-
|
|
72
|
+
This is an engineering assessment, not legal advice. Open review labels
|
|
73
|
+
Open review labels identify claims that have not been independently confirmed by the author. If your
|
|
74
74
|
use is commercially sensitive, obtain your own legal review.
|
package/licenses/code-11.license
CHANGED
|
@@ -4,7 +4,7 @@ Code 11 — format provenance and usability
|
|
|
4
4
|
This file records where the Code 11 symbology comes from, what governs
|
|
5
5
|
it, and the basis on which this project implements and redistributes it.
|
|
6
6
|
|
|
7
|
-
It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items
|
|
7
|
+
It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items carrying a review label
|
|
8
8
|
have not been independently confirmed by the author.
|
|
9
9
|
|
|
10
10
|
|
|
@@ -12,14 +12,14 @@ ORIGIN
|
|
|
12
12
|
--------------------------------------------------------------------------
|
|
13
13
|
|
|
14
14
|
Introduced by Intermec in 1977, primarily for labelling telecommunications
|
|
15
|
-
equipment. [
|
|
15
|
+
equipment. [LEGAL REVIEW]
|
|
16
16
|
|
|
17
17
|
|
|
18
18
|
SPECIFICATION
|
|
19
19
|
--------------------------------------------------------------------------
|
|
20
20
|
|
|
21
|
-
AIM published specification for Code 11. Terms vary. [
|
|
22
|
-
There is no ISO/IEC standard for Code 11. [
|
|
21
|
+
AIM published specification for Code 11. Terms vary. [LEGAL REVIEW]
|
|
22
|
+
There is no ISO/IEC standard for Code 11. [LEGAL REVIEW]
|
|
23
23
|
|
|
24
24
|
Specification TEXT is copyrighted by its publisher. The SYMBOLOGY it
|
|
25
25
|
describes is not — an encoding scheme is a system, not a work of
|
|
@@ -31,14 +31,14 @@ PATENT STATUS
|
|
|
31
31
|
--------------------------------------------------------------------------
|
|
32
32
|
|
|
33
33
|
The originating patents date from the 1970s-1980s and are understood to
|
|
34
|
-
have expired long ago. [
|
|
34
|
+
have expired long ago. [PATENT FAMILY REVIEW REQUIRED]
|
|
35
35
|
|
|
36
36
|
|
|
37
37
|
TRADEMARK
|
|
38
38
|
--------------------------------------------------------------------------
|
|
39
39
|
|
|
40
40
|
No live trademark restriction on implementing Code 11 is known to the
|
|
41
|
-
author. [
|
|
41
|
+
author. [REGISTRY CHECK REQUIRED] That is a statement about the author's knowledge, not
|
|
42
42
|
a finding that no mark subsists: no trademark search was carried out.
|
|
43
43
|
|
|
44
44
|
A trademark does not restrict implementing a symbology. It restricts
|
|
@@ -62,8 +62,8 @@ implementable and redistributable, and this project's implementation of it
|
|
|
62
62
|
is distributed under the MIT License with no additional restriction.
|
|
63
63
|
|
|
64
64
|
References relied upon:
|
|
65
|
-
- AIM published specification for Code 11 [
|
|
65
|
+
- AIM published specification for Code 11 [LICENSE TERMS REVIEW REQUIRED]
|
|
66
66
|
|
|
67
|
-
This is an engineering assessment, not legal advice.
|
|
68
|
-
|
|
67
|
+
This is an engineering assessment, not legal advice. Open review labels
|
|
68
|
+
Open review labels identify claims that have not been independently confirmed by the author. If your
|
|
69
69
|
use is commercially sensitive, obtain your own legal review.
|
|
@@ -4,14 +4,14 @@ Code 128 — format provenance and usability
|
|
|
4
4
|
This file records where the Code 128 symbology comes from, what governs
|
|
5
5
|
it, and the basis on which this project implements and redistributes it.
|
|
6
6
|
|
|
7
|
-
It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items
|
|
7
|
+
It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items carrying a review label
|
|
8
8
|
have not been independently confirmed by the author.
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
ORIGIN
|
|
12
12
|
--------------------------------------------------------------------------
|
|
13
13
|
|
|
14
|
-
Devised by Computer Identics Corporation in 1981. [
|
|
14
|
+
Devised by Computer Identics Corporation in 1981. [LEGAL REVIEW]
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
SPECIFICATION
|
|
@@ -31,14 +31,14 @@ PATENT STATUS
|
|
|
31
31
|
--------------------------------------------------------------------------
|
|
32
32
|
|
|
33
33
|
The originating patents date from the 1970s-1980s and are understood to
|
|
34
|
-
have expired long ago. [
|
|
34
|
+
have expired long ago. [PATENT FAMILY REVIEW REQUIRED]
|
|
35
35
|
|
|
36
36
|
|
|
37
37
|
TRADEMARK
|
|
38
38
|
--------------------------------------------------------------------------
|
|
39
39
|
|
|
40
40
|
No live trademark restriction on implementing Code 128 is known to the
|
|
41
|
-
author. [
|
|
41
|
+
author. [REGISTRY CHECK REQUIRED] That is a statement about the author's knowledge, not
|
|
42
42
|
a finding that no mark subsists: no trademark search was carried out.
|
|
43
43
|
|
|
44
44
|
A trademark does not restrict implementing a symbology. It restricts
|
|
@@ -64,6 +64,6 @@ is distributed under the MIT License with no additional restriction.
|
|
|
64
64
|
References relied upon:
|
|
65
65
|
- ISO/IEC 15417, ISO/IEC
|
|
66
66
|
|
|
67
|
-
This is an engineering assessment, not legal advice.
|
|
68
|
-
|
|
67
|
+
This is an engineering assessment, not legal advice. Open review labels
|
|
68
|
+
Open review labels identify claims that have not been independently confirmed by the author. If your
|
|
69
69
|
use is commercially sensitive, obtain your own legal review.
|
package/licenses/code-39.license
CHANGED
|
@@ -4,7 +4,7 @@ Code 39 — format provenance and usability
|
|
|
4
4
|
This file records where the Code 39 symbology comes from, what governs
|
|
5
5
|
it, and the basis on which this project implements and redistributes it.
|
|
6
6
|
|
|
7
|
-
It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items
|
|
7
|
+
It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items carrying a review label
|
|
8
8
|
have not been independently confirmed by the author.
|
|
9
9
|
|
|
10
10
|
|
|
@@ -12,7 +12,7 @@ ORIGIN
|
|
|
12
12
|
--------------------------------------------------------------------------
|
|
13
13
|
|
|
14
14
|
Devised in 1974 at Intermec, credited to Dr. David Allais and Ray Stevens.
|
|
15
|
-
[
|
|
15
|
+
[LEGAL REVIEW] One of the oldest alphanumeric symbologies still in general
|
|
16
16
|
use.
|
|
17
17
|
|
|
18
18
|
|
|
@@ -32,14 +32,14 @@ PATENT STATUS
|
|
|
32
32
|
--------------------------------------------------------------------------
|
|
33
33
|
|
|
34
34
|
The originating patents date from the 1970s-1980s and are understood to
|
|
35
|
-
have expired long ago. [
|
|
35
|
+
have expired long ago. [PATENT FAMILY REVIEW REQUIRED]
|
|
36
36
|
|
|
37
37
|
|
|
38
38
|
TRADEMARK
|
|
39
39
|
--------------------------------------------------------------------------
|
|
40
40
|
|
|
41
41
|
No live trademark restriction on implementing Code 39 is known to the
|
|
42
|
-
author. [
|
|
42
|
+
author. [REGISTRY CHECK REQUIRED] That is a statement about the author's knowledge, not
|
|
43
43
|
a finding that no mark subsists: no trademark search was carried out.
|
|
44
44
|
|
|
45
45
|
A trademark does not restrict implementing a symbology. It restricts
|
|
@@ -65,6 +65,6 @@ is distributed under the MIT License with no additional restriction.
|
|
|
65
65
|
References relied upon:
|
|
66
66
|
- ISO/IEC 16388, ISO/IEC
|
|
67
67
|
|
|
68
|
-
This is an engineering assessment, not legal advice.
|
|
69
|
-
|
|
68
|
+
This is an engineering assessment, not legal advice. Open review labels
|
|
69
|
+
Open review labels identify claims that have not been independently confirmed by the author. If your
|
|
70
70
|
use is commercially sensitive, obtain your own legal review.
|
package/licenses/code-93.license
CHANGED
|
@@ -4,7 +4,7 @@ Code 93 — format provenance and usability
|
|
|
4
4
|
This file records where the Code 93 symbology comes from, what governs
|
|
5
5
|
it, and the basis on which this project implements and redistributes it.
|
|
6
6
|
|
|
7
|
-
It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items
|
|
7
|
+
It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items carrying a review label
|
|
8
8
|
have not been independently confirmed by the author.
|
|
9
9
|
|
|
10
10
|
|
|
@@ -12,7 +12,7 @@ ORIGIN
|
|
|
12
12
|
--------------------------------------------------------------------------
|
|
13
13
|
|
|
14
14
|
Introduced by Intermec in 1982 as a denser successor to Code 39, adding
|
|
15
|
-
two check characters. [
|
|
15
|
+
two check characters. [VERIFIED FACT]
|
|
16
16
|
|
|
17
17
|
|
|
18
18
|
SPECIFICATION
|
|
@@ -33,14 +33,14 @@ PATENT STATUS
|
|
|
33
33
|
--------------------------------------------------------------------------
|
|
34
34
|
|
|
35
35
|
The originating patents date from the 1970s-1980s and are understood to
|
|
36
|
-
have expired long ago. [
|
|
36
|
+
have expired long ago. [PATENT FAMILY REVIEW REQUIRED]
|
|
37
37
|
|
|
38
38
|
|
|
39
39
|
TRADEMARK
|
|
40
40
|
--------------------------------------------------------------------------
|
|
41
41
|
|
|
42
42
|
No live trademark restriction on implementing Code 93 is known to the
|
|
43
|
-
author. [
|
|
43
|
+
author. [REGISTRY CHECK REQUIRED] That is a statement about the author's knowledge, not
|
|
44
44
|
a finding that no mark subsists: no trademark search was carried out.
|
|
45
45
|
|
|
46
46
|
A trademark does not restrict implementing a symbology. It restricts
|
|
@@ -64,8 +64,8 @@ implementable and redistributable, and this project's implementation of it
|
|
|
64
64
|
is distributed under the MIT License with no additional restriction.
|
|
65
65
|
|
|
66
66
|
References relied upon:
|
|
67
|
-
- AIM published specification for Code 93 [
|
|
67
|
+
- AIM published specification for Code 93 [LICENSE TERMS REVIEW REQUIRED]
|
|
68
68
|
|
|
69
|
-
This is an engineering assessment, not legal advice.
|
|
70
|
-
|
|
69
|
+
This is an engineering assessment, not legal advice. Open review labels
|
|
70
|
+
Open review labels identify claims that have not been independently confirmed by the author. If your
|
|
71
71
|
use is commercially sensitive, obtain your own legal review.
|
|
@@ -4,7 +4,7 @@ Data Matrix ECC 200 — format provenance and usability
|
|
|
4
4
|
This file records where the Data Matrix ECC 200 symbology comes from, what governs
|
|
5
5
|
it, and the basis on which this project implements and redistributes it.
|
|
6
6
|
|
|
7
|
-
It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items
|
|
7
|
+
It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items carrying a review label
|
|
8
8
|
have not been independently confirmed by the author.
|
|
9
9
|
|
|
10
10
|
|
|
@@ -13,8 +13,8 @@ ORIGIN
|
|
|
13
13
|
|
|
14
14
|
Data Matrix emerged from industrial automatic-identification work
|
|
15
15
|
associated with International Data Matrix and later RVSI/CI Matrix in the
|
|
16
|
-
late 1980s and early 1990s. The
|
|
17
|
-
|
|
16
|
+
late 1980s and early 1990s. The patent record supports the International Data
|
|
17
|
+
Matrix attribution; the complete corporate chronology remains [LEGAL REVIEW].
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
SPECIFICATION
|
|
@@ -38,16 +38,16 @@ PATENT STATUS
|
|
|
38
38
|
Patent rights associated with ECC 200 have been reported as released for
|
|
39
39
|
public use by an earlier rights holder, but the original patents, chain of
|
|
40
40
|
title and release terms have not been independently confirmed by the
|
|
41
|
-
author. [
|
|
41
|
+
author. [PATENT FAMILY REVIEW REQUIRED]
|
|
42
42
|
|
|
43
43
|
|
|
44
44
|
TRADEMARK
|
|
45
45
|
--------------------------------------------------------------------------
|
|
46
46
|
|
|
47
47
|
The current registration status and ownership of the words "Data Matrix"
|
|
48
|
-
have not been independently established. [
|
|
48
|
+
have not been independently established. [REGISTRY CHECK REQUIRED] "GS1" and "GS1
|
|
49
49
|
DataMatrix" are GS1 designations; their use is descriptive here and does
|
|
50
|
-
not imply endorsement. [
|
|
50
|
+
not imply endorsement. [REGISTRY CHECK REQUIRED]
|
|
51
51
|
|
|
52
52
|
A trademark does not restrict implementing a symbology. It restricts
|
|
53
53
|
branding — how a product names and presents itself.
|
|
@@ -68,15 +68,15 @@ CONCLUSION
|
|
|
68
68
|
This project's original implementation is distributed under the MIT
|
|
69
69
|
License. The ISO/IEC and GS1 references establish the technical standards;
|
|
70
70
|
this engineering inventory does not claim to have resolved the
|
|
71
|
-
patent-release or trademark entries that remain
|
|
71
|
+
patent-release or trademark entries that remain open for review.
|
|
72
72
|
|
|
73
73
|
References relied upon:
|
|
74
74
|
- ISO/IEC 16022:2024, ISO/IEC
|
|
75
75
|
- GS1 General Specifications, GS1 AISBL
|
|
76
76
|
- GS1 DataMatrix Guideline, GS1 AISBL
|
|
77
|
-
- Reported ECC 200 patent-release position [
|
|
78
|
-
- Data Matrix trademark status and ownership [
|
|
77
|
+
- Reported ECC 200 patent-release position [PATENT FAMILY REVIEW REQUIRED]
|
|
78
|
+
- Data Matrix trademark status and ownership [REGISTRY CHECK REQUIRED]
|
|
79
79
|
|
|
80
|
-
This is an engineering assessment, not legal advice.
|
|
81
|
-
|
|
80
|
+
This is an engineering assessment, not legal advice. Open review labels
|
|
81
|
+
Open review labels identify claims that have not been independently confirmed by the author. If your
|
|
82
82
|
use is commercially sensitive, obtain your own legal review.
|
package/licenses/ean-13.license
CHANGED
|
@@ -4,7 +4,7 @@ EAN-13 — format provenance and usability
|
|
|
4
4
|
This file records where the EAN-13 symbology comes from, what governs
|
|
5
5
|
it, and the basis on which this project implements and redistributes it.
|
|
6
6
|
|
|
7
|
-
It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items
|
|
7
|
+
It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items carrying a review label
|
|
8
8
|
have not been independently confirmed by the author.
|
|
9
9
|
|
|
10
10
|
|
|
@@ -20,7 +20,7 @@ SPECIFICATION
|
|
|
20
20
|
|
|
21
21
|
ISO/IEC 15420 — EAN/UPC bar code symbology specification.
|
|
22
22
|
GS1 General Specifications, GS1 AISBL — freely published; redistribution
|
|
23
|
-
terms are GS1's own [
|
|
23
|
+
terms are GS1's own [LICENSE TERMS REVIEW REQUIRED]
|
|
24
24
|
|
|
25
25
|
Specification TEXT is copyrighted by its publisher. The SYMBOLOGY it
|
|
26
26
|
describes is not — an encoding scheme is a system, not a work of
|
|
@@ -32,7 +32,7 @@ PATENT STATUS
|
|
|
32
32
|
--------------------------------------------------------------------------
|
|
33
33
|
|
|
34
34
|
The originating patents date from the 1970s-1980s and are understood to
|
|
35
|
-
have expired long ago. [
|
|
35
|
+
have expired long ago. [PATENT FAMILY REVIEW REQUIRED]
|
|
36
36
|
|
|
37
37
|
|
|
38
38
|
TRADEMARK
|
|
@@ -63,8 +63,8 @@ is distributed under the MIT License with no additional restriction.
|
|
|
63
63
|
References relied upon:
|
|
64
64
|
- ISO/IEC 15420, ISO/IEC
|
|
65
65
|
- GS1 General Specifications, GS1 AISBL — freely published;
|
|
66
|
-
redistribution terms are GS1's own [
|
|
66
|
+
redistribution terms are GS1's own [LICENSE TERMS REVIEW REQUIRED]
|
|
67
67
|
|
|
68
|
-
This is an engineering assessment, not legal advice.
|
|
69
|
-
|
|
68
|
+
This is an engineering assessment, not legal advice. Open review labels
|
|
69
|
+
Open review labels identify claims that have not been independently confirmed by the author. If your
|
|
70
70
|
use is commercially sensitive, obtain your own legal review.
|
package/licenses/ean-8.license
CHANGED
|
@@ -4,7 +4,7 @@ EAN-8 — format provenance and usability
|
|
|
4
4
|
This file records where the EAN-8 symbology comes from, what governs
|
|
5
5
|
it, and the basis on which this project implements and redistributes it.
|
|
6
6
|
|
|
7
|
-
It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items
|
|
7
|
+
It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items carrying a review label
|
|
8
8
|
have not been independently confirmed by the author.
|
|
9
9
|
|
|
10
10
|
|
|
@@ -20,7 +20,7 @@ SPECIFICATION
|
|
|
20
20
|
|
|
21
21
|
ISO/IEC 15420 — EAN/UPC bar code symbology specification.
|
|
22
22
|
GS1 General Specifications, GS1 AISBL — freely published; redistribution
|
|
23
|
-
terms are GS1's own [
|
|
23
|
+
terms are GS1's own [LICENSE TERMS REVIEW REQUIRED]
|
|
24
24
|
|
|
25
25
|
Specification TEXT is copyrighted by its publisher. The SYMBOLOGY it
|
|
26
26
|
describes is not — an encoding scheme is a system, not a work of
|
|
@@ -32,7 +32,7 @@ PATENT STATUS
|
|
|
32
32
|
--------------------------------------------------------------------------
|
|
33
33
|
|
|
34
34
|
The originating patents date from the 1970s-1980s and are understood to
|
|
35
|
-
have expired long ago. [
|
|
35
|
+
have expired long ago. [PATENT FAMILY REVIEW REQUIRED]
|
|
36
36
|
|
|
37
37
|
|
|
38
38
|
TRADEMARK
|
|
@@ -63,8 +63,8 @@ is distributed under the MIT License with no additional restriction.
|
|
|
63
63
|
References relied upon:
|
|
64
64
|
- ISO/IEC 15420, ISO/IEC
|
|
65
65
|
- GS1 General Specifications, GS1 AISBL — freely published;
|
|
66
|
-
redistribution terms are GS1's own [
|
|
66
|
+
redistribution terms are GS1's own [LICENSE TERMS REVIEW REQUIRED]
|
|
67
67
|
|
|
68
|
-
This is an engineering assessment, not legal advice.
|
|
69
|
-
|
|
68
|
+
This is an engineering assessment, not legal advice. Open review labels
|
|
69
|
+
Open review labels identify claims that have not been independently confirmed by the author. If your
|
|
70
70
|
use is commercially sensitive, obtain your own legal review.
|
package/licenses/gs1-128.license
CHANGED
|
@@ -4,7 +4,7 @@ GS1-128 — format provenance and usability
|
|
|
4
4
|
This file records where the GS1-128 symbology comes from, what governs
|
|
5
5
|
it, and the basis on which this project implements and redistributes it.
|
|
6
6
|
|
|
7
|
-
It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items
|
|
7
|
+
It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items carrying a review label
|
|
8
8
|
have not been independently confirmed by the author.
|
|
9
9
|
|
|
10
10
|
|
|
@@ -21,7 +21,7 @@ SPECIFICATION
|
|
|
21
21
|
|
|
22
22
|
ISO/IEC 15417 — Code 128 (the underlying symbology).
|
|
23
23
|
GS1 General Specifications, GS1 AISBL — freely published; redistribution
|
|
24
|
-
terms are GS1's own [
|
|
24
|
+
terms are GS1's own [LICENSE TERMS REVIEW REQUIRED] (the Application Identifier rules)
|
|
25
25
|
|
|
26
26
|
Specification TEXT is copyrighted by its publisher. The SYMBOLOGY it
|
|
27
27
|
describes is not — an encoding scheme is a system, not a work of
|
|
@@ -32,7 +32,7 @@ redistribute or excerpt any specification document.
|
|
|
32
32
|
PATENT STATUS
|
|
33
33
|
--------------------------------------------------------------------------
|
|
34
34
|
|
|
35
|
-
Inherits Code 128's position; understood expired. [
|
|
35
|
+
Inherits Code 128's position; understood expired. [PATENT FAMILY REVIEW REQUIRED]
|
|
36
36
|
|
|
37
37
|
|
|
38
38
|
TRADEMARK
|
|
@@ -64,8 +64,8 @@ is distributed under the MIT License with no additional restriction.
|
|
|
64
64
|
References relied upon:
|
|
65
65
|
- ISO/IEC 15417, ISO/IEC
|
|
66
66
|
- GS1 General Specifications, GS1 AISBL — freely published;
|
|
67
|
-
redistribution terms are GS1's own [
|
|
67
|
+
redistribution terms are GS1's own [LICENSE TERMS REVIEW REQUIRED]
|
|
68
68
|
|
|
69
|
-
This is an engineering assessment, not legal advice.
|
|
70
|
-
|
|
69
|
+
This is an engineering assessment, not legal advice. Open review labels
|
|
70
|
+
Open review labels identify claims that have not been independently confirmed by the author. If your
|
|
71
71
|
use is commercially sensitive, obtain your own legal review.
|
package/licenses/isbn.license
CHANGED
|
@@ -4,7 +4,7 @@ ISBN (Bookland EAN-13) — format provenance and usability
|
|
|
4
4
|
This file records where the ISBN (Bookland EAN-13) symbology comes from, what governs
|
|
5
5
|
it, and the basis on which this project implements and redistributes it.
|
|
6
6
|
|
|
7
|
-
It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items
|
|
7
|
+
It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items carrying a review label
|
|
8
8
|
have not been independently confirmed by the author.
|
|
9
9
|
|
|
10
10
|
|
|
@@ -23,7 +23,7 @@ SPECIFICATION
|
|
|
23
23
|
ISO 2108 — International Standard Book Number (the numbering rules).
|
|
24
24
|
ISO/IEC 15420 — EAN/UPC bar code symbology specification (the symbol).
|
|
25
25
|
GS1 General Specifications, GS1 AISBL — freely published; redistribution
|
|
26
|
-
terms are GS1's own [
|
|
26
|
+
terms are GS1's own [LICENSE TERMS REVIEW REQUIRED]
|
|
27
27
|
|
|
28
28
|
Specification TEXT is copyrighted by its publisher. The SYMBOLOGY it
|
|
29
29
|
describes is not — an encoding scheme is a system, not a work of
|
|
@@ -35,7 +35,7 @@ PATENT STATUS
|
|
|
35
35
|
--------------------------------------------------------------------------
|
|
36
36
|
|
|
37
37
|
No patent encumbrance is known for either the numbering scheme or the
|
|
38
|
-
EAN-13 symbol used to print it. [
|
|
38
|
+
EAN-13 symbol used to print it. [LEGAL REVIEW]
|
|
39
39
|
|
|
40
40
|
|
|
41
41
|
TRADEMARK
|
|
@@ -43,7 +43,7 @@ TRADEMARK
|
|
|
43
43
|
|
|
44
44
|
No live trademark restriction is known on implementing ISBN encoding.
|
|
45
45
|
"ISBN" is a standard designation administered by the International ISBN
|
|
46
|
-
Agency. [
|
|
46
|
+
Agency. [REGISTRY CHECK REQUIRED]
|
|
47
47
|
|
|
48
48
|
A trademark does not restrict implementing a symbology. It restricts
|
|
49
49
|
branding — how a product names and presents itself.
|
|
@@ -69,8 +69,8 @@ References relied upon:
|
|
|
69
69
|
- ISO 2108, ISO
|
|
70
70
|
- ISO/IEC 15420, ISO/IEC
|
|
71
71
|
- GS1 General Specifications, GS1 AISBL — freely published;
|
|
72
|
-
redistribution terms are GS1's own [
|
|
72
|
+
redistribution terms are GS1's own [LICENSE TERMS REVIEW REQUIRED]
|
|
73
73
|
|
|
74
|
-
This is an engineering assessment, not legal advice.
|
|
75
|
-
|
|
74
|
+
This is an engineering assessment, not legal advice. Open review labels
|
|
75
|
+
Open review labels identify claims that have not been independently confirmed by the author. If your
|
|
76
76
|
use is commercially sensitive, obtain your own legal review.
|