1pub trait Zero {
20 const ZERO: Self;
21}
22
23impl Zero for i8 { const ZERO: Self = 0; }
24impl Zero for u8 { const ZERO: Self = 0; }
25impl Zero for i16 { const ZERO: Self = 0; }
26impl Zero for u16 { const ZERO: Self = 0; }
27impl Zero for i32 { const ZERO: Self = 0; }
28impl Zero for u32 { const ZERO: Self = 0; }
29impl Zero for i64 { const ZERO: Self = 0; }
30impl Zero for u64 { const ZERO: Self = 0; }
31impl Zero for i128 { const ZERO: Self = 0; }
32impl Zero for u128 { const ZERO: Self = 0; }
33impl Zero for isize { const ZERO: Self = 0; }
34impl Zero for usize { const ZERO: Self = 0; }
35impl Zero for f32 { const ZERO: Self = 0.0; }
36impl Zero for f64 { const ZERO: Self = 0.0; }
37
38pub trait One {
39 const ONE: Self;
40}
41
42impl One for i8 { const ONE: Self = 1; }
43impl One for u8 { const ONE: Self = 1; }
44impl One for i16 { const ONE: Self = 1; }
45impl One for u16 { const ONE: Self = 1; }
46impl One for i32 { const ONE: Self = 1; }
47impl One for u32 { const ONE: Self = 1; }
48impl One for i64 { const ONE: Self = 1; }
49impl One for u64 { const ONE: Self = 1; }
50impl One for i128 { const ONE: Self = 1; }
51impl One for u128 { const ONE: Self = 1; }
52impl One for isize { const ONE: Self = 1; }
53impl One for usize { const ONE: Self = 1; }
54impl One for f32 { const ONE: Self = 1.0; }
55impl One for f64 { const ONE: Self = 1.0; }
56
57pub trait Two {
58 const TWO: Self;
59}
60
61impl Two for i8 { const TWO: Self = 2; }
62impl Two for u8 { const TWO: Self = 2; }
63impl Two for i16 { const TWO: Self = 2; }
64impl Two for u16 { const TWO: Self = 2; }
65impl Two for i32 { const TWO: Self = 2; }
66impl Two for u32 { const TWO: Self = 2; }
67impl Two for i64 { const TWO: Self = 2; }
68impl Two for u64 { const TWO: Self = 2; }
69impl Two for i128 { const TWO: Self = 2; }
70impl Two for u128 { const TWO: Self = 2; }
71impl Two for isize { const TWO: Self = 2; }
72impl Two for usize { const TWO: Self = 2; }
73impl Two for f32 { const TWO: Self = 2.0; }
74impl Two for f64 { const TWO: Self = 2.0; }
75
76pub trait Three {
77 const THREE: Self;
78}
79
80impl Three for i8 { const THREE: Self = 3; }
81impl Three for u8 { const THREE: Self = 3; }
82impl Three for i16 { const THREE: Self = 3; }
83impl Three for u16 { const THREE: Self = 3; }
84impl Three for i32 { const THREE: Self = 3; }
85impl Three for u32 { const THREE: Self = 3; }
86impl Three for i64 { const THREE: Self = 3; }
87impl Three for u64 { const THREE: Self = 3; }
88impl Three for i128 { const THREE: Self = 3; }
89impl Three for u128 { const THREE: Self = 3; }
90impl Three for isize { const THREE: Self = 3; }
91impl Three for usize { const THREE: Self = 3; }
92impl Three for f32 { const THREE: Self = 3.0; }
93impl Three for f64 { const THREE: Self = 3.0; }
94
95pub trait Four {
96 const FOUR: Self;
97}
98
99impl Four for i8 { const FOUR: Self = 4; }
100impl Four for u8 { const FOUR: Self = 4; }
101impl Four for i16 { const FOUR: Self = 4; }
102impl Four for u16 { const FOUR: Self = 4; }
103impl Four for i32 { const FOUR: Self = 4; }
104impl Four for u32 { const FOUR: Self = 4; }
105impl Four for i64 { const FOUR: Self = 4; }
106impl Four for u64 { const FOUR: Self = 4; }
107impl Four for i128 { const FOUR: Self = 4; }
108impl Four for u128 { const FOUR: Self = 4; }
109impl Four for isize { const FOUR: Self = 4; }
110impl Four for usize { const FOUR: Self = 4; }
111impl Four for f32 { const FOUR: Self = 4.0; }
112impl Four for f64 { const FOUR: Self = 4.0; }
113
114pub trait Five {
115 const FIVE: Self;
116}
117
118impl Five for i8 { const FIVE: Self = 5; }
119impl Five for u8 { const FIVE: Self = 5; }
120impl Five for i16 { const FIVE: Self = 5; }
121impl Five for u16 { const FIVE: Self = 5; }
122impl Five for i32 { const FIVE: Self = 5; }
123impl Five for u32 { const FIVE: Self = 5; }
124impl Five for i64 { const FIVE: Self = 5; }
125impl Five for u64 { const FIVE: Self = 5; }
126impl Five for i128 { const FIVE: Self = 5; }
127impl Five for u128 { const FIVE: Self = 5; }
128impl Five for isize { const FIVE: Self = 5; }
129impl Five for usize { const FIVE: Self = 5; }
130impl Five for f32 { const FIVE: Self = 5.0; }
131impl Five for f64 { const FIVE: Self = 5.0; }
132
133pub trait Six {
134 const SIX: Self;
135}
136
137impl Six for i8 { const SIX: Self = 6; }
138impl Six for u8 { const SIX: Self = 6; }
139impl Six for i16 { const SIX: Self = 6; }
140impl Six for u16 { const SIX: Self = 6; }
141impl Six for i32 { const SIX: Self = 6; }
142impl Six for u32 { const SIX: Self = 6; }
143impl Six for i64 { const SIX: Self = 6; }
144impl Six for u64 { const SIX: Self = 6; }
145impl Six for i128 { const SIX: Self = 6; }
146impl Six for u128 { const SIX: Self = 6; }
147impl Six for isize { const SIX: Self = 6; }
148impl Six for usize { const SIX: Self = 6; }
149impl Six for f32 { const SIX: Self = 6.0; }
150impl Six for f64 { const SIX: Self = 6.0; }
151
152pub trait Seven {
153 const SEVEN: Self;
154}
155
156impl Seven for i8 { const SEVEN: Self = 7; }
157impl Seven for u8 { const SEVEN: Self = 7; }
158impl Seven for i16 { const SEVEN: Self = 7; }
159impl Seven for u16 { const SEVEN: Self = 7; }
160impl Seven for i32 { const SEVEN: Self = 7; }
161impl Seven for u32 { const SEVEN: Self = 7; }
162impl Seven for i64 { const SEVEN: Self = 7; }
163impl Seven for u64 { const SEVEN: Self = 7; }
164impl Seven for i128 { const SEVEN: Self = 7; }
165impl Seven for u128 { const SEVEN: Self = 7; }
166impl Seven for isize { const SEVEN: Self = 7; }
167impl Seven for usize { const SEVEN: Self = 7; }
168impl Seven for f32 { const SEVEN: Self = 7.0; }
169impl Seven for f64 { const SEVEN: Self = 7.0; }
170
171pub trait Eight {
172 const EIGHT: Self;
173}
174
175impl Eight for i8 { const EIGHT: Self = 8; }
176impl Eight for u8 { const EIGHT: Self = 8; }
177impl Eight for i16 { const EIGHT: Self = 8; }
178impl Eight for u16 { const EIGHT: Self = 8; }
179impl Eight for i32 { const EIGHT: Self = 8; }
180impl Eight for u32 { const EIGHT: Self = 8; }
181impl Eight for i64 { const EIGHT: Self = 8; }
182impl Eight for u64 { const EIGHT: Self = 8; }
183impl Eight for i128 { const EIGHT: Self = 8; }
184impl Eight for u128 { const EIGHT: Self = 8; }
185impl Eight for isize { const EIGHT: Self = 8; }
186impl Eight for usize { const EIGHT: Self = 8; }
187impl Eight for f32 { const EIGHT: Self = 8.0; }
188impl Eight for f64 { const EIGHT: Self = 8.0; }
189
190pub trait Nine {
191 const NINE: Self;
192}
193
194impl Nine for i8 { const NINE: Self = 9; }
195impl Nine for u8 { const NINE: Self = 9; }
196impl Nine for i16 { const NINE: Self = 9; }
197impl Nine for u16 { const NINE: Self = 9; }
198impl Nine for i32 { const NINE: Self = 9; }
199impl Nine for u32 { const NINE: Self = 9; }
200impl Nine for i64 { const NINE: Self = 9; }
201impl Nine for u64 { const NINE: Self = 9; }
202impl Nine for i128 { const NINE: Self = 9; }
203impl Nine for u128 { const NINE: Self = 9; }
204impl Nine for isize { const NINE: Self = 9; }
205impl Nine for usize { const NINE: Self = 9; }
206impl Nine for f32 { const NINE: Self = 9.0; }
207impl Nine for f64 { const NINE: Self = 9.0; }
208
209pub trait Ten {
210 const TEN: Self;
211}
212
213impl Ten for i8 { const TEN: Self = 10; }
214impl Ten for u8 { const TEN: Self = 10; }
215impl Ten for i16 { const TEN: Self = 10; }
216impl Ten for u16 { const TEN: Self = 10; }
217impl Ten for i32 { const TEN: Self = 10; }
218impl Ten for u32 { const TEN: Self = 10; }
219impl Ten for i64 { const TEN: Self = 10; }
220impl Ten for u64 { const TEN: Self = 10; }
221impl Ten for i128 { const TEN: Self = 10; }
222impl Ten for u128 { const TEN: Self = 10; }
223impl Ten for isize { const TEN: Self = 10; }
224impl Ten for usize { const TEN: Self = 10; }
225impl Ten for f32 { const TEN: Self = 10.0; }
226impl Ten for f64 { const TEN: Self = 10.0; }
227
228pub trait Eleven {
229 const ELEVEN: Self;
230}
231
232impl Eleven for i8 { const ELEVEN: Self = 11; }
233impl Eleven for u8 { const ELEVEN: Self = 11; }
234impl Eleven for i16 { const ELEVEN: Self = 11; }
235impl Eleven for u16 { const ELEVEN: Self = 11; }
236impl Eleven for i32 { const ELEVEN: Self = 11; }
237impl Eleven for u32 { const ELEVEN: Self = 11; }
238impl Eleven for i64 { const ELEVEN: Self = 11; }
239impl Eleven for u64 { const ELEVEN: Self = 11; }
240impl Eleven for i128 { const ELEVEN: Self = 11; }
241impl Eleven for u128 { const ELEVEN: Self = 11; }
242impl Eleven for isize { const ELEVEN: Self = 11; }
243impl Eleven for usize { const ELEVEN: Self = 11; }
244impl Eleven for f32 { const ELEVEN: Self = 11.0; }
245impl Eleven for f64 { const ELEVEN: Self = 11.0; }
246
247pub trait Twelve {
248 const TWELVE: Self;
249}
250
251impl Twelve for i8 { const TWELVE: Self = 12; }
252impl Twelve for u8 { const TWELVE: Self = 12; }
253impl Twelve for i16 { const TWELVE: Self = 12; }
254impl Twelve for u16 { const TWELVE: Self = 12; }
255impl Twelve for i32 { const TWELVE: Self = 12; }
256impl Twelve for u32 { const TWELVE: Self = 12; }
257impl Twelve for i64 { const TWELVE: Self = 12; }
258impl Twelve for u64 { const TWELVE: Self = 12; }
259impl Twelve for i128 { const TWELVE: Self = 12; }
260impl Twelve for u128 { const TWELVE: Self = 12; }
261impl Twelve for isize { const TWELVE: Self = 12; }
262impl Twelve for usize { const TWELVE: Self = 12; }
263impl Twelve for f32 { const TWELVE: Self = 12.0; }
264impl Twelve for f64 { const TWELVE: Self = 12.0; }
265
266pub trait Thirteen {
267 const THIRTEEN: Self;
268}
269
270impl Thirteen for i8 { const THIRTEEN: Self = 13; }
271impl Thirteen for u8 { const THIRTEEN: Self = 13; }
272impl Thirteen for i16 { const THIRTEEN: Self = 13; }
273impl Thirteen for u16 { const THIRTEEN: Self = 13; }
274impl Thirteen for i32 { const THIRTEEN: Self = 13; }
275impl Thirteen for u32 { const THIRTEEN: Self = 13; }
276impl Thirteen for i64 { const THIRTEEN: Self = 13; }
277impl Thirteen for u64 { const THIRTEEN: Self = 13; }
278impl Thirteen for i128 { const THIRTEEN: Self = 13; }
279impl Thirteen for u128 { const THIRTEEN: Self = 13; }
280impl Thirteen for isize { const THIRTEEN: Self = 13; }
281impl Thirteen for usize { const THIRTEEN: Self = 13; }
282impl Thirteen for f32 { const THIRTEEN: Self = 13.0; }
283impl Thirteen for f64 { const THIRTEEN: Self = 13.0; }
284
285pub trait Fourteen {
286 const FOURTEEN: Self;
287}
288
289impl Fourteen for i8 { const FOURTEEN: Self = 14; }
290impl Fourteen for u8 { const FOURTEEN: Self = 14; }
291impl Fourteen for i16 { const FOURTEEN: Self = 14; }
292impl Fourteen for u16 { const FOURTEEN: Self = 14; }
293impl Fourteen for i32 { const FOURTEEN: Self = 14; }
294impl Fourteen for u32 { const FOURTEEN: Self = 14; }
295impl Fourteen for i64 { const FOURTEEN: Self = 14; }
296impl Fourteen for u64 { const FOURTEEN: Self = 14; }
297impl Fourteen for i128 { const FOURTEEN: Self = 14; }
298impl Fourteen for u128 { const FOURTEEN: Self = 14; }
299impl Fourteen for isize { const FOURTEEN: Self = 14; }
300impl Fourteen for usize { const FOURTEEN: Self = 14; }
301impl Fourteen for f32 { const FOURTEEN: Self = 14.0; }
302impl Fourteen for f64 { const FOURTEEN: Self = 14.0; }
303
304pub trait Fifteen {
305 const FIFTEEN: Self;
306}
307
308impl Fifteen for i8 { const FIFTEEN: Self = 15; }
309impl Fifteen for u8 { const FIFTEEN: Self = 15; }
310impl Fifteen for i16 { const FIFTEEN: Self = 15; }
311impl Fifteen for u16 { const FIFTEEN: Self = 15; }
312impl Fifteen for i32 { const FIFTEEN: Self = 15; }
313impl Fifteen for u32 { const FIFTEEN: Self = 15; }
314impl Fifteen for i64 { const FIFTEEN: Self = 15; }
315impl Fifteen for u64 { const FIFTEEN: Self = 15; }
316impl Fifteen for i128 { const FIFTEEN: Self = 15; }
317impl Fifteen for u128 { const FIFTEEN: Self = 15; }
318impl Fifteen for isize { const FIFTEEN: Self = 15; }
319impl Fifteen for usize { const FIFTEEN: Self = 15; }
320impl Fifteen for f32 { const FIFTEEN: Self = 15.0; }
321impl Fifteen for f64 { const FIFTEEN: Self = 15.0; }
322
323pub trait Sixteen {
324 const SIXTEEN: Self;
325}
326
327impl Sixteen for i8 { const SIXTEEN: Self = 16; }
328impl Sixteen for u8 { const SIXTEEN: Self = 16; }
329impl Sixteen for i16 { const SIXTEEN: Self = 16; }
330impl Sixteen for u16 { const SIXTEEN: Self = 16; }
331impl Sixteen for i32 { const SIXTEEN: Self = 16; }
332impl Sixteen for u32 { const SIXTEEN: Self = 16; }
333impl Sixteen for i64 { const SIXTEEN: Self = 16; }
334impl Sixteen for u64 { const SIXTEEN: Self = 16; }
335impl Sixteen for i128 { const SIXTEEN: Self = 16; }
336impl Sixteen for u128 { const SIXTEEN: Self = 16; }
337impl Sixteen for isize { const SIXTEEN: Self = 16; }
338impl Sixteen for usize { const SIXTEEN: Self = 16; }
339impl Sixteen for f32 { const SIXTEEN: Self = 16.0; }
340impl Sixteen for f64 { const SIXTEEN: Self = 16.0; }
341
342pub trait Seventeen {
343 const SEVENTEEN: Self;
344}
345
346impl Seventeen for i8 { const SEVENTEEN: Self = 17; }
347impl Seventeen for u8 { const SEVENTEEN: Self = 17; }
348impl Seventeen for i16 { const SEVENTEEN: Self = 17; }
349impl Seventeen for u16 { const SEVENTEEN: Self = 17; }
350impl Seventeen for i32 { const SEVENTEEN: Self = 17; }
351impl Seventeen for u32 { const SEVENTEEN: Self = 17; }
352impl Seventeen for i64 { const SEVENTEEN: Self = 17; }
353impl Seventeen for u64 { const SEVENTEEN: Self = 17; }
354impl Seventeen for i128 { const SEVENTEEN: Self = 17; }
355impl Seventeen for u128 { const SEVENTEEN: Self = 17; }
356impl Seventeen for isize { const SEVENTEEN: Self = 17; }
357impl Seventeen for usize { const SEVENTEEN: Self = 17; }
358impl Seventeen for f32 { const SEVENTEEN: Self = 17.0; }
359impl Seventeen for f64 { const SEVENTEEN: Self = 17.0; }
360
361pub trait Eighteen {
362 const EIGHTEEN: Self;
363}
364
365impl Eighteen for i8 { const EIGHTEEN: Self = 18; }
366impl Eighteen for u8 { const EIGHTEEN: Self = 18; }
367impl Eighteen for i16 { const EIGHTEEN: Self = 18; }
368impl Eighteen for u16 { const EIGHTEEN: Self = 18; }
369impl Eighteen for i32 { const EIGHTEEN: Self = 18; }
370impl Eighteen for u32 { const EIGHTEEN: Self = 18; }
371impl Eighteen for i64 { const EIGHTEEN: Self = 18; }
372impl Eighteen for u64 { const EIGHTEEN: Self = 18; }
373impl Eighteen for i128 { const EIGHTEEN: Self = 18; }
374impl Eighteen for u128 { const EIGHTEEN: Self = 18; }
375impl Eighteen for isize { const EIGHTEEN: Self = 18; }
376impl Eighteen for usize { const EIGHTEEN: Self = 18; }
377impl Eighteen for f32 { const EIGHTEEN: Self = 18.0; }
378impl Eighteen for f64 { const EIGHTEEN: Self = 18.0; }
379
380pub trait Nineteen {
381 const NINETEEN: Self;
382}
383
384impl Nineteen for i8 { const NINETEEN: Self = 19; }
385impl Nineteen for u8 { const NINETEEN: Self = 19; }
386impl Nineteen for i16 { const NINETEEN: Self = 19; }
387impl Nineteen for u16 { const NINETEEN: Self = 19; }
388impl Nineteen for i32 { const NINETEEN: Self = 19; }
389impl Nineteen for u32 { const NINETEEN: Self = 19; }
390impl Nineteen for i64 { const NINETEEN: Self = 19; }
391impl Nineteen for u64 { const NINETEEN: Self = 19; }
392impl Nineteen for i128 { const NINETEEN: Self = 19; }
393impl Nineteen for u128 { const NINETEEN: Self = 19; }
394impl Nineteen for isize { const NINETEEN: Self = 19; }
395impl Nineteen for usize { const NINETEEN: Self = 19; }
396impl Nineteen for f32 { const NINETEEN: Self = 19.0; }
397impl Nineteen for f64 { const NINETEEN: Self = 19.0; }
398
399pub trait Twenty {
400 const TWENTY: Self;
401}
402
403impl Twenty for i8 { const TWENTY: Self = 20; }
404impl Twenty for u8 { const TWENTY: Self = 20; }
405impl Twenty for i16 { const TWENTY: Self = 20; }
406impl Twenty for u16 { const TWENTY: Self = 20; }
407impl Twenty for i32 { const TWENTY: Self = 20; }
408impl Twenty for u32 { const TWENTY: Self = 20; }
409impl Twenty for i64 { const TWENTY: Self = 20; }
410impl Twenty for u64 { const TWENTY: Self = 20; }
411impl Twenty for i128 { const TWENTY: Self = 20; }
412impl Twenty for u128 { const TWENTY: Self = 20; }
413impl Twenty for isize { const TWENTY: Self = 20; }
414impl Twenty for usize { const TWENTY: Self = 20; }
415impl Twenty for f32 { const TWENTY: Self = 20.0; }
416impl Twenty for f64 { const TWENTY: Self = 20.0; }
417
418pub trait TwentyOne {
419 const TWENTY_ONE: Self;
420}
421
422impl TwentyOne for i8 { const TWENTY_ONE: Self = 21; }
423impl TwentyOne for u8 { const TWENTY_ONE: Self = 21; }
424impl TwentyOne for i16 { const TWENTY_ONE: Self = 21; }
425impl TwentyOne for u16 { const TWENTY_ONE: Self = 21; }
426impl TwentyOne for i32 { const TWENTY_ONE: Self = 21; }
427impl TwentyOne for u32 { const TWENTY_ONE: Self = 21; }
428impl TwentyOne for i64 { const TWENTY_ONE: Self = 21; }
429impl TwentyOne for u64 { const TWENTY_ONE: Self = 21; }
430impl TwentyOne for i128 { const TWENTY_ONE: Self = 21; }
431impl TwentyOne for u128 { const TWENTY_ONE: Self = 21; }
432impl TwentyOne for isize { const TWENTY_ONE: Self = 21; }
433impl TwentyOne for usize { const TWENTY_ONE: Self = 21; }
434impl TwentyOne for f32 { const TWENTY_ONE: Self = 21.0; }
435impl TwentyOne for f64 { const TWENTY_ONE: Self = 21.0; }
436
437pub trait TwentyTwo {
438 const TWENTY_TWO: Self;
439}
440
441impl TwentyTwo for i8 { const TWENTY_TWO: Self = 22; }
442impl TwentyTwo for u8 { const TWENTY_TWO: Self = 22; }
443impl TwentyTwo for i16 { const TWENTY_TWO: Self = 22; }
444impl TwentyTwo for u16 { const TWENTY_TWO: Self = 22; }
445impl TwentyTwo for i32 { const TWENTY_TWO: Self = 22; }
446impl TwentyTwo for u32 { const TWENTY_TWO: Self = 22; }
447impl TwentyTwo for i64 { const TWENTY_TWO: Self = 22; }
448impl TwentyTwo for u64 { const TWENTY_TWO: Self = 22; }
449impl TwentyTwo for i128 { const TWENTY_TWO: Self = 22; }
450impl TwentyTwo for u128 { const TWENTY_TWO: Self = 22; }
451impl TwentyTwo for isize { const TWENTY_TWO: Self = 22; }
452impl TwentyTwo for usize { const TWENTY_TWO: Self = 22; }
453impl TwentyTwo for f32 { const TWENTY_TWO: Self = 22.0; }
454impl TwentyTwo for f64 { const TWENTY_TWO: Self = 22.0; }
455
456pub trait TwentyThree {
457 const TWENTY_THREE: Self;
458}
459
460impl TwentyThree for i8 { const TWENTY_THREE: Self = 23; }
461impl TwentyThree for u8 { const TWENTY_THREE: Self = 23; }
462impl TwentyThree for i16 { const TWENTY_THREE: Self = 23; }
463impl TwentyThree for u16 { const TWENTY_THREE: Self = 23; }
464impl TwentyThree for i32 { const TWENTY_THREE: Self = 23; }
465impl TwentyThree for u32 { const TWENTY_THREE: Self = 23; }
466impl TwentyThree for i64 { const TWENTY_THREE: Self = 23; }
467impl TwentyThree for u64 { const TWENTY_THREE: Self = 23; }
468impl TwentyThree for i128 { const TWENTY_THREE: Self = 23; }
469impl TwentyThree for u128 { const TWENTY_THREE: Self = 23; }
470impl TwentyThree for isize { const TWENTY_THREE: Self = 23; }
471impl TwentyThree for usize { const TWENTY_THREE: Self = 23; }
472impl TwentyThree for f32 { const TWENTY_THREE: Self = 23.0; }
473impl TwentyThree for f64 { const TWENTY_THREE: Self = 23.0; }
474
475pub trait TwentyFour {
476 const TWENTY_FOUR: Self;
477}
478
479impl TwentyFour for i8 { const TWENTY_FOUR: Self = 24; }
480impl TwentyFour for u8 { const TWENTY_FOUR: Self = 24; }
481impl TwentyFour for i16 { const TWENTY_FOUR: Self = 24; }
482impl TwentyFour for u16 { const TWENTY_FOUR: Self = 24; }
483impl TwentyFour for i32 { const TWENTY_FOUR: Self = 24; }
484impl TwentyFour for u32 { const TWENTY_FOUR: Self = 24; }
485impl TwentyFour for i64 { const TWENTY_FOUR: Self = 24; }
486impl TwentyFour for u64 { const TWENTY_FOUR: Self = 24; }
487impl TwentyFour for i128 { const TWENTY_FOUR: Self = 24; }
488impl TwentyFour for u128 { const TWENTY_FOUR: Self = 24; }
489impl TwentyFour for isize { const TWENTY_FOUR: Self = 24; }
490impl TwentyFour for usize { const TWENTY_FOUR: Self = 24; }
491impl TwentyFour for f32 { const TWENTY_FOUR: Self = 24.0; }
492impl TwentyFour for f64 { const TWENTY_FOUR: Self = 24.0; }
493
494pub trait TwentyFive {
495 const TWENTY_FIVE: Self;
496}
497
498impl TwentyFive for i8 { const TWENTY_FIVE: Self = 25; }
499impl TwentyFive for u8 { const TWENTY_FIVE: Self = 25; }
500impl TwentyFive for i16 { const TWENTY_FIVE: Self = 25; }
501impl TwentyFive for u16 { const TWENTY_FIVE: Self = 25; }
502impl TwentyFive for i32 { const TWENTY_FIVE: Self = 25; }
503impl TwentyFive for u32 { const TWENTY_FIVE: Self = 25; }
504impl TwentyFive for i64 { const TWENTY_FIVE: Self = 25; }
505impl TwentyFive for u64 { const TWENTY_FIVE: Self = 25; }
506impl TwentyFive for i128 { const TWENTY_FIVE: Self = 25; }
507impl TwentyFive for u128 { const TWENTY_FIVE: Self = 25; }
508impl TwentyFive for isize { const TWENTY_FIVE: Self = 25; }
509impl TwentyFive for usize { const TWENTY_FIVE: Self = 25; }
510impl TwentyFive for f32 { const TWENTY_FIVE: Self = 25.0; }
511impl TwentyFive for f64 { const TWENTY_FIVE: Self = 25.0; }
512
513pub trait TwentySix {
514 const TWENTY_SIX: Self;
515}
516
517impl TwentySix for i8 { const TWENTY_SIX: Self = 26; }
518impl TwentySix for u8 { const TWENTY_SIX: Self = 26; }
519impl TwentySix for i16 { const TWENTY_SIX: Self = 26; }
520impl TwentySix for u16 { const TWENTY_SIX: Self = 26; }
521impl TwentySix for i32 { const TWENTY_SIX: Self = 26; }
522impl TwentySix for u32 { const TWENTY_SIX: Self = 26; }
523impl TwentySix for i64 { const TWENTY_SIX: Self = 26; }
524impl TwentySix for u64 { const TWENTY_SIX: Self = 26; }
525impl TwentySix for i128 { const TWENTY_SIX: Self = 26; }
526impl TwentySix for u128 { const TWENTY_SIX: Self = 26; }
527impl TwentySix for isize { const TWENTY_SIX: Self = 26; }
528impl TwentySix for usize { const TWENTY_SIX: Self = 26; }
529impl TwentySix for f32 { const TWENTY_SIX: Self = 26.0; }
530impl TwentySix for f64 { const TWENTY_SIX: Self = 26.0; }
531
532pub trait TwentySeven {
533 const TWENTY_SEVEN: Self;
534}
535
536impl TwentySeven for i8 { const TWENTY_SEVEN: Self = 27; }
537impl TwentySeven for u8 { const TWENTY_SEVEN: Self = 27; }
538impl TwentySeven for i16 { const TWENTY_SEVEN: Self = 27; }
539impl TwentySeven for u16 { const TWENTY_SEVEN: Self = 27; }
540impl TwentySeven for i32 { const TWENTY_SEVEN: Self = 27; }
541impl TwentySeven for u32 { const TWENTY_SEVEN: Self = 27; }
542impl TwentySeven for i64 { const TWENTY_SEVEN: Self = 27; }
543impl TwentySeven for u64 { const TWENTY_SEVEN: Self = 27; }
544impl TwentySeven for i128 { const TWENTY_SEVEN: Self = 27; }
545impl TwentySeven for u128 { const TWENTY_SEVEN: Self = 27; }
546impl TwentySeven for isize { const TWENTY_SEVEN: Self = 27; }
547impl TwentySeven for usize { const TWENTY_SEVEN: Self = 27; }
548impl TwentySeven for f32 { const TWENTY_SEVEN: Self = 27.0; }
549impl TwentySeven for f64 { const TWENTY_SEVEN: Self = 27.0; }
550
551pub trait TwentyEight {
552 const TWENTY_EIGHT: Self;
553}
554
555impl TwentyEight for i8 { const TWENTY_EIGHT: Self = 28; }
556impl TwentyEight for u8 { const TWENTY_EIGHT: Self = 28; }
557impl TwentyEight for i16 { const TWENTY_EIGHT: Self = 28; }
558impl TwentyEight for u16 { const TWENTY_EIGHT: Self = 28; }
559impl TwentyEight for i32 { const TWENTY_EIGHT: Self = 28; }
560impl TwentyEight for u32 { const TWENTY_EIGHT: Self = 28; }
561impl TwentyEight for i64 { const TWENTY_EIGHT: Self = 28; }
562impl TwentyEight for u64 { const TWENTY_EIGHT: Self = 28; }
563impl TwentyEight for i128 { const TWENTY_EIGHT: Self = 28; }
564impl TwentyEight for u128 { const TWENTY_EIGHT: Self = 28; }
565impl TwentyEight for isize { const TWENTY_EIGHT: Self = 28; }
566impl TwentyEight for usize { const TWENTY_EIGHT: Self = 28; }
567impl TwentyEight for f32 { const TWENTY_EIGHT: Self = 28.0; }
568impl TwentyEight for f64 { const TWENTY_EIGHT: Self = 28.0; }
569
570pub trait TwentyNine {
571 const TWENTY_NINE: Self;
572}
573
574impl TwentyNine for i8 { const TWENTY_NINE: Self = 29; }
575impl TwentyNine for u8 { const TWENTY_NINE: Self = 29; }
576impl TwentyNine for i16 { const TWENTY_NINE: Self = 29; }
577impl TwentyNine for u16 { const TWENTY_NINE: Self = 29; }
578impl TwentyNine for i32 { const TWENTY_NINE: Self = 29; }
579impl TwentyNine for u32 { const TWENTY_NINE: Self = 29; }
580impl TwentyNine for i64 { const TWENTY_NINE: Self = 29; }
581impl TwentyNine for u64 { const TWENTY_NINE: Self = 29; }
582impl TwentyNine for i128 { const TWENTY_NINE: Self = 29; }
583impl TwentyNine for u128 { const TWENTY_NINE: Self = 29; }
584impl TwentyNine for isize { const TWENTY_NINE: Self = 29; }
585impl TwentyNine for usize { const TWENTY_NINE: Self = 29; }
586impl TwentyNine for f32 { const TWENTY_NINE: Self = 29.0; }
587impl TwentyNine for f64 { const TWENTY_NINE: Self = 29.0; }
588
589pub trait Thirty {
590 const THIRTY: Self;
591}
592
593impl Thirty for i8 { const THIRTY: Self = 30; }
594impl Thirty for u8 { const THIRTY: Self = 30; }
595impl Thirty for i16 { const THIRTY: Self = 30; }
596impl Thirty for u16 { const THIRTY: Self = 30; }
597impl Thirty for i32 { const THIRTY: Self = 30; }
598impl Thirty for u32 { const THIRTY: Self = 30; }
599impl Thirty for i64 { const THIRTY: Self = 30; }
600impl Thirty for u64 { const THIRTY: Self = 30; }
601impl Thirty for i128 { const THIRTY: Self = 30; }
602impl Thirty for u128 { const THIRTY: Self = 30; }
603impl Thirty for isize { const THIRTY: Self = 30; }
604impl Thirty for usize { const THIRTY: Self = 30; }
605impl Thirty for f32 { const THIRTY: Self = 30.0; }
606impl Thirty for f64 { const THIRTY: Self = 30.0; }
607
608pub trait ThirtyOne {
609 const THIRTY_ONE: Self;
610}
611
612impl ThirtyOne for i8 { const THIRTY_ONE: Self = 31; }
613impl ThirtyOne for u8 { const THIRTY_ONE: Self = 31; }
614impl ThirtyOne for i16 { const THIRTY_ONE: Self = 31; }
615impl ThirtyOne for u16 { const THIRTY_ONE: Self = 31; }
616impl ThirtyOne for i32 { const THIRTY_ONE: Self = 31; }
617impl ThirtyOne for u32 { const THIRTY_ONE: Self = 31; }
618impl ThirtyOne for i64 { const THIRTY_ONE: Self = 31; }
619impl ThirtyOne for u64 { const THIRTY_ONE: Self = 31; }
620impl ThirtyOne for i128 { const THIRTY_ONE: Self = 31; }
621impl ThirtyOne for u128 { const THIRTY_ONE: Self = 31; }
622impl ThirtyOne for isize { const THIRTY_ONE: Self = 31; }
623impl ThirtyOne for usize { const THIRTY_ONE: Self = 31; }
624impl ThirtyOne for f32 { const THIRTY_ONE: Self = 31.0; }
625impl ThirtyOne for f64 { const THIRTY_ONE: Self = 31.0; }
626
627pub trait ThirtyTwo {
628 const THIRTY_TWO: Self;
629}
630
631impl ThirtyTwo for i8 { const THIRTY_TWO: Self = 32; }
632impl ThirtyTwo for u8 { const THIRTY_TWO: Self = 32; }
633impl ThirtyTwo for i16 { const THIRTY_TWO: Self = 32; }
634impl ThirtyTwo for u16 { const THIRTY_TWO: Self = 32; }
635impl ThirtyTwo for i32 { const THIRTY_TWO: Self = 32; }
636impl ThirtyTwo for u32 { const THIRTY_TWO: Self = 32; }
637impl ThirtyTwo for i64 { const THIRTY_TWO: Self = 32; }
638impl ThirtyTwo for u64 { const THIRTY_TWO: Self = 32; }
639impl ThirtyTwo for i128 { const THIRTY_TWO: Self = 32; }
640impl ThirtyTwo for u128 { const THIRTY_TWO: Self = 32; }
641impl ThirtyTwo for isize { const THIRTY_TWO: Self = 32; }
642impl ThirtyTwo for usize { const THIRTY_TWO: Self = 32; }
643impl ThirtyTwo for f32 { const THIRTY_TWO: Self = 32.0; }
644impl ThirtyTwo for f64 { const THIRTY_TWO: Self = 32.0; }
645
646pub trait ThirtyThree {
647 const THIRTY_THREE: Self;
648}
649
650impl ThirtyThree for i8 { const THIRTY_THREE: Self = 33; }
651impl ThirtyThree for u8 { const THIRTY_THREE: Self = 33; }
652impl ThirtyThree for i16 { const THIRTY_THREE: Self = 33; }
653impl ThirtyThree for u16 { const THIRTY_THREE: Self = 33; }
654impl ThirtyThree for i32 { const THIRTY_THREE: Self = 33; }
655impl ThirtyThree for u32 { const THIRTY_THREE: Self = 33; }
656impl ThirtyThree for i64 { const THIRTY_THREE: Self = 33; }
657impl ThirtyThree for u64 { const THIRTY_THREE: Self = 33; }
658impl ThirtyThree for i128 { const THIRTY_THREE: Self = 33; }
659impl ThirtyThree for u128 { const THIRTY_THREE: Self = 33; }
660impl ThirtyThree for isize { const THIRTY_THREE: Self = 33; }
661impl ThirtyThree for usize { const THIRTY_THREE: Self = 33; }
662impl ThirtyThree for f32 { const THIRTY_THREE: Self = 33.0; }
663impl ThirtyThree for f64 { const THIRTY_THREE: Self = 33.0; }
664
665pub trait ThirtyFour {
666 const THIRTY_FOUR: Self;
667}
668
669impl ThirtyFour for i8 { const THIRTY_FOUR: Self = 34; }
670impl ThirtyFour for u8 { const THIRTY_FOUR: Self = 34; }
671impl ThirtyFour for i16 { const THIRTY_FOUR: Self = 34; }
672impl ThirtyFour for u16 { const THIRTY_FOUR: Self = 34; }
673impl ThirtyFour for i32 { const THIRTY_FOUR: Self = 34; }
674impl ThirtyFour for u32 { const THIRTY_FOUR: Self = 34; }
675impl ThirtyFour for i64 { const THIRTY_FOUR: Self = 34; }
676impl ThirtyFour for u64 { const THIRTY_FOUR: Self = 34; }
677impl ThirtyFour for i128 { const THIRTY_FOUR: Self = 34; }
678impl ThirtyFour for u128 { const THIRTY_FOUR: Self = 34; }
679impl ThirtyFour for isize { const THIRTY_FOUR: Self = 34; }
680impl ThirtyFour for usize { const THIRTY_FOUR: Self = 34; }
681impl ThirtyFour for f32 { const THIRTY_FOUR: Self = 34.0; }
682impl ThirtyFour for f64 { const THIRTY_FOUR: Self = 34.0; }
683
684pub trait ThirtyFive {
685 const THIRTY_FIVE: Self;
686}
687
688impl ThirtyFive for i8 { const THIRTY_FIVE: Self = 35; }
689impl ThirtyFive for u8 { const THIRTY_FIVE: Self = 35; }
690impl ThirtyFive for i16 { const THIRTY_FIVE: Self = 35; }
691impl ThirtyFive for u16 { const THIRTY_FIVE: Self = 35; }
692impl ThirtyFive for i32 { const THIRTY_FIVE: Self = 35; }
693impl ThirtyFive for u32 { const THIRTY_FIVE: Self = 35; }
694impl ThirtyFive for i64 { const THIRTY_FIVE: Self = 35; }
695impl ThirtyFive for u64 { const THIRTY_FIVE: Self = 35; }
696impl ThirtyFive for i128 { const THIRTY_FIVE: Self = 35; }
697impl ThirtyFive for u128 { const THIRTY_FIVE: Self = 35; }
698impl ThirtyFive for isize { const THIRTY_FIVE: Self = 35; }
699impl ThirtyFive for usize { const THIRTY_FIVE: Self = 35; }
700impl ThirtyFive for f32 { const THIRTY_FIVE: Self = 35.0; }
701impl ThirtyFive for f64 { const THIRTY_FIVE: Self = 35.0; }
702
703pub trait ThirtySix {
704 const THIRTY_SIX: Self;
705}
706
707impl ThirtySix for i8 { const THIRTY_SIX: Self = 36; }
708impl ThirtySix for u8 { const THIRTY_SIX: Self = 36; }
709impl ThirtySix for i16 { const THIRTY_SIX: Self = 36; }
710impl ThirtySix for u16 { const THIRTY_SIX: Self = 36; }
711impl ThirtySix for i32 { const THIRTY_SIX: Self = 36; }
712impl ThirtySix for u32 { const THIRTY_SIX: Self = 36; }
713impl ThirtySix for i64 { const THIRTY_SIX: Self = 36; }
714impl ThirtySix for u64 { const THIRTY_SIX: Self = 36; }
715impl ThirtySix for i128 { const THIRTY_SIX: Self = 36; }
716impl ThirtySix for u128 { const THIRTY_SIX: Self = 36; }
717impl ThirtySix for isize { const THIRTY_SIX: Self = 36; }
718impl ThirtySix for usize { const THIRTY_SIX: Self = 36; }
719impl ThirtySix for f32 { const THIRTY_SIX: Self = 36.0; }
720impl ThirtySix for f64 { const THIRTY_SIX: Self = 36.0; }
721
722pub trait ThirtySeven {
723 const THIRTY_SEVEN: Self;
724}
725
726impl ThirtySeven for i8 { const THIRTY_SEVEN: Self = 37; }
727impl ThirtySeven for u8 { const THIRTY_SEVEN: Self = 37; }
728impl ThirtySeven for i16 { const THIRTY_SEVEN: Self = 37; }
729impl ThirtySeven for u16 { const THIRTY_SEVEN: Self = 37; }
730impl ThirtySeven for i32 { const THIRTY_SEVEN: Self = 37; }
731impl ThirtySeven for u32 { const THIRTY_SEVEN: Self = 37; }
732impl ThirtySeven for i64 { const THIRTY_SEVEN: Self = 37; }
733impl ThirtySeven for u64 { const THIRTY_SEVEN: Self = 37; }
734impl ThirtySeven for i128 { const THIRTY_SEVEN: Self = 37; }
735impl ThirtySeven for u128 { const THIRTY_SEVEN: Self = 37; }
736impl ThirtySeven for isize { const THIRTY_SEVEN: Self = 37; }
737impl ThirtySeven for usize { const THIRTY_SEVEN: Self = 37; }
738impl ThirtySeven for f32 { const THIRTY_SEVEN: Self = 37.0; }
739impl ThirtySeven for f64 { const THIRTY_SEVEN: Self = 37.0; }
740
741pub trait ThirtyEight {
742 const THIRTY_EIGHT: Self;
743}
744
745impl ThirtyEight for i8 { const THIRTY_EIGHT: Self = 38; }
746impl ThirtyEight for u8 { const THIRTY_EIGHT: Self = 38; }
747impl ThirtyEight for i16 { const THIRTY_EIGHT: Self = 38; }
748impl ThirtyEight for u16 { const THIRTY_EIGHT: Self = 38; }
749impl ThirtyEight for i32 { const THIRTY_EIGHT: Self = 38; }
750impl ThirtyEight for u32 { const THIRTY_EIGHT: Self = 38; }
751impl ThirtyEight for i64 { const THIRTY_EIGHT: Self = 38; }
752impl ThirtyEight for u64 { const THIRTY_EIGHT: Self = 38; }
753impl ThirtyEight for i128 { const THIRTY_EIGHT: Self = 38; }
754impl ThirtyEight for u128 { const THIRTY_EIGHT: Self = 38; }
755impl ThirtyEight for isize { const THIRTY_EIGHT: Self = 38; }
756impl ThirtyEight for usize { const THIRTY_EIGHT: Self = 38; }
757impl ThirtyEight for f32 { const THIRTY_EIGHT: Self = 38.0; }
758impl ThirtyEight for f64 { const THIRTY_EIGHT: Self = 38.0; }
759
760pub trait ThirtyNine {
761 const THIRTY_NINE: Self;
762}
763
764impl ThirtyNine for i8 { const THIRTY_NINE: Self = 39; }
765impl ThirtyNine for u8 { const THIRTY_NINE: Self = 39; }
766impl ThirtyNine for i16 { const THIRTY_NINE: Self = 39; }
767impl ThirtyNine for u16 { const THIRTY_NINE: Self = 39; }
768impl ThirtyNine for i32 { const THIRTY_NINE: Self = 39; }
769impl ThirtyNine for u32 { const THIRTY_NINE: Self = 39; }
770impl ThirtyNine for i64 { const THIRTY_NINE: Self = 39; }
771impl ThirtyNine for u64 { const THIRTY_NINE: Self = 39; }
772impl ThirtyNine for i128 { const THIRTY_NINE: Self = 39; }
773impl ThirtyNine for u128 { const THIRTY_NINE: Self = 39; }
774impl ThirtyNine for isize { const THIRTY_NINE: Self = 39; }
775impl ThirtyNine for usize { const THIRTY_NINE: Self = 39; }
776impl ThirtyNine for f32 { const THIRTY_NINE: Self = 39.0; }
777impl ThirtyNine for f64 { const THIRTY_NINE: Self = 39.0; }
778
779pub trait Forty {
780 const FORTY: Self;
781}
782
783impl Forty for i8 { const FORTY: Self = 40; }
784impl Forty for u8 { const FORTY: Self = 40; }
785impl Forty for i16 { const FORTY: Self = 40; }
786impl Forty for u16 { const FORTY: Self = 40; }
787impl Forty for i32 { const FORTY: Self = 40; }
788impl Forty for u32 { const FORTY: Self = 40; }
789impl Forty for i64 { const FORTY: Self = 40; }
790impl Forty for u64 { const FORTY: Self = 40; }
791impl Forty for i128 { const FORTY: Self = 40; }
792impl Forty for u128 { const FORTY: Self = 40; }
793impl Forty for isize { const FORTY: Self = 40; }
794impl Forty for usize { const FORTY: Self = 40; }
795impl Forty for f32 { const FORTY: Self = 40.0; }
796impl Forty for f64 { const FORTY: Self = 40.0; }
797
798pub trait FortyOne {
799 const FORTY_ONE: Self;
800}
801
802impl FortyOne for i8 { const FORTY_ONE: Self = 41; }
803impl FortyOne for u8 { const FORTY_ONE: Self = 41; }
804impl FortyOne for i16 { const FORTY_ONE: Self = 41; }
805impl FortyOne for u16 { const FORTY_ONE: Self = 41; }
806impl FortyOne for i32 { const FORTY_ONE: Self = 41; }
807impl FortyOne for u32 { const FORTY_ONE: Self = 41; }
808impl FortyOne for i64 { const FORTY_ONE: Self = 41; }
809impl FortyOne for u64 { const FORTY_ONE: Self = 41; }
810impl FortyOne for i128 { const FORTY_ONE: Self = 41; }
811impl FortyOne for u128 { const FORTY_ONE: Self = 41; }
812impl FortyOne for isize { const FORTY_ONE: Self = 41; }
813impl FortyOne for usize { const FORTY_ONE: Self = 41; }
814impl FortyOne for f32 { const FORTY_ONE: Self = 41.0; }
815impl FortyOne for f64 { const FORTY_ONE: Self = 41.0; }
816
817pub trait FortyTwo {
818 const FORTY_TWO: Self;
819}
820
821impl FortyTwo for i8 { const FORTY_TWO: Self = 42; }
822impl FortyTwo for u8 { const FORTY_TWO: Self = 42; }
823impl FortyTwo for i16 { const FORTY_TWO: Self = 42; }
824impl FortyTwo for u16 { const FORTY_TWO: Self = 42; }
825impl FortyTwo for i32 { const FORTY_TWO: Self = 42; }
826impl FortyTwo for u32 { const FORTY_TWO: Self = 42; }
827impl FortyTwo for i64 { const FORTY_TWO: Self = 42; }
828impl FortyTwo for u64 { const FORTY_TWO: Self = 42; }
829impl FortyTwo for i128 { const FORTY_TWO: Self = 42; }
830impl FortyTwo for u128 { const FORTY_TWO: Self = 42; }
831impl FortyTwo for isize { const FORTY_TWO: Self = 42; }
832impl FortyTwo for usize { const FORTY_TWO: Self = 42; }
833impl FortyTwo for f32 { const FORTY_TWO: Self = 42.0; }
834impl FortyTwo for f64 { const FORTY_TWO: Self = 42.0; }
835
836pub trait FortyThree {
837 const FORTY_THREE: Self;
838}
839
840impl FortyThree for i8 { const FORTY_THREE: Self = 43; }
841impl FortyThree for u8 { const FORTY_THREE: Self = 43; }
842impl FortyThree for i16 { const FORTY_THREE: Self = 43; }
843impl FortyThree for u16 { const FORTY_THREE: Self = 43; }
844impl FortyThree for i32 { const FORTY_THREE: Self = 43; }
845impl FortyThree for u32 { const FORTY_THREE: Self = 43; }
846impl FortyThree for i64 { const FORTY_THREE: Self = 43; }
847impl FortyThree for u64 { const FORTY_THREE: Self = 43; }
848impl FortyThree for i128 { const FORTY_THREE: Self = 43; }
849impl FortyThree for u128 { const FORTY_THREE: Self = 43; }
850impl FortyThree for isize { const FORTY_THREE: Self = 43; }
851impl FortyThree for usize { const FORTY_THREE: Self = 43; }
852impl FortyThree for f32 { const FORTY_THREE: Self = 43.0; }
853impl FortyThree for f64 { const FORTY_THREE: Self = 43.0; }
854
855pub trait FortyFour {
856 const FORTY_FOUR: Self;
857}
858
859impl FortyFour for i8 { const FORTY_FOUR: Self = 44; }
860impl FortyFour for u8 { const FORTY_FOUR: Self = 44; }
861impl FortyFour for i16 { const FORTY_FOUR: Self = 44; }
862impl FortyFour for u16 { const FORTY_FOUR: Self = 44; }
863impl FortyFour for i32 { const FORTY_FOUR: Self = 44; }
864impl FortyFour for u32 { const FORTY_FOUR: Self = 44; }
865impl FortyFour for i64 { const FORTY_FOUR: Self = 44; }
866impl FortyFour for u64 { const FORTY_FOUR: Self = 44; }
867impl FortyFour for i128 { const FORTY_FOUR: Self = 44; }
868impl FortyFour for u128 { const FORTY_FOUR: Self = 44; }
869impl FortyFour for isize { const FORTY_FOUR: Self = 44; }
870impl FortyFour for usize { const FORTY_FOUR: Self = 44; }
871impl FortyFour for f32 { const FORTY_FOUR: Self = 44.0; }
872impl FortyFour for f64 { const FORTY_FOUR: Self = 44.0; }
873
874pub trait FortyFive {
875 const FORTY_FIVE: Self;
876}
877
878impl FortyFive for i8 { const FORTY_FIVE: Self = 45; }
879impl FortyFive for u8 { const FORTY_FIVE: Self = 45; }
880impl FortyFive for i16 { const FORTY_FIVE: Self = 45; }
881impl FortyFive for u16 { const FORTY_FIVE: Self = 45; }
882impl FortyFive for i32 { const FORTY_FIVE: Self = 45; }
883impl FortyFive for u32 { const FORTY_FIVE: Self = 45; }
884impl FortyFive for i64 { const FORTY_FIVE: Self = 45; }
885impl FortyFive for u64 { const FORTY_FIVE: Self = 45; }
886impl FortyFive for i128 { const FORTY_FIVE: Self = 45; }
887impl FortyFive for u128 { const FORTY_FIVE: Self = 45; }
888impl FortyFive for isize { const FORTY_FIVE: Self = 45; }
889impl FortyFive for usize { const FORTY_FIVE: Self = 45; }
890impl FortyFive for f32 { const FORTY_FIVE: Self = 45.0; }
891impl FortyFive for f64 { const FORTY_FIVE: Self = 45.0; }
892
893pub trait FortySix {
894 const FORTY_SIX: Self;
895}
896
897impl FortySix for i8 { const FORTY_SIX: Self = 46; }
898impl FortySix for u8 { const FORTY_SIX: Self = 46; }
899impl FortySix for i16 { const FORTY_SIX: Self = 46; }
900impl FortySix for u16 { const FORTY_SIX: Self = 46; }
901impl FortySix for i32 { const FORTY_SIX: Self = 46; }
902impl FortySix for u32 { const FORTY_SIX: Self = 46; }
903impl FortySix for i64 { const FORTY_SIX: Self = 46; }
904impl FortySix for u64 { const FORTY_SIX: Self = 46; }
905impl FortySix for i128 { const FORTY_SIX: Self = 46; }
906impl FortySix for u128 { const FORTY_SIX: Self = 46; }
907impl FortySix for isize { const FORTY_SIX: Self = 46; }
908impl FortySix for usize { const FORTY_SIX: Self = 46; }
909impl FortySix for f32 { const FORTY_SIX: Self = 46.0; }
910impl FortySix for f64 { const FORTY_SIX: Self = 46.0; }
911
912pub trait FortySeven {
913 const FORTY_SEVEN: Self;
914}
915
916impl FortySeven for i8 { const FORTY_SEVEN: Self = 47; }
917impl FortySeven for u8 { const FORTY_SEVEN: Self = 47; }
918impl FortySeven for i16 { const FORTY_SEVEN: Self = 47; }
919impl FortySeven for u16 { const FORTY_SEVEN: Self = 47; }
920impl FortySeven for i32 { const FORTY_SEVEN: Self = 47; }
921impl FortySeven for u32 { const FORTY_SEVEN: Self = 47; }
922impl FortySeven for i64 { const FORTY_SEVEN: Self = 47; }
923impl FortySeven for u64 { const FORTY_SEVEN: Self = 47; }
924impl FortySeven for i128 { const FORTY_SEVEN: Self = 47; }
925impl FortySeven for u128 { const FORTY_SEVEN: Self = 47; }
926impl FortySeven for isize { const FORTY_SEVEN: Self = 47; }
927impl FortySeven for usize { const FORTY_SEVEN: Self = 47; }
928impl FortySeven for f32 { const FORTY_SEVEN: Self = 47.0; }
929impl FortySeven for f64 { const FORTY_SEVEN: Self = 47.0; }
930
931pub trait FortyEight {
932 const FORTY_EIGHT: Self;
933}
934
935impl FortyEight for i8 { const FORTY_EIGHT: Self = 48; }
936impl FortyEight for u8 { const FORTY_EIGHT: Self = 48; }
937impl FortyEight for i16 { const FORTY_EIGHT: Self = 48; }
938impl FortyEight for u16 { const FORTY_EIGHT: Self = 48; }
939impl FortyEight for i32 { const FORTY_EIGHT: Self = 48; }
940impl FortyEight for u32 { const FORTY_EIGHT: Self = 48; }
941impl FortyEight for i64 { const FORTY_EIGHT: Self = 48; }
942impl FortyEight for u64 { const FORTY_EIGHT: Self = 48; }
943impl FortyEight for i128 { const FORTY_EIGHT: Self = 48; }
944impl FortyEight for u128 { const FORTY_EIGHT: Self = 48; }
945impl FortyEight for isize { const FORTY_EIGHT: Self = 48; }
946impl FortyEight for usize { const FORTY_EIGHT: Self = 48; }
947impl FortyEight for f32 { const FORTY_EIGHT: Self = 48.0; }
948impl FortyEight for f64 { const FORTY_EIGHT: Self = 48.0; }
949
950pub trait FortyNine {
951 const FORTY_NINE: Self;
952}
953
954impl FortyNine for i8 { const FORTY_NINE: Self = 49; }
955impl FortyNine for u8 { const FORTY_NINE: Self = 49; }
956impl FortyNine for i16 { const FORTY_NINE: Self = 49; }
957impl FortyNine for u16 { const FORTY_NINE: Self = 49; }
958impl FortyNine for i32 { const FORTY_NINE: Self = 49; }
959impl FortyNine for u32 { const FORTY_NINE: Self = 49; }
960impl FortyNine for i64 { const FORTY_NINE: Self = 49; }
961impl FortyNine for u64 { const FORTY_NINE: Self = 49; }
962impl FortyNine for i128 { const FORTY_NINE: Self = 49; }
963impl FortyNine for u128 { const FORTY_NINE: Self = 49; }
964impl FortyNine for isize { const FORTY_NINE: Self = 49; }
965impl FortyNine for usize { const FORTY_NINE: Self = 49; }
966impl FortyNine for f32 { const FORTY_NINE: Self = 49.0; }
967impl FortyNine for f64 { const FORTY_NINE: Self = 49.0; }
968
969pub trait Fifty {
970 const FIFTY: Self;
971}
972
973impl Fifty for i8 { const FIFTY: Self = 50; }
974impl Fifty for u8 { const FIFTY: Self = 50; }
975impl Fifty for i16 { const FIFTY: Self = 50; }
976impl Fifty for u16 { const FIFTY: Self = 50; }
977impl Fifty for i32 { const FIFTY: Self = 50; }
978impl Fifty for u32 { const FIFTY: Self = 50; }
979impl Fifty for i64 { const FIFTY: Self = 50; }
980impl Fifty for u64 { const FIFTY: Self = 50; }
981impl Fifty for i128 { const FIFTY: Self = 50; }
982impl Fifty for u128 { const FIFTY: Self = 50; }
983impl Fifty for isize { const FIFTY: Self = 50; }
984impl Fifty for usize { const FIFTY: Self = 50; }
985impl Fifty for f32 { const FIFTY: Self = 50.0; }
986impl Fifty for f64 { const FIFTY: Self = 50.0; }
987
988pub trait FiftyOne {
989 const FIFTY_ONE: Self;
990}
991
992impl FiftyOne for i8 { const FIFTY_ONE: Self = 51; }
993impl FiftyOne for u8 { const FIFTY_ONE: Self = 51; }
994impl FiftyOne for i16 { const FIFTY_ONE: Self = 51; }
995impl FiftyOne for u16 { const FIFTY_ONE: Self = 51; }
996impl FiftyOne for i32 { const FIFTY_ONE: Self = 51; }
997impl FiftyOne for u32 { const FIFTY_ONE: Self = 51; }
998impl FiftyOne for i64 { const FIFTY_ONE: Self = 51; }
999impl FiftyOne for u64 { const FIFTY_ONE: Self = 51; }
1000impl FiftyOne for i128 { const FIFTY_ONE: Self = 51; }
1001impl FiftyOne for u128 { const FIFTY_ONE: Self = 51; }
1002impl FiftyOne for isize { const FIFTY_ONE: Self = 51; }
1003impl FiftyOne for usize { const FIFTY_ONE: Self = 51; }
1004impl FiftyOne for f32 { const FIFTY_ONE: Self = 51.0; }
1005impl FiftyOne for f64 { const FIFTY_ONE: Self = 51.0; }
1006
1007pub trait FiftyTwo {
1008 const FIFTY_TWO: Self;
1009}
1010
1011impl FiftyTwo for i8 { const FIFTY_TWO: Self = 52; }
1012impl FiftyTwo for u8 { const FIFTY_TWO: Self = 52; }
1013impl FiftyTwo for i16 { const FIFTY_TWO: Self = 52; }
1014impl FiftyTwo for u16 { const FIFTY_TWO: Self = 52; }
1015impl FiftyTwo for i32 { const FIFTY_TWO: Self = 52; }
1016impl FiftyTwo for u32 { const FIFTY_TWO: Self = 52; }
1017impl FiftyTwo for i64 { const FIFTY_TWO: Self = 52; }
1018impl FiftyTwo for u64 { const FIFTY_TWO: Self = 52; }
1019impl FiftyTwo for i128 { const FIFTY_TWO: Self = 52; }
1020impl FiftyTwo for u128 { const FIFTY_TWO: Self = 52; }
1021impl FiftyTwo for isize { const FIFTY_TWO: Self = 52; }
1022impl FiftyTwo for usize { const FIFTY_TWO: Self = 52; }
1023impl FiftyTwo for f32 { const FIFTY_TWO: Self = 52.0; }
1024impl FiftyTwo for f64 { const FIFTY_TWO: Self = 52.0; }
1025
1026pub trait FiftyThree {
1027 const FIFTY_THREE: Self;
1028}
1029
1030impl FiftyThree for i8 { const FIFTY_THREE: Self = 53; }
1031impl FiftyThree for u8 { const FIFTY_THREE: Self = 53; }
1032impl FiftyThree for i16 { const FIFTY_THREE: Self = 53; }
1033impl FiftyThree for u16 { const FIFTY_THREE: Self = 53; }
1034impl FiftyThree for i32 { const FIFTY_THREE: Self = 53; }
1035impl FiftyThree for u32 { const FIFTY_THREE: Self = 53; }
1036impl FiftyThree for i64 { const FIFTY_THREE: Self = 53; }
1037impl FiftyThree for u64 { const FIFTY_THREE: Self = 53; }
1038impl FiftyThree for i128 { const FIFTY_THREE: Self = 53; }
1039impl FiftyThree for u128 { const FIFTY_THREE: Self = 53; }
1040impl FiftyThree for isize { const FIFTY_THREE: Self = 53; }
1041impl FiftyThree for usize { const FIFTY_THREE: Self = 53; }
1042impl FiftyThree for f32 { const FIFTY_THREE: Self = 53.0; }
1043impl FiftyThree for f64 { const FIFTY_THREE: Self = 53.0; }
1044
1045pub trait FiftyFour {
1046 const FIFTY_FOUR: Self;
1047}
1048
1049impl FiftyFour for i8 { const FIFTY_FOUR: Self = 54; }
1050impl FiftyFour for u8 { const FIFTY_FOUR: Self = 54; }
1051impl FiftyFour for i16 { const FIFTY_FOUR: Self = 54; }
1052impl FiftyFour for u16 { const FIFTY_FOUR: Self = 54; }
1053impl FiftyFour for i32 { const FIFTY_FOUR: Self = 54; }
1054impl FiftyFour for u32 { const FIFTY_FOUR: Self = 54; }
1055impl FiftyFour for i64 { const FIFTY_FOUR: Self = 54; }
1056impl FiftyFour for u64 { const FIFTY_FOUR: Self = 54; }
1057impl FiftyFour for i128 { const FIFTY_FOUR: Self = 54; }
1058impl FiftyFour for u128 { const FIFTY_FOUR: Self = 54; }
1059impl FiftyFour for isize { const FIFTY_FOUR: Self = 54; }
1060impl FiftyFour for usize { const FIFTY_FOUR: Self = 54; }
1061impl FiftyFour for f32 { const FIFTY_FOUR: Self = 54.0; }
1062impl FiftyFour for f64 { const FIFTY_FOUR: Self = 54.0; }
1063
1064pub trait FiftyFive {
1065 const FIFTY_FIVE: Self;
1066}
1067
1068impl FiftyFive for i8 { const FIFTY_FIVE: Self = 55; }
1069impl FiftyFive for u8 { const FIFTY_FIVE: Self = 55; }
1070impl FiftyFive for i16 { const FIFTY_FIVE: Self = 55; }
1071impl FiftyFive for u16 { const FIFTY_FIVE: Self = 55; }
1072impl FiftyFive for i32 { const FIFTY_FIVE: Self = 55; }
1073impl FiftyFive for u32 { const FIFTY_FIVE: Self = 55; }
1074impl FiftyFive for i64 { const FIFTY_FIVE: Self = 55; }
1075impl FiftyFive for u64 { const FIFTY_FIVE: Self = 55; }
1076impl FiftyFive for i128 { const FIFTY_FIVE: Self = 55; }
1077impl FiftyFive for u128 { const FIFTY_FIVE: Self = 55; }
1078impl FiftyFive for isize { const FIFTY_FIVE: Self = 55; }
1079impl FiftyFive for usize { const FIFTY_FIVE: Self = 55; }
1080impl FiftyFive for f32 { const FIFTY_FIVE: Self = 55.0; }
1081impl FiftyFive for f64 { const FIFTY_FIVE: Self = 55.0; }
1082
1083pub trait FiftySix {
1084 const FIFTY_SIX: Self;
1085}
1086
1087impl FiftySix for i8 { const FIFTY_SIX: Self = 56; }
1088impl FiftySix for u8 { const FIFTY_SIX: Self = 56; }
1089impl FiftySix for i16 { const FIFTY_SIX: Self = 56; }
1090impl FiftySix for u16 { const FIFTY_SIX: Self = 56; }
1091impl FiftySix for i32 { const FIFTY_SIX: Self = 56; }
1092impl FiftySix for u32 { const FIFTY_SIX: Self = 56; }
1093impl FiftySix for i64 { const FIFTY_SIX: Self = 56; }
1094impl FiftySix for u64 { const FIFTY_SIX: Self = 56; }
1095impl FiftySix for i128 { const FIFTY_SIX: Self = 56; }
1096impl FiftySix for u128 { const FIFTY_SIX: Self = 56; }
1097impl FiftySix for isize { const FIFTY_SIX: Self = 56; }
1098impl FiftySix for usize { const FIFTY_SIX: Self = 56; }
1099impl FiftySix for f32 { const FIFTY_SIX: Self = 56.0; }
1100impl FiftySix for f64 { const FIFTY_SIX: Self = 56.0; }
1101
1102pub trait FiftySeven {
1103 const FIFTY_SEVEN: Self;
1104}
1105
1106impl FiftySeven for i8 { const FIFTY_SEVEN: Self = 57; }
1107impl FiftySeven for u8 { const FIFTY_SEVEN: Self = 57; }
1108impl FiftySeven for i16 { const FIFTY_SEVEN: Self = 57; }
1109impl FiftySeven for u16 { const FIFTY_SEVEN: Self = 57; }
1110impl FiftySeven for i32 { const FIFTY_SEVEN: Self = 57; }
1111impl FiftySeven for u32 { const FIFTY_SEVEN: Self = 57; }
1112impl FiftySeven for i64 { const FIFTY_SEVEN: Self = 57; }
1113impl FiftySeven for u64 { const FIFTY_SEVEN: Self = 57; }
1114impl FiftySeven for i128 { const FIFTY_SEVEN: Self = 57; }
1115impl FiftySeven for u128 { const FIFTY_SEVEN: Self = 57; }
1116impl FiftySeven for isize { const FIFTY_SEVEN: Self = 57; }
1117impl FiftySeven for usize { const FIFTY_SEVEN: Self = 57; }
1118impl FiftySeven for f32 { const FIFTY_SEVEN: Self = 57.0; }
1119impl FiftySeven for f64 { const FIFTY_SEVEN: Self = 57.0; }
1120
1121pub trait FiftyEight {
1122 const FIFTY_EIGHT: Self;
1123}
1124
1125impl FiftyEight for i8 { const FIFTY_EIGHT: Self = 58; }
1126impl FiftyEight for u8 { const FIFTY_EIGHT: Self = 58; }
1127impl FiftyEight for i16 { const FIFTY_EIGHT: Self = 58; }
1128impl FiftyEight for u16 { const FIFTY_EIGHT: Self = 58; }
1129impl FiftyEight for i32 { const FIFTY_EIGHT: Self = 58; }
1130impl FiftyEight for u32 { const FIFTY_EIGHT: Self = 58; }
1131impl FiftyEight for i64 { const FIFTY_EIGHT: Self = 58; }
1132impl FiftyEight for u64 { const FIFTY_EIGHT: Self = 58; }
1133impl FiftyEight for i128 { const FIFTY_EIGHT: Self = 58; }
1134impl FiftyEight for u128 { const FIFTY_EIGHT: Self = 58; }
1135impl FiftyEight for isize { const FIFTY_EIGHT: Self = 58; }
1136impl FiftyEight for usize { const FIFTY_EIGHT: Self = 58; }
1137impl FiftyEight for f32 { const FIFTY_EIGHT: Self = 58.0; }
1138impl FiftyEight for f64 { const FIFTY_EIGHT: Self = 58.0; }
1139
1140pub trait FiftyNine {
1141 const FIFTY_NINE: Self;
1142}
1143
1144impl FiftyNine for i8 { const FIFTY_NINE: Self = 59; }
1145impl FiftyNine for u8 { const FIFTY_NINE: Self = 59; }
1146impl FiftyNine for i16 { const FIFTY_NINE: Self = 59; }
1147impl FiftyNine for u16 { const FIFTY_NINE: Self = 59; }
1148impl FiftyNine for i32 { const FIFTY_NINE: Self = 59; }
1149impl FiftyNine for u32 { const FIFTY_NINE: Self = 59; }
1150impl FiftyNine for i64 { const FIFTY_NINE: Self = 59; }
1151impl FiftyNine for u64 { const FIFTY_NINE: Self = 59; }
1152impl FiftyNine for i128 { const FIFTY_NINE: Self = 59; }
1153impl FiftyNine for u128 { const FIFTY_NINE: Self = 59; }
1154impl FiftyNine for isize { const FIFTY_NINE: Self = 59; }
1155impl FiftyNine for usize { const FIFTY_NINE: Self = 59; }
1156impl FiftyNine for f32 { const FIFTY_NINE: Self = 59.0; }
1157impl FiftyNine for f64 { const FIFTY_NINE: Self = 59.0; }
1158
1159pub trait Sixty {
1160 const SIXTY: Self;
1161}
1162
1163impl Sixty for i8 { const SIXTY: Self = 60; }
1164impl Sixty for u8 { const SIXTY: Self = 60; }
1165impl Sixty for i16 { const SIXTY: Self = 60; }
1166impl Sixty for u16 { const SIXTY: Self = 60; }
1167impl Sixty for i32 { const SIXTY: Self = 60; }
1168impl Sixty for u32 { const SIXTY: Self = 60; }
1169impl Sixty for i64 { const SIXTY: Self = 60; }
1170impl Sixty for u64 { const SIXTY: Self = 60; }
1171impl Sixty for i128 { const SIXTY: Self = 60; }
1172impl Sixty for u128 { const SIXTY: Self = 60; }
1173impl Sixty for isize { const SIXTY: Self = 60; }
1174impl Sixty for usize { const SIXTY: Self = 60; }
1175impl Sixty for f32 { const SIXTY: Self = 60.0; }
1176impl Sixty for f64 { const SIXTY: Self = 60.0; }
1177
1178pub trait SixtyOne {
1179 const SIXTY_ONE: Self;
1180}
1181
1182impl SixtyOne for i8 { const SIXTY_ONE: Self = 61; }
1183impl SixtyOne for u8 { const SIXTY_ONE: Self = 61; }
1184impl SixtyOne for i16 { const SIXTY_ONE: Self = 61; }
1185impl SixtyOne for u16 { const SIXTY_ONE: Self = 61; }
1186impl SixtyOne for i32 { const SIXTY_ONE: Self = 61; }
1187impl SixtyOne for u32 { const SIXTY_ONE: Self = 61; }
1188impl SixtyOne for i64 { const SIXTY_ONE: Self = 61; }
1189impl SixtyOne for u64 { const SIXTY_ONE: Self = 61; }
1190impl SixtyOne for i128 { const SIXTY_ONE: Self = 61; }
1191impl SixtyOne for u128 { const SIXTY_ONE: Self = 61; }
1192impl SixtyOne for isize { const SIXTY_ONE: Self = 61; }
1193impl SixtyOne for usize { const SIXTY_ONE: Self = 61; }
1194impl SixtyOne for f32 { const SIXTY_ONE: Self = 61.0; }
1195impl SixtyOne for f64 { const SIXTY_ONE: Self = 61.0; }
1196
1197pub trait SixtyTwo {
1198 const SIXTY_TWO: Self;
1199}
1200
1201impl SixtyTwo for i8 { const SIXTY_TWO: Self = 62; }
1202impl SixtyTwo for u8 { const SIXTY_TWO: Self = 62; }
1203impl SixtyTwo for i16 { const SIXTY_TWO: Self = 62; }
1204impl SixtyTwo for u16 { const SIXTY_TWO: Self = 62; }
1205impl SixtyTwo for i32 { const SIXTY_TWO: Self = 62; }
1206impl SixtyTwo for u32 { const SIXTY_TWO: Self = 62; }
1207impl SixtyTwo for i64 { const SIXTY_TWO: Self = 62; }
1208impl SixtyTwo for u64 { const SIXTY_TWO: Self = 62; }
1209impl SixtyTwo for i128 { const SIXTY_TWO: Self = 62; }
1210impl SixtyTwo for u128 { const SIXTY_TWO: Self = 62; }
1211impl SixtyTwo for isize { const SIXTY_TWO: Self = 62; }
1212impl SixtyTwo for usize { const SIXTY_TWO: Self = 62; }
1213impl SixtyTwo for f32 { const SIXTY_TWO: Self = 62.0; }
1214impl SixtyTwo for f64 { const SIXTY_TWO: Self = 62.0; }
1215
1216pub trait SixtyThree {
1217 const SIXTY_THREE: Self;
1218}
1219
1220impl SixtyThree for i8 { const SIXTY_THREE: Self = 63; }
1221impl SixtyThree for u8 { const SIXTY_THREE: Self = 63; }
1222impl SixtyThree for i16 { const SIXTY_THREE: Self = 63; }
1223impl SixtyThree for u16 { const SIXTY_THREE: Self = 63; }
1224impl SixtyThree for i32 { const SIXTY_THREE: Self = 63; }
1225impl SixtyThree for u32 { const SIXTY_THREE: Self = 63; }
1226impl SixtyThree for i64 { const SIXTY_THREE: Self = 63; }
1227impl SixtyThree for u64 { const SIXTY_THREE: Self = 63; }
1228impl SixtyThree for i128 { const SIXTY_THREE: Self = 63; }
1229impl SixtyThree for u128 { const SIXTY_THREE: Self = 63; }
1230impl SixtyThree for isize { const SIXTY_THREE: Self = 63; }
1231impl SixtyThree for usize { const SIXTY_THREE: Self = 63; }
1232impl SixtyThree for f32 { const SIXTY_THREE: Self = 63.0; }
1233impl SixtyThree for f64 { const SIXTY_THREE: Self = 63.0; }
1234
1235pub trait SixtyFour {
1236 const SIXTY_FOUR: Self;
1237}
1238
1239impl SixtyFour for i8 { const SIXTY_FOUR: Self = 64; }
1240impl SixtyFour for u8 { const SIXTY_FOUR: Self = 64; }
1241impl SixtyFour for i16 { const SIXTY_FOUR: Self = 64; }
1242impl SixtyFour for u16 { const SIXTY_FOUR: Self = 64; }
1243impl SixtyFour for i32 { const SIXTY_FOUR: Self = 64; }
1244impl SixtyFour for u32 { const SIXTY_FOUR: Self = 64; }
1245impl SixtyFour for i64 { const SIXTY_FOUR: Self = 64; }
1246impl SixtyFour for u64 { const SIXTY_FOUR: Self = 64; }
1247impl SixtyFour for i128 { const SIXTY_FOUR: Self = 64; }
1248impl SixtyFour for u128 { const SIXTY_FOUR: Self = 64; }
1249impl SixtyFour for isize { const SIXTY_FOUR: Self = 64; }
1250impl SixtyFour for usize { const SIXTY_FOUR: Self = 64; }
1251impl SixtyFour for f32 { const SIXTY_FOUR: Self = 64.0; }
1252impl SixtyFour for f64 { const SIXTY_FOUR: Self = 64.0; }
1253
1254pub trait SixtyFive {
1255 const SIXTY_FIVE: Self;
1256}
1257
1258impl SixtyFive for i8 { const SIXTY_FIVE: Self = 65; }
1259impl SixtyFive for u8 { const SIXTY_FIVE: Self = 65; }
1260impl SixtyFive for i16 { const SIXTY_FIVE: Self = 65; }
1261impl SixtyFive for u16 { const SIXTY_FIVE: Self = 65; }
1262impl SixtyFive for i32 { const SIXTY_FIVE: Self = 65; }
1263impl SixtyFive for u32 { const SIXTY_FIVE: Self = 65; }
1264impl SixtyFive for i64 { const SIXTY_FIVE: Self = 65; }
1265impl SixtyFive for u64 { const SIXTY_FIVE: Self = 65; }
1266impl SixtyFive for i128 { const SIXTY_FIVE: Self = 65; }
1267impl SixtyFive for u128 { const SIXTY_FIVE: Self = 65; }
1268impl SixtyFive for isize { const SIXTY_FIVE: Self = 65; }
1269impl SixtyFive for usize { const SIXTY_FIVE: Self = 65; }
1270impl SixtyFive for f32 { const SIXTY_FIVE: Self = 65.0; }
1271impl SixtyFive for f64 { const SIXTY_FIVE: Self = 65.0; }
1272
1273pub trait SixtySix {
1274 const SIXTY_SIX: Self;
1275}
1276
1277impl SixtySix for i8 { const SIXTY_SIX: Self = 66; }
1278impl SixtySix for u8 { const SIXTY_SIX: Self = 66; }
1279impl SixtySix for i16 { const SIXTY_SIX: Self = 66; }
1280impl SixtySix for u16 { const SIXTY_SIX: Self = 66; }
1281impl SixtySix for i32 { const SIXTY_SIX: Self = 66; }
1282impl SixtySix for u32 { const SIXTY_SIX: Self = 66; }
1283impl SixtySix for i64 { const SIXTY_SIX: Self = 66; }
1284impl SixtySix for u64 { const SIXTY_SIX: Self = 66; }
1285impl SixtySix for i128 { const SIXTY_SIX: Self = 66; }
1286impl SixtySix for u128 { const SIXTY_SIX: Self = 66; }
1287impl SixtySix for isize { const SIXTY_SIX: Self = 66; }
1288impl SixtySix for usize { const SIXTY_SIX: Self = 66; }
1289impl SixtySix for f32 { const SIXTY_SIX: Self = 66.0; }
1290impl SixtySix for f64 { const SIXTY_SIX: Self = 66.0; }
1291
1292pub trait SixtySeven {
1293 const SIXTY_SEVEN: Self;
1294}
1295
1296impl SixtySeven for i8 { const SIXTY_SEVEN: Self = 67; }
1297impl SixtySeven for u8 { const SIXTY_SEVEN: Self = 67; }
1298impl SixtySeven for i16 { const SIXTY_SEVEN: Self = 67; }
1299impl SixtySeven for u16 { const SIXTY_SEVEN: Self = 67; }
1300impl SixtySeven for i32 { const SIXTY_SEVEN: Self = 67; }
1301impl SixtySeven for u32 { const SIXTY_SEVEN: Self = 67; }
1302impl SixtySeven for i64 { const SIXTY_SEVEN: Self = 67; }
1303impl SixtySeven for u64 { const SIXTY_SEVEN: Self = 67; }
1304impl SixtySeven for i128 { const SIXTY_SEVEN: Self = 67; }
1305impl SixtySeven for u128 { const SIXTY_SEVEN: Self = 67; }
1306impl SixtySeven for isize { const SIXTY_SEVEN: Self = 67; }
1307impl SixtySeven for usize { const SIXTY_SEVEN: Self = 67; }
1308impl SixtySeven for f32 { const SIXTY_SEVEN: Self = 67.0; }
1309impl SixtySeven for f64 { const SIXTY_SEVEN: Self = 67.0; }
1310
1311pub trait SixtyEight {
1312 const SIXTY_EIGHT: Self;
1313}
1314
1315impl SixtyEight for i8 { const SIXTY_EIGHT: Self = 68; }
1316impl SixtyEight for u8 { const SIXTY_EIGHT: Self = 68; }
1317impl SixtyEight for i16 { const SIXTY_EIGHT: Self = 68; }
1318impl SixtyEight for u16 { const SIXTY_EIGHT: Self = 68; }
1319impl SixtyEight for i32 { const SIXTY_EIGHT: Self = 68; }
1320impl SixtyEight for u32 { const SIXTY_EIGHT: Self = 68; }
1321impl SixtyEight for i64 { const SIXTY_EIGHT: Self = 68; }
1322impl SixtyEight for u64 { const SIXTY_EIGHT: Self = 68; }
1323impl SixtyEight for i128 { const SIXTY_EIGHT: Self = 68; }
1324impl SixtyEight for u128 { const SIXTY_EIGHT: Self = 68; }
1325impl SixtyEight for isize { const SIXTY_EIGHT: Self = 68; }
1326impl SixtyEight for usize { const SIXTY_EIGHT: Self = 68; }
1327impl SixtyEight for f32 { const SIXTY_EIGHT: Self = 68.0; }
1328impl SixtyEight for f64 { const SIXTY_EIGHT: Self = 68.0; }
1329
1330pub trait SixtyNine {
1331 const SIXTY_NINE: Self;
1332}
1333
1334impl SixtyNine for i8 { const SIXTY_NINE: Self = 69; }
1335impl SixtyNine for u8 { const SIXTY_NINE: Self = 69; }
1336impl SixtyNine for i16 { const SIXTY_NINE: Self = 69; }
1337impl SixtyNine for u16 { const SIXTY_NINE: Self = 69; }
1338impl SixtyNine for i32 { const SIXTY_NINE: Self = 69; }
1339impl SixtyNine for u32 { const SIXTY_NINE: Self = 69; }
1340impl SixtyNine for i64 { const SIXTY_NINE: Self = 69; }
1341impl SixtyNine for u64 { const SIXTY_NINE: Self = 69; }
1342impl SixtyNine for i128 { const SIXTY_NINE: Self = 69; }
1343impl SixtyNine for u128 { const SIXTY_NINE: Self = 69; }
1344impl SixtyNine for isize { const SIXTY_NINE: Self = 69; }
1345impl SixtyNine for usize { const SIXTY_NINE: Self = 69; }
1346impl SixtyNine for f32 { const SIXTY_NINE: Self = 69.0; }
1347impl SixtyNine for f64 { const SIXTY_NINE: Self = 69.0; }
1348
1349pub trait Seventy {
1350 const SEVENTY: Self;
1351}
1352
1353impl Seventy for i8 { const SEVENTY: Self = 70; }
1354impl Seventy for u8 { const SEVENTY: Self = 70; }
1355impl Seventy for i16 { const SEVENTY: Self = 70; }
1356impl Seventy for u16 { const SEVENTY: Self = 70; }
1357impl Seventy for i32 { const SEVENTY: Self = 70; }
1358impl Seventy for u32 { const SEVENTY: Self = 70; }
1359impl Seventy for i64 { const SEVENTY: Self = 70; }
1360impl Seventy for u64 { const SEVENTY: Self = 70; }
1361impl Seventy for i128 { const SEVENTY: Self = 70; }
1362impl Seventy for u128 { const SEVENTY: Self = 70; }
1363impl Seventy for isize { const SEVENTY: Self = 70; }
1364impl Seventy for usize { const SEVENTY: Self = 70; }
1365impl Seventy for f32 { const SEVENTY: Self = 70.0; }
1366impl Seventy for f64 { const SEVENTY: Self = 70.0; }
1367
1368pub trait SeventyOne {
1369 const SEVENTY_ONE: Self;
1370}
1371
1372impl SeventyOne for i8 { const SEVENTY_ONE: Self = 71; }
1373impl SeventyOne for u8 { const SEVENTY_ONE: Self = 71; }
1374impl SeventyOne for i16 { const SEVENTY_ONE: Self = 71; }
1375impl SeventyOne for u16 { const SEVENTY_ONE: Self = 71; }
1376impl SeventyOne for i32 { const SEVENTY_ONE: Self = 71; }
1377impl SeventyOne for u32 { const SEVENTY_ONE: Self = 71; }
1378impl SeventyOne for i64 { const SEVENTY_ONE: Self = 71; }
1379impl SeventyOne for u64 { const SEVENTY_ONE: Self = 71; }
1380impl SeventyOne for i128 { const SEVENTY_ONE: Self = 71; }
1381impl SeventyOne for u128 { const SEVENTY_ONE: Self = 71; }
1382impl SeventyOne for isize { const SEVENTY_ONE: Self = 71; }
1383impl SeventyOne for usize { const SEVENTY_ONE: Self = 71; }
1384impl SeventyOne for f32 { const SEVENTY_ONE: Self = 71.0; }
1385impl SeventyOne for f64 { const SEVENTY_ONE: Self = 71.0; }
1386
1387pub trait SeventyTwo {
1388 const SEVENTY_TWO: Self;
1389}
1390
1391impl SeventyTwo for i8 { const SEVENTY_TWO: Self = 72; }
1392impl SeventyTwo for u8 { const SEVENTY_TWO: Self = 72; }
1393impl SeventyTwo for i16 { const SEVENTY_TWO: Self = 72; }
1394impl SeventyTwo for u16 { const SEVENTY_TWO: Self = 72; }
1395impl SeventyTwo for i32 { const SEVENTY_TWO: Self = 72; }
1396impl SeventyTwo for u32 { const SEVENTY_TWO: Self = 72; }
1397impl SeventyTwo for i64 { const SEVENTY_TWO: Self = 72; }
1398impl SeventyTwo for u64 { const SEVENTY_TWO: Self = 72; }
1399impl SeventyTwo for i128 { const SEVENTY_TWO: Self = 72; }
1400impl SeventyTwo for u128 { const SEVENTY_TWO: Self = 72; }
1401impl SeventyTwo for isize { const SEVENTY_TWO: Self = 72; }
1402impl SeventyTwo for usize { const SEVENTY_TWO: Self = 72; }
1403impl SeventyTwo for f32 { const SEVENTY_TWO: Self = 72.0; }
1404impl SeventyTwo for f64 { const SEVENTY_TWO: Self = 72.0; }
1405
1406pub trait SeventyThree {
1407 const SEVENTY_THREE: Self;
1408}
1409
1410impl SeventyThree for i8 { const SEVENTY_THREE: Self = 73; }
1411impl SeventyThree for u8 { const SEVENTY_THREE: Self = 73; }
1412impl SeventyThree for i16 { const SEVENTY_THREE: Self = 73; }
1413impl SeventyThree for u16 { const SEVENTY_THREE: Self = 73; }
1414impl SeventyThree for i32 { const SEVENTY_THREE: Self = 73; }
1415impl SeventyThree for u32 { const SEVENTY_THREE: Self = 73; }
1416impl SeventyThree for i64 { const SEVENTY_THREE: Self = 73; }
1417impl SeventyThree for u64 { const SEVENTY_THREE: Self = 73; }
1418impl SeventyThree for i128 { const SEVENTY_THREE: Self = 73; }
1419impl SeventyThree for u128 { const SEVENTY_THREE: Self = 73; }
1420impl SeventyThree for isize { const SEVENTY_THREE: Self = 73; }
1421impl SeventyThree for usize { const SEVENTY_THREE: Self = 73; }
1422impl SeventyThree for f32 { const SEVENTY_THREE: Self = 73.0; }
1423impl SeventyThree for f64 { const SEVENTY_THREE: Self = 73.0; }
1424
1425pub trait SeventyFour {
1426 const SEVENTY_FOUR: Self;
1427}
1428
1429impl SeventyFour for i8 { const SEVENTY_FOUR: Self = 74; }
1430impl SeventyFour for u8 { const SEVENTY_FOUR: Self = 74; }
1431impl SeventyFour for i16 { const SEVENTY_FOUR: Self = 74; }
1432impl SeventyFour for u16 { const SEVENTY_FOUR: Self = 74; }
1433impl SeventyFour for i32 { const SEVENTY_FOUR: Self = 74; }
1434impl SeventyFour for u32 { const SEVENTY_FOUR: Self = 74; }
1435impl SeventyFour for i64 { const SEVENTY_FOUR: Self = 74; }
1436impl SeventyFour for u64 { const SEVENTY_FOUR: Self = 74; }
1437impl SeventyFour for i128 { const SEVENTY_FOUR: Self = 74; }
1438impl SeventyFour for u128 { const SEVENTY_FOUR: Self = 74; }
1439impl SeventyFour for isize { const SEVENTY_FOUR: Self = 74; }
1440impl SeventyFour for usize { const SEVENTY_FOUR: Self = 74; }
1441impl SeventyFour for f32 { const SEVENTY_FOUR: Self = 74.0; }
1442impl SeventyFour for f64 { const SEVENTY_FOUR: Self = 74.0; }
1443
1444pub trait SeventyFive {
1445 const SEVENTY_FIVE: Self;
1446}
1447
1448impl SeventyFive for i8 { const SEVENTY_FIVE: Self = 75; }
1449impl SeventyFive for u8 { const SEVENTY_FIVE: Self = 75; }
1450impl SeventyFive for i16 { const SEVENTY_FIVE: Self = 75; }
1451impl SeventyFive for u16 { const SEVENTY_FIVE: Self = 75; }
1452impl SeventyFive for i32 { const SEVENTY_FIVE: Self = 75; }
1453impl SeventyFive for u32 { const SEVENTY_FIVE: Self = 75; }
1454impl SeventyFive for i64 { const SEVENTY_FIVE: Self = 75; }
1455impl SeventyFive for u64 { const SEVENTY_FIVE: Self = 75; }
1456impl SeventyFive for i128 { const SEVENTY_FIVE: Self = 75; }
1457impl SeventyFive for u128 { const SEVENTY_FIVE: Self = 75; }
1458impl SeventyFive for isize { const SEVENTY_FIVE: Self = 75; }
1459impl SeventyFive for usize { const SEVENTY_FIVE: Self = 75; }
1460impl SeventyFive for f32 { const SEVENTY_FIVE: Self = 75.0; }
1461impl SeventyFive for f64 { const SEVENTY_FIVE: Self = 75.0; }
1462
1463pub trait SeventySix {
1464 const SEVENTY_SIX: Self;
1465}
1466
1467impl SeventySix for i8 { const SEVENTY_SIX: Self = 76; }
1468impl SeventySix for u8 { const SEVENTY_SIX: Self = 76; }
1469impl SeventySix for i16 { const SEVENTY_SIX: Self = 76; }
1470impl SeventySix for u16 { const SEVENTY_SIX: Self = 76; }
1471impl SeventySix for i32 { const SEVENTY_SIX: Self = 76; }
1472impl SeventySix for u32 { const SEVENTY_SIX: Self = 76; }
1473impl SeventySix for i64 { const SEVENTY_SIX: Self = 76; }
1474impl SeventySix for u64 { const SEVENTY_SIX: Self = 76; }
1475impl SeventySix for i128 { const SEVENTY_SIX: Self = 76; }
1476impl SeventySix for u128 { const SEVENTY_SIX: Self = 76; }
1477impl SeventySix for isize { const SEVENTY_SIX: Self = 76; }
1478impl SeventySix for usize { const SEVENTY_SIX: Self = 76; }
1479impl SeventySix for f32 { const SEVENTY_SIX: Self = 76.0; }
1480impl SeventySix for f64 { const SEVENTY_SIX: Self = 76.0; }
1481
1482pub trait SeventySeven {
1483 const SEVENTY_SEVEN: Self;
1484}
1485
1486impl SeventySeven for i8 { const SEVENTY_SEVEN: Self = 77; }
1487impl SeventySeven for u8 { const SEVENTY_SEVEN: Self = 77; }
1488impl SeventySeven for i16 { const SEVENTY_SEVEN: Self = 77; }
1489impl SeventySeven for u16 { const SEVENTY_SEVEN: Self = 77; }
1490impl SeventySeven for i32 { const SEVENTY_SEVEN: Self = 77; }
1491impl SeventySeven for u32 { const SEVENTY_SEVEN: Self = 77; }
1492impl SeventySeven for i64 { const SEVENTY_SEVEN: Self = 77; }
1493impl SeventySeven for u64 { const SEVENTY_SEVEN: Self = 77; }
1494impl SeventySeven for i128 { const SEVENTY_SEVEN: Self = 77; }
1495impl SeventySeven for u128 { const SEVENTY_SEVEN: Self = 77; }
1496impl SeventySeven for isize { const SEVENTY_SEVEN: Self = 77; }
1497impl SeventySeven for usize { const SEVENTY_SEVEN: Self = 77; }
1498impl SeventySeven for f32 { const SEVENTY_SEVEN: Self = 77.0; }
1499impl SeventySeven for f64 { const SEVENTY_SEVEN: Self = 77.0; }
1500
1501pub trait SeventyEight {
1502 const SEVENTY_EIGHT: Self;
1503}
1504
1505impl SeventyEight for i8 { const SEVENTY_EIGHT: Self = 78; }
1506impl SeventyEight for u8 { const SEVENTY_EIGHT: Self = 78; }
1507impl SeventyEight for i16 { const SEVENTY_EIGHT: Self = 78; }
1508impl SeventyEight for u16 { const SEVENTY_EIGHT: Self = 78; }
1509impl SeventyEight for i32 { const SEVENTY_EIGHT: Self = 78; }
1510impl SeventyEight for u32 { const SEVENTY_EIGHT: Self = 78; }
1511impl SeventyEight for i64 { const SEVENTY_EIGHT: Self = 78; }
1512impl SeventyEight for u64 { const SEVENTY_EIGHT: Self = 78; }
1513impl SeventyEight for i128 { const SEVENTY_EIGHT: Self = 78; }
1514impl SeventyEight for u128 { const SEVENTY_EIGHT: Self = 78; }
1515impl SeventyEight for isize { const SEVENTY_EIGHT: Self = 78; }
1516impl SeventyEight for usize { const SEVENTY_EIGHT: Self = 78; }
1517impl SeventyEight for f32 { const SEVENTY_EIGHT: Self = 78.0; }
1518impl SeventyEight for f64 { const SEVENTY_EIGHT: Self = 78.0; }
1519
1520pub trait SeventyNine {
1521 const SEVENTY_NINE: Self;
1522}
1523
1524impl SeventyNine for i8 { const SEVENTY_NINE: Self = 79; }
1525impl SeventyNine for u8 { const SEVENTY_NINE: Self = 79; }
1526impl SeventyNine for i16 { const SEVENTY_NINE: Self = 79; }
1527impl SeventyNine for u16 { const SEVENTY_NINE: Self = 79; }
1528impl SeventyNine for i32 { const SEVENTY_NINE: Self = 79; }
1529impl SeventyNine for u32 { const SEVENTY_NINE: Self = 79; }
1530impl SeventyNine for i64 { const SEVENTY_NINE: Self = 79; }
1531impl SeventyNine for u64 { const SEVENTY_NINE: Self = 79; }
1532impl SeventyNine for i128 { const SEVENTY_NINE: Self = 79; }
1533impl SeventyNine for u128 { const SEVENTY_NINE: Self = 79; }
1534impl SeventyNine for isize { const SEVENTY_NINE: Self = 79; }
1535impl SeventyNine for usize { const SEVENTY_NINE: Self = 79; }
1536impl SeventyNine for f32 { const SEVENTY_NINE: Self = 79.0; }
1537impl SeventyNine for f64 { const SEVENTY_NINE: Self = 79.0; }
1538
1539pub trait Eighty {
1540 const EIGHTY: Self;
1541}
1542
1543impl Eighty for i8 { const EIGHTY: Self = 80; }
1544impl Eighty for u8 { const EIGHTY: Self = 80; }
1545impl Eighty for i16 { const EIGHTY: Self = 80; }
1546impl Eighty for u16 { const EIGHTY: Self = 80; }
1547impl Eighty for i32 { const EIGHTY: Self = 80; }
1548impl Eighty for u32 { const EIGHTY: Self = 80; }
1549impl Eighty for i64 { const EIGHTY: Self = 80; }
1550impl Eighty for u64 { const EIGHTY: Self = 80; }
1551impl Eighty for i128 { const EIGHTY: Self = 80; }
1552impl Eighty for u128 { const EIGHTY: Self = 80; }
1553impl Eighty for isize { const EIGHTY: Self = 80; }
1554impl Eighty for usize { const EIGHTY: Self = 80; }
1555impl Eighty for f32 { const EIGHTY: Self = 80.0; }
1556impl Eighty for f64 { const EIGHTY: Self = 80.0; }
1557
1558pub trait EightyOne {
1559 const EIGHTY_ONE: Self;
1560}
1561
1562impl EightyOne for i8 { const EIGHTY_ONE: Self = 81; }
1563impl EightyOne for u8 { const EIGHTY_ONE: Self = 81; }
1564impl EightyOne for i16 { const EIGHTY_ONE: Self = 81; }
1565impl EightyOne for u16 { const EIGHTY_ONE: Self = 81; }
1566impl EightyOne for i32 { const EIGHTY_ONE: Self = 81; }
1567impl EightyOne for u32 { const EIGHTY_ONE: Self = 81; }
1568impl EightyOne for i64 { const EIGHTY_ONE: Self = 81; }
1569impl EightyOne for u64 { const EIGHTY_ONE: Self = 81; }
1570impl EightyOne for i128 { const EIGHTY_ONE: Self = 81; }
1571impl EightyOne for u128 { const EIGHTY_ONE: Self = 81; }
1572impl EightyOne for isize { const EIGHTY_ONE: Self = 81; }
1573impl EightyOne for usize { const EIGHTY_ONE: Self = 81; }
1574impl EightyOne for f32 { const EIGHTY_ONE: Self = 81.0; }
1575impl EightyOne for f64 { const EIGHTY_ONE: Self = 81.0; }
1576
1577pub trait EightyTwo {
1578 const EIGHTY_TWO: Self;
1579}
1580
1581impl EightyTwo for i8 { const EIGHTY_TWO: Self = 82; }
1582impl EightyTwo for u8 { const EIGHTY_TWO: Self = 82; }
1583impl EightyTwo for i16 { const EIGHTY_TWO: Self = 82; }
1584impl EightyTwo for u16 { const EIGHTY_TWO: Self = 82; }
1585impl EightyTwo for i32 { const EIGHTY_TWO: Self = 82; }
1586impl EightyTwo for u32 { const EIGHTY_TWO: Self = 82; }
1587impl EightyTwo for i64 { const EIGHTY_TWO: Self = 82; }
1588impl EightyTwo for u64 { const EIGHTY_TWO: Self = 82; }
1589impl EightyTwo for i128 { const EIGHTY_TWO: Self = 82; }
1590impl EightyTwo for u128 { const EIGHTY_TWO: Self = 82; }
1591impl EightyTwo for isize { const EIGHTY_TWO: Self = 82; }
1592impl EightyTwo for usize { const EIGHTY_TWO: Self = 82; }
1593impl EightyTwo for f32 { const EIGHTY_TWO: Self = 82.0; }
1594impl EightyTwo for f64 { const EIGHTY_TWO: Self = 82.0; }
1595
1596pub trait EightyThree {
1597 const EIGHTY_THREE: Self;
1598}
1599
1600impl EightyThree for i8 { const EIGHTY_THREE: Self = 83; }
1601impl EightyThree for u8 { const EIGHTY_THREE: Self = 83; }
1602impl EightyThree for i16 { const EIGHTY_THREE: Self = 83; }
1603impl EightyThree for u16 { const EIGHTY_THREE: Self = 83; }
1604impl EightyThree for i32 { const EIGHTY_THREE: Self = 83; }
1605impl EightyThree for u32 { const EIGHTY_THREE: Self = 83; }
1606impl EightyThree for i64 { const EIGHTY_THREE: Self = 83; }
1607impl EightyThree for u64 { const EIGHTY_THREE: Self = 83; }
1608impl EightyThree for i128 { const EIGHTY_THREE: Self = 83; }
1609impl EightyThree for u128 { const EIGHTY_THREE: Self = 83; }
1610impl EightyThree for isize { const EIGHTY_THREE: Self = 83; }
1611impl EightyThree for usize { const EIGHTY_THREE: Self = 83; }
1612impl EightyThree for f32 { const EIGHTY_THREE: Self = 83.0; }
1613impl EightyThree for f64 { const EIGHTY_THREE: Self = 83.0; }
1614
1615pub trait EightyFour {
1616 const EIGHTY_FOUR: Self;
1617}
1618
1619impl EightyFour for i8 { const EIGHTY_FOUR: Self = 84; }
1620impl EightyFour for u8 { const EIGHTY_FOUR: Self = 84; }
1621impl EightyFour for i16 { const EIGHTY_FOUR: Self = 84; }
1622impl EightyFour for u16 { const EIGHTY_FOUR: Self = 84; }
1623impl EightyFour for i32 { const EIGHTY_FOUR: Self = 84; }
1624impl EightyFour for u32 { const EIGHTY_FOUR: Self = 84; }
1625impl EightyFour for i64 { const EIGHTY_FOUR: Self = 84; }
1626impl EightyFour for u64 { const EIGHTY_FOUR: Self = 84; }
1627impl EightyFour for i128 { const EIGHTY_FOUR: Self = 84; }
1628impl EightyFour for u128 { const EIGHTY_FOUR: Self = 84; }
1629impl EightyFour for isize { const EIGHTY_FOUR: Self = 84; }
1630impl EightyFour for usize { const EIGHTY_FOUR: Self = 84; }
1631impl EightyFour for f32 { const EIGHTY_FOUR: Self = 84.0; }
1632impl EightyFour for f64 { const EIGHTY_FOUR: Self = 84.0; }
1633
1634pub trait EightyFive {
1635 const EIGHTY_FIVE: Self;
1636}
1637
1638impl EightyFive for i8 { const EIGHTY_FIVE: Self = 85; }
1639impl EightyFive for u8 { const EIGHTY_FIVE: Self = 85; }
1640impl EightyFive for i16 { const EIGHTY_FIVE: Self = 85; }
1641impl EightyFive for u16 { const EIGHTY_FIVE: Self = 85; }
1642impl EightyFive for i32 { const EIGHTY_FIVE: Self = 85; }
1643impl EightyFive for u32 { const EIGHTY_FIVE: Self = 85; }
1644impl EightyFive for i64 { const EIGHTY_FIVE: Self = 85; }
1645impl EightyFive for u64 { const EIGHTY_FIVE: Self = 85; }
1646impl EightyFive for i128 { const EIGHTY_FIVE: Self = 85; }
1647impl EightyFive for u128 { const EIGHTY_FIVE: Self = 85; }
1648impl EightyFive for isize { const EIGHTY_FIVE: Self = 85; }
1649impl EightyFive for usize { const EIGHTY_FIVE: Self = 85; }
1650impl EightyFive for f32 { const EIGHTY_FIVE: Self = 85.0; }
1651impl EightyFive for f64 { const EIGHTY_FIVE: Self = 85.0; }
1652
1653pub trait EightySix {
1654 const EIGHTY_SIX: Self;
1655}
1656
1657impl EightySix for i8 { const EIGHTY_SIX: Self = 86; }
1658impl EightySix for u8 { const EIGHTY_SIX: Self = 86; }
1659impl EightySix for i16 { const EIGHTY_SIX: Self = 86; }
1660impl EightySix for u16 { const EIGHTY_SIX: Self = 86; }
1661impl EightySix for i32 { const EIGHTY_SIX: Self = 86; }
1662impl EightySix for u32 { const EIGHTY_SIX: Self = 86; }
1663impl EightySix for i64 { const EIGHTY_SIX: Self = 86; }
1664impl EightySix for u64 { const EIGHTY_SIX: Self = 86; }
1665impl EightySix for i128 { const EIGHTY_SIX: Self = 86; }
1666impl EightySix for u128 { const EIGHTY_SIX: Self = 86; }
1667impl EightySix for isize { const EIGHTY_SIX: Self = 86; }
1668impl EightySix for usize { const EIGHTY_SIX: Self = 86; }
1669impl EightySix for f32 { const EIGHTY_SIX: Self = 86.0; }
1670impl EightySix for f64 { const EIGHTY_SIX: Self = 86.0; }
1671
1672pub trait EightySeven {
1673 const EIGHTY_SEVEN: Self;
1674}
1675
1676impl EightySeven for i8 { const EIGHTY_SEVEN: Self = 87; }
1677impl EightySeven for u8 { const EIGHTY_SEVEN: Self = 87; }
1678impl EightySeven for i16 { const EIGHTY_SEVEN: Self = 87; }
1679impl EightySeven for u16 { const EIGHTY_SEVEN: Self = 87; }
1680impl EightySeven for i32 { const EIGHTY_SEVEN: Self = 87; }
1681impl EightySeven for u32 { const EIGHTY_SEVEN: Self = 87; }
1682impl EightySeven for i64 { const EIGHTY_SEVEN: Self = 87; }
1683impl EightySeven for u64 { const EIGHTY_SEVEN: Self = 87; }
1684impl EightySeven for i128 { const EIGHTY_SEVEN: Self = 87; }
1685impl EightySeven for u128 { const EIGHTY_SEVEN: Self = 87; }
1686impl EightySeven for isize { const EIGHTY_SEVEN: Self = 87; }
1687impl EightySeven for usize { const EIGHTY_SEVEN: Self = 87; }
1688impl EightySeven for f32 { const EIGHTY_SEVEN: Self = 87.0; }
1689impl EightySeven for f64 { const EIGHTY_SEVEN: Self = 87.0; }
1690
1691pub trait EightyEight {
1692 const EIGHTY_EIGHT: Self;
1693}
1694
1695impl EightyEight for i8 { const EIGHTY_EIGHT: Self = 88; }
1696impl EightyEight for u8 { const EIGHTY_EIGHT: Self = 88; }
1697impl EightyEight for i16 { const EIGHTY_EIGHT: Self = 88; }
1698impl EightyEight for u16 { const EIGHTY_EIGHT: Self = 88; }
1699impl EightyEight for i32 { const EIGHTY_EIGHT: Self = 88; }
1700impl EightyEight for u32 { const EIGHTY_EIGHT: Self = 88; }
1701impl EightyEight for i64 { const EIGHTY_EIGHT: Self = 88; }
1702impl EightyEight for u64 { const EIGHTY_EIGHT: Self = 88; }
1703impl EightyEight for i128 { const EIGHTY_EIGHT: Self = 88; }
1704impl EightyEight for u128 { const EIGHTY_EIGHT: Self = 88; }
1705impl EightyEight for isize { const EIGHTY_EIGHT: Self = 88; }
1706impl EightyEight for usize { const EIGHTY_EIGHT: Self = 88; }
1707impl EightyEight for f32 { const EIGHTY_EIGHT: Self = 88.0; }
1708impl EightyEight for f64 { const EIGHTY_EIGHT: Self = 88.0; }
1709
1710pub trait EightyNine {
1711 const EIGHTY_NINE: Self;
1712}
1713
1714impl EightyNine for i8 { const EIGHTY_NINE: Self = 89; }
1715impl EightyNine for u8 { const EIGHTY_NINE: Self = 89; }
1716impl EightyNine for i16 { const EIGHTY_NINE: Self = 89; }
1717impl EightyNine for u16 { const EIGHTY_NINE: Self = 89; }
1718impl EightyNine for i32 { const EIGHTY_NINE: Self = 89; }
1719impl EightyNine for u32 { const EIGHTY_NINE: Self = 89; }
1720impl EightyNine for i64 { const EIGHTY_NINE: Self = 89; }
1721impl EightyNine for u64 { const EIGHTY_NINE: Self = 89; }
1722impl EightyNine for i128 { const EIGHTY_NINE: Self = 89; }
1723impl EightyNine for u128 { const EIGHTY_NINE: Self = 89; }
1724impl EightyNine for isize { const EIGHTY_NINE: Self = 89; }
1725impl EightyNine for usize { const EIGHTY_NINE: Self = 89; }
1726impl EightyNine for f32 { const EIGHTY_NINE: Self = 89.0; }
1727impl EightyNine for f64 { const EIGHTY_NINE: Self = 89.0; }
1728
1729pub trait Ninety {
1730 const NINETY: Self;
1731}
1732
1733impl Ninety for i8 { const NINETY: Self = 90; }
1734impl Ninety for u8 { const NINETY: Self = 90; }
1735impl Ninety for i16 { const NINETY: Self = 90; }
1736impl Ninety for u16 { const NINETY: Self = 90; }
1737impl Ninety for i32 { const NINETY: Self = 90; }
1738impl Ninety for u32 { const NINETY: Self = 90; }
1739impl Ninety for i64 { const NINETY: Self = 90; }
1740impl Ninety for u64 { const NINETY: Self = 90; }
1741impl Ninety for i128 { const NINETY: Self = 90; }
1742impl Ninety for u128 { const NINETY: Self = 90; }
1743impl Ninety for isize { const NINETY: Self = 90; }
1744impl Ninety for usize { const NINETY: Self = 90; }
1745impl Ninety for f32 { const NINETY: Self = 90.0; }
1746impl Ninety for f64 { const NINETY: Self = 90.0; }
1747
1748pub trait NinetyOne {
1749 const NINETY_ONE: Self;
1750}
1751
1752impl NinetyOne for i8 { const NINETY_ONE: Self = 91; }
1753impl NinetyOne for u8 { const NINETY_ONE: Self = 91; }
1754impl NinetyOne for i16 { const NINETY_ONE: Self = 91; }
1755impl NinetyOne for u16 { const NINETY_ONE: Self = 91; }
1756impl NinetyOne for i32 { const NINETY_ONE: Self = 91; }
1757impl NinetyOne for u32 { const NINETY_ONE: Self = 91; }
1758impl NinetyOne for i64 { const NINETY_ONE: Self = 91; }
1759impl NinetyOne for u64 { const NINETY_ONE: Self = 91; }
1760impl NinetyOne for i128 { const NINETY_ONE: Self = 91; }
1761impl NinetyOne for u128 { const NINETY_ONE: Self = 91; }
1762impl NinetyOne for isize { const NINETY_ONE: Self = 91; }
1763impl NinetyOne for usize { const NINETY_ONE: Self = 91; }
1764impl NinetyOne for f32 { const NINETY_ONE: Self = 91.0; }
1765impl NinetyOne for f64 { const NINETY_ONE: Self = 91.0; }
1766
1767pub trait NinetyTwo {
1768 const NINETY_TWO: Self;
1769}
1770
1771impl NinetyTwo for i8 { const NINETY_TWO: Self = 92; }
1772impl NinetyTwo for u8 { const NINETY_TWO: Self = 92; }
1773impl NinetyTwo for i16 { const NINETY_TWO: Self = 92; }
1774impl NinetyTwo for u16 { const NINETY_TWO: Self = 92; }
1775impl NinetyTwo for i32 { const NINETY_TWO: Self = 92; }
1776impl NinetyTwo for u32 { const NINETY_TWO: Self = 92; }
1777impl NinetyTwo for i64 { const NINETY_TWO: Self = 92; }
1778impl NinetyTwo for u64 { const NINETY_TWO: Self = 92; }
1779impl NinetyTwo for i128 { const NINETY_TWO: Self = 92; }
1780impl NinetyTwo for u128 { const NINETY_TWO: Self = 92; }
1781impl NinetyTwo for isize { const NINETY_TWO: Self = 92; }
1782impl NinetyTwo for usize { const NINETY_TWO: Self = 92; }
1783impl NinetyTwo for f32 { const NINETY_TWO: Self = 92.0; }
1784impl NinetyTwo for f64 { const NINETY_TWO: Self = 92.0; }
1785
1786pub trait NinetyThree {
1787 const NINETY_THREE: Self;
1788}
1789
1790impl NinetyThree for i8 { const NINETY_THREE: Self = 93; }
1791impl NinetyThree for u8 { const NINETY_THREE: Self = 93; }
1792impl NinetyThree for i16 { const NINETY_THREE: Self = 93; }
1793impl NinetyThree for u16 { const NINETY_THREE: Self = 93; }
1794impl NinetyThree for i32 { const NINETY_THREE: Self = 93; }
1795impl NinetyThree for u32 { const NINETY_THREE: Self = 93; }
1796impl NinetyThree for i64 { const NINETY_THREE: Self = 93; }
1797impl NinetyThree for u64 { const NINETY_THREE: Self = 93; }
1798impl NinetyThree for i128 { const NINETY_THREE: Self = 93; }
1799impl NinetyThree for u128 { const NINETY_THREE: Self = 93; }
1800impl NinetyThree for isize { const NINETY_THREE: Self = 93; }
1801impl NinetyThree for usize { const NINETY_THREE: Self = 93; }
1802impl NinetyThree for f32 { const NINETY_THREE: Self = 93.0; }
1803impl NinetyThree for f64 { const NINETY_THREE: Self = 93.0; }
1804
1805pub trait NinetyFour {
1806 const NINETY_FOUR: Self;
1807}
1808
1809impl NinetyFour for i8 { const NINETY_FOUR: Self = 94; }
1810impl NinetyFour for u8 { const NINETY_FOUR: Self = 94; }
1811impl NinetyFour for i16 { const NINETY_FOUR: Self = 94; }
1812impl NinetyFour for u16 { const NINETY_FOUR: Self = 94; }
1813impl NinetyFour for i32 { const NINETY_FOUR: Self = 94; }
1814impl NinetyFour for u32 { const NINETY_FOUR: Self = 94; }
1815impl NinetyFour for i64 { const NINETY_FOUR: Self = 94; }
1816impl NinetyFour for u64 { const NINETY_FOUR: Self = 94; }
1817impl NinetyFour for i128 { const NINETY_FOUR: Self = 94; }
1818impl NinetyFour for u128 { const NINETY_FOUR: Self = 94; }
1819impl NinetyFour for isize { const NINETY_FOUR: Self = 94; }
1820impl NinetyFour for usize { const NINETY_FOUR: Self = 94; }
1821impl NinetyFour for f32 { const NINETY_FOUR: Self = 94.0; }
1822impl NinetyFour for f64 { const NINETY_FOUR: Self = 94.0; }
1823
1824pub trait NinetyFive {
1825 const NINETY_FIVE: Self;
1826}
1827
1828impl NinetyFive for i8 { const NINETY_FIVE: Self = 95; }
1829impl NinetyFive for u8 { const NINETY_FIVE: Self = 95; }
1830impl NinetyFive for i16 { const NINETY_FIVE: Self = 95; }
1831impl NinetyFive for u16 { const NINETY_FIVE: Self = 95; }
1832impl NinetyFive for i32 { const NINETY_FIVE: Self = 95; }
1833impl NinetyFive for u32 { const NINETY_FIVE: Self = 95; }
1834impl NinetyFive for i64 { const NINETY_FIVE: Self = 95; }
1835impl NinetyFive for u64 { const NINETY_FIVE: Self = 95; }
1836impl NinetyFive for i128 { const NINETY_FIVE: Self = 95; }
1837impl NinetyFive for u128 { const NINETY_FIVE: Self = 95; }
1838impl NinetyFive for isize { const NINETY_FIVE: Self = 95; }
1839impl NinetyFive for usize { const NINETY_FIVE: Self = 95; }
1840impl NinetyFive for f32 { const NINETY_FIVE: Self = 95.0; }
1841impl NinetyFive for f64 { const NINETY_FIVE: Self = 95.0; }
1842
1843pub trait NinetySix {
1844 const NINETY_SIX: Self;
1845}
1846
1847impl NinetySix for i8 { const NINETY_SIX: Self = 96; }
1848impl NinetySix for u8 { const NINETY_SIX: Self = 96; }
1849impl NinetySix for i16 { const NINETY_SIX: Self = 96; }
1850impl NinetySix for u16 { const NINETY_SIX: Self = 96; }
1851impl NinetySix for i32 { const NINETY_SIX: Self = 96; }
1852impl NinetySix for u32 { const NINETY_SIX: Self = 96; }
1853impl NinetySix for i64 { const NINETY_SIX: Self = 96; }
1854impl NinetySix for u64 { const NINETY_SIX: Self = 96; }
1855impl NinetySix for i128 { const NINETY_SIX: Self = 96; }
1856impl NinetySix for u128 { const NINETY_SIX: Self = 96; }
1857impl NinetySix for isize { const NINETY_SIX: Self = 96; }
1858impl NinetySix for usize { const NINETY_SIX: Self = 96; }
1859impl NinetySix for f32 { const NINETY_SIX: Self = 96.0; }
1860impl NinetySix for f64 { const NINETY_SIX: Self = 96.0; }
1861
1862pub trait NinetySeven {
1863 const NINETY_SEVEN: Self;
1864}
1865
1866impl NinetySeven for i8 { const NINETY_SEVEN: Self = 97; }
1867impl NinetySeven for u8 { const NINETY_SEVEN: Self = 97; }
1868impl NinetySeven for i16 { const NINETY_SEVEN: Self = 97; }
1869impl NinetySeven for u16 { const NINETY_SEVEN: Self = 97; }
1870impl NinetySeven for i32 { const NINETY_SEVEN: Self = 97; }
1871impl NinetySeven for u32 { const NINETY_SEVEN: Self = 97; }
1872impl NinetySeven for i64 { const NINETY_SEVEN: Self = 97; }
1873impl NinetySeven for u64 { const NINETY_SEVEN: Self = 97; }
1874impl NinetySeven for i128 { const NINETY_SEVEN: Self = 97; }
1875impl NinetySeven for u128 { const NINETY_SEVEN: Self = 97; }
1876impl NinetySeven for isize { const NINETY_SEVEN: Self = 97; }
1877impl NinetySeven for usize { const NINETY_SEVEN: Self = 97; }
1878impl NinetySeven for f32 { const NINETY_SEVEN: Self = 97.0; }
1879impl NinetySeven for f64 { const NINETY_SEVEN: Self = 97.0; }
1880
1881pub trait NinetyEight {
1882 const NINETY_EIGHT: Self;
1883}
1884
1885impl NinetyEight for i8 { const NINETY_EIGHT: Self = 98; }
1886impl NinetyEight for u8 { const NINETY_EIGHT: Self = 98; }
1887impl NinetyEight for i16 { const NINETY_EIGHT: Self = 98; }
1888impl NinetyEight for u16 { const NINETY_EIGHT: Self = 98; }
1889impl NinetyEight for i32 { const NINETY_EIGHT: Self = 98; }
1890impl NinetyEight for u32 { const NINETY_EIGHT: Self = 98; }
1891impl NinetyEight for i64 { const NINETY_EIGHT: Self = 98; }
1892impl NinetyEight for u64 { const NINETY_EIGHT: Self = 98; }
1893impl NinetyEight for i128 { const NINETY_EIGHT: Self = 98; }
1894impl NinetyEight for u128 { const NINETY_EIGHT: Self = 98; }
1895impl NinetyEight for isize { const NINETY_EIGHT: Self = 98; }
1896impl NinetyEight for usize { const NINETY_EIGHT: Self = 98; }
1897impl NinetyEight for f32 { const NINETY_EIGHT: Self = 98.0; }
1898impl NinetyEight for f64 { const NINETY_EIGHT: Self = 98.0; }
1899
1900pub trait NinetyNine {
1901 const NINETY_NINE: Self;
1902}
1903
1904impl NinetyNine for i8 { const NINETY_NINE: Self = 99; }
1905impl NinetyNine for u8 { const NINETY_NINE: Self = 99; }
1906impl NinetyNine for i16 { const NINETY_NINE: Self = 99; }
1907impl NinetyNine for u16 { const NINETY_NINE: Self = 99; }
1908impl NinetyNine for i32 { const NINETY_NINE: Self = 99; }
1909impl NinetyNine for u32 { const NINETY_NINE: Self = 99; }
1910impl NinetyNine for i64 { const NINETY_NINE: Self = 99; }
1911impl NinetyNine for u64 { const NINETY_NINE: Self = 99; }
1912impl NinetyNine for i128 { const NINETY_NINE: Self = 99; }
1913impl NinetyNine for u128 { const NINETY_NINE: Self = 99; }
1914impl NinetyNine for isize { const NINETY_NINE: Self = 99; }
1915impl NinetyNine for usize { const NINETY_NINE: Self = 99; }
1916impl NinetyNine for f32 { const NINETY_NINE: Self = 99.0; }
1917impl NinetyNine for f64 { const NINETY_NINE: Self = 99.0; }
1918
1919pub trait OneHundred {
1920 const ONE_HUNDRED: Self;
1921}
1922
1923impl OneHundred for i8 { const ONE_HUNDRED: Self = 100; }
1924impl OneHundred for u8 { const ONE_HUNDRED: Self = 100; }
1925impl OneHundred for i16 { const ONE_HUNDRED: Self = 100; }
1926impl OneHundred for u16 { const ONE_HUNDRED: Self = 100; }
1927impl OneHundred for i32 { const ONE_HUNDRED: Self = 100; }
1928impl OneHundred for u32 { const ONE_HUNDRED: Self = 100; }
1929impl OneHundred for i64 { const ONE_HUNDRED: Self = 100; }
1930impl OneHundred for u64 { const ONE_HUNDRED: Self = 100; }
1931impl OneHundred for i128 { const ONE_HUNDRED: Self = 100; }
1932impl OneHundred for u128 { const ONE_HUNDRED: Self = 100; }
1933impl OneHundred for isize { const ONE_HUNDRED: Self = 100; }
1934impl OneHundred for usize { const ONE_HUNDRED: Self = 100; }
1935impl OneHundred for f32 { const ONE_HUNDRED: Self = 100.0; }
1936impl OneHundred for f64 { const ONE_HUNDRED: Self = 100.0; }
1937
1938pub trait OneHundredOne {
1939 const ONE_HUNDRED_ONE: Self;
1940}
1941
1942impl OneHundredOne for i8 { const ONE_HUNDRED_ONE: Self = 101; }
1943impl OneHundredOne for u8 { const ONE_HUNDRED_ONE: Self = 101; }
1944impl OneHundredOne for i16 { const ONE_HUNDRED_ONE: Self = 101; }
1945impl OneHundredOne for u16 { const ONE_HUNDRED_ONE: Self = 101; }
1946impl OneHundredOne for i32 { const ONE_HUNDRED_ONE: Self = 101; }
1947impl OneHundredOne for u32 { const ONE_HUNDRED_ONE: Self = 101; }
1948impl OneHundredOne for i64 { const ONE_HUNDRED_ONE: Self = 101; }
1949impl OneHundredOne for u64 { const ONE_HUNDRED_ONE: Self = 101; }
1950impl OneHundredOne for i128 { const ONE_HUNDRED_ONE: Self = 101; }
1951impl OneHundredOne for u128 { const ONE_HUNDRED_ONE: Self = 101; }
1952impl OneHundredOne for isize { const ONE_HUNDRED_ONE: Self = 101; }
1953impl OneHundredOne for usize { const ONE_HUNDRED_ONE: Self = 101; }
1954impl OneHundredOne for f32 { const ONE_HUNDRED_ONE: Self = 101.0; }
1955impl OneHundredOne for f64 { const ONE_HUNDRED_ONE: Self = 101.0; }
1956
1957pub trait OneHundredTwo {
1958 const ONE_HUNDRED_TWO: Self;
1959}
1960
1961impl OneHundredTwo for i8 { const ONE_HUNDRED_TWO: Self = 102; }
1962impl OneHundredTwo for u8 { const ONE_HUNDRED_TWO: Self = 102; }
1963impl OneHundredTwo for i16 { const ONE_HUNDRED_TWO: Self = 102; }
1964impl OneHundredTwo for u16 { const ONE_HUNDRED_TWO: Self = 102; }
1965impl OneHundredTwo for i32 { const ONE_HUNDRED_TWO: Self = 102; }
1966impl OneHundredTwo for u32 { const ONE_HUNDRED_TWO: Self = 102; }
1967impl OneHundredTwo for i64 { const ONE_HUNDRED_TWO: Self = 102; }
1968impl OneHundredTwo for u64 { const ONE_HUNDRED_TWO: Self = 102; }
1969impl OneHundredTwo for i128 { const ONE_HUNDRED_TWO: Self = 102; }
1970impl OneHundredTwo for u128 { const ONE_HUNDRED_TWO: Self = 102; }
1971impl OneHundredTwo for isize { const ONE_HUNDRED_TWO: Self = 102; }
1972impl OneHundredTwo for usize { const ONE_HUNDRED_TWO: Self = 102; }
1973impl OneHundredTwo for f32 { const ONE_HUNDRED_TWO: Self = 102.0; }
1974impl OneHundredTwo for f64 { const ONE_HUNDRED_TWO: Self = 102.0; }
1975
1976pub trait OneHundredThree {
1977 const ONE_HUNDRED_THREE: Self;
1978}
1979
1980impl OneHundredThree for i8 { const ONE_HUNDRED_THREE: Self = 103; }
1981impl OneHundredThree for u8 { const ONE_HUNDRED_THREE: Self = 103; }
1982impl OneHundredThree for i16 { const ONE_HUNDRED_THREE: Self = 103; }
1983impl OneHundredThree for u16 { const ONE_HUNDRED_THREE: Self = 103; }
1984impl OneHundredThree for i32 { const ONE_HUNDRED_THREE: Self = 103; }
1985impl OneHundredThree for u32 { const ONE_HUNDRED_THREE: Self = 103; }
1986impl OneHundredThree for i64 { const ONE_HUNDRED_THREE: Self = 103; }
1987impl OneHundredThree for u64 { const ONE_HUNDRED_THREE: Self = 103; }
1988impl OneHundredThree for i128 { const ONE_HUNDRED_THREE: Self = 103; }
1989impl OneHundredThree for u128 { const ONE_HUNDRED_THREE: Self = 103; }
1990impl OneHundredThree for isize { const ONE_HUNDRED_THREE: Self = 103; }
1991impl OneHundredThree for usize { const ONE_HUNDRED_THREE: Self = 103; }
1992impl OneHundredThree for f32 { const ONE_HUNDRED_THREE: Self = 103.0; }
1993impl OneHundredThree for f64 { const ONE_HUNDRED_THREE: Self = 103.0; }
1994
1995pub trait OneHundredFour {
1996 const ONE_HUNDRED_FOUR: Self;
1997}
1998
1999impl OneHundredFour for i8 { const ONE_HUNDRED_FOUR: Self = 104; }
2000impl OneHundredFour for u8 { const ONE_HUNDRED_FOUR: Self = 104; }
2001impl OneHundredFour for i16 { const ONE_HUNDRED_FOUR: Self = 104; }
2002impl OneHundredFour for u16 { const ONE_HUNDRED_FOUR: Self = 104; }
2003impl OneHundredFour for i32 { const ONE_HUNDRED_FOUR: Self = 104; }
2004impl OneHundredFour for u32 { const ONE_HUNDRED_FOUR: Self = 104; }
2005impl OneHundredFour for i64 { const ONE_HUNDRED_FOUR: Self = 104; }
2006impl OneHundredFour for u64 { const ONE_HUNDRED_FOUR: Self = 104; }
2007impl OneHundredFour for i128 { const ONE_HUNDRED_FOUR: Self = 104; }
2008impl OneHundredFour for u128 { const ONE_HUNDRED_FOUR: Self = 104; }
2009impl OneHundredFour for isize { const ONE_HUNDRED_FOUR: Self = 104; }
2010impl OneHundredFour for usize { const ONE_HUNDRED_FOUR: Self = 104; }
2011impl OneHundredFour for f32 { const ONE_HUNDRED_FOUR: Self = 104.0; }
2012impl OneHundredFour for f64 { const ONE_HUNDRED_FOUR: Self = 104.0; }
2013
2014pub trait OneHundredFive {
2015 const ONE_HUNDRED_FIVE: Self;
2016}
2017
2018impl OneHundredFive for i8 { const ONE_HUNDRED_FIVE: Self = 105; }
2019impl OneHundredFive for u8 { const ONE_HUNDRED_FIVE: Self = 105; }
2020impl OneHundredFive for i16 { const ONE_HUNDRED_FIVE: Self = 105; }
2021impl OneHundredFive for u16 { const ONE_HUNDRED_FIVE: Self = 105; }
2022impl OneHundredFive for i32 { const ONE_HUNDRED_FIVE: Self = 105; }
2023impl OneHundredFive for u32 { const ONE_HUNDRED_FIVE: Self = 105; }
2024impl OneHundredFive for i64 { const ONE_HUNDRED_FIVE: Self = 105; }
2025impl OneHundredFive for u64 { const ONE_HUNDRED_FIVE: Self = 105; }
2026impl OneHundredFive for i128 { const ONE_HUNDRED_FIVE: Self = 105; }
2027impl OneHundredFive for u128 { const ONE_HUNDRED_FIVE: Self = 105; }
2028impl OneHundredFive for isize { const ONE_HUNDRED_FIVE: Self = 105; }
2029impl OneHundredFive for usize { const ONE_HUNDRED_FIVE: Self = 105; }
2030impl OneHundredFive for f32 { const ONE_HUNDRED_FIVE: Self = 105.0; }
2031impl OneHundredFive for f64 { const ONE_HUNDRED_FIVE: Self = 105.0; }
2032
2033pub trait OneHundredSix {
2034 const ONE_HUNDRED_SIX: Self;
2035}
2036
2037impl OneHundredSix for i8 { const ONE_HUNDRED_SIX: Self = 106; }
2038impl OneHundredSix for u8 { const ONE_HUNDRED_SIX: Self = 106; }
2039impl OneHundredSix for i16 { const ONE_HUNDRED_SIX: Self = 106; }
2040impl OneHundredSix for u16 { const ONE_HUNDRED_SIX: Self = 106; }
2041impl OneHundredSix for i32 { const ONE_HUNDRED_SIX: Self = 106; }
2042impl OneHundredSix for u32 { const ONE_HUNDRED_SIX: Self = 106; }
2043impl OneHundredSix for i64 { const ONE_HUNDRED_SIX: Self = 106; }
2044impl OneHundredSix for u64 { const ONE_HUNDRED_SIX: Self = 106; }
2045impl OneHundredSix for i128 { const ONE_HUNDRED_SIX: Self = 106; }
2046impl OneHundredSix for u128 { const ONE_HUNDRED_SIX: Self = 106; }
2047impl OneHundredSix for isize { const ONE_HUNDRED_SIX: Self = 106; }
2048impl OneHundredSix for usize { const ONE_HUNDRED_SIX: Self = 106; }
2049impl OneHundredSix for f32 { const ONE_HUNDRED_SIX: Self = 106.0; }
2050impl OneHundredSix for f64 { const ONE_HUNDRED_SIX: Self = 106.0; }
2051
2052pub trait OneHundredSeven {
2053 const ONE_HUNDRED_SEVEN: Self;
2054}
2055
2056impl OneHundredSeven for i8 { const ONE_HUNDRED_SEVEN: Self = 107; }
2057impl OneHundredSeven for u8 { const ONE_HUNDRED_SEVEN: Self = 107; }
2058impl OneHundredSeven for i16 { const ONE_HUNDRED_SEVEN: Self = 107; }
2059impl OneHundredSeven for u16 { const ONE_HUNDRED_SEVEN: Self = 107; }
2060impl OneHundredSeven for i32 { const ONE_HUNDRED_SEVEN: Self = 107; }
2061impl OneHundredSeven for u32 { const ONE_HUNDRED_SEVEN: Self = 107; }
2062impl OneHundredSeven for i64 { const ONE_HUNDRED_SEVEN: Self = 107; }
2063impl OneHundredSeven for u64 { const ONE_HUNDRED_SEVEN: Self = 107; }
2064impl OneHundredSeven for i128 { const ONE_HUNDRED_SEVEN: Self = 107; }
2065impl OneHundredSeven for u128 { const ONE_HUNDRED_SEVEN: Self = 107; }
2066impl OneHundredSeven for isize { const ONE_HUNDRED_SEVEN: Self = 107; }
2067impl OneHundredSeven for usize { const ONE_HUNDRED_SEVEN: Self = 107; }
2068impl OneHundredSeven for f32 { const ONE_HUNDRED_SEVEN: Self = 107.0; }
2069impl OneHundredSeven for f64 { const ONE_HUNDRED_SEVEN: Self = 107.0; }
2070
2071pub trait OneHundredEight {
2072 const ONE_HUNDRED_EIGHT: Self;
2073}
2074
2075impl OneHundredEight for i8 { const ONE_HUNDRED_EIGHT: Self = 108; }
2076impl OneHundredEight for u8 { const ONE_HUNDRED_EIGHT: Self = 108; }
2077impl OneHundredEight for i16 { const ONE_HUNDRED_EIGHT: Self = 108; }
2078impl OneHundredEight for u16 { const ONE_HUNDRED_EIGHT: Self = 108; }
2079impl OneHundredEight for i32 { const ONE_HUNDRED_EIGHT: Self = 108; }
2080impl OneHundredEight for u32 { const ONE_HUNDRED_EIGHT: Self = 108; }
2081impl OneHundredEight for i64 { const ONE_HUNDRED_EIGHT: Self = 108; }
2082impl OneHundredEight for u64 { const ONE_HUNDRED_EIGHT: Self = 108; }
2083impl OneHundredEight for i128 { const ONE_HUNDRED_EIGHT: Self = 108; }
2084impl OneHundredEight for u128 { const ONE_HUNDRED_EIGHT: Self = 108; }
2085impl OneHundredEight for isize { const ONE_HUNDRED_EIGHT: Self = 108; }
2086impl OneHundredEight for usize { const ONE_HUNDRED_EIGHT: Self = 108; }
2087impl OneHundredEight for f32 { const ONE_HUNDRED_EIGHT: Self = 108.0; }
2088impl OneHundredEight for f64 { const ONE_HUNDRED_EIGHT: Self = 108.0; }
2089
2090pub trait OneHundredNine {
2091 const ONE_HUNDRED_NINE: Self;
2092}
2093
2094impl OneHundredNine for i8 { const ONE_HUNDRED_NINE: Self = 109; }
2095impl OneHundredNine for u8 { const ONE_HUNDRED_NINE: Self = 109; }
2096impl OneHundredNine for i16 { const ONE_HUNDRED_NINE: Self = 109; }
2097impl OneHundredNine for u16 { const ONE_HUNDRED_NINE: Self = 109; }
2098impl OneHundredNine for i32 { const ONE_HUNDRED_NINE: Self = 109; }
2099impl OneHundredNine for u32 { const ONE_HUNDRED_NINE: Self = 109; }
2100impl OneHundredNine for i64 { const ONE_HUNDRED_NINE: Self = 109; }
2101impl OneHundredNine for u64 { const ONE_HUNDRED_NINE: Self = 109; }
2102impl OneHundredNine for i128 { const ONE_HUNDRED_NINE: Self = 109; }
2103impl OneHundredNine for u128 { const ONE_HUNDRED_NINE: Self = 109; }
2104impl OneHundredNine for isize { const ONE_HUNDRED_NINE: Self = 109; }
2105impl OneHundredNine for usize { const ONE_HUNDRED_NINE: Self = 109; }
2106impl OneHundredNine for f32 { const ONE_HUNDRED_NINE: Self = 109.0; }
2107impl OneHundredNine for f64 { const ONE_HUNDRED_NINE: Self = 109.0; }
2108
2109pub trait OneHundredTen {
2110 const ONE_HUNDRED_TEN: Self;
2111}
2112
2113impl OneHundredTen for i8 { const ONE_HUNDRED_TEN: Self = 110; }
2114impl OneHundredTen for u8 { const ONE_HUNDRED_TEN: Self = 110; }
2115impl OneHundredTen for i16 { const ONE_HUNDRED_TEN: Self = 110; }
2116impl OneHundredTen for u16 { const ONE_HUNDRED_TEN: Self = 110; }
2117impl OneHundredTen for i32 { const ONE_HUNDRED_TEN: Self = 110; }
2118impl OneHundredTen for u32 { const ONE_HUNDRED_TEN: Self = 110; }
2119impl OneHundredTen for i64 { const ONE_HUNDRED_TEN: Self = 110; }
2120impl OneHundredTen for u64 { const ONE_HUNDRED_TEN: Self = 110; }
2121impl OneHundredTen for i128 { const ONE_HUNDRED_TEN: Self = 110; }
2122impl OneHundredTen for u128 { const ONE_HUNDRED_TEN: Self = 110; }
2123impl OneHundredTen for isize { const ONE_HUNDRED_TEN: Self = 110; }
2124impl OneHundredTen for usize { const ONE_HUNDRED_TEN: Self = 110; }
2125impl OneHundredTen for f32 { const ONE_HUNDRED_TEN: Self = 110.0; }
2126impl OneHundredTen for f64 { const ONE_HUNDRED_TEN: Self = 110.0; }
2127
2128pub trait OneHundredEleven {
2129 const ONE_HUNDRED_ELEVEN: Self;
2130}
2131
2132impl OneHundredEleven for i8 { const ONE_HUNDRED_ELEVEN: Self = 111; }
2133impl OneHundredEleven for u8 { const ONE_HUNDRED_ELEVEN: Self = 111; }
2134impl OneHundredEleven for i16 { const ONE_HUNDRED_ELEVEN: Self = 111; }
2135impl OneHundredEleven for u16 { const ONE_HUNDRED_ELEVEN: Self = 111; }
2136impl OneHundredEleven for i32 { const ONE_HUNDRED_ELEVEN: Self = 111; }
2137impl OneHundredEleven for u32 { const ONE_HUNDRED_ELEVEN: Self = 111; }
2138impl OneHundredEleven for i64 { const ONE_HUNDRED_ELEVEN: Self = 111; }
2139impl OneHundredEleven for u64 { const ONE_HUNDRED_ELEVEN: Self = 111; }
2140impl OneHundredEleven for i128 { const ONE_HUNDRED_ELEVEN: Self = 111; }
2141impl OneHundredEleven for u128 { const ONE_HUNDRED_ELEVEN: Self = 111; }
2142impl OneHundredEleven for isize { const ONE_HUNDRED_ELEVEN: Self = 111; }
2143impl OneHundredEleven for usize { const ONE_HUNDRED_ELEVEN: Self = 111; }
2144impl OneHundredEleven for f32 { const ONE_HUNDRED_ELEVEN: Self = 111.0; }
2145impl OneHundredEleven for f64 { const ONE_HUNDRED_ELEVEN: Self = 111.0; }
2146
2147pub trait OneHundredTwelve {
2148 const ONE_HUNDRED_TWELVE: Self;
2149}
2150
2151impl OneHundredTwelve for i8 { const ONE_HUNDRED_TWELVE: Self = 112; }
2152impl OneHundredTwelve for u8 { const ONE_HUNDRED_TWELVE: Self = 112; }
2153impl OneHundredTwelve for i16 { const ONE_HUNDRED_TWELVE: Self = 112; }
2154impl OneHundredTwelve for u16 { const ONE_HUNDRED_TWELVE: Self = 112; }
2155impl OneHundredTwelve for i32 { const ONE_HUNDRED_TWELVE: Self = 112; }
2156impl OneHundredTwelve for u32 { const ONE_HUNDRED_TWELVE: Self = 112; }
2157impl OneHundredTwelve for i64 { const ONE_HUNDRED_TWELVE: Self = 112; }
2158impl OneHundredTwelve for u64 { const ONE_HUNDRED_TWELVE: Self = 112; }
2159impl OneHundredTwelve for i128 { const ONE_HUNDRED_TWELVE: Self = 112; }
2160impl OneHundredTwelve for u128 { const ONE_HUNDRED_TWELVE: Self = 112; }
2161impl OneHundredTwelve for isize { const ONE_HUNDRED_TWELVE: Self = 112; }
2162impl OneHundredTwelve for usize { const ONE_HUNDRED_TWELVE: Self = 112; }
2163impl OneHundredTwelve for f32 { const ONE_HUNDRED_TWELVE: Self = 112.0; }
2164impl OneHundredTwelve for f64 { const ONE_HUNDRED_TWELVE: Self = 112.0; }
2165
2166pub trait OneHundredThirteen {
2167 const ONE_HUNDRED_THIRTEEN: Self;
2168}
2169
2170impl OneHundredThirteen for i8 { const ONE_HUNDRED_THIRTEEN: Self = 113; }
2171impl OneHundredThirteen for u8 { const ONE_HUNDRED_THIRTEEN: Self = 113; }
2172impl OneHundredThirteen for i16 { const ONE_HUNDRED_THIRTEEN: Self = 113; }
2173impl OneHundredThirteen for u16 { const ONE_HUNDRED_THIRTEEN: Self = 113; }
2174impl OneHundredThirteen for i32 { const ONE_HUNDRED_THIRTEEN: Self = 113; }
2175impl OneHundredThirteen for u32 { const ONE_HUNDRED_THIRTEEN: Self = 113; }
2176impl OneHundredThirteen for i64 { const ONE_HUNDRED_THIRTEEN: Self = 113; }
2177impl OneHundredThirteen for u64 { const ONE_HUNDRED_THIRTEEN: Self = 113; }
2178impl OneHundredThirteen for i128 { const ONE_HUNDRED_THIRTEEN: Self = 113; }
2179impl OneHundredThirteen for u128 { const ONE_HUNDRED_THIRTEEN: Self = 113; }
2180impl OneHundredThirteen for isize { const ONE_HUNDRED_THIRTEEN: Self = 113; }
2181impl OneHundredThirteen for usize { const ONE_HUNDRED_THIRTEEN: Self = 113; }
2182impl OneHundredThirteen for f32 { const ONE_HUNDRED_THIRTEEN: Self = 113.0; }
2183impl OneHundredThirteen for f64 { const ONE_HUNDRED_THIRTEEN: Self = 113.0; }
2184
2185pub trait OneHundredFourteen {
2186 const ONE_HUNDRED_FOURTEEN: Self;
2187}
2188
2189impl OneHundredFourteen for i8 { const ONE_HUNDRED_FOURTEEN: Self = 114; }
2190impl OneHundredFourteen for u8 { const ONE_HUNDRED_FOURTEEN: Self = 114; }
2191impl OneHundredFourteen for i16 { const ONE_HUNDRED_FOURTEEN: Self = 114; }
2192impl OneHundredFourteen for u16 { const ONE_HUNDRED_FOURTEEN: Self = 114; }
2193impl OneHundredFourteen for i32 { const ONE_HUNDRED_FOURTEEN: Self = 114; }
2194impl OneHundredFourteen for u32 { const ONE_HUNDRED_FOURTEEN: Self = 114; }
2195impl OneHundredFourteen for i64 { const ONE_HUNDRED_FOURTEEN: Self = 114; }
2196impl OneHundredFourteen for u64 { const ONE_HUNDRED_FOURTEEN: Self = 114; }
2197impl OneHundredFourteen for i128 { const ONE_HUNDRED_FOURTEEN: Self = 114; }
2198impl OneHundredFourteen for u128 { const ONE_HUNDRED_FOURTEEN: Self = 114; }
2199impl OneHundredFourteen for isize { const ONE_HUNDRED_FOURTEEN: Self = 114; }
2200impl OneHundredFourteen for usize { const ONE_HUNDRED_FOURTEEN: Self = 114; }
2201impl OneHundredFourteen for f32 { const ONE_HUNDRED_FOURTEEN: Self = 114.0; }
2202impl OneHundredFourteen for f64 { const ONE_HUNDRED_FOURTEEN: Self = 114.0; }
2203
2204pub trait OneHundredFifteen {
2205 const ONE_HUNDRED_FIFTEEN: Self;
2206}
2207
2208impl OneHundredFifteen for i8 { const ONE_HUNDRED_FIFTEEN: Self = 115; }
2209impl OneHundredFifteen for u8 { const ONE_HUNDRED_FIFTEEN: Self = 115; }
2210impl OneHundredFifteen for i16 { const ONE_HUNDRED_FIFTEEN: Self = 115; }
2211impl OneHundredFifteen for u16 { const ONE_HUNDRED_FIFTEEN: Self = 115; }
2212impl OneHundredFifteen for i32 { const ONE_HUNDRED_FIFTEEN: Self = 115; }
2213impl OneHundredFifteen for u32 { const ONE_HUNDRED_FIFTEEN: Self = 115; }
2214impl OneHundredFifteen for i64 { const ONE_HUNDRED_FIFTEEN: Self = 115; }
2215impl OneHundredFifteen for u64 { const ONE_HUNDRED_FIFTEEN: Self = 115; }
2216impl OneHundredFifteen for i128 { const ONE_HUNDRED_FIFTEEN: Self = 115; }
2217impl OneHundredFifteen for u128 { const ONE_HUNDRED_FIFTEEN: Self = 115; }
2218impl OneHundredFifteen for isize { const ONE_HUNDRED_FIFTEEN: Self = 115; }
2219impl OneHundredFifteen for usize { const ONE_HUNDRED_FIFTEEN: Self = 115; }
2220impl OneHundredFifteen for f32 { const ONE_HUNDRED_FIFTEEN: Self = 115.0; }
2221impl OneHundredFifteen for f64 { const ONE_HUNDRED_FIFTEEN: Self = 115.0; }
2222
2223pub trait OneHundredSixteen {
2224 const ONE_HUNDRED_SIXTEEN: Self;
2225}
2226
2227impl OneHundredSixteen for i8 { const ONE_HUNDRED_SIXTEEN: Self = 116; }
2228impl OneHundredSixteen for u8 { const ONE_HUNDRED_SIXTEEN: Self = 116; }
2229impl OneHundredSixteen for i16 { const ONE_HUNDRED_SIXTEEN: Self = 116; }
2230impl OneHundredSixteen for u16 { const ONE_HUNDRED_SIXTEEN: Self = 116; }
2231impl OneHundredSixteen for i32 { const ONE_HUNDRED_SIXTEEN: Self = 116; }
2232impl OneHundredSixteen for u32 { const ONE_HUNDRED_SIXTEEN: Self = 116; }
2233impl OneHundredSixteen for i64 { const ONE_HUNDRED_SIXTEEN: Self = 116; }
2234impl OneHundredSixteen for u64 { const ONE_HUNDRED_SIXTEEN: Self = 116; }
2235impl OneHundredSixteen for i128 { const ONE_HUNDRED_SIXTEEN: Self = 116; }
2236impl OneHundredSixteen for u128 { const ONE_HUNDRED_SIXTEEN: Self = 116; }
2237impl OneHundredSixteen for isize { const ONE_HUNDRED_SIXTEEN: Self = 116; }
2238impl OneHundredSixteen for usize { const ONE_HUNDRED_SIXTEEN: Self = 116; }
2239impl OneHundredSixteen for f32 { const ONE_HUNDRED_SIXTEEN: Self = 116.0; }
2240impl OneHundredSixteen for f64 { const ONE_HUNDRED_SIXTEEN: Self = 116.0; }
2241
2242pub trait OneHundredSeventeen {
2243 const ONE_HUNDRED_SEVENTEEN: Self;
2244}
2245
2246impl OneHundredSeventeen for i8 { const ONE_HUNDRED_SEVENTEEN: Self = 117; }
2247impl OneHundredSeventeen for u8 { const ONE_HUNDRED_SEVENTEEN: Self = 117; }
2248impl OneHundredSeventeen for i16 { const ONE_HUNDRED_SEVENTEEN: Self = 117; }
2249impl OneHundredSeventeen for u16 { const ONE_HUNDRED_SEVENTEEN: Self = 117; }
2250impl OneHundredSeventeen for i32 { const ONE_HUNDRED_SEVENTEEN: Self = 117; }
2251impl OneHundredSeventeen for u32 { const ONE_HUNDRED_SEVENTEEN: Self = 117; }
2252impl OneHundredSeventeen for i64 { const ONE_HUNDRED_SEVENTEEN: Self = 117; }
2253impl OneHundredSeventeen for u64 { const ONE_HUNDRED_SEVENTEEN: Self = 117; }
2254impl OneHundredSeventeen for i128 { const ONE_HUNDRED_SEVENTEEN: Self = 117; }
2255impl OneHundredSeventeen for u128 { const ONE_HUNDRED_SEVENTEEN: Self = 117; }
2256impl OneHundredSeventeen for isize { const ONE_HUNDRED_SEVENTEEN: Self = 117; }
2257impl OneHundredSeventeen for usize { const ONE_HUNDRED_SEVENTEEN: Self = 117; }
2258impl OneHundredSeventeen for f32 { const ONE_HUNDRED_SEVENTEEN: Self = 117.0; }
2259impl OneHundredSeventeen for f64 { const ONE_HUNDRED_SEVENTEEN: Self = 117.0; }
2260
2261pub trait OneHundredEighteen {
2262 const ONE_HUNDRED_EIGHTEEN: Self;
2263}
2264
2265impl OneHundredEighteen for i8 { const ONE_HUNDRED_EIGHTEEN: Self = 118; }
2266impl OneHundredEighteen for u8 { const ONE_HUNDRED_EIGHTEEN: Self = 118; }
2267impl OneHundredEighteen for i16 { const ONE_HUNDRED_EIGHTEEN: Self = 118; }
2268impl OneHundredEighteen for u16 { const ONE_HUNDRED_EIGHTEEN: Self = 118; }
2269impl OneHundredEighteen for i32 { const ONE_HUNDRED_EIGHTEEN: Self = 118; }
2270impl OneHundredEighteen for u32 { const ONE_HUNDRED_EIGHTEEN: Self = 118; }
2271impl OneHundredEighteen for i64 { const ONE_HUNDRED_EIGHTEEN: Self = 118; }
2272impl OneHundredEighteen for u64 { const ONE_HUNDRED_EIGHTEEN: Self = 118; }
2273impl OneHundredEighteen for i128 { const ONE_HUNDRED_EIGHTEEN: Self = 118; }
2274impl OneHundredEighteen for u128 { const ONE_HUNDRED_EIGHTEEN: Self = 118; }
2275impl OneHundredEighteen for isize { const ONE_HUNDRED_EIGHTEEN: Self = 118; }
2276impl OneHundredEighteen for usize { const ONE_HUNDRED_EIGHTEEN: Self = 118; }
2277impl OneHundredEighteen for f32 { const ONE_HUNDRED_EIGHTEEN: Self = 118.0; }
2278impl OneHundredEighteen for f64 { const ONE_HUNDRED_EIGHTEEN: Self = 118.0; }
2279
2280pub trait OneHundredNineteen {
2281 const ONE_HUNDRED_NINETEEN: Self;
2282}
2283
2284impl OneHundredNineteen for i8 { const ONE_HUNDRED_NINETEEN: Self = 119; }
2285impl OneHundredNineteen for u8 { const ONE_HUNDRED_NINETEEN: Self = 119; }
2286impl OneHundredNineteen for i16 { const ONE_HUNDRED_NINETEEN: Self = 119; }
2287impl OneHundredNineteen for u16 { const ONE_HUNDRED_NINETEEN: Self = 119; }
2288impl OneHundredNineteen for i32 { const ONE_HUNDRED_NINETEEN: Self = 119; }
2289impl OneHundredNineteen for u32 { const ONE_HUNDRED_NINETEEN: Self = 119; }
2290impl OneHundredNineteen for i64 { const ONE_HUNDRED_NINETEEN: Self = 119; }
2291impl OneHundredNineteen for u64 { const ONE_HUNDRED_NINETEEN: Self = 119; }
2292impl OneHundredNineteen for i128 { const ONE_HUNDRED_NINETEEN: Self = 119; }
2293impl OneHundredNineteen for u128 { const ONE_HUNDRED_NINETEEN: Self = 119; }
2294impl OneHundredNineteen for isize { const ONE_HUNDRED_NINETEEN: Self = 119; }
2295impl OneHundredNineteen for usize { const ONE_HUNDRED_NINETEEN: Self = 119; }
2296impl OneHundredNineteen for f32 { const ONE_HUNDRED_NINETEEN: Self = 119.0; }
2297impl OneHundredNineteen for f64 { const ONE_HUNDRED_NINETEEN: Self = 119.0; }
2298
2299pub trait OneHundredTwenty {
2300 const ONE_HUNDRED_TWENTY: Self;
2301}
2302
2303impl OneHundredTwenty for i8 { const ONE_HUNDRED_TWENTY: Self = 120; }
2304impl OneHundredTwenty for u8 { const ONE_HUNDRED_TWENTY: Self = 120; }
2305impl OneHundredTwenty for i16 { const ONE_HUNDRED_TWENTY: Self = 120; }
2306impl OneHundredTwenty for u16 { const ONE_HUNDRED_TWENTY: Self = 120; }
2307impl OneHundredTwenty for i32 { const ONE_HUNDRED_TWENTY: Self = 120; }
2308impl OneHundredTwenty for u32 { const ONE_HUNDRED_TWENTY: Self = 120; }
2309impl OneHundredTwenty for i64 { const ONE_HUNDRED_TWENTY: Self = 120; }
2310impl OneHundredTwenty for u64 { const ONE_HUNDRED_TWENTY: Self = 120; }
2311impl OneHundredTwenty for i128 { const ONE_HUNDRED_TWENTY: Self = 120; }
2312impl OneHundredTwenty for u128 { const ONE_HUNDRED_TWENTY: Self = 120; }
2313impl OneHundredTwenty for isize { const ONE_HUNDRED_TWENTY: Self = 120; }
2314impl OneHundredTwenty for usize { const ONE_HUNDRED_TWENTY: Self = 120; }
2315impl OneHundredTwenty for f32 { const ONE_HUNDRED_TWENTY: Self = 120.0; }
2316impl OneHundredTwenty for f64 { const ONE_HUNDRED_TWENTY: Self = 120.0; }
2317
2318pub trait OneHundredTwentyOne {
2319 const ONE_HUNDRED_TWENTY_ONE: Self;
2320}
2321
2322impl OneHundredTwentyOne for i8 { const ONE_HUNDRED_TWENTY_ONE: Self = 121; }
2323impl OneHundredTwentyOne for u8 { const ONE_HUNDRED_TWENTY_ONE: Self = 121; }
2324impl OneHundredTwentyOne for i16 { const ONE_HUNDRED_TWENTY_ONE: Self = 121; }
2325impl OneHundredTwentyOne for u16 { const ONE_HUNDRED_TWENTY_ONE: Self = 121; }
2326impl OneHundredTwentyOne for i32 { const ONE_HUNDRED_TWENTY_ONE: Self = 121; }
2327impl OneHundredTwentyOne for u32 { const ONE_HUNDRED_TWENTY_ONE: Self = 121; }
2328impl OneHundredTwentyOne for i64 { const ONE_HUNDRED_TWENTY_ONE: Self = 121; }
2329impl OneHundredTwentyOne for u64 { const ONE_HUNDRED_TWENTY_ONE: Self = 121; }
2330impl OneHundredTwentyOne for i128 { const ONE_HUNDRED_TWENTY_ONE: Self = 121; }
2331impl OneHundredTwentyOne for u128 { const ONE_HUNDRED_TWENTY_ONE: Self = 121; }
2332impl OneHundredTwentyOne for isize { const ONE_HUNDRED_TWENTY_ONE: Self = 121; }
2333impl OneHundredTwentyOne for usize { const ONE_HUNDRED_TWENTY_ONE: Self = 121; }
2334impl OneHundredTwentyOne for f32 { const ONE_HUNDRED_TWENTY_ONE: Self = 121.0; }
2335impl OneHundredTwentyOne for f64 { const ONE_HUNDRED_TWENTY_ONE: Self = 121.0; }
2336
2337pub trait OneHundredTwentyTwo {
2338 const ONE_HUNDRED_TWENTY_TWO: Self;
2339}
2340
2341impl OneHundredTwentyTwo for i8 { const ONE_HUNDRED_TWENTY_TWO: Self = 122; }
2342impl OneHundredTwentyTwo for u8 { const ONE_HUNDRED_TWENTY_TWO: Self = 122; }
2343impl OneHundredTwentyTwo for i16 { const ONE_HUNDRED_TWENTY_TWO: Self = 122; }
2344impl OneHundredTwentyTwo for u16 { const ONE_HUNDRED_TWENTY_TWO: Self = 122; }
2345impl OneHundredTwentyTwo for i32 { const ONE_HUNDRED_TWENTY_TWO: Self = 122; }
2346impl OneHundredTwentyTwo for u32 { const ONE_HUNDRED_TWENTY_TWO: Self = 122; }
2347impl OneHundredTwentyTwo for i64 { const ONE_HUNDRED_TWENTY_TWO: Self = 122; }
2348impl OneHundredTwentyTwo for u64 { const ONE_HUNDRED_TWENTY_TWO: Self = 122; }
2349impl OneHundredTwentyTwo for i128 { const ONE_HUNDRED_TWENTY_TWO: Self = 122; }
2350impl OneHundredTwentyTwo for u128 { const ONE_HUNDRED_TWENTY_TWO: Self = 122; }
2351impl OneHundredTwentyTwo for isize { const ONE_HUNDRED_TWENTY_TWO: Self = 122; }
2352impl OneHundredTwentyTwo for usize { const ONE_HUNDRED_TWENTY_TWO: Self = 122; }
2353impl OneHundredTwentyTwo for f32 { const ONE_HUNDRED_TWENTY_TWO: Self = 122.0; }
2354impl OneHundredTwentyTwo for f64 { const ONE_HUNDRED_TWENTY_TWO: Self = 122.0; }
2355
2356pub trait OneHundredTwentyThree {
2357 const ONE_HUNDRED_TWENTY_THREE: Self;
2358}
2359
2360impl OneHundredTwentyThree for i8 { const ONE_HUNDRED_TWENTY_THREE: Self = 123; }
2361impl OneHundredTwentyThree for u8 { const ONE_HUNDRED_TWENTY_THREE: Self = 123; }
2362impl OneHundredTwentyThree for i16 { const ONE_HUNDRED_TWENTY_THREE: Self = 123; }
2363impl OneHundredTwentyThree for u16 { const ONE_HUNDRED_TWENTY_THREE: Self = 123; }
2364impl OneHundredTwentyThree for i32 { const ONE_HUNDRED_TWENTY_THREE: Self = 123; }
2365impl OneHundredTwentyThree for u32 { const ONE_HUNDRED_TWENTY_THREE: Self = 123; }
2366impl OneHundredTwentyThree for i64 { const ONE_HUNDRED_TWENTY_THREE: Self = 123; }
2367impl OneHundredTwentyThree for u64 { const ONE_HUNDRED_TWENTY_THREE: Self = 123; }
2368impl OneHundredTwentyThree for i128 { const ONE_HUNDRED_TWENTY_THREE: Self = 123; }
2369impl OneHundredTwentyThree for u128 { const ONE_HUNDRED_TWENTY_THREE: Self = 123; }
2370impl OneHundredTwentyThree for isize { const ONE_HUNDRED_TWENTY_THREE: Self = 123; }
2371impl OneHundredTwentyThree for usize { const ONE_HUNDRED_TWENTY_THREE: Self = 123; }
2372impl OneHundredTwentyThree for f32 { const ONE_HUNDRED_TWENTY_THREE: Self = 123.0; }
2373impl OneHundredTwentyThree for f64 { const ONE_HUNDRED_TWENTY_THREE: Self = 123.0; }
2374
2375pub trait OneHundredTwentyFour {
2376 const ONE_HUNDRED_TWENTY_FOUR: Self;
2377}
2378
2379impl OneHundredTwentyFour for i8 { const ONE_HUNDRED_TWENTY_FOUR: Self = 124; }
2380impl OneHundredTwentyFour for u8 { const ONE_HUNDRED_TWENTY_FOUR: Self = 124; }
2381impl OneHundredTwentyFour for i16 { const ONE_HUNDRED_TWENTY_FOUR: Self = 124; }
2382impl OneHundredTwentyFour for u16 { const ONE_HUNDRED_TWENTY_FOUR: Self = 124; }
2383impl OneHundredTwentyFour for i32 { const ONE_HUNDRED_TWENTY_FOUR: Self = 124; }
2384impl OneHundredTwentyFour for u32 { const ONE_HUNDRED_TWENTY_FOUR: Self = 124; }
2385impl OneHundredTwentyFour for i64 { const ONE_HUNDRED_TWENTY_FOUR: Self = 124; }
2386impl OneHundredTwentyFour for u64 { const ONE_HUNDRED_TWENTY_FOUR: Self = 124; }
2387impl OneHundredTwentyFour for i128 { const ONE_HUNDRED_TWENTY_FOUR: Self = 124; }
2388impl OneHundredTwentyFour for u128 { const ONE_HUNDRED_TWENTY_FOUR: Self = 124; }
2389impl OneHundredTwentyFour for isize { const ONE_HUNDRED_TWENTY_FOUR: Self = 124; }
2390impl OneHundredTwentyFour for usize { const ONE_HUNDRED_TWENTY_FOUR: Self = 124; }
2391impl OneHundredTwentyFour for f32 { const ONE_HUNDRED_TWENTY_FOUR: Self = 124.0; }
2392impl OneHundredTwentyFour for f64 { const ONE_HUNDRED_TWENTY_FOUR: Self = 124.0; }
2393
2394pub trait OneHundredTwentyFive {
2395 const ONE_HUNDRED_TWENTY_FIVE: Self;
2396}
2397
2398impl OneHundredTwentyFive for i8 { const ONE_HUNDRED_TWENTY_FIVE: Self = 125; }
2399impl OneHundredTwentyFive for u8 { const ONE_HUNDRED_TWENTY_FIVE: Self = 125; }
2400impl OneHundredTwentyFive for i16 { const ONE_HUNDRED_TWENTY_FIVE: Self = 125; }
2401impl OneHundredTwentyFive for u16 { const ONE_HUNDRED_TWENTY_FIVE: Self = 125; }
2402impl OneHundredTwentyFive for i32 { const ONE_HUNDRED_TWENTY_FIVE: Self = 125; }
2403impl OneHundredTwentyFive for u32 { const ONE_HUNDRED_TWENTY_FIVE: Self = 125; }
2404impl OneHundredTwentyFive for i64 { const ONE_HUNDRED_TWENTY_FIVE: Self = 125; }
2405impl OneHundredTwentyFive for u64 { const ONE_HUNDRED_TWENTY_FIVE: Self = 125; }
2406impl OneHundredTwentyFive for i128 { const ONE_HUNDRED_TWENTY_FIVE: Self = 125; }
2407impl OneHundredTwentyFive for u128 { const ONE_HUNDRED_TWENTY_FIVE: Self = 125; }
2408impl OneHundredTwentyFive for isize { const ONE_HUNDRED_TWENTY_FIVE: Self = 125; }
2409impl OneHundredTwentyFive for usize { const ONE_HUNDRED_TWENTY_FIVE: Self = 125; }
2410impl OneHundredTwentyFive for f32 { const ONE_HUNDRED_TWENTY_FIVE: Self = 125.0; }
2411impl OneHundredTwentyFive for f64 { const ONE_HUNDRED_TWENTY_FIVE: Self = 125.0; }
2412
2413pub trait OneHundredTwentySix {
2414 const ONE_HUNDRED_TWENTY_SIX: Self;
2415}
2416
2417impl OneHundredTwentySix for i8 { const ONE_HUNDRED_TWENTY_SIX: Self = 126; }
2418impl OneHundredTwentySix for u8 { const ONE_HUNDRED_TWENTY_SIX: Self = 126; }
2419impl OneHundredTwentySix for i16 { const ONE_HUNDRED_TWENTY_SIX: Self = 126; }
2420impl OneHundredTwentySix for u16 { const ONE_HUNDRED_TWENTY_SIX: Self = 126; }
2421impl OneHundredTwentySix for i32 { const ONE_HUNDRED_TWENTY_SIX: Self = 126; }
2422impl OneHundredTwentySix for u32 { const ONE_HUNDRED_TWENTY_SIX: Self = 126; }
2423impl OneHundredTwentySix for i64 { const ONE_HUNDRED_TWENTY_SIX: Self = 126; }
2424impl OneHundredTwentySix for u64 { const ONE_HUNDRED_TWENTY_SIX: Self = 126; }
2425impl OneHundredTwentySix for i128 { const ONE_HUNDRED_TWENTY_SIX: Self = 126; }
2426impl OneHundredTwentySix for u128 { const ONE_HUNDRED_TWENTY_SIX: Self = 126; }
2427impl OneHundredTwentySix for isize { const ONE_HUNDRED_TWENTY_SIX: Self = 126; }
2428impl OneHundredTwentySix for usize { const ONE_HUNDRED_TWENTY_SIX: Self = 126; }
2429impl OneHundredTwentySix for f32 { const ONE_HUNDRED_TWENTY_SIX: Self = 126.0; }
2430impl OneHundredTwentySix for f64 { const ONE_HUNDRED_TWENTY_SIX: Self = 126.0; }
2431
2432pub trait OneHundredTwentySeven {
2433 const ONE_HUNDRED_TWENTY_SEVEN: Self;
2434}
2435
2436impl OneHundredTwentySeven for i8 { const ONE_HUNDRED_TWENTY_SEVEN: Self = 127; }
2437impl OneHundredTwentySeven for u8 { const ONE_HUNDRED_TWENTY_SEVEN: Self = 127; }
2438impl OneHundredTwentySeven for i16 { const ONE_HUNDRED_TWENTY_SEVEN: Self = 127; }
2439impl OneHundredTwentySeven for u16 { const ONE_HUNDRED_TWENTY_SEVEN: Self = 127; }
2440impl OneHundredTwentySeven for i32 { const ONE_HUNDRED_TWENTY_SEVEN: Self = 127; }
2441impl OneHundredTwentySeven for u32 { const ONE_HUNDRED_TWENTY_SEVEN: Self = 127; }
2442impl OneHundredTwentySeven for i64 { const ONE_HUNDRED_TWENTY_SEVEN: Self = 127; }
2443impl OneHundredTwentySeven for u64 { const ONE_HUNDRED_TWENTY_SEVEN: Self = 127; }
2444impl OneHundredTwentySeven for i128 { const ONE_HUNDRED_TWENTY_SEVEN: Self = 127; }
2445impl OneHundredTwentySeven for u128 { const ONE_HUNDRED_TWENTY_SEVEN: Self = 127; }
2446impl OneHundredTwentySeven for isize { const ONE_HUNDRED_TWENTY_SEVEN: Self = 127; }
2447impl OneHundredTwentySeven for usize { const ONE_HUNDRED_TWENTY_SEVEN: Self = 127; }
2448impl OneHundredTwentySeven for f32 { const ONE_HUNDRED_TWENTY_SEVEN: Self = 127.0; }
2449impl OneHundredTwentySeven for f64 { const ONE_HUNDRED_TWENTY_SEVEN: Self = 127.0; }
2450