xref: /illumos-gate/usr/src/uts/common/des/desdata.h (revision b4203d75)
17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate  * CDDL HEADER START
37c478bd9Sstevel@tonic-gate  *
47c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
57c478bd9Sstevel@tonic-gate  * Common Development and Distribution License, Version 1.0 only
67c478bd9Sstevel@tonic-gate  * (the "License").  You may not use this file except in compliance
77c478bd9Sstevel@tonic-gate  * with the License.
87c478bd9Sstevel@tonic-gate  *
97c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
107c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
117c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
127c478bd9Sstevel@tonic-gate  * and limitations under the License.
137c478bd9Sstevel@tonic-gate  *
147c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
157c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
167c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
177c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
187c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
197c478bd9Sstevel@tonic-gate  *
207c478bd9Sstevel@tonic-gate  * CDDL HEADER END
217c478bd9Sstevel@tonic-gate  *
227c478bd9Sstevel@tonic-gate  * Copyright 2003 Sun Microsystems, Inc.  All rights reserved.
237c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
247c478bd9Sstevel@tonic-gate  */
257c478bd9Sstevel@tonic-gate 
267c478bd9Sstevel@tonic-gate /*	Copyright (c) 1983, 1984, 1985, 1986, 1987, 1988, 1989 AT&T	*/
27*b4203d75SMarcel Telka /*	  All Rights Reserved	*/
287c478bd9Sstevel@tonic-gate 
297c478bd9Sstevel@tonic-gate /*
307c478bd9Sstevel@tonic-gate  * Portions of this source code were derived from Berkeley 4.3 BSD
317c478bd9Sstevel@tonic-gate  * under license from the Regents of the University of California.
327c478bd9Sstevel@tonic-gate  */
337c478bd9Sstevel@tonic-gate 
347c478bd9Sstevel@tonic-gate #ifndef _SYS_DESDATA_H
357c478bd9Sstevel@tonic-gate #define	_SYS_DESDATA_H
367c478bd9Sstevel@tonic-gate 
377c478bd9Sstevel@tonic-gate #ifdef	__cplusplus
387c478bd9Sstevel@tonic-gate extern "C" {
397c478bd9Sstevel@tonic-gate #endif
407c478bd9Sstevel@tonic-gate 
417c478bd9Sstevel@tonic-gate /*
427c478bd9Sstevel@tonic-gate  * softdesdata.c, Data for software implementation of DES
437c478bd9Sstevel@tonic-gate  */
447c478bd9Sstevel@tonic-gate 
457c478bd9Sstevel@tonic-gate /*
467c478bd9Sstevel@tonic-gate  * Lint can't handle static's in include files.
477c478bd9Sstevel@tonic-gate  * Complains "defined but not used" and then "used but not defined"
487c478bd9Sstevel@tonic-gate  */
497c478bd9Sstevel@tonic-gate #ifdef __lint
507c478bd9Sstevel@tonic-gate #define	static
517c478bd9Sstevel@tonic-gate #endif
527c478bd9Sstevel@tonic-gate 
537c478bd9Sstevel@tonic-gate /*
547c478bd9Sstevel@tonic-gate  * Permuted-choice 1 from the key bits
557c478bd9Sstevel@tonic-gate  * to yield C and D.
567c478bd9Sstevel@tonic-gate  * Note that bits 8,16... are left out:
577c478bd9Sstevel@tonic-gate  * They are intended for a parity check.
587c478bd9Sstevel@tonic-gate  * Table has been munged to be zero-origin
597c478bd9Sstevel@tonic-gate  */
607c478bd9Sstevel@tonic-gate 
617c478bd9Sstevel@tonic-gate const short	PC1_C[] = {
627c478bd9Sstevel@tonic-gate 	57-1, 49-1, 41-1, 33-1, 25-1, 17-1,  9-1,
637c478bd9Sstevel@tonic-gate 	1-1,  58-1, 50-1, 42-1, 34-1, 26-1, 18-1,
647c478bd9Sstevel@tonic-gate 	10-1,  2-1, 59-1, 51-1, 43-1, 35-1, 27-1,
657c478bd9Sstevel@tonic-gate 	19-1, 11-1,  3-1, 60-1, 52-1, 44-1, 36-1,
667c478bd9Sstevel@tonic-gate };
677c478bd9Sstevel@tonic-gate 
687c478bd9Sstevel@tonic-gate const short	PC1_D[] = {
697c478bd9Sstevel@tonic-gate 	63-1, 55-1, 47-1, 39-1, 31-1, 23-1, 15-1,
707c478bd9Sstevel@tonic-gate 	7-1,  62-1, 54-1, 46-1, 38-1, 30-1, 22-1,
717c478bd9Sstevel@tonic-gate 	14-1,  6-1, 61-1, 53-1, 45-1, 37-1, 29-1,
727c478bd9Sstevel@tonic-gate 	21-1, 13-1,  5-1, 28-1, 20-1, 12-1,  4-1,
737c478bd9Sstevel@tonic-gate };
747c478bd9Sstevel@tonic-gate 
757c478bd9Sstevel@tonic-gate /*
767c478bd9Sstevel@tonic-gate  * Sequence of shifts used for the key schedule.
777c478bd9Sstevel@tonic-gate  */
787c478bd9Sstevel@tonic-gate const char	shifts[] = {
797c478bd9Sstevel@tonic-gate 	1-1, 1-1, 2-1, 2-1, 2-1, 2-1, 2-1, 2-1,
807c478bd9Sstevel@tonic-gate 	1-1, 2-1, 2-1, 2-1, 2-1, 2-1, 2-1, 1-1,
817c478bd9Sstevel@tonic-gate };
827c478bd9Sstevel@tonic-gate 
837c478bd9Sstevel@tonic-gate /*
847c478bd9Sstevel@tonic-gate  * Permuted-choice 2, to pick out the bits from
857c478bd9Sstevel@tonic-gate  * the CD array that generate the key schedule.
867c478bd9Sstevel@tonic-gate  */
877c478bd9Sstevel@tonic-gate const	char	PC2_C[] = {
887c478bd9Sstevel@tonic-gate 	14, 17, 11, 24, 1,  5,
897c478bd9Sstevel@tonic-gate 	3,  28, 15, 6,  21, 10,
907c478bd9Sstevel@tonic-gate 	23, 19, 12, 4,  26, 8,
917c478bd9Sstevel@tonic-gate 	16, 7,  27, 20, 13, 2,
927c478bd9Sstevel@tonic-gate };
937c478bd9Sstevel@tonic-gate 
947c478bd9Sstevel@tonic-gate const	char	PC2_D[] = {
957c478bd9Sstevel@tonic-gate 	41-28, 52-28, 31-28, 37-28, 47-28, 55-28,
967c478bd9Sstevel@tonic-gate 	30-28, 40-28, 51-28, 45-28, 33-28, 48-28,
977c478bd9Sstevel@tonic-gate 	44-28, 49-28, 39-28, 56-28, 34-28, 53-28,
987c478bd9Sstevel@tonic-gate 	46-28, 42-28, 50-28, 36-28, 29-28, 32-28,
997c478bd9Sstevel@tonic-gate };
1007c478bd9Sstevel@tonic-gate 
1017c478bd9Sstevel@tonic-gate /*
1027c478bd9Sstevel@tonic-gate  * Initial permutation
1037c478bd9Sstevel@tonic-gate  */
1047c478bd9Sstevel@tonic-gate const	short	IPtab[64] = {
1057c478bd9Sstevel@tonic-gate 	40-1,  8-1, 48-1, 16-1, 56-1, 24-1, 64-1, 32-1,
1067c478bd9Sstevel@tonic-gate 	39-1,  7-1, 47-1, 15-1, 55-1, 23-1, 63-1, 31-1,
1077c478bd9Sstevel@tonic-gate 	38-1,  6-1, 46-1, 14-1, 54-1, 22-1, 62-1, 30-1,
1087c478bd9Sstevel@tonic-gate 	37-1,  5-1, 45-1, 13-1, 53-1, 21-1, 61-1, 29-1,
1097c478bd9Sstevel@tonic-gate 	36-1,  4-1, 44-1, 12-1, 52-1, 20-1, 60-1, 28-1,
1107c478bd9Sstevel@tonic-gate 	35-1,  3-1, 43-1, 11-1, 51-1, 19-1, 59-1, 27-1,
1117c478bd9Sstevel@tonic-gate 	34-1,  2-1, 42-1, 10-1, 50-1, 18-1, 58-1, 26-1,
1127c478bd9Sstevel@tonic-gate 	33-1,  1-1, 41-1,  9-1, 49-1, 17-1, 57-1, 25-1,
1137c478bd9Sstevel@tonic-gate };
1147c478bd9Sstevel@tonic-gate 
1157c478bd9Sstevel@tonic-gate /*
1167c478bd9Sstevel@tonic-gate  * Final permutation
1177c478bd9Sstevel@tonic-gate  */
1187c478bd9Sstevel@tonic-gate const	short	FPtab[64] = {
1197c478bd9Sstevel@tonic-gate 	58-1, 50-1, 42-1, 34-1, 26-1, 18-1, 10-1,  2-1,
1207c478bd9Sstevel@tonic-gate 	60-1, 52-1, 44-1, 36-1, 28-1, 20-1, 12-1,  4-1,
1217c478bd9Sstevel@tonic-gate 	62-1, 54-1, 46-1, 38-1, 30-1, 22-1, 14-1,  6-1,
1227c478bd9Sstevel@tonic-gate 	64-1, 56-1, 48-1, 40-1, 32-1, 24-1, 16-1,  8-1,
1237c478bd9Sstevel@tonic-gate 	57-1, 49-1, 41-1, 33-1, 25-1, 17-1,  9-1,  1-1,
1247c478bd9Sstevel@tonic-gate 	59-1, 51-1, 43-1, 35-1, 27-1, 19-1, 11-1,  3-1,
1257c478bd9Sstevel@tonic-gate 	61-1, 53-1, 45-1, 37-1, 29-1, 21-1, 13-1,  5-1,
1267c478bd9Sstevel@tonic-gate 	63-1, 55-1, 47-1, 39-1, 31-1, 23-1, 15-1,  7-1,
1277c478bd9Sstevel@tonic-gate };
1287c478bd9Sstevel@tonic-gate 
1297c478bd9Sstevel@tonic-gate /*
1307c478bd9Sstevel@tonic-gate  * Mask bit selection table
1317c478bd9Sstevel@tonic-gate  */
1327c478bd9Sstevel@tonic-gate const	uint32_t longtab[32] = {
1337c478bd9Sstevel@tonic-gate 	0x80000000U,	0x40000000U,	0x20000000U,	0x10000000U,
1347c478bd9Sstevel@tonic-gate 	0x8000000U,	0x4000000U,	0x2000000U,	0x1000000U,
1357c478bd9Sstevel@tonic-gate 	0x800000U,	0x400000U,	0x200000U,	0x100000U,
1367c478bd9Sstevel@tonic-gate 	0x80000U,	0x40000U,	0x20000U,	0x10000U,
1377c478bd9Sstevel@tonic-gate 	0x8000U,	0x4000U,	0x2000U,	0x1000U,
1387c478bd9Sstevel@tonic-gate 	0x800U,		0x400U,		0x200U,		0x100U,
1397c478bd9Sstevel@tonic-gate 	0x80U,		0x40U,		0x20U,		0x10U,
1407c478bd9Sstevel@tonic-gate 	0x8U,		0x4U,		0x2U,		0x1U,
1417c478bd9Sstevel@tonic-gate };
1427c478bd9Sstevel@tonic-gate 
1437c478bd9Sstevel@tonic-gate /*
1447c478bd9Sstevel@tonic-gate  * Table to expand 32 bit (4 bytes of 8 bits) R value
1457c478bd9Sstevel@tonic-gate  * to 48 bits (8 bytes of 6 bits)
1467c478bd9Sstevel@tonic-gate  */
1477c478bd9Sstevel@tonic-gate struct R_to_ER {
1487c478bd9Sstevel@tonic-gate 	uint32_t l0, l1;
1497c478bd9Sstevel@tonic-gate };
1507c478bd9Sstevel@tonic-gate 
1517c478bd9Sstevel@tonic-gate const	struct R_to_ER R_to_ER_tab[4][256] = {
1527c478bd9Sstevel@tonic-gate 	{{ 0x00000000, 0x00000000, },	{ 0x00022000, 0x00000000, },
1537c478bd9Sstevel@tonic-gate 	{ 0x00040000, 0x00000000, },	{ 0x00062000, 0x00000000, },
1547c478bd9Sstevel@tonic-gate 	{ 0x00080000, 0x00000000, },	{ 0x000a2000, 0x00000000, },
1557c478bd9Sstevel@tonic-gate 	{ 0x000c0000, 0x00000000, },	{ 0x000e2000, 0x00000000, },
1567c478bd9Sstevel@tonic-gate 	{ 0x01100000, 0x00000000, },	{ 0x01122000, 0x00000000, },
1577c478bd9Sstevel@tonic-gate 	{ 0x01140000, 0x00000000, },	{ 0x01162000, 0x00000000, },
1587c478bd9Sstevel@tonic-gate 	{ 0x01180000, 0x00000000, },	{ 0x011a2000, 0x00000000, },
1597c478bd9Sstevel@tonic-gate 	{ 0x011c0000, 0x00000000, },	{ 0x011e2000, 0x00000000, },
1607c478bd9Sstevel@tonic-gate 	{ 0x02200000, 0x00000000, },	{ 0x02222000, 0x00000000, },
1617c478bd9Sstevel@tonic-gate 	{ 0x02240000, 0x00000000, },	{ 0x02262000, 0x00000000, },
1627c478bd9Sstevel@tonic-gate 	{ 0x02280000, 0x00000000, },	{ 0x022a2000, 0x00000000, },
1637c478bd9Sstevel@tonic-gate 	{ 0x022c0000, 0x00000000, },	{ 0x022e2000, 0x00000000, },
1647c478bd9Sstevel@tonic-gate 	{ 0x03300000, 0x00000000, },	{ 0x03322000, 0x00000000, },
1657c478bd9Sstevel@tonic-gate 	{ 0x03340000, 0x00000000, },	{ 0x03362000, 0x00000000, },
1667c478bd9Sstevel@tonic-gate 	{ 0x03380000, 0x00000000, },	{ 0x033a2000, 0x00000000, },
1677c478bd9Sstevel@tonic-gate 	{ 0x033c0000, 0x00000000, },	{ 0x033e2000, 0x00000000, },
1687c478bd9Sstevel@tonic-gate 	{ 0x04000000, 0x00000000, },	{ 0x04022000, 0x00000000, },
1697c478bd9Sstevel@tonic-gate 	{ 0x04040000, 0x00000000, },	{ 0x04062000, 0x00000000, },
1707c478bd9Sstevel@tonic-gate 	{ 0x04080000, 0x00000000, },	{ 0x040a2000, 0x00000000, },
1717c478bd9Sstevel@tonic-gate 	{ 0x040c0000, 0x00000000, },	{ 0x040e2000, 0x00000000, },
1727c478bd9Sstevel@tonic-gate 	{ 0x05100000, 0x00000000, },	{ 0x05122000, 0x00000000, },
1737c478bd9Sstevel@tonic-gate 	{ 0x05140000, 0x00000000, },	{ 0x05162000, 0x00000000, },
1747c478bd9Sstevel@tonic-gate 	{ 0x05180000, 0x00000000, },	{ 0x051a2000, 0x00000000, },
1757c478bd9Sstevel@tonic-gate 	{ 0x051c0000, 0x00000000, },	{ 0x051e2000, 0x00000000, },
1767c478bd9Sstevel@tonic-gate 	{ 0x06200000, 0x00000000, },	{ 0x06222000, 0x00000000, },
1777c478bd9Sstevel@tonic-gate 	{ 0x06240000, 0x00000000, },	{ 0x06262000, 0x00000000, },
1787c478bd9Sstevel@tonic-gate 	{ 0x06280000, 0x00000000, },	{ 0x062a2000, 0x00000000, },
1797c478bd9Sstevel@tonic-gate 	{ 0x062c0000, 0x00000000, },	{ 0x062e2000, 0x00000000, },
1807c478bd9Sstevel@tonic-gate 	{ 0x07300000, 0x00000000, },	{ 0x07322000, 0x00000000, },
1817c478bd9Sstevel@tonic-gate 	{ 0x07340000, 0x00000000, },	{ 0x07362000, 0x00000000, },
1827c478bd9Sstevel@tonic-gate 	{ 0x07380000, 0x00000000, },	{ 0x073a2000, 0x00000000, },
1837c478bd9Sstevel@tonic-gate 	{ 0x073c0000, 0x00000000, },	{ 0x073e2000, 0x00000000, },
1847c478bd9Sstevel@tonic-gate 	{ 0x08000000, 0x00000000, },	{ 0x08022000, 0x00000000, },
1857c478bd9Sstevel@tonic-gate 	{ 0x08040000, 0x00000000, },	{ 0x08062000, 0x00000000, },
1867c478bd9Sstevel@tonic-gate 	{ 0x08080000, 0x00000000, },	{ 0x080a2000, 0x00000000, },
1877c478bd9Sstevel@tonic-gate 	{ 0x080c0000, 0x00000000, },	{ 0x080e2000, 0x00000000, },
1887c478bd9Sstevel@tonic-gate 	{ 0x09100000, 0x00000000, },	{ 0x09122000, 0x00000000, },
1897c478bd9Sstevel@tonic-gate 	{ 0x09140000, 0x00000000, },	{ 0x09162000, 0x00000000, },
1907c478bd9Sstevel@tonic-gate 	{ 0x09180000, 0x00000000, },	{ 0x091a2000, 0x00000000, },
1917c478bd9Sstevel@tonic-gate 	{ 0x091c0000, 0x00000000, },	{ 0x091e2000, 0x00000000, },
1927c478bd9Sstevel@tonic-gate 	{ 0x0a200000, 0x00000000, },	{ 0x0a222000, 0x00000000, },
1937c478bd9Sstevel@tonic-gate 	{ 0x0a240000, 0x00000000, },	{ 0x0a262000, 0x00000000, },
1947c478bd9Sstevel@tonic-gate 	{ 0x0a280000, 0x00000000, },	{ 0x0a2a2000, 0x00000000, },
1957c478bd9Sstevel@tonic-gate 	{ 0x0a2c0000, 0x00000000, },	{ 0x0a2e2000, 0x00000000, },
1967c478bd9Sstevel@tonic-gate 	{ 0x0b300000, 0x00000000, },	{ 0x0b322000, 0x00000000, },
1977c478bd9Sstevel@tonic-gate 	{ 0x0b340000, 0x00000000, },	{ 0x0b362000, 0x00000000, },
1987c478bd9Sstevel@tonic-gate 	{ 0x0b380000, 0x00000000, },	{ 0x0b3a2000, 0x00000000, },
1997c478bd9Sstevel@tonic-gate 	{ 0x0b3c0000, 0x00000000, },	{ 0x0b3e2000, 0x00000000, },
2007c478bd9Sstevel@tonic-gate 	{ 0x0c000000, 0x00000000, },	{ 0x0c022000, 0x00000000, },
2017c478bd9Sstevel@tonic-gate 	{ 0x0c040000, 0x00000000, },	{ 0x0c062000, 0x00000000, },
2027c478bd9Sstevel@tonic-gate 	{ 0x0c080000, 0x00000000, },	{ 0x0c0a2000, 0x00000000, },
2037c478bd9Sstevel@tonic-gate 	{ 0x0c0c0000, 0x00000000, },	{ 0x0c0e2000, 0x00000000, },
2047c478bd9Sstevel@tonic-gate 	{ 0x0d100000, 0x00000000, },	{ 0x0d122000, 0x00000000, },
2057c478bd9Sstevel@tonic-gate 	{ 0x0d140000, 0x00000000, },	{ 0x0d162000, 0x00000000, },
2067c478bd9Sstevel@tonic-gate 	{ 0x0d180000, 0x00000000, },	{ 0x0d1a2000, 0x00000000, },
2077c478bd9Sstevel@tonic-gate 	{ 0x0d1c0000, 0x00000000, },	{ 0x0d1e2000, 0x00000000, },
2087c478bd9Sstevel@tonic-gate 	{ 0x0e200000, 0x00000000, },	{ 0x0e222000, 0x00000000, },
2097c478bd9Sstevel@tonic-gate 	{ 0x0e240000, 0x00000000, },	{ 0x0e262000, 0x00000000, },
2107c478bd9Sstevel@tonic-gate 	{ 0x0e280000, 0x00000000, },	{ 0x0e2a2000, 0x00000000, },
2117c478bd9Sstevel@tonic-gate 	{ 0x0e2c0000, 0x00000000, },	{ 0x0e2e2000, 0x00000000, },
2127c478bd9Sstevel@tonic-gate 	{ 0x0f300000, 0x00000000, },	{ 0x0f322000, 0x00000000, },
2137c478bd9Sstevel@tonic-gate 	{ 0x0f340000, 0x00000000, },	{ 0x0f362000, 0x00000000, },
2147c478bd9Sstevel@tonic-gate 	{ 0x0f380000, 0x00000000, },	{ 0x0f3a2000, 0x00000000, },
2157c478bd9Sstevel@tonic-gate 	{ 0x0f3c0000, 0x00000000, },	{ 0x0f3e2000, 0x00000000, },
2167c478bd9Sstevel@tonic-gate 	{ 0x10000000, 0x00000001, },	{ 0x10022000, 0x00000001, },
2177c478bd9Sstevel@tonic-gate 	{ 0x10040000, 0x00000001, },	{ 0x10062000, 0x00000001, },
2187c478bd9Sstevel@tonic-gate 	{ 0x10080000, 0x00000001, },	{ 0x100a2000, 0x00000001, },
2197c478bd9Sstevel@tonic-gate 	{ 0x100c0000, 0x00000001, },	{ 0x100e2000, 0x00000001, },
2207c478bd9Sstevel@tonic-gate 	{ 0x11100000, 0x00000001, },	{ 0x11122000, 0x00000001, },
2217c478bd9Sstevel@tonic-gate 	{ 0x11140000, 0x00000001, },	{ 0x11162000, 0x00000001, },
2227c478bd9Sstevel@tonic-gate 	{ 0x11180000, 0x00000001, },	{ 0x111a2000, 0x00000001, },
2237c478bd9Sstevel@tonic-gate 	{ 0x111c0000, 0x00000001, },	{ 0x111e2000, 0x00000001, },
2247c478bd9Sstevel@tonic-gate 	{ 0x12200000, 0x00000001, },	{ 0x12222000, 0x00000001, },
2257c478bd9Sstevel@tonic-gate 	{ 0x12240000, 0x00000001, },	{ 0x12262000, 0x00000001, },
2267c478bd9Sstevel@tonic-gate 	{ 0x12280000, 0x00000001, },	{ 0x122a2000, 0x00000001, },
2277c478bd9Sstevel@tonic-gate 	{ 0x122c0000, 0x00000001, },	{ 0x122e2000, 0x00000001, },
2287c478bd9Sstevel@tonic-gate 	{ 0x13300000, 0x00000001, },	{ 0x13322000, 0x00000001, },
2297c478bd9Sstevel@tonic-gate 	{ 0x13340000, 0x00000001, },	{ 0x13362000, 0x00000001, },
2307c478bd9Sstevel@tonic-gate 	{ 0x13380000, 0x00000001, },	{ 0x133a2000, 0x00000001, },
2317c478bd9Sstevel@tonic-gate 	{ 0x133c0000, 0x00000001, },	{ 0x133e2000, 0x00000001, },
2327c478bd9Sstevel@tonic-gate 	{ 0x14000000, 0x00000001, },	{ 0x14022000, 0x00000001, },
2337c478bd9Sstevel@tonic-gate 	{ 0x14040000, 0x00000001, },	{ 0x14062000, 0x00000001, },
2347c478bd9Sstevel@tonic-gate 	{ 0x14080000, 0x00000001, },	{ 0x140a2000, 0x00000001, },
2357c478bd9Sstevel@tonic-gate 	{ 0x140c0000, 0x00000001, },	{ 0x140e2000, 0x00000001, },
2367c478bd9Sstevel@tonic-gate 	{ 0x15100000, 0x00000001, },	{ 0x15122000, 0x00000001, },
2377c478bd9Sstevel@tonic-gate 	{ 0x15140000, 0x00000001, },	{ 0x15162000, 0x00000001, },
2387c478bd9Sstevel@tonic-gate 	{ 0x15180000, 0x00000001, },	{ 0x151a2000, 0x00000001, },
2397c478bd9Sstevel@tonic-gate 	{ 0x151c0000, 0x00000001, },	{ 0x151e2000, 0x00000001, },
2407c478bd9Sstevel@tonic-gate 	{ 0x16200000, 0x00000001, },	{ 0x16222000, 0x00000001, },
2417c478bd9Sstevel@tonic-gate 	{ 0x16240000, 0x00000001, },	{ 0x16262000, 0x00000001, },
2427c478bd9Sstevel@tonic-gate 	{ 0x16280000, 0x00000001, },	{ 0x162a2000, 0x00000001, },
2437c478bd9Sstevel@tonic-gate 	{ 0x162c0000, 0x00000001, },	{ 0x162e2000, 0x00000001, },
2447c478bd9Sstevel@tonic-gate 	{ 0x17300000, 0x00000001, },	{ 0x17322000, 0x00000001, },
2457c478bd9Sstevel@tonic-gate 	{ 0x17340000, 0x00000001, },	{ 0x17362000, 0x00000001, },
2467c478bd9Sstevel@tonic-gate 	{ 0x17380000, 0x00000001, },	{ 0x173a2000, 0x00000001, },
2477c478bd9Sstevel@tonic-gate 	{ 0x173c0000, 0x00000001, },	{ 0x173e2000, 0x00000001, },
2487c478bd9Sstevel@tonic-gate 	{ 0x18000000, 0x00000001, },	{ 0x18022000, 0x00000001, },
2497c478bd9Sstevel@tonic-gate 	{ 0x18040000, 0x00000001, },	{ 0x18062000, 0x00000001, },
2507c478bd9Sstevel@tonic-gate 	{ 0x18080000, 0x00000001, },	{ 0x180a2000, 0x00000001, },
2517c478bd9Sstevel@tonic-gate 	{ 0x180c0000, 0x00000001, },	{ 0x180e2000, 0x00000001, },
2527c478bd9Sstevel@tonic-gate 	{ 0x19100000, 0x00000001, },	{ 0x19122000, 0x00000001, },
2537c478bd9Sstevel@tonic-gate 	{ 0x19140000, 0x00000001, },	{ 0x19162000, 0x00000001, },
2547c478bd9Sstevel@tonic-gate 	{ 0x19180000, 0x00000001, },	{ 0x191a2000, 0x00000001, },
2557c478bd9Sstevel@tonic-gate 	{ 0x191c0000, 0x00000001, },	{ 0x191e2000, 0x00000001, },
2567c478bd9Sstevel@tonic-gate 	{ 0x1a200000, 0x00000001, },	{ 0x1a222000, 0x00000001, },
2577c478bd9Sstevel@tonic-gate 	{ 0x1a240000, 0x00000001, },	{ 0x1a262000, 0x00000001, },
2587c478bd9Sstevel@tonic-gate 	{ 0x1a280000, 0x00000001, },	{ 0x1a2a2000, 0x00000001, },
2597c478bd9Sstevel@tonic-gate 	{ 0x1a2c0000, 0x00000001, },	{ 0x1a2e2000, 0x00000001, },
2607c478bd9Sstevel@tonic-gate 	{ 0x1b300000, 0x00000001, },	{ 0x1b322000, 0x00000001, },
2617c478bd9Sstevel@tonic-gate 	{ 0x1b340000, 0x00000001, },	{ 0x1b362000, 0x00000001, },
2627c478bd9Sstevel@tonic-gate 	{ 0x1b380000, 0x00000001, },	{ 0x1b3a2000, 0x00000001, },
2637c478bd9Sstevel@tonic-gate 	{ 0x1b3c0000, 0x00000001, },	{ 0x1b3e2000, 0x00000001, },
2647c478bd9Sstevel@tonic-gate 	{ 0x1c000000, 0x00000001, },	{ 0x1c022000, 0x00000001, },
2657c478bd9Sstevel@tonic-gate 	{ 0x1c040000, 0x00000001, },	{ 0x1c062000, 0x00000001, },
2667c478bd9Sstevel@tonic-gate 	{ 0x1c080000, 0x00000001, },	{ 0x1c0a2000, 0x00000001, },
2677c478bd9Sstevel@tonic-gate 	{ 0x1c0c0000, 0x00000001, },	{ 0x1c0e2000, 0x00000001, },
2687c478bd9Sstevel@tonic-gate 	{ 0x1d100000, 0x00000001, },	{ 0x1d122000, 0x00000001, },
2697c478bd9Sstevel@tonic-gate 	{ 0x1d140000, 0x00000001, },	{ 0x1d162000, 0x00000001, },
2707c478bd9Sstevel@tonic-gate 	{ 0x1d180000, 0x00000001, },	{ 0x1d1a2000, 0x00000001, },
2717c478bd9Sstevel@tonic-gate 	{ 0x1d1c0000, 0x00000001, },	{ 0x1d1e2000, 0x00000001, },
2727c478bd9Sstevel@tonic-gate 	{ 0x1e200000, 0x00000001, },	{ 0x1e222000, 0x00000001, },
2737c478bd9Sstevel@tonic-gate 	{ 0x1e240000, 0x00000001, },	{ 0x1e262000, 0x00000001, },
2747c478bd9Sstevel@tonic-gate 	{ 0x1e280000, 0x00000001, },	{ 0x1e2a2000, 0x00000001, },
2757c478bd9Sstevel@tonic-gate 	{ 0x1e2c0000, 0x00000001, },	{ 0x1e2e2000, 0x00000001, },
2767c478bd9Sstevel@tonic-gate 	{ 0x1f300000, 0x00000001, },	{ 0x1f322000, 0x00000001, },
2777c478bd9Sstevel@tonic-gate 	{ 0x1f340000, 0x00000001, },	{ 0x1f362000, 0x00000001, },
2787c478bd9Sstevel@tonic-gate 	{ 0x1f380000, 0x00000001, },	{ 0x1f3a2000, 0x00000001, },
2797c478bd9Sstevel@tonic-gate 	{ 0x1f3c0000, 0x00000001, },	{ 0x1f3e2000, 0x00000001, }, },
2807c478bd9Sstevel@tonic-gate 
2817c478bd9Sstevel@tonic-gate 	{{ 0x00000000, 0x00000000, },	{ 0x00000002, 0x20000000, },
2827c478bd9Sstevel@tonic-gate 	{ 0x00000004, 0x00000000, },	{ 0x00000006, 0x20000000, },
2837c478bd9Sstevel@tonic-gate 	{ 0x00000008, 0x00000000, },	{ 0x0000000a, 0x20000000, },
2847c478bd9Sstevel@tonic-gate 	{ 0x0000000c, 0x00000000, },	{ 0x0000000e, 0x20000000, },
2857c478bd9Sstevel@tonic-gate 	{ 0x00000110, 0x00000000, },	{ 0x00000112, 0x20000000, },
2867c478bd9Sstevel@tonic-gate 	{ 0x00000114, 0x00000000, },	{ 0x00000116, 0x20000000, },
2877c478bd9Sstevel@tonic-gate 	{ 0x00000118, 0x00000000, },	{ 0x0000011a, 0x20000000, },
2887c478bd9Sstevel@tonic-gate 	{ 0x0000011c, 0x00000000, },	{ 0x0000011e, 0x20000000, },
2897c478bd9Sstevel@tonic-gate 	{ 0x00000220, 0x00000000, },	{ 0x00000222, 0x20000000, },
2907c478bd9Sstevel@tonic-gate 	{ 0x00000224, 0x00000000, },	{ 0x00000226, 0x20000000, },
2917c478bd9Sstevel@tonic-gate 	{ 0x00000228, 0x00000000, },	{ 0x0000022a, 0x20000000, },
2927c478bd9Sstevel@tonic-gate 	{ 0x0000022c, 0x00000000, },	{ 0x0000022e, 0x20000000, },
2937c478bd9Sstevel@tonic-gate 	{ 0x00000330, 0x00000000, },	{ 0x00000332, 0x20000000, },
2947c478bd9Sstevel@tonic-gate 	{ 0x00000334, 0x00000000, },	{ 0x00000336, 0x20000000, },
2957c478bd9Sstevel@tonic-gate 	{ 0x00000338, 0x00000000, },	{ 0x0000033a, 0x20000000, },
2967c478bd9Sstevel@tonic-gate 	{ 0x0000033c, 0x00000000, },	{ 0x0000033e, 0x20000000, },
2977c478bd9Sstevel@tonic-gate 	{ 0x00000400, 0x00000000, },	{ 0x00000402, 0x20000000, },
2987c478bd9Sstevel@tonic-gate 	{ 0x00000404, 0x00000000, },	{ 0x00000406, 0x20000000, },
2997c478bd9Sstevel@tonic-gate 	{ 0x00000408, 0x00000000, },	{ 0x0000040a, 0x20000000, },
3007c478bd9Sstevel@tonic-gate 	{ 0x0000040c, 0x00000000, },	{ 0x0000040e, 0x20000000, },
3017c478bd9Sstevel@tonic-gate 	{ 0x00000510, 0x00000000, },	{ 0x00000512, 0x20000000, },
3027c478bd9Sstevel@tonic-gate 	{ 0x00000514, 0x00000000, },	{ 0x00000516, 0x20000000, },
3037c478bd9Sstevel@tonic-gate 	{ 0x00000518, 0x00000000, },	{ 0x0000051a, 0x20000000, },
3047c478bd9Sstevel@tonic-gate 	{ 0x0000051c, 0x00000000, },	{ 0x0000051e, 0x20000000, },
3057c478bd9Sstevel@tonic-gate 	{ 0x00000620, 0x00000000, },	{ 0x00000622, 0x20000000, },
3067c478bd9Sstevel@tonic-gate 	{ 0x00000624, 0x00000000, },	{ 0x00000626, 0x20000000, },
3077c478bd9Sstevel@tonic-gate 	{ 0x00000628, 0x00000000, },	{ 0x0000062a, 0x20000000, },
3087c478bd9Sstevel@tonic-gate 	{ 0x0000062c, 0x00000000, },	{ 0x0000062e, 0x20000000, },
3097c478bd9Sstevel@tonic-gate 	{ 0x00000730, 0x00000000, },	{ 0x00000732, 0x20000000, },
3107c478bd9Sstevel@tonic-gate 	{ 0x00000734, 0x00000000, },	{ 0x00000736, 0x20000000, },
3117c478bd9Sstevel@tonic-gate 	{ 0x00000738, 0x00000000, },	{ 0x0000073a, 0x20000000, },
3127c478bd9Sstevel@tonic-gate 	{ 0x0000073c, 0x00000000, },	{ 0x0000073e, 0x20000000, },
3137c478bd9Sstevel@tonic-gate 	{ 0x00000800, 0x00000000, },	{ 0x00000802, 0x20000000, },
3147c478bd9Sstevel@tonic-gate 	{ 0x00000804, 0x00000000, },	{ 0x00000806, 0x20000000, },
3157c478bd9Sstevel@tonic-gate 	{ 0x00000808, 0x00000000, },	{ 0x0000080a, 0x20000000, },
3167c478bd9Sstevel@tonic-gate 	{ 0x0000080c, 0x00000000, },	{ 0x0000080e, 0x20000000, },
3177c478bd9Sstevel@tonic-gate 	{ 0x00000910, 0x00000000, },	{ 0x00000912, 0x20000000, },
3187c478bd9Sstevel@tonic-gate 	{ 0x00000914, 0x00000000, },	{ 0x00000916, 0x20000000, },
3197c478bd9Sstevel@tonic-gate 	{ 0x00000918, 0x00000000, },	{ 0x0000091a, 0x20000000, },
3207c478bd9Sstevel@tonic-gate 	{ 0x0000091c, 0x00000000, },	{ 0x0000091e, 0x20000000, },
3217c478bd9Sstevel@tonic-gate 	{ 0x00000a20, 0x00000000, },	{ 0x00000a22, 0x20000000, },
3227c478bd9Sstevel@tonic-gate 	{ 0x00000a24, 0x00000000, },	{ 0x00000a26, 0x20000000, },
3237c478bd9Sstevel@tonic-gate 	{ 0x00000a28, 0x00000000, },	{ 0x00000a2a, 0x20000000, },
3247c478bd9Sstevel@tonic-gate 	{ 0x00000a2c, 0x00000000, },	{ 0x00000a2e, 0x20000000, },
3257c478bd9Sstevel@tonic-gate 	{ 0x00000b30, 0x00000000, },	{ 0x00000b32, 0x20000000, },
3267c478bd9Sstevel@tonic-gate 	{ 0x00000b34, 0x00000000, },	{ 0x00000b36, 0x20000000, },
3277c478bd9Sstevel@tonic-gate 	{ 0x00000b38, 0x00000000, },	{ 0x00000b3a, 0x20000000, },
3287c478bd9Sstevel@tonic-gate 	{ 0x00000b3c, 0x00000000, },	{ 0x00000b3e, 0x20000000, },
3297c478bd9Sstevel@tonic-gate 	{ 0x00000c00, 0x00000000, },	{ 0x00000c02, 0x20000000, },
3307c478bd9Sstevel@tonic-gate 	{ 0x00000c04, 0x00000000, },	{ 0x00000c06, 0x20000000, },
3317c478bd9Sstevel@tonic-gate 	{ 0x00000c08, 0x00000000, },	{ 0x00000c0a, 0x20000000, },
3327c478bd9Sstevel@tonic-gate 	{ 0x00000c0c, 0x00000000, },	{ 0x00000c0e, 0x20000000, },
3337c478bd9Sstevel@tonic-gate 	{ 0x00000d10, 0x00000000, },	{ 0x00000d12, 0x20000000, },
3347c478bd9Sstevel@tonic-gate 	{ 0x00000d14, 0x00000000, },	{ 0x00000d16, 0x20000000, },
3357c478bd9Sstevel@tonic-gate 	{ 0x00000d18, 0x00000000, },	{ 0x00000d1a, 0x20000000, },
3367c478bd9Sstevel@tonic-gate 	{ 0x00000d1c, 0x00000000, },	{ 0x00000d1e, 0x20000000, },
3377c478bd9Sstevel@tonic-gate 	{ 0x00000e20, 0x00000000, },	{ 0x00000e22, 0x20000000, },
3387c478bd9Sstevel@tonic-gate 	{ 0x00000e24, 0x00000000, },	{ 0x00000e26, 0x20000000, },
3397c478bd9Sstevel@tonic-gate 	{ 0x00000e28, 0x00000000, },	{ 0x00000e2a, 0x20000000, },
3407c478bd9Sstevel@tonic-gate 	{ 0x00000e2c, 0x00000000, },	{ 0x00000e2e, 0x20000000, },
3417c478bd9Sstevel@tonic-gate 	{ 0x00000f30, 0x00000000, },	{ 0x00000f32, 0x20000000, },
3427c478bd9Sstevel@tonic-gate 	{ 0x00000f34, 0x00000000, },	{ 0x00000f36, 0x20000000, },
3437c478bd9Sstevel@tonic-gate 	{ 0x00000f38, 0x00000000, },	{ 0x00000f3a, 0x20000000, },
3447c478bd9Sstevel@tonic-gate 	{ 0x00000f3c, 0x00000000, },	{ 0x00000f3e, 0x20000000, },
3457c478bd9Sstevel@tonic-gate 	{ 0x00011000, 0x00000000, },	{ 0x00011002, 0x20000000, },
3467c478bd9Sstevel@tonic-gate 	{ 0x00011004, 0x00000000, },	{ 0x00011006, 0x20000000, },
3477c478bd9Sstevel@tonic-gate 	{ 0x00011008, 0x00000000, },	{ 0x0001100a, 0x20000000, },
3487c478bd9Sstevel@tonic-gate 	{ 0x0001100c, 0x00000000, },	{ 0x0001100e, 0x20000000, },
3497c478bd9Sstevel@tonic-gate 	{ 0x00011110, 0x00000000, },	{ 0x00011112, 0x20000000, },
3507c478bd9Sstevel@tonic-gate 	{ 0x00011114, 0x00000000, },	{ 0x00011116, 0x20000000, },
3517c478bd9Sstevel@tonic-gate 	{ 0x00011118, 0x00000000, },	{ 0x0001111a, 0x20000000, },
3527c478bd9Sstevel@tonic-gate 	{ 0x0001111c, 0x00000000, },	{ 0x0001111e, 0x20000000, },
3537c478bd9Sstevel@tonic-gate 	{ 0x00011220, 0x00000000, },	{ 0x00011222, 0x20000000, },
3547c478bd9Sstevel@tonic-gate 	{ 0x00011224, 0x00000000, },	{ 0x00011226, 0x20000000, },
3557c478bd9Sstevel@tonic-gate 	{ 0x00011228, 0x00000000, },	{ 0x0001122a, 0x20000000, },
3567c478bd9Sstevel@tonic-gate 	{ 0x0001122c, 0x00000000, },	{ 0x0001122e, 0x20000000, },
3577c478bd9Sstevel@tonic-gate 	{ 0x00011330, 0x00000000, },	{ 0x00011332, 0x20000000, },
3587c478bd9Sstevel@tonic-gate 	{ 0x00011334, 0x00000000, },	{ 0x00011336, 0x20000000, },
3597c478bd9Sstevel@tonic-gate 	{ 0x00011338, 0x00000000, },	{ 0x0001133a, 0x20000000, },
3607c478bd9Sstevel@tonic-gate 	{ 0x0001133c, 0x00000000, },	{ 0x0001133e, 0x20000000, },
3617c478bd9Sstevel@tonic-gate 	{ 0x00011400, 0x00000000, },	{ 0x00011402, 0x20000000, },
3627c478bd9Sstevel@tonic-gate 	{ 0x00011404, 0x00000000, },	{ 0x00011406, 0x20000000, },
3637c478bd9Sstevel@tonic-gate 	{ 0x00011408, 0x00000000, },	{ 0x0001140a, 0x20000000, },
3647c478bd9Sstevel@tonic-gate 	{ 0x0001140c, 0x00000000, },	{ 0x0001140e, 0x20000000, },
3657c478bd9Sstevel@tonic-gate 	{ 0x00011510, 0x00000000, },	{ 0x00011512, 0x20000000, },
3667c478bd9Sstevel@tonic-gate 	{ 0x00011514, 0x00000000, },	{ 0x00011516, 0x20000000, },
3677c478bd9Sstevel@tonic-gate 	{ 0x00011518, 0x00000000, },	{ 0x0001151a, 0x20000000, },
3687c478bd9Sstevel@tonic-gate 	{ 0x0001151c, 0x00000000, },	{ 0x0001151e, 0x20000000, },
3697c478bd9Sstevel@tonic-gate 	{ 0x00011620, 0x00000000, },	{ 0x00011622, 0x20000000, },
3707c478bd9Sstevel@tonic-gate 	{ 0x00011624, 0x00000000, },	{ 0x00011626, 0x20000000, },
3717c478bd9Sstevel@tonic-gate 	{ 0x00011628, 0x00000000, },	{ 0x0001162a, 0x20000000, },
3727c478bd9Sstevel@tonic-gate 	{ 0x0001162c, 0x00000000, },	{ 0x0001162e, 0x20000000, },
3737c478bd9Sstevel@tonic-gate 	{ 0x00011730, 0x00000000, },	{ 0x00011732, 0x20000000, },
3747c478bd9Sstevel@tonic-gate 	{ 0x00011734, 0x00000000, },	{ 0x00011736, 0x20000000, },
3757c478bd9Sstevel@tonic-gate 	{ 0x00011738, 0x00000000, },	{ 0x0001173a, 0x20000000, },
3767c478bd9Sstevel@tonic-gate 	{ 0x0001173c, 0x00000000, },	{ 0x0001173e, 0x20000000, },
3777c478bd9Sstevel@tonic-gate 	{ 0x00011800, 0x00000000, },	{ 0x00011802, 0x20000000, },
3787c478bd9Sstevel@tonic-gate 	{ 0x00011804, 0x00000000, },	{ 0x00011806, 0x20000000, },
3797c478bd9Sstevel@tonic-gate 	{ 0x00011808, 0x00000000, },	{ 0x0001180a, 0x20000000, },
3807c478bd9Sstevel@tonic-gate 	{ 0x0001180c, 0x00000000, },	{ 0x0001180e, 0x20000000, },
3817c478bd9Sstevel@tonic-gate 	{ 0x00011910, 0x00000000, },	{ 0x00011912, 0x20000000, },
3827c478bd9Sstevel@tonic-gate 	{ 0x00011914, 0x00000000, },	{ 0x00011916, 0x20000000, },
3837c478bd9Sstevel@tonic-gate 	{ 0x00011918, 0x00000000, },	{ 0x0001191a, 0x20000000, },
3847c478bd9Sstevel@tonic-gate 	{ 0x0001191c, 0x00000000, },	{ 0x0001191e, 0x20000000, },
3857c478bd9Sstevel@tonic-gate 	{ 0x00011a20, 0x00000000, },	{ 0x00011a22, 0x20000000, },
3867c478bd9Sstevel@tonic-gate 	{ 0x00011a24, 0x00000000, },	{ 0x00011a26, 0x20000000, },
3877c478bd9Sstevel@tonic-gate 	{ 0x00011a28, 0x00000000, },	{ 0x00011a2a, 0x20000000, },
3887c478bd9Sstevel@tonic-gate 	{ 0x00011a2c, 0x00000000, },	{ 0x00011a2e, 0x20000000, },
3897c478bd9Sstevel@tonic-gate 	{ 0x00011b30, 0x00000000, },	{ 0x00011b32, 0x20000000, },
3907c478bd9Sstevel@tonic-gate 	{ 0x00011b34, 0x00000000, },	{ 0x00011b36, 0x20000000, },
3917c478bd9Sstevel@tonic-gate 	{ 0x00011b38, 0x00000000, },	{ 0x00011b3a, 0x20000000, },
3927c478bd9Sstevel@tonic-gate 	{ 0x00011b3c, 0x00000000, },	{ 0x00011b3e, 0x20000000, },
3937c478bd9Sstevel@tonic-gate 	{ 0x00011c00, 0x00000000, },	{ 0x00011c02, 0x20000000, },
3947c478bd9Sstevel@tonic-gate 	{ 0x00011c04, 0x00000000, },	{ 0x00011c06, 0x20000000, },
3957c478bd9Sstevel@tonic-gate 	{ 0x00011c08, 0x00000000, },	{ 0x00011c0a, 0x20000000, },
3967c478bd9Sstevel@tonic-gate 	{ 0x00011c0c, 0x00000000, },	{ 0x00011c0e, 0x20000000, },
3977c478bd9Sstevel@tonic-gate 	{ 0x00011d10, 0x00000000, },	{ 0x00011d12, 0x20000000, },
3987c478bd9Sstevel@tonic-gate 	{ 0x00011d14, 0x00000000, },	{ 0x00011d16, 0x20000000, },
3997c478bd9Sstevel@tonic-gate 	{ 0x00011d18, 0x00000000, },	{ 0x00011d1a, 0x20000000, },
4007c478bd9Sstevel@tonic-gate 	{ 0x00011d1c, 0x00000000, },	{ 0x00011d1e, 0x20000000, },
4017c478bd9Sstevel@tonic-gate 	{ 0x00011e20, 0x00000000, },	{ 0x00011e22, 0x20000000, },
4027c478bd9Sstevel@tonic-gate 	{ 0x00011e24, 0x00000000, },	{ 0x00011e26, 0x20000000, },
4037c478bd9Sstevel@tonic-gate 	{ 0x00011e28, 0x00000000, },	{ 0x00011e2a, 0x20000000, },
4047c478bd9Sstevel@tonic-gate 	{ 0x00011e2c, 0x00000000, },	{ 0x00011e2e, 0x20000000, },
4057c478bd9Sstevel@tonic-gate 	{ 0x00011f30, 0x00000000, },	{ 0x00011f32, 0x20000000, },
4067c478bd9Sstevel@tonic-gate 	{ 0x00011f34, 0x00000000, },	{ 0x00011f36, 0x20000000, },
4077c478bd9Sstevel@tonic-gate 	{ 0x00011f38, 0x00000000, },	{ 0x00011f3a, 0x20000000, },
4087c478bd9Sstevel@tonic-gate 	{ 0x00011f3c, 0x00000000, },	{ 0x00011f3e, 0x20000000, }, },
4097c478bd9Sstevel@tonic-gate 
4107c478bd9Sstevel@tonic-gate 	{{ 0x00000000, 0x00000000, },	{ 0x00000000, 0x00022000, },
4117c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00040000, },	{ 0x00000000, 0x00062000, },
4127c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00080000, },	{ 0x00000000, 0x000a2000, },
4137c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x000c0000, },	{ 0x00000000, 0x000e2000, },
4147c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x01100000, },	{ 0x00000000, 0x01122000, },
4157c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x01140000, },	{ 0x00000000, 0x01162000, },
4167c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x01180000, },	{ 0x00000000, 0x011a2000, },
4177c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x011c0000, },	{ 0x00000000, 0x011e2000, },
4187c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x02200000, },	{ 0x00000000, 0x02222000, },
4197c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x02240000, },	{ 0x00000000, 0x02262000, },
4207c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x02280000, },	{ 0x00000000, 0x022a2000, },
4217c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x022c0000, },	{ 0x00000000, 0x022e2000, },
4227c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x03300000, },	{ 0x00000000, 0x03322000, },
4237c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x03340000, },	{ 0x00000000, 0x03362000, },
4247c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x03380000, },	{ 0x00000000, 0x033a2000, },
4257c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x033c0000, },	{ 0x00000000, 0x033e2000, },
4267c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x04000000, },	{ 0x00000000, 0x04022000, },
4277c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x04040000, },	{ 0x00000000, 0x04062000, },
4287c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x04080000, },	{ 0x00000000, 0x040a2000, },
4297c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x040c0000, },	{ 0x00000000, 0x040e2000, },
4307c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x05100000, },	{ 0x00000000, 0x05122000, },
4317c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x05140000, },	{ 0x00000000, 0x05162000, },
4327c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x05180000, },	{ 0x00000000, 0x051a2000, },
4337c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x051c0000, },	{ 0x00000000, 0x051e2000, },
4347c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x06200000, },	{ 0x00000000, 0x06222000, },
4357c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x06240000, },	{ 0x00000000, 0x06262000, },
4367c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x06280000, },	{ 0x00000000, 0x062a2000, },
4377c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x062c0000, },	{ 0x00000000, 0x062e2000, },
4387c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x07300000, },	{ 0x00000000, 0x07322000, },
4397c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x07340000, },	{ 0x00000000, 0x07362000, },
4407c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x07380000, },	{ 0x00000000, 0x073a2000, },
4417c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x073c0000, },	{ 0x00000000, 0x073e2000, },
4427c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x08000000, },	{ 0x00000000, 0x08022000, },
4437c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x08040000, },	{ 0x00000000, 0x08062000, },
4447c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x08080000, },	{ 0x00000000, 0x080a2000, },
4457c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x080c0000, },	{ 0x00000000, 0x080e2000, },
4467c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x09100000, },	{ 0x00000000, 0x09122000, },
4477c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x09140000, },	{ 0x00000000, 0x09162000, },
4487c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x09180000, },	{ 0x00000000, 0x091a2000, },
4497c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x091c0000, },	{ 0x00000000, 0x091e2000, },
4507c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0a200000, },	{ 0x00000000, 0x0a222000, },
4517c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0a240000, },	{ 0x00000000, 0x0a262000, },
4527c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0a280000, },	{ 0x00000000, 0x0a2a2000, },
4537c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0a2c0000, },	{ 0x00000000, 0x0a2e2000, },
4547c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0b300000, },	{ 0x00000000, 0x0b322000, },
4557c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0b340000, },	{ 0x00000000, 0x0b362000, },
4567c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0b380000, },	{ 0x00000000, 0x0b3a2000, },
4577c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0b3c0000, },	{ 0x00000000, 0x0b3e2000, },
4587c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0c000000, },	{ 0x00000000, 0x0c022000, },
4597c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0c040000, },	{ 0x00000000, 0x0c062000, },
4607c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0c080000, },	{ 0x00000000, 0x0c0a2000, },
4617c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0c0c0000, },	{ 0x00000000, 0x0c0e2000, },
4627c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0d100000, },	{ 0x00000000, 0x0d122000, },
4637c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0d140000, },	{ 0x00000000, 0x0d162000, },
4647c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0d180000, },	{ 0x00000000, 0x0d1a2000, },
4657c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0d1c0000, },	{ 0x00000000, 0x0d1e2000, },
4667c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0e200000, },	{ 0x00000000, 0x0e222000, },
4677c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0e240000, },	{ 0x00000000, 0x0e262000, },
4687c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0e280000, },	{ 0x00000000, 0x0e2a2000, },
4697c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0e2c0000, },	{ 0x00000000, 0x0e2e2000, },
4707c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0f300000, },	{ 0x00000000, 0x0f322000, },
4717c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0f340000, },	{ 0x00000000, 0x0f362000, },
4727c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0f380000, },	{ 0x00000000, 0x0f3a2000, },
4737c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0f3c0000, },	{ 0x00000000, 0x0f3e2000, },
4747c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x10000000, },	{ 0x00000001, 0x10022000, },
4757c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x10040000, },	{ 0x00000001, 0x10062000, },
4767c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x10080000, },	{ 0x00000001, 0x100a2000, },
4777c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x100c0000, },	{ 0x00000001, 0x100e2000, },
4787c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x11100000, },	{ 0x00000001, 0x11122000, },
4797c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x11140000, },	{ 0x00000001, 0x11162000, },
4807c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x11180000, },	{ 0x00000001, 0x111a2000, },
4817c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x111c0000, },	{ 0x00000001, 0x111e2000, },
4827c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x12200000, },	{ 0x00000001, 0x12222000, },
4837c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x12240000, },	{ 0x00000001, 0x12262000, },
4847c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x12280000, },	{ 0x00000001, 0x122a2000, },
4857c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x122c0000, },	{ 0x00000001, 0x122e2000, },
4867c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x13300000, },	{ 0x00000001, 0x13322000, },
4877c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x13340000, },	{ 0x00000001, 0x13362000, },
4887c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x13380000, },	{ 0x00000001, 0x133a2000, },
4897c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x133c0000, },	{ 0x00000001, 0x133e2000, },
4907c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x14000000, },	{ 0x00000001, 0x14022000, },
4917c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x14040000, },	{ 0x00000001, 0x14062000, },
4927c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x14080000, },	{ 0x00000001, 0x140a2000, },
4937c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x140c0000, },	{ 0x00000001, 0x140e2000, },
4947c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x15100000, },	{ 0x00000001, 0x15122000, },
4957c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x15140000, },	{ 0x00000001, 0x15162000, },
4967c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x15180000, },	{ 0x00000001, 0x151a2000, },
4977c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x151c0000, },	{ 0x00000001, 0x151e2000, },
4987c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x16200000, },	{ 0x00000001, 0x16222000, },
4997c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x16240000, },	{ 0x00000001, 0x16262000, },
5007c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x16280000, },	{ 0x00000001, 0x162a2000, },
5017c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x162c0000, },	{ 0x00000001, 0x162e2000, },
5027c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x17300000, },	{ 0x00000001, 0x17322000, },
5037c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x17340000, },	{ 0x00000001, 0x17362000, },
5047c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x17380000, },	{ 0x00000001, 0x173a2000, },
5057c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x173c0000, },	{ 0x00000001, 0x173e2000, },
5067c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x18000000, },	{ 0x00000001, 0x18022000, },
5077c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x18040000, },	{ 0x00000001, 0x18062000, },
5087c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x18080000, },	{ 0x00000001, 0x180a2000, },
5097c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x180c0000, },	{ 0x00000001, 0x180e2000, },
5107c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x19100000, },	{ 0x00000001, 0x19122000, },
5117c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x19140000, },	{ 0x00000001, 0x19162000, },
5127c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x19180000, },	{ 0x00000001, 0x191a2000, },
5137c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x191c0000, },	{ 0x00000001, 0x191e2000, },
5147c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x1a200000, },	{ 0x00000001, 0x1a222000, },
5157c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x1a240000, },	{ 0x00000001, 0x1a262000, },
5167c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x1a280000, },	{ 0x00000001, 0x1a2a2000, },
5177c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x1a2c0000, },	{ 0x00000001, 0x1a2e2000, },
5187c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x1b300000, },	{ 0x00000001, 0x1b322000, },
5197c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x1b340000, },	{ 0x00000001, 0x1b362000, },
5207c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x1b380000, },	{ 0x00000001, 0x1b3a2000, },
5217c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x1b3c0000, },	{ 0x00000001, 0x1b3e2000, },
5227c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x1c000000, },	{ 0x00000001, 0x1c022000, },
5237c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x1c040000, },	{ 0x00000001, 0x1c062000, },
5247c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x1c080000, },	{ 0x00000001, 0x1c0a2000, },
5257c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x1c0c0000, },	{ 0x00000001, 0x1c0e2000, },
5267c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x1d100000, },	{ 0x00000001, 0x1d122000, },
5277c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x1d140000, },	{ 0x00000001, 0x1d162000, },
5287c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x1d180000, },	{ 0x00000001, 0x1d1a2000, },
5297c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x1d1c0000, },	{ 0x00000001, 0x1d1e2000, },
5307c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x1e200000, },	{ 0x00000001, 0x1e222000, },
5317c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x1e240000, },	{ 0x00000001, 0x1e262000, },
5327c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x1e280000, },	{ 0x00000001, 0x1e2a2000, },
5337c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x1e2c0000, },	{ 0x00000001, 0x1e2e2000, },
5347c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x1f300000, },	{ 0x00000001, 0x1f322000, },
5357c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x1f340000, },	{ 0x00000001, 0x1f362000, },
5367c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x1f380000, },	{ 0x00000001, 0x1f3a2000, },
5377c478bd9Sstevel@tonic-gate 	{ 0x00000001, 0x1f3c0000, },	{ 0x00000001, 0x1f3e2000, }, },
5387c478bd9Sstevel@tonic-gate 
5397c478bd9Sstevel@tonic-gate 	{{ 0x00000000, 0x00000000, },	{ 0x20000000, 0x00000002, },
5407c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000004, },	{ 0x20000000, 0x00000006, },
5417c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000008, },	{ 0x20000000, 0x0000000a, },
5427c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0000000c, },	{ 0x20000000, 0x0000000e, },
5437c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000110, },	{ 0x20000000, 0x00000112, },
5447c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000114, },	{ 0x20000000, 0x00000116, },
5457c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000118, },	{ 0x20000000, 0x0000011a, },
5467c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0000011c, },	{ 0x20000000, 0x0000011e, },
5477c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000220, },	{ 0x20000000, 0x00000222, },
5487c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000224, },	{ 0x20000000, 0x00000226, },
5497c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000228, },	{ 0x20000000, 0x0000022a, },
5507c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0000022c, },	{ 0x20000000, 0x0000022e, },
5517c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000330, },	{ 0x20000000, 0x00000332, },
5527c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000334, },	{ 0x20000000, 0x00000336, },
5537c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000338, },	{ 0x20000000, 0x0000033a, },
5547c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0000033c, },	{ 0x20000000, 0x0000033e, },
5557c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000400, },	{ 0x20000000, 0x00000402, },
5567c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000404, },	{ 0x20000000, 0x00000406, },
5577c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000408, },	{ 0x20000000, 0x0000040a, },
5587c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0000040c, },	{ 0x20000000, 0x0000040e, },
5597c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000510, },	{ 0x20000000, 0x00000512, },
5607c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000514, },	{ 0x20000000, 0x00000516, },
5617c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000518, },	{ 0x20000000, 0x0000051a, },
5627c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0000051c, },	{ 0x20000000, 0x0000051e, },
5637c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000620, },	{ 0x20000000, 0x00000622, },
5647c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000624, },	{ 0x20000000, 0x00000626, },
5657c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000628, },	{ 0x20000000, 0x0000062a, },
5667c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0000062c, },	{ 0x20000000, 0x0000062e, },
5677c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000730, },	{ 0x20000000, 0x00000732, },
5687c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000734, },	{ 0x20000000, 0x00000736, },
5697c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000738, },	{ 0x20000000, 0x0000073a, },
5707c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0000073c, },	{ 0x20000000, 0x0000073e, },
5717c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000800, },	{ 0x20000000, 0x00000802, },
5727c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000804, },	{ 0x20000000, 0x00000806, },
5737c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000808, },	{ 0x20000000, 0x0000080a, },
5747c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0000080c, },	{ 0x20000000, 0x0000080e, },
5757c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000910, },	{ 0x20000000, 0x00000912, },
5767c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000914, },	{ 0x20000000, 0x00000916, },
5777c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000918, },	{ 0x20000000, 0x0000091a, },
5787c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0000091c, },	{ 0x20000000, 0x0000091e, },
5797c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000a20, },	{ 0x20000000, 0x00000a22, },
5807c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000a24, },	{ 0x20000000, 0x00000a26, },
5817c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000a28, },	{ 0x20000000, 0x00000a2a, },
5827c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000a2c, },	{ 0x20000000, 0x00000a2e, },
5837c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000b30, },	{ 0x20000000, 0x00000b32, },
5847c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000b34, },	{ 0x20000000, 0x00000b36, },
5857c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000b38, },	{ 0x20000000, 0x00000b3a, },
5867c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000b3c, },	{ 0x20000000, 0x00000b3e, },
5877c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000c00, },	{ 0x20000000, 0x00000c02, },
5887c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000c04, },	{ 0x20000000, 0x00000c06, },
5897c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000c08, },	{ 0x20000000, 0x00000c0a, },
5907c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000c0c, },	{ 0x20000000, 0x00000c0e, },
5917c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000d10, },	{ 0x20000000, 0x00000d12, },
5927c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000d14, },	{ 0x20000000, 0x00000d16, },
5937c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000d18, },	{ 0x20000000, 0x00000d1a, },
5947c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000d1c, },	{ 0x20000000, 0x00000d1e, },
5957c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000e20, },	{ 0x20000000, 0x00000e22, },
5967c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000e24, },	{ 0x20000000, 0x00000e26, },
5977c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000e28, },	{ 0x20000000, 0x00000e2a, },
5987c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000e2c, },	{ 0x20000000, 0x00000e2e, },
5997c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000f30, },	{ 0x20000000, 0x00000f32, },
6007c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000f34, },	{ 0x20000000, 0x00000f36, },
6017c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000f38, },	{ 0x20000000, 0x00000f3a, },
6027c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00000f3c, },	{ 0x20000000, 0x00000f3e, },
6037c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011000, },	{ 0x20000000, 0x00011002, },
6047c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011004, },	{ 0x20000000, 0x00011006, },
6057c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011008, },	{ 0x20000000, 0x0001100a, },
6067c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0001100c, },	{ 0x20000000, 0x0001100e, },
6077c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011110, },	{ 0x20000000, 0x00011112, },
6087c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011114, },	{ 0x20000000, 0x00011116, },
6097c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011118, },	{ 0x20000000, 0x0001111a, },
6107c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0001111c, },	{ 0x20000000, 0x0001111e, },
6117c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011220, },	{ 0x20000000, 0x00011222, },
6127c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011224, },	{ 0x20000000, 0x00011226, },
6137c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011228, },	{ 0x20000000, 0x0001122a, },
6147c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0001122c, },	{ 0x20000000, 0x0001122e, },
6157c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011330, },	{ 0x20000000, 0x00011332, },
6167c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011334, },	{ 0x20000000, 0x00011336, },
6177c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011338, },	{ 0x20000000, 0x0001133a, },
6187c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0001133c, },	{ 0x20000000, 0x0001133e, },
6197c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011400, },	{ 0x20000000, 0x00011402, },
6207c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011404, },	{ 0x20000000, 0x00011406, },
6217c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011408, },	{ 0x20000000, 0x0001140a, },
6227c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0001140c, },	{ 0x20000000, 0x0001140e, },
6237c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011510, },	{ 0x20000000, 0x00011512, },
6247c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011514, },	{ 0x20000000, 0x00011516, },
6257c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011518, },	{ 0x20000000, 0x0001151a, },
6267c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0001151c, },	{ 0x20000000, 0x0001151e, },
6277c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011620, },	{ 0x20000000, 0x00011622, },
6287c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011624, },	{ 0x20000000, 0x00011626, },
6297c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011628, },	{ 0x20000000, 0x0001162a, },
6307c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0001162c, },	{ 0x20000000, 0x0001162e, },
6317c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011730, },	{ 0x20000000, 0x00011732, },
6327c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011734, },	{ 0x20000000, 0x00011736, },
6337c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011738, },	{ 0x20000000, 0x0001173a, },
6347c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0001173c, },	{ 0x20000000, 0x0001173e, },
6357c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011800, },	{ 0x20000000, 0x00011802, },
6367c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011804, },	{ 0x20000000, 0x00011806, },
6377c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011808, },	{ 0x20000000, 0x0001180a, },
6387c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0001180c, },	{ 0x20000000, 0x0001180e, },
6397c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011910, },	{ 0x20000000, 0x00011912, },
6407c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011914, },	{ 0x20000000, 0x00011916, },
6417c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011918, },	{ 0x20000000, 0x0001191a, },
6427c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x0001191c, },	{ 0x20000000, 0x0001191e, },
6437c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011a20, },	{ 0x20000000, 0x00011a22, },
6447c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011a24, },	{ 0x20000000, 0x00011a26, },
6457c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011a28, },	{ 0x20000000, 0x00011a2a, },
6467c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011a2c, },	{ 0x20000000, 0x00011a2e, },
6477c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011b30, },	{ 0x20000000, 0x00011b32, },
6487c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011b34, },	{ 0x20000000, 0x00011b36, },
6497c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011b38, },	{ 0x20000000, 0x00011b3a, },
6507c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011b3c, },	{ 0x20000000, 0x00011b3e, },
6517c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011c00, },	{ 0x20000000, 0x00011c02, },
6527c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011c04, },	{ 0x20000000, 0x00011c06, },
6537c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011c08, },	{ 0x20000000, 0x00011c0a, },
6547c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011c0c, },	{ 0x20000000, 0x00011c0e, },
6557c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011d10, },	{ 0x20000000, 0x00011d12, },
6567c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011d14, },	{ 0x20000000, 0x00011d16, },
6577c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011d18, },	{ 0x20000000, 0x00011d1a, },
6587c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011d1c, },	{ 0x20000000, 0x00011d1e, },
6597c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011e20, },	{ 0x20000000, 0x00011e22, },
6607c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011e24, },	{ 0x20000000, 0x00011e26, },
6617c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011e28, },	{ 0x20000000, 0x00011e2a, },
6627c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011e2c, },	{ 0x20000000, 0x00011e2e, },
6637c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011f30, },	{ 0x20000000, 0x00011f32, },
6647c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011f34, },	{ 0x20000000, 0x00011f36, },
6657c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011f38, },	{ 0x20000000, 0x00011f3a, },
6667c478bd9Sstevel@tonic-gate 	{ 0x00000000, 0x00011f3c, },	{ 0x20000000, 0x00011f3e, }, }
6677c478bd9Sstevel@tonic-gate };
6687c478bd9Sstevel@tonic-gate 
6697c478bd9Sstevel@tonic-gate /*
6707c478bd9Sstevel@tonic-gate  * The 8 selection functions.
6717c478bd9Sstevel@tonic-gate  * 8 functions to map 6 bits to 64 bits
6727c478bd9Sstevel@tonic-gate  */
6737c478bd9Sstevel@tonic-gate const	uint32_t  S_tab[8][64] = {
6747c478bd9Sstevel@tonic-gate 	{
6757c478bd9Sstevel@tonic-gate 		0xe0000000U, 0x00000000U, 0x40000000U, 0xf0000000U,
6767c478bd9Sstevel@tonic-gate 		0xd0000000U, 0x70000000U, 0x10000000U, 0x40000000U,
6777c478bd9Sstevel@tonic-gate 		0x20000000U, 0xe0000000U, 0xf0000000U, 0x20000000U,
6787c478bd9Sstevel@tonic-gate 		0xb0000000U, 0xd0000000U, 0x80000000U, 0x10000000U,
6797c478bd9Sstevel@tonic-gate 		0x30000000U, 0xa0000000U, 0xa0000000U, 0x60000000U,
6807c478bd9Sstevel@tonic-gate 		0x60000000U, 0xc0000000U, 0xc0000000U, 0xb0000000U,
6817c478bd9Sstevel@tonic-gate 		0x50000000U, 0x90000000U, 0x90000000U, 0x50000000U,
6827c478bd9Sstevel@tonic-gate 		0x00000000U, 0x30000000U, 0x70000000U, 0x80000000U,
6837c478bd9Sstevel@tonic-gate 		0x40000000U, 0xf0000000U, 0x10000000U, 0xc0000000U,
6847c478bd9Sstevel@tonic-gate 		0xe0000000U, 0x80000000U, 0x80000000U, 0x20000000U,
6857c478bd9Sstevel@tonic-gate 		0xd0000000U, 0x40000000U, 0x60000000U, 0x90000000U,
6867c478bd9Sstevel@tonic-gate 		0x20000000U, 0x10000000U, 0xb0000000U, 0x70000000U,
6877c478bd9Sstevel@tonic-gate 		0xf0000000U, 0x50000000U, 0xc0000000U, 0xb0000000U,
6887c478bd9Sstevel@tonic-gate 		0x90000000U, 0x30000000U, 0x70000000U, 0xe0000000U,
6897c478bd9Sstevel@tonic-gate 		0x30000000U, 0xa0000000U, 0xa0000000U, 0x00000000U,
6907c478bd9Sstevel@tonic-gate 		0x50000000U, 0x60000000U, 0x00000000U, 0xd0000000U,
6917c478bd9Sstevel@tonic-gate 	},
6927c478bd9Sstevel@tonic-gate 	{
6937c478bd9Sstevel@tonic-gate 		0x0f000000U, 0x03000000U, 0x01000000U, 0x0d000000U,
6947c478bd9Sstevel@tonic-gate 		0x08000000U, 0x04000000U, 0x0e000000U, 0x07000000U,
6957c478bd9Sstevel@tonic-gate 		0x06000000U, 0x0f000000U, 0x0b000000U, 0x02000000U,
6967c478bd9Sstevel@tonic-gate 		0x03000000U, 0x08000000U, 0x04000000U, 0x0e000000U,
6977c478bd9Sstevel@tonic-gate 		0x09000000U, 0x0c000000U, 0x07000000U, 0x00000000U,
6987c478bd9Sstevel@tonic-gate 		0x02000000U, 0x01000000U, 0x0d000000U, 0x0a000000U,
6997c478bd9Sstevel@tonic-gate 		0x0c000000U, 0x06000000U, 0x00000000U, 0x09000000U,
7007c478bd9Sstevel@tonic-gate 		0x05000000U, 0x0b000000U, 0x0a000000U, 0x05000000U,
7017c478bd9Sstevel@tonic-gate 		0x00000000U, 0x0d000000U, 0x0e000000U, 0x08000000U,
7027c478bd9Sstevel@tonic-gate 		0x07000000U, 0x0a000000U, 0x0b000000U, 0x01000000U,
7037c478bd9Sstevel@tonic-gate 		0x0a000000U, 0x03000000U, 0x04000000U, 0x0f000000U,
7047c478bd9Sstevel@tonic-gate 		0x0d000000U, 0x04000000U, 0x01000000U, 0x02000000U,
7057c478bd9Sstevel@tonic-gate 		0x05000000U, 0x0b000000U, 0x08000000U, 0x06000000U,
7067c478bd9Sstevel@tonic-gate 		0x0c000000U, 0x07000000U, 0x06000000U, 0x0c000000U,
7077c478bd9Sstevel@tonic-gate 		0x09000000U, 0x00000000U, 0x03000000U, 0x05000000U,
7087c478bd9Sstevel@tonic-gate 		0x02000000U, 0x0e000000U, 0x0f000000U, 0x09000000U,
7097c478bd9Sstevel@tonic-gate 	},
7107c478bd9Sstevel@tonic-gate 	{
7117c478bd9Sstevel@tonic-gate 		0x00a00000U, 0x00d00000U, 0x00000000U, 0x00700000U,
7127c478bd9Sstevel@tonic-gate 		0x00900000U, 0x00000000U, 0x00e00000U, 0x00900000U,
7137c478bd9Sstevel@tonic-gate 		0x00600000U, 0x00300000U, 0x00300000U, 0x00400000U,
7147c478bd9Sstevel@tonic-gate 		0x00f00000U, 0x00600000U, 0x00500000U, 0x00a00000U,
7157c478bd9Sstevel@tonic-gate 		0x00100000U, 0x00200000U, 0x00d00000U, 0x00800000U,
7167c478bd9Sstevel@tonic-gate 		0x00c00000U, 0x00500000U, 0x00700000U, 0x00e00000U,
7177c478bd9Sstevel@tonic-gate 		0x00b00000U, 0x00c00000U, 0x00400000U, 0x00b00000U,
7187c478bd9Sstevel@tonic-gate 		0x00200000U, 0x00f00000U, 0x00800000U, 0x00100000U,
7197c478bd9Sstevel@tonic-gate 		0x00d00000U, 0x00100000U, 0x00600000U, 0x00a00000U,
7207c478bd9Sstevel@tonic-gate 		0x00400000U, 0x00d00000U, 0x00900000U, 0x00000000U,
7217c478bd9Sstevel@tonic-gate 		0x00800000U, 0x00600000U, 0x00f00000U, 0x00900000U,
7227c478bd9Sstevel@tonic-gate 		0x00300000U, 0x00800000U, 0x00000000U, 0x00700000U,
7237c478bd9Sstevel@tonic-gate 		0x00b00000U, 0x00400000U, 0x00100000U, 0x00f00000U,
7247c478bd9Sstevel@tonic-gate 		0x00200000U, 0x00e00000U, 0x00c00000U, 0x00300000U,
7257c478bd9Sstevel@tonic-gate 		0x00500000U, 0x00b00000U, 0x00a00000U, 0x00500000U,
7267c478bd9Sstevel@tonic-gate 		0x00e00000U, 0x00200000U, 0x00700000U, 0x00c00000U,
7277c478bd9Sstevel@tonic-gate 	},
7287c478bd9Sstevel@tonic-gate 	{
7297c478bd9Sstevel@tonic-gate 		0x00070000U, 0x000d0000U, 0x000d0000, 0x00080000U,
7307c478bd9Sstevel@tonic-gate 		0x000e0000U, 0x000b0000U, 0x00030000, 0x00050000U,
7317c478bd9Sstevel@tonic-gate 		0x00000000U, 0x00060000U, 0x00060000, 0x000f0000U,
7327c478bd9Sstevel@tonic-gate 		0x00090000U, 0x00000000U, 0x000a0000, 0x00030000U,
7337c478bd9Sstevel@tonic-gate 		0x00010000U, 0x00040000U, 0x00020000, 0x00070000U,
7347c478bd9Sstevel@tonic-gate 		0x00080000U, 0x00020000U, 0x00050000, 0x000c0000U,
7357c478bd9Sstevel@tonic-gate 		0x000b0000U, 0x00010000U, 0x000c0000, 0x000a0000U,
7367c478bd9Sstevel@tonic-gate 		0x00040000U, 0x000e0000U, 0x000f0000, 0x00090000U,
7377c478bd9Sstevel@tonic-gate 		0x000a0000U, 0x00030000U, 0x00060000, 0x000f0000U,
7387c478bd9Sstevel@tonic-gate 		0x00090000U, 0x00000000U, 0x00000000, 0x00060000U,
7397c478bd9Sstevel@tonic-gate 		0x000c0000U, 0x000a0000U, 0x000b0000, 0x00010000U,
7407c478bd9Sstevel@tonic-gate 		0x00070000U, 0x000d0000U, 0x000d0000, 0x00080000U,
7417c478bd9Sstevel@tonic-gate 		0x000f0000U, 0x00090000U, 0x00010000, 0x00040000U,
7427c478bd9Sstevel@tonic-gate 		0x00030000U, 0x00050000U, 0x000e0000, 0x000b0000U,
7437c478bd9Sstevel@tonic-gate 		0x00050000U, 0x000c0000U, 0x00020000, 0x00070000U,
7447c478bd9Sstevel@tonic-gate 		0x00080000U, 0x00020000U, 0x00040000, 0x000e0000U,
7457c478bd9Sstevel@tonic-gate 	},
7467c478bd9Sstevel@tonic-gate 	{
7477c478bd9Sstevel@tonic-gate 		0x00002000U, 0x0000e000U, 0x0000c000U, 0x0000b000U,
7487c478bd9Sstevel@tonic-gate 		0x00004000U, 0x00002000U, 0x00001000U, 0x0000c000U,
7497c478bd9Sstevel@tonic-gate 		0x00007000U, 0x00004000U, 0x0000a000U, 0x00007000U,
7507c478bd9Sstevel@tonic-gate 		0x0000b000U, 0x0000d000U, 0x00006000U, 0x00001000U,
7517c478bd9Sstevel@tonic-gate 		0x00008000U, 0x00005000U, 0x00005000U, 0x00000000U,
7527c478bd9Sstevel@tonic-gate 		0x00003000U, 0x0000f000U, 0x0000f000U, 0x0000a000U,
7537c478bd9Sstevel@tonic-gate 		0x0000d000U, 0x00003000U, 0x00000000U, 0x00009000U,
7547c478bd9Sstevel@tonic-gate 		0x0000e000U, 0x00008000U, 0x00009000U, 0x00006000U,
7557c478bd9Sstevel@tonic-gate 		0x00004000U, 0x0000b000U, 0x00002000U, 0x00008000U,
7567c478bd9Sstevel@tonic-gate 		0x00001000U, 0x0000c000U, 0x0000b000U, 0x00007000U,
7577c478bd9Sstevel@tonic-gate 		0x0000a000U, 0x00001000U, 0x0000d000U, 0x0000e000U,
7587c478bd9Sstevel@tonic-gate 		0x00007000U, 0x00002000U, 0x00008000U, 0x0000d000U,
7597c478bd9Sstevel@tonic-gate 		0x0000f000U, 0x00006000U, 0x00009000U, 0x0000f000U,
7607c478bd9Sstevel@tonic-gate 		0x0000c000U, 0x00000000U, 0x00005000U, 0x00009000U,
7617c478bd9Sstevel@tonic-gate 		0x00006000U, 0x0000a000U, 0x00003000U, 0x00004000U,
7627c478bd9Sstevel@tonic-gate 		0x00000000U, 0x00005000U, 0x0000e000U, 0x00003000U,
7637c478bd9Sstevel@tonic-gate 	},
7647c478bd9Sstevel@tonic-gate 	{
7657c478bd9Sstevel@tonic-gate 		0x00000c00U, 0x00000a00U, 0x00000100U, 0x00000f00U,
7667c478bd9Sstevel@tonic-gate 		0x00000a00U, 0x00000400U, 0x00000f00U, 0x00000200U,
7677c478bd9Sstevel@tonic-gate 		0x00000900U, 0x00000700U, 0x00000200U, 0x00000c00U,
7687c478bd9Sstevel@tonic-gate 		0x00000600U, 0x00000900U, 0x00000800U, 0x00000500U,
7697c478bd9Sstevel@tonic-gate 		0x00000000U, 0x00000600U, 0x00000d00U, 0x00000100U,
7707c478bd9Sstevel@tonic-gate 		0x00000300U, 0x00000d00U, 0x00000400U, 0x00000e00U,
7717c478bd9Sstevel@tonic-gate 		0x00000e00U, 0x00000000U, 0x00000700U, 0x00000b00U,
7727c478bd9Sstevel@tonic-gate 		0x00000500U, 0x00000300U, 0x00000b00U, 0x00000800U,
7737c478bd9Sstevel@tonic-gate 		0x00000900U, 0x00000400U, 0x00000e00U, 0x00000300U,
7747c478bd9Sstevel@tonic-gate 		0x00000f00U, 0x00000200U, 0x00000500U, 0x00000c00U,
7757c478bd9Sstevel@tonic-gate 		0x00000200U, 0x00000900U, 0x00000800U, 0x00000500U,
7767c478bd9Sstevel@tonic-gate 		0x00000c00U, 0x00000f00U, 0x00000300U, 0x00000a00U,
7777c478bd9Sstevel@tonic-gate 		0x00000700U, 0x00000b00U, 0x00000000U, 0x00000e00U,
7787c478bd9Sstevel@tonic-gate 		0x00000400U, 0x00000100U, 0x00000a00U, 0x00000700U,
7797c478bd9Sstevel@tonic-gate 		0x00000100U, 0x00000600U, 0x00000d00U, 0x00000000U,
7807c478bd9Sstevel@tonic-gate 		0x00000b00U, 0x00000800U, 0x00000600U, 0x00000d00U,
7817c478bd9Sstevel@tonic-gate 	},
7827c478bd9Sstevel@tonic-gate 	{
7837c478bd9Sstevel@tonic-gate 		0x00000040U, 0x000000d0U, 0x000000b0U, 0x00000000U,
7847c478bd9Sstevel@tonic-gate 		0x00000020U, 0x000000b0U, 0x000000e0U, 0x00000070U,
7857c478bd9Sstevel@tonic-gate 		0x000000f0U, 0x00000040U, 0x00000000U, 0x00000090U,
7867c478bd9Sstevel@tonic-gate 		0x00000080U, 0x00000010U, 0x000000d0U, 0x000000a0U,
7877c478bd9Sstevel@tonic-gate 		0x00000030U, 0x000000e0U, 0x000000c0U, 0x00000030U,
7887c478bd9Sstevel@tonic-gate 		0x00000090U, 0x00000050U, 0x00000070U, 0x000000c0U,
7897c478bd9Sstevel@tonic-gate 		0x00000050U, 0x00000020U, 0x000000a0U, 0x000000f0U,
7907c478bd9Sstevel@tonic-gate 		0x00000060U, 0x00000080U, 0x00000010U, 0x00000060U,
7917c478bd9Sstevel@tonic-gate 		0x00000010U, 0x00000060U, 0x00000040U, 0x000000b0U,
7927c478bd9Sstevel@tonic-gate 		0x000000b0U, 0x000000d0U, 0x000000d0U, 0x00000080U,
7937c478bd9Sstevel@tonic-gate 		0x000000c0U, 0x00000010U, 0x00000030U, 0x00000040U,
7947c478bd9Sstevel@tonic-gate 		0x00000070U, 0x000000a0U, 0x000000e0U, 0x00000070U,
7957c478bd9Sstevel@tonic-gate 		0x000000a0U, 0x00000090U, 0x000000f0U, 0x00000050U,
7967c478bd9Sstevel@tonic-gate 		0x00000060U, 0x00000000U, 0x00000080U, 0x000000f0U,
7977c478bd9Sstevel@tonic-gate 		0x00000000U, 0x000000e0U, 0x00000050U, 0x00000020U,
7987c478bd9Sstevel@tonic-gate 		0x00000090U, 0x00000030U, 0x00000020U, 0x000000c0U,
7997c478bd9Sstevel@tonic-gate 	},
8007c478bd9Sstevel@tonic-gate 	{
8017c478bd9Sstevel@tonic-gate 		0x0000000dU, 0x00000001U, 0x00000002U, 0x0000000fU,
8027c478bd9Sstevel@tonic-gate 		0x00000008U, 0x0000000dU, 0x00000004U, 0x00000008U,
8037c478bd9Sstevel@tonic-gate 		0x00000006U, 0x0000000aU, 0x0000000fU, 0x00000003U,
8047c478bd9Sstevel@tonic-gate 		0x0000000bU, 0x00000007U, 0x00000001U, 0x00000004U,
8057c478bd9Sstevel@tonic-gate 		0x0000000aU, 0x0000000cU, 0x00000009U, 0x00000005U,
8067c478bd9Sstevel@tonic-gate 		0x00000003U, 0x00000006U, 0x0000000eU, 0x0000000bU,
8077c478bd9Sstevel@tonic-gate 		0x00000005U, 0x00000000U, 0x00000000U, 0x0000000eU,
8087c478bd9Sstevel@tonic-gate 		0x0000000cU, 0x00000009U, 0x00000007U, 0x00000002U,
8097c478bd9Sstevel@tonic-gate 		0x00000007U, 0x00000002U, 0x0000000bU, 0x00000001U,
8107c478bd9Sstevel@tonic-gate 		0x00000004U, 0x0000000eU, 0x00000001U, 0x00000007U,
8117c478bd9Sstevel@tonic-gate 		0x00000009U, 0x00000004U, 0x0000000cU, 0x0000000aU,
8127c478bd9Sstevel@tonic-gate 		0x0000000eU, 0x00000008U, 0x00000002U, 0x0000000dU,
8137c478bd9Sstevel@tonic-gate 		0x00000000U, 0x0000000fU, 0x00000006U, 0x0000000cU,
8147c478bd9Sstevel@tonic-gate 		0x0000000aU, 0x00000009U, 0x0000000dU, 0x00000000U,
8157c478bd9Sstevel@tonic-gate 		0x0000000fU, 0x00000003U, 0x00000003U, 0x00000005U,
8167c478bd9Sstevel@tonic-gate 		0x00000005U, 0x00000006U, 0x00000008U, 0x0000000bU,
8177c478bd9Sstevel@tonic-gate 	},
8187c478bd9Sstevel@tonic-gate };
8197c478bd9Sstevel@tonic-gate 
8207c478bd9Sstevel@tonic-gate /*
8217c478bd9Sstevel@tonic-gate  * Permute 32 bit output of S boxes
8227c478bd9Sstevel@tonic-gate  */
8237c478bd9Sstevel@tonic-gate const 	uint32_t	P_tab[4][256] = {
8247c478bd9Sstevel@tonic-gate 	0x00000000U, 0x00004000U, 0x40000000U, 0x40004000U,
8257c478bd9Sstevel@tonic-gate 	0x00000010U, 0x00004010U, 0x40000010U, 0x40004010U,
8267c478bd9Sstevel@tonic-gate 	0x00080000U, 0x00084000U, 0x40080000U, 0x40084000U,
8277c478bd9Sstevel@tonic-gate 	0x00080010U, 0x00084010U, 0x40080010U, 0x40084010U,
8287c478bd9Sstevel@tonic-gate 	0x00000002U, 0x00004002U, 0x40000002U, 0x40004002U,
8297c478bd9Sstevel@tonic-gate 	0x00000012U, 0x00004012U, 0x40000012U, 0x40004012U,
8307c478bd9Sstevel@tonic-gate 	0x00080002U, 0x00084002U, 0x40080002U, 0x40084002U,
8317c478bd9Sstevel@tonic-gate 	0x00080012U, 0x00084012U, 0x40080012U, 0x40084012U,
8327c478bd9Sstevel@tonic-gate 	0x00000200U, 0x00004200U, 0x40000200U, 0x40004200U,
8337c478bd9Sstevel@tonic-gate 	0x00000210U, 0x00004210U, 0x40000210U, 0x40004210U,
8347c478bd9Sstevel@tonic-gate 	0x00080200U, 0x00084200U, 0x40080200U, 0x40084200U,
8357c478bd9Sstevel@tonic-gate 	0x00080210U, 0x00084210U, 0x40080210U, 0x40084210U,
8367c478bd9Sstevel@tonic-gate 	0x00000202U, 0x00004202U, 0x40000202U, 0x40004202U,
8377c478bd9Sstevel@tonic-gate 	0x00000212U, 0x00004212U, 0x40000212U, 0x40004212U,
8387c478bd9Sstevel@tonic-gate 	0x00080202U, 0x00084202U, 0x40080202U, 0x40084202U,
8397c478bd9Sstevel@tonic-gate 	0x00080212U, 0x00084212U, 0x40080212U, 0x40084212U,
8407c478bd9Sstevel@tonic-gate 	0x00008000U, 0x0000c000U, 0x40008000U, 0x4000c000U,
8417c478bd9Sstevel@tonic-gate 	0x00008010U, 0x0000c010U, 0x40008010U, 0x4000c010U,
8427c478bd9Sstevel@tonic-gate 	0x00088000U, 0x0008c000U, 0x40088000U, 0x4008c000U,
8437c478bd9Sstevel@tonic-gate 	0x00088010U, 0x0008c010U, 0x40088010U, 0x4008c010U,
8447c478bd9Sstevel@tonic-gate 	0x00008002U, 0x0000c002U, 0x40008002U, 0x4000c002U,
8457c478bd9Sstevel@tonic-gate 	0x00008012U, 0x0000c012U, 0x40008012U, 0x4000c012U,
8467c478bd9Sstevel@tonic-gate 	0x00088002U, 0x0008c002U, 0x40088002U, 0x4008c002U,
8477c478bd9Sstevel@tonic-gate 	0x00088012U, 0x0008c012U, 0x40088012U, 0x4008c012U,
8487c478bd9Sstevel@tonic-gate 	0x00008200U, 0x0000c200U, 0x40008200U, 0x4000c200U,
8497c478bd9Sstevel@tonic-gate 	0x00008210U, 0x0000c210U, 0x40008210U, 0x4000c210U,
8507c478bd9Sstevel@tonic-gate 	0x00088200U, 0x0008c200U, 0x40088200U, 0x4008c200U,
8517c478bd9Sstevel@tonic-gate 	0x00088210U, 0x0008c210U, 0x40088210U, 0x4008c210U,
8527c478bd9Sstevel@tonic-gate 	0x00008202U, 0x0000c202U, 0x40008202U, 0x4000c202U,
8537c478bd9Sstevel@tonic-gate 	0x00008212U, 0x0000c212U, 0x40008212U, 0x4000c212U,
8547c478bd9Sstevel@tonic-gate 	0x00088202U, 0x0008c202U, 0x40088202U, 0x4008c202U,
8557c478bd9Sstevel@tonic-gate 	0x00088212U, 0x0008c212U, 0x40088212U, 0x4008c212U,
8567c478bd9Sstevel@tonic-gate 	0x00800000U, 0x00804000U, 0x40800000U, 0x40804000U,
8577c478bd9Sstevel@tonic-gate 	0x00800010U, 0x00804010U, 0x40800010U, 0x40804010U,
8587c478bd9Sstevel@tonic-gate 	0x00880000U, 0x00884000U, 0x40880000U, 0x40884000U,
8597c478bd9Sstevel@tonic-gate 	0x00880010U, 0x00884010U, 0x40880010U, 0x40884010U,
8607c478bd9Sstevel@tonic-gate 	0x00800002U, 0x00804002U, 0x40800002U, 0x40804002U,
8617c478bd9Sstevel@tonic-gate 	0x00800012U, 0x00804012U, 0x40800012U, 0x40804012U,
8627c478bd9Sstevel@tonic-gate 	0x00880002U, 0x00884002U, 0x40880002U, 0x40884002U,
8637c478bd9Sstevel@tonic-gate 	0x00880012U, 0x00884012U, 0x40880012U, 0x40884012U,
8647c478bd9Sstevel@tonic-gate 	0x00800200U, 0x00804200U, 0x40800200U, 0x40804200U,
8657c478bd9Sstevel@tonic-gate 	0x00800210U, 0x00804210U, 0x40800210U, 0x40804210U,
8667c478bd9Sstevel@tonic-gate 	0x00880200U, 0x00884200U, 0x40880200U, 0x40884200U,
8677c478bd9Sstevel@tonic-gate 	0x00880210U, 0x00884210U, 0x40880210U, 0x40884210U,
8687c478bd9Sstevel@tonic-gate 	0x00800202U, 0x00804202U, 0x40800202U, 0x40804202U,
8697c478bd9Sstevel@tonic-gate 	0x00800212U, 0x00804212U, 0x40800212U, 0x40804212U,
8707c478bd9Sstevel@tonic-gate 	0x00880202U, 0x00884202U, 0x40880202U, 0x40884202U,
8717c478bd9Sstevel@tonic-gate 	0x00880212U, 0x00884212U, 0x40880212U, 0x40884212U,
8727c478bd9Sstevel@tonic-gate 	0x00808000U, 0x0080c000U, 0x40808000U, 0x4080c000U,
8737c478bd9Sstevel@tonic-gate 	0x00808010U, 0x0080c010U, 0x40808010U, 0x4080c010U,
8747c478bd9Sstevel@tonic-gate 	0x00888000U, 0x0088c000U, 0x40888000U, 0x4088c000U,
8757c478bd9Sstevel@tonic-gate 	0x00888010U, 0x0088c010U, 0x40888010U, 0x4088c010U,
8767c478bd9Sstevel@tonic-gate 	0x00808002U, 0x0080c002U, 0x40808002U, 0x4080c002U,
8777c478bd9Sstevel@tonic-gate 	0x00808012U, 0x0080c012U, 0x40808012U, 0x4080c012U,
8787c478bd9Sstevel@tonic-gate 	0x00888002U, 0x0088c002U, 0x40888002U, 0x4088c002U,
8797c478bd9Sstevel@tonic-gate 	0x00888012U, 0x0088c012U, 0x40888012U, 0x4088c012U,
8807c478bd9Sstevel@tonic-gate 	0x00808200U, 0x0080c200U, 0x40808200U, 0x4080c200U,
8817c478bd9Sstevel@tonic-gate 	0x00808210U, 0x0080c210U, 0x40808210U, 0x4080c210U,
8827c478bd9Sstevel@tonic-gate 	0x00888200U, 0x0088c200U, 0x40888200U, 0x4088c200U,
8837c478bd9Sstevel@tonic-gate 	0x00888210U, 0x0088c210U, 0x40888210U, 0x4088c210U,
8847c478bd9Sstevel@tonic-gate 	0x00808202U, 0x0080c202U, 0x40808202U, 0x4080c202U,
8857c478bd9Sstevel@tonic-gate 	0x00808212U, 0x0080c212U, 0x40808212U, 0x4080c212U,
8867c478bd9Sstevel@tonic-gate 	0x00888202U, 0x0088c202U, 0x40888202U, 0x4088c202U,
8877c478bd9Sstevel@tonic-gate 	0x00888212U, 0x0088c212U, 0x40888212U, 0x4088c212U,
8887c478bd9Sstevel@tonic-gate 	0x00000000U, 0x80000000U, 0x00400000U, 0x80400000U,
8897c478bd9Sstevel@tonic-gate 	0x00001000U, 0x80001000U, 0x00401000U, 0x80401000U,
8907c478bd9Sstevel@tonic-gate 	0x00000040U, 0x80000040U, 0x00400040U, 0x80400040U,
8917c478bd9Sstevel@tonic-gate 	0x00001040U, 0x80001040U, 0x00401040U, 0x80401040U,
8927c478bd9Sstevel@tonic-gate 	0x04000000U, 0x84000000U, 0x04400000U, 0x84400000U,
8937c478bd9Sstevel@tonic-gate 	0x04001000U, 0x84001000U, 0x04401000U, 0x84401000U,
8947c478bd9Sstevel@tonic-gate 	0x04000040U, 0x84000040U, 0x04400040U, 0x84400040U,
8957c478bd9Sstevel@tonic-gate 	0x04001040U, 0x84001040U, 0x04401040U, 0x84401040U,
8967c478bd9Sstevel@tonic-gate 	0x00000004U, 0x80000004U, 0x00400004U, 0x80400004U,
8977c478bd9Sstevel@tonic-gate 	0x00001004U, 0x80001004U, 0x00401004U, 0x80401004U,
8987c478bd9Sstevel@tonic-gate 	0x00000044U, 0x80000044U, 0x00400044U, 0x80400044U,
8997c478bd9Sstevel@tonic-gate 	0x00001044U, 0x80001044U, 0x00401044U, 0x80401044U,
9007c478bd9Sstevel@tonic-gate 	0x04000004U, 0x84000004U, 0x04400004U, 0x84400004U,
9017c478bd9Sstevel@tonic-gate 	0x04001004U, 0x84001004U, 0x04401004U, 0x84401004U,
9027c478bd9Sstevel@tonic-gate 	0x04000044U, 0x84000044U, 0x04400044U, 0x84400044U,
9037c478bd9Sstevel@tonic-gate 	0x04001044U, 0x84001044U, 0x04401044U, 0x84401044U,
9047c478bd9Sstevel@tonic-gate 	0x00010000U, 0x80010000U, 0x00410000U, 0x80410000U,
9057c478bd9Sstevel@tonic-gate 	0x00011000U, 0x80011000U, 0x00411000U, 0x80411000U,
9067c478bd9Sstevel@tonic-gate 	0x00010040U, 0x80010040U, 0x00410040U, 0x80410040U,
9077c478bd9Sstevel@tonic-gate 	0x00011040U, 0x80011040U, 0x00411040U, 0x80411040U,
9087c478bd9Sstevel@tonic-gate 	0x04010000U, 0x84010000U, 0x04410000U, 0x84410000U,
9097c478bd9Sstevel@tonic-gate 	0x04011000U, 0x84011000U, 0x04411000U, 0x84411000U,
9107c478bd9Sstevel@tonic-gate 	0x04010040U, 0x84010040U, 0x04410040U, 0x84410040U,
9117c478bd9Sstevel@tonic-gate 	0x04011040U, 0x84011040U, 0x04411040U, 0x84411040U,
9127c478bd9Sstevel@tonic-gate 	0x00010004U, 0x80010004U, 0x00410004U, 0x80410004U,
9137c478bd9Sstevel@tonic-gate 	0x00011004U, 0x80011004U, 0x00411004U, 0x80411004U,
9147c478bd9Sstevel@tonic-gate 	0x00010044U, 0x80010044U, 0x00410044U, 0x80410044U,
9157c478bd9Sstevel@tonic-gate 	0x00011044U, 0x80011044U, 0x00411044U, 0x80411044U,
9167c478bd9Sstevel@tonic-gate 	0x04010004U, 0x84010004U, 0x04410004U, 0x84410004U,
9177c478bd9Sstevel@tonic-gate 	0x04011004U, 0x84011004U, 0x04411004U, 0x84411004U,
9187c478bd9Sstevel@tonic-gate 	0x04010044U, 0x84010044U, 0x04410044U, 0x84410044U,
9197c478bd9Sstevel@tonic-gate 	0x04011044U, 0x84011044U, 0x04411044U, 0x84411044U,
9207c478bd9Sstevel@tonic-gate 	0x00000100U, 0x80000100U, 0x00400100U, 0x80400100U,
9217c478bd9Sstevel@tonic-gate 	0x00001100U, 0x80001100U, 0x00401100U, 0x80401100U,
9227c478bd9Sstevel@tonic-gate 	0x00000140U, 0x80000140U, 0x00400140U, 0x80400140U,
9237c478bd9Sstevel@tonic-gate 	0x00001140U, 0x80001140U, 0x00401140U, 0x80401140U,
9247c478bd9Sstevel@tonic-gate 	0x04000100U, 0x84000100U, 0x04400100U, 0x84400100U,
9257c478bd9Sstevel@tonic-gate 	0x04001100U, 0x84001100U, 0x04401100U, 0x84401100U,
9267c478bd9Sstevel@tonic-gate 	0x04000140U, 0x84000140U, 0x04400140U, 0x84400140U,
9277c478bd9Sstevel@tonic-gate 	0x04001140U, 0x84001140U, 0x04401140U, 0x84401140U,
9287c478bd9Sstevel@tonic-gate 	0x00000104U, 0x80000104U, 0x00400104U, 0x80400104U,
9297c478bd9Sstevel@tonic-gate 	0x00001104U, 0x80001104U, 0x00401104U, 0x80401104U,
9307c478bd9Sstevel@tonic-gate 	0x00000144U, 0x80000144U, 0x00400144U, 0x80400144U,
9317c478bd9Sstevel@tonic-gate 	0x00001144U, 0x80001144U, 0x00401144U, 0x80401144U,
9327c478bd9Sstevel@tonic-gate 	0x04000104U, 0x84000104U, 0x04400104U, 0x84400104U,
9337c478bd9Sstevel@tonic-gate 	0x04001104U, 0x84001104U, 0x04401104U, 0x84401104U,
9347c478bd9Sstevel@tonic-gate 	0x04000144U, 0x84000144U, 0x04400144U, 0x84400144U,
9357c478bd9Sstevel@tonic-gate 	0x04001144U, 0x84001144U, 0x04401144U, 0x84401144U,
9367c478bd9Sstevel@tonic-gate 	0x00010100U, 0x80010100U, 0x00410100U, 0x80410100U,
9377c478bd9Sstevel@tonic-gate 	0x00011100U, 0x80011100U, 0x00411100U, 0x80411100U,
9387c478bd9Sstevel@tonic-gate 	0x00010140U, 0x80010140U, 0x00410140U, 0x80410140U,
9397c478bd9Sstevel@tonic-gate 	0x00011140U, 0x80011140U, 0x00411140U, 0x80411140U,
9407c478bd9Sstevel@tonic-gate 	0x04010100U, 0x84010100U, 0x04410100U, 0x84410100U,
9417c478bd9Sstevel@tonic-gate 	0x04011100U, 0x84011100U, 0x04411100U, 0x84411100U,
9427c478bd9Sstevel@tonic-gate 	0x04010140U, 0x84010140U, 0x04410140U, 0x84410140U,
9437c478bd9Sstevel@tonic-gate 	0x04011140U, 0x84011140U, 0x04411140U, 0x84411140U,
9447c478bd9Sstevel@tonic-gate 	0x00010104U, 0x80010104U, 0x00410104U, 0x80410104U,
9457c478bd9Sstevel@tonic-gate 	0x00011104U, 0x80011104U, 0x00411104U, 0x80411104U,
9467c478bd9Sstevel@tonic-gate 	0x00010144U, 0x80010144U, 0x00410144U, 0x80410144U,
9477c478bd9Sstevel@tonic-gate 	0x00011144U, 0x80011144U, 0x00411144U, 0x80411144U,
9487c478bd9Sstevel@tonic-gate 	0x04010104U, 0x84010104U, 0x04410104U, 0x84410104U,
9497c478bd9Sstevel@tonic-gate 	0x04011104U, 0x84011104U, 0x04411104U, 0x84411104U,
9507c478bd9Sstevel@tonic-gate 	0x04010144U, 0x84010144U, 0x04410144U, 0x84410144U,
9517c478bd9Sstevel@tonic-gate 	0x04011144U, 0x84011144U, 0x04411144U, 0x84411144U,
9527c478bd9Sstevel@tonic-gate 	0x00000000U, 0x00002000U, 0x00200000U, 0x00202000U,
9537c478bd9Sstevel@tonic-gate 	0x00000008U, 0x00002008U, 0x00200008U, 0x00202008U,
9547c478bd9Sstevel@tonic-gate 	0x10000000U, 0x10002000U, 0x10200000U, 0x10202000U,
9557c478bd9Sstevel@tonic-gate 	0x10000008U, 0x10002008U, 0x10200008U, 0x10202008U,
9567c478bd9Sstevel@tonic-gate 	0x20000000U, 0x20002000U, 0x20200000U, 0x20202000U,
9577c478bd9Sstevel@tonic-gate 	0x20000008U, 0x20002008U, 0x20200008U, 0x20202008U,
9587c478bd9Sstevel@tonic-gate 	0x30000000U, 0x30002000U, 0x30200000U, 0x30202000U,
9597c478bd9Sstevel@tonic-gate 	0x30000008U, 0x30002008U, 0x30200008U, 0x30202008U,
9607c478bd9Sstevel@tonic-gate 	0x00000080U, 0x00002080U, 0x00200080U, 0x00202080U,
9617c478bd9Sstevel@tonic-gate 	0x00000088U, 0x00002088U, 0x00200088U, 0x00202088U,
9627c478bd9Sstevel@tonic-gate 	0x10000080U, 0x10002080U, 0x10200080U, 0x10202080U,
9637c478bd9Sstevel@tonic-gate 	0x10000088U, 0x10002088U, 0x10200088U, 0x10202088U,
9647c478bd9Sstevel@tonic-gate 	0x20000080U, 0x20002080U, 0x20200080U, 0x20202080U,
9657c478bd9Sstevel@tonic-gate 	0x20000088U, 0x20002088U, 0x20200088U, 0x20202088U,
9667c478bd9Sstevel@tonic-gate 	0x30000080U, 0x30002080U, 0x30200080U, 0x30202080U,
9677c478bd9Sstevel@tonic-gate 	0x30000088U, 0x30002088U, 0x30200088U, 0x30202088U,
9687c478bd9Sstevel@tonic-gate 	0x00040000U, 0x00042000U, 0x00240000U, 0x00242000U,
9697c478bd9Sstevel@tonic-gate 	0x00040008U, 0x00042008U, 0x00240008U, 0x00242008U,
9707c478bd9Sstevel@tonic-gate 	0x10040000U, 0x10042000U, 0x10240000U, 0x10242000U,
9717c478bd9Sstevel@tonic-gate 	0x10040008U, 0x10042008U, 0x10240008U, 0x10242008U,
9727c478bd9Sstevel@tonic-gate 	0x20040000U, 0x20042000U, 0x20240000U, 0x20242000U,
9737c478bd9Sstevel@tonic-gate 	0x20040008U, 0x20042008U, 0x20240008U, 0x20242008U,
9747c478bd9Sstevel@tonic-gate 	0x30040000U, 0x30042000U, 0x30240000U, 0x30242000U,
9757c478bd9Sstevel@tonic-gate 	0x30040008U, 0x30042008U, 0x30240008U, 0x30242008U,
9767c478bd9Sstevel@tonic-gate 	0x00040080U, 0x00042080U, 0x00240080U, 0x00242080U,
9777c478bd9Sstevel@tonic-gate 	0x00040088U, 0x00042088U, 0x00240088U, 0x00242088U,
9787c478bd9Sstevel@tonic-gate 	0x10040080U, 0x10042080U, 0x10240080U, 0x10242080U,
9797c478bd9Sstevel@tonic-gate 	0x10040088U, 0x10042088U, 0x10240088U, 0x10242088U,
9807c478bd9Sstevel@tonic-gate 	0x20040080U, 0x20042080U, 0x20240080U, 0x20242080U,
9817c478bd9Sstevel@tonic-gate 	0x20040088U, 0x20042088U, 0x20240088U, 0x20242088U,
9827c478bd9Sstevel@tonic-gate 	0x30040080U, 0x30042080U, 0x30240080U, 0x30242080U,
9837c478bd9Sstevel@tonic-gate 	0x30040088U, 0x30042088U, 0x30240088U, 0x30242088U,
9847c478bd9Sstevel@tonic-gate 	0x01000000U, 0x01002000U, 0x01200000U, 0x01202000U,
9857c478bd9Sstevel@tonic-gate 	0x01000008U, 0x01002008U, 0x01200008U, 0x01202008U,
9867c478bd9Sstevel@tonic-gate 	0x11000000U, 0x11002000U, 0x11200000U, 0x11202000U,
9877c478bd9Sstevel@tonic-gate 	0x11000008U, 0x11002008U, 0x11200008U, 0x11202008U,
9887c478bd9Sstevel@tonic-gate 	0x21000000U, 0x21002000U, 0x21200000U, 0x21202000U,
9897c478bd9Sstevel@tonic-gate 	0x21000008U, 0x21002008U, 0x21200008U, 0x21202008U,
9907c478bd9Sstevel@tonic-gate 	0x31000000U, 0x31002000U, 0x31200000U, 0x31202000U,
9917c478bd9Sstevel@tonic-gate 	0x31000008U, 0x31002008U, 0x31200008U, 0x31202008U,
9927c478bd9Sstevel@tonic-gate 	0x01000080U, 0x01002080U, 0x01200080U, 0x01202080U,
9937c478bd9Sstevel@tonic-gate 	0x01000088U, 0x01002088U, 0x01200088U, 0x01202088U,
9947c478bd9Sstevel@tonic-gate 	0x11000080U, 0x11002080U, 0x11200080U, 0x11202080U,
9957c478bd9Sstevel@tonic-gate 	0x11000088U, 0x11002088U, 0x11200088U, 0x11202088U,
9967c478bd9Sstevel@tonic-gate 	0x21000080U, 0x21002080U, 0x21200080U, 0x21202080U,
9977c478bd9Sstevel@tonic-gate 	0x21000088U, 0x21002088U, 0x21200088U, 0x21202088U,
9987c478bd9Sstevel@tonic-gate 	0x31000080U, 0x31002080U, 0x31200080U, 0x31202080U,
9997c478bd9Sstevel@tonic-gate 	0x31000088U, 0x31002088U, 0x31200088U, 0x31202088U,
10007c478bd9Sstevel@tonic-gate 	0x01040000U, 0x01042000U, 0x01240000U, 0x01242000U,
10017c478bd9Sstevel@tonic-gate 	0x01040008U, 0x01042008U, 0x01240008U, 0x01242008U,
10027c478bd9Sstevel@tonic-gate 	0x11040000U, 0x11042000U, 0x11240000U, 0x11242000U,
10037c478bd9Sstevel@tonic-gate 	0x11040008U, 0x11042008U, 0x11240008U, 0x11242008U,
10047c478bd9Sstevel@tonic-gate 	0x21040000U, 0x21042000U, 0x21240000U, 0x21242000U,
10057c478bd9Sstevel@tonic-gate 	0x21040008U, 0x21042008U, 0x21240008U, 0x21242008U,
10067c478bd9Sstevel@tonic-gate 	0x31040000U, 0x31042000U, 0x31240000U, 0x31242000U,
10077c478bd9Sstevel@tonic-gate 	0x31040008U, 0x31042008U, 0x31240008U, 0x31242008U,
10087c478bd9Sstevel@tonic-gate 	0x01040080U, 0x01042080U, 0x01240080U, 0x01242080U,
10097c478bd9Sstevel@tonic-gate 	0x01040088U, 0x01042088U, 0x01240088U, 0x01242088U,
10107c478bd9Sstevel@tonic-gate 	0x11040080U, 0x11042080U, 0x11240080U, 0x11242080U,
10117c478bd9Sstevel@tonic-gate 	0x11040088U, 0x11042088U, 0x11240088U, 0x11242088U,
10127c478bd9Sstevel@tonic-gate 	0x21040080U, 0x21042080U, 0x21240080U, 0x21242080U,
10137c478bd9Sstevel@tonic-gate 	0x21040088U, 0x21042088U, 0x21240088U, 0x21242088U,
10147c478bd9Sstevel@tonic-gate 	0x31040080U, 0x31042080U, 0x31240080U, 0x31242080U,
10157c478bd9Sstevel@tonic-gate 	0x31040088U, 0x31042088U, 0x31240088U, 0x31242088U,
10167c478bd9Sstevel@tonic-gate 	0x00000000U, 0x00000800U, 0x00020000U, 0x00020800U,
10177c478bd9Sstevel@tonic-gate 	0x00000020U, 0x00000820U, 0x00020020U, 0x00020820U,
10187c478bd9Sstevel@tonic-gate 	0x08000000U, 0x08000800U, 0x08020000U, 0x08020800U,
10197c478bd9Sstevel@tonic-gate 	0x08000020U, 0x08000820U, 0x08020020U, 0x08020820U,
10207c478bd9Sstevel@tonic-gate 	0x02000000U, 0x02000800U, 0x02020000U, 0x02020800U,
10217c478bd9Sstevel@tonic-gate 	0x02000020U, 0x02000820U, 0x02020020U, 0x02020820U,
10227c478bd9Sstevel@tonic-gate 	0x0a000000U, 0x0a000800U, 0x0a020000U, 0x0a020800U,
10237c478bd9Sstevel@tonic-gate 	0x0a000020U, 0x0a000820U, 0x0a020020U, 0x0a020820U,
10247c478bd9Sstevel@tonic-gate 	0x00000400U, 0x00000c00U, 0x00020400U, 0x00020c00U,
10257c478bd9Sstevel@tonic-gate 	0x00000420U, 0x00000c20U, 0x00020420U, 0x00020c20U,
10267c478bd9Sstevel@tonic-gate 	0x08000400U, 0x08000c00U, 0x08020400U, 0x08020c00U,
10277c478bd9Sstevel@tonic-gate 	0x08000420U, 0x08000c20U, 0x08020420U, 0x08020c20U,
10287c478bd9Sstevel@tonic-gate 	0x02000400U, 0x02000c00U, 0x02020400U, 0x02020c00U,
10297c478bd9Sstevel@tonic-gate 	0x02000420U, 0x02000c20U, 0x02020420U, 0x02020c20U,
10307c478bd9Sstevel@tonic-gate 	0x0a000400U, 0x0a000c00U, 0x0a020400U, 0x0a020c00U,
10317c478bd9Sstevel@tonic-gate 	0x0a000420U, 0x0a000c20U, 0x0a020420U, 0x0a020c20U,
10327c478bd9Sstevel@tonic-gate 	0x00100000U, 0x00100800U, 0x00120000U, 0x00120800U,
10337c478bd9Sstevel@tonic-gate 	0x00100020U, 0x00100820U, 0x00120020U, 0x00120820U,
10347c478bd9Sstevel@tonic-gate 	0x08100000U, 0x08100800U, 0x08120000U, 0x08120800U,
10357c478bd9Sstevel@tonic-gate 	0x08100020U, 0x08100820U, 0x08120020U, 0x08120820U,
10367c478bd9Sstevel@tonic-gate 	0x02100000U, 0x02100800U, 0x02120000U, 0x02120800U,
10377c478bd9Sstevel@tonic-gate 	0x02100020U, 0x02100820U, 0x02120020U, 0x02120820U,
10387c478bd9Sstevel@tonic-gate 	0x0a100000U, 0x0a100800U, 0x0a120000U, 0x0a120800U,
10397c478bd9Sstevel@tonic-gate 	0x0a100020U, 0x0a100820U, 0x0a120020U, 0x0a120820U,
10407c478bd9Sstevel@tonic-gate 	0x00100400U, 0x00100c00U, 0x00120400U, 0x00120c00U,
10417c478bd9Sstevel@tonic-gate 	0x00100420U, 0x00100c20U, 0x00120420U, 0x00120c20U,
10427c478bd9Sstevel@tonic-gate 	0x08100400U, 0x08100c00U, 0x08120400U, 0x08120c00U,
10437c478bd9Sstevel@tonic-gate 	0x08100420U, 0x08100c20U, 0x08120420U, 0x08120c20U,
10447c478bd9Sstevel@tonic-gate 	0x02100400U, 0x02100c00U, 0x02120400U, 0x02120c00U,
10457c478bd9Sstevel@tonic-gate 	0x02100420U, 0x02100c20U, 0x02120420U, 0x02120c20U,
10467c478bd9Sstevel@tonic-gate 	0x0a100400U, 0x0a100c00U, 0x0a120400U, 0x0a120c00U,
10477c478bd9Sstevel@tonic-gate 	0x0a100420U, 0x0a100c20U, 0x0a120420U, 0x0a120c20U,
10487c478bd9Sstevel@tonic-gate 	0x00000001U, 0x00000801U, 0x00020001U, 0x00020801U,
10497c478bd9Sstevel@tonic-gate 	0x00000021U, 0x00000821U, 0x00020021U, 0x00020821U,
10507c478bd9Sstevel@tonic-gate 	0x08000001U, 0x08000801U, 0x08020001U, 0x08020801U,
10517c478bd9Sstevel@tonic-gate 	0x08000021U, 0x08000821U, 0x08020021U, 0x08020821U,
10527c478bd9Sstevel@tonic-gate 	0x02000001U, 0x02000801U, 0x02020001U, 0x02020801U,
10537c478bd9Sstevel@tonic-gate 	0x02000021U, 0x02000821U, 0x02020021U, 0x02020821U,
10547c478bd9Sstevel@tonic-gate 	0x0a000001U, 0x0a000801U, 0x0a020001U, 0x0a020801U,
10557c478bd9Sstevel@tonic-gate 	0x0a000021U, 0x0a000821U, 0x0a020021U, 0x0a020821U,
10567c478bd9Sstevel@tonic-gate 	0x00000401U, 0x00000c01U, 0x00020401U, 0x00020c01U,
10577c478bd9Sstevel@tonic-gate 	0x00000421U, 0x00000c21U, 0x00020421U, 0x00020c21U,
10587c478bd9Sstevel@tonic-gate 	0x08000401U, 0x08000c01U, 0x08020401U, 0x08020c01U,
10597c478bd9Sstevel@tonic-gate 	0x08000421U, 0x08000c21U, 0x08020421U, 0x08020c21U,
10607c478bd9Sstevel@tonic-gate 	0x02000401U, 0x02000c01U, 0x02020401U, 0x02020c01U,
10617c478bd9Sstevel@tonic-gate 	0x02000421U, 0x02000c21U, 0x02020421U, 0x02020c21U,
10627c478bd9Sstevel@tonic-gate 	0x0a000401U, 0x0a000c01U, 0x0a020401U, 0x0a020c01U,
10637c478bd9Sstevel@tonic-gate 	0x0a000421U, 0x0a000c21U, 0x0a020421U, 0x0a020c21U,
10647c478bd9Sstevel@tonic-gate 	0x00100001U, 0x00100801U, 0x00120001U, 0x00120801U,
10657c478bd9Sstevel@tonic-gate 	0x00100021U, 0x00100821U, 0x00120021U, 0x00120821U,
10667c478bd9Sstevel@tonic-gate 	0x08100001U, 0x08100801U, 0x08120001U, 0x08120801U,
10677c478bd9Sstevel@tonic-gate 	0x08100021U, 0x08100821U, 0x08120021U, 0x08120821U,
10687c478bd9Sstevel@tonic-gate 	0x02100001U, 0x02100801U, 0x02120001U, 0x02120801U,
10697c478bd9Sstevel@tonic-gate 	0x02100021U, 0x02100821U, 0x02120021U, 0x02120821U,
10707c478bd9Sstevel@tonic-gate 	0x0a100001U, 0x0a100801U, 0x0a120001U, 0x0a120801U,
10717c478bd9Sstevel@tonic-gate 	0x0a100021U, 0x0a100821U, 0x0a120021U, 0x0a120821U,
10727c478bd9Sstevel@tonic-gate 	0x00100401U, 0x00100c01U, 0x00120401U, 0x00120c01U,
10737c478bd9Sstevel@tonic-gate 	0x00100421U, 0x00100c21U, 0x00120421U, 0x00120c21U,
10747c478bd9Sstevel@tonic-gate 	0x08100401U, 0x08100c01U, 0x08120401U, 0x08120c01U,
10757c478bd9Sstevel@tonic-gate 	0x08100421U, 0x08100c21U, 0x08120421U, 0x08120c21U,
10767c478bd9Sstevel@tonic-gate 	0x02100401U, 0x02100c01U, 0x02120401U, 0x02120c01U,
10777c478bd9Sstevel@tonic-gate 	0x02100421U, 0x02100c21U, 0x02120421U, 0x02120c21U,
10787c478bd9Sstevel@tonic-gate 	0x0a100401U, 0x0a100c01U, 0x0a120401U, 0x0a120c01U,
10797c478bd9Sstevel@tonic-gate 	0x0a100421U, 0x0a100c21U, 0x0a120421U, 0x0a120c21U,
10807c478bd9Sstevel@tonic-gate };
10817c478bd9Sstevel@tonic-gate 
10827c478bd9Sstevel@tonic-gate #ifdef	__cplusplus
10837c478bd9Sstevel@tonic-gate }
10847c478bd9Sstevel@tonic-gate #endif
10857c478bd9Sstevel@tonic-gate 
10867c478bd9Sstevel@tonic-gate #endif /* _SYS_DESDATA_H */
1087