Fasma 1.1.2

Spectrum of components
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
/*
 * ╔═════════════════════════════════════════════════════════════════════════════════════╗
 * ║                                 ANTI-VIRUS LICENSE                                  ║
 * ║                                                                                     ║
 * ║                          Code Shielded from Viral Threats                           ║
 * ╟─────────────────────────────────────────────────────────────────────────────────────╢
 * ║  Copyright Notice                                                                   ║
 * ║                                                                                     ║
 * ║  Copyright (c) 2025 Stanislav Mikhailov (xavetar)                                   ║
 * ╟─────────────────────────────────────────────────────────────────────────────────────╢
 * ║  License Terms                                                                      ║
 * ║                                                                                     ║
 * ║  Licensed under the Anti-Virus License Agreement.                                   ║
 * ║  This file may not be used except in compliance with the License.                   ║
 * ║                                                                                     ║
 * ║  The License is included within the project distribution.                           ║
 * ║  If this file is obtained without the accompanying License, it must be deleted.     ║
 * ╟─────────────────────────────────────────────────────────────────────────────────────╢
 * ║  Warranty Disclaimer                                                                ║
 * ║                                                                                     ║
 * ║  Unless required by applicable law or agreed to in writing, software                ║
 * ║  distributed under the License is distributed on an "AS IS" BASIS, WITHOUT          ║
 * ║  WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.                   ║
 * ║                                                                                     ║
 * ║  See the License for the specific language governing permissions and limitations    ║
 * ║  under the License.                                                                 ║
 * ╚═════════════════════════════════════════════════════════════════════════════════════╝
 */

#[cfg(all(target_arch = "x86", target_feature = "sse2"))]
use core::{
    arch::{
        x86::{
            __m128i,
            _mm_or_si128,
            _mm_slli_si128, _mm_srli_si128,
            _mm_setzero_si128
        }
    }
};

#[cfg(all(target_arch = "x86", target_feature = "avx", target_feature = "avx2"))]
use core::{
    arch::{
        x86::{
            __m256i,
            _mm256_or_si256,
            _mm256_setzero_si256
        }
    }
};

#[cfg(all(target_arch = "x86", target_feature = "avx512f", target_feature = "avx512bw"))]
use core::{
    arch::{
        x86::{
            __m512i,
            _mm512_or_si512,
            _mm512_setzero_si512
        }
    }
};

#[cfg(all(target_arch = "x86_64", target_feature = "sse2"))]
use core::{
    arch::{
        x86_64::{
            __m128i,
            _mm_or_si128,
            _mm_slli_si128, _mm_srli_si128,
            _mm_setzero_si128
        }
    }
};

#[cfg(all(target_arch = "x86_64", target_feature = "avx", target_feature = "avx2"))]
use core::{
    arch::{
        x86_64::{
            __m256i,
            _mm256_or_si256,
            _mm256_setzero_si256
        }
    }
};

#[cfg(all(target_arch = "x86_64", target_feature = "avx512f", target_feature = "avx512bw"))]
use core::{
    arch::{
        x86_64::{
            __m512i,
            _mm512_or_si512,
            _mm512_setzero_si512
        }
    }
};

#[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), target_feature = "avx", target_feature = "avx2"))]
use crate::{
    eSIMD::{
        platform::{
            x86::{
                unrolled::{
                    shift::{
                        _mm256_slli_si256, _mm256_srli_si256
                    }
                }
            }
        }
    }
};

#[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), target_feature = "avx512f", target_feature = "avx512bw"))]
use crate::{
    eSIMD::{
        platform::{
            x86::{
                unrolled::{
                    shift::{
                        _mm512_slli_si512, _mm512_srli_si512
                    }
                }
            }
        }
    }
};


/// # Example (_mm_alvext_epi8):
///
/// - Source: ```[01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10]```
/// - Addition: ```[11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20]```
///
/// - Vext'ed left by 1 byte: ```[20, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f]```
/// - Vext'ed left by 2 bytes: ```[1f, 20, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e]```
/// - Vext'ed left by 6 bytes: ```[1b, 1c, 1d, 1e, 1f, 20, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a]```
/// - Vext'ed left by 10 bytes: ```[17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 01, 02, 03, 04, 05, 06]```
/// - Vext'ed left by 16 bytes: ```[11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20]```
/// - Vext'ed left by 20 bytes: ```[00, 00, 00, 00, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c]```
/// - Vext'ed left by 21 bytes: ```[00, 00, 00, 00, 00, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b]```
/// - Vext'ed left by 22 bytes: ```[00, 00, 00, 00, 00, 00, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a]```
/// - Vext'ed left by 31 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 11]```
#[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), target_feature = "sse2"))]
pub unsafe fn _mm_alvext_epi8(vector: __m128i, addition: __m128i, shift: usize) -> __m128i {
    return match shift {
        0x00 => vector,
        0x01 => _mm_or_si128(_mm_slli_si128::<0x01>(vector), _mm_srli_si128::<0x0F>(addition)),
        0x02 => _mm_or_si128(_mm_slli_si128::<0x02>(vector), _mm_srli_si128::<0x0E>(addition)),
        0x03 => _mm_or_si128(_mm_slli_si128::<0x03>(vector), _mm_srli_si128::<0x0D>(addition)),
        0x04 => _mm_or_si128(_mm_slli_si128::<0x04>(vector), _mm_srli_si128::<0x0C>(addition)),
        0x05 => _mm_or_si128(_mm_slli_si128::<0x05>(vector), _mm_srli_si128::<0x0B>(addition)),
        0x06 => _mm_or_si128(_mm_slli_si128::<0x06>(vector), _mm_srli_si128::<0x0A>(addition)),
        0x07 => _mm_or_si128(_mm_slli_si128::<0x07>(vector), _mm_srli_si128::<0x09>(addition)),
        0x08 => _mm_or_si128(_mm_slli_si128::<0x08>(vector), _mm_srli_si128::<0x08>(addition)),
        0x09 => _mm_or_si128(_mm_slli_si128::<0x09>(vector), _mm_srli_si128::<0x07>(addition)),
        0x0A => _mm_or_si128(_mm_slli_si128::<0x0A>(vector), _mm_srli_si128::<0x06>(addition)),
        0x0B => _mm_or_si128(_mm_slli_si128::<0x0B>(vector), _mm_srli_si128::<0x05>(addition)),
        0x0C => _mm_or_si128(_mm_slli_si128::<0x0C>(vector), _mm_srli_si128::<0x04>(addition)),
        0x0D => _mm_or_si128(_mm_slli_si128::<0x0D>(vector), _mm_srli_si128::<0x03>(addition)),
        0x0E => _mm_or_si128(_mm_slli_si128::<0x0E>(vector), _mm_srli_si128::<0x02>(addition)),
        0x0F => _mm_or_si128(_mm_slli_si128::<0x0F>(vector), _mm_srli_si128::<0x01>(addition)),
        0x10 => addition,
        0x11 => _mm_slli_si128::<0x01>(addition),
        0x12 => _mm_slli_si128::<0x02>(addition),
        0x13 => _mm_slli_si128::<0x03>(addition),
        0x14 => _mm_slli_si128::<0x04>(addition),
        0x15 => _mm_slli_si128::<0x05>(addition),
        0x16 => _mm_slli_si128::<0x06>(addition),
        0x17 => _mm_slli_si128::<0x07>(addition),
        0x18 => _mm_slli_si128::<0x08>(addition),
        0x19 => _mm_slli_si128::<0x09>(addition),
        0x1A => _mm_slli_si128::<0x0A>(addition),
        0x1B => _mm_slli_si128::<0x0B>(addition),
        0x1C => _mm_slli_si128::<0x0C>(addition),
        0x1D => _mm_slli_si128::<0x0D>(addition),
        0x1E => _mm_slli_si128::<0x0E>(addition),
        0x1F => _mm_slli_si128::<0x0F>(addition),
        _ => _mm_setzero_si128()
    };
}

/// # Example (_mm_arvext_epi8):
///
/// - Source: ```[01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10]```
/// - Addition: ```[11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20]```
///
/// - Vext'ed right by 1 byte: ```[02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11]```
/// - Vext'ed right by 2 bytes: ```[03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12]```
/// - Vext'ed right by 6 bytes: ```[07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16]```
/// - Vext'ed right by 10 bytes: ```[0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a]```
/// - Vext'ed right by 16 bytes: ```[11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20]```
/// - Vext'ed right by 20 bytes: ```[15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 00, 00, 00, 00]```
/// - Vext'ed right by 21 bytes: ```[16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 22 bytes: ```[17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 31 bytes: ```[20, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
#[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), target_feature = "sse2"))]
pub unsafe fn _mm_arvext_epi8(vector: __m128i, addition: __m128i, shift: usize) -> __m128i {
    return match shift {
        0x00 => vector,
        0x01 => _mm_or_si128(_mm_srli_si128::<0x01>(vector), _mm_slli_si128::<0x0F>(addition)),
        0x02 => _mm_or_si128(_mm_srli_si128::<0x02>(vector), _mm_slli_si128::<0x0E>(addition)),
        0x03 => _mm_or_si128(_mm_srli_si128::<0x03>(vector), _mm_slli_si128::<0x0D>(addition)),
        0x04 => _mm_or_si128(_mm_srli_si128::<0x04>(vector), _mm_slli_si128::<0x0C>(addition)),
        0x05 => _mm_or_si128(_mm_srli_si128::<0x05>(vector), _mm_slli_si128::<0x0B>(addition)),
        0x06 => _mm_or_si128(_mm_srli_si128::<0x06>(vector), _mm_slli_si128::<0x0A>(addition)),
        0x07 => _mm_or_si128(_mm_srli_si128::<0x07>(vector), _mm_slli_si128::<0x09>(addition)),
        0x08 => _mm_or_si128(_mm_srli_si128::<0x08>(vector), _mm_slli_si128::<0x08>(addition)),
        0x09 => _mm_or_si128(_mm_srli_si128::<0x09>(vector), _mm_slli_si128::<0x07>(addition)),
        0x0A => _mm_or_si128(_mm_srli_si128::<0x0A>(vector), _mm_slli_si128::<0x06>(addition)),
        0x0B => _mm_or_si128(_mm_srli_si128::<0x0B>(vector), _mm_slli_si128::<0x05>(addition)),
        0x0C => _mm_or_si128(_mm_srli_si128::<0x0C>(vector), _mm_slli_si128::<0x04>(addition)),
        0x0D => _mm_or_si128(_mm_srli_si128::<0x0D>(vector), _mm_slli_si128::<0x03>(addition)),
        0x0E => _mm_or_si128(_mm_srli_si128::<0x0E>(vector), _mm_slli_si128::<0x02>(addition)),
        0x0F => _mm_or_si128(_mm_srli_si128::<0x0F>(vector), _mm_slli_si128::<0x01>(addition)),
        0x10 => addition,
        0x11 => _mm_srli_si128::<0x01>(addition),
        0x12 => _mm_srli_si128::<0x02>(addition),
        0x13 => _mm_srli_si128::<0x03>(addition),
        0x14 => _mm_srli_si128::<0x04>(addition),
        0x15 => _mm_srli_si128::<0x05>(addition),
        0x16 => _mm_srli_si128::<0x06>(addition),
        0x17 => _mm_srli_si128::<0x07>(addition),
        0x18 => _mm_srli_si128::<0x08>(addition),
        0x19 => _mm_srli_si128::<0x09>(addition),
        0x1A => _mm_srli_si128::<0x0A>(addition),
        0x1B => _mm_srli_si128::<0x0B>(addition),
        0x1C => _mm_srli_si128::<0x0C>(addition),
        0x1D => _mm_srli_si128::<0x0D>(addition),
        0x1E => _mm_srli_si128::<0x0E>(addition),
        0x1F => _mm_srli_si128::<0x0F>(addition),
        _ => _mm_setzero_si128()
    };
}

/// # Example (_mm_alvext_epi16):
///
/// - Source: ```[01, 02, 03, 04, 05, 06, 07, 08]```
/// - Addition: ```[09, 0a, 0b, 0c, 0d, 0e, 0f, 10]```
///
/// - Vext'ed left by 1 pair: ```[10, 01, 02, 03, 04, 05, 06, 07]```
/// - Vext'ed left by 2 pairs: ```[0f, 10, 01, 02, 03, 04, 05, 06]```
/// - Vext'ed left by 3 pairs: ```[0e, 0f, 10, 01, 02, 03, 04, 05]```
/// - Vext'ed left by 4 pairs: ```[0d, 0e, 0f, 10, 01, 02, 03, 04]```
/// - Vext'ed left by 5 pairs: ```[0c, 0d, 0e, 0f, 10, 01, 02, 03]```
/// - Vext'ed left by 6 pairs: ```[0b, 0c, 0d, 0e, 0f, 10, 01, 02]```
/// - Vext'ed left by 7 pairs: ```[0a, 0b, 0c, 0d, 0e, 0f, 10, 01]```
/// - Vext'ed left by 8 pairs: ```[09, 0a, 0b, 0c, 0d, 0e, 0f, 10]```
/// - Vext'ed left by 9 pairs: ```[00, 09, 0a, 0b, 0c, 0d, 0e, 0f]```
/// - Vext'ed left by 10 pairs: ```[00, 00, 09, 0a, 0b, 0c, 0d, 0e]```
/// - Vext'ed left by 11 pairs: ```[00, 00, 00, 09, 0a, 0b, 0c, 0d]```
/// - Vext'ed left by 12 pairs: ```[00, 00, 00, 00, 09, 0a, 0b, 0c]```
/// - Vext'ed left by 13 pairs: ```[00, 00, 00, 00, 00, 09, 0a, 0b]```
/// - Vext'ed left by 14 pairs: ```[00, 00, 00, 00, 00, 00, 09, 0a]```
/// - Vext'ed left by 15 pairs: ```[00, 00, 00, 00, 00, 00, 00, 09]```
#[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), target_feature = "sse2"))]
pub unsafe fn _mm_alvext_epi16(vector: __m128i, addition: __m128i, shift: usize) -> __m128i {
    return match shift {
        0x00 => vector,
        0x01 => _mm_or_si128(_mm_slli_si128::<0x02>(vector), _mm_srli_si128::<0x0E>(addition)),
        0x02 => _mm_or_si128(_mm_slli_si128::<0x04>(vector), _mm_srli_si128::<0x0C>(addition)),
        0x03 => _mm_or_si128(_mm_slli_si128::<0x06>(vector), _mm_srli_si128::<0x0A>(addition)),
        0x04 => _mm_or_si128(_mm_slli_si128::<0x08>(vector), _mm_srli_si128::<0x08>(addition)),
        0x05 => _mm_or_si128(_mm_slli_si128::<0x0A>(vector), _mm_srli_si128::<0x06>(addition)),
        0x06 => _mm_or_si128(_mm_slli_si128::<0x0C>(vector), _mm_srli_si128::<0x04>(addition)),
        0x07 => _mm_or_si128(_mm_slli_si128::<0x0E>(vector), _mm_srli_si128::<0x02>(addition)),
        0x08 => addition,
        0x09 => _mm_slli_si128::<0x02>(addition),
        0x0A => _mm_slli_si128::<0x04>(addition),
        0x0B => _mm_slli_si128::<0x06>(addition),
        0x0C => _mm_slli_si128::<0x08>(addition),
        0x0D => _mm_slli_si128::<0x0A>(addition),
        0x0E => _mm_slli_si128::<0x0C>(addition),
        0x0F => _mm_slli_si128::<0x0E>(addition),
        _ => _mm_setzero_si128()
    };
}

/// # Example (_mm_arvext_epi16):
///
/// - Source: ```[01, 02, 03, 04, 05, 06, 07, 08]```
/// - Addition: ```[09, 0a, 0b, 0c, 0d, 0e, 0f, 10]```
///
/// - Vext'ed right by 1 pair: ```[02, 03, 04, 05, 06, 07, 08, 09]```
/// - Vext'ed right by 2 pairs: ```[03, 04, 05, 06, 07, 08, 09, 0a]```
/// - Vext'ed right by 3 pairs: ```[04, 05, 06, 07, 08, 09, 0a, 0b]```
/// - Vext'ed right by 4 pairs: ```[05, 06, 07, 08, 09, 0a, 0b, 0c]```
/// - Vext'ed right by 5 pairs: ```[06, 07, 08, 09, 0a, 0b, 0c, 0d]```
/// - Vext'ed right by 6 pairs: ```[07, 08, 09, 0a, 0b, 0c, 0d, 0e]```
/// - Vext'ed right by 7 pairs: ```[08, 09, 0a, 0b, 0c, 0d, 0e, 0f]```
/// - Vext'ed right by 8 pairs: ```[09, 0a, 0b, 0c, 0d, 0e, 0f, 10]```
/// - Vext'ed right by 9 pairs: ```[0a, 0b, 0c, 0d, 0e, 0f, 10, 00]```
/// - Vext'ed right by 10 pairs: ```[0b, 0c, 0d, 0e, 0f, 10, 00, 00]```
/// - Vext'ed right by 11 pairs: ```[0c, 0d, 0e, 0f, 10, 00, 00, 00]```
/// - Vext'ed right by 12 pairs: ```[0d, 0e, 0f, 10, 00, 00, 00, 00]```
/// - Vext'ed right by 13 pairs: ```[0e, 0f, 10, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 14 pairs: ```[0f, 10, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 15 pairs: ```[10, 00, 00, 00, 00, 00, 00, 00]```
#[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), target_feature = "sse2"))]
pub unsafe fn _mm_arvext_epi16(vector: __m128i, addition: __m128i, shift: usize) -> __m128i {
    return match shift {
        0x00 => vector,
        0x01 => _mm_or_si128(_mm_srli_si128::<0x02>(vector), _mm_slli_si128::<0x0E>(addition)),
        0x02 => _mm_or_si128(_mm_srli_si128::<0x04>(vector), _mm_slli_si128::<0x0C>(addition)),
        0x03 => _mm_or_si128(_mm_srli_si128::<0x06>(vector), _mm_slli_si128::<0x0A>(addition)),
        0x04 => _mm_or_si128(_mm_srli_si128::<0x08>(vector), _mm_slli_si128::<0x08>(addition)),
        0x05 => _mm_or_si128(_mm_srli_si128::<0x0A>(vector), _mm_slli_si128::<0x06>(addition)),
        0x06 => _mm_or_si128(_mm_srli_si128::<0x0C>(vector), _mm_slli_si128::<0x04>(addition)),
        0x07 => _mm_or_si128(_mm_srli_si128::<0x0E>(vector), _mm_slli_si128::<0x02>(addition)),
        0x08 => addition,
        0x09 => _mm_srli_si128::<0x02>(addition),
        0x0A => _mm_srli_si128::<0x04>(addition),
        0x0B => _mm_srli_si128::<0x06>(addition),
        0x0C => _mm_srli_si128::<0x08>(addition),
        0x0D => _mm_srli_si128::<0x0A>(addition),
        0x0E => _mm_srli_si128::<0x0C>(addition),
        0x0F => _mm_srli_si128::<0x0E>(addition),
        _ => _mm_setzero_si128()
    };
}

/// # Example (_mm_alvext_epi32):
///
/// - Source: ```[01, 02, 03, 04]```
/// - Addition: ```[05, 06, 07, 08]```
///
/// - Vext'ed left by 1 pair: ```[08, 01, 02, 03]```
/// - Vext'ed left by 2 pairs: ```[07, 08, 01, 02]```
/// - Vext'ed left by 3 pairs: ```[06, 07, 08, 01]```
/// - Vext'ed left by 4 pairs: ```[05, 06, 07, 08]```
/// - Vext'ed left by 5 pairs: ```[00, 05, 06, 07]```
/// - Vext'ed left by 6 pairs: ```[00, 00, 05, 06]```
/// - Vext'ed left by 7 pairs: ```[00, 00, 00, 05]```
#[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), target_feature = "sse2"))]
pub unsafe fn _mm_alvext_epi32(vector: __m128i, addition: __m128i, shift: usize) -> __m128i {
    return match shift {
        0x00 => vector,
        0x01 => _mm_or_si128(_mm_slli_si128::<0x04>(vector), _mm_srli_si128::<0x0C>(addition)),
        0x02 => _mm_or_si128(_mm_slli_si128::<0x08>(vector), _mm_srli_si128::<0x08>(addition)),
        0x03 => _mm_or_si128(_mm_slli_si128::<0x0C>(vector), _mm_srli_si128::<0x04>(addition)),
        0x04 => addition,
        0x05 => _mm_slli_si128::<0x04>(addition),
        0x06 => _mm_slli_si128::<0x08>(addition),
        0x07 => _mm_slli_si128::<0x0C>(addition),
        _ => _mm_setzero_si128()
    };
}

/// # Example (_mm_arvext_epi32):
///
/// - Source: ```[01, 02, 03, 04]```
/// - Addition: ```[05, 06, 07, 08]```
///
/// - Vext'ed right by 1 pair: ```[02, 03, 04, 05]```
/// - Vext'ed right by 2 pairs: ```[03, 04, 05, 06]```
/// - Vext'ed right by 3 pairs: ```[04, 05, 06, 07]```
/// - Vext'ed right by 4 pairs: ```[05, 06, 07, 08]```
/// - Vext'ed right by 5 pairs: ```[06, 07, 08, 00]```
/// - Vext'ed right by 6 pairs: ```[07, 08, 00, 00]```
/// - Vext'ed right by 7 pairs: ```[08, 00, 00, 00]```
#[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), target_feature = "sse2"))]
pub unsafe fn _mm_arvext_epi32(vector: __m128i, addition: __m128i, shift: usize) -> __m128i {
    return match shift {
        0x00 => vector,
        0x01 => _mm_or_si128(_mm_srli_si128::<0x04>(vector), _mm_slli_si128::<0x0C>(addition)),
        0x02 => _mm_or_si128(_mm_srli_si128::<0x08>(vector), _mm_slli_si128::<0x08>(addition)),
        0x03 => _mm_or_si128(_mm_srli_si128::<0x0C>(vector), _mm_slli_si128::<0x04>(addition)),
        0x04 => addition,
        0x05 => _mm_srli_si128::<0x04>(addition),
        0x06 => _mm_srli_si128::<0x08>(addition),
        0x07 => _mm_srli_si128::<0x0C>(addition),
        _ => _mm_setzero_si128()
    };
}

/// # Example (_mm_alvext_epi64):
///
/// - Source: ```[01, 02]```
/// - Addition: ```[03, 04]```
///
/// - Vext'ed left by 1 pair: ```[04, 01]```
/// - Vext'ed left by 2 pairs: ```[03, 04]```
/// - Vext'ed left by 3 pairs: ```[00, 03]```
#[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), target_feature = "sse2"))]
pub unsafe fn _mm_alvext_epi64(vector: __m128i, addition: __m128i, shift: usize) -> __m128i {
    return match shift {
        0x00 => vector,
        0x01 => _mm_or_si128(_mm_slli_si128::<0x08>(vector), _mm_srli_si128::<0x08>(addition)),
        0x02 => addition,
        0x03 => _mm_slli_si128::<0x08>(addition),
        _ => _mm_setzero_si128()
    };
}

/// # Example (_mm_arvext_epi64):
///
/// - Source: ```[01, 02]```
/// - Addition: ```[03, 04]```
///
/// - Vext'ed right by 1 pair: ```[02, 03]```
/// - Vext'ed right by 2 pairs: ```[03, 04]```
/// - Vext'ed right by 3 pairs: ```[04, 00]```
#[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), target_feature = "sse2"))]
pub unsafe fn _mm_arvext_epi64(vector: __m128i, addition: __m128i, shift: usize) -> __m128i {
    return match shift {
        0x00 => vector,
        0x01 => _mm_or_si128(_mm_srli_si128::<0x08>(vector), _mm_slli_si128::<0x08>(addition)),
        0x02 => addition,
        0x03 => _mm_srli_si128::<0x08>(addition),
        _ => _mm_setzero_si128()
    };
}

/// # Example (_mm256_alvext_epi8):
///
/// - Source: ```[01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20]```
/// - Addition: ```[21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40]```
///
/// - Vext'ed left by 1 byte: ```[40, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f]```
/// - Vext'ed left by 2 bytes: ```[3f, 40, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e]```
/// - Vext'ed left by 6 bytes: ```[3b, 3c, 3d, 3e, 3f, 40, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a]```
/// - Vext'ed left by 10 bytes: ```[37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16]```
/// - Vext'ed left by 16 bytes: ```[31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10]```
/// - Vext'ed left by 20 bytes: ```[2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c]```
/// - Vext'ed left by 21 bytes: ```[2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b]```
/// - Vext'ed left by 22 bytes: ```[2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a]```
/// - Vext'ed left by 31 bytes: ```[22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 01]```
/// - Vext'ed left by 32 bytes: ```[21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40]```
/// - Vext'ed left by 36 bytes: ```[00, 00, 00, 00, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c]```
/// - Vext'ed left by 40 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38]```
/// - Vext'ed left by 46 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32]```
/// - Vext'ed left by 50 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e]```
/// - Vext'ed left by 51 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d]```
/// - Vext'ed left by 52 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c]```
/// - Vext'ed left by 56 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 21, 22, 23, 24, 25, 26, 27, 28]```
/// - Vext'ed left by 60 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 21, 22, 23, 24]```
/// - Vext'ed left by 61 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 21, 22, 23]```
/// - Vext'ed left by 62 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 21, 22]```
/// - Vext'ed left by 63 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 21]```
#[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), target_feature = "avx", target_feature = "avx2"))]
pub unsafe fn _mm256_alvext_epi8(vector: __m256i, addition: __m256i, shift: usize) -> __m256i {
    return match shift {
        0x00 => vector,
        0x01 => _mm256_or_si256(_mm256_slli_si256::<0x01>(vector), _mm256_srli_si256::<0x1F>(addition)),
        0x02 => _mm256_or_si256(_mm256_slli_si256::<0x02>(vector), _mm256_srli_si256::<0x1E>(addition)),
        0x03 => _mm256_or_si256(_mm256_slli_si256::<0x03>(vector), _mm256_srli_si256::<0x1D>(addition)),
        0x04 => _mm256_or_si256(_mm256_slli_si256::<0x04>(vector), _mm256_srli_si256::<0x1C>(addition)),
        0x05 => _mm256_or_si256(_mm256_slli_si256::<0x05>(vector), _mm256_srli_si256::<0x1B>(addition)),
        0x06 => _mm256_or_si256(_mm256_slli_si256::<0x06>(vector), _mm256_srli_si256::<0x1A>(addition)),
        0x07 => _mm256_or_si256(_mm256_slli_si256::<0x07>(vector), _mm256_srli_si256::<0x19>(addition)),
        0x08 => _mm256_or_si256(_mm256_slli_si256::<0x08>(vector), _mm256_srli_si256::<0x18>(addition)),
        0x09 => _mm256_or_si256(_mm256_slli_si256::<0x09>(vector), _mm256_srli_si256::<0x17>(addition)),
        0x0A => _mm256_or_si256(_mm256_slli_si256::<0x0A>(vector), _mm256_srli_si256::<0x16>(addition)),
        0x0B => _mm256_or_si256(_mm256_slli_si256::<0x0B>(vector), _mm256_srli_si256::<0x15>(addition)),
        0x0C => _mm256_or_si256(_mm256_slli_si256::<0x0C>(vector), _mm256_srli_si256::<0x14>(addition)),
        0x0D => _mm256_or_si256(_mm256_slli_si256::<0x0D>(vector), _mm256_srli_si256::<0x13>(addition)),
        0x0E => _mm256_or_si256(_mm256_slli_si256::<0x0E>(vector), _mm256_srli_si256::<0x12>(addition)),
        0x0F => _mm256_or_si256(_mm256_slli_si256::<0x0F>(vector), _mm256_srli_si256::<0x11>(addition)),
        0x10 => _mm256_or_si256(_mm256_slli_si256::<0x10>(vector), _mm256_srli_si256::<0x10>(addition)),
        0x11 => _mm256_or_si256(_mm256_slli_si256::<0x11>(vector), _mm256_srli_si256::<0x0F>(addition)),
        0x12 => _mm256_or_si256(_mm256_slli_si256::<0x12>(vector), _mm256_srli_si256::<0x0E>(addition)),
        0x13 => _mm256_or_si256(_mm256_slli_si256::<0x13>(vector), _mm256_srli_si256::<0x0D>(addition)),
        0x14 => _mm256_or_si256(_mm256_slli_si256::<0x14>(vector), _mm256_srli_si256::<0x0C>(addition)),
        0x15 => _mm256_or_si256(_mm256_slli_si256::<0x15>(vector), _mm256_srli_si256::<0x0B>(addition)),
        0x16 => _mm256_or_si256(_mm256_slli_si256::<0x16>(vector), _mm256_srli_si256::<0x0A>(addition)),
        0x17 => _mm256_or_si256(_mm256_slli_si256::<0x17>(vector), _mm256_srli_si256::<0x09>(addition)),
        0x18 => _mm256_or_si256(_mm256_slli_si256::<0x18>(vector), _mm256_srli_si256::<0x08>(addition)),
        0x19 => _mm256_or_si256(_mm256_slli_si256::<0x19>(vector), _mm256_srli_si256::<0x07>(addition)),
        0x1A => _mm256_or_si256(_mm256_slli_si256::<0x1A>(vector), _mm256_srli_si256::<0x06>(addition)),
        0x1B => _mm256_or_si256(_mm256_slli_si256::<0x1B>(vector), _mm256_srli_si256::<0x05>(addition)),
        0x1C => _mm256_or_si256(_mm256_slli_si256::<0x1C>(vector), _mm256_srli_si256::<0x04>(addition)),
        0x1D => _mm256_or_si256(_mm256_slli_si256::<0x1D>(vector), _mm256_srli_si256::<0x03>(addition)),
        0x1E => _mm256_or_si256(_mm256_slli_si256::<0x1E>(vector), _mm256_srli_si256::<0x02>(addition)),
        0x1F => _mm256_or_si256(_mm256_slli_si256::<0x1F>(vector), _mm256_srli_si256::<0x01>(addition)),
        0x20 => addition,
        0x21 => _mm256_slli_si256::<0x01>(addition),
        0x22 => _mm256_slli_si256::<0x02>(addition),
        0x23 => _mm256_slli_si256::<0x03>(addition),
        0x24 => _mm256_slli_si256::<0x04>(addition),
        0x25 => _mm256_slli_si256::<0x05>(addition),
        0x26 => _mm256_slli_si256::<0x06>(addition),
        0x27 => _mm256_slli_si256::<0x07>(addition),
        0x28 => _mm256_slli_si256::<0x08>(addition),
        0x29 => _mm256_slli_si256::<0x09>(addition),
        0x2A => _mm256_slli_si256::<0x0A>(addition),
        0x2B => _mm256_slli_si256::<0x0B>(addition),
        0x2C => _mm256_slli_si256::<0x0C>(addition),
        0x2D => _mm256_slli_si256::<0x0D>(addition),
        0x2E => _mm256_slli_si256::<0x0E>(addition),
        0x2F => _mm256_slli_si256::<0x0F>(addition),
        0x30 => _mm256_slli_si256::<0x10>(addition),
        0x31 => _mm256_slli_si256::<0x11>(addition),
        0x32 => _mm256_slli_si256::<0x12>(addition),
        0x33 => _mm256_slli_si256::<0x13>(addition),
        0x34 => _mm256_slli_si256::<0x14>(addition),
        0x35 => _mm256_slli_si256::<0x15>(addition),
        0x36 => _mm256_slli_si256::<0x16>(addition),
        0x37 => _mm256_slli_si256::<0x17>(addition),
        0x38 => _mm256_slli_si256::<0x18>(addition),
        0x39 => _mm256_slli_si256::<0x19>(addition),
        0x3A => _mm256_slli_si256::<0x1A>(addition),
        0x3B => _mm256_slli_si256::<0x1B>(addition),
        0x3C => _mm256_slli_si256::<0x1C>(addition),
        0x3D => _mm256_slli_si256::<0x1D>(addition),
        0x3E => _mm256_slli_si256::<0x1E>(addition),
        0x3F => _mm256_slli_si256::<0x1F>(addition),
        _ => _mm256_setzero_si256()
    };
}

/// # Example (_mm256_arvext_epi8):
///
/// - Source: ```[01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20]```
/// - Addition: ```[21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40]```
///
/// - Vext'ed right by 1 byte: ```[02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21]```
/// - Vext'ed right by 2 bytes: ```[03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22]```
/// - Vext'ed right by 6 bytes: ```[07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26]```
/// - Vext'ed right by 10 bytes: ```[0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a]```
/// - Vext'ed right by 16 bytes: ```[11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30]```
/// - Vext'ed right by 20 bytes: ```[15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34]```
/// - Vext'ed right by 21 bytes: ```[16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35]```
/// - Vext'ed right by 22 bytes: ```[17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36]```
/// - Vext'ed right by 31 bytes: ```[20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f]```
/// - Vext'ed right by 32 bytes: ```[21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40]```
/// - Vext'ed right by 36 bytes: ```[25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 00, 00, 00, 00]```
/// - Vext'ed right by 40 bytes: ```[29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 46 bytes: ```[2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 50 bytes: ```[33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 51 bytes: ```[34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 52 bytes: ```[35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 56 bytes: ```[39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 60 bytes: ```[3d, 3e, 3f, 40, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 61 bytes: ```[3e, 3f, 40, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 62 bytes: ```[3f, 40, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 63 bytes: ```[40, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
#[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), target_feature = "avx", target_feature = "avx2"))]
pub unsafe fn _mm256_arvext_epi8(vector: __m256i, addition: __m256i, shift: usize) -> __m256i {
    return match shift {
        0x00 => vector,
        0x01 => _mm256_or_si256(_mm256_srli_si256::<0x01>(vector), _mm256_slli_si256::<0x1F>(addition)),
        0x02 => _mm256_or_si256(_mm256_srli_si256::<0x02>(vector), _mm256_slli_si256::<0x1E>(addition)),
        0x03 => _mm256_or_si256(_mm256_srli_si256::<0x03>(vector), _mm256_slli_si256::<0x1D>(addition)),
        0x04 => _mm256_or_si256(_mm256_srli_si256::<0x04>(vector), _mm256_slli_si256::<0x1C>(addition)),
        0x05 => _mm256_or_si256(_mm256_srli_si256::<0x05>(vector), _mm256_slli_si256::<0x1B>(addition)),
        0x06 => _mm256_or_si256(_mm256_srli_si256::<0x06>(vector), _mm256_slli_si256::<0x1A>(addition)),
        0x07 => _mm256_or_si256(_mm256_srli_si256::<0x07>(vector), _mm256_slli_si256::<0x19>(addition)),
        0x08 => _mm256_or_si256(_mm256_srli_si256::<0x08>(vector), _mm256_slli_si256::<0x18>(addition)),
        0x09 => _mm256_or_si256(_mm256_srli_si256::<0x09>(vector), _mm256_slli_si256::<0x17>(addition)),
        0x0A => _mm256_or_si256(_mm256_srli_si256::<0x0A>(vector), _mm256_slli_si256::<0x16>(addition)),
        0x0B => _mm256_or_si256(_mm256_srli_si256::<0x0B>(vector), _mm256_slli_si256::<0x15>(addition)),
        0x0C => _mm256_or_si256(_mm256_srli_si256::<0x0C>(vector), _mm256_slli_si256::<0x14>(addition)),
        0x0D => _mm256_or_si256(_mm256_srli_si256::<0x0D>(vector), _mm256_slli_si256::<0x13>(addition)),
        0x0E => _mm256_or_si256(_mm256_srli_si256::<0x0E>(vector), _mm256_slli_si256::<0x12>(addition)),
        0x0F => _mm256_or_si256(_mm256_srli_si256::<0x0F>(vector), _mm256_slli_si256::<0x11>(addition)),
        0x10 => _mm256_or_si256(_mm256_srli_si256::<0x10>(vector), _mm256_slli_si256::<0x10>(addition)),
        0x11 => _mm256_or_si256(_mm256_srli_si256::<0x11>(vector), _mm256_slli_si256::<0x0F>(addition)),
        0x12 => _mm256_or_si256(_mm256_srli_si256::<0x12>(vector), _mm256_slli_si256::<0x0E>(addition)),
        0x13 => _mm256_or_si256(_mm256_srli_si256::<0x13>(vector), _mm256_slli_si256::<0x0D>(addition)),
        0x14 => _mm256_or_si256(_mm256_srli_si256::<0x14>(vector), _mm256_slli_si256::<0x0C>(addition)),
        0x15 => _mm256_or_si256(_mm256_srli_si256::<0x15>(vector), _mm256_slli_si256::<0x0B>(addition)),
        0x16 => _mm256_or_si256(_mm256_srli_si256::<0x16>(vector), _mm256_slli_si256::<0x0A>(addition)),
        0x17 => _mm256_or_si256(_mm256_srli_si256::<0x17>(vector), _mm256_slli_si256::<0x09>(addition)),
        0x18 => _mm256_or_si256(_mm256_srli_si256::<0x18>(vector), _mm256_slli_si256::<0x08>(addition)),
        0x19 => _mm256_or_si256(_mm256_srli_si256::<0x19>(vector), _mm256_slli_si256::<0x07>(addition)),
        0x1A => _mm256_or_si256(_mm256_srli_si256::<0x1A>(vector), _mm256_slli_si256::<0x06>(addition)),
        0x1B => _mm256_or_si256(_mm256_srli_si256::<0x1B>(vector), _mm256_slli_si256::<0x05>(addition)),
        0x1C => _mm256_or_si256(_mm256_srli_si256::<0x1C>(vector), _mm256_slli_si256::<0x04>(addition)),
        0x1D => _mm256_or_si256(_mm256_srli_si256::<0x1D>(vector), _mm256_slli_si256::<0x03>(addition)),
        0x1E => _mm256_or_si256(_mm256_srli_si256::<0x1E>(vector), _mm256_slli_si256::<0x02>(addition)),
        0x1F => _mm256_or_si256(_mm256_srli_si256::<0x1F>(vector), _mm256_slli_si256::<0x01>(addition)),
        0x20 => addition,
        0x21 => _mm256_srli_si256::<0x01>(addition),
        0x22 => _mm256_srli_si256::<0x02>(addition),
        0x23 => _mm256_srli_si256::<0x03>(addition),
        0x24 => _mm256_srli_si256::<0x04>(addition),
        0x25 => _mm256_srli_si256::<0x05>(addition),
        0x26 => _mm256_srli_si256::<0x06>(addition),
        0x27 => _mm256_srli_si256::<0x07>(addition),
        0x28 => _mm256_srli_si256::<0x08>(addition),
        0x29 => _mm256_srli_si256::<0x09>(addition),
        0x2A => _mm256_srli_si256::<0x0A>(addition),
        0x2B => _mm256_srli_si256::<0x0B>(addition),
        0x2C => _mm256_srli_si256::<0x0C>(addition),
        0x2D => _mm256_srli_si256::<0x0D>(addition),
        0x2E => _mm256_srli_si256::<0x0E>(addition),
        0x2F => _mm256_srli_si256::<0x0F>(addition),
        0x30 => _mm256_srli_si256::<0x10>(addition),
        0x31 => _mm256_srli_si256::<0x11>(addition),
        0x32 => _mm256_srli_si256::<0x12>(addition),
        0x33 => _mm256_srli_si256::<0x13>(addition),
        0x34 => _mm256_srli_si256::<0x14>(addition),
        0x35 => _mm256_srli_si256::<0x15>(addition),
        0x36 => _mm256_srli_si256::<0x16>(addition),
        0x37 => _mm256_srli_si256::<0x17>(addition),
        0x38 => _mm256_srli_si256::<0x18>(addition),
        0x39 => _mm256_srli_si256::<0x19>(addition),
        0x3A => _mm256_srli_si256::<0x1A>(addition),
        0x3B => _mm256_srli_si256::<0x1B>(addition),
        0x3C => _mm256_srli_si256::<0x1C>(addition),
        0x3D => _mm256_srli_si256::<0x1D>(addition),
        0x3E => _mm256_srli_si256::<0x1E>(addition),
        0x3F => _mm256_srli_si256::<0x1F>(addition),
        _ => _mm256_setzero_si256()
    };
}

/// # Example (_mm256_alvext_epi16):
///
/// - Source: ```[01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10]```
/// - Addition: ```[11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20]```
///
/// - Vext'ed left by 1 pair: ```[20, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f]```
/// - Vext'ed left by 2 pairs: ```[1f, 20, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e]```
/// - Vext'ed left by 6 pairs: ```[1b, 1c, 1d, 1e, 1f, 20, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a]```
/// - Vext'ed left by 10 pairs: ```[17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 01, 02, 03, 04, 05, 06]```
/// - Vext'ed left by 16 pairs: ```[11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20]```
/// - Vext'ed left by 20 pairs: ```[00, 00, 00, 00, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c]```
/// - Vext'ed left by 31 pairs: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 11]```
#[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), target_feature = "avx", target_feature = "avx2"))]
pub unsafe fn _mm256_alvext_epi16(vector: __m256i, addition: __m256i, shift: usize) -> __m256i {
    return match shift {
        0x00 => vector,
        0x01 => _mm256_or_si256(_mm256_slli_si256::<0x02>(vector), _mm256_srli_si256::<0x1E>(addition)),
        0x02 => _mm256_or_si256(_mm256_slli_si256::<0x04>(vector), _mm256_srli_si256::<0x1C>(addition)),
        0x03 => _mm256_or_si256(_mm256_slli_si256::<0x06>(vector), _mm256_srli_si256::<0x1A>(addition)),
        0x04 => _mm256_or_si256(_mm256_slli_si256::<0x08>(vector), _mm256_srli_si256::<0x18>(addition)),
        0x05 => _mm256_or_si256(_mm256_slli_si256::<0x0A>(vector), _mm256_srli_si256::<0x16>(addition)),
        0x06 => _mm256_or_si256(_mm256_slli_si256::<0x0C>(vector), _mm256_srli_si256::<0x14>(addition)),
        0x07 => _mm256_or_si256(_mm256_slli_si256::<0x0E>(vector), _mm256_srli_si256::<0x12>(addition)),
        0x08 => _mm256_or_si256(_mm256_slli_si256::<0x10>(vector), _mm256_srli_si256::<0x10>(addition)),
        0x09 => _mm256_or_si256(_mm256_slli_si256::<0x12>(vector), _mm256_srli_si256::<0x0E>(addition)),
        0x0A => _mm256_or_si256(_mm256_slli_si256::<0x14>(vector), _mm256_srli_si256::<0x0C>(addition)),
        0x0B => _mm256_or_si256(_mm256_slli_si256::<0x16>(vector), _mm256_srli_si256::<0x0A>(addition)),
        0x0C => _mm256_or_si256(_mm256_slli_si256::<0x18>(vector), _mm256_srli_si256::<0x08>(addition)),
        0x0D => _mm256_or_si256(_mm256_slli_si256::<0x1A>(vector), _mm256_srli_si256::<0x06>(addition)),
        0x0E => _mm256_or_si256(_mm256_slli_si256::<0x1C>(vector), _mm256_srli_si256::<0x04>(addition)),
        0x0F => _mm256_or_si256(_mm256_slli_si256::<0x1E>(vector), _mm256_srli_si256::<0x02>(addition)),
        0x10 => addition,
        0x11 => _mm256_slli_si256::<0x02>(addition),
        0x12 => _mm256_slli_si256::<0x04>(addition),
        0x13 => _mm256_slli_si256::<0x06>(addition),
        0x14 => _mm256_slli_si256::<0x08>(addition),
        0x15 => _mm256_slli_si256::<0x0A>(addition),
        0x16 => _mm256_slli_si256::<0x0C>(addition),
        0x17 => _mm256_slli_si256::<0x0E>(addition),
        0x18 => _mm256_slli_si256::<0x10>(addition),
        0x19 => _mm256_slli_si256::<0x12>(addition),
        0x1A => _mm256_slli_si256::<0x14>(addition),
        0x1B => _mm256_slli_si256::<0x16>(addition),
        0x1C => _mm256_slli_si256::<0x18>(addition),
        0x1D => _mm256_slli_si256::<0x1A>(addition),
        0x1E => _mm256_slli_si256::<0x1C>(addition),
        0x1F => _mm256_slli_si256::<0x1E>(addition),
        _ => _mm256_setzero_si256()
    };
}

/// # Example (_mm256_arvext_epi16):
///
/// - Source: ```[01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10]```
/// - Addition: ```[11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20]```
///
/// - Vext'ed right by 1 pair: ```[02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11]```
/// - Vext'ed right by 2 pairs: ```[03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12]```
/// - Vext'ed right by 6 pairs: ```[07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16]```
/// - Vext'ed right by 10 pairs: ```[0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a]```
/// - Vext'ed right by 16 pairs: ```[11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20]```
/// - Vext'ed right by 20 pairs: ```[15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 00, 00, 00, 00]```
/// - Vext'ed right by 31 pairs: ```[20, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
#[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), target_feature = "avx", target_feature = "avx2"))]
pub unsafe fn _mm256_arvext_epi16(vector: __m256i, addition: __m256i, shift: usize) -> __m256i {
    return match shift {
        0x00 => vector,
        0x01 => _mm256_or_si256(_mm256_srli_si256::<0x02>(vector), _mm256_slli_si256::<0x1E>(addition)),
        0x02 => _mm256_or_si256(_mm256_srli_si256::<0x04>(vector), _mm256_slli_si256::<0x1C>(addition)),
        0x03 => _mm256_or_si256(_mm256_srli_si256::<0x06>(vector), _mm256_slli_si256::<0x1A>(addition)),
        0x04 => _mm256_or_si256(_mm256_srli_si256::<0x08>(vector), _mm256_slli_si256::<0x18>(addition)),
        0x05 => _mm256_or_si256(_mm256_srli_si256::<0x0A>(vector), _mm256_slli_si256::<0x16>(addition)),
        0x06 => _mm256_or_si256(_mm256_srli_si256::<0x0C>(vector), _mm256_slli_si256::<0x14>(addition)),
        0x07 => _mm256_or_si256(_mm256_srli_si256::<0x0E>(vector), _mm256_slli_si256::<0x12>(addition)),
        0x08 => _mm256_or_si256(_mm256_srli_si256::<0x10>(vector), _mm256_slli_si256::<0x10>(addition)),
        0x09 => _mm256_or_si256(_mm256_srli_si256::<0x12>(vector), _mm256_slli_si256::<0x0E>(addition)),
        0x0A => _mm256_or_si256(_mm256_srli_si256::<0x14>(vector), _mm256_slli_si256::<0x0C>(addition)),
        0x0B => _mm256_or_si256(_mm256_srli_si256::<0x16>(vector), _mm256_slli_si256::<0x0A>(addition)),
        0x0C => _mm256_or_si256(_mm256_srli_si256::<0x18>(vector), _mm256_slli_si256::<0x08>(addition)),
        0x0D => _mm256_or_si256(_mm256_srli_si256::<0x1A>(vector), _mm256_slli_si256::<0x06>(addition)),
        0x0E => _mm256_or_si256(_mm256_srli_si256::<0x1C>(vector), _mm256_slli_si256::<0x04>(addition)),
        0x0F => _mm256_or_si256(_mm256_srli_si256::<0x1E>(vector), _mm256_slli_si256::<0x02>(addition)),
        0x10 => addition,
        0x11 => _mm256_srli_si256::<0x02>(addition),
        0x12 => _mm256_srli_si256::<0x04>(addition),
        0x13 => _mm256_srli_si256::<0x06>(addition),
        0x14 => _mm256_srli_si256::<0x08>(addition),
        0x15 => _mm256_srli_si256::<0x0A>(addition),
        0x16 => _mm256_srli_si256::<0x0C>(addition),
        0x17 => _mm256_srli_si256::<0x0E>(addition),
        0x18 => _mm256_srli_si256::<0x10>(addition),
        0x19 => _mm256_srli_si256::<0x12>(addition),
        0x1A => _mm256_srli_si256::<0x14>(addition),
        0x1B => _mm256_srli_si256::<0x16>(addition),
        0x1C => _mm256_srli_si256::<0x18>(addition),
        0x1D => _mm256_srli_si256::<0x1A>(addition),
        0x1E => _mm256_srli_si256::<0x1C>(addition),
        0x1F => _mm256_srli_si256::<0x1E>(addition),
        _ => _mm256_setzero_si256()
    };
}

/// # Example (_mm256_alvext_epi32):
///
/// - Source: ```[01, 02, 03, 04, 05, 06, 07, 08]```
/// - Addition: ```[11, 12, 13, 14, 15, 16, 17, 18]```
///
/// - Vext'ed left by 1 pair: ```[18, 01, 02, 03, 04, 05, 06, 07]```
/// - Vext'ed left by 2 pairs: ```[17, 18, 01, 02, 03, 04, 05, 06]```
/// - Vext'ed left by 3 pairs: ```[16, 17, 18, 01, 02, 03, 04, 05]```
/// - Vext'ed left by 4 pairs: ```[15, 16, 17, 18, 01, 02, 03, 04]```
/// - Vext'ed left by 5 pairs: ```[14, 15, 16, 17, 18, 01, 02, 03]```
/// - Vext'ed left by 6 pairs: ```[13, 14, 15, 16, 17, 18, 01, 02]```
/// - Vext'ed left by 7 pairs: ```[12, 13, 14, 15, 16, 17, 18, 01]```
/// - Vext'ed left by 8 pairs: ```[11, 12, 13, 14, 15, 16, 17, 18]```
/// - Vext'ed left by 9 pairs: ```[00, 11, 12, 13, 14, 15, 16, 17]```
/// - Vext'ed left by 10 pairs: ```[00, 00, 11, 12, 13, 14, 15, 16]```
/// - Vext'ed left by 11 pairs: ```[00, 00, 00, 11, 12, 13, 14, 15]```
/// - Vext'ed left by 12 pairs: ```[00, 00, 00, 00, 11, 12, 13, 14]```
/// - Vext'ed left by 13 pairs: ```[00, 00, 00, 00, 00, 11, 12, 13]```
/// - Vext'ed left by 14 pairs: ```[00, 00, 00, 00, 00, 00, 11, 12]```
/// - Vext'ed left by 15 pairs: ```[00, 00, 00, 00, 00, 00, 00, 11]```
#[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), target_feature = "avx", target_feature = "avx2"))]
pub unsafe fn _mm256_alvext_epi32(vector: __m256i, addition: __m256i, shift: usize) -> __m256i {
    return match shift {
        0x00 => vector,
        0x01 => _mm256_or_si256(_mm256_slli_si256::<0x04>(vector), _mm256_srli_si256::<0x1C>(addition)),
        0x02 => _mm256_or_si256(_mm256_slli_si256::<0x08>(vector), _mm256_srli_si256::<0x18>(addition)),
        0x03 => _mm256_or_si256(_mm256_slli_si256::<0x0C>(vector), _mm256_srli_si256::<0x14>(addition)),
        0x04 => _mm256_or_si256(_mm256_slli_si256::<0x10>(vector), _mm256_srli_si256::<0x10>(addition)),
        0x05 => _mm256_or_si256(_mm256_slli_si256::<0x14>(vector), _mm256_srli_si256::<0x0C>(addition)),
        0x06 => _mm256_or_si256(_mm256_slli_si256::<0x18>(vector), _mm256_srli_si256::<0x08>(addition)),
        0x07 => _mm256_or_si256(_mm256_slli_si256::<0x1C>(vector), _mm256_srli_si256::<0x04>(addition)),
        0x08 => addition,
        0x09 => _mm256_slli_si256::<0x04>(addition),
        0x0A => _mm256_slli_si256::<0x08>(addition),
        0x0B => _mm256_slli_si256::<0x0C>(addition),
        0x0C => _mm256_slli_si256::<0x10>(addition),
        0x0D => _mm256_slli_si256::<0x14>(addition),
        0x0E => _mm256_slli_si256::<0x18>(addition),
        0x0F => _mm256_slli_si256::<0x1C>(addition),
        _ => _mm256_setzero_si256()
    };
}

/// # Example (_mm256_arvext_epi32):
///
/// - Source: ```[01, 02, 03, 04, 05, 06, 07, 08]```
/// - Addition: ```[11, 12, 13, 14, 15, 16, 17, 18]```
///
/// - Vext'ed right by 1 byte:  [02, 03, 04, 05, 06, 07, 08, 11]```
/// - Vext'ed right by 2 bytes:  [03, 04, 05, 06, 07, 08, 11, 12]```
/// - Vext'ed right by 3 bytes:  [04, 05, 06, 07, 08, 11, 12, 13]```
/// - Vext'ed right by 4 bytes:  [05, 06, 07, 08, 11, 12, 13, 14]```
/// - Vext'ed right by 5 bytes:  [06, 07, 08, 11, 12, 13, 14, 15]```
/// - Vext'ed right by 6 bytes:  [07, 08, 11, 12, 13, 14, 15, 16]```
/// - Vext'ed right by 7 bytes:  [08, 11, 12, 13, 14, 15, 16, 17]```
/// - Vext'ed right by 8 bytes:  [11, 12, 13, 14, 15, 16, 17, 18]```
/// - Vext'ed right by 9 bytes:  [12, 13, 14, 15, 16, 17, 18, 00]```
/// - Vext'ed right by 10 bytes:  [13, 14, 15, 16, 17, 18, 00, 00]```
/// - Vext'ed right by 11 bytes:  [14, 15, 16, 17, 18, 00, 00, 00]```
/// - Vext'ed right by 12 bytes:  [15, 16, 17, 18, 00, 00, 00, 00]```
/// - Vext'ed right by 13 bytes:  [16, 17, 18, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 14 bytes:  [17, 18, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 15 bytes:  [18, 00, 00, 00, 00, 00, 00, 00]```
#[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), target_feature = "avx", target_feature = "avx2"))]
pub unsafe fn _mm256_arvext_epi32(vector: __m256i, addition: __m256i, shift: usize) -> __m256i {
    return match shift {
        0x00 => vector,
        0x01 => _mm256_or_si256(_mm256_srli_si256::<0x04>(vector), _mm256_slli_si256::<0x1C>(addition)),
        0x02 => _mm256_or_si256(_mm256_srli_si256::<0x08>(vector), _mm256_slli_si256::<0x18>(addition)),
        0x03 => _mm256_or_si256(_mm256_srli_si256::<0x0C>(vector), _mm256_slli_si256::<0x14>(addition)),
        0x04 => _mm256_or_si256(_mm256_srli_si256::<0x10>(vector), _mm256_slli_si256::<0x10>(addition)),
        0x05 => _mm256_or_si256(_mm256_srli_si256::<0x14>(vector), _mm256_slli_si256::<0x0C>(addition)),
        0x06 => _mm256_or_si256(_mm256_srli_si256::<0x18>(vector), _mm256_slli_si256::<0x08>(addition)),
        0x07 => _mm256_or_si256(_mm256_srli_si256::<0x1C>(vector), _mm256_slli_si256::<0x04>(addition)),
        0x08 => addition,
        0x09 => _mm256_srli_si256::<0x04>(addition),
        0x0A => _mm256_srli_si256::<0x08>(addition),
        0x0B => _mm256_srli_si256::<0x0C>(addition),
        0x0C => _mm256_srli_si256::<0x10>(addition),
        0x0D => _mm256_srli_si256::<0x14>(addition),
        0x0E => _mm256_srli_si256::<0x18>(addition),
        0x0F => _mm256_srli_si256::<0x1C>(addition),
        _ => _mm256_setzero_si256()
    };
}

/// # Example (_mm256_alvext_epi64):
///
/// - Source: ```[01, 02, 03, 04]```
/// - Addition: ```[05, 06, 07, 08]```
///
/// - Vext'ed left by 1 pair: ```[08, 01, 02, 03]```
/// - Vext'ed left by 2 pairs: ```[07, 08, 01, 02]```
/// - Vext'ed left by 3 pairs: ```[06, 07, 08, 01]```
/// - Vext'ed left by 4 pairs: ```[05, 06, 07, 08]```
/// - Vext'ed left by 5 pairs: ```[00, 05, 06, 07]```
/// - Vext'ed left by 6 pairs: ```[00, 00, 05, 06]```
/// - Vext'ed left by 7 pairs: ```[00, 00, 00, 05]```
/// - Vext'ed left by 8 pairs: ```[00, 00, 00, 00]```
#[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), target_feature = "avx", target_feature = "avx2"))]
pub unsafe fn _mm256_alvext_epi64(vector: __m256i, addition: __m256i, shift: usize) -> __m256i {
    return match shift {
        0x00 => vector,
        0x01 => _mm256_or_si256(_mm256_slli_si256::<0x08>(vector), _mm256_srli_si256::<0x18>(addition)),
        0x02 => _mm256_or_si256(_mm256_slli_si256::<0x10>(vector), _mm256_srli_si256::<0x10>(addition)),
        0x03 => _mm256_or_si256(_mm256_slli_si256::<0x18>(vector), _mm256_srli_si256::<0x08>(addition)),
        0x04 => addition,
        0x05 => _mm256_slli_si256::<0x08>(addition),
        0x06 => _mm256_slli_si256::<0x10>(addition),
        0x07 => _mm256_slli_si256::<0x18>(addition),
        _ => _mm256_setzero_si256()
    };
}

/// # Example (_mm256_arvext_epi64):
///
/// - Source: ```[01, 02, 03, 04]```
/// - Addition: ```[05, 06, 07, 08]```
///
/// - Vext'ed right by 1 pair: ```[02, 03, 04, 05]```
/// - Vext'ed right by 2 pairs: ```[03, 04, 05, 06]```
/// - Vext'ed right by 3 pairs: ```[04, 05, 06, 07]```
/// - Vext'ed right by 4 pairs: ```[05, 06, 07, 08]```
/// - Vext'ed right by 5 pairs: ```[06, 07, 08, 00]```
/// - Vext'ed right by 6 pairs: ```[07, 08, 00, 00]```
/// - Vext'ed right by 7 pairs: ```[08, 00, 00, 00]```
/// - Vext'ed right by 8 pairs: ```[00, 00, 00, 00]```
#[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), target_feature = "avx", target_feature = "avx2"))]
pub unsafe fn _mm256_arvext_epi64(vector: __m256i, addition: __m256i, shift: usize) -> __m256i {
    return match shift {
        0x00 => vector,
        0x01 => _mm256_or_si256(_mm256_srli_si256::<0x08>(vector), _mm256_slli_si256::<0x18>(addition)),
        0x02 => _mm256_or_si256(_mm256_srli_si256::<0x10>(vector), _mm256_slli_si256::<0x10>(addition)),
        0x03 => _mm256_or_si256(_mm256_srli_si256::<0x18>(vector), _mm256_slli_si256::<0x08>(addition)),
        0x04 => addition,
        0x05 => _mm256_srli_si256::<0x08>(addition),
        0x06 => _mm256_srli_si256::<0x10>(addition),
        0x07 => _mm256_srli_si256::<0x18>(addition),
        _ => _mm256_setzero_si256()
    };
}

/// # Example (_mm256_alvext_epi128):
///
/// - Source: ```[01, 02]```
/// - Addition: ```[03, 04]```
///
/// - Vext'ed left by 1 pair: ```[04, 01]```
/// - Vext'ed left by 2 pairs: ```[03, 04]```
/// - Vext'ed left by 3 pairs: ```[00, 03]```
/// - Vext'ed left by 4 pairs: ```[00, 00]```
#[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), target_feature = "avx", target_feature = "avx2"))]
pub unsafe fn _mm256_alvext_epi128(vector: __m256i, addition: __m256i, shift: usize) -> __m256i {
    return match shift {
        0x00 => vector,
        0x01 => _mm256_or_si256(_mm256_slli_si256::<0x10>(vector), _mm256_srli_si256::<0x10>(addition)),
        0x02 => addition,
        0x03 => _mm256_slli_si256::<0x10>(addition),
        _ => _mm256_setzero_si256()
    };
}

/// # Example (_mm256_arvext_epi128):
///
/// - Source: ```[01, 02]```
/// - Addition: ```[03, 04]```
///
/// - Vext'ed right by 1 pair: ```[02, 03]```
/// - Vext'ed right by 2 pairs: ```[03, 04]```
/// - Vext'ed right by 3 pairs: ```[04, 00]```
/// - Vext'ed right by 4 pairs: ```[00, 00]```
#[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), target_feature = "avx", target_feature = "avx2"))]
pub unsafe fn _mm256_arvext_epi128(vector: __m256i, addition: __m256i, shift: usize) -> __m256i {
    return match shift {
        0x00 => vector,
        0x01 => _mm256_or_si256(_mm256_srli_si256::<0x10>(vector), _mm256_slli_si256::<0x10>(addition)),
        0x02 => addition,
        0x03 => _mm256_srli_si256::<0x10>(addition),
        _ => _mm256_setzero_si256()
    };
}

/// # Example (_mm512_alvext_epi8):
///
/// - Source: ```[01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40]```
/// - Addition: ```[41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80]```
///
/// - Vext'ed left by 1 byte: ```[80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f]```
/// - Vext'ed left by 2 bytes: ```[7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e]```
/// - Vext'ed left by 3 bytes: ```[7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d]```
/// - Vext'ed left by 4 bytes: ```[7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c]```
/// - Vext'ed left by 5 bytes: ```[7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b]```
/// - Vext'ed left by 6 bytes: ```[7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a]```
/// - Vext'ed left by 7 bytes: ```[7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39]```
/// - Vext'ed left by 8 bytes: ```[79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38]```
/// - Vext'ed left by 9 bytes: ```[78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37]```
/// - Vext'ed left by 10 bytes: ```[77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36]```
/// - Vext'ed left by 11 bytes: ```[76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35]```
/// - Vext'ed left by 12 bytes: ```[75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34]```
/// - Vext'ed left by 13 bytes: ```[74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33]```
/// - Vext'ed left by 14 bytes: ```[73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32]```
/// - Vext'ed left by 15 bytes: ```[72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31]```
/// - Vext'ed left by 16 bytes: ```[71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30]```
/// - Vext'ed left by 17 bytes: ```[70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f]```
/// - Vext'ed left by 18 bytes: ```[6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e]```
/// - Vext'ed left by 19 bytes: ```[6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d]```
/// - Vext'ed left by 20 bytes: ```[6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c]```
/// - Vext'ed left by 21 bytes: ```[6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b]```
/// - Vext'ed left by 22 bytes: ```[6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a]```
/// - Vext'ed left by 23 bytes: ```[6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29]```
/// - Vext'ed left by 24 bytes: ```[69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28]```
/// - Vext'ed left by 25 bytes: ```[68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27]```
/// - Vext'ed left by 26 bytes: ```[67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26]```
/// - Vext'ed left by 27 bytes: ```[66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25]```
/// - Vext'ed left by 28 bytes: ```[65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24]```
/// - Vext'ed left by 29 bytes: ```[64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23]```
/// - Vext'ed left by 30 bytes: ```[63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22]```
/// - Vext'ed left by 31 bytes: ```[62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21]```
/// - Vext'ed left by 32 bytes: ```[61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20]```
/// - Vext'ed left by 33 bytes: ```[60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f]```
/// - Vext'ed left by 34 bytes: ```[5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e]```
/// - Vext'ed left by 35 bytes: ```[5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d]```
/// - Vext'ed left by 36 bytes: ```[5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c]```
/// - Vext'ed left by 37 bytes: ```[5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b]```
/// - Vext'ed left by 38 bytes: ```[5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a]```
/// - Vext'ed left by 39 bytes: ```[5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19]```
/// - Vext'ed left by 40 bytes: ```[59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18]```
/// - Vext'ed left by 41 bytes: ```[58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17]```
/// - Vext'ed left by 42 bytes: ```[57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16]```
/// - Vext'ed left by 43 bytes: ```[56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15]```
/// - Vext'ed left by 44 bytes: ```[55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14]```
/// - Vext'ed left by 45 bytes: ```[54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13]```
/// - Vext'ed left by 46 bytes: ```[53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12]```
/// - Vext'ed left by 47 bytes: ```[52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11]```
/// - Vext'ed left by 48 bytes: ```[51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10]```
/// - Vext'ed left by 49 bytes: ```[50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f]```
/// - Vext'ed left by 50 bytes: ```[4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e]```
/// - Vext'ed left by 51 bytes: ```[4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d]```
/// - Vext'ed left by 52 bytes: ```[4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c]```
/// - Vext'ed left by 53 bytes: ```[4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b]```
/// - Vext'ed left by 54 bytes: ```[4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a]```
/// - Vext'ed left by 55 bytes: ```[4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08, 09]```
/// - Vext'ed left by 56 bytes: ```[49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07, 08]```
/// - Vext'ed left by 57 bytes: ```[48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06, 07]```
/// - Vext'ed left by 58 bytes: ```[47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05, 06]```
/// - Vext'ed left by 59 bytes: ```[46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04, 05]```
/// - Vext'ed left by 60 bytes: ```[45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03, 04]```
/// - Vext'ed left by 61 bytes: ```[44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02, 03]```
/// - Vext'ed left by 62 bytes: ```[43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01, 02]```
/// - Vext'ed left by 63 bytes: ```[42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 01]```
/// - Vext'ed left by 64 bytes: ```[41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80]```
/// - Vext'ed left by 65 bytes: ```[00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f]```
/// - Vext'ed left by 66 bytes: ```[00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e]```
/// - Vext'ed left by 67 bytes: ```[00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d]```
/// - Vext'ed left by 68 bytes: ```[00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c]```
/// - Vext'ed left by 69 bytes: ```[00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b]```
/// - Vext'ed left by 70 bytes: ```[00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a]```
/// - Vext'ed left by 71 bytes: ```[00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79]```
/// - Vext'ed left by 72 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78]```
/// - Vext'ed left by 73 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77]```
/// - Vext'ed left by 74 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76]```
/// - Vext'ed left by 75 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75]```
/// - Vext'ed left by 76 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74]```
/// - Vext'ed left by 77 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73]```
/// - Vext'ed left by 78 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72]```
/// - Vext'ed left by 79 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71]```
/// - Vext'ed left by 80 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70]```
/// - Vext'ed left by 81 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f]```
/// - Vext'ed left by 82 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e]```
/// - Vext'ed left by 83 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d]```
/// - Vext'ed left by 84 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c]```
/// - Vext'ed left by 85 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b]```
/// - Vext'ed left by 86 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a]```
/// - Vext'ed left by 87 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69]```
/// - Vext'ed left by 88 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68]```
/// - Vext'ed left by 89 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67]```
/// - Vext'ed left by 90 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66]```
/// - Vext'ed left by 91 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65]```
/// - Vext'ed left by 92 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64]```
/// - Vext'ed left by 93 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63]```
/// - Vext'ed left by 94 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62]```
/// - Vext'ed left by 95 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61]```
/// - Vext'ed left by 96 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60]```
/// - Vext'ed left by 97 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f]```
/// - Vext'ed left by 98 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e]```
/// - Vext'ed left by 99 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d]```
/// - Vext'ed left by 100 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c]```
/// - Vext'ed left by 101 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b]```
/// - Vext'ed left by 102 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a]```
/// - Vext'ed left by 103 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59]```
/// - Vext'ed left by 104 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58]```
/// - Vext'ed left by 105 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57]```
/// - Vext'ed left by 106 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56]```
/// - Vext'ed left by 107 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55]```
/// - Vext'ed left by 108 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54]```
/// - Vext'ed left by 109 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53]```
/// - Vext'ed left by 110 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52]```
/// - Vext'ed left by 111 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51]```
/// - Vext'ed left by 112 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50]```
/// - Vext'ed left by 113 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f]```
/// - Vext'ed left by 114 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e]```
/// - Vext'ed left by 115 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d]```
/// - Vext'ed left by 116 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c]```
/// - Vext'ed left by 117 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b]```
/// - Vext'ed left by 118 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a]```
/// - Vext'ed left by 119 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48, 49]```
/// - Vext'ed left by 120 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47, 48]```
/// - Vext'ed left by 121 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46, 47]```
/// - Vext'ed left by 122 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45, 46]```
/// - Vext'ed left by 123 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44, 45]```
/// - Vext'ed left by 124 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43, 44]```
/// - Vext'ed left by 125 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42, 43]```
/// - Vext'ed left by 126 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41, 42]```
/// - Vext'ed left by 127 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 41]```
/// - Vext'ed left by 128 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
#[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), target_feature = "avx512f", target_feature = "avx512bw"))]
pub unsafe fn _mm512_alvext_epi8(vector: __m512i, addition: __m512i, shift: usize) -> __m512i {
    return match shift {
        0x00 => vector,
        0x01 => _mm512_or_si512(_mm512_slli_si512::<0x01>(vector), _mm512_srli_si512::<0x3F>(addition)),
        0x02 => _mm512_or_si512(_mm512_slli_si512::<0x02>(vector), _mm512_srli_si512::<0x3E>(addition)),
        0x03 => _mm512_or_si512(_mm512_slli_si512::<0x03>(vector), _mm512_srli_si512::<0x3D>(addition)),
        0x04 => _mm512_or_si512(_mm512_slli_si512::<0x04>(vector), _mm512_srli_si512::<0x3C>(addition)),
        0x05 => _mm512_or_si512(_mm512_slli_si512::<0x05>(vector), _mm512_srli_si512::<0x3B>(addition)),
        0x06 => _mm512_or_si512(_mm512_slli_si512::<0x06>(vector), _mm512_srli_si512::<0x3A>(addition)),
        0x07 => _mm512_or_si512(_mm512_slli_si512::<0x07>(vector), _mm512_srli_si512::<0x39>(addition)),
        0x08 => _mm512_or_si512(_mm512_slli_si512::<0x08>(vector), _mm512_srli_si512::<0x38>(addition)),
        0x09 => _mm512_or_si512(_mm512_slli_si512::<0x09>(vector), _mm512_srli_si512::<0x37>(addition)),
        0x0A => _mm512_or_si512(_mm512_slli_si512::<0x0A>(vector), _mm512_srli_si512::<0x36>(addition)),
        0x0B => _mm512_or_si512(_mm512_slli_si512::<0x0B>(vector), _mm512_srli_si512::<0x35>(addition)),
        0x0C => _mm512_or_si512(_mm512_slli_si512::<0x0C>(vector), _mm512_srli_si512::<0x34>(addition)),
        0x0D => _mm512_or_si512(_mm512_slli_si512::<0x0D>(vector), _mm512_srli_si512::<0x33>(addition)),
        0x0E => _mm512_or_si512(_mm512_slli_si512::<0x0E>(vector), _mm512_srli_si512::<0x32>(addition)),
        0x0F => _mm512_or_si512(_mm512_slli_si512::<0x0F>(vector), _mm512_srli_si512::<0x31>(addition)),
        0x10 => _mm512_or_si512(_mm512_slli_si512::<0x10>(vector), _mm512_srli_si512::<0x30>(addition)),
        0x11 => _mm512_or_si512(_mm512_slli_si512::<0x11>(vector), _mm512_srli_si512::<0x2F>(addition)),
        0x12 => _mm512_or_si512(_mm512_slli_si512::<0x12>(vector), _mm512_srli_si512::<0x2E>(addition)),
        0x13 => _mm512_or_si512(_mm512_slli_si512::<0x13>(vector), _mm512_srli_si512::<0x2D>(addition)),
        0x14 => _mm512_or_si512(_mm512_slli_si512::<0x14>(vector), _mm512_srli_si512::<0x2C>(addition)),
        0x15 => _mm512_or_si512(_mm512_slli_si512::<0x15>(vector), _mm512_srli_si512::<0x2B>(addition)),
        0x16 => _mm512_or_si512(_mm512_slli_si512::<0x16>(vector), _mm512_srli_si512::<0x2A>(addition)),
        0x17 => _mm512_or_si512(_mm512_slli_si512::<0x17>(vector), _mm512_srli_si512::<0x29>(addition)),
        0x18 => _mm512_or_si512(_mm512_slli_si512::<0x18>(vector), _mm512_srli_si512::<0x28>(addition)),
        0x19 => _mm512_or_si512(_mm512_slli_si512::<0x19>(vector), _mm512_srli_si512::<0x27>(addition)),
        0x1A => _mm512_or_si512(_mm512_slli_si512::<0x1A>(vector), _mm512_srli_si512::<0x26>(addition)),
        0x1B => _mm512_or_si512(_mm512_slli_si512::<0x1B>(vector), _mm512_srli_si512::<0x25>(addition)),
        0x1C => _mm512_or_si512(_mm512_slli_si512::<0x1C>(vector), _mm512_srli_si512::<0x24>(addition)),
        0x1D => _mm512_or_si512(_mm512_slli_si512::<0x1D>(vector), _mm512_srli_si512::<0x23>(addition)),
        0x1E => _mm512_or_si512(_mm512_slli_si512::<0x1E>(vector), _mm512_srli_si512::<0x22>(addition)),
        0x1F => _mm512_or_si512(_mm512_slli_si512::<0x1F>(vector), _mm512_srli_si512::<0x21>(addition)),
        0x20 => _mm512_or_si512(_mm512_slli_si512::<0x20>(vector), _mm512_srli_si512::<0x20>(addition)),
        0x21 => _mm512_or_si512(_mm512_slli_si512::<0x21>(vector), _mm512_srli_si512::<0x1F>(addition)),
        0x22 => _mm512_or_si512(_mm512_slli_si512::<0x22>(vector), _mm512_srli_si512::<0x1E>(addition)),
        0x23 => _mm512_or_si512(_mm512_slli_si512::<0x23>(vector), _mm512_srli_si512::<0x1D>(addition)),
        0x24 => _mm512_or_si512(_mm512_slli_si512::<0x24>(vector), _mm512_srli_si512::<0x1C>(addition)),
        0x25 => _mm512_or_si512(_mm512_slli_si512::<0x25>(vector), _mm512_srli_si512::<0x1B>(addition)),
        0x26 => _mm512_or_si512(_mm512_slli_si512::<0x26>(vector), _mm512_srli_si512::<0x1A>(addition)),
        0x27 => _mm512_or_si512(_mm512_slli_si512::<0x27>(vector), _mm512_srli_si512::<0x19>(addition)),
        0x28 => _mm512_or_si512(_mm512_slli_si512::<0x28>(vector), _mm512_srli_si512::<0x18>(addition)),
        0x29 => _mm512_or_si512(_mm512_slli_si512::<0x29>(vector), _mm512_srli_si512::<0x17>(addition)),
        0x2A => _mm512_or_si512(_mm512_slli_si512::<0x2A>(vector), _mm512_srli_si512::<0x16>(addition)),
        0x2B => _mm512_or_si512(_mm512_slli_si512::<0x2B>(vector), _mm512_srli_si512::<0x15>(addition)),
        0x2C => _mm512_or_si512(_mm512_slli_si512::<0x2C>(vector), _mm512_srli_si512::<0x14>(addition)),
        0x2D => _mm512_or_si512(_mm512_slli_si512::<0x2D>(vector), _mm512_srli_si512::<0x13>(addition)),
        0x2E => _mm512_or_si512(_mm512_slli_si512::<0x2E>(vector), _mm512_srli_si512::<0x12>(addition)),
        0x2F => _mm512_or_si512(_mm512_slli_si512::<0x2F>(vector), _mm512_srli_si512::<0x11>(addition)),
        0x30 => _mm512_or_si512(_mm512_slli_si512::<0x30>(vector), _mm512_srli_si512::<0x10>(addition)),
        0x31 => _mm512_or_si512(_mm512_slli_si512::<0x31>(vector), _mm512_srli_si512::<0x0F>(addition)),
        0x32 => _mm512_or_si512(_mm512_slli_si512::<0x32>(vector), _mm512_srli_si512::<0x0E>(addition)),
        0x33 => _mm512_or_si512(_mm512_slli_si512::<0x33>(vector), _mm512_srli_si512::<0x0D>(addition)),
        0x34 => _mm512_or_si512(_mm512_slli_si512::<0x34>(vector), _mm512_srli_si512::<0x0C>(addition)),
        0x35 => _mm512_or_si512(_mm512_slli_si512::<0x35>(vector), _mm512_srli_si512::<0x0B>(addition)),
        0x36 => _mm512_or_si512(_mm512_slli_si512::<0x36>(vector), _mm512_srli_si512::<0x0A>(addition)),
        0x37 => _mm512_or_si512(_mm512_slli_si512::<0x37>(vector), _mm512_srli_si512::<0x09>(addition)),
        0x38 => _mm512_or_si512(_mm512_slli_si512::<0x38>(vector), _mm512_srli_si512::<0x08>(addition)),
        0x39 => _mm512_or_si512(_mm512_slli_si512::<0x39>(vector), _mm512_srli_si512::<0x07>(addition)),
        0x3A => _mm512_or_si512(_mm512_slli_si512::<0x3A>(vector), _mm512_srli_si512::<0x06>(addition)),
        0x3B => _mm512_or_si512(_mm512_slli_si512::<0x3B>(vector), _mm512_srli_si512::<0x05>(addition)),
        0x3C => _mm512_or_si512(_mm512_slli_si512::<0x3C>(vector), _mm512_srli_si512::<0x04>(addition)),
        0x3D => _mm512_or_si512(_mm512_slli_si512::<0x3D>(vector), _mm512_srli_si512::<0x03>(addition)),
        0x3E => _mm512_or_si512(_mm512_slli_si512::<0x3E>(vector), _mm512_srli_si512::<0x02>(addition)),
        0x3F => _mm512_or_si512(_mm512_slli_si512::<0x3F>(vector), _mm512_srli_si512::<0x01>(addition)),
        0x40 => addition,
        0x41 => _mm512_slli_si512::<0x01>(addition),
        0x42 => _mm512_slli_si512::<0x02>(addition),
        0x43 => _mm512_slli_si512::<0x03>(addition),
        0x44 => _mm512_slli_si512::<0x04>(addition),
        0x45 => _mm512_slli_si512::<0x05>(addition),
        0x46 => _mm512_slli_si512::<0x06>(addition),
        0x47 => _mm512_slli_si512::<0x07>(addition),
        0x48 => _mm512_slli_si512::<0x08>(addition),
        0x49 => _mm512_slli_si512::<0x09>(addition),
        0x4A => _mm512_slli_si512::<0x0A>(addition),
        0x4B => _mm512_slli_si512::<0x0B>(addition),
        0x4C => _mm512_slli_si512::<0x0C>(addition),
        0x4D => _mm512_slli_si512::<0x0D>(addition),
        0x4E => _mm512_slli_si512::<0x0E>(addition),
        0x4F => _mm512_slli_si512::<0x0F>(addition),
        0x50 => _mm512_slli_si512::<0x10>(addition),
        0x51 => _mm512_slli_si512::<0x11>(addition),
        0x52 => _mm512_slli_si512::<0x12>(addition),
        0x53 => _mm512_slli_si512::<0x13>(addition),
        0x54 => _mm512_slli_si512::<0x14>(addition),
        0x55 => _mm512_slli_si512::<0x15>(addition),
        0x56 => _mm512_slli_si512::<0x16>(addition),
        0x57 => _mm512_slli_si512::<0x17>(addition),
        0x58 => _mm512_slli_si512::<0x18>(addition),
        0x59 => _mm512_slli_si512::<0x19>(addition),
        0x5A => _mm512_slli_si512::<0x1A>(addition),
        0x5B => _mm512_slli_si512::<0x1B>(addition),
        0x5C => _mm512_slli_si512::<0x1C>(addition),
        0x5D => _mm512_slli_si512::<0x1D>(addition),
        0x5E => _mm512_slli_si512::<0x1E>(addition),
        0x5F => _mm512_slli_si512::<0x1F>(addition),
        0x60 => _mm512_slli_si512::<0x20>(addition),
        0x61 => _mm512_slli_si512::<0x21>(addition),
        0x62 => _mm512_slli_si512::<0x22>(addition),
        0x63 => _mm512_slli_si512::<0x23>(addition),
        0x64 => _mm512_slli_si512::<0x24>(addition),
        0x65 => _mm512_slli_si512::<0x25>(addition),
        0x66 => _mm512_slli_si512::<0x26>(addition),
        0x67 => _mm512_slli_si512::<0x27>(addition),
        0x68 => _mm512_slli_si512::<0x28>(addition),
        0x69 => _mm512_slli_si512::<0x29>(addition),
        0x6A => _mm512_slli_si512::<0x2A>(addition),
        0x6B => _mm512_slli_si512::<0x2B>(addition),
        0x6C => _mm512_slli_si512::<0x2C>(addition),
        0x6D => _mm512_slli_si512::<0x2D>(addition),
        0x6E => _mm512_slli_si512::<0x2E>(addition),
        0x6F => _mm512_slli_si512::<0x2F>(addition),
        0x70 => _mm512_slli_si512::<0x30>(addition),
        0x71 => _mm512_slli_si512::<0x31>(addition),
        0x72 => _mm512_slli_si512::<0x32>(addition),
        0x73 => _mm512_slli_si512::<0x33>(addition),
        0x74 => _mm512_slli_si512::<0x34>(addition),
        0x75 => _mm512_slli_si512::<0x35>(addition),
        0x76 => _mm512_slli_si512::<0x36>(addition),
        0x77 => _mm512_slli_si512::<0x37>(addition),
        0x78 => _mm512_slli_si512::<0x38>(addition),
        0x79 => _mm512_slli_si512::<0x39>(addition),
        0x7A => _mm512_slli_si512::<0x3A>(addition),
        0x7B => _mm512_slli_si512::<0x3B>(addition),
        0x7C => _mm512_slli_si512::<0x3C>(addition),
        0x7D => _mm512_slli_si512::<0x3D>(addition),
        0x7E => _mm512_slli_si512::<0x3E>(addition),
        0x7F => _mm512_slli_si512::<0x3F>(addition),
        _ => _mm512_setzero_si512()
    };
}

/// # Example (_mm512_arvext_epi8):
///
/// - Source: ```[01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40]```
/// - Addition: ```[41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80]```
///
/// - Vext'ed right by 1 byte: ```[02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41]```
/// - Vext'ed right by 2 bytes: ```[03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42]```
/// - Vext'ed right by 3 bytes: ```[04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43]```
/// - Vext'ed right by 4 bytes: ```[05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44]```
/// - Vext'ed right by 5 bytes: ```[06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45]```
/// - Vext'ed right by 6 bytes: ```[07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46]```
/// - Vext'ed right by 7 bytes: ```[08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47]```
/// - Vext'ed right by 8 bytes: ```[09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48]```
/// - Vext'ed right by 9 bytes: ```[0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49]```
/// - Vext'ed right by 10 bytes: ```[0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a]```
/// - Vext'ed right by 11 bytes: ```[0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b]```
/// - Vext'ed right by 12 bytes: ```[0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c]```
/// - Vext'ed right by 13 bytes: ```[0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d]```
/// - Vext'ed right by 14 bytes: ```[0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e]```
/// - Vext'ed right by 15 bytes: ```[10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f]```
/// - Vext'ed right by 16 bytes: ```[11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50]```
/// - Vext'ed right by 17 bytes: ```[12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51]```
/// - Vext'ed right by 18 bytes: ```[13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52]```
/// - Vext'ed right by 19 bytes: ```[14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53]```
/// - Vext'ed right by 20 bytes: ```[15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54]```
/// - Vext'ed right by 21 bytes: ```[16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55]```
/// - Vext'ed right by 22 bytes: ```[17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56]```
/// - Vext'ed right by 23 bytes: ```[18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57]```
/// - Vext'ed right by 24 bytes: ```[19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58]```
/// - Vext'ed right by 25 bytes: ```[1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59]```
/// - Vext'ed right by 26 bytes: ```[1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a]```
/// - Vext'ed right by 27 bytes: ```[1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b]```
/// - Vext'ed right by 28 bytes: ```[1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c]```
/// - Vext'ed right by 29 bytes: ```[1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d]```
/// - Vext'ed right by 30 bytes: ```[1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e]```
/// - Vext'ed right by 31 bytes: ```[20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f]```
/// - Vext'ed right by 32 bytes: ```[21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60]```
/// - Vext'ed right by 33 bytes: ```[22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61]```
/// - Vext'ed right by 34 bytes: ```[23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62]```
/// - Vext'ed right by 35 bytes: ```[24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63]```
/// - Vext'ed right by 36 bytes: ```[25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64]```
/// - Vext'ed right by 37 bytes: ```[26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65]```
/// - Vext'ed right by 38 bytes: ```[27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66]```
/// - Vext'ed right by 39 bytes: ```[28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67]```
/// - Vext'ed right by 40 bytes: ```[29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68]```
/// - Vext'ed right by 41 bytes: ```[2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69]```
/// - Vext'ed right by 42 bytes: ```[2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a]```
/// - Vext'ed right by 43 bytes: ```[2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b]```
/// - Vext'ed right by 44 bytes: ```[2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c]```
/// - Vext'ed right by 45 bytes: ```[2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d]```
/// - Vext'ed right by 46 bytes: ```[2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e]```
/// - Vext'ed right by 47 bytes: ```[30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f]```
/// - Vext'ed right by 48 bytes: ```[31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70]```
/// - Vext'ed right by 49 bytes: ```[32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71]```
/// - Vext'ed right by 50 bytes: ```[33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72]```
/// - Vext'ed right by 51 bytes: ```[34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73]```
/// - Vext'ed right by 52 bytes: ```[35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74]```
/// - Vext'ed right by 53 bytes: ```[36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75]```
/// - Vext'ed right by 54 bytes: ```[37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76]```
/// - Vext'ed right by 55 bytes: ```[38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77]```
/// - Vext'ed right by 56 bytes: ```[39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78]```
/// - Vext'ed right by 57 bytes: ```[3a, 3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79]```
/// - Vext'ed right by 58 bytes: ```[3b, 3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a]```
/// - Vext'ed right by 59 bytes: ```[3c, 3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b]```
/// - Vext'ed right by 60 bytes: ```[3d, 3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c]```
/// - Vext'ed right by 61 bytes: ```[3e, 3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d]```
/// - Vext'ed right by 62 bytes: ```[3f, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e]```
/// - Vext'ed right by 63 bytes: ```[40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f]```
/// - Vext'ed right by 64 bytes: ```[41, 42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80]```
/// - Vext'ed right by 65 bytes: ```[42, 43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00]```
/// - Vext'ed right by 66 bytes: ```[43, 44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00]```
/// - Vext'ed right by 67 bytes: ```[44, 45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00]```
/// - Vext'ed right by 68 bytes: ```[45, 46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00]```
/// - Vext'ed right by 69 bytes: ```[46, 47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 70 bytes: ```[47, 48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 71 bytes: ```[48, 49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 72 bytes: ```[49, 4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 73 bytes: ```[4a, 4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 74 bytes: ```[4b, 4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 75 bytes: ```[4c, 4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 76 bytes: ```[4d, 4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 77 bytes: ```[4e, 4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 78 bytes: ```[4f, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 79 bytes: ```[50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 80 bytes: ```[51, 52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 81 bytes: ```[52, 53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 82 bytes: ```[53, 54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 83 bytes: ```[54, 55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 84 bytes: ```[55, 56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 85 bytes: ```[56, 57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 86 bytes: ```[57, 58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 87 bytes: ```[58, 59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 88 bytes: ```[59, 5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 89 bytes: ```[5a, 5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 90 bytes: ```[5b, 5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 91 bytes: ```[5c, 5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 92 bytes: ```[5d, 5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 93 bytes: ```[5e, 5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 94 bytes: ```[5f, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 95 bytes: ```[60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 96 bytes: ```[61, 62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 97 bytes: ```[62, 63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 98 bytes: ```[63, 64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 99 bytes: ```[64, 65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 100 bytes: ```[65, 66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 101 bytes: ```[66, 67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 102 bytes: ```[67, 68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 103 bytes: ```[68, 69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 104 bytes: ```[69, 6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 105 bytes: ```[6a, 6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 106 bytes: ```[6b, 6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 107 bytes: ```[6c, 6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 108 bytes: ```[6d, 6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 109 bytes: ```[6e, 6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 110 bytes: ```[6f, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 111 bytes: ```[70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 112 bytes: ```[71, 72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 113 bytes: ```[72, 73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 114 bytes: ```[73, 74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 115 bytes: ```[74, 75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 116 bytes: ```[75, 76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 117 bytes: ```[76, 77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 118 bytes: ```[77, 78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 119 bytes: ```[78, 79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 120 bytes: ```[79, 7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 121 bytes: ```[7a, 7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 122 bytes: ```[7b, 7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 123 bytes: ```[7c, 7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 124 bytes: ```[7d, 7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 125 bytes: ```[7e, 7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 126 bytes: ```[7f, 80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 127 bytes: ```[80, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 128 bytes: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
#[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), target_feature = "avx512f", target_feature = "avx512bw"))]
pub unsafe fn _mm512_arvext_epi8(vector: __m512i, addition: __m512i, shift: usize) -> __m512i {
    return match shift {
        0x00 => vector,
        0x01 => _mm512_or_si512(_mm512_srli_si512::<0x01>(vector), _mm512_slli_si512::<0x3F>(addition)),
        0x02 => _mm512_or_si512(_mm512_srli_si512::<0x02>(vector), _mm512_slli_si512::<0x3E>(addition)),
        0x03 => _mm512_or_si512(_mm512_srli_si512::<0x03>(vector), _mm512_slli_si512::<0x3D>(addition)),
        0x04 => _mm512_or_si512(_mm512_srli_si512::<0x04>(vector), _mm512_slli_si512::<0x3C>(addition)),
        0x05 => _mm512_or_si512(_mm512_srli_si512::<0x05>(vector), _mm512_slli_si512::<0x3B>(addition)),
        0x06 => _mm512_or_si512(_mm512_srli_si512::<0x06>(vector), _mm512_slli_si512::<0x3A>(addition)),
        0x07 => _mm512_or_si512(_mm512_srli_si512::<0x07>(vector), _mm512_slli_si512::<0x39>(addition)),
        0x08 => _mm512_or_si512(_mm512_srli_si512::<0x08>(vector), _mm512_slli_si512::<0x38>(addition)),
        0x09 => _mm512_or_si512(_mm512_srli_si512::<0x09>(vector), _mm512_slli_si512::<0x37>(addition)),
        0x0A => _mm512_or_si512(_mm512_srli_si512::<0x0A>(vector), _mm512_slli_si512::<0x36>(addition)),
        0x0B => _mm512_or_si512(_mm512_srli_si512::<0x0B>(vector), _mm512_slli_si512::<0x35>(addition)),
        0x0C => _mm512_or_si512(_mm512_srli_si512::<0x0C>(vector), _mm512_slli_si512::<0x34>(addition)),
        0x0D => _mm512_or_si512(_mm512_srli_si512::<0x0D>(vector), _mm512_slli_si512::<0x33>(addition)),
        0x0E => _mm512_or_si512(_mm512_srli_si512::<0x0E>(vector), _mm512_slli_si512::<0x32>(addition)),
        0x0F => _mm512_or_si512(_mm512_srli_si512::<0x0F>(vector), _mm512_slli_si512::<0x31>(addition)),
        0x10 => _mm512_or_si512(_mm512_srli_si512::<0x10>(vector), _mm512_slli_si512::<0x30>(addition)),
        0x11 => _mm512_or_si512(_mm512_srli_si512::<0x11>(vector), _mm512_slli_si512::<0x2F>(addition)),
        0x12 => _mm512_or_si512(_mm512_srli_si512::<0x12>(vector), _mm512_slli_si512::<0x2E>(addition)),
        0x13 => _mm512_or_si512(_mm512_srli_si512::<0x13>(vector), _mm512_slli_si512::<0x2D>(addition)),
        0x14 => _mm512_or_si512(_mm512_srli_si512::<0x14>(vector), _mm512_slli_si512::<0x2C>(addition)),
        0x15 => _mm512_or_si512(_mm512_srli_si512::<0x15>(vector), _mm512_slli_si512::<0x2B>(addition)),
        0x16 => _mm512_or_si512(_mm512_srli_si512::<0x16>(vector), _mm512_slli_si512::<0x2A>(addition)),
        0x17 => _mm512_or_si512(_mm512_srli_si512::<0x17>(vector), _mm512_slli_si512::<0x29>(addition)),
        0x18 => _mm512_or_si512(_mm512_srli_si512::<0x18>(vector), _mm512_slli_si512::<0x28>(addition)),
        0x19 => _mm512_or_si512(_mm512_srli_si512::<0x19>(vector), _mm512_slli_si512::<0x27>(addition)),
        0x1A => _mm512_or_si512(_mm512_srli_si512::<0x1A>(vector), _mm512_slli_si512::<0x26>(addition)),
        0x1B => _mm512_or_si512(_mm512_srli_si512::<0x1B>(vector), _mm512_slli_si512::<0x25>(addition)),
        0x1C => _mm512_or_si512(_mm512_srli_si512::<0x1C>(vector), _mm512_slli_si512::<0x24>(addition)),
        0x1D => _mm512_or_si512(_mm512_srli_si512::<0x1D>(vector), _mm512_slli_si512::<0x23>(addition)),
        0x1E => _mm512_or_si512(_mm512_srli_si512::<0x1E>(vector), _mm512_slli_si512::<0x22>(addition)),
        0x1F => _mm512_or_si512(_mm512_srli_si512::<0x1F>(vector), _mm512_slli_si512::<0x21>(addition)),
        0x20 => _mm512_or_si512(_mm512_srli_si512::<0x20>(vector), _mm512_slli_si512::<0x20>(addition)),
        0x21 => _mm512_or_si512(_mm512_srli_si512::<0x21>(vector), _mm512_slli_si512::<0x1F>(addition)),
        0x22 => _mm512_or_si512(_mm512_srli_si512::<0x22>(vector), _mm512_slli_si512::<0x1E>(addition)),
        0x23 => _mm512_or_si512(_mm512_srli_si512::<0x23>(vector), _mm512_slli_si512::<0x1D>(addition)),
        0x24 => _mm512_or_si512(_mm512_srli_si512::<0x24>(vector), _mm512_slli_si512::<0x1C>(addition)),
        0x25 => _mm512_or_si512(_mm512_srli_si512::<0x25>(vector), _mm512_slli_si512::<0x1B>(addition)),
        0x26 => _mm512_or_si512(_mm512_srli_si512::<0x26>(vector), _mm512_slli_si512::<0x1A>(addition)),
        0x27 => _mm512_or_si512(_mm512_srli_si512::<0x27>(vector), _mm512_slli_si512::<0x19>(addition)),
        0x28 => _mm512_or_si512(_mm512_srli_si512::<0x28>(vector), _mm512_slli_si512::<0x18>(addition)),
        0x29 => _mm512_or_si512(_mm512_srli_si512::<0x29>(vector), _mm512_slli_si512::<0x17>(addition)),
        0x2A => _mm512_or_si512(_mm512_srli_si512::<0x2A>(vector), _mm512_slli_si512::<0x16>(addition)),
        0x2B => _mm512_or_si512(_mm512_srli_si512::<0x2B>(vector), _mm512_slli_si512::<0x15>(addition)),
        0x2C => _mm512_or_si512(_mm512_srli_si512::<0x2C>(vector), _mm512_slli_si512::<0x14>(addition)),
        0x2D => _mm512_or_si512(_mm512_srli_si512::<0x2D>(vector), _mm512_slli_si512::<0x13>(addition)),
        0x2E => _mm512_or_si512(_mm512_srli_si512::<0x2E>(vector), _mm512_slli_si512::<0x12>(addition)),
        0x2F => _mm512_or_si512(_mm512_srli_si512::<0x2F>(vector), _mm512_slli_si512::<0x11>(addition)),
        0x30 => _mm512_or_si512(_mm512_srli_si512::<0x30>(vector), _mm512_slli_si512::<0x10>(addition)),
        0x31 => _mm512_or_si512(_mm512_srli_si512::<0x31>(vector), _mm512_slli_si512::<0x0F>(addition)),
        0x32 => _mm512_or_si512(_mm512_srli_si512::<0x32>(vector), _mm512_slli_si512::<0x0E>(addition)),
        0x33 => _mm512_or_si512(_mm512_srli_si512::<0x33>(vector), _mm512_slli_si512::<0x0D>(addition)),
        0x34 => _mm512_or_si512(_mm512_srli_si512::<0x34>(vector), _mm512_slli_si512::<0x0C>(addition)),
        0x35 => _mm512_or_si512(_mm512_srli_si512::<0x35>(vector), _mm512_slli_si512::<0x0B>(addition)),
        0x36 => _mm512_or_si512(_mm512_srli_si512::<0x36>(vector), _mm512_slli_si512::<0x0A>(addition)),
        0x37 => _mm512_or_si512(_mm512_srli_si512::<0x37>(vector), _mm512_slli_si512::<0x09>(addition)),
        0x38 => _mm512_or_si512(_mm512_srli_si512::<0x38>(vector), _mm512_slli_si512::<0x08>(addition)),
        0x39 => _mm512_or_si512(_mm512_srli_si512::<0x39>(vector), _mm512_slli_si512::<0x07>(addition)),
        0x3A => _mm512_or_si512(_mm512_srli_si512::<0x3A>(vector), _mm512_slli_si512::<0x06>(addition)),
        0x3B => _mm512_or_si512(_mm512_srli_si512::<0x3B>(vector), _mm512_slli_si512::<0x05>(addition)),
        0x3C => _mm512_or_si512(_mm512_srli_si512::<0x3C>(vector), _mm512_slli_si512::<0x04>(addition)),
        0x3D => _mm512_or_si512(_mm512_srli_si512::<0x3D>(vector), _mm512_slli_si512::<0x03>(addition)),
        0x3E => _mm512_or_si512(_mm512_srli_si512::<0x3E>(vector), _mm512_slli_si512::<0x02>(addition)),
        0x3F => _mm512_or_si512(_mm512_srli_si512::<0x3F>(vector), _mm512_slli_si512::<0x01>(addition)),
        0x40 => addition,
        0x41 => _mm512_srli_si512::<0x01>(addition),
        0x42 => _mm512_srli_si512::<0x02>(addition),
        0x43 => _mm512_srli_si512::<0x03>(addition),
        0x44 => _mm512_srli_si512::<0x04>(addition),
        0x45 => _mm512_srli_si512::<0x05>(addition),
        0x46 => _mm512_srli_si512::<0x06>(addition),
        0x47 => _mm512_srli_si512::<0x07>(addition),
        0x48 => _mm512_srli_si512::<0x08>(addition),
        0x49 => _mm512_srli_si512::<0x09>(addition),
        0x4A => _mm512_srli_si512::<0x0A>(addition),
        0x4B => _mm512_srli_si512::<0x0B>(addition),
        0x4C => _mm512_srli_si512::<0x0C>(addition),
        0x4D => _mm512_srli_si512::<0x0D>(addition),
        0x4E => _mm512_srli_si512::<0x0E>(addition),
        0x4F => _mm512_srli_si512::<0x0F>(addition),
        0x50 => _mm512_srli_si512::<0x10>(addition),
        0x51 => _mm512_srli_si512::<0x11>(addition),
        0x52 => _mm512_srli_si512::<0x12>(addition),
        0x53 => _mm512_srli_si512::<0x13>(addition),
        0x54 => _mm512_srli_si512::<0x14>(addition),
        0x55 => _mm512_srli_si512::<0x15>(addition),
        0x56 => _mm512_srli_si512::<0x16>(addition),
        0x57 => _mm512_srli_si512::<0x17>(addition),
        0x58 => _mm512_srli_si512::<0x18>(addition),
        0x59 => _mm512_srli_si512::<0x19>(addition),
        0x5A => _mm512_srli_si512::<0x1A>(addition),
        0x5B => _mm512_srli_si512::<0x1B>(addition),
        0x5C => _mm512_srli_si512::<0x1C>(addition),
        0x5D => _mm512_srli_si512::<0x1D>(addition),
        0x5E => _mm512_srli_si512::<0x1E>(addition),
        0x5F => _mm512_srli_si512::<0x1F>(addition),
        0x60 => _mm512_srli_si512::<0x20>(addition),
        0x61 => _mm512_srli_si512::<0x21>(addition),
        0x62 => _mm512_srli_si512::<0x22>(addition),
        0x63 => _mm512_srli_si512::<0x23>(addition),
        0x64 => _mm512_srli_si512::<0x24>(addition),
        0x65 => _mm512_srli_si512::<0x25>(addition),
        0x66 => _mm512_srli_si512::<0x26>(addition),
        0x67 => _mm512_srli_si512::<0x27>(addition),
        0x68 => _mm512_srli_si512::<0x28>(addition),
        0x69 => _mm512_srli_si512::<0x29>(addition),
        0x6A => _mm512_srli_si512::<0x2A>(addition),
        0x6B => _mm512_srli_si512::<0x2B>(addition),
        0x6C => _mm512_srli_si512::<0x2C>(addition),
        0x6D => _mm512_srli_si512::<0x2D>(addition),
        0x6E => _mm512_srli_si512::<0x2E>(addition),
        0x6F => _mm512_srli_si512::<0x2F>(addition),
        0x70 => _mm512_srli_si512::<0x30>(addition),
        0x71 => _mm512_srli_si512::<0x31>(addition),
        0x72 => _mm512_srli_si512::<0x32>(addition),
        0x73 => _mm512_srli_si512::<0x33>(addition),
        0x74 => _mm512_srli_si512::<0x34>(addition),
        0x75 => _mm512_srli_si512::<0x35>(addition),
        0x76 => _mm512_srli_si512::<0x36>(addition),
        0x77 => _mm512_srli_si512::<0x37>(addition),
        0x78 => _mm512_srli_si512::<0x38>(addition),
        0x79 => _mm512_srli_si512::<0x39>(addition),
        0x7A => _mm512_srli_si512::<0x3A>(addition),
        0x7B => _mm512_srli_si512::<0x3B>(addition),
        0x7C => _mm512_srli_si512::<0x3C>(addition),
        0x7D => _mm512_srli_si512::<0x3D>(addition),
        0x7E => _mm512_srli_si512::<0x3E>(addition),
        0x7F => _mm512_srli_si512::<0x3F>(addition),
        _ => _mm512_setzero_si512()
    };
}

/// # Example (_mm512_alvext_epi16):
///
/// - Source: ```[01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20]```
/// - Addition: ```[21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40]```
///
/// - Vext'ed left by 1 pair: ```[40, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f]```
/// - Vext'ed left by 2 pairs: ```[3f, 40, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e]```
/// - Vext'ed left by 3 pairs: ```[3e, 3f, 40, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d]```
/// - Vext'ed left by 4 pairs: ```[3d, 3e, 3f, 40, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c]```
/// - Vext'ed left by 5 pairs: ```[3c, 3d, 3e, 3f, 40, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b]```
/// - Vext'ed left by 6 pairs: ```[3b, 3c, 3d, 3e, 3f, 40, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a]```
/// - Vext'ed left by 7 pairs: ```[3a, 3b, 3c, 3d, 3e, 3f, 40, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19]```
/// - Vext'ed left by 8 pairs: ```[39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18]```
/// - Vext'ed left by 9 pairs: ```[38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17]```
/// - Vext'ed left by 10 pairs: ```[37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16]```
/// - Vext'ed left by 11 pairs: ```[36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15]```
/// - Vext'ed left by 12 pairs: ```[35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14]```
/// - Vext'ed left by 13 pairs: ```[34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13]```
/// - Vext'ed left by 14 pairs: ```[33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12]```
/// - Vext'ed left by 15 pairs: ```[32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11]```
/// - Vext'ed left by 16 pairs: ```[31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10]```
/// - Vext'ed left by 17 pairs: ```[30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f]```
/// - Vext'ed left by 18 pairs: ```[2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e]```
/// - Vext'ed left by 19 pairs: ```[2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d]```
/// - Vext'ed left by 20 pairs: ```[2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c]```
/// - Vext'ed left by 21 pairs: ```[2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b]```
/// - Vext'ed left by 22 pairs: ```[2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a]```
/// - Vext'ed left by 23 pairs: ```[2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 01, 02, 03, 04, 05, 06, 07, 08, 09]```
/// - Vext'ed left by 24 pairs: ```[29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 01, 02, 03, 04, 05, 06, 07, 08]```
/// - Vext'ed left by 25 pairs: ```[28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 01, 02, 03, 04, 05, 06, 07]```
/// - Vext'ed left by 26 pairs: ```[27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 01, 02, 03, 04, 05, 06]```
/// - Vext'ed left by 27 pairs: ```[26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 01, 02, 03, 04, 05]```
/// - Vext'ed left by 28 pairs: ```[25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 01, 02, 03, 04]```
/// - Vext'ed left by 29 pairs: ```[24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 01, 02, 03]```
/// - Vext'ed left by 30 pairs: ```[23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 01, 02]```
/// - Vext'ed left by 31 pairs: ```[22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 01]```
/// - Vext'ed left by 32 pairs: ```[21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40]```
/// - Vext'ed left by 33 pairs: ```[00, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f]```
/// - Vext'ed left by 34 pairs: ```[00, 00, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e]```
/// - Vext'ed left by 35 pairs: ```[00, 00, 00, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d]```
/// - Vext'ed left by 36 pairs: ```[00, 00, 00, 00, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c]```
/// - Vext'ed left by 37 pairs: ```[00, 00, 00, 00, 00, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b]```
/// - Vext'ed left by 38 pairs: ```[00, 00, 00, 00, 00, 00, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a]```
/// - Vext'ed left by 39 pairs: ```[00, 00, 00, 00, 00, 00, 00, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39]```
/// - Vext'ed left by 40 pairs: ```[00, 00, 00, 00, 00, 00, 00, 00, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38]```
/// - Vext'ed left by 41 pairs: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37]```
/// - Vext'ed left by 42 pairs: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36]```
/// - Vext'ed left by 43 pairs: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35]```
/// - Vext'ed left by 44 pairs: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34]```
/// - Vext'ed left by 45 pairs: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33]```
/// - Vext'ed left by 46 pairs: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32]```
/// - Vext'ed left by 47 pairs: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31]```
/// - Vext'ed left by 48 pairs: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30]```
/// - Vext'ed left by 49 pairs: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f]```
/// - Vext'ed left by 50 pairs: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e]```
/// - Vext'ed left by 51 pairs: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d]```
/// - Vext'ed left by 52 pairs: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c]```
/// - Vext'ed left by 53 pairs: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b]```
/// - Vext'ed left by 54 pairs: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a]```
/// - Vext'ed left by 55 pairs: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 21, 22, 23, 24, 25, 26, 27, 28, 29]```
/// - Vext'ed left by 56 pairs: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 21, 22, 23, 24, 25, 26, 27, 28]```
/// - Vext'ed left by 57 pairs: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 21, 22, 23, 24, 25, 26, 27]```
/// - Vext'ed left by 58 pairs: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 21, 22, 23, 24, 25, 26]```
/// - Vext'ed left by 59 pairs: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 21, 22, 23, 24, 25]```
/// - Vext'ed left by 60 pairs: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 21, 22, 23, 24]```
/// - Vext'ed left by 61 pairs: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 21, 22, 23]```
/// - Vext'ed left by 62 pairs: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 21, 22]```
/// - Vext'ed left by 63 pairs: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 21]```
/// - Vext'ed left by 64 pairs: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
#[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), target_feature = "avx512f", target_feature = "avx512bw"))]
pub unsafe fn _mm512_alvext_epi16(vector: __m512i, addition: __m512i, shift: usize) -> __m512i {
    return match shift {
        0x00 => vector,
        0x01 => _mm512_or_si512(_mm512_slli_si512::<0x02>(vector), _mm512_srli_si512::<0x3E>(addition)),
        0x02 => _mm512_or_si512(_mm512_slli_si512::<0x04>(vector), _mm512_srli_si512::<0x3C>(addition)),
        0x03 => _mm512_or_si512(_mm512_slli_si512::<0x06>(vector), _mm512_srli_si512::<0x3A>(addition)),
        0x04 => _mm512_or_si512(_mm512_slli_si512::<0x08>(vector), _mm512_srli_si512::<0x38>(addition)),
        0x05 => _mm512_or_si512(_mm512_slli_si512::<0x0A>(vector), _mm512_srli_si512::<0x36>(addition)),
        0x06 => _mm512_or_si512(_mm512_slli_si512::<0x0C>(vector), _mm512_srli_si512::<0x34>(addition)),
        0x07 => _mm512_or_si512(_mm512_slli_si512::<0x0E>(vector), _mm512_srli_si512::<0x32>(addition)),
        0x08 => _mm512_or_si512(_mm512_slli_si512::<0x10>(vector), _mm512_srli_si512::<0x30>(addition)),
        0x09 => _mm512_or_si512(_mm512_slli_si512::<0x12>(vector), _mm512_srli_si512::<0x2E>(addition)),
        0x0A => _mm512_or_si512(_mm512_slli_si512::<0x14>(vector), _mm512_srli_si512::<0x2C>(addition)),
        0x0B => _mm512_or_si512(_mm512_slli_si512::<0x16>(vector), _mm512_srli_si512::<0x2A>(addition)),
        0x0C => _mm512_or_si512(_mm512_slli_si512::<0x18>(vector), _mm512_srli_si512::<0x28>(addition)),
        0x0D => _mm512_or_si512(_mm512_slli_si512::<0x1A>(vector), _mm512_srli_si512::<0x26>(addition)),
        0x0E => _mm512_or_si512(_mm512_slli_si512::<0x1C>(vector), _mm512_srli_si512::<0x24>(addition)),
        0x0F => _mm512_or_si512(_mm512_slli_si512::<0x1E>(vector), _mm512_srli_si512::<0x22>(addition)),
        0x10 => _mm512_or_si512(_mm512_slli_si512::<0x20>(vector), _mm512_srli_si512::<0x20>(addition)),
        0x11 => _mm512_or_si512(_mm512_slli_si512::<0x22>(vector), _mm512_srli_si512::<0x1E>(addition)),
        0x12 => _mm512_or_si512(_mm512_slli_si512::<0x24>(vector), _mm512_srli_si512::<0x1C>(addition)),
        0x13 => _mm512_or_si512(_mm512_slli_si512::<0x26>(vector), _mm512_srli_si512::<0x1A>(addition)),
        0x14 => _mm512_or_si512(_mm512_slli_si512::<0x28>(vector), _mm512_srli_si512::<0x18>(addition)),
        0x15 => _mm512_or_si512(_mm512_slli_si512::<0x2A>(vector), _mm512_srli_si512::<0x16>(addition)),
        0x16 => _mm512_or_si512(_mm512_slli_si512::<0x2C>(vector), _mm512_srli_si512::<0x14>(addition)),
        0x17 => _mm512_or_si512(_mm512_slli_si512::<0x2E>(vector), _mm512_srli_si512::<0x12>(addition)),
        0x18 => _mm512_or_si512(_mm512_slli_si512::<0x30>(vector), _mm512_srli_si512::<0x10>(addition)),
        0x19 => _mm512_or_si512(_mm512_slli_si512::<0x32>(vector), _mm512_srli_si512::<0x0E>(addition)),
        0x1A => _mm512_or_si512(_mm512_slli_si512::<0x34>(vector), _mm512_srli_si512::<0x0C>(addition)),
        0x1B => _mm512_or_si512(_mm512_slli_si512::<0x36>(vector), _mm512_srli_si512::<0x0A>(addition)),
        0x1C => _mm512_or_si512(_mm512_slli_si512::<0x38>(vector), _mm512_srli_si512::<0x08>(addition)),
        0x1D => _mm512_or_si512(_mm512_slli_si512::<0x3A>(vector), _mm512_srli_si512::<0x06>(addition)),
        0x1E => _mm512_or_si512(_mm512_slli_si512::<0x3C>(vector), _mm512_srli_si512::<0x04>(addition)),
        0x1F => _mm512_or_si512(_mm512_slli_si512::<0x3E>(vector), _mm512_srli_si512::<0x02>(addition)),
        0x20 => addition,
        0x21 => _mm512_slli_si512::<0x02>(addition),
        0x22 => _mm512_slli_si512::<0x04>(addition),
        0x23 => _mm512_slli_si512::<0x06>(addition),
        0x24 => _mm512_slli_si512::<0x08>(addition),
        0x25 => _mm512_slli_si512::<0x0A>(addition),
        0x26 => _mm512_slli_si512::<0x0C>(addition),
        0x27 => _mm512_slli_si512::<0x0E>(addition),
        0x28 => _mm512_slli_si512::<0x10>(addition),
        0x29 => _mm512_slli_si512::<0x12>(addition),
        0x2A => _mm512_slli_si512::<0x14>(addition),
        0x2B => _mm512_slli_si512::<0x16>(addition),
        0x2C => _mm512_slli_si512::<0x18>(addition),
        0x2D => _mm512_slli_si512::<0x1A>(addition),
        0x2E => _mm512_slli_si512::<0x1C>(addition),
        0x2F => _mm512_slli_si512::<0x1E>(addition),
        0x30 => _mm512_slli_si512::<0x20>(addition),
        0x31 => _mm512_slli_si512::<0x22>(addition),
        0x32 => _mm512_slli_si512::<0x24>(addition),
        0x33 => _mm512_slli_si512::<0x26>(addition),
        0x34 => _mm512_slli_si512::<0x28>(addition),
        0x35 => _mm512_slli_si512::<0x2A>(addition),
        0x36 => _mm512_slli_si512::<0x2C>(addition),
        0x37 => _mm512_slli_si512::<0x2E>(addition),
        0x38 => _mm512_slli_si512::<0x30>(addition),
        0x39 => _mm512_slli_si512::<0x32>(addition),
        0x3A => _mm512_slli_si512::<0x34>(addition),
        0x3B => _mm512_slli_si512::<0x36>(addition),
        0x3C => _mm512_slli_si512::<0x38>(addition),
        0x3D => _mm512_slli_si512::<0x3A>(addition),
        0x3E => _mm512_slli_si512::<0x3C>(addition),
        0x3F => _mm512_slli_si512::<0x3E>(addition),
        _ => _mm512_setzero_si512()
    };
}

/// # Example (_mm512_arvext_epi16):
///
/// - Source: ```[01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20]```
/// - Addition: ```[21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40]```
///
/// - Vext'ed right by 1 pair: ```[02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21]```
/// - Vext'ed right by 2 pairs: ```[03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22]```
/// - Vext'ed right by 3 pairs: ```[04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23]```
/// - Vext'ed right by 4 pairs: ```[05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24]```
/// - Vext'ed right by 5 pairs: ```[06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25]```
/// - Vext'ed right by 6 pairs: ```[07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26]```
/// - Vext'ed right by 7 pairs: ```[08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27]```
/// - Vext'ed right by 8 pairs: ```[09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28]```
/// - Vext'ed right by 9 pairs: ```[0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29]```
/// - Vext'ed right by 10 pairs: ```[0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a]```
/// - Vext'ed right by 11 pairs: ```[0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b]```
/// - Vext'ed right by 12 pairs: ```[0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c]```
/// - Vext'ed right by 13 pairs: ```[0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d]```
/// - Vext'ed right by 14 pairs: ```[0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e]```
/// - Vext'ed right by 15 pairs: ```[10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f]```
/// - Vext'ed right by 16 pairs: ```[11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30]```
/// - Vext'ed right by 17 pairs: ```[12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31]```
/// - Vext'ed right by 18 pairs: ```[13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32]```
/// - Vext'ed right by 19 pairs: ```[14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33]```
/// - Vext'ed right by 20 pairs: ```[15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34]```
/// - Vext'ed right by 21 pairs: ```[16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35]```
/// - Vext'ed right by 22 pairs: ```[17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36]```
/// - Vext'ed right by 23 pairs: ```[18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37]```
/// - Vext'ed right by 24 pairs: ```[19, 1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38]```
/// - Vext'ed right by 25 pairs: ```[1a, 1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39]```
/// - Vext'ed right by 26 pairs: ```[1b, 1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a]```
/// - Vext'ed right by 27 pairs: ```[1c, 1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b]```
/// - Vext'ed right by 28 pairs: ```[1d, 1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c]```
/// - Vext'ed right by 29 pairs: ```[1e, 1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d]```
/// - Vext'ed right by 30 pairs: ```[1f, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e]```
/// - Vext'ed right by 31 pairs: ```[20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f]```
/// - Vext'ed right by 32 pairs: ```[21, 22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40]```
/// - Vext'ed right by 33 pairs: ```[22, 23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 00]```
/// - Vext'ed right by 34 pairs: ```[23, 24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 00, 00]```
/// - Vext'ed right by 35 pairs: ```[24, 25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 00, 00, 00]```
/// - Vext'ed right by 36 pairs: ```[25, 26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 00, 00, 00, 00]```
/// - Vext'ed right by 37 pairs: ```[26, 27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 38 pairs: ```[27, 28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 39 pairs: ```[28, 29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 40 pairs: ```[29, 2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 41 pairs: ```[2a, 2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 42 pairs: ```[2b, 2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 43 pairs: ```[2c, 2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 44 pairs: ```[2d, 2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 45 pairs: ```[2e, 2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 46 pairs: ```[2f, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 47 pairs: ```[30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 48 pairs: ```[31, 32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 49 pairs: ```[32, 33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 50 pairs: ```[33, 34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 51 pairs: ```[34, 35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 52 pairs: ```[35, 36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 53 pairs: ```[36, 37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 54 pairs: ```[37, 38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 55 pairs: ```[38, 39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 56 pairs: ```[39, 3a, 3b, 3c, 3d, 3e, 3f, 40, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 57 pairs: ```[3a, 3b, 3c, 3d, 3e, 3f, 40, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 58 pairs: ```[3b, 3c, 3d, 3e, 3f, 40, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 59 pairs: ```[3c, 3d, 3e, 3f, 40, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 60 pairs: ```[3d, 3e, 3f, 40, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 61 pairs: ```[3e, 3f, 40, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 62 pairs: ```[3f, 40, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 63 pairs: ```[40, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 64 pairs: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
#[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), target_feature = "avx512f", target_feature = "avx512bw"))]
pub unsafe fn _mm512_arvext_epi16(vector: __m512i, addition: __m512i, shift: usize) -> __m512i {
    return match shift {
        0x00 => vector,
        0x01 => _mm512_or_si512(_mm512_srli_si512::<0x02>(vector), _mm512_slli_si512::<0x3E>(addition)),
        0x02 => _mm512_or_si512(_mm512_srli_si512::<0x04>(vector), _mm512_slli_si512::<0x3C>(addition)),
        0x03 => _mm512_or_si512(_mm512_srli_si512::<0x06>(vector), _mm512_slli_si512::<0x3A>(addition)),
        0x04 => _mm512_or_si512(_mm512_srli_si512::<0x08>(vector), _mm512_slli_si512::<0x38>(addition)),
        0x05 => _mm512_or_si512(_mm512_srli_si512::<0x0A>(vector), _mm512_slli_si512::<0x36>(addition)),
        0x06 => _mm512_or_si512(_mm512_srli_si512::<0x0C>(vector), _mm512_slli_si512::<0x34>(addition)),
        0x07 => _mm512_or_si512(_mm512_srli_si512::<0x0E>(vector), _mm512_slli_si512::<0x32>(addition)),
        0x08 => _mm512_or_si512(_mm512_srli_si512::<0x10>(vector), _mm512_slli_si512::<0x30>(addition)),
        0x09 => _mm512_or_si512(_mm512_srli_si512::<0x12>(vector), _mm512_slli_si512::<0x2E>(addition)),
        0x0A => _mm512_or_si512(_mm512_srli_si512::<0x14>(vector), _mm512_slli_si512::<0x2C>(addition)),
        0x0B => _mm512_or_si512(_mm512_srli_si512::<0x16>(vector), _mm512_slli_si512::<0x2A>(addition)),
        0x0C => _mm512_or_si512(_mm512_srli_si512::<0x18>(vector), _mm512_slli_si512::<0x28>(addition)),
        0x0D => _mm512_or_si512(_mm512_srli_si512::<0x1A>(vector), _mm512_slli_si512::<0x26>(addition)),
        0x0E => _mm512_or_si512(_mm512_srli_si512::<0x1C>(vector), _mm512_slli_si512::<0x24>(addition)),
        0x0F => _mm512_or_si512(_mm512_srli_si512::<0x1E>(vector), _mm512_slli_si512::<0x22>(addition)),
        0x10 => _mm512_or_si512(_mm512_srli_si512::<0x20>(vector), _mm512_slli_si512::<0x20>(addition)),
        0x11 => _mm512_or_si512(_mm512_srli_si512::<0x22>(vector), _mm512_slli_si512::<0x1E>(addition)),
        0x12 => _mm512_or_si512(_mm512_srli_si512::<0x24>(vector), _mm512_slli_si512::<0x1C>(addition)),
        0x13 => _mm512_or_si512(_mm512_srli_si512::<0x26>(vector), _mm512_slli_si512::<0x1A>(addition)),
        0x14 => _mm512_or_si512(_mm512_srli_si512::<0x28>(vector), _mm512_slli_si512::<0x18>(addition)),
        0x15 => _mm512_or_si512(_mm512_srli_si512::<0x2A>(vector), _mm512_slli_si512::<0x16>(addition)),
        0x16 => _mm512_or_si512(_mm512_srli_si512::<0x2C>(vector), _mm512_slli_si512::<0x14>(addition)),
        0x17 => _mm512_or_si512(_mm512_srli_si512::<0x2E>(vector), _mm512_slli_si512::<0x12>(addition)),
        0x18 => _mm512_or_si512(_mm512_srli_si512::<0x30>(vector), _mm512_slli_si512::<0x10>(addition)),
        0x19 => _mm512_or_si512(_mm512_srli_si512::<0x32>(vector), _mm512_slli_si512::<0x0E>(addition)),
        0x1A => _mm512_or_si512(_mm512_srli_si512::<0x34>(vector), _mm512_slli_si512::<0x0C>(addition)),
        0x1B => _mm512_or_si512(_mm512_srli_si512::<0x36>(vector), _mm512_slli_si512::<0x0A>(addition)),
        0x1C => _mm512_or_si512(_mm512_srli_si512::<0x38>(vector), _mm512_slli_si512::<0x08>(addition)),
        0x1D => _mm512_or_si512(_mm512_srli_si512::<0x3A>(vector), _mm512_slli_si512::<0x06>(addition)),
        0x1E => _mm512_or_si512(_mm512_srli_si512::<0x3C>(vector), _mm512_slli_si512::<0x04>(addition)),
        0x1F => _mm512_or_si512(_mm512_srli_si512::<0x3E>(vector), _mm512_slli_si512::<0x02>(addition)),
        0x20 => addition,
        0x21 => _mm512_srli_si512::<0x02>(addition),
        0x22 => _mm512_srli_si512::<0x04>(addition),
        0x23 => _mm512_srli_si512::<0x06>(addition),
        0x24 => _mm512_srli_si512::<0x08>(addition),
        0x25 => _mm512_srli_si512::<0x0A>(addition),
        0x26 => _mm512_srli_si512::<0x0C>(addition),
        0x27 => _mm512_srli_si512::<0x0E>(addition),
        0x28 => _mm512_srli_si512::<0x10>(addition),
        0x29 => _mm512_srli_si512::<0x12>(addition),
        0x2A => _mm512_srli_si512::<0x14>(addition),
        0x2B => _mm512_srli_si512::<0x16>(addition),
        0x2C => _mm512_srli_si512::<0x18>(addition),
        0x2D => _mm512_srli_si512::<0x1A>(addition),
        0x2E => _mm512_srli_si512::<0x1C>(addition),
        0x2F => _mm512_srli_si512::<0x1E>(addition),
        0x30 => _mm512_srli_si512::<0x20>(addition),
        0x31 => _mm512_srli_si512::<0x22>(addition),
        0x32 => _mm512_srli_si512::<0x24>(addition),
        0x33 => _mm512_srli_si512::<0x26>(addition),
        0x34 => _mm512_srli_si512::<0x28>(addition),
        0x35 => _mm512_srli_si512::<0x2A>(addition),
        0x36 => _mm512_srli_si512::<0x2C>(addition),
        0x37 => _mm512_srli_si512::<0x2E>(addition),
        0x38 => _mm512_srli_si512::<0x30>(addition),
        0x39 => _mm512_srli_si512::<0x32>(addition),
        0x3A => _mm512_srli_si512::<0x34>(addition),
        0x3B => _mm512_srli_si512::<0x36>(addition),
        0x3C => _mm512_srli_si512::<0x38>(addition),
        0x3D => _mm512_srli_si512::<0x3A>(addition),
        0x3E => _mm512_srli_si512::<0x3C>(addition),
        0x3F => _mm512_srli_si512::<0x3E>(addition),
        _ => _mm512_setzero_si512()
    };
}

/// # Example (_mm512_alvext_epi32):
///
/// - Source: ```[01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10]```
/// - Addition: ```[11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26]```
///
/// - Vext'ed left by 1 pair: ```[26, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f]```
/// - Vext'ed left by 2 pairs: ```[25, 26, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e]```
/// - Vext'ed left by 3 pairs: ```[24, 25, 26, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d]```
/// - Vext'ed left by 4 pairs: ```[23, 24, 25, 26, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c]```
/// - Vext'ed left by 5 pairs: ```[22, 23, 24, 25, 26, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b]```
/// - Vext'ed left by 6 pairs: ```[21, 22, 23, 24, 25, 26, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0a]```
/// - Vext'ed left by 7 pairs: ```[20, 21, 22, 23, 24, 25, 26, 01, 02, 03, 04, 05, 06, 07, 08, 09]```
/// - Vext'ed left by 8 pairs: ```[19, 20, 21, 22, 23, 24, 25, 26, 01, 02, 03, 04, 05, 06, 07, 08]```
/// - Vext'ed left by 9 pairs: ```[18, 19, 20, 21, 22, 23, 24, 25, 26, 01, 02, 03, 04, 05, 06, 07]```
/// - Vext'ed left by 10 pairs: ```[17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 01, 02, 03, 04, 05, 06]```
/// - Vext'ed left by 11 pairs: ```[16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 01, 02, 03, 04, 05]```
/// - Vext'ed left by 12 pairs: ```[15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 01, 02, 03, 04]```
/// - Vext'ed left by 13 pairs: ```[14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 01, 02, 03]```
/// - Vext'ed left by 14 pairs: ```[13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 01, 02]```
/// - Vext'ed left by 15 pairs: ```[12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 01]```
/// - Vext'ed left by 16 pairs: ```[11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26]```
/// - Vext'ed left by 17 pairs: ```[00, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25]```
/// - Vext'ed left by 18 pairs: ```[00, 00, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24]```
/// - Vext'ed left by 19 pairs: ```[00, 00, 00, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23]```
/// - Vext'ed left by 20 pairs: ```[00, 00, 00, 00, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22]```
/// - Vext'ed left by 21 pairs: ```[00, 00, 00, 00, 00, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21]```
/// - Vext'ed left by 22 pairs: ```[00, 00, 00, 00, 00, 00, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]```
/// - Vext'ed left by 23 pairs: ```[00, 00, 00, 00, 00, 00, 00, 11, 12, 13, 14, 15, 16, 17, 18, 19]```
/// - Vext'ed left by 24 pairs: ```[00, 00, 00, 00, 00, 00, 00, 00, 11, 12, 13, 14, 15, 16, 17, 18]```
/// - Vext'ed left by 25 pairs: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 11, 12, 13, 14, 15, 16, 17]```
/// - Vext'ed left by 26 pairs: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 11, 12, 13, 14, 15, 16]```
/// - Vext'ed left by 27 pairs: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 11, 12, 13, 14, 15]```
/// - Vext'ed left by 28 pairs: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 11, 12, 13, 14]```
/// - Vext'ed left by 29 pairs: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 11, 12, 13]```
/// - Vext'ed left by 30 pairs: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 11, 12]```
/// - Vext'ed left by 31 pairs: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 11]```
/// - Vext'ed left by 32 pairs: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
#[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), target_feature = "avx512f", target_feature = "avx512bw"))]
pub unsafe fn _mm512_alvext_epi32(vector: __m512i, addition: __m512i, shift: usize) -> __m512i {
    return match shift {
        0x00 => vector,
        0x01 => _mm512_or_si512(_mm512_slli_si512::<0x04>(vector), _mm512_srli_si512::<0x3C>(addition)),
        0x02 => _mm512_or_si512(_mm512_slli_si512::<0x08>(vector), _mm512_srli_si512::<0x38>(addition)),
        0x03 => _mm512_or_si512(_mm512_slli_si512::<0x0C>(vector), _mm512_srli_si512::<0x34>(addition)),
        0x04 => _mm512_or_si512(_mm512_slli_si512::<0x10>(vector), _mm512_srli_si512::<0x30>(addition)),
        0x05 => _mm512_or_si512(_mm512_slli_si512::<0x14>(vector), _mm512_srli_si512::<0x2C>(addition)),
        0x06 => _mm512_or_si512(_mm512_slli_si512::<0x18>(vector), _mm512_srli_si512::<0x28>(addition)),
        0x07 => _mm512_or_si512(_mm512_slli_si512::<0x1C>(vector), _mm512_srli_si512::<0x24>(addition)),
        0x08 => _mm512_or_si512(_mm512_slli_si512::<0x20>(vector), _mm512_srli_si512::<0x20>(addition)),
        0x09 => _mm512_or_si512(_mm512_slli_si512::<0x24>(vector), _mm512_srli_si512::<0x1C>(addition)),
        0x0A => _mm512_or_si512(_mm512_slli_si512::<0x28>(vector), _mm512_srli_si512::<0x18>(addition)),
        0x0B => _mm512_or_si512(_mm512_slli_si512::<0x2C>(vector), _mm512_srli_si512::<0x14>(addition)),
        0x0C => _mm512_or_si512(_mm512_slli_si512::<0x30>(vector), _mm512_srli_si512::<0x10>(addition)),
        0x0D => _mm512_or_si512(_mm512_slli_si512::<0x34>(vector), _mm512_srli_si512::<0x0C>(addition)),
        0x0E => _mm512_or_si512(_mm512_slli_si512::<0x38>(vector), _mm512_srli_si512::<0x08>(addition)),
        0x0F => _mm512_or_si512(_mm512_slli_si512::<0x3C>(vector), _mm512_srli_si512::<0x04>(addition)),
        0x10 => addition,
        0x11 => _mm512_slli_si512::<0x04>(addition),
        0x12 => _mm512_slli_si512::<0x08>(addition),
        0x13 => _mm512_slli_si512::<0x0C>(addition),
        0x14 => _mm512_slli_si512::<0x10>(addition),
        0x15 => _mm512_slli_si512::<0x14>(addition),
        0x16 => _mm512_slli_si512::<0x18>(addition),
        0x17 => _mm512_slli_si512::<0x1C>(addition),
        0x18 => _mm512_slli_si512::<0x20>(addition),
        0x19 => _mm512_slli_si512::<0x24>(addition),
        0x1A => _mm512_slli_si512::<0x28>(addition),
        0x1B => _mm512_slli_si512::<0x2C>(addition),
        0x1C => _mm512_slli_si512::<0x30>(addition),
        0x1D => _mm512_slli_si512::<0x34>(addition),
        0x1E => _mm512_slli_si512::<0x38>(addition),
        0x1F => _mm512_slli_si512::<0x3C>(addition),
        _ => _mm512_setzero_si512()
    };
}

/// # Example (_mm512_arvext_epi32):
///
/// - Source: ```[01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10]```
/// - Addition: ```[11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26]```
///
/// - Vext'ed right by 1 pair: ```[02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11]```
/// - Vext'ed right by 2 pairs: ```[03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12]```
/// - Vext'ed right by 3 pairs: ```[04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13]```
/// - Vext'ed right by 4 pairs: ```[05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14]```
/// - Vext'ed right by 5 pairs: ```[06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15]```
/// - Vext'ed right by 6 pairs: ```[07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16]```
/// - Vext'ed right by 7 pairs: ```[08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17]```
/// - Vext'ed right by 8 pairs: ```[09, 0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18]```
/// - Vext'ed right by 9 pairs: ```[0a, 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19]```
/// - Vext'ed right by 10 pairs: ```[0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]```
/// - Vext'ed right by 11 pairs: ```[0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21]```
/// - Vext'ed right by 12 pairs: ```[0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22]```
/// - Vext'ed right by 13 pairs: ```[0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23]```
/// - Vext'ed right by 14 pairs: ```[0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24]```
/// - Vext'ed right by 15 pairs: ```[10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25]```
/// - Vext'ed right by 16 pairs: ```[11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26]```
/// - Vext'ed right by 17 pairs: ```[12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 00]```
/// - Vext'ed right by 18 pairs: ```[13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 00, 00]```
/// - Vext'ed right by 19 pairs: ```[14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 00, 00, 00]```
/// - Vext'ed right by 20 pairs: ```[15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 00, 00, 00, 00]```
/// - Vext'ed right by 21 pairs: ```[16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 22 pairs: ```[17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 23 pairs: ```[18, 19, 20, 21, 22, 23, 24, 25, 26, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 24 pairs: ```[19, 20, 21, 22, 23, 24, 25, 26, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 25 pairs: ```[20, 21, 22, 23, 24, 25, 26, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 26 pairs: ```[21, 22, 23, 24, 25, 26, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 27 pairs: ```[22, 23, 24, 25, 26, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 28 pairs: ```[23, 24, 25, 26, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 29 pairs: ```[24, 25, 26, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 30 pairs: ```[25, 26, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 31 pairs: ```[26, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 32 pairs: ```[00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00]```
#[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), target_feature = "avx512f", target_feature = "avx512bw"))]
pub unsafe fn _mm512_arvext_epi32(vector: __m512i, addition: __m512i, shift: usize) -> __m512i {
    return match shift {
        0x00 => vector,
        0x01 => _mm512_or_si512(_mm512_srli_si512::<0x04>(vector), _mm512_slli_si512::<0x3C>(addition)),
        0x02 => _mm512_or_si512(_mm512_srli_si512::<0x08>(vector), _mm512_slli_si512::<0x38>(addition)),
        0x03 => _mm512_or_si512(_mm512_srli_si512::<0x0C>(vector), _mm512_slli_si512::<0x34>(addition)),
        0x04 => _mm512_or_si512(_mm512_srli_si512::<0x10>(vector), _mm512_slli_si512::<0x30>(addition)),
        0x05 => _mm512_or_si512(_mm512_srli_si512::<0x14>(vector), _mm512_slli_si512::<0x2C>(addition)),
        0x06 => _mm512_or_si512(_mm512_srli_si512::<0x18>(vector), _mm512_slli_si512::<0x28>(addition)),
        0x07 => _mm512_or_si512(_mm512_srli_si512::<0x1C>(vector), _mm512_slli_si512::<0x24>(addition)),
        0x08 => _mm512_or_si512(_mm512_srli_si512::<0x20>(vector), _mm512_slli_si512::<0x20>(addition)),
        0x09 => _mm512_or_si512(_mm512_srli_si512::<0x24>(vector), _mm512_slli_si512::<0x1C>(addition)),
        0x0A => _mm512_or_si512(_mm512_srli_si512::<0x28>(vector), _mm512_slli_si512::<0x18>(addition)),
        0x0B => _mm512_or_si512(_mm512_srli_si512::<0x2C>(vector), _mm512_slli_si512::<0x14>(addition)),
        0x0C => _mm512_or_si512(_mm512_srli_si512::<0x30>(vector), _mm512_slli_si512::<0x10>(addition)),
        0x0D => _mm512_or_si512(_mm512_srli_si512::<0x34>(vector), _mm512_slli_si512::<0x0C>(addition)),
        0x0E => _mm512_or_si512(_mm512_srli_si512::<0x38>(vector), _mm512_slli_si512::<0x08>(addition)),
        0x0F => _mm512_or_si512(_mm512_srli_si512::<0x3C>(vector), _mm512_slli_si512::<0x04>(addition)),
        0x10 => addition,
        0x11 => _mm512_srli_si512::<0x04>(addition),
        0x12 => _mm512_srli_si512::<0x08>(addition),
        0x13 => _mm512_srli_si512::<0x0C>(addition),
        0x14 => _mm512_srli_si512::<0x10>(addition),
        0x15 => _mm512_srli_si512::<0x14>(addition),
        0x16 => _mm512_srli_si512::<0x18>(addition),
        0x17 => _mm512_srli_si512::<0x1C>(addition),
        0x18 => _mm512_srli_si512::<0x20>(addition),
        0x19 => _mm512_srli_si512::<0x24>(addition),
        0x1A => _mm512_srli_si512::<0x28>(addition),
        0x1B => _mm512_srli_si512::<0x2C>(addition),
        0x1C => _mm512_srli_si512::<0x30>(addition),
        0x1D => _mm512_srli_si512::<0x34>(addition),
        0x1E => _mm512_srli_si512::<0x38>(addition),
        0x1F => _mm512_srli_si512::<0x3C>(addition),
        _ => _mm512_setzero_si512()
    };
}

/// # Example (_mm512_alvext_epi64):
///
/// - Source: ```[01, 02, 03, 04, 05, 06, 07, 08]```
/// - Addition: ```[09, 10, 11, 12, 13, 14, 15, 16]```
///
/// - Vext'ed left by 1 pair: ```[16, 01, 02, 03, 04, 05, 06, 07]```
/// - Vext'ed left by 2 pairs: ```[15, 16, 01, 02, 03, 04, 05, 06]```
/// - Vext'ed left by 3 pairs: ```[14, 15, 16, 01, 02, 03, 04, 05]```
/// - Vext'ed left by 4 pairs: ```[13, 14, 15, 16, 01, 02, 03, 04]```
/// - Vext'ed left by 5 pairs: ```[12, 13, 14, 15, 16, 01, 02, 03]```
/// - Vext'ed left by 6 pairs: ```[11, 12, 13, 14, 15, 16, 01, 02]```
/// - Vext'ed left by 7 pairs: ```[10, 11, 12, 13, 14, 15, 16, 01]```
/// - Vext'ed left by 8 pairs: ```[09, 10, 11, 12, 13, 14, 15, 16]```
/// - Vext'ed left by 9 pairs: ```[00, 09, 10, 11, 12, 13, 14, 15]```
/// - Vext'ed left by 10 pairs: ```[00, 00, 09, 10, 11, 12, 13, 14]```
/// - Vext'ed left by 11 pairs: ```[00, 00, 00, 09, 10, 11, 12, 13]```
/// - Vext'ed left by 12 pairs: ```[00, 00, 00, 00, 09, 10, 11, 12]```
/// - Vext'ed left by 13 pairs: ```[00, 00, 00, 00, 00, 09, 10, 11]```
/// - Vext'ed left by 14 pairs: ```[00, 00, 00, 00, 00, 00, 09, 10]```
/// - Vext'ed left by 15 pairs: ```[00, 00, 00, 00, 00, 00, 00, 09]```
/// - Vext'ed left by 16 pairs: ```[00, 00, 00, 00, 00, 00, 00, 00]```
#[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), target_feature = "avx512f", target_feature = "avx512bw"))]
pub unsafe fn _mm512_alvext_epi64(vector: __m512i, addition: __m512i, shift: usize) -> __m512i {
    return match shift {
        0x00 => vector,
        0x01 => _mm512_or_si512(_mm512_slli_si512::<0x08>(vector), _mm512_srli_si512::<0x38>(addition)),
        0x02 => _mm512_or_si512(_mm512_slli_si512::<0x10>(vector), _mm512_srli_si512::<0x30>(addition)),
        0x03 => _mm512_or_si512(_mm512_slli_si512::<0x18>(vector), _mm512_srli_si512::<0x28>(addition)),
        0x04 => _mm512_or_si512(_mm512_slli_si512::<0x20>(vector), _mm512_srli_si512::<0x20>(addition)),
        0x05 => _mm512_or_si512(_mm512_slli_si512::<0x28>(vector), _mm512_srli_si512::<0x18>(addition)),
        0x06 => _mm512_or_si512(_mm512_slli_si512::<0x30>(vector), _mm512_srli_si512::<0x10>(addition)),
        0x07 => _mm512_or_si512(_mm512_slli_si512::<0x38>(vector), _mm512_srli_si512::<0x08>(addition)),
        0x08 => addition,
        0x09 => _mm512_slli_si512::<0x08>(addition),
        0x0A => _mm512_slli_si512::<0x10>(addition),
        0x0B => _mm512_slli_si512::<0x18>(addition),
        0x0C => _mm512_slli_si512::<0x20>(addition),
        0x0D => _mm512_slli_si512::<0x28>(addition),
        0x0E => _mm512_slli_si512::<0x30>(addition),
        0x0F => _mm512_slli_si512::<0x38>(addition),
        _ => _mm512_setzero_si512()
    };
}

/// # Example (_mm512_arvext_epi64):
///
/// - Source: ```[01, 02, 03, 04, 05, 06, 07, 08]```
/// - Addition: ```[09, 10, 11, 12, 13, 14, 15, 16]```
///
/// - Vext'ed right by 1 pair: ```[02, 03, 04, 05, 06, 07, 08, 09]```
/// - Vext'ed right by 2 pairs: ```[03, 04, 05, 06, 07, 08, 09, 10]```
/// - Vext'ed right by 3 pairs: ```[04, 05, 06, 07, 08, 09, 10, 11]```
/// - Vext'ed right by 4 pairs: ```[05, 06, 07, 08, 09, 10, 11, 12]```
/// - Vext'ed right by 5 pairs: ```[06, 07, 08, 09, 10, 11, 12, 13]```
/// - Vext'ed right by 6 pairs: ```[07, 08, 09, 10, 11, 12, 13, 14]```
/// - Vext'ed right by 7 pairs: ```[08, 09, 10, 11, 12, 13, 14, 15]```
/// - Vext'ed right by 8 pairs: ```[09, 10, 11, 12, 13, 14, 15, 16]```
/// - Vext'ed right by 9 pairs: ```[10, 11, 12, 13, 14, 15, 16, 00]```
/// - Vext'ed right by 10 pairs: ```[11, 12, 13, 14, 15, 16, 00, 00]```
/// - Vext'ed right by 11 pairs: ```[12, 13, 14, 15, 16, 00, 00, 00]```
/// - Vext'ed right by 12 pairs: ```[13, 14, 15, 16, 00, 00, 00, 00]```
/// - Vext'ed right by 13 pairs: ```[15, 16, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 14 pairs: ```[14, 15, 16, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 15 pairs: ```[16, 00, 00, 00, 00, 00, 00, 00]```
/// - Vext'ed right by 16 pairs: ```[00, 00, 00, 00, 00, 00, 00, 00]```
#[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), target_feature = "avx512f", target_feature = "avx512bw"))]
pub unsafe fn _mm512_arvext_epi64(vector: __m512i, addition: __m512i, shift: usize) -> __m512i {
    return match shift {
        0x00 => vector,
        0x01 => _mm512_or_si512(_mm512_srli_si512::<0x08>(vector), _mm512_slli_si512::<0x38>(addition)),
        0x02 => _mm512_or_si512(_mm512_srli_si512::<0x10>(vector), _mm512_slli_si512::<0x30>(addition)),
        0x03 => _mm512_or_si512(_mm512_srli_si512::<0x18>(vector), _mm512_slli_si512::<0x28>(addition)),
        0x04 => _mm512_or_si512(_mm512_srli_si512::<0x20>(vector), _mm512_slli_si512::<0x20>(addition)),
        0x05 => _mm512_or_si512(_mm512_srli_si512::<0x28>(vector), _mm512_slli_si512::<0x18>(addition)),
        0x06 => _mm512_or_si512(_mm512_srli_si512::<0x30>(vector), _mm512_slli_si512::<0x10>(addition)),
        0x07 => _mm512_or_si512(_mm512_srli_si512::<0x38>(vector), _mm512_slli_si512::<0x08>(addition)),
        0x08 => addition,
        0x09 => _mm512_srli_si512::<0x08>(addition),
        0x0A => _mm512_srli_si512::<0x10>(addition),
        0x0B => _mm512_srli_si512::<0x18>(addition),
        0x0C => _mm512_srli_si512::<0x20>(addition),
        0x0E => _mm512_srli_si512::<0x28>(addition),
        0x0D => _mm512_srli_si512::<0x30>(addition),
        0x0F => _mm512_srli_si512::<0x38>(addition),
        _ => _mm512_setzero_si512()
    };
}

/// # Example (_mm512_alvext_epi128):
///
/// - Source: ```[01, 02, 03, 04]```
/// - Addition: ```[05, 06, 07, 08]```
///
/// - Vext'ed left by 1 pair: ```[08, 01, 02, 03]```
/// - Vext'ed left by 2 pairs: ```[07, 08, 01, 02]```
/// - Vext'ed left by 3 pairs: ```[06, 07, 08, 01]```
/// - Vext'ed left by 4 pairs: ```[05, 06, 07, 08]```
/// - Vext'ed left by 5 pairs: ```[00, 05, 06, 07]```
/// - Vext'ed left by 6 pairs: ```[00, 00, 05, 06]```
/// - Vext'ed left by 7 pairs: ```[00, 00, 00, 05]```
/// - Vext'ed left by 8 pairs: ```[00, 00, 00, 00]```
#[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), target_feature = "avx512f", target_feature = "avx512bw"))]
pub unsafe fn _mm512_alvext_epi128(vector: __m512i, addition: __m512i, shift: usize) -> __m512i {
    return match shift {
        0x00 => vector,
        0x01 => _mm512_or_si512(_mm512_slli_si512::<0x10>(vector), _mm512_srli_si512::<0x30>(addition)),
        0x02 => _mm512_or_si512(_mm512_slli_si512::<0x20>(vector), _mm512_srli_si512::<0x20>(addition)),
        0x03 => _mm512_or_si512(_mm512_slli_si512::<0x30>(vector), _mm512_srli_si512::<0x10>(addition)),
        0x04 => addition,
        0x05 => _mm512_slli_si512::<0x10>(addition),
        0x06 => _mm512_slli_si512::<0x20>(addition),
        0x07 => _mm512_slli_si512::<0x30>(addition),
        _ => _mm512_setzero_si512()
    };
}

/// # Example (_mm512_arvext_epi128):
///
/// - Source: ```[01, 02, 03, 04]```
/// - Addition: ```[05, 06, 07, 08]```
///
/// - Vext'ed right by 1 pair: ```[02, 03, 04, 05]```
/// - Vext'ed right by 2 pairs: ```[03, 04, 05, 06]```
/// - Vext'ed right by 3 pairs: ```[04, 05, 06, 07]```
/// - Vext'ed right by 4 pairs: ```[05, 06, 07, 08]```
/// - Vext'ed right by 5 pairs: ```[06, 07, 08, 00]```
/// - Vext'ed right by 6 pairs: ```[07, 08, 00, 00]```
/// - Vext'ed right by 7 pairs: ```[08, 00, 00, 00]```
/// - Vext'ed right by 8 pairs: ```[00, 00, 00, 00]```
#[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), target_feature = "avx512f", target_feature = "avx512bw"))]
pub unsafe fn _mm512_arvext_epi128(vector: __m512i, addition: __m512i, shift: usize) -> __m512i {
    return match shift {
        0x00 => vector,
        0x01 => _mm512_or_si512(_mm512_srli_si512::<0x10>(vector), _mm512_slli_si512::<0x30>(addition)),
        0x02 => _mm512_or_si512(_mm512_srli_si512::<0x20>(vector), _mm512_slli_si512::<0x20>(addition)),
        0x03 => _mm512_or_si512(_mm512_srli_si512::<0x30>(vector), _mm512_slli_si512::<0x10>(addition)),
        0x04 => addition,
        0x05 => _mm512_srli_si512::<0x10>(addition),
        0x06 => _mm512_srli_si512::<0x20>(addition),
        0x07 => _mm512_srli_si512::<0x30>(addition),
        _ => _mm512_setzero_si512()
    };
}

/// # Example (_mm512_alvext_epi256):
///
/// - Source: ```[01, 02]```
/// - Addition: ```[03, 04]```
///
/// - Vext'ed left by 1 pair: ```[04, 01]```
/// - Vext'ed left by 2 pairs: ```[03, 04]```
/// - Vext'ed left by 3 pairs: ```[00, 03]```
/// - Vext'ed left by 4 pairs: ```[00, 00]```
#[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), target_feature = "avx512f", target_feature = "avx512bw"))]
pub unsafe fn _mm512_alvext_epi256(vector: __m512i, addition: __m512i, shift: usize) -> __m512i {
    return match shift {
        0x00 => vector,
        0x01 => _mm512_or_si512(_mm512_slli_si512::<0x20>(vector), _mm512_srli_si512::<0x20>(addition)),
        0x02 => addition,
        0x03 => _mm512_slli_si512::<0x20>(addition),
        _ => _mm512_setzero_si512()
    };
}

/// # Example (_mm512_arvext_epi256):
///
/// - Source: ```[01, 02]```
/// - Addition: ```[03, 04]
///
/// - Vext'ed right by 1 pair: ```[02, 03]```
/// - Vext'ed right by 2 pairs: ```[03, 04]```
/// - Vext'ed right by 3 pairs: ```[04, 00]```
/// - Vext'ed right by 4 pairs: ```[00, 00]```
#[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), target_feature = "avx512f", target_feature = "avx512bw"))]
pub unsafe fn _mm512_arvext_epi256(vector: __m512i, addition: __m512i, shift: usize) -> __m512i {
    return match shift {
        0x00 => vector,
        0x01 => _mm512_or_si512(_mm512_srli_si512::<0x20>(vector), _mm512_slli_si512::<0x20>(addition)),
        0x02 => addition,
        0x03 => _mm512_srli_si512::<0x20>(addition),
        _ => _mm512_setzero_si512()
    };
}