zugferd_code_lists/zugferd_2_3_3/
unit.rs

1#![allow(non_camel_case_types)]
2
3#[cfg_attr(feature = "specta", derive(specta::Type))]
4#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
5#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Clone, Copy, Hash)]
6pub enum Unit {
7    /// group
8    ///
9    /// rec20
10    Group,
11    /// outfit
12    ///
13    /// rec20
14    Outfit,
15    /// ration
16    ///
17    /// rec20
18    Ration,
19    /// shot
20    ///
21    /// rec20
22    Shot,
23    /// stick, military
24    ///
25    /// rec20
26    StickMilitary,
27    /// twenty foot container
28    ///
29    /// rec20
30    TwentyFootContainer,
31    /// forty foot container
32    ///
33    /// rec20
34    FortyFootContainer,
35    /// decilitre per gram
36    ///
37    /// rec20
38    DecilitrePerGram,
39    /// gram per cubic centimetre
40    ///
41    /// rec20
42    GramPerCubicCentimetre,
43    /// theoretical pound
44    ///
45    /// rec20
46    TheoreticalPound,
47    /// gram per square centimetre
48    ///
49    /// rec20
50    GramPerSquareCentimetre,
51    /// theoretical ton
52    ///
53    /// rec20
54    TheoreticalTon,
55    /// kilogram per square metre
56    ///
57    /// rec20
58    KilogramPerSquareMetre,
59    /// kilopascal square metre per gram
60    ///
61    /// rec20
62    KilopascalSquareMetrePerGram,
63    /// kilopascal per millimetre
64    ///
65    /// rec20
66    KilopascalPerMillimetre,
67    /// millilitre per square centimetre second
68    ///
69    /// rec20
70    MillilitrePerSquareCentimetreSecond,
71    /// ounce per square foot
72    ///
73    /// rec20
74    OuncePerSquareFoot,
75    /// ounce per square foot per 0,01inch
76    ///
77    /// rec20
78    OuncePerSquareFootPer001inch,
79    /// millilitre per second
80    ///
81    /// rec20
82    MillilitrePerSecond,
83    /// millilitre per minute
84    ///
85    /// rec20
86    MillilitrePerMinute,
87    /// sitas
88    ///
89    /// rec20
90    Sitas,
91    /// mesh
92    ///
93    /// rec20
94    Mesh,
95    /// net kilogram
96    ///
97    /// rec20
98    NetKilogram,
99    /// part per million
100    ///
101    /// rec20
102    PartPerMillion,
103    /// percent weight
104    ///
105    /// rec20
106    PercentWeight,
107    /// part per billion (US)
108    ///
109    /// rec20
110    PartPerBillionUs,
111    /// millipascal
112    ///
113    /// rec20
114    Millipascal,
115    /// milli-inch
116    ///
117    /// rec20
118    MilliInch,
119    /// pound per square inch absolute
120    ///
121    /// rec20
122    PoundPerSquareInchAbsolute,
123    /// henry
124    ///
125    /// rec20
126    Henry,
127    /// foot pound-force
128    ///
129    /// rec20
130    FootPoundForce,
131    /// pound per cubic foot
132    ///
133    /// rec20
134    PoundPerCubicFoot,
135    /// poise
136    ///
137    /// rec20
138    Poise,
139    /// stokes
140    ///
141    /// rec20
142    Stokes,
143    /// fixed rate
144    ///
145    /// rec20
146    FixedRate,
147    /// radian per second
148    ///
149    /// rec20
150    RadianPerSecond,
151    /// radian per second squared
152    ///
153    /// rec20
154    RadianPerSecondSquared,
155    /// roentgen
156    ///
157    /// rec20
158    Roentgen,
159    /// volt AC
160    ///
161    /// rec20
162    VoltAc,
163    /// volt DC
164    ///
165    /// rec20
166    VoltDc,
167    /// British thermal unit (international table) per hour
168    ///
169    /// rec20
170    BritishThermalUnitInternationalTablePerHour,
171    /// cubic centimetre per second
172    ///
173    /// rec20
174    CubicCentimetrePerSecond,
175    /// cubic foot per hour
176    ///
177    /// rec20
178    CubicFootPerHour,
179    /// cubic foot per minute
180    ///
181    /// rec20
182    CubicFootPerMinute,
183    /// centimetre per second
184    ///
185    /// rec20
186    CentimetrePerSecond,
187    /// decibel
188    ///
189    /// rec20
190    Decibel,
191    /// kilobyte
192    ///
193    /// rec20
194    Kilobyte,
195    /// kilobecquerel
196    ///
197    /// rec20
198    Kilobecquerel,
199    /// kilocurie
200    ///
201    /// rec20
202    Kilocurie,
203    /// megagram
204    ///
205    /// rec20
206    Megagram,
207    /// metre per minute
208    ///
209    /// rec20
210    MetrePerMinute,
211    /// milliroentgen
212    ///
213    /// rec20
214    Milliroentgen,
215    /// millivolt
216    ///
217    /// rec20
218    Millivolt,
219    /// megajoule
220    ///
221    /// rec20
222    Megajoule,
223    /// manmonth
224    ///
225    /// rec20
226    Manmonth,
227    /// centistokes
228    ///
229    /// rec20
230    Centistokes,
231    /// microlitre
232    ///
233    /// rec20
234    Microlitre,
235    /// micrometre (micron)
236    ///
237    /// rec20
238    MicrometreMicron,
239    /// milliampere
240    ///
241    /// rec20
242    Milliampere,
243    /// megabyte
244    ///
245    /// rec20
246    Megabyte,
247    /// milligram per hour
248    ///
249    /// rec20
250    MilligramPerHour,
251    /// megabecquerel
252    ///
253    /// rec20
254    Megabecquerel,
255    /// microfarad
256    ///
257    /// rec20
258    Microfarad,
259    /// newton per metre
260    ///
261    /// rec20
262    NewtonPerMetre,
263    /// ounce inch
264    ///
265    /// rec20
266    OunceInch,
267    /// ounce foot
268    ///
269    /// rec20
270    OunceFoot,
271    /// picofarad
272    ///
273    /// rec20
274    Picofarad,
275    /// pound per hour
276    ///
277    /// rec20
278    PoundPerHour,
279    /// ton (US) per hour
280    ///
281    /// rec20
282    TonUsPerHour,
283    /// kilolitre per hour
284    ///
285    /// rec20
286    KilolitrePerHour,
287    /// barrel (US) per minute
288    ///
289    /// rec20
290    BarrelUsPerMinute,
291    /// batch
292    ///
293    /// rec20
294    Batch,
295    /// MMSCF/day
296    ///
297    /// rec20
298    MmscfDay,
299    /// hydraulic horse power
300    ///
301    /// rec20
302    HydraulicHorsePower,
303    /// ampere square metre per joule second
304    ///
305    /// rec20
306    AmpereSquareMetrePerJouleSecond,
307    /// angstrom
308    ///
309    /// rec20
310    Angstrom,
311    /// astronomical unit
312    ///
313    /// rec20
314    AstronomicalUnit,
315    /// attojoule
316    ///
317    /// rec20
318    Attojoule,
319    /// barn
320    ///
321    /// rec20
322    Barn,
323    /// barn per electronvolt
324    ///
325    /// rec20
326    BarnPerElectronvolt,
327    /// barn per steradian electronvolt
328    ///
329    /// rec20
330    BarnPerSteradianElectronvolt,
331    /// barn per steradian
332    ///
333    /// rec20
334    BarnPerSteradian,
335    /// becquerel per kilogram
336    ///
337    /// rec20
338    BecquerelPerKilogram,
339    /// becquerel per cubic metre
340    ///
341    /// rec20
342    BecquerelPerCubicMetre,
343    /// ampere per centimetre
344    ///
345    /// rec20
346    AmperePerCentimetre,
347    /// British thermal unit (international table) per second square foot degree Rankine
348    ///
349    /// rec20
350    BritishThermalUnitInternationalTablePerSecondSquareFootDegreeRankine,
351    /// British thermal unit (international table) per pound degree Rankine
352    ///
353    /// rec20
354    BritishThermalUnitInternationalTablePerPoundDegreeRankine,
355    /// British thermal unit (international table) per second foot degree Rankine
356    ///
357    /// rec20
358    BritishThermalUnitInternationalTablePerSecondFootDegreeRankine,
359    /// British thermal unit (international table) per hour square foot degree Rankine
360    ///
361    /// rec20
362    BritishThermalUnitInternationalTablePerHourSquareFootDegreeRankine,
363    /// candela per square metre
364    ///
365    /// rec20
366    CandelaPerSquareMetre,
367    /// coulomb metre
368    ///
369    /// rec20
370    CoulombMetre,
371    /// coulomb metre squared per volt
372    ///
373    /// rec20
374    CoulombMetreSquaredPerVolt,
375    /// coulomb per cubic centimetre
376    ///
377    /// rec20
378    CoulombPerCubicCentimetre,
379    /// coulomb per cubic metre
380    ///
381    /// rec20
382    CoulombPerCubicMetre,
383    /// ampere per millimetre
384    ///
385    /// rec20
386    AmperePerMillimetre,
387    /// coulomb per cubic millimetre
388    ///
389    /// rec20
390    CoulombPerCubicMillimetre,
391    /// coulomb per kilogram second
392    ///
393    /// rec20
394    CoulombPerKilogramSecond,
395    /// coulomb per mole
396    ///
397    /// rec20
398    CoulombPerMole,
399    /// coulomb per square centimetre
400    ///
401    /// rec20
402    CoulombPerSquareCentimetre,
403    /// coulomb per square metre
404    ///
405    /// rec20
406    CoulombPerSquareMetre,
407    /// coulomb per square millimetre
408    ///
409    /// rec20
410    CoulombPerSquareMillimetre,
411    /// cubic centimetre per mole
412    ///
413    /// rec20
414    CubicCentimetrePerMole,
415    /// cubic decimetre per mole
416    ///
417    /// rec20
418    CubicDecimetrePerMole,
419    /// cubic metre per coulomb
420    ///
421    /// rec20
422    CubicMetrePerCoulomb,
423    /// cubic metre per kilogram
424    ///
425    /// rec20
426    CubicMetrePerKilogram,
427    /// ampere per square centimetre
428    ///
429    /// rec20
430    AmperePerSquareCentimetre,
431    /// cubic metre per mole
432    ///
433    /// rec20
434    CubicMetrePerMole,
435    /// ampere per square metre
436    ///
437    /// rec20
438    AmperePerSquareMetre,
439    /// curie per kilogram
440    ///
441    /// rec20
442    CuriePerKilogram,
443    /// deadweight tonnage
444    ///
445    /// rec20
446    DeadweightTonnage,
447    /// decalitre
448    ///
449    /// rec20
450    Decalitre,
451    /// decametre
452    ///
453    /// rec20
454    Decametre,
455    /// decitex
456    ///
457    /// rec20
458    Decitex,
459    /// degree Rankine
460    ///
461    /// rec20
462    DegreeRankine,
463    /// denier
464    ///
465    /// rec20
466    Denier,
467    /// ampere square metre
468    ///
469    /// rec20
470    AmpereSquareMetre,
471    /// electronvolt
472    ///
473    /// rec20
474    Electronvolt,
475    /// electronvolt per metre
476    ///
477    /// rec20
478    ElectronvoltPerMetre,
479    /// electronvolt square metre
480    ///
481    /// rec20
482    ElectronvoltSquareMetre,
483    /// electronvolt square metre per kilogram
484    ///
485    /// rec20
486    ElectronvoltSquareMetrePerKilogram,
487    /// 8-part cloud cover
488    ///
489    /// rec20
490    _8PartCloudCover,
491    /// ampere per square metre kelvin squared
492    ///
493    /// rec20
494    AmperePerSquareMetreKelvinSquared,
495    /// exajoule
496    ///
497    /// rec20
498    Exajoule,
499    /// farad per metre
500    ///
501    /// rec20
502    FaradPerMetre,
503    /// ampere per square millimetre
504    ///
505    /// rec20
506    AmperePerSquareMillimetre,
507    /// femtojoule
508    ///
509    /// rec20
510    Femtojoule,
511    /// femtometre
512    ///
513    /// rec20
514    Femtometre,
515    /// foot per second squared
516    ///
517    /// rec20
518    FootPerSecondSquared,
519    /// foot pound-force per second
520    ///
521    /// rec20
522    FootPoundForcePerSecond,
523    /// freight ton
524    ///
525    /// rec20
526    FreightTon,
527    /// gal
528    ///
529    /// rec20
530    Gal,
531    /// ampere second
532    ///
533    /// rec20
534    AmpereSecond,
535    /// gigacoulomb per cubic metre
536    ///
537    /// rec20
538    GigacoulombPerCubicMetre,
539    /// gigaelectronvolt
540    ///
541    /// rec20
542    Gigaelectronvolt,
543    /// gigahertz
544    ///
545    /// rec20
546    Gigahertz,
547    /// gigaohm
548    ///
549    /// rec20
550    Gigaohm,
551    /// gigaohm metre
552    ///
553    /// rec20
554    GigaohmMetre,
555    /// gigapascal
556    ///
557    /// rec20
558    Gigapascal,
559    /// rate
560    ///
561    /// rec20
562    Rate,
563    /// gigawatt
564    ///
565    /// rec20
566    Gigawatt,
567    /// gon
568    ///
569    /// rec20
570    Gon,
571    /// gram per cubic metre
572    ///
573    /// rec20
574    GramPerCubicMetre,
575    /// gram per mole
576    ///
577    /// rec20
578    GramPerMole,
579    /// gray
580    ///
581    /// rec20
582    Gray,
583    /// gray per second
584    ///
585    /// rec20
586    GrayPerSecond,
587    /// hectopascal
588    ///
589    /// rec20
590    Hectopascal,
591    /// henry per metre
592    ///
593    /// rec20
594    HenryPerMetre,
595    /// bit
596    ///
597    /// rec20
598    Bit,
599    /// ball
600    ///
601    /// rec20
602    Ball,
603    /// bulk pack
604    ///
605    /// rec20
606    BulkPack,
607    /// acre
608    ///
609    /// rec20
610    Acre,
611    /// activity
612    ///
613    /// rec20
614    Activity,
615    /// byte
616    ///
617    /// rec20
618    Byte,
619    /// ampere per metre
620    ///
621    /// rec20
622    AmperePerMetre,
623    /// additional minute
624    ///
625    /// rec20
626    AdditionalMinute,
627    /// average minute per call
628    ///
629    /// rec20
630    AverageMinutePerCall,
631    /// fathom
632    ///
633    /// rec20
634    Fathom,
635    /// access line
636    ///
637    /// rec20
638    AccessLine,
639    /// ampere hour
640    ///
641    /// rec20
642    AmpereHour,
643    /// ampere
644    ///
645    /// rec20
646    Ampere,
647    /// year
648    ///
649    /// rec20
650    Year,
651    /// troy ounce or apothecary ounce
652    ///
653    /// rec20
654    TroyOunceOrApothecaryOunce,
655    /// anti-hemophilic factor (AHF) unit
656    ///
657    /// rec20
658    AntiHemophilicFactorAhfUnit,
659    /// assortment
660    ///
661    /// rec20
662    Assortment,
663    /// alcoholic strength by mass
664    ///
665    /// rec20
666    AlcoholicStrengthByMass,
667    /// alcoholic strength by volume
668    ///
669    /// rec20
670    AlcoholicStrengthByVolume,
671    /// standard atmosphere
672    ///
673    /// rec20
674    StandardAtmosphere,
675    /// american wire gauge
676    ///
677    /// rec20
678    AmericanWireGauge,
679    /// assembly
680    ///
681    /// rec20
682    Assembly,
683    /// British thermal unit (international table) per pound
684    ///
685    /// rec20
686    BritishThermalUnitInternationalTablePerPound,
687    /// barrel (US) per day
688    ///
689    /// rec20
690    BarrelUsPerDay,
691    /// bit per second
692    ///
693    /// rec20
694    BitPerSecond,
695    /// joule per kilogram kelvin
696    ///
697    /// rec20
698    JoulePerKilogramKelvin,
699    /// joule per metre
700    ///
701    /// rec20
702    JoulePerMetre,
703    /// joule per square metre
704    ///
705    /// rec20
706    JoulePerSquareMetre,
707    /// joule per metre to the fourth power
708    ///
709    /// rec20
710    JoulePerMetreToFourthPower,
711    /// joule per mole
712    ///
713    /// rec20
714    JoulePerMole,
715    /// joule per mole kelvin
716    ///
717    /// rec20
718    JoulePerMoleKelvin,
719    /// credit
720    ///
721    /// rec20
722    Credit,
723    /// joule second
724    ///
725    /// rec20
726    JouleSecond,
727    /// digit
728    ///
729    /// rec20
730    Digit,
731    /// joule square metre per kilogram
732    ///
733    /// rec20
734    JouleSquareMetrePerKilogram,
735    /// kelvin per watt
736    ///
737    /// rec20
738    KelvinPerWatt,
739    /// kiloampere
740    ///
741    /// rec20
742    Kiloampere,
743    /// kiloampere per square metre
744    ///
745    /// rec20
746    KiloamperePerSquareMetre,
747    /// kiloampere per metre
748    ///
749    /// rec20
750    KiloamperePerMetre,
751    /// kilobecquerel per kilogram
752    ///
753    /// rec20
754    KilobecquerelPerKilogram,
755    /// kilocoulomb
756    ///
757    /// rec20
758    Kilocoulomb,
759    /// kilocoulomb per cubic metre
760    ///
761    /// rec20
762    KilocoulombPerCubicMetre,
763    /// kilocoulomb per square metre
764    ///
765    /// rec20
766    KilocoulombPerSquareMetre,
767    /// kiloelectronvolt
768    ///
769    /// rec20
770    Kiloelectronvolt,
771    /// batting pound
772    ///
773    /// rec20
774    BattingPound,
775    /// gibibit
776    ///
777    /// rec20
778    Gibibit,
779    /// kilogram metre per second
780    ///
781    /// rec20
782    KilogramMetrePerSecond,
783    /// kilogram metre squared
784    ///
785    /// rec20
786    KilogramMetreSquared,
787    /// kilogram metre squared per second
788    ///
789    /// rec20
790    KilogramMetreSquaredPerSecond,
791    /// kilogram per cubic decimetre
792    ///
793    /// rec20
794    KilogramPerCubicDecimetre,
795    /// kilogram per litre
796    ///
797    /// rec20
798    KilogramPerLitre,
799    /// barrel, imperial
800    ///
801    /// rec20
802    BarrelImperial,
803    /// kilojoule per kelvin
804    ///
805    /// rec20
806    KilojoulePerKelvin,
807    /// kilojoule per kilogram
808    ///
809    /// rec20
810    KilojoulePerKilogram,
811    /// kilojoule per kilogram kelvin
812    ///
813    /// rec20
814    KilojoulePerKilogramKelvin,
815    /// kilojoule per mole
816    ///
817    /// rec20
818    KilojoulePerMole,
819    /// kilomole
820    ///
821    /// rec20
822    Kilomole,
823    /// kilomole per cubic metre
824    ///
825    /// rec20
826    KilomolePerCubicMetre,
827    /// kilonewton
828    ///
829    /// rec20
830    Kilonewton,
831    /// kilonewton metre
832    ///
833    /// rec20
834    KilonewtonMetre,
835    /// kiloohm
836    ///
837    /// rec20
838    Kiloohm,
839    /// kiloohm metre
840    ///
841    /// rec20
842    KiloohmMetre,
843    /// kilosecond
844    ///
845    /// rec20
846    Kilosecond,
847    /// kilosiemens
848    ///
849    /// rec20
850    Kilosiemens,
851    /// kilosiemens per metre
852    ///
853    /// rec20
854    KilosiemensPerMetre,
855    /// kilovolt per metre
856    ///
857    /// rec20
858    KilovoltPerMetre,
859    /// kiloweber per metre
860    ///
861    /// rec20
862    KiloweberPerMetre,
863    /// light year
864    ///
865    /// rec20
866    LightYear,
867    /// litre per mole
868    ///
869    /// rec20
870    LitrePerMole,
871    /// lumen hour
872    ///
873    /// rec20
874    LumenHour,
875    /// lumen per square metre
876    ///
877    /// rec20
878    LumenPerSquareMetre,
879    /// lumen per watt
880    ///
881    /// rec20
882    LumenPerWatt,
883    /// lumen second
884    ///
885    /// rec20
886    LumenSecond,
887    /// lux hour
888    ///
889    /// rec20
890    LuxHour,
891    /// lux second
892    ///
893    /// rec20
894    LuxSecond,
895    /// megaampere per square metre
896    ///
897    /// rec20
898    MegaamperePerSquareMetre,
899    /// megabecquerel per kilogram
900    ///
901    /// rec20
902    MegabecquerelPerKilogram,
903    /// gigabit
904    ///
905    /// rec20
906    Gigabit,
907    /// megacoulomb per cubic metre
908    ///
909    /// rec20
910    MegacoulombPerCubicMetre,
911    /// cycle
912    ///
913    /// rec20
914    Cycle,
915    /// megacoulomb per square metre
916    ///
917    /// rec20
918    MegacoulombPerSquareMetre,
919    /// megaelectronvolt
920    ///
921    /// rec20
922    Megaelectronvolt,
923    /// megagram per cubic metre
924    ///
925    /// rec20
926    MegagramPerCubicMetre,
927    /// meganewton
928    ///
929    /// rec20
930    Meganewton,
931    /// meganewton metre
932    ///
933    /// rec20
934    MeganewtonMetre,
935    /// megaohm
936    ///
937    /// rec20
938    Megaohm,
939    /// megaohm metre
940    ///
941    /// rec20
942    MegaohmMetre,
943    /// megasiemens per metre
944    ///
945    /// rec20
946    MegasiemensPerMetre,
947    /// megavolt
948    ///
949    /// rec20
950    Megavolt,
951    /// megavolt per metre
952    ///
953    /// rec20
954    MegavoltPerMetre,
955    /// joule per cubic metre
956    ///
957    /// rec20
958    JoulePerCubicMetre,
959    /// gigabit per second
960    ///
961    /// rec20
962    GigabitPerSecond,
963    /// reciprocal metre squared reciprocal second
964    ///
965    /// rec20
966    ReciprocalMetreSquaredReciprocalSecond,
967    /// inch per linear foot
968    ///
969    /// rec20
970    InchPerLinearFoot,
971    /// metre to the fourth power
972    ///
973    /// rec20
974    MetreToFourthPower,
975    /// microampere
976    ///
977    /// rec20
978    Microampere,
979    /// microbar
980    ///
981    /// rec20
982    Microbar,
983    /// microcoulomb
984    ///
985    /// rec20
986    Microcoulomb,
987    /// microcoulomb per cubic metre
988    ///
989    /// rec20
990    MicrocoulombPerCubicMetre,
991    /// microcoulomb per square metre
992    ///
993    /// rec20
994    MicrocoulombPerSquareMetre,
995    /// microfarad per metre
996    ///
997    /// rec20
998    MicrofaradPerMetre,
999    /// microhenry
1000    ///
1001    /// rec20
1002    Microhenry,
1003    /// microhenry per metre
1004    ///
1005    /// rec20
1006    MicrohenryPerMetre,
1007    /// micronewton
1008    ///
1009    /// rec20
1010    Micronewton,
1011    /// micronewton metre
1012    ///
1013    /// rec20
1014    MicronewtonMetre,
1015    /// microohm
1016    ///
1017    /// rec20
1018    Microohm,
1019    /// microohm metre
1020    ///
1021    /// rec20
1022    MicroohmMetre,
1023    /// micropascal
1024    ///
1025    /// rec20
1026    Micropascal,
1027    /// microradian
1028    ///
1029    /// rec20
1030    Microradian,
1031    /// microsecond
1032    ///
1033    /// rec20
1034    Microsecond,
1035    /// microsiemens
1036    ///
1037    /// rec20
1038    Microsiemens,
1039    /// bar [unit of pressure]
1040    ///
1041    /// rec20
1042    BarUnitPressure,
1043    /// base box
1044    ///
1045    /// rec20
1046    BaseBox,
1047    /// board foot
1048    ///
1049    /// rec20
1050    BoardFoot,
1051    /// brake horse power
1052    ///
1053    /// rec20
1054    BrakeHorsePower,
1055    /// billion (EUR)
1056    ///
1057    /// rec20
1058    BillionEur,
1059    /// dry barrel (US)
1060    ///
1061    /// rec20
1062    DryBarrelUs,
1063    /// barrel (US)
1064    ///
1065    /// rec20
1066    BarrelUs,
1067    /// hundred board foot
1068    ///
1069    /// rec20
1070    HundredBoardFoot,
1071    /// beats per minute
1072    ///
1073    /// rec20
1074    BeatsPerMinute,
1075    /// becquerel
1076    ///
1077    /// rec20
1078    Becquerel,
1079    /// British thermal unit (international table)
1080    ///
1081    /// rec20
1082    BritishThermalUnitInternationalTable,
1083    /// bushel (US)
1084    ///
1085    /// rec20
1086    BushelUs,
1087    /// bushel (UK)
1088    ///
1089    /// rec20
1090    BushelUk,
1091    /// call
1092    ///
1093    /// rec20
1094    Call,
1095    /// millifarad
1096    ///
1097    /// rec20
1098    Millifarad,
1099    /// milligal
1100    ///
1101    /// rec20
1102    Milligal,
1103    /// milligram per metre
1104    ///
1105    /// rec20
1106    MilligramPerMetre,
1107    /// milligray
1108    ///
1109    /// rec20
1110    Milligray,
1111    /// millihenry
1112    ///
1113    /// rec20
1114    Millihenry,
1115    /// millijoule
1116    ///
1117    /// rec20
1118    Millijoule,
1119    /// millimetre per second
1120    ///
1121    /// rec20
1122    MillimetrePerSecond,
1123    /// millimetre squared per second
1124    ///
1125    /// rec20
1126    MillimetreSquaredPerSecond,
1127    /// millimole
1128    ///
1129    /// rec20
1130    Millimole,
1131    /// mole per kilogram
1132    ///
1133    /// rec20
1134    MolePerKilogram,
1135    /// millinewton
1136    ///
1137    /// rec20
1138    Millinewton,
1139    /// kibibit
1140    ///
1141    /// rec20
1142    Kibibit,
1143    /// millinewton per metre
1144    ///
1145    /// rec20
1146    MillinewtonPerMetre,
1147    /// milliohm metre
1148    ///
1149    /// rec20
1150    MilliohmMetre,
1151    /// millipascal second
1152    ///
1153    /// rec20
1154    MillipascalSecond,
1155    /// milliradian
1156    ///
1157    /// rec20
1158    Milliradian,
1159    /// millisecond
1160    ///
1161    /// rec20
1162    Millisecond,
1163    /// millisiemens
1164    ///
1165    /// rec20
1166    Millisiemens,
1167    /// millisievert
1168    ///
1169    /// rec20
1170    Millisievert,
1171    /// millitesla
1172    ///
1173    /// rec20
1174    Millitesla,
1175    /// microvolt per metre
1176    ///
1177    /// rec20
1178    MicrovoltPerMetre,
1179    /// millivolt per metre
1180    ///
1181    /// rec20
1182    MillivoltPerMetre,
1183    /// milliwatt
1184    ///
1185    /// rec20
1186    Milliwatt,
1187    /// milliwatt per square metre
1188    ///
1189    /// rec20
1190    MilliwattPerSquareMetre,
1191    /// milliweber
1192    ///
1193    /// rec20
1194    Milliweber,
1195    /// mole
1196    ///
1197    /// rec20
1198    Mole,
1199    /// mole per cubic decimetre
1200    ///
1201    /// rec20
1202    MolePerCubicDecimetre,
1203    /// mole per cubic metre
1204    ///
1205    /// rec20
1206    MolePerCubicMetre,
1207    /// kilobit
1208    ///
1209    /// rec20
1210    Kilobit,
1211    /// mole per litre
1212    ///
1213    /// rec20
1214    MolePerLitre,
1215    /// nanoampere
1216    ///
1217    /// rec20
1218    Nanoampere,
1219    /// nanocoulomb
1220    ///
1221    /// rec20
1222    Nanocoulomb,
1223    /// nanofarad
1224    ///
1225    /// rec20
1226    Nanofarad,
1227    /// nanofarad per metre
1228    ///
1229    /// rec20
1230    NanofaradPerMetre,
1231    /// nanohenry
1232    ///
1233    /// rec20
1234    Nanohenry,
1235    /// nanohenry per metre
1236    ///
1237    /// rec20
1238    NanohenryPerMetre,
1239    /// nanometre
1240    ///
1241    /// rec20
1242    Nanometre,
1243    /// nanoohm metre
1244    ///
1245    /// rec20
1246    NanoohmMetre,
1247    /// nanosecond
1248    ///
1249    /// rec20
1250    Nanosecond,
1251    /// nanotesla
1252    ///
1253    /// rec20
1254    Nanotesla,
1255    /// nanowatt
1256    ///
1257    /// rec20
1258    Nanowatt,
1259    /// neper
1260    ///
1261    /// rec20
1262    Neper,
1263    /// neper per second
1264    ///
1265    /// rec20
1266    NeperPerSecond,
1267    /// picometre
1268    ///
1269    /// rec20
1270    Picometre,
1271    /// newton metre second
1272    ///
1273    /// rec20
1274    NewtonMetreSecond,
1275    /// newton metre squared per kilogram squared
1276    ///
1277    /// rec20
1278    NewtonMetreSquaredPerKilogramSquared,
1279    /// newton per square metre
1280    ///
1281    /// rec20
1282    NewtonPerSquareMetre,
1283    /// newton per square millimetre
1284    ///
1285    /// rec20
1286    NewtonPerSquareMillimetre,
1287    /// newton second
1288    ///
1289    /// rec20
1290    NewtonSecond,
1291    /// newton second per metre
1292    ///
1293    /// rec20
1294    NewtonSecondPerMetre,
1295    /// octave
1296    ///
1297    /// rec20
1298    Octave,
1299    /// ohm centimetre
1300    ///
1301    /// rec20
1302    OhmCentimetre,
1303    /// ohm metre
1304    ///
1305    /// rec20
1306    OhmMetre,
1307    /// one
1308    ///
1309    /// rec20
1310    One,
1311    /// parsec
1312    ///
1313    /// rec20
1314    Parsec,
1315    /// pascal per kelvin
1316    ///
1317    /// rec20
1318    PascalPerKelvin,
1319    /// pascal second
1320    ///
1321    /// rec20
1322    PascalSecond,
1323    /// pascal second per cubic metre
1324    ///
1325    /// rec20
1326    PascalSecondPerCubicMetre,
1327    /// pascal second per metre
1328    ///
1329    /// rec20
1330    PascalSecondPerMetre,
1331    /// petajoule
1332    ///
1333    /// rec20
1334    Petajoule,
1335    /// phon
1336    ///
1337    /// rec20
1338    Phon,
1339    /// centipoise
1340    ///
1341    /// rec20
1342    Centipoise,
1343    /// picoampere
1344    ///
1345    /// rec20
1346    Picoampere,
1347    /// picocoulomb
1348    ///
1349    /// rec20
1350    Picocoulomb,
1351    /// picofarad per metre
1352    ///
1353    /// rec20
1354    PicofaradPerMetre,
1355    /// picohenry
1356    ///
1357    /// rec20
1358    Picohenry,
1359    /// kilobit per second
1360    ///
1361    /// rec20
1362    KilobitPerSecond,
1363    /// picowatt
1364    ///
1365    /// rec20
1366    Picowatt,
1367    /// picowatt per square metre
1368    ///
1369    /// rec20
1370    PicowattPerSquareMetre,
1371    /// pound-force
1372    ///
1373    /// rec20
1374    PoundForce,
1375    /// kilovolt ampere hour
1376    ///
1377    /// rec20
1378    KilovoltAmpereHour,
1379    /// millicoulomb per kilogram
1380    ///
1381    /// rec20
1382    MillicoulombPerKilogram,
1383    /// rad
1384    ///
1385    /// rec20
1386    Rad,
1387    /// radian
1388    ///
1389    /// rec20
1390    Radian,
1391    /// radian square metre per mole
1392    ///
1393    /// rec20
1394    RadianSquareMetrePerMole,
1395    /// radian square metre per kilogram
1396    ///
1397    /// rec20
1398    RadianSquareMetrePerKilogram,
1399    /// radian per metre
1400    ///
1401    /// rec20
1402    RadianPerMetre,
1403    /// reciprocal angstrom
1404    ///
1405    /// rec20
1406    ReciprocalAngstrom,
1407    /// reciprocal cubic metre
1408    ///
1409    /// rec20
1410    ReciprocalCubicMetre,
1411    /// reciprocal cubic metre per second
1412    ///
1413    /// rec20
1414    ReciprocalCubicMetrePerSecond,
1415    /// reciprocal electron volt per cubic metre
1416    ///
1417    /// rec20
1418    ReciprocalElectronVoltPerCubicMetre,
1419    /// reciprocal henry
1420    ///
1421    /// rec20
1422    ReciprocalHenry,
1423    /// coil group
1424    ///
1425    /// rec20
1426    CoilGroup,
1427    /// reciprocal joule per cubic metre
1428    ///
1429    /// rec20
1430    ReciprocalJoulePerCubicMetre,
1431    /// reciprocal kelvin or kelvin to the power minus one
1432    ///
1433    /// rec20
1434    ReciprocalKelvinOrKelvinToPowerMinusOne,
1435    /// reciprocal metre
1436    ///
1437    /// rec20
1438    ReciprocalMetre,
1439    /// reciprocal square metre
1440    ///
1441    /// rec20
1442    ReciprocalSquareMetre,
1443    /// reciprocal minute
1444    ///
1445    /// rec20
1446    ReciprocalMinute,
1447    /// reciprocal mole
1448    ///
1449    /// rec20
1450    ReciprocalMole,
1451    /// reciprocal pascal or pascal to the power minus one
1452    ///
1453    /// rec20
1454    ReciprocalPascalOrPascalToPowerMinusOne,
1455    /// reciprocal second
1456    ///
1457    /// rec20
1458    ReciprocalSecond,
1459    /// reciprocal second per metre squared
1460    ///
1461    /// rec20
1462    ReciprocalSecondPerMetreSquared,
1463    /// carrying capacity in metric ton
1464    ///
1465    /// rec20
1466    CarryingCapacityInMetricTon,
1467    /// candela
1468    ///
1469    /// rec20
1470    Candela,
1471    /// degree Celsius
1472    ///
1473    /// rec20
1474    DegreeCelsius,
1475    /// hundred
1476    ///
1477    /// rec20
1478    Hundred,
1479    /// card
1480    ///
1481    /// rec20
1482    Card,
1483    /// centigram
1484    ///
1485    /// rec20
1486    Centigram,
1487    /// coulomb per kilogram
1488    ///
1489    /// rec20
1490    CoulombPerKilogram,
1491    /// hundred leave
1492    ///
1493    /// rec20
1494    HundredLeave,
1495    /// centilitre
1496    ///
1497    /// rec20
1498    Centilitre,
1499    /// square centimetre
1500    ///
1501    /// rec20
1502    SquareCentimetre,
1503    /// cubic centimetre
1504    ///
1505    /// rec20
1506    CubicCentimetre,
1507    /// centimetre
1508    ///
1509    /// rec20
1510    Centimetre,
1511    /// hundred pack
1512    ///
1513    /// rec20
1514    HundredPack,
1515    /// cental (UK)
1516    ///
1517    /// rec20
1518    CentalUk,
1519    /// coulomb
1520    ///
1521    /// rec20
1522    Coulomb,
1523    /// content gram
1524    ///
1525    /// rec20
1526    ContentGram,
1527    /// metric carat
1528    ///
1529    /// rec20
1530    MetricCarat,
1531    /// content ton (metric)
1532    ///
1533    /// rec20
1534    ContentTonMetric,
1535    /// curie
1536    ///
1537    /// rec20
1538    Curie,
1539    /// hundred pound (cwt) / hundred weight (US)
1540    ///
1541    /// rec20
1542    HundredPoundCwtHundredWeightUs,
1543    /// hundred weight (UK)
1544    ///
1545    /// rec20
1546    HundredWeightUk,
1547    /// kilowatt hour per hour
1548    ///
1549    /// rec20
1550    KilowattHourPerHour,
1551    /// lot [unit of weight]
1552    ///
1553    /// rec20
1554    LotUnitWeight,
1555    /// reciprocal second per steradian
1556    ///
1557    /// rec20
1558    ReciprocalSecondPerSteradian,
1559    /// siemens per metre
1560    ///
1561    /// rec20
1562    SiemensPerMetre,
1563    /// mebibit
1564    ///
1565    /// rec20
1566    Mebibit,
1567    /// siemens square metre per mole
1568    ///
1569    /// rec20
1570    SiemensSquareMetrePerMole,
1571    /// sievert
1572    ///
1573    /// rec20
1574    Sievert,
1575    /// sone
1576    ///
1577    /// rec20
1578    Sone,
1579    /// square centimetre per erg
1580    ///
1581    /// rec20
1582    SquareCentimetrePerErg,
1583    /// square centimetre per steradian erg
1584    ///
1585    /// rec20
1586    SquareCentimetrePerSteradianErg,
1587    /// metre kelvin
1588    ///
1589    /// rec20
1590    MetreKelvin,
1591    /// square metre kelvin per watt
1592    ///
1593    /// rec20
1594    SquareMetreKelvinPerWatt,
1595    /// reciprocal second per steradian metre squared
1596    ///
1597    /// rec20
1598    ReciprocalSecondPerSteradianMetreSquared,
1599    /// square metre per joule
1600    ///
1601    /// rec20
1602    SquareMetrePerJoule,
1603    /// square metre per kilogram
1604    ///
1605    /// rec20
1606    SquareMetrePerKilogram,
1607    /// square metre per mole
1608    ///
1609    /// rec20
1610    SquareMetrePerMole,
1611    /// pen gram (protein)
1612    ///
1613    /// rec20
1614    PenGramProtein,
1615    /// square metre per steradian
1616    ///
1617    /// rec20
1618    SquareMetrePerSteradian,
1619    /// square metre per steradian joule
1620    ///
1621    /// rec20
1622    SquareMetrePerSteradianJoule,
1623    /// square metre per volt second
1624    ///
1625    /// rec20
1626    SquareMetrePerVoltSecond,
1627    /// steradian
1628    ///
1629    /// rec20
1630    Steradian,
1631    /// terahertz
1632    ///
1633    /// rec20
1634    Terahertz,
1635    /// terajoule
1636    ///
1637    /// rec20
1638    Terajoule,
1639    /// terawatt
1640    ///
1641    /// rec20
1642    Terawatt,
1643    /// terawatt hour
1644    ///
1645    /// rec20
1646    TerawattHour,
1647    /// tesla
1648    ///
1649    /// rec20
1650    Tesla,
1651    /// tex
1652    ///
1653    /// rec20
1654    Tex,
1655    /// megabit
1656    ///
1657    /// rec20
1658    Megabit,
1659    /// tonne per cubic metre
1660    ///
1661    /// rec20
1662    TonnePerCubicMetre,
1663    /// tropical year
1664    ///
1665    /// rec20
1666    TropicalYear,
1667    /// unified atomic mass unit
1668    ///
1669    /// rec20
1670    UnifiedAtomicMassUnit,
1671    /// var
1672    ///
1673    /// rec20
1674    Var,
1675    /// volt squared per kelvin squared
1676    ///
1677    /// rec20
1678    VoltSquaredPerKelvinSquared,
1679    /// volt - ampere
1680    ///
1681    /// rec20
1682    VoltAmpere,
1683    /// volt per centimetre
1684    ///
1685    /// rec20
1686    VoltPerCentimetre,
1687    /// volt per kelvin
1688    ///
1689    /// rec20
1690    VoltPerKelvin,
1691    /// millivolt per kelvin
1692    ///
1693    /// rec20
1694    MillivoltPerKelvin,
1695    /// kilogram per square centimetre
1696    ///
1697    /// rec20
1698    KilogramPerSquareCentimetre,
1699    /// volt per metre
1700    ///
1701    /// rec20
1702    VoltPerMetre,
1703    /// volt per millimetre
1704    ///
1705    /// rec20
1706    VoltPerMillimetre,
1707    /// watt per kelvin
1708    ///
1709    /// rec20
1710    WattPerKelvin,
1711    /// watt per metre kelvin
1712    ///
1713    /// rec20
1714    WattPerMetreKelvin,
1715    /// watt per square metre
1716    ///
1717    /// rec20
1718    WattPerSquareMetre,
1719    /// watt per square metre kelvin
1720    ///
1721    /// rec20
1722    WattPerSquareMetreKelvin,
1723    /// watt per square metre kelvin to the fourth power
1724    ///
1725    /// rec20
1726    WattPerSquareMetreKelvinToFourthPower,
1727    /// watt per steradian
1728    ///
1729    /// rec20
1730    WattPerSteradian,
1731    /// watt per steradian square metre
1732    ///
1733    /// rec20
1734    WattPerSteradianSquareMetre,
1735    /// weber per metre
1736    ///
1737    /// rec20
1738    WeberPerMetre,
1739    /// roentgen per second
1740    ///
1741    /// rec20
1742    RoentgenPerSecond,
1743    /// weber per millimetre
1744    ///
1745    /// rec20
1746    WeberPerMillimetre,
1747    /// minute [unit of angle]
1748    ///
1749    /// rec20
1750    MinuteUnitAngle,
1751    /// second [unit of angle]
1752    ///
1753    /// rec20
1754    SecondUnitAngle,
1755    /// book
1756    ///
1757    /// rec20
1758    Book,
1759    /// round
1760    ///
1761    /// rec20
1762    Round,
1763    /// number of words
1764    ///
1765    /// rec20
1766    NumberWords,
1767    /// inch to the fourth power
1768    ///
1769    /// rec20
1770    InchToFourthPower,
1771    /// joule square metre
1772    ///
1773    /// rec20
1774    JouleSquareMetre,
1775    /// kilogram per mole
1776    ///
1777    /// rec20
1778    KilogramPerMole,
1779    /// megacoulomb
1780    ///
1781    /// rec20
1782    Megacoulomb,
1783    /// megajoule per second
1784    ///
1785    /// rec20
1786    MegajoulePerSecond,
1787    /// microwatt
1788    ///
1789    /// rec20
1790    Microwatt,
1791    /// microtesla
1792    ///
1793    /// rec20
1794    Microtesla,
1795    /// microvolt
1796    ///
1797    /// rec20
1798    Microvolt,
1799    /// millinewton metre
1800    ///
1801    /// rec20
1802    MillinewtonMetre,
1803    /// microwatt per square metre
1804    ///
1805    /// rec20
1806    MicrowattPerSquareMetre,
1807    /// millicoulomb
1808    ///
1809    /// rec20
1810    Millicoulomb,
1811    /// millimole per kilogram
1812    ///
1813    /// rec20
1814    MillimolePerKilogram,
1815    /// millicoulomb per cubic metre
1816    ///
1817    /// rec20
1818    MillicoulombPerCubicMetre,
1819    /// millicoulomb per square metre
1820    ///
1821    /// rec20
1822    MillicoulombPerSquareMetre,
1823    /// rem
1824    ///
1825    /// rec20
1826    Rem,
1827    /// second per cubic metre
1828    ///
1829    /// rec20
1830    SecondPerCubicMetre,
1831    /// second per cubic metre radian
1832    ///
1833    /// rec20
1834    SecondPerCubicMetreRadian,
1835    /// joule per gram
1836    ///
1837    /// rec20
1838    JoulePerGram,
1839    /// decare
1840    ///
1841    /// rec20
1842    Decare,
1843    /// ten day
1844    ///
1845    /// rec20
1846    TenDay,
1847    /// day
1848    ///
1849    /// rec20
1850    Day,
1851    /// dry pound
1852    ///
1853    /// rec20
1854    DryPound,
1855    /// Decibel-milliwatts
1856    ///
1857    /// Rec20
1858    DecibelMilliwatts,
1859    /// Decibel watt
1860    ///
1861    /// Rec20
1862    DecibelWatt,
1863    /// degree [unit of angle]
1864    ///
1865    /// rec20
1866    DegreeUnitAngle,
1867    /// decade
1868    ///
1869    /// rec20
1870    Decade,
1871    /// decigram
1872    ///
1873    /// rec20
1874    Decigram,
1875    /// decagram
1876    ///
1877    /// rec20
1878    Decagram,
1879    /// decilitre
1880    ///
1881    /// rec20
1882    Decilitre,
1883    /// cubic decametre
1884    ///
1885    /// rec20
1886    CubicDecametre,
1887    /// square decimetre
1888    ///
1889    /// rec20
1890    SquareDecimetre,
1891    /// standard kilolitre
1892    ///
1893    /// rec20
1894    StandardKilolitre,
1895    /// cubic decimetre
1896    ///
1897    /// rec20
1898    CubicDecimetre,
1899    /// decimetre
1900    ///
1901    /// rec20
1902    Decimetre,
1903    /// decinewton metre
1904    ///
1905    /// rec20
1906    DecinewtonMetre,
1907    /// dozen piece
1908    ///
1909    /// rec20
1910    DozenPiece,
1911    /// dozen pair
1912    ///
1913    /// rec20
1914    DozenPair,
1915    /// displacement tonnage
1916    ///
1917    /// rec20
1918    DisplacementTonnage,
1919    /// dram (US)
1920    ///
1921    /// rec20
1922    DramUs,
1923    /// dram (UK)
1924    ///
1925    /// rec20
1926    DramUk,
1927    /// dozen roll
1928    ///
1929    /// rec20
1930    DozenRoll,
1931    /// dry ton
1932    ///
1933    /// rec20
1934    DryTon,
1935    /// decitonne
1936    ///
1937    /// rec20
1938    Decitonne,
1939    /// pennyweight
1940    ///
1941    /// rec20
1942    Pennyweight,
1943    /// dozen
1944    ///
1945    /// rec20
1946    Dozen,
1947    /// dozen pack
1948    ///
1949    /// rec20
1950    DozenPack,
1951    /// newton per square centimetre
1952    ///
1953    /// rec20
1954    NewtonPerSquareCentimetre,
1955    /// megawatt hour per hour
1956    ///
1957    /// rec20
1958    MegawattHourPerHour,
1959    /// megawatt per hertz
1960    ///
1961    /// rec20
1962    MegawattPerHertz,
1963    /// milliampere hour
1964    ///
1965    /// rec20
1966    MilliampereHour,
1967    /// degree day
1968    ///
1969    /// rec20
1970    DegreeDay,
1971    /// mille
1972    ///
1973    /// rec20
1974    Mille,
1975    /// kilocalorie (international table)
1976    ///
1977    /// rec20
1978    KilocalorieInternationalTable,
1979    /// kilocalorie (thermochemical) per hour
1980    ///
1981    /// rec20
1982    KilocalorieThermochemicalPerHour,
1983    /// million Btu(IT) per hour
1984    ///
1985    /// rec20
1986    MillionBtuItPerHour,
1987    /// cubic foot per second
1988    ///
1989    /// rec20
1990    CubicFootPerSecond,
1991    /// tonne per hour
1992    ///
1993    /// rec20
1994    TonnePerHour,
1995    /// ping
1996    ///
1997    /// rec20
1998    Ping,
1999    /// megabit per second
2000    ///
2001    /// rec20
2002    MegabitPerSecond,
2003    /// shares
2004    ///
2005    /// rec20
2006    Shares,
2007    /// TEU
2008    ///
2009    /// rec20
2010    Teu,
2011    /// tyre
2012    ///
2013    /// rec20
2014    Tyre,
2015    /// active unit
2016    ///
2017    /// rec20
2018    ActiveUnit,
2019    /// dose
2020    ///
2021    /// rec20
2022    Dose,
2023    /// air dry ton
2024    ///
2025    /// rec20
2026    AirDryTon,
2027    /// strand
2028    ///
2029    /// rec20
2030    Strand,
2031    /// square metre per litre
2032    ///
2033    /// rec20
2034    SquareMetrePerLitre,
2035    /// litre per hour
2036    ///
2037    /// rec20
2038    LitrePerHour,
2039    /// foot per thousand
2040    ///
2041    /// rec20
2042    FootPerThousand,
2043    /// gigabyte
2044    ///
2045    /// rec20
2046    Gigabyte,
2047    /// terabyte
2048    ///
2049    /// rec20
2050    Terabyte,
2051    /// petabyte
2052    ///
2053    /// rec20
2054    Petabyte,
2055    /// pixel
2056    ///
2057    /// rec20
2058    Pixel,
2059    /// megapixel
2060    ///
2061    /// rec20
2062    Megapixel,
2063    /// dots per inch
2064    ///
2065    /// rec20
2066    DotsPerInch,
2067    /// gross kilogram
2068    ///
2069    /// rec20
2070    GrossKilogram,
2071    /// part per hundred thousand
2072    ///
2073    /// rec20
2074    PartPerHundredThousand,
2075    /// kilogram-force per square millimetre
2076    ///
2077    /// rec20
2078    KilogramForcePerSquareMillimetre,
2079    /// kilogram-force per square centimetre
2080    ///
2081    /// rec20
2082    KilogramForcePerSquareCentimetre,
2083    /// joule per square centimetre
2084    ///
2085    /// rec20
2086    JoulePerSquareCentimetre,
2087    /// kilogram-force metre per square centimetre
2088    ///
2089    /// rec20
2090    KilogramForceMetrePerSquareCentimetre,
2091    /// milliohm
2092    ///
2093    /// rec20
2094    Milliohm,
2095    /// kilowatt hour per cubic metre
2096    ///
2097    /// rec20
2098    KilowattHourPerCubicMetre,
2099    /// kilowatt hour per kelvin
2100    ///
2101    /// rec20
2102    KilowattHourPerKelvin,
2103    /// service unit
2104    ///
2105    /// rec20
2106    ServiceUnit,
2107    /// working day
2108    ///
2109    /// rec20
2110    WorkingDay,
2111    /// accounting unit
2112    ///
2113    /// rec20
2114    AccountingUnit,
2115    /// job
2116    ///
2117    /// rec20
2118    Job,
2119    /// run foot
2120    ///
2121    /// rec20
2122    RunFoot,
2123    /// test
2124    ///
2125    /// rec20
2126    Test,
2127    /// trip
2128    ///
2129    /// rec20
2130    Trip,
2131    /// use
2132    ///
2133    /// rec20
2134    Use,
2135    /// well
2136    ///
2137    /// rec20
2138    Well,
2139    /// zone
2140    ///
2141    /// rec20
2142    Zone,
2143    /// exabit per second
2144    ///
2145    /// rec20
2146    ExabitPerSecond,
2147    /// exbibyte
2148    ///
2149    /// rec20
2150    Exbibyte,
2151    /// pebibyte
2152    ///
2153    /// rec20
2154    Pebibyte,
2155    /// tebibyte
2156    ///
2157    /// rec20
2158    Tebibyte,
2159    /// gibibyte
2160    ///
2161    /// rec20
2162    Gibibyte,
2163    /// mebibyte
2164    ///
2165    /// rec20
2166    Mebibyte,
2167    /// kibibyte
2168    ///
2169    /// rec20
2170    Kibibyte,
2171    /// exbibit per metre
2172    ///
2173    /// rec20
2174    ExbibitPerMetre,
2175    /// exbibit per square metre
2176    ///
2177    /// rec20
2178    ExbibitPerSquareMetre,
2179    /// exbibit per cubic metre
2180    ///
2181    /// rec20
2182    ExbibitPerCubicMetre,
2183    /// gigabyte per second
2184    ///
2185    /// rec20
2186    GigabytePerSecond,
2187    /// gibibit per metre
2188    ///
2189    /// rec20
2190    GibibitPerMetre,
2191    /// gibibit per square metre
2192    ///
2193    /// rec20
2194    GibibitPerSquareMetre,
2195    /// gibibit per cubic metre
2196    ///
2197    /// rec20
2198    GibibitPerCubicMetre,
2199    /// kibibit per metre
2200    ///
2201    /// rec20
2202    KibibitPerMetre,
2203    /// kibibit per square metre
2204    ///
2205    /// rec20
2206    KibibitPerSquareMetre,
2207    /// kibibit per cubic metre
2208    ///
2209    /// rec20
2210    KibibitPerCubicMetre,
2211    /// mebibit per metre
2212    ///
2213    /// rec20
2214    MebibitPerMetre,
2215    /// mebibit per square metre
2216    ///
2217    /// rec20
2218    MebibitPerSquareMetre,
2219    /// mebibit per cubic metre
2220    ///
2221    /// rec20
2222    MebibitPerCubicMetre,
2223    /// petabit
2224    ///
2225    /// rec20
2226    Petabit,
2227    /// petabit per second
2228    ///
2229    /// rec20
2230    PetabitPerSecond,
2231    /// pebibit per metre
2232    ///
2233    /// rec20
2234    PebibitPerMetre,
2235    /// pebibit per square metre
2236    ///
2237    /// rec20
2238    PebibitPerSquareMetre,
2239    /// pebibit per cubic metre
2240    ///
2241    /// rec20
2242    PebibitPerCubicMetre,
2243    /// terabit
2244    ///
2245    /// rec20
2246    Terabit,
2247    /// terabit per second
2248    ///
2249    /// rec20
2250    TerabitPerSecond,
2251    /// tebibit per metre
2252    ///
2253    /// rec20
2254    TebibitPerMetre,
2255    /// tebibit per cubic metre
2256    ///
2257    /// rec20
2258    TebibitPerCubicMetre,
2259    /// tebibit per square metre
2260    ///
2261    /// rec20
2262    TebibitPerSquareMetre,
2263    /// bit per metre
2264    ///
2265    /// rec20
2266    BitPerMetre,
2267    /// bit per square metre
2268    ///
2269    /// rec20
2270    BitPerSquareMetre,
2271    /// reciprocal centimetre
2272    ///
2273    /// rec20
2274    ReciprocalCentimetre,
2275    /// reciprocal day
2276    ///
2277    /// rec20
2278    ReciprocalDay,
2279    /// cubic decimetre per hour
2280    ///
2281    /// rec20
2282    CubicDecimetrePerHour,
2283    /// kilogram per hour
2284    ///
2285    /// rec20
2286    KilogramPerHour,
2287    /// kilomole per second
2288    ///
2289    /// rec20
2290    KilomolePerSecond,
2291    /// mole per second
2292    ///
2293    /// rec20
2294    MolePerSecond,
2295    /// degree per second
2296    ///
2297    /// rec20
2298    DegreePerSecond,
2299    /// millimetre per degree Celcius metre
2300    ///
2301    /// rec20
2302    MillimetrePerDegreeCelciusMetre,
2303    /// degree Celsius per kelvin
2304    ///
2305    /// rec20
2306    DegreeCelsiusPerKelvin,
2307    /// hectopascal per bar
2308    ///
2309    /// rec20
2310    HectopascalPerBar,
2311    /// each
2312    ///
2313    /// rec20
2314    Each,
2315    /// electronic mail box
2316    ///
2317    /// rec20
2318    ElectronicMailBox,
2319    /// equivalent gallon
2320    ///
2321    /// rec20
2322    EquivalentGallon,
2323    /// bit per cubic metre
2324    ///
2325    /// rec20
2326    BitPerCubicMetre,
2327    /// kelvin per kelvin
2328    ///
2329    /// rec20
2330    KelvinPerKelvin,
2331    /// kilopascal per bar
2332    ///
2333    /// rec20
2334    KilopascalPerBar,
2335    /// millibar per bar
2336    ///
2337    /// rec20
2338    MillibarPerBar,
2339    /// megapascal per bar
2340    ///
2341    /// rec20
2342    MegapascalPerBar,
2343    /// poise per bar
2344    ///
2345    /// rec20
2346    PoisePerBar,
2347    /// pascal per bar
2348    ///
2349    /// rec20
2350    PascalPerBar,
2351    /// milliampere per inch
2352    ///
2353    /// rec20
2354    MilliamperePerInch,
2355    /// kelvin per hour
2356    ///
2357    /// rec20
2358    KelvinPerHour,
2359    /// kelvin per minute
2360    ///
2361    /// rec20
2362    KelvinPerMinute,
2363    /// kelvin per second
2364    ///
2365    /// rec20
2366    KelvinPerSecond,
2367    /// slug
2368    ///
2369    /// rec20
2370    Slug,
2371    /// gram per kelvin
2372    ///
2373    /// rec20
2374    GramPerKelvin,
2375    /// kilogram per kelvin
2376    ///
2377    /// rec20
2378    KilogramPerKelvin,
2379    /// milligram per kelvin
2380    ///
2381    /// rec20
2382    MilligramPerKelvin,
2383    /// pound-force per foot
2384    ///
2385    /// rec20
2386    PoundForcePerFoot,
2387    /// kilogram square centimetre
2388    ///
2389    /// rec20
2390    KilogramSquareCentimetre,
2391    /// kilogram square millimetre
2392    ///
2393    /// rec20
2394    KilogramSquareMillimetre,
2395    /// pound inch squared
2396    ///
2397    /// rec20
2398    PoundInchSquared,
2399    /// pound-force inch
2400    ///
2401    /// rec20
2402    PoundForceInch,
2403    /// pound-force foot per ampere
2404    ///
2405    /// rec20
2406    PoundForceFootPerAmpere,
2407    /// gram per cubic decimetre
2408    ///
2409    /// rec20
2410    GramPerCubicDecimetre,
2411    /// kilogram per kilomol
2412    ///
2413    /// rec20
2414    KilogramPerKilomol,
2415    /// gram per hertz
2416    ///
2417    /// rec20
2418    GramPerHertz,
2419    /// gram per day
2420    ///
2421    /// rec20
2422    GramPerDay,
2423    /// gram per hour
2424    ///
2425    /// rec20
2426    GramPerHour,
2427    /// gram per minute
2428    ///
2429    /// rec20
2430    GramPerMinute,
2431    /// gram per second
2432    ///
2433    /// rec20
2434    GramPerSecond,
2435    /// kilogram per day
2436    ///
2437    /// rec20
2438    KilogramPerDay,
2439    /// kilogram per minute
2440    ///
2441    /// rec20
2442    KilogramPerMinute,
2443    /// milligram per day
2444    ///
2445    /// rec20
2446    MilligramPerDay,
2447    /// milligram per minute
2448    ///
2449    /// rec20
2450    MilligramPerMinute,
2451    /// milligram per second
2452    ///
2453    /// rec20
2454    MilligramPerSecond,
2455    /// gram per day kelvin
2456    ///
2457    /// rec20
2458    GramPerDayKelvin,
2459    /// gram per hour kelvin
2460    ///
2461    /// rec20
2462    GramPerHourKelvin,
2463    /// gram per minute kelvin
2464    ///
2465    /// rec20
2466    GramPerMinuteKelvin,
2467    /// gram per second kelvin
2468    ///
2469    /// rec20
2470    GramPerSecondKelvin,
2471    /// kilogram per day kelvin
2472    ///
2473    /// rec20
2474    KilogramPerDayKelvin,
2475    /// kilogram per hour kelvin
2476    ///
2477    /// rec20
2478    KilogramPerHourKelvin,
2479    /// kilogram per minute kelvin
2480    ///
2481    /// rec20
2482    KilogramPerMinuteKelvin,
2483    /// kilogram per second kelvin
2484    ///
2485    /// rec20
2486    KilogramPerSecondKelvin,
2487    /// milligram per day kelvin
2488    ///
2489    /// rec20
2490    MilligramPerDayKelvin,
2491    /// milligram per hour kelvin
2492    ///
2493    /// rec20
2494    MilligramPerHourKelvin,
2495    /// milligram per minute kelvin
2496    ///
2497    /// rec20
2498    MilligramPerMinuteKelvin,
2499    /// milligram per second kelvin
2500    ///
2501    /// rec20
2502    MilligramPerSecondKelvin,
2503    /// newton per millimetre
2504    ///
2505    /// rec20
2506    NewtonPerMillimetre,
2507    /// pound-force per inch
2508    ///
2509    /// rec20
2510    PoundForcePerInch,
2511    /// rod [unit of distance]
2512    ///
2513    /// rec20
2514    RodUnitDistance,
2515    /// micrometre per kelvin
2516    ///
2517    /// rec20
2518    MicrometrePerKelvin,
2519    /// centimetre per kelvin
2520    ///
2521    /// rec20
2522    CentimetrePerKelvin,
2523    /// metre per kelvin
2524    ///
2525    /// rec20
2526    MetrePerKelvin,
2527    /// millimetre per kelvin
2528    ///
2529    /// rec20
2530    MillimetrePerKelvin,
2531    /// milliohm per metre
2532    ///
2533    /// rec20
2534    MilliohmPerMetre,
2535    /// ohm per mile (statute mile)
2536    ///
2537    /// rec20
2538    OhmPerMileStatuteMile,
2539    /// ohm per kilometre
2540    ///
2541    /// rec20
2542    OhmPerKilometre,
2543    /// milliampere per pound-force per square inch
2544    ///
2545    /// rec20
2546    MilliamperePerPoundForcePerSquareInch,
2547    /// reciprocal bar
2548    ///
2549    /// rec20
2550    ReciprocalBar,
2551    /// milliampere per bar
2552    ///
2553    /// rec20
2554    MilliamperePerBar,
2555    /// degree Celsius per bar
2556    ///
2557    /// rec20
2558    DegreeCelsiusPerBar,
2559    /// kelvin per bar
2560    ///
2561    /// rec20
2562    KelvinPerBar,
2563    /// gram per day bar
2564    ///
2565    /// rec20
2566    GramPerDayBar,
2567    /// gram per hour bar
2568    ///
2569    /// rec20
2570    GramPerHourBar,
2571    /// gram per minute bar
2572    ///
2573    /// rec20
2574    GramPerMinuteBar,
2575    /// gram per second bar
2576    ///
2577    /// rec20
2578    GramPerSecondBar,
2579    /// kilogram per day bar
2580    ///
2581    /// rec20
2582    KilogramPerDayBar,
2583    /// kilogram per hour bar
2584    ///
2585    /// rec20
2586    KilogramPerHourBar,
2587    /// kilogram per minute bar
2588    ///
2589    /// rec20
2590    KilogramPerMinuteBar,
2591    /// kilogram per second bar
2592    ///
2593    /// rec20
2594    KilogramPerSecondBar,
2595    /// milligram per day bar
2596    ///
2597    /// rec20
2598    MilligramPerDayBar,
2599    /// milligram per hour bar
2600    ///
2601    /// rec20
2602    MilligramPerHourBar,
2603    /// milligram per minute bar
2604    ///
2605    /// rec20
2606    MilligramPerMinuteBar,
2607    /// milligram per second bar
2608    ///
2609    /// rec20
2610    MilligramPerSecondBar,
2611    /// gram per bar
2612    ///
2613    /// rec20
2614    GramPerBar,
2615    /// milligram per bar
2616    ///
2617    /// rec20
2618    MilligramPerBar,
2619    /// milliampere per millimetre
2620    ///
2621    /// rec20
2622    MilliamperePerMillimetre,
2623    /// pascal second per kelvin
2624    ///
2625    /// rec20
2626    PascalSecondPerKelvin,
2627    /// inch of water
2628    ///
2629    /// rec20
2630    InchWater,
2631    /// inch of mercury
2632    ///
2633    /// rec20
2634    InchMercury,
2635    /// water horse power
2636    ///
2637    /// rec20
2638    WaterHorsePower,
2639    /// bar per kelvin
2640    ///
2641    /// rec20
2642    BarPerKelvin,
2643    /// hectopascal per kelvin
2644    ///
2645    /// rec20
2646    HectopascalPerKelvin,
2647    /// kilopascal per kelvin
2648    ///
2649    /// rec20
2650    KilopascalPerKelvin,
2651    /// millibar per kelvin
2652    ///
2653    /// rec20
2654    MillibarPerKelvin,
2655    /// megapascal per kelvin
2656    ///
2657    /// rec20
2658    MegapascalPerKelvin,
2659    /// poise per kelvin
2660    ///
2661    /// rec20
2662    PoisePerKelvin,
2663    /// volt per litre minute
2664    ///
2665    /// rec20
2666    VoltPerLitreMinute,
2667    /// newton centimetre
2668    ///
2669    /// rec20
2670    NewtonCentimetre,
2671    /// newton metre per degree
2672    ///
2673    /// rec20
2674    NewtonMetrePerDegree,
2675    /// newton metre per ampere
2676    ///
2677    /// rec20
2678    NewtonMetrePerAmpere,
2679    /// bar litre per second
2680    ///
2681    /// rec20
2682    BarLitrePerSecond,
2683    /// bar cubic metre per second
2684    ///
2685    /// rec20
2686    BarCubicMetrePerSecond,
2687    /// hectopascal litre per second
2688    ///
2689    /// rec20
2690    HectopascalLitrePerSecond,
2691    /// hectopascal cubic metre per second
2692    ///
2693    /// rec20
2694    HectopascalCubicMetrePerSecond,
2695    /// millibar litre per second
2696    ///
2697    /// rec20
2698    MillibarLitrePerSecond,
2699    /// millibar cubic metre per second
2700    ///
2701    /// rec20
2702    MillibarCubicMetrePerSecond,
2703    /// megapascal litre per second
2704    ///
2705    /// rec20
2706    MegapascalLitrePerSecond,
2707    /// megapascal cubic metre per second
2708    ///
2709    /// rec20
2710    MegapascalCubicMetrePerSecond,
2711    /// pascal litre per second
2712    ///
2713    /// rec20
2714    PascalLitrePerSecond,
2715    /// degree Fahrenheit
2716    ///
2717    /// rec20
2718    DegreeFahrenheit,
2719    /// farad
2720    ///
2721    /// rec20
2722    Farad,
2723    /// fibre metre
2724    ///
2725    /// rec20
2726    FibreMetre,
2727    /// thousand cubic foot
2728    ///
2729    /// rec20
2730    ThousandCubicFoot,
2731    /// hundred cubic metre
2732    ///
2733    /// rec20
2734    HundredCubicMetre,
2735    /// micromole
2736    ///
2737    /// rec20
2738    Micromole,
2739    /// failures in time
2740    ///
2741    /// rec20
2742    FailuresInTime,
2743    /// flake ton
2744    ///
2745    /// rec20
2746    FlakeTon,
2747    /// Formazin nephelometric unit
2748    ///
2749    /// Rec20
2750    FormazinNephelometricUnit,
2751    /// foot
2752    ///
2753    /// rec20
2754    Foot,
2755    /// pound per square foot
2756    ///
2757    /// rec20
2758    PoundPerSquareFoot,
2759    /// foot per minute
2760    ///
2761    /// rec20
2762    FootPerMinute,
2763    /// foot per second
2764    ///
2765    /// rec20
2766    FootPerSecond,
2767    /// square foot
2768    ///
2769    /// rec20
2770    SquareFoot,
2771    /// cubic foot
2772    ///
2773    /// rec20
2774    CubicFoot,
2775    /// pascal cubic metre per second
2776    ///
2777    /// rec20
2778    PascalCubicMetrePerSecond,
2779    /// centimetre per bar
2780    ///
2781    /// rec20
2782    CentimetrePerBar,
2783    /// metre per bar
2784    ///
2785    /// rec20
2786    MetrePerBar,
2787    /// millimetre per bar
2788    ///
2789    /// rec20
2790    MillimetrePerBar,
2791    /// square inch per second
2792    ///
2793    /// rec20
2794    SquareInchPerSecond,
2795    /// square metre per second kelvin
2796    ///
2797    /// rec20
2798    SquareMetrePerSecondKelvin,
2799    /// stokes per kelvin
2800    ///
2801    /// rec20
2802    StokesPerKelvin,
2803    /// gram per cubic centimetre bar
2804    ///
2805    /// rec20
2806    GramPerCubicCentimetreBar,
2807    /// gram per cubic decimetre bar
2808    ///
2809    /// rec20
2810    GramPerCubicDecimetreBar,
2811    /// gram per litre bar
2812    ///
2813    /// rec20
2814    GramPerLitreBar,
2815    /// gram per cubic metre bar
2816    ///
2817    /// rec20
2818    GramPerCubicMetreBar,
2819    /// gram per millilitre bar
2820    ///
2821    /// rec20
2822    GramPerMillilitreBar,
2823    /// kilogram per cubic centimetre bar
2824    ///
2825    /// rec20
2826    KilogramPerCubicCentimetreBar,
2827    /// kilogram per litre bar
2828    ///
2829    /// rec20
2830    KilogramPerLitreBar,
2831    /// kilogram per cubic metre bar
2832    ///
2833    /// rec20
2834    KilogramPerCubicMetreBar,
2835    /// newton metre per kilogram
2836    ///
2837    /// rec20
2838    NewtonMetrePerKilogram,
2839    /// US gallon per minute
2840    ///
2841    /// rec20
2842    UsGallonPerMinute,
2843    /// pound-force foot per pound
2844    ///
2845    /// rec20
2846    PoundForceFootPerPound,
2847    /// cup [unit of volume]
2848    ///
2849    /// rec20
2850    CupUnitVolume,
2851    /// peck
2852    ///
2853    /// rec20
2854    Peck,
2855    /// tablespoon (US)
2856    ///
2857    /// rec20
2858    TablespoonUs,
2859    /// teaspoon (US)
2860    ///
2861    /// rec20
2862    TeaspoonUs,
2863    /// stere
2864    ///
2865    /// rec20
2866    Stere,
2867    /// cubic centimetre per kelvin
2868    ///
2869    /// rec20
2870    CubicCentimetrePerKelvin,
2871    /// litre per kelvin
2872    ///
2873    /// rec20
2874    LitrePerKelvin,
2875    /// cubic metre per kelvin
2876    ///
2877    /// rec20
2878    CubicMetrePerKelvin,
2879    /// Imperial gallon per minute
2880    ///
2881    /// rec20
2882    ImperialGallonPerMinute,
2883    /// millilitre per kelvin
2884    ///
2885    /// rec20
2886    MillilitrePerKelvin,
2887    /// kilogram per cubic centimetre
2888    ///
2889    /// rec20
2890    KilogramPerCubicCentimetre,
2891    /// ounce (avoirdupois) per cubic yard
2892    ///
2893    /// rec20
2894    OunceAvoirdupoisPerCubicYard,
2895    /// gram per cubic centimetre kelvin
2896    ///
2897    /// rec20
2898    GramPerCubicCentimetreKelvin,
2899    /// gram per cubic decimetre kelvin
2900    ///
2901    /// rec20
2902    GramPerCubicDecimetreKelvin,
2903    /// gram per litre kelvin
2904    ///
2905    /// rec20
2906    GramPerLitreKelvin,
2907    /// gram per cubic metre kelvin
2908    ///
2909    /// rec20
2910    GramPerCubicMetreKelvin,
2911    /// gram per millilitre kelvin
2912    ///
2913    /// rec20
2914    GramPerMillilitreKelvin,
2915    /// kilogram per cubic centimetre kelvin
2916    ///
2917    /// rec20
2918    KilogramPerCubicCentimetreKelvin,
2919    /// kilogram per litre kelvin
2920    ///
2921    /// rec20
2922    KilogramPerLitreKelvin,
2923    /// kilogram per cubic metre kelvin
2924    ///
2925    /// rec20
2926    KilogramPerCubicMetreKelvin,
2927    /// square metre per second bar
2928    ///
2929    /// rec20
2930    SquareMetrePerSecondBar,
2931    /// microsiemens per centimetre
2932    ///
2933    /// rec20
2934    MicrosiemensPerCentimetre,
2935    /// microsiemens per metre
2936    ///
2937    /// rec20
2938    MicrosiemensPerMetre,
2939    /// nanosiemens per centimetre
2940    ///
2941    /// rec20
2942    NanosiemensPerCentimetre,
2943    /// nanosiemens per metre
2944    ///
2945    /// rec20
2946    NanosiemensPerMetre,
2947    /// stokes per bar
2948    ///
2949    /// rec20
2950    StokesPerBar,
2951    /// cubic centimetre per day
2952    ///
2953    /// rec20
2954    CubicCentimetrePerDay,
2955    /// cubic centimetre per hour
2956    ///
2957    /// rec20
2958    CubicCentimetrePerHour,
2959    /// cubic centimetre per minute
2960    ///
2961    /// rec20
2962    CubicCentimetrePerMinute,
2963    /// gallon (US) per hour
2964    ///
2965    /// rec20
2966    GallonUsPerHour,
2967    /// litre per second
2968    ///
2969    /// rec20
2970    LitrePerSecond,
2971    /// cubic metre per day
2972    ///
2973    /// rec20
2974    CubicMetrePerDay,
2975    /// cubic metre per minute
2976    ///
2977    /// rec20
2978    CubicMetrePerMinute,
2979    /// millilitre per day
2980    ///
2981    /// rec20
2982    MillilitrePerDay,
2983    /// millilitre per hour
2984    ///
2985    /// rec20
2986    MillilitrePerHour,
2987    /// cubic inch per hour
2988    ///
2989    /// rec20
2990    CubicInchPerHour,
2991    /// cubic inch per minute
2992    ///
2993    /// rec20
2994    CubicInchPerMinute,
2995    /// cubic inch per second
2996    ///
2997    /// rec20
2998    CubicInchPerSecond,
2999    /// milliampere per litre minute
3000    ///
3001    /// rec20
3002    MilliamperePerLitreMinute,
3003    /// volt per bar
3004    ///
3005    /// rec20
3006    VoltPerBar,
3007    /// cubic centimetre per day kelvin
3008    ///
3009    /// rec20
3010    CubicCentimetrePerDayKelvin,
3011    /// cubic centimetre per hour kelvin
3012    ///
3013    /// rec20
3014    CubicCentimetrePerHourKelvin,
3015    /// cubic centimetre per minute kelvin
3016    ///
3017    /// rec20
3018    CubicCentimetrePerMinuteKelvin,
3019    /// cubic centimetre per second kelvin
3020    ///
3021    /// rec20
3022    CubicCentimetrePerSecondKelvin,
3023    /// litre per day kelvin
3024    ///
3025    /// rec20
3026    LitrePerDayKelvin,
3027    /// litre per hour kelvin
3028    ///
3029    /// rec20
3030    LitrePerHourKelvin,
3031    /// litre per minute kelvin
3032    ///
3033    /// rec20
3034    LitrePerMinuteKelvin,
3035    /// litre per second kelvin
3036    ///
3037    /// rec20
3038    LitrePerSecondKelvin,
3039    /// cubic metre per day kelvin
3040    ///
3041    /// rec20
3042    CubicMetrePerDayKelvin,
3043    /// cubic metre per hour kelvin
3044    ///
3045    /// rec20
3046    CubicMetrePerHourKelvin,
3047    /// cubic metre per minute kelvin
3048    ///
3049    /// rec20
3050    CubicMetrePerMinuteKelvin,
3051    /// cubic metre per second kelvin
3052    ///
3053    /// rec20
3054    CubicMetrePerSecondKelvin,
3055    /// millilitre per day kelvin
3056    ///
3057    /// rec20
3058    MillilitrePerDayKelvin,
3059    /// millilitre per hour kelvin
3060    ///
3061    /// rec20
3062    MillilitrePerHourKelvin,
3063    /// millilitre per minute kelvin
3064    ///
3065    /// rec20
3066    MillilitrePerMinuteKelvin,
3067    /// millilitre per second kelvin
3068    ///
3069    /// rec20
3070    MillilitrePerSecondKelvin,
3071    /// millimetre to the fourth power
3072    ///
3073    /// rec20
3074    MillimetreToFourthPower,
3075    /// cubic centimetre per day bar
3076    ///
3077    /// rec20
3078    CubicCentimetrePerDayBar,
3079    /// cubic centimetre per hour bar
3080    ///
3081    /// rec20
3082    CubicCentimetrePerHourBar,
3083    /// cubic centimetre per minute bar
3084    ///
3085    /// rec20
3086    CubicCentimetrePerMinuteBar,
3087    /// cubic centimetre per second bar
3088    ///
3089    /// rec20
3090    CubicCentimetrePerSecondBar,
3091    /// litre per day bar
3092    ///
3093    /// rec20
3094    LitrePerDayBar,
3095    /// litre per hour bar
3096    ///
3097    /// rec20
3098    LitrePerHourBar,
3099    /// litre per minute bar
3100    ///
3101    /// rec20
3102    LitrePerMinuteBar,
3103    /// litre per second bar
3104    ///
3105    /// rec20
3106    LitrePerSecondBar,
3107    /// cubic metre per day bar
3108    ///
3109    /// rec20
3110    CubicMetrePerDayBar,
3111    /// cubic metre per hour bar
3112    ///
3113    /// rec20
3114    CubicMetrePerHourBar,
3115    /// cubic metre per minute bar
3116    ///
3117    /// rec20
3118    CubicMetrePerMinuteBar,
3119    /// cubic metre per second bar
3120    ///
3121    /// rec20
3122    CubicMetrePerSecondBar,
3123    /// millilitre per day bar
3124    ///
3125    /// rec20
3126    MillilitrePerDayBar,
3127    /// millilitre per hour bar
3128    ///
3129    /// rec20
3130    MillilitrePerHourBar,
3131    /// millilitre per minute bar
3132    ///
3133    /// rec20
3134    MillilitrePerMinuteBar,
3135    /// millilitre per second bar
3136    ///
3137    /// rec20
3138    MillilitrePerSecondBar,
3139    /// cubic centimetre per bar
3140    ///
3141    /// rec20
3142    CubicCentimetrePerBar,
3143    /// litre per bar
3144    ///
3145    /// rec20
3146    LitrePerBar,
3147    /// cubic metre per bar
3148    ///
3149    /// rec20
3150    CubicMetrePerBar,
3151    /// millilitre per bar
3152    ///
3153    /// rec20
3154    MillilitrePerBar,
3155    /// microhenry per kiloohm
3156    ///
3157    /// rec20
3158    MicrohenryPerKiloohm,
3159    /// microhenry per ohm
3160    ///
3161    /// rec20
3162    MicrohenryPerOhm,
3163    /// gallon (US) per day
3164    ///
3165    /// rec20
3166    GallonUsPerDay,
3167    /// gigabecquerel
3168    ///
3169    /// rec20
3170    Gigabecquerel,
3171    /// gram, dry weight
3172    ///
3173    /// rec20
3174    GramDryWeight,
3175    /// pound per gallon (US)
3176    ///
3177    /// rec20
3178    PoundPerGallonUs,
3179    /// gram per metre (gram per 100 centimetres)
3180    ///
3181    /// rec20
3182    GramPerMetreGramPer100Centimetres,
3183    /// gram of fissile isotope
3184    ///
3185    /// rec20
3186    GramFissileIsotope,
3187    /// great gross
3188    ///
3189    /// rec20
3190    GreatGross,
3191    /// gill (US)
3192    ///
3193    /// rec20
3194    GillUs,
3195    /// gram, including container
3196    ///
3197    /// rec20
3198    GramIncludingContainer,
3199    /// gill (UK)
3200    ///
3201    /// rec20
3202    GillUk,
3203    /// gram, including inner packaging
3204    ///
3205    /// rec20
3206    GramIncludingInnerPackaging,
3207    /// gram per millilitre
3208    ///
3209    /// rec20
3210    GramPerMillilitre,
3211    /// gram per litre
3212    ///
3213    /// rec20
3214    GramPerLitre,
3215    /// dry gallon (US)
3216    ///
3217    /// rec20
3218    DryGallonUs,
3219    /// gallon (UK)
3220    ///
3221    /// rec20
3222    GallonUk,
3223    /// gallon (US)
3224    ///
3225    /// rec20
3226    GallonUs,
3227    /// gram per square metre
3228    ///
3229    /// rec20
3230    GramPerSquareMetre,
3231    /// milligram per square metre
3232    ///
3233    /// rec20
3234    MilligramPerSquareMetre,
3235    /// milligram per cubic metre
3236    ///
3237    /// rec20
3238    MilligramPerCubicMetre,
3239    /// microgram per cubic metre
3240    ///
3241    /// rec20
3242    MicrogramPerCubicMetre,
3243    /// gram
3244    ///
3245    /// rec20
3246    Gram,
3247    /// grain
3248    ///
3249    /// rec20
3250    Grain,
3251    /// gross
3252    ///
3253    /// rec20
3254    Gross,
3255    /// gigajoule
3256    ///
3257    /// rec20
3258    Gigajoule,
3259    /// gigawatt hour
3260    ///
3261    /// rec20
3262    GigawattHour,
3263    /// henry per kiloohm
3264    ///
3265    /// rec20
3266    HenryPerKiloohm,
3267    /// henry per ohm
3268    ///
3269    /// rec20
3270    HenryPerOhm,
3271    /// millihenry per kiloohm
3272    ///
3273    /// rec20
3274    MillihenryPerKiloohm,
3275    /// millihenry per ohm
3276    ///
3277    /// rec20
3278    MillihenryPerOhm,
3279    /// pascal second per bar
3280    ///
3281    /// rec20
3282    PascalSecondPerBar,
3283    /// microbecquerel
3284    ///
3285    /// rec20
3286    Microbecquerel,
3287    /// reciprocal year
3288    ///
3289    /// rec20
3290    ReciprocalYear,
3291    /// reciprocal hour
3292    ///
3293    /// rec20
3294    ReciprocalHour,
3295    /// reciprocal month
3296    ///
3297    /// rec20
3298    ReciprocalMonth,
3299    /// degree Celsius per hour
3300    ///
3301    /// rec20
3302    DegreeCelsiusPerHour,
3303    /// degree Celsius per minute
3304    ///
3305    /// rec20
3306    DegreeCelsiusPerMinute,
3307    /// degree Celsius per second
3308    ///
3309    /// rec20
3310    DegreeCelsiusPerSecond,
3311    /// square centimetre per gram
3312    ///
3313    /// rec20
3314    SquareCentimetrePerGram,
3315    /// square decametre
3316    ///
3317    /// rec20
3318    SquareDecametre,
3319    /// square hectometre
3320    ///
3321    /// rec20
3322    SquareHectometre,
3323    /// cubic hectometre
3324    ///
3325    /// rec20
3326    CubicHectometre,
3327    /// cubic kilometre
3328    ///
3329    /// rec20
3330    CubicKilometre,
3331    /// blank
3332    ///
3333    /// rec20
3334    Blank,
3335    /// volt square inch per pound-force
3336    ///
3337    /// rec20
3338    VoltSquareInchPerPoundForce,
3339    /// volt per inch
3340    ///
3341    /// rec20
3342    VoltPerInch,
3343    /// volt per microsecond
3344    ///
3345    /// rec20
3346    VoltPerMicrosecond,
3347    /// percent per kelvin
3348    ///
3349    /// rec20
3350    PercentPerKelvin,
3351    /// ohm per metre
3352    ///
3353    /// rec20
3354    OhmPerMetre,
3355    /// degree per metre
3356    ///
3357    /// rec20
3358    DegreePerMetre,
3359    /// microfarad per kilometre
3360    ///
3361    /// rec20
3362    MicrofaradPerKilometre,
3363    /// microgram per litre
3364    ///
3365    /// rec20
3366    MicrogramPerLitre,
3367    /// square micrometre (square micron)
3368    ///
3369    /// rec20
3370    SquareMicrometreSquareMicron,
3371    /// ampere per kilogram
3372    ///
3373    /// rec20
3374    AmperePerKilogram,
3375    /// ampere squared second
3376    ///
3377    /// rec20
3378    AmpereSquaredSecond,
3379    /// farad per kilometre
3380    ///
3381    /// rec20
3382    FaradPerKilometre,
3383    /// hertz metre
3384    ///
3385    /// rec20
3386    HertzMetre,
3387    /// kelvin metre per watt
3388    ///
3389    /// rec20
3390    KelvinMetrePerWatt,
3391    /// megaohm per kilometre
3392    ///
3393    /// rec20
3394    MegaohmPerKilometre,
3395    /// megaohm per metre
3396    ///
3397    /// rec20
3398    MegaohmPerMetre,
3399    /// megaampere
3400    ///
3401    /// rec20
3402    Megaampere,
3403    /// megahertz kilometre
3404    ///
3405    /// rec20
3406    MegahertzKilometre,
3407    /// newton per ampere
3408    ///
3409    /// rec20
3410    NewtonPerAmpere,
3411    /// newton metre watt to the power minus 0,5
3412    ///
3413    /// rec20
3414    NewtonMetreWattToPowerMinus05,
3415    /// pascal per metre
3416    ///
3417    /// rec20
3418    PascalPerMetre,
3419    /// siemens per centimetre
3420    ///
3421    /// rec20
3422    SiemensPerCentimetre,
3423    /// teraohm
3424    ///
3425    /// rec20
3426    Teraohm,
3427    /// volt second per metre
3428    ///
3429    /// rec20
3430    VoltSecondPerMetre,
3431    /// volt per second
3432    ///
3433    /// rec20
3434    VoltPerSecond,
3435    /// watt per cubic metre
3436    ///
3437    /// rec20
3438    WattPerCubicMetre,
3439    /// attofarad
3440    ///
3441    /// rec20
3442    Attofarad,
3443    /// centimetre per hour
3444    ///
3445    /// rec20
3446    CentimetrePerHour,
3447    /// reciprocal cubic centimetre
3448    ///
3449    /// rec20
3450    ReciprocalCubicCentimetre,
3451    /// decibel per kilometre
3452    ///
3453    /// rec20
3454    DecibelPerKilometre,
3455    /// decibel per metre
3456    ///
3457    /// rec20
3458    DecibelPerMetre,
3459    /// kilogram per bar
3460    ///
3461    /// rec20
3462    KilogramPerBar,
3463    /// kilogram per cubic decimetre kelvin
3464    ///
3465    /// rec20
3466    KilogramPerCubicDecimetreKelvin,
3467    /// kilogram per cubic decimetre bar
3468    ///
3469    /// rec20
3470    KilogramPerCubicDecimetreBar,
3471    /// kilogram per square metre second
3472    ///
3473    /// rec20
3474    KilogramPerSquareMetreSecond,
3475    /// inch per two pi radiant
3476    ///
3477    /// rec20
3478    InchPerTwoPiRadiant,
3479    /// metre per volt second
3480    ///
3481    /// rec20
3482    MetrePerVoltSecond,
3483    /// square metre per newton
3484    ///
3485    /// rec20
3486    SquareMetrePerNewton,
3487    /// cubic metre per cubic metre
3488    ///
3489    /// rec20
3490    CubicMetrePerCubicMetre,
3491    /// millisiemens per centimetre
3492    ///
3493    /// rec20
3494    MillisiemensPerCentimetre,
3495    /// millivolt per minute
3496    ///
3497    /// rec20
3498    MillivoltPerMinute,
3499    /// milligram per square centimetre
3500    ///
3501    /// rec20
3502    MilligramPerSquareCentimetre,
3503    /// milligram per gram
3504    ///
3505    /// rec20
3506    MilligramPerGram,
3507    /// millilitre per cubic metre
3508    ///
3509    /// rec20
3510    MillilitrePerCubicMetre,
3511    /// millimetre per year
3512    ///
3513    /// rec20
3514    MillimetrePerYear,
3515    /// millimetre per hour
3516    ///
3517    /// rec20
3518    MillimetrePerHour,
3519    /// millimole per gram
3520    ///
3521    /// rec20
3522    MillimolePerGram,
3523    /// picopascal per kilometre
3524    ///
3525    /// rec20
3526    PicopascalPerKilometre,
3527    /// picosecond
3528    ///
3529    /// rec20
3530    Picosecond,
3531    /// percent per month
3532    ///
3533    /// rec20
3534    PercentPerMonth,
3535    /// percent per hectobar
3536    ///
3537    /// rec20
3538    PercentPerHectobar,
3539    /// percent per decakelvin
3540    ///
3541    /// rec20
3542    PercentPerDecakelvin,
3543    /// watt per metre
3544    ///
3545    /// rec20
3546    WattPerMetre,
3547    /// decapascal
3548    ///
3549    /// rec20
3550    Decapascal,
3551    /// gram per millimetre
3552    ///
3553    /// rec20
3554    GramPerMillimetre,
3555    /// module width
3556    ///
3557    /// rec20
3558    ModuleWidth,
3559    /// French gauge
3560    ///
3561    /// rec20
3562    FrenchGauge,
3563    /// rack unit
3564    ///
3565    /// rec20
3566    RackUnit,
3567    /// millimetre per minute
3568    ///
3569    /// rec20
3570    MillimetrePerMinute,
3571    /// big point
3572    ///
3573    /// rec20
3574    BigPoint,
3575    /// litre per kilogram
3576    ///
3577    /// rec20
3578    LitrePerKilogram,
3579    /// gram millimetre
3580    ///
3581    /// rec20
3582    GramMillimetre,
3583    /// reciprocal week
3584    ///
3585    /// rec20
3586    ReciprocalWeek,
3587    /// piece
3588    ///
3589    /// rec20
3590    Piece,
3591    /// megaohm kilometre
3592    ///
3593    /// rec20
3594    MegaohmKilometre,
3595    /// percent per ohm
3596    ///
3597    /// rec20
3598    PercentPerOhm,
3599    /// percent per degree
3600    ///
3601    /// rec20
3602    PercentPerDegree,
3603    /// percent per ten thousand
3604    ///
3605    /// rec20
3606    PercentPerTenThousand,
3607    /// percent per one hundred thousand
3608    ///
3609    /// rec20
3610    PercentPerOneHundredThousand,
3611    /// percent per hundred
3612    ///
3613    /// rec20
3614    PercentPerHundred,
3615    /// percent per thousand
3616    ///
3617    /// rec20
3618    PercentPerThousand,
3619    /// percent per volt
3620    ///
3621    /// rec20
3622    PercentPerVolt,
3623    /// percent per bar
3624    ///
3625    /// rec20
3626    PercentPerBar,
3627    /// percent per inch
3628    ///
3629    /// rec20
3630    PercentPerInch,
3631    /// percent per metre
3632    ///
3633    /// rec20
3634    PercentPerMetre,
3635    /// hank
3636    ///
3637    /// rec20
3638    Hank,
3639    /// Piece Day
3640    ///
3641    /// Rec20
3642    PieceDay,
3643    /// hectobar
3644    ///
3645    /// rec20
3646    Hectobar,
3647    /// hundred boxes
3648    ///
3649    /// rec20
3650    HundredBoxes,
3651    /// hundred count
3652    ///
3653    /// rec20
3654    HundredCount,
3655    /// hundred kilogram, dry weight
3656    ///
3657    /// rec20
3658    HundredKilogramDryWeight,
3659    /// head
3660    ///
3661    /// rec20
3662    Head,
3663    /// hectogram
3664    ///
3665    /// rec20
3666    Hectogram,
3667    /// hundred cubic foot
3668    ///
3669    /// rec20
3670    HundredCubicFoot,
3671    /// hundred international unit
3672    ///
3673    /// rec20
3674    HundredInternationalUnit,
3675    /// hundred kilogram, net mass
3676    ///
3677    /// rec20
3678    HundredKilogramNetMass,
3679    /// hectolitre
3680    ///
3681    /// rec20
3682    Hectolitre,
3683    /// mile per hour (statute mile)
3684    ///
3685    /// rec20
3686    MilePerHourStatuteMile,
3687    /// Piece Month
3688    ///
3689    /// Rec20
3690    PieceMonth,
3691    /// million cubic metre
3692    ///
3693    /// rec20
3694    MillionCubicMetre,
3695    /// hectometre
3696    ///
3697    /// rec20
3698    Hectometre,
3699    /// hectolitre of pure alcohol
3700    ///
3701    /// rec20
3702    HectolitrePureAlcohol,
3703    /// hertz
3704    ///
3705    /// rec20
3706    Hertz,
3707    /// hour
3708    ///
3709    /// rec20
3710    Hour,
3711    /// Piece Week
3712    ///
3713    /// Rec20
3714    PieceWeek,
3715    /// inch pound (pound inch)
3716    ///
3717    /// rec20
3718    InchPoundPoundInch,
3719    /// person
3720    ///
3721    /// rec20
3722    Person,
3723    /// inch
3724    ///
3725    /// rec20
3726    Inch,
3727    /// square inch
3728    ///
3729    /// rec20
3730    SquareInch,
3731    /// cubic inch
3732    ///
3733    /// rec20
3734    CubicInch,
3735    /// international sugar degree
3736    ///
3737    /// rec20
3738    InternationalSugarDegree,
3739    /// inch per second
3740    ///
3741    /// rec20
3742    InchPerSecond,
3743    /// international unit per gram
3744    ///
3745    /// rec20
3746    InternationalUnitPerGram,
3747    /// inch per second squared
3748    ///
3749    /// rec20
3750    InchPerSecondSquared,
3751    /// percent per millimetre
3752    ///
3753    /// rec20
3754    PercentPerMillimetre,
3755    /// per mille per psi
3756    ///
3757    /// rec20
3758    PerMillePerPsi,
3759    /// degree API
3760    ///
3761    /// rec20
3762    DegreeApi,
3763    /// degree Baume (origin scale)
3764    ///
3765    /// rec20
3766    DegreeBaumeOriginScale,
3767    /// degree Baume (US heavy)
3768    ///
3769    /// rec20
3770    DegreeBaumeUsHeavy,
3771    /// degree Baume (US light)
3772    ///
3773    /// rec20
3774    DegreeBaumeUsLight,
3775    /// degree Balling
3776    ///
3777    /// rec20
3778    DegreeBalling,
3779    /// degree Brix
3780    ///
3781    /// rec20
3782    DegreeBrix,
3783    /// degree Fahrenheit hour square foot per British thermal unit (thermochemical)
3784    ///
3785    /// rec20
3786    DegreeFahrenheitHourSquareFootPerBritishThermalUnitThermochemical,
3787    /// joule per kilogram
3788    ///
3789    /// rec20
3790    JoulePerKilogram,
3791    /// degree Fahrenheit per kelvin
3792    ///
3793    /// rec20
3794    DegreeFahrenheitPerKelvin,
3795    /// degree Fahrenheit per bar
3796    ///
3797    /// rec20
3798    DegreeFahrenheitPerBar,
3799    /// degree Fahrenheit hour square foot per British thermal unit (international table)
3800    ///
3801    /// rec20
3802    DegreeFahrenheitHourSquareFootPerBritishThermalUnitInternationalTable,
3803    /// degree Fahrenheit per hour
3804    ///
3805    /// rec20
3806    DegreeFahrenheitPerHour,
3807    /// degree Fahrenheit per minute
3808    ///
3809    /// rec20
3810    DegreeFahrenheitPerMinute,
3811    /// degree Fahrenheit per second
3812    ///
3813    /// rec20
3814    DegreeFahrenheitPerSecond,
3815    /// reciprocal degree Fahrenheit
3816    ///
3817    /// rec20
3818    ReciprocalDegreeFahrenheit,
3819    /// degree Oechsle
3820    ///
3821    /// rec20
3822    DegreeOechsle,
3823    /// degree Rankine per hour
3824    ///
3825    /// rec20
3826    DegreeRankinePerHour,
3827    /// degree Rankine per minute
3828    ///
3829    /// rec20
3830    DegreeRankinePerMinute,
3831    /// degree Rankine per second
3832    ///
3833    /// rec20
3834    DegreeRankinePerSecond,
3835    /// degree Twaddell
3836    ///
3837    /// rec20
3838    DegreeTwaddell,
3839    /// micropoise
3840    ///
3841    /// rec20
3842    Micropoise,
3843    /// microgram per kilogram
3844    ///
3845    /// rec20
3846    MicrogramPerKilogram,
3847    /// microgram per cubic metre kelvin
3848    ///
3849    /// rec20
3850    MicrogramPerCubicMetreKelvin,
3851    /// microgram per cubic metre bar
3852    ///
3853    /// rec20
3854    MicrogramPerCubicMetreBar,
3855    /// microlitre per litre
3856    ///
3857    /// rec20
3858    MicrolitrePerLitre,
3859    /// baud
3860    ///
3861    /// rec20
3862    Baud,
3863    /// British thermal unit (mean)
3864    ///
3865    /// rec20
3866    BritishThermalUnitMean,
3867    /// British thermal unit (international table) foot per hour square foot degree Fahrenheit
3868    ///
3869    /// rec20
3870    BritishThermalUnitInternationalTableFootPerHourSquareFootDegreeFahrenheit,
3871    /// British thermal unit (international table) inch per hour square foot degree Fahrenheit
3872    ///
3873    /// rec20
3874    BritishThermalUnitInternationalTableInchPerHourSquareFootDegreeFahrenheit,
3875    /// British thermal unit (international table) inch per second square foot degree Fahrenheit
3876    ///
3877    /// rec20
3878    BritishThermalUnitInternationalTableInchPerSecondSquareFootDegreeFahrenheit,
3879    /// British thermal unit (international table) per pound degree Fahrenheit
3880    ///
3881    /// rec20
3882    BritishThermalUnitInternationalTablePerPoundDegreeFahrenheit,
3883    /// British thermal unit (international table) per minute
3884    ///
3885    /// rec20
3886    BritishThermalUnitInternationalTablePerMinute,
3887    /// British thermal unit (international table) per second
3888    ///
3889    /// rec20
3890    BritishThermalUnitInternationalTablePerSecond,
3891    /// British thermal unit (thermochemical) foot per hour square foot degree Fahrenheit
3892    ///
3893    /// rec20
3894    BritishThermalUnitThermochemicalFootPerHourSquareFootDegreeFahrenheit,
3895    /// British thermal unit (thermochemical) per hour
3896    ///
3897    /// rec20
3898    BritishThermalUnitThermochemicalPerHour,
3899    /// British thermal unit (thermochemical) inch per hour square foot degree Fahrenheit
3900    ///
3901    /// rec20
3902    BritishThermalUnitThermochemicalInchPerHourSquareFootDegreeFahrenheit,
3903    /// British thermal unit (thermochemical) inch per second square foot degree Fahrenheit
3904    ///
3905    /// rec20
3906    BritishThermalUnitThermochemicalInchPerSecondSquareFootDegreeFahrenheit,
3907    /// British thermal unit (thermochemical) per pound degree Fahrenheit
3908    ///
3909    /// rec20
3910    BritishThermalUnitThermochemicalPerPoundDegreeFahrenheit,
3911    /// British thermal unit (thermochemical) per minute
3912    ///
3913    /// rec20
3914    BritishThermalUnitThermochemicalPerMinute,
3915    /// British thermal unit (thermochemical) per second
3916    ///
3917    /// rec20
3918    BritishThermalUnitThermochemicalPerSecond,
3919    /// coulomb square metre per kilogram
3920    ///
3921    /// rec20
3922    CoulombSquareMetrePerKilogram,
3923    /// megabaud
3924    ///
3925    /// rec20
3926    Megabaud,
3927    /// watt second
3928    ///
3929    /// rec20
3930    WattSecond,
3931    /// bar per bar
3932    ///
3933    /// rec20
3934    BarPerBar,
3935    /// barrel (UK petroleum)
3936    ///
3937    /// rec20
3938    BarrelUkPetroleum,
3939    /// barrel (UK petroleum) per minute
3940    ///
3941    /// rec20
3942    BarrelUkPetroleumPerMinute,
3943    /// barrel (UK petroleum) per day
3944    ///
3945    /// rec20
3946    BarrelUkPetroleumPerDay,
3947    /// barrel (UK petroleum) per hour
3948    ///
3949    /// rec20
3950    BarrelUkPetroleumPerHour,
3951    /// barrel (UK petroleum) per second
3952    ///
3953    /// rec20
3954    BarrelUkPetroleumPerSecond,
3955    /// barrel (US petroleum) per hour
3956    ///
3957    /// rec20
3958    BarrelUsPetroleumPerHour,
3959    /// barrel (US petroleum) per second
3960    ///
3961    /// rec20
3962    BarrelUsPetroleumPerSecond,
3963    /// bushel (UK) per day
3964    ///
3965    /// rec20
3966    BushelUkPerDay,
3967    /// bushel (UK) per hour
3968    ///
3969    /// rec20
3970    BushelUkPerHour,
3971    /// bushel (UK) per minute
3972    ///
3973    /// rec20
3974    BushelUkPerMinute,
3975    /// bushel (UK) per second
3976    ///
3977    /// rec20
3978    BushelUkPerSecond,
3979    /// bushel (US dry) per day
3980    ///
3981    /// rec20
3982    BushelUsDryPerDay,
3983    /// bushel (US dry) per hour
3984    ///
3985    /// rec20
3986    BushelUsDryPerHour,
3987    /// bushel (US dry) per minute
3988    ///
3989    /// rec20
3990    BushelUsDryPerMinute,
3991    /// bushel (US dry) per second
3992    ///
3993    /// rec20
3994    BushelUsDryPerSecond,
3995    /// centinewton metre
3996    ///
3997    /// rec20
3998    CentinewtonMetre,
3999    /// centipoise per kelvin
4000    ///
4001    /// rec20
4002    CentipoisePerKelvin,
4003    /// centipoise per bar
4004    ///
4005    /// rec20
4006    CentipoisePerBar,
4007    /// calorie (mean)
4008    ///
4009    /// rec20
4010    CalorieMean,
4011    /// calorie (international table) per gram degree Celsius
4012    ///
4013    /// rec20
4014    CalorieInternationalTablePerGramDegreeCelsius,
4015    /// calorie (thermochemical) per centimetre second degree Celsius
4016    ///
4017    /// rec20
4018    CalorieThermochemicalPerCentimetreSecondDegreeCelsius,
4019    /// calorie (thermochemical) per gram degree Celsius
4020    ///
4021    /// rec20
4022    CalorieThermochemicalPerGramDegreeCelsius,
4023    /// calorie (thermochemical) per minute
4024    ///
4025    /// rec20
4026    CalorieThermochemicalPerMinute,
4027    /// calorie (thermochemical) per second
4028    ///
4029    /// rec20
4030    CalorieThermochemicalPerSecond,
4031    /// clo
4032    ///
4033    /// rec20
4034    Clo,
4035    /// centimetre per second kelvin
4036    ///
4037    /// rec20
4038    CentimetrePerSecondKelvin,
4039    /// centimetre per second bar
4040    ///
4041    /// rec20
4042    CentimetrePerSecondBar,
4043    /// cubic centimetre per cubic metre
4044    ///
4045    /// rec20
4046    CubicCentimetrePerCubicMetre,
4047    /// cubic decimetre per day
4048    ///
4049    /// rec20
4050    CubicDecimetrePerDay,
4051    /// cubic decimetre per cubic metre
4052    ///
4053    /// rec20
4054    CubicDecimetrePerCubicMetre,
4055    /// cubic decimetre per minute
4056    ///
4057    /// rec20
4058    CubicDecimetrePerMinute,
4059    /// cubic decimetre per second
4060    ///
4061    /// rec20
4062    CubicDecimetrePerSecond,
4063    /// ounce (UK fluid) per day
4064    ///
4065    /// rec20
4066    OunceUkFluidPerDay,
4067    /// ounce (UK fluid) per hour
4068    ///
4069    /// rec20
4070    OunceUkFluidPerHour,
4071    /// ounce (UK fluid) per minute
4072    ///
4073    /// rec20
4074    OunceUkFluidPerMinute,
4075    /// ounce (UK fluid) per second
4076    ///
4077    /// rec20
4078    OunceUkFluidPerSecond,
4079    /// ounce (US fluid) per day
4080    ///
4081    /// rec20
4082    OunceUsFluidPerDay,
4083    /// joule per kelvin
4084    ///
4085    /// rec20
4086    JoulePerKelvin,
4087    /// megajoule per kilogram
4088    ///
4089    /// rec20
4090    MegajoulePerKilogram,
4091    /// megajoule per cubic metre
4092    ///
4093    /// rec20
4094    MegajoulePerCubicMetre,
4095    /// pipeline joint
4096    ///
4097    /// rec20
4098    PipelineJoint,
4099    /// joule
4100    ///
4101    /// rec20
4102    Joule,
4103    /// hundred metre
4104    ///
4105    /// rec20
4106    HundredMetre,
4107    /// number of jewels
4108    ///
4109    /// rec20
4110    NumberJewels,
4111    /// kilowatt demand
4112    ///
4113    /// rec20
4114    KilowattDemand,
4115    /// ounce (US fluid) per hour
4116    ///
4117    /// rec20
4118    OunceUsFluidPerHour,
4119    /// ounce (US fluid) per minute
4120    ///
4121    /// rec20
4122    OunceUsFluidPerMinute,
4123    /// ounce (US fluid) per second
4124    ///
4125    /// rec20
4126    OunceUsFluidPerSecond,
4127    /// foot per degree Fahrenheit
4128    ///
4129    /// rec20
4130    FootPerDegreeFahrenheit,
4131    /// foot per hour
4132    ///
4133    /// rec20
4134    FootPerHour,
4135    /// foot pound-force per hour
4136    ///
4137    /// rec20
4138    FootPoundForcePerHour,
4139    /// foot pound-force per minute
4140    ///
4141    /// rec20
4142    FootPoundForcePerMinute,
4143    /// foot per psi
4144    ///
4145    /// rec20
4146    FootPerPsi,
4147    /// foot per second degree Fahrenheit
4148    ///
4149    /// rec20
4150    FootPerSecondDegreeFahrenheit,
4151    /// foot per second psi
4152    ///
4153    /// rec20
4154    FootPerSecondPsi,
4155    /// kilovolt ampere reactive demand
4156    ///
4157    /// rec20
4158    KilovoltAmpereReactiveDemand,
4159    /// reciprocal cubic foot
4160    ///
4161    /// rec20
4162    ReciprocalCubicFoot,
4163    /// cubic foot per degree Fahrenheit
4164    ///
4165    /// rec20
4166    CubicFootPerDegreeFahrenheit,
4167    /// cubic foot per day
4168    ///
4169    /// rec20
4170    CubicFootPerDay,
4171    /// cubic foot per psi
4172    ///
4173    /// rec20
4174    CubicFootPerPsi,
4175    /// gallon (UK) per day
4176    ///
4177    /// rec20
4178    GallonUkPerDay,
4179    /// gallon (UK) per hour
4180    ///
4181    /// rec20
4182    GallonUkPerHour,
4183    /// gallon (UK) per second
4184    ///
4185    /// rec20
4186    GallonUkPerSecond,
4187    /// kilovolt ampere reactive hour
4188    ///
4189    /// rec20
4190    KilovoltAmpereReactiveHour,
4191    /// gallon (US liquid) per second
4192    ///
4193    /// rec20
4194    GallonUsLiquidPerSecond,
4195    /// gram-force per square centimetre
4196    ///
4197    /// rec20
4198    GramForcePerSquareCentimetre,
4199    /// gill (UK) per day
4200    ///
4201    /// rec20
4202    GillUkPerDay,
4203    /// gill (UK) per hour
4204    ///
4205    /// rec20
4206    GillUkPerHour,
4207    /// gill (UK) per minute
4208    ///
4209    /// rec20
4210    GillUkPerMinute,
4211    /// gill (UK) per second
4212    ///
4213    /// rec20
4214    GillUkPerSecond,
4215    /// gill (US) per day
4216    ///
4217    /// rec20
4218    GillUsPerDay,
4219    /// gill (US) per hour
4220    ///
4221    /// rec20
4222    GillUsPerHour,
4223    /// gill (US) per minute
4224    ///
4225    /// rec20
4226    GillUsPerMinute,
4227    /// gill (US) per second
4228    ///
4229    /// rec20
4230    GillUsPerSecond,
4231    /// standard acceleration of free fall
4232    ///
4233    /// rec20
4234    StandardAccelerationFreeFall,
4235    /// grain per gallon (US)
4236    ///
4237    /// rec20
4238    GrainPerGallonUs,
4239    /// horsepower (boiler)
4240    ///
4241    /// rec20
4242    HorsepowerBoiler,
4243    /// horsepower (electric)
4244    ///
4245    /// rec20
4246    HorsepowerElectric,
4247    /// inch per degree Fahrenheit
4248    ///
4249    /// rec20
4250    InchPerDegreeFahrenheit,
4251    /// inch per psi
4252    ///
4253    /// rec20
4254    InchPerPsi,
4255    /// inch per second degree Fahrenheit
4256    ///
4257    /// rec20
4258    InchPerSecondDegreeFahrenheit,
4259    /// inch per second psi
4260    ///
4261    /// rec20
4262    InchPerSecondPsi,
4263    /// reciprocal cubic inch
4264    ///
4265    /// rec20
4266    ReciprocalCubicInch,
4267    /// kilobaud
4268    ///
4269    /// rec20
4270    Kilobaud,
4271    /// kilocalorie (mean)
4272    ///
4273    /// rec20
4274    KilocalorieMean,
4275    /// kilocalorie (international table) per hour metre degree Celsius
4276    ///
4277    /// rec20
4278    KilocalorieInternationalTablePerHourMetreDegreeCelsius,
4279    /// kilocalorie (thermochemical)
4280    ///
4281    /// rec20
4282    KilocalorieThermochemical,
4283    /// kilocalorie (thermochemical) per minute
4284    ///
4285    /// rec20
4286    KilocalorieThermochemicalPerMinute,
4287    /// kilocalorie (thermochemical) per second
4288    ///
4289    /// rec20
4290    KilocalorieThermochemicalPerSecond,
4291    /// kilomole per hour
4292    ///
4293    /// rec20
4294    KilomolePerHour,
4295    /// kilomole per cubic metre kelvin
4296    ///
4297    /// rec20
4298    KilomolePerCubicMetreKelvin,
4299    /// kilolitre
4300    ///
4301    /// rec20
4302    Kilolitre,
4303    /// kilomole per cubic metre bar
4304    ///
4305    /// rec20
4306    KilomolePerCubicMetreBar,
4307    /// kilomole per minute
4308    ///
4309    /// rec20
4310    KilomolePerMinute,
4311    /// litre per litre
4312    ///
4313    /// rec20
4314    LitrePerLitre,
4315    /// reciprocal litre
4316    ///
4317    /// rec20
4318    ReciprocalLitre,
4319    /// pound (avoirdupois) per degree Fahrenheit
4320    ///
4321    /// rec20
4322    PoundAvoirdupoisPerDegreeFahrenheit,
4323    /// pound (avoirdupois) square foot
4324    ///
4325    /// rec20
4326    PoundAvoirdupoisSquareFoot,
4327    /// pound (avoirdupois) per day
4328    ///
4329    /// rec20
4330    PoundAvoirdupoisPerDay,
4331    /// pound per foot hour
4332    ///
4333    /// rec20
4334    PoundPerFootHour,
4335    /// pound per foot second
4336    ///
4337    /// rec20
4338    PoundPerFootSecond,
4339    /// pound (avoirdupois) per cubic foot degree Fahrenheit
4340    ///
4341    /// rec20
4342    PoundAvoirdupoisPerCubicFootDegreeFahrenheit,
4343    /// pound (avoirdupois) per cubic foot psi
4344    ///
4345    /// rec20
4346    PoundAvoirdupoisPerCubicFootPsi,
4347    /// pound (avoirdupois) per gallon (UK)
4348    ///
4349    /// rec20
4350    PoundAvoirdupoisPerGallonUk,
4351    /// pound (avoirdupois) per hour degree Fahrenheit
4352    ///
4353    /// rec20
4354    PoundAvoirdupoisPerHourDegreeFahrenheit,
4355    /// pound (avoirdupois) per hour psi
4356    ///
4357    /// rec20
4358    PoundAvoirdupoisPerHourPsi,
4359    /// pound (avoirdupois) per cubic inch degree Fahrenheit
4360    ///
4361    /// rec20
4362    PoundAvoirdupoisPerCubicInchDegreeFahrenheit,
4363    /// pound (avoirdupois) per cubic inch psi
4364    ///
4365    /// rec20
4366    PoundAvoirdupoisPerCubicInchPsi,
4367    /// pound (avoirdupois) per psi
4368    ///
4369    /// rec20
4370    PoundAvoirdupoisPerPsi,
4371    /// pound (avoirdupois) per minute
4372    ///
4373    /// rec20
4374    PoundAvoirdupoisPerMinute,
4375    /// pound (avoirdupois) per minute degree Fahrenheit
4376    ///
4377    /// rec20
4378    PoundAvoirdupoisPerMinuteDegreeFahrenheit,
4379    /// pound (avoirdupois) per minute psi
4380    ///
4381    /// rec20
4382    PoundAvoirdupoisPerMinutePsi,
4383    /// pound (avoirdupois) per second
4384    ///
4385    /// rec20
4386    PoundAvoirdupoisPerSecond,
4387    /// pound (avoirdupois) per second degree Fahrenheit
4388    ///
4389    /// rec20
4390    PoundAvoirdupoisPerSecondDegreeFahrenheit,
4391    /// pound (avoirdupois) per second psi
4392    ///
4393    /// rec20
4394    PoundAvoirdupoisPerSecondPsi,
4395    /// pound per cubic yard
4396    ///
4397    /// rec20
4398    PoundPerCubicYard,
4399    /// pound-force per square foot
4400    ///
4401    /// rec20
4402    PoundForcePerSquareFoot,
4403    /// pound-force per square inch degree Fahrenheit
4404    ///
4405    /// rec20
4406    PoundForcePerSquareInchDegreeFahrenheit,
4407    /// psi cubic inch per second
4408    ///
4409    /// rec20
4410    PsiCubicInchPerSecond,
4411    /// psi litre per second
4412    ///
4413    /// rec20
4414    PsiLitrePerSecond,
4415    /// psi cubic metre per second
4416    ///
4417    /// rec20
4418    PsiCubicMetrePerSecond,
4419    /// psi cubic yard per second
4420    ///
4421    /// rec20
4422    PsiCubicYardPerSecond,
4423    /// pound-force second per square foot
4424    ///
4425    /// rec20
4426    PoundForceSecondPerSquareFoot,
4427    /// pound-force second per square inch
4428    ///
4429    /// rec20
4430    PoundForceSecondPerSquareInch,
4431    /// reciprocal psi
4432    ///
4433    /// rec20
4434    ReciprocalPsi,
4435    /// quart (UK liquid) per day
4436    ///
4437    /// rec20
4438    QuartUkLiquidPerDay,
4439    /// quart (UK liquid) per hour
4440    ///
4441    /// rec20
4442    QuartUkLiquidPerHour,
4443    /// quart (UK liquid) per minute
4444    ///
4445    /// rec20
4446    QuartUkLiquidPerMinute,
4447    /// quart (UK liquid) per second
4448    ///
4449    /// rec20
4450    QuartUkLiquidPerSecond,
4451    /// quart (US liquid) per day
4452    ///
4453    /// rec20
4454    QuartUsLiquidPerDay,
4455    /// quart (US liquid) per hour
4456    ///
4457    /// rec20
4458    QuartUsLiquidPerHour,
4459    /// cake
4460    ///
4461    /// rec20
4462    Cake,
4463    /// katal
4464    ///
4465    /// rec20
4466    Katal,
4467    /// kilocharacter
4468    ///
4469    /// rec20
4470    Kilocharacter,
4471    /// kilobar
4472    ///
4473    /// rec20
4474    Kilobar,
4475    /// kilogram of choline chloride
4476    ///
4477    /// rec20
4478    KilogramCholineChloride,
4479    /// kilogram drained net weight
4480    ///
4481    /// rec20
4482    KilogramDrainedNetWeight,
4483    /// kelvin
4484    ///
4485    /// rec20
4486    Kelvin,
4487    /// kilogram
4488    ///
4489    /// rec20
4490    Kilogram,
4491    /// kilogram per second
4492    ///
4493    /// rec20
4494    KilogramPerSecond,
4495    /// kilogram of hydrogen peroxide
4496    ///
4497    /// rec20
4498    KilogramHydrogenPeroxide,
4499    /// kilohertz
4500    ///
4501    /// rec20
4502    Kilohertz,
4503    /// kilogram per millimetre width
4504    ///
4505    /// rec20
4506    KilogramPerMillimetreWidth,
4507    /// kilogram, including container
4508    ///
4509    /// rec20
4510    KilogramIncludingContainer,
4511    /// kilogram, including inner packaging
4512    ///
4513    /// rec20
4514    KilogramIncludingInnerPackaging,
4515    /// kilosegment
4516    ///
4517    /// rec20
4518    Kilosegment,
4519    /// kilojoule
4520    ///
4521    /// rec20
4522    Kilojoule,
4523    /// kilogram per metre
4524    ///
4525    /// rec20
4526    KilogramPerMetre,
4527    /// lactic dry material percentage
4528    ///
4529    /// rec20
4530    LacticDryMaterialPercentage,
4531    /// kilolux
4532    ///
4533    /// rec20
4534    Kilolux,
4535    /// kilogram of methylamine
4536    ///
4537    /// rec20
4538    KilogramMethylamine,
4539    /// kilometre per hour
4540    ///
4541    /// rec20
4542    KilometrePerHour,
4543    /// square kilometre
4544    ///
4545    /// rec20
4546    SquareKilometre,
4547    /// kilogram per cubic metre
4548    ///
4549    /// rec20
4550    KilogramPerCubicMetre,
4551    /// kilometre
4552    ///
4553    /// rec20
4554    Kilometre,
4555    /// kilogram of nitrogen
4556    ///
4557    /// rec20
4558    KilogramNitrogen,
4559    /// kilonewton per square metre
4560    ///
4561    /// rec20
4562    KilonewtonPerSquareMetre,
4563    /// kilogram named substance
4564    ///
4565    /// rec20
4566    KilogramNamedSubstance,
4567    /// knot
4568    ///
4569    /// rec20
4570    Knot,
4571    /// milliequivalence caustic potash per gram of product
4572    ///
4573    /// rec20
4574    MilliequivalenceCausticPotashPerGramProduct,
4575    /// kilopascal
4576    ///
4577    /// rec20
4578    Kilopascal,
4579    /// kilogram of potassium hydroxide (caustic potash)
4580    ///
4581    /// rec20
4582    KilogramPotassiumHydroxideCausticPotash,
4583    /// kilogram of potassium oxide
4584    ///
4585    /// rec20
4586    KilogramPotassiumOxide,
4587    /// kilogram of phosphorus pentoxide (phosphoric anhydride)
4588    ///
4589    /// rec20
4590    KilogramPhosphorusPentoxidePhosphoricAnhydride,
4591    /// kiloroentgen
4592    ///
4593    /// rec20
4594    Kiloroentgen,
4595    /// kilogram of substance 90 % dry
4596    ///
4597    /// rec20
4598    KilogramSubstance90Dry,
4599    /// kilogram of sodium hydroxide (caustic soda)
4600    ///
4601    /// rec20
4602    KilogramSodiumHydroxideCausticSoda,
4603    /// kit
4604    ///
4605    /// rec20
4606    Kit,
4607    /// kilotonne
4608    ///
4609    /// rec20
4610    Kilotonne,
4611    /// kilogram of uranium
4612    ///
4613    /// rec20
4614    KilogramUranium,
4615    /// kilovolt - ampere
4616    ///
4617    /// rec20
4618    KilovoltAmpere,
4619    /// kilovar
4620    ///
4621    /// rec20
4622    Kilovar,
4623    /// kilovolt
4624    ///
4625    /// rec20
4626    Kilovolt,
4627    /// kilogram per millimetre
4628    ///
4629    /// rec20
4630    KilogramPerMillimetre,
4631    /// kilowatt hour
4632    ///
4633    /// rec20
4634    KilowattHour,
4635    /// Kilowatt hour per normalized cubic metre
4636    ///
4637    /// rec20
4638    KilowattHourPerNormalizedCubicMetre,
4639    /// kilogram of tungsten trioxide
4640    ///
4641    /// rec20
4642    KilogramTungstenTrioxide,
4643    /// Kilowatt hour per standard cubic metre
4644    ///
4645    /// rec20
4646    KilowattHourPerStandardCubicMetre,
4647    /// kilowatt
4648    ///
4649    /// rec20
4650    Kilowatt,
4651    /// kilowatt year
4652    ///
4653    /// Rec20
4654    KilowattYear,
4655    /// millilitre per kilogram
4656    ///
4657    /// rec20
4658    MillilitrePerKilogram,
4659    /// quart (US liquid) per minute
4660    ///
4661    /// rec20
4662    QuartUsLiquidPerMinute,
4663    /// quart (US liquid) per second
4664    ///
4665    /// rec20
4666    QuartUsLiquidPerSecond,
4667    /// metre per second kelvin
4668    ///
4669    /// rec20
4670    MetrePerSecondKelvin,
4671    /// metre per second bar
4672    ///
4673    /// rec20
4674    MetrePerSecondBar,
4675    /// square metre hour degree Celsius per kilocalorie (international table)
4676    ///
4677    /// rec20
4678    SquareMetreHourDegreeCelsiusPerKilocalorieInternationalTable,
4679    /// millipascal second per kelvin
4680    ///
4681    /// rec20
4682    MillipascalSecondPerKelvin,
4683    /// millipascal second per bar
4684    ///
4685    /// rec20
4686    MillipascalSecondPerBar,
4687    /// milligram per cubic metre kelvin
4688    ///
4689    /// rec20
4690    MilligramPerCubicMetreKelvin,
4691    /// milligram per cubic metre bar
4692    ///
4693    /// rec20
4694    MilligramPerCubicMetreBar,
4695    /// millilitre per litre
4696    ///
4697    /// rec20
4698    MillilitrePerLitre,
4699    /// litre per minute
4700    ///
4701    /// rec20
4702    LitrePerMinute,
4703    /// reciprocal cubic millimetre
4704    ///
4705    /// rec20
4706    ReciprocalCubicMillimetre,
4707    /// cubic millimetre per cubic metre
4708    ///
4709    /// rec20
4710    CubicMillimetrePerCubicMetre,
4711    /// mole per hour
4712    ///
4713    /// rec20
4714    MolePerHour,
4715    /// mole per kilogram kelvin
4716    ///
4717    /// rec20
4718    MolePerKilogramKelvin,
4719    /// mole per kilogram bar
4720    ///
4721    /// rec20
4722    MolePerKilogramBar,
4723    /// mole per litre kelvin
4724    ///
4725    /// rec20
4726    MolePerLitreKelvin,
4727    /// mole per litre bar
4728    ///
4729    /// rec20
4730    MolePerLitreBar,
4731    /// mole per cubic metre kelvin
4732    ///
4733    /// rec20
4734    MolePerCubicMetreKelvin,
4735    /// mole per cubic metre bar
4736    ///
4737    /// rec20
4738    MolePerCubicMetreBar,
4739    /// mole per minute
4740    ///
4741    /// rec20
4742    MolePerMinute,
4743    /// milliroentgen aequivalent men
4744    ///
4745    /// rec20
4746    MilliroentgenAequivalentMen,
4747    /// nanogram per kilogram
4748    ///
4749    /// rec20
4750    NanogramPerKilogram,
4751    /// ounce (avoirdupois) per day
4752    ///
4753    /// rec20
4754    OunceAvoirdupoisPerDay,
4755    /// ounce (avoirdupois) per hour
4756    ///
4757    /// rec20
4758    OunceAvoirdupoisPerHour,
4759    /// ounce (avoirdupois) per minute
4760    ///
4761    /// rec20
4762    OunceAvoirdupoisPerMinute,
4763    /// ounce (avoirdupois) per second
4764    ///
4765    /// rec20
4766    OunceAvoirdupoisPerSecond,
4767    /// ounce (avoirdupois) per gallon (UK)
4768    ///
4769    /// rec20
4770    OunceAvoirdupoisPerGallonUk,
4771    /// ounce (avoirdupois) per gallon (US)
4772    ///
4773    /// rec20
4774    OunceAvoirdupoisPerGallonUs,
4775    /// ounce (avoirdupois) per cubic inch
4776    ///
4777    /// rec20
4778    OunceAvoirdupoisPerCubicInch,
4779    /// ounce (avoirdupois)-force
4780    ///
4781    /// rec20
4782    OunceAvoirdupoisForce,
4783    /// ounce (avoirdupois)-force inch
4784    ///
4785    /// rec20
4786    OunceAvoirdupoisForceInch,
4787    /// picosiemens per metre
4788    ///
4789    /// rec20
4790    PicosiemensPerMetre,
4791    /// peck (UK)
4792    ///
4793    /// rec20
4794    PeckUk,
4795    /// peck (UK) per day
4796    ///
4797    /// rec20
4798    PeckUkPerDay,
4799    /// peck (UK) per hour
4800    ///
4801    /// rec20
4802    PeckUkPerHour,
4803    /// peck (UK) per minute
4804    ///
4805    /// rec20
4806    PeckUkPerMinute,
4807    /// peck (UK) per second
4808    ///
4809    /// rec20
4810    PeckUkPerSecond,
4811    /// peck (US dry) per day
4812    ///
4813    /// rec20
4814    PeckUsDryPerDay,
4815    /// peck (US dry) per hour
4816    ///
4817    /// rec20
4818    PeckUsDryPerHour,
4819    /// peck (US dry) per minute
4820    ///
4821    /// rec20
4822    PeckUsDryPerMinute,
4823    /// peck (US dry) per second
4824    ///
4825    /// rec20
4826    PeckUsDryPerSecond,
4827    /// psi per psi
4828    ///
4829    /// rec20
4830    PsiPerPsi,
4831    /// pint (UK) per day
4832    ///
4833    /// rec20
4834    PintUkPerDay,
4835    /// pint (UK) per hour
4836    ///
4837    /// rec20
4838    PintUkPerHour,
4839    /// pint (UK) per minute
4840    ///
4841    /// rec20
4842    PintUkPerMinute,
4843    /// pint (UK) per second
4844    ///
4845    /// rec20
4846    PintUkPerSecond,
4847    /// pint (US liquid) per day
4848    ///
4849    /// rec20
4850    PintUsLiquidPerDay,
4851    /// pint (US liquid) per hour
4852    ///
4853    /// rec20
4854    PintUsLiquidPerHour,
4855    /// pint (US liquid) per minute
4856    ///
4857    /// rec20
4858    PintUsLiquidPerMinute,
4859    /// pint (US liquid) per second
4860    ///
4861    /// rec20
4862    PintUsLiquidPerSecond,
4863    /// slug per day
4864    ///
4865    /// rec20
4866    SlugPerDay,
4867    /// slug per foot second
4868    ///
4869    /// rec20
4870    SlugPerFootSecond,
4871    /// slug per cubic foot
4872    ///
4873    /// rec20
4874    SlugPerCubicFoot,
4875    /// slug per hour
4876    ///
4877    /// rec20
4878    SlugPerHour,
4879    /// slug per minute
4880    ///
4881    /// rec20
4882    SlugPerMinute,
4883    /// slug per second
4884    ///
4885    /// rec20
4886    SlugPerSecond,
4887    /// tonne per kelvin
4888    ///
4889    /// rec20
4890    TonnePerKelvin,
4891    /// tonne per bar
4892    ///
4893    /// rec20
4894    TonnePerBar,
4895    /// tonne per day
4896    ///
4897    /// rec20
4898    TonnePerDay,
4899    /// tonne per day kelvin
4900    ///
4901    /// rec20
4902    TonnePerDayKelvin,
4903    /// tonne per day bar
4904    ///
4905    /// rec20
4906    TonnePerDayBar,
4907    /// tonne per hour kelvin
4908    ///
4909    /// rec20
4910    TonnePerHourKelvin,
4911    /// tonne per hour bar
4912    ///
4913    /// rec20
4914    TonnePerHourBar,
4915    /// tonne per cubic metre kelvin
4916    ///
4917    /// rec20
4918    TonnePerCubicMetreKelvin,
4919    /// tonne per cubic metre bar
4920    ///
4921    /// rec20
4922    TonnePerCubicMetreBar,
4923    /// tonne per minute
4924    ///
4925    /// rec20
4926    TonnePerMinute,
4927    /// tonne per minute kelvin
4928    ///
4929    /// rec20
4930    TonnePerMinuteKelvin,
4931    /// tonne per minute bar
4932    ///
4933    /// rec20
4934    TonnePerMinuteBar,
4935    /// tonne per second
4936    ///
4937    /// rec20
4938    TonnePerSecond,
4939    /// tonne per second kelvin
4940    ///
4941    /// rec20
4942    TonnePerSecondKelvin,
4943    /// tonne per second bar
4944    ///
4945    /// rec20
4946    TonnePerSecondBar,
4947    /// ton (UK shipping)
4948    ///
4949    /// rec20
4950    TonUkShipping,
4951    /// ton long per day
4952    ///
4953    /// rec20
4954    TonLongPerDay,
4955    /// ton (US shipping)
4956    ///
4957    /// rec20
4958    TonUsShipping,
4959    /// ton short per degree Fahrenheit
4960    ///
4961    /// rec20
4962    TonShortPerDegreeFahrenheit,
4963    /// ton short per day
4964    ///
4965    /// rec20
4966    TonShortPerDay,
4967    /// ton short per hour degree Fahrenheit
4968    ///
4969    /// rec20
4970    TonShortPerHourDegreeFahrenheit,
4971    /// ton short per hour psi
4972    ///
4973    /// rec20
4974    TonShortPerHourPsi,
4975    /// ton short per psi
4976    ///
4977    /// rec20
4978    TonShortPerPsi,
4979    /// ton (UK long) per cubic yard
4980    ///
4981    /// rec20
4982    TonUkLongPerCubicYard,
4983    /// ton (US short) per cubic yard
4984    ///
4985    /// rec20
4986    TonUsShortPerCubicYard,
4987    /// ton-force (US short)
4988    ///
4989    /// rec20
4990    TonForceUsShort,
4991    /// common year
4992    ///
4993    /// rec20
4994    CommonYear,
4995    /// sidereal year
4996    ///
4997    /// rec20
4998    SiderealYear,
4999    /// yard per degree Fahrenheit
5000    ///
5001    /// rec20
5002    YardPerDegreeFahrenheit,
5003    /// yard per psi
5004    ///
5005    /// rec20
5006    YardPerPsi,
5007    /// pound per cubic inch
5008    ///
5009    /// rec20
5010    PoundPerCubicInch,
5011    /// lactose excess percentage
5012    ///
5013    /// rec20
5014    LactoseExcessPercentage,
5015    /// pound
5016    ///
5017    /// rec20
5018    Pound,
5019    /// troy pound (US)
5020    ///
5021    /// rec20
5022    TroyPoundUs,
5023    /// litre per day
5024    ///
5025    /// rec20
5026    LitrePerDay,
5027    /// leaf
5028    ///
5029    /// rec20
5030    Leaf,
5031    /// linear foot
5032    ///
5033    /// rec20
5034    LinearFoot,
5035    /// labour hour
5036    ///
5037    /// rec20
5038    LabourHour,
5039    /// link
5040    ///
5041    /// rec20
5042    Link,
5043    /// linear metre
5044    ///
5045    /// rec20
5046    LinearMetre,
5047    /// length
5048    ///
5049    /// rec20
5050    Length,
5051    /// lot [unit of procurement]
5052    ///
5053    /// rec20
5054    LotUnitProcurement,
5055    /// liquid pound
5056    ///
5057    /// rec20
5058    LiquidPound,
5059    /// litre of pure alcohol
5060    ///
5061    /// rec20
5062    LitrePureAlcohol,
5063    /// layer
5064    ///
5065    /// rec20
5066    Layer,
5067    /// lump sum
5068    ///
5069    /// rec20
5070    LumpSum,
5071    /// ton (UK) or long ton (US)
5072    ///
5073    /// rec20
5074    TonUkOrLongTonUs,
5075    /// litre
5076    ///
5077    /// rec20
5078    Litre,
5079    /// metric ton, lubricating oil
5080    ///
5081    /// rec20
5082    MetricTonLubricatingOil,
5083    /// lumen
5084    ///
5085    /// rec20
5086    Lumen,
5087    /// lux
5088    ///
5089    /// rec20
5090    Lux,
5091    /// linear yard
5092    ///
5093    /// rec20
5094    LinearYard,
5095    /// milligram per litre
5096    ///
5097    /// rec20
5098    MilligramPerLitre,
5099    /// reciprocal cubic yard
5100    ///
5101    /// rec20
5102    ReciprocalCubicYard,
5103    /// cubic yard per degree Fahrenheit
5104    ///
5105    /// rec20
5106    CubicYardPerDegreeFahrenheit,
5107    /// cubic yard per day
5108    ///
5109    /// rec20
5110    CubicYardPerDay,
5111    /// cubic yard per hour
5112    ///
5113    /// rec20
5114    CubicYardPerHour,
5115    /// cubic yard per psi
5116    ///
5117    /// rec20
5118    CubicYardPerPsi,
5119    /// cubic yard per minute
5120    ///
5121    /// rec20
5122    CubicYardPerMinute,
5123    /// cubic yard per second
5124    ///
5125    /// rec20
5126    CubicYardPerSecond,
5127    /// kilohertz metre
5128    ///
5129    /// rec20
5130    KilohertzMetre,
5131    /// gigahertz metre
5132    ///
5133    /// rec20
5134    GigahertzMetre,
5135    /// Beaufort
5136    ///
5137    /// rec20
5138    Beaufort,
5139    /// reciprocal megakelvin or megakelvin to the power minus one
5140    ///
5141    /// rec20
5142    ReciprocalMegakelvinOrMegakelvinToPowerMinusOne,
5143    /// reciprocal kilovolt - ampere reciprocal hour
5144    ///
5145    /// rec20
5146    ReciprocalKilovoltAmpereReciprocalHour,
5147    /// millilitre per square centimetre minute
5148    ///
5149    /// rec20
5150    MillilitrePerSquareCentimetreMinute,
5151    /// newton per centimetre
5152    ///
5153    /// rec20
5154    NewtonPerCentimetre,
5155    /// ohm kilometre
5156    ///
5157    /// rec20
5158    OhmKilometre,
5159    /// percent per degree Celsius
5160    ///
5161    /// rec20
5162    PercentPerDegreeCelsius,
5163    /// gigaohm per metre
5164    ///
5165    /// rec20
5166    GigaohmPerMetre,
5167    /// megahertz metre
5168    ///
5169    /// rec20
5170    MegahertzMetre,
5171    /// kilogram per kilogram
5172    ///
5173    /// rec20
5174    KilogramPerKilogram,
5175    /// reciprocal volt - ampere reciprocal second
5176    ///
5177    /// rec20
5178    ReciprocalVoltAmpereReciprocalSecond,
5179    /// kilogram per kilometre
5180    ///
5181    /// rec20
5182    KilogramPerKilometre,
5183    /// pascal second per litre
5184    ///
5185    /// rec20
5186    PascalSecondPerLitre,
5187    /// millimole per litre
5188    ///
5189    /// rec20
5190    MillimolePerLitre,
5191    /// newton metre per square metre
5192    ///
5193    /// rec20
5194    NewtonMetrePerSquareMetre,
5195    /// millivolt - ampere
5196    ///
5197    /// rec20
5198    MillivoltAmpere,
5199    /// 30-day month
5200    ///
5201    /// rec20
5202    _30DayMonth,
5203    /// actual/360
5204    ///
5205    /// rec20
5206    Actual360,
5207    /// kilometre per second squared
5208    ///
5209    /// rec20
5210    KilometrePerSecondSquared,
5211    /// centimetre per second squared
5212    ///
5213    /// rec20
5214    CentimetrePerSecondSquared,
5215    /// monetary value
5216    ///
5217    /// rec20
5218    MonetaryValue,
5219    /// yard per second squared
5220    ///
5221    /// rec20
5222    YardPerSecondSquared,
5223    /// millimetre per second squared
5224    ///
5225    /// rec20
5226    MillimetrePerSecondSquared,
5227    /// mile (statute mile) per second squared
5228    ///
5229    /// rec20
5230    MileStatuteMilePerSecondSquared,
5231    /// mil
5232    ///
5233    /// rec20
5234    Mil,
5235    /// revolution
5236    ///
5237    /// rec20
5238    Revolution,
5239    /// degree [unit of angle] per second squared
5240    ///
5241    /// rec20
5242    DegreeUnitAnglePerSecondSquared,
5243    /// revolution per minute
5244    ///
5245    /// rec20
5246    RevolutionPerMinute,
5247    /// circular mil
5248    ///
5249    /// rec20
5250    CircularMil,
5251    /// square mile (based on U.S. survey foot)
5252    ///
5253    /// rec20
5254    SquareMileBasedOnUSSurveyFoot,
5255    /// chain (based on U.S. survey foot)
5256    ///
5257    /// rec20
5258    ChainBasedOnUSSurveyFoot,
5259    /// microcurie
5260    ///
5261    /// rec20
5262    Microcurie,
5263    /// furlong
5264    ///
5265    /// rec20
5266    Furlong,
5267    /// foot (U.S. survey)
5268    ///
5269    /// rec20
5270    FootUSSurvey,
5271    /// mile (based on U.S. survey foot)
5272    ///
5273    /// rec20
5274    MileBasedOnUSSurveyFoot,
5275    /// metre per pascal
5276    ///
5277    /// rec20
5278    MetrePerPascal,
5279    /// metre per radiant
5280    ///
5281    /// rec20
5282    MetrePerRadiant,
5283    /// shake
5284    ///
5285    /// rec20
5286    Shake,
5287    /// mile per minute
5288    ///
5289    /// rec20
5290    MilePerMinute,
5291    /// mile per second
5292    ///
5293    /// rec20
5294    MilePerSecond,
5295    /// metre per second pascal
5296    ///
5297    /// rec20
5298    MetrePerSecondPascal,
5299    /// metre per hour
5300    ///
5301    /// rec20
5302    MetrePerHour,
5303    /// inch per year
5304    ///
5305    /// rec20
5306    InchPerYear,
5307    /// kilometre per second
5308    ///
5309    /// rec20
5310    KilometrePerSecond,
5311    /// inch per minute
5312    ///
5313    /// rec20
5314    InchPerMinute,
5315    /// yard per second
5316    ///
5317    /// rec20
5318    YardPerSecond,
5319    /// yard per minute
5320    ///
5321    /// rec20
5322    YardPerMinute,
5323    /// yard per hour
5324    ///
5325    /// rec20
5326    YardPerHour,
5327    /// acre-foot (based on U.S. survey foot)
5328    ///
5329    /// rec20
5330    AcreFootBasedOnUSSurveyFoot,
5331    /// cord (128 ft3)
5332    ///
5333    /// rec20
5334    Cord128Ft3,
5335    /// cubic mile (UK statute)
5336    ///
5337    /// rec20
5338    CubicMileUkStatute,
5339    /// micro-inch
5340    ///
5341    /// rec20
5342    MicroInch,
5343    /// ton, register
5344    ///
5345    /// rec20
5346    TonRegister,
5347    /// cubic metre per pascal
5348    ///
5349    /// rec20
5350    CubicMetrePerPascal,
5351    /// bel
5352    ///
5353    /// rec20
5354    Bel,
5355    /// kilogram per cubic metre pascal
5356    ///
5357    /// rec20
5358    KilogramPerCubicMetrePascal,
5359    /// kilogram per pascal
5360    ///
5361    /// rec20
5362    KilogramPerPascal,
5363    /// kilopound-force
5364    ///
5365    /// rec20
5366    KilopoundForce,
5367    /// poundal
5368    ///
5369    /// rec20
5370    Poundal,
5371    /// kilogram metre per second squared
5372    ///
5373    /// rec20
5374    KilogramMetrePerSecondSquared,
5375    /// pond
5376    ///
5377    /// rec20
5378    Pond,
5379    /// square foot per hour
5380    ///
5381    /// rec20
5382    SquareFootPerHour,
5383    /// stokes per pascal
5384    ///
5385    /// rec20
5386    StokesPerPascal,
5387    /// square centimetre per second
5388    ///
5389    /// rec20
5390    SquareCentimetrePerSecond,
5391    /// square metre per second pascal
5392    ///
5393    /// rec20
5394    SquareMetrePerSecondPascal,
5395    /// denier
5396    ///
5397    /// rec20
5398    Denier_Dup,
5399    /// pound per yard
5400    ///
5401    /// rec20
5402    PoundPerYard,
5403    /// ton, assay
5404    ///
5405    /// rec20
5406    TonAssay,
5407    /// pfund
5408    ///
5409    /// rec20
5410    Pfund,
5411    /// kilogram per second pascal
5412    ///
5413    /// rec20
5414    KilogramPerSecondPascal,
5415    /// tonne per month
5416    ///
5417    /// rec20
5418    TonnePerMonth,
5419    /// tonne per year
5420    ///
5421    /// rec20
5422    TonnePerYear,
5423    /// million Btu per 1000 cubic foot
5424    ///
5425    /// rec20
5426    MillionBtuPer1000CubicFoot,
5427    /// kilopound per hour
5428    ///
5429    /// rec20
5430    KilopoundPerHour,
5431    /// pound per pound
5432    ///
5433    /// rec20
5434    PoundPerPound,
5435    /// pound-force foot
5436    ///
5437    /// rec20
5438    PoundForceFoot,
5439    /// newton metre per radian
5440    ///
5441    /// rec20
5442    NewtonMetrePerRadian,
5443    /// kilogram metre
5444    ///
5445    /// rec20
5446    KilogramMetre,
5447    /// poundal foot
5448    ///
5449    /// rec20
5450    PoundalFoot,
5451    /// poundal inch
5452    ///
5453    /// rec20
5454    PoundalInch,
5455    /// dyne metre
5456    ///
5457    /// rec20
5458    DyneMetre,
5459    /// kilogram centimetre per second
5460    ///
5461    /// rec20
5462    KilogramCentimetrePerSecond,
5463    /// gram centimetre per second
5464    ///
5465    /// rec20
5466    GramCentimetrePerSecond,
5467    /// megavolt ampere reactive hour
5468    ///
5469    /// rec20
5470    MegavoltAmpereReactiveHour,
5471    /// megalitre
5472    ///
5473    /// rec20
5474    Megalitre,
5475    /// megametre
5476    ///
5477    /// rec20
5478    Megametre,
5479    /// megavar
5480    ///
5481    /// rec20
5482    Megavar,
5483    /// megawatt
5484    ///
5485    /// rec20
5486    Megawatt,
5487    /// thousand standard brick equivalent
5488    ///
5489    /// rec20
5490    ThousandStandardBrickEquivalent,
5491    /// thousand board foot
5492    ///
5493    /// rec20
5494    ThousandBoardFoot,
5495    /// millibar
5496    ///
5497    /// rec20
5498    Millibar,
5499    /// microgram
5500    ///
5501    /// rec20
5502    Microgram,
5503    /// millicurie
5504    ///
5505    /// rec20
5506    Millicurie,
5507    /// air dry metric ton
5508    ///
5509    /// rec20
5510    AirDryMetricTon,
5511    /// milligram
5512    ///
5513    /// rec20
5514    Milligram,
5515    /// megahertz
5516    ///
5517    /// rec20
5518    Megahertz,
5519    /// square mile (statute mile)
5520    ///
5521    /// rec20
5522    SquareMileStatuteMile,
5523    /// thousand
5524    ///
5525    /// rec20
5526    Thousand,
5527    /// minute [unit of time]
5528    ///
5529    /// rec20
5530    MinuteUnitTime,
5531    /// million
5532    ///
5533    /// rec20
5534    Million,
5535    /// million international unit
5536    ///
5537    /// rec20
5538    MillionInternationalUnit,
5539    /// Square Metre Day
5540    ///
5541    /// Rec20
5542    SquareMetreDay,
5543    /// Square Metre Month
5544    ///
5545    /// Rec20
5546    SquareMetreMonth,
5547    /// Square Metre Week
5548    ///
5549    /// Rec20
5550    SquareMetreWeek,
5551    /// milliard
5552    ///
5553    /// rec20
5554    Milliard,
5555    /// millilitre
5556    ///
5557    /// rec20
5558    Millilitre,
5559    /// square millimetre
5560    ///
5561    /// rec20
5562    SquareMillimetre,
5563    /// cubic millimetre
5564    ///
5565    /// rec20
5566    CubicMillimetre,
5567    /// millimetre
5568    ///
5569    /// rec20
5570    Millimetre,
5571    /// kilogram, dry weight
5572    ///
5573    /// rec20
5574    KilogramDryWeight,
5575    /// Mega Joule per Normalised cubic Metre
5576    ///
5577    /// Rec20
5578    MegaJoulePerNormalisedCubicMetre,
5579    /// month
5580    ///
5581    /// rec20
5582    Month,
5583    /// megapascal
5584    ///
5585    /// rec20
5586    Megapascal,
5587    /// Cubic Metre Day
5588    ///
5589    /// Rec20
5590    CubicMetreDay,
5591    /// cubic metre per hour
5592    ///
5593    /// rec20
5594    CubicMetrePerHour,
5595    /// Cubic Metre Month
5596    ///
5597    /// Rec20
5598    CubicMetreMonth,
5599    /// cubic metre per second
5600    ///
5601    /// rec20
5602    CubicMetrePerSecond,
5603    /// Cubic Metre Week
5604    ///
5605    /// Rec20
5606    CubicMetreWeek,
5607    /// Metre Day
5608    ///
5609    /// Rec20
5610    MetreDay,
5611    /// Metre Month
5612    ///
5613    /// Rec20
5614    MetreMonth,
5615    /// Metre Week
5616    ///
5617    /// Rec20
5618    MetreWeek,
5619    /// metre per second squared
5620    ///
5621    /// rec20
5622    MetrePerSecondSquared,
5623    /// square metre
5624    ///
5625    /// rec20
5626    SquareMetre,
5627    /// cubic metre
5628    ///
5629    /// rec20
5630    CubicMetre,
5631    /// metre
5632    ///
5633    /// rec20
5634    Metre,
5635    /// metre per second
5636    ///
5637    /// rec20
5638    MetrePerSecond,
5639    /// milihertz
5640    ///
5641    /// Rec20
5642    Milihertz,
5643    /// megavolt - ampere
5644    ///
5645    /// rec20
5646    MegavoltAmpere,
5647    /// megawatt hour (1000 kW.h)
5648    ///
5649    /// rec20
5650    MegawattHour1000KwH,
5651    /// pen calorie
5652    ///
5653    /// rec20
5654    PenCalorie,
5655    /// pound foot per second
5656    ///
5657    /// rec20
5658    PoundFootPerSecond,
5659    /// pound inch per second
5660    ///
5661    /// rec20
5662    PoundInchPerSecond,
5663    /// Pferdestaerke
5664    ///
5665    /// rec20
5666    Pferdestaerke,
5667    /// centimetre of mercury (0 ºC)
5668    ///
5669    /// rec20
5670    CentimetreMercury0Oc,
5671    /// centimetre of water (4 ºC)
5672    ///
5673    /// rec20
5674    CentimetreWater4Oc,
5675    /// foot of water (39.2 ºF)
5676    ///
5677    /// rec20
5678    FootWater392Of,
5679    /// inch of mercury (32 ºF)
5680    ///
5681    /// rec20
5682    InchMercury32Of,
5683    /// inch of mercury (60 ºF)
5684    ///
5685    /// rec20
5686    InchMercury60Of,
5687    /// inch of water (39.2 ºF)
5688    ///
5689    /// rec20
5690    InchWater392Of,
5691    /// inch of water (60 ºF)
5692    ///
5693    /// rec20
5694    InchWater60Of,
5695    /// kip per square inch
5696    ///
5697    /// rec20
5698    KipPerSquareInch,
5699    /// poundal per square foot
5700    ///
5701    /// rec20
5702    PoundalPerSquareFoot,
5703    /// ounce (avoirdupois) per square inch
5704    ///
5705    /// rec20
5706    OunceAvoirdupoisPerSquareInch,
5707    /// conventional metre of water
5708    ///
5709    /// rec20
5710    ConventionalMetreWater,
5711    /// gram per square millimetre
5712    ///
5713    /// rec20
5714    GramPerSquareMillimetre,
5715    /// pound per square yard
5716    ///
5717    /// rec20
5718    PoundPerSquareYard,
5719    /// poundal per square inch
5720    ///
5721    /// rec20
5722    PoundalPerSquareInch,
5723    /// foot to the fourth power
5724    ///
5725    /// rec20
5726    FootToFourthPower,
5727    /// cubic decimetre per kilogram
5728    ///
5729    /// rec20
5730    CubicDecimetrePerKilogram,
5731    /// cubic foot per pound
5732    ///
5733    /// rec20
5734    CubicFootPerPound,
5735    /// print point
5736    ///
5737    /// rec20
5738    PrintPoint,
5739    /// cubic inch per pound
5740    ///
5741    /// rec20
5742    CubicInchPerPound,
5743    /// kilonewton per metre
5744    ///
5745    /// rec20
5746    KilonewtonPerMetre,
5747    /// poundal per inch
5748    ///
5749    /// rec20
5750    PoundalPerInch,
5751    /// pound-force per yard
5752    ///
5753    /// rec20
5754    PoundForcePerYard,
5755    /// poundal second per square foot
5756    ///
5757    /// rec20
5758    PoundalSecondPerSquareFoot,
5759    /// poise per pascal
5760    ///
5761    /// rec20
5762    PoisePerPascal,
5763    /// newton second per square metre
5764    ///
5765    /// rec20
5766    NewtonSecondPerSquareMetre,
5767    /// kilogram per metre second
5768    ///
5769    /// rec20
5770    KilogramPerMetreSecond,
5771    /// kilogram per metre minute
5772    ///
5773    /// rec20
5774    KilogramPerMetreMinute,
5775    /// kilogram per metre day
5776    ///
5777    /// rec20
5778    KilogramPerMetreDay,
5779    /// kilogram per metre hour
5780    ///
5781    /// rec20
5782    KilogramPerMetreHour,
5783    /// gram per centimetre second
5784    ///
5785    /// rec20
5786    GramPerCentimetreSecond,
5787    /// poundal second per square inch
5788    ///
5789    /// rec20
5790    PoundalSecondPerSquareInch,
5791    /// pound per foot minute
5792    ///
5793    /// rec20
5794    PoundPerFootMinute,
5795    /// pound per foot day
5796    ///
5797    /// rec20
5798    PoundPerFootDay,
5799    /// cubic metre per second pascal
5800    ///
5801    /// rec20
5802    CubicMetrePerSecondPascal,
5803    /// foot poundal
5804    ///
5805    /// rec20
5806    FootPoundal,
5807    /// inch poundal
5808    ///
5809    /// rec20
5810    InchPoundal,
5811    /// watt per square centimetre
5812    ///
5813    /// rec20
5814    WattPerSquareCentimetre,
5815    /// watt per square inch
5816    ///
5817    /// rec20
5818    WattPerSquareInch,
5819    /// British thermal unit (international table) per square foot hour
5820    ///
5821    /// rec20
5822    BritishThermalUnitInternationalTablePerSquareFootHour,
5823    /// British thermal unit (thermochemical) per square foot hour
5824    ///
5825    /// rec20
5826    BritishThermalUnitThermochemicalPerSquareFootHour,
5827    /// British thermal unit (thermochemical) per square foot minute
5828    ///
5829    /// rec20
5830    BritishThermalUnitThermochemicalPerSquareFootMinute,
5831    /// British thermal unit (international table) per square foot second
5832    ///
5833    /// rec20
5834    BritishThermalUnitInternationalTablePerSquareFootSecond,
5835    /// British thermal unit (thermochemical) per square foot second
5836    ///
5837    /// rec20
5838    BritishThermalUnitThermochemicalPerSquareFootSecond,
5839    /// British thermal unit (international table) per square inch second
5840    ///
5841    /// rec20
5842    BritishThermalUnitInternationalTablePerSquareInchSecond,
5843    /// calorie (thermochemical) per square centimetre minute
5844    ///
5845    /// rec20
5846    CalorieThermochemicalPerSquareCentimetreMinute,
5847    /// calorie (thermochemical) per square centimetre second
5848    ///
5849    /// rec20
5850    CalorieThermochemicalPerSquareCentimetreSecond,
5851    /// British thermal unit (international table) per cubic foot
5852    ///
5853    /// rec20
5854    BritishThermalUnitInternationalTablePerCubicFoot,
5855    /// British thermal unit (thermochemical) per cubic foot
5856    ///
5857    /// rec20
5858    BritishThermalUnitThermochemicalPerCubicFoot,
5859    /// British thermal unit (international table) per degree Fahrenheit
5860    ///
5861    /// rec20
5862    BritishThermalUnitInternationalTablePerDegreeFahrenheit,
5863    /// British thermal unit (thermochemical) per degree Fahrenheit
5864    ///
5865    /// rec20
5866    BritishThermalUnitThermochemicalPerDegreeFahrenheit,
5867    /// British thermal unit (international table) per degree Rankine
5868    ///
5869    /// rec20
5870    BritishThermalUnitInternationalTablePerDegreeRankine,
5871    /// British thermal unit (thermochemical) per degree Rankine
5872    ///
5873    /// rec20
5874    BritishThermalUnitThermochemicalPerDegreeRankine,
5875    /// British thermal unit (thermochemical) per pound degree Rankine
5876    ///
5877    /// rec20
5878    BritishThermalUnitThermochemicalPerPoundDegreeRankine,
5879    /// kilocalorie (international table) per gram kelvin
5880    ///
5881    /// rec20
5882    KilocalorieInternationalTablePerGramKelvin,
5883    /// British thermal unit (39 ºF)
5884    ///
5885    /// rec20
5886    BritishThermalUnit39Of,
5887    /// British thermal unit (59 ºF)
5888    ///
5889    /// rec20
5890    BritishThermalUnit59Of,
5891    /// British thermal unit (60 ºF)
5892    ///
5893    /// rec20
5894    BritishThermalUnit60Of,
5895    /// calorie (20 ºC)
5896    ///
5897    /// rec20
5898    Calorie20Oc,
5899    /// quad (1015 BtuIT)
5900    ///
5901    /// rec20
5902    Quad1015Btuit,
5903    /// therm (EC)
5904    ///
5905    /// rec20
5906    ThermEc,
5907    /// therm (U.S.)
5908    ///
5909    /// rec20
5910    ThermUS,
5911    /// British thermal unit (thermochemical) per pound
5912    ///
5913    /// rec20
5914    BritishThermalUnitThermochemicalPerPound,
5915    /// British thermal unit (international table) per hour square foot degree Fahrenheit
5916    ///
5917    /// rec20
5918    BritishThermalUnitInternationalTablePerHourSquareFootDegreeFahrenheit,
5919    /// British thermal unit (thermochemical) per hour square foot degree Fahrenheit
5920    ///
5921    /// rec20
5922    BritishThermalUnitThermochemicalPerHourSquareFootDegreeFahrenheit,
5923    /// British thermal unit (international table) per second square foot degree Fahrenheit
5924    ///
5925    /// rec20
5926    BritishThermalUnitInternationalTablePerSecondSquareFootDegreeFahrenheit,
5927    /// British thermal unit (thermochemical) per second square foot degree Fahrenheit
5928    ///
5929    /// rec20
5930    BritishThermalUnitThermochemicalPerSecondSquareFootDegreeFahrenheit,
5931    /// kilowatt per square metre kelvin
5932    ///
5933    /// rec20
5934    KilowattPerSquareMetreKelvin,
5935    /// kelvin per pascal
5936    ///
5937    /// rec20
5938    KelvinPerPascal,
5939    /// watt per metre degree Celsius
5940    ///
5941    /// rec20
5942    WattPerMetreDegreeCelsius,
5943    /// kilowatt per metre kelvin
5944    ///
5945    /// rec20
5946    KilowattPerMetreKelvin,
5947    /// kilowatt per metre degree Celsius
5948    ///
5949    /// rec20
5950    KilowattPerMetreDegreeCelsius,
5951    /// metre per degree Celcius metre
5952    ///
5953    /// rec20
5954    MetrePerDegreeCelciusMetre,
5955    /// degree Fahrenheit hour per British thermal unit (international table)
5956    ///
5957    /// rec20
5958    DegreeFahrenheitHourPerBritishThermalUnitInternationalTable,
5959    /// degree Fahrenheit hour per British thermal unit (thermochemical)
5960    ///
5961    /// rec20
5962    DegreeFahrenheitHourPerBritishThermalUnitThermochemical,
5963    /// degree Fahrenheit second per British thermal unit (international table)
5964    ///
5965    /// rec20
5966    DegreeFahrenheitSecondPerBritishThermalUnitInternationalTable,
5967    /// degree Fahrenheit second per British thermal unit (thermochemical)
5968    ///
5969    /// rec20
5970    DegreeFahrenheitSecondPerBritishThermalUnitThermochemical,
5971    /// degree Fahrenheit hour square foot per British thermal unit (international table) inch
5972    ///
5973    /// rec20
5974    DegreeFahrenheitHourSquareFootPerBritishThermalUnitInternationalTableInch,
5975    /// degree Fahrenheit hour square foot per British thermal unit (thermochemical) inch
5976    ///
5977    /// rec20
5978    DegreeFahrenheitHourSquareFootPerBritishThermalUnitThermochemicalInch,
5979    /// kilofarad
5980    ///
5981    /// rec20
5982    Kilofarad,
5983    /// reciprocal joule
5984    ///
5985    /// rec20
5986    ReciprocalJoule,
5987    /// picosiemens
5988    ///
5989    /// rec20
5990    Picosiemens,
5991    /// ampere per pascal
5992    ///
5993    /// rec20
5994    AmperePerPascal,
5995    /// franklin
5996    ///
5997    /// rec20
5998    Franklin,
5999    /// ampere minute
6000    ///
6001    /// rec20
6002    AmpereMinute,
6003    /// biot
6004    ///
6005    /// rec20
6006    Biot,
6007    /// gilbert
6008    ///
6009    /// rec20
6010    Gilbert,
6011    /// volt per pascal
6012    ///
6013    /// rec20
6014    VoltPerPascal,
6015    /// picovolt
6016    ///
6017    /// rec20
6018    Picovolt,
6019    /// milligram per kilogram
6020    ///
6021    /// rec20
6022    MilligramPerKilogram,
6023    /// number of articles
6024    ///
6025    /// rec20
6026    NumberArticles,
6027    /// number of cells
6028    ///
6029    /// rec20
6030    NumberCells,
6031    /// newton
6032    ///
6033    /// rec20
6034    Newton,
6035    /// message
6036    ///
6037    /// rec20
6038    Message,
6039    /// nil
6040    ///
6041    /// rec20
6042    Nil,
6043    /// number of international units
6044    ///
6045    /// rec20
6046    NumberInternationalUnits,
6047    /// load
6048    ///
6049    /// rec20
6050    Load,
6051    /// Normalised cubic metre
6052    ///
6053    /// rec20
6054    NormalisedCubicMetre,
6055    /// nautical mile
6056    ///
6057    /// rec20
6058    NauticalMile,
6059    /// number of packs
6060    ///
6061    /// rec20
6062    NumberPacks,
6063    /// number of parts
6064    ///
6065    /// rec20
6066    NumberParts,
6067    /// net ton
6068    ///
6069    /// rec20
6070    NetTon,
6071    /// Nephelometric turbidity unit
6072    ///
6073    /// Rec20
6074    NephelometricTurbidityUnit,
6075    /// newton metre
6076    ///
6077    /// rec20
6078    NewtonMetre,
6079    /// part per thousand
6080    ///
6081    /// rec20
6082    PartPerThousand,
6083    /// panel
6084    ///
6085    /// rec20
6086    Panel,
6087    /// ozone depletion equivalent
6088    ///
6089    /// rec20
6090    OzoneDepletionEquivalent,
6091    /// ODS Grams
6092    ///
6093    /// rec20
6094    OdsGrams,
6095    /// ODS Kilograms
6096    ///
6097    /// rec20
6098    OdsKilograms,
6099    /// ODS Milligrams
6100    ///
6101    /// rec20
6102    OdsMilligrams,
6103    /// ohm
6104    ///
6105    /// rec20
6106    Ohm,
6107    /// ounce per square yard
6108    ///
6109    /// rec20
6110    OuncePerSquareYard,
6111    /// ounce (avoirdupois)
6112    ///
6113    /// rec20
6114    OunceAvoirdupois,
6115    /// oscillations per minute
6116    ///
6117    /// rec20
6118    OscillationsPerMinute,
6119    /// overtime hour
6120    ///
6121    /// rec20
6122    OvertimeHour,
6123    /// fluid ounce (US)
6124    ///
6125    /// rec20
6126    FluidOunceUs,
6127    /// fluid ounce (UK)
6128    ///
6129    /// rec20
6130    FluidOunceUk,
6131    /// percent
6132    ///
6133    /// rec20
6134    Percent,
6135    /// coulomb per metre
6136    ///
6137    /// rec20
6138    CoulombPerMetre,
6139    /// kiloweber
6140    ///
6141    /// rec20
6142    Kiloweber,
6143    /// gamma
6144    ///
6145    /// rec20
6146    Gamma,
6147    /// kilotesla
6148    ///
6149    /// rec20
6150    Kilotesla,
6151    /// joule per second
6152    ///
6153    /// rec20
6154    JoulePerSecond,
6155    /// joule per minute
6156    ///
6157    /// rec20
6158    JoulePerMinute,
6159    /// joule per hour
6160    ///
6161    /// rec20
6162    JoulePerHour,
6163    /// joule per day
6164    ///
6165    /// rec20
6166    JoulePerDay,
6167    /// kilojoule per second
6168    ///
6169    /// rec20
6170    KilojoulePerSecond,
6171    /// kilojoule per minute
6172    ///
6173    /// rec20
6174    KilojoulePerMinute,
6175    /// pound per foot
6176    ///
6177    /// rec20
6178    PoundPerFoot,
6179    /// kilojoule per hour
6180    ///
6181    /// rec20
6182    KilojoulePerHour,
6183    /// kilojoule per day
6184    ///
6185    /// rec20
6186    KilojoulePerDay,
6187    /// nanoohm
6188    ///
6189    /// rec20
6190    Nanoohm,
6191    /// ohm circular-mil per foot
6192    ///
6193    /// rec20
6194    OhmCircularMilPerFoot,
6195    /// kilohenry
6196    ///
6197    /// rec20
6198    Kilohenry,
6199    /// lumen per square foot
6200    ///
6201    /// rec20
6202    LumenPerSquareFoot,
6203    /// phot
6204    ///
6205    /// rec20
6206    Phot,
6207    /// footcandle
6208    ///
6209    /// rec20
6210    Footcandle,
6211    /// candela per square inch
6212    ///
6213    /// rec20
6214    CandelaPerSquareInch,
6215    /// footlambert
6216    ///
6217    /// rec20
6218    Footlambert,
6219    /// lambert
6220    ///
6221    /// rec20
6222    Lambert,
6223    /// stilb
6224    ///
6225    /// rec20
6226    Stilb,
6227    /// candela per square foot
6228    ///
6229    /// rec20
6230    CandelaPerSquareFoot,
6231    /// kilocandela
6232    ///
6233    /// rec20
6234    Kilocandela,
6235    /// millicandela
6236    ///
6237    /// rec20
6238    Millicandela,
6239    /// Hefner-Kerze
6240    ///
6241    /// rec20
6242    HefnerKerze,
6243    /// international candle
6244    ///
6245    /// rec20
6246    InternationalCandle,
6247    /// British thermal unit (international table) per square foot
6248    ///
6249    /// rec20
6250    BritishThermalUnitInternationalTablePerSquareFoot,
6251    /// British thermal unit (thermochemical) per square foot
6252    ///
6253    /// rec20
6254    BritishThermalUnitThermochemicalPerSquareFoot,
6255    /// calorie (thermochemical) per square centimetre
6256    ///
6257    /// rec20
6258    CalorieThermochemicalPerSquareCentimetre,
6259    /// langley
6260    ///
6261    /// rec20
6262    Langley,
6263    /// decade (logarithmic)
6264    ///
6265    /// rec20
6266    DecadeLogarithmic,
6267    /// pascal squared second
6268    ///
6269    /// rec20
6270    PascalSquaredSecond,
6271    /// bel per metre
6272    ///
6273    /// rec20
6274    BelPerMetre,
6275    /// pound mole
6276    ///
6277    /// rec20
6278    PoundMole,
6279    /// pound mole per second
6280    ///
6281    /// rec20
6282    PoundMolePerSecond,
6283    /// pound mole per minute
6284    ///
6285    /// rec20
6286    PoundMolePerMinute,
6287    /// kilomole per kilogram
6288    ///
6289    /// rec20
6290    KilomolePerKilogram,
6291    /// pound mole per pound
6292    ///
6293    /// rec20
6294    PoundMolePerPound,
6295    /// newton square metre per ampere
6296    ///
6297    /// rec20
6298    NewtonSquareMetrePerAmpere,
6299    /// five pack
6300    ///
6301    /// rec20
6302    FivePack,
6303    /// weber metre
6304    ///
6305    /// rec20
6306    WeberMetre,
6307    /// mol per kilogram pascal
6308    ///
6309    /// rec20
6310    MolPerKilogramPascal,
6311    /// mol per cubic metre pascal
6312    ///
6313    /// rec20
6314    MolPerCubicMetrePascal,
6315    /// unit pole
6316    ///
6317    /// rec20
6318    UnitPole,
6319    /// milligray per second
6320    ///
6321    /// rec20
6322    MilligrayPerSecond,
6323    /// microgray per second
6324    ///
6325    /// rec20
6326    MicrograyPerSecond,
6327    /// nanogray per second
6328    ///
6329    /// rec20
6330    NanograyPerSecond,
6331    /// gray per minute
6332    ///
6333    /// rec20
6334    GrayPerMinute,
6335    /// milligray per minute
6336    ///
6337    /// rec20
6338    MilligrayPerMinute,
6339    /// microgray per minute
6340    ///
6341    /// rec20
6342    MicrograyPerMinute,
6343    /// nanogray per minute
6344    ///
6345    /// rec20
6346    NanograyPerMinute,
6347    /// gray per hour
6348    ///
6349    /// rec20
6350    GrayPerHour,
6351    /// milligray per hour
6352    ///
6353    /// rec20
6354    MilligrayPerHour,
6355    /// microgray per hour
6356    ///
6357    /// rec20
6358    MicrograyPerHour,
6359    /// nanogray per hour
6360    ///
6361    /// rec20
6362    NanograyPerHour,
6363    /// sievert per second
6364    ///
6365    /// rec20
6366    SievertPerSecond,
6367    /// millisievert per second
6368    ///
6369    /// rec20
6370    MillisievertPerSecond,
6371    /// microsievert per second
6372    ///
6373    /// rec20
6374    MicrosievertPerSecond,
6375    /// nanosievert per second
6376    ///
6377    /// rec20
6378    NanosievertPerSecond,
6379    /// rem per second
6380    ///
6381    /// rec20
6382    RemPerSecond,
6383    /// sievert per hour
6384    ///
6385    /// rec20
6386    SievertPerHour,
6387    /// millisievert per hour
6388    ///
6389    /// rec20
6390    MillisievertPerHour,
6391    /// microsievert per hour
6392    ///
6393    /// rec20
6394    MicrosievertPerHour,
6395    /// nanosievert per hour
6396    ///
6397    /// rec20
6398    NanosievertPerHour,
6399    /// sievert per minute
6400    ///
6401    /// rec20
6402    SievertPerMinute,
6403    /// millisievert per minute
6404    ///
6405    /// rec20
6406    MillisievertPerMinute,
6407    /// microsievert per minute
6408    ///
6409    /// rec20
6410    MicrosievertPerMinute,
6411    /// nanosievert per minute
6412    ///
6413    /// rec20
6414    NanosievertPerMinute,
6415    /// reciprocal square inch
6416    ///
6417    /// rec20
6418    ReciprocalSquareInch,
6419    /// pascal square metre per kilogram
6420    ///
6421    /// rec20
6422    PascalSquareMetrePerKilogram,
6423    /// millipascal per metre
6424    ///
6425    /// rec20
6426    MillipascalPerMetre,
6427    /// kilopascal per metre
6428    ///
6429    /// rec20
6430    KilopascalPerMetre,
6431    /// hectopascal per metre
6432    ///
6433    /// rec20
6434    HectopascalPerMetre,
6435    /// standard atmosphere per metre
6436    ///
6437    /// rec20
6438    StandardAtmospherePerMetre,
6439    /// technical atmosphere per metre
6440    ///
6441    /// rec20
6442    TechnicalAtmospherePerMetre,
6443    /// torr per metre
6444    ///
6445    /// rec20
6446    TorrPerMetre,
6447    /// psi per inch
6448    ///
6449    /// rec20
6450    PsiPerInch,
6451    /// cubic metre per second square metre
6452    ///
6453    /// rec20
6454    CubicMetrePerSecondSquareMetre,
6455    /// rhe
6456    ///
6457    /// rec20
6458    Rhe,
6459    /// pound-force foot per inch
6460    ///
6461    /// rec20
6462    PoundForceFootPerInch,
6463    /// pound-force inch per inch
6464    ///
6465    /// rec20
6466    PoundForceInchPerInch,
6467    /// perm (0 ºC)
6468    ///
6469    /// rec20
6470    Perm0Oc,
6471    /// perm (23 ºC)
6472    ///
6473    /// rec20
6474    Perm23Oc,
6475    /// byte per second
6476    ///
6477    /// rec20
6478    BytePerSecond,
6479    /// kilobyte per second
6480    ///
6481    /// rec20
6482    KilobytePerSecond,
6483    /// megabyte per second
6484    ///
6485    /// rec20
6486    MegabytePerSecond,
6487    /// reciprocal volt
6488    ///
6489    /// rec20
6490    ReciprocalVolt,
6491    /// reciprocal radian
6492    ///
6493    /// rec20
6494    ReciprocalRadian,
6495    /// pascal to the power sum of stoichiometric numbers
6496    ///
6497    /// rec20
6498    PascalToPowerSumStoichiometricNumbers,
6499    /// mole per cubiv metre to the power sum of stoichiometric numbers
6500    ///
6501    /// rec20
6502    MolePerCubivMetreToPowerSumStoichiometricNumbers,
6503    /// pascal
6504    ///
6505    /// rec20
6506    Pascal,
6507    /// pad
6508    ///
6509    /// rec20
6510    Pad,
6511    /// proof litre
6512    ///
6513    /// rec20
6514    ProofLitre,
6515    /// proof gallon
6516    ///
6517    /// rec20
6518    ProofGallon,
6519    /// pitch
6520    ///
6521    /// rec20
6522    Pitch,
6523    /// degree Plato
6524    ///
6525    /// rec20
6526    DegreePlato,
6527    /// pound per inch of length
6528    ///
6529    /// rec20
6530    PoundPerInchLength,
6531    /// page per inch
6532    ///
6533    /// rec20
6534    PagePerInch,
6535    /// pair
6536    ///
6537    /// rec20
6538    Pair,
6539    /// pound-force per square inch
6540    ///
6541    /// rec20
6542    PoundForcePerSquareInch,
6543    /// dry pint (US)
6544    ///
6545    /// rec20
6546    DryPintUs,
6547    /// pint (UK)
6548    ///
6549    /// rec20
6550    PintUk,
6551    /// liquid pint (US)
6552    ///
6553    /// rec20
6554    LiquidPintUs,
6555    /// portion
6556    ///
6557    /// rec20
6558    Portion,
6559    /// joule per tesla
6560    ///
6561    /// rec20
6562    JoulePerTesla,
6563    /// erlang
6564    ///
6565    /// rec20
6566    Erlang,
6567    /// octet
6568    ///
6569    /// rec20
6570    Octet,
6571    /// octet per second
6572    ///
6573    /// rec20
6574    OctetPerSecond,
6575    /// shannon
6576    ///
6577    /// rec20
6578    Shannon,
6579    /// hartley
6580    ///
6581    /// rec20
6582    Hartley,
6583    /// natural unit of information
6584    ///
6585    /// rec20
6586    NaturalUnitInformation,
6587    /// shannon per second
6588    ///
6589    /// rec20
6590    ShannonPerSecond,
6591    /// hartley per second
6592    ///
6593    /// rec20
6594    HartleyPerSecond,
6595    /// natural unit of information per second
6596    ///
6597    /// rec20
6598    NaturalUnitInformationPerSecond,
6599    /// second per kilogramm
6600    ///
6601    /// rec20
6602    SecondPerKilogramm,
6603    /// watt square metre
6604    ///
6605    /// rec20
6606    WattSquareMetre,
6607    /// second per radian cubic metre
6608    ///
6609    /// rec20
6610    SecondPerRadianCubicMetre,
6611    /// weber to the power minus one
6612    ///
6613    /// rec20
6614    WeberToPowerMinusOne,
6615    /// reciprocal inch
6616    ///
6617    /// rec20
6618    ReciprocalInch,
6619    /// dioptre
6620    ///
6621    /// rec20
6622    Dioptre,
6623    /// one per one
6624    ///
6625    /// rec20
6626    OnePerOne,
6627    /// newton metre per metre
6628    ///
6629    /// rec20
6630    NewtonMetrePerMetre,
6631    /// kilogram per square metre pascal second
6632    ///
6633    /// rec20
6634    KilogramPerSquareMetrePascalSecond,
6635    /// microgram per hectogram
6636    ///
6637    /// rec20
6638    MicrogramPerHectogram,
6639    /// meal
6640    ///
6641    /// rec20
6642    Meal,
6643    /// pH (potential of Hydrogen)
6644    ///
6645    /// rec20
6646    PhPotentialHydrogen,
6647    /// kilojoule per gram
6648    ///
6649    /// rec20
6650    KilojoulePerGram,
6651    /// femtolitre
6652    ///
6653    /// rec20
6654    Femtolitre,
6655    /// picolitre
6656    ///
6657    /// rec20
6658    Picolitre,
6659    /// nanolitre
6660    ///
6661    /// rec20
6662    Nanolitre,
6663    /// megawatts per minute
6664    ///
6665    /// rec20
6666    MegawattsPerMinute,
6667    /// square metre per cubic metre
6668    ///
6669    /// rec20
6670    SquareMetrePerCubicMetre,
6671    /// Standard cubic metre per day
6672    ///
6673    /// rec20
6674    StandardCubicMetrePerDay,
6675    /// Standard cubic metre per hour
6676    ///
6677    /// rec20
6678    StandardCubicMetrePerHour,
6679    /// Normalized cubic metre per day
6680    ///
6681    /// rec20
6682    NormalizedCubicMetrePerDay,
6683    /// Normalized cubic metre per hour
6684    ///
6685    /// rec20
6686    NormalizedCubicMetrePerHour,
6687    /// Joule per normalised cubic metre
6688    ///
6689    /// rec20
6690    JoulePerNormalisedCubicMetre,
6691    /// Joule per standard cubic metre
6692    ///
6693    /// rec20
6694    JoulePerStandardCubicMetre,
6695    /// page - facsimile
6696    ///
6697    /// rec20
6698    PageFacsimile,
6699    /// quarter (of a year)
6700    ///
6701    /// rec20
6702    QuarterAYear,
6703    /// page - hardcopy
6704    ///
6705    /// rec20
6706    PageHardcopy,
6707    /// quire
6708    ///
6709    /// rec20
6710    Quire,
6711    /// dry quart (US)
6712    ///
6713    /// rec20
6714    DryQuartUs,
6715    /// quart (UK)
6716    ///
6717    /// rec20
6718    QuartUk,
6719    /// liquid quart (US)
6720    ///
6721    /// rec20
6722    LiquidQuartUs,
6723    /// quarter (UK)
6724    ///
6725    /// rec20
6726    QuarterUk,
6727    /// pica
6728    ///
6729    /// rec20
6730    Pica,
6731    /// thousand cubic metre
6732    ///
6733    /// rec20
6734    ThousandCubicMetre,
6735    /// running or operating hour
6736    ///
6737    /// rec20
6738    RunningOrOperatingHour,
6739    /// ream
6740    ///
6741    /// rec20
6742    Ream,
6743    /// room
6744    ///
6745    /// rec20
6746    Room,
6747    /// pound per ream
6748    ///
6749    /// rec20
6750    PoundPerReam,
6751    /// revolutions per minute
6752    ///
6753    /// rec20
6754    RevolutionsPerMinute,
6755    /// revolutions per second
6756    ///
6757    /// rec20
6758    RevolutionsPerSecond,
6759    /// revenue ton mile
6760    ///
6761    /// rec20
6762    RevenueTonMile,
6763    /// square foot per second
6764    ///
6765    /// rec20
6766    SquareFootPerSecond,
6767    /// square metre per second
6768    ///
6769    /// rec20
6770    SquareMetrePerSecond,
6771    /// half year (6 months)
6772    ///
6773    /// rec20
6774    HalfYear6Months,
6775    /// score
6776    ///
6777    /// rec20
6778    Score,
6779    /// scruple
6780    ///
6781    /// rec20
6782    Scruple,
6783    /// second [unit of time]
6784    ///
6785    /// rec20
6786    SecondUnitTime,
6787    /// set
6788    ///
6789    /// rec20
6790    Set,
6791    /// segment
6792    ///
6793    /// rec20
6794    Segment,
6795    /// siemens
6796    ///
6797    /// rec20
6798    Siemens,
6799    /// Standard cubic metre
6800    ///
6801    /// rec20
6802    StandardCubicMetre,
6803    /// mile (statute mile)
6804    ///
6805    /// rec20
6806    MileStatuteMile,
6807    /// square
6808    ///
6809    /// rec20
6810    Square,
6811    /// square, roofing
6812    ///
6813    /// rec20
6814    SquareRoofing,
6815    /// strip
6816    ///
6817    /// rec20
6818    Strip,
6819    /// stick
6820    ///
6821    /// rec20
6822    Stick,
6823    /// stone (UK)
6824    ///
6825    /// rec20
6826    StoneUk,
6827    /// stick, cigarette
6828    ///
6829    /// rec20
6830    StickCigarette,
6831    /// standard litre
6832    ///
6833    /// rec20
6834    StandardLitre,
6835    /// ton (US) or short ton (UK/US)
6836    ///
6837    /// rec20
6838    TonUsOrShortTonUkUs,
6839    /// straw
6840    ///
6841    /// rec20
6842    Straw,
6843    /// skein
6844    ///
6845    /// rec20
6846    Skein,
6847    /// shipment
6848    ///
6849    /// rec20
6850    Shipment,
6851    /// syringe
6852    ///
6853    /// rec20
6854    Syringe,
6855    /// telecommunication line in service
6856    ///
6857    /// rec20
6858    TelecommunicationLineInService,
6859    /// thousand piece
6860    ///
6861    /// rec20
6862    ThousandPiece,
6863    /// kiloampere hour (thousand ampere hour)
6864    ///
6865    /// rec20
6866    KiloampereHourThousandAmpereHour,
6867    /// total acid number
6868    ///
6869    /// rec20
6870    TotalAcidNumber,
6871    /// thousand square inch
6872    ///
6873    /// rec20
6874    ThousandSquareInch,
6875    /// metric ton, including container
6876    ///
6877    /// rec20
6878    MetricTonIncludingContainer,
6879    /// metric ton, including inner packaging
6880    ///
6881    /// rec20
6882    MetricTonIncludingInnerPackaging,
6883    /// tonne kilometre
6884    ///
6885    /// rec20
6886    TonneKilometre,
6887    /// kilogram of imported meat, less offal
6888    ///
6889    /// rec20
6890    KilogramImportedMeatLessOffal,
6891    /// tonne (metric ton)
6892    ///
6893    /// rec20
6894    TonneMetricTon,
6895    /// ten pack
6896    ///
6897    /// rec20
6898    TenPack,
6899    /// teeth per inch
6900    ///
6901    /// rec20
6902    TeethPerInch,
6903    /// ten pair
6904    ///
6905    /// rec20
6906    TenPair,
6907    /// thousand cubic metre per day
6908    ///
6909    /// rec20
6910    ThousandCubicMetrePerDay,
6911    /// trillion (EUR)
6912    ///
6913    /// rec20
6914    TrillionEur,
6915    /// ten set
6916    ///
6917    /// rec20
6918    TenSet,
6919    /// ten thousand sticks
6920    ///
6921    /// rec20
6922    TenThousandSticks,
6923    /// treatment
6924    ///
6925    /// rec20
6926    Treatment,
6927    /// tablet
6928    ///
6929    /// rec20
6930    Tablet,
6931    /// telecommunication line in service average
6932    ///
6933    /// rec20
6934    TelecommunicationLineInServiceAverage,
6935    /// telecommunication port
6936    ///
6937    /// rec20
6938    TelecommunicationPort,
6939    /// volt - ampere per kilogram
6940    ///
6941    /// rec20
6942    VoltAmperePerKilogram,
6943    /// volt
6944    ///
6945    /// rec20
6946    Volt,
6947    /// percent volume
6948    ///
6949    /// rec20
6950    PercentVolume,
6951    /// wet kilo
6952    ///
6953    /// rec20
6954    WetKilo,
6955    /// watt per kilogram
6956    ///
6957    /// rec20
6958    WattPerKilogram,
6959    /// wet pound
6960    ///
6961    /// rec20
6962    WetPound,
6963    /// cord
6964    ///
6965    /// rec20
6966    Cord,
6967    /// wet ton
6968    ///
6969    /// rec20
6970    WetTon,
6971    /// weber
6972    ///
6973    /// rec20
6974    Weber,
6975    /// week
6976    ///
6977    /// rec20
6978    Week,
6979    /// wine gallon
6980    ///
6981    /// rec20
6982    WineGallon,
6983    /// watt hour
6984    ///
6985    /// rec20
6986    WattHour,
6987    /// working month
6988    ///
6989    /// rec20
6990    WorkingMonth,
6991    /// standard
6992    ///
6993    /// rec20
6994    Standard,
6995    /// watt
6996    ///
6997    /// rec20
6998    Watt,
6999    /// Gunter's chain
7000    ///
7001    /// rec20
7002    GuntersChain,
7003    /// square yard
7004    ///
7005    /// rec20
7006    SquareYard,
7007    /// cubic yard
7008    ///
7009    /// rec20
7010    CubicYard,
7011    /// yard
7012    ///
7013    /// rec20
7014    Yard,
7015    /// hanging container
7016    ///
7017    /// rec20
7018    HangingContainer,
7019    /// nanomole
7020    ///
7021    /// Rec20
7022    Nanomole,
7023    /// page
7024    ///
7025    /// rec20
7026    Page,
7027    /// mutually defined
7028    ///
7029    /// rec20
7030    MutuallyDefined,
7031    /// Drum, steel
7032    ///
7033    /// rec21
7034    DrumSteel,
7035    /// Drum, aluminium
7036    ///
7037    /// rec21
7038    DrumAluminium,
7039    /// Drum, plywood
7040    ///
7041    /// rec21
7042    DrumPlywood,
7043    /// Container, flexible
7044    ///
7045    /// rec21
7046    ContainerFlexible,
7047    /// Drum, fibre
7048    ///
7049    /// rec21
7050    DrumFibre,
7051    /// Drum, wooden
7052    ///
7053    /// rec21
7054    DrumWooden,
7055    /// Barrel, wooden
7056    ///
7057    /// rec21
7058    BarrelWooden,
7059    /// Jerrican, steel
7060    ///
7061    /// rec21
7062    JerricanSteel,
7063    /// Jerrican, plastic
7064    ///
7065    /// rec21
7066    JerricanPlastic,
7067    /// Bag, super bulk
7068    ///
7069    /// rec21
7070    BagSuperBulk,
7071    /// Bag, polybag
7072    ///
7073    /// rec21
7074    BagPolybag,
7075    /// Box, steel
7076    ///
7077    /// rec21
7078    BoxSteel,
7079    /// Box, aluminium
7080    ///
7081    /// rec21
7082    BoxAluminium,
7083    /// Box, natural wood
7084    ///
7085    /// rec21
7086    BoxNaturalWood,
7087    /// Box, plywood
7088    ///
7089    /// rec21
7090    BoxPlywood,
7091    /// Box, reconstituted wood
7092    ///
7093    /// rec21
7094    BoxReconstitutedWood,
7095    /// Box, fibreboard
7096    ///
7097    /// rec21
7098    BoxFibreboard,
7099    /// Box, plastic
7100    ///
7101    /// rec21
7102    BoxPlastic,
7103    /// Bag, woven plastic
7104    ///
7105    /// rec21
7106    BagWovenPlastic,
7107    /// Bag, textile
7108    ///
7109    /// rec21
7110    BagTextile,
7111    /// Bag, paper
7112    ///
7113    /// rec21
7114    BagPaper,
7115    /// Composite packaging, plastic receptacle
7116    ///
7117    /// rec21
7118    CompositePackagingPlasticReceptacle,
7119    /// Composite packaging, glass receptacle
7120    ///
7121    /// rec21
7122    CompositePackagingGlassReceptacle,
7123    /// Case, car
7124    ///
7125    /// rec21
7126    CaseCar,
7127    /// Case, wooden
7128    ///
7129    /// rec21
7130    CaseWooden,
7131    /// Pallet, wooden
7132    ///
7133    /// rec21
7134    PalletWooden,
7135    /// Crate, wooden
7136    ///
7137    /// rec21
7138    CrateWooden,
7139    /// Bundle, wooden
7140    ///
7141    /// rec21
7142    BundleWooden,
7143    /// Intermediate bulk container, rigid plastic
7144    ///
7145    /// rec21
7146    IntermediateBulkContainerRigidPlastic,
7147    /// Receptacle, fibre
7148    ///
7149    /// rec21
7150    ReceptacleFibre,
7151    /// Receptacle, paper
7152    ///
7153    /// rec21
7154    ReceptaclePaper,
7155    /// Receptacle, wooden
7156    ///
7157    /// rec21
7158    ReceptacleWooden,
7159    /// Aerosol
7160    ///
7161    /// rec21
7162    Aerosol,
7163    /// Pallet, modular, collars 80cms * 60cms
7164    ///
7165    /// rec21
7166    PalletModularCollars80cms60cms,
7167    /// Pallet, shrinkwrapped
7168    ///
7169    /// rec21
7170    PalletShrinkwrapped,
7171    /// Pallet, 100cms * 110cms
7172    ///
7173    /// rec21
7174    Pallet100cms110cms,
7175    /// Clamshell
7176    ///
7177    /// rec21
7178    Clamshell,
7179    /// Cone
7180    ///
7181    /// rec21
7182    Cone,
7183    /// Ball
7184    ///
7185    /// rec21
7186    Ball_Dup,
7187    /// Ampoule, non-protected
7188    ///
7189    /// rec21
7190    AmpouleNonProtected,
7191    /// Ampoule, protected
7192    ///
7193    /// rec21
7194    AmpouleProtected,
7195    /// Atomizer
7196    ///
7197    /// rec21
7198    Atomizer,
7199    /// Capsule
7200    ///
7201    /// rec21
7202    Capsule,
7203    /// Belt
7204    ///
7205    /// rec21
7206    Belt,
7207    /// Barrel
7208    ///
7209    /// rec21
7210    Barrel,
7211    /// Bobbin
7212    ///
7213    /// rec21
7214    Bobbin,
7215    /// Bottlecrate / bottlerack
7216    ///
7217    /// rec21
7218    BottlecrateBottlerack,
7219    /// Board
7220    ///
7221    /// rec21
7222    Board,
7223    /// Bundle
7224    ///
7225    /// rec21
7226    Bundle,
7227    /// Balloon, non-protected
7228    ///
7229    /// rec21
7230    BalloonNonProtected,
7231    /// Bag
7232    ///
7233    /// rec21
7234    Bag,
7235    /// Bunch
7236    ///
7237    /// rec21
7238    Bunch,
7239    /// Bin
7240    ///
7241    /// rec21
7242    Bin,
7243    /// Bucket
7244    ///
7245    /// rec21
7246    Bucket,
7247    /// Basket
7248    ///
7249    /// rec21
7250    Basket,
7251    /// Bale, compressed
7252    ///
7253    /// rec21
7254    BaleCompressed,
7255    /// Basin
7256    ///
7257    /// rec21
7258    Basin,
7259    /// Bale, non-compressed
7260    ///
7261    /// rec21
7262    BaleNonCompressed,
7263    /// Bottle, non-protected, cylindrical
7264    ///
7265    /// rec21
7266    BottleNonProtectedCylindrical,
7267    /// Balloon, protected
7268    ///
7269    /// rec21
7270    BalloonProtected,
7271    /// Bottle, protected cylindrical
7272    ///
7273    /// rec21
7274    BottleProtectedCylindrical,
7275    /// Bar
7276    ///
7277    /// rec21
7278    Bar,
7279    /// Bottle, non-protected, bulbous
7280    ///
7281    /// rec21
7282    BottleNonProtectedBulbous,
7283    /// Bolt
7284    ///
7285    /// rec21
7286    Bolt,
7287    /// Butt
7288    ///
7289    /// rec21
7290    Butt,
7291    /// Bottle, protected bulbous
7292    ///
7293    /// rec21
7294    BottleProtectedBulbous,
7295    /// Box, for liquids
7296    ///
7297    /// rec21
7298    BoxForLiquids,
7299    /// Box
7300    ///
7301    /// rec21
7302    Box,
7303    /// Board, in bundle/bunch/truss
7304    ///
7305    /// rec21
7306    BoardInBundleBunchTruss,
7307    /// Bars, in bundle/bunch/truss
7308    ///
7309    /// rec21
7310    BarsInBundleBunchTruss,
7311    /// Can, rectangular
7312    ///
7313    /// rec21
7314    CanRectangular,
7315    /// Crate, beer
7316    ///
7317    /// rec21
7318    CrateBeer,
7319    /// Churn
7320    ///
7321    /// rec21
7322    Churn,
7323    /// Can, with handle and spout
7324    ///
7325    /// rec21
7326    CanWithHandleAndSpout,
7327    /// Creel
7328    ///
7329    /// rec21
7330    Creel,
7331    /// Coffer
7332    ///
7333    /// rec21
7334    Coffer,
7335    /// Cage
7336    ///
7337    /// rec21
7338    Cage,
7339    /// Chest
7340    ///
7341    /// rec21
7342    Chest,
7343    /// Canister
7344    ///
7345    /// rec21
7346    Canister,
7347    /// Coffin
7348    ///
7349    /// rec21
7350    Coffin,
7351    /// Cask
7352    ///
7353    /// rec21
7354    Cask,
7355    /// Coil
7356    ///
7357    /// rec21
7358    Coil,
7359    /// Card
7360    ///
7361    /// rec21
7362    Card_Dup,
7363    /// Container, not otherwise specified as transport equipment
7364    ///
7365    /// rec21
7366    ContainerNotOtherwiseSpecifiedAsTransportEquipment,
7367    /// Carboy, non-protected
7368    ///
7369    /// rec21
7370    CarboyNonProtected,
7371    /// Carboy, protected
7372    ///
7373    /// rec21
7374    CarboyProtected,
7375    /// Cartridge
7376    ///
7377    /// rec21
7378    Cartridge,
7379    /// Crate
7380    ///
7381    /// rec21
7382    Crate,
7383    /// Case
7384    ///
7385    /// rec21
7386    Case,
7387    /// Carton
7388    ///
7389    /// rec21
7390    Carton,
7391    /// Cup
7392    ///
7393    /// rec21
7394    Cup,
7395    /// Cover
7396    ///
7397    /// rec21
7398    Cover,
7399    /// Cage, roll
7400    ///
7401    /// rec21
7402    CageRoll,
7403    /// Can, cylindrical
7404    ///
7405    /// rec21
7406    CanCylindrical,
7407    /// Cylinder
7408    ///
7409    /// rec21
7410    Cylinder,
7411    /// Canvas
7412    ///
7413    /// rec21
7414    Canvas,
7415    /// Crate, multiple layer, plastic
7416    ///
7417    /// rec21
7418    CrateMultipleLayerPlastic,
7419    /// Crate, multiple layer, wooden
7420    ///
7421    /// rec21
7422    CrateMultipleLayerWooden,
7423    /// Crate, multiple layer, cardboard
7424    ///
7425    /// rec21
7426    CrateMultipleLayerCardboard,
7427    /// Cage, Commonwealth Handling Equipment Pool (CHEP)
7428    ///
7429    /// rec21
7430    CageCommonwealthHandlingEquipmentPoolChep,
7431    /// Box, Commonwealth Handling Equipment Pool (CHEP), Eurobox
7432    ///
7433    /// rec21
7434    BoxCommonwealthHandlingEquipmentPoolChepEurobox,
7435    /// Drum, iron
7436    ///
7437    /// rec21
7438    DrumIron,
7439    /// Demijohn, non-protected
7440    ///
7441    /// rec21
7442    DemijohnNonProtected,
7443    /// Crate, bulk, cardboard
7444    ///
7445    /// rec21
7446    CrateBulkCardboard,
7447    /// Crate, bulk, plastic
7448    ///
7449    /// rec21
7450    CrateBulkPlastic,
7451    /// Crate, bulk, wooden
7452    ///
7453    /// rec21
7454    CrateBulkWooden,
7455    /// Dispenser
7456    ///
7457    /// rec21
7458    Dispenser,
7459    /// Demijohn, protected
7460    ///
7461    /// rec21
7462    DemijohnProtected,
7463    /// Drum
7464    ///
7465    /// rec21
7466    Drum,
7467    /// Tray, one layer no cover, plastic
7468    ///
7469    /// rec21
7470    TrayOneLayerNoCoverPlastic,
7471    /// Tray, one layer no cover, wooden
7472    ///
7473    /// rec21
7474    TrayOneLayerNoCoverWooden,
7475    /// Tray, one layer no cover, polystyrene
7476    ///
7477    /// rec21
7478    TrayOneLayerNoCoverPolystyrene,
7479    /// Tray, one layer no cover, cardboard
7480    ///
7481    /// rec21
7482    TrayOneLayerNoCoverCardboard,
7483    /// Tray, two layers no cover, plastic tray
7484    ///
7485    /// rec21
7486    TrayTwoLayersNoCoverPlasticTray,
7487    /// Tray, two layers no cover, wooden
7488    ///
7489    /// rec21
7490    TrayTwoLayersNoCoverWooden,
7491    /// Tray, two layers no cover, cardboard
7492    ///
7493    /// rec21
7494    TrayTwoLayersNoCoverCardboard,
7495    /// Bag, plastic
7496    ///
7497    /// rec21
7498    BagPlastic,
7499    /// Case, with pallet base
7500    ///
7501    /// rec21
7502    CaseWithPalletBase,
7503    /// Case, with pallet base, wooden
7504    ///
7505    /// rec21
7506    CaseWithPalletBaseWooden,
7507    /// Case, with pallet base, cardboard
7508    ///
7509    /// rec21
7510    CaseWithPalletBaseCardboard,
7511    /// Case, with pallet base, plastic
7512    ///
7513    /// rec21
7514    CaseWithPalletBasePlastic,
7515    /// Case, with pallet base, metal
7516    ///
7517    /// rec21
7518    CaseWithPalletBaseMetal,
7519    /// Case, isothermic
7520    ///
7521    /// rec21
7522    CaseIsothermic,
7523    /// Envelope
7524    ///
7525    /// rec21
7526    Envelope,
7527    /// Flexibag
7528    ///
7529    /// rec21
7530    Flexibag,
7531    /// Crate, fruit
7532    ///
7533    /// rec21
7534    CrateFruit,
7535    /// Crate, framed
7536    ///
7537    /// rec21
7538    CrateFramed,
7539    /// Flexitank
7540    ///
7541    /// rec21
7542    Flexitank,
7543    /// Firkin
7544    ///
7545    /// rec21
7546    Firkin,
7547    /// Flask
7548    ///
7549    /// rec21
7550    Flask,
7551    /// Footlocker
7552    ///
7553    /// rec21
7554    Footlocker,
7555    /// Filmpack
7556    ///
7557    /// rec21
7558    Filmpack,
7559    /// Frame
7560    ///
7561    /// rec21
7562    Frame,
7563    /// Foodtainer
7564    ///
7565    /// rec21
7566    Foodtainer,
7567    /// Cart, flatbed
7568    ///
7569    /// rec21
7570    CartFlatbed,
7571    /// Bag, flexible container
7572    ///
7573    /// rec21
7574    BagFlexibleContainer,
7575    /// Bottle, gas
7576    ///
7577    /// rec21
7578    BottleGas,
7579    /// Girder
7580    ///
7581    /// rec21
7582    Girder,
7583    /// Container, gallon
7584    ///
7585    /// rec21
7586    ContainerGallon,
7587    /// Receptacle, glass
7588    ///
7589    /// rec21
7590    ReceptacleGlass,
7591    /// Tray, containing horizontally stacked flat items
7592    ///
7593    /// rec21
7594    TrayContainingHorizontallyStackedFlatItems,
7595    /// Bag, gunny
7596    ///
7597    /// rec21
7598    BagGunny,
7599    /// Girders, in bundle/bunch/truss
7600    ///
7601    /// rec21
7602    GirdersInBundleBunchTruss,
7603    /// Basket, with handle, plastic
7604    ///
7605    /// rec21
7606    BasketWithHandlePlastic,
7607    /// Basket, with handle, wooden
7608    ///
7609    /// rec21
7610    BasketWithHandleWooden,
7611    /// Basket, with handle, cardboard
7612    ///
7613    /// rec21
7614    BasketWithHandleCardboard,
7615    /// Hogshead
7616    ///
7617    /// rec21
7618    Hogshead,
7619    /// Hanger
7620    ///
7621    /// rec21
7622    Hanger,
7623    /// Hamper
7624    ///
7625    /// rec21
7626    Hamper,
7627    /// Package, display, wooden
7628    ///
7629    /// rec21
7630    PackageDisplayWooden,
7631    /// Package, display, cardboard
7632    ///
7633    /// rec21
7634    PackageDisplayCardboard,
7635    /// Package, display, plastic
7636    ///
7637    /// rec21
7638    PackageDisplayPlastic,
7639    /// Package, display, metal
7640    ///
7641    /// rec21
7642    PackageDisplayMetal,
7643    /// Package, show
7644    ///
7645    /// rec21
7646    PackageShow,
7647    /// Package, flow
7648    ///
7649    /// rec21
7650    PackageFlow,
7651    /// Package, paper wrapped
7652    ///
7653    /// rec21
7654    PackagePaperWrapped,
7655    /// Drum, plastic
7656    ///
7657    /// rec21
7658    DrumPlastic,
7659    /// Package, cardboard, with bottle grip-holes
7660    ///
7661    /// rec21
7662    PackageCardboardWithBottleGripHoles,
7663    /// Tray, rigid, lidded stackable (CEN TS 14482:2002)
7664    ///
7665    /// rec21
7666    TrayRigidLiddedStackableCenTs144822002,
7667    /// Ingot
7668    ///
7669    /// rec21
7670    Ingot,
7671    /// Ingots, in bundle/bunch/truss
7672    ///
7673    /// rec21
7674    IngotsInBundleBunchTruss,
7675    /// Bag, jumbo
7676    ///
7677    /// rec21
7678    BagJumbo,
7679    /// Jerrican, rectangular
7680    ///
7681    /// rec21
7682    JerricanRectangular,
7683    /// Jug
7684    ///
7685    /// rec21
7686    Jug,
7687    /// Jar
7688    ///
7689    /// rec21
7690    Jar,
7691    /// Jutebag
7692    ///
7693    /// rec21
7694    Jutebag,
7695    /// Jerrican, cylindrical
7696    ///
7697    /// rec21
7698    JerricanCylindrical,
7699    /// Keg
7700    ///
7701    /// rec21
7702    Keg,
7703    /// Kit
7704    ///
7705    /// rec21
7706    Kit_Dup,
7707    /// Luggage
7708    ///
7709    /// rec21
7710    Luggage,
7711    /// Log
7712    ///
7713    /// rec21
7714    Log,
7715    /// Lot
7716    ///
7717    /// rec21
7718    Lot,
7719    /// Lug
7720    ///
7721    /// rec21
7722    Lug,
7723    /// Liftvan
7724    ///
7725    /// rec21
7726    Liftvan,
7727    /// Logs, in bundle/bunch/truss
7728    ///
7729    /// rec21
7730    LogsInBundleBunchTruss,
7731    /// Crate, metal
7732    ///
7733    /// rec21
7734    CrateMetal,
7735    /// Bag, multiply
7736    ///
7737    /// rec21
7738    BagMultiply,
7739    /// Crate, milk
7740    ///
7741    /// rec21
7742    CrateMilk,
7743    /// Container, metal
7744    ///
7745    /// rec21
7746    ContainerMetal,
7747    /// Receptacle, metal
7748    ///
7749    /// rec21
7750    ReceptacleMetal,
7751    /// Sack, multi-wall
7752    ///
7753    /// rec21
7754    SackMultiWall,
7755    /// Mat
7756    ///
7757    /// rec21
7758    Mat,
7759    /// Receptacle, plastic wrapped
7760    ///
7761    /// rec21
7762    ReceptaclePlasticWrapped,
7763    /// Matchbox
7764    ///
7765    /// rec21
7766    Matchbox,
7767    /// Not available
7768    ///
7769    /// rec21
7770    NotAvailable,
7771    /// Unpacked or unpackaged
7772    ///
7773    /// rec21
7774    UnpackedOrUnpackaged,
7775    /// Unpacked or unpackaged, single unit
7776    ///
7777    /// rec21
7778    UnpackedOrUnpackagedSingleUnit,
7779    /// Unpacked or unpackaged, multiple units
7780    ///
7781    /// rec21
7782    UnpackedOrUnpackagedMultipleUnits,
7783    /// Nest
7784    ///
7785    /// rec21
7786    Nest,
7787    /// Net
7788    ///
7789    /// rec21
7790    Net,
7791    /// Net, tube, plastic
7792    ///
7793    /// rec21
7794    NetTubePlastic,
7795    /// Net, tube, textile
7796    ///
7797    /// rec21
7798    NetTubeTextile,
7799    /// Two sided cage on wheels with fixing strap
7800    ///
7801    /// Rec21
7802    TwoSidedCageOnWheelsWithFixingStrap,
7803    /// Trolley
7804    ///
7805    /// Rec21
7806    Trolley,
7807    /// Oneway pallet ISO 0 - 1/2 EURO Pallet
7808    ///
7809    /// Rec21
7810    OnewayPalletIso012EuroPallet,
7811    /// Oneway pallet ISO 1 - 1/1 EURO Pallet
7812    ///
7813    /// Rec21
7814    OnewayPalletIso111EuroPallet,
7815    /// Oneway pallet ISO 2 - 2/1 EURO Pallet
7816    ///
7817    /// Rec21
7818    OnewayPalletIso221EuroPallet,
7819    /// Pallet with exceptional dimensions
7820    ///
7821    /// Rec21
7822    PalletWithExceptionalDimensions,
7823    /// Wooden pallet 40 cm x 80 cm
7824    ///
7825    /// Rec21
7826    WoodenPallet40CmX80Cm,
7827    /// Plastic pallet SRS 60 cm x 80 cm
7828    ///
7829    /// Rec21
7830    PlasticPalletSrs60CmX80Cm,
7831    /// Plastic pallet SRS 80 cm x 120 cm
7832    ///
7833    /// Rec21
7834    PlasticPalletSrs80CmX120Cm,
7835    /// Pallet, CHEP 40 cm x 60 cm
7836    ///
7837    /// rec21
7838    PalletChep40CmX60Cm,
7839    /// Pallet, CHEP 80 cm x 120 cm
7840    ///
7841    /// rec21
7842    PalletChep80CmX120Cm,
7843    /// Pallet, CHEP 100 cm x 120 cm
7844    ///
7845    /// rec21
7846    PalletChep100CmX120Cm,
7847    /// Pallet, AS 4068-1993
7848    ///
7849    /// rec21
7850    PalletAs40681993,
7851    /// Pallet, ISO T11
7852    ///
7853    /// rec21
7854    PalletIsoT11,
7855    /// Platform, unspecified weight or dimension
7856    ///
7857    /// rec21
7858    PlatformUnspecifiedWeightOrDimension,
7859    /// Pallet ISO 0 - 1/2 EURO Pallet
7860    ///
7861    /// Rec21
7862    PalletIso012EuroPallet,
7863    /// Pallet ISO 1 - 1/1 EURO Pallet
7864    ///
7865    /// Rec21
7866    PalletIso111EuroPallet,
7867    /// Pallet ISO 2 – 2/1 EURO Pallet
7868    ///
7869    /// Rec21
7870    PalletIso221EuroPallet,
7871    /// 1/4 EURO Pallet
7872    ///
7873    /// Rec21
7874    _14EuroPallet,
7875    /// Block
7876    ///
7877    /// rec21
7878    Block,
7879    /// 1/8 EURO Pallet
7880    ///
7881    /// Rec21
7882    _18EuroPallet,
7883    /// Synthetic pallet ISO 1
7884    ///
7885    /// Rec21
7886    SyntheticPalletIso1,
7887    /// Synthetic pallet ISO 2
7888    ///
7889    /// Rec21
7890    SyntheticPalletIso2,
7891    /// Wholesaler pallet
7892    ///
7893    /// Rec21
7894    WholesalerPallet,
7895    /// Pallet 80 X 100 cm
7896    ///
7897    /// Rec21
7898    Pallet80X100Cm,
7899    /// Pallet 60 X 100 cm
7900    ///
7901    /// Rec21
7902    Pallet60X100Cm,
7903    /// Oneway pallet
7904    ///
7905    /// Rec21
7906    OnewayPallet,
7907    /// Octabin
7908    ///
7909    /// rec21
7910    Octabin,
7911    /// Container, outer
7912    ///
7913    /// rec21
7914    ContainerOuter,
7915    /// Returnable pallet
7916    ///
7917    /// Rec21
7918    ReturnablePallet,
7919    /// Large bag, pallet sized
7920    ///
7921    /// Rec21
7922    LargeBagPalletSized,
7923    /// A wheeled pallet with raised rim (81 x 67 x 135)
7924    ///
7925    /// Rec21
7926    AWheeledPalletWithRaisedRim81X67X135,
7927    /// A Wheeled pallet with raised rim (81 x 72 x 135)
7928    ///
7929    /// Rec21
7930    AWheeledPalletWithRaisedRim81X72X135,
7931    /// Wheeled pallet with raised rim ( 81 x 60 x 16)
7932    ///
7933    /// Rec21
7934    WheeledPalletWithRaisedRim81X60X16,
7935    /// CHEP pallet 60 cm x 80 cm
7936    ///
7937    /// Rec21
7938    ChepPallet60CmX80Cm,
7939    /// Pan
7940    ///
7941    /// rec21
7942    Pan,
7943    /// LPR pallet 60 cm x 80 cm
7944    ///
7945    /// Rec21
7946    LprPallet60CmX80Cm,
7947    /// LPR pallet 80 cm x 120 cm
7948    ///
7949    /// Rec21
7950    LprPallet80CmX120Cm,
7951    /// Packet
7952    ///
7953    /// rec21
7954    Packet,
7955    /// Pallet, box Combined open-ended box and pallet
7956    ///
7957    /// rec21
7958    PalletBoxCombinedOpenEndedBoxAndPallet,
7959    /// Parcel
7960    ///
7961    /// rec21
7962    Parcel,
7963    /// Pallet, modular, collars 80cms * 100cms
7964    ///
7965    /// rec21
7966    PalletModularCollars80cms100cms,
7967    /// Pallet, modular, collars 80cms * 120cms
7968    ///
7969    /// rec21
7970    PalletModularCollars80cms120cms,
7971    /// Pen
7972    ///
7973    /// rec21
7974    Pen,
7975    /// Plate
7976    ///
7977    /// rec21
7978    Plate,
7979    /// Pitcher
7980    ///
7981    /// rec21
7982    Pitcher,
7983    /// Pipe
7984    ///
7985    /// rec21
7986    Pipe,
7987    /// Punnet
7988    ///
7989    /// rec21
7990    Punnet,
7991    /// Package
7992    ///
7993    /// rec21
7994    Package,
7995    /// Pail
7996    ///
7997    /// rec21
7998    Pail,
7999    /// Plank
8000    ///
8001    /// rec21
8002    Plank,
8003    /// Pouch
8004    ///
8005    /// rec21
8006    Pouch,
8007    /// Piece
8008    ///
8009    /// rec21
8010    Piece_Dup,
8011    /// Receptacle, plastic
8012    ///
8013    /// rec21
8014    ReceptaclePlastic,
8015    /// Pot
8016    ///
8017    /// rec21
8018    Pot,
8019    /// Tray
8020    ///
8021    /// rec21
8022    Tray,
8023    /// Pipes, in bundle/bunch/truss
8024    ///
8025    /// rec21
8026    PipesInBundleBunchTruss,
8027    /// Pallet
8028    ///
8029    /// rec21
8030    Pallet,
8031    /// Plates, in bundle/bunch/truss
8032    ///
8033    /// rec21
8034    PlatesInBundleBunchTruss,
8035    /// Planks, in bundle/bunch/truss
8036    ///
8037    /// rec21
8038    PlanksInBundleBunchTruss,
8039    /// Drum, steel, non-removable head
8040    ///
8041    /// rec21
8042    DrumSteelNonRemovableHead,
8043    /// Drum, steel, removable head
8044    ///
8045    /// rec21
8046    DrumSteelRemovableHead,
8047    /// Drum, aluminium, non-removable head
8048    ///
8049    /// rec21
8050    DrumAluminiumNonRemovableHead,
8051    /// Drum, aluminium, removable head
8052    ///
8053    /// rec21
8054    DrumAluminiumRemovableHead,
8055    /// Drum, plastic, non-removable head
8056    ///
8057    /// rec21
8058    DrumPlasticNonRemovableHead,
8059    /// Drum, plastic, removable head
8060    ///
8061    /// rec21
8062    DrumPlasticRemovableHead,
8063    /// Barrel, wooden, bung type
8064    ///
8065    /// rec21
8066    BarrelWoodenBungType,
8067    /// Barrel, wooden, removable head
8068    ///
8069    /// rec21
8070    BarrelWoodenRemovableHead,
8071    /// Jerrican, steel, non-removable head
8072    ///
8073    /// rec21
8074    JerricanSteelNonRemovableHead,
8075    /// Jerrican, steel, removable head
8076    ///
8077    /// rec21
8078    JerricanSteelRemovableHead,
8079    /// Jerrican, plastic, non-removable head
8080    ///
8081    /// rec21
8082    JerricanPlasticNonRemovableHead,
8083    /// Jerrican, plastic, removable head
8084    ///
8085    /// rec21
8086    JerricanPlasticRemovableHead,
8087    /// Box, wooden, natural wood, ordinary
8088    ///
8089    /// rec21
8090    BoxWoodenNaturalWoodOrdinary,
8091    /// Box, wooden, natural wood, with sift proof walls
8092    ///
8093    /// rec21
8094    BoxWoodenNaturalWoodWithSiftProofWalls,
8095    /// Box, plastic, expanded
8096    ///
8097    /// rec21
8098    BoxPlasticExpanded,
8099    /// Box, plastic, solid
8100    ///
8101    /// rec21
8102    BoxPlasticSolid,
8103    /// Rod
8104    ///
8105    /// rec21
8106    Rod,
8107    /// Ring
8108    ///
8109    /// rec21
8110    Ring,
8111    /// Rack, clothing hanger
8112    ///
8113    /// rec21
8114    RackClothingHanger,
8115    /// Rack
8116    ///
8117    /// rec21
8118    Rack,
8119    /// Reel
8120    ///
8121    /// rec21
8122    Reel,
8123    /// Roll
8124    ///
8125    /// rec21
8126    Roll,
8127    /// Rednet
8128    ///
8129    /// rec21
8130    Rednet,
8131    /// Rods, in bundle/bunch/truss
8132    ///
8133    /// rec21
8134    RodsInBundleBunchTruss,
8135    /// Sack
8136    ///
8137    /// rec21
8138    Sack,
8139    /// Slab
8140    ///
8141    /// rec21
8142    Slab,
8143    /// Crate, shallow
8144    ///
8145    /// rec21
8146    CrateShallow,
8147    /// Spindle
8148    ///
8149    /// rec21
8150    Spindle,
8151    /// Sea-chest
8152    ///
8153    /// rec21
8154    SeaChest,
8155    /// Sachet
8156    ///
8157    /// rec21
8158    Sachet,
8159    /// Skid
8160    ///
8161    /// rec21
8162    Skid,
8163    /// Case, skeleton
8164    ///
8165    /// rec21
8166    CaseSkeleton,
8167    /// Slipsheet
8168    ///
8169    /// rec21
8170    Slipsheet,
8171    /// Sheetmetal
8172    ///
8173    /// rec21
8174    Sheetmetal,
8175    /// Spool
8176    ///
8177    /// rec21
8178    Spool,
8179    /// Sheet, plastic wrapping
8180    ///
8181    /// rec21
8182    SheetPlasticWrapping,
8183    /// Case, steel
8184    ///
8185    /// rec21
8186    CaseSteel,
8187    /// Sheet
8188    ///
8189    /// rec21
8190    Sheet,
8191    /// Suitcase
8192    ///
8193    /// rec21
8194    Suitcase,
8195    /// Envelope, steel
8196    ///
8197    /// rec21
8198    EnvelopeSteel,
8199    /// Shrinkwrapped
8200    ///
8201    /// rec21
8202    Shrinkwrapped,
8203    /// Set
8204    ///
8205    /// Rec21
8206    Set_Dup,
8207    /// Sleeve
8208    ///
8209    /// rec21
8210    Sleeve,
8211    /// Sheets, in bundle/bunch/truss
8212    ///
8213    /// rec21
8214    SheetsInBundleBunchTruss,
8215    /// Tablet
8216    ///
8217    /// rec21
8218    Tablet_Dup,
8219    /// Tub
8220    ///
8221    /// rec21
8222    Tub,
8223    /// Tea-chest
8224    ///
8225    /// rec21
8226    TeaChest,
8227    /// Tube, collapsible
8228    ///
8229    /// rec21
8230    TubeCollapsible,
8231    /// Tyre
8232    ///
8233    /// rec21
8234    Tyre_Dup,
8235    /// Tank container, generic
8236    ///
8237    /// rec21
8238    TankContainerGeneric,
8239    /// Tierce
8240    ///
8241    /// rec21
8242    Tierce,
8243    /// Tank, rectangular
8244    ///
8245    /// rec21
8246    TankRectangular,
8247    /// Tub, with lid
8248    ///
8249    /// rec21
8250    TubWithLid,
8251    /// Tin
8252    ///
8253    /// rec21
8254    Tin,
8255    /// Tun
8256    ///
8257    /// rec21
8258    Tun,
8259    /// Trunk
8260    ///
8261    /// rec21
8262    Trunk,
8263    /// Truss
8264    ///
8265    /// rec21
8266    Truss,
8267    /// Bag, tote
8268    ///
8269    /// rec21
8270    BagTote,
8271    /// Tube
8272    ///
8273    /// rec21
8274    Tube,
8275    /// Tube, with nozzle
8276    ///
8277    /// rec21
8278    TubeWithNozzle,
8279    /// Pallet, triwall
8280    ///
8281    /// rec21
8282    PalletTriwall,
8283    /// Tank, cylindrical
8284    ///
8285    /// rec21
8286    TankCylindrical,
8287    /// Tubes, in bundle/bunch/truss
8288    ///
8289    /// rec21
8290    TubesInBundleBunchTruss,
8291    /// Uncaged
8292    ///
8293    /// rec21
8294    Uncaged,
8295    /// Unit
8296    ///
8297    /// rec21
8298    Unit,
8299    /// Vat
8300    ///
8301    /// rec21
8302    Vat,
8303    /// Bulk, gas (at 1031 mbar and 15°C)
8304    ///
8305    /// rec21
8306    BulkGasAt1031MbarAnd15C,
8307    /// Vial
8308    ///
8309    /// rec21
8310    Vial,
8311    /// Vanpack
8312    ///
8313    /// rec21
8314    Vanpack,
8315    /// Bulk, liquid
8316    ///
8317    /// rec21
8318    BulkLiquid,
8319    /// Vehicle
8320    ///
8321    /// rec21
8322    Vehicle,
8323    /// Bulk, solid, large particles (“nodules”)
8324    ///
8325    /// rec21
8326    BulkSolidLargeParticlesNodules,
8327    /// Vacuum-packed
8328    ///
8329    /// rec21
8330    VacuumPacked,
8331    /// Bulk, liquefied gas (at abnormal temperature/pressure)
8332    ///
8333    /// rec21
8334    BulkLiquefiedGasAtAbnormalTemperaturePressure,
8335    /// Bulk, solid, granular particles (“grains”)
8336    ///
8337    /// rec21
8338    BulkSolidGranularParticlesGrains,
8339    /// Bulk, scrap metal
8340    ///
8341    /// rec21
8342    BulkScrapMetal,
8343    /// Bulk, solid, fine particles (“powders”)
8344    ///
8345    /// rec21
8346    BulkSolidFineParticlesPowders,
8347    /// Intermediate bulk container
8348    ///
8349    /// rec21
8350    IntermediateBulkContainer,
8351    /// Wickerbottle
8352    ///
8353    /// rec21
8354    Wickerbottle,
8355    /// Intermediate bulk container, steel
8356    ///
8357    /// rec21
8358    IntermediateBulkContainerSteel,
8359    /// Intermediate bulk container, aluminium
8360    ///
8361    /// rec21
8362    IntermediateBulkContainerAluminium,
8363    /// Intermediate bulk container, metal
8364    ///
8365    /// rec21
8366    IntermediateBulkContainerMetal,
8367    /// Intermediate bulk container, steel, pressurised > 10 kpa
8368    ///
8369    /// rec21
8370    IntermediateBulkContainerSteelPressurised10Kpa,
8371    /// Intermediate bulk container, aluminium, pressurised > 10 kpa
8372    ///
8373    /// rec21
8374    IntermediateBulkContainerAluminiumPressurised10Kpa,
8375    /// Intermediate bulk container, metal, pressure 10 kpa
8376    ///
8377    /// rec21
8378    IntermediateBulkContainerMetalPressure10Kpa,
8379    /// Intermediate bulk container, steel, liquid
8380    ///
8381    /// rec21
8382    IntermediateBulkContainerSteelLiquid,
8383    /// Intermediate bulk container, aluminium, liquid
8384    ///
8385    /// rec21
8386    IntermediateBulkContainerAluminiumLiquid,
8387    /// Intermediate bulk container, metal, liquid
8388    ///
8389    /// rec21
8390    IntermediateBulkContainerMetalLiquid,
8391    /// Intermediate bulk container, woven plastic, without coat/liner
8392    ///
8393    /// rec21
8394    IntermediateBulkContainerWovenPlasticWithoutCoatLiner,
8395    /// Intermediate bulk container, woven plastic, coated
8396    ///
8397    /// rec21
8398    IntermediateBulkContainerWovenPlasticCoated,
8399    /// Intermediate bulk container, woven plastic, with liner
8400    ///
8401    /// rec21
8402    IntermediateBulkContainerWovenPlasticWithLiner,
8403    /// Intermediate bulk container, woven plastic, coated and liner
8404    ///
8405    /// rec21
8406    IntermediateBulkContainerWovenPlasticCoatedAndLiner,
8407    /// Intermediate bulk container, plastic film
8408    ///
8409    /// rec21
8410    IntermediateBulkContainerPlasticFilm,
8411    /// Intermediate bulk container, textile with out coat/liner
8412    ///
8413    /// rec21
8414    IntermediateBulkContainerTextileWithOutCoatLiner,
8415    /// Intermediate bulk container, natural wood, with inner liner
8416    ///
8417    /// rec21
8418    IntermediateBulkContainerNaturalWoodWithInnerLiner,
8419    /// Intermediate bulk container, textile, coated
8420    ///
8421    /// rec21
8422    IntermediateBulkContainerTextileCoated,
8423    /// Intermediate bulk container, textile, with liner
8424    ///
8425    /// rec21
8426    IntermediateBulkContainerTextileWithLiner,
8427    /// Intermediate bulk container, textile, coated and liner
8428    ///
8429    /// rec21
8430    IntermediateBulkContainerTextileCoatedAndLiner,
8431    /// Intermediate bulk container, plywood, with inner liner
8432    ///
8433    /// rec21
8434    IntermediateBulkContainerPlywoodWithInnerLiner,
8435    /// Intermediate bulk container, reconstituted wood, with inner liner
8436    ///
8437    /// rec21
8438    IntermediateBulkContainerReconstitutedWoodWithInnerLiner,
8439    /// Bag, woven plastic, without inner coat/liner
8440    ///
8441    /// rec21
8442    BagWovenPlasticWithoutInnerCoatLiner,
8443    /// Bag, woven plastic, sift proof
8444    ///
8445    /// rec21
8446    BagWovenPlasticSiftProof,
8447    /// Bag, woven plastic, water resistant
8448    ///
8449    /// rec21
8450    BagWovenPlasticWaterResistant,
8451    /// Bag, plastics film
8452    ///
8453    /// rec21
8454    BagPlasticsFilm,
8455    /// Bag, textile, without inner coat/liner
8456    ///
8457    /// rec21
8458    BagTextileWithoutInnerCoatLiner,
8459    /// Bag, textile, sift proof
8460    ///
8461    /// rec21
8462    BagTextileSiftProof,
8463    /// Bag, textile, water resistant
8464    ///
8465    /// rec21
8466    BagTextileWaterResistant,
8467    /// Bag, paper, multi-wall
8468    ///
8469    /// rec21
8470    BagPaperMultiWall,
8471    /// Bag, paper, multi-wall, water resistant
8472    ///
8473    /// rec21
8474    BagPaperMultiWallWaterResistant,
8475    /// Composite packaging, plastic receptacle in steel drum
8476    ///
8477    /// rec21
8478    CompositePackagingPlasticReceptacleInSteelDrum,
8479    /// Composite packaging, plastic receptacle in steel crate box
8480    ///
8481    /// rec21
8482    CompositePackagingPlasticReceptacleInSteelCrateBox,
8483    /// Composite packaging, plastic receptacle in aluminium drum
8484    ///
8485    /// rec21
8486    CompositePackagingPlasticReceptacleInAluminiumDrum,
8487    /// Composite packaging, plastic receptacle in aluminium crate
8488    ///
8489    /// rec21
8490    CompositePackagingPlasticReceptacleInAluminiumCrate,
8491    /// Composite packaging, plastic receptacle in wooden box
8492    ///
8493    /// rec21
8494    CompositePackagingPlasticReceptacleInWoodenBox,
8495    /// Composite packaging, plastic receptacle in plywood drum
8496    ///
8497    /// rec21
8498    CompositePackagingPlasticReceptacleInPlywoodDrum,
8499    /// Composite packaging, plastic receptacle in plywood box
8500    ///
8501    /// rec21
8502    CompositePackagingPlasticReceptacleInPlywoodBox,
8503    /// Composite packaging, plastic receptacle in fibre drum
8504    ///
8505    /// rec21
8506    CompositePackagingPlasticReceptacleInFibreDrum,
8507    /// Composite packaging, plastic receptacle in fibreboard box
8508    ///
8509    /// rec21
8510    CompositePackagingPlasticReceptacleInFibreboardBox,
8511    /// Composite packaging, plastic receptacle in plastic drum
8512    ///
8513    /// rec21
8514    CompositePackagingPlasticReceptacleInPlasticDrum,
8515    /// Composite packaging, plastic receptacle in solid plastic box
8516    ///
8517    /// rec21
8518    CompositePackagingPlasticReceptacleInSolidPlasticBox,
8519    /// Composite packaging, glass receptacle in steel drum
8520    ///
8521    /// rec21
8522    CompositePackagingGlassReceptacleInSteelDrum,
8523    /// Composite packaging, glass receptacle in steel crate box
8524    ///
8525    /// rec21
8526    CompositePackagingGlassReceptacleInSteelCrateBox,
8527    /// Composite packaging, glass receptacle in aluminium drum
8528    ///
8529    /// rec21
8530    CompositePackagingGlassReceptacleInAluminiumDrum,
8531    /// Composite packaging, glass receptacle in aluminium crate
8532    ///
8533    /// rec21
8534    CompositePackagingGlassReceptacleInAluminiumCrate,
8535    /// Composite packaging, glass receptacle in wooden box
8536    ///
8537    /// rec21
8538    CompositePackagingGlassReceptacleInWoodenBox,
8539    /// Composite packaging, glass receptacle in plywood drum
8540    ///
8541    /// rec21
8542    CompositePackagingGlassReceptacleInPlywoodDrum,
8543    /// Composite packaging, glass receptacle in wickerwork hamper
8544    ///
8545    /// rec21
8546    CompositePackagingGlassReceptacleInWickerworkHamper,
8547    /// Composite packaging, glass receptacle in fibre drum
8548    ///
8549    /// rec21
8550    CompositePackagingGlassReceptacleInFibreDrum,
8551    /// Composite packaging, glass receptacle in fibreboard box
8552    ///
8553    /// rec21
8554    CompositePackagingGlassReceptacleInFibreboardBox,
8555    /// Composite packaging, glass receptacle in expandable plastic pack
8556    ///
8557    /// rec21
8558    CompositePackagingGlassReceptacleInExpandablePlasticPack,
8559    /// Composite packaging, glass receptacle in solid plastic pack
8560    ///
8561    /// rec21
8562    CompositePackagingGlassReceptacleInSolidPlasticPack,
8563    /// Intermediate bulk container, paper, multi-wall
8564    ///
8565    /// rec21
8566    IntermediateBulkContainerPaperMultiWall,
8567    /// Bag, large
8568    ///
8569    /// rec21
8570    BagLarge,
8571    /// Intermediate bulk container, paper, multi-wall, water resistant
8572    ///
8573    /// rec21
8574    IntermediateBulkContainerPaperMultiWallWaterResistant,
8575    /// Intermediate bulk container, rigid plastic, with structural equipment, solids
8576    ///
8577    /// rec21
8578    IntermediateBulkContainerRigidPlasticWithStructuralEquipmentSolids,
8579    /// Intermediate bulk container, rigid plastic, freestanding, solids
8580    ///
8581    /// rec21
8582    IntermediateBulkContainerRigidPlasticFreestandingSolids,
8583    /// Intermediate bulk container, rigid plastic, with structural equipment, pressurised
8584    ///
8585    /// rec21
8586    IntermediateBulkContainerRigidPlasticWithStructuralEquipmentPressurised,
8587    /// Intermediate bulk container, rigid plastic, freestanding, pressurised
8588    ///
8589    /// rec21
8590    IntermediateBulkContainerRigidPlasticFreestandingPressurised,
8591    /// Intermediate bulk container, rigid plastic, with structural equipment, liquids
8592    ///
8593    /// rec21
8594    IntermediateBulkContainerRigidPlasticWithStructuralEquipmentLiquids,
8595    /// Intermediate bulk container, rigid plastic, freestanding, liquids
8596    ///
8597    /// rec21
8598    IntermediateBulkContainerRigidPlasticFreestandingLiquids,
8599    /// Intermediate bulk container, composite, rigid plastic, solids
8600    ///
8601    /// rec21
8602    IntermediateBulkContainerCompositeRigidPlasticSolids,
8603    /// Intermediate bulk container, composite, flexible plastic, solids
8604    ///
8605    /// rec21
8606    IntermediateBulkContainerCompositeFlexiblePlasticSolids,
8607    /// Intermediate bulk container, composite, rigid plastic, pressurised
8608    ///
8609    /// rec21
8610    IntermediateBulkContainerCompositeRigidPlasticPressurised,
8611    /// Intermediate bulk container, composite, flexible plastic, pressurised
8612    ///
8613    /// rec21
8614    IntermediateBulkContainerCompositeFlexiblePlasticPressurised,
8615    /// Intermediate bulk container, composite, rigid plastic, liquids
8616    ///
8617    /// rec21
8618    IntermediateBulkContainerCompositeRigidPlasticLiquids,
8619    /// Intermediate bulk container, composite, flexible plastic, liquids
8620    ///
8621    /// rec21
8622    IntermediateBulkContainerCompositeFlexiblePlasticLiquids,
8623    /// Intermediate bulk container, composite
8624    ///
8625    /// rec21
8626    IntermediateBulkContainerComposite,
8627    /// Intermediate bulk container, fibreboard
8628    ///
8629    /// rec21
8630    IntermediateBulkContainerFibreboard,
8631    /// Intermediate bulk container, flexible
8632    ///
8633    /// rec21
8634    IntermediateBulkContainerFlexible,
8635    /// Intermediate bulk container, metal, other than steel
8636    ///
8637    /// rec21
8638    IntermediateBulkContainerMetalOtherThanSteel,
8639    /// Intermediate bulk container, natural wood
8640    ///
8641    /// rec21
8642    IntermediateBulkContainerNaturalWood,
8643    /// Intermediate bulk container, plywood
8644    ///
8645    /// rec21
8646    IntermediateBulkContainerPlywood,
8647    /// Intermediate bulk container, reconstituted wood
8648    ///
8649    /// rec21
8650    IntermediateBulkContainerReconstitutedWood,
8651    /// Mutually defined
8652    ///
8653    /// rec21
8654    MutuallyDefined_Dup,
8655}
8656
8657impl std::fmt::Display for Unit {
8658    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
8659        write!(f, "{}", <Self as crate::Code>::code(*self))
8660    }
8661}
8662
8663impl std::str::FromStr for Unit {
8664    type Err = ();
8665    fn from_str(s: &str) -> Result<Self, Self::Err> {
8666        <Self as crate::FromCode>::from_code(s).ok_or(())
8667    }
8668}
8669
8670impl crate::Code for Unit {
8671    fn code(self) -> &'static str {
8672        match self {
8673            Unit::Group => "10",
8674            Unit::Outfit => "11",
8675            Unit::Ration => "13",
8676            Unit::Shot => "14",
8677            Unit::StickMilitary => "15",
8678            Unit::TwentyFootContainer => "20",
8679            Unit::FortyFootContainer => "21",
8680            Unit::DecilitrePerGram => "22",
8681            Unit::GramPerCubicCentimetre => "23",
8682            Unit::TheoreticalPound => "24",
8683            Unit::GramPerSquareCentimetre => "25",
8684            Unit::TheoreticalTon => "27",
8685            Unit::KilogramPerSquareMetre => "28",
8686            Unit::KilopascalSquareMetrePerGram => "33",
8687            Unit::KilopascalPerMillimetre => "34",
8688            Unit::MillilitrePerSquareCentimetreSecond => "35",
8689            Unit::OuncePerSquareFoot => "37",
8690            Unit::OuncePerSquareFootPer001inch => "38",
8691            Unit::MillilitrePerSecond => "40",
8692            Unit::MillilitrePerMinute => "41",
8693            Unit::Sitas => "56",
8694            Unit::Mesh => "57",
8695            Unit::NetKilogram => "58",
8696            Unit::PartPerMillion => "59",
8697            Unit::PercentWeight => "60",
8698            Unit::PartPerBillionUs => "61",
8699            Unit::Millipascal => "74",
8700            Unit::MilliInch => "77",
8701            Unit::PoundPerSquareInchAbsolute => "80",
8702            Unit::Henry => "81",
8703            Unit::FootPoundForce => "85",
8704            Unit::PoundPerCubicFoot => "87",
8705            Unit::Poise => "89",
8706            Unit::Stokes => "91",
8707            Unit::FixedRate => "1I",
8708            Unit::RadianPerSecond => "2A",
8709            Unit::RadianPerSecondSquared => "2B",
8710            Unit::Roentgen => "2C",
8711            Unit::VoltAc => "2G",
8712            Unit::VoltDc => "2H",
8713            Unit::BritishThermalUnitInternationalTablePerHour => "2I",
8714            Unit::CubicCentimetrePerSecond => "2J",
8715            Unit::CubicFootPerHour => "2K",
8716            Unit::CubicFootPerMinute => "2L",
8717            Unit::CentimetrePerSecond => "2M",
8718            Unit::Decibel => "2N",
8719            Unit::Kilobyte => "2P",
8720            Unit::Kilobecquerel => "2Q",
8721            Unit::Kilocurie => "2R",
8722            Unit::Megagram => "2U",
8723            Unit::MetrePerMinute => "2X",
8724            Unit::Milliroentgen => "2Y",
8725            Unit::Millivolt => "2Z",
8726            Unit::Megajoule => "3B",
8727            Unit::Manmonth => "3C",
8728            Unit::Centistokes => "4C",
8729            Unit::Microlitre => "4G",
8730            Unit::MicrometreMicron => "4H",
8731            Unit::Milliampere => "4K",
8732            Unit::Megabyte => "4L",
8733            Unit::MilligramPerHour => "4M",
8734            Unit::Megabecquerel => "4N",
8735            Unit::Microfarad => "4O",
8736            Unit::NewtonPerMetre => "4P",
8737            Unit::OunceInch => "4Q",
8738            Unit::OunceFoot => "4R",
8739            Unit::Picofarad => "4T",
8740            Unit::PoundPerHour => "4U",
8741            Unit::TonUsPerHour => "4W",
8742            Unit::KilolitrePerHour => "4X",
8743            Unit::BarrelUsPerMinute => "5A",
8744            Unit::Batch => "5B",
8745            Unit::MmscfDay => "5E",
8746            Unit::HydraulicHorsePower => "5J",
8747            Unit::AmpereSquareMetrePerJouleSecond => "A10",
8748            Unit::Angstrom => "A11",
8749            Unit::AstronomicalUnit => "A12",
8750            Unit::Attojoule => "A13",
8751            Unit::Barn => "A14",
8752            Unit::BarnPerElectronvolt => "A15",
8753            Unit::BarnPerSteradianElectronvolt => "A16",
8754            Unit::BarnPerSteradian => "A17",
8755            Unit::BecquerelPerKilogram => "A18",
8756            Unit::BecquerelPerCubicMetre => "A19",
8757            Unit::AmperePerCentimetre => "A2",
8758            Unit::BritishThermalUnitInternationalTablePerSecondSquareFootDegreeRankine => "A20",
8759            Unit::BritishThermalUnitInternationalTablePerPoundDegreeRankine => "A21",
8760            Unit::BritishThermalUnitInternationalTablePerSecondFootDegreeRankine => "A22",
8761            Unit::BritishThermalUnitInternationalTablePerHourSquareFootDegreeRankine => "A23",
8762            Unit::CandelaPerSquareMetre => "A24",
8763            Unit::CoulombMetre => "A26",
8764            Unit::CoulombMetreSquaredPerVolt => "A27",
8765            Unit::CoulombPerCubicCentimetre => "A28",
8766            Unit::CoulombPerCubicMetre => "A29",
8767            Unit::AmperePerMillimetre => "A3",
8768            Unit::CoulombPerCubicMillimetre => "A30",
8769            Unit::CoulombPerKilogramSecond => "A31",
8770            Unit::CoulombPerMole => "A32",
8771            Unit::CoulombPerSquareCentimetre => "A33",
8772            Unit::CoulombPerSquareMetre => "A34",
8773            Unit::CoulombPerSquareMillimetre => "A35",
8774            Unit::CubicCentimetrePerMole => "A36",
8775            Unit::CubicDecimetrePerMole => "A37",
8776            Unit::CubicMetrePerCoulomb => "A38",
8777            Unit::CubicMetrePerKilogram => "A39",
8778            Unit::AmperePerSquareCentimetre => "A4",
8779            Unit::CubicMetrePerMole => "A40",
8780            Unit::AmperePerSquareMetre => "A41",
8781            Unit::CuriePerKilogram => "A42",
8782            Unit::DeadweightTonnage => "A43",
8783            Unit::Decalitre => "A44",
8784            Unit::Decametre => "A45",
8785            Unit::Decitex => "A47",
8786            Unit::DegreeRankine => "A48",
8787            Unit::Denier => "A49",
8788            Unit::AmpereSquareMetre => "A5",
8789            Unit::Electronvolt => "A53",
8790            Unit::ElectronvoltPerMetre => "A54",
8791            Unit::ElectronvoltSquareMetre => "A55",
8792            Unit::ElectronvoltSquareMetrePerKilogram => "A56",
8793            Unit::_8PartCloudCover => "A59",
8794            Unit::AmperePerSquareMetreKelvinSquared => "A6",
8795            Unit::Exajoule => "A68",
8796            Unit::FaradPerMetre => "A69",
8797            Unit::AmperePerSquareMillimetre => "A7",
8798            Unit::Femtojoule => "A70",
8799            Unit::Femtometre => "A71",
8800            Unit::FootPerSecondSquared => "A73",
8801            Unit::FootPoundForcePerSecond => "A74",
8802            Unit::FreightTon => "A75",
8803            Unit::Gal => "A76",
8804            Unit::AmpereSecond => "A8",
8805            Unit::GigacoulombPerCubicMetre => "A84",
8806            Unit::Gigaelectronvolt => "A85",
8807            Unit::Gigahertz => "A86",
8808            Unit::Gigaohm => "A87",
8809            Unit::GigaohmMetre => "A88",
8810            Unit::Gigapascal => "A89",
8811            Unit::Rate => "A9",
8812            Unit::Gigawatt => "A90",
8813            Unit::Gon => "A91",
8814            Unit::GramPerCubicMetre => "A93",
8815            Unit::GramPerMole => "A94",
8816            Unit::Gray => "A95",
8817            Unit::GrayPerSecond => "A96",
8818            Unit::Hectopascal => "A97",
8819            Unit::HenryPerMetre => "A98",
8820            Unit::Bit => "A99",
8821            Unit::Ball => "AA",
8822            Unit::BulkPack => "AB",
8823            Unit::Acre => "ACR",
8824            Unit::Activity => "ACT",
8825            Unit::Byte => "AD",
8826            Unit::AmperePerMetre => "AE",
8827            Unit::AdditionalMinute => "AH",
8828            Unit::AverageMinutePerCall => "AI",
8829            Unit::Fathom => "AK",
8830            Unit::AccessLine => "AL",
8831            Unit::AmpereHour => "AMH",
8832            Unit::Ampere => "AMP",
8833            Unit::Year => "ANN",
8834            Unit::TroyOunceOrApothecaryOunce => "APZ",
8835            Unit::AntiHemophilicFactorAhfUnit => "AQ",
8836            Unit::Assortment => "AS",
8837            Unit::AlcoholicStrengthByMass => "ASM",
8838            Unit::AlcoholicStrengthByVolume => "ASU",
8839            Unit::StandardAtmosphere => "ATM",
8840            Unit::AmericanWireGauge => "AWG",
8841            Unit::Assembly => "AY",
8842            Unit::BritishThermalUnitInternationalTablePerPound => "AZ",
8843            Unit::BarrelUsPerDay => "B1",
8844            Unit::BitPerSecond => "B10",
8845            Unit::JoulePerKilogramKelvin => "B11",
8846            Unit::JoulePerMetre => "B12",
8847            Unit::JoulePerSquareMetre => "B13",
8848            Unit::JoulePerMetreToFourthPower => "B14",
8849            Unit::JoulePerMole => "B15",
8850            Unit::JoulePerMoleKelvin => "B16",
8851            Unit::Credit => "B17",
8852            Unit::JouleSecond => "B18",
8853            Unit::Digit => "B19",
8854            Unit::JouleSquareMetrePerKilogram => "B20",
8855            Unit::KelvinPerWatt => "B21",
8856            Unit::Kiloampere => "B22",
8857            Unit::KiloamperePerSquareMetre => "B23",
8858            Unit::KiloamperePerMetre => "B24",
8859            Unit::KilobecquerelPerKilogram => "B25",
8860            Unit::Kilocoulomb => "B26",
8861            Unit::KilocoulombPerCubicMetre => "B27",
8862            Unit::KilocoulombPerSquareMetre => "B28",
8863            Unit::Kiloelectronvolt => "B29",
8864            Unit::BattingPound => "B3",
8865            Unit::Gibibit => "B30",
8866            Unit::KilogramMetrePerSecond => "B31",
8867            Unit::KilogramMetreSquared => "B32",
8868            Unit::KilogramMetreSquaredPerSecond => "B33",
8869            Unit::KilogramPerCubicDecimetre => "B34",
8870            Unit::KilogramPerLitre => "B35",
8871            Unit::BarrelImperial => "B4",
8872            Unit::KilojoulePerKelvin => "B41",
8873            Unit::KilojoulePerKilogram => "B42",
8874            Unit::KilojoulePerKilogramKelvin => "B43",
8875            Unit::KilojoulePerMole => "B44",
8876            Unit::Kilomole => "B45",
8877            Unit::KilomolePerCubicMetre => "B46",
8878            Unit::Kilonewton => "B47",
8879            Unit::KilonewtonMetre => "B48",
8880            Unit::Kiloohm => "B49",
8881            Unit::KiloohmMetre => "B50",
8882            Unit::Kilosecond => "B52",
8883            Unit::Kilosiemens => "B53",
8884            Unit::KilosiemensPerMetre => "B54",
8885            Unit::KilovoltPerMetre => "B55",
8886            Unit::KiloweberPerMetre => "B56",
8887            Unit::LightYear => "B57",
8888            Unit::LitrePerMole => "B58",
8889            Unit::LumenHour => "B59",
8890            Unit::LumenPerSquareMetre => "B60",
8891            Unit::LumenPerWatt => "B61",
8892            Unit::LumenSecond => "B62",
8893            Unit::LuxHour => "B63",
8894            Unit::LuxSecond => "B64",
8895            Unit::MegaamperePerSquareMetre => "B66",
8896            Unit::MegabecquerelPerKilogram => "B67",
8897            Unit::Gigabit => "B68",
8898            Unit::MegacoulombPerCubicMetre => "B69",
8899            Unit::Cycle => "B7",
8900            Unit::MegacoulombPerSquareMetre => "B70",
8901            Unit::Megaelectronvolt => "B71",
8902            Unit::MegagramPerCubicMetre => "B72",
8903            Unit::Meganewton => "B73",
8904            Unit::MeganewtonMetre => "B74",
8905            Unit::Megaohm => "B75",
8906            Unit::MegaohmMetre => "B76",
8907            Unit::MegasiemensPerMetre => "B77",
8908            Unit::Megavolt => "B78",
8909            Unit::MegavoltPerMetre => "B79",
8910            Unit::JoulePerCubicMetre => "B8",
8911            Unit::GigabitPerSecond => "B80",
8912            Unit::ReciprocalMetreSquaredReciprocalSecond => "B81",
8913            Unit::InchPerLinearFoot => "B82",
8914            Unit::MetreToFourthPower => "B83",
8915            Unit::Microampere => "B84",
8916            Unit::Microbar => "B85",
8917            Unit::Microcoulomb => "B86",
8918            Unit::MicrocoulombPerCubicMetre => "B87",
8919            Unit::MicrocoulombPerSquareMetre => "B88",
8920            Unit::MicrofaradPerMetre => "B89",
8921            Unit::Microhenry => "B90",
8922            Unit::MicrohenryPerMetre => "B91",
8923            Unit::Micronewton => "B92",
8924            Unit::MicronewtonMetre => "B93",
8925            Unit::Microohm => "B94",
8926            Unit::MicroohmMetre => "B95",
8927            Unit::Micropascal => "B96",
8928            Unit::Microradian => "B97",
8929            Unit::Microsecond => "B98",
8930            Unit::Microsiemens => "B99",
8931            Unit::BarUnitPressure => "BAR",
8932            Unit::BaseBox => "BB",
8933            Unit::BoardFoot => "BFT",
8934            Unit::BrakeHorsePower => "BHP",
8935            Unit::BillionEur => "BIL",
8936            Unit::DryBarrelUs => "BLD",
8937            Unit::BarrelUs => "BLL",
8938            Unit::HundredBoardFoot => "BP",
8939            Unit::BeatsPerMinute => "BPM",
8940            Unit::Becquerel => "BQL",
8941            Unit::BritishThermalUnitInternationalTable => "BTU",
8942            Unit::BushelUs => "BUA",
8943            Unit::BushelUk => "BUI",
8944            Unit::Call => "C0",
8945            Unit::Millifarad => "C10",
8946            Unit::Milligal => "C11",
8947            Unit::MilligramPerMetre => "C12",
8948            Unit::Milligray => "C13",
8949            Unit::Millihenry => "C14",
8950            Unit::Millijoule => "C15",
8951            Unit::MillimetrePerSecond => "C16",
8952            Unit::MillimetreSquaredPerSecond => "C17",
8953            Unit::Millimole => "C18",
8954            Unit::MolePerKilogram => "C19",
8955            Unit::Millinewton => "C20",
8956            Unit::Kibibit => "C21",
8957            Unit::MillinewtonPerMetre => "C22",
8958            Unit::MilliohmMetre => "C23",
8959            Unit::MillipascalSecond => "C24",
8960            Unit::Milliradian => "C25",
8961            Unit::Millisecond => "C26",
8962            Unit::Millisiemens => "C27",
8963            Unit::Millisievert => "C28",
8964            Unit::Millitesla => "C29",
8965            Unit::MicrovoltPerMetre => "C3",
8966            Unit::MillivoltPerMetre => "C30",
8967            Unit::Milliwatt => "C31",
8968            Unit::MilliwattPerSquareMetre => "C32",
8969            Unit::Milliweber => "C33",
8970            Unit::Mole => "C34",
8971            Unit::MolePerCubicDecimetre => "C35",
8972            Unit::MolePerCubicMetre => "C36",
8973            Unit::Kilobit => "C37",
8974            Unit::MolePerLitre => "C38",
8975            Unit::Nanoampere => "C39",
8976            Unit::Nanocoulomb => "C40",
8977            Unit::Nanofarad => "C41",
8978            Unit::NanofaradPerMetre => "C42",
8979            Unit::Nanohenry => "C43",
8980            Unit::NanohenryPerMetre => "C44",
8981            Unit::Nanometre => "C45",
8982            Unit::NanoohmMetre => "C46",
8983            Unit::Nanosecond => "C47",
8984            Unit::Nanotesla => "C48",
8985            Unit::Nanowatt => "C49",
8986            Unit::Neper => "C50",
8987            Unit::NeperPerSecond => "C51",
8988            Unit::Picometre => "C52",
8989            Unit::NewtonMetreSecond => "C53",
8990            Unit::NewtonMetreSquaredPerKilogramSquared => "C54",
8991            Unit::NewtonPerSquareMetre => "C55",
8992            Unit::NewtonPerSquareMillimetre => "C56",
8993            Unit::NewtonSecond => "C57",
8994            Unit::NewtonSecondPerMetre => "C58",
8995            Unit::Octave => "C59",
8996            Unit::OhmCentimetre => "C60",
8997            Unit::OhmMetre => "C61",
8998            Unit::One => "C62",
8999            Unit::Parsec => "C63",
9000            Unit::PascalPerKelvin => "C64",
9001            Unit::PascalSecond => "C65",
9002            Unit::PascalSecondPerCubicMetre => "C66",
9003            Unit::PascalSecondPerMetre => "C67",
9004            Unit::Petajoule => "C68",
9005            Unit::Phon => "C69",
9006            Unit::Centipoise => "C7",
9007            Unit::Picoampere => "C70",
9008            Unit::Picocoulomb => "C71",
9009            Unit::PicofaradPerMetre => "C72",
9010            Unit::Picohenry => "C73",
9011            Unit::KilobitPerSecond => "C74",
9012            Unit::Picowatt => "C75",
9013            Unit::PicowattPerSquareMetre => "C76",
9014            Unit::PoundForce => "C78",
9015            Unit::KilovoltAmpereHour => "C79",
9016            Unit::MillicoulombPerKilogram => "C8",
9017            Unit::Rad => "C80",
9018            Unit::Radian => "C81",
9019            Unit::RadianSquareMetrePerMole => "C82",
9020            Unit::RadianSquareMetrePerKilogram => "C83",
9021            Unit::RadianPerMetre => "C84",
9022            Unit::ReciprocalAngstrom => "C85",
9023            Unit::ReciprocalCubicMetre => "C86",
9024            Unit::ReciprocalCubicMetrePerSecond => "C87",
9025            Unit::ReciprocalElectronVoltPerCubicMetre => "C88",
9026            Unit::ReciprocalHenry => "C89",
9027            Unit::CoilGroup => "C9",
9028            Unit::ReciprocalJoulePerCubicMetre => "C90",
9029            Unit::ReciprocalKelvinOrKelvinToPowerMinusOne => "C91",
9030            Unit::ReciprocalMetre => "C92",
9031            Unit::ReciprocalSquareMetre => "C93",
9032            Unit::ReciprocalMinute => "C94",
9033            Unit::ReciprocalMole => "C95",
9034            Unit::ReciprocalPascalOrPascalToPowerMinusOne => "C96",
9035            Unit::ReciprocalSecond => "C97",
9036            Unit::ReciprocalSecondPerMetreSquared => "C99",
9037            Unit::CarryingCapacityInMetricTon => "CCT",
9038            Unit::Candela => "CDL",
9039            Unit::DegreeCelsius => "CEL",
9040            Unit::Hundred => "CEN",
9041            Unit::Card => "CG",
9042            Unit::Centigram => "CGM",
9043            Unit::CoulombPerKilogram => "CKG",
9044            Unit::HundredLeave => "CLF",
9045            Unit::Centilitre => "CLT",
9046            Unit::SquareCentimetre => "CMK",
9047            Unit::CubicCentimetre => "CMQ",
9048            Unit::Centimetre => "CMT",
9049            Unit::HundredPack => "CNP",
9050            Unit::CentalUk => "CNT",
9051            Unit::Coulomb => "COU",
9052            Unit::ContentGram => "CTG",
9053            Unit::MetricCarat => "CTM",
9054            Unit::ContentTonMetric => "CTN",
9055            Unit::Curie => "CUR",
9056            Unit::HundredPoundCwtHundredWeightUs => "CWA",
9057            Unit::HundredWeightUk => "CWI",
9058            Unit::KilowattHourPerHour => "D03",
9059            Unit::LotUnitWeight => "D04",
9060            Unit::ReciprocalSecondPerSteradian => "D1",
9061            Unit::SiemensPerMetre => "D10",
9062            Unit::Mebibit => "D11",
9063            Unit::SiemensSquareMetrePerMole => "D12",
9064            Unit::Sievert => "D13",
9065            Unit::Sone => "D15",
9066            Unit::SquareCentimetrePerErg => "D16",
9067            Unit::SquareCentimetrePerSteradianErg => "D17",
9068            Unit::MetreKelvin => "D18",
9069            Unit::SquareMetreKelvinPerWatt => "D19",
9070            Unit::ReciprocalSecondPerSteradianMetreSquared => "D2",
9071            Unit::SquareMetrePerJoule => "D20",
9072            Unit::SquareMetrePerKilogram => "D21",
9073            Unit::SquareMetrePerMole => "D22",
9074            Unit::PenGramProtein => "D23",
9075            Unit::SquareMetrePerSteradian => "D24",
9076            Unit::SquareMetrePerSteradianJoule => "D25",
9077            Unit::SquareMetrePerVoltSecond => "D26",
9078            Unit::Steradian => "D27",
9079            Unit::Terahertz => "D29",
9080            Unit::Terajoule => "D30",
9081            Unit::Terawatt => "D31",
9082            Unit::TerawattHour => "D32",
9083            Unit::Tesla => "D33",
9084            Unit::Tex => "D34",
9085            Unit::Megabit => "D36",
9086            Unit::TonnePerCubicMetre => "D41",
9087            Unit::TropicalYear => "D42",
9088            Unit::UnifiedAtomicMassUnit => "D43",
9089            Unit::Var => "D44",
9090            Unit::VoltSquaredPerKelvinSquared => "D45",
9091            Unit::VoltAmpere => "D46",
9092            Unit::VoltPerCentimetre => "D47",
9093            Unit::VoltPerKelvin => "D48",
9094            Unit::MillivoltPerKelvin => "D49",
9095            Unit::KilogramPerSquareCentimetre => "D5",
9096            Unit::VoltPerMetre => "D50",
9097            Unit::VoltPerMillimetre => "D51",
9098            Unit::WattPerKelvin => "D52",
9099            Unit::WattPerMetreKelvin => "D53",
9100            Unit::WattPerSquareMetre => "D54",
9101            Unit::WattPerSquareMetreKelvin => "D55",
9102            Unit::WattPerSquareMetreKelvinToFourthPower => "D56",
9103            Unit::WattPerSteradian => "D57",
9104            Unit::WattPerSteradianSquareMetre => "D58",
9105            Unit::WeberPerMetre => "D59",
9106            Unit::RoentgenPerSecond => "D6",
9107            Unit::WeberPerMillimetre => "D60",
9108            Unit::MinuteUnitAngle => "D61",
9109            Unit::SecondUnitAngle => "D62",
9110            Unit::Book => "D63",
9111            Unit::Round => "D65",
9112            Unit::NumberWords => "D68",
9113            Unit::InchToFourthPower => "D69",
9114            Unit::JouleSquareMetre => "D73",
9115            Unit::KilogramPerMole => "D74",
9116            Unit::Megacoulomb => "D77",
9117            Unit::MegajoulePerSecond => "D78",
9118            Unit::Microwatt => "D80",
9119            Unit::Microtesla => "D81",
9120            Unit::Microvolt => "D82",
9121            Unit::MillinewtonMetre => "D83",
9122            Unit::MicrowattPerSquareMetre => "D85",
9123            Unit::Millicoulomb => "D86",
9124            Unit::MillimolePerKilogram => "D87",
9125            Unit::MillicoulombPerCubicMetre => "D88",
9126            Unit::MillicoulombPerSquareMetre => "D89",
9127            Unit::Rem => "D91",
9128            Unit::SecondPerCubicMetre => "D93",
9129            Unit::SecondPerCubicMetreRadian => "D94",
9130            Unit::JoulePerGram => "D95",
9131            Unit::Decare => "DAA",
9132            Unit::TenDay => "DAD",
9133            Unit::Day => "DAY",
9134            Unit::DryPound => "DB",
9135            Unit::DecibelMilliwatts => "DBM",
9136            Unit::DecibelWatt => "DBW",
9137            Unit::DegreeUnitAngle => "DD",
9138            Unit::Decade => "DEC",
9139            Unit::Decigram => "DG",
9140            Unit::Decagram => "DJ",
9141            Unit::Decilitre => "DLT",
9142            Unit::CubicDecametre => "DMA",
9143            Unit::SquareDecimetre => "DMK",
9144            Unit::StandardKilolitre => "DMO",
9145            Unit::CubicDecimetre => "DMQ",
9146            Unit::Decimetre => "DMT",
9147            Unit::DecinewtonMetre => "DN",
9148            Unit::DozenPiece => "DPC",
9149            Unit::DozenPair => "DPR",
9150            Unit::DisplacementTonnage => "DPT",
9151            Unit::DramUs => "DRA",
9152            Unit::DramUk => "DRI",
9153            Unit::DozenRoll => "DRL",
9154            Unit::DryTon => "DT",
9155            Unit::Decitonne => "DTN",
9156            Unit::Pennyweight => "DWT",
9157            Unit::Dozen => "DZN",
9158            Unit::DozenPack => "DZP",
9159            Unit::NewtonPerSquareCentimetre => "E01",
9160            Unit::MegawattHourPerHour => "E07",
9161            Unit::MegawattPerHertz => "E08",
9162            Unit::MilliampereHour => "E09",
9163            Unit::DegreeDay => "E10",
9164            Unit::Mille => "E12",
9165            Unit::KilocalorieInternationalTable => "E14",
9166            Unit::KilocalorieThermochemicalPerHour => "E15",
9167            Unit::MillionBtuItPerHour => "E16",
9168            Unit::CubicFootPerSecond => "E17",
9169            Unit::TonnePerHour => "E18",
9170            Unit::Ping => "E19",
9171            Unit::MegabitPerSecond => "E20",
9172            Unit::Shares => "E21",
9173            Unit::Teu => "E22",
9174            Unit::Tyre => "E23",
9175            Unit::ActiveUnit => "E25",
9176            Unit::Dose => "E27",
9177            Unit::AirDryTon => "E28",
9178            Unit::Strand => "E30",
9179            Unit::SquareMetrePerLitre => "E31",
9180            Unit::LitrePerHour => "E32",
9181            Unit::FootPerThousand => "E33",
9182            Unit::Gigabyte => "E34",
9183            Unit::Terabyte => "E35",
9184            Unit::Petabyte => "E36",
9185            Unit::Pixel => "E37",
9186            Unit::Megapixel => "E38",
9187            Unit::DotsPerInch => "E39",
9188            Unit::GrossKilogram => "E4",
9189            Unit::PartPerHundredThousand => "E40",
9190            Unit::KilogramForcePerSquareMillimetre => "E41",
9191            Unit::KilogramForcePerSquareCentimetre => "E42",
9192            Unit::JoulePerSquareCentimetre => "E43",
9193            Unit::KilogramForceMetrePerSquareCentimetre => "E44",
9194            Unit::Milliohm => "E45",
9195            Unit::KilowattHourPerCubicMetre => "E46",
9196            Unit::KilowattHourPerKelvin => "E47",
9197            Unit::ServiceUnit => "E48",
9198            Unit::WorkingDay => "E49",
9199            Unit::AccountingUnit => "E50",
9200            Unit::Job => "E51",
9201            Unit::RunFoot => "E52",
9202            Unit::Test => "E53",
9203            Unit::Trip => "E54",
9204            Unit::Use => "E55",
9205            Unit::Well => "E56",
9206            Unit::Zone => "E57",
9207            Unit::ExabitPerSecond => "E58",
9208            Unit::Exbibyte => "E59",
9209            Unit::Pebibyte => "E60",
9210            Unit::Tebibyte => "E61",
9211            Unit::Gibibyte => "E62",
9212            Unit::Mebibyte => "E63",
9213            Unit::Kibibyte => "E64",
9214            Unit::ExbibitPerMetre => "E65",
9215            Unit::ExbibitPerSquareMetre => "E66",
9216            Unit::ExbibitPerCubicMetre => "E67",
9217            Unit::GigabytePerSecond => "E68",
9218            Unit::GibibitPerMetre => "E69",
9219            Unit::GibibitPerSquareMetre => "E70",
9220            Unit::GibibitPerCubicMetre => "E71",
9221            Unit::KibibitPerMetre => "E72",
9222            Unit::KibibitPerSquareMetre => "E73",
9223            Unit::KibibitPerCubicMetre => "E74",
9224            Unit::MebibitPerMetre => "E75",
9225            Unit::MebibitPerSquareMetre => "E76",
9226            Unit::MebibitPerCubicMetre => "E77",
9227            Unit::Petabit => "E78",
9228            Unit::PetabitPerSecond => "E79",
9229            Unit::PebibitPerMetre => "E80",
9230            Unit::PebibitPerSquareMetre => "E81",
9231            Unit::PebibitPerCubicMetre => "E82",
9232            Unit::Terabit => "E83",
9233            Unit::TerabitPerSecond => "E84",
9234            Unit::TebibitPerMetre => "E85",
9235            Unit::TebibitPerCubicMetre => "E86",
9236            Unit::TebibitPerSquareMetre => "E87",
9237            Unit::BitPerMetre => "E88",
9238            Unit::BitPerSquareMetre => "E89",
9239            Unit::ReciprocalCentimetre => "E90",
9240            Unit::ReciprocalDay => "E91",
9241            Unit::CubicDecimetrePerHour => "E92",
9242            Unit::KilogramPerHour => "E93",
9243            Unit::KilomolePerSecond => "E94",
9244            Unit::MolePerSecond => "E95",
9245            Unit::DegreePerSecond => "E96",
9246            Unit::MillimetrePerDegreeCelciusMetre => "E97",
9247            Unit::DegreeCelsiusPerKelvin => "E98",
9248            Unit::HectopascalPerBar => "E99",
9249            Unit::Each => "EA",
9250            Unit::ElectronicMailBox => "EB",
9251            Unit::EquivalentGallon => "EQ",
9252            Unit::BitPerCubicMetre => "F01",
9253            Unit::KelvinPerKelvin => "F02",
9254            Unit::KilopascalPerBar => "F03",
9255            Unit::MillibarPerBar => "F04",
9256            Unit::MegapascalPerBar => "F05",
9257            Unit::PoisePerBar => "F06",
9258            Unit::PascalPerBar => "F07",
9259            Unit::MilliamperePerInch => "F08",
9260            Unit::KelvinPerHour => "F10",
9261            Unit::KelvinPerMinute => "F11",
9262            Unit::KelvinPerSecond => "F12",
9263            Unit::Slug => "F13",
9264            Unit::GramPerKelvin => "F14",
9265            Unit::KilogramPerKelvin => "F15",
9266            Unit::MilligramPerKelvin => "F16",
9267            Unit::PoundForcePerFoot => "F17",
9268            Unit::KilogramSquareCentimetre => "F18",
9269            Unit::KilogramSquareMillimetre => "F19",
9270            Unit::PoundInchSquared => "F20",
9271            Unit::PoundForceInch => "F21",
9272            Unit::PoundForceFootPerAmpere => "F22",
9273            Unit::GramPerCubicDecimetre => "F23",
9274            Unit::KilogramPerKilomol => "F24",
9275            Unit::GramPerHertz => "F25",
9276            Unit::GramPerDay => "F26",
9277            Unit::GramPerHour => "F27",
9278            Unit::GramPerMinute => "F28",
9279            Unit::GramPerSecond => "F29",
9280            Unit::KilogramPerDay => "F30",
9281            Unit::KilogramPerMinute => "F31",
9282            Unit::MilligramPerDay => "F32",
9283            Unit::MilligramPerMinute => "F33",
9284            Unit::MilligramPerSecond => "F34",
9285            Unit::GramPerDayKelvin => "F35",
9286            Unit::GramPerHourKelvin => "F36",
9287            Unit::GramPerMinuteKelvin => "F37",
9288            Unit::GramPerSecondKelvin => "F38",
9289            Unit::KilogramPerDayKelvin => "F39",
9290            Unit::KilogramPerHourKelvin => "F40",
9291            Unit::KilogramPerMinuteKelvin => "F41",
9292            Unit::KilogramPerSecondKelvin => "F42",
9293            Unit::MilligramPerDayKelvin => "F43",
9294            Unit::MilligramPerHourKelvin => "F44",
9295            Unit::MilligramPerMinuteKelvin => "F45",
9296            Unit::MilligramPerSecondKelvin => "F46",
9297            Unit::NewtonPerMillimetre => "F47",
9298            Unit::PoundForcePerInch => "F48",
9299            Unit::RodUnitDistance => "F49",
9300            Unit::MicrometrePerKelvin => "F50",
9301            Unit::CentimetrePerKelvin => "F51",
9302            Unit::MetrePerKelvin => "F52",
9303            Unit::MillimetrePerKelvin => "F53",
9304            Unit::MilliohmPerMetre => "F54",
9305            Unit::OhmPerMileStatuteMile => "F55",
9306            Unit::OhmPerKilometre => "F56",
9307            Unit::MilliamperePerPoundForcePerSquareInch => "F57",
9308            Unit::ReciprocalBar => "F58",
9309            Unit::MilliamperePerBar => "F59",
9310            Unit::DegreeCelsiusPerBar => "F60",
9311            Unit::KelvinPerBar => "F61",
9312            Unit::GramPerDayBar => "F62",
9313            Unit::GramPerHourBar => "F63",
9314            Unit::GramPerMinuteBar => "F64",
9315            Unit::GramPerSecondBar => "F65",
9316            Unit::KilogramPerDayBar => "F66",
9317            Unit::KilogramPerHourBar => "F67",
9318            Unit::KilogramPerMinuteBar => "F68",
9319            Unit::KilogramPerSecondBar => "F69",
9320            Unit::MilligramPerDayBar => "F70",
9321            Unit::MilligramPerHourBar => "F71",
9322            Unit::MilligramPerMinuteBar => "F72",
9323            Unit::MilligramPerSecondBar => "F73",
9324            Unit::GramPerBar => "F74",
9325            Unit::MilligramPerBar => "F75",
9326            Unit::MilliamperePerMillimetre => "F76",
9327            Unit::PascalSecondPerKelvin => "F77",
9328            Unit::InchWater => "F78",
9329            Unit::InchMercury => "F79",
9330            Unit::WaterHorsePower => "F80",
9331            Unit::BarPerKelvin => "F81",
9332            Unit::HectopascalPerKelvin => "F82",
9333            Unit::KilopascalPerKelvin => "F83",
9334            Unit::MillibarPerKelvin => "F84",
9335            Unit::MegapascalPerKelvin => "F85",
9336            Unit::PoisePerKelvin => "F86",
9337            Unit::VoltPerLitreMinute => "F87",
9338            Unit::NewtonCentimetre => "F88",
9339            Unit::NewtonMetrePerDegree => "F89",
9340            Unit::NewtonMetrePerAmpere => "F90",
9341            Unit::BarLitrePerSecond => "F91",
9342            Unit::BarCubicMetrePerSecond => "F92",
9343            Unit::HectopascalLitrePerSecond => "F93",
9344            Unit::HectopascalCubicMetrePerSecond => "F94",
9345            Unit::MillibarLitrePerSecond => "F95",
9346            Unit::MillibarCubicMetrePerSecond => "F96",
9347            Unit::MegapascalLitrePerSecond => "F97",
9348            Unit::MegapascalCubicMetrePerSecond => "F98",
9349            Unit::PascalLitrePerSecond => "F99",
9350            Unit::DegreeFahrenheit => "FAH",
9351            Unit::Farad => "FAR",
9352            Unit::FibreMetre => "FBM",
9353            Unit::ThousandCubicFoot => "FC",
9354            Unit::HundredCubicMetre => "FF",
9355            Unit::Micromole => "FH",
9356            Unit::FailuresInTime => "FIT",
9357            Unit::FlakeTon => "FL",
9358            Unit::FormazinNephelometricUnit => "FNU",
9359            Unit::Foot => "FOT",
9360            Unit::PoundPerSquareFoot => "FP",
9361            Unit::FootPerMinute => "FR",
9362            Unit::FootPerSecond => "FS",
9363            Unit::SquareFoot => "FTK",
9364            Unit::CubicFoot => "FTQ",
9365            Unit::PascalCubicMetrePerSecond => "G01",
9366            Unit::CentimetrePerBar => "G04",
9367            Unit::MetrePerBar => "G05",
9368            Unit::MillimetrePerBar => "G06",
9369            Unit::SquareInchPerSecond => "G08",
9370            Unit::SquareMetrePerSecondKelvin => "G09",
9371            Unit::StokesPerKelvin => "G10",
9372            Unit::GramPerCubicCentimetreBar => "G11",
9373            Unit::GramPerCubicDecimetreBar => "G12",
9374            Unit::GramPerLitreBar => "G13",
9375            Unit::GramPerCubicMetreBar => "G14",
9376            Unit::GramPerMillilitreBar => "G15",
9377            Unit::KilogramPerCubicCentimetreBar => "G16",
9378            Unit::KilogramPerLitreBar => "G17",
9379            Unit::KilogramPerCubicMetreBar => "G18",
9380            Unit::NewtonMetrePerKilogram => "G19",
9381            Unit::UsGallonPerMinute => "G2",
9382            Unit::PoundForceFootPerPound => "G20",
9383            Unit::CupUnitVolume => "G21",
9384            Unit::Peck => "G23",
9385            Unit::TablespoonUs => "G24",
9386            Unit::TeaspoonUs => "G25",
9387            Unit::Stere => "G26",
9388            Unit::CubicCentimetrePerKelvin => "G27",
9389            Unit::LitrePerKelvin => "G28",
9390            Unit::CubicMetrePerKelvin => "G29",
9391            Unit::ImperialGallonPerMinute => "G3",
9392            Unit::MillilitrePerKelvin => "G30",
9393            Unit::KilogramPerCubicCentimetre => "G31",
9394            Unit::OunceAvoirdupoisPerCubicYard => "G32",
9395            Unit::GramPerCubicCentimetreKelvin => "G33",
9396            Unit::GramPerCubicDecimetreKelvin => "G34",
9397            Unit::GramPerLitreKelvin => "G35",
9398            Unit::GramPerCubicMetreKelvin => "G36",
9399            Unit::GramPerMillilitreKelvin => "G37",
9400            Unit::KilogramPerCubicCentimetreKelvin => "G38",
9401            Unit::KilogramPerLitreKelvin => "G39",
9402            Unit::KilogramPerCubicMetreKelvin => "G40",
9403            Unit::SquareMetrePerSecondBar => "G41",
9404            Unit::MicrosiemensPerCentimetre => "G42",
9405            Unit::MicrosiemensPerMetre => "G43",
9406            Unit::NanosiemensPerCentimetre => "G44",
9407            Unit::NanosiemensPerMetre => "G45",
9408            Unit::StokesPerBar => "G46",
9409            Unit::CubicCentimetrePerDay => "G47",
9410            Unit::CubicCentimetrePerHour => "G48",
9411            Unit::CubicCentimetrePerMinute => "G49",
9412            Unit::GallonUsPerHour => "G50",
9413            Unit::LitrePerSecond => "G51",
9414            Unit::CubicMetrePerDay => "G52",
9415            Unit::CubicMetrePerMinute => "G53",
9416            Unit::MillilitrePerDay => "G54",
9417            Unit::MillilitrePerHour => "G55",
9418            Unit::CubicInchPerHour => "G56",
9419            Unit::CubicInchPerMinute => "G57",
9420            Unit::CubicInchPerSecond => "G58",
9421            Unit::MilliamperePerLitreMinute => "G59",
9422            Unit::VoltPerBar => "G60",
9423            Unit::CubicCentimetrePerDayKelvin => "G61",
9424            Unit::CubicCentimetrePerHourKelvin => "G62",
9425            Unit::CubicCentimetrePerMinuteKelvin => "G63",
9426            Unit::CubicCentimetrePerSecondKelvin => "G64",
9427            Unit::LitrePerDayKelvin => "G65",
9428            Unit::LitrePerHourKelvin => "G66",
9429            Unit::LitrePerMinuteKelvin => "G67",
9430            Unit::LitrePerSecondKelvin => "G68",
9431            Unit::CubicMetrePerDayKelvin => "G69",
9432            Unit::CubicMetrePerHourKelvin => "G70",
9433            Unit::CubicMetrePerMinuteKelvin => "G71",
9434            Unit::CubicMetrePerSecondKelvin => "G72",
9435            Unit::MillilitrePerDayKelvin => "G73",
9436            Unit::MillilitrePerHourKelvin => "G74",
9437            Unit::MillilitrePerMinuteKelvin => "G75",
9438            Unit::MillilitrePerSecondKelvin => "G76",
9439            Unit::MillimetreToFourthPower => "G77",
9440            Unit::CubicCentimetrePerDayBar => "G78",
9441            Unit::CubicCentimetrePerHourBar => "G79",
9442            Unit::CubicCentimetrePerMinuteBar => "G80",
9443            Unit::CubicCentimetrePerSecondBar => "G81",
9444            Unit::LitrePerDayBar => "G82",
9445            Unit::LitrePerHourBar => "G83",
9446            Unit::LitrePerMinuteBar => "G84",
9447            Unit::LitrePerSecondBar => "G85",
9448            Unit::CubicMetrePerDayBar => "G86",
9449            Unit::CubicMetrePerHourBar => "G87",
9450            Unit::CubicMetrePerMinuteBar => "G88",
9451            Unit::CubicMetrePerSecondBar => "G89",
9452            Unit::MillilitrePerDayBar => "G90",
9453            Unit::MillilitrePerHourBar => "G91",
9454            Unit::MillilitrePerMinuteBar => "G92",
9455            Unit::MillilitrePerSecondBar => "G93",
9456            Unit::CubicCentimetrePerBar => "G94",
9457            Unit::LitrePerBar => "G95",
9458            Unit::CubicMetrePerBar => "G96",
9459            Unit::MillilitrePerBar => "G97",
9460            Unit::MicrohenryPerKiloohm => "G98",
9461            Unit::MicrohenryPerOhm => "G99",
9462            Unit::GallonUsPerDay => "GB",
9463            Unit::Gigabecquerel => "GBQ",
9464            Unit::GramDryWeight => "GDW",
9465            Unit::PoundPerGallonUs => "GE",
9466            Unit::GramPerMetreGramPer100Centimetres => "GF",
9467            Unit::GramFissileIsotope => "GFI",
9468            Unit::GreatGross => "GGR",
9469            Unit::GillUs => "GIA",
9470            Unit::GramIncludingContainer => "GIC",
9471            Unit::GillUk => "GII",
9472            Unit::GramIncludingInnerPackaging => "GIP",
9473            Unit::GramPerMillilitre => "GJ",
9474            Unit::GramPerLitre => "GL",
9475            Unit::DryGallonUs => "GLD",
9476            Unit::GallonUk => "GLI",
9477            Unit::GallonUs => "GLL",
9478            Unit::GramPerSquareMetre => "GM",
9479            Unit::MilligramPerSquareMetre => "GO",
9480            Unit::MilligramPerCubicMetre => "GP",
9481            Unit::MicrogramPerCubicMetre => "GQ",
9482            Unit::Gram => "GRM",
9483            Unit::Grain => "GRN",
9484            Unit::Gross => "GRO",
9485            Unit::Gigajoule => "GV",
9486            Unit::GigawattHour => "GWH",
9487            Unit::HenryPerKiloohm => "H03",
9488            Unit::HenryPerOhm => "H04",
9489            Unit::MillihenryPerKiloohm => "H05",
9490            Unit::MillihenryPerOhm => "H06",
9491            Unit::PascalSecondPerBar => "H07",
9492            Unit::Microbecquerel => "H08",
9493            Unit::ReciprocalYear => "H09",
9494            Unit::ReciprocalHour => "H10",
9495            Unit::ReciprocalMonth => "H11",
9496            Unit::DegreeCelsiusPerHour => "H12",
9497            Unit::DegreeCelsiusPerMinute => "H13",
9498            Unit::DegreeCelsiusPerSecond => "H14",
9499            Unit::SquareCentimetrePerGram => "H15",
9500            Unit::SquareDecametre => "H16",
9501            Unit::SquareHectometre => "H18",
9502            Unit::CubicHectometre => "H19",
9503            Unit::CubicKilometre => "H20",
9504            Unit::Blank => "H21",
9505            Unit::VoltSquareInchPerPoundForce => "H22",
9506            Unit::VoltPerInch => "H23",
9507            Unit::VoltPerMicrosecond => "H24",
9508            Unit::PercentPerKelvin => "H25",
9509            Unit::OhmPerMetre => "H26",
9510            Unit::DegreePerMetre => "H27",
9511            Unit::MicrofaradPerKilometre => "H28",
9512            Unit::MicrogramPerLitre => "H29",
9513            Unit::SquareMicrometreSquareMicron => "H30",
9514            Unit::AmperePerKilogram => "H31",
9515            Unit::AmpereSquaredSecond => "H32",
9516            Unit::FaradPerKilometre => "H33",
9517            Unit::HertzMetre => "H34",
9518            Unit::KelvinMetrePerWatt => "H35",
9519            Unit::MegaohmPerKilometre => "H36",
9520            Unit::MegaohmPerMetre => "H37",
9521            Unit::Megaampere => "H38",
9522            Unit::MegahertzKilometre => "H39",
9523            Unit::NewtonPerAmpere => "H40",
9524            Unit::NewtonMetreWattToPowerMinus05 => "H41",
9525            Unit::PascalPerMetre => "H42",
9526            Unit::SiemensPerCentimetre => "H43",
9527            Unit::Teraohm => "H44",
9528            Unit::VoltSecondPerMetre => "H45",
9529            Unit::VoltPerSecond => "H46",
9530            Unit::WattPerCubicMetre => "H47",
9531            Unit::Attofarad => "H48",
9532            Unit::CentimetrePerHour => "H49",
9533            Unit::ReciprocalCubicCentimetre => "H50",
9534            Unit::DecibelPerKilometre => "H51",
9535            Unit::DecibelPerMetre => "H52",
9536            Unit::KilogramPerBar => "H53",
9537            Unit::KilogramPerCubicDecimetreKelvin => "H54",
9538            Unit::KilogramPerCubicDecimetreBar => "H55",
9539            Unit::KilogramPerSquareMetreSecond => "H56",
9540            Unit::InchPerTwoPiRadiant => "H57",
9541            Unit::MetrePerVoltSecond => "H58",
9542            Unit::SquareMetrePerNewton => "H59",
9543            Unit::CubicMetrePerCubicMetre => "H60",
9544            Unit::MillisiemensPerCentimetre => "H61",
9545            Unit::MillivoltPerMinute => "H62",
9546            Unit::MilligramPerSquareCentimetre => "H63",
9547            Unit::MilligramPerGram => "H64",
9548            Unit::MillilitrePerCubicMetre => "H65",
9549            Unit::MillimetrePerYear => "H66",
9550            Unit::MillimetrePerHour => "H67",
9551            Unit::MillimolePerGram => "H68",
9552            Unit::PicopascalPerKilometre => "H69",
9553            Unit::Picosecond => "H70",
9554            Unit::PercentPerMonth => "H71",
9555            Unit::PercentPerHectobar => "H72",
9556            Unit::PercentPerDecakelvin => "H73",
9557            Unit::WattPerMetre => "H74",
9558            Unit::Decapascal => "H75",
9559            Unit::GramPerMillimetre => "H76",
9560            Unit::ModuleWidth => "H77",
9561            Unit::FrenchGauge => "H79",
9562            Unit::RackUnit => "H80",
9563            Unit::MillimetrePerMinute => "H81",
9564            Unit::BigPoint => "H82",
9565            Unit::LitrePerKilogram => "H83",
9566            Unit::GramMillimetre => "H84",
9567            Unit::ReciprocalWeek => "H85",
9568            Unit::Piece => "H87",
9569            Unit::MegaohmKilometre => "H88",
9570            Unit::PercentPerOhm => "H89",
9571            Unit::PercentPerDegree => "H90",
9572            Unit::PercentPerTenThousand => "H91",
9573            Unit::PercentPerOneHundredThousand => "H92",
9574            Unit::PercentPerHundred => "H93",
9575            Unit::PercentPerThousand => "H94",
9576            Unit::PercentPerVolt => "H95",
9577            Unit::PercentPerBar => "H96",
9578            Unit::PercentPerInch => "H98",
9579            Unit::PercentPerMetre => "H99",
9580            Unit::Hank => "HA",
9581            Unit::PieceDay => "HAD",
9582            Unit::Hectobar => "HBA",
9583            Unit::HundredBoxes => "HBX",
9584            Unit::HundredCount => "HC",
9585            Unit::HundredKilogramDryWeight => "HDW",
9586            Unit::Head => "HEA",
9587            Unit::Hectogram => "HGM",
9588            Unit::HundredCubicFoot => "HH",
9589            Unit::HundredInternationalUnit => "HIU",
9590            Unit::HundredKilogramNetMass => "HKM",
9591            Unit::Hectolitre => "HLT",
9592            Unit::MilePerHourStatuteMile => "HM",
9593            Unit::PieceMonth => "HMO",
9594            Unit::MillionCubicMetre => "HMQ",
9595            Unit::Hectometre => "HMT",
9596            Unit::HectolitrePureAlcohol => "HPA",
9597            Unit::Hertz => "HTZ",
9598            Unit::Hour => "HUR",
9599            Unit::PieceWeek => "HWE",
9600            Unit::InchPoundPoundInch => "IA",
9601            Unit::Person => "IE",
9602            Unit::Inch => "INH",
9603            Unit::SquareInch => "INK",
9604            Unit::CubicInch => "INQ",
9605            Unit::InternationalSugarDegree => "ISD",
9606            Unit::InchPerSecond => "IU",
9607            Unit::InternationalUnitPerGram => "IUG",
9608            Unit::InchPerSecondSquared => "IV",
9609            Unit::PercentPerMillimetre => "J10",
9610            Unit::PerMillePerPsi => "J12",
9611            Unit::DegreeApi => "J13",
9612            Unit::DegreeBaumeOriginScale => "J14",
9613            Unit::DegreeBaumeUsHeavy => "J15",
9614            Unit::DegreeBaumeUsLight => "J16",
9615            Unit::DegreeBalling => "J17",
9616            Unit::DegreeBrix => "J18",
9617            Unit::DegreeFahrenheitHourSquareFootPerBritishThermalUnitThermochemical => "J19",
9618            Unit::JoulePerKilogram => "J2",
9619            Unit::DegreeFahrenheitPerKelvin => "J20",
9620            Unit::DegreeFahrenheitPerBar => "J21",
9621            Unit::DegreeFahrenheitHourSquareFootPerBritishThermalUnitInternationalTable => "J22",
9622            Unit::DegreeFahrenheitPerHour => "J23",
9623            Unit::DegreeFahrenheitPerMinute => "J24",
9624            Unit::DegreeFahrenheitPerSecond => "J25",
9625            Unit::ReciprocalDegreeFahrenheit => "J26",
9626            Unit::DegreeOechsle => "J27",
9627            Unit::DegreeRankinePerHour => "J28",
9628            Unit::DegreeRankinePerMinute => "J29",
9629            Unit::DegreeRankinePerSecond => "J30",
9630            Unit::DegreeTwaddell => "J31",
9631            Unit::Micropoise => "J32",
9632            Unit::MicrogramPerKilogram => "J33",
9633            Unit::MicrogramPerCubicMetreKelvin => "J34",
9634            Unit::MicrogramPerCubicMetreBar => "J35",
9635            Unit::MicrolitrePerLitre => "J36",
9636            Unit::Baud => "J38",
9637            Unit::BritishThermalUnitMean => "J39",
9638            Unit::BritishThermalUnitInternationalTableFootPerHourSquareFootDegreeFahrenheit => {
9639                "J40"
9640            }
9641            Unit::BritishThermalUnitInternationalTableInchPerHourSquareFootDegreeFahrenheit => {
9642                "J41"
9643            }
9644            Unit::BritishThermalUnitInternationalTableInchPerSecondSquareFootDegreeFahrenheit => {
9645                "J42"
9646            }
9647            Unit::BritishThermalUnitInternationalTablePerPoundDegreeFahrenheit => "J43",
9648            Unit::BritishThermalUnitInternationalTablePerMinute => "J44",
9649            Unit::BritishThermalUnitInternationalTablePerSecond => "J45",
9650            Unit::BritishThermalUnitThermochemicalFootPerHourSquareFootDegreeFahrenheit => "J46",
9651            Unit::BritishThermalUnitThermochemicalPerHour => "J47",
9652            Unit::BritishThermalUnitThermochemicalInchPerHourSquareFootDegreeFahrenheit => "J48",
9653            Unit::BritishThermalUnitThermochemicalInchPerSecondSquareFootDegreeFahrenheit => "J49",
9654            Unit::BritishThermalUnitThermochemicalPerPoundDegreeFahrenheit => "J50",
9655            Unit::BritishThermalUnitThermochemicalPerMinute => "J51",
9656            Unit::BritishThermalUnitThermochemicalPerSecond => "J52",
9657            Unit::CoulombSquareMetrePerKilogram => "J53",
9658            Unit::Megabaud => "J54",
9659            Unit::WattSecond => "J55",
9660            Unit::BarPerBar => "J56",
9661            Unit::BarrelUkPetroleum => "J57",
9662            Unit::BarrelUkPetroleumPerMinute => "J58",
9663            Unit::BarrelUkPetroleumPerDay => "J59",
9664            Unit::BarrelUkPetroleumPerHour => "J60",
9665            Unit::BarrelUkPetroleumPerSecond => "J61",
9666            Unit::BarrelUsPetroleumPerHour => "J62",
9667            Unit::BarrelUsPetroleumPerSecond => "J63",
9668            Unit::BushelUkPerDay => "J64",
9669            Unit::BushelUkPerHour => "J65",
9670            Unit::BushelUkPerMinute => "J66",
9671            Unit::BushelUkPerSecond => "J67",
9672            Unit::BushelUsDryPerDay => "J68",
9673            Unit::BushelUsDryPerHour => "J69",
9674            Unit::BushelUsDryPerMinute => "J70",
9675            Unit::BushelUsDryPerSecond => "J71",
9676            Unit::CentinewtonMetre => "J72",
9677            Unit::CentipoisePerKelvin => "J73",
9678            Unit::CentipoisePerBar => "J74",
9679            Unit::CalorieMean => "J75",
9680            Unit::CalorieInternationalTablePerGramDegreeCelsius => "J76",
9681            Unit::CalorieThermochemicalPerCentimetreSecondDegreeCelsius => "J78",
9682            Unit::CalorieThermochemicalPerGramDegreeCelsius => "J79",
9683            Unit::CalorieThermochemicalPerMinute => "J81",
9684            Unit::CalorieThermochemicalPerSecond => "J82",
9685            Unit::Clo => "J83",
9686            Unit::CentimetrePerSecondKelvin => "J84",
9687            Unit::CentimetrePerSecondBar => "J85",
9688            Unit::CubicCentimetrePerCubicMetre => "J87",
9689            Unit::CubicDecimetrePerDay => "J90",
9690            Unit::CubicDecimetrePerCubicMetre => "J91",
9691            Unit::CubicDecimetrePerMinute => "J92",
9692            Unit::CubicDecimetrePerSecond => "J93",
9693            Unit::OunceUkFluidPerDay => "J95",
9694            Unit::OunceUkFluidPerHour => "J96",
9695            Unit::OunceUkFluidPerMinute => "J97",
9696            Unit::OunceUkFluidPerSecond => "J98",
9697            Unit::OunceUsFluidPerDay => "J99",
9698            Unit::JoulePerKelvin => "JE",
9699            Unit::MegajoulePerKilogram => "JK",
9700            Unit::MegajoulePerCubicMetre => "JM",
9701            Unit::PipelineJoint => "JNT",
9702            Unit::Joule => "JOU",
9703            Unit::HundredMetre => "JPS",
9704            Unit::NumberJewels => "JWL",
9705            Unit::KilowattDemand => "K1",
9706            Unit::OunceUsFluidPerHour => "K10",
9707            Unit::OunceUsFluidPerMinute => "K11",
9708            Unit::OunceUsFluidPerSecond => "K12",
9709            Unit::FootPerDegreeFahrenheit => "K13",
9710            Unit::FootPerHour => "K14",
9711            Unit::FootPoundForcePerHour => "K15",
9712            Unit::FootPoundForcePerMinute => "K16",
9713            Unit::FootPerPsi => "K17",
9714            Unit::FootPerSecondDegreeFahrenheit => "K18",
9715            Unit::FootPerSecondPsi => "K19",
9716            Unit::KilovoltAmpereReactiveDemand => "K2",
9717            Unit::ReciprocalCubicFoot => "K20",
9718            Unit::CubicFootPerDegreeFahrenheit => "K21",
9719            Unit::CubicFootPerDay => "K22",
9720            Unit::CubicFootPerPsi => "K23",
9721            Unit::GallonUkPerDay => "K26",
9722            Unit::GallonUkPerHour => "K27",
9723            Unit::GallonUkPerSecond => "K28",
9724            Unit::KilovoltAmpereReactiveHour => "K3",
9725            Unit::GallonUsLiquidPerSecond => "K30",
9726            Unit::GramForcePerSquareCentimetre => "K31",
9727            Unit::GillUkPerDay => "K32",
9728            Unit::GillUkPerHour => "K33",
9729            Unit::GillUkPerMinute => "K34",
9730            Unit::GillUkPerSecond => "K35",
9731            Unit::GillUsPerDay => "K36",
9732            Unit::GillUsPerHour => "K37",
9733            Unit::GillUsPerMinute => "K38",
9734            Unit::GillUsPerSecond => "K39",
9735            Unit::StandardAccelerationFreeFall => "K40",
9736            Unit::GrainPerGallonUs => "K41",
9737            Unit::HorsepowerBoiler => "K42",
9738            Unit::HorsepowerElectric => "K43",
9739            Unit::InchPerDegreeFahrenheit => "K45",
9740            Unit::InchPerPsi => "K46",
9741            Unit::InchPerSecondDegreeFahrenheit => "K47",
9742            Unit::InchPerSecondPsi => "K48",
9743            Unit::ReciprocalCubicInch => "K49",
9744            Unit::Kilobaud => "K50",
9745            Unit::KilocalorieMean => "K51",
9746            Unit::KilocalorieInternationalTablePerHourMetreDegreeCelsius => "K52",
9747            Unit::KilocalorieThermochemical => "K53",
9748            Unit::KilocalorieThermochemicalPerMinute => "K54",
9749            Unit::KilocalorieThermochemicalPerSecond => "K55",
9750            Unit::KilomolePerHour => "K58",
9751            Unit::KilomolePerCubicMetreKelvin => "K59",
9752            Unit::Kilolitre => "K6",
9753            Unit::KilomolePerCubicMetreBar => "K60",
9754            Unit::KilomolePerMinute => "K61",
9755            Unit::LitrePerLitre => "K62",
9756            Unit::ReciprocalLitre => "K63",
9757            Unit::PoundAvoirdupoisPerDegreeFahrenheit => "K64",
9758            Unit::PoundAvoirdupoisSquareFoot => "K65",
9759            Unit::PoundAvoirdupoisPerDay => "K66",
9760            Unit::PoundPerFootHour => "K67",
9761            Unit::PoundPerFootSecond => "K68",
9762            Unit::PoundAvoirdupoisPerCubicFootDegreeFahrenheit => "K69",
9763            Unit::PoundAvoirdupoisPerCubicFootPsi => "K70",
9764            Unit::PoundAvoirdupoisPerGallonUk => "K71",
9765            Unit::PoundAvoirdupoisPerHourDegreeFahrenheit => "K73",
9766            Unit::PoundAvoirdupoisPerHourPsi => "K74",
9767            Unit::PoundAvoirdupoisPerCubicInchDegreeFahrenheit => "K75",
9768            Unit::PoundAvoirdupoisPerCubicInchPsi => "K76",
9769            Unit::PoundAvoirdupoisPerPsi => "K77",
9770            Unit::PoundAvoirdupoisPerMinute => "K78",
9771            Unit::PoundAvoirdupoisPerMinuteDegreeFahrenheit => "K79",
9772            Unit::PoundAvoirdupoisPerMinutePsi => "K80",
9773            Unit::PoundAvoirdupoisPerSecond => "K81",
9774            Unit::PoundAvoirdupoisPerSecondDegreeFahrenheit => "K82",
9775            Unit::PoundAvoirdupoisPerSecondPsi => "K83",
9776            Unit::PoundPerCubicYard => "K84",
9777            Unit::PoundForcePerSquareFoot => "K85",
9778            Unit::PoundForcePerSquareInchDegreeFahrenheit => "K86",
9779            Unit::PsiCubicInchPerSecond => "K87",
9780            Unit::PsiLitrePerSecond => "K88",
9781            Unit::PsiCubicMetrePerSecond => "K89",
9782            Unit::PsiCubicYardPerSecond => "K90",
9783            Unit::PoundForceSecondPerSquareFoot => "K91",
9784            Unit::PoundForceSecondPerSquareInch => "K92",
9785            Unit::ReciprocalPsi => "K93",
9786            Unit::QuartUkLiquidPerDay => "K94",
9787            Unit::QuartUkLiquidPerHour => "K95",
9788            Unit::QuartUkLiquidPerMinute => "K96",
9789            Unit::QuartUkLiquidPerSecond => "K97",
9790            Unit::QuartUsLiquidPerDay => "K98",
9791            Unit::QuartUsLiquidPerHour => "K99",
9792            Unit::Cake => "KA",
9793            Unit::Katal => "KAT",
9794            Unit::Kilocharacter => "KB",
9795            Unit::Kilobar => "KBA",
9796            Unit::KilogramCholineChloride => "KCC",
9797            Unit::KilogramDrainedNetWeight => "KDW",
9798            Unit::Kelvin => "KEL",
9799            Unit::Kilogram => "KGM",
9800            Unit::KilogramPerSecond => "KGS",
9801            Unit::KilogramHydrogenPeroxide => "KHY",
9802            Unit::Kilohertz => "KHZ",
9803            Unit::KilogramPerMillimetreWidth => "KI",
9804            Unit::KilogramIncludingContainer => "KIC",
9805            Unit::KilogramIncludingInnerPackaging => "KIP",
9806            Unit::Kilosegment => "KJ",
9807            Unit::Kilojoule => "KJO",
9808            Unit::KilogramPerMetre => "KL",
9809            Unit::LacticDryMaterialPercentage => "KLK",
9810            Unit::Kilolux => "KLX",
9811            Unit::KilogramMethylamine => "KMA",
9812            Unit::KilometrePerHour => "KMH",
9813            Unit::SquareKilometre => "KMK",
9814            Unit::KilogramPerCubicMetre => "KMQ",
9815            Unit::Kilometre => "KMT",
9816            Unit::KilogramNitrogen => "KNI",
9817            Unit::KilonewtonPerSquareMetre => "KNM",
9818            Unit::KilogramNamedSubstance => "KNS",
9819            Unit::Knot => "KNT",
9820            Unit::MilliequivalenceCausticPotashPerGramProduct => "KO",
9821            Unit::Kilopascal => "KPA",
9822            Unit::KilogramPotassiumHydroxideCausticPotash => "KPH",
9823            Unit::KilogramPotassiumOxide => "KPO",
9824            Unit::KilogramPhosphorusPentoxidePhosphoricAnhydride => "KPP",
9825            Unit::Kiloroentgen => "KR",
9826            Unit::KilogramSubstance90Dry => "KSD",
9827            Unit::KilogramSodiumHydroxideCausticSoda => "KSH",
9828            Unit::Kit => "KT",
9829            Unit::Kilotonne => "KTN",
9830            Unit::KilogramUranium => "KUR",
9831            Unit::KilovoltAmpere => "KVA",
9832            Unit::Kilovar => "KVR",
9833            Unit::Kilovolt => "KVT",
9834            Unit::KilogramPerMillimetre => "KW",
9835            Unit::KilowattHour => "KWH",
9836            Unit::KilowattHourPerNormalizedCubicMetre => "KWN",
9837            Unit::KilogramTungstenTrioxide => "KWO",
9838            Unit::KilowattHourPerStandardCubicMetre => "KWS",
9839            Unit::Kilowatt => "KWT",
9840            Unit::KilowattYear => "KWY",
9841            Unit::MillilitrePerKilogram => "KX",
9842            Unit::QuartUsLiquidPerMinute => "L10",
9843            Unit::QuartUsLiquidPerSecond => "L11",
9844            Unit::MetrePerSecondKelvin => "L12",
9845            Unit::MetrePerSecondBar => "L13",
9846            Unit::SquareMetreHourDegreeCelsiusPerKilocalorieInternationalTable => "L14",
9847            Unit::MillipascalSecondPerKelvin => "L15",
9848            Unit::MillipascalSecondPerBar => "L16",
9849            Unit::MilligramPerCubicMetreKelvin => "L17",
9850            Unit::MilligramPerCubicMetreBar => "L18",
9851            Unit::MillilitrePerLitre => "L19",
9852            Unit::LitrePerMinute => "L2",
9853            Unit::ReciprocalCubicMillimetre => "L20",
9854            Unit::CubicMillimetrePerCubicMetre => "L21",
9855            Unit::MolePerHour => "L23",
9856            Unit::MolePerKilogramKelvin => "L24",
9857            Unit::MolePerKilogramBar => "L25",
9858            Unit::MolePerLitreKelvin => "L26",
9859            Unit::MolePerLitreBar => "L27",
9860            Unit::MolePerCubicMetreKelvin => "L28",
9861            Unit::MolePerCubicMetreBar => "L29",
9862            Unit::MolePerMinute => "L30",
9863            Unit::MilliroentgenAequivalentMen => "L31",
9864            Unit::NanogramPerKilogram => "L32",
9865            Unit::OunceAvoirdupoisPerDay => "L33",
9866            Unit::OunceAvoirdupoisPerHour => "L34",
9867            Unit::OunceAvoirdupoisPerMinute => "L35",
9868            Unit::OunceAvoirdupoisPerSecond => "L36",
9869            Unit::OunceAvoirdupoisPerGallonUk => "L37",
9870            Unit::OunceAvoirdupoisPerGallonUs => "L38",
9871            Unit::OunceAvoirdupoisPerCubicInch => "L39",
9872            Unit::OunceAvoirdupoisForce => "L40",
9873            Unit::OunceAvoirdupoisForceInch => "L41",
9874            Unit::PicosiemensPerMetre => "L42",
9875            Unit::PeckUk => "L43",
9876            Unit::PeckUkPerDay => "L44",
9877            Unit::PeckUkPerHour => "L45",
9878            Unit::PeckUkPerMinute => "L46",
9879            Unit::PeckUkPerSecond => "L47",
9880            Unit::PeckUsDryPerDay => "L48",
9881            Unit::PeckUsDryPerHour => "L49",
9882            Unit::PeckUsDryPerMinute => "L50",
9883            Unit::PeckUsDryPerSecond => "L51",
9884            Unit::PsiPerPsi => "L52",
9885            Unit::PintUkPerDay => "L53",
9886            Unit::PintUkPerHour => "L54",
9887            Unit::PintUkPerMinute => "L55",
9888            Unit::PintUkPerSecond => "L56",
9889            Unit::PintUsLiquidPerDay => "L57",
9890            Unit::PintUsLiquidPerHour => "L58",
9891            Unit::PintUsLiquidPerMinute => "L59",
9892            Unit::PintUsLiquidPerSecond => "L60",
9893            Unit::SlugPerDay => "L63",
9894            Unit::SlugPerFootSecond => "L64",
9895            Unit::SlugPerCubicFoot => "L65",
9896            Unit::SlugPerHour => "L66",
9897            Unit::SlugPerMinute => "L67",
9898            Unit::SlugPerSecond => "L68",
9899            Unit::TonnePerKelvin => "L69",
9900            Unit::TonnePerBar => "L70",
9901            Unit::TonnePerDay => "L71",
9902            Unit::TonnePerDayKelvin => "L72",
9903            Unit::TonnePerDayBar => "L73",
9904            Unit::TonnePerHourKelvin => "L74",
9905            Unit::TonnePerHourBar => "L75",
9906            Unit::TonnePerCubicMetreKelvin => "L76",
9907            Unit::TonnePerCubicMetreBar => "L77",
9908            Unit::TonnePerMinute => "L78",
9909            Unit::TonnePerMinuteKelvin => "L79",
9910            Unit::TonnePerMinuteBar => "L80",
9911            Unit::TonnePerSecond => "L81",
9912            Unit::TonnePerSecondKelvin => "L82",
9913            Unit::TonnePerSecondBar => "L83",
9914            Unit::TonUkShipping => "L84",
9915            Unit::TonLongPerDay => "L85",
9916            Unit::TonUsShipping => "L86",
9917            Unit::TonShortPerDegreeFahrenheit => "L87",
9918            Unit::TonShortPerDay => "L88",
9919            Unit::TonShortPerHourDegreeFahrenheit => "L89",
9920            Unit::TonShortPerHourPsi => "L90",
9921            Unit::TonShortPerPsi => "L91",
9922            Unit::TonUkLongPerCubicYard => "L92",
9923            Unit::TonUsShortPerCubicYard => "L93",
9924            Unit::TonForceUsShort => "L94",
9925            Unit::CommonYear => "L95",
9926            Unit::SiderealYear => "L96",
9927            Unit::YardPerDegreeFahrenheit => "L98",
9928            Unit::YardPerPsi => "L99",
9929            Unit::PoundPerCubicInch => "LA",
9930            Unit::LactoseExcessPercentage => "LAC",
9931            Unit::Pound => "LBR",
9932            Unit::TroyPoundUs => "LBT",
9933            Unit::LitrePerDay => "LD",
9934            Unit::Leaf => "LEF",
9935            Unit::LinearFoot => "LF",
9936            Unit::LabourHour => "LH",
9937            Unit::Link => "LK",
9938            Unit::LinearMetre => "LM",
9939            Unit::Length => "LN",
9940            Unit::LotUnitProcurement => "LO",
9941            Unit::LiquidPound => "LP",
9942            Unit::LitrePureAlcohol => "LPA",
9943            Unit::Layer => "LR",
9944            Unit::LumpSum => "LS",
9945            Unit::TonUkOrLongTonUs => "LTN",
9946            Unit::Litre => "LTR",
9947            Unit::MetricTonLubricatingOil => "LUB",
9948            Unit::Lumen => "LUM",
9949            Unit::Lux => "LUX",
9950            Unit::LinearYard => "LY",
9951            Unit::MilligramPerLitre => "M1",
9952            Unit::ReciprocalCubicYard => "M10",
9953            Unit::CubicYardPerDegreeFahrenheit => "M11",
9954            Unit::CubicYardPerDay => "M12",
9955            Unit::CubicYardPerHour => "M13",
9956            Unit::CubicYardPerPsi => "M14",
9957            Unit::CubicYardPerMinute => "M15",
9958            Unit::CubicYardPerSecond => "M16",
9959            Unit::KilohertzMetre => "M17",
9960            Unit::GigahertzMetre => "M18",
9961            Unit::Beaufort => "M19",
9962            Unit::ReciprocalMegakelvinOrMegakelvinToPowerMinusOne => "M20",
9963            Unit::ReciprocalKilovoltAmpereReciprocalHour => "M21",
9964            Unit::MillilitrePerSquareCentimetreMinute => "M22",
9965            Unit::NewtonPerCentimetre => "M23",
9966            Unit::OhmKilometre => "M24",
9967            Unit::PercentPerDegreeCelsius => "M25",
9968            Unit::GigaohmPerMetre => "M26",
9969            Unit::MegahertzMetre => "M27",
9970            Unit::KilogramPerKilogram => "M29",
9971            Unit::ReciprocalVoltAmpereReciprocalSecond => "M30",
9972            Unit::KilogramPerKilometre => "M31",
9973            Unit::PascalSecondPerLitre => "M32",
9974            Unit::MillimolePerLitre => "M33",
9975            Unit::NewtonMetrePerSquareMetre => "M34",
9976            Unit::MillivoltAmpere => "M35",
9977            Unit::_30DayMonth => "M36",
9978            Unit::Actual360 => "M37",
9979            Unit::KilometrePerSecondSquared => "M38",
9980            Unit::CentimetrePerSecondSquared => "M39",
9981            Unit::MonetaryValue => "M4",
9982            Unit::YardPerSecondSquared => "M40",
9983            Unit::MillimetrePerSecondSquared => "M41",
9984            Unit::MileStatuteMilePerSecondSquared => "M42",
9985            Unit::Mil => "M43",
9986            Unit::Revolution => "M44",
9987            Unit::DegreeUnitAnglePerSecondSquared => "M45",
9988            Unit::RevolutionPerMinute => "M46",
9989            Unit::CircularMil => "M47",
9990            Unit::SquareMileBasedOnUSSurveyFoot => "M48",
9991            Unit::ChainBasedOnUSSurveyFoot => "M49",
9992            Unit::Microcurie => "M5",
9993            Unit::Furlong => "M50",
9994            Unit::FootUSSurvey => "M51",
9995            Unit::MileBasedOnUSSurveyFoot => "M52",
9996            Unit::MetrePerPascal => "M53",
9997            Unit::MetrePerRadiant => "M55",
9998            Unit::Shake => "M56",
9999            Unit::MilePerMinute => "M57",
10000            Unit::MilePerSecond => "M58",
10001            Unit::MetrePerSecondPascal => "M59",
10002            Unit::MetrePerHour => "M60",
10003            Unit::InchPerYear => "M61",
10004            Unit::KilometrePerSecond => "M62",
10005            Unit::InchPerMinute => "M63",
10006            Unit::YardPerSecond => "M64",
10007            Unit::YardPerMinute => "M65",
10008            Unit::YardPerHour => "M66",
10009            Unit::AcreFootBasedOnUSSurveyFoot => "M67",
10010            Unit::Cord128Ft3 => "M68",
10011            Unit::CubicMileUkStatute => "M69",
10012            Unit::MicroInch => "M7",
10013            Unit::TonRegister => "M70",
10014            Unit::CubicMetrePerPascal => "M71",
10015            Unit::Bel => "M72",
10016            Unit::KilogramPerCubicMetrePascal => "M73",
10017            Unit::KilogramPerPascal => "M74",
10018            Unit::KilopoundForce => "M75",
10019            Unit::Poundal => "M76",
10020            Unit::KilogramMetrePerSecondSquared => "M77",
10021            Unit::Pond => "M78",
10022            Unit::SquareFootPerHour => "M79",
10023            Unit::StokesPerPascal => "M80",
10024            Unit::SquareCentimetrePerSecond => "M81",
10025            Unit::SquareMetrePerSecondPascal => "M82",
10026            Unit::Denier_Dup => "M83",
10027            Unit::PoundPerYard => "M84",
10028            Unit::TonAssay => "M85",
10029            Unit::Pfund => "M86",
10030            Unit::KilogramPerSecondPascal => "M87",
10031            Unit::TonnePerMonth => "M88",
10032            Unit::TonnePerYear => "M89",
10033            Unit::MillionBtuPer1000CubicFoot => "M9",
10034            Unit::KilopoundPerHour => "M90",
10035            Unit::PoundPerPound => "M91",
10036            Unit::PoundForceFoot => "M92",
10037            Unit::NewtonMetrePerRadian => "M93",
10038            Unit::KilogramMetre => "M94",
10039            Unit::PoundalFoot => "M95",
10040            Unit::PoundalInch => "M96",
10041            Unit::DyneMetre => "M97",
10042            Unit::KilogramCentimetrePerSecond => "M98",
10043            Unit::GramCentimetrePerSecond => "M99",
10044            Unit::MegavoltAmpereReactiveHour => "MAH",
10045            Unit::Megalitre => "MAL",
10046            Unit::Megametre => "MAM",
10047            Unit::Megavar => "MAR",
10048            Unit::Megawatt => "MAW",
10049            Unit::ThousandStandardBrickEquivalent => "MBE",
10050            Unit::ThousandBoardFoot => "MBF",
10051            Unit::Millibar => "MBR",
10052            Unit::Microgram => "MC",
10053            Unit::Millicurie => "MCU",
10054            Unit::AirDryMetricTon => "MD",
10055            Unit::Milligram => "MGM",
10056            Unit::Megahertz => "MHZ",
10057            Unit::SquareMileStatuteMile => "MIK",
10058            Unit::Thousand => "MIL",
10059            Unit::MinuteUnitTime => "MIN",
10060            Unit::Million => "MIO",
10061            Unit::MillionInternationalUnit => "MIU",
10062            Unit::SquareMetreDay => "MKD",
10063            Unit::SquareMetreMonth => "MKM",
10064            Unit::SquareMetreWeek => "MKW",
10065            Unit::Milliard => "MLD",
10066            Unit::Millilitre => "MLT",
10067            Unit::SquareMillimetre => "MMK",
10068            Unit::CubicMillimetre => "MMQ",
10069            Unit::Millimetre => "MMT",
10070            Unit::KilogramDryWeight => "MND",
10071            Unit::MegaJoulePerNormalisedCubicMetre => "MNJ",
10072            Unit::Month => "MON",
10073            Unit::Megapascal => "MPA",
10074            Unit::CubicMetreDay => "MQD",
10075            Unit::CubicMetrePerHour => "MQH",
10076            Unit::CubicMetreMonth => "MQM",
10077            Unit::CubicMetrePerSecond => "MQS",
10078            Unit::CubicMetreWeek => "MQW",
10079            Unit::MetreDay => "MRD",
10080            Unit::MetreMonth => "MRM",
10081            Unit::MetreWeek => "MRW",
10082            Unit::MetrePerSecondSquared => "MSK",
10083            Unit::SquareMetre => "MTK",
10084            Unit::CubicMetre => "MTQ",
10085            Unit::Metre => "MTR",
10086            Unit::MetrePerSecond => "MTS",
10087            Unit::Milihertz => "MTZ",
10088            Unit::MegavoltAmpere => "MVA",
10089            Unit::MegawattHour1000KwH => "MWH",
10090            Unit::PenCalorie => "N1",
10091            Unit::PoundFootPerSecond => "N10",
10092            Unit::PoundInchPerSecond => "N11",
10093            Unit::Pferdestaerke => "N12",
10094            Unit::CentimetreMercury0Oc => "N13",
10095            Unit::CentimetreWater4Oc => "N14",
10096            Unit::FootWater392Of => "N15",
10097            Unit::InchMercury32Of => "N16",
10098            Unit::InchMercury60Of => "N17",
10099            Unit::InchWater392Of => "N18",
10100            Unit::InchWater60Of => "N19",
10101            Unit::KipPerSquareInch => "N20",
10102            Unit::PoundalPerSquareFoot => "N21",
10103            Unit::OunceAvoirdupoisPerSquareInch => "N22",
10104            Unit::ConventionalMetreWater => "N23",
10105            Unit::GramPerSquareMillimetre => "N24",
10106            Unit::PoundPerSquareYard => "N25",
10107            Unit::PoundalPerSquareInch => "N26",
10108            Unit::FootToFourthPower => "N27",
10109            Unit::CubicDecimetrePerKilogram => "N28",
10110            Unit::CubicFootPerPound => "N29",
10111            Unit::PrintPoint => "N3",
10112            Unit::CubicInchPerPound => "N30",
10113            Unit::KilonewtonPerMetre => "N31",
10114            Unit::PoundalPerInch => "N32",
10115            Unit::PoundForcePerYard => "N33",
10116            Unit::PoundalSecondPerSquareFoot => "N34",
10117            Unit::PoisePerPascal => "N35",
10118            Unit::NewtonSecondPerSquareMetre => "N36",
10119            Unit::KilogramPerMetreSecond => "N37",
10120            Unit::KilogramPerMetreMinute => "N38",
10121            Unit::KilogramPerMetreDay => "N39",
10122            Unit::KilogramPerMetreHour => "N40",
10123            Unit::GramPerCentimetreSecond => "N41",
10124            Unit::PoundalSecondPerSquareInch => "N42",
10125            Unit::PoundPerFootMinute => "N43",
10126            Unit::PoundPerFootDay => "N44",
10127            Unit::CubicMetrePerSecondPascal => "N45",
10128            Unit::FootPoundal => "N46",
10129            Unit::InchPoundal => "N47",
10130            Unit::WattPerSquareCentimetre => "N48",
10131            Unit::WattPerSquareInch => "N49",
10132            Unit::BritishThermalUnitInternationalTablePerSquareFootHour => "N50",
10133            Unit::BritishThermalUnitThermochemicalPerSquareFootHour => "N51",
10134            Unit::BritishThermalUnitThermochemicalPerSquareFootMinute => "N52",
10135            Unit::BritishThermalUnitInternationalTablePerSquareFootSecond => "N53",
10136            Unit::BritishThermalUnitThermochemicalPerSquareFootSecond => "N54",
10137            Unit::BritishThermalUnitInternationalTablePerSquareInchSecond => "N55",
10138            Unit::CalorieThermochemicalPerSquareCentimetreMinute => "N56",
10139            Unit::CalorieThermochemicalPerSquareCentimetreSecond => "N57",
10140            Unit::BritishThermalUnitInternationalTablePerCubicFoot => "N58",
10141            Unit::BritishThermalUnitThermochemicalPerCubicFoot => "N59",
10142            Unit::BritishThermalUnitInternationalTablePerDegreeFahrenheit => "N60",
10143            Unit::BritishThermalUnitThermochemicalPerDegreeFahrenheit => "N61",
10144            Unit::BritishThermalUnitInternationalTablePerDegreeRankine => "N62",
10145            Unit::BritishThermalUnitThermochemicalPerDegreeRankine => "N63",
10146            Unit::BritishThermalUnitThermochemicalPerPoundDegreeRankine => "N64",
10147            Unit::KilocalorieInternationalTablePerGramKelvin => "N65",
10148            Unit::BritishThermalUnit39Of => "N66",
10149            Unit::BritishThermalUnit59Of => "N67",
10150            Unit::BritishThermalUnit60Of => "N68",
10151            Unit::Calorie20Oc => "N69",
10152            Unit::Quad1015Btuit => "N70",
10153            Unit::ThermEc => "N71",
10154            Unit::ThermUS => "N72",
10155            Unit::BritishThermalUnitThermochemicalPerPound => "N73",
10156            Unit::BritishThermalUnitInternationalTablePerHourSquareFootDegreeFahrenheit => "N74",
10157            Unit::BritishThermalUnitThermochemicalPerHourSquareFootDegreeFahrenheit => "N75",
10158            Unit::BritishThermalUnitInternationalTablePerSecondSquareFootDegreeFahrenheit => "N76",
10159            Unit::BritishThermalUnitThermochemicalPerSecondSquareFootDegreeFahrenheit => "N77",
10160            Unit::KilowattPerSquareMetreKelvin => "N78",
10161            Unit::KelvinPerPascal => "N79",
10162            Unit::WattPerMetreDegreeCelsius => "N80",
10163            Unit::KilowattPerMetreKelvin => "N81",
10164            Unit::KilowattPerMetreDegreeCelsius => "N82",
10165            Unit::MetrePerDegreeCelciusMetre => "N83",
10166            Unit::DegreeFahrenheitHourPerBritishThermalUnitInternationalTable => "N84",
10167            Unit::DegreeFahrenheitHourPerBritishThermalUnitThermochemical => "N85",
10168            Unit::DegreeFahrenheitSecondPerBritishThermalUnitInternationalTable => "N86",
10169            Unit::DegreeFahrenheitSecondPerBritishThermalUnitThermochemical => "N87",
10170            Unit::DegreeFahrenheitHourSquareFootPerBritishThermalUnitInternationalTableInch => {
10171                "N88"
10172            }
10173            Unit::DegreeFahrenheitHourSquareFootPerBritishThermalUnitThermochemicalInch => "N89",
10174            Unit::Kilofarad => "N90",
10175            Unit::ReciprocalJoule => "N91",
10176            Unit::Picosiemens => "N92",
10177            Unit::AmperePerPascal => "N93",
10178            Unit::Franklin => "N94",
10179            Unit::AmpereMinute => "N95",
10180            Unit::Biot => "N96",
10181            Unit::Gilbert => "N97",
10182            Unit::VoltPerPascal => "N98",
10183            Unit::Picovolt => "N99",
10184            Unit::MilligramPerKilogram => "NA",
10185            Unit::NumberArticles => "NAR",
10186            Unit::NumberCells => "NCL",
10187            Unit::Newton => "NEW",
10188            Unit::Message => "NF",
10189            Unit::Nil => "NIL",
10190            Unit::NumberInternationalUnits => "NIU",
10191            Unit::Load => "NL",
10192            Unit::NormalisedCubicMetre => "NM3",
10193            Unit::NauticalMile => "NMI",
10194            Unit::NumberPacks => "NMP",
10195            Unit::NumberParts => "NPT",
10196            Unit::NetTon => "NT",
10197            Unit::NephelometricTurbidityUnit => "NTU",
10198            Unit::NewtonMetre => "NU",
10199            Unit::PartPerThousand => "NX",
10200            Unit::Panel => "OA",
10201            Unit::OzoneDepletionEquivalent => "ODE",
10202            Unit::OdsGrams => "ODG",
10203            Unit::OdsKilograms => "ODK",
10204            Unit::OdsMilligrams => "ODM",
10205            Unit::Ohm => "OHM",
10206            Unit::OuncePerSquareYard => "ON",
10207            Unit::OunceAvoirdupois => "ONZ",
10208            Unit::OscillationsPerMinute => "OPM",
10209            Unit::OvertimeHour => "OT",
10210            Unit::FluidOunceUs => "OZA",
10211            Unit::FluidOunceUk => "OZI",
10212            Unit::Percent => "P1",
10213            Unit::CoulombPerMetre => "P10",
10214            Unit::Kiloweber => "P11",
10215            Unit::Gamma => "P12",
10216            Unit::Kilotesla => "P13",
10217            Unit::JoulePerSecond => "P14",
10218            Unit::JoulePerMinute => "P15",
10219            Unit::JoulePerHour => "P16",
10220            Unit::JoulePerDay => "P17",
10221            Unit::KilojoulePerSecond => "P18",
10222            Unit::KilojoulePerMinute => "P19",
10223            Unit::PoundPerFoot => "P2",
10224            Unit::KilojoulePerHour => "P20",
10225            Unit::KilojoulePerDay => "P21",
10226            Unit::Nanoohm => "P22",
10227            Unit::OhmCircularMilPerFoot => "P23",
10228            Unit::Kilohenry => "P24",
10229            Unit::LumenPerSquareFoot => "P25",
10230            Unit::Phot => "P26",
10231            Unit::Footcandle => "P27",
10232            Unit::CandelaPerSquareInch => "P28",
10233            Unit::Footlambert => "P29",
10234            Unit::Lambert => "P30",
10235            Unit::Stilb => "P31",
10236            Unit::CandelaPerSquareFoot => "P32",
10237            Unit::Kilocandela => "P33",
10238            Unit::Millicandela => "P34",
10239            Unit::HefnerKerze => "P35",
10240            Unit::InternationalCandle => "P36",
10241            Unit::BritishThermalUnitInternationalTablePerSquareFoot => "P37",
10242            Unit::BritishThermalUnitThermochemicalPerSquareFoot => "P38",
10243            Unit::CalorieThermochemicalPerSquareCentimetre => "P39",
10244            Unit::Langley => "P40",
10245            Unit::DecadeLogarithmic => "P41",
10246            Unit::PascalSquaredSecond => "P42",
10247            Unit::BelPerMetre => "P43",
10248            Unit::PoundMole => "P44",
10249            Unit::PoundMolePerSecond => "P45",
10250            Unit::PoundMolePerMinute => "P46",
10251            Unit::KilomolePerKilogram => "P47",
10252            Unit::PoundMolePerPound => "P48",
10253            Unit::NewtonSquareMetrePerAmpere => "P49",
10254            Unit::FivePack => "P5",
10255            Unit::WeberMetre => "P50",
10256            Unit::MolPerKilogramPascal => "P51",
10257            Unit::MolPerCubicMetrePascal => "P52",
10258            Unit::UnitPole => "P53",
10259            Unit::MilligrayPerSecond => "P54",
10260            Unit::MicrograyPerSecond => "P55",
10261            Unit::NanograyPerSecond => "P56",
10262            Unit::GrayPerMinute => "P57",
10263            Unit::MilligrayPerMinute => "P58",
10264            Unit::MicrograyPerMinute => "P59",
10265            Unit::NanograyPerMinute => "P60",
10266            Unit::GrayPerHour => "P61",
10267            Unit::MilligrayPerHour => "P62",
10268            Unit::MicrograyPerHour => "P63",
10269            Unit::NanograyPerHour => "P64",
10270            Unit::SievertPerSecond => "P65",
10271            Unit::MillisievertPerSecond => "P66",
10272            Unit::MicrosievertPerSecond => "P67",
10273            Unit::NanosievertPerSecond => "P68",
10274            Unit::RemPerSecond => "P69",
10275            Unit::SievertPerHour => "P70",
10276            Unit::MillisievertPerHour => "P71",
10277            Unit::MicrosievertPerHour => "P72",
10278            Unit::NanosievertPerHour => "P73",
10279            Unit::SievertPerMinute => "P74",
10280            Unit::MillisievertPerMinute => "P75",
10281            Unit::MicrosievertPerMinute => "P76",
10282            Unit::NanosievertPerMinute => "P77",
10283            Unit::ReciprocalSquareInch => "P78",
10284            Unit::PascalSquareMetrePerKilogram => "P79",
10285            Unit::MillipascalPerMetre => "P80",
10286            Unit::KilopascalPerMetre => "P81",
10287            Unit::HectopascalPerMetre => "P82",
10288            Unit::StandardAtmospherePerMetre => "P83",
10289            Unit::TechnicalAtmospherePerMetre => "P84",
10290            Unit::TorrPerMetre => "P85",
10291            Unit::PsiPerInch => "P86",
10292            Unit::CubicMetrePerSecondSquareMetre => "P87",
10293            Unit::Rhe => "P88",
10294            Unit::PoundForceFootPerInch => "P89",
10295            Unit::PoundForceInchPerInch => "P90",
10296            Unit::Perm0Oc => "P91",
10297            Unit::Perm23Oc => "P92",
10298            Unit::BytePerSecond => "P93",
10299            Unit::KilobytePerSecond => "P94",
10300            Unit::MegabytePerSecond => "P95",
10301            Unit::ReciprocalVolt => "P96",
10302            Unit::ReciprocalRadian => "P97",
10303            Unit::PascalToPowerSumStoichiometricNumbers => "P98",
10304            Unit::MolePerCubivMetreToPowerSumStoichiometricNumbers => "P99",
10305            Unit::Pascal => "PAL",
10306            Unit::Pad => "PD",
10307            Unit::ProofLitre => "PFL",
10308            Unit::ProofGallon => "PGL",
10309            Unit::Pitch => "PI",
10310            Unit::DegreePlato => "PLA",
10311            Unit::PoundPerInchLength => "PO",
10312            Unit::PagePerInch => "PQ",
10313            Unit::Pair => "PR",
10314            Unit::PoundForcePerSquareInch => "PS",
10315            Unit::DryPintUs => "PTD",
10316            Unit::PintUk => "PTI",
10317            Unit::LiquidPintUs => "PTL",
10318            Unit::Portion => "PTN",
10319            Unit::JoulePerTesla => "Q10",
10320            Unit::Erlang => "Q11",
10321            Unit::Octet => "Q12",
10322            Unit::OctetPerSecond => "Q13",
10323            Unit::Shannon => "Q14",
10324            Unit::Hartley => "Q15",
10325            Unit::NaturalUnitInformation => "Q16",
10326            Unit::ShannonPerSecond => "Q17",
10327            Unit::HartleyPerSecond => "Q18",
10328            Unit::NaturalUnitInformationPerSecond => "Q19",
10329            Unit::SecondPerKilogramm => "Q20",
10330            Unit::WattSquareMetre => "Q21",
10331            Unit::SecondPerRadianCubicMetre => "Q22",
10332            Unit::WeberToPowerMinusOne => "Q23",
10333            Unit::ReciprocalInch => "Q24",
10334            Unit::Dioptre => "Q25",
10335            Unit::OnePerOne => "Q26",
10336            Unit::NewtonMetrePerMetre => "Q27",
10337            Unit::KilogramPerSquareMetrePascalSecond => "Q28",
10338            Unit::MicrogramPerHectogram => "Q29",
10339            Unit::Meal => "Q3",
10340            Unit::PhPotentialHydrogen => "Q30",
10341            Unit::KilojoulePerGram => "Q31",
10342            Unit::Femtolitre => "Q32",
10343            Unit::Picolitre => "Q33",
10344            Unit::Nanolitre => "Q34",
10345            Unit::MegawattsPerMinute => "Q35",
10346            Unit::SquareMetrePerCubicMetre => "Q36",
10347            Unit::StandardCubicMetrePerDay => "Q37",
10348            Unit::StandardCubicMetrePerHour => "Q38",
10349            Unit::NormalizedCubicMetrePerDay => "Q39",
10350            Unit::NormalizedCubicMetrePerHour => "Q40",
10351            Unit::JoulePerNormalisedCubicMetre => "Q41",
10352            Unit::JoulePerStandardCubicMetre => "Q42",
10353            Unit::PageFacsimile => "QA",
10354            Unit::QuarterAYear => "QAN",
10355            Unit::PageHardcopy => "QB",
10356            Unit::Quire => "QR",
10357            Unit::DryQuartUs => "QTD",
10358            Unit::QuartUk => "QTI",
10359            Unit::LiquidQuartUs => "QTL",
10360            Unit::QuarterUk => "QTR",
10361            Unit::Pica => "R1",
10362            Unit::ThousandCubicMetre => "R9",
10363            Unit::RunningOrOperatingHour => "RH",
10364            Unit::Ream => "RM",
10365            Unit::Room => "ROM",
10366            Unit::PoundPerReam => "RP",
10367            Unit::RevolutionsPerMinute => "RPM",
10368            Unit::RevolutionsPerSecond => "RPS",
10369            Unit::RevenueTonMile => "RT",
10370            Unit::SquareFootPerSecond => "S3",
10371            Unit::SquareMetrePerSecond => "S4",
10372            Unit::HalfYear6Months => "SAN",
10373            Unit::Score => "SCO",
10374            Unit::Scruple => "SCR",
10375            Unit::SecondUnitTime => "SEC",
10376            Unit::Set => "SET",
10377            Unit::Segment => "SG",
10378            Unit::Siemens => "SIE",
10379            Unit::StandardCubicMetre => "SM3",
10380            Unit::MileStatuteMile => "SMI",
10381            Unit::Square => "SQ",
10382            Unit::SquareRoofing => "SQR",
10383            Unit::Strip => "SR",
10384            Unit::Stick => "STC",
10385            Unit::StoneUk => "STI",
10386            Unit::StickCigarette => "STK",
10387            Unit::StandardLitre => "STL",
10388            Unit::TonUsOrShortTonUkUs => "STN",
10389            Unit::Straw => "STW",
10390            Unit::Skein => "SW",
10391            Unit::Shipment => "SX",
10392            Unit::Syringe => "SYR",
10393            Unit::TelecommunicationLineInService => "T0",
10394            Unit::ThousandPiece => "T3",
10395            Unit::KiloampereHourThousandAmpereHour => "TAH",
10396            Unit::TotalAcidNumber => "TAN",
10397            Unit::ThousandSquareInch => "TI",
10398            Unit::MetricTonIncludingContainer => "TIC",
10399            Unit::MetricTonIncludingInnerPackaging => "TIP",
10400            Unit::TonneKilometre => "TKM",
10401            Unit::KilogramImportedMeatLessOffal => "TMS",
10402            Unit::TonneMetricTon => "TNE",
10403            Unit::TenPack => "TP",
10404            Unit::TeethPerInch => "TPI",
10405            Unit::TenPair => "TPR",
10406            Unit::ThousandCubicMetrePerDay => "TQD",
10407            Unit::TrillionEur => "TRL",
10408            Unit::TenSet => "TST",
10409            Unit::TenThousandSticks => "TTS",
10410            Unit::Treatment => "U1",
10411            Unit::Tablet => "U2",
10412            Unit::TelecommunicationLineInServiceAverage => "UB",
10413            Unit::TelecommunicationPort => "UC",
10414            Unit::VoltAmperePerKilogram => "VA",
10415            Unit::Volt => "VLT",
10416            Unit::PercentVolume => "VP",
10417            Unit::WetKilo => "W2",
10418            Unit::WattPerKilogram => "WA",
10419            Unit::WetPound => "WB",
10420            Unit::Cord => "WCD",
10421            Unit::WetTon => "WE",
10422            Unit::Weber => "WEB",
10423            Unit::Week => "WEE",
10424            Unit::WineGallon => "WG",
10425            Unit::WattHour => "WHR",
10426            Unit::WorkingMonth => "WM",
10427            Unit::Standard => "WSD",
10428            Unit::Watt => "WTT",
10429            Unit::GuntersChain => "X1",
10430            Unit::SquareYard => "YDK",
10431            Unit::CubicYard => "YDQ",
10432            Unit::Yard => "YRD",
10433            Unit::HangingContainer => "Z11",
10434            Unit::Nanomole => "Z9",
10435            Unit::Page => "ZP",
10436            Unit::MutuallyDefined => "ZZ",
10437            Unit::DrumSteel => "X1A",
10438            Unit::DrumAluminium => "X1B",
10439            Unit::DrumPlywood => "X1D",
10440            Unit::ContainerFlexible => "X1F",
10441            Unit::DrumFibre => "X1G",
10442            Unit::DrumWooden => "X1W",
10443            Unit::BarrelWooden => "X2C",
10444            Unit::JerricanSteel => "X3A",
10445            Unit::JerricanPlastic => "X3H",
10446            Unit::BagSuperBulk => "X43",
10447            Unit::BagPolybag => "X44",
10448            Unit::BoxSteel => "X4A",
10449            Unit::BoxAluminium => "X4B",
10450            Unit::BoxNaturalWood => "X4C",
10451            Unit::BoxPlywood => "X4D",
10452            Unit::BoxReconstitutedWood => "X4F",
10453            Unit::BoxFibreboard => "X4G",
10454            Unit::BoxPlastic => "X4H",
10455            Unit::BagWovenPlastic => "X5H",
10456            Unit::BagTextile => "X5L",
10457            Unit::BagPaper => "X5M",
10458            Unit::CompositePackagingPlasticReceptacle => "X6H",
10459            Unit::CompositePackagingGlassReceptacle => "X6P",
10460            Unit::CaseCar => "X7A",
10461            Unit::CaseWooden => "X7B",
10462            Unit::PalletWooden => "X8A",
10463            Unit::CrateWooden => "X8B",
10464            Unit::BundleWooden => "X8C",
10465            Unit::IntermediateBulkContainerRigidPlastic => "XAA",
10466            Unit::ReceptacleFibre => "XAB",
10467            Unit::ReceptaclePaper => "XAC",
10468            Unit::ReceptacleWooden => "XAD",
10469            Unit::Aerosol => "XAE",
10470            Unit::PalletModularCollars80cms60cms => "XAF",
10471            Unit::PalletShrinkwrapped => "XAG",
10472            Unit::Pallet100cms110cms => "XAH",
10473            Unit::Clamshell => "XAI",
10474            Unit::Cone => "XAJ",
10475            Unit::Ball_Dup => "XAL",
10476            Unit::AmpouleNonProtected => "XAM",
10477            Unit::AmpouleProtected => "XAP",
10478            Unit::Atomizer => "XAT",
10479            Unit::Capsule => "XAV",
10480            Unit::Belt => "XB4",
10481            Unit::Barrel => "XBA",
10482            Unit::Bobbin => "XBB",
10483            Unit::BottlecrateBottlerack => "XBC",
10484            Unit::Board => "XBD",
10485            Unit::Bundle => "XBE",
10486            Unit::BalloonNonProtected => "XBF",
10487            Unit::Bag => "XBG",
10488            Unit::Bunch => "XBH",
10489            Unit::Bin => "XBI",
10490            Unit::Bucket => "XBJ",
10491            Unit::Basket => "XBK",
10492            Unit::BaleCompressed => "XBL",
10493            Unit::Basin => "XBM",
10494            Unit::BaleNonCompressed => "XBN",
10495            Unit::BottleNonProtectedCylindrical => "XBO",
10496            Unit::BalloonProtected => "XBP",
10497            Unit::BottleProtectedCylindrical => "XBQ",
10498            Unit::Bar => "XBR",
10499            Unit::BottleNonProtectedBulbous => "XBS",
10500            Unit::Bolt => "XBT",
10501            Unit::Butt => "XBU",
10502            Unit::BottleProtectedBulbous => "XBV",
10503            Unit::BoxForLiquids => "XBW",
10504            Unit::Box => "XBX",
10505            Unit::BoardInBundleBunchTruss => "XBY",
10506            Unit::BarsInBundleBunchTruss => "XBZ",
10507            Unit::CanRectangular => "XCA",
10508            Unit::CrateBeer => "XCB",
10509            Unit::Churn => "XCC",
10510            Unit::CanWithHandleAndSpout => "XCD",
10511            Unit::Creel => "XCE",
10512            Unit::Coffer => "XCF",
10513            Unit::Cage => "XCG",
10514            Unit::Chest => "XCH",
10515            Unit::Canister => "XCI",
10516            Unit::Coffin => "XCJ",
10517            Unit::Cask => "XCK",
10518            Unit::Coil => "XCL",
10519            Unit::Card_Dup => "XCM",
10520            Unit::ContainerNotOtherwiseSpecifiedAsTransportEquipment => "XCN",
10521            Unit::CarboyNonProtected => "XCO",
10522            Unit::CarboyProtected => "XCP",
10523            Unit::Cartridge => "XCQ",
10524            Unit::Crate => "XCR",
10525            Unit::Case => "XCS",
10526            Unit::Carton => "XCT",
10527            Unit::Cup => "XCU",
10528            Unit::Cover => "XCV",
10529            Unit::CageRoll => "XCW",
10530            Unit::CanCylindrical => "XCX",
10531            Unit::Cylinder => "XCY",
10532            Unit::Canvas => "XCZ",
10533            Unit::CrateMultipleLayerPlastic => "XDA",
10534            Unit::CrateMultipleLayerWooden => "XDB",
10535            Unit::CrateMultipleLayerCardboard => "XDC",
10536            Unit::CageCommonwealthHandlingEquipmentPoolChep => "XDG",
10537            Unit::BoxCommonwealthHandlingEquipmentPoolChepEurobox => "XDH",
10538            Unit::DrumIron => "XDI",
10539            Unit::DemijohnNonProtected => "XDJ",
10540            Unit::CrateBulkCardboard => "XDK",
10541            Unit::CrateBulkPlastic => "XDL",
10542            Unit::CrateBulkWooden => "XDM",
10543            Unit::Dispenser => "XDN",
10544            Unit::DemijohnProtected => "XDP",
10545            Unit::Drum => "XDR",
10546            Unit::TrayOneLayerNoCoverPlastic => "XDS",
10547            Unit::TrayOneLayerNoCoverWooden => "XDT",
10548            Unit::TrayOneLayerNoCoverPolystyrene => "XDU",
10549            Unit::TrayOneLayerNoCoverCardboard => "XDV",
10550            Unit::TrayTwoLayersNoCoverPlasticTray => "XDW",
10551            Unit::TrayTwoLayersNoCoverWooden => "XDX",
10552            Unit::TrayTwoLayersNoCoverCardboard => "XDY",
10553            Unit::BagPlastic => "XEC",
10554            Unit::CaseWithPalletBase => "XED",
10555            Unit::CaseWithPalletBaseWooden => "XEE",
10556            Unit::CaseWithPalletBaseCardboard => "XEF",
10557            Unit::CaseWithPalletBasePlastic => "XEG",
10558            Unit::CaseWithPalletBaseMetal => "XEH",
10559            Unit::CaseIsothermic => "XEI",
10560            Unit::Envelope => "XEN",
10561            Unit::Flexibag => "XFB",
10562            Unit::CrateFruit => "XFC",
10563            Unit::CrateFramed => "XFD",
10564            Unit::Flexitank => "XFE",
10565            Unit::Firkin => "XFI",
10566            Unit::Flask => "XFL",
10567            Unit::Footlocker => "XFO",
10568            Unit::Filmpack => "XFP",
10569            Unit::Frame => "XFR",
10570            Unit::Foodtainer => "XFT",
10571            Unit::CartFlatbed => "XFW",
10572            Unit::BagFlexibleContainer => "XFX",
10573            Unit::BottleGas => "XGB",
10574            Unit::Girder => "XGI",
10575            Unit::ContainerGallon => "XGL",
10576            Unit::ReceptacleGlass => "XGR",
10577            Unit::TrayContainingHorizontallyStackedFlatItems => "XGU",
10578            Unit::BagGunny => "XGY",
10579            Unit::GirdersInBundleBunchTruss => "XGZ",
10580            Unit::BasketWithHandlePlastic => "XHA",
10581            Unit::BasketWithHandleWooden => "XHB",
10582            Unit::BasketWithHandleCardboard => "XHC",
10583            Unit::Hogshead => "XHG",
10584            Unit::Hanger => "XHN",
10585            Unit::Hamper => "XHR",
10586            Unit::PackageDisplayWooden => "XIA",
10587            Unit::PackageDisplayCardboard => "XIB",
10588            Unit::PackageDisplayPlastic => "XIC",
10589            Unit::PackageDisplayMetal => "XID",
10590            Unit::PackageShow => "XIE",
10591            Unit::PackageFlow => "XIF",
10592            Unit::PackagePaperWrapped => "XIG",
10593            Unit::DrumPlastic => "XIH",
10594            Unit::PackageCardboardWithBottleGripHoles => "XIK",
10595            Unit::TrayRigidLiddedStackableCenTs144822002 => "XIL",
10596            Unit::Ingot => "XIN",
10597            Unit::IngotsInBundleBunchTruss => "XIZ",
10598            Unit::BagJumbo => "XJB",
10599            Unit::JerricanRectangular => "XJC",
10600            Unit::Jug => "XJG",
10601            Unit::Jar => "XJR",
10602            Unit::Jutebag => "XJT",
10603            Unit::JerricanCylindrical => "XJY",
10604            Unit::Keg => "XKG",
10605            Unit::Kit_Dup => "XKI",
10606            Unit::Luggage => "XLE",
10607            Unit::Log => "XLG",
10608            Unit::Lot => "XLT",
10609            Unit::Lug => "XLU",
10610            Unit::Liftvan => "XLV",
10611            Unit::LogsInBundleBunchTruss => "XLZ",
10612            Unit::CrateMetal => "XMA",
10613            Unit::BagMultiply => "XMB",
10614            Unit::CrateMilk => "XMC",
10615            Unit::ContainerMetal => "XME",
10616            Unit::ReceptacleMetal => "XMR",
10617            Unit::SackMultiWall => "XMS",
10618            Unit::Mat => "XMT",
10619            Unit::ReceptaclePlasticWrapped => "XMW",
10620            Unit::Matchbox => "XMX",
10621            Unit::NotAvailable => "XNA",
10622            Unit::UnpackedOrUnpackaged => "XNE",
10623            Unit::UnpackedOrUnpackagedSingleUnit => "XNF",
10624            Unit::UnpackedOrUnpackagedMultipleUnits => "XNG",
10625            Unit::Nest => "XNS",
10626            Unit::Net => "XNT",
10627            Unit::NetTubePlastic => "XNU",
10628            Unit::NetTubeTextile => "XNV",
10629            Unit::TwoSidedCageOnWheelsWithFixingStrap => "XO1",
10630            Unit::Trolley => "XO2",
10631            Unit::OnewayPalletIso012EuroPallet => "XO3",
10632            Unit::OnewayPalletIso111EuroPallet => "XO4",
10633            Unit::OnewayPalletIso221EuroPallet => "XO5",
10634            Unit::PalletWithExceptionalDimensions => "XO6",
10635            Unit::WoodenPallet40CmX80Cm => "XO7",
10636            Unit::PlasticPalletSrs60CmX80Cm => "XO8",
10637            Unit::PlasticPalletSrs80CmX120Cm => "XO9",
10638            Unit::PalletChep40CmX60Cm => "XOA",
10639            Unit::PalletChep80CmX120Cm => "XOB",
10640            Unit::PalletChep100CmX120Cm => "XOC",
10641            Unit::PalletAs40681993 => "XOD",
10642            Unit::PalletIsoT11 => "XOE",
10643            Unit::PlatformUnspecifiedWeightOrDimension => "XOF",
10644            Unit::PalletIso012EuroPallet => "XOG",
10645            Unit::PalletIso111EuroPallet => "XOH",
10646            Unit::PalletIso221EuroPallet => "XOI",
10647            Unit::_14EuroPallet => "XOJ",
10648            Unit::Block => "XOK",
10649            Unit::_18EuroPallet => "XOL",
10650            Unit::SyntheticPalletIso1 => "XOM",
10651            Unit::SyntheticPalletIso2 => "XON",
10652            Unit::WholesalerPallet => "XOP",
10653            Unit::Pallet80X100Cm => "XOQ",
10654            Unit::Pallet60X100Cm => "XOR",
10655            Unit::OnewayPallet => "XOS",
10656            Unit::Octabin => "XOT",
10657            Unit::ContainerOuter => "XOU",
10658            Unit::ReturnablePallet => "XOV",
10659            Unit::LargeBagPalletSized => "XOW",
10660            Unit::AWheeledPalletWithRaisedRim81X67X135 => "XOX",
10661            Unit::AWheeledPalletWithRaisedRim81X72X135 => "XOY",
10662            Unit::WheeledPalletWithRaisedRim81X60X16 => "XOZ",
10663            Unit::ChepPallet60CmX80Cm => "XP1",
10664            Unit::Pan => "XP2",
10665            Unit::LprPallet60CmX80Cm => "XP3",
10666            Unit::LprPallet80CmX120Cm => "XP4",
10667            Unit::Packet => "XPA",
10668            Unit::PalletBoxCombinedOpenEndedBoxAndPallet => "XPB",
10669            Unit::Parcel => "XPC",
10670            Unit::PalletModularCollars80cms100cms => "XPD",
10671            Unit::PalletModularCollars80cms120cms => "XPE",
10672            Unit::Pen => "XPF",
10673            Unit::Plate => "XPG",
10674            Unit::Pitcher => "XPH",
10675            Unit::Pipe => "XPI",
10676            Unit::Punnet => "XPJ",
10677            Unit::Package => "XPK",
10678            Unit::Pail => "XPL",
10679            Unit::Plank => "XPN",
10680            Unit::Pouch => "XPO",
10681            Unit::Piece_Dup => "XPP",
10682            Unit::ReceptaclePlastic => "XPR",
10683            Unit::Pot => "XPT",
10684            Unit::Tray => "XPU",
10685            Unit::PipesInBundleBunchTruss => "XPV",
10686            Unit::Pallet => "XPX",
10687            Unit::PlatesInBundleBunchTruss => "XPY",
10688            Unit::PlanksInBundleBunchTruss => "XPZ",
10689            Unit::DrumSteelNonRemovableHead => "XQA",
10690            Unit::DrumSteelRemovableHead => "XQB",
10691            Unit::DrumAluminiumNonRemovableHead => "XQC",
10692            Unit::DrumAluminiumRemovableHead => "XQD",
10693            Unit::DrumPlasticNonRemovableHead => "XQF",
10694            Unit::DrumPlasticRemovableHead => "XQG",
10695            Unit::BarrelWoodenBungType => "XQH",
10696            Unit::BarrelWoodenRemovableHead => "XQJ",
10697            Unit::JerricanSteelNonRemovableHead => "XQK",
10698            Unit::JerricanSteelRemovableHead => "XQL",
10699            Unit::JerricanPlasticNonRemovableHead => "XQM",
10700            Unit::JerricanPlasticRemovableHead => "XQN",
10701            Unit::BoxWoodenNaturalWoodOrdinary => "XQP",
10702            Unit::BoxWoodenNaturalWoodWithSiftProofWalls => "XQQ",
10703            Unit::BoxPlasticExpanded => "XQR",
10704            Unit::BoxPlasticSolid => "XQS",
10705            Unit::Rod => "XRD",
10706            Unit::Ring => "XRG",
10707            Unit::RackClothingHanger => "XRJ",
10708            Unit::Rack => "XRK",
10709            Unit::Reel => "XRL",
10710            Unit::Roll => "XRO",
10711            Unit::Rednet => "XRT",
10712            Unit::RodsInBundleBunchTruss => "XRZ",
10713            Unit::Sack => "XSA",
10714            Unit::Slab => "XSB",
10715            Unit::CrateShallow => "XSC",
10716            Unit::Spindle => "XSD",
10717            Unit::SeaChest => "XSE",
10718            Unit::Sachet => "XSH",
10719            Unit::Skid => "XSI",
10720            Unit::CaseSkeleton => "XSK",
10721            Unit::Slipsheet => "XSL",
10722            Unit::Sheetmetal => "XSM",
10723            Unit::Spool => "XSO",
10724            Unit::SheetPlasticWrapping => "XSP",
10725            Unit::CaseSteel => "XSS",
10726            Unit::Sheet => "XST",
10727            Unit::Suitcase => "XSU",
10728            Unit::EnvelopeSteel => "XSV",
10729            Unit::Shrinkwrapped => "XSW",
10730            Unit::Set_Dup => "XSX",
10731            Unit::Sleeve => "XSY",
10732            Unit::SheetsInBundleBunchTruss => "XSZ",
10733            Unit::Tablet_Dup => "XT1",
10734            Unit::Tub => "XTB",
10735            Unit::TeaChest => "XTC",
10736            Unit::TubeCollapsible => "XTD",
10737            Unit::Tyre_Dup => "XTE",
10738            Unit::TankContainerGeneric => "XTG",
10739            Unit::Tierce => "XTI",
10740            Unit::TankRectangular => "XTK",
10741            Unit::TubWithLid => "XTL",
10742            Unit::Tin => "XTN",
10743            Unit::Tun => "XTO",
10744            Unit::Trunk => "XTR",
10745            Unit::Truss => "XTS",
10746            Unit::BagTote => "XTT",
10747            Unit::Tube => "XTU",
10748            Unit::TubeWithNozzle => "XTV",
10749            Unit::PalletTriwall => "XTW",
10750            Unit::TankCylindrical => "XTY",
10751            Unit::TubesInBundleBunchTruss => "XTZ",
10752            Unit::Uncaged => "XUC",
10753            Unit::Unit => "XUN",
10754            Unit::Vat => "XVA",
10755            Unit::BulkGasAt1031MbarAnd15C => "XVG",
10756            Unit::Vial => "XVI",
10757            Unit::Vanpack => "XVK",
10758            Unit::BulkLiquid => "XVL",
10759            Unit::Vehicle => "XVN",
10760            Unit::BulkSolidLargeParticlesNodules => "XVO",
10761            Unit::VacuumPacked => "XVP",
10762            Unit::BulkLiquefiedGasAtAbnormalTemperaturePressure => "XVQ",
10763            Unit::BulkSolidGranularParticlesGrains => "XVR",
10764            Unit::BulkScrapMetal => "XVS",
10765            Unit::BulkSolidFineParticlesPowders => "XVY",
10766            Unit::IntermediateBulkContainer => "XWA",
10767            Unit::Wickerbottle => "XWB",
10768            Unit::IntermediateBulkContainerSteel => "XWC",
10769            Unit::IntermediateBulkContainerAluminium => "XWD",
10770            Unit::IntermediateBulkContainerMetal => "XWF",
10771            Unit::IntermediateBulkContainerSteelPressurised10Kpa => "XWG",
10772            Unit::IntermediateBulkContainerAluminiumPressurised10Kpa => "XWH",
10773            Unit::IntermediateBulkContainerMetalPressure10Kpa => "XWJ",
10774            Unit::IntermediateBulkContainerSteelLiquid => "XWK",
10775            Unit::IntermediateBulkContainerAluminiumLiquid => "XWL",
10776            Unit::IntermediateBulkContainerMetalLiquid => "XWM",
10777            Unit::IntermediateBulkContainerWovenPlasticWithoutCoatLiner => "XWN",
10778            Unit::IntermediateBulkContainerWovenPlasticCoated => "XWP",
10779            Unit::IntermediateBulkContainerWovenPlasticWithLiner => "XWQ",
10780            Unit::IntermediateBulkContainerWovenPlasticCoatedAndLiner => "XWR",
10781            Unit::IntermediateBulkContainerPlasticFilm => "XWS",
10782            Unit::IntermediateBulkContainerTextileWithOutCoatLiner => "XWT",
10783            Unit::IntermediateBulkContainerNaturalWoodWithInnerLiner => "XWU",
10784            Unit::IntermediateBulkContainerTextileCoated => "XWV",
10785            Unit::IntermediateBulkContainerTextileWithLiner => "XWW",
10786            Unit::IntermediateBulkContainerTextileCoatedAndLiner => "XWX",
10787            Unit::IntermediateBulkContainerPlywoodWithInnerLiner => "XWY",
10788            Unit::IntermediateBulkContainerReconstitutedWoodWithInnerLiner => "XWZ",
10789            Unit::BagWovenPlasticWithoutInnerCoatLiner => "XXA",
10790            Unit::BagWovenPlasticSiftProof => "XXB",
10791            Unit::BagWovenPlasticWaterResistant => "XXC",
10792            Unit::BagPlasticsFilm => "XXD",
10793            Unit::BagTextileWithoutInnerCoatLiner => "XXF",
10794            Unit::BagTextileSiftProof => "XXG",
10795            Unit::BagTextileWaterResistant => "XXH",
10796            Unit::BagPaperMultiWall => "XXJ",
10797            Unit::BagPaperMultiWallWaterResistant => "XXK",
10798            Unit::CompositePackagingPlasticReceptacleInSteelDrum => "XYA",
10799            Unit::CompositePackagingPlasticReceptacleInSteelCrateBox => "XYB",
10800            Unit::CompositePackagingPlasticReceptacleInAluminiumDrum => "XYC",
10801            Unit::CompositePackagingPlasticReceptacleInAluminiumCrate => "XYD",
10802            Unit::CompositePackagingPlasticReceptacleInWoodenBox => "XYF",
10803            Unit::CompositePackagingPlasticReceptacleInPlywoodDrum => "XYG",
10804            Unit::CompositePackagingPlasticReceptacleInPlywoodBox => "XYH",
10805            Unit::CompositePackagingPlasticReceptacleInFibreDrum => "XYJ",
10806            Unit::CompositePackagingPlasticReceptacleInFibreboardBox => "XYK",
10807            Unit::CompositePackagingPlasticReceptacleInPlasticDrum => "XYL",
10808            Unit::CompositePackagingPlasticReceptacleInSolidPlasticBox => "XYM",
10809            Unit::CompositePackagingGlassReceptacleInSteelDrum => "XYN",
10810            Unit::CompositePackagingGlassReceptacleInSteelCrateBox => "XYP",
10811            Unit::CompositePackagingGlassReceptacleInAluminiumDrum => "XYQ",
10812            Unit::CompositePackagingGlassReceptacleInAluminiumCrate => "XYR",
10813            Unit::CompositePackagingGlassReceptacleInWoodenBox => "XYS",
10814            Unit::CompositePackagingGlassReceptacleInPlywoodDrum => "XYT",
10815            Unit::CompositePackagingGlassReceptacleInWickerworkHamper => "XYV",
10816            Unit::CompositePackagingGlassReceptacleInFibreDrum => "XYW",
10817            Unit::CompositePackagingGlassReceptacleInFibreboardBox => "XYX",
10818            Unit::CompositePackagingGlassReceptacleInExpandablePlasticPack => "XYY",
10819            Unit::CompositePackagingGlassReceptacleInSolidPlasticPack => "XYZ",
10820            Unit::IntermediateBulkContainerPaperMultiWall => "XZA",
10821            Unit::BagLarge => "XZB",
10822            Unit::IntermediateBulkContainerPaperMultiWallWaterResistant => "XZC",
10823            Unit::IntermediateBulkContainerRigidPlasticWithStructuralEquipmentSolids => "XZD",
10824            Unit::IntermediateBulkContainerRigidPlasticFreestandingSolids => "XZF",
10825            Unit::IntermediateBulkContainerRigidPlasticWithStructuralEquipmentPressurised => "XZG",
10826            Unit::IntermediateBulkContainerRigidPlasticFreestandingPressurised => "XZH",
10827            Unit::IntermediateBulkContainerRigidPlasticWithStructuralEquipmentLiquids => "XZJ",
10828            Unit::IntermediateBulkContainerRigidPlasticFreestandingLiquids => "XZK",
10829            Unit::IntermediateBulkContainerCompositeRigidPlasticSolids => "XZL",
10830            Unit::IntermediateBulkContainerCompositeFlexiblePlasticSolids => "XZM",
10831            Unit::IntermediateBulkContainerCompositeRigidPlasticPressurised => "XZN",
10832            Unit::IntermediateBulkContainerCompositeFlexiblePlasticPressurised => "XZP",
10833            Unit::IntermediateBulkContainerCompositeRigidPlasticLiquids => "XZQ",
10834            Unit::IntermediateBulkContainerCompositeFlexiblePlasticLiquids => "XZR",
10835            Unit::IntermediateBulkContainerComposite => "XZS",
10836            Unit::IntermediateBulkContainerFibreboard => "XZT",
10837            Unit::IntermediateBulkContainerFlexible => "XZU",
10838            Unit::IntermediateBulkContainerMetalOtherThanSteel => "XZV",
10839            Unit::IntermediateBulkContainerNaturalWood => "XZW",
10840            Unit::IntermediateBulkContainerPlywood => "XZX",
10841            Unit::IntermediateBulkContainerReconstitutedWood => "XZY",
10842            Unit::MutuallyDefined_Dup => "XZZ",
10843        }
10844    }
10845}
10846
10847impl crate::Description for Unit {
10848    fn description(self) -> &'static str {
10849        match self {
10850            Unit::Group => "group",
10851            Unit::Outfit => "outfit",
10852            Unit::Ration => "ration",
10853            Unit::Shot => "shot",
10854            Unit::StickMilitary => "stick, military",
10855            Unit::TwentyFootContainer => "twenty foot container",
10856            Unit::FortyFootContainer => "forty foot container",
10857            Unit::DecilitrePerGram => "decilitre per gram",
10858            Unit::GramPerCubicCentimetre => "gram per cubic centimetre",
10859            Unit::TheoreticalPound => "theoretical pound",
10860            Unit::GramPerSquareCentimetre => "gram per square centimetre",
10861            Unit::TheoreticalTon => "theoretical ton",
10862            Unit::KilogramPerSquareMetre => "kilogram per square metre",
10863            Unit::KilopascalSquareMetrePerGram => "kilopascal square metre per gram",
10864            Unit::KilopascalPerMillimetre => "kilopascal per millimetre",
10865            Unit::MillilitrePerSquareCentimetreSecond => "millilitre per square centimetre second",
10866            Unit::OuncePerSquareFoot => "ounce per square foot",
10867            Unit::OuncePerSquareFootPer001inch => "ounce per square foot per 0,01inch",
10868            Unit::MillilitrePerSecond => "millilitre per second",
10869            Unit::MillilitrePerMinute => "millilitre per minute",
10870            Unit::Sitas => "sitas",
10871            Unit::Mesh => "mesh",
10872            Unit::NetKilogram => "net kilogram",
10873            Unit::PartPerMillion => "part per million",
10874            Unit::PercentWeight => "percent weight",
10875            Unit::PartPerBillionUs => "part per billion (US)",
10876            Unit::Millipascal => "millipascal",
10877            Unit::MilliInch => "milli-inch",
10878            Unit::PoundPerSquareInchAbsolute => "pound per square inch absolute",
10879            Unit::Henry => "henry",
10880            Unit::FootPoundForce => "foot pound-force",
10881            Unit::PoundPerCubicFoot => "pound per cubic foot",
10882            Unit::Poise => "poise",
10883            Unit::Stokes => "stokes",
10884            Unit::FixedRate => "fixed rate",
10885            Unit::RadianPerSecond => "radian per second",
10886            Unit::RadianPerSecondSquared => "radian per second squared",
10887            Unit::Roentgen => "roentgen",
10888            Unit::VoltAc => "volt AC",
10889            Unit::VoltDc => "volt DC",
10890            Unit::BritishThermalUnitInternationalTablePerHour => "British thermal unit (international table) per hour",
10891            Unit::CubicCentimetrePerSecond => "cubic centimetre per second",
10892            Unit::CubicFootPerHour => "cubic foot per hour",
10893            Unit::CubicFootPerMinute => "cubic foot per minute",
10894            Unit::CentimetrePerSecond => "centimetre per second",
10895            Unit::Decibel => "decibel",
10896            Unit::Kilobyte => "kilobyte",
10897            Unit::Kilobecquerel => "kilobecquerel",
10898            Unit::Kilocurie => "kilocurie",
10899            Unit::Megagram => "megagram",
10900            Unit::MetrePerMinute => "metre per minute",
10901            Unit::Milliroentgen => "milliroentgen",
10902            Unit::Millivolt => "millivolt",
10903            Unit::Megajoule => "megajoule",
10904            Unit::Manmonth => "manmonth",
10905            Unit::Centistokes => "centistokes",
10906            Unit::Microlitre => "microlitre",
10907            Unit::MicrometreMicron => "micrometre (micron)",
10908            Unit::Milliampere => "milliampere",
10909            Unit::Megabyte => "megabyte",
10910            Unit::MilligramPerHour => "milligram per hour",
10911            Unit::Megabecquerel => "megabecquerel",
10912            Unit::Microfarad => "microfarad",
10913            Unit::NewtonPerMetre => "newton per metre",
10914            Unit::OunceInch => "ounce inch",
10915            Unit::OunceFoot => "ounce foot",
10916            Unit::Picofarad => "picofarad",
10917            Unit::PoundPerHour => "pound per hour",
10918            Unit::TonUsPerHour => "ton (US) per hour",
10919            Unit::KilolitrePerHour => "kilolitre per hour",
10920            Unit::BarrelUsPerMinute => "barrel (US) per minute",
10921            Unit::Batch => "batch",
10922            Unit::MmscfDay => "MMSCF/day",
10923            Unit::HydraulicHorsePower => "hydraulic horse power",
10924            Unit::AmpereSquareMetrePerJouleSecond => "ampere square metre per joule second",
10925            Unit::Angstrom => "angstrom",
10926            Unit::AstronomicalUnit => "astronomical unit",
10927            Unit::Attojoule => "attojoule",
10928            Unit::Barn => "barn",
10929            Unit::BarnPerElectronvolt => "barn per electronvolt",
10930            Unit::BarnPerSteradianElectronvolt => "barn per steradian electronvolt",
10931            Unit::BarnPerSteradian => "barn per steradian",
10932            Unit::BecquerelPerKilogram => "becquerel per kilogram",
10933            Unit::BecquerelPerCubicMetre => "becquerel per cubic metre",
10934            Unit::AmperePerCentimetre => "ampere per centimetre",
10935            Unit::BritishThermalUnitInternationalTablePerSecondSquareFootDegreeRankine => "British thermal unit (international table) per second square foot degree Rankine",
10936            Unit::BritishThermalUnitInternationalTablePerPoundDegreeRankine => "British thermal unit (international table) per pound degree Rankine",
10937            Unit::BritishThermalUnitInternationalTablePerSecondFootDegreeRankine => "British thermal unit (international table) per second foot degree Rankine",
10938            Unit::BritishThermalUnitInternationalTablePerHourSquareFootDegreeRankine => "British thermal unit (international table) per hour square foot degree Rankine",
10939            Unit::CandelaPerSquareMetre => "candela per square metre",
10940            Unit::CoulombMetre => "coulomb metre",
10941            Unit::CoulombMetreSquaredPerVolt => "coulomb metre squared per volt",
10942            Unit::CoulombPerCubicCentimetre => "coulomb per cubic centimetre",
10943            Unit::CoulombPerCubicMetre => "coulomb per cubic metre",
10944            Unit::AmperePerMillimetre => "ampere per millimetre",
10945            Unit::CoulombPerCubicMillimetre => "coulomb per cubic millimetre",
10946            Unit::CoulombPerKilogramSecond => "coulomb per kilogram second",
10947            Unit::CoulombPerMole => "coulomb per mole",
10948            Unit::CoulombPerSquareCentimetre => "coulomb per square centimetre",
10949            Unit::CoulombPerSquareMetre => "coulomb per square metre",
10950            Unit::CoulombPerSquareMillimetre => "coulomb per square millimetre",
10951            Unit::CubicCentimetrePerMole => "cubic centimetre per mole",
10952            Unit::CubicDecimetrePerMole => "cubic decimetre per mole",
10953            Unit::CubicMetrePerCoulomb => "cubic metre per coulomb",
10954            Unit::CubicMetrePerKilogram => "cubic metre per kilogram",
10955            Unit::AmperePerSquareCentimetre => "ampere per square centimetre",
10956            Unit::CubicMetrePerMole => "cubic metre per mole",
10957            Unit::AmperePerSquareMetre => "ampere per square metre",
10958            Unit::CuriePerKilogram => "curie per kilogram",
10959            Unit::DeadweightTonnage => "deadweight tonnage",
10960            Unit::Decalitre => "decalitre",
10961            Unit::Decametre => "decametre",
10962            Unit::Decitex => "decitex",
10963            Unit::DegreeRankine => "degree Rankine",
10964            Unit::Denier => "denier",
10965            Unit::AmpereSquareMetre => "ampere square metre",
10966            Unit::Electronvolt => "electronvolt",
10967            Unit::ElectronvoltPerMetre => "electronvolt per metre",
10968            Unit::ElectronvoltSquareMetre => "electronvolt square metre",
10969            Unit::ElectronvoltSquareMetrePerKilogram => "electronvolt square metre per kilogram",
10970            Unit::_8PartCloudCover => "8-part cloud cover",
10971            Unit::AmperePerSquareMetreKelvinSquared => "ampere per square metre kelvin squared",
10972            Unit::Exajoule => "exajoule",
10973            Unit::FaradPerMetre => "farad per metre",
10974            Unit::AmperePerSquareMillimetre => "ampere per square millimetre",
10975            Unit::Femtojoule => "femtojoule",
10976            Unit::Femtometre => "femtometre",
10977            Unit::FootPerSecondSquared => "foot per second squared",
10978            Unit::FootPoundForcePerSecond => "foot pound-force per second",
10979            Unit::FreightTon => "freight ton",
10980            Unit::Gal => "gal",
10981            Unit::AmpereSecond => "ampere second",
10982            Unit::GigacoulombPerCubicMetre => "gigacoulomb per cubic metre",
10983            Unit::Gigaelectronvolt => "gigaelectronvolt",
10984            Unit::Gigahertz => "gigahertz",
10985            Unit::Gigaohm => "gigaohm",
10986            Unit::GigaohmMetre => "gigaohm metre",
10987            Unit::Gigapascal => "gigapascal",
10988            Unit::Rate => "rate",
10989            Unit::Gigawatt => "gigawatt",
10990            Unit::Gon => "gon",
10991            Unit::GramPerCubicMetre => "gram per cubic metre",
10992            Unit::GramPerMole => "gram per mole",
10993            Unit::Gray => "gray",
10994            Unit::GrayPerSecond => "gray per second",
10995            Unit::Hectopascal => "hectopascal",
10996            Unit::HenryPerMetre => "henry per metre",
10997            Unit::Bit => "bit",
10998            Unit::Ball => "ball",
10999            Unit::BulkPack => "bulk pack",
11000            Unit::Acre => "acre",
11001            Unit::Activity => "activity",
11002            Unit::Byte => "byte",
11003            Unit::AmperePerMetre => "ampere per metre",
11004            Unit::AdditionalMinute => "additional minute",
11005            Unit::AverageMinutePerCall => "average minute per call",
11006            Unit::Fathom => "fathom",
11007            Unit::AccessLine => "access line",
11008            Unit::AmpereHour => "ampere hour",
11009            Unit::Ampere => "ampere",
11010            Unit::Year => "year",
11011            Unit::TroyOunceOrApothecaryOunce => "troy ounce or apothecary ounce",
11012            Unit::AntiHemophilicFactorAhfUnit => "anti-hemophilic factor (AHF) unit",
11013            Unit::Assortment => "assortment",
11014            Unit::AlcoholicStrengthByMass => "alcoholic strength by mass",
11015            Unit::AlcoholicStrengthByVolume => "alcoholic strength by volume",
11016            Unit::StandardAtmosphere => "standard atmosphere",
11017            Unit::AmericanWireGauge => "american wire gauge",
11018            Unit::Assembly => "assembly",
11019            Unit::BritishThermalUnitInternationalTablePerPound => "British thermal unit (international table) per pound",
11020            Unit::BarrelUsPerDay => "barrel (US) per day",
11021            Unit::BitPerSecond => "bit per second",
11022            Unit::JoulePerKilogramKelvin => "joule per kilogram kelvin",
11023            Unit::JoulePerMetre => "joule per metre",
11024            Unit::JoulePerSquareMetre => "joule per square metre",
11025            Unit::JoulePerMetreToFourthPower => "joule per metre to the fourth power",
11026            Unit::JoulePerMole => "joule per mole",
11027            Unit::JoulePerMoleKelvin => "joule per mole kelvin",
11028            Unit::Credit => "credit",
11029            Unit::JouleSecond => "joule second",
11030            Unit::Digit => "digit",
11031            Unit::JouleSquareMetrePerKilogram => "joule square metre per kilogram",
11032            Unit::KelvinPerWatt => "kelvin per watt",
11033            Unit::Kiloampere => "kiloampere",
11034            Unit::KiloamperePerSquareMetre => "kiloampere per square metre",
11035            Unit::KiloamperePerMetre => "kiloampere per metre",
11036            Unit::KilobecquerelPerKilogram => "kilobecquerel per kilogram",
11037            Unit::Kilocoulomb => "kilocoulomb",
11038            Unit::KilocoulombPerCubicMetre => "kilocoulomb per cubic metre",
11039            Unit::KilocoulombPerSquareMetre => "kilocoulomb per square metre",
11040            Unit::Kiloelectronvolt => "kiloelectronvolt",
11041            Unit::BattingPound => "batting pound",
11042            Unit::Gibibit => "gibibit",
11043            Unit::KilogramMetrePerSecond => "kilogram metre per second",
11044            Unit::KilogramMetreSquared => "kilogram metre squared",
11045            Unit::KilogramMetreSquaredPerSecond => "kilogram metre squared per second",
11046            Unit::KilogramPerCubicDecimetre => "kilogram per cubic decimetre",
11047            Unit::KilogramPerLitre => "kilogram per litre",
11048            Unit::BarrelImperial => "barrel, imperial",
11049            Unit::KilojoulePerKelvin => "kilojoule per kelvin",
11050            Unit::KilojoulePerKilogram => "kilojoule per kilogram",
11051            Unit::KilojoulePerKilogramKelvin => "kilojoule per kilogram kelvin",
11052            Unit::KilojoulePerMole => "kilojoule per mole",
11053            Unit::Kilomole => "kilomole",
11054            Unit::KilomolePerCubicMetre => "kilomole per cubic metre",
11055            Unit::Kilonewton => "kilonewton",
11056            Unit::KilonewtonMetre => "kilonewton metre",
11057            Unit::Kiloohm => "kiloohm",
11058            Unit::KiloohmMetre => "kiloohm metre",
11059            Unit::Kilosecond => "kilosecond",
11060            Unit::Kilosiemens => "kilosiemens",
11061            Unit::KilosiemensPerMetre => "kilosiemens per metre",
11062            Unit::KilovoltPerMetre => "kilovolt per metre",
11063            Unit::KiloweberPerMetre => "kiloweber per metre",
11064            Unit::LightYear => "light year",
11065            Unit::LitrePerMole => "litre per mole",
11066            Unit::LumenHour => "lumen hour",
11067            Unit::LumenPerSquareMetre => "lumen per square metre",
11068            Unit::LumenPerWatt => "lumen per watt",
11069            Unit::LumenSecond => "lumen second",
11070            Unit::LuxHour => "lux hour",
11071            Unit::LuxSecond => "lux second",
11072            Unit::MegaamperePerSquareMetre => "megaampere per square metre",
11073            Unit::MegabecquerelPerKilogram => "megabecquerel per kilogram",
11074            Unit::Gigabit => "gigabit",
11075            Unit::MegacoulombPerCubicMetre => "megacoulomb per cubic metre",
11076            Unit::Cycle => "cycle",
11077            Unit::MegacoulombPerSquareMetre => "megacoulomb per square metre",
11078            Unit::Megaelectronvolt => "megaelectronvolt",
11079            Unit::MegagramPerCubicMetre => "megagram per cubic metre",
11080            Unit::Meganewton => "meganewton",
11081            Unit::MeganewtonMetre => "meganewton metre",
11082            Unit::Megaohm => "megaohm",
11083            Unit::MegaohmMetre => "megaohm metre",
11084            Unit::MegasiemensPerMetre => "megasiemens per metre",
11085            Unit::Megavolt => "megavolt",
11086            Unit::MegavoltPerMetre => "megavolt per metre",
11087            Unit::JoulePerCubicMetre => "joule per cubic metre",
11088            Unit::GigabitPerSecond => "gigabit per second",
11089            Unit::ReciprocalMetreSquaredReciprocalSecond => "reciprocal metre squared reciprocal second",
11090            Unit::InchPerLinearFoot => "inch per linear foot",
11091            Unit::MetreToFourthPower => "metre to the fourth power",
11092            Unit::Microampere => "microampere",
11093            Unit::Microbar => "microbar",
11094            Unit::Microcoulomb => "microcoulomb",
11095            Unit::MicrocoulombPerCubicMetre => "microcoulomb per cubic metre",
11096            Unit::MicrocoulombPerSquareMetre => "microcoulomb per square metre",
11097            Unit::MicrofaradPerMetre => "microfarad per metre",
11098            Unit::Microhenry => "microhenry",
11099            Unit::MicrohenryPerMetre => "microhenry per metre",
11100            Unit::Micronewton => "micronewton",
11101            Unit::MicronewtonMetre => "micronewton metre",
11102            Unit::Microohm => "microohm",
11103            Unit::MicroohmMetre => "microohm metre",
11104            Unit::Micropascal => "micropascal",
11105            Unit::Microradian => "microradian",
11106            Unit::Microsecond => "microsecond",
11107            Unit::Microsiemens => "microsiemens",
11108            Unit::BarUnitPressure => "bar [unit of pressure]",
11109            Unit::BaseBox => "base box",
11110            Unit::BoardFoot => "board foot",
11111            Unit::BrakeHorsePower => "brake horse power",
11112            Unit::BillionEur => "billion (EUR)",
11113            Unit::DryBarrelUs => "dry barrel (US)",
11114            Unit::BarrelUs => "barrel (US)",
11115            Unit::HundredBoardFoot => "hundred board foot",
11116            Unit::BeatsPerMinute => "beats per minute",
11117            Unit::Becquerel => "becquerel",
11118            Unit::BritishThermalUnitInternationalTable => "British thermal unit (international table)",
11119            Unit::BushelUs => "bushel (US)",
11120            Unit::BushelUk => "bushel (UK)",
11121            Unit::Call => "call",
11122            Unit::Millifarad => "millifarad",
11123            Unit::Milligal => "milligal",
11124            Unit::MilligramPerMetre => "milligram per metre",
11125            Unit::Milligray => "milligray",
11126            Unit::Millihenry => "millihenry",
11127            Unit::Millijoule => "millijoule",
11128            Unit::MillimetrePerSecond => "millimetre per second",
11129            Unit::MillimetreSquaredPerSecond => "millimetre squared per second",
11130            Unit::Millimole => "millimole",
11131            Unit::MolePerKilogram => "mole per kilogram",
11132            Unit::Millinewton => "millinewton",
11133            Unit::Kibibit => "kibibit",
11134            Unit::MillinewtonPerMetre => "millinewton per metre",
11135            Unit::MilliohmMetre => "milliohm metre",
11136            Unit::MillipascalSecond => "millipascal second",
11137            Unit::Milliradian => "milliradian",
11138            Unit::Millisecond => "millisecond",
11139            Unit::Millisiemens => "millisiemens",
11140            Unit::Millisievert => "millisievert",
11141            Unit::Millitesla => "millitesla",
11142            Unit::MicrovoltPerMetre => "microvolt per metre",
11143            Unit::MillivoltPerMetre => "millivolt per metre",
11144            Unit::Milliwatt => "milliwatt",
11145            Unit::MilliwattPerSquareMetre => "milliwatt per square metre",
11146            Unit::Milliweber => "milliweber",
11147            Unit::Mole => "mole",
11148            Unit::MolePerCubicDecimetre => "mole per cubic decimetre",
11149            Unit::MolePerCubicMetre => "mole per cubic metre",
11150            Unit::Kilobit => "kilobit",
11151            Unit::MolePerLitre => "mole per litre",
11152            Unit::Nanoampere => "nanoampere",
11153            Unit::Nanocoulomb => "nanocoulomb",
11154            Unit::Nanofarad => "nanofarad",
11155            Unit::NanofaradPerMetre => "nanofarad per metre",
11156            Unit::Nanohenry => "nanohenry",
11157            Unit::NanohenryPerMetre => "nanohenry per metre",
11158            Unit::Nanometre => "nanometre",
11159            Unit::NanoohmMetre => "nanoohm metre",
11160            Unit::Nanosecond => "nanosecond",
11161            Unit::Nanotesla => "nanotesla",
11162            Unit::Nanowatt => "nanowatt",
11163            Unit::Neper => "neper",
11164            Unit::NeperPerSecond => "neper per second",
11165            Unit::Picometre => "picometre",
11166            Unit::NewtonMetreSecond => "newton metre second",
11167            Unit::NewtonMetreSquaredPerKilogramSquared => "newton metre squared per kilogram squared",
11168            Unit::NewtonPerSquareMetre => "newton per square metre",
11169            Unit::NewtonPerSquareMillimetre => "newton per square millimetre",
11170            Unit::NewtonSecond => "newton second",
11171            Unit::NewtonSecondPerMetre => "newton second per metre",
11172            Unit::Octave => "octave",
11173            Unit::OhmCentimetre => "ohm centimetre",
11174            Unit::OhmMetre => "ohm metre",
11175            Unit::One => "one",
11176            Unit::Parsec => "parsec",
11177            Unit::PascalPerKelvin => "pascal per kelvin",
11178            Unit::PascalSecond => "pascal second",
11179            Unit::PascalSecondPerCubicMetre => "pascal second per cubic metre",
11180            Unit::PascalSecondPerMetre => "pascal second per metre",
11181            Unit::Petajoule => "petajoule",
11182            Unit::Phon => "phon",
11183            Unit::Centipoise => "centipoise",
11184            Unit::Picoampere => "picoampere",
11185            Unit::Picocoulomb => "picocoulomb",
11186            Unit::PicofaradPerMetre => "picofarad per metre",
11187            Unit::Picohenry => "picohenry",
11188            Unit::KilobitPerSecond => "kilobit per second",
11189            Unit::Picowatt => "picowatt",
11190            Unit::PicowattPerSquareMetre => "picowatt per square metre",
11191            Unit::PoundForce => "pound-force",
11192            Unit::KilovoltAmpereHour => "kilovolt ampere hour",
11193            Unit::MillicoulombPerKilogram => "millicoulomb per kilogram",
11194            Unit::Rad => "rad",
11195            Unit::Radian => "radian",
11196            Unit::RadianSquareMetrePerMole => "radian square metre per mole",
11197            Unit::RadianSquareMetrePerKilogram => "radian square metre per kilogram",
11198            Unit::RadianPerMetre => "radian per metre",
11199            Unit::ReciprocalAngstrom => "reciprocal angstrom",
11200            Unit::ReciprocalCubicMetre => "reciprocal cubic metre",
11201            Unit::ReciprocalCubicMetrePerSecond => "reciprocal cubic metre per second",
11202            Unit::ReciprocalElectronVoltPerCubicMetre => "reciprocal electron volt per cubic metre",
11203            Unit::ReciprocalHenry => "reciprocal henry",
11204            Unit::CoilGroup => "coil group",
11205            Unit::ReciprocalJoulePerCubicMetre => "reciprocal joule per cubic metre",
11206            Unit::ReciprocalKelvinOrKelvinToPowerMinusOne => "reciprocal kelvin or kelvin to the power minus one",
11207            Unit::ReciprocalMetre => "reciprocal metre",
11208            Unit::ReciprocalSquareMetre => "reciprocal square metre",
11209            Unit::ReciprocalMinute => "reciprocal minute",
11210            Unit::ReciprocalMole => "reciprocal mole",
11211            Unit::ReciprocalPascalOrPascalToPowerMinusOne => "reciprocal pascal or pascal to the power minus one",
11212            Unit::ReciprocalSecond => "reciprocal second",
11213            Unit::ReciprocalSecondPerMetreSquared => "reciprocal second per metre squared",
11214            Unit::CarryingCapacityInMetricTon => "carrying capacity in metric ton",
11215            Unit::Candela => "candela",
11216            Unit::DegreeCelsius => "degree Celsius",
11217            Unit::Hundred => "hundred",
11218            Unit::Card => "card",
11219            Unit::Centigram => "centigram",
11220            Unit::CoulombPerKilogram => "coulomb per kilogram",
11221            Unit::HundredLeave => "hundred leave",
11222            Unit::Centilitre => "centilitre",
11223            Unit::SquareCentimetre => "square centimetre",
11224            Unit::CubicCentimetre => "cubic centimetre",
11225            Unit::Centimetre => "centimetre",
11226            Unit::HundredPack => "hundred pack",
11227            Unit::CentalUk => "cental (UK)",
11228            Unit::Coulomb => "coulomb",
11229            Unit::ContentGram => "content gram",
11230            Unit::MetricCarat => "metric carat",
11231            Unit::ContentTonMetric => "content ton (metric)",
11232            Unit::Curie => "curie",
11233            Unit::HundredPoundCwtHundredWeightUs => "hundred pound (cwt) / hundred weight (US)",
11234            Unit::HundredWeightUk => "hundred weight (UK)",
11235            Unit::KilowattHourPerHour => "kilowatt hour per hour",
11236            Unit::LotUnitWeight => "lot [unit of weight]",
11237            Unit::ReciprocalSecondPerSteradian => "reciprocal second per steradian",
11238            Unit::SiemensPerMetre => "siemens per metre",
11239            Unit::Mebibit => "mebibit",
11240            Unit::SiemensSquareMetrePerMole => "siemens square metre per mole",
11241            Unit::Sievert => "sievert",
11242            Unit::Sone => "sone",
11243            Unit::SquareCentimetrePerErg => "square centimetre per erg",
11244            Unit::SquareCentimetrePerSteradianErg => "square centimetre per steradian erg",
11245            Unit::MetreKelvin => "metre kelvin",
11246            Unit::SquareMetreKelvinPerWatt => "square metre kelvin per watt",
11247            Unit::ReciprocalSecondPerSteradianMetreSquared => "reciprocal second per steradian metre squared",
11248            Unit::SquareMetrePerJoule => "square metre per joule",
11249            Unit::SquareMetrePerKilogram => "square metre per kilogram",
11250            Unit::SquareMetrePerMole => "square metre per mole",
11251            Unit::PenGramProtein => "pen gram (protein)",
11252            Unit::SquareMetrePerSteradian => "square metre per steradian",
11253            Unit::SquareMetrePerSteradianJoule => "square metre per steradian joule",
11254            Unit::SquareMetrePerVoltSecond => "square metre per volt second",
11255            Unit::Steradian => "steradian",
11256            Unit::Terahertz => "terahertz",
11257            Unit::Terajoule => "terajoule",
11258            Unit::Terawatt => "terawatt",
11259            Unit::TerawattHour => "terawatt hour",
11260            Unit::Tesla => "tesla",
11261            Unit::Tex => "tex",
11262            Unit::Megabit => "megabit",
11263            Unit::TonnePerCubicMetre => "tonne per cubic metre",
11264            Unit::TropicalYear => "tropical year",
11265            Unit::UnifiedAtomicMassUnit => "unified atomic mass unit",
11266            Unit::Var => "var",
11267            Unit::VoltSquaredPerKelvinSquared => "volt squared per kelvin squared",
11268            Unit::VoltAmpere => "volt - ampere",
11269            Unit::VoltPerCentimetre => "volt per centimetre",
11270            Unit::VoltPerKelvin => "volt per kelvin",
11271            Unit::MillivoltPerKelvin => "millivolt per kelvin",
11272            Unit::KilogramPerSquareCentimetre => "kilogram per square centimetre",
11273            Unit::VoltPerMetre => "volt per metre",
11274            Unit::VoltPerMillimetre => "volt per millimetre",
11275            Unit::WattPerKelvin => "watt per kelvin",
11276            Unit::WattPerMetreKelvin => "watt per metre kelvin",
11277            Unit::WattPerSquareMetre => "watt per square metre",
11278            Unit::WattPerSquareMetreKelvin => "watt per square metre kelvin",
11279            Unit::WattPerSquareMetreKelvinToFourthPower => "watt per square metre kelvin to the fourth power",
11280            Unit::WattPerSteradian => "watt per steradian",
11281            Unit::WattPerSteradianSquareMetre => "watt per steradian square metre",
11282            Unit::WeberPerMetre => "weber per metre",
11283            Unit::RoentgenPerSecond => "roentgen per second",
11284            Unit::WeberPerMillimetre => "weber per millimetre",
11285            Unit::MinuteUnitAngle => "minute [unit of angle]",
11286            Unit::SecondUnitAngle => "second [unit of angle]",
11287            Unit::Book => "book",
11288            Unit::Round => "round",
11289            Unit::NumberWords => "number of words",
11290            Unit::InchToFourthPower => "inch to the fourth power",
11291            Unit::JouleSquareMetre => "joule square metre",
11292            Unit::KilogramPerMole => "kilogram per mole",
11293            Unit::Megacoulomb => "megacoulomb",
11294            Unit::MegajoulePerSecond => "megajoule per second",
11295            Unit::Microwatt => "microwatt",
11296            Unit::Microtesla => "microtesla",
11297            Unit::Microvolt => "microvolt",
11298            Unit::MillinewtonMetre => "millinewton metre",
11299            Unit::MicrowattPerSquareMetre => "microwatt per square metre",
11300            Unit::Millicoulomb => "millicoulomb",
11301            Unit::MillimolePerKilogram => "millimole per kilogram",
11302            Unit::MillicoulombPerCubicMetre => "millicoulomb per cubic metre",
11303            Unit::MillicoulombPerSquareMetre => "millicoulomb per square metre",
11304            Unit::Rem => "rem",
11305            Unit::SecondPerCubicMetre => "second per cubic metre",
11306            Unit::SecondPerCubicMetreRadian => "second per cubic metre radian",
11307            Unit::JoulePerGram => "joule per gram",
11308            Unit::Decare => "decare",
11309            Unit::TenDay => "ten day",
11310            Unit::Day => "day",
11311            Unit::DryPound => "dry pound",
11312            Unit::DecibelMilliwatts => "Decibel-milliwatts",
11313            Unit::DecibelWatt => "Decibel watt",
11314            Unit::DegreeUnitAngle => "degree [unit of angle]",
11315            Unit::Decade => "decade",
11316            Unit::Decigram => "decigram",
11317            Unit::Decagram => "decagram",
11318            Unit::Decilitre => "decilitre",
11319            Unit::CubicDecametre => "cubic decametre",
11320            Unit::SquareDecimetre => "square decimetre",
11321            Unit::StandardKilolitre => "standard kilolitre",
11322            Unit::CubicDecimetre => "cubic decimetre",
11323            Unit::Decimetre => "decimetre",
11324            Unit::DecinewtonMetre => "decinewton metre",
11325            Unit::DozenPiece => "dozen piece",
11326            Unit::DozenPair => "dozen pair",
11327            Unit::DisplacementTonnage => "displacement tonnage",
11328            Unit::DramUs => "dram (US)",
11329            Unit::DramUk => "dram (UK)",
11330            Unit::DozenRoll => "dozen roll",
11331            Unit::DryTon => "dry ton",
11332            Unit::Decitonne => "decitonne",
11333            Unit::Pennyweight => "pennyweight",
11334            Unit::Dozen => "dozen",
11335            Unit::DozenPack => "dozen pack",
11336            Unit::NewtonPerSquareCentimetre => "newton per square centimetre",
11337            Unit::MegawattHourPerHour => "megawatt hour per hour",
11338            Unit::MegawattPerHertz => "megawatt per hertz",
11339            Unit::MilliampereHour => "milliampere hour",
11340            Unit::DegreeDay => "degree day",
11341            Unit::Mille => "mille",
11342            Unit::KilocalorieInternationalTable => "kilocalorie (international table)",
11343            Unit::KilocalorieThermochemicalPerHour => "kilocalorie (thermochemical) per hour",
11344            Unit::MillionBtuItPerHour => "million Btu(IT) per hour",
11345            Unit::CubicFootPerSecond => "cubic foot per second",
11346            Unit::TonnePerHour => "tonne per hour",
11347            Unit::Ping => "ping",
11348            Unit::MegabitPerSecond => "megabit per second",
11349            Unit::Shares => "shares",
11350            Unit::Teu => "TEU",
11351            Unit::Tyre => "tyre",
11352            Unit::ActiveUnit => "active unit",
11353            Unit::Dose => "dose",
11354            Unit::AirDryTon => "air dry ton",
11355            Unit::Strand => "strand",
11356            Unit::SquareMetrePerLitre => "square metre per litre",
11357            Unit::LitrePerHour => "litre per hour",
11358            Unit::FootPerThousand => "foot per thousand",
11359            Unit::Gigabyte => "gigabyte",
11360            Unit::Terabyte => "terabyte",
11361            Unit::Petabyte => "petabyte",
11362            Unit::Pixel => "pixel",
11363            Unit::Megapixel => "megapixel",
11364            Unit::DotsPerInch => "dots per inch",
11365            Unit::GrossKilogram => "gross kilogram",
11366            Unit::PartPerHundredThousand => "part per hundred thousand",
11367            Unit::KilogramForcePerSquareMillimetre => "kilogram-force per square millimetre",
11368            Unit::KilogramForcePerSquareCentimetre => "kilogram-force per square centimetre",
11369            Unit::JoulePerSquareCentimetre => "joule per square centimetre",
11370            Unit::KilogramForceMetrePerSquareCentimetre => "kilogram-force metre per square centimetre",
11371            Unit::Milliohm => "milliohm",
11372            Unit::KilowattHourPerCubicMetre => "kilowatt hour per cubic metre",
11373            Unit::KilowattHourPerKelvin => "kilowatt hour per kelvin",
11374            Unit::ServiceUnit => "service unit",
11375            Unit::WorkingDay => "working day",
11376            Unit::AccountingUnit => "accounting unit",
11377            Unit::Job => "job",
11378            Unit::RunFoot => "run foot",
11379            Unit::Test => "test",
11380            Unit::Trip => "trip",
11381            Unit::Use => "use",
11382            Unit::Well => "well",
11383            Unit::Zone => "zone",
11384            Unit::ExabitPerSecond => "exabit per second",
11385            Unit::Exbibyte => "exbibyte",
11386            Unit::Pebibyte => "pebibyte",
11387            Unit::Tebibyte => "tebibyte",
11388            Unit::Gibibyte => "gibibyte",
11389            Unit::Mebibyte => "mebibyte",
11390            Unit::Kibibyte => "kibibyte",
11391            Unit::ExbibitPerMetre => "exbibit per metre",
11392            Unit::ExbibitPerSquareMetre => "exbibit per square metre",
11393            Unit::ExbibitPerCubicMetre => "exbibit per cubic metre",
11394            Unit::GigabytePerSecond => "gigabyte per second",
11395            Unit::GibibitPerMetre => "gibibit per metre",
11396            Unit::GibibitPerSquareMetre => "gibibit per square metre",
11397            Unit::GibibitPerCubicMetre => "gibibit per cubic metre",
11398            Unit::KibibitPerMetre => "kibibit per metre",
11399            Unit::KibibitPerSquareMetre => "kibibit per square metre",
11400            Unit::KibibitPerCubicMetre => "kibibit per cubic metre",
11401            Unit::MebibitPerMetre => "mebibit per metre",
11402            Unit::MebibitPerSquareMetre => "mebibit per square metre",
11403            Unit::MebibitPerCubicMetre => "mebibit per cubic metre",
11404            Unit::Petabit => "petabit",
11405            Unit::PetabitPerSecond => "petabit per second",
11406            Unit::PebibitPerMetre => "pebibit per metre",
11407            Unit::PebibitPerSquareMetre => "pebibit per square metre",
11408            Unit::PebibitPerCubicMetre => "pebibit per cubic metre",
11409            Unit::Terabit => "terabit",
11410            Unit::TerabitPerSecond => "terabit per second",
11411            Unit::TebibitPerMetre => "tebibit per metre",
11412            Unit::TebibitPerCubicMetre => "tebibit per cubic metre",
11413            Unit::TebibitPerSquareMetre => "tebibit per square metre",
11414            Unit::BitPerMetre => "bit per metre",
11415            Unit::BitPerSquareMetre => "bit per square metre",
11416            Unit::ReciprocalCentimetre => "reciprocal centimetre",
11417            Unit::ReciprocalDay => "reciprocal day",
11418            Unit::CubicDecimetrePerHour => "cubic decimetre per hour",
11419            Unit::KilogramPerHour => "kilogram per hour",
11420            Unit::KilomolePerSecond => "kilomole per second",
11421            Unit::MolePerSecond => "mole per second",
11422            Unit::DegreePerSecond => "degree per second",
11423            Unit::MillimetrePerDegreeCelciusMetre => "millimetre per degree Celcius metre",
11424            Unit::DegreeCelsiusPerKelvin => "degree Celsius per kelvin",
11425            Unit::HectopascalPerBar => "hectopascal per bar",
11426            Unit::Each => "each",
11427            Unit::ElectronicMailBox => "electronic mail box",
11428            Unit::EquivalentGallon => "equivalent gallon",
11429            Unit::BitPerCubicMetre => "bit per cubic metre",
11430            Unit::KelvinPerKelvin => "kelvin per kelvin",
11431            Unit::KilopascalPerBar => "kilopascal per bar",
11432            Unit::MillibarPerBar => "millibar per bar",
11433            Unit::MegapascalPerBar => "megapascal per bar",
11434            Unit::PoisePerBar => "poise per bar",
11435            Unit::PascalPerBar => "pascal per bar",
11436            Unit::MilliamperePerInch => "milliampere per inch",
11437            Unit::KelvinPerHour => "kelvin per hour",
11438            Unit::KelvinPerMinute => "kelvin per minute",
11439            Unit::KelvinPerSecond => "kelvin per second",
11440            Unit::Slug => "slug",
11441            Unit::GramPerKelvin => "gram per kelvin",
11442            Unit::KilogramPerKelvin => "kilogram per kelvin",
11443            Unit::MilligramPerKelvin => "milligram per kelvin",
11444            Unit::PoundForcePerFoot => "pound-force per foot",
11445            Unit::KilogramSquareCentimetre => "kilogram square centimetre",
11446            Unit::KilogramSquareMillimetre => "kilogram square millimetre",
11447            Unit::PoundInchSquared => "pound inch squared",
11448            Unit::PoundForceInch => "pound-force inch",
11449            Unit::PoundForceFootPerAmpere => "pound-force foot per ampere",
11450            Unit::GramPerCubicDecimetre => "gram per cubic decimetre",
11451            Unit::KilogramPerKilomol => "kilogram per kilomol",
11452            Unit::GramPerHertz => "gram per hertz",
11453            Unit::GramPerDay => "gram per day",
11454            Unit::GramPerHour => "gram per hour",
11455            Unit::GramPerMinute => "gram per minute",
11456            Unit::GramPerSecond => "gram per second",
11457            Unit::KilogramPerDay => "kilogram per day",
11458            Unit::KilogramPerMinute => "kilogram per minute",
11459            Unit::MilligramPerDay => "milligram per day",
11460            Unit::MilligramPerMinute => "milligram per minute",
11461            Unit::MilligramPerSecond => "milligram per second",
11462            Unit::GramPerDayKelvin => "gram per day kelvin",
11463            Unit::GramPerHourKelvin => "gram per hour kelvin",
11464            Unit::GramPerMinuteKelvin => "gram per minute kelvin",
11465            Unit::GramPerSecondKelvin => "gram per second kelvin",
11466            Unit::KilogramPerDayKelvin => "kilogram per day kelvin",
11467            Unit::KilogramPerHourKelvin => "kilogram per hour kelvin",
11468            Unit::KilogramPerMinuteKelvin => "kilogram per minute kelvin",
11469            Unit::KilogramPerSecondKelvin => "kilogram per second kelvin",
11470            Unit::MilligramPerDayKelvin => "milligram per day kelvin",
11471            Unit::MilligramPerHourKelvin => "milligram per hour kelvin",
11472            Unit::MilligramPerMinuteKelvin => "milligram per minute kelvin",
11473            Unit::MilligramPerSecondKelvin => "milligram per second kelvin",
11474            Unit::NewtonPerMillimetre => "newton per millimetre",
11475            Unit::PoundForcePerInch => "pound-force per inch",
11476            Unit::RodUnitDistance => "rod [unit of distance]",
11477            Unit::MicrometrePerKelvin => "micrometre per kelvin",
11478            Unit::CentimetrePerKelvin => "centimetre per kelvin",
11479            Unit::MetrePerKelvin => "metre per kelvin",
11480            Unit::MillimetrePerKelvin => "millimetre per kelvin",
11481            Unit::MilliohmPerMetre => "milliohm per metre",
11482            Unit::OhmPerMileStatuteMile => "ohm per mile (statute mile)",
11483            Unit::OhmPerKilometre => "ohm per kilometre",
11484            Unit::MilliamperePerPoundForcePerSquareInch => "milliampere per pound-force per square inch",
11485            Unit::ReciprocalBar => "reciprocal bar",
11486            Unit::MilliamperePerBar => "milliampere per bar",
11487            Unit::DegreeCelsiusPerBar => "degree Celsius per bar",
11488            Unit::KelvinPerBar => "kelvin per bar",
11489            Unit::GramPerDayBar => "gram per day bar",
11490            Unit::GramPerHourBar => "gram per hour bar",
11491            Unit::GramPerMinuteBar => "gram per minute bar",
11492            Unit::GramPerSecondBar => "gram per second bar",
11493            Unit::KilogramPerDayBar => "kilogram per day bar",
11494            Unit::KilogramPerHourBar => "kilogram per hour bar",
11495            Unit::KilogramPerMinuteBar => "kilogram per minute bar",
11496            Unit::KilogramPerSecondBar => "kilogram per second bar",
11497            Unit::MilligramPerDayBar => "milligram per day bar",
11498            Unit::MilligramPerHourBar => "milligram per hour bar",
11499            Unit::MilligramPerMinuteBar => "milligram per minute bar",
11500            Unit::MilligramPerSecondBar => "milligram per second bar",
11501            Unit::GramPerBar => "gram per bar",
11502            Unit::MilligramPerBar => "milligram per bar",
11503            Unit::MilliamperePerMillimetre => "milliampere per millimetre",
11504            Unit::PascalSecondPerKelvin => "pascal second per kelvin",
11505            Unit::InchWater => "inch of water",
11506            Unit::InchMercury => "inch of mercury",
11507            Unit::WaterHorsePower => "water horse power",
11508            Unit::BarPerKelvin => "bar per kelvin",
11509            Unit::HectopascalPerKelvin => "hectopascal per kelvin",
11510            Unit::KilopascalPerKelvin => "kilopascal per kelvin",
11511            Unit::MillibarPerKelvin => "millibar per kelvin",
11512            Unit::MegapascalPerKelvin => "megapascal per kelvin",
11513            Unit::PoisePerKelvin => "poise per kelvin",
11514            Unit::VoltPerLitreMinute => "volt per litre minute",
11515            Unit::NewtonCentimetre => "newton centimetre",
11516            Unit::NewtonMetrePerDegree => "newton metre per degree",
11517            Unit::NewtonMetrePerAmpere => "newton metre per ampere",
11518            Unit::BarLitrePerSecond => "bar litre per second",
11519            Unit::BarCubicMetrePerSecond => "bar cubic metre per second",
11520            Unit::HectopascalLitrePerSecond => "hectopascal litre per second",
11521            Unit::HectopascalCubicMetrePerSecond => "hectopascal cubic metre per second",
11522            Unit::MillibarLitrePerSecond => "millibar litre per second",
11523            Unit::MillibarCubicMetrePerSecond => "millibar cubic metre per second",
11524            Unit::MegapascalLitrePerSecond => "megapascal litre per second",
11525            Unit::MegapascalCubicMetrePerSecond => "megapascal cubic metre per second",
11526            Unit::PascalLitrePerSecond => "pascal litre per second",
11527            Unit::DegreeFahrenheit => "degree Fahrenheit",
11528            Unit::Farad => "farad",
11529            Unit::FibreMetre => "fibre metre",
11530            Unit::ThousandCubicFoot => "thousand cubic foot",
11531            Unit::HundredCubicMetre => "hundred cubic metre",
11532            Unit::Micromole => "micromole",
11533            Unit::FailuresInTime => "failures in time",
11534            Unit::FlakeTon => "flake ton",
11535            Unit::FormazinNephelometricUnit => "Formazin nephelometric unit",
11536            Unit::Foot => "foot",
11537            Unit::PoundPerSquareFoot => "pound per square foot",
11538            Unit::FootPerMinute => "foot per minute",
11539            Unit::FootPerSecond => "foot per second",
11540            Unit::SquareFoot => "square foot",
11541            Unit::CubicFoot => "cubic foot",
11542            Unit::PascalCubicMetrePerSecond => "pascal cubic metre per second",
11543            Unit::CentimetrePerBar => "centimetre per bar",
11544            Unit::MetrePerBar => "metre per bar",
11545            Unit::MillimetrePerBar => "millimetre per bar",
11546            Unit::SquareInchPerSecond => "square inch per second",
11547            Unit::SquareMetrePerSecondKelvin => "square metre per second kelvin",
11548            Unit::StokesPerKelvin => "stokes per kelvin",
11549            Unit::GramPerCubicCentimetreBar => "gram per cubic centimetre bar",
11550            Unit::GramPerCubicDecimetreBar => "gram per cubic decimetre bar",
11551            Unit::GramPerLitreBar => "gram per litre bar",
11552            Unit::GramPerCubicMetreBar => "gram per cubic metre bar",
11553            Unit::GramPerMillilitreBar => "gram per millilitre bar",
11554            Unit::KilogramPerCubicCentimetreBar => "kilogram per cubic centimetre bar",
11555            Unit::KilogramPerLitreBar => "kilogram per litre bar",
11556            Unit::KilogramPerCubicMetreBar => "kilogram per cubic metre bar",
11557            Unit::NewtonMetrePerKilogram => "newton metre per kilogram",
11558            Unit::UsGallonPerMinute => "US gallon per minute",
11559            Unit::PoundForceFootPerPound => "pound-force foot per pound",
11560            Unit::CupUnitVolume => "cup [unit of volume]",
11561            Unit::Peck => "peck",
11562            Unit::TablespoonUs => "tablespoon (US)",
11563            Unit::TeaspoonUs => "teaspoon (US)",
11564            Unit::Stere => "stere",
11565            Unit::CubicCentimetrePerKelvin => "cubic centimetre per kelvin",
11566            Unit::LitrePerKelvin => "litre per kelvin",
11567            Unit::CubicMetrePerKelvin => "cubic metre per kelvin",
11568            Unit::ImperialGallonPerMinute => "Imperial gallon per minute",
11569            Unit::MillilitrePerKelvin => "millilitre per kelvin",
11570            Unit::KilogramPerCubicCentimetre => "kilogram per cubic centimetre",
11571            Unit::OunceAvoirdupoisPerCubicYard => "ounce (avoirdupois) per cubic yard",
11572            Unit::GramPerCubicCentimetreKelvin => "gram per cubic centimetre kelvin",
11573            Unit::GramPerCubicDecimetreKelvin => "gram per cubic decimetre kelvin",
11574            Unit::GramPerLitreKelvin => "gram per litre kelvin",
11575            Unit::GramPerCubicMetreKelvin => "gram per cubic metre kelvin",
11576            Unit::GramPerMillilitreKelvin => "gram per millilitre kelvin",
11577            Unit::KilogramPerCubicCentimetreKelvin => "kilogram per cubic centimetre kelvin",
11578            Unit::KilogramPerLitreKelvin => "kilogram per litre kelvin",
11579            Unit::KilogramPerCubicMetreKelvin => "kilogram per cubic metre kelvin",
11580            Unit::SquareMetrePerSecondBar => "square metre per second bar",
11581            Unit::MicrosiemensPerCentimetre => "microsiemens per centimetre",
11582            Unit::MicrosiemensPerMetre => "microsiemens per metre",
11583            Unit::NanosiemensPerCentimetre => "nanosiemens per centimetre",
11584            Unit::NanosiemensPerMetre => "nanosiemens per metre",
11585            Unit::StokesPerBar => "stokes per bar",
11586            Unit::CubicCentimetrePerDay => "cubic centimetre per day",
11587            Unit::CubicCentimetrePerHour => "cubic centimetre per hour",
11588            Unit::CubicCentimetrePerMinute => "cubic centimetre per minute",
11589            Unit::GallonUsPerHour => "gallon (US) per hour",
11590            Unit::LitrePerSecond => "litre per second",
11591            Unit::CubicMetrePerDay => "cubic metre per day",
11592            Unit::CubicMetrePerMinute => "cubic metre per minute",
11593            Unit::MillilitrePerDay => "millilitre per day",
11594            Unit::MillilitrePerHour => "millilitre per hour",
11595            Unit::CubicInchPerHour => "cubic inch per hour",
11596            Unit::CubicInchPerMinute => "cubic inch per minute",
11597            Unit::CubicInchPerSecond => "cubic inch per second",
11598            Unit::MilliamperePerLitreMinute => "milliampere per litre minute",
11599            Unit::VoltPerBar => "volt per bar",
11600            Unit::CubicCentimetrePerDayKelvin => "cubic centimetre per day kelvin",
11601            Unit::CubicCentimetrePerHourKelvin => "cubic centimetre per hour kelvin",
11602            Unit::CubicCentimetrePerMinuteKelvin => "cubic centimetre per minute kelvin",
11603            Unit::CubicCentimetrePerSecondKelvin => "cubic centimetre per second kelvin",
11604            Unit::LitrePerDayKelvin => "litre per day kelvin",
11605            Unit::LitrePerHourKelvin => "litre per hour kelvin",
11606            Unit::LitrePerMinuteKelvin => "litre per minute kelvin",
11607            Unit::LitrePerSecondKelvin => "litre per second kelvin",
11608            Unit::CubicMetrePerDayKelvin => "cubic metre per day kelvin",
11609            Unit::CubicMetrePerHourKelvin => "cubic metre per hour kelvin",
11610            Unit::CubicMetrePerMinuteKelvin => "cubic metre per minute kelvin",
11611            Unit::CubicMetrePerSecondKelvin => "cubic metre per second kelvin",
11612            Unit::MillilitrePerDayKelvin => "millilitre per day kelvin",
11613            Unit::MillilitrePerHourKelvin => "millilitre per hour kelvin",
11614            Unit::MillilitrePerMinuteKelvin => "millilitre per minute kelvin",
11615            Unit::MillilitrePerSecondKelvin => "millilitre per second kelvin",
11616            Unit::MillimetreToFourthPower => "millimetre to the fourth power",
11617            Unit::CubicCentimetrePerDayBar => "cubic centimetre per day bar",
11618            Unit::CubicCentimetrePerHourBar => "cubic centimetre per hour bar",
11619            Unit::CubicCentimetrePerMinuteBar => "cubic centimetre per minute bar",
11620            Unit::CubicCentimetrePerSecondBar => "cubic centimetre per second bar",
11621            Unit::LitrePerDayBar => "litre per day bar",
11622            Unit::LitrePerHourBar => "litre per hour bar",
11623            Unit::LitrePerMinuteBar => "litre per minute bar",
11624            Unit::LitrePerSecondBar => "litre per second bar",
11625            Unit::CubicMetrePerDayBar => "cubic metre per day bar",
11626            Unit::CubicMetrePerHourBar => "cubic metre per hour bar",
11627            Unit::CubicMetrePerMinuteBar => "cubic metre per minute bar",
11628            Unit::CubicMetrePerSecondBar => "cubic metre per second bar",
11629            Unit::MillilitrePerDayBar => "millilitre per day bar",
11630            Unit::MillilitrePerHourBar => "millilitre per hour bar",
11631            Unit::MillilitrePerMinuteBar => "millilitre per minute bar",
11632            Unit::MillilitrePerSecondBar => "millilitre per second bar",
11633            Unit::CubicCentimetrePerBar => "cubic centimetre per bar",
11634            Unit::LitrePerBar => "litre per bar",
11635            Unit::CubicMetrePerBar => "cubic metre per bar",
11636            Unit::MillilitrePerBar => "millilitre per bar",
11637            Unit::MicrohenryPerKiloohm => "microhenry per kiloohm",
11638            Unit::MicrohenryPerOhm => "microhenry per ohm",
11639            Unit::GallonUsPerDay => "gallon (US) per day",
11640            Unit::Gigabecquerel => "gigabecquerel",
11641            Unit::GramDryWeight => "gram, dry weight",
11642            Unit::PoundPerGallonUs => "pound per gallon (US)",
11643            Unit::GramPerMetreGramPer100Centimetres => "gram per metre (gram per 100 centimetres)",
11644            Unit::GramFissileIsotope => "gram of fissile isotope",
11645            Unit::GreatGross => "great gross",
11646            Unit::GillUs => "gill (US)",
11647            Unit::GramIncludingContainer => "gram, including container",
11648            Unit::GillUk => "gill (UK)",
11649            Unit::GramIncludingInnerPackaging => "gram, including inner packaging",
11650            Unit::GramPerMillilitre => "gram per millilitre",
11651            Unit::GramPerLitre => "gram per litre",
11652            Unit::DryGallonUs => "dry gallon (US)",
11653            Unit::GallonUk => "gallon (UK)",
11654            Unit::GallonUs => "gallon (US)",
11655            Unit::GramPerSquareMetre => "gram per square metre",
11656            Unit::MilligramPerSquareMetre => "milligram per square metre",
11657            Unit::MilligramPerCubicMetre => "milligram per cubic metre",
11658            Unit::MicrogramPerCubicMetre => "microgram per cubic metre",
11659            Unit::Gram => "gram",
11660            Unit::Grain => "grain",
11661            Unit::Gross => "gross",
11662            Unit::Gigajoule => "gigajoule",
11663            Unit::GigawattHour => "gigawatt hour",
11664            Unit::HenryPerKiloohm => "henry per kiloohm",
11665            Unit::HenryPerOhm => "henry per ohm",
11666            Unit::MillihenryPerKiloohm => "millihenry per kiloohm",
11667            Unit::MillihenryPerOhm => "millihenry per ohm",
11668            Unit::PascalSecondPerBar => "pascal second per bar",
11669            Unit::Microbecquerel => "microbecquerel",
11670            Unit::ReciprocalYear => "reciprocal year",
11671            Unit::ReciprocalHour => "reciprocal hour",
11672            Unit::ReciprocalMonth => "reciprocal month",
11673            Unit::DegreeCelsiusPerHour => "degree Celsius per hour",
11674            Unit::DegreeCelsiusPerMinute => "degree Celsius per minute",
11675            Unit::DegreeCelsiusPerSecond => "degree Celsius per second",
11676            Unit::SquareCentimetrePerGram => "square centimetre per gram",
11677            Unit::SquareDecametre => "square decametre",
11678            Unit::SquareHectometre => "square hectometre",
11679            Unit::CubicHectometre => "cubic hectometre",
11680            Unit::CubicKilometre => "cubic kilometre",
11681            Unit::Blank => "blank",
11682            Unit::VoltSquareInchPerPoundForce => "volt square inch per pound-force",
11683            Unit::VoltPerInch => "volt per inch",
11684            Unit::VoltPerMicrosecond => "volt per microsecond",
11685            Unit::PercentPerKelvin => "percent per kelvin",
11686            Unit::OhmPerMetre => "ohm per metre",
11687            Unit::DegreePerMetre => "degree per metre",
11688            Unit::MicrofaradPerKilometre => "microfarad per kilometre",
11689            Unit::MicrogramPerLitre => "microgram per litre",
11690            Unit::SquareMicrometreSquareMicron => "square micrometre (square micron)",
11691            Unit::AmperePerKilogram => "ampere per kilogram",
11692            Unit::AmpereSquaredSecond => "ampere squared second",
11693            Unit::FaradPerKilometre => "farad per kilometre",
11694            Unit::HertzMetre => "hertz metre",
11695            Unit::KelvinMetrePerWatt => "kelvin metre per watt",
11696            Unit::MegaohmPerKilometre => "megaohm per kilometre",
11697            Unit::MegaohmPerMetre => "megaohm per metre",
11698            Unit::Megaampere => "megaampere",
11699            Unit::MegahertzKilometre => "megahertz kilometre",
11700            Unit::NewtonPerAmpere => "newton per ampere",
11701            Unit::NewtonMetreWattToPowerMinus05 => "newton metre watt to the power minus 0,5",
11702            Unit::PascalPerMetre => "pascal per metre",
11703            Unit::SiemensPerCentimetre => "siemens per centimetre",
11704            Unit::Teraohm => "teraohm",
11705            Unit::VoltSecondPerMetre => "volt second per metre",
11706            Unit::VoltPerSecond => "volt per second",
11707            Unit::WattPerCubicMetre => "watt per cubic metre",
11708            Unit::Attofarad => "attofarad",
11709            Unit::CentimetrePerHour => "centimetre per hour",
11710            Unit::ReciprocalCubicCentimetre => "reciprocal cubic centimetre",
11711            Unit::DecibelPerKilometre => "decibel per kilometre",
11712            Unit::DecibelPerMetre => "decibel per metre",
11713            Unit::KilogramPerBar => "kilogram per bar",
11714            Unit::KilogramPerCubicDecimetreKelvin => "kilogram per cubic decimetre kelvin",
11715            Unit::KilogramPerCubicDecimetreBar => "kilogram per cubic decimetre bar",
11716            Unit::KilogramPerSquareMetreSecond => "kilogram per square metre second",
11717            Unit::InchPerTwoPiRadiant => "inch per two pi radiant",
11718            Unit::MetrePerVoltSecond => "metre per volt second",
11719            Unit::SquareMetrePerNewton => "square metre per newton",
11720            Unit::CubicMetrePerCubicMetre => "cubic metre per cubic metre",
11721            Unit::MillisiemensPerCentimetre => "millisiemens per centimetre",
11722            Unit::MillivoltPerMinute => "millivolt per minute",
11723            Unit::MilligramPerSquareCentimetre => "milligram per square centimetre",
11724            Unit::MilligramPerGram => "milligram per gram",
11725            Unit::MillilitrePerCubicMetre => "millilitre per cubic metre",
11726            Unit::MillimetrePerYear => "millimetre per year",
11727            Unit::MillimetrePerHour => "millimetre per hour",
11728            Unit::MillimolePerGram => "millimole per gram",
11729            Unit::PicopascalPerKilometre => "picopascal per kilometre",
11730            Unit::Picosecond => "picosecond",
11731            Unit::PercentPerMonth => "percent per month",
11732            Unit::PercentPerHectobar => "percent per hectobar",
11733            Unit::PercentPerDecakelvin => "percent per decakelvin",
11734            Unit::WattPerMetre => "watt per metre",
11735            Unit::Decapascal => "decapascal",
11736            Unit::GramPerMillimetre => "gram per millimetre",
11737            Unit::ModuleWidth => "module width",
11738            Unit::FrenchGauge => "French gauge",
11739            Unit::RackUnit => "rack unit",
11740            Unit::MillimetrePerMinute => "millimetre per minute",
11741            Unit::BigPoint => "big point",
11742            Unit::LitrePerKilogram => "litre per kilogram",
11743            Unit::GramMillimetre => "gram millimetre",
11744            Unit::ReciprocalWeek => "reciprocal week",
11745            Unit::Piece => "piece",
11746            Unit::MegaohmKilometre => "megaohm kilometre",
11747            Unit::PercentPerOhm => "percent per ohm",
11748            Unit::PercentPerDegree => "percent per degree",
11749            Unit::PercentPerTenThousand => "percent per ten thousand",
11750            Unit::PercentPerOneHundredThousand => "percent per one hundred thousand",
11751            Unit::PercentPerHundred => "percent per hundred",
11752            Unit::PercentPerThousand => "percent per thousand",
11753            Unit::PercentPerVolt => "percent per volt",
11754            Unit::PercentPerBar => "percent per bar",
11755            Unit::PercentPerInch => "percent per inch",
11756            Unit::PercentPerMetre => "percent per metre",
11757            Unit::Hank => "hank",
11758            Unit::PieceDay => "Piece Day",
11759            Unit::Hectobar => "hectobar",
11760            Unit::HundredBoxes => "hundred boxes",
11761            Unit::HundredCount => "hundred count",
11762            Unit::HundredKilogramDryWeight => "hundred kilogram, dry weight",
11763            Unit::Head => "head",
11764            Unit::Hectogram => "hectogram",
11765            Unit::HundredCubicFoot => "hundred cubic foot",
11766            Unit::HundredInternationalUnit => "hundred international unit",
11767            Unit::HundredKilogramNetMass => "hundred kilogram, net mass",
11768            Unit::Hectolitre => "hectolitre",
11769            Unit::MilePerHourStatuteMile => "mile per hour (statute mile)",
11770            Unit::PieceMonth => "Piece Month",
11771            Unit::MillionCubicMetre => "million cubic metre",
11772            Unit::Hectometre => "hectometre",
11773            Unit::HectolitrePureAlcohol => "hectolitre of pure alcohol",
11774            Unit::Hertz => "hertz",
11775            Unit::Hour => "hour",
11776            Unit::PieceWeek => "Piece Week",
11777            Unit::InchPoundPoundInch => "inch pound (pound inch)",
11778            Unit::Person => "person",
11779            Unit::Inch => "inch",
11780            Unit::SquareInch => "square inch",
11781            Unit::CubicInch => "cubic inch",
11782            Unit::InternationalSugarDegree => "international sugar degree",
11783            Unit::InchPerSecond => "inch per second",
11784            Unit::InternationalUnitPerGram => "international unit per gram",
11785            Unit::InchPerSecondSquared => "inch per second squared",
11786            Unit::PercentPerMillimetre => "percent per millimetre",
11787            Unit::PerMillePerPsi => "per mille per psi",
11788            Unit::DegreeApi => "degree API",
11789            Unit::DegreeBaumeOriginScale => "degree Baume (origin scale)",
11790            Unit::DegreeBaumeUsHeavy => "degree Baume (US heavy)",
11791            Unit::DegreeBaumeUsLight => "degree Baume (US light)",
11792            Unit::DegreeBalling => "degree Balling",
11793            Unit::DegreeBrix => "degree Brix",
11794            Unit::DegreeFahrenheitHourSquareFootPerBritishThermalUnitThermochemical => "degree Fahrenheit hour square foot per British thermal unit (thermochemical)",
11795            Unit::JoulePerKilogram => "joule per kilogram",
11796            Unit::DegreeFahrenheitPerKelvin => "degree Fahrenheit per kelvin",
11797            Unit::DegreeFahrenheitPerBar => "degree Fahrenheit per bar",
11798            Unit::DegreeFahrenheitHourSquareFootPerBritishThermalUnitInternationalTable => "degree Fahrenheit hour square foot per British thermal unit (international table)",
11799            Unit::DegreeFahrenheitPerHour => "degree Fahrenheit per hour",
11800            Unit::DegreeFahrenheitPerMinute => "degree Fahrenheit per minute",
11801            Unit::DegreeFahrenheitPerSecond => "degree Fahrenheit per second",
11802            Unit::ReciprocalDegreeFahrenheit => "reciprocal degree Fahrenheit",
11803            Unit::DegreeOechsle => "degree Oechsle",
11804            Unit::DegreeRankinePerHour => "degree Rankine per hour",
11805            Unit::DegreeRankinePerMinute => "degree Rankine per minute",
11806            Unit::DegreeRankinePerSecond => "degree Rankine per second",
11807            Unit::DegreeTwaddell => "degree Twaddell",
11808            Unit::Micropoise => "micropoise",
11809            Unit::MicrogramPerKilogram => "microgram per kilogram",
11810            Unit::MicrogramPerCubicMetreKelvin => "microgram per cubic metre kelvin",
11811            Unit::MicrogramPerCubicMetreBar => "microgram per cubic metre bar",
11812            Unit::MicrolitrePerLitre => "microlitre per litre",
11813            Unit::Baud => "baud",
11814            Unit::BritishThermalUnitMean => "British thermal unit (mean)",
11815            Unit::BritishThermalUnitInternationalTableFootPerHourSquareFootDegreeFahrenheit => "British thermal unit (international table) foot per hour square foot degree Fahrenheit",
11816            Unit::BritishThermalUnitInternationalTableInchPerHourSquareFootDegreeFahrenheit => "British thermal unit (international table) inch per hour square foot degree Fahrenheit",
11817            Unit::BritishThermalUnitInternationalTableInchPerSecondSquareFootDegreeFahrenheit => "British thermal unit (international table) inch per second square foot degree Fahrenheit",
11818            Unit::BritishThermalUnitInternationalTablePerPoundDegreeFahrenheit => "British thermal unit (international table) per pound degree Fahrenheit",
11819            Unit::BritishThermalUnitInternationalTablePerMinute => "British thermal unit (international table) per minute",
11820            Unit::BritishThermalUnitInternationalTablePerSecond => "British thermal unit (international table) per second",
11821            Unit::BritishThermalUnitThermochemicalFootPerHourSquareFootDegreeFahrenheit => "British thermal unit (thermochemical) foot per hour square foot degree Fahrenheit",
11822            Unit::BritishThermalUnitThermochemicalPerHour => "British thermal unit (thermochemical) per hour",
11823            Unit::BritishThermalUnitThermochemicalInchPerHourSquareFootDegreeFahrenheit => "British thermal unit (thermochemical) inch per hour square foot degree Fahrenheit",
11824            Unit::BritishThermalUnitThermochemicalInchPerSecondSquareFootDegreeFahrenheit => "British thermal unit (thermochemical) inch per second square foot degree Fahrenheit",
11825            Unit::BritishThermalUnitThermochemicalPerPoundDegreeFahrenheit => "British thermal unit (thermochemical) per pound degree Fahrenheit",
11826            Unit::BritishThermalUnitThermochemicalPerMinute => "British thermal unit (thermochemical) per minute",
11827            Unit::BritishThermalUnitThermochemicalPerSecond => "British thermal unit (thermochemical) per second",
11828            Unit::CoulombSquareMetrePerKilogram => "coulomb square metre per kilogram",
11829            Unit::Megabaud => "megabaud",
11830            Unit::WattSecond => "watt second",
11831            Unit::BarPerBar => "bar per bar",
11832            Unit::BarrelUkPetroleum => "barrel (UK petroleum)",
11833            Unit::BarrelUkPetroleumPerMinute => "barrel (UK petroleum) per minute",
11834            Unit::BarrelUkPetroleumPerDay => "barrel (UK petroleum) per day",
11835            Unit::BarrelUkPetroleumPerHour => "barrel (UK petroleum) per hour",
11836            Unit::BarrelUkPetroleumPerSecond => "barrel (UK petroleum) per second",
11837            Unit::BarrelUsPetroleumPerHour => "barrel (US petroleum) per hour",
11838            Unit::BarrelUsPetroleumPerSecond => "barrel (US petroleum) per second",
11839            Unit::BushelUkPerDay => "bushel (UK) per day",
11840            Unit::BushelUkPerHour => "bushel (UK) per hour",
11841            Unit::BushelUkPerMinute => "bushel (UK) per minute",
11842            Unit::BushelUkPerSecond => "bushel (UK) per second",
11843            Unit::BushelUsDryPerDay => "bushel (US dry) per day",
11844            Unit::BushelUsDryPerHour => "bushel (US dry) per hour",
11845            Unit::BushelUsDryPerMinute => "bushel (US dry) per minute",
11846            Unit::BushelUsDryPerSecond => "bushel (US dry) per second",
11847            Unit::CentinewtonMetre => "centinewton metre",
11848            Unit::CentipoisePerKelvin => "centipoise per kelvin",
11849            Unit::CentipoisePerBar => "centipoise per bar",
11850            Unit::CalorieMean => "calorie (mean)",
11851            Unit::CalorieInternationalTablePerGramDegreeCelsius => "calorie (international table) per gram degree Celsius",
11852            Unit::CalorieThermochemicalPerCentimetreSecondDegreeCelsius => "calorie (thermochemical) per centimetre second degree Celsius",
11853            Unit::CalorieThermochemicalPerGramDegreeCelsius => "calorie (thermochemical) per gram degree Celsius",
11854            Unit::CalorieThermochemicalPerMinute => "calorie (thermochemical) per minute",
11855            Unit::CalorieThermochemicalPerSecond => "calorie (thermochemical) per second",
11856            Unit::Clo => "clo",
11857            Unit::CentimetrePerSecondKelvin => "centimetre per second kelvin",
11858            Unit::CentimetrePerSecondBar => "centimetre per second bar",
11859            Unit::CubicCentimetrePerCubicMetre => "cubic centimetre per cubic metre",
11860            Unit::CubicDecimetrePerDay => "cubic decimetre per day",
11861            Unit::CubicDecimetrePerCubicMetre => "cubic decimetre per cubic metre",
11862            Unit::CubicDecimetrePerMinute => "cubic decimetre per minute",
11863            Unit::CubicDecimetrePerSecond => "cubic decimetre per second",
11864            Unit::OunceUkFluidPerDay => "ounce (UK fluid) per day",
11865            Unit::OunceUkFluidPerHour => "ounce (UK fluid) per hour",
11866            Unit::OunceUkFluidPerMinute => "ounce (UK fluid) per minute",
11867            Unit::OunceUkFluidPerSecond => "ounce (UK fluid) per second",
11868            Unit::OunceUsFluidPerDay => "ounce (US fluid) per day",
11869            Unit::JoulePerKelvin => "joule per kelvin",
11870            Unit::MegajoulePerKilogram => "megajoule per kilogram",
11871            Unit::MegajoulePerCubicMetre => "megajoule per cubic metre",
11872            Unit::PipelineJoint => "pipeline joint",
11873            Unit::Joule => "joule",
11874            Unit::HundredMetre => "hundred metre",
11875            Unit::NumberJewels => "number of jewels",
11876            Unit::KilowattDemand => "kilowatt demand",
11877            Unit::OunceUsFluidPerHour => "ounce (US fluid) per hour",
11878            Unit::OunceUsFluidPerMinute => "ounce (US fluid) per minute",
11879            Unit::OunceUsFluidPerSecond => "ounce (US fluid) per second",
11880            Unit::FootPerDegreeFahrenheit => "foot per degree Fahrenheit",
11881            Unit::FootPerHour => "foot per hour",
11882            Unit::FootPoundForcePerHour => "foot pound-force per hour",
11883            Unit::FootPoundForcePerMinute => "foot pound-force per minute",
11884            Unit::FootPerPsi => "foot per psi",
11885            Unit::FootPerSecondDegreeFahrenheit => "foot per second degree Fahrenheit",
11886            Unit::FootPerSecondPsi => "foot per second psi",
11887            Unit::KilovoltAmpereReactiveDemand => "kilovolt ampere reactive demand",
11888            Unit::ReciprocalCubicFoot => "reciprocal cubic foot",
11889            Unit::CubicFootPerDegreeFahrenheit => "cubic foot per degree Fahrenheit",
11890            Unit::CubicFootPerDay => "cubic foot per day",
11891            Unit::CubicFootPerPsi => "cubic foot per psi",
11892            Unit::GallonUkPerDay => "gallon (UK) per day",
11893            Unit::GallonUkPerHour => "gallon (UK) per hour",
11894            Unit::GallonUkPerSecond => "gallon (UK) per second",
11895            Unit::KilovoltAmpereReactiveHour => "kilovolt ampere reactive hour",
11896            Unit::GallonUsLiquidPerSecond => "gallon (US liquid) per second",
11897            Unit::GramForcePerSquareCentimetre => "gram-force per square centimetre",
11898            Unit::GillUkPerDay => "gill (UK) per day",
11899            Unit::GillUkPerHour => "gill (UK) per hour",
11900            Unit::GillUkPerMinute => "gill (UK) per minute",
11901            Unit::GillUkPerSecond => "gill (UK) per second",
11902            Unit::GillUsPerDay => "gill (US) per day",
11903            Unit::GillUsPerHour => "gill (US) per hour",
11904            Unit::GillUsPerMinute => "gill (US) per minute",
11905            Unit::GillUsPerSecond => "gill (US) per second",
11906            Unit::StandardAccelerationFreeFall => "standard acceleration of free fall",
11907            Unit::GrainPerGallonUs => "grain per gallon (US)",
11908            Unit::HorsepowerBoiler => "horsepower (boiler)",
11909            Unit::HorsepowerElectric => "horsepower (electric)",
11910            Unit::InchPerDegreeFahrenheit => "inch per degree Fahrenheit",
11911            Unit::InchPerPsi => "inch per psi",
11912            Unit::InchPerSecondDegreeFahrenheit => "inch per second degree Fahrenheit",
11913            Unit::InchPerSecondPsi => "inch per second psi",
11914            Unit::ReciprocalCubicInch => "reciprocal cubic inch",
11915            Unit::Kilobaud => "kilobaud",
11916            Unit::KilocalorieMean => "kilocalorie (mean)",
11917            Unit::KilocalorieInternationalTablePerHourMetreDegreeCelsius => "kilocalorie (international table) per hour metre degree Celsius",
11918            Unit::KilocalorieThermochemical => "kilocalorie (thermochemical)",
11919            Unit::KilocalorieThermochemicalPerMinute => "kilocalorie (thermochemical) per minute",
11920            Unit::KilocalorieThermochemicalPerSecond => "kilocalorie (thermochemical) per second",
11921            Unit::KilomolePerHour => "kilomole per hour",
11922            Unit::KilomolePerCubicMetreKelvin => "kilomole per cubic metre kelvin",
11923            Unit::Kilolitre => "kilolitre",
11924            Unit::KilomolePerCubicMetreBar => "kilomole per cubic metre bar",
11925            Unit::KilomolePerMinute => "kilomole per minute",
11926            Unit::LitrePerLitre => "litre per litre",
11927            Unit::ReciprocalLitre => "reciprocal litre",
11928            Unit::PoundAvoirdupoisPerDegreeFahrenheit => "pound (avoirdupois) per degree Fahrenheit",
11929            Unit::PoundAvoirdupoisSquareFoot => "pound (avoirdupois) square foot",
11930            Unit::PoundAvoirdupoisPerDay => "pound (avoirdupois) per day",
11931            Unit::PoundPerFootHour => "pound per foot hour",
11932            Unit::PoundPerFootSecond => "pound per foot second",
11933            Unit::PoundAvoirdupoisPerCubicFootDegreeFahrenheit => "pound (avoirdupois) per cubic foot degree Fahrenheit",
11934            Unit::PoundAvoirdupoisPerCubicFootPsi => "pound (avoirdupois) per cubic foot psi",
11935            Unit::PoundAvoirdupoisPerGallonUk => "pound (avoirdupois) per gallon (UK)",
11936            Unit::PoundAvoirdupoisPerHourDegreeFahrenheit => "pound (avoirdupois) per hour degree Fahrenheit",
11937            Unit::PoundAvoirdupoisPerHourPsi => "pound (avoirdupois) per hour psi",
11938            Unit::PoundAvoirdupoisPerCubicInchDegreeFahrenheit => "pound (avoirdupois) per cubic inch degree Fahrenheit",
11939            Unit::PoundAvoirdupoisPerCubicInchPsi => "pound (avoirdupois) per cubic inch psi",
11940            Unit::PoundAvoirdupoisPerPsi => "pound (avoirdupois) per psi",
11941            Unit::PoundAvoirdupoisPerMinute => "pound (avoirdupois) per minute",
11942            Unit::PoundAvoirdupoisPerMinuteDegreeFahrenheit => "pound (avoirdupois) per minute degree Fahrenheit",
11943            Unit::PoundAvoirdupoisPerMinutePsi => "pound (avoirdupois) per minute psi",
11944            Unit::PoundAvoirdupoisPerSecond => "pound (avoirdupois) per second",
11945            Unit::PoundAvoirdupoisPerSecondDegreeFahrenheit => "pound (avoirdupois) per second degree Fahrenheit",
11946            Unit::PoundAvoirdupoisPerSecondPsi => "pound (avoirdupois) per second psi",
11947            Unit::PoundPerCubicYard => "pound per cubic yard",
11948            Unit::PoundForcePerSquareFoot => "pound-force per square foot",
11949            Unit::PoundForcePerSquareInchDegreeFahrenheit => "pound-force per square inch degree Fahrenheit",
11950            Unit::PsiCubicInchPerSecond => "psi cubic inch per second",
11951            Unit::PsiLitrePerSecond => "psi litre per second",
11952            Unit::PsiCubicMetrePerSecond => "psi cubic metre per second",
11953            Unit::PsiCubicYardPerSecond => "psi cubic yard per second",
11954            Unit::PoundForceSecondPerSquareFoot => "pound-force second per square foot",
11955            Unit::PoundForceSecondPerSquareInch => "pound-force second per square inch",
11956            Unit::ReciprocalPsi => "reciprocal psi",
11957            Unit::QuartUkLiquidPerDay => "quart (UK liquid) per day",
11958            Unit::QuartUkLiquidPerHour => "quart (UK liquid) per hour",
11959            Unit::QuartUkLiquidPerMinute => "quart (UK liquid) per minute",
11960            Unit::QuartUkLiquidPerSecond => "quart (UK liquid) per second",
11961            Unit::QuartUsLiquidPerDay => "quart (US liquid) per day",
11962            Unit::QuartUsLiquidPerHour => "quart (US liquid) per hour",
11963            Unit::Cake => "cake",
11964            Unit::Katal => "katal",
11965            Unit::Kilocharacter => "kilocharacter",
11966            Unit::Kilobar => "kilobar",
11967            Unit::KilogramCholineChloride => "kilogram of choline chloride",
11968            Unit::KilogramDrainedNetWeight => "kilogram drained net weight",
11969            Unit::Kelvin => "kelvin",
11970            Unit::Kilogram => "kilogram",
11971            Unit::KilogramPerSecond => "kilogram per second",
11972            Unit::KilogramHydrogenPeroxide => "kilogram of hydrogen peroxide",
11973            Unit::Kilohertz => "kilohertz",
11974            Unit::KilogramPerMillimetreWidth => "kilogram per millimetre width",
11975            Unit::KilogramIncludingContainer => "kilogram, including container",
11976            Unit::KilogramIncludingInnerPackaging => "kilogram, including inner packaging",
11977            Unit::Kilosegment => "kilosegment",
11978            Unit::Kilojoule => "kilojoule",
11979            Unit::KilogramPerMetre => "kilogram per metre",
11980            Unit::LacticDryMaterialPercentage => "lactic dry material percentage",
11981            Unit::Kilolux => "kilolux",
11982            Unit::KilogramMethylamine => "kilogram of methylamine",
11983            Unit::KilometrePerHour => "kilometre per hour",
11984            Unit::SquareKilometre => "square kilometre",
11985            Unit::KilogramPerCubicMetre => "kilogram per cubic metre",
11986            Unit::Kilometre => "kilometre",
11987            Unit::KilogramNitrogen => "kilogram of nitrogen",
11988            Unit::KilonewtonPerSquareMetre => "kilonewton per square metre",
11989            Unit::KilogramNamedSubstance => "kilogram named substance",
11990            Unit::Knot => "knot",
11991            Unit::MilliequivalenceCausticPotashPerGramProduct => "milliequivalence caustic potash per gram of product",
11992            Unit::Kilopascal => "kilopascal",
11993            Unit::KilogramPotassiumHydroxideCausticPotash => "kilogram of potassium hydroxide (caustic potash)",
11994            Unit::KilogramPotassiumOxide => "kilogram of potassium oxide",
11995            Unit::KilogramPhosphorusPentoxidePhosphoricAnhydride => "kilogram of phosphorus pentoxide (phosphoric anhydride)",
11996            Unit::Kiloroentgen => "kiloroentgen",
11997            Unit::KilogramSubstance90Dry => "kilogram of substance 90 % dry",
11998            Unit::KilogramSodiumHydroxideCausticSoda => "kilogram of sodium hydroxide (caustic soda)",
11999            Unit::Kit => "kit",
12000            Unit::Kilotonne => "kilotonne",
12001            Unit::KilogramUranium => "kilogram of uranium",
12002            Unit::KilovoltAmpere => "kilovolt - ampere",
12003            Unit::Kilovar => "kilovar",
12004            Unit::Kilovolt => "kilovolt",
12005            Unit::KilogramPerMillimetre => "kilogram per millimetre",
12006            Unit::KilowattHour => "kilowatt hour",
12007            Unit::KilowattHourPerNormalizedCubicMetre => "Kilowatt hour per normalized cubic metre",
12008            Unit::KilogramTungstenTrioxide => "kilogram of tungsten trioxide",
12009            Unit::KilowattHourPerStandardCubicMetre => "Kilowatt hour per standard cubic metre",
12010            Unit::Kilowatt => "kilowatt",
12011            Unit::KilowattYear => "kilowatt year",
12012            Unit::MillilitrePerKilogram => "millilitre per kilogram",
12013            Unit::QuartUsLiquidPerMinute => "quart (US liquid) per minute",
12014            Unit::QuartUsLiquidPerSecond => "quart (US liquid) per second",
12015            Unit::MetrePerSecondKelvin => "metre per second kelvin",
12016            Unit::MetrePerSecondBar => "metre per second bar",
12017            Unit::SquareMetreHourDegreeCelsiusPerKilocalorieInternationalTable => "square metre hour degree Celsius per kilocalorie (international table)",
12018            Unit::MillipascalSecondPerKelvin => "millipascal second per kelvin",
12019            Unit::MillipascalSecondPerBar => "millipascal second per bar",
12020            Unit::MilligramPerCubicMetreKelvin => "milligram per cubic metre kelvin",
12021            Unit::MilligramPerCubicMetreBar => "milligram per cubic metre bar",
12022            Unit::MillilitrePerLitre => "millilitre per litre",
12023            Unit::LitrePerMinute => "litre per minute",
12024            Unit::ReciprocalCubicMillimetre => "reciprocal cubic millimetre",
12025            Unit::CubicMillimetrePerCubicMetre => "cubic millimetre per cubic metre",
12026            Unit::MolePerHour => "mole per hour",
12027            Unit::MolePerKilogramKelvin => "mole per kilogram kelvin",
12028            Unit::MolePerKilogramBar => "mole per kilogram bar",
12029            Unit::MolePerLitreKelvin => "mole per litre kelvin",
12030            Unit::MolePerLitreBar => "mole per litre bar",
12031            Unit::MolePerCubicMetreKelvin => "mole per cubic metre kelvin",
12032            Unit::MolePerCubicMetreBar => "mole per cubic metre bar",
12033            Unit::MolePerMinute => "mole per minute",
12034            Unit::MilliroentgenAequivalentMen => "milliroentgen aequivalent men",
12035            Unit::NanogramPerKilogram => "nanogram per kilogram",
12036            Unit::OunceAvoirdupoisPerDay => "ounce (avoirdupois) per day",
12037            Unit::OunceAvoirdupoisPerHour => "ounce (avoirdupois) per hour",
12038            Unit::OunceAvoirdupoisPerMinute => "ounce (avoirdupois) per minute",
12039            Unit::OunceAvoirdupoisPerSecond => "ounce (avoirdupois) per second",
12040            Unit::OunceAvoirdupoisPerGallonUk => "ounce (avoirdupois) per gallon (UK)",
12041            Unit::OunceAvoirdupoisPerGallonUs => "ounce (avoirdupois) per gallon (US)",
12042            Unit::OunceAvoirdupoisPerCubicInch => "ounce (avoirdupois) per cubic inch",
12043            Unit::OunceAvoirdupoisForce => "ounce (avoirdupois)-force",
12044            Unit::OunceAvoirdupoisForceInch => "ounce (avoirdupois)-force inch",
12045            Unit::PicosiemensPerMetre => "picosiemens per metre",
12046            Unit::PeckUk => "peck (UK)",
12047            Unit::PeckUkPerDay => "peck (UK) per day",
12048            Unit::PeckUkPerHour => "peck (UK) per hour",
12049            Unit::PeckUkPerMinute => "peck (UK) per minute",
12050            Unit::PeckUkPerSecond => "peck (UK) per second",
12051            Unit::PeckUsDryPerDay => "peck (US dry) per day",
12052            Unit::PeckUsDryPerHour => "peck (US dry) per hour",
12053            Unit::PeckUsDryPerMinute => "peck (US dry) per minute",
12054            Unit::PeckUsDryPerSecond => "peck (US dry) per second",
12055            Unit::PsiPerPsi => "psi per psi",
12056            Unit::PintUkPerDay => "pint (UK) per day",
12057            Unit::PintUkPerHour => "pint (UK) per hour",
12058            Unit::PintUkPerMinute => "pint (UK) per minute",
12059            Unit::PintUkPerSecond => "pint (UK) per second",
12060            Unit::PintUsLiquidPerDay => "pint (US liquid) per day",
12061            Unit::PintUsLiquidPerHour => "pint (US liquid) per hour",
12062            Unit::PintUsLiquidPerMinute => "pint (US liquid) per minute",
12063            Unit::PintUsLiquidPerSecond => "pint (US liquid) per second",
12064            Unit::SlugPerDay => "slug per day",
12065            Unit::SlugPerFootSecond => "slug per foot second",
12066            Unit::SlugPerCubicFoot => "slug per cubic foot",
12067            Unit::SlugPerHour => "slug per hour",
12068            Unit::SlugPerMinute => "slug per minute",
12069            Unit::SlugPerSecond => "slug per second",
12070            Unit::TonnePerKelvin => "tonne per kelvin",
12071            Unit::TonnePerBar => "tonne per bar",
12072            Unit::TonnePerDay => "tonne per day",
12073            Unit::TonnePerDayKelvin => "tonne per day kelvin",
12074            Unit::TonnePerDayBar => "tonne per day bar",
12075            Unit::TonnePerHourKelvin => "tonne per hour kelvin",
12076            Unit::TonnePerHourBar => "tonne per hour bar",
12077            Unit::TonnePerCubicMetreKelvin => "tonne per cubic metre kelvin",
12078            Unit::TonnePerCubicMetreBar => "tonne per cubic metre bar",
12079            Unit::TonnePerMinute => "tonne per minute",
12080            Unit::TonnePerMinuteKelvin => "tonne per minute kelvin",
12081            Unit::TonnePerMinuteBar => "tonne per minute bar",
12082            Unit::TonnePerSecond => "tonne per second",
12083            Unit::TonnePerSecondKelvin => "tonne per second kelvin",
12084            Unit::TonnePerSecondBar => "tonne per second bar",
12085            Unit::TonUkShipping => "ton (UK shipping)",
12086            Unit::TonLongPerDay => "ton long per day",
12087            Unit::TonUsShipping => "ton (US shipping)",
12088            Unit::TonShortPerDegreeFahrenheit => "ton short per degree Fahrenheit",
12089            Unit::TonShortPerDay => "ton short per day",
12090            Unit::TonShortPerHourDegreeFahrenheit => "ton short per hour degree Fahrenheit",
12091            Unit::TonShortPerHourPsi => "ton short per hour psi",
12092            Unit::TonShortPerPsi => "ton short per psi",
12093            Unit::TonUkLongPerCubicYard => "ton (UK long) per cubic yard",
12094            Unit::TonUsShortPerCubicYard => "ton (US short) per cubic yard",
12095            Unit::TonForceUsShort => "ton-force (US short)",
12096            Unit::CommonYear => "common year",
12097            Unit::SiderealYear => "sidereal year",
12098            Unit::YardPerDegreeFahrenheit => "yard per degree Fahrenheit",
12099            Unit::YardPerPsi => "yard per psi",
12100            Unit::PoundPerCubicInch => "pound per cubic inch",
12101            Unit::LactoseExcessPercentage => "lactose excess percentage",
12102            Unit::Pound => "pound",
12103            Unit::TroyPoundUs => "troy pound (US)",
12104            Unit::LitrePerDay => "litre per day",
12105            Unit::Leaf => "leaf",
12106            Unit::LinearFoot => "linear foot",
12107            Unit::LabourHour => "labour hour",
12108            Unit::Link => "link",
12109            Unit::LinearMetre => "linear metre",
12110            Unit::Length => "length",
12111            Unit::LotUnitProcurement => "lot [unit of procurement]",
12112            Unit::LiquidPound => "liquid pound",
12113            Unit::LitrePureAlcohol => "litre of pure alcohol",
12114            Unit::Layer => "layer",
12115            Unit::LumpSum => "lump sum",
12116            Unit::TonUkOrLongTonUs => "ton (UK) or long ton (US)",
12117            Unit::Litre => "litre",
12118            Unit::MetricTonLubricatingOil => "metric ton, lubricating oil",
12119            Unit::Lumen => "lumen",
12120            Unit::Lux => "lux",
12121            Unit::LinearYard => "linear yard",
12122            Unit::MilligramPerLitre => "milligram per litre",
12123            Unit::ReciprocalCubicYard => "reciprocal cubic yard",
12124            Unit::CubicYardPerDegreeFahrenheit => "cubic yard per degree Fahrenheit",
12125            Unit::CubicYardPerDay => "cubic yard per day",
12126            Unit::CubicYardPerHour => "cubic yard per hour",
12127            Unit::CubicYardPerPsi => "cubic yard per psi",
12128            Unit::CubicYardPerMinute => "cubic yard per minute",
12129            Unit::CubicYardPerSecond => "cubic yard per second",
12130            Unit::KilohertzMetre => "kilohertz metre",
12131            Unit::GigahertzMetre => "gigahertz metre",
12132            Unit::Beaufort => "Beaufort",
12133            Unit::ReciprocalMegakelvinOrMegakelvinToPowerMinusOne => "reciprocal megakelvin or megakelvin to the power minus one",
12134            Unit::ReciprocalKilovoltAmpereReciprocalHour => "reciprocal kilovolt - ampere reciprocal hour",
12135            Unit::MillilitrePerSquareCentimetreMinute => "millilitre per square centimetre minute",
12136            Unit::NewtonPerCentimetre => "newton per centimetre",
12137            Unit::OhmKilometre => "ohm kilometre",
12138            Unit::PercentPerDegreeCelsius => "percent per degree Celsius",
12139            Unit::GigaohmPerMetre => "gigaohm per metre",
12140            Unit::MegahertzMetre => "megahertz metre",
12141            Unit::KilogramPerKilogram => "kilogram per kilogram",
12142            Unit::ReciprocalVoltAmpereReciprocalSecond => "reciprocal volt - ampere reciprocal second",
12143            Unit::KilogramPerKilometre => "kilogram per kilometre",
12144            Unit::PascalSecondPerLitre => "pascal second per litre",
12145            Unit::MillimolePerLitre => "millimole per litre",
12146            Unit::NewtonMetrePerSquareMetre => "newton metre per square metre",
12147            Unit::MillivoltAmpere => "millivolt - ampere",
12148            Unit::_30DayMonth => "30-day month",
12149            Unit::Actual360 => "actual/360",
12150            Unit::KilometrePerSecondSquared => "kilometre per second squared",
12151            Unit::CentimetrePerSecondSquared => "centimetre per second squared",
12152            Unit::MonetaryValue => "monetary value",
12153            Unit::YardPerSecondSquared => "yard per second squared",
12154            Unit::MillimetrePerSecondSquared => "millimetre per second squared",
12155            Unit::MileStatuteMilePerSecondSquared => "mile (statute mile) per second squared",
12156            Unit::Mil => "mil",
12157            Unit::Revolution => "revolution",
12158            Unit::DegreeUnitAnglePerSecondSquared => "degree [unit of angle] per second squared",
12159            Unit::RevolutionPerMinute => "revolution per minute ",
12160            Unit::CircularMil => "circular mil ",
12161            Unit::SquareMileBasedOnUSSurveyFoot => "square mile (based on U.S. survey foot) ",
12162            Unit::ChainBasedOnUSSurveyFoot => "chain (based on U.S. survey foot)",
12163            Unit::Microcurie => "microcurie",
12164            Unit::Furlong => "furlong",
12165            Unit::FootUSSurvey => "foot (U.S. survey) ",
12166            Unit::MileBasedOnUSSurveyFoot => "mile (based on U.S. survey foot) ",
12167            Unit::MetrePerPascal => "metre per pascal",
12168            Unit::MetrePerRadiant => "metre per radiant",
12169            Unit::Shake => "shake",
12170            Unit::MilePerMinute => "mile per minute ",
12171            Unit::MilePerSecond => "mile per second ",
12172            Unit::MetrePerSecondPascal => "metre per second pascal",
12173            Unit::MetrePerHour => "metre per hour",
12174            Unit::InchPerYear => "inch per year",
12175            Unit::KilometrePerSecond => "kilometre per second ",
12176            Unit::InchPerMinute => "inch per minute",
12177            Unit::YardPerSecond => "yard per second",
12178            Unit::YardPerMinute => "yard per minute",
12179            Unit::YardPerHour => "yard per hour",
12180            Unit::AcreFootBasedOnUSSurveyFoot => "acre-foot (based on U.S. survey foot)",
12181            Unit::Cord128Ft3 => "cord (128 ft3)",
12182            Unit::CubicMileUkStatute => "cubic mile (UK statute)",
12183            Unit::MicroInch => "micro-inch",
12184            Unit::TonRegister => "ton, register ",
12185            Unit::CubicMetrePerPascal => "cubic metre per pascal",
12186            Unit::Bel => "bel",
12187            Unit::KilogramPerCubicMetrePascal => "kilogram per cubic metre pascal",
12188            Unit::KilogramPerPascal => "kilogram per pascal",
12189            Unit::KilopoundForce => "kilopound-force",
12190            Unit::Poundal => "poundal",
12191            Unit::KilogramMetrePerSecondSquared => "kilogram metre per second squared",
12192            Unit::Pond => "pond",
12193            Unit::SquareFootPerHour => "square foot per hour ",
12194            Unit::StokesPerPascal => "stokes per pascal",
12195            Unit::SquareCentimetrePerSecond => "square centimetre per second",
12196            Unit::SquareMetrePerSecondPascal => "square metre per second pascal",
12197            Unit::Denier_Dup => "denier ",
12198            Unit::PoundPerYard => "pound per yard ",
12199            Unit::TonAssay => "ton, assay",
12200            Unit::Pfund => "pfund",
12201            Unit::KilogramPerSecondPascal => "kilogram per second pascal",
12202            Unit::TonnePerMonth => "tonne per month",
12203            Unit::TonnePerYear => "tonne per year",
12204            Unit::MillionBtuPer1000CubicFoot => "million Btu per 1000 cubic foot",
12205            Unit::KilopoundPerHour => "kilopound per hour",
12206            Unit::PoundPerPound => "pound per pound",
12207            Unit::PoundForceFoot => "pound-force foot",
12208            Unit::NewtonMetrePerRadian => "newton metre per radian",
12209            Unit::KilogramMetre => "kilogram metre",
12210            Unit::PoundalFoot => "poundal foot",
12211            Unit::PoundalInch => "poundal inch",
12212            Unit::DyneMetre => "dyne metre",
12213            Unit::KilogramCentimetrePerSecond => "kilogram centimetre per second",
12214            Unit::GramCentimetrePerSecond => "gram centimetre per second",
12215            Unit::MegavoltAmpereReactiveHour => "megavolt ampere reactive hour",
12216            Unit::Megalitre => "megalitre",
12217            Unit::Megametre => "megametre",
12218            Unit::Megavar => "megavar",
12219            Unit::Megawatt => "megawatt",
12220            Unit::ThousandStandardBrickEquivalent => "thousand standard brick equivalent",
12221            Unit::ThousandBoardFoot => "thousand board foot",
12222            Unit::Millibar => "millibar",
12223            Unit::Microgram => "microgram",
12224            Unit::Millicurie => "millicurie",
12225            Unit::AirDryMetricTon => "air dry metric ton",
12226            Unit::Milligram => "milligram",
12227            Unit::Megahertz => "megahertz",
12228            Unit::SquareMileStatuteMile => "square mile (statute mile)",
12229            Unit::Thousand => "thousand",
12230            Unit::MinuteUnitTime => "minute [unit of time]",
12231            Unit::Million => "million",
12232            Unit::MillionInternationalUnit => "million international unit",
12233            Unit::SquareMetreDay => "Square Metre Day",
12234            Unit::SquareMetreMonth => "Square Metre Month",
12235            Unit::SquareMetreWeek => "Square Metre Week",
12236            Unit::Milliard => "milliard",
12237            Unit::Millilitre => "millilitre",
12238            Unit::SquareMillimetre => "square millimetre",
12239            Unit::CubicMillimetre => "cubic millimetre",
12240            Unit::Millimetre => "millimetre",
12241            Unit::KilogramDryWeight => "kilogram, dry weight",
12242            Unit::MegaJoulePerNormalisedCubicMetre => "Mega Joule per Normalised cubic Metre",
12243            Unit::Month => "month",
12244            Unit::Megapascal => "megapascal",
12245            Unit::CubicMetreDay => "Cubic Metre Day",
12246            Unit::CubicMetrePerHour => "cubic metre per hour",
12247            Unit::CubicMetreMonth => "Cubic Metre Month",
12248            Unit::CubicMetrePerSecond => "cubic metre per second",
12249            Unit::CubicMetreWeek => "Cubic Metre Week",
12250            Unit::MetreDay => "Metre Day",
12251            Unit::MetreMonth => "Metre Month",
12252            Unit::MetreWeek => "Metre Week",
12253            Unit::MetrePerSecondSquared => "metre per second squared",
12254            Unit::SquareMetre => "square metre",
12255            Unit::CubicMetre => "cubic metre",
12256            Unit::Metre => "metre",
12257            Unit::MetrePerSecond => "metre per second",
12258            Unit::Milihertz => "milihertz",
12259            Unit::MegavoltAmpere => "megavolt - ampere",
12260            Unit::MegawattHour1000KwH => "megawatt hour (1000 kW.h)",
12261            Unit::PenCalorie => "pen calorie",
12262            Unit::PoundFootPerSecond => "pound foot per second",
12263            Unit::PoundInchPerSecond => "pound inch per second",
12264            Unit::Pferdestaerke => "Pferdestaerke",
12265            Unit::CentimetreMercury0Oc => "centimetre of mercury (0 ºC)",
12266            Unit::CentimetreWater4Oc => "centimetre of water (4 ºC)",
12267            Unit::FootWater392Of => "foot of water (39.2 ºF)",
12268            Unit::InchMercury32Of => "inch of mercury (32 ºF)",
12269            Unit::InchMercury60Of => "inch of mercury (60 ºF)",
12270            Unit::InchWater392Of => "inch of water (39.2 ºF)",
12271            Unit::InchWater60Of => "inch of water (60 ºF)",
12272            Unit::KipPerSquareInch => "kip per square inch",
12273            Unit::PoundalPerSquareFoot => "poundal per square foot ",
12274            Unit::OunceAvoirdupoisPerSquareInch => "ounce (avoirdupois) per square inch ",
12275            Unit::ConventionalMetreWater => "conventional metre of water",
12276            Unit::GramPerSquareMillimetre => "gram per square millimetre",
12277            Unit::PoundPerSquareYard => "pound per square yard",
12278            Unit::PoundalPerSquareInch => "poundal per square inch",
12279            Unit::FootToFourthPower => "foot to the fourth power ",
12280            Unit::CubicDecimetrePerKilogram => "cubic decimetre per kilogram",
12281            Unit::CubicFootPerPound => "cubic foot per pound",
12282            Unit::PrintPoint => "print point",
12283            Unit::CubicInchPerPound => "cubic inch per pound",
12284            Unit::KilonewtonPerMetre => "kilonewton per metre",
12285            Unit::PoundalPerInch => "poundal per inch",
12286            Unit::PoundForcePerYard => "pound-force per yard",
12287            Unit::PoundalSecondPerSquareFoot => "poundal second per square foot ",
12288            Unit::PoisePerPascal => "poise per pascal",
12289            Unit::NewtonSecondPerSquareMetre => "newton second per square metre",
12290            Unit::KilogramPerMetreSecond => "kilogram per metre second",
12291            Unit::KilogramPerMetreMinute => "kilogram per metre minute",
12292            Unit::KilogramPerMetreDay => "kilogram per metre day",
12293            Unit::KilogramPerMetreHour => "kilogram per metre hour",
12294            Unit::GramPerCentimetreSecond => "gram per centimetre second",
12295            Unit::PoundalSecondPerSquareInch => "poundal second per square inch",
12296            Unit::PoundPerFootMinute => "pound per foot minute",
12297            Unit::PoundPerFootDay => "pound per foot day",
12298            Unit::CubicMetrePerSecondPascal => "cubic metre per second pascal",
12299            Unit::FootPoundal => "foot poundal",
12300            Unit::InchPoundal => "inch poundal",
12301            Unit::WattPerSquareCentimetre => "watt per square centimetre ",
12302            Unit::WattPerSquareInch => "watt per square inch ",
12303            Unit::BritishThermalUnitInternationalTablePerSquareFootHour => "British thermal unit (international table) per square foot hour",
12304            Unit::BritishThermalUnitThermochemicalPerSquareFootHour => "British thermal unit (thermochemical) per square foot hour",
12305            Unit::BritishThermalUnitThermochemicalPerSquareFootMinute => "British thermal unit (thermochemical) per square foot minute",
12306            Unit::BritishThermalUnitInternationalTablePerSquareFootSecond => "British thermal unit (international table) per square foot second",
12307            Unit::BritishThermalUnitThermochemicalPerSquareFootSecond => "British thermal unit (thermochemical) per square foot second",
12308            Unit::BritishThermalUnitInternationalTablePerSquareInchSecond => "British thermal unit (international table) per square inch second",
12309            Unit::CalorieThermochemicalPerSquareCentimetreMinute => "calorie (thermochemical) per square centimetre minute",
12310            Unit::CalorieThermochemicalPerSquareCentimetreSecond => "calorie (thermochemical) per square centimetre second",
12311            Unit::BritishThermalUnitInternationalTablePerCubicFoot => "British thermal unit (international table) per cubic foot ",
12312            Unit::BritishThermalUnitThermochemicalPerCubicFoot => "British thermal unit (thermochemical) per cubic foot",
12313            Unit::BritishThermalUnitInternationalTablePerDegreeFahrenheit => "British thermal unit (international table) per degree Fahrenheit",
12314            Unit::BritishThermalUnitThermochemicalPerDegreeFahrenheit => "British thermal unit (thermochemical) per degree Fahrenheit",
12315            Unit::BritishThermalUnitInternationalTablePerDegreeRankine => "British thermal unit (international table) per degree Rankine",
12316            Unit::BritishThermalUnitThermochemicalPerDegreeRankine => "British thermal unit (thermochemical) per degree Rankine",
12317            Unit::BritishThermalUnitThermochemicalPerPoundDegreeRankine => "British thermal unit (thermochemical) per pound degree Rankine",
12318            Unit::KilocalorieInternationalTablePerGramKelvin => "kilocalorie (international table) per gram kelvin",
12319            Unit::BritishThermalUnit39Of => "British thermal unit (39 ºF) ",
12320            Unit::BritishThermalUnit59Of => "British thermal unit (59 ºF)",
12321            Unit::BritishThermalUnit60Of => "British thermal unit (60 ºF) ",
12322            Unit::Calorie20Oc => "calorie (20 ºC) ",
12323            Unit::Quad1015Btuit => "quad (1015 BtuIT)",
12324            Unit::ThermEc => "therm (EC)",
12325            Unit::ThermUS => "therm (U.S.)",
12326            Unit::BritishThermalUnitThermochemicalPerPound => "British thermal unit (thermochemical) per pound",
12327            Unit::BritishThermalUnitInternationalTablePerHourSquareFootDegreeFahrenheit => "British thermal unit (international table) per hour square foot degree Fahrenheit",
12328            Unit::BritishThermalUnitThermochemicalPerHourSquareFootDegreeFahrenheit => "British thermal unit (thermochemical) per hour square foot degree Fahrenheit",
12329            Unit::BritishThermalUnitInternationalTablePerSecondSquareFootDegreeFahrenheit => "British thermal unit (international table) per second square foot degree Fahrenheit",
12330            Unit::BritishThermalUnitThermochemicalPerSecondSquareFootDegreeFahrenheit => "British thermal unit (thermochemical) per second square foot degree Fahrenheit",
12331            Unit::KilowattPerSquareMetreKelvin => "kilowatt per square metre kelvin",
12332            Unit::KelvinPerPascal => "kelvin per pascal",
12333            Unit::WattPerMetreDegreeCelsius => "watt per metre degree Celsius",
12334            Unit::KilowattPerMetreKelvin => "kilowatt per metre kelvin",
12335            Unit::KilowattPerMetreDegreeCelsius => "kilowatt per metre degree Celsius",
12336            Unit::MetrePerDegreeCelciusMetre => "metre per degree Celcius metre",
12337            Unit::DegreeFahrenheitHourPerBritishThermalUnitInternationalTable => "degree Fahrenheit hour per British thermal unit (international table)",
12338            Unit::DegreeFahrenheitHourPerBritishThermalUnitThermochemical => "degree Fahrenheit hour per British thermal unit (thermochemical)",
12339            Unit::DegreeFahrenheitSecondPerBritishThermalUnitInternationalTable => "degree Fahrenheit second per British thermal unit (international table)",
12340            Unit::DegreeFahrenheitSecondPerBritishThermalUnitThermochemical => "degree Fahrenheit second per British thermal unit (thermochemical)",
12341            Unit::DegreeFahrenheitHourSquareFootPerBritishThermalUnitInternationalTableInch => "degree Fahrenheit hour square foot per British thermal unit (international table) inch",
12342            Unit::DegreeFahrenheitHourSquareFootPerBritishThermalUnitThermochemicalInch => "degree Fahrenheit hour square foot per British thermal unit (thermochemical) inch",
12343            Unit::Kilofarad => "kilofarad",
12344            Unit::ReciprocalJoule => "reciprocal joule",
12345            Unit::Picosiemens => "picosiemens",
12346            Unit::AmperePerPascal => "ampere per pascal",
12347            Unit::Franklin => "franklin",
12348            Unit::AmpereMinute => "ampere minute",
12349            Unit::Biot => "biot",
12350            Unit::Gilbert => "gilbert",
12351            Unit::VoltPerPascal => "volt per pascal",
12352            Unit::Picovolt => "picovolt",
12353            Unit::MilligramPerKilogram => "milligram per kilogram",
12354            Unit::NumberArticles => "number of articles",
12355            Unit::NumberCells => "number of cells",
12356            Unit::Newton => "newton",
12357            Unit::Message => "message",
12358            Unit::Nil => "nil",
12359            Unit::NumberInternationalUnits => "number of international units",
12360            Unit::Load => "load",
12361            Unit::NormalisedCubicMetre => "Normalised cubic metre",
12362            Unit::NauticalMile => "nautical mile",
12363            Unit::NumberPacks => "number of packs",
12364            Unit::NumberParts => "number of parts",
12365            Unit::NetTon => "net ton",
12366            Unit::NephelometricTurbidityUnit => "Nephelometric turbidity unit",
12367            Unit::NewtonMetre => "newton metre",
12368            Unit::PartPerThousand => "part per thousand",
12369            Unit::Panel => "panel",
12370            Unit::OzoneDepletionEquivalent => "ozone depletion equivalent",
12371            Unit::OdsGrams => "ODS Grams",
12372            Unit::OdsKilograms => "ODS Kilograms",
12373            Unit::OdsMilligrams => "ODS Milligrams",
12374            Unit::Ohm => "ohm",
12375            Unit::OuncePerSquareYard => "ounce per square yard",
12376            Unit::OunceAvoirdupois => "ounce (avoirdupois)",
12377            Unit::OscillationsPerMinute => "oscillations per minute",
12378            Unit::OvertimeHour => "overtime hour",
12379            Unit::FluidOunceUs => "fluid ounce (US)",
12380            Unit::FluidOunceUk => "fluid ounce (UK)",
12381            Unit::Percent => "percent",
12382            Unit::CoulombPerMetre => "coulomb per metre",
12383            Unit::Kiloweber => "kiloweber",
12384            Unit::Gamma => "gamma",
12385            Unit::Kilotesla => "kilotesla",
12386            Unit::JoulePerSecond => "joule per second",
12387            Unit::JoulePerMinute => "joule per minute",
12388            Unit::JoulePerHour => "joule per hour",
12389            Unit::JoulePerDay => "joule per day",
12390            Unit::KilojoulePerSecond => "kilojoule per second",
12391            Unit::KilojoulePerMinute => "kilojoule per minute",
12392            Unit::PoundPerFoot => "pound per foot",
12393            Unit::KilojoulePerHour => "kilojoule per hour",
12394            Unit::KilojoulePerDay => "kilojoule per day",
12395            Unit::Nanoohm => "nanoohm",
12396            Unit::OhmCircularMilPerFoot => "ohm circular-mil per foot ",
12397            Unit::Kilohenry => "kilohenry",
12398            Unit::LumenPerSquareFoot => "lumen per square foot ",
12399            Unit::Phot => "phot",
12400            Unit::Footcandle => "footcandle",
12401            Unit::CandelaPerSquareInch => "candela per square inch ",
12402            Unit::Footlambert => "footlambert",
12403            Unit::Lambert => "lambert",
12404            Unit::Stilb => "stilb",
12405            Unit::CandelaPerSquareFoot => "candela per square foot",
12406            Unit::Kilocandela => "kilocandela",
12407            Unit::Millicandela => "millicandela",
12408            Unit::HefnerKerze => "Hefner-Kerze",
12409            Unit::InternationalCandle => "international candle ",
12410            Unit::BritishThermalUnitInternationalTablePerSquareFoot => "British thermal unit (international table) per square foot",
12411            Unit::BritishThermalUnitThermochemicalPerSquareFoot => "British thermal unit (thermochemical) per square foot",
12412            Unit::CalorieThermochemicalPerSquareCentimetre => "calorie (thermochemical) per square centimetre ",
12413            Unit::Langley => "langley",
12414            Unit::DecadeLogarithmic => "decade (logarithmic)",
12415            Unit::PascalSquaredSecond => "pascal squared second",
12416            Unit::BelPerMetre => "bel per metre",
12417            Unit::PoundMole => "pound mole",
12418            Unit::PoundMolePerSecond => "pound mole per second",
12419            Unit::PoundMolePerMinute => "pound mole per minute",
12420            Unit::KilomolePerKilogram => "kilomole per kilogram",
12421            Unit::PoundMolePerPound => "pound mole per pound",
12422            Unit::NewtonSquareMetrePerAmpere => "newton square metre per ampere",
12423            Unit::FivePack => "five pack",
12424            Unit::WeberMetre => "weber metre",
12425            Unit::MolPerKilogramPascal => "mol per kilogram pascal",
12426            Unit::MolPerCubicMetrePascal => "mol per cubic metre pascal",
12427            Unit::UnitPole => "unit pole ",
12428            Unit::MilligrayPerSecond => "milligray per second",
12429            Unit::MicrograyPerSecond => "microgray per second",
12430            Unit::NanograyPerSecond => "nanogray per second",
12431            Unit::GrayPerMinute => "gray per minute",
12432            Unit::MilligrayPerMinute => "milligray per minute",
12433            Unit::MicrograyPerMinute => "microgray per minute",
12434            Unit::NanograyPerMinute => "nanogray per minute",
12435            Unit::GrayPerHour => "gray per hour",
12436            Unit::MilligrayPerHour => "milligray per hour",
12437            Unit::MicrograyPerHour => "microgray per hour",
12438            Unit::NanograyPerHour => "nanogray per hour",
12439            Unit::SievertPerSecond => "sievert per second",
12440            Unit::MillisievertPerSecond => "millisievert per second",
12441            Unit::MicrosievertPerSecond => "microsievert per second",
12442            Unit::NanosievertPerSecond => "nanosievert per second",
12443            Unit::RemPerSecond => "rem per second",
12444            Unit::SievertPerHour => "sievert per hour",
12445            Unit::MillisievertPerHour => "millisievert per hour",
12446            Unit::MicrosievertPerHour => "microsievert per hour",
12447            Unit::NanosievertPerHour => "nanosievert per hour",
12448            Unit::SievertPerMinute => "sievert per minute",
12449            Unit::MillisievertPerMinute => "millisievert per minute",
12450            Unit::MicrosievertPerMinute => "microsievert per minute",
12451            Unit::NanosievertPerMinute => "nanosievert per minute",
12452            Unit::ReciprocalSquareInch => "reciprocal square inch",
12453            Unit::PascalSquareMetrePerKilogram => "pascal square metre per kilogram",
12454            Unit::MillipascalPerMetre => "millipascal per metre",
12455            Unit::KilopascalPerMetre => "kilopascal per metre",
12456            Unit::HectopascalPerMetre => "hectopascal per metre",
12457            Unit::StandardAtmospherePerMetre => "standard atmosphere per metre",
12458            Unit::TechnicalAtmospherePerMetre => "technical atmosphere per metre",
12459            Unit::TorrPerMetre => "torr per metre",
12460            Unit::PsiPerInch => "psi per inch",
12461            Unit::CubicMetrePerSecondSquareMetre => "cubic metre per second square metre",
12462            Unit::Rhe => "rhe",
12463            Unit::PoundForceFootPerInch => "pound-force foot per inch",
12464            Unit::PoundForceInchPerInch => "pound-force inch per inch ",
12465            Unit::Perm0Oc => "perm (0 ºC) ",
12466            Unit::Perm23Oc => "perm (23 ºC) ",
12467            Unit::BytePerSecond => "byte per second",
12468            Unit::KilobytePerSecond => "kilobyte per second",
12469            Unit::MegabytePerSecond => "megabyte per second",
12470            Unit::ReciprocalVolt => "reciprocal volt",
12471            Unit::ReciprocalRadian => "reciprocal radian",
12472            Unit::PascalToPowerSumStoichiometricNumbers => "pascal to the power sum of stoichiometric numbers",
12473            Unit::MolePerCubivMetreToPowerSumStoichiometricNumbers => "mole per cubiv metre to the power sum of stoichiometric numbers",
12474            Unit::Pascal => "pascal",
12475            Unit::Pad => "pad",
12476            Unit::ProofLitre => "proof litre",
12477            Unit::ProofGallon => "proof gallon",
12478            Unit::Pitch => "pitch",
12479            Unit::DegreePlato => "degree Plato",
12480            Unit::PoundPerInchLength => "pound per inch of length",
12481            Unit::PagePerInch => "page per inch",
12482            Unit::Pair => "pair",
12483            Unit::PoundForcePerSquareInch => "pound-force per square inch",
12484            Unit::DryPintUs => "dry pint (US)",
12485            Unit::PintUk => "pint (UK)",
12486            Unit::LiquidPintUs => "liquid pint (US)",
12487            Unit::Portion => "portion",
12488            Unit::JoulePerTesla => "joule per tesla",
12489            Unit::Erlang => "erlang",
12490            Unit::Octet => "octet",
12491            Unit::OctetPerSecond => "octet per second",
12492            Unit::Shannon => "shannon",
12493            Unit::Hartley => "hartley",
12494            Unit::NaturalUnitInformation => "natural unit of information",
12495            Unit::ShannonPerSecond => "shannon per second",
12496            Unit::HartleyPerSecond => "hartley per second",
12497            Unit::NaturalUnitInformationPerSecond => "natural unit of information per second",
12498            Unit::SecondPerKilogramm => "second per kilogramm",
12499            Unit::WattSquareMetre => "watt square metre",
12500            Unit::SecondPerRadianCubicMetre => "second per radian cubic metre",
12501            Unit::WeberToPowerMinusOne => "weber to the power minus one",
12502            Unit::ReciprocalInch => "reciprocal inch",
12503            Unit::Dioptre => "dioptre",
12504            Unit::OnePerOne => "one per one",
12505            Unit::NewtonMetrePerMetre => "newton metre per metre",
12506            Unit::KilogramPerSquareMetrePascalSecond => "kilogram per square metre pascal second",
12507            Unit::MicrogramPerHectogram => "microgram per hectogram",
12508            Unit::Meal => "meal",
12509            Unit::PhPotentialHydrogen => "pH (potential of Hydrogen)",
12510            Unit::KilojoulePerGram => "kilojoule per gram",
12511            Unit::Femtolitre => "femtolitre",
12512            Unit::Picolitre => "picolitre",
12513            Unit::Nanolitre => "nanolitre",
12514            Unit::MegawattsPerMinute => "megawatts per minute",
12515            Unit::SquareMetrePerCubicMetre => "square metre per cubic metre",
12516            Unit::StandardCubicMetrePerDay => "Standard cubic metre per day",
12517            Unit::StandardCubicMetrePerHour => "Standard cubic metre per hour",
12518            Unit::NormalizedCubicMetrePerDay => "Normalized cubic metre per day",
12519            Unit::NormalizedCubicMetrePerHour => "Normalized cubic metre per hour",
12520            Unit::JoulePerNormalisedCubicMetre => "Joule per normalised cubic metre",
12521            Unit::JoulePerStandardCubicMetre => "Joule per standard cubic metre",
12522            Unit::PageFacsimile => "page - facsimile",
12523            Unit::QuarterAYear => "quarter (of a year)",
12524            Unit::PageHardcopy => "page - hardcopy",
12525            Unit::Quire => "quire",
12526            Unit::DryQuartUs => "dry quart (US)",
12527            Unit::QuartUk => "quart (UK)",
12528            Unit::LiquidQuartUs => "liquid quart (US)",
12529            Unit::QuarterUk => "quarter (UK)",
12530            Unit::Pica => "pica",
12531            Unit::ThousandCubicMetre => "thousand cubic metre",
12532            Unit::RunningOrOperatingHour => "running or operating hour",
12533            Unit::Ream => "ream",
12534            Unit::Room => "room",
12535            Unit::PoundPerReam => "pound per ream",
12536            Unit::RevolutionsPerMinute => "revolutions per minute",
12537            Unit::RevolutionsPerSecond => "revolutions per second",
12538            Unit::RevenueTonMile => "revenue ton mile",
12539            Unit::SquareFootPerSecond => "square foot per second",
12540            Unit::SquareMetrePerSecond => "square metre per second",
12541            Unit::HalfYear6Months => "half year (6 months)",
12542            Unit::Score => "score",
12543            Unit::Scruple => "scruple",
12544            Unit::SecondUnitTime => "second [unit of time]",
12545            Unit::Set => "set",
12546            Unit::Segment => "segment",
12547            Unit::Siemens => "siemens",
12548            Unit::StandardCubicMetre => "Standard cubic metre",
12549            Unit::MileStatuteMile => "mile (statute mile)",
12550            Unit::Square => "square",
12551            Unit::SquareRoofing => "square, roofing",
12552            Unit::Strip => "strip",
12553            Unit::Stick => "stick",
12554            Unit::StoneUk => "stone (UK)",
12555            Unit::StickCigarette => "stick, cigarette",
12556            Unit::StandardLitre => "standard litre",
12557            Unit::TonUsOrShortTonUkUs => "ton (US) or short ton (UK/US)",
12558            Unit::Straw => "straw",
12559            Unit::Skein => "skein",
12560            Unit::Shipment => "shipment",
12561            Unit::Syringe => "syringe",
12562            Unit::TelecommunicationLineInService => "telecommunication line in service",
12563            Unit::ThousandPiece => "thousand piece",
12564            Unit::KiloampereHourThousandAmpereHour => "kiloampere hour (thousand ampere hour)",
12565            Unit::TotalAcidNumber => "total acid number",
12566            Unit::ThousandSquareInch => "thousand square inch",
12567            Unit::MetricTonIncludingContainer => "metric ton, including container",
12568            Unit::MetricTonIncludingInnerPackaging => "metric ton, including inner packaging",
12569            Unit::TonneKilometre => "tonne kilometre",
12570            Unit::KilogramImportedMeatLessOffal => "kilogram of imported meat, less offal",
12571            Unit::TonneMetricTon => "tonne (metric ton)",
12572            Unit::TenPack => "ten pack",
12573            Unit::TeethPerInch => "teeth per inch",
12574            Unit::TenPair => "ten pair",
12575            Unit::ThousandCubicMetrePerDay => "thousand cubic metre per day",
12576            Unit::TrillionEur => "trillion (EUR)",
12577            Unit::TenSet => "ten set",
12578            Unit::TenThousandSticks => "ten thousand sticks",
12579            Unit::Treatment => "treatment",
12580            Unit::Tablet => "tablet",
12581            Unit::TelecommunicationLineInServiceAverage => "telecommunication line in service average",
12582            Unit::TelecommunicationPort => "telecommunication port",
12583            Unit::VoltAmperePerKilogram => "volt - ampere per kilogram",
12584            Unit::Volt => "volt",
12585            Unit::PercentVolume => "percent volume",
12586            Unit::WetKilo => "wet kilo",
12587            Unit::WattPerKilogram => "watt per kilogram",
12588            Unit::WetPound => "wet pound",
12589            Unit::Cord => "cord",
12590            Unit::WetTon => "wet ton",
12591            Unit::Weber => "weber",
12592            Unit::Week => "week",
12593            Unit::WineGallon => "wine gallon",
12594            Unit::WattHour => "watt hour",
12595            Unit::WorkingMonth => "working month",
12596            Unit::Standard => "standard",
12597            Unit::Watt => "watt",
12598            Unit::GuntersChain => "Gunter's chain",
12599            Unit::SquareYard => "square yard",
12600            Unit::CubicYard => "cubic yard",
12601            Unit::Yard => "yard",
12602            Unit::HangingContainer => "hanging container",
12603            Unit::Nanomole => "nanomole",
12604            Unit::Page => "page",
12605            Unit::MutuallyDefined => "mutually defined",
12606            Unit::DrumSteel => "Drum, steel",
12607            Unit::DrumAluminium => "Drum, aluminium",
12608            Unit::DrumPlywood => "Drum, plywood",
12609            Unit::ContainerFlexible => "Container, flexible",
12610            Unit::DrumFibre => "Drum, fibre",
12611            Unit::DrumWooden => "Drum, wooden",
12612            Unit::BarrelWooden => "Barrel, wooden",
12613            Unit::JerricanSteel => "Jerrican, steel",
12614            Unit::JerricanPlastic => "Jerrican, plastic",
12615            Unit::BagSuperBulk => "Bag, super bulk",
12616            Unit::BagPolybag => "Bag, polybag",
12617            Unit::BoxSteel => "Box, steel",
12618            Unit::BoxAluminium => "Box, aluminium",
12619            Unit::BoxNaturalWood => "Box, natural wood",
12620            Unit::BoxPlywood => "Box, plywood",
12621            Unit::BoxReconstitutedWood => "Box, reconstituted wood",
12622            Unit::BoxFibreboard => "Box, fibreboard",
12623            Unit::BoxPlastic => "Box, plastic",
12624            Unit::BagWovenPlastic => "Bag, woven plastic",
12625            Unit::BagTextile => "Bag, textile ",
12626            Unit::BagPaper => "Bag, paper ",
12627            Unit::CompositePackagingPlasticReceptacle => "Composite packaging, plastic receptacle",
12628            Unit::CompositePackagingGlassReceptacle => "Composite packaging, glass receptacle",
12629            Unit::CaseCar => "Case, car",
12630            Unit::CaseWooden => "Case, wooden",
12631            Unit::PalletWooden => "Pallet, wooden",
12632            Unit::CrateWooden => "Crate, wooden",
12633            Unit::BundleWooden => "Bundle, wooden",
12634            Unit::IntermediateBulkContainerRigidPlastic => "Intermediate bulk container, rigid plastic",
12635            Unit::ReceptacleFibre => "Receptacle, fibre ",
12636            Unit::ReceptaclePaper => "Receptacle, paper ",
12637            Unit::ReceptacleWooden => "Receptacle, wooden ",
12638            Unit::Aerosol => "Aerosol",
12639            Unit::PalletModularCollars80cms60cms => "Pallet, modular, collars 80cms * 60cms ",
12640            Unit::PalletShrinkwrapped => "Pallet, shrinkwrapped ",
12641            Unit::Pallet100cms110cms => "Pallet, 100cms * 110cms ",
12642            Unit::Clamshell => "Clamshell",
12643            Unit::Cone => "Cone",
12644            Unit::Ball_Dup => "Ball",
12645            Unit::AmpouleNonProtected => "Ampoule, non-protected ",
12646            Unit::AmpouleProtected => "Ampoule, protected ",
12647            Unit::Atomizer => "Atomizer ",
12648            Unit::Capsule => "Capsule",
12649            Unit::Belt => "Belt",
12650            Unit::Barrel => "Barrel ",
12651            Unit::Bobbin => "Bobbin ",
12652            Unit::BottlecrateBottlerack => "Bottlecrate / bottlerack ",
12653            Unit::Board => "Board",
12654            Unit::Bundle => "Bundle ",
12655            Unit::BalloonNonProtected => "Balloon, non-protected ",
12656            Unit::Bag => "Bag",
12657            Unit::Bunch => "Bunch",
12658            Unit::Bin => "Bin",
12659            Unit::Bucket => "Bucket ",
12660            Unit::Basket => "Basket ",
12661            Unit::BaleCompressed => "Bale, compressed ",
12662            Unit::Basin => "Basin",
12663            Unit::BaleNonCompressed => "Bale, non-compressed ",
12664            Unit::BottleNonProtectedCylindrical => "Bottle, non-protected, cylindrical ",
12665            Unit::BalloonProtected => "Balloon, protected ",
12666            Unit::BottleProtectedCylindrical => "Bottle, protected cylindrical",
12667            Unit::Bar => "Bar",
12668            Unit::BottleNonProtectedBulbous => "Bottle, non-protected, bulbous ",
12669            Unit::Bolt => "Bolt ",
12670            Unit::Butt => "Butt ",
12671            Unit::BottleProtectedBulbous => "Bottle, protected bulbous",
12672            Unit::BoxForLiquids => "Box, for liquids",
12673            Unit::Box => "Box",
12674            Unit::BoardInBundleBunchTruss => "Board, in bundle/bunch/truss ",
12675            Unit::BarsInBundleBunchTruss => "Bars, in bundle/bunch/truss",
12676            Unit::CanRectangular => "Can, rectangular ",
12677            Unit::CrateBeer => "Crate, beer",
12678            Unit::Churn => "Churn",
12679            Unit::CanWithHandleAndSpout => "Can, with handle and spout ",
12680            Unit::Creel => "Creel",
12681            Unit::Coffer => "Coffer ",
12682            Unit::Cage => "Cage ",
12683            Unit::Chest => "Chest",
12684            Unit::Canister => "Canister ",
12685            Unit::Coffin => "Coffin ",
12686            Unit::Cask => "Cask ",
12687            Unit::Coil => "Coil ",
12688            Unit::Card_Dup => "Card",
12689            Unit::ContainerNotOtherwiseSpecifiedAsTransportEquipment => "Container, not otherwise specified as transport equipment",
12690            Unit::CarboyNonProtected => "Carboy, non-protected",
12691            Unit::CarboyProtected => "Carboy, protected",
12692            Unit::Cartridge => "Cartridge",
12693            Unit::Crate => "Crate",
12694            Unit::Case => "Case ",
12695            Unit::Carton => "Carton ",
12696            Unit::Cup => "Cup",
12697            Unit::Cover => "Cover",
12698            Unit::CageRoll => "Cage, roll ",
12699            Unit::CanCylindrical => "Can, cylindrical ",
12700            Unit::Cylinder => "Cylinder ",
12701            Unit::Canvas => "Canvas ",
12702            Unit::CrateMultipleLayerPlastic => "Crate, multiple layer, plastic ",
12703            Unit::CrateMultipleLayerWooden => "Crate, multiple layer, wooden",
12704            Unit::CrateMultipleLayerCardboard => "Crate, multiple layer, cardboard ",
12705            Unit::CageCommonwealthHandlingEquipmentPoolChep => "Cage, Commonwealth Handling Equipment Pool (CHEP)",
12706            Unit::BoxCommonwealthHandlingEquipmentPoolChepEurobox => "Box, Commonwealth Handling Equipment Pool (CHEP), Eurobox",
12707            Unit::DrumIron => "Drum, iron ",
12708            Unit::DemijohnNonProtected => "Demijohn, non-protected",
12709            Unit::CrateBulkCardboard => "Crate, bulk, cardboard ",
12710            Unit::CrateBulkPlastic => "Crate, bulk, plastic ",
12711            Unit::CrateBulkWooden => "Crate, bulk, wooden",
12712            Unit::Dispenser => "Dispenser",
12713            Unit::DemijohnProtected => "Demijohn, protected",
12714            Unit::Drum => "Drum ",
12715            Unit::TrayOneLayerNoCoverPlastic => "Tray, one layer no cover, plastic",
12716            Unit::TrayOneLayerNoCoverWooden => "Tray, one layer no cover, wooden ",
12717            Unit::TrayOneLayerNoCoverPolystyrene => "Tray, one layer no cover, polystyrene",
12718            Unit::TrayOneLayerNoCoverCardboard => "Tray, one layer no cover, cardboard",
12719            Unit::TrayTwoLayersNoCoverPlasticTray => "Tray, two layers no cover, plastic tray",
12720            Unit::TrayTwoLayersNoCoverWooden => "Tray, two layers no cover, wooden",
12721            Unit::TrayTwoLayersNoCoverCardboard => "Tray, two layers no cover, cardboard ",
12722            Unit::BagPlastic => "Bag, plastic ",
12723            Unit::CaseWithPalletBase => "Case, with pallet base ",
12724            Unit::CaseWithPalletBaseWooden => "Case, with pallet base, wooden ",
12725            Unit::CaseWithPalletBaseCardboard => "Case, with pallet base, cardboard",
12726            Unit::CaseWithPalletBasePlastic => "Case, with pallet base, plastic",
12727            Unit::CaseWithPalletBaseMetal => "Case, with pallet base, metal",
12728            Unit::CaseIsothermic => "Case, isothermic ",
12729            Unit::Envelope => "Envelope ",
12730            Unit::Flexibag => "Flexibag",
12731            Unit::CrateFruit => "Crate, fruit ",
12732            Unit::CrateFramed => "Crate, framed",
12733            Unit::Flexitank => "Flexitank",
12734            Unit::Firkin => "Firkin ",
12735            Unit::Flask => "Flask",
12736            Unit::Footlocker => "Footlocker ",
12737            Unit::Filmpack => "Filmpack ",
12738            Unit::Frame => "Frame",
12739            Unit::Foodtainer => "Foodtainer",
12740            Unit::CartFlatbed => "Cart, flatbed",
12741            Unit::BagFlexibleContainer => "Bag, flexible container",
12742            Unit::BottleGas => "Bottle, gas",
12743            Unit::Girder => "Girder ",
12744            Unit::ContainerGallon => "Container, gallon",
12745            Unit::ReceptacleGlass => "Receptacle, glass ",
12746            Unit::TrayContainingHorizontallyStackedFlatItems => "Tray, containing horizontally stacked flat items",
12747            Unit::BagGunny => "Bag, gunny",
12748            Unit::GirdersInBundleBunchTruss => "Girders, in bundle/bunch/truss ",
12749            Unit::BasketWithHandlePlastic => "Basket, with handle, plastic ",
12750            Unit::BasketWithHandleWooden => "Basket, with handle, wooden",
12751            Unit::BasketWithHandleCardboard => "Basket, with handle, cardboard ",
12752            Unit::Hogshead => "Hogshead ",
12753            Unit::Hanger => "Hanger",
12754            Unit::Hamper => "Hamper ",
12755            Unit::PackageDisplayWooden => "Package, display, wooden ",
12756            Unit::PackageDisplayCardboard => "Package, display, cardboard",
12757            Unit::PackageDisplayPlastic => "Package, display, plastic",
12758            Unit::PackageDisplayMetal => "Package, display, metal",
12759            Unit::PackageShow => "Package, show",
12760            Unit::PackageFlow => "Package, flow ",
12761            Unit::PackagePaperWrapped => "Package, paper wrapped",
12762            Unit::DrumPlastic => "Drum, plastic",
12763            Unit::PackageCardboardWithBottleGripHoles => "Package, cardboard, with bottle grip-holes ",
12764            Unit::TrayRigidLiddedStackableCenTs144822002 => "Tray, rigid, lidded stackable (CEN TS 14482:2002)",
12765            Unit::Ingot => "Ingot",
12766            Unit::IngotsInBundleBunchTruss => "Ingots, in bundle/bunch/truss",
12767            Unit::BagJumbo => "Bag, jumbo",
12768            Unit::JerricanRectangular => "Jerrican, rectangular",
12769            Unit::Jug => "Jug",
12770            Unit::Jar => "Jar",
12771            Unit::Jutebag => "Jutebag",
12772            Unit::JerricanCylindrical => "Jerrican, cylindrical",
12773            Unit::Keg => "Keg",
12774            Unit::Kit_Dup => "Kit",
12775            Unit::Luggage => "Luggage",
12776            Unit::Log => "Log",
12777            Unit::Lot => "Lot",
12778            Unit::Lug => "Lug",
12779            Unit::Liftvan => "Liftvan",
12780            Unit::LogsInBundleBunchTruss => "Logs, in bundle/bunch/truss",
12781            Unit::CrateMetal => "Crate, metal",
12782            Unit::BagMultiply => "Bag, multiply",
12783            Unit::CrateMilk => "Crate, milk",
12784            Unit::ContainerMetal => "Container, metal",
12785            Unit::ReceptacleMetal => "Receptacle, metal ",
12786            Unit::SackMultiWall => "Sack, multi-wall ",
12787            Unit::Mat => "Mat",
12788            Unit::ReceptaclePlasticWrapped => "Receptacle, plastic wrapped ",
12789            Unit::Matchbox => "Matchbox ",
12790            Unit::NotAvailable => "Not available",
12791            Unit::UnpackedOrUnpackaged => "Unpacked or unpackaged ",
12792            Unit::UnpackedOrUnpackagedSingleUnit => "Unpacked or unpackaged, single unit",
12793            Unit::UnpackedOrUnpackagedMultipleUnits => "Unpacked or unpackaged, multiple units",
12794            Unit::Nest => "Nest ",
12795            Unit::Net => "Net",
12796            Unit::NetTubePlastic => "Net, tube, plastic ",
12797            Unit::NetTubeTextile => "Net, tube, textile ",
12798            Unit::TwoSidedCageOnWheelsWithFixingStrap => "Two sided cage on wheels with fixing strap",
12799            Unit::Trolley => "Trolley",
12800            Unit::OnewayPalletIso012EuroPallet => "Oneway pallet ISO 0 - 1/2 EURO Pallet",
12801            Unit::OnewayPalletIso111EuroPallet => "Oneway pallet ISO 1 - 1/1 EURO Pallet",
12802            Unit::OnewayPalletIso221EuroPallet => "Oneway pallet ISO 2 - 2/1 EURO Pallet",
12803            Unit::PalletWithExceptionalDimensions => "Pallet with exceptional dimensions",
12804            Unit::WoodenPallet40CmX80Cm => "Wooden pallet 40 cm x 80 cm",
12805            Unit::PlasticPalletSrs60CmX80Cm => "Plastic pallet SRS 60 cm x 80 cm",
12806            Unit::PlasticPalletSrs80CmX120Cm => "Plastic pallet SRS 80 cm x 120 cm",
12807            Unit::PalletChep40CmX60Cm => "Pallet, CHEP 40 cm x 60 cm",
12808            Unit::PalletChep80CmX120Cm => "Pallet, CHEP 80 cm x 120 cm",
12809            Unit::PalletChep100CmX120Cm => "Pallet, CHEP 100 cm x 120 cm",
12810            Unit::PalletAs40681993 => "Pallet, AS 4068-1993",
12811            Unit::PalletIsoT11 => "Pallet, ISO T11",
12812            Unit::PlatformUnspecifiedWeightOrDimension => "Platform, unspecified weight or dimension",
12813            Unit::PalletIso012EuroPallet => "Pallet ISO 0 - 1/2 EURO Pallet",
12814            Unit::PalletIso111EuroPallet => "Pallet ISO 1 - 1/1 EURO Pallet",
12815            Unit::PalletIso221EuroPallet => "Pallet ISO 2 – 2/1 EURO Pallet",
12816            Unit::_14EuroPallet => "1/4 EURO Pallet",
12817            Unit::Block => "Block",
12818            Unit::_18EuroPallet => "1/8 EURO Pallet",
12819            Unit::SyntheticPalletIso1 => "Synthetic pallet ISO 1",
12820            Unit::SyntheticPalletIso2 => "Synthetic pallet ISO 2",
12821            Unit::WholesalerPallet => "Wholesaler pallet",
12822            Unit::Pallet80X100Cm => "Pallet 80 X 100 cm",
12823            Unit::Pallet60X100Cm => "Pallet 60 X 100 cm",
12824            Unit::OnewayPallet => "Oneway pallet",
12825            Unit::Octabin => "Octabin",
12826            Unit::ContainerOuter => "Container, outer",
12827            Unit::ReturnablePallet => "Returnable pallet",
12828            Unit::LargeBagPalletSized => "Large bag, pallet sized",
12829            Unit::AWheeledPalletWithRaisedRim81X67X135 => "A wheeled pallet with raised rim (81 x 67 x 135)",
12830            Unit::AWheeledPalletWithRaisedRim81X72X135 => "A Wheeled pallet with raised rim (81 x 72 x 135)",
12831            Unit::WheeledPalletWithRaisedRim81X60X16 => "Wheeled pallet with raised rim ( 81 x 60 x 16)",
12832            Unit::ChepPallet60CmX80Cm => "CHEP pallet 60 cm x 80 cm ",
12833            Unit::Pan => "Pan",
12834            Unit::LprPallet60CmX80Cm => "LPR pallet 60 cm x 80 cm",
12835            Unit::LprPallet80CmX120Cm => "LPR pallet 80 cm x 120 cm",
12836            Unit::Packet => "Packet ",
12837            Unit::PalletBoxCombinedOpenEndedBoxAndPallet => "Pallet, box Combined open-ended box and pallet",
12838            Unit::Parcel => "Parcel ",
12839            Unit::PalletModularCollars80cms100cms => "Pallet, modular, collars 80cms * 100cms ",
12840            Unit::PalletModularCollars80cms120cms => "Pallet, modular, collars 80cms * 120cms ",
12841            Unit::Pen => "Pen ",
12842            Unit::Plate => "Plate",
12843            Unit::Pitcher => "Pitcher",
12844            Unit::Pipe => "Pipe ",
12845            Unit::Punnet => "Punnet",
12846            Unit::Package => "Package",
12847            Unit::Pail => "Pail ",
12848            Unit::Plank => "Plank",
12849            Unit::Pouch => "Pouch",
12850            Unit::Piece_Dup => "Piece",
12851            Unit::ReceptaclePlastic => "Receptacle, plastic ",
12852            Unit::Pot => "Pot",
12853            Unit::Tray => "Tray ",
12854            Unit::PipesInBundleBunchTruss => "Pipes, in bundle/bunch/truss ",
12855            Unit::Pallet => "Pallet ",
12856            Unit::PlatesInBundleBunchTruss => "Plates, in bundle/bunch/truss",
12857            Unit::PlanksInBundleBunchTruss => "Planks, in bundle/bunch/truss",
12858            Unit::DrumSteelNonRemovableHead => "Drum, steel, non-removable head",
12859            Unit::DrumSteelRemovableHead => "Drum, steel, removable head",
12860            Unit::DrumAluminiumNonRemovableHead => "Drum, aluminium, non-removable head",
12861            Unit::DrumAluminiumRemovableHead => "Drum, aluminium, removable head",
12862            Unit::DrumPlasticNonRemovableHead => "Drum, plastic, non-removable head",
12863            Unit::DrumPlasticRemovableHead => "Drum, plastic, removable head",
12864            Unit::BarrelWoodenBungType => "Barrel, wooden, bung type",
12865            Unit::BarrelWoodenRemovableHead => "Barrel, wooden, removable head ",
12866            Unit::JerricanSteelNonRemovableHead => "Jerrican, steel, non-removable head",
12867            Unit::JerricanSteelRemovableHead => "Jerrican, steel, removable head",
12868            Unit::JerricanPlasticNonRemovableHead => "Jerrican, plastic, non-removable head",
12869            Unit::JerricanPlasticRemovableHead => "Jerrican, plastic, removable head",
12870            Unit::BoxWoodenNaturalWoodOrdinary => "Box, wooden, natural wood, ordinary",
12871            Unit::BoxWoodenNaturalWoodWithSiftProofWalls => "Box, wooden, natural wood, with sift proof walls",
12872            Unit::BoxPlasticExpanded => "Box, plastic, expanded ",
12873            Unit::BoxPlasticSolid => "Box, plastic, solid",
12874            Unit::Rod => "Rod",
12875            Unit::Ring => "Ring ",
12876            Unit::RackClothingHanger => "Rack, clothing hanger",
12877            Unit::Rack => "Rack ",
12878            Unit::Reel => "Reel ",
12879            Unit::Roll => "Roll ",
12880            Unit::Rednet => "Rednet ",
12881            Unit::RodsInBundleBunchTruss => "Rods, in bundle/bunch/truss",
12882            Unit::Sack => "Sack ",
12883            Unit::Slab => "Slab",
12884            Unit::CrateShallow => "Crate, shallow ",
12885            Unit::Spindle => "Spindle",
12886            Unit::SeaChest => "Sea-chest",
12887            Unit::Sachet => "Sachet ",
12888            Unit::Skid => "Skid ",
12889            Unit::CaseSkeleton => "Case, skeleton ",
12890            Unit::Slipsheet => "Slipsheet ",
12891            Unit::Sheetmetal => "Sheetmetal ",
12892            Unit::Spool => "Spool ",
12893            Unit::SheetPlasticWrapping => "Sheet, plastic wrapping",
12894            Unit::CaseSteel => "Case, steel",
12895            Unit::Sheet => "Sheet",
12896            Unit::Suitcase => "Suitcase ",
12897            Unit::EnvelopeSteel => "Envelope, steel",
12898            Unit::Shrinkwrapped => "Shrinkwrapped ",
12899            Unit::Set_Dup => "Set",
12900            Unit::Sleeve => "Sleeve",
12901            Unit::SheetsInBundleBunchTruss => "Sheets, in bundle/bunch/truss",
12902            Unit::Tablet_Dup => "Tablet",
12903            Unit::Tub => "Tub",
12904            Unit::TeaChest => "Tea-chest",
12905            Unit::TubeCollapsible => "Tube, collapsible",
12906            Unit::Tyre_Dup => "Tyre",
12907            Unit::TankContainerGeneric => "Tank container, generic",
12908            Unit::Tierce => "Tierce",
12909            Unit::TankRectangular => "Tank, rectangular",
12910            Unit::TubWithLid => "Tub, with lid",
12911            Unit::Tin => "Tin",
12912            Unit::Tun => "Tun",
12913            Unit::Trunk => "Trunk",
12914            Unit::Truss => "Truss",
12915            Unit::BagTote => "Bag, tote",
12916            Unit::Tube => "Tube ",
12917            Unit::TubeWithNozzle => "Tube, with nozzle ",
12918            Unit::PalletTriwall => "Pallet, triwall",
12919            Unit::TankCylindrical => "Tank, cylindrical",
12920            Unit::TubesInBundleBunchTruss => "Tubes, in bundle/bunch/truss ",
12921            Unit::Uncaged => "Uncaged ",
12922            Unit::Unit => "Unit",
12923            Unit::Vat => "Vat",
12924            Unit::BulkGasAt1031MbarAnd15C => "Bulk, gas (at 1031 mbar and 15°C)",
12925            Unit::Vial => "Vial ",
12926            Unit::Vanpack => "Vanpack ",
12927            Unit::BulkLiquid => "Bulk, liquid ",
12928            Unit::Vehicle => "Vehicle",
12929            Unit::BulkSolidLargeParticlesNodules => "Bulk, solid, large particles (“nodules”) ",
12930            Unit::VacuumPacked => "Vacuum-packed",
12931            Unit::BulkLiquefiedGasAtAbnormalTemperaturePressure => "Bulk, liquefied gas (at abnormal temperature/pressure) ",
12932            Unit::BulkSolidGranularParticlesGrains => "Bulk, solid, granular particles (“grains”) ",
12933            Unit::BulkScrapMetal => "Bulk, scrap metal",
12934            Unit::BulkSolidFineParticlesPowders => "Bulk, solid, fine particles (“powders”)",
12935            Unit::IntermediateBulkContainer => "Intermediate bulk container",
12936            Unit::Wickerbottle => "Wickerbottle ",
12937            Unit::IntermediateBulkContainerSteel => "Intermediate bulk container, steel ",
12938            Unit::IntermediateBulkContainerAluminium => "Intermediate bulk container, aluminium ",
12939            Unit::IntermediateBulkContainerMetal => "Intermediate bulk container, metal ",
12940            Unit::IntermediateBulkContainerSteelPressurised10Kpa => "Intermediate bulk container, steel, pressurised > 10 kpa",
12941            Unit::IntermediateBulkContainerAluminiumPressurised10Kpa => "Intermediate bulk container, aluminium, pressurised > 10 kpa",
12942            Unit::IntermediateBulkContainerMetalPressure10Kpa => "Intermediate bulk container, metal, pressure 10 kpa ",
12943            Unit::IntermediateBulkContainerSteelLiquid => "Intermediate bulk container, steel, liquid ",
12944            Unit::IntermediateBulkContainerAluminiumLiquid => "Intermediate bulk container, aluminium, liquid ",
12945            Unit::IntermediateBulkContainerMetalLiquid => "Intermediate bulk container, metal, liquid ",
12946            Unit::IntermediateBulkContainerWovenPlasticWithoutCoatLiner => "Intermediate bulk container, woven plastic, without coat/liner ",
12947            Unit::IntermediateBulkContainerWovenPlasticCoated => "Intermediate bulk container, woven plastic, coated ",
12948            Unit::IntermediateBulkContainerWovenPlasticWithLiner => "Intermediate bulk container, woven plastic, with liner ",
12949            Unit::IntermediateBulkContainerWovenPlasticCoatedAndLiner => "Intermediate bulk container, woven plastic, coated and liner ",
12950            Unit::IntermediateBulkContainerPlasticFilm => "Intermediate bulk container, plastic film",
12951            Unit::IntermediateBulkContainerTextileWithOutCoatLiner => "Intermediate bulk container, textile with out coat/liner ",
12952            Unit::IntermediateBulkContainerNaturalWoodWithInnerLiner => "Intermediate bulk container, natural wood, with inner liner",
12953            Unit::IntermediateBulkContainerTextileCoated => "Intermediate bulk container, textile, coated ",
12954            Unit::IntermediateBulkContainerTextileWithLiner => "Intermediate bulk container, textile, with liner ",
12955            Unit::IntermediateBulkContainerTextileCoatedAndLiner => "Intermediate bulk container, textile, coated and liner ",
12956            Unit::IntermediateBulkContainerPlywoodWithInnerLiner => "Intermediate bulk container, plywood, with inner liner ",
12957            Unit::IntermediateBulkContainerReconstitutedWoodWithInnerLiner => "Intermediate bulk container, reconstituted wood, with inner liner",
12958            Unit::BagWovenPlasticWithoutInnerCoatLiner => "Bag, woven plastic, without inner coat/liner ",
12959            Unit::BagWovenPlasticSiftProof => "Bag, woven plastic, sift proof ",
12960            Unit::BagWovenPlasticWaterResistant => "Bag, woven plastic, water resistant",
12961            Unit::BagPlasticsFilm => "Bag, plastics film ",
12962            Unit::BagTextileWithoutInnerCoatLiner => "Bag, textile, without inner coat/liner ",
12963            Unit::BagTextileSiftProof => "Bag, textile, sift proof ",
12964            Unit::BagTextileWaterResistant => "Bag, textile, water resistant",
12965            Unit::BagPaperMultiWall => "Bag, paper, multi-wall ",
12966            Unit::BagPaperMultiWallWaterResistant => "Bag, paper, multi-wall, water resistant",
12967            Unit::CompositePackagingPlasticReceptacleInSteelDrum => "Composite packaging, plastic receptacle in steel drum",
12968            Unit::CompositePackagingPlasticReceptacleInSteelCrateBox => "Composite packaging, plastic receptacle in steel crate box",
12969            Unit::CompositePackagingPlasticReceptacleInAluminiumDrum => "Composite packaging, plastic receptacle in aluminium drum",
12970            Unit::CompositePackagingPlasticReceptacleInAluminiumCrate => "Composite packaging, plastic receptacle in aluminium crate",
12971            Unit::CompositePackagingPlasticReceptacleInWoodenBox => "Composite packaging, plastic receptacle in wooden box",
12972            Unit::CompositePackagingPlasticReceptacleInPlywoodDrum => "Composite packaging, plastic receptacle in plywood drum",
12973            Unit::CompositePackagingPlasticReceptacleInPlywoodBox => "Composite packaging, plastic receptacle in plywood box ",
12974            Unit::CompositePackagingPlasticReceptacleInFibreDrum => "Composite packaging, plastic receptacle in fibre drum",
12975            Unit::CompositePackagingPlasticReceptacleInFibreboardBox => "Composite packaging, plastic receptacle in fibreboard box",
12976            Unit::CompositePackagingPlasticReceptacleInPlasticDrum => "Composite packaging, plastic receptacle in plastic drum",
12977            Unit::CompositePackagingPlasticReceptacleInSolidPlasticBox => "Composite packaging, plastic receptacle in solid plastic box",
12978            Unit::CompositePackagingGlassReceptacleInSteelDrum => "Composite packaging, glass receptacle in steel drum",
12979            Unit::CompositePackagingGlassReceptacleInSteelCrateBox => "Composite packaging, glass receptacle in steel crate box",
12980            Unit::CompositePackagingGlassReceptacleInAluminiumDrum => "Composite packaging, glass receptacle in aluminium drum",
12981            Unit::CompositePackagingGlassReceptacleInAluminiumCrate => "Composite packaging, glass receptacle in aluminium crate",
12982            Unit::CompositePackagingGlassReceptacleInWoodenBox => "Composite packaging, glass receptacle in wooden box",
12983            Unit::CompositePackagingGlassReceptacleInPlywoodDrum => "Composite packaging, glass receptacle in plywood drum",
12984            Unit::CompositePackagingGlassReceptacleInWickerworkHamper => "Composite packaging, glass receptacle in wickerwork hamper",
12985            Unit::CompositePackagingGlassReceptacleInFibreDrum => "Composite packaging, glass receptacle in fibre drum",
12986            Unit::CompositePackagingGlassReceptacleInFibreboardBox => "Composite packaging, glass receptacle in fibreboard box ",
12987            Unit::CompositePackagingGlassReceptacleInExpandablePlasticPack => "Composite packaging, glass receptacle in expandable plastic pack",
12988            Unit::CompositePackagingGlassReceptacleInSolidPlasticPack => "Composite packaging, glass receptacle in solid plastic pack",
12989            Unit::IntermediateBulkContainerPaperMultiWall => "Intermediate bulk container, paper, multi-wall ",
12990            Unit::BagLarge => "Bag, large ",
12991            Unit::IntermediateBulkContainerPaperMultiWallWaterResistant => "Intermediate bulk container, paper, multi-wall, water resistant",
12992            Unit::IntermediateBulkContainerRigidPlasticWithStructuralEquipmentSolids => "Intermediate bulk container, rigid plastic, with structural equipment, solids",
12993            Unit::IntermediateBulkContainerRigidPlasticFreestandingSolids => "Intermediate bulk container, rigid plastic, freestanding, solids",
12994            Unit::IntermediateBulkContainerRigidPlasticWithStructuralEquipmentPressurised => "Intermediate bulk container, rigid plastic, with structural equipment, pressurised",
12995            Unit::IntermediateBulkContainerRigidPlasticFreestandingPressurised => "Intermediate bulk container, rigid plastic, freestanding, pressurised",
12996            Unit::IntermediateBulkContainerRigidPlasticWithStructuralEquipmentLiquids => "Intermediate bulk container, rigid plastic, with structural equipment, liquids ",
12997            Unit::IntermediateBulkContainerRigidPlasticFreestandingLiquids => "Intermediate bulk container, rigid plastic, freestanding, liquids",
12998            Unit::IntermediateBulkContainerCompositeRigidPlasticSolids => "Intermediate bulk container, composite, rigid plastic, solids",
12999            Unit::IntermediateBulkContainerCompositeFlexiblePlasticSolids => "Intermediate bulk container, composite, flexible plastic, solids",
13000            Unit::IntermediateBulkContainerCompositeRigidPlasticPressurised => "Intermediate bulk container, composite, rigid plastic, pressurised ",
13001            Unit::IntermediateBulkContainerCompositeFlexiblePlasticPressurised => "Intermediate bulk container, composite, flexible plastic, pressurised",
13002            Unit::IntermediateBulkContainerCompositeRigidPlasticLiquids => "Intermediate bulk container, composite, rigid plastic, liquids",
13003            Unit::IntermediateBulkContainerCompositeFlexiblePlasticLiquids => "Intermediate bulk container, composite, flexible plastic, liquids ",
13004            Unit::IntermediateBulkContainerComposite => "Intermediate bulk container, composite",
13005            Unit::IntermediateBulkContainerFibreboard => "Intermediate bulk container, fibreboard",
13006            Unit::IntermediateBulkContainerFlexible => "Intermediate bulk container, flexible",
13007            Unit::IntermediateBulkContainerMetalOtherThanSteel => "Intermediate bulk container, metal, other than steel",
13008            Unit::IntermediateBulkContainerNaturalWood => "Intermediate bulk container, natural wood",
13009            Unit::IntermediateBulkContainerPlywood => "Intermediate bulk container, plywood",
13010            Unit::IntermediateBulkContainerReconstitutedWood => "Intermediate bulk container, reconstituted wood",
13011            Unit::MutuallyDefined_Dup => "Mutually defined ",
13012        }
13013    }
13014}
13015
13016impl crate::FromCode for Unit {
13017    fn from_code(code: &str) -> Option<Self>
13018    where
13019        Self: Sized,
13020    {
13021        match code {
13022            "10" => Some(Unit::Group),
13023            "11" => Some(Unit::Outfit),
13024            "13" => Some(Unit::Ration),
13025            "14" => Some(Unit::Shot),
13026            "15" => Some(Unit::StickMilitary),
13027            "20" => Some(Unit::TwentyFootContainer),
13028            "21" => Some(Unit::FortyFootContainer),
13029            "22" => Some(Unit::DecilitrePerGram),
13030            "23" => Some(Unit::GramPerCubicCentimetre),
13031            "24" => Some(Unit::TheoreticalPound),
13032            "25" => Some(Unit::GramPerSquareCentimetre),
13033            "27" => Some(Unit::TheoreticalTon),
13034            "28" => Some(Unit::KilogramPerSquareMetre),
13035            "33" => Some(Unit::KilopascalSquareMetrePerGram),
13036            "34" => Some(Unit::KilopascalPerMillimetre),
13037            "35" => Some(Unit::MillilitrePerSquareCentimetreSecond),
13038            "37" => Some(Unit::OuncePerSquareFoot),
13039            "38" => Some(Unit::OuncePerSquareFootPer001inch),
13040            "40" => Some(Unit::MillilitrePerSecond),
13041            "41" => Some(Unit::MillilitrePerMinute),
13042            "56" => Some(Unit::Sitas),
13043            "57" => Some(Unit::Mesh),
13044            "58" => Some(Unit::NetKilogram),
13045            "59" => Some(Unit::PartPerMillion),
13046            "60" => Some(Unit::PercentWeight),
13047            "61" => Some(Unit::PartPerBillionUs),
13048            "74" => Some(Unit::Millipascal),
13049            "77" => Some(Unit::MilliInch),
13050            "80" => Some(Unit::PoundPerSquareInchAbsolute),
13051            "81" => Some(Unit::Henry),
13052            "85" => Some(Unit::FootPoundForce),
13053            "87" => Some(Unit::PoundPerCubicFoot),
13054            "89" => Some(Unit::Poise),
13055            "91" => Some(Unit::Stokes),
13056            "1I" => Some(Unit::FixedRate),
13057            "2A" => Some(Unit::RadianPerSecond),
13058            "2B" => Some(Unit::RadianPerSecondSquared),
13059            "2C" => Some(Unit::Roentgen),
13060            "2G" => Some(Unit::VoltAc),
13061            "2H" => Some(Unit::VoltDc),
13062            "2I" => Some(Unit::BritishThermalUnitInternationalTablePerHour),
13063            "2J" => Some(Unit::CubicCentimetrePerSecond),
13064            "2K" => Some(Unit::CubicFootPerHour),
13065            "2L" => Some(Unit::CubicFootPerMinute),
13066            "2M" => Some(Unit::CentimetrePerSecond),
13067            "2N" => Some(Unit::Decibel),
13068            "2P" => Some(Unit::Kilobyte),
13069            "2Q" => Some(Unit::Kilobecquerel),
13070            "2R" => Some(Unit::Kilocurie),
13071            "2U" => Some(Unit::Megagram),
13072            "2X" => Some(Unit::MetrePerMinute),
13073            "2Y" => Some(Unit::Milliroentgen),
13074            "2Z" => Some(Unit::Millivolt),
13075            "3B" => Some(Unit::Megajoule),
13076            "3C" => Some(Unit::Manmonth),
13077            "4C" => Some(Unit::Centistokes),
13078            "4G" => Some(Unit::Microlitre),
13079            "4H" => Some(Unit::MicrometreMicron),
13080            "4K" => Some(Unit::Milliampere),
13081            "4L" => Some(Unit::Megabyte),
13082            "4M" => Some(Unit::MilligramPerHour),
13083            "4N" => Some(Unit::Megabecquerel),
13084            "4O" => Some(Unit::Microfarad),
13085            "4P" => Some(Unit::NewtonPerMetre),
13086            "4Q" => Some(Unit::OunceInch),
13087            "4R" => Some(Unit::OunceFoot),
13088            "4T" => Some(Unit::Picofarad),
13089            "4U" => Some(Unit::PoundPerHour),
13090            "4W" => Some(Unit::TonUsPerHour),
13091            "4X" => Some(Unit::KilolitrePerHour),
13092            "5A" => Some(Unit::BarrelUsPerMinute),
13093            "5B" => Some(Unit::Batch),
13094            "5E" => Some(Unit::MmscfDay),
13095            "5J" => Some(Unit::HydraulicHorsePower),
13096            "A10" => Some(Unit::AmpereSquareMetrePerJouleSecond),
13097            "A11" => Some(Unit::Angstrom),
13098            "A12" => Some(Unit::AstronomicalUnit),
13099            "A13" => Some(Unit::Attojoule),
13100            "A14" => Some(Unit::Barn),
13101            "A15" => Some(Unit::BarnPerElectronvolt),
13102            "A16" => Some(Unit::BarnPerSteradianElectronvolt),
13103            "A17" => Some(Unit::BarnPerSteradian),
13104            "A18" => Some(Unit::BecquerelPerKilogram),
13105            "A19" => Some(Unit::BecquerelPerCubicMetre),
13106            "A2" => Some(Unit::AmperePerCentimetre),
13107            "A20" => {
13108                Some(Unit::BritishThermalUnitInternationalTablePerSecondSquareFootDegreeRankine)
13109            }
13110            "A21" => Some(Unit::BritishThermalUnitInternationalTablePerPoundDegreeRankine),
13111            "A22" => Some(Unit::BritishThermalUnitInternationalTablePerSecondFootDegreeRankine),
13112            "A23" => Some(Unit::BritishThermalUnitInternationalTablePerHourSquareFootDegreeRankine),
13113            "A24" => Some(Unit::CandelaPerSquareMetre),
13114            "A26" => Some(Unit::CoulombMetre),
13115            "A27" => Some(Unit::CoulombMetreSquaredPerVolt),
13116            "A28" => Some(Unit::CoulombPerCubicCentimetre),
13117            "A29" => Some(Unit::CoulombPerCubicMetre),
13118            "A3" => Some(Unit::AmperePerMillimetre),
13119            "A30" => Some(Unit::CoulombPerCubicMillimetre),
13120            "A31" => Some(Unit::CoulombPerKilogramSecond),
13121            "A32" => Some(Unit::CoulombPerMole),
13122            "A33" => Some(Unit::CoulombPerSquareCentimetre),
13123            "A34" => Some(Unit::CoulombPerSquareMetre),
13124            "A35" => Some(Unit::CoulombPerSquareMillimetre),
13125            "A36" => Some(Unit::CubicCentimetrePerMole),
13126            "A37" => Some(Unit::CubicDecimetrePerMole),
13127            "A38" => Some(Unit::CubicMetrePerCoulomb),
13128            "A39" => Some(Unit::CubicMetrePerKilogram),
13129            "A4" => Some(Unit::AmperePerSquareCentimetre),
13130            "A40" => Some(Unit::CubicMetrePerMole),
13131            "A41" => Some(Unit::AmperePerSquareMetre),
13132            "A42" => Some(Unit::CuriePerKilogram),
13133            "A43" => Some(Unit::DeadweightTonnage),
13134            "A44" => Some(Unit::Decalitre),
13135            "A45" => Some(Unit::Decametre),
13136            "A47" => Some(Unit::Decitex),
13137            "A48" => Some(Unit::DegreeRankine),
13138            "A49" => Some(Unit::Denier),
13139            "A5" => Some(Unit::AmpereSquareMetre),
13140            "A53" => Some(Unit::Electronvolt),
13141            "A54" => Some(Unit::ElectronvoltPerMetre),
13142            "A55" => Some(Unit::ElectronvoltSquareMetre),
13143            "A56" => Some(Unit::ElectronvoltSquareMetrePerKilogram),
13144            "A59" => Some(Unit::_8PartCloudCover),
13145            "A6" => Some(Unit::AmperePerSquareMetreKelvinSquared),
13146            "A68" => Some(Unit::Exajoule),
13147            "A69" => Some(Unit::FaradPerMetre),
13148            "A7" => Some(Unit::AmperePerSquareMillimetre),
13149            "A70" => Some(Unit::Femtojoule),
13150            "A71" => Some(Unit::Femtometre),
13151            "A73" => Some(Unit::FootPerSecondSquared),
13152            "A74" => Some(Unit::FootPoundForcePerSecond),
13153            "A75" => Some(Unit::FreightTon),
13154            "A76" => Some(Unit::Gal),
13155            "A8" => Some(Unit::AmpereSecond),
13156            "A84" => Some(Unit::GigacoulombPerCubicMetre),
13157            "A85" => Some(Unit::Gigaelectronvolt),
13158            "A86" => Some(Unit::Gigahertz),
13159            "A87" => Some(Unit::Gigaohm),
13160            "A88" => Some(Unit::GigaohmMetre),
13161            "A89" => Some(Unit::Gigapascal),
13162            "A9" => Some(Unit::Rate),
13163            "A90" => Some(Unit::Gigawatt),
13164            "A91" => Some(Unit::Gon),
13165            "A93" => Some(Unit::GramPerCubicMetre),
13166            "A94" => Some(Unit::GramPerMole),
13167            "A95" => Some(Unit::Gray),
13168            "A96" => Some(Unit::GrayPerSecond),
13169            "A97" => Some(Unit::Hectopascal),
13170            "A98" => Some(Unit::HenryPerMetre),
13171            "A99" => Some(Unit::Bit),
13172            "AA" => Some(Unit::Ball),
13173            "AB" => Some(Unit::BulkPack),
13174            "ACR" => Some(Unit::Acre),
13175            "ACT" => Some(Unit::Activity),
13176            "AD" => Some(Unit::Byte),
13177            "AE" => Some(Unit::AmperePerMetre),
13178            "AH" => Some(Unit::AdditionalMinute),
13179            "AI" => Some(Unit::AverageMinutePerCall),
13180            "AK" => Some(Unit::Fathom),
13181            "AL" => Some(Unit::AccessLine),
13182            "AMH" => Some(Unit::AmpereHour),
13183            "AMP" => Some(Unit::Ampere),
13184            "ANN" => Some(Unit::Year),
13185            "APZ" => Some(Unit::TroyOunceOrApothecaryOunce),
13186            "AQ" => Some(Unit::AntiHemophilicFactorAhfUnit),
13187            "AS" => Some(Unit::Assortment),
13188            "ASM" => Some(Unit::AlcoholicStrengthByMass),
13189            "ASU" => Some(Unit::AlcoholicStrengthByVolume),
13190            "ATM" => Some(Unit::StandardAtmosphere),
13191            "AWG" => Some(Unit::AmericanWireGauge),
13192            "AY" => Some(Unit::Assembly),
13193            "AZ" => Some(Unit::BritishThermalUnitInternationalTablePerPound),
13194            "B1" => Some(Unit::BarrelUsPerDay),
13195            "B10" => Some(Unit::BitPerSecond),
13196            "B11" => Some(Unit::JoulePerKilogramKelvin),
13197            "B12" => Some(Unit::JoulePerMetre),
13198            "B13" => Some(Unit::JoulePerSquareMetre),
13199            "B14" => Some(Unit::JoulePerMetreToFourthPower),
13200            "B15" => Some(Unit::JoulePerMole),
13201            "B16" => Some(Unit::JoulePerMoleKelvin),
13202            "B17" => Some(Unit::Credit),
13203            "B18" => Some(Unit::JouleSecond),
13204            "B19" => Some(Unit::Digit),
13205            "B20" => Some(Unit::JouleSquareMetrePerKilogram),
13206            "B21" => Some(Unit::KelvinPerWatt),
13207            "B22" => Some(Unit::Kiloampere),
13208            "B23" => Some(Unit::KiloamperePerSquareMetre),
13209            "B24" => Some(Unit::KiloamperePerMetre),
13210            "B25" => Some(Unit::KilobecquerelPerKilogram),
13211            "B26" => Some(Unit::Kilocoulomb),
13212            "B27" => Some(Unit::KilocoulombPerCubicMetre),
13213            "B28" => Some(Unit::KilocoulombPerSquareMetre),
13214            "B29" => Some(Unit::Kiloelectronvolt),
13215            "B3" => Some(Unit::BattingPound),
13216            "B30" => Some(Unit::Gibibit),
13217            "B31" => Some(Unit::KilogramMetrePerSecond),
13218            "B32" => Some(Unit::KilogramMetreSquared),
13219            "B33" => Some(Unit::KilogramMetreSquaredPerSecond),
13220            "B34" => Some(Unit::KilogramPerCubicDecimetre),
13221            "B35" => Some(Unit::KilogramPerLitre),
13222            "B4" => Some(Unit::BarrelImperial),
13223            "B41" => Some(Unit::KilojoulePerKelvin),
13224            "B42" => Some(Unit::KilojoulePerKilogram),
13225            "B43" => Some(Unit::KilojoulePerKilogramKelvin),
13226            "B44" => Some(Unit::KilojoulePerMole),
13227            "B45" => Some(Unit::Kilomole),
13228            "B46" => Some(Unit::KilomolePerCubicMetre),
13229            "B47" => Some(Unit::Kilonewton),
13230            "B48" => Some(Unit::KilonewtonMetre),
13231            "B49" => Some(Unit::Kiloohm),
13232            "B50" => Some(Unit::KiloohmMetre),
13233            "B52" => Some(Unit::Kilosecond),
13234            "B53" => Some(Unit::Kilosiemens),
13235            "B54" => Some(Unit::KilosiemensPerMetre),
13236            "B55" => Some(Unit::KilovoltPerMetre),
13237            "B56" => Some(Unit::KiloweberPerMetre),
13238            "B57" => Some(Unit::LightYear),
13239            "B58" => Some(Unit::LitrePerMole),
13240            "B59" => Some(Unit::LumenHour),
13241            "B60" => Some(Unit::LumenPerSquareMetre),
13242            "B61" => Some(Unit::LumenPerWatt),
13243            "B62" => Some(Unit::LumenSecond),
13244            "B63" => Some(Unit::LuxHour),
13245            "B64" => Some(Unit::LuxSecond),
13246            "B66" => Some(Unit::MegaamperePerSquareMetre),
13247            "B67" => Some(Unit::MegabecquerelPerKilogram),
13248            "B68" => Some(Unit::Gigabit),
13249            "B69" => Some(Unit::MegacoulombPerCubicMetre),
13250            "B7" => Some(Unit::Cycle),
13251            "B70" => Some(Unit::MegacoulombPerSquareMetre),
13252            "B71" => Some(Unit::Megaelectronvolt),
13253            "B72" => Some(Unit::MegagramPerCubicMetre),
13254            "B73" => Some(Unit::Meganewton),
13255            "B74" => Some(Unit::MeganewtonMetre),
13256            "B75" => Some(Unit::Megaohm),
13257            "B76" => Some(Unit::MegaohmMetre),
13258            "B77" => Some(Unit::MegasiemensPerMetre),
13259            "B78" => Some(Unit::Megavolt),
13260            "B79" => Some(Unit::MegavoltPerMetre),
13261            "B8" => Some(Unit::JoulePerCubicMetre),
13262            "B80" => Some(Unit::GigabitPerSecond),
13263            "B81" => Some(Unit::ReciprocalMetreSquaredReciprocalSecond),
13264            "B82" => Some(Unit::InchPerLinearFoot),
13265            "B83" => Some(Unit::MetreToFourthPower),
13266            "B84" => Some(Unit::Microampere),
13267            "B85" => Some(Unit::Microbar),
13268            "B86" => Some(Unit::Microcoulomb),
13269            "B87" => Some(Unit::MicrocoulombPerCubicMetre),
13270            "B88" => Some(Unit::MicrocoulombPerSquareMetre),
13271            "B89" => Some(Unit::MicrofaradPerMetre),
13272            "B90" => Some(Unit::Microhenry),
13273            "B91" => Some(Unit::MicrohenryPerMetre),
13274            "B92" => Some(Unit::Micronewton),
13275            "B93" => Some(Unit::MicronewtonMetre),
13276            "B94" => Some(Unit::Microohm),
13277            "B95" => Some(Unit::MicroohmMetre),
13278            "B96" => Some(Unit::Micropascal),
13279            "B97" => Some(Unit::Microradian),
13280            "B98" => Some(Unit::Microsecond),
13281            "B99" => Some(Unit::Microsiemens),
13282            "BAR" => Some(Unit::BarUnitPressure),
13283            "BB" => Some(Unit::BaseBox),
13284            "BFT" => Some(Unit::BoardFoot),
13285            "BHP" => Some(Unit::BrakeHorsePower),
13286            "BIL" => Some(Unit::BillionEur),
13287            "BLD" => Some(Unit::DryBarrelUs),
13288            "BLL" => Some(Unit::BarrelUs),
13289            "BP" => Some(Unit::HundredBoardFoot),
13290            "BPM" => Some(Unit::BeatsPerMinute),
13291            "BQL" => Some(Unit::Becquerel),
13292            "BTU" => Some(Unit::BritishThermalUnitInternationalTable),
13293            "BUA" => Some(Unit::BushelUs),
13294            "BUI" => Some(Unit::BushelUk),
13295            "C0" => Some(Unit::Call),
13296            "C10" => Some(Unit::Millifarad),
13297            "C11" => Some(Unit::Milligal),
13298            "C12" => Some(Unit::MilligramPerMetre),
13299            "C13" => Some(Unit::Milligray),
13300            "C14" => Some(Unit::Millihenry),
13301            "C15" => Some(Unit::Millijoule),
13302            "C16" => Some(Unit::MillimetrePerSecond),
13303            "C17" => Some(Unit::MillimetreSquaredPerSecond),
13304            "C18" => Some(Unit::Millimole),
13305            "C19" => Some(Unit::MolePerKilogram),
13306            "C20" => Some(Unit::Millinewton),
13307            "C21" => Some(Unit::Kibibit),
13308            "C22" => Some(Unit::MillinewtonPerMetre),
13309            "C23" => Some(Unit::MilliohmMetre),
13310            "C24" => Some(Unit::MillipascalSecond),
13311            "C25" => Some(Unit::Milliradian),
13312            "C26" => Some(Unit::Millisecond),
13313            "C27" => Some(Unit::Millisiemens),
13314            "C28" => Some(Unit::Millisievert),
13315            "C29" => Some(Unit::Millitesla),
13316            "C3" => Some(Unit::MicrovoltPerMetre),
13317            "C30" => Some(Unit::MillivoltPerMetre),
13318            "C31" => Some(Unit::Milliwatt),
13319            "C32" => Some(Unit::MilliwattPerSquareMetre),
13320            "C33" => Some(Unit::Milliweber),
13321            "C34" => Some(Unit::Mole),
13322            "C35" => Some(Unit::MolePerCubicDecimetre),
13323            "C36" => Some(Unit::MolePerCubicMetre),
13324            "C37" => Some(Unit::Kilobit),
13325            "C38" => Some(Unit::MolePerLitre),
13326            "C39" => Some(Unit::Nanoampere),
13327            "C40" => Some(Unit::Nanocoulomb),
13328            "C41" => Some(Unit::Nanofarad),
13329            "C42" => Some(Unit::NanofaradPerMetre),
13330            "C43" => Some(Unit::Nanohenry),
13331            "C44" => Some(Unit::NanohenryPerMetre),
13332            "C45" => Some(Unit::Nanometre),
13333            "C46" => Some(Unit::NanoohmMetre),
13334            "C47" => Some(Unit::Nanosecond),
13335            "C48" => Some(Unit::Nanotesla),
13336            "C49" => Some(Unit::Nanowatt),
13337            "C50" => Some(Unit::Neper),
13338            "C51" => Some(Unit::NeperPerSecond),
13339            "C52" => Some(Unit::Picometre),
13340            "C53" => Some(Unit::NewtonMetreSecond),
13341            "C54" => Some(Unit::NewtonMetreSquaredPerKilogramSquared),
13342            "C55" => Some(Unit::NewtonPerSquareMetre),
13343            "C56" => Some(Unit::NewtonPerSquareMillimetre),
13344            "C57" => Some(Unit::NewtonSecond),
13345            "C58" => Some(Unit::NewtonSecondPerMetre),
13346            "C59" => Some(Unit::Octave),
13347            "C60" => Some(Unit::OhmCentimetre),
13348            "C61" => Some(Unit::OhmMetre),
13349            "C62" => Some(Unit::One),
13350            "C63" => Some(Unit::Parsec),
13351            "C64" => Some(Unit::PascalPerKelvin),
13352            "C65" => Some(Unit::PascalSecond),
13353            "C66" => Some(Unit::PascalSecondPerCubicMetre),
13354            "C67" => Some(Unit::PascalSecondPerMetre),
13355            "C68" => Some(Unit::Petajoule),
13356            "C69" => Some(Unit::Phon),
13357            "C7" => Some(Unit::Centipoise),
13358            "C70" => Some(Unit::Picoampere),
13359            "C71" => Some(Unit::Picocoulomb),
13360            "C72" => Some(Unit::PicofaradPerMetre),
13361            "C73" => Some(Unit::Picohenry),
13362            "C74" => Some(Unit::KilobitPerSecond),
13363            "C75" => Some(Unit::Picowatt),
13364            "C76" => Some(Unit::PicowattPerSquareMetre),
13365            "C78" => Some(Unit::PoundForce),
13366            "C79" => Some(Unit::KilovoltAmpereHour),
13367            "C8" => Some(Unit::MillicoulombPerKilogram),
13368            "C80" => Some(Unit::Rad),
13369            "C81" => Some(Unit::Radian),
13370            "C82" => Some(Unit::RadianSquareMetrePerMole),
13371            "C83" => Some(Unit::RadianSquareMetrePerKilogram),
13372            "C84" => Some(Unit::RadianPerMetre),
13373            "C85" => Some(Unit::ReciprocalAngstrom),
13374            "C86" => Some(Unit::ReciprocalCubicMetre),
13375            "C87" => Some(Unit::ReciprocalCubicMetrePerSecond),
13376            "C88" => Some(Unit::ReciprocalElectronVoltPerCubicMetre),
13377            "C89" => Some(Unit::ReciprocalHenry),
13378            "C9" => Some(Unit::CoilGroup),
13379            "C90" => Some(Unit::ReciprocalJoulePerCubicMetre),
13380            "C91" => Some(Unit::ReciprocalKelvinOrKelvinToPowerMinusOne),
13381            "C92" => Some(Unit::ReciprocalMetre),
13382            "C93" => Some(Unit::ReciprocalSquareMetre),
13383            "C94" => Some(Unit::ReciprocalMinute),
13384            "C95" => Some(Unit::ReciprocalMole),
13385            "C96" => Some(Unit::ReciprocalPascalOrPascalToPowerMinusOne),
13386            "C97" => Some(Unit::ReciprocalSecond),
13387            "C99" => Some(Unit::ReciprocalSecondPerMetreSquared),
13388            "CCT" => Some(Unit::CarryingCapacityInMetricTon),
13389            "CDL" => Some(Unit::Candela),
13390            "CEL" => Some(Unit::DegreeCelsius),
13391            "CEN" => Some(Unit::Hundred),
13392            "CG" => Some(Unit::Card),
13393            "CGM" => Some(Unit::Centigram),
13394            "CKG" => Some(Unit::CoulombPerKilogram),
13395            "CLF" => Some(Unit::HundredLeave),
13396            "CLT" => Some(Unit::Centilitre),
13397            "CMK" => Some(Unit::SquareCentimetre),
13398            "CMQ" => Some(Unit::CubicCentimetre),
13399            "CMT" => Some(Unit::Centimetre),
13400            "CNP" => Some(Unit::HundredPack),
13401            "CNT" => Some(Unit::CentalUk),
13402            "COU" => Some(Unit::Coulomb),
13403            "CTG" => Some(Unit::ContentGram),
13404            "CTM" => Some(Unit::MetricCarat),
13405            "CTN" => Some(Unit::ContentTonMetric),
13406            "CUR" => Some(Unit::Curie),
13407            "CWA" => Some(Unit::HundredPoundCwtHundredWeightUs),
13408            "CWI" => Some(Unit::HundredWeightUk),
13409            "D03" => Some(Unit::KilowattHourPerHour),
13410            "D04" => Some(Unit::LotUnitWeight),
13411            "D1" => Some(Unit::ReciprocalSecondPerSteradian),
13412            "D10" => Some(Unit::SiemensPerMetre),
13413            "D11" => Some(Unit::Mebibit),
13414            "D12" => Some(Unit::SiemensSquareMetrePerMole),
13415            "D13" => Some(Unit::Sievert),
13416            "D15" => Some(Unit::Sone),
13417            "D16" => Some(Unit::SquareCentimetrePerErg),
13418            "D17" => Some(Unit::SquareCentimetrePerSteradianErg),
13419            "D18" => Some(Unit::MetreKelvin),
13420            "D19" => Some(Unit::SquareMetreKelvinPerWatt),
13421            "D2" => Some(Unit::ReciprocalSecondPerSteradianMetreSquared),
13422            "D20" => Some(Unit::SquareMetrePerJoule),
13423            "D21" => Some(Unit::SquareMetrePerKilogram),
13424            "D22" => Some(Unit::SquareMetrePerMole),
13425            "D23" => Some(Unit::PenGramProtein),
13426            "D24" => Some(Unit::SquareMetrePerSteradian),
13427            "D25" => Some(Unit::SquareMetrePerSteradianJoule),
13428            "D26" => Some(Unit::SquareMetrePerVoltSecond),
13429            "D27" => Some(Unit::Steradian),
13430            "D29" => Some(Unit::Terahertz),
13431            "D30" => Some(Unit::Terajoule),
13432            "D31" => Some(Unit::Terawatt),
13433            "D32" => Some(Unit::TerawattHour),
13434            "D33" => Some(Unit::Tesla),
13435            "D34" => Some(Unit::Tex),
13436            "D36" => Some(Unit::Megabit),
13437            "D41" => Some(Unit::TonnePerCubicMetre),
13438            "D42" => Some(Unit::TropicalYear),
13439            "D43" => Some(Unit::UnifiedAtomicMassUnit),
13440            "D44" => Some(Unit::Var),
13441            "D45" => Some(Unit::VoltSquaredPerKelvinSquared),
13442            "D46" => Some(Unit::VoltAmpere),
13443            "D47" => Some(Unit::VoltPerCentimetre),
13444            "D48" => Some(Unit::VoltPerKelvin),
13445            "D49" => Some(Unit::MillivoltPerKelvin),
13446            "D5" => Some(Unit::KilogramPerSquareCentimetre),
13447            "D50" => Some(Unit::VoltPerMetre),
13448            "D51" => Some(Unit::VoltPerMillimetre),
13449            "D52" => Some(Unit::WattPerKelvin),
13450            "D53" => Some(Unit::WattPerMetreKelvin),
13451            "D54" => Some(Unit::WattPerSquareMetre),
13452            "D55" => Some(Unit::WattPerSquareMetreKelvin),
13453            "D56" => Some(Unit::WattPerSquareMetreKelvinToFourthPower),
13454            "D57" => Some(Unit::WattPerSteradian),
13455            "D58" => Some(Unit::WattPerSteradianSquareMetre),
13456            "D59" => Some(Unit::WeberPerMetre),
13457            "D6" => Some(Unit::RoentgenPerSecond),
13458            "D60" => Some(Unit::WeberPerMillimetre),
13459            "D61" => Some(Unit::MinuteUnitAngle),
13460            "D62" => Some(Unit::SecondUnitAngle),
13461            "D63" => Some(Unit::Book),
13462            "D65" => Some(Unit::Round),
13463            "D68" => Some(Unit::NumberWords),
13464            "D69" => Some(Unit::InchToFourthPower),
13465            "D73" => Some(Unit::JouleSquareMetre),
13466            "D74" => Some(Unit::KilogramPerMole),
13467            "D77" => Some(Unit::Megacoulomb),
13468            "D78" => Some(Unit::MegajoulePerSecond),
13469            "D80" => Some(Unit::Microwatt),
13470            "D81" => Some(Unit::Microtesla),
13471            "D82" => Some(Unit::Microvolt),
13472            "D83" => Some(Unit::MillinewtonMetre),
13473            "D85" => Some(Unit::MicrowattPerSquareMetre),
13474            "D86" => Some(Unit::Millicoulomb),
13475            "D87" => Some(Unit::MillimolePerKilogram),
13476            "D88" => Some(Unit::MillicoulombPerCubicMetre),
13477            "D89" => Some(Unit::MillicoulombPerSquareMetre),
13478            "D91" => Some(Unit::Rem),
13479            "D93" => Some(Unit::SecondPerCubicMetre),
13480            "D94" => Some(Unit::SecondPerCubicMetreRadian),
13481            "D95" => Some(Unit::JoulePerGram),
13482            "DAA" => Some(Unit::Decare),
13483            "DAD" => Some(Unit::TenDay),
13484            "DAY" => Some(Unit::Day),
13485            "DB" => Some(Unit::DryPound),
13486            "DBM" => Some(Unit::DecibelMilliwatts),
13487            "DBW" => Some(Unit::DecibelWatt),
13488            "DD" => Some(Unit::DegreeUnitAngle),
13489            "DEC" => Some(Unit::Decade),
13490            "DG" => Some(Unit::Decigram),
13491            "DJ" => Some(Unit::Decagram),
13492            "DLT" => Some(Unit::Decilitre),
13493            "DMA" => Some(Unit::CubicDecametre),
13494            "DMK" => Some(Unit::SquareDecimetre),
13495            "DMO" => Some(Unit::StandardKilolitre),
13496            "DMQ" => Some(Unit::CubicDecimetre),
13497            "DMT" => Some(Unit::Decimetre),
13498            "DN" => Some(Unit::DecinewtonMetre),
13499            "DPC" => Some(Unit::DozenPiece),
13500            "DPR" => Some(Unit::DozenPair),
13501            "DPT" => Some(Unit::DisplacementTonnage),
13502            "DRA" => Some(Unit::DramUs),
13503            "DRI" => Some(Unit::DramUk),
13504            "DRL" => Some(Unit::DozenRoll),
13505            "DT" => Some(Unit::DryTon),
13506            "DTN" => Some(Unit::Decitonne),
13507            "DWT" => Some(Unit::Pennyweight),
13508            "DZN" => Some(Unit::Dozen),
13509            "DZP" => Some(Unit::DozenPack),
13510            "E01" => Some(Unit::NewtonPerSquareCentimetre),
13511            "E07" => Some(Unit::MegawattHourPerHour),
13512            "E08" => Some(Unit::MegawattPerHertz),
13513            "E09" => Some(Unit::MilliampereHour),
13514            "E10" => Some(Unit::DegreeDay),
13515            "E12" => Some(Unit::Mille),
13516            "E14" => Some(Unit::KilocalorieInternationalTable),
13517            "E15" => Some(Unit::KilocalorieThermochemicalPerHour),
13518            "E16" => Some(Unit::MillionBtuItPerHour),
13519            "E17" => Some(Unit::CubicFootPerSecond),
13520            "E18" => Some(Unit::TonnePerHour),
13521            "E19" => Some(Unit::Ping),
13522            "E20" => Some(Unit::MegabitPerSecond),
13523            "E21" => Some(Unit::Shares),
13524            "E22" => Some(Unit::Teu),
13525            "E23" => Some(Unit::Tyre),
13526            "E25" => Some(Unit::ActiveUnit),
13527            "E27" => Some(Unit::Dose),
13528            "E28" => Some(Unit::AirDryTon),
13529            "E30" => Some(Unit::Strand),
13530            "E31" => Some(Unit::SquareMetrePerLitre),
13531            "E32" => Some(Unit::LitrePerHour),
13532            "E33" => Some(Unit::FootPerThousand),
13533            "E34" => Some(Unit::Gigabyte),
13534            "E35" => Some(Unit::Terabyte),
13535            "E36" => Some(Unit::Petabyte),
13536            "E37" => Some(Unit::Pixel),
13537            "E38" => Some(Unit::Megapixel),
13538            "E39" => Some(Unit::DotsPerInch),
13539            "E4" => Some(Unit::GrossKilogram),
13540            "E40" => Some(Unit::PartPerHundredThousand),
13541            "E41" => Some(Unit::KilogramForcePerSquareMillimetre),
13542            "E42" => Some(Unit::KilogramForcePerSquareCentimetre),
13543            "E43" => Some(Unit::JoulePerSquareCentimetre),
13544            "E44" => Some(Unit::KilogramForceMetrePerSquareCentimetre),
13545            "E45" => Some(Unit::Milliohm),
13546            "E46" => Some(Unit::KilowattHourPerCubicMetre),
13547            "E47" => Some(Unit::KilowattHourPerKelvin),
13548            "E48" => Some(Unit::ServiceUnit),
13549            "E49" => Some(Unit::WorkingDay),
13550            "E50" => Some(Unit::AccountingUnit),
13551            "E51" => Some(Unit::Job),
13552            "E52" => Some(Unit::RunFoot),
13553            "E53" => Some(Unit::Test),
13554            "E54" => Some(Unit::Trip),
13555            "E55" => Some(Unit::Use),
13556            "E56" => Some(Unit::Well),
13557            "E57" => Some(Unit::Zone),
13558            "E58" => Some(Unit::ExabitPerSecond),
13559            "E59" => Some(Unit::Exbibyte),
13560            "E60" => Some(Unit::Pebibyte),
13561            "E61" => Some(Unit::Tebibyte),
13562            "E62" => Some(Unit::Gibibyte),
13563            "E63" => Some(Unit::Mebibyte),
13564            "E64" => Some(Unit::Kibibyte),
13565            "E65" => Some(Unit::ExbibitPerMetre),
13566            "E66" => Some(Unit::ExbibitPerSquareMetre),
13567            "E67" => Some(Unit::ExbibitPerCubicMetre),
13568            "E68" => Some(Unit::GigabytePerSecond),
13569            "E69" => Some(Unit::GibibitPerMetre),
13570            "E70" => Some(Unit::GibibitPerSquareMetre),
13571            "E71" => Some(Unit::GibibitPerCubicMetre),
13572            "E72" => Some(Unit::KibibitPerMetre),
13573            "E73" => Some(Unit::KibibitPerSquareMetre),
13574            "E74" => Some(Unit::KibibitPerCubicMetre),
13575            "E75" => Some(Unit::MebibitPerMetre),
13576            "E76" => Some(Unit::MebibitPerSquareMetre),
13577            "E77" => Some(Unit::MebibitPerCubicMetre),
13578            "E78" => Some(Unit::Petabit),
13579            "E79" => Some(Unit::PetabitPerSecond),
13580            "E80" => Some(Unit::PebibitPerMetre),
13581            "E81" => Some(Unit::PebibitPerSquareMetre),
13582            "E82" => Some(Unit::PebibitPerCubicMetre),
13583            "E83" => Some(Unit::Terabit),
13584            "E84" => Some(Unit::TerabitPerSecond),
13585            "E85" => Some(Unit::TebibitPerMetre),
13586            "E86" => Some(Unit::TebibitPerCubicMetre),
13587            "E87" => Some(Unit::TebibitPerSquareMetre),
13588            "E88" => Some(Unit::BitPerMetre),
13589            "E89" => Some(Unit::BitPerSquareMetre),
13590            "E90" => Some(Unit::ReciprocalCentimetre),
13591            "E91" => Some(Unit::ReciprocalDay),
13592            "E92" => Some(Unit::CubicDecimetrePerHour),
13593            "E93" => Some(Unit::KilogramPerHour),
13594            "E94" => Some(Unit::KilomolePerSecond),
13595            "E95" => Some(Unit::MolePerSecond),
13596            "E96" => Some(Unit::DegreePerSecond),
13597            "E97" => Some(Unit::MillimetrePerDegreeCelciusMetre),
13598            "E98" => Some(Unit::DegreeCelsiusPerKelvin),
13599            "E99" => Some(Unit::HectopascalPerBar),
13600            "EA" => Some(Unit::Each),
13601            "EB" => Some(Unit::ElectronicMailBox),
13602            "EQ" => Some(Unit::EquivalentGallon),
13603            "F01" => Some(Unit::BitPerCubicMetre),
13604            "F02" => Some(Unit::KelvinPerKelvin),
13605            "F03" => Some(Unit::KilopascalPerBar),
13606            "F04" => Some(Unit::MillibarPerBar),
13607            "F05" => Some(Unit::MegapascalPerBar),
13608            "F06" => Some(Unit::PoisePerBar),
13609            "F07" => Some(Unit::PascalPerBar),
13610            "F08" => Some(Unit::MilliamperePerInch),
13611            "F10" => Some(Unit::KelvinPerHour),
13612            "F11" => Some(Unit::KelvinPerMinute),
13613            "F12" => Some(Unit::KelvinPerSecond),
13614            "F13" => Some(Unit::Slug),
13615            "F14" => Some(Unit::GramPerKelvin),
13616            "F15" => Some(Unit::KilogramPerKelvin),
13617            "F16" => Some(Unit::MilligramPerKelvin),
13618            "F17" => Some(Unit::PoundForcePerFoot),
13619            "F18" => Some(Unit::KilogramSquareCentimetre),
13620            "F19" => Some(Unit::KilogramSquareMillimetre),
13621            "F20" => Some(Unit::PoundInchSquared),
13622            "F21" => Some(Unit::PoundForceInch),
13623            "F22" => Some(Unit::PoundForceFootPerAmpere),
13624            "F23" => Some(Unit::GramPerCubicDecimetre),
13625            "F24" => Some(Unit::KilogramPerKilomol),
13626            "F25" => Some(Unit::GramPerHertz),
13627            "F26" => Some(Unit::GramPerDay),
13628            "F27" => Some(Unit::GramPerHour),
13629            "F28" => Some(Unit::GramPerMinute),
13630            "F29" => Some(Unit::GramPerSecond),
13631            "F30" => Some(Unit::KilogramPerDay),
13632            "F31" => Some(Unit::KilogramPerMinute),
13633            "F32" => Some(Unit::MilligramPerDay),
13634            "F33" => Some(Unit::MilligramPerMinute),
13635            "F34" => Some(Unit::MilligramPerSecond),
13636            "F35" => Some(Unit::GramPerDayKelvin),
13637            "F36" => Some(Unit::GramPerHourKelvin),
13638            "F37" => Some(Unit::GramPerMinuteKelvin),
13639            "F38" => Some(Unit::GramPerSecondKelvin),
13640            "F39" => Some(Unit::KilogramPerDayKelvin),
13641            "F40" => Some(Unit::KilogramPerHourKelvin),
13642            "F41" => Some(Unit::KilogramPerMinuteKelvin),
13643            "F42" => Some(Unit::KilogramPerSecondKelvin),
13644            "F43" => Some(Unit::MilligramPerDayKelvin),
13645            "F44" => Some(Unit::MilligramPerHourKelvin),
13646            "F45" => Some(Unit::MilligramPerMinuteKelvin),
13647            "F46" => Some(Unit::MilligramPerSecondKelvin),
13648            "F47" => Some(Unit::NewtonPerMillimetre),
13649            "F48" => Some(Unit::PoundForcePerInch),
13650            "F49" => Some(Unit::RodUnitDistance),
13651            "F50" => Some(Unit::MicrometrePerKelvin),
13652            "F51" => Some(Unit::CentimetrePerKelvin),
13653            "F52" => Some(Unit::MetrePerKelvin),
13654            "F53" => Some(Unit::MillimetrePerKelvin),
13655            "F54" => Some(Unit::MilliohmPerMetre),
13656            "F55" => Some(Unit::OhmPerMileStatuteMile),
13657            "F56" => Some(Unit::OhmPerKilometre),
13658            "F57" => Some(Unit::MilliamperePerPoundForcePerSquareInch),
13659            "F58" => Some(Unit::ReciprocalBar),
13660            "F59" => Some(Unit::MilliamperePerBar),
13661            "F60" => Some(Unit::DegreeCelsiusPerBar),
13662            "F61" => Some(Unit::KelvinPerBar),
13663            "F62" => Some(Unit::GramPerDayBar),
13664            "F63" => Some(Unit::GramPerHourBar),
13665            "F64" => Some(Unit::GramPerMinuteBar),
13666            "F65" => Some(Unit::GramPerSecondBar),
13667            "F66" => Some(Unit::KilogramPerDayBar),
13668            "F67" => Some(Unit::KilogramPerHourBar),
13669            "F68" => Some(Unit::KilogramPerMinuteBar),
13670            "F69" => Some(Unit::KilogramPerSecondBar),
13671            "F70" => Some(Unit::MilligramPerDayBar),
13672            "F71" => Some(Unit::MilligramPerHourBar),
13673            "F72" => Some(Unit::MilligramPerMinuteBar),
13674            "F73" => Some(Unit::MilligramPerSecondBar),
13675            "F74" => Some(Unit::GramPerBar),
13676            "F75" => Some(Unit::MilligramPerBar),
13677            "F76" => Some(Unit::MilliamperePerMillimetre),
13678            "F77" => Some(Unit::PascalSecondPerKelvin),
13679            "F78" => Some(Unit::InchWater),
13680            "F79" => Some(Unit::InchMercury),
13681            "F80" => Some(Unit::WaterHorsePower),
13682            "F81" => Some(Unit::BarPerKelvin),
13683            "F82" => Some(Unit::HectopascalPerKelvin),
13684            "F83" => Some(Unit::KilopascalPerKelvin),
13685            "F84" => Some(Unit::MillibarPerKelvin),
13686            "F85" => Some(Unit::MegapascalPerKelvin),
13687            "F86" => Some(Unit::PoisePerKelvin),
13688            "F87" => Some(Unit::VoltPerLitreMinute),
13689            "F88" => Some(Unit::NewtonCentimetre),
13690            "F89" => Some(Unit::NewtonMetrePerDegree),
13691            "F90" => Some(Unit::NewtonMetrePerAmpere),
13692            "F91" => Some(Unit::BarLitrePerSecond),
13693            "F92" => Some(Unit::BarCubicMetrePerSecond),
13694            "F93" => Some(Unit::HectopascalLitrePerSecond),
13695            "F94" => Some(Unit::HectopascalCubicMetrePerSecond),
13696            "F95" => Some(Unit::MillibarLitrePerSecond),
13697            "F96" => Some(Unit::MillibarCubicMetrePerSecond),
13698            "F97" => Some(Unit::MegapascalLitrePerSecond),
13699            "F98" => Some(Unit::MegapascalCubicMetrePerSecond),
13700            "F99" => Some(Unit::PascalLitrePerSecond),
13701            "FAH" => Some(Unit::DegreeFahrenheit),
13702            "FAR" => Some(Unit::Farad),
13703            "FBM" => Some(Unit::FibreMetre),
13704            "FC" => Some(Unit::ThousandCubicFoot),
13705            "FF" => Some(Unit::HundredCubicMetre),
13706            "FH" => Some(Unit::Micromole),
13707            "FIT" => Some(Unit::FailuresInTime),
13708            "FL" => Some(Unit::FlakeTon),
13709            "FNU" => Some(Unit::FormazinNephelometricUnit),
13710            "FOT" => Some(Unit::Foot),
13711            "FP" => Some(Unit::PoundPerSquareFoot),
13712            "FR" => Some(Unit::FootPerMinute),
13713            "FS" => Some(Unit::FootPerSecond),
13714            "FTK" => Some(Unit::SquareFoot),
13715            "FTQ" => Some(Unit::CubicFoot),
13716            "G01" => Some(Unit::PascalCubicMetrePerSecond),
13717            "G04" => Some(Unit::CentimetrePerBar),
13718            "G05" => Some(Unit::MetrePerBar),
13719            "G06" => Some(Unit::MillimetrePerBar),
13720            "G08" => Some(Unit::SquareInchPerSecond),
13721            "G09" => Some(Unit::SquareMetrePerSecondKelvin),
13722            "G10" => Some(Unit::StokesPerKelvin),
13723            "G11" => Some(Unit::GramPerCubicCentimetreBar),
13724            "G12" => Some(Unit::GramPerCubicDecimetreBar),
13725            "G13" => Some(Unit::GramPerLitreBar),
13726            "G14" => Some(Unit::GramPerCubicMetreBar),
13727            "G15" => Some(Unit::GramPerMillilitreBar),
13728            "G16" => Some(Unit::KilogramPerCubicCentimetreBar),
13729            "G17" => Some(Unit::KilogramPerLitreBar),
13730            "G18" => Some(Unit::KilogramPerCubicMetreBar),
13731            "G19" => Some(Unit::NewtonMetrePerKilogram),
13732            "G2" => Some(Unit::UsGallonPerMinute),
13733            "G20" => Some(Unit::PoundForceFootPerPound),
13734            "G21" => Some(Unit::CupUnitVolume),
13735            "G23" => Some(Unit::Peck),
13736            "G24" => Some(Unit::TablespoonUs),
13737            "G25" => Some(Unit::TeaspoonUs),
13738            "G26" => Some(Unit::Stere),
13739            "G27" => Some(Unit::CubicCentimetrePerKelvin),
13740            "G28" => Some(Unit::LitrePerKelvin),
13741            "G29" => Some(Unit::CubicMetrePerKelvin),
13742            "G3" => Some(Unit::ImperialGallonPerMinute),
13743            "G30" => Some(Unit::MillilitrePerKelvin),
13744            "G31" => Some(Unit::KilogramPerCubicCentimetre),
13745            "G32" => Some(Unit::OunceAvoirdupoisPerCubicYard),
13746            "G33" => Some(Unit::GramPerCubicCentimetreKelvin),
13747            "G34" => Some(Unit::GramPerCubicDecimetreKelvin),
13748            "G35" => Some(Unit::GramPerLitreKelvin),
13749            "G36" => Some(Unit::GramPerCubicMetreKelvin),
13750            "G37" => Some(Unit::GramPerMillilitreKelvin),
13751            "G38" => Some(Unit::KilogramPerCubicCentimetreKelvin),
13752            "G39" => Some(Unit::KilogramPerLitreKelvin),
13753            "G40" => Some(Unit::KilogramPerCubicMetreKelvin),
13754            "G41" => Some(Unit::SquareMetrePerSecondBar),
13755            "G42" => Some(Unit::MicrosiemensPerCentimetre),
13756            "G43" => Some(Unit::MicrosiemensPerMetre),
13757            "G44" => Some(Unit::NanosiemensPerCentimetre),
13758            "G45" => Some(Unit::NanosiemensPerMetre),
13759            "G46" => Some(Unit::StokesPerBar),
13760            "G47" => Some(Unit::CubicCentimetrePerDay),
13761            "G48" => Some(Unit::CubicCentimetrePerHour),
13762            "G49" => Some(Unit::CubicCentimetrePerMinute),
13763            "G50" => Some(Unit::GallonUsPerHour),
13764            "G51" => Some(Unit::LitrePerSecond),
13765            "G52" => Some(Unit::CubicMetrePerDay),
13766            "G53" => Some(Unit::CubicMetrePerMinute),
13767            "G54" => Some(Unit::MillilitrePerDay),
13768            "G55" => Some(Unit::MillilitrePerHour),
13769            "G56" => Some(Unit::CubicInchPerHour),
13770            "G57" => Some(Unit::CubicInchPerMinute),
13771            "G58" => Some(Unit::CubicInchPerSecond),
13772            "G59" => Some(Unit::MilliamperePerLitreMinute),
13773            "G60" => Some(Unit::VoltPerBar),
13774            "G61" => Some(Unit::CubicCentimetrePerDayKelvin),
13775            "G62" => Some(Unit::CubicCentimetrePerHourKelvin),
13776            "G63" => Some(Unit::CubicCentimetrePerMinuteKelvin),
13777            "G64" => Some(Unit::CubicCentimetrePerSecondKelvin),
13778            "G65" => Some(Unit::LitrePerDayKelvin),
13779            "G66" => Some(Unit::LitrePerHourKelvin),
13780            "G67" => Some(Unit::LitrePerMinuteKelvin),
13781            "G68" => Some(Unit::LitrePerSecondKelvin),
13782            "G69" => Some(Unit::CubicMetrePerDayKelvin),
13783            "G70" => Some(Unit::CubicMetrePerHourKelvin),
13784            "G71" => Some(Unit::CubicMetrePerMinuteKelvin),
13785            "G72" => Some(Unit::CubicMetrePerSecondKelvin),
13786            "G73" => Some(Unit::MillilitrePerDayKelvin),
13787            "G74" => Some(Unit::MillilitrePerHourKelvin),
13788            "G75" => Some(Unit::MillilitrePerMinuteKelvin),
13789            "G76" => Some(Unit::MillilitrePerSecondKelvin),
13790            "G77" => Some(Unit::MillimetreToFourthPower),
13791            "G78" => Some(Unit::CubicCentimetrePerDayBar),
13792            "G79" => Some(Unit::CubicCentimetrePerHourBar),
13793            "G80" => Some(Unit::CubicCentimetrePerMinuteBar),
13794            "G81" => Some(Unit::CubicCentimetrePerSecondBar),
13795            "G82" => Some(Unit::LitrePerDayBar),
13796            "G83" => Some(Unit::LitrePerHourBar),
13797            "G84" => Some(Unit::LitrePerMinuteBar),
13798            "G85" => Some(Unit::LitrePerSecondBar),
13799            "G86" => Some(Unit::CubicMetrePerDayBar),
13800            "G87" => Some(Unit::CubicMetrePerHourBar),
13801            "G88" => Some(Unit::CubicMetrePerMinuteBar),
13802            "G89" => Some(Unit::CubicMetrePerSecondBar),
13803            "G90" => Some(Unit::MillilitrePerDayBar),
13804            "G91" => Some(Unit::MillilitrePerHourBar),
13805            "G92" => Some(Unit::MillilitrePerMinuteBar),
13806            "G93" => Some(Unit::MillilitrePerSecondBar),
13807            "G94" => Some(Unit::CubicCentimetrePerBar),
13808            "G95" => Some(Unit::LitrePerBar),
13809            "G96" => Some(Unit::CubicMetrePerBar),
13810            "G97" => Some(Unit::MillilitrePerBar),
13811            "G98" => Some(Unit::MicrohenryPerKiloohm),
13812            "G99" => Some(Unit::MicrohenryPerOhm),
13813            "GB" => Some(Unit::GallonUsPerDay),
13814            "GBQ" => Some(Unit::Gigabecquerel),
13815            "GDW" => Some(Unit::GramDryWeight),
13816            "GE" => Some(Unit::PoundPerGallonUs),
13817            "GF" => Some(Unit::GramPerMetreGramPer100Centimetres),
13818            "GFI" => Some(Unit::GramFissileIsotope),
13819            "GGR" => Some(Unit::GreatGross),
13820            "GIA" => Some(Unit::GillUs),
13821            "GIC" => Some(Unit::GramIncludingContainer),
13822            "GII" => Some(Unit::GillUk),
13823            "GIP" => Some(Unit::GramIncludingInnerPackaging),
13824            "GJ" => Some(Unit::GramPerMillilitre),
13825            "GL" => Some(Unit::GramPerLitre),
13826            "GLD" => Some(Unit::DryGallonUs),
13827            "GLI" => Some(Unit::GallonUk),
13828            "GLL" => Some(Unit::GallonUs),
13829            "GM" => Some(Unit::GramPerSquareMetre),
13830            "GO" => Some(Unit::MilligramPerSquareMetre),
13831            "GP" => Some(Unit::MilligramPerCubicMetre),
13832            "GQ" => Some(Unit::MicrogramPerCubicMetre),
13833            "GRM" => Some(Unit::Gram),
13834            "GRN" => Some(Unit::Grain),
13835            "GRO" => Some(Unit::Gross),
13836            "GV" => Some(Unit::Gigajoule),
13837            "GWH" => Some(Unit::GigawattHour),
13838            "H03" => Some(Unit::HenryPerKiloohm),
13839            "H04" => Some(Unit::HenryPerOhm),
13840            "H05" => Some(Unit::MillihenryPerKiloohm),
13841            "H06" => Some(Unit::MillihenryPerOhm),
13842            "H07" => Some(Unit::PascalSecondPerBar),
13843            "H08" => Some(Unit::Microbecquerel),
13844            "H09" => Some(Unit::ReciprocalYear),
13845            "H10" => Some(Unit::ReciprocalHour),
13846            "H11" => Some(Unit::ReciprocalMonth),
13847            "H12" => Some(Unit::DegreeCelsiusPerHour),
13848            "H13" => Some(Unit::DegreeCelsiusPerMinute),
13849            "H14" => Some(Unit::DegreeCelsiusPerSecond),
13850            "H15" => Some(Unit::SquareCentimetrePerGram),
13851            "H16" => Some(Unit::SquareDecametre),
13852            "H18" => Some(Unit::SquareHectometre),
13853            "H19" => Some(Unit::CubicHectometre),
13854            "H20" => Some(Unit::CubicKilometre),
13855            "H21" => Some(Unit::Blank),
13856            "H22" => Some(Unit::VoltSquareInchPerPoundForce),
13857            "H23" => Some(Unit::VoltPerInch),
13858            "H24" => Some(Unit::VoltPerMicrosecond),
13859            "H25" => Some(Unit::PercentPerKelvin),
13860            "H26" => Some(Unit::OhmPerMetre),
13861            "H27" => Some(Unit::DegreePerMetre),
13862            "H28" => Some(Unit::MicrofaradPerKilometre),
13863            "H29" => Some(Unit::MicrogramPerLitre),
13864            "H30" => Some(Unit::SquareMicrometreSquareMicron),
13865            "H31" => Some(Unit::AmperePerKilogram),
13866            "H32" => Some(Unit::AmpereSquaredSecond),
13867            "H33" => Some(Unit::FaradPerKilometre),
13868            "H34" => Some(Unit::HertzMetre),
13869            "H35" => Some(Unit::KelvinMetrePerWatt),
13870            "H36" => Some(Unit::MegaohmPerKilometre),
13871            "H37" => Some(Unit::MegaohmPerMetre),
13872            "H38" => Some(Unit::Megaampere),
13873            "H39" => Some(Unit::MegahertzKilometre),
13874            "H40" => Some(Unit::NewtonPerAmpere),
13875            "H41" => Some(Unit::NewtonMetreWattToPowerMinus05),
13876            "H42" => Some(Unit::PascalPerMetre),
13877            "H43" => Some(Unit::SiemensPerCentimetre),
13878            "H44" => Some(Unit::Teraohm),
13879            "H45" => Some(Unit::VoltSecondPerMetre),
13880            "H46" => Some(Unit::VoltPerSecond),
13881            "H47" => Some(Unit::WattPerCubicMetre),
13882            "H48" => Some(Unit::Attofarad),
13883            "H49" => Some(Unit::CentimetrePerHour),
13884            "H50" => Some(Unit::ReciprocalCubicCentimetre),
13885            "H51" => Some(Unit::DecibelPerKilometre),
13886            "H52" => Some(Unit::DecibelPerMetre),
13887            "H53" => Some(Unit::KilogramPerBar),
13888            "H54" => Some(Unit::KilogramPerCubicDecimetreKelvin),
13889            "H55" => Some(Unit::KilogramPerCubicDecimetreBar),
13890            "H56" => Some(Unit::KilogramPerSquareMetreSecond),
13891            "H57" => Some(Unit::InchPerTwoPiRadiant),
13892            "H58" => Some(Unit::MetrePerVoltSecond),
13893            "H59" => Some(Unit::SquareMetrePerNewton),
13894            "H60" => Some(Unit::CubicMetrePerCubicMetre),
13895            "H61" => Some(Unit::MillisiemensPerCentimetre),
13896            "H62" => Some(Unit::MillivoltPerMinute),
13897            "H63" => Some(Unit::MilligramPerSquareCentimetre),
13898            "H64" => Some(Unit::MilligramPerGram),
13899            "H65" => Some(Unit::MillilitrePerCubicMetre),
13900            "H66" => Some(Unit::MillimetrePerYear),
13901            "H67" => Some(Unit::MillimetrePerHour),
13902            "H68" => Some(Unit::MillimolePerGram),
13903            "H69" => Some(Unit::PicopascalPerKilometre),
13904            "H70" => Some(Unit::Picosecond),
13905            "H71" => Some(Unit::PercentPerMonth),
13906            "H72" => Some(Unit::PercentPerHectobar),
13907            "H73" => Some(Unit::PercentPerDecakelvin),
13908            "H74" => Some(Unit::WattPerMetre),
13909            "H75" => Some(Unit::Decapascal),
13910            "H76" => Some(Unit::GramPerMillimetre),
13911            "H77" => Some(Unit::ModuleWidth),
13912            "H79" => Some(Unit::FrenchGauge),
13913            "H80" => Some(Unit::RackUnit),
13914            "H81" => Some(Unit::MillimetrePerMinute),
13915            "H82" => Some(Unit::BigPoint),
13916            "H83" => Some(Unit::LitrePerKilogram),
13917            "H84" => Some(Unit::GramMillimetre),
13918            "H85" => Some(Unit::ReciprocalWeek),
13919            "H87" => Some(Unit::Piece),
13920            "H88" => Some(Unit::MegaohmKilometre),
13921            "H89" => Some(Unit::PercentPerOhm),
13922            "H90" => Some(Unit::PercentPerDegree),
13923            "H91" => Some(Unit::PercentPerTenThousand),
13924            "H92" => Some(Unit::PercentPerOneHundredThousand),
13925            "H93" => Some(Unit::PercentPerHundred),
13926            "H94" => Some(Unit::PercentPerThousand),
13927            "H95" => Some(Unit::PercentPerVolt),
13928            "H96" => Some(Unit::PercentPerBar),
13929            "H98" => Some(Unit::PercentPerInch),
13930            "H99" => Some(Unit::PercentPerMetre),
13931            "HA" => Some(Unit::Hank),
13932            "HAD" => Some(Unit::PieceDay),
13933            "HBA" => Some(Unit::Hectobar),
13934            "HBX" => Some(Unit::HundredBoxes),
13935            "HC" => Some(Unit::HundredCount),
13936            "HDW" => Some(Unit::HundredKilogramDryWeight),
13937            "HEA" => Some(Unit::Head),
13938            "HGM" => Some(Unit::Hectogram),
13939            "HH" => Some(Unit::HundredCubicFoot),
13940            "HIU" => Some(Unit::HundredInternationalUnit),
13941            "HKM" => Some(Unit::HundredKilogramNetMass),
13942            "HLT" => Some(Unit::Hectolitre),
13943            "HM" => Some(Unit::MilePerHourStatuteMile),
13944            "HMO" => Some(Unit::PieceMonth),
13945            "HMQ" => Some(Unit::MillionCubicMetre),
13946            "HMT" => Some(Unit::Hectometre),
13947            "HPA" => Some(Unit::HectolitrePureAlcohol),
13948            "HTZ" => Some(Unit::Hertz),
13949            "HUR" => Some(Unit::Hour),
13950            "HWE" => Some(Unit::PieceWeek),
13951            "IA" => Some(Unit::InchPoundPoundInch),
13952            "IE" => Some(Unit::Person),
13953            "INH" => Some(Unit::Inch),
13954            "INK" => Some(Unit::SquareInch),
13955            "INQ" => Some(Unit::CubicInch),
13956            "ISD" => Some(Unit::InternationalSugarDegree),
13957            "IU" => Some(Unit::InchPerSecond),
13958            "IUG" => Some(Unit::InternationalUnitPerGram),
13959            "IV" => Some(Unit::InchPerSecondSquared),
13960            "J10" => Some(Unit::PercentPerMillimetre),
13961            "J12" => Some(Unit::PerMillePerPsi),
13962            "J13" => Some(Unit::DegreeApi),
13963            "J14" => Some(Unit::DegreeBaumeOriginScale),
13964            "J15" => Some(Unit::DegreeBaumeUsHeavy),
13965            "J16" => Some(Unit::DegreeBaumeUsLight),
13966            "J17" => Some(Unit::DegreeBalling),
13967            "J18" => Some(Unit::DegreeBrix),
13968            "J19" => Some(Unit::DegreeFahrenheitHourSquareFootPerBritishThermalUnitThermochemical),
13969            "J2" => Some(Unit::JoulePerKilogram),
13970            "J20" => Some(Unit::DegreeFahrenheitPerKelvin),
13971            "J21" => Some(Unit::DegreeFahrenheitPerBar),
13972            "J22" => {
13973                Some(Unit::DegreeFahrenheitHourSquareFootPerBritishThermalUnitInternationalTable)
13974            }
13975            "J23" => Some(Unit::DegreeFahrenheitPerHour),
13976            "J24" => Some(Unit::DegreeFahrenheitPerMinute),
13977            "J25" => Some(Unit::DegreeFahrenheitPerSecond),
13978            "J26" => Some(Unit::ReciprocalDegreeFahrenheit),
13979            "J27" => Some(Unit::DegreeOechsle),
13980            "J28" => Some(Unit::DegreeRankinePerHour),
13981            "J29" => Some(Unit::DegreeRankinePerMinute),
13982            "J30" => Some(Unit::DegreeRankinePerSecond),
13983            "J31" => Some(Unit::DegreeTwaddell),
13984            "J32" => Some(Unit::Micropoise),
13985            "J33" => Some(Unit::MicrogramPerKilogram),
13986            "J34" => Some(Unit::MicrogramPerCubicMetreKelvin),
13987            "J35" => Some(Unit::MicrogramPerCubicMetreBar),
13988            "J36" => Some(Unit::MicrolitrePerLitre),
13989            "J38" => Some(Unit::Baud),
13990            "J39" => Some(Unit::BritishThermalUnitMean),
13991            "J40" => Some(
13992                Unit::BritishThermalUnitInternationalTableFootPerHourSquareFootDegreeFahrenheit,
13993            ),
13994            "J41" => Some(
13995                Unit::BritishThermalUnitInternationalTableInchPerHourSquareFootDegreeFahrenheit,
13996            ),
13997            "J42" => Some(
13998                Unit::BritishThermalUnitInternationalTableInchPerSecondSquareFootDegreeFahrenheit,
13999            ),
14000            "J43" => Some(Unit::BritishThermalUnitInternationalTablePerPoundDegreeFahrenheit),
14001            "J44" => Some(Unit::BritishThermalUnitInternationalTablePerMinute),
14002            "J45" => Some(Unit::BritishThermalUnitInternationalTablePerSecond),
14003            "J46" => {
14004                Some(Unit::BritishThermalUnitThermochemicalFootPerHourSquareFootDegreeFahrenheit)
14005            }
14006            "J47" => Some(Unit::BritishThermalUnitThermochemicalPerHour),
14007            "J48" => {
14008                Some(Unit::BritishThermalUnitThermochemicalInchPerHourSquareFootDegreeFahrenheit)
14009            }
14010            "J49" => {
14011                Some(Unit::BritishThermalUnitThermochemicalInchPerSecondSquareFootDegreeFahrenheit)
14012            }
14013            "J50" => Some(Unit::BritishThermalUnitThermochemicalPerPoundDegreeFahrenheit),
14014            "J51" => Some(Unit::BritishThermalUnitThermochemicalPerMinute),
14015            "J52" => Some(Unit::BritishThermalUnitThermochemicalPerSecond),
14016            "J53" => Some(Unit::CoulombSquareMetrePerKilogram),
14017            "J54" => Some(Unit::Megabaud),
14018            "J55" => Some(Unit::WattSecond),
14019            "J56" => Some(Unit::BarPerBar),
14020            "J57" => Some(Unit::BarrelUkPetroleum),
14021            "J58" => Some(Unit::BarrelUkPetroleumPerMinute),
14022            "J59" => Some(Unit::BarrelUkPetroleumPerDay),
14023            "J60" => Some(Unit::BarrelUkPetroleumPerHour),
14024            "J61" => Some(Unit::BarrelUkPetroleumPerSecond),
14025            "J62" => Some(Unit::BarrelUsPetroleumPerHour),
14026            "J63" => Some(Unit::BarrelUsPetroleumPerSecond),
14027            "J64" => Some(Unit::BushelUkPerDay),
14028            "J65" => Some(Unit::BushelUkPerHour),
14029            "J66" => Some(Unit::BushelUkPerMinute),
14030            "J67" => Some(Unit::BushelUkPerSecond),
14031            "J68" => Some(Unit::BushelUsDryPerDay),
14032            "J69" => Some(Unit::BushelUsDryPerHour),
14033            "J70" => Some(Unit::BushelUsDryPerMinute),
14034            "J71" => Some(Unit::BushelUsDryPerSecond),
14035            "J72" => Some(Unit::CentinewtonMetre),
14036            "J73" => Some(Unit::CentipoisePerKelvin),
14037            "J74" => Some(Unit::CentipoisePerBar),
14038            "J75" => Some(Unit::CalorieMean),
14039            "J76" => Some(Unit::CalorieInternationalTablePerGramDegreeCelsius),
14040            "J78" => Some(Unit::CalorieThermochemicalPerCentimetreSecondDegreeCelsius),
14041            "J79" => Some(Unit::CalorieThermochemicalPerGramDegreeCelsius),
14042            "J81" => Some(Unit::CalorieThermochemicalPerMinute),
14043            "J82" => Some(Unit::CalorieThermochemicalPerSecond),
14044            "J83" => Some(Unit::Clo),
14045            "J84" => Some(Unit::CentimetrePerSecondKelvin),
14046            "J85" => Some(Unit::CentimetrePerSecondBar),
14047            "J87" => Some(Unit::CubicCentimetrePerCubicMetre),
14048            "J90" => Some(Unit::CubicDecimetrePerDay),
14049            "J91" => Some(Unit::CubicDecimetrePerCubicMetre),
14050            "J92" => Some(Unit::CubicDecimetrePerMinute),
14051            "J93" => Some(Unit::CubicDecimetrePerSecond),
14052            "J95" => Some(Unit::OunceUkFluidPerDay),
14053            "J96" => Some(Unit::OunceUkFluidPerHour),
14054            "J97" => Some(Unit::OunceUkFluidPerMinute),
14055            "J98" => Some(Unit::OunceUkFluidPerSecond),
14056            "J99" => Some(Unit::OunceUsFluidPerDay),
14057            "JE" => Some(Unit::JoulePerKelvin),
14058            "JK" => Some(Unit::MegajoulePerKilogram),
14059            "JM" => Some(Unit::MegajoulePerCubicMetre),
14060            "JNT" => Some(Unit::PipelineJoint),
14061            "JOU" => Some(Unit::Joule),
14062            "JPS" => Some(Unit::HundredMetre),
14063            "JWL" => Some(Unit::NumberJewels),
14064            "K1" => Some(Unit::KilowattDemand),
14065            "K10" => Some(Unit::OunceUsFluidPerHour),
14066            "K11" => Some(Unit::OunceUsFluidPerMinute),
14067            "K12" => Some(Unit::OunceUsFluidPerSecond),
14068            "K13" => Some(Unit::FootPerDegreeFahrenheit),
14069            "K14" => Some(Unit::FootPerHour),
14070            "K15" => Some(Unit::FootPoundForcePerHour),
14071            "K16" => Some(Unit::FootPoundForcePerMinute),
14072            "K17" => Some(Unit::FootPerPsi),
14073            "K18" => Some(Unit::FootPerSecondDegreeFahrenheit),
14074            "K19" => Some(Unit::FootPerSecondPsi),
14075            "K2" => Some(Unit::KilovoltAmpereReactiveDemand),
14076            "K20" => Some(Unit::ReciprocalCubicFoot),
14077            "K21" => Some(Unit::CubicFootPerDegreeFahrenheit),
14078            "K22" => Some(Unit::CubicFootPerDay),
14079            "K23" => Some(Unit::CubicFootPerPsi),
14080            "K26" => Some(Unit::GallonUkPerDay),
14081            "K27" => Some(Unit::GallonUkPerHour),
14082            "K28" => Some(Unit::GallonUkPerSecond),
14083            "K3" => Some(Unit::KilovoltAmpereReactiveHour),
14084            "K30" => Some(Unit::GallonUsLiquidPerSecond),
14085            "K31" => Some(Unit::GramForcePerSquareCentimetre),
14086            "K32" => Some(Unit::GillUkPerDay),
14087            "K33" => Some(Unit::GillUkPerHour),
14088            "K34" => Some(Unit::GillUkPerMinute),
14089            "K35" => Some(Unit::GillUkPerSecond),
14090            "K36" => Some(Unit::GillUsPerDay),
14091            "K37" => Some(Unit::GillUsPerHour),
14092            "K38" => Some(Unit::GillUsPerMinute),
14093            "K39" => Some(Unit::GillUsPerSecond),
14094            "K40" => Some(Unit::StandardAccelerationFreeFall),
14095            "K41" => Some(Unit::GrainPerGallonUs),
14096            "K42" => Some(Unit::HorsepowerBoiler),
14097            "K43" => Some(Unit::HorsepowerElectric),
14098            "K45" => Some(Unit::InchPerDegreeFahrenheit),
14099            "K46" => Some(Unit::InchPerPsi),
14100            "K47" => Some(Unit::InchPerSecondDegreeFahrenheit),
14101            "K48" => Some(Unit::InchPerSecondPsi),
14102            "K49" => Some(Unit::ReciprocalCubicInch),
14103            "K50" => Some(Unit::Kilobaud),
14104            "K51" => Some(Unit::KilocalorieMean),
14105            "K52" => Some(Unit::KilocalorieInternationalTablePerHourMetreDegreeCelsius),
14106            "K53" => Some(Unit::KilocalorieThermochemical),
14107            "K54" => Some(Unit::KilocalorieThermochemicalPerMinute),
14108            "K55" => Some(Unit::KilocalorieThermochemicalPerSecond),
14109            "K58" => Some(Unit::KilomolePerHour),
14110            "K59" => Some(Unit::KilomolePerCubicMetreKelvin),
14111            "K6" => Some(Unit::Kilolitre),
14112            "K60" => Some(Unit::KilomolePerCubicMetreBar),
14113            "K61" => Some(Unit::KilomolePerMinute),
14114            "K62" => Some(Unit::LitrePerLitre),
14115            "K63" => Some(Unit::ReciprocalLitre),
14116            "K64" => Some(Unit::PoundAvoirdupoisPerDegreeFahrenheit),
14117            "K65" => Some(Unit::PoundAvoirdupoisSquareFoot),
14118            "K66" => Some(Unit::PoundAvoirdupoisPerDay),
14119            "K67" => Some(Unit::PoundPerFootHour),
14120            "K68" => Some(Unit::PoundPerFootSecond),
14121            "K69" => Some(Unit::PoundAvoirdupoisPerCubicFootDegreeFahrenheit),
14122            "K70" => Some(Unit::PoundAvoirdupoisPerCubicFootPsi),
14123            "K71" => Some(Unit::PoundAvoirdupoisPerGallonUk),
14124            "K73" => Some(Unit::PoundAvoirdupoisPerHourDegreeFahrenheit),
14125            "K74" => Some(Unit::PoundAvoirdupoisPerHourPsi),
14126            "K75" => Some(Unit::PoundAvoirdupoisPerCubicInchDegreeFahrenheit),
14127            "K76" => Some(Unit::PoundAvoirdupoisPerCubicInchPsi),
14128            "K77" => Some(Unit::PoundAvoirdupoisPerPsi),
14129            "K78" => Some(Unit::PoundAvoirdupoisPerMinute),
14130            "K79" => Some(Unit::PoundAvoirdupoisPerMinuteDegreeFahrenheit),
14131            "K80" => Some(Unit::PoundAvoirdupoisPerMinutePsi),
14132            "K81" => Some(Unit::PoundAvoirdupoisPerSecond),
14133            "K82" => Some(Unit::PoundAvoirdupoisPerSecondDegreeFahrenheit),
14134            "K83" => Some(Unit::PoundAvoirdupoisPerSecondPsi),
14135            "K84" => Some(Unit::PoundPerCubicYard),
14136            "K85" => Some(Unit::PoundForcePerSquareFoot),
14137            "K86" => Some(Unit::PoundForcePerSquareInchDegreeFahrenheit),
14138            "K87" => Some(Unit::PsiCubicInchPerSecond),
14139            "K88" => Some(Unit::PsiLitrePerSecond),
14140            "K89" => Some(Unit::PsiCubicMetrePerSecond),
14141            "K90" => Some(Unit::PsiCubicYardPerSecond),
14142            "K91" => Some(Unit::PoundForceSecondPerSquareFoot),
14143            "K92" => Some(Unit::PoundForceSecondPerSquareInch),
14144            "K93" => Some(Unit::ReciprocalPsi),
14145            "K94" => Some(Unit::QuartUkLiquidPerDay),
14146            "K95" => Some(Unit::QuartUkLiquidPerHour),
14147            "K96" => Some(Unit::QuartUkLiquidPerMinute),
14148            "K97" => Some(Unit::QuartUkLiquidPerSecond),
14149            "K98" => Some(Unit::QuartUsLiquidPerDay),
14150            "K99" => Some(Unit::QuartUsLiquidPerHour),
14151            "KA" => Some(Unit::Cake),
14152            "KAT" => Some(Unit::Katal),
14153            "KB" => Some(Unit::Kilocharacter),
14154            "KBA" => Some(Unit::Kilobar),
14155            "KCC" => Some(Unit::KilogramCholineChloride),
14156            "KDW" => Some(Unit::KilogramDrainedNetWeight),
14157            "KEL" => Some(Unit::Kelvin),
14158            "KGM" => Some(Unit::Kilogram),
14159            "KGS" => Some(Unit::KilogramPerSecond),
14160            "KHY" => Some(Unit::KilogramHydrogenPeroxide),
14161            "KHZ" => Some(Unit::Kilohertz),
14162            "KI" => Some(Unit::KilogramPerMillimetreWidth),
14163            "KIC" => Some(Unit::KilogramIncludingContainer),
14164            "KIP" => Some(Unit::KilogramIncludingInnerPackaging),
14165            "KJ" => Some(Unit::Kilosegment),
14166            "KJO" => Some(Unit::Kilojoule),
14167            "KL" => Some(Unit::KilogramPerMetre),
14168            "KLK" => Some(Unit::LacticDryMaterialPercentage),
14169            "KLX" => Some(Unit::Kilolux),
14170            "KMA" => Some(Unit::KilogramMethylamine),
14171            "KMH" => Some(Unit::KilometrePerHour),
14172            "KMK" => Some(Unit::SquareKilometre),
14173            "KMQ" => Some(Unit::KilogramPerCubicMetre),
14174            "KMT" => Some(Unit::Kilometre),
14175            "KNI" => Some(Unit::KilogramNitrogen),
14176            "KNM" => Some(Unit::KilonewtonPerSquareMetre),
14177            "KNS" => Some(Unit::KilogramNamedSubstance),
14178            "KNT" => Some(Unit::Knot),
14179            "KO" => Some(Unit::MilliequivalenceCausticPotashPerGramProduct),
14180            "KPA" => Some(Unit::Kilopascal),
14181            "KPH" => Some(Unit::KilogramPotassiumHydroxideCausticPotash),
14182            "KPO" => Some(Unit::KilogramPotassiumOxide),
14183            "KPP" => Some(Unit::KilogramPhosphorusPentoxidePhosphoricAnhydride),
14184            "KR" => Some(Unit::Kiloroentgen),
14185            "KSD" => Some(Unit::KilogramSubstance90Dry),
14186            "KSH" => Some(Unit::KilogramSodiumHydroxideCausticSoda),
14187            "KT" => Some(Unit::Kit),
14188            "KTN" => Some(Unit::Kilotonne),
14189            "KUR" => Some(Unit::KilogramUranium),
14190            "KVA" => Some(Unit::KilovoltAmpere),
14191            "KVR" => Some(Unit::Kilovar),
14192            "KVT" => Some(Unit::Kilovolt),
14193            "KW" => Some(Unit::KilogramPerMillimetre),
14194            "KWH" => Some(Unit::KilowattHour),
14195            "KWN" => Some(Unit::KilowattHourPerNormalizedCubicMetre),
14196            "KWO" => Some(Unit::KilogramTungstenTrioxide),
14197            "KWS" => Some(Unit::KilowattHourPerStandardCubicMetre),
14198            "KWT" => Some(Unit::Kilowatt),
14199            "KWY" => Some(Unit::KilowattYear),
14200            "KX" => Some(Unit::MillilitrePerKilogram),
14201            "L10" => Some(Unit::QuartUsLiquidPerMinute),
14202            "L11" => Some(Unit::QuartUsLiquidPerSecond),
14203            "L12" => Some(Unit::MetrePerSecondKelvin),
14204            "L13" => Some(Unit::MetrePerSecondBar),
14205            "L14" => Some(Unit::SquareMetreHourDegreeCelsiusPerKilocalorieInternationalTable),
14206            "L15" => Some(Unit::MillipascalSecondPerKelvin),
14207            "L16" => Some(Unit::MillipascalSecondPerBar),
14208            "L17" => Some(Unit::MilligramPerCubicMetreKelvin),
14209            "L18" => Some(Unit::MilligramPerCubicMetreBar),
14210            "L19" => Some(Unit::MillilitrePerLitre),
14211            "L2" => Some(Unit::LitrePerMinute),
14212            "L20" => Some(Unit::ReciprocalCubicMillimetre),
14213            "L21" => Some(Unit::CubicMillimetrePerCubicMetre),
14214            "L23" => Some(Unit::MolePerHour),
14215            "L24" => Some(Unit::MolePerKilogramKelvin),
14216            "L25" => Some(Unit::MolePerKilogramBar),
14217            "L26" => Some(Unit::MolePerLitreKelvin),
14218            "L27" => Some(Unit::MolePerLitreBar),
14219            "L28" => Some(Unit::MolePerCubicMetreKelvin),
14220            "L29" => Some(Unit::MolePerCubicMetreBar),
14221            "L30" => Some(Unit::MolePerMinute),
14222            "L31" => Some(Unit::MilliroentgenAequivalentMen),
14223            "L32" => Some(Unit::NanogramPerKilogram),
14224            "L33" => Some(Unit::OunceAvoirdupoisPerDay),
14225            "L34" => Some(Unit::OunceAvoirdupoisPerHour),
14226            "L35" => Some(Unit::OunceAvoirdupoisPerMinute),
14227            "L36" => Some(Unit::OunceAvoirdupoisPerSecond),
14228            "L37" => Some(Unit::OunceAvoirdupoisPerGallonUk),
14229            "L38" => Some(Unit::OunceAvoirdupoisPerGallonUs),
14230            "L39" => Some(Unit::OunceAvoirdupoisPerCubicInch),
14231            "L40" => Some(Unit::OunceAvoirdupoisForce),
14232            "L41" => Some(Unit::OunceAvoirdupoisForceInch),
14233            "L42" => Some(Unit::PicosiemensPerMetre),
14234            "L43" => Some(Unit::PeckUk),
14235            "L44" => Some(Unit::PeckUkPerDay),
14236            "L45" => Some(Unit::PeckUkPerHour),
14237            "L46" => Some(Unit::PeckUkPerMinute),
14238            "L47" => Some(Unit::PeckUkPerSecond),
14239            "L48" => Some(Unit::PeckUsDryPerDay),
14240            "L49" => Some(Unit::PeckUsDryPerHour),
14241            "L50" => Some(Unit::PeckUsDryPerMinute),
14242            "L51" => Some(Unit::PeckUsDryPerSecond),
14243            "L52" => Some(Unit::PsiPerPsi),
14244            "L53" => Some(Unit::PintUkPerDay),
14245            "L54" => Some(Unit::PintUkPerHour),
14246            "L55" => Some(Unit::PintUkPerMinute),
14247            "L56" => Some(Unit::PintUkPerSecond),
14248            "L57" => Some(Unit::PintUsLiquidPerDay),
14249            "L58" => Some(Unit::PintUsLiquidPerHour),
14250            "L59" => Some(Unit::PintUsLiquidPerMinute),
14251            "L60" => Some(Unit::PintUsLiquidPerSecond),
14252            "L63" => Some(Unit::SlugPerDay),
14253            "L64" => Some(Unit::SlugPerFootSecond),
14254            "L65" => Some(Unit::SlugPerCubicFoot),
14255            "L66" => Some(Unit::SlugPerHour),
14256            "L67" => Some(Unit::SlugPerMinute),
14257            "L68" => Some(Unit::SlugPerSecond),
14258            "L69" => Some(Unit::TonnePerKelvin),
14259            "L70" => Some(Unit::TonnePerBar),
14260            "L71" => Some(Unit::TonnePerDay),
14261            "L72" => Some(Unit::TonnePerDayKelvin),
14262            "L73" => Some(Unit::TonnePerDayBar),
14263            "L74" => Some(Unit::TonnePerHourKelvin),
14264            "L75" => Some(Unit::TonnePerHourBar),
14265            "L76" => Some(Unit::TonnePerCubicMetreKelvin),
14266            "L77" => Some(Unit::TonnePerCubicMetreBar),
14267            "L78" => Some(Unit::TonnePerMinute),
14268            "L79" => Some(Unit::TonnePerMinuteKelvin),
14269            "L80" => Some(Unit::TonnePerMinuteBar),
14270            "L81" => Some(Unit::TonnePerSecond),
14271            "L82" => Some(Unit::TonnePerSecondKelvin),
14272            "L83" => Some(Unit::TonnePerSecondBar),
14273            "L84" => Some(Unit::TonUkShipping),
14274            "L85" => Some(Unit::TonLongPerDay),
14275            "L86" => Some(Unit::TonUsShipping),
14276            "L87" => Some(Unit::TonShortPerDegreeFahrenheit),
14277            "L88" => Some(Unit::TonShortPerDay),
14278            "L89" => Some(Unit::TonShortPerHourDegreeFahrenheit),
14279            "L90" => Some(Unit::TonShortPerHourPsi),
14280            "L91" => Some(Unit::TonShortPerPsi),
14281            "L92" => Some(Unit::TonUkLongPerCubicYard),
14282            "L93" => Some(Unit::TonUsShortPerCubicYard),
14283            "L94" => Some(Unit::TonForceUsShort),
14284            "L95" => Some(Unit::CommonYear),
14285            "L96" => Some(Unit::SiderealYear),
14286            "L98" => Some(Unit::YardPerDegreeFahrenheit),
14287            "L99" => Some(Unit::YardPerPsi),
14288            "LA" => Some(Unit::PoundPerCubicInch),
14289            "LAC" => Some(Unit::LactoseExcessPercentage),
14290            "LBR" => Some(Unit::Pound),
14291            "LBT" => Some(Unit::TroyPoundUs),
14292            "LD" => Some(Unit::LitrePerDay),
14293            "LEF" => Some(Unit::Leaf),
14294            "LF" => Some(Unit::LinearFoot),
14295            "LH" => Some(Unit::LabourHour),
14296            "LK" => Some(Unit::Link),
14297            "LM" => Some(Unit::LinearMetre),
14298            "LN" => Some(Unit::Length),
14299            "LO" => Some(Unit::LotUnitProcurement),
14300            "LP" => Some(Unit::LiquidPound),
14301            "LPA" => Some(Unit::LitrePureAlcohol),
14302            "LR" => Some(Unit::Layer),
14303            "LS" => Some(Unit::LumpSum),
14304            "LTN" => Some(Unit::TonUkOrLongTonUs),
14305            "LTR" => Some(Unit::Litre),
14306            "LUB" => Some(Unit::MetricTonLubricatingOil),
14307            "LUM" => Some(Unit::Lumen),
14308            "LUX" => Some(Unit::Lux),
14309            "LY" => Some(Unit::LinearYard),
14310            "M1" => Some(Unit::MilligramPerLitre),
14311            "M10" => Some(Unit::ReciprocalCubicYard),
14312            "M11" => Some(Unit::CubicYardPerDegreeFahrenheit),
14313            "M12" => Some(Unit::CubicYardPerDay),
14314            "M13" => Some(Unit::CubicYardPerHour),
14315            "M14" => Some(Unit::CubicYardPerPsi),
14316            "M15" => Some(Unit::CubicYardPerMinute),
14317            "M16" => Some(Unit::CubicYardPerSecond),
14318            "M17" => Some(Unit::KilohertzMetre),
14319            "M18" => Some(Unit::GigahertzMetre),
14320            "M19" => Some(Unit::Beaufort),
14321            "M20" => Some(Unit::ReciprocalMegakelvinOrMegakelvinToPowerMinusOne),
14322            "M21" => Some(Unit::ReciprocalKilovoltAmpereReciprocalHour),
14323            "M22" => Some(Unit::MillilitrePerSquareCentimetreMinute),
14324            "M23" => Some(Unit::NewtonPerCentimetre),
14325            "M24" => Some(Unit::OhmKilometre),
14326            "M25" => Some(Unit::PercentPerDegreeCelsius),
14327            "M26" => Some(Unit::GigaohmPerMetre),
14328            "M27" => Some(Unit::MegahertzMetre),
14329            "M29" => Some(Unit::KilogramPerKilogram),
14330            "M30" => Some(Unit::ReciprocalVoltAmpereReciprocalSecond),
14331            "M31" => Some(Unit::KilogramPerKilometre),
14332            "M32" => Some(Unit::PascalSecondPerLitre),
14333            "M33" => Some(Unit::MillimolePerLitre),
14334            "M34" => Some(Unit::NewtonMetrePerSquareMetre),
14335            "M35" => Some(Unit::MillivoltAmpere),
14336            "M36" => Some(Unit::_30DayMonth),
14337            "M37" => Some(Unit::Actual360),
14338            "M38" => Some(Unit::KilometrePerSecondSquared),
14339            "M39" => Some(Unit::CentimetrePerSecondSquared),
14340            "M4" => Some(Unit::MonetaryValue),
14341            "M40" => Some(Unit::YardPerSecondSquared),
14342            "M41" => Some(Unit::MillimetrePerSecondSquared),
14343            "M42" => Some(Unit::MileStatuteMilePerSecondSquared),
14344            "M43" => Some(Unit::Mil),
14345            "M44" => Some(Unit::Revolution),
14346            "M45" => Some(Unit::DegreeUnitAnglePerSecondSquared),
14347            "M46" => Some(Unit::RevolutionPerMinute),
14348            "M47" => Some(Unit::CircularMil),
14349            "M48" => Some(Unit::SquareMileBasedOnUSSurveyFoot),
14350            "M49" => Some(Unit::ChainBasedOnUSSurveyFoot),
14351            "M5" => Some(Unit::Microcurie),
14352            "M50" => Some(Unit::Furlong),
14353            "M51" => Some(Unit::FootUSSurvey),
14354            "M52" => Some(Unit::MileBasedOnUSSurveyFoot),
14355            "M53" => Some(Unit::MetrePerPascal),
14356            "M55" => Some(Unit::MetrePerRadiant),
14357            "M56" => Some(Unit::Shake),
14358            "M57" => Some(Unit::MilePerMinute),
14359            "M58" => Some(Unit::MilePerSecond),
14360            "M59" => Some(Unit::MetrePerSecondPascal),
14361            "M60" => Some(Unit::MetrePerHour),
14362            "M61" => Some(Unit::InchPerYear),
14363            "M62" => Some(Unit::KilometrePerSecond),
14364            "M63" => Some(Unit::InchPerMinute),
14365            "M64" => Some(Unit::YardPerSecond),
14366            "M65" => Some(Unit::YardPerMinute),
14367            "M66" => Some(Unit::YardPerHour),
14368            "M67" => Some(Unit::AcreFootBasedOnUSSurveyFoot),
14369            "M68" => Some(Unit::Cord128Ft3),
14370            "M69" => Some(Unit::CubicMileUkStatute),
14371            "M7" => Some(Unit::MicroInch),
14372            "M70" => Some(Unit::TonRegister),
14373            "M71" => Some(Unit::CubicMetrePerPascal),
14374            "M72" => Some(Unit::Bel),
14375            "M73" => Some(Unit::KilogramPerCubicMetrePascal),
14376            "M74" => Some(Unit::KilogramPerPascal),
14377            "M75" => Some(Unit::KilopoundForce),
14378            "M76" => Some(Unit::Poundal),
14379            "M77" => Some(Unit::KilogramMetrePerSecondSquared),
14380            "M78" => Some(Unit::Pond),
14381            "M79" => Some(Unit::SquareFootPerHour),
14382            "M80" => Some(Unit::StokesPerPascal),
14383            "M81" => Some(Unit::SquareCentimetrePerSecond),
14384            "M82" => Some(Unit::SquareMetrePerSecondPascal),
14385            "M83" => Some(Unit::Denier_Dup),
14386            "M84" => Some(Unit::PoundPerYard),
14387            "M85" => Some(Unit::TonAssay),
14388            "M86" => Some(Unit::Pfund),
14389            "M87" => Some(Unit::KilogramPerSecondPascal),
14390            "M88" => Some(Unit::TonnePerMonth),
14391            "M89" => Some(Unit::TonnePerYear),
14392            "M9" => Some(Unit::MillionBtuPer1000CubicFoot),
14393            "M90" => Some(Unit::KilopoundPerHour),
14394            "M91" => Some(Unit::PoundPerPound),
14395            "M92" => Some(Unit::PoundForceFoot),
14396            "M93" => Some(Unit::NewtonMetrePerRadian),
14397            "M94" => Some(Unit::KilogramMetre),
14398            "M95" => Some(Unit::PoundalFoot),
14399            "M96" => Some(Unit::PoundalInch),
14400            "M97" => Some(Unit::DyneMetre),
14401            "M98" => Some(Unit::KilogramCentimetrePerSecond),
14402            "M99" => Some(Unit::GramCentimetrePerSecond),
14403            "MAH" => Some(Unit::MegavoltAmpereReactiveHour),
14404            "MAL" => Some(Unit::Megalitre),
14405            "MAM" => Some(Unit::Megametre),
14406            "MAR" => Some(Unit::Megavar),
14407            "MAW" => Some(Unit::Megawatt),
14408            "MBE" => Some(Unit::ThousandStandardBrickEquivalent),
14409            "MBF" => Some(Unit::ThousandBoardFoot),
14410            "MBR" => Some(Unit::Millibar),
14411            "MC" => Some(Unit::Microgram),
14412            "MCU" => Some(Unit::Millicurie),
14413            "MD" => Some(Unit::AirDryMetricTon),
14414            "MGM" => Some(Unit::Milligram),
14415            "MHZ" => Some(Unit::Megahertz),
14416            "MIK" => Some(Unit::SquareMileStatuteMile),
14417            "MIL" => Some(Unit::Thousand),
14418            "MIN" => Some(Unit::MinuteUnitTime),
14419            "MIO" => Some(Unit::Million),
14420            "MIU" => Some(Unit::MillionInternationalUnit),
14421            "MKD" => Some(Unit::SquareMetreDay),
14422            "MKM" => Some(Unit::SquareMetreMonth),
14423            "MKW" => Some(Unit::SquareMetreWeek),
14424            "MLD" => Some(Unit::Milliard),
14425            "MLT" => Some(Unit::Millilitre),
14426            "MMK" => Some(Unit::SquareMillimetre),
14427            "MMQ" => Some(Unit::CubicMillimetre),
14428            "MMT" => Some(Unit::Millimetre),
14429            "MND" => Some(Unit::KilogramDryWeight),
14430            "MNJ" => Some(Unit::MegaJoulePerNormalisedCubicMetre),
14431            "MON" => Some(Unit::Month),
14432            "MPA" => Some(Unit::Megapascal),
14433            "MQD" => Some(Unit::CubicMetreDay),
14434            "MQH" => Some(Unit::CubicMetrePerHour),
14435            "MQM" => Some(Unit::CubicMetreMonth),
14436            "MQS" => Some(Unit::CubicMetrePerSecond),
14437            "MQW" => Some(Unit::CubicMetreWeek),
14438            "MRD" => Some(Unit::MetreDay),
14439            "MRM" => Some(Unit::MetreMonth),
14440            "MRW" => Some(Unit::MetreWeek),
14441            "MSK" => Some(Unit::MetrePerSecondSquared),
14442            "MTK" => Some(Unit::SquareMetre),
14443            "MTQ" => Some(Unit::CubicMetre),
14444            "MTR" => Some(Unit::Metre),
14445            "MTS" => Some(Unit::MetrePerSecond),
14446            "MTZ" => Some(Unit::Milihertz),
14447            "MVA" => Some(Unit::MegavoltAmpere),
14448            "MWH" => Some(Unit::MegawattHour1000KwH),
14449            "N1" => Some(Unit::PenCalorie),
14450            "N10" => Some(Unit::PoundFootPerSecond),
14451            "N11" => Some(Unit::PoundInchPerSecond),
14452            "N12" => Some(Unit::Pferdestaerke),
14453            "N13" => Some(Unit::CentimetreMercury0Oc),
14454            "N14" => Some(Unit::CentimetreWater4Oc),
14455            "N15" => Some(Unit::FootWater392Of),
14456            "N16" => Some(Unit::InchMercury32Of),
14457            "N17" => Some(Unit::InchMercury60Of),
14458            "N18" => Some(Unit::InchWater392Of),
14459            "N19" => Some(Unit::InchWater60Of),
14460            "N20" => Some(Unit::KipPerSquareInch),
14461            "N21" => Some(Unit::PoundalPerSquareFoot),
14462            "N22" => Some(Unit::OunceAvoirdupoisPerSquareInch),
14463            "N23" => Some(Unit::ConventionalMetreWater),
14464            "N24" => Some(Unit::GramPerSquareMillimetre),
14465            "N25" => Some(Unit::PoundPerSquareYard),
14466            "N26" => Some(Unit::PoundalPerSquareInch),
14467            "N27" => Some(Unit::FootToFourthPower),
14468            "N28" => Some(Unit::CubicDecimetrePerKilogram),
14469            "N29" => Some(Unit::CubicFootPerPound),
14470            "N3" => Some(Unit::PrintPoint),
14471            "N30" => Some(Unit::CubicInchPerPound),
14472            "N31" => Some(Unit::KilonewtonPerMetre),
14473            "N32" => Some(Unit::PoundalPerInch),
14474            "N33" => Some(Unit::PoundForcePerYard),
14475            "N34" => Some(Unit::PoundalSecondPerSquareFoot),
14476            "N35" => Some(Unit::PoisePerPascal),
14477            "N36" => Some(Unit::NewtonSecondPerSquareMetre),
14478            "N37" => Some(Unit::KilogramPerMetreSecond),
14479            "N38" => Some(Unit::KilogramPerMetreMinute),
14480            "N39" => Some(Unit::KilogramPerMetreDay),
14481            "N40" => Some(Unit::KilogramPerMetreHour),
14482            "N41" => Some(Unit::GramPerCentimetreSecond),
14483            "N42" => Some(Unit::PoundalSecondPerSquareInch),
14484            "N43" => Some(Unit::PoundPerFootMinute),
14485            "N44" => Some(Unit::PoundPerFootDay),
14486            "N45" => Some(Unit::CubicMetrePerSecondPascal),
14487            "N46" => Some(Unit::FootPoundal),
14488            "N47" => Some(Unit::InchPoundal),
14489            "N48" => Some(Unit::WattPerSquareCentimetre),
14490            "N49" => Some(Unit::WattPerSquareInch),
14491            "N50" => Some(Unit::BritishThermalUnitInternationalTablePerSquareFootHour),
14492            "N51" => Some(Unit::BritishThermalUnitThermochemicalPerSquareFootHour),
14493            "N52" => Some(Unit::BritishThermalUnitThermochemicalPerSquareFootMinute),
14494            "N53" => Some(Unit::BritishThermalUnitInternationalTablePerSquareFootSecond),
14495            "N54" => Some(Unit::BritishThermalUnitThermochemicalPerSquareFootSecond),
14496            "N55" => Some(Unit::BritishThermalUnitInternationalTablePerSquareInchSecond),
14497            "N56" => Some(Unit::CalorieThermochemicalPerSquareCentimetreMinute),
14498            "N57" => Some(Unit::CalorieThermochemicalPerSquareCentimetreSecond),
14499            "N58" => Some(Unit::BritishThermalUnitInternationalTablePerCubicFoot),
14500            "N59" => Some(Unit::BritishThermalUnitThermochemicalPerCubicFoot),
14501            "N60" => Some(Unit::BritishThermalUnitInternationalTablePerDegreeFahrenheit),
14502            "N61" => Some(Unit::BritishThermalUnitThermochemicalPerDegreeFahrenheit),
14503            "N62" => Some(Unit::BritishThermalUnitInternationalTablePerDegreeRankine),
14504            "N63" => Some(Unit::BritishThermalUnitThermochemicalPerDegreeRankine),
14505            "N64" => Some(Unit::BritishThermalUnitThermochemicalPerPoundDegreeRankine),
14506            "N65" => Some(Unit::KilocalorieInternationalTablePerGramKelvin),
14507            "N66" => Some(Unit::BritishThermalUnit39Of),
14508            "N67" => Some(Unit::BritishThermalUnit59Of),
14509            "N68" => Some(Unit::BritishThermalUnit60Of),
14510            "N69" => Some(Unit::Calorie20Oc),
14511            "N70" => Some(Unit::Quad1015Btuit),
14512            "N71" => Some(Unit::ThermEc),
14513            "N72" => Some(Unit::ThermUS),
14514            "N73" => Some(Unit::BritishThermalUnitThermochemicalPerPound),
14515            "N74" => {
14516                Some(Unit::BritishThermalUnitInternationalTablePerHourSquareFootDegreeFahrenheit)
14517            }
14518            "N75" => Some(Unit::BritishThermalUnitThermochemicalPerHourSquareFootDegreeFahrenheit),
14519            "N76" => {
14520                Some(Unit::BritishThermalUnitInternationalTablePerSecondSquareFootDegreeFahrenheit)
14521            }
14522            "N77" => {
14523                Some(Unit::BritishThermalUnitThermochemicalPerSecondSquareFootDegreeFahrenheit)
14524            }
14525            "N78" => Some(Unit::KilowattPerSquareMetreKelvin),
14526            "N79" => Some(Unit::KelvinPerPascal),
14527            "N80" => Some(Unit::WattPerMetreDegreeCelsius),
14528            "N81" => Some(Unit::KilowattPerMetreKelvin),
14529            "N82" => Some(Unit::KilowattPerMetreDegreeCelsius),
14530            "N83" => Some(Unit::MetrePerDegreeCelciusMetre),
14531            "N84" => Some(Unit::DegreeFahrenheitHourPerBritishThermalUnitInternationalTable),
14532            "N85" => Some(Unit::DegreeFahrenheitHourPerBritishThermalUnitThermochemical),
14533            "N86" => Some(Unit::DegreeFahrenheitSecondPerBritishThermalUnitInternationalTable),
14534            "N87" => Some(Unit::DegreeFahrenheitSecondPerBritishThermalUnitThermochemical),
14535            "N88" => Some(
14536                Unit::DegreeFahrenheitHourSquareFootPerBritishThermalUnitInternationalTableInch,
14537            ),
14538            "N89" => {
14539                Some(Unit::DegreeFahrenheitHourSquareFootPerBritishThermalUnitThermochemicalInch)
14540            }
14541            "N90" => Some(Unit::Kilofarad),
14542            "N91" => Some(Unit::ReciprocalJoule),
14543            "N92" => Some(Unit::Picosiemens),
14544            "N93" => Some(Unit::AmperePerPascal),
14545            "N94" => Some(Unit::Franklin),
14546            "N95" => Some(Unit::AmpereMinute),
14547            "N96" => Some(Unit::Biot),
14548            "N97" => Some(Unit::Gilbert),
14549            "N98" => Some(Unit::VoltPerPascal),
14550            "N99" => Some(Unit::Picovolt),
14551            "NA" => Some(Unit::MilligramPerKilogram),
14552            "NAR" => Some(Unit::NumberArticles),
14553            "NCL" => Some(Unit::NumberCells),
14554            "NEW" => Some(Unit::Newton),
14555            "NF" => Some(Unit::Message),
14556            "NIL" => Some(Unit::Nil),
14557            "NIU" => Some(Unit::NumberInternationalUnits),
14558            "NL" => Some(Unit::Load),
14559            "NM3" => Some(Unit::NormalisedCubicMetre),
14560            "NMI" => Some(Unit::NauticalMile),
14561            "NMP" => Some(Unit::NumberPacks),
14562            "NPT" => Some(Unit::NumberParts),
14563            "NT" => Some(Unit::NetTon),
14564            "NTU" => Some(Unit::NephelometricTurbidityUnit),
14565            "NU" => Some(Unit::NewtonMetre),
14566            "NX" => Some(Unit::PartPerThousand),
14567            "OA" => Some(Unit::Panel),
14568            "ODE" => Some(Unit::OzoneDepletionEquivalent),
14569            "ODG" => Some(Unit::OdsGrams),
14570            "ODK" => Some(Unit::OdsKilograms),
14571            "ODM" => Some(Unit::OdsMilligrams),
14572            "OHM" => Some(Unit::Ohm),
14573            "ON" => Some(Unit::OuncePerSquareYard),
14574            "ONZ" => Some(Unit::OunceAvoirdupois),
14575            "OPM" => Some(Unit::OscillationsPerMinute),
14576            "OT" => Some(Unit::OvertimeHour),
14577            "OZA" => Some(Unit::FluidOunceUs),
14578            "OZI" => Some(Unit::FluidOunceUk),
14579            "P1" => Some(Unit::Percent),
14580            "P10" => Some(Unit::CoulombPerMetre),
14581            "P11" => Some(Unit::Kiloweber),
14582            "P12" => Some(Unit::Gamma),
14583            "P13" => Some(Unit::Kilotesla),
14584            "P14" => Some(Unit::JoulePerSecond),
14585            "P15" => Some(Unit::JoulePerMinute),
14586            "P16" => Some(Unit::JoulePerHour),
14587            "P17" => Some(Unit::JoulePerDay),
14588            "P18" => Some(Unit::KilojoulePerSecond),
14589            "P19" => Some(Unit::KilojoulePerMinute),
14590            "P2" => Some(Unit::PoundPerFoot),
14591            "P20" => Some(Unit::KilojoulePerHour),
14592            "P21" => Some(Unit::KilojoulePerDay),
14593            "P22" => Some(Unit::Nanoohm),
14594            "P23" => Some(Unit::OhmCircularMilPerFoot),
14595            "P24" => Some(Unit::Kilohenry),
14596            "P25" => Some(Unit::LumenPerSquareFoot),
14597            "P26" => Some(Unit::Phot),
14598            "P27" => Some(Unit::Footcandle),
14599            "P28" => Some(Unit::CandelaPerSquareInch),
14600            "P29" => Some(Unit::Footlambert),
14601            "P30" => Some(Unit::Lambert),
14602            "P31" => Some(Unit::Stilb),
14603            "P32" => Some(Unit::CandelaPerSquareFoot),
14604            "P33" => Some(Unit::Kilocandela),
14605            "P34" => Some(Unit::Millicandela),
14606            "P35" => Some(Unit::HefnerKerze),
14607            "P36" => Some(Unit::InternationalCandle),
14608            "P37" => Some(Unit::BritishThermalUnitInternationalTablePerSquareFoot),
14609            "P38" => Some(Unit::BritishThermalUnitThermochemicalPerSquareFoot),
14610            "P39" => Some(Unit::CalorieThermochemicalPerSquareCentimetre),
14611            "P40" => Some(Unit::Langley),
14612            "P41" => Some(Unit::DecadeLogarithmic),
14613            "P42" => Some(Unit::PascalSquaredSecond),
14614            "P43" => Some(Unit::BelPerMetre),
14615            "P44" => Some(Unit::PoundMole),
14616            "P45" => Some(Unit::PoundMolePerSecond),
14617            "P46" => Some(Unit::PoundMolePerMinute),
14618            "P47" => Some(Unit::KilomolePerKilogram),
14619            "P48" => Some(Unit::PoundMolePerPound),
14620            "P49" => Some(Unit::NewtonSquareMetrePerAmpere),
14621            "P5" => Some(Unit::FivePack),
14622            "P50" => Some(Unit::WeberMetre),
14623            "P51" => Some(Unit::MolPerKilogramPascal),
14624            "P52" => Some(Unit::MolPerCubicMetrePascal),
14625            "P53" => Some(Unit::UnitPole),
14626            "P54" => Some(Unit::MilligrayPerSecond),
14627            "P55" => Some(Unit::MicrograyPerSecond),
14628            "P56" => Some(Unit::NanograyPerSecond),
14629            "P57" => Some(Unit::GrayPerMinute),
14630            "P58" => Some(Unit::MilligrayPerMinute),
14631            "P59" => Some(Unit::MicrograyPerMinute),
14632            "P60" => Some(Unit::NanograyPerMinute),
14633            "P61" => Some(Unit::GrayPerHour),
14634            "P62" => Some(Unit::MilligrayPerHour),
14635            "P63" => Some(Unit::MicrograyPerHour),
14636            "P64" => Some(Unit::NanograyPerHour),
14637            "P65" => Some(Unit::SievertPerSecond),
14638            "P66" => Some(Unit::MillisievertPerSecond),
14639            "P67" => Some(Unit::MicrosievertPerSecond),
14640            "P68" => Some(Unit::NanosievertPerSecond),
14641            "P69" => Some(Unit::RemPerSecond),
14642            "P70" => Some(Unit::SievertPerHour),
14643            "P71" => Some(Unit::MillisievertPerHour),
14644            "P72" => Some(Unit::MicrosievertPerHour),
14645            "P73" => Some(Unit::NanosievertPerHour),
14646            "P74" => Some(Unit::SievertPerMinute),
14647            "P75" => Some(Unit::MillisievertPerMinute),
14648            "P76" => Some(Unit::MicrosievertPerMinute),
14649            "P77" => Some(Unit::NanosievertPerMinute),
14650            "P78" => Some(Unit::ReciprocalSquareInch),
14651            "P79" => Some(Unit::PascalSquareMetrePerKilogram),
14652            "P80" => Some(Unit::MillipascalPerMetre),
14653            "P81" => Some(Unit::KilopascalPerMetre),
14654            "P82" => Some(Unit::HectopascalPerMetre),
14655            "P83" => Some(Unit::StandardAtmospherePerMetre),
14656            "P84" => Some(Unit::TechnicalAtmospherePerMetre),
14657            "P85" => Some(Unit::TorrPerMetre),
14658            "P86" => Some(Unit::PsiPerInch),
14659            "P87" => Some(Unit::CubicMetrePerSecondSquareMetre),
14660            "P88" => Some(Unit::Rhe),
14661            "P89" => Some(Unit::PoundForceFootPerInch),
14662            "P90" => Some(Unit::PoundForceInchPerInch),
14663            "P91" => Some(Unit::Perm0Oc),
14664            "P92" => Some(Unit::Perm23Oc),
14665            "P93" => Some(Unit::BytePerSecond),
14666            "P94" => Some(Unit::KilobytePerSecond),
14667            "P95" => Some(Unit::MegabytePerSecond),
14668            "P96" => Some(Unit::ReciprocalVolt),
14669            "P97" => Some(Unit::ReciprocalRadian),
14670            "P98" => Some(Unit::PascalToPowerSumStoichiometricNumbers),
14671            "P99" => Some(Unit::MolePerCubivMetreToPowerSumStoichiometricNumbers),
14672            "PAL" => Some(Unit::Pascal),
14673            "PD" => Some(Unit::Pad),
14674            "PFL" => Some(Unit::ProofLitre),
14675            "PGL" => Some(Unit::ProofGallon),
14676            "PI" => Some(Unit::Pitch),
14677            "PLA" => Some(Unit::DegreePlato),
14678            "PO" => Some(Unit::PoundPerInchLength),
14679            "PQ" => Some(Unit::PagePerInch),
14680            "PR" => Some(Unit::Pair),
14681            "PS" => Some(Unit::PoundForcePerSquareInch),
14682            "PTD" => Some(Unit::DryPintUs),
14683            "PTI" => Some(Unit::PintUk),
14684            "PTL" => Some(Unit::LiquidPintUs),
14685            "PTN" => Some(Unit::Portion),
14686            "Q10" => Some(Unit::JoulePerTesla),
14687            "Q11" => Some(Unit::Erlang),
14688            "Q12" => Some(Unit::Octet),
14689            "Q13" => Some(Unit::OctetPerSecond),
14690            "Q14" => Some(Unit::Shannon),
14691            "Q15" => Some(Unit::Hartley),
14692            "Q16" => Some(Unit::NaturalUnitInformation),
14693            "Q17" => Some(Unit::ShannonPerSecond),
14694            "Q18" => Some(Unit::HartleyPerSecond),
14695            "Q19" => Some(Unit::NaturalUnitInformationPerSecond),
14696            "Q20" => Some(Unit::SecondPerKilogramm),
14697            "Q21" => Some(Unit::WattSquareMetre),
14698            "Q22" => Some(Unit::SecondPerRadianCubicMetre),
14699            "Q23" => Some(Unit::WeberToPowerMinusOne),
14700            "Q24" => Some(Unit::ReciprocalInch),
14701            "Q25" => Some(Unit::Dioptre),
14702            "Q26" => Some(Unit::OnePerOne),
14703            "Q27" => Some(Unit::NewtonMetrePerMetre),
14704            "Q28" => Some(Unit::KilogramPerSquareMetrePascalSecond),
14705            "Q29" => Some(Unit::MicrogramPerHectogram),
14706            "Q3" => Some(Unit::Meal),
14707            "Q30" => Some(Unit::PhPotentialHydrogen),
14708            "Q31" => Some(Unit::KilojoulePerGram),
14709            "Q32" => Some(Unit::Femtolitre),
14710            "Q33" => Some(Unit::Picolitre),
14711            "Q34" => Some(Unit::Nanolitre),
14712            "Q35" => Some(Unit::MegawattsPerMinute),
14713            "Q36" => Some(Unit::SquareMetrePerCubicMetre),
14714            "Q37" => Some(Unit::StandardCubicMetrePerDay),
14715            "Q38" => Some(Unit::StandardCubicMetrePerHour),
14716            "Q39" => Some(Unit::NormalizedCubicMetrePerDay),
14717            "Q40" => Some(Unit::NormalizedCubicMetrePerHour),
14718            "Q41" => Some(Unit::JoulePerNormalisedCubicMetre),
14719            "Q42" => Some(Unit::JoulePerStandardCubicMetre),
14720            "QA" => Some(Unit::PageFacsimile),
14721            "QAN" => Some(Unit::QuarterAYear),
14722            "QB" => Some(Unit::PageHardcopy),
14723            "QR" => Some(Unit::Quire),
14724            "QTD" => Some(Unit::DryQuartUs),
14725            "QTI" => Some(Unit::QuartUk),
14726            "QTL" => Some(Unit::LiquidQuartUs),
14727            "QTR" => Some(Unit::QuarterUk),
14728            "R1" => Some(Unit::Pica),
14729            "R9" => Some(Unit::ThousandCubicMetre),
14730            "RH" => Some(Unit::RunningOrOperatingHour),
14731            "RM" => Some(Unit::Ream),
14732            "ROM" => Some(Unit::Room),
14733            "RP" => Some(Unit::PoundPerReam),
14734            "RPM" => Some(Unit::RevolutionsPerMinute),
14735            "RPS" => Some(Unit::RevolutionsPerSecond),
14736            "RT" => Some(Unit::RevenueTonMile),
14737            "S3" => Some(Unit::SquareFootPerSecond),
14738            "S4" => Some(Unit::SquareMetrePerSecond),
14739            "SAN" => Some(Unit::HalfYear6Months),
14740            "SCO" => Some(Unit::Score),
14741            "SCR" => Some(Unit::Scruple),
14742            "SEC" => Some(Unit::SecondUnitTime),
14743            "SET" => Some(Unit::Set),
14744            "SG" => Some(Unit::Segment),
14745            "SIE" => Some(Unit::Siemens),
14746            "SM3" => Some(Unit::StandardCubicMetre),
14747            "SMI" => Some(Unit::MileStatuteMile),
14748            "SQ" => Some(Unit::Square),
14749            "SQR" => Some(Unit::SquareRoofing),
14750            "SR" => Some(Unit::Strip),
14751            "STC" => Some(Unit::Stick),
14752            "STI" => Some(Unit::StoneUk),
14753            "STK" => Some(Unit::StickCigarette),
14754            "STL" => Some(Unit::StandardLitre),
14755            "STN" => Some(Unit::TonUsOrShortTonUkUs),
14756            "STW" => Some(Unit::Straw),
14757            "SW" => Some(Unit::Skein),
14758            "SX" => Some(Unit::Shipment),
14759            "SYR" => Some(Unit::Syringe),
14760            "T0" => Some(Unit::TelecommunicationLineInService),
14761            "T3" => Some(Unit::ThousandPiece),
14762            "TAH" => Some(Unit::KiloampereHourThousandAmpereHour),
14763            "TAN" => Some(Unit::TotalAcidNumber),
14764            "TI" => Some(Unit::ThousandSquareInch),
14765            "TIC" => Some(Unit::MetricTonIncludingContainer),
14766            "TIP" => Some(Unit::MetricTonIncludingInnerPackaging),
14767            "TKM" => Some(Unit::TonneKilometre),
14768            "TMS" => Some(Unit::KilogramImportedMeatLessOffal),
14769            "TNE" => Some(Unit::TonneMetricTon),
14770            "TP" => Some(Unit::TenPack),
14771            "TPI" => Some(Unit::TeethPerInch),
14772            "TPR" => Some(Unit::TenPair),
14773            "TQD" => Some(Unit::ThousandCubicMetrePerDay),
14774            "TRL" => Some(Unit::TrillionEur),
14775            "TST" => Some(Unit::TenSet),
14776            "TTS" => Some(Unit::TenThousandSticks),
14777            "U1" => Some(Unit::Treatment),
14778            "U2" => Some(Unit::Tablet),
14779            "UB" => Some(Unit::TelecommunicationLineInServiceAverage),
14780            "UC" => Some(Unit::TelecommunicationPort),
14781            "VA" => Some(Unit::VoltAmperePerKilogram),
14782            "VLT" => Some(Unit::Volt),
14783            "VP" => Some(Unit::PercentVolume),
14784            "W2" => Some(Unit::WetKilo),
14785            "WA" => Some(Unit::WattPerKilogram),
14786            "WB" => Some(Unit::WetPound),
14787            "WCD" => Some(Unit::Cord),
14788            "WE" => Some(Unit::WetTon),
14789            "WEB" => Some(Unit::Weber),
14790            "WEE" => Some(Unit::Week),
14791            "WG" => Some(Unit::WineGallon),
14792            "WHR" => Some(Unit::WattHour),
14793            "WM" => Some(Unit::WorkingMonth),
14794            "WSD" => Some(Unit::Standard),
14795            "WTT" => Some(Unit::Watt),
14796            "X1" => Some(Unit::GuntersChain),
14797            "YDK" => Some(Unit::SquareYard),
14798            "YDQ" => Some(Unit::CubicYard),
14799            "YRD" => Some(Unit::Yard),
14800            "Z11" => Some(Unit::HangingContainer),
14801            "Z9" => Some(Unit::Nanomole),
14802            "ZP" => Some(Unit::Page),
14803            "ZZ" => Some(Unit::MutuallyDefined),
14804            "X1A" => Some(Unit::DrumSteel),
14805            "X1B" => Some(Unit::DrumAluminium),
14806            "X1D" => Some(Unit::DrumPlywood),
14807            "X1F" => Some(Unit::ContainerFlexible),
14808            "X1G" => Some(Unit::DrumFibre),
14809            "X1W" => Some(Unit::DrumWooden),
14810            "X2C" => Some(Unit::BarrelWooden),
14811            "X3A" => Some(Unit::JerricanSteel),
14812            "X3H" => Some(Unit::JerricanPlastic),
14813            "X43" => Some(Unit::BagSuperBulk),
14814            "X44" => Some(Unit::BagPolybag),
14815            "X4A" => Some(Unit::BoxSteel),
14816            "X4B" => Some(Unit::BoxAluminium),
14817            "X4C" => Some(Unit::BoxNaturalWood),
14818            "X4D" => Some(Unit::BoxPlywood),
14819            "X4F" => Some(Unit::BoxReconstitutedWood),
14820            "X4G" => Some(Unit::BoxFibreboard),
14821            "X4H" => Some(Unit::BoxPlastic),
14822            "X5H" => Some(Unit::BagWovenPlastic),
14823            "X5L" => Some(Unit::BagTextile),
14824            "X5M" => Some(Unit::BagPaper),
14825            "X6H" => Some(Unit::CompositePackagingPlasticReceptacle),
14826            "X6P" => Some(Unit::CompositePackagingGlassReceptacle),
14827            "X7A" => Some(Unit::CaseCar),
14828            "X7B" => Some(Unit::CaseWooden),
14829            "X8A" => Some(Unit::PalletWooden),
14830            "X8B" => Some(Unit::CrateWooden),
14831            "X8C" => Some(Unit::BundleWooden),
14832            "XAA" => Some(Unit::IntermediateBulkContainerRigidPlastic),
14833            "XAB" => Some(Unit::ReceptacleFibre),
14834            "XAC" => Some(Unit::ReceptaclePaper),
14835            "XAD" => Some(Unit::ReceptacleWooden),
14836            "XAE" => Some(Unit::Aerosol),
14837            "XAF" => Some(Unit::PalletModularCollars80cms60cms),
14838            "XAG" => Some(Unit::PalletShrinkwrapped),
14839            "XAH" => Some(Unit::Pallet100cms110cms),
14840            "XAI" => Some(Unit::Clamshell),
14841            "XAJ" => Some(Unit::Cone),
14842            "XAL" => Some(Unit::Ball_Dup),
14843            "XAM" => Some(Unit::AmpouleNonProtected),
14844            "XAP" => Some(Unit::AmpouleProtected),
14845            "XAT" => Some(Unit::Atomizer),
14846            "XAV" => Some(Unit::Capsule),
14847            "XB4" => Some(Unit::Belt),
14848            "XBA" => Some(Unit::Barrel),
14849            "XBB" => Some(Unit::Bobbin),
14850            "XBC" => Some(Unit::BottlecrateBottlerack),
14851            "XBD" => Some(Unit::Board),
14852            "XBE" => Some(Unit::Bundle),
14853            "XBF" => Some(Unit::BalloonNonProtected),
14854            "XBG" => Some(Unit::Bag),
14855            "XBH" => Some(Unit::Bunch),
14856            "XBI" => Some(Unit::Bin),
14857            "XBJ" => Some(Unit::Bucket),
14858            "XBK" => Some(Unit::Basket),
14859            "XBL" => Some(Unit::BaleCompressed),
14860            "XBM" => Some(Unit::Basin),
14861            "XBN" => Some(Unit::BaleNonCompressed),
14862            "XBO" => Some(Unit::BottleNonProtectedCylindrical),
14863            "XBP" => Some(Unit::BalloonProtected),
14864            "XBQ" => Some(Unit::BottleProtectedCylindrical),
14865            "XBR" => Some(Unit::Bar),
14866            "XBS" => Some(Unit::BottleNonProtectedBulbous),
14867            "XBT" => Some(Unit::Bolt),
14868            "XBU" => Some(Unit::Butt),
14869            "XBV" => Some(Unit::BottleProtectedBulbous),
14870            "XBW" => Some(Unit::BoxForLiquids),
14871            "XBX" => Some(Unit::Box),
14872            "XBY" => Some(Unit::BoardInBundleBunchTruss),
14873            "XBZ" => Some(Unit::BarsInBundleBunchTruss),
14874            "XCA" => Some(Unit::CanRectangular),
14875            "XCB" => Some(Unit::CrateBeer),
14876            "XCC" => Some(Unit::Churn),
14877            "XCD" => Some(Unit::CanWithHandleAndSpout),
14878            "XCE" => Some(Unit::Creel),
14879            "XCF" => Some(Unit::Coffer),
14880            "XCG" => Some(Unit::Cage),
14881            "XCH" => Some(Unit::Chest),
14882            "XCI" => Some(Unit::Canister),
14883            "XCJ" => Some(Unit::Coffin),
14884            "XCK" => Some(Unit::Cask),
14885            "XCL" => Some(Unit::Coil),
14886            "XCM" => Some(Unit::Card_Dup),
14887            "XCN" => Some(Unit::ContainerNotOtherwiseSpecifiedAsTransportEquipment),
14888            "XCO" => Some(Unit::CarboyNonProtected),
14889            "XCP" => Some(Unit::CarboyProtected),
14890            "XCQ" => Some(Unit::Cartridge),
14891            "XCR" => Some(Unit::Crate),
14892            "XCS" => Some(Unit::Case),
14893            "XCT" => Some(Unit::Carton),
14894            "XCU" => Some(Unit::Cup),
14895            "XCV" => Some(Unit::Cover),
14896            "XCW" => Some(Unit::CageRoll),
14897            "XCX" => Some(Unit::CanCylindrical),
14898            "XCY" => Some(Unit::Cylinder),
14899            "XCZ" => Some(Unit::Canvas),
14900            "XDA" => Some(Unit::CrateMultipleLayerPlastic),
14901            "XDB" => Some(Unit::CrateMultipleLayerWooden),
14902            "XDC" => Some(Unit::CrateMultipleLayerCardboard),
14903            "XDG" => Some(Unit::CageCommonwealthHandlingEquipmentPoolChep),
14904            "XDH" => Some(Unit::BoxCommonwealthHandlingEquipmentPoolChepEurobox),
14905            "XDI" => Some(Unit::DrumIron),
14906            "XDJ" => Some(Unit::DemijohnNonProtected),
14907            "XDK" => Some(Unit::CrateBulkCardboard),
14908            "XDL" => Some(Unit::CrateBulkPlastic),
14909            "XDM" => Some(Unit::CrateBulkWooden),
14910            "XDN" => Some(Unit::Dispenser),
14911            "XDP" => Some(Unit::DemijohnProtected),
14912            "XDR" => Some(Unit::Drum),
14913            "XDS" => Some(Unit::TrayOneLayerNoCoverPlastic),
14914            "XDT" => Some(Unit::TrayOneLayerNoCoverWooden),
14915            "XDU" => Some(Unit::TrayOneLayerNoCoverPolystyrene),
14916            "XDV" => Some(Unit::TrayOneLayerNoCoverCardboard),
14917            "XDW" => Some(Unit::TrayTwoLayersNoCoverPlasticTray),
14918            "XDX" => Some(Unit::TrayTwoLayersNoCoverWooden),
14919            "XDY" => Some(Unit::TrayTwoLayersNoCoverCardboard),
14920            "XEC" => Some(Unit::BagPlastic),
14921            "XED" => Some(Unit::CaseWithPalletBase),
14922            "XEE" => Some(Unit::CaseWithPalletBaseWooden),
14923            "XEF" => Some(Unit::CaseWithPalletBaseCardboard),
14924            "XEG" => Some(Unit::CaseWithPalletBasePlastic),
14925            "XEH" => Some(Unit::CaseWithPalletBaseMetal),
14926            "XEI" => Some(Unit::CaseIsothermic),
14927            "XEN" => Some(Unit::Envelope),
14928            "XFB" => Some(Unit::Flexibag),
14929            "XFC" => Some(Unit::CrateFruit),
14930            "XFD" => Some(Unit::CrateFramed),
14931            "XFE" => Some(Unit::Flexitank),
14932            "XFI" => Some(Unit::Firkin),
14933            "XFL" => Some(Unit::Flask),
14934            "XFO" => Some(Unit::Footlocker),
14935            "XFP" => Some(Unit::Filmpack),
14936            "XFR" => Some(Unit::Frame),
14937            "XFT" => Some(Unit::Foodtainer),
14938            "XFW" => Some(Unit::CartFlatbed),
14939            "XFX" => Some(Unit::BagFlexibleContainer),
14940            "XGB" => Some(Unit::BottleGas),
14941            "XGI" => Some(Unit::Girder),
14942            "XGL" => Some(Unit::ContainerGallon),
14943            "XGR" => Some(Unit::ReceptacleGlass),
14944            "XGU" => Some(Unit::TrayContainingHorizontallyStackedFlatItems),
14945            "XGY" => Some(Unit::BagGunny),
14946            "XGZ" => Some(Unit::GirdersInBundleBunchTruss),
14947            "XHA" => Some(Unit::BasketWithHandlePlastic),
14948            "XHB" => Some(Unit::BasketWithHandleWooden),
14949            "XHC" => Some(Unit::BasketWithHandleCardboard),
14950            "XHG" => Some(Unit::Hogshead),
14951            "XHN" => Some(Unit::Hanger),
14952            "XHR" => Some(Unit::Hamper),
14953            "XIA" => Some(Unit::PackageDisplayWooden),
14954            "XIB" => Some(Unit::PackageDisplayCardboard),
14955            "XIC" => Some(Unit::PackageDisplayPlastic),
14956            "XID" => Some(Unit::PackageDisplayMetal),
14957            "XIE" => Some(Unit::PackageShow),
14958            "XIF" => Some(Unit::PackageFlow),
14959            "XIG" => Some(Unit::PackagePaperWrapped),
14960            "XIH" => Some(Unit::DrumPlastic),
14961            "XIK" => Some(Unit::PackageCardboardWithBottleGripHoles),
14962            "XIL" => Some(Unit::TrayRigidLiddedStackableCenTs144822002),
14963            "XIN" => Some(Unit::Ingot),
14964            "XIZ" => Some(Unit::IngotsInBundleBunchTruss),
14965            "XJB" => Some(Unit::BagJumbo),
14966            "XJC" => Some(Unit::JerricanRectangular),
14967            "XJG" => Some(Unit::Jug),
14968            "XJR" => Some(Unit::Jar),
14969            "XJT" => Some(Unit::Jutebag),
14970            "XJY" => Some(Unit::JerricanCylindrical),
14971            "XKG" => Some(Unit::Keg),
14972            "XKI" => Some(Unit::Kit_Dup),
14973            "XLE" => Some(Unit::Luggage),
14974            "XLG" => Some(Unit::Log),
14975            "XLT" => Some(Unit::Lot),
14976            "XLU" => Some(Unit::Lug),
14977            "XLV" => Some(Unit::Liftvan),
14978            "XLZ" => Some(Unit::LogsInBundleBunchTruss),
14979            "XMA" => Some(Unit::CrateMetal),
14980            "XMB" => Some(Unit::BagMultiply),
14981            "XMC" => Some(Unit::CrateMilk),
14982            "XME" => Some(Unit::ContainerMetal),
14983            "XMR" => Some(Unit::ReceptacleMetal),
14984            "XMS" => Some(Unit::SackMultiWall),
14985            "XMT" => Some(Unit::Mat),
14986            "XMW" => Some(Unit::ReceptaclePlasticWrapped),
14987            "XMX" => Some(Unit::Matchbox),
14988            "XNA" => Some(Unit::NotAvailable),
14989            "XNE" => Some(Unit::UnpackedOrUnpackaged),
14990            "XNF" => Some(Unit::UnpackedOrUnpackagedSingleUnit),
14991            "XNG" => Some(Unit::UnpackedOrUnpackagedMultipleUnits),
14992            "XNS" => Some(Unit::Nest),
14993            "XNT" => Some(Unit::Net),
14994            "XNU" => Some(Unit::NetTubePlastic),
14995            "XNV" => Some(Unit::NetTubeTextile),
14996            "XO1" => Some(Unit::TwoSidedCageOnWheelsWithFixingStrap),
14997            "XO2" => Some(Unit::Trolley),
14998            "XO3" => Some(Unit::OnewayPalletIso012EuroPallet),
14999            "XO4" => Some(Unit::OnewayPalletIso111EuroPallet),
15000            "XO5" => Some(Unit::OnewayPalletIso221EuroPallet),
15001            "XO6" => Some(Unit::PalletWithExceptionalDimensions),
15002            "XO7" => Some(Unit::WoodenPallet40CmX80Cm),
15003            "XO8" => Some(Unit::PlasticPalletSrs60CmX80Cm),
15004            "XO9" => Some(Unit::PlasticPalletSrs80CmX120Cm),
15005            "XOA" => Some(Unit::PalletChep40CmX60Cm),
15006            "XOB" => Some(Unit::PalletChep80CmX120Cm),
15007            "XOC" => Some(Unit::PalletChep100CmX120Cm),
15008            "XOD" => Some(Unit::PalletAs40681993),
15009            "XOE" => Some(Unit::PalletIsoT11),
15010            "XOF" => Some(Unit::PlatformUnspecifiedWeightOrDimension),
15011            "XOG" => Some(Unit::PalletIso012EuroPallet),
15012            "XOH" => Some(Unit::PalletIso111EuroPallet),
15013            "XOI" => Some(Unit::PalletIso221EuroPallet),
15014            "XOJ" => Some(Unit::_14EuroPallet),
15015            "XOK" => Some(Unit::Block),
15016            "XOL" => Some(Unit::_18EuroPallet),
15017            "XOM" => Some(Unit::SyntheticPalletIso1),
15018            "XON" => Some(Unit::SyntheticPalletIso2),
15019            "XOP" => Some(Unit::WholesalerPallet),
15020            "XOQ" => Some(Unit::Pallet80X100Cm),
15021            "XOR" => Some(Unit::Pallet60X100Cm),
15022            "XOS" => Some(Unit::OnewayPallet),
15023            "XOT" => Some(Unit::Octabin),
15024            "XOU" => Some(Unit::ContainerOuter),
15025            "XOV" => Some(Unit::ReturnablePallet),
15026            "XOW" => Some(Unit::LargeBagPalletSized),
15027            "XOX" => Some(Unit::AWheeledPalletWithRaisedRim81X67X135),
15028            "XOY" => Some(Unit::AWheeledPalletWithRaisedRim81X72X135),
15029            "XOZ" => Some(Unit::WheeledPalletWithRaisedRim81X60X16),
15030            "XP1" => Some(Unit::ChepPallet60CmX80Cm),
15031            "XP2" => Some(Unit::Pan),
15032            "XP3" => Some(Unit::LprPallet60CmX80Cm),
15033            "XP4" => Some(Unit::LprPallet80CmX120Cm),
15034            "XPA" => Some(Unit::Packet),
15035            "XPB" => Some(Unit::PalletBoxCombinedOpenEndedBoxAndPallet),
15036            "XPC" => Some(Unit::Parcel),
15037            "XPD" => Some(Unit::PalletModularCollars80cms100cms),
15038            "XPE" => Some(Unit::PalletModularCollars80cms120cms),
15039            "XPF" => Some(Unit::Pen),
15040            "XPG" => Some(Unit::Plate),
15041            "XPH" => Some(Unit::Pitcher),
15042            "XPI" => Some(Unit::Pipe),
15043            "XPJ" => Some(Unit::Punnet),
15044            "XPK" => Some(Unit::Package),
15045            "XPL" => Some(Unit::Pail),
15046            "XPN" => Some(Unit::Plank),
15047            "XPO" => Some(Unit::Pouch),
15048            "XPP" => Some(Unit::Piece_Dup),
15049            "XPR" => Some(Unit::ReceptaclePlastic),
15050            "XPT" => Some(Unit::Pot),
15051            "XPU" => Some(Unit::Tray),
15052            "XPV" => Some(Unit::PipesInBundleBunchTruss),
15053            "XPX" => Some(Unit::Pallet),
15054            "XPY" => Some(Unit::PlatesInBundleBunchTruss),
15055            "XPZ" => Some(Unit::PlanksInBundleBunchTruss),
15056            "XQA" => Some(Unit::DrumSteelNonRemovableHead),
15057            "XQB" => Some(Unit::DrumSteelRemovableHead),
15058            "XQC" => Some(Unit::DrumAluminiumNonRemovableHead),
15059            "XQD" => Some(Unit::DrumAluminiumRemovableHead),
15060            "XQF" => Some(Unit::DrumPlasticNonRemovableHead),
15061            "XQG" => Some(Unit::DrumPlasticRemovableHead),
15062            "XQH" => Some(Unit::BarrelWoodenBungType),
15063            "XQJ" => Some(Unit::BarrelWoodenRemovableHead),
15064            "XQK" => Some(Unit::JerricanSteelNonRemovableHead),
15065            "XQL" => Some(Unit::JerricanSteelRemovableHead),
15066            "XQM" => Some(Unit::JerricanPlasticNonRemovableHead),
15067            "XQN" => Some(Unit::JerricanPlasticRemovableHead),
15068            "XQP" => Some(Unit::BoxWoodenNaturalWoodOrdinary),
15069            "XQQ" => Some(Unit::BoxWoodenNaturalWoodWithSiftProofWalls),
15070            "XQR" => Some(Unit::BoxPlasticExpanded),
15071            "XQS" => Some(Unit::BoxPlasticSolid),
15072            "XRD" => Some(Unit::Rod),
15073            "XRG" => Some(Unit::Ring),
15074            "XRJ" => Some(Unit::RackClothingHanger),
15075            "XRK" => Some(Unit::Rack),
15076            "XRL" => Some(Unit::Reel),
15077            "XRO" => Some(Unit::Roll),
15078            "XRT" => Some(Unit::Rednet),
15079            "XRZ" => Some(Unit::RodsInBundleBunchTruss),
15080            "XSA" => Some(Unit::Sack),
15081            "XSB" => Some(Unit::Slab),
15082            "XSC" => Some(Unit::CrateShallow),
15083            "XSD" => Some(Unit::Spindle),
15084            "XSE" => Some(Unit::SeaChest),
15085            "XSH" => Some(Unit::Sachet),
15086            "XSI" => Some(Unit::Skid),
15087            "XSK" => Some(Unit::CaseSkeleton),
15088            "XSL" => Some(Unit::Slipsheet),
15089            "XSM" => Some(Unit::Sheetmetal),
15090            "XSO" => Some(Unit::Spool),
15091            "XSP" => Some(Unit::SheetPlasticWrapping),
15092            "XSS" => Some(Unit::CaseSteel),
15093            "XST" => Some(Unit::Sheet),
15094            "XSU" => Some(Unit::Suitcase),
15095            "XSV" => Some(Unit::EnvelopeSteel),
15096            "XSW" => Some(Unit::Shrinkwrapped),
15097            "XSX" => Some(Unit::Set_Dup),
15098            "XSY" => Some(Unit::Sleeve),
15099            "XSZ" => Some(Unit::SheetsInBundleBunchTruss),
15100            "XT1" => Some(Unit::Tablet_Dup),
15101            "XTB" => Some(Unit::Tub),
15102            "XTC" => Some(Unit::TeaChest),
15103            "XTD" => Some(Unit::TubeCollapsible),
15104            "XTE" => Some(Unit::Tyre_Dup),
15105            "XTG" => Some(Unit::TankContainerGeneric),
15106            "XTI" => Some(Unit::Tierce),
15107            "XTK" => Some(Unit::TankRectangular),
15108            "XTL" => Some(Unit::TubWithLid),
15109            "XTN" => Some(Unit::Tin),
15110            "XTO" => Some(Unit::Tun),
15111            "XTR" => Some(Unit::Trunk),
15112            "XTS" => Some(Unit::Truss),
15113            "XTT" => Some(Unit::BagTote),
15114            "XTU" => Some(Unit::Tube),
15115            "XTV" => Some(Unit::TubeWithNozzle),
15116            "XTW" => Some(Unit::PalletTriwall),
15117            "XTY" => Some(Unit::TankCylindrical),
15118            "XTZ" => Some(Unit::TubesInBundleBunchTruss),
15119            "XUC" => Some(Unit::Uncaged),
15120            "XUN" => Some(Unit::Unit),
15121            "XVA" => Some(Unit::Vat),
15122            "XVG" => Some(Unit::BulkGasAt1031MbarAnd15C),
15123            "XVI" => Some(Unit::Vial),
15124            "XVK" => Some(Unit::Vanpack),
15125            "XVL" => Some(Unit::BulkLiquid),
15126            "XVN" => Some(Unit::Vehicle),
15127            "XVO" => Some(Unit::BulkSolidLargeParticlesNodules),
15128            "XVP" => Some(Unit::VacuumPacked),
15129            "XVQ" => Some(Unit::BulkLiquefiedGasAtAbnormalTemperaturePressure),
15130            "XVR" => Some(Unit::BulkSolidGranularParticlesGrains),
15131            "XVS" => Some(Unit::BulkScrapMetal),
15132            "XVY" => Some(Unit::BulkSolidFineParticlesPowders),
15133            "XWA" => Some(Unit::IntermediateBulkContainer),
15134            "XWB" => Some(Unit::Wickerbottle),
15135            "XWC" => Some(Unit::IntermediateBulkContainerSteel),
15136            "XWD" => Some(Unit::IntermediateBulkContainerAluminium),
15137            "XWF" => Some(Unit::IntermediateBulkContainerMetal),
15138            "XWG" => Some(Unit::IntermediateBulkContainerSteelPressurised10Kpa),
15139            "XWH" => Some(Unit::IntermediateBulkContainerAluminiumPressurised10Kpa),
15140            "XWJ" => Some(Unit::IntermediateBulkContainerMetalPressure10Kpa),
15141            "XWK" => Some(Unit::IntermediateBulkContainerSteelLiquid),
15142            "XWL" => Some(Unit::IntermediateBulkContainerAluminiumLiquid),
15143            "XWM" => Some(Unit::IntermediateBulkContainerMetalLiquid),
15144            "XWN" => Some(Unit::IntermediateBulkContainerWovenPlasticWithoutCoatLiner),
15145            "XWP" => Some(Unit::IntermediateBulkContainerWovenPlasticCoated),
15146            "XWQ" => Some(Unit::IntermediateBulkContainerWovenPlasticWithLiner),
15147            "XWR" => Some(Unit::IntermediateBulkContainerWovenPlasticCoatedAndLiner),
15148            "XWS" => Some(Unit::IntermediateBulkContainerPlasticFilm),
15149            "XWT" => Some(Unit::IntermediateBulkContainerTextileWithOutCoatLiner),
15150            "XWU" => Some(Unit::IntermediateBulkContainerNaturalWoodWithInnerLiner),
15151            "XWV" => Some(Unit::IntermediateBulkContainerTextileCoated),
15152            "XWW" => Some(Unit::IntermediateBulkContainerTextileWithLiner),
15153            "XWX" => Some(Unit::IntermediateBulkContainerTextileCoatedAndLiner),
15154            "XWY" => Some(Unit::IntermediateBulkContainerPlywoodWithInnerLiner),
15155            "XWZ" => Some(Unit::IntermediateBulkContainerReconstitutedWoodWithInnerLiner),
15156            "XXA" => Some(Unit::BagWovenPlasticWithoutInnerCoatLiner),
15157            "XXB" => Some(Unit::BagWovenPlasticSiftProof),
15158            "XXC" => Some(Unit::BagWovenPlasticWaterResistant),
15159            "XXD" => Some(Unit::BagPlasticsFilm),
15160            "XXF" => Some(Unit::BagTextileWithoutInnerCoatLiner),
15161            "XXG" => Some(Unit::BagTextileSiftProof),
15162            "XXH" => Some(Unit::BagTextileWaterResistant),
15163            "XXJ" => Some(Unit::BagPaperMultiWall),
15164            "XXK" => Some(Unit::BagPaperMultiWallWaterResistant),
15165            "XYA" => Some(Unit::CompositePackagingPlasticReceptacleInSteelDrum),
15166            "XYB" => Some(Unit::CompositePackagingPlasticReceptacleInSteelCrateBox),
15167            "XYC" => Some(Unit::CompositePackagingPlasticReceptacleInAluminiumDrum),
15168            "XYD" => Some(Unit::CompositePackagingPlasticReceptacleInAluminiumCrate),
15169            "XYF" => Some(Unit::CompositePackagingPlasticReceptacleInWoodenBox),
15170            "XYG" => Some(Unit::CompositePackagingPlasticReceptacleInPlywoodDrum),
15171            "XYH" => Some(Unit::CompositePackagingPlasticReceptacleInPlywoodBox),
15172            "XYJ" => Some(Unit::CompositePackagingPlasticReceptacleInFibreDrum),
15173            "XYK" => Some(Unit::CompositePackagingPlasticReceptacleInFibreboardBox),
15174            "XYL" => Some(Unit::CompositePackagingPlasticReceptacleInPlasticDrum),
15175            "XYM" => Some(Unit::CompositePackagingPlasticReceptacleInSolidPlasticBox),
15176            "XYN" => Some(Unit::CompositePackagingGlassReceptacleInSteelDrum),
15177            "XYP" => Some(Unit::CompositePackagingGlassReceptacleInSteelCrateBox),
15178            "XYQ" => Some(Unit::CompositePackagingGlassReceptacleInAluminiumDrum),
15179            "XYR" => Some(Unit::CompositePackagingGlassReceptacleInAluminiumCrate),
15180            "XYS" => Some(Unit::CompositePackagingGlassReceptacleInWoodenBox),
15181            "XYT" => Some(Unit::CompositePackagingGlassReceptacleInPlywoodDrum),
15182            "XYV" => Some(Unit::CompositePackagingGlassReceptacleInWickerworkHamper),
15183            "XYW" => Some(Unit::CompositePackagingGlassReceptacleInFibreDrum),
15184            "XYX" => Some(Unit::CompositePackagingGlassReceptacleInFibreboardBox),
15185            "XYY" => Some(Unit::CompositePackagingGlassReceptacleInExpandablePlasticPack),
15186            "XYZ" => Some(Unit::CompositePackagingGlassReceptacleInSolidPlasticPack),
15187            "XZA" => Some(Unit::IntermediateBulkContainerPaperMultiWall),
15188            "XZB" => Some(Unit::BagLarge),
15189            "XZC" => Some(Unit::IntermediateBulkContainerPaperMultiWallWaterResistant),
15190            "XZD" => Some(Unit::IntermediateBulkContainerRigidPlasticWithStructuralEquipmentSolids),
15191            "XZF" => Some(Unit::IntermediateBulkContainerRigidPlasticFreestandingSolids),
15192            "XZG" => {
15193                Some(Unit::IntermediateBulkContainerRigidPlasticWithStructuralEquipmentPressurised)
15194            }
15195            "XZH" => Some(Unit::IntermediateBulkContainerRigidPlasticFreestandingPressurised),
15196            "XZJ" => {
15197                Some(Unit::IntermediateBulkContainerRigidPlasticWithStructuralEquipmentLiquids)
15198            }
15199            "XZK" => Some(Unit::IntermediateBulkContainerRigidPlasticFreestandingLiquids),
15200            "XZL" => Some(Unit::IntermediateBulkContainerCompositeRigidPlasticSolids),
15201            "XZM" => Some(Unit::IntermediateBulkContainerCompositeFlexiblePlasticSolids),
15202            "XZN" => Some(Unit::IntermediateBulkContainerCompositeRigidPlasticPressurised),
15203            "XZP" => Some(Unit::IntermediateBulkContainerCompositeFlexiblePlasticPressurised),
15204            "XZQ" => Some(Unit::IntermediateBulkContainerCompositeRigidPlasticLiquids),
15205            "XZR" => Some(Unit::IntermediateBulkContainerCompositeFlexiblePlasticLiquids),
15206            "XZS" => Some(Unit::IntermediateBulkContainerComposite),
15207            "XZT" => Some(Unit::IntermediateBulkContainerFibreboard),
15208            "XZU" => Some(Unit::IntermediateBulkContainerFlexible),
15209            "XZV" => Some(Unit::IntermediateBulkContainerMetalOtherThanSteel),
15210            "XZW" => Some(Unit::IntermediateBulkContainerNaturalWood),
15211            "XZX" => Some(Unit::IntermediateBulkContainerPlywood),
15212            "XZY" => Some(Unit::IntermediateBulkContainerReconstitutedWood),
15213            "XZZ" => Some(Unit::MutuallyDefined_Dup),
15214            _ => None,
15215        }
15216    }
15217}