@progress/kendo-charts 1.19.1 → 1.20.0-dev.202111121622

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.
Files changed (61) hide show
  1. package/dist/cdn/js/kendo-charts.js +1 -1
  2. package/dist/cdn/main.js +1 -1
  3. package/dist/es/chart/chart.js +15 -6
  4. package/dist/es/chart/constants.js +3 -1
  5. package/dist/es/chart/pan-and-zoom/mousewheel-zoom.js +8 -4
  6. package/dist/es/chart/selection.js +41 -1
  7. package/dist/es/common/mousewheel-delta.js +4 -7
  8. package/dist/es/core/axis.js +47 -0
  9. package/dist/es/core/category-axis.js +62 -20
  10. package/dist/es/core/date-category-axis.js +26 -38
  11. package/dist/es/core/date-value-axis.js +37 -40
  12. package/dist/es/core/logarithmic-axis.js +62 -88
  13. package/dist/es/core/numeric-axis.js +57 -81
  14. package/dist/es/main.js +1 -0
  15. package/dist/es/qrcode/encodings/data-modes/alpha-numeric-data-mode.js +103 -0
  16. package/dist/es/qrcode/encodings/data-modes/byte-data-mode.js +51 -0
  17. package/dist/es/qrcode/encodings/data-modes/data-mode-instances.js +12 -0
  18. package/dist/es/qrcode/encodings/data-modes/numeric-data-mode.js +49 -0
  19. package/dist/es/qrcode/encodings/data-modes/qr-data-mode.js +50 -0
  20. package/dist/es/qrcode/encodings/encoders/iso-encoder.js +29 -0
  21. package/dist/es/qrcode/encodings/encoders/utf8-encoder.js +91 -0
  22. package/dist/es/qrcode/encodings/encoding-result.js +16 -0
  23. package/dist/es/qrcode/encodings/encoding.js +701 -0
  24. package/dist/es/qrcode/encodings/free-cell-visitor.js +57 -0
  25. package/dist/es/qrcode/encodings/version-codewords.js +1289 -0
  26. package/dist/es/qrcode/qrcode.js +403 -0
  27. package/dist/es/qrcode/utils.js +28 -0
  28. package/dist/es/qrcode.js +1 -0
  29. package/dist/es/stock/navigator.js +3 -2
  30. package/dist/es2015/chart/chart.js +15 -6
  31. package/dist/es2015/chart/constants.js +3 -1
  32. package/dist/es2015/chart/pan-and-zoom/mousewheel-zoom.js +6 -4
  33. package/dist/es2015/chart/selection.js +40 -1
  34. package/dist/es2015/common/mousewheel-delta.js +4 -7
  35. package/dist/es2015/core/axis.js +39 -0
  36. package/dist/es2015/core/category-axis.js +56 -18
  37. package/dist/es2015/core/date-category-axis.js +27 -36
  38. package/dist/es2015/core/date-value-axis.js +35 -40
  39. package/dist/es2015/core/logarithmic-axis.js +52 -83
  40. package/dist/es2015/core/numeric-axis.js +47 -78
  41. package/dist/es2015/main.js +1 -0
  42. package/dist/es2015/qrcode/encodings/data-modes/alpha-numeric-data-mode.js +91 -0
  43. package/dist/es2015/qrcode/encodings/data-modes/byte-data-mode.js +41 -0
  44. package/dist/es2015/qrcode/encodings/data-modes/data-mode-instances.js +13 -0
  45. package/dist/es2015/qrcode/encodings/data-modes/numeric-data-mode.js +39 -0
  46. package/dist/es2015/qrcode/encodings/data-modes/qr-data-mode.js +44 -0
  47. package/dist/es2015/qrcode/encodings/encoders/iso-encoder.js +19 -0
  48. package/dist/es2015/qrcode/encodings/encoders/utf8-encoder.js +83 -0
  49. package/dist/es2015/qrcode/encodings/encoding-result.js +10 -0
  50. package/dist/es2015/qrcode/encodings/encoding.js +701 -0
  51. package/dist/es2015/qrcode/encodings/free-cell-visitor.js +49 -0
  52. package/dist/es2015/qrcode/encodings/version-codewords.js +1289 -0
  53. package/dist/es2015/qrcode/qrcode.js +395 -0
  54. package/dist/es2015/qrcode/utils.js +28 -0
  55. package/dist/es2015/qrcode.js +1 -0
  56. package/dist/es2015/stock/navigator.js +3 -2
  57. package/dist/npm/main.d.ts +1 -0
  58. package/dist/npm/main.js +3172 -283
  59. package/dist/npm/qrcode.d.ts +5 -0
  60. package/dist/systemjs/kendo-charts.js +1 -1
  61. package/package.json +1 -1
@@ -0,0 +1,1289 @@
1
+ export var VersionsCodewordsInformation = [{
2
+ L: {
3
+ groups: [
4
+ [1, 19]
5
+ ],
6
+ totalDataCodewords: 19,
7
+ errorCodewordsPerBlock: 7
8
+ },
9
+ M: {
10
+ groups: [
11
+ [1, 16]
12
+ ],
13
+ totalDataCodewords: 16,
14
+ errorCodewordsPerBlock: 10
15
+ },
16
+ Q: {
17
+ groups: [
18
+ [1, 13]
19
+ ],
20
+ totalDataCodewords: 13,
21
+ errorCodewordsPerBlock: 13
22
+ },
23
+ H: {
24
+ groups: [
25
+ [1, 9]
26
+ ],
27
+ totalDataCodewords: 9,
28
+ errorCodewordsPerBlock: 17
29
+ }
30
+ }, {
31
+ L: {
32
+ groups: [
33
+ [1, 34]
34
+ ],
35
+ totalDataCodewords: 34,
36
+ errorCodewordsPerBlock: 10
37
+ },
38
+ M: {
39
+ groups: [
40
+ [1, 28]
41
+ ],
42
+ totalDataCodewords: 28,
43
+ errorCodewordsPerBlock: 16
44
+ },
45
+ Q: {
46
+ groups: [
47
+ [1, 22]
48
+ ],
49
+ totalDataCodewords: 22,
50
+ errorCodewordsPerBlock: 22
51
+ },
52
+ H: {
53
+ groups: [
54
+ [1, 16]
55
+ ],
56
+ totalDataCodewords: 16,
57
+ errorCodewordsPerBlock: 28
58
+ }
59
+ }, {
60
+ L: {
61
+ groups: [
62
+ [1, 55]
63
+ ],
64
+ totalDataCodewords: 55,
65
+ errorCodewordsPerBlock: 15
66
+ },
67
+ M: {
68
+ groups: [
69
+ [1, 44]
70
+ ],
71
+ totalDataCodewords: 44,
72
+ errorCodewordsPerBlock: 26
73
+ },
74
+ Q: {
75
+ groups: [
76
+ [2, 17]
77
+ ],
78
+ totalDataCodewords: 34,
79
+ errorCodewordsPerBlock: 18
80
+ },
81
+ H: {
82
+ groups: [
83
+ [2, 13]
84
+ ],
85
+ totalDataCodewords: 26,
86
+ errorCodewordsPerBlock: 22
87
+ }
88
+ }, {
89
+ L: {
90
+ groups: [
91
+ [1, 80]
92
+ ],
93
+ totalDataCodewords: 80,
94
+ errorCodewordsPerBlock: 20
95
+ },
96
+ M: {
97
+ groups: [
98
+ [2, 32]
99
+ ],
100
+ totalDataCodewords: 64,
101
+ errorCodewordsPerBlock: 18
102
+ },
103
+ Q: {
104
+ groups: [
105
+ [2, 24]
106
+ ],
107
+ totalDataCodewords: 48,
108
+ errorCodewordsPerBlock: 26
109
+ },
110
+ H: {
111
+ groups: [
112
+ [4, 9]
113
+ ],
114
+ totalDataCodewords: 36,
115
+ errorCodewordsPerBlock: 16
116
+ }
117
+ }, {
118
+ L: {
119
+ groups: [
120
+ [1, 108]
121
+ ],
122
+ totalDataCodewords: 108,
123
+ errorCodewordsPerBlock: 26
124
+ },
125
+ M: {
126
+ groups: [
127
+ [2, 43]
128
+ ],
129
+ totalDataCodewords: 86,
130
+ errorCodewordsPerBlock: 24
131
+ },
132
+ Q: {
133
+ groups: [
134
+ [2, 15],
135
+ [2, 16]
136
+ ],
137
+ totalDataCodewords: 62,
138
+ errorCodewordsPerBlock: 18
139
+ },
140
+ H: {
141
+ groups: [
142
+ [2, 11],
143
+ [2, 12]
144
+ ],
145
+ totalDataCodewords: 46,
146
+ errorCodewordsPerBlock: 22
147
+ }
148
+ }, {
149
+ L: {
150
+ groups: [
151
+ [2, 68]
152
+ ],
153
+ totalDataCodewords: 136,
154
+ errorCodewordsPerBlock: 18
155
+ },
156
+ M: {
157
+ groups: [
158
+ [4, 27]
159
+ ],
160
+ totalDataCodewords: 108,
161
+ errorCodewordsPerBlock: 16
162
+ },
163
+ Q: {
164
+ groups: [
165
+ [4, 19]
166
+ ],
167
+ totalDataCodewords: 76,
168
+ errorCodewordsPerBlock: 24
169
+ },
170
+ H: {
171
+ groups: [
172
+ [4, 15]
173
+ ],
174
+ totalDataCodewords: 60,
175
+ errorCodewordsPerBlock: 28
176
+ }
177
+ }, {
178
+ L: {
179
+ groups: [
180
+ [2, 78]
181
+ ],
182
+ totalDataCodewords: 156,
183
+ errorCodewordsPerBlock: 20
184
+ },
185
+ M: {
186
+ groups: [
187
+ [4, 31]
188
+ ],
189
+ totalDataCodewords: 124,
190
+ errorCodewordsPerBlock: 18
191
+ },
192
+ Q: {
193
+ groups: [
194
+ [2, 14],
195
+ [4, 15]
196
+ ],
197
+ totalDataCodewords: 88,
198
+ errorCodewordsPerBlock: 18
199
+ },
200
+ H: {
201
+ groups: [
202
+ [4, 13],
203
+ [1, 14]
204
+ ],
205
+ totalDataCodewords: 66,
206
+ errorCodewordsPerBlock: 26
207
+ }
208
+ }, {
209
+ L: {
210
+ groups: [
211
+ [2, 97]
212
+ ],
213
+ totalDataCodewords: 194,
214
+ errorCodewordsPerBlock: 24
215
+ },
216
+ M: {
217
+ groups: [
218
+ [2, 38],
219
+ [2, 39]
220
+ ],
221
+ totalDataCodewords: 154,
222
+ errorCodewordsPerBlock: 22
223
+ },
224
+ Q: {
225
+ groups: [
226
+ [4, 18],
227
+ [2, 19]
228
+ ],
229
+ totalDataCodewords: 110,
230
+ errorCodewordsPerBlock: 22
231
+ },
232
+ H: {
233
+ groups: [
234
+ [4, 14],
235
+ [2, 15]
236
+ ],
237
+ totalDataCodewords: 86,
238
+ errorCodewordsPerBlock: 26
239
+ }
240
+ }, {
241
+ L: {
242
+ groups: [
243
+ [2, 116]
244
+ ],
245
+ totalDataCodewords: 232,
246
+ errorCodewordsPerBlock: 30
247
+ },
248
+ M: {
249
+ groups: [
250
+ [3, 36],
251
+ [2, 37]
252
+ ],
253
+ totalDataCodewords: 182,
254
+ errorCodewordsPerBlock: 22
255
+ },
256
+ Q: {
257
+ groups: [
258
+ [4, 16],
259
+ [4, 17]
260
+ ],
261
+ totalDataCodewords: 132,
262
+ errorCodewordsPerBlock: 20
263
+ },
264
+ H: {
265
+ groups: [
266
+ [4, 12],
267
+ [4, 13]
268
+ ],
269
+ totalDataCodewords: 100,
270
+ errorCodewordsPerBlock: 24
271
+ }
272
+ }, {
273
+ L: {
274
+ groups: [
275
+ [2, 68],
276
+ [2, 69]
277
+ ],
278
+ totalDataCodewords: 274,
279
+ errorCodewordsPerBlock: 18
280
+ },
281
+ M: {
282
+ groups: [
283
+ [4, 43],
284
+ [1, 44]
285
+ ],
286
+ totalDataCodewords: 216,
287
+ errorCodewordsPerBlock: 26
288
+ },
289
+ Q: {
290
+ groups: [
291
+ [6, 19],
292
+ [2, 20]
293
+ ],
294
+ totalDataCodewords: 154,
295
+ errorCodewordsPerBlock: 24
296
+ },
297
+ H: {
298
+ groups: [
299
+ [6, 15],
300
+ [2, 16]
301
+ ],
302
+ totalDataCodewords: 122,
303
+ errorCodewordsPerBlock: 28
304
+ }
305
+ }, {
306
+ L: {
307
+ groups: [
308
+ [4, 81]
309
+ ],
310
+ totalDataCodewords: 324,
311
+ errorCodewordsPerBlock: 20
312
+ },
313
+ M: {
314
+ groups: [
315
+ [1, 50],
316
+ [4, 51]
317
+ ],
318
+ totalDataCodewords: 254,
319
+ errorCodewordsPerBlock: 30
320
+ },
321
+ Q: {
322
+ groups: [
323
+ [4, 22],
324
+ [4, 23]
325
+ ],
326
+ totalDataCodewords: 180,
327
+ errorCodewordsPerBlock: 28
328
+ },
329
+ H: {
330
+ groups: [
331
+ [3, 12],
332
+ [8, 13]
333
+ ],
334
+ totalDataCodewords: 140,
335
+ errorCodewordsPerBlock: 24
336
+ }
337
+ }, {
338
+ L: {
339
+ groups: [
340
+ [2, 92],
341
+ [2, 93]
342
+ ],
343
+ totalDataCodewords: 370,
344
+ errorCodewordsPerBlock: 24
345
+ },
346
+ M: {
347
+ groups: [
348
+ [6, 36],
349
+ [2, 37]
350
+ ],
351
+ totalDataCodewords: 290,
352
+ errorCodewordsPerBlock: 22
353
+ },
354
+ Q: {
355
+ groups: [
356
+ [4, 20],
357
+ [6, 21]
358
+ ],
359
+ totalDataCodewords: 206,
360
+ errorCodewordsPerBlock: 26
361
+ },
362
+ H: {
363
+ groups: [
364
+ [7, 14],
365
+ [4, 15]
366
+ ],
367
+ totalDataCodewords: 158,
368
+ errorCodewordsPerBlock: 28
369
+ }
370
+ }, {
371
+ L: {
372
+ groups: [
373
+ [4, 107]
374
+ ],
375
+ totalDataCodewords: 428,
376
+ errorCodewordsPerBlock: 26
377
+ },
378
+ M: {
379
+ groups: [
380
+ [8, 37],
381
+ [1, 38]
382
+ ],
383
+ totalDataCodewords: 334,
384
+ errorCodewordsPerBlock: 22
385
+ },
386
+ Q: {
387
+ groups: [
388
+ [8, 20],
389
+ [4, 21]
390
+ ],
391
+ totalDataCodewords: 244,
392
+ errorCodewordsPerBlock: 24
393
+ },
394
+ H: {
395
+ groups: [
396
+ [12, 11],
397
+ [4, 12]
398
+ ],
399
+ totalDataCodewords: 180,
400
+ errorCodewordsPerBlock: 22
401
+ }
402
+ }, {
403
+ L: {
404
+ groups: [
405
+ [3, 115],
406
+ [1, 116]
407
+ ],
408
+ totalDataCodewords: 461,
409
+ errorCodewordsPerBlock: 30
410
+ },
411
+ M: {
412
+ groups: [
413
+ [4, 40],
414
+ [5, 41]
415
+ ],
416
+ totalDataCodewords: 365,
417
+ errorCodewordsPerBlock: 24
418
+ },
419
+ Q: {
420
+ groups: [
421
+ [11, 16],
422
+ [5, 17]
423
+ ],
424
+ totalDataCodewords: 261,
425
+ errorCodewordsPerBlock: 20
426
+ },
427
+ H: {
428
+ groups: [
429
+ [11, 12],
430
+ [5, 13]
431
+ ],
432
+ totalDataCodewords: 197,
433
+ errorCodewordsPerBlock: 24
434
+ }
435
+ }, {
436
+ L: {
437
+ groups: [
438
+ [5, 87],
439
+ [1, 88]
440
+ ],
441
+ totalDataCodewords: 523,
442
+ errorCodewordsPerBlock: 22
443
+ },
444
+ M: {
445
+ groups: [
446
+ [5, 41],
447
+ [5, 42]
448
+ ],
449
+ totalDataCodewords: 415,
450
+ errorCodewordsPerBlock: 24
451
+ },
452
+ Q: {
453
+ groups: [
454
+ [5, 24],
455
+ [7, 25]
456
+ ],
457
+ totalDataCodewords: 295,
458
+ errorCodewordsPerBlock: 30
459
+ },
460
+ H: {
461
+ groups: [
462
+ [11, 12],
463
+ [7, 13]
464
+ ],
465
+ totalDataCodewords: 223,
466
+ errorCodewordsPerBlock: 24
467
+ }
468
+ }, {
469
+ L: {
470
+ groups: [
471
+ [5, 98],
472
+ [1, 99]
473
+ ],
474
+ totalDataCodewords: 589,
475
+ errorCodewordsPerBlock: 24
476
+ },
477
+ M: {
478
+ groups: [
479
+ [7, 45],
480
+ [3, 46]
481
+ ],
482
+ totalDataCodewords: 453,
483
+ errorCodewordsPerBlock: 28
484
+ },
485
+ Q: {
486
+ groups: [
487
+ [15, 19],
488
+ [2, 20]
489
+ ],
490
+ totalDataCodewords: 325,
491
+ errorCodewordsPerBlock: 24
492
+ },
493
+ H: {
494
+ groups: [
495
+ [3, 15],
496
+ [13, 16]
497
+ ],
498
+ totalDataCodewords: 253,
499
+ errorCodewordsPerBlock: 30
500
+ }
501
+ }, {
502
+ L: {
503
+ groups: [
504
+ [1, 107],
505
+ [5, 108]
506
+ ],
507
+ totalDataCodewords: 647,
508
+ errorCodewordsPerBlock: 28
509
+ },
510
+ M: {
511
+ groups: [
512
+ [10, 46],
513
+ [1, 47]
514
+ ],
515
+ totalDataCodewords: 507,
516
+ errorCodewordsPerBlock: 28
517
+ },
518
+ Q: {
519
+ groups: [
520
+ [1, 22],
521
+ [15, 23]
522
+ ],
523
+ totalDataCodewords: 367,
524
+ errorCodewordsPerBlock: 28
525
+ },
526
+ H: {
527
+ groups: [
528
+ [2, 14],
529
+ [17, 15]
530
+ ],
531
+ totalDataCodewords: 283,
532
+ errorCodewordsPerBlock: 28
533
+ }
534
+ }, {
535
+ L: {
536
+ groups: [
537
+ [5, 120],
538
+ [1, 121]
539
+ ],
540
+ totalDataCodewords: 721,
541
+ errorCodewordsPerBlock: 30
542
+ },
543
+ M: {
544
+ groups: [
545
+ [9, 43],
546
+ [4, 44]
547
+ ],
548
+ totalDataCodewords: 563,
549
+ errorCodewordsPerBlock: 26
550
+ },
551
+ Q: {
552
+ groups: [
553
+ [17, 22],
554
+ [1, 23]
555
+ ],
556
+ totalDataCodewords: 397,
557
+ errorCodewordsPerBlock: 28
558
+ },
559
+ H: {
560
+ groups: [
561
+ [2, 14],
562
+ [19, 15]
563
+ ],
564
+ totalDataCodewords: 313,
565
+ errorCodewordsPerBlock: 28
566
+ }
567
+ }, {
568
+ L: {
569
+ groups: [
570
+ [3, 113],
571
+ [4, 114]
572
+ ],
573
+ totalDataCodewords: 795,
574
+ errorCodewordsPerBlock: 28
575
+ },
576
+ M: {
577
+ groups: [
578
+ [3, 44],
579
+ [11, 45]
580
+ ],
581
+ totalDataCodewords: 627,
582
+ errorCodewordsPerBlock: 26
583
+ },
584
+ Q: {
585
+ groups: [
586
+ [17, 21],
587
+ [4, 22]
588
+ ],
589
+ totalDataCodewords: 445,
590
+ errorCodewordsPerBlock: 26
591
+ },
592
+ H: {
593
+ groups: [
594
+ [9, 13],
595
+ [16, 14]
596
+ ],
597
+ totalDataCodewords: 341,
598
+ errorCodewordsPerBlock: 26
599
+ }
600
+ }, {
601
+ L: {
602
+ groups: [
603
+ [3, 107],
604
+ [5, 108]
605
+ ],
606
+ totalDataCodewords: 861,
607
+ errorCodewordsPerBlock: 28
608
+ },
609
+ M: {
610
+ groups: [
611
+ [3, 41],
612
+ [13, 42]
613
+ ],
614
+ totalDataCodewords: 669,
615
+ errorCodewordsPerBlock: 26
616
+ },
617
+ Q: {
618
+ groups: [
619
+ [15, 24],
620
+ [5, 25]
621
+ ],
622
+ totalDataCodewords: 485,
623
+ errorCodewordsPerBlock: 30
624
+ },
625
+ H: {
626
+ groups: [
627
+ [15, 15],
628
+ [10, 16]
629
+ ],
630
+ totalDataCodewords: 385,
631
+ errorCodewordsPerBlock: 28
632
+ }
633
+ }, {
634
+ L: {
635
+ groups: [
636
+ [4, 116],
637
+ [4, 117]
638
+ ],
639
+ totalDataCodewords: 932,
640
+ errorCodewordsPerBlock: 28
641
+ },
642
+ M: {
643
+ groups: [
644
+ [17, 42]
645
+ ],
646
+ totalDataCodewords: 714,
647
+ errorCodewordsPerBlock: 26
648
+ },
649
+ Q: {
650
+ groups: [
651
+ [17, 22],
652
+ [6, 23]
653
+ ],
654
+ totalDataCodewords: 512,
655
+ errorCodewordsPerBlock: 28
656
+ },
657
+ H: {
658
+ groups: [
659
+ [19, 16],
660
+ [6, 17]
661
+ ],
662
+ totalDataCodewords: 406,
663
+ errorCodewordsPerBlock: 30
664
+ }
665
+ }, {
666
+ L: {
667
+ groups: [
668
+ [2, 111],
669
+ [7, 112]
670
+ ],
671
+ totalDataCodewords: 1006,
672
+ errorCodewordsPerBlock: 28
673
+ },
674
+ M: {
675
+ groups: [
676
+ [17, 46]
677
+ ],
678
+ totalDataCodewords: 782,
679
+ errorCodewordsPerBlock: 28
680
+ },
681
+ Q: {
682
+ groups: [
683
+ [7, 24],
684
+ [16, 25]
685
+ ],
686
+ totalDataCodewords: 568,
687
+ errorCodewordsPerBlock: 30
688
+ },
689
+ H: {
690
+ groups: [
691
+ [34, 13]
692
+ ],
693
+ totalDataCodewords: 442,
694
+ errorCodewordsPerBlock: 24
695
+ }
696
+ }, {
697
+ L: {
698
+ groups: [
699
+ [4, 121],
700
+ [5, 122]
701
+ ],
702
+ totalDataCodewords: 1094,
703
+ errorCodewordsPerBlock: 30
704
+ },
705
+ M: {
706
+ groups: [
707
+ [4, 47],
708
+ [14, 48]
709
+ ],
710
+ totalDataCodewords: 860,
711
+ errorCodewordsPerBlock: 28
712
+ },
713
+ Q: {
714
+ groups: [
715
+ [11, 24],
716
+ [14, 25]
717
+ ],
718
+ totalDataCodewords: 614,
719
+ errorCodewordsPerBlock: 30
720
+ },
721
+ H: {
722
+ groups: [
723
+ [16, 15],
724
+ [14, 16]
725
+ ],
726
+ totalDataCodewords: 464,
727
+ errorCodewordsPerBlock: 30
728
+ }
729
+ }, {
730
+ L: {
731
+ groups: [
732
+ [6, 117],
733
+ [4, 118]
734
+ ],
735
+ totalDataCodewords: 1174,
736
+ errorCodewordsPerBlock: 30
737
+ },
738
+ M: {
739
+ groups: [
740
+ [6, 45],
741
+ [14, 46]
742
+ ],
743
+ totalDataCodewords: 914,
744
+ errorCodewordsPerBlock: 28
745
+ },
746
+ Q: {
747
+ groups: [
748
+ [11, 24],
749
+ [16, 25]
750
+ ],
751
+ totalDataCodewords: 664,
752
+ errorCodewordsPerBlock: 30
753
+ },
754
+ H: {
755
+ groups: [
756
+ [30, 16],
757
+ [2, 17]
758
+ ],
759
+ totalDataCodewords: 514,
760
+ errorCodewordsPerBlock: 30
761
+ }
762
+ }, {
763
+ L: {
764
+ groups: [
765
+ [8, 106],
766
+ [4, 107]
767
+ ],
768
+ totalDataCodewords: 1276,
769
+ errorCodewordsPerBlock: 26
770
+ },
771
+ M: {
772
+ groups: [
773
+ [8, 47],
774
+ [13, 48]
775
+ ],
776
+ totalDataCodewords: 1000,
777
+ errorCodewordsPerBlock: 28
778
+ },
779
+ Q: {
780
+ groups: [
781
+ [7, 24],
782
+ [22, 25]
783
+ ],
784
+ totalDataCodewords: 718,
785
+ errorCodewordsPerBlock: 30
786
+ },
787
+ H: {
788
+ groups: [
789
+ [22, 15],
790
+ [13, 16]
791
+ ],
792
+ totalDataCodewords: 538,
793
+ errorCodewordsPerBlock: 30
794
+ }
795
+ }, {
796
+ L: {
797
+ groups: [
798
+ [10, 114],
799
+ [2, 115]
800
+ ],
801
+ totalDataCodewords: 1370,
802
+ errorCodewordsPerBlock: 28
803
+ },
804
+ M: {
805
+ groups: [
806
+ [19, 46],
807
+ [4, 47]
808
+ ],
809
+ totalDataCodewords: 1062,
810
+ errorCodewordsPerBlock: 28
811
+ },
812
+ Q: {
813
+ groups: [
814
+ [28, 22],
815
+ [6, 23]
816
+ ],
817
+ totalDataCodewords: 754,
818
+ errorCodewordsPerBlock: 28
819
+ },
820
+ H: {
821
+ groups: [
822
+ [33, 16],
823
+ [4, 17]
824
+ ],
825
+ totalDataCodewords: 596,
826
+ errorCodewordsPerBlock: 30
827
+ }
828
+ }, {
829
+ L: {
830
+ groups: [
831
+ [8, 122],
832
+ [4, 123]
833
+ ],
834
+ totalDataCodewords: 1468,
835
+ errorCodewordsPerBlock: 30
836
+ },
837
+ M: {
838
+ groups: [
839
+ [22, 45],
840
+ [3, 46]
841
+ ],
842
+ totalDataCodewords: 1128,
843
+ errorCodewordsPerBlock: 28
844
+ },
845
+ Q: {
846
+ groups: [
847
+ [8, 23],
848
+ [26, 24]
849
+ ],
850
+ totalDataCodewords: 808,
851
+ errorCodewordsPerBlock: 30
852
+ },
853
+ H: {
854
+ groups: [
855
+ [12, 15],
856
+ [28, 16]
857
+ ],
858
+ totalDataCodewords: 628,
859
+ errorCodewordsPerBlock: 30
860
+ }
861
+ }, {
862
+ L: {
863
+ groups: [
864
+ [3, 117],
865
+ [10, 118]
866
+ ],
867
+ totalDataCodewords: 1531,
868
+ errorCodewordsPerBlock: 30
869
+ },
870
+ M: {
871
+ groups: [
872
+ [3, 45],
873
+ [23, 46]
874
+ ],
875
+ totalDataCodewords: 1193,
876
+ errorCodewordsPerBlock: 28
877
+ },
878
+ Q: {
879
+ groups: [
880
+ [4, 24],
881
+ [31, 25]
882
+ ],
883
+ totalDataCodewords: 871,
884
+ errorCodewordsPerBlock: 30
885
+ },
886
+ H: {
887
+ groups: [
888
+ [11, 15],
889
+ [31, 16]
890
+ ],
891
+ totalDataCodewords: 661,
892
+ errorCodewordsPerBlock: 30
893
+ }
894
+ }, {
895
+ L: {
896
+ groups: [
897
+ [7, 116],
898
+ [7, 117]
899
+ ],
900
+ totalDataCodewords: 1631,
901
+ errorCodewordsPerBlock: 30
902
+ },
903
+ M: {
904
+ groups: [
905
+ [21, 45],
906
+ [7, 46]
907
+ ],
908
+ totalDataCodewords: 1267,
909
+ errorCodewordsPerBlock: 28
910
+ },
911
+ Q: {
912
+ groups: [
913
+ [1, 23],
914
+ [37, 24]
915
+ ],
916
+ totalDataCodewords: 911,
917
+ errorCodewordsPerBlock: 30
918
+ },
919
+ H: {
920
+ groups: [
921
+ [19, 15],
922
+ [26, 16]
923
+ ],
924
+ totalDataCodewords: 701,
925
+ errorCodewordsPerBlock: 30
926
+ }
927
+ }, {
928
+ L: {
929
+ groups: [
930
+ [5, 115],
931
+ [10, 116]
932
+ ],
933
+ totalDataCodewords: 1735,
934
+ errorCodewordsPerBlock: 30
935
+ },
936
+ M: {
937
+ groups: [
938
+ [19, 47],
939
+ [10, 48]
940
+ ],
941
+ totalDataCodewords: 1373,
942
+ errorCodewordsPerBlock: 28
943
+ },
944
+ Q: {
945
+ groups: [
946
+ [15, 24],
947
+ [25, 25]
948
+ ],
949
+ totalDataCodewords: 985,
950
+ errorCodewordsPerBlock: 30
951
+ },
952
+ H: {
953
+ groups: [
954
+ [23, 15],
955
+ [25, 16]
956
+ ],
957
+ totalDataCodewords: 745,
958
+ errorCodewordsPerBlock: 30
959
+ }
960
+ }, {
961
+ L: {
962
+ groups: [
963
+ [13, 115],
964
+ [3, 116]
965
+ ],
966
+ totalDataCodewords: 1843,
967
+ errorCodewordsPerBlock: 30
968
+ },
969
+ M: {
970
+ groups: [
971
+ [2, 46],
972
+ [29, 47]
973
+ ],
974
+ totalDataCodewords: 1455,
975
+ errorCodewordsPerBlock: 28
976
+ },
977
+ Q: {
978
+ groups: [
979
+ [42, 24],
980
+ [1, 25]
981
+ ],
982
+ totalDataCodewords: 1033,
983
+ errorCodewordsPerBlock: 30
984
+ },
985
+ H: {
986
+ groups: [
987
+ [23, 15],
988
+ [28, 16]
989
+ ],
990
+ totalDataCodewords: 793,
991
+ errorCodewordsPerBlock: 30
992
+ }
993
+ }, {
994
+ L: {
995
+ groups: [
996
+ [17, 115]
997
+ ],
998
+ totalDataCodewords: 1955,
999
+ errorCodewordsPerBlock: 30
1000
+ },
1001
+ M: {
1002
+ groups: [
1003
+ [10, 46],
1004
+ [23, 47]
1005
+ ],
1006
+ totalDataCodewords: 1541,
1007
+ errorCodewordsPerBlock: 28
1008
+ },
1009
+ Q: {
1010
+ groups: [
1011
+ [10, 24],
1012
+ [35, 25]
1013
+ ],
1014
+ totalDataCodewords: 1115,
1015
+ errorCodewordsPerBlock: 30
1016
+ },
1017
+ H: {
1018
+ groups: [
1019
+ [19, 15],
1020
+ [35, 16]
1021
+ ],
1022
+ totalDataCodewords: 845,
1023
+ errorCodewordsPerBlock: 30
1024
+ }
1025
+ }, {
1026
+ L: {
1027
+ groups: [
1028
+ [17, 115],
1029
+ [1, 116]
1030
+ ],
1031
+ totalDataCodewords: 2071,
1032
+ errorCodewordsPerBlock: 30
1033
+ },
1034
+ M: {
1035
+ groups: [
1036
+ [14, 46],
1037
+ [21, 47]
1038
+ ],
1039
+ totalDataCodewords: 1631,
1040
+ errorCodewordsPerBlock: 28
1041
+ },
1042
+ Q: {
1043
+ groups: [
1044
+ [29, 24],
1045
+ [19, 25]
1046
+ ],
1047
+ totalDataCodewords: 1171,
1048
+ errorCodewordsPerBlock: 30
1049
+ },
1050
+ H: {
1051
+ groups: [
1052
+ [11, 15],
1053
+ [46, 16]
1054
+ ],
1055
+ totalDataCodewords: 901,
1056
+ errorCodewordsPerBlock: 30
1057
+ }
1058
+ }, {
1059
+ L: {
1060
+ groups: [
1061
+ [13, 115],
1062
+ [6, 116]
1063
+ ],
1064
+ totalDataCodewords: 2191,
1065
+ errorCodewordsPerBlock: 30
1066
+ },
1067
+ M: {
1068
+ groups: [
1069
+ [14, 46],
1070
+ [23, 47]
1071
+ ],
1072
+ totalDataCodewords: 1725,
1073
+ errorCodewordsPerBlock: 28
1074
+ },
1075
+ Q: {
1076
+ groups: [
1077
+ [44, 24],
1078
+ [7, 25]
1079
+ ],
1080
+ totalDataCodewords: 1231,
1081
+ errorCodewordsPerBlock: 30
1082
+ },
1083
+ H: {
1084
+ groups: [
1085
+ [59, 16],
1086
+ [1, 17]
1087
+ ],
1088
+ totalDataCodewords: 961,
1089
+ errorCodewordsPerBlock: 30
1090
+ }
1091
+ }, {
1092
+ L: {
1093
+ groups: [
1094
+ [12, 121],
1095
+ [7, 122]
1096
+ ],
1097
+ totalDataCodewords: 2306,
1098
+ errorCodewordsPerBlock: 30
1099
+ },
1100
+ M: {
1101
+ groups: [
1102
+ [12, 47],
1103
+ [26, 48]
1104
+ ],
1105
+ totalDataCodewords: 1812,
1106
+ errorCodewordsPerBlock: 28
1107
+ },
1108
+ Q: {
1109
+ groups: [
1110
+ [39, 24],
1111
+ [14, 25]
1112
+ ],
1113
+ totalDataCodewords: 1286,
1114
+ errorCodewordsPerBlock: 30
1115
+ },
1116
+ H: {
1117
+ groups: [
1118
+ [22, 15],
1119
+ [41, 16]
1120
+ ],
1121
+ totalDataCodewords: 986,
1122
+ errorCodewordsPerBlock: 30
1123
+ }
1124
+ }, {
1125
+ L: {
1126
+ groups: [
1127
+ [6, 121],
1128
+ [14, 122]
1129
+ ],
1130
+ totalDataCodewords: 2434,
1131
+ errorCodewordsPerBlock: 30
1132
+ },
1133
+ M: {
1134
+ groups: [
1135
+ [6, 47],
1136
+ [34, 48]
1137
+ ],
1138
+ totalDataCodewords: 1914,
1139
+ errorCodewordsPerBlock: 28
1140
+ },
1141
+ Q: {
1142
+ groups: [
1143
+ [46, 24],
1144
+ [10, 25]
1145
+ ],
1146
+ totalDataCodewords: 1354,
1147
+ errorCodewordsPerBlock: 30
1148
+ },
1149
+ H: {
1150
+ groups: [
1151
+ [2, 15],
1152
+ [64, 16]
1153
+ ],
1154
+ totalDataCodewords: 1054,
1155
+ errorCodewordsPerBlock: 30
1156
+ }
1157
+ }, {
1158
+ L: {
1159
+ groups: [
1160
+ [17, 122],
1161
+ [4, 123]
1162
+ ],
1163
+ totalDataCodewords: 2566,
1164
+ errorCodewordsPerBlock: 30
1165
+ },
1166
+ M: {
1167
+ groups: [
1168
+ [29, 46],
1169
+ [14, 47]
1170
+ ],
1171
+ totalDataCodewords: 1992,
1172
+ errorCodewordsPerBlock: 28
1173
+ },
1174
+ Q: {
1175
+ groups: [
1176
+ [49, 24],
1177
+ [10, 25]
1178
+ ],
1179
+ totalDataCodewords: 1426,
1180
+ errorCodewordsPerBlock: 30
1181
+ },
1182
+ H: {
1183
+ groups: [
1184
+ [24, 15],
1185
+ [46, 16]
1186
+ ],
1187
+ totalDataCodewords: 1096,
1188
+ errorCodewordsPerBlock: 30
1189
+ }
1190
+ }, {
1191
+ L: {
1192
+ groups: [
1193
+ [4, 122],
1194
+ [18, 123]
1195
+ ],
1196
+ totalDataCodewords: 2702,
1197
+ errorCodewordsPerBlock: 30
1198
+ },
1199
+ M: {
1200
+ groups: [
1201
+ [13, 46],
1202
+ [32, 47]
1203
+ ],
1204
+ totalDataCodewords: 2102,
1205
+ errorCodewordsPerBlock: 28
1206
+ },
1207
+ Q: {
1208
+ groups: [
1209
+ [48, 24],
1210
+ [14, 25]
1211
+ ],
1212
+ totalDataCodewords: 1502,
1213
+ errorCodewordsPerBlock: 30
1214
+ },
1215
+ H: {
1216
+ groups: [
1217
+ [42, 15],
1218
+ [32, 16]
1219
+ ],
1220
+ totalDataCodewords: 1142,
1221
+ errorCodewordsPerBlock: 30
1222
+ }
1223
+ }, {
1224
+ L: {
1225
+ groups: [
1226
+ [20, 117],
1227
+ [4, 118]
1228
+ ],
1229
+ totalDataCodewords: 2812,
1230
+ errorCodewordsPerBlock: 30
1231
+ },
1232
+ M: {
1233
+ groups: [
1234
+ [40, 47],
1235
+ [7, 48]
1236
+ ],
1237
+ totalDataCodewords: 2216,
1238
+ errorCodewordsPerBlock: 28
1239
+ },
1240
+ Q: {
1241
+ groups: [
1242
+ [43, 24],
1243
+ [22, 25]
1244
+ ],
1245
+ totalDataCodewords: 1582,
1246
+ errorCodewordsPerBlock: 30
1247
+ },
1248
+ H: {
1249
+ groups: [
1250
+ [10, 15],
1251
+ [67, 16]
1252
+ ],
1253
+ totalDataCodewords: 1222,
1254
+ errorCodewordsPerBlock: 30
1255
+ }
1256
+ }, {
1257
+ L: {
1258
+ groups: [
1259
+ [19, 118],
1260
+ [6, 119]
1261
+ ],
1262
+ totalDataCodewords: 2956,
1263
+ errorCodewordsPerBlock: 30
1264
+ },
1265
+ M: {
1266
+ groups: [
1267
+ [18, 47],
1268
+ [31, 48]
1269
+ ],
1270
+ totalDataCodewords: 2334,
1271
+ errorCodewordsPerBlock: 28
1272
+ },
1273
+ Q: {
1274
+ groups: [
1275
+ [34, 24],
1276
+ [34, 25]
1277
+ ],
1278
+ totalDataCodewords: 1666,
1279
+ errorCodewordsPerBlock: 30
1280
+ },
1281
+ H: {
1282
+ groups: [
1283
+ [20, 15],
1284
+ [61, 16]
1285
+ ],
1286
+ totalDataCodewords: 1276,
1287
+ errorCodewordsPerBlock: 30
1288
+ }
1289
+ }];