github.com/BlockABC/godash@v0.0.0-20191112120524-f4aa3a32c566/chaincfg/genesis_test.go (about)

     1  // Copyright (c) 2014 The btcsuite developers
     2  // Copyright (c) 2016 The Dash developers
     3  // Use of this source code is governed by an ISC
     4  // license that can be found in the LICENSE file.
     5  
     6  package chaincfg
     7  
     8  import (
     9  	"bytes"
    10  	"testing"
    11  
    12  	"github.com/davecgh/go-spew/spew"
    13  )
    14  
    15  // TestGenesisBlock tests the genesis block of the main network for validity by
    16  // checking the encoded bytes and hashes.
    17  func TestGenesisBlock(t *testing.T) {
    18  	// Encode the genesis block to raw bytes.
    19  	var buf bytes.Buffer
    20  	err := MainNetParams.GenesisBlock.Serialize(&buf)
    21  	if err != nil {
    22  		t.Fatalf("TestGenesisBlock: %v", err)
    23  	}
    24  
    25  	// Ensure the encoded block matches the expected bytes.
    26  	if !bytes.Equal(buf.Bytes(), genesisBlockBytes) {
    27  		t.Fatalf("TestGenesisBlock: Genesis block does not appear valid - "+
    28  			"got %v, want %v", spew.Sdump(buf.Bytes()),
    29  			spew.Sdump(genesisBlockBytes))
    30  	}
    31  
    32  	// Check hash of the block against expected hash.
    33  	hash := MainNetParams.GenesisBlock.BlockSha()
    34  	if !MainNetParams.GenesisHash.IsEqual(&hash) {
    35  		t.Fatalf("TestGenesisBlock: Genesis block hash does not "+
    36  			"appear valid - got %v, want %v", spew.Sdump(hash),
    37  			spew.Sdump(MainNetParams.GenesisHash))
    38  	}
    39  }
    40  
    41  // TestRegTestGenesisBlock tests the genesis block of the regression test
    42  // network for validity by checking the encoded bytes and hashes.
    43  func TestRegTestGenesisBlock(t *testing.T) {
    44  	// Encode the genesis block to raw bytes.
    45  	var buf bytes.Buffer
    46  	err := RegressionNetParams.GenesisBlock.Serialize(&buf)
    47  	if err != nil {
    48  		t.Fatalf("TestRegTestGenesisBlock: %v", err)
    49  	}
    50  
    51  	// Ensure the encoded block matches the expected bytes.
    52  	if !bytes.Equal(buf.Bytes(), regTestGenesisBlockBytes) {
    53  		t.Fatalf("TestRegTestGenesisBlock: Genesis block does not "+
    54  			"appear valid - got %v, want %v",
    55  			spew.Sdump(buf.Bytes()),
    56  			spew.Sdump(regTestGenesisBlockBytes))
    57  	}
    58  
    59  	// Check hash of the block against expected hash.
    60  	hash := RegressionNetParams.GenesisBlock.BlockSha()
    61  	if !RegressionNetParams.GenesisHash.IsEqual(&hash) {
    62  		t.Fatalf("TestRegTestGenesisBlock: Genesis block hash does "+
    63  			"not appear valid - got %v, want %v", spew.Sdump(hash),
    64  			spew.Sdump(RegressionNetParams.GenesisHash))
    65  	}
    66  }
    67  
    68  // TestTestNet3GenesisBlock tests the genesis block of the test network (version
    69  // 3) for validity by checking the encoded bytes and hashes.
    70  func TestTestNet3GenesisBlock(t *testing.T) {
    71  	// Encode the genesis block to raw bytes.
    72  	var buf bytes.Buffer
    73  	err := TestNet3Params.GenesisBlock.Serialize(&buf)
    74  	if err != nil {
    75  		t.Fatalf("TestTestNet3GenesisBlock: %v", err)
    76  	}
    77  
    78  	// Ensure the encoded block matches the expected bytes.
    79  	if !bytes.Equal(buf.Bytes(), testNet3GenesisBlockBytes) {
    80  		t.Fatalf("TestTestNet3GenesisBlock: Genesis block does not "+
    81  			"appear valid - got %v, want %v",
    82  			spew.Sdump(buf.Bytes()),
    83  			spew.Sdump(testNet3GenesisBlockBytes))
    84  	}
    85  
    86  	// Check hash of the block against expected hash.
    87  	hash := TestNet3Params.GenesisBlock.BlockSha()
    88  	if !TestNet3Params.GenesisHash.IsEqual(&hash) {
    89  		t.Fatalf("TestTestNet3GenesisBlock: Genesis block hash does "+
    90  			"not appear valid - got %v, want %v", spew.Sdump(hash),
    91  			spew.Sdump(TestNet3Params.GenesisHash))
    92  	}
    93  }
    94  
    95  // TestSimNetGenesisBlock tests the genesis block of the simulation test network
    96  // for validity by checking the encoded bytes and hashes.
    97  func TestSimNetGenesisBlock(t *testing.T) {
    98  	// Encode the genesis block to raw bytes.
    99  	var buf bytes.Buffer
   100  	err := SimNetParams.GenesisBlock.Serialize(&buf)
   101  	if err != nil {
   102  		t.Fatalf("TestSimNetGenesisBlock: %v", err)
   103  	}
   104  
   105  	// Ensure the encoded block matches the expected bytes.
   106  	if !bytes.Equal(buf.Bytes(), simNetGenesisBlockBytes) {
   107  		t.Fatalf("TestSimNetGenesisBlock: Genesis block does not "+
   108  			"appear valid - got %v, want %v",
   109  			spew.Sdump(buf.Bytes()),
   110  			spew.Sdump(simNetGenesisBlockBytes))
   111  	}
   112  
   113  	// Check hash of the block against expected hash.
   114  	hash := SimNetParams.GenesisBlock.BlockSha()
   115  	if !SimNetParams.GenesisHash.IsEqual(&hash) {
   116  		t.Fatalf("TestSimNetGenesisBlock: Genesis block hash does "+
   117  			"not appear valid - got %v, want %v", spew.Sdump(hash),
   118  			spew.Sdump(SimNetParams.GenesisHash))
   119  	}
   120  }
   121  
   122  // genesisBlockBytes are the wire encoded bytes for the genesis block of the
   123  // main network as of protocol version 60002.
   124  var genesisBlockBytes = []byte{
   125  	0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* |........| */
   126  	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* |........| */
   127  	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* |........| */
   128  	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* |........| */
   129  	0x00, 0x00, 0x00, 0x00, 0x3b, 0xa3, 0xed, 0xfd, /* |....;...| */
   130  	0x7a, 0x7b, 0x12, 0xb2, 0x7a, 0xc7, 0x2c, 0x3e, /* |z{..z.,>| */
   131  	0x67, 0x76, 0x8f, 0x61, 0x7f, 0xc8, 0x1b, 0xc3, /* |gv.a....| */
   132  	0x88, 0x8a, 0x51, 0x32, 0x3a, 0x9f, 0xb8, 0xaa, /* |..Q2:...| */
   133  	0x4b, 0x1e, 0x5e, 0x4a, 0x29, 0xab, 0x5f, 0x49, /* |K.^J)._I| */
   134  	0xff, 0xff, 0x00, 0x1d, 0x1d, 0xac, 0x2b, 0x7c, /* |......+|| */
   135  	0x01, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, /* |........| */
   136  	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* |........| */
   137  	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* |........| */
   138  	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* |........| */
   139  	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, /* |........| */
   140  	0xff, 0xff, 0x4d, 0x04, 0xff, 0xff, 0x00, 0x1d, /* |..M.....| */
   141  	0x01, 0x04, 0x45, 0x54, 0x68, 0x65, 0x20, 0x54, /* |..EThe T| */
   142  	0x69, 0x6d, 0x65, 0x73, 0x20, 0x30, 0x33, 0x2f, /* |imes 03/| */
   143  	0x4a, 0x61, 0x6e, 0x2f, 0x32, 0x30, 0x30, 0x39, /* |Jan/2009| */
   144  	0x20, 0x43, 0x68, 0x61, 0x6e, 0x63, 0x65, 0x6c, /* | Chancel| */
   145  	0x6c, 0x6f, 0x72, 0x20, 0x6f, 0x6e, 0x20, 0x62, /* |lor on b| */
   146  	0x72, 0x69, 0x6e, 0x6b, 0x20, 0x6f, 0x66, 0x20, /* |rink of | */
   147  	0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x20, 0x62, /* |second b| */
   148  	0x61, 0x69, 0x6c, 0x6f, 0x75, 0x74, 0x20, 0x66, /* |ailout f| */
   149  	0x6f, 0x72, 0x20, 0x62, 0x61, 0x6e, 0x6b, 0x73, /* |or banks| */
   150  	0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xf2, 0x05, /* |........| */
   151  	0x2a, 0x01, 0x00, 0x00, 0x00, 0x43, 0x41, 0x04, /* |*....CA.| */
   152  	0x67, 0x8a, 0xfd, 0xb0, 0xfe, 0x55, 0x48, 0x27, /* |g....UH'| */
   153  	0x19, 0x67, 0xf1, 0xa6, 0x71, 0x30, 0xb7, 0x10, /* |.g..q0..| */
   154  	0x5c, 0xd6, 0xa8, 0x28, 0xe0, 0x39, 0x09, 0xa6, /* |\..(.9..| */
   155  	0x79, 0x62, 0xe0, 0xea, 0x1f, 0x61, 0xde, 0xb6, /* |yb...a..| */
   156  	0x49, 0xf6, 0xbc, 0x3f, 0x4c, 0xef, 0x38, 0xc4, /* |I..?L.8.| */
   157  	0xf3, 0x55, 0x04, 0xe5, 0x1e, 0xc1, 0x12, 0xde, /* |.U......| */
   158  	0x5c, 0x38, 0x4d, 0xf7, 0xba, 0x0b, 0x8d, 0x57, /* |\8M....W| */
   159  	0x8a, 0x4c, 0x70, 0x2b, 0x6b, 0xf1, 0x1d, 0x5f, /* |.Lp+k.._|*/
   160  	0xac, 0x00, 0x00, 0x00, 0x00, /* |.....|    */
   161  }
   162  
   163  // regTestGenesisBlockBytes are the wire encoded bytes for the genesis block of
   164  // the regression test network as of protocol version 60002.
   165  var regTestGenesisBlockBytes = []byte{
   166  	0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* |........| */
   167  	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* |........| */
   168  	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* |........| */
   169  	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* |........| */
   170  	0x00, 0x00, 0x00, 0x00, 0x3b, 0xa3, 0xed, 0xfd, /* |....;...| */
   171  	0x7a, 0x7b, 0x12, 0xb2, 0x7a, 0xc7, 0x2c, 0x3e, /* |z{..z.,>| */
   172  	0x67, 0x76, 0x8f, 0x61, 0x7f, 0xc8, 0x1b, 0xc3, /* |gv.a....| */
   173  	0x88, 0x8a, 0x51, 0x32, 0x3a, 0x9f, 0xb8, 0xaa, /* |..Q2:...| */
   174  	0x4b, 0x1e, 0x5e, 0x4a, 0xda, 0xe5, 0x49, 0x4d, /* |K.^J)._I| */
   175  	0xff, 0xff, 0x7f, 0x20, 0x02, 0x00, 0x00, 0x00, /* |......+|| */
   176  	0x01, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, /* |........| */
   177  	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* |........| */
   178  	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* |........| */
   179  	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* |........| */
   180  	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, /* |........| */
   181  	0xff, 0xff, 0x4d, 0x04, 0xff, 0xff, 0x00, 0x1d, /* |..M.....| */
   182  	0x01, 0x04, 0x45, 0x54, 0x68, 0x65, 0x20, 0x54, /* |..EThe T| */
   183  	0x69, 0x6d, 0x65, 0x73, 0x20, 0x30, 0x33, 0x2f, /* |imes 03/| */
   184  	0x4a, 0x61, 0x6e, 0x2f, 0x32, 0x30, 0x30, 0x39, /* |Jan/2009| */
   185  	0x20, 0x43, 0x68, 0x61, 0x6e, 0x63, 0x65, 0x6c, /* | Chancel| */
   186  	0x6c, 0x6f, 0x72, 0x20, 0x6f, 0x6e, 0x20, 0x62, /* |lor on b| */
   187  	0x72, 0x69, 0x6e, 0x6b, 0x20, 0x6f, 0x66, 0x20, /* |rink of | */
   188  	0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x20, 0x62, /* |second b| */
   189  	0x61, 0x69, 0x6c, 0x6f, 0x75, 0x74, 0x20, 0x66, /* |ailout f| */
   190  	0x6f, 0x72, 0x20, 0x62, 0x61, 0x6e, 0x6b, 0x73, /* |or banks| */
   191  	0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xf2, 0x05, /* |........| */
   192  	0x2a, 0x01, 0x00, 0x00, 0x00, 0x43, 0x41, 0x04, /* |*....CA.| */
   193  	0x67, 0x8a, 0xfd, 0xb0, 0xfe, 0x55, 0x48, 0x27, /* |g....UH'| */
   194  	0x19, 0x67, 0xf1, 0xa6, 0x71, 0x30, 0xb7, 0x10, /* |.g..q0..| */
   195  	0x5c, 0xd6, 0xa8, 0x28, 0xe0, 0x39, 0x09, 0xa6, /* |\..(.9..| */
   196  	0x79, 0x62, 0xe0, 0xea, 0x1f, 0x61, 0xde, 0xb6, /* |yb...a..| */
   197  	0x49, 0xf6, 0xbc, 0x3f, 0x4c, 0xef, 0x38, 0xc4, /* |I..?L.8.| */
   198  	0xf3, 0x55, 0x04, 0xe5, 0x1e, 0xc1, 0x12, 0xde, /* |.U......| */
   199  	0x5c, 0x38, 0x4d, 0xf7, 0xba, 0x0b, 0x8d, 0x57, /* |\8M....W| */
   200  	0x8a, 0x4c, 0x70, 0x2b, 0x6b, 0xf1, 0x1d, 0x5f, /* |.Lp+k.._|*/
   201  	0xac, 0x00, 0x00, 0x00, 0x00, /* |.....|    */
   202  }
   203  
   204  // testNet3GenesisBlockBytes are the wire encoded bytes for the genesis block of
   205  // the test network (version 3) as of protocol version 60002.
   206  var testNet3GenesisBlockBytes = []byte{
   207  	0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* |........| */
   208  	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* |........| */
   209  	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* |........| */
   210  	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* |........| */
   211  	0x00, 0x00, 0x00, 0x00, 0x3b, 0xa3, 0xed, 0xfd, /* |....;...| */
   212  	0x7a, 0x7b, 0x12, 0xb2, 0x7a, 0xc7, 0x2c, 0x3e, /* |z{..z.,>| */
   213  	0x67, 0x76, 0x8f, 0x61, 0x7f, 0xc8, 0x1b, 0xc3, /* |gv.a....| */
   214  	0x88, 0x8a, 0x51, 0x32, 0x3a, 0x9f, 0xb8, 0xaa, /* |..Q2:...| */
   215  	0x4b, 0x1e, 0x5e, 0x4a, 0xda, 0xe5, 0x49, 0x4d, /* |K.^J)._I| */
   216  	0xff, 0xff, 0x00, 0x1d, 0x1a, 0xa4, 0xae, 0x18, /* |......+|| */
   217  	0x01, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, /* |........| */
   218  	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* |........| */
   219  	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* |........| */
   220  	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* |........| */
   221  	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, /* |........| */
   222  	0xff, 0xff, 0x4d, 0x04, 0xff, 0xff, 0x00, 0x1d, /* |..M.....| */
   223  	0x01, 0x04, 0x45, 0x54, 0x68, 0x65, 0x20, 0x54, /* |..EThe T| */
   224  	0x69, 0x6d, 0x65, 0x73, 0x20, 0x30, 0x33, 0x2f, /* |imes 03/| */
   225  	0x4a, 0x61, 0x6e, 0x2f, 0x32, 0x30, 0x30, 0x39, /* |Jan/2009| */
   226  	0x20, 0x43, 0x68, 0x61, 0x6e, 0x63, 0x65, 0x6c, /* | Chancel| */
   227  	0x6c, 0x6f, 0x72, 0x20, 0x6f, 0x6e, 0x20, 0x62, /* |lor on b| */
   228  	0x72, 0x69, 0x6e, 0x6b, 0x20, 0x6f, 0x66, 0x20, /* |rink of | */
   229  	0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x20, 0x62, /* |second b| */
   230  	0x61, 0x69, 0x6c, 0x6f, 0x75, 0x74, 0x20, 0x66, /* |ailout f| */
   231  	0x6f, 0x72, 0x20, 0x62, 0x61, 0x6e, 0x6b, 0x73, /* |or banks| */
   232  	0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xf2, 0x05, /* |........| */
   233  	0x2a, 0x01, 0x00, 0x00, 0x00, 0x43, 0x41, 0x04, /* |*....CA.| */
   234  	0x67, 0x8a, 0xfd, 0xb0, 0xfe, 0x55, 0x48, 0x27, /* |g....UH'| */
   235  	0x19, 0x67, 0xf1, 0xa6, 0x71, 0x30, 0xb7, 0x10, /* |.g..q0..| */
   236  	0x5c, 0xd6, 0xa8, 0x28, 0xe0, 0x39, 0x09, 0xa6, /* |\..(.9..| */
   237  	0x79, 0x62, 0xe0, 0xea, 0x1f, 0x61, 0xde, 0xb6, /* |yb...a..| */
   238  	0x49, 0xf6, 0xbc, 0x3f, 0x4c, 0xef, 0x38, 0xc4, /* |I..?L.8.| */
   239  	0xf3, 0x55, 0x04, 0xe5, 0x1e, 0xc1, 0x12, 0xde, /* |.U......| */
   240  	0x5c, 0x38, 0x4d, 0xf7, 0xba, 0x0b, 0x8d, 0x57, /* |\8M....W| */
   241  	0x8a, 0x4c, 0x70, 0x2b, 0x6b, 0xf1, 0x1d, 0x5f, /* |.Lp+k.._|*/
   242  	0xac, 0x00, 0x00, 0x00, 0x00, /* |.....|    */
   243  }
   244  
   245  // simNetGenesisBlockBytes are the wire encoded bytes for the genesis block of
   246  // the simulation test network as of protocol version 70002.
   247  var simNetGenesisBlockBytes = []byte{
   248  	0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* |........| */
   249  	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* |........| */
   250  	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* |........| */
   251  	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* |........| */
   252  	0x00, 0x00, 0x00, 0x00, 0x3b, 0xa3, 0xed, 0xfd, /* |....;...| */
   253  	0x7a, 0x7b, 0x12, 0xb2, 0x7a, 0xc7, 0x2c, 0x3e, /* |z{..z.,>| */
   254  	0x67, 0x76, 0x8f, 0x61, 0x7f, 0xc8, 0x1b, 0xc3, /* |gv.a....| */
   255  	0x88, 0x8a, 0x51, 0x32, 0x3a, 0x9f, 0xb8, 0xaa, /* |..Q2:...| */
   256  	0x4b, 0x1e, 0x5e, 0x4a, 0x45, 0x06, 0x86, 0x53, /* |K.^J)._I| */
   257  	0xff, 0xff, 0x7f, 0x20, 0x02, 0x00, 0x00, 0x00, /* |......+|| */
   258  	0x01, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, /* |........| */
   259  	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* |........| */
   260  	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* |........| */
   261  	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* |........| */
   262  	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, /* |........| */
   263  	0xff, 0xff, 0x4d, 0x04, 0xff, 0xff, 0x00, 0x1d, /* |..M.....| */
   264  	0x01, 0x04, 0x45, 0x54, 0x68, 0x65, 0x20, 0x54, /* |..EThe T| */
   265  	0x69, 0x6d, 0x65, 0x73, 0x20, 0x30, 0x33, 0x2f, /* |imes 03/| */
   266  	0x4a, 0x61, 0x6e, 0x2f, 0x32, 0x30, 0x30, 0x39, /* |Jan/2009| */
   267  	0x20, 0x43, 0x68, 0x61, 0x6e, 0x63, 0x65, 0x6c, /* | Chancel| */
   268  	0x6c, 0x6f, 0x72, 0x20, 0x6f, 0x6e, 0x20, 0x62, /* |lor on b| */
   269  	0x72, 0x69, 0x6e, 0x6b, 0x20, 0x6f, 0x66, 0x20, /* |rink of | */
   270  	0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x20, 0x62, /* |second b| */
   271  	0x61, 0x69, 0x6c, 0x6f, 0x75, 0x74, 0x20, 0x66, /* |ailout f| */
   272  	0x6f, 0x72, 0x20, 0x62, 0x61, 0x6e, 0x6b, 0x73, /* |or banks| */
   273  	0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xf2, 0x05, /* |........| */
   274  	0x2a, 0x01, 0x00, 0x00, 0x00, 0x43, 0x41, 0x04, /* |*....CA.| */
   275  	0x67, 0x8a, 0xfd, 0xb0, 0xfe, 0x55, 0x48, 0x27, /* |g....UH'| */
   276  	0x19, 0x67, 0xf1, 0xa6, 0x71, 0x30, 0xb7, 0x10, /* |.g..q0..| */
   277  	0x5c, 0xd6, 0xa8, 0x28, 0xe0, 0x39, 0x09, 0xa6, /* |\..(.9..| */
   278  	0x79, 0x62, 0xe0, 0xea, 0x1f, 0x61, 0xde, 0xb6, /* |yb...a..| */
   279  	0x49, 0xf6, 0xbc, 0x3f, 0x4c, 0xef, 0x38, 0xc4, /* |I..?L.8.| */
   280  	0xf3, 0x55, 0x04, 0xe5, 0x1e, 0xc1, 0x12, 0xde, /* |.U......| */
   281  	0x5c, 0x38, 0x4d, 0xf7, 0xba, 0x0b, 0x8d, 0x57, /* |\8M....W| */
   282  	0x8a, 0x4c, 0x70, 0x2b, 0x6b, 0xf1, 0x1d, 0x5f, /* |.Lp+k.._|*/
   283  	0xac, 0x00, 0x00, 0x00, 0x00, /* |.....|    */
   284  }