diff --git a/docs/generated/sql/bnf/alter_sequence_options_stmt.bnf b/docs/generated/sql/bnf/alter_sequence_options_stmt.bnf index b396c7e22f8d..0473b2b834c5 100644 --- a/docs/generated/sql/bnf/alter_sequence_options_stmt.bnf +++ b/docs/generated/sql/bnf/alter_sequence_options_stmt.bnf @@ -1,3 +1,3 @@ alter_sequence_options_stmt ::= - 'ALTER' 'SEQUENCE' sequence_name ( ( ( 'NO' 'CYCLE' | 'OWNED' 'BY' 'NONE' | 'OWNED' 'BY' column_name | 'INCREMENT' integer | 'INCREMENT' 'BY' integer | 'MINVALUE' integer | 'NO' 'MINVALUE' | 'MAXVALUE' integer | 'NO' 'MAXVALUE' | 'START' integer | 'START' 'WITH' integer | 'VIRTUAL' ) ) ( ( ( 'NO' 'CYCLE' | 'OWNED' 'BY' 'NONE' | 'OWNED' 'BY' column_name | 'INCREMENT' integer | 'INCREMENT' 'BY' integer | 'MINVALUE' integer | 'NO' 'MINVALUE' | 'MAXVALUE' integer | 'NO' 'MAXVALUE' | 'START' integer | 'START' 'WITH' integer | 'VIRTUAL' ) ) )* ) - | 'ALTER' 'SEQUENCE' 'IF' 'EXISTS' sequence_name ( ( ( 'NO' 'CYCLE' | 'OWNED' 'BY' 'NONE' | 'OWNED' 'BY' column_name | 'INCREMENT' integer | 'INCREMENT' 'BY' integer | 'MINVALUE' integer | 'NO' 'MINVALUE' | 'MAXVALUE' integer | 'NO' 'MAXVALUE' | 'START' integer | 'START' 'WITH' integer | 'VIRTUAL' ) ) ( ( ( 'NO' 'CYCLE' | 'OWNED' 'BY' 'NONE' | 'OWNED' 'BY' column_name | 'INCREMENT' integer | 'INCREMENT' 'BY' integer | 'MINVALUE' integer | 'NO' 'MINVALUE' | 'MAXVALUE' integer | 'NO' 'MAXVALUE' | 'START' integer | 'START' 'WITH' integer | 'VIRTUAL' ) ) )* ) + 'ALTER' 'SEQUENCE' sequence_name ( ( ( 'AS' seq_opt_as_int | 'NO' 'CYCLE' | 'OWNED' 'BY' 'NONE' | 'OWNED' 'BY' column_name | 'INCREMENT' integer | 'INCREMENT' 'BY' integer | 'MINVALUE' integer | 'NO' 'MINVALUE' | 'MAXVALUE' integer | 'NO' 'MAXVALUE' | 'START' integer | 'START' 'WITH' integer | 'VIRTUAL' ) ) ( ( ( 'AS' seq_opt_as_int | 'NO' 'CYCLE' | 'OWNED' 'BY' 'NONE' | 'OWNED' 'BY' column_name | 'INCREMENT' integer | 'INCREMENT' 'BY' integer | 'MINVALUE' integer | 'NO' 'MINVALUE' | 'MAXVALUE' integer | 'NO' 'MAXVALUE' | 'START' integer | 'START' 'WITH' integer | 'VIRTUAL' ) ) )* ) + | 'ALTER' 'SEQUENCE' 'IF' 'EXISTS' sequence_name ( ( ( 'AS' seq_opt_as_int | 'NO' 'CYCLE' | 'OWNED' 'BY' 'NONE' | 'OWNED' 'BY' column_name | 'INCREMENT' integer | 'INCREMENT' 'BY' integer | 'MINVALUE' integer | 'NO' 'MINVALUE' | 'MAXVALUE' integer | 'NO' 'MAXVALUE' | 'START' integer | 'START' 'WITH' integer | 'VIRTUAL' ) ) ( ( ( 'AS' seq_opt_as_int | 'NO' 'CYCLE' | 'OWNED' 'BY' 'NONE' | 'OWNED' 'BY' column_name | 'INCREMENT' integer | 'INCREMENT' 'BY' integer | 'MINVALUE' integer | 'NO' 'MINVALUE' | 'MAXVALUE' integer | 'NO' 'MAXVALUE' | 'START' integer | 'START' 'WITH' integer | 'VIRTUAL' ) ) )* ) diff --git a/docs/generated/sql/bnf/create_sequence_stmt.bnf b/docs/generated/sql/bnf/create_sequence_stmt.bnf index 9d2b1cfcd281..c217affd8834 100644 --- a/docs/generated/sql/bnf/create_sequence_stmt.bnf +++ b/docs/generated/sql/bnf/create_sequence_stmt.bnf @@ -1,3 +1,3 @@ create_sequence_stmt ::= - 'CREATE' opt_temp 'SEQUENCE' sequence_name ( ( ( ( 'NO' 'CYCLE' | 'OWNED' 'BY' 'NONE' | 'OWNED' 'BY' column_name | 'INCREMENT' integer | 'INCREMENT' 'BY' integer | 'MINVALUE' integer | 'NO' 'MINVALUE' | 'MAXVALUE' integer | 'NO' 'MAXVALUE' | 'START' integer | 'START' 'WITH' integer | 'VIRTUAL' ) ) ( ( ( 'NO' 'CYCLE' | 'OWNED' 'BY' 'NONE' | 'OWNED' 'BY' column_name | 'INCREMENT' integer | 'INCREMENT' 'BY' integer | 'MINVALUE' integer | 'NO' 'MINVALUE' | 'MAXVALUE' integer | 'NO' 'MAXVALUE' | 'START' integer | 'START' 'WITH' integer | 'VIRTUAL' ) ) )* ) | ) - | 'CREATE' opt_temp 'SEQUENCE' 'IF' 'NOT' 'EXISTS' sequence_name ( ( ( ( 'NO' 'CYCLE' | 'OWNED' 'BY' 'NONE' | 'OWNED' 'BY' column_name | 'INCREMENT' integer | 'INCREMENT' 'BY' integer | 'MINVALUE' integer | 'NO' 'MINVALUE' | 'MAXVALUE' integer | 'NO' 'MAXVALUE' | 'START' integer | 'START' 'WITH' integer | 'VIRTUAL' ) ) ( ( ( 'NO' 'CYCLE' | 'OWNED' 'BY' 'NONE' | 'OWNED' 'BY' column_name | 'INCREMENT' integer | 'INCREMENT' 'BY' integer | 'MINVALUE' integer | 'NO' 'MINVALUE' | 'MAXVALUE' integer | 'NO' 'MAXVALUE' | 'START' integer | 'START' 'WITH' integer | 'VIRTUAL' ) ) )* ) | ) + 'CREATE' opt_temp 'SEQUENCE' sequence_name ( ( ( ( 'AS' seq_opt_as_int | 'NO' 'CYCLE' | 'OWNED' 'BY' 'NONE' | 'OWNED' 'BY' column_name | 'INCREMENT' integer | 'INCREMENT' 'BY' integer | 'MINVALUE' integer | 'NO' 'MINVALUE' | 'MAXVALUE' integer | 'NO' 'MAXVALUE' | 'START' integer | 'START' 'WITH' integer | 'VIRTUAL' ) ) ( ( ( 'AS' seq_opt_as_int | 'NO' 'CYCLE' | 'OWNED' 'BY' 'NONE' | 'OWNED' 'BY' column_name | 'INCREMENT' integer | 'INCREMENT' 'BY' integer | 'MINVALUE' integer | 'NO' 'MINVALUE' | 'MAXVALUE' integer | 'NO' 'MAXVALUE' | 'START' integer | 'START' 'WITH' integer | 'VIRTUAL' ) ) )* ) | ) + | 'CREATE' opt_temp 'SEQUENCE' 'IF' 'NOT' 'EXISTS' sequence_name ( ( ( ( 'AS' seq_opt_as_int | 'NO' 'CYCLE' | 'OWNED' 'BY' 'NONE' | 'OWNED' 'BY' column_name | 'INCREMENT' integer | 'INCREMENT' 'BY' integer | 'MINVALUE' integer | 'NO' 'MINVALUE' | 'MAXVALUE' integer | 'NO' 'MAXVALUE' | 'START' integer | 'START' 'WITH' integer | 'VIRTUAL' ) ) ( ( ( 'AS' seq_opt_as_int | 'NO' 'CYCLE' | 'OWNED' 'BY' 'NONE' | 'OWNED' 'BY' column_name | 'INCREMENT' integer | 'INCREMENT' 'BY' integer | 'MINVALUE' integer | 'NO' 'MINVALUE' | 'MAXVALUE' integer | 'NO' 'MAXVALUE' | 'START' integer | 'START' 'WITH' integer | 'VIRTUAL' ) ) )* ) | ) diff --git a/docs/generated/sql/bnf/stmt_block.bnf b/docs/generated/sql/bnf/stmt_block.bnf index 7e55db3dd47b..2b56c84e3f6d 100644 --- a/docs/generated/sql/bnf/stmt_block.bnf +++ b/docs/generated/sql/bnf/stmt_block.bnf @@ -2502,7 +2502,8 @@ alter_index_cmd ::= partition_by sequence_option_elem ::= - 'NO' 'CYCLE' + 'AS' seq_opt_as_int + | 'NO' 'CYCLE' | 'OWNED' 'BY' 'NONE' | 'OWNED' 'BY' column_path | 'INCREMENT' signed_iconst64 @@ -2773,6 +2774,12 @@ audit_mode ::= 'READ' 'WRITE' | 'OFF' +seq_opt_as_int ::= + 'INT' + | 'INTEGER' + | 'BIGINT' + | 'SMALLINT' + signed_iconst64 ::= signed_iconst diff --git a/pkg/ccl/importccl/read_import_pgdump_test.go b/pkg/ccl/importccl/read_import_pgdump_test.go index 6c357ff687c1..355fd5d60655 100644 --- a/pkg/ccl/importccl/read_import_pgdump_test.go +++ b/pkg/ccl/importccl/read_import_pgdump_test.go @@ -9,11 +9,18 @@ package importccl import ( + "context" "fmt" "io" + "net/http" + "net/http/httptest" "strings" "testing" + "github.com/cockroachdb/cockroach/pkg/base" + "github.com/cockroachdb/cockroach/pkg/testutils" + "github.com/cockroachdb/cockroach/pkg/testutils/sqlutils" + "github.com/cockroachdb/cockroach/pkg/testutils/testcluster" "github.com/cockroachdb/cockroach/pkg/util/leaktest" "github.com/cockroachdb/cockroach/pkg/util/log" ) @@ -149,3 +156,119 @@ COPY done; t.Fatalf("got %s, expected %s", got, expect) } } + +func TestImportCreateSequenceAs(t *testing.T) { + defer leaktest.AfterTest(t)() + defer log.Scope(t).Close(t) + ctx := context.Background() + baseDir, cleanup := testutils.TempDir(t) + defer cleanup() + tc := testcluster.StartTestCluster( + t, 1, base.TestClusterArgs{ServerArgs: base.TestServerArgs{ExternalIODir: baseDir}}) + defer tc.Stopper().Stop(ctx) + conn := tc.Conns[0] + sqlDB := sqlutils.MakeSQLRunner(conn) + + var data string + srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + if r.Method == "GET" { + _, _ = w.Write([]byte(data)) + } + })) + defer srv.Close() + + tests := []struct { + name string + data string + verifyQuery string + err string + expected [][]string + }{ + { + name: "as integer", + data: ` + CREATE SEQUENCE public.a_seq AS integer + START WITH 2 + INCREMENT BY 1 + MINVALUE 0 + MAXVALUE 234567 + CACHE 1;`, + verifyQuery: `SHOW CREATE SEQUENCE a_seq`, + expected: [][]string{{ + "a_seq", `CREATE SEQUENCE public.a_seq AS int MINVALUE 0 MAXVALUE 234567 INCREMENT 1 START 2`, + }}, + }, + { + name: "as integer desc", + data: ` + CREATE SEQUENCE public.a_seq AS integer + START WITH -20000 + INCREMENT BY -1 + MINVALUE -20000 + MAXVALUE 0 + CACHE 1;`, + verifyQuery: `SHOW CREATE SEQUENCE a_seq`, + expected: [][]string{{ + "a_seq", `CREATE SEQUENCE public.a_seq AS int MINVALUE -20000 MAXVALUE 0 INCREMENT -1 START -20000`, + }}, + }, + { + name: "as bigint", + data: ` + CREATE SEQUENCE public.a_seq AS bigint + START WITH 1 + INCREMENT BY 1 + CACHE 1;`, + verifyQuery: `SHOW CREATE SEQUENCE a_seq`, + expected: [][]string{{ + "a_seq", `CREATE SEQUENCE public.a_seq AS int MINVALUE 1 MAXVALUE 9223372036854775807 INCREMENT 1 START 1`, + }}, + }, + { + name: "as smallint", + data: ` + CREATE SEQUENCE public.a_seq AS smallint + START WITH 2 + INCREMENT BY 3 + CACHE 1;`, + verifyQuery: `SHOW CREATE SEQUENCE a_seq`, + expected: [][]string{{ + "a_seq", `CREATE SEQUENCE public.a_seq AS int2 MINVALUE 1 MAXVALUE 32767 INCREMENT 3 START 2`, + }}, + }, + { + name: `MAXINT overrides integer type default max`, + data: `CREATE SEQUENCE public.a_seq + AS integer + START WITH 1 + INCREMENT BY 1 + MAXVALUE 9001 + CACHE 1;`, + verifyQuery: `SHOW CREATE SEQUENCE a_seq`, + expected: [][]string{{ + "a_seq", `CREATE SEQUENCE public.a_seq AS int MINVALUE 1 MAXVALUE 9001 INCREMENT 1 START 1`, + }}, + }, + } + for _, test := range tests { + + t.Run(test.name, func(t *testing.T) { + // Set up clean testing enviornment. + sqlDB.Exec(t, `DROP SEQUENCE IF EXISTS a_seq`) + + importDumpQuery := fmt.Sprintf(`IMPORT PGDUMP ($1)`) + data = test.data + + if test.err != "" { + sqlDB.ExpectErr(t, test.err, importDumpQuery, srv.URL) + sqlDB.ExpectErr(t, `relation "a_seq" does not exist`, `DROP SEQUENCE a_seq`) + + } else { + // Import PGDump and verify expected behaviour. + sqlDB.Exec(t, importDumpQuery, srv.URL) + sqlDB.CheckQueryResults(t, test.verifyQuery, test.expected) + sqlDB.Exec(t, `DROP SEQUENCE a_seq`) + } + }) + } +} diff --git a/pkg/sql/catalog/descpb/structured.pb.go b/pkg/sql/catalog/descpb/structured.pb.go index 394677d4a8c9..6761ecc55a6f 100644 --- a/pkg/sql/catalog/descpb/structured.pb.go +++ b/pkg/sql/catalog/descpb/structured.pb.go @@ -76,7 +76,7 @@ func (x *ConstraintValidity) UnmarshalJSON(data []byte) error { return nil } func (ConstraintValidity) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{0} + return fileDescriptor_structured_0fd341afaf30beaa, []int{0} } // SystemColumnKind is an enum representing the different kind of system @@ -121,7 +121,7 @@ func (x *SystemColumnKind) UnmarshalJSON(data []byte) error { return nil } func (SystemColumnKind) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{1} + return fileDescriptor_structured_0fd341afaf30beaa, []int{1} } // State indicates whether a descriptor is public (i.e., normally visible, @@ -173,7 +173,7 @@ func (x *DescriptorState) UnmarshalJSON(data []byte) error { return nil } func (DescriptorState) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{2} + return fileDescriptor_structured_0fd341afaf30beaa, []int{2} } // SurvivalGoal is the survival goal for a database. @@ -212,7 +212,7 @@ func (x *SurvivalGoal) UnmarshalJSON(data []byte) error { return nil } func (SurvivalGoal) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{3} + return fileDescriptor_structured_0fd341afaf30beaa, []int{3} } type ForeignKeyReference_Action int32 @@ -257,7 +257,7 @@ func (x *ForeignKeyReference_Action) UnmarshalJSON(data []byte) error { return nil } func (ForeignKeyReference_Action) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{0, 0} + return fileDescriptor_structured_0fd341afaf30beaa, []int{0, 0} } // Match is the algorithm used to compare composite keys. @@ -297,7 +297,7 @@ func (x *ForeignKeyReference_Match) UnmarshalJSON(data []byte) error { return nil } func (ForeignKeyReference_Match) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{0, 1} + return fileDescriptor_structured_0fd341afaf30beaa, []int{0, 1} } // The direction of a column in the index. @@ -334,7 +334,7 @@ func (x *IndexDescriptor_Direction) UnmarshalJSON(data []byte) error { return nil } func (IndexDescriptor_Direction) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{7, 0} + return fileDescriptor_structured_0fd341afaf30beaa, []int{7, 0} } // The type of the index. @@ -371,7 +371,7 @@ func (x *IndexDescriptor_Type) UnmarshalJSON(data []byte) error { return nil } func (IndexDescriptor_Type) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{7, 1} + return fileDescriptor_structured_0fd341afaf30beaa, []int{7, 1} } type ConstraintToUpdate_ConstraintType int32 @@ -414,7 +414,7 @@ func (x *ConstraintToUpdate_ConstraintType) UnmarshalJSON(data []byte) error { return nil } func (ConstraintToUpdate_ConstraintType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{8, 0} + return fileDescriptor_structured_0fd341afaf30beaa, []int{8, 0} } // A descriptor within a mutation is unavailable for reads, writes @@ -479,7 +479,7 @@ func (x *DescriptorMutation_State) UnmarshalJSON(data []byte) error { return nil } func (DescriptorMutation_State) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{12, 0} + return fileDescriptor_structured_0fd341afaf30beaa, []int{12, 0} } // Direction of mutation. @@ -522,7 +522,7 @@ func (x *DescriptorMutation_Direction) UnmarshalJSON(data []byte) error { return nil } func (DescriptorMutation_Direction) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{12, 1} + return fileDescriptor_structured_0fd341afaf30beaa, []int{12, 1} } // AuditMode indicates which auditing actions to take when this table is used. @@ -559,7 +559,7 @@ func (x *TableDescriptor_AuditMode) UnmarshalJSON(data []byte) error { return nil } func (TableDescriptor_AuditMode) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{14, 0} + return fileDescriptor_structured_0fd341afaf30beaa, []int{14, 0} } // Represents the kind of type that this type descriptor represents. @@ -604,7 +604,7 @@ func (x *TypeDescriptor_Kind) UnmarshalJSON(data []byte) error { return nil } func (TypeDescriptor_Kind) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{16, 0} + return fileDescriptor_structured_0fd341afaf30beaa, []int{16, 0} } // Represents what operations are allowed on this ENUM member. @@ -645,7 +645,7 @@ func (x *TypeDescriptor_EnumMember_Capability) UnmarshalJSON(data []byte) error return nil } func (TypeDescriptor_EnumMember_Capability) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{16, 0, 0} + return fileDescriptor_structured_0fd341afaf30beaa, []int{16, 0, 0} } // ForeignKeyReference is deprecated, replaced by ForeignKeyConstraint in v19.2 @@ -675,7 +675,7 @@ func (m *ForeignKeyReference) Reset() { *m = ForeignKeyReference{} } func (m *ForeignKeyReference) String() string { return proto.CompactTextString(m) } func (*ForeignKeyReference) ProtoMessage() {} func (*ForeignKeyReference) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{0} + return fileDescriptor_structured_0fd341afaf30beaa, []int{0} } func (m *ForeignKeyReference) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -723,7 +723,7 @@ func (m *ForeignKeyConstraint) Reset() { *m = ForeignKeyConstraint{} } func (m *ForeignKeyConstraint) String() string { return proto.CompactTextString(m) } func (*ForeignKeyConstraint) ProtoMessage() {} func (*ForeignKeyConstraint) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{1} + return fileDescriptor_structured_0fd341afaf30beaa, []int{1} } func (m *ForeignKeyConstraint) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -788,7 +788,7 @@ func (m *ColumnDescriptor) Reset() { *m = ColumnDescriptor{} } func (m *ColumnDescriptor) String() string { return proto.CompactTextString(m) } func (*ColumnDescriptor) ProtoMessage() {} func (*ColumnDescriptor) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{2} + return fileDescriptor_structured_0fd341afaf30beaa, []int{2} } func (m *ColumnDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -844,7 +844,7 @@ func (m *ColumnFamilyDescriptor) Reset() { *m = ColumnFamilyDescriptor{} func (m *ColumnFamilyDescriptor) String() string { return proto.CompactTextString(m) } func (*ColumnFamilyDescriptor) ProtoMessage() {} func (*ColumnFamilyDescriptor) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{3} + return fileDescriptor_structured_0fd341afaf30beaa, []int{3} } func (m *ColumnFamilyDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -890,7 +890,7 @@ func (m *InterleaveDescriptor) Reset() { *m = InterleaveDescriptor{} } func (m *InterleaveDescriptor) String() string { return proto.CompactTextString(m) } func (*InterleaveDescriptor) ProtoMessage() {} func (*InterleaveDescriptor) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{4} + return fileDescriptor_structured_0fd341afaf30beaa, []int{4} } func (m *InterleaveDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -934,7 +934,7 @@ func (m *InterleaveDescriptor_Ancestor) Reset() { *m = InterleaveDescrip func (m *InterleaveDescriptor_Ancestor) String() string { return proto.CompactTextString(m) } func (*InterleaveDescriptor_Ancestor) ProtoMessage() {} func (*InterleaveDescriptor_Ancestor) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{4, 0} + return fileDescriptor_structured_0fd341afaf30beaa, []int{4, 0} } func (m *InterleaveDescriptor_Ancestor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -989,7 +989,7 @@ func (m *ShardedDescriptor) Reset() { *m = ShardedDescriptor{} } func (m *ShardedDescriptor) String() string { return proto.CompactTextString(m) } func (*ShardedDescriptor) ProtoMessage() {} func (*ShardedDescriptor) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{5} + return fileDescriptor_structured_0fd341afaf30beaa, []int{5} } func (m *ShardedDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1034,7 +1034,7 @@ func (m *PartitioningDescriptor) Reset() { *m = PartitioningDescriptor{} func (m *PartitioningDescriptor) String() string { return proto.CompactTextString(m) } func (*PartitioningDescriptor) ProtoMessage() {} func (*PartitioningDescriptor) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{6} + return fileDescriptor_structured_0fd341afaf30beaa, []int{6} } func (m *PartitioningDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1077,7 +1077,7 @@ func (m *PartitioningDescriptor_List) Reset() { *m = PartitioningDescrip func (m *PartitioningDescriptor_List) String() string { return proto.CompactTextString(m) } func (*PartitioningDescriptor_List) ProtoMessage() {} func (*PartitioningDescriptor_List) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{6, 0} + return fileDescriptor_structured_0fd341afaf30beaa, []int{6, 0} } func (m *PartitioningDescriptor_List) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1122,7 +1122,7 @@ func (m *PartitioningDescriptor_Range) Reset() { *m = PartitioningDescri func (m *PartitioningDescriptor_Range) String() string { return proto.CompactTextString(m) } func (*PartitioningDescriptor_Range) ProtoMessage() {} func (*PartitioningDescriptor_Range) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{6, 1} + return fileDescriptor_structured_0fd341afaf30beaa, []int{6, 1} } func (m *PartitioningDescriptor_Range) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1289,7 +1289,7 @@ func (m *IndexDescriptor) Reset() { *m = IndexDescriptor{} } func (m *IndexDescriptor) String() string { return proto.CompactTextString(m) } func (*IndexDescriptor) ProtoMessage() {} func (*IndexDescriptor) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{7} + return fileDescriptor_structured_0fd341afaf30beaa, []int{7} } func (m *IndexDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1340,7 +1340,7 @@ func (m *ConstraintToUpdate) Reset() { *m = ConstraintToUpdate{} } func (m *ConstraintToUpdate) String() string { return proto.CompactTextString(m) } func (*ConstraintToUpdate) ProtoMessage() {} func (*ConstraintToUpdate) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{8} + return fileDescriptor_structured_0fd341afaf30beaa, []int{8} } func (m *ConstraintToUpdate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1383,7 +1383,7 @@ func (m *PrimaryKeySwap) Reset() { *m = PrimaryKeySwap{} } func (m *PrimaryKeySwap) String() string { return proto.CompactTextString(m) } func (*PrimaryKeySwap) ProtoMessage() {} func (*PrimaryKeySwap) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{9} + return fileDescriptor_structured_0fd341afaf30beaa, []int{9} } func (m *PrimaryKeySwap) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1423,7 +1423,7 @@ func (m *ComputedColumnSwap) Reset() { *m = ComputedColumnSwap{} } func (m *ComputedColumnSwap) String() string { return proto.CompactTextString(m) } func (*ComputedColumnSwap) ProtoMessage() {} func (*ComputedColumnSwap) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{10} + return fileDescriptor_structured_0fd341afaf30beaa, []int{10} } func (m *ComputedColumnSwap) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1471,7 +1471,7 @@ func (m *MaterializedViewRefresh) Reset() { *m = MaterializedViewRefresh func (m *MaterializedViewRefresh) String() string { return proto.CompactTextString(m) } func (*MaterializedViewRefresh) ProtoMessage() {} func (*MaterializedViewRefresh) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{11} + return fileDescriptor_structured_0fd341afaf30beaa, []int{11} } func (m *MaterializedViewRefresh) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1528,7 +1528,7 @@ func (m *DescriptorMutation) Reset() { *m = DescriptorMutation{} } func (m *DescriptorMutation) String() string { return proto.CompactTextString(m) } func (*DescriptorMutation) ProtoMessage() {} func (*DescriptorMutation) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{12} + return fileDescriptor_structured_0fd341afaf30beaa, []int{12} } func (m *DescriptorMutation) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1866,7 +1866,7 @@ func (m *NameInfo) Reset() { *m = NameInfo{} } func (m *NameInfo) String() string { return proto.CompactTextString(m) } func (*NameInfo) ProtoMessage() {} func (*NameInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{13} + return fileDescriptor_structured_0fd341afaf30beaa, []int{13} } func (m *NameInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2049,7 +2049,7 @@ func (m *TableDescriptor) Reset() { *m = TableDescriptor{} } func (m *TableDescriptor) String() string { return proto.CompactTextString(m) } func (*TableDescriptor) ProtoMessage() {} func (*TableDescriptor) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{14} + return fileDescriptor_structured_0fd341afaf30beaa, []int{14} } func (m *TableDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2363,7 +2363,7 @@ func (m *TableDescriptor_SchemaChangeLease) Reset() { *m = TableDescript func (m *TableDescriptor_SchemaChangeLease) String() string { return proto.CompactTextString(m) } func (*TableDescriptor_SchemaChangeLease) ProtoMessage() {} func (*TableDescriptor_SchemaChangeLease) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{14, 0} + return fileDescriptor_structured_0fd341afaf30beaa, []int{14, 0} } func (m *TableDescriptor_SchemaChangeLease) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2409,7 +2409,7 @@ func (m *TableDescriptor_CheckConstraint) Reset() { *m = TableDescriptor func (m *TableDescriptor_CheckConstraint) String() string { return proto.CompactTextString(m) } func (*TableDescriptor_CheckConstraint) ProtoMessage() {} func (*TableDescriptor_CheckConstraint) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{14, 1} + return fileDescriptor_structured_0fd341afaf30beaa, []int{14, 1} } func (m *TableDescriptor_CheckConstraint) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2449,7 +2449,7 @@ func (m *TableDescriptor_Reference) Reset() { *m = TableDescriptor_Refer func (m *TableDescriptor_Reference) String() string { return proto.CompactTextString(m) } func (*TableDescriptor_Reference) ProtoMessage() {} func (*TableDescriptor_Reference) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{14, 2} + return fileDescriptor_structured_0fd341afaf30beaa, []int{14, 2} } func (m *TableDescriptor_Reference) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2486,7 +2486,7 @@ func (m *TableDescriptor_MutationJob) Reset() { *m = TableDescriptor_Mut func (m *TableDescriptor_MutationJob) String() string { return proto.CompactTextString(m) } func (*TableDescriptor_MutationJob) ProtoMessage() {} func (*TableDescriptor_MutationJob) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{14, 3} + return fileDescriptor_structured_0fd341afaf30beaa, []int{14, 3} } func (m *TableDescriptor_MutationJob) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2523,13 +2523,14 @@ type TableDescriptor_SequenceOpts struct { // Whether the sequence is virtual. Virtual bool `protobuf:"varint,5,opt,name=virtual" json:"virtual"` SequenceOwner TableDescriptor_SequenceOpts_SequenceOwner `protobuf:"bytes,6,opt,name=sequence_owner,json=sequenceOwner" json:"sequence_owner"` + AsIntegerType string `protobuf:"bytes,7,opt,name=as_integer_type,json=asIntegerType" json:"as_integer_type"` } func (m *TableDescriptor_SequenceOpts) Reset() { *m = TableDescriptor_SequenceOpts{} } func (m *TableDescriptor_SequenceOpts) String() string { return proto.CompactTextString(m) } func (*TableDescriptor_SequenceOpts) ProtoMessage() {} func (*TableDescriptor_SequenceOpts) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{14, 4} + return fileDescriptor_structured_0fd341afaf30beaa, []int{14, 4} } func (m *TableDescriptor_SequenceOpts) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2569,7 +2570,7 @@ func (m *TableDescriptor_SequenceOpts_SequenceOwner) String() string { } func (*TableDescriptor_SequenceOpts_SequenceOwner) ProtoMessage() {} func (*TableDescriptor_SequenceOpts_SequenceOwner) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{14, 4, 0} + return fileDescriptor_structured_0fd341afaf30beaa, []int{14, 4, 0} } func (m *TableDescriptor_SequenceOpts_SequenceOwner) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2609,7 +2610,7 @@ func (m *TableDescriptor_Replacement) Reset() { *m = TableDescriptor_Rep func (m *TableDescriptor_Replacement) String() string { return proto.CompactTextString(m) } func (*TableDescriptor_Replacement) ProtoMessage() {} func (*TableDescriptor_Replacement) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{14, 5} + return fileDescriptor_structured_0fd341afaf30beaa, []int{14, 5} } func (m *TableDescriptor_Replacement) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2646,7 +2647,7 @@ func (m *TableDescriptor_GCDescriptorMutation) Reset() { *m = TableDescr func (m *TableDescriptor_GCDescriptorMutation) String() string { return proto.CompactTextString(m) } func (*TableDescriptor_GCDescriptorMutation) ProtoMessage() {} func (*TableDescriptor_GCDescriptorMutation) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{14, 6} + return fileDescriptor_structured_0fd341afaf30beaa, []int{14, 6} } func (m *TableDescriptor_GCDescriptorMutation) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2982,7 +2983,7 @@ func (m *DatabaseDescriptor) Reset() { *m = DatabaseDescriptor{} } func (m *DatabaseDescriptor) String() string { return proto.CompactTextString(m) } func (*DatabaseDescriptor) ProtoMessage() {} func (*DatabaseDescriptor) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{15} + return fileDescriptor_structured_0fd341afaf30beaa, []int{15} } func (m *DatabaseDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3090,7 +3091,7 @@ func (m *DatabaseDescriptor_SchemaInfo) Reset() { *m = DatabaseDescripto func (m *DatabaseDescriptor_SchemaInfo) String() string { return proto.CompactTextString(m) } func (*DatabaseDescriptor_SchemaInfo) ProtoMessage() {} func (*DatabaseDescriptor_SchemaInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{15, 0} + return fileDescriptor_structured_0fd341afaf30beaa, []int{15, 0} } func (m *DatabaseDescriptor_SchemaInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3130,7 +3131,7 @@ func (m *DatabaseDescriptor_RegionConfig) Reset() { *m = DatabaseDescrip func (m *DatabaseDescriptor_RegionConfig) String() string { return proto.CompactTextString(m) } func (*DatabaseDescriptor_RegionConfig) ProtoMessage() {} func (*DatabaseDescriptor_RegionConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{15, 2} + return fileDescriptor_structured_0fd341afaf30beaa, []int{15, 2} } func (m *DatabaseDescriptor_RegionConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3193,7 +3194,7 @@ func (m *TypeDescriptor) Reset() { *m = TypeDescriptor{} } func (m *TypeDescriptor) String() string { return proto.CompactTextString(m) } func (*TypeDescriptor) ProtoMessage() {} func (*TypeDescriptor) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{16} + return fileDescriptor_structured_0fd341afaf30beaa, []int{16} } func (m *TypeDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3341,7 +3342,7 @@ func (m *TypeDescriptor_EnumMember) Reset() { *m = TypeDescriptor_EnumMe func (m *TypeDescriptor_EnumMember) String() string { return proto.CompactTextString(m) } func (*TypeDescriptor_EnumMember) ProtoMessage() {} func (*TypeDescriptor_EnumMember) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{16, 0} + return fileDescriptor_structured_0fd341afaf30beaa, []int{16, 0} } func (m *TypeDescriptor_EnumMember) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3425,7 +3426,7 @@ func (m *SchemaDescriptor) Reset() { *m = SchemaDescriptor{} } func (m *SchemaDescriptor) String() string { return proto.CompactTextString(m) } func (*SchemaDescriptor) ProtoMessage() {} func (*SchemaDescriptor) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{17} + return fileDescriptor_structured_0fd341afaf30beaa, []int{17} } func (m *SchemaDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3528,7 +3529,7 @@ func (m *Descriptor) Reset() { *m = Descriptor{} } func (m *Descriptor) String() string { return proto.CompactTextString(m) } func (*Descriptor) ProtoMessage() {} func (*Descriptor) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_20f1d1ab90a0ba3c, []int{18} + return fileDescriptor_structured_0fd341afaf30beaa, []int{18} } func (m *Descriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5076,6 +5077,9 @@ func (this *TableDescriptor_SequenceOpts) Equal(that interface{}) bool { if !this.SequenceOwner.Equal(&that1.SequenceOwner) { return false } + if this.AsIntegerType != that1.AsIntegerType { + return false + } return true } func (this *TableDescriptor_SequenceOpts_SequenceOwner) Equal(that interface{}) bool { @@ -7291,7 +7295,11 @@ func (m *TableDescriptor_SequenceOpts) MarshalTo(dAtA []byte) (int, error) { if err != nil { return 0, err } - i += n27 + i += n26 + dAtA[i] = 0x3a + i++ + i = encodeVarintStructured(dAtA, i, uint64(len(m.AsIntegerType))) + i += copy(dAtA[i:], m.AsIntegerType) return i, nil } @@ -8673,6 +8681,8 @@ func (m *TableDescriptor_SequenceOpts) Size() (n int) { n += 2 l = m.SequenceOwner.Size() n += 1 + l + sovStructured(uint64(l)) + l = len(m.AsIntegerType) + n += 1 + l + sovStructured(uint64(l)) return n } @@ -14849,6 +14859,35 @@ func (m *TableDescriptor_SequenceOpts) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 7: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field AsIntegerType", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowStructured + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthStructured + } + postIndex := iNdEx + intStringLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.AsIntegerType = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipStructured(dAtA[iNdEx:]) @@ -17415,319 +17454,310 @@ var ( ) func init() { - proto.RegisterFile("sql/catalog/descpb/structured.proto", fileDescriptor_structured_20f1d1ab90a0ba3c) -} - -var fileDescriptor_structured_20f1d1ab90a0ba3c = []byte{ - // 4955 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x3b, 0x4b, 0x70, 0x1b, 0xe7, - 0x79, 0xc4, 0x1b, 0xf8, 0xf0, 0x5a, 0xfe, 0xa2, 0x24, 0x88, 0x71, 0x48, 0x0a, 0xb2, 0x6c, 0x46, - 0x49, 0x48, 0x99, 0x8a, 0x13, 0xc5, 0x8e, 0x33, 0x06, 0x01, 0x50, 0x04, 0x1f, 0x00, 0xbd, 0xa4, - 0x24, 0x27, 0x6e, 0xb3, 0x59, 0x62, 0x7f, 0x80, 0x6b, 0x2d, 0x76, 0xa1, 0xdd, 0x85, 0x44, 0x74, - 0x7a, 0x6a, 0x2f, 0x3d, 0xf5, 0x71, 0xe8, 0xb1, 0x53, 0x4f, 0xc7, 0x33, 0xcd, 0xad, 0x93, 0x4b, - 0x7b, 0xeb, 0x4c, 0x7b, 0xe8, 0xf8, 0xd6, 0xf4, 0x96, 0x13, 0xa7, 0xa5, 0x2f, 0x9d, 0xe9, 0xa1, - 0xd3, 0x4b, 0x3b, 0xe3, 0x53, 0xe7, 0x7f, 0xed, 0x03, 0x0f, 0x1a, 0x24, 0xdd, 0x1e, 0xa4, 0xe1, - 0x7e, 0xaf, 0xff, 0xf5, 0xbd, 0xff, 0x1f, 0x70, 0xcf, 0x79, 0x69, 0xac, 0xb7, 0x55, 0x57, 0x35, - 0xac, 0xee, 0xba, 0x86, 0x9d, 0x76, 0xff, 0x78, 0xdd, 0x71, 0xed, 0x41, 0xdb, 0x1d, 0xd8, 0x58, - 0x5b, 0xeb, 0xdb, 0x96, 0x6b, 0xa1, 0x9b, 0x6d, 0xab, 0xfd, 0xc2, 0xb6, 0xd4, 0xf6, 0xc9, 0x9a, - 0xf3, 0xd2, 0x20, 0xff, 0x8e, 0x55, 0x07, 0x2f, 0x96, 0x06, 0xae, 0x6e, 0xac, 0x9f, 0x18, 0xed, - 0x75, 0x57, 0xef, 0x61, 0xc7, 0x55, 0x7b, 0x7d, 0xc6, 0xb0, 0x58, 0x9e, 0x20, 0xb5, 0x6f, 0xeb, - 0xaf, 0x74, 0x03, 0x77, 0x31, 0xa7, 0xb9, 0x49, 0x68, 0xdc, 0x61, 0x1f, 0x3b, 0xec, 0x7f, 0x0e, - 0xbe, 0xd3, 0xc5, 0xd6, 0x7a, 0x17, 0x5b, 0xba, 0xa9, 0xe1, 0xd3, 0xf5, 0xb6, 0x65, 0x76, 0xf4, - 0x2e, 0x47, 0x2d, 0x74, 0xad, 0xae, 0x45, 0xff, 0x5c, 0x27, 0x7f, 0x31, 0x68, 0xf9, 0x0f, 0x12, - 0x70, 0x63, 0xcb, 0xb2, 0xb1, 0xde, 0x35, 0x77, 0xf1, 0x50, 0xc6, 0x1d, 0x6c, 0x63, 0xb3, 0x8d, - 0xd1, 0x0a, 0x24, 0x5c, 0xf5, 0xd8, 0xc0, 0xa5, 0xc8, 0x4a, 0x64, 0x35, 0xbf, 0x09, 0x5f, 0x9c, - 0x2d, 0xcf, 0x7d, 0x75, 0xb6, 0x1c, 0x6d, 0xd4, 0x64, 0x86, 0x40, 0xf7, 0x21, 0x41, 0x47, 0x29, - 0x45, 0x29, 0x45, 0x91, 0x53, 0xa4, 0x1a, 0x04, 0x48, 0xc8, 0x28, 0x16, 0x95, 0x20, 0x6e, 0xaa, - 0x3d, 0x5c, 0x8a, 0xad, 0x44, 0x56, 0x33, 0x9b, 0x71, 0x42, 0x25, 0x53, 0x08, 0xda, 0x85, 0xf4, - 0x2b, 0xd5, 0xd0, 0x35, 0xdd, 0x1d, 0x96, 0xe2, 0x2b, 0x91, 0xd5, 0xc2, 0xc6, 0x77, 0xd6, 0x26, - 0x6e, 0xd5, 0x5a, 0xd5, 0x32, 0x1d, 0xd7, 0x56, 0x75, 0xd3, 0x7d, 0xc6, 0x19, 0xb8, 0x20, 0x4f, - 0x00, 0x7a, 0x08, 0xf3, 0xce, 0x89, 0x6a, 0x63, 0x4d, 0xe9, 0xdb, 0xb8, 0xa3, 0x9f, 0x2a, 0x06, - 0x36, 0x4b, 0x89, 0x95, 0xc8, 0x6a, 0x82, 0x93, 0x16, 0x19, 0xfa, 0x80, 0x62, 0xf7, 0xb0, 0x89, - 0x8e, 0x20, 0x63, 0x99, 0x8a, 0x86, 0x0d, 0xec, 0xe2, 0x52, 0x92, 0x8e, 0xff, 0xce, 0x94, 0xf1, - 0x27, 0x6c, 0xd0, 0x5a, 0xa5, 0xed, 0xea, 0x96, 0x29, 0xe6, 0x61, 0x99, 0x35, 0x2a, 0x88, 0x4b, - 0x1d, 0xf4, 0x35, 0xd5, 0xc5, 0xa5, 0xd4, 0xb5, 0xa5, 0x3e, 0xa5, 0x82, 0xd0, 0x1e, 0x24, 0x7a, - 0xaa, 0xdb, 0x3e, 0x29, 0xa5, 0xa9, 0xc4, 0x87, 0x97, 0x90, 0xb8, 0x4f, 0xf8, 0xb8, 0x40, 0x26, - 0xa4, 0xfc, 0x1c, 0x92, 0x6c, 0x1c, 0x94, 0x87, 0x4c, 0xb3, 0xa5, 0x54, 0xaa, 0x47, 0x8d, 0x56, - 0x53, 0x9a, 0x43, 0x39, 0x48, 0xcb, 0xf5, 0xc3, 0x23, 0xb9, 0x51, 0x3d, 0x92, 0x22, 0xe4, 0xeb, - 0xb0, 0x7e, 0xa4, 0x34, 0x9f, 0xee, 0xed, 0x49, 0x51, 0x54, 0x84, 0x2c, 0xf9, 0xaa, 0xd5, 0xb7, - 0x2a, 0x4f, 0xf7, 0x8e, 0xa4, 0x18, 0xca, 0x42, 0xaa, 0x5a, 0x39, 0xac, 0x56, 0x6a, 0x75, 0x29, - 0xbe, 0x18, 0xff, 0xd5, 0xe7, 0x4b, 0x73, 0xe5, 0x87, 0x90, 0xa0, 0xc3, 0x21, 0x80, 0xe4, 0x61, - 0x63, 0xff, 0x60, 0xaf, 0x2e, 0xcd, 0xa1, 0x34, 0xc4, 0xb7, 0x88, 0x88, 0x08, 0xe1, 0x38, 0xa8, - 0xc8, 0x47, 0x8d, 0xca, 0x9e, 0x14, 0x65, 0x1c, 0xef, 0xc5, 0xff, 0xfd, 0xb3, 0xe5, 0x48, 0xf9, - 0x5f, 0x12, 0xb0, 0xe0, 0xcf, 0xdd, 0x3f, 0x6d, 0x54, 0x85, 0xa2, 0x65, 0xeb, 0x5d, 0xdd, 0x54, - 0xa8, 0xce, 0x29, 0xba, 0xc6, 0xf5, 0xf1, 0x5b, 0x64, 0x3d, 0xe7, 0x67, 0xcb, 0xf9, 0x16, 0x45, - 0x1f, 0x11, 0x6c, 0xa3, 0xc6, 0x15, 0x34, 0x6f, 0x05, 0x80, 0x1a, 0xda, 0x85, 0x79, 0x2e, 0xa4, - 0x6d, 0x19, 0x83, 0x9e, 0xa9, 0xe8, 0x9a, 0x53, 0x8a, 0xae, 0xc4, 0x56, 0xf3, 0x9b, 0xcb, 0xe7, - 0x67, 0xcb, 0x45, 0x26, 0xa2, 0x4a, 0x71, 0x8d, 0x9a, 0xf3, 0xd5, 0xd9, 0x72, 0x5a, 0x7c, 0xc8, - 0x7c, 0x78, 0xfe, 0xad, 0x39, 0xe8, 0x39, 0xdc, 0xb4, 0xc5, 0xde, 0x6a, 0x41, 0x81, 0x31, 0x2a, - 0xf0, 0xde, 0xf9, 0xd9, 0xf2, 0x0d, 0x6f, 0xf3, 0xb5, 0xc9, 0x42, 0x6f, 0xd8, 0xa3, 0x04, 0x9a, - 0x83, 0x5a, 0x10, 0x00, 0xfb, 0xcb, 0x8d, 0xd3, 0xe5, 0x2e, 0xf3, 0xe5, 0xce, 0xfb, 0xa2, 0xc3, - 0x4b, 0x9e, 0xb7, 0x47, 0x10, 0x9a, 0x67, 0x78, 0x89, 0x0b, 0x0d, 0x2f, 0x79, 0x5d, 0xc3, 0x0b, - 0x99, 0x51, 0xea, 0xff, 0xc4, 0x8c, 0xd2, 0xdf, 0xb8, 0x19, 0x65, 0xbe, 0x01, 0x33, 0x62, 0xba, - 0xbb, 0x13, 0x4f, 0x83, 0x94, 0xdd, 0x89, 0xa7, 0xb3, 0x52, 0x6e, 0x27, 0x9e, 0xce, 0x49, 0xf9, - 0x9d, 0x78, 0x3a, 0x2f, 0x15, 0xca, 0xff, 0x15, 0x07, 0x89, 0x9d, 0x6e, 0x0d, 0x3b, 0x6d, 0x5b, - 0xef, 0xbb, 0x96, 0xed, 0x9d, 0x49, 0x64, 0xec, 0x4c, 0xde, 0x82, 0xa8, 0xae, 0x71, 0x57, 0x7a, - 0x8b, 0x9f, 0x76, 0x94, 0x1e, 0xaf, 0xaf, 0x37, 0x51, 0x5d, 0x43, 0x6b, 0x10, 0x27, 0xfe, 0x9e, - 0xba, 0xd3, 0xec, 0xc6, 0xe2, 0xe8, 0x0a, 0x70, 0x6f, 0x8d, 0x85, 0x83, 0x23, 0x99, 0xd2, 0xa1, - 0x15, 0x48, 0x9b, 0x03, 0xc3, 0xa0, 0xae, 0x9c, 0xe8, 0x52, 0x5a, 0x6c, 0x8a, 0x80, 0xa2, 0xbb, - 0x90, 0xd3, 0x70, 0x47, 0x1d, 0x18, 0xae, 0x82, 0x4f, 0xfb, 0x36, 0xd3, 0x17, 0x39, 0xcb, 0x61, - 0xf5, 0xd3, 0xbe, 0x8d, 0xde, 0x80, 0xe4, 0x89, 0xae, 0x69, 0xd8, 0xa4, 0xea, 0x22, 0x44, 0x70, - 0x18, 0xda, 0x80, 0xf9, 0x81, 0x83, 0x1d, 0xc5, 0xc1, 0x2f, 0x07, 0x64, 0xaf, 0xa8, 0x39, 0x00, - 0x35, 0x87, 0x24, 0x57, 0xcf, 0x22, 0x21, 0x38, 0xe4, 0x78, 0xa2, 0xed, 0x77, 0x21, 0xd7, 0xb6, - 0x7a, 0xfd, 0x81, 0x8b, 0xd9, 0xa0, 0x59, 0x36, 0x28, 0x87, 0xd1, 0x41, 0x37, 0x60, 0xde, 0x7a, - 0x6d, 0x8e, 0x88, 0xcd, 0x85, 0xc5, 0x12, 0x82, 0xa0, 0xd8, 0x0f, 0x41, 0xea, 0x77, 0x15, 0xd5, - 0x75, 0x6d, 0xfd, 0x98, 0xc8, 0x36, 0x07, 0xbd, 0x52, 0x3e, 0xb4, 0xa7, 0x85, 0x83, 0x27, 0x15, - 0x81, 0x6e, 0x0e, 0x7a, 0x72, 0xa1, 0xdf, 0x0d, 0x7e, 0xa3, 0x2d, 0xf8, 0xb6, 0x6a, 0xb8, 0xd8, - 0x16, 0xa6, 0x4d, 0x36, 0x51, 0xd1, 0x4d, 0xa5, 0x6f, 0x5b, 0x5d, 0x1b, 0x3b, 0x4e, 0xa9, 0x10, - 0xd8, 0x81, 0x3b, 0x94, 0x94, 0x9d, 0xcf, 0xd1, 0xb0, 0x8f, 0x1b, 0xe6, 0x01, 0x27, 0x43, 0x9f, - 0x00, 0x72, 0x86, 0x8e, 0x8b, 0x7b, 0x42, 0xd0, 0x0b, 0xdd, 0xd4, 0x4a, 0x45, 0xaa, 0x77, 0x6f, - 0x4f, 0xd1, 0xbb, 0x43, 0xca, 0xc0, 0xc4, 0xed, 0xea, 0xa6, 0xc6, 0x47, 0x91, 0x9c, 0x11, 0xb8, - 0xa7, 0x79, 0x69, 0x29, 0xb3, 0x13, 0x4f, 0x67, 0x24, 0xd8, 0x89, 0xa7, 0x53, 0x52, 0xba, 0xfc, - 0xc7, 0x51, 0xb8, 0xc5, 0xc8, 0xb6, 0xd4, 0x9e, 0x6e, 0x0c, 0xaf, 0xab, 0x79, 0x4c, 0x0a, 0xd7, - 0x3c, 0x7a, 0x64, 0x74, 0x29, 0x84, 0x8d, 0x39, 0x3c, 0x7a, 0x64, 0x04, 0xd6, 0x24, 0x20, 0xf4, - 0x18, 0x20, 0xe0, 0x11, 0xe3, 0xf4, 0xac, 0xee, 0x9c, 0x9f, 0x2d, 0x67, 0x26, 0xfb, 0xc1, 0x4c, - 0x3b, 0xe0, 0xfd, 0xe6, 0x85, 0x12, 0x7a, 0x12, 0xa8, 0x26, 0xe6, 0x37, 0xef, 0xf1, 0x39, 0x15, - 0x6b, 0x8c, 0x40, 0xb0, 0x87, 0xfd, 0xb4, 0x16, 0x42, 0xf2, 0x2d, 0x2a, 0xff, 0x5d, 0x14, 0x16, - 0x1a, 0xa6, 0x8b, 0x6d, 0x03, 0xab, 0xaf, 0x70, 0x60, 0x3b, 0x3e, 0x86, 0x8c, 0x6a, 0xb6, 0xb1, - 0xe3, 0x5a, 0xb6, 0x53, 0x8a, 0xac, 0xc4, 0x56, 0xb3, 0x1b, 0x3f, 0x98, 0x72, 0x2a, 0x93, 0xf8, - 0xd7, 0x2a, 0x9c, 0x99, 0xef, 0xa4, 0x2f, 0x6c, 0xf1, 0xef, 0x23, 0x90, 0x16, 0x58, 0xf4, 0x10, - 0xd2, 0x23, 0x81, 0xeb, 0x26, 0x5f, 0x4d, 0x2a, 0xec, 0xbf, 0x53, 0x2e, 0xf7, 0xda, 0xef, 0x42, - 0x9a, 0xe6, 0x4d, 0x8a, 0x77, 0x26, 0x8b, 0x82, 0x83, 0x27, 0x56, 0xc1, 0x1c, 0x2b, 0x45, 0x69, - 0x1b, 0x1a, 0xaa, 0x4e, 0x4a, 0x7f, 0x62, 0x94, 0xff, 0xb6, 0xd8, 0xbf, 0xc3, 0x70, 0x02, 0x34, - 0x96, 0x11, 0xb1, 0x3d, 0xe3, 0x3b, 0xf7, 0xb7, 0x11, 0x98, 0x27, 0x0c, 0x1a, 0xd6, 0x02, 0xdb, - 0x76, 0x0f, 0x40, 0x77, 0x14, 0x87, 0xc1, 0xe9, 0x8a, 0x84, 0x29, 0x64, 0x74, 0x87, 0x93, 0x7b, - 0xaa, 0x16, 0x1d, 0x53, 0xb5, 0x1f, 0x43, 0x9e, 0xf2, 0x2a, 0xc7, 0x83, 0xf6, 0x0b, 0xec, 0x3a, - 0x74, 0x86, 0x89, 0xcd, 0x05, 0x3e, 0xc3, 0x1c, 0x95, 0xb0, 0xc9, 0x70, 0x72, 0xce, 0x09, 0x7c, - 0x8d, 0x69, 0x5f, 0x7c, 0x4c, 0xfb, 0xf8, 0xc4, 0xff, 0x27, 0x06, 0xb7, 0x0e, 0x54, 0xdb, 0xd5, - 0x49, 0x04, 0xd0, 0xcd, 0x6e, 0x60, 0xf6, 0xf7, 0x21, 0x6b, 0x0e, 0x84, 0x41, 0x3a, 0xfc, 0x40, - 0xd8, 0xfc, 0xc0, 0x1c, 0x70, 0x03, 0x73, 0xd0, 0x1e, 0xc4, 0x0d, 0xdd, 0x71, 0x69, 0x8a, 0x90, - 0xdd, 0xd8, 0x98, 0xa2, 0x16, 0x93, 0xc7, 0x58, 0xdb, 0xd3, 0x1d, 0x57, 0xac, 0x99, 0x48, 0x41, - 0x2d, 0x48, 0xd8, 0xaa, 0xd9, 0xc5, 0xd4, 0x5e, 0xb2, 0x1b, 0x8f, 0x2e, 0x27, 0x4e, 0x26, 0xac, - 0x22, 0xec, 0x50, 0x39, 0x8b, 0x7f, 0x11, 0x81, 0x38, 0x19, 0xe5, 0x02, 0x93, 0xbe, 0x05, 0xc9, - 0x57, 0xaa, 0x31, 0xc0, 0x2c, 0xcd, 0xc9, 0xc9, 0xfc, 0x0b, 0xfd, 0x2e, 0x14, 0x9d, 0xc1, 0x71, - 0x3f, 0x30, 0x14, 0x8f, 0x23, 0xdf, 0xbf, 0xd4, 0xac, 0xbc, 0x8c, 0x3a, 0x2c, 0x8b, 0x1d, 0xc0, - 0xe2, 0x4b, 0x48, 0xd0, 0x59, 0x5f, 0x30, 0xbf, 0xbb, 0x90, 0x73, 0x2d, 0x05, 0x9f, 0xb6, 0x8d, - 0x81, 0xa3, 0xbf, 0x62, 0x9a, 0x92, 0x93, 0xb3, 0xae, 0x55, 0x17, 0x20, 0x74, 0x1f, 0x0a, 0x1d, - 0xdb, 0xea, 0x29, 0xba, 0x29, 0x88, 0x62, 0x94, 0x28, 0x4f, 0xa0, 0x0d, 0x01, 0x0c, 0xa9, 0xec, - 0x9f, 0xe7, 0xa0, 0x48, 0x0d, 0x63, 0x26, 0xb7, 0x77, 0x3f, 0xe0, 0xf6, 0x6e, 0x86, 0xdc, 0x9e, - 0x67, 0x5d, 0xc4, 0xeb, 0xbd, 0x01, 0xc9, 0x81, 0xa9, 0xbf, 0x1c, 0xb0, 0xf1, 0xbd, 0xd0, 0xc7, - 0x60, 0x33, 0x68, 0x25, 0xfa, 0x1e, 0x20, 0xe2, 0x0a, 0xb0, 0x12, 0x22, 0x4c, 0x50, 0x42, 0x89, - 0x62, 0xaa, 0x53, 0x3d, 0x68, 0xf2, 0x12, 0x1e, 0x74, 0x1b, 0x24, 0x7c, 0xea, 0xda, 0x6a, 0x30, - 0x27, 0x4d, 0x51, 0xfe, 0x25, 0x12, 0xf6, 0xea, 0x04, 0x37, 0x59, 0x48, 0x01, 0x07, 0x70, 0x1a, - 0xd1, 0x92, 0x79, 0x2e, 0x43, 0xd3, 0x6d, 0x4c, 0x33, 0x29, 0xa7, 0x94, 0x5e, 0x89, 0x5d, 0x90, - 0x31, 0x8d, 0x6c, 0xfb, 0x5a, 0x4d, 0x30, 0xca, 0x12, 0x13, 0xe5, 0x01, 0x1c, 0x74, 0x08, 0xd9, - 0x0e, 0x4b, 0xb0, 0x94, 0x17, 0x78, 0x48, 0x53, 0xb1, 0xec, 0xc6, 0x83, 0xd9, 0x53, 0xb1, 0xcd, - 0x24, 0x39, 0x82, 0x52, 0x44, 0x86, 0x8e, 0x87, 0x44, 0xcf, 0x21, 0x1f, 0xc8, 0x9e, 0x8f, 0x87, - 0x34, 0xff, 0xb8, 0x9a, 0xd8, 0x9c, 0x2f, 0x68, 0x73, 0x88, 0x3e, 0x02, 0xd0, 0xbd, 0x00, 0x40, - 0xd3, 0x94, 0xec, 0xc6, 0x77, 0x2f, 0x11, 0x29, 0x84, 0x7f, 0xf1, 0x85, 0xa0, 0xe7, 0x50, 0xf0, - 0xbf, 0xe8, 0x64, 0x73, 0x97, 0x9e, 0x2c, 0x93, 0x9a, 0x0f, 0xc8, 0xd9, 0x24, 0xa9, 0xf8, 0x02, - 0x49, 0xa0, 0x2c, 0x47, 0x77, 0x71, 0x50, 0x0d, 0xf2, 0x54, 0x0d, 0xca, 0xe7, 0x67, 0xcb, 0xa8, - 0x2a, 0xf0, 0x93, 0x55, 0x01, 0xb5, 0x47, 0xf0, 0x4c, 0xb1, 0x42, 0x0a, 0x4c, 0x24, 0x16, 0x7c, - 0xc5, 0x3a, 0xf4, 0x55, 0x78, 0x4c, 0xb1, 0x02, 0xea, 0xcd, 0x6a, 0xa7, 0x5c, 0xc8, 0xf7, 0x14, - 0xaf, 0xee, 0x7b, 0x42, 0x82, 0x50, 0x9d, 0x27, 0xc5, 0x12, 0x4d, 0xaf, 0xbe, 0x3b, 0xa3, 0x92, - 0x92, 0x8c, 0x4d, 0xb8, 0x04, 0x9a, 0x2b, 0x3f, 0x02, 0xd4, 0xb6, 0xb1, 0xea, 0x62, 0x8d, 0x24, - 0xa5, 0x86, 0xde, 0xd6, 0x5d, 0x63, 0x58, 0x9a, 0x0f, 0xd8, 0xfd, 0x3c, 0xc7, 0xd7, 0x3d, 0x34, - 0x7a, 0x0c, 0xa9, 0x57, 0xd8, 0x76, 0x74, 0xcb, 0x2c, 0x21, 0xea, 0x4c, 0x96, 0x78, 0x23, 0xe4, - 0xd6, 0xc8, 0x78, 0xcf, 0x18, 0x95, 0x2c, 0xc8, 0xd1, 0x36, 0xe4, 0xb1, 0xd9, 0xb6, 0x34, 0xdd, - 0xec, 0xd2, 0x34, 0xb3, 0x74, 0xc3, 0xcf, 0x77, 0xbe, 0x3a, 0x5b, 0xfe, 0xd6, 0x08, 0x7f, 0x9d, - 0xd3, 0x92, 0x69, 0xcb, 0x39, 0x1c, 0xf8, 0x42, 0xdb, 0x90, 0x12, 0x31, 0x79, 0x81, 0xee, 0xe9, - 0xea, 0xb4, 0x0c, 0x73, 0x34, 0xa2, 0xf3, 0x75, 0x09, 0x76, 0x52, 0x2e, 0x68, 0xba, 0x43, 0x72, - 0x11, 0xad, 0x74, 0x33, 0x58, 0x2e, 0x08, 0x28, 0xaa, 0x02, 0x74, 0xb1, 0xa5, 0xb0, 0xd6, 0x52, - 0xe9, 0x16, 0x1d, 0x6e, 0x29, 0x30, 0x5c, 0x17, 0x5b, 0x6b, 0xa2, 0x01, 0x45, 0xea, 0xc7, 0x8e, - 0xde, 0x15, 0x29, 0x42, 0x17, 0x5b, 0x0c, 0x80, 0xca, 0x90, 0xe9, 0xdb, 0x58, 0xd3, 0xdb, 0xa4, - 0xbc, 0xbb, 0x1d, 0xf0, 0xcd, 0x3e, 0xb8, 0xbc, 0x04, 0x19, 0xcf, 0x6b, 0xa0, 0x14, 0xc4, 0x2a, - 0x87, 0x55, 0xd6, 0x4d, 0xa8, 0xd5, 0x0f, 0xab, 0x52, 0xa4, 0x7c, 0x17, 0xe2, 0x74, 0xf1, 0x59, - 0x48, 0x6d, 0xb5, 0xe4, 0xe7, 0x15, 0xb9, 0xc6, 0x3a, 0x18, 0x8d, 0xe6, 0xb3, 0xba, 0x7c, 0x54, - 0xaf, 0x49, 0x22, 0x2e, 0xfc, 0x43, 0x0c, 0x90, 0x5f, 0xc8, 0x1e, 0x59, 0xbc, 0x18, 0xec, 0x42, - 0xb1, 0xed, 0x41, 0xd9, 0x01, 0x44, 0x56, 0xa2, 0xab, 0x85, 0x8d, 0xc7, 0x5f, 0x5b, 0x0c, 0x0b, - 0x19, 0x41, 0x90, 0xaf, 0x4c, 0x85, 0x76, 0x08, 0x1a, 0xc8, 0x87, 0xa2, 0x23, 0x31, 0x48, 0x86, - 0x44, 0xfb, 0x04, 0xb7, 0x5f, 0xf0, 0x28, 0xfc, 0xc3, 0x29, 0x03, 0xd3, 0x54, 0x31, 0xa0, 0xb8, - 0x55, 0xc2, 0xe3, 0x0f, 0x2d, 0xd2, 0x03, 0x2a, 0x0a, 0xc9, 0x61, 0xf7, 0x1a, 0xbf, 0xd0, 0x63, - 0x4d, 0x6a, 0xba, 0x08, 0x8f, 0x15, 0xf0, 0xae, 0x8f, 0xa1, 0x68, 0x5a, 0xae, 0x42, 0x4a, 0x46, - 0xee, 0x05, 0x68, 0x21, 0x98, 0xdf, 0x94, 0xb8, 0xae, 0xfa, 0x36, 0x9f, 0x37, 0x2d, 0xb7, 0x39, - 0x30, 0x0c, 0x06, 0x28, 0xbf, 0x07, 0x85, 0xf0, 0x1e, 0xa1, 0x0c, 0x24, 0xaa, 0xdb, 0xf5, 0xea, - 0xae, 0x34, 0x87, 0x8a, 0x90, 0xdd, 0x6a, 0xc9, 0xf5, 0xc6, 0x93, 0xa6, 0xb2, 0x5b, 0xff, 0x19, - 0xeb, 0x38, 0x35, 0x5b, 0xa2, 0xe3, 0xe4, 0x55, 0x39, 0x09, 0x29, 0x59, 0xfe, 0xef, 0x08, 0x14, - 0x0e, 0x6c, 0xbd, 0xa7, 0xda, 0xc3, 0x5d, 0x3c, 0x3c, 0x7c, 0xad, 0xf6, 0xd1, 0x87, 0xb0, 0x60, - 0xe2, 0xd7, 0x4a, 0x9f, 0x41, 0x15, 0x2f, 0x6b, 0x8e, 0x4c, 0x6e, 0x47, 0xce, 0x9b, 0xf8, 0x35, - 0x97, 0xd0, 0xe0, 0x49, 0xf3, 0xf7, 0x20, 0x6b, 0x19, 0x1a, 0xe3, 0xc4, 0xa2, 0x25, 0x94, 0x0d, - 0x32, 0x81, 0x65, 0x68, 0x0d, 0x86, 0x26, 0xd4, 0x64, 0x3c, 0x41, 0x1d, 0x9b, 0x40, 0x6d, 0xe2, - 0xd7, 0x82, 0xfa, 0x43, 0x58, 0x20, 0xb2, 0xc7, 0x66, 0x17, 0x9f, 0x32, 0x3b, 0xcb, 0xd0, 0xc2, - 0xb3, 0xe3, 0xca, 0xfb, 0x37, 0x11, 0xa0, 0x4e, 0x7b, 0xe0, 0x8a, 0x66, 0x11, 0x5d, 0xfc, 0x0f, - 0x20, 0x4f, 0x26, 0xe3, 0xd7, 0x4a, 0x91, 0x29, 0xe7, 0x41, 0xe6, 0x2c, 0x3c, 0x30, 0xe1, 0x22, - 0x93, 0xf2, 0xb9, 0xa2, 0xd3, 0xb8, 0x2c, 0xc3, 0x6b, 0x4d, 0xa1, 0xb7, 0x21, 0xa7, 0x9b, 0xc4, - 0x69, 0xf1, 0x5a, 0x3d, 0xd8, 0xc9, 0xcd, 0x72, 0x0c, 0xa9, 0xd8, 0xf9, 0x8c, 0x7f, 0x1d, 0x85, - 0xdb, 0xfb, 0xaa, 0x8b, 0x6d, 0x5d, 0x35, 0xf4, 0xdf, 0xc3, 0xda, 0x33, 0x1d, 0xbf, 0x96, 0x71, - 0xc7, 0xc6, 0xce, 0x09, 0xfa, 0x18, 0xe6, 0xc7, 0xce, 0x8c, 0x4e, 0x3d, 0xbb, 0xf1, 0xd6, 0x6c, - 0x5e, 0x5b, 0xe4, 0x9e, 0x23, 0xa7, 0x89, 0xf6, 0xc3, 0xa7, 0xc3, 0x72, 0xf7, 0xcb, 0xc9, 0x0c, - 0x1e, 0xdf, 0x63, 0x48, 0xa8, 0x8e, 0x62, 0x75, 0xb8, 0x65, 0x7e, 0x3b, 0x20, 0x68, 0xe0, 0xea, - 0xc6, 0xda, 0x89, 0xd1, 0x5e, 0x3b, 0x12, 0x6d, 0x7b, 0x61, 0xd3, 0xaa, 0xd3, 0xea, 0xa0, 0xef, - 0x43, 0xd1, 0x39, 0xb1, 0x06, 0x86, 0xa6, 0x1c, 0xab, 0xed, 0x17, 0x1d, 0xdd, 0x30, 0x42, 0x7d, - 0x97, 0x02, 0x43, 0x6e, 0x72, 0x1c, 0xdf, 0xb3, 0x3f, 0x49, 0x01, 0xf2, 0xe7, 0xb3, 0x3f, 0x70, - 0x55, 0xea, 0xf5, 0x2a, 0x90, 0xe4, 0xe6, 0xc6, 0xf6, 0xe8, 0xed, 0xa9, 0x9e, 0x29, 0xdc, 0x67, - 0xda, 0x9e, 0x93, 0x39, 0x23, 0xfa, 0x69, 0xb0, 0x4b, 0x3f, 0xf3, 0x8e, 0x6c, 0xcf, 0x89, 0xf6, - 0xfd, 0x2e, 0x24, 0x1c, 0x97, 0x78, 0xe9, 0x18, 0x8d, 0xad, 0xeb, 0x53, 0xf8, 0xc7, 0x27, 0xbf, - 0x76, 0x48, 0xd8, 0x84, 0x6f, 0xa2, 0x32, 0xd0, 0x73, 0xc8, 0x78, 0x29, 0x25, 0x6f, 0xf9, 0x3f, - 0x9a, 0x5d, 0xa0, 0x17, 0x0d, 0x44, 0xac, 0xf0, 0x64, 0xa1, 0x0a, 0x64, 0x7b, 0x9c, 0xcc, 0x6f, - 0x1c, 0xac, 0xf0, 0xac, 0x1e, 0x84, 0x04, 0x9a, 0xdd, 0x07, 0xbe, 0x64, 0x10, 0x4c, 0x0d, 0x1a, - 0xf9, 0x6c, 0xcb, 0x30, 0xc8, 0xa1, 0xd1, 0x36, 0xa6, 0x17, 0xf9, 0x04, 0x14, 0xed, 0x92, 0xdc, - 0x5c, 0xf8, 0x32, 0xda, 0x94, 0xcc, 0xce, 0xd0, 0x38, 0x15, 0xb1, 0x62, 0x7b, 0x4e, 0x0e, 0xb0, - 0xa3, 0x16, 0x14, 0xfa, 0x21, 0x7f, 0xc6, 0x13, 0xe1, 0xfb, 0xd3, 0xb2, 0xa1, 0x10, 0xf1, 0xf6, - 0x9c, 0x3c, 0xc2, 0x8e, 0x3e, 0x01, 0xd4, 0x1e, 0xf3, 0x13, 0x25, 0xf8, 0x9a, 0x59, 0x8e, 0x32, - 0x6c, 0xcf, 0xc9, 0x13, 0xc4, 0xa0, 0x4f, 0xe1, 0x76, 0x6f, 0xb2, 0x49, 0xf3, 0x94, 0x78, 0x6d, - 0xca, 0x08, 0x53, 0x1c, 0xc1, 0xf6, 0x9c, 0x3c, 0x4d, 0x60, 0xf9, 0x43, 0x48, 0x50, 0xd5, 0x21, - 0x81, 0xfd, 0x69, 0x73, 0xb7, 0xd9, 0x7a, 0xde, 0x64, 0xb1, 0xa2, 0x56, 0xdf, 0xab, 0x1f, 0xd5, - 0x95, 0x56, 0x73, 0x8f, 0xc4, 0x8a, 0x3b, 0x70, 0x93, 0x03, 0x2a, 0xcd, 0x9a, 0xf2, 0x5c, 0x6e, - 0x08, 0x54, 0xb4, 0xbc, 0x1a, 0xcc, 0x1c, 0xd2, 0x10, 0x6f, 0xb6, 0x9a, 0x75, 0x69, 0x8e, 0xe6, - 0x10, 0xb5, 0x9a, 0x14, 0xa1, 0x39, 0x84, 0xdc, 0x3a, 0x10, 0x21, 0x66, 0x33, 0x07, 0xa0, 0x79, - 0xea, 0xb6, 0x13, 0x4f, 0x27, 0xa5, 0x54, 0xf9, 0xaf, 0x23, 0x90, 0x26, 0x25, 0x59, 0xc3, 0xec, - 0x58, 0xe8, 0x11, 0x64, 0xfa, 0xaa, 0x8d, 0x4d, 0xd7, 0xf7, 0xb4, 0xa2, 0x53, 0x96, 0x3e, 0xa0, - 0x08, 0xaf, 0x91, 0x93, 0x66, 0x84, 0x8d, 0x8b, 0xda, 0x20, 0x5b, 0x20, 0x71, 0x71, 0x4e, 0xfb, - 0x04, 0xf7, 0x54, 0x22, 0x95, 0xf5, 0x6a, 0xde, 0xf0, 0xba, 0x94, 0x14, 0x7f, 0x48, 0xd1, 0x9e, - 0xec, 0x42, 0x3f, 0x08, 0x15, 0x11, 0xe2, 0x3f, 0xee, 0x43, 0x71, 0x24, 0x43, 0xb8, 0xa0, 0xec, - 0x5d, 0xa1, 0x65, 0x6f, 0xcc, 0xf7, 0xfb, 0x5e, 0xd9, 0x1b, 0xe5, 0x15, 0x6f, 0x68, 0xb1, 0xf1, - 0x19, 0x17, 0xfb, 0xc8, 0xcf, 0x82, 0x99, 0xf1, 0xdd, 0xe1, 0x31, 0x65, 0xfe, 0x82, 0x04, 0xf8, - 0x00, 0xe6, 0x7b, 0x96, 0xa6, 0x77, 0x48, 0xbe, 0x47, 0x2c, 0xd7, 0xd5, 0x7b, 0xec, 0x0a, 0x61, - 0x46, 0x87, 0x2b, 0x05, 0xb9, 0x09, 0x12, 0x3d, 0x81, 0x94, 0xe8, 0xee, 0xa4, 0x69, 0x04, 0x98, - 0xd5, 0x63, 0x8a, 0x3c, 0x98, 0x73, 0xa3, 0x2d, 0x28, 0x98, 0xf8, 0x34, 0xd8, 0x8c, 0xcc, 0x84, - 0x7c, 0x4a, 0xae, 0x89, 0x4f, 0x27, 0x77, 0x22, 0x73, 0xa6, 0x8f, 0xd1, 0xd0, 0x47, 0x90, 0x0f, - 0x07, 0x3b, 0xb8, 0x42, 0xb0, 0xcb, 0xf5, 0x83, 0x91, 0x6e, 0x0b, 0x52, 0x22, 0xca, 0x65, 0xaf, - 0x10, 0xe5, 0x04, 0x33, 0xda, 0x24, 0x29, 0xc4, 0xa9, 0xeb, 0xa7, 0x26, 0x39, 0xbf, 0x7c, 0x39, - 0x3f, 0x5b, 0xce, 0x92, 0x15, 0x4e, 0x68, 0x39, 0x66, 0x4d, 0x0f, 0xae, 0xa1, 0x1d, 0x00, 0xef, - 0x62, 0xda, 0xa1, 0x9d, 0xf6, 0xe9, 0x65, 0xec, 0x81, 0x20, 0xf4, 0xa7, 0x24, 0x07, 0xb8, 0xd1, - 0x3e, 0x64, 0x84, 0x3b, 0x66, 0x05, 0xe6, 0x74, 0xbf, 0x35, 0x1e, 0x1c, 0x44, 0x48, 0xf0, 0x24, - 0x90, 0xdc, 0xda, 0xc0, 0xaa, 0x83, 0x79, 0x95, 0xf9, 0x78, 0xc6, 0xdc, 0x9a, 0x19, 0x57, 0xf5, - 0x44, 0x35, 0xbb, 0x78, 0x8f, 0xf0, 0x6f, 0x46, 0x4b, 0x11, 0x99, 0x89, 0x42, 0x4d, 0x90, 0xe8, - 0x96, 0x05, 0x63, 0x8d, 0x44, 0x77, 0xed, 0x4d, 0x61, 0xb8, 0x64, 0xd7, 0xa6, 0xc6, 0x1b, 0xaa, - 0x53, 0xfb, 0x7e, 0xcc, 0xf9, 0x09, 0x14, 0x3a, 0x96, 0xdd, 0x53, 0x5d, 0x45, 0x18, 0xcf, 0xbc, - 0xdf, 0x8f, 0xfa, 0xea, 0x6c, 0x39, 0xbf, 0x45, 0xb1, 0xc2, 0x70, 0xf2, 0x9d, 0xe0, 0x27, 0xda, - 0x14, 0xa1, 0xf9, 0x06, 0x8d, 0xa4, 0x6f, 0x7d, 0xed, 0x66, 0x4d, 0x88, 0xc8, 0x4d, 0x48, 0xd2, - 0xb2, 0xc1, 0x29, 0x2d, 0xd0, 0x1d, 0xbf, 0x62, 0x09, 0x22, 0x73, 0x29, 0x68, 0x0f, 0x0a, 0x1a, - 0x81, 0x90, 0x9a, 0x96, 0x75, 0xba, 0x6e, 0x52, 0xb9, 0xcb, 0x53, 0xe4, 0x0a, 0x17, 0x2b, 0x1a, - 0x1a, 0x82, 0x99, 0x75, 0xc3, 0x5a, 0x90, 0xee, 0xa8, 0x3d, 0xdd, 0xd0, 0xb1, 0x53, 0xba, 0x45, - 0xe5, 0x7c, 0xff, 0x42, 0x7b, 0x1e, 0xbd, 0xf5, 0x10, 0x21, 0x5c, 0x08, 0xf1, 0xcc, 0x9a, 0x02, - 0x86, 0xe4, 0xf8, 0x6e, 0x8f, 0x9b, 0xb5, 0xb8, 0xf5, 0x08, 0xdd, 0x80, 0x50, 0xb3, 0xe6, 0x5f, - 0x1a, 0xba, 0x07, 0xf0, 0x4a, 0xc7, 0xaf, 0x95, 0x97, 0x03, 0x6c, 0x0f, 0x4b, 0xa5, 0x60, 0x01, - 0x4b, 0xe0, 0x1f, 0x11, 0x30, 0x7a, 0x07, 0x32, 0x1a, 0xee, 0x63, 0x53, 0x73, 0x5a, 0x66, 0xe9, - 0x0e, 0x2d, 0x17, 0x6e, 0x9c, 0x9f, 0x2d, 0x67, 0x6a, 0x02, 0xc8, 0xbd, 0xa8, 0x4f, 0x85, 0x3e, - 0x85, 0x1c, 0xfb, 0xc0, 0x5a, 0xcb, 0xdc, 0x1c, 0x96, 0x16, 0xe9, 0xa2, 0x1f, 0xce, 0x78, 0x28, - 0x7e, 0x7b, 0xc8, 0xeb, 0xa8, 0xd7, 0x02, 0xd2, 0xe4, 0x90, 0x6c, 0xf4, 0x3b, 0x90, 0x13, 0x7a, - 0xbc, 0x63, 0x1d, 0x3b, 0xa5, 0x6f, 0x5d, 0xd8, 0xee, 0x1e, 0x1d, 0x6b, 0xdf, 0x67, 0x15, 0x5e, - 0x2a, 0x28, 0x0d, 0x7d, 0x0c, 0x79, 0xef, 0xe2, 0xce, 0xea, 0xbb, 0x4e, 0xe9, 0x0d, 0x6a, 0x86, - 0x8f, 0x66, 0x35, 0x43, 0xce, 0xdb, 0xea, 0xd3, 0x9b, 0x80, 0xc0, 0x17, 0xba, 0x0b, 0x19, 0xcd, - 0xb6, 0xfa, 0x2c, 0x5a, 0x7c, 0x7b, 0x25, 0xb2, 0x1a, 0xf3, 0x7a, 0x14, 0xb6, 0xd5, 0xa7, 0x61, - 0x40, 0x81, 0x82, 0x8d, 0xfb, 0x86, 0xda, 0xc6, 0x3d, 0x12, 0xc7, 0xac, 0x4e, 0x69, 0x89, 0x8e, - 0xbe, 0x31, 0xf3, 0x46, 0x7a, 0xcc, 0x42, 0x31, 0x03, 0xf2, 0x5a, 0x1d, 0xf4, 0x14, 0x40, 0x1d, - 0x68, 0xba, 0xab, 0xf4, 0x2c, 0x0d, 0x97, 0x96, 0x2f, 0xbc, 0x4d, 0x1e, 0x15, 0x5e, 0x21, 0x8c, - 0xfb, 0x96, 0x86, 0xbd, 0xbb, 0x23, 0x01, 0x40, 0xef, 0x40, 0x96, 0x2e, 0xed, 0x53, 0xeb, 0x98, - 0xe8, 0xe6, 0x0a, 0x5d, 0xdc, 0x3c, 0x3f, 0xcb, 0x4c, 0xcd, 0xb6, 0xfa, 0x3b, 0xd6, 0x31, 0xd5, - 0x18, 0xfe, 0xa7, 0x86, 0x1c, 0xc8, 0x75, 0xdb, 0x8a, 0xef, 0x38, 0xef, 0xd2, 0x53, 0x7c, 0x7f, - 0xc6, 0xb9, 0x3c, 0xa9, 0x4e, 0x70, 0xa5, 0x37, 0x44, 0x04, 0x78, 0x52, 0x15, 0x30, 0x47, 0xce, - 0x76, 0xdb, 0xde, 0x07, 0xa9, 0x08, 0x59, 0x23, 0x8c, 0x1b, 0x40, 0x39, 0x58, 0x11, 0x32, 0x0c, - 0x33, 0x81, 0x26, 0xf0, 0x8e, 0x99, 0x42, 0xab, 0x29, 0x76, 0x66, 0xf7, 0x66, 0x8f, 0xf0, 0x05, - 0xc6, 0x5d, 0x71, 0x5a, 0x1d, 0x7a, 0xb0, 0x6d, 0xc8, 0x59, 0x03, 0xf7, 0xd8, 0x1a, 0x98, 0x9a, - 0xd2, 0x79, 0xe1, 0x94, 0xde, 0xa4, 0xab, 0xbd, 0x54, 0x77, 0xc3, 0x5b, 0x5d, 0x8b, 0x0b, 0xda, - 0xda, 0x75, 0xe4, 0xac, 0x90, 0xba, 0xf5, 0xc2, 0x41, 0xbf, 0x84, 0xac, 0x6e, 0xfa, 0x63, 0xdc, - 0xbf, 0xfc, 0x18, 0x48, 0x54, 0x1e, 0x0d, 0xd3, 0x1b, 0x02, 0xb8, 0x4c, 0x32, 0xc2, 0x77, 0xa1, - 0x60, 0x75, 0x3a, 0x86, 0x6e, 0x62, 0xc5, 0xc6, 0xaa, 0x63, 0x99, 0xa5, 0xb7, 0x02, 0x3b, 0x98, - 0xe7, 0x38, 0x99, 0xa2, 0x50, 0x19, 0x32, 0x2e, 0xee, 0xf5, 0x2d, 0x5b, 0xb5, 0x87, 0xa5, 0xb7, - 0x83, 0x57, 0x6e, 0x1e, 0x18, 0x1d, 0xc3, 0xe2, 0xc0, 0xc4, 0xa7, 0x7d, 0xcb, 0xc1, 0x9a, 0x32, - 0x96, 0x5b, 0xae, 0x52, 0x1f, 0x77, 0x9f, 0x4f, 0xea, 0xf6, 0x53, 0x41, 0x39, 0x31, 0xc9, 0xbc, - 0x3d, 0x98, 0x88, 0xd6, 0xd0, 0x0f, 0x61, 0x41, 0x77, 0x94, 0x60, 0xd6, 0xae, 0x10, 0x5f, 0x57, - 0xfa, 0x4e, 0x60, 0x4a, 0x48, 0x77, 0x46, 0x33, 0x7e, 0xf4, 0x0b, 0x28, 0x1a, 0x56, 0x5b, 0x35, - 0x74, 0x77, 0x28, 0xba, 0x86, 0x0f, 0xa8, 0x06, 0xbc, 0x3b, 0xa3, 0x92, 0xee, 0x71, 0x6e, 0xd6, - 0x3b, 0x94, 0x0b, 0x46, 0xe8, 0x7b, 0xf1, 0x57, 0x11, 0x98, 0x1f, 0x8b, 0xda, 0xe8, 0x17, 0x90, - 0x32, 0x2d, 0x2d, 0x70, 0xf1, 0x5a, 0xe7, 0xcb, 0x4f, 0x36, 0x2d, 0x8d, 0xdd, 0xbb, 0x3e, 0xea, - 0xea, 0xee, 0xc9, 0xe0, 0x78, 0xad, 0x6d, 0xf5, 0xd6, 0xbd, 0x99, 0x68, 0xc7, 0xfe, 0xdf, 0xeb, - 0xfd, 0x17, 0xdd, 0x75, 0xfa, 0x57, 0xff, 0x78, 0x8d, 0xb1, 0xc9, 0x49, 0x22, 0xb5, 0xa1, 0x91, - 0x32, 0x1f, 0x9f, 0xf6, 0x75, 0x3b, 0x90, 0xb9, 0x46, 0x03, 0xbe, 0xa8, 0xe0, 0x23, 0x89, 0xe2, - 0xf2, 0xab, 0xb1, 0x5f, 0x47, 0xa1, 0x38, 0x12, 0x39, 0x49, 0xaa, 0x4e, 0xbb, 0x2a, 0xa1, 0x54, - 0x9d, 0x40, 0x2e, 0x28, 0x20, 0x82, 0x0f, 0x78, 0x62, 0xd7, 0x7d, 0xc0, 0x13, 0xbe, 0x72, 0x4a, - 0x5c, 0xe2, 0xca, 0xe9, 0xc7, 0x70, 0x4b, 0x77, 0x14, 0xd3, 0x32, 0x45, 0x67, 0xd0, 0x2b, 0x8e, - 0x83, 0xcf, 0x44, 0x6e, 0xe8, 0x4e, 0xd3, 0x32, 0x59, 0x4f, 0xd0, 0x5b, 0xb5, 0xff, 0xa2, 0x24, - 0x35, 0xfe, 0xa2, 0xc4, 0xeb, 0xfc, 0xc5, 0xa5, 0xc4, 0xe2, 0xe7, 0x11, 0xc8, 0x04, 0x9f, 0x25, - 0x46, 0xc3, 0xcd, 0xae, 0xb1, 0xf2, 0xe5, 0x8a, 0x17, 0xe8, 0xe1, 0x5d, 0x88, 0xcd, 0xbe, 0x0b, - 0xfc, 0x68, 0x7f, 0x1f, 0xb2, 0x81, 0x90, 0x38, 0xda, 0x90, 0x88, 0x5c, 0xa1, 0x21, 0xf1, 0x26, - 0x24, 0x79, 0x1c, 0x60, 0x8a, 0x95, 0xe7, 0xdc, 0x09, 0x16, 0x03, 0x12, 0x9f, 0x12, 0xff, 0xcf, - 0x47, 0xff, 0xe7, 0x18, 0xe4, 0x82, 0x21, 0x93, 0x38, 0x0d, 0xdd, 0x6c, 0xdb, 0x34, 0x5e, 0xd1, - 0xd1, 0x63, 0xde, 0x3d, 0xbd, 0x00, 0x93, 0x40, 0xda, 0xd3, 0x4d, 0x85, 0xde, 0x0d, 0x87, 0x94, - 0x37, 0xdd, 0xd3, 0xcd, 0x67, 0x04, 0x4a, 0x49, 0xd4, 0x53, 0x4e, 0x12, 0x0b, 0x91, 0xa8, 0xa7, - 0x8c, 0x64, 0x91, 0x66, 0xa1, 0xb6, 0x4b, 0x4b, 0xc5, 0x58, 0x20, 0xbb, 0xb4, 0x5d, 0xb4, 0x04, - 0xa9, 0x57, 0xba, 0xed, 0x0e, 0x54, 0x83, 0x56, 0x85, 0xe2, 0x98, 0x05, 0x10, 0x99, 0x50, 0xf0, - 0x93, 0x84, 0xd7, 0x26, 0xb6, 0xa9, 0xe2, 0x64, 0x37, 0x2a, 0x57, 0xc8, 0x12, 0xfc, 0x0f, 0x22, - 0x48, 0xb8, 0x52, 0x27, 0x08, 0x5c, 0xfc, 0xab, 0x08, 0xe4, 0x43, 0x64, 0xa8, 0x01, 0x45, 0x3a, - 0xf0, 0x58, 0x27, 0xf5, 0xae, 0xf7, 0xc0, 0x90, 0xa0, 0x27, 0x56, 0x7a, 0x79, 0x2b, 0x80, 0xd2, - 0xd0, 0x87, 0x50, 0x60, 0xa2, 0xbc, 0x17, 0x1f, 0x61, 0xf5, 0xcb, 0x51, 0x49, 0xe1, 0x67, 0x1f, - 0x39, 0xcb, 0x87, 0x69, 0xc1, 0xcb, 0xec, 0x45, 0x13, 0xb2, 0x81, 0x2c, 0x64, 0x06, 0xbd, 0xff, - 0x11, 0xc4, 0x3d, 0x2f, 0x34, 0x6b, 0xc3, 0xd2, 0xf5, 0x5d, 0xd3, 0x67, 0x11, 0x58, 0x98, 0x94, - 0x0d, 0x84, 0xec, 0x89, 0x29, 0xd2, 0x4c, 0xf6, 0x74, 0x2f, 0x98, 0xa5, 0x31, 0xe5, 0x12, 0x17, - 0xac, 0x7e, 0x9e, 0xf6, 0x96, 0xa7, 0xe2, 0x4c, 0xb7, 0x8a, 0x21, 0x15, 0x27, 0x75, 0x57, 0x50, - 0xc9, 0xff, 0x31, 0x06, 0x85, 0x70, 0x2c, 0x40, 0xcf, 0x20, 0xd9, 0x35, 0xac, 0x63, 0xd5, 0xe0, - 0x0d, 0xd2, 0x9f, 0x5c, 0x29, 0xa4, 0xac, 0x3d, 0xa1, 0x32, 0xb6, 0xe7, 0x64, 0x2e, 0x0d, 0x39, - 0x30, 0x6f, 0xe3, 0xae, 0x6e, 0x99, 0xaa, 0xa1, 0x1c, 0x0f, 0xd9, 0x89, 0xf2, 0x9d, 0xad, 0x5f, - 0x6d, 0x08, 0x99, 0x8b, 0xdb, 0x1c, 0x52, 0xc2, 0xed, 0x39, 0xb9, 0x68, 0x87, 0x41, 0xa8, 0x07, - 0xc5, 0xe0, 0xa0, 0xb6, 0xf5, 0x9a, 0x77, 0x9f, 0xab, 0xd7, 0x1d, 0x52, 0xb6, 0x5e, 0x6f, 0xd3, - 0x1c, 0x36, 0x00, 0x58, 0x7c, 0x1f, 0x8a, 0x23, 0x93, 0x42, 0x65, 0x48, 0x32, 0x1a, 0x1e, 0x8d, - 0xe0, 0xab, 0xb3, 0xe5, 0x24, 0x23, 0x92, 0x39, 0x86, 0x9f, 0xc5, 0x4d, 0xc8, 0x87, 0xc4, 0x73, - 0x70, 0x01, 0x92, 0x6c, 0x2f, 0x83, 0xba, 0xbc, 0x09, 0x90, 0x16, 0x31, 0xbb, 0xbc, 0x0a, 0x19, - 0x2f, 0x01, 0x46, 0x39, 0x48, 0xd7, 0x1a, 0x87, 0x95, 0xcd, 0xbd, 0x7a, 0x4d, 0x9a, 0x43, 0x79, - 0xc8, 0xc8, 0xf5, 0x4a, 0x8d, 0xb6, 0xf2, 0xa4, 0xc8, 0x7b, 0xe9, 0x3f, 0xfa, 0x6c, 0x39, 0xc2, - 0x03, 0x41, 0x52, 0x4a, 0xed, 0xc4, 0xd3, 0x48, 0xba, 0x51, 0xfe, 0xcf, 0x34, 0xa0, 0x9a, 0xea, - 0xaa, 0x64, 0x03, 0x2e, 0xd1, 0xf0, 0x8a, 0x5e, 0x60, 0x39, 0xe1, 0x26, 0x46, 0xec, 0x5a, 0x4d, - 0x8c, 0x89, 0x2d, 0xad, 0xf8, 0x75, 0x5a, 0x5a, 0x57, 0xea, 0xac, 0x8d, 0x97, 0xe1, 0xc9, 0x6b, - 0x94, 0xe1, 0xcf, 0x20, 0xc5, 0x92, 0x49, 0xf6, 0xa2, 0x64, 0x7a, 0x97, 0x60, 0xfc, 0x60, 0x78, - 0x3f, 0xc5, 0xa9, 0x9b, 0xae, 0x3d, 0xf4, 0x2e, 0x9b, 0x19, 0xcc, 0x6f, 0x60, 0xa4, 0xaf, 0xde, - 0xc0, 0x18, 0x4f, 0xa5, 0x33, 0xd3, 0x53, 0xe9, 0x4f, 0x80, 0xdb, 0x80, 0x48, 0x44, 0xe1, 0xc2, - 0x7b, 0xd7, 0x09, 0xcb, 0x61, 0x4a, 0xcf, 0x33, 0xd1, 0x9c, 0x1d, 0xf8, 0x5a, 0x3c, 0x02, 0xe0, - 0xb9, 0xb2, 0xd9, 0xb1, 0x66, 0x70, 0xd8, 0x4b, 0x90, 0x22, 0x8e, 0xb0, 0x8f, 0x99, 0x76, 0x7a, - 0xc1, 0x91, 0x03, 0xb9, 0x45, 0xf5, 0x21, 0x17, 0xdc, 0x42, 0x24, 0x41, 0xec, 0x05, 0x1e, 0x32, - 0x3d, 0x97, 0xc9, 0x9f, 0x68, 0x07, 0x12, 0x7e, 0x08, 0x9f, 0xfe, 0x8c, 0x71, 0xea, 0xd9, 0x90, - 0xe9, 0xca, 0x4c, 0xc4, 0x7b, 0xd1, 0xc7, 0x91, 0xc5, 0x3f, 0x8c, 0x42, 0x2e, 0xb8, 0x4c, 0xf4, - 0x26, 0xa4, 0xd8, 0x42, 0xd9, 0x4b, 0xc9, 0xb0, 0x5b, 0x10, 0x28, 0xd4, 0x84, 0xbc, 0x33, 0xb0, - 0x5f, 0xe9, 0xaf, 0x54, 0x43, 0xe9, 0x5a, 0xaa, 0x41, 0xa7, 0x53, 0xd8, 0xb8, 0x37, 0xed, 0x25, - 0x02, 0xa7, 0x7d, 0x62, 0xa9, 0x86, 0x68, 0x20, 0x38, 0x01, 0x18, 0x7a, 0xd7, 0xbb, 0x20, 0x51, - 0xb8, 0x4f, 0x62, 0xf7, 0x8e, 0x05, 0xae, 0xfe, 0x62, 0x02, 0xa2, 0xbf, 0xca, 0x3e, 0x49, 0x14, - 0xe6, 0x47, 0x8c, 0xcd, 0x41, 0xcf, 0x6f, 0x61, 0x7b, 0x51, 0x98, 0xd1, 0xd5, 0xcd, 0x41, 0xcf, - 0x8f, 0xc2, 0xb6, 0x0f, 0x13, 0x51, 0xd8, 0xf3, 0x3e, 0xe5, 0x7f, 0xca, 0x42, 0xe1, 0x68, 0xd8, - 0x0f, 0x7a, 0x9b, 0x2b, 0xdd, 0x07, 0x4c, 0xea, 0xfa, 0x47, 0x2f, 0xdf, 0xf5, 0xbf, 0xe0, 0x07, - 0x35, 0x4c, 0xe7, 0xe2, 0x17, 0xe8, 0x5c, 0x0d, 0xe2, 0xf4, 0x1d, 0x72, 0x82, 0x9e, 0xcd, 0x34, - 0x27, 0x17, 0x5e, 0xed, 0x5a, 0xe0, 0x29, 0x32, 0xe5, 0x46, 0x3f, 0x83, 0x1c, 0xdd, 0xdc, 0x1e, - 0xee, 0x1d, 0x63, 0x5b, 0xf8, 0x96, 0x87, 0xb3, 0x49, 0x23, 0xbb, 0xbc, 0x4f, 0x19, 0x45, 0xc3, - 0x00, 0x7b, 0x10, 0x07, 0x3d, 0x84, 0x84, 0x6a, 0xe8, 0xd4, 0xd1, 0x7c, 0xdd, 0xfb, 0x76, 0x46, - 0x88, 0x3e, 0x80, 0xbc, 0x6a, 0xdb, 0xea, 0x90, 0xbf, 0xd4, 0xd6, 0xa8, 0x33, 0xe1, 0x5e, 0x92, - 0x94, 0xf9, 0x15, 0x82, 0xa4, 0x8f, 0xb3, 0xc5, 0x46, 0x64, 0x55, 0x0f, 0x14, 0xba, 0xb8, 0xc8, - 0x5c, 0xef, 0xe2, 0x02, 0xae, 0xe3, 0xe5, 0xc7, 0x1d, 0x76, 0xf6, 0x1a, 0x0e, 0xfb, 0x97, 0xb0, - 0x28, 0x1e, 0xb1, 0x11, 0x81, 0xfe, 0xe5, 0x56, 0xe0, 0x0d, 0x7d, 0xf9, 0xfc, 0x6c, 0xb9, 0x24, - 0xfb, 0x54, 0xfe, 0x72, 0x59, 0xad, 0x43, 0x76, 0xaa, 0x64, 0x4f, 0xc4, 0x6b, 0x01, 0xd7, 0x9d, - 0xbf, 0xba, 0xeb, 0x0e, 0xc7, 0xdd, 0xc2, 0xb5, 0xe2, 0xee, 0x78, 0x18, 0x28, 0x4e, 0x0f, 0x03, - 0xcf, 0x47, 0xc3, 0x80, 0x74, 0x71, 0x77, 0x30, 0xac, 0xc0, 0x17, 0x84, 0x80, 0x3f, 0x8b, 0x02, - 0xf8, 0xfa, 0x8d, 0x7e, 0x04, 0xb7, 0xfb, 0x27, 0x43, 0x47, 0x6f, 0xab, 0x86, 0x62, 0xe3, 0xbe, - 0x8d, 0x1d, 0x6c, 0xb2, 0xac, 0x9a, 0x3a, 0x8d, 0x9c, 0x7c, 0x4b, 0xa0, 0xe5, 0x10, 0x16, 0xbd, - 0x0f, 0xb7, 0x0c, 0xab, 0x3b, 0x89, 0x2f, 0xd8, 0x0b, 0xb8, 0xc9, 0x69, 0x46, 0x98, 0x55, 0x80, - 0xb6, 0xda, 0x57, 0x8f, 0x75, 0xc3, 0x6f, 0x0f, 0xbc, 0x7f, 0x59, 0xdb, 0x5c, 0xab, 0x7a, 0x22, - 0xc4, 0xeb, 0x08, 0x5f, 0x68, 0xf9, 0x4d, 0x00, 0x1f, 0x4f, 0xef, 0x55, 0xf7, 0xf6, 0xfc, 0x04, - 0x8e, 0xdf, 0xd0, 0xf2, 0x00, 0xb6, 0x3b, 0x12, 0x4d, 0xc6, 0xfd, 0x7a, 0x64, 0x06, 0xbf, 0xce, - 0xef, 0x3a, 0xdf, 0x81, 0x38, 0xf1, 0x46, 0x28, 0x0d, 0xf1, 0x7a, 0xf3, 0xe9, 0xbe, 0x34, 0x87, - 0x32, 0x90, 0xa8, 0xec, 0x35, 0x2a, 0x87, 0x52, 0x04, 0x2d, 0x80, 0xb4, 0xff, 0x74, 0xef, 0xa8, - 0x21, 0xd7, 0x9f, 0x34, 0x5a, 0x4d, 0x85, 0x12, 0x44, 0x03, 0x8e, 0xfc, 0x2f, 0xe3, 0x20, 0x31, - 0x2f, 0x7a, 0x5d, 0x57, 0x3e, 0xbd, 0x33, 0xf3, 0xf5, 0xd7, 0xab, 0x61, 0xad, 0x8f, 0x7f, 0xf3, - 0xd9, 0x66, 0xe2, 0x1b, 0xca, 0x36, 0x93, 0xd7, 0xc8, 0x36, 0x53, 0xd7, 0x70, 0x5e, 0xff, 0xdf, - 0x59, 0x61, 0x40, 0x43, 0x3e, 0x8f, 0x02, 0x04, 0x74, 0xe3, 0xa7, 0xc1, 0xdf, 0xc0, 0x4e, 0xbf, - 0x67, 0x1d, 0x29, 0xc3, 0xb6, 0xe7, 0xc4, 0x2f, 0x64, 0x9f, 0x40, 0x5a, 0xe3, 0x59, 0x17, 0x4f, - 0xce, 0xbe, 0x33, 0x73, 0x72, 0xb6, 0x3d, 0x27, 0x7b, 0xcc, 0xe8, 0xfd, 0xd0, 0x8f, 0xbe, 0xee, - 0xcf, 0x64, 0xcc, 0xdb, 0xe2, 0x55, 0x6b, 0x05, 0x92, 0x2c, 0xe1, 0xe0, 0xca, 0x36, 0xf5, 0xd7, - 0x47, 0x23, 0xa6, 0x41, 0xca, 0x61, 0xc6, 0xc8, 0xcb, 0xb8, 0x14, 0x24, 0x06, 0xa6, 0x6e, 0x99, - 0x0f, 0xe4, 0xe0, 0x7b, 0x4a, 0xd1, 0x57, 0x24, 0xd6, 0x4f, 0xff, 0x56, 0x5d, 0xac, 0xb1, 0x07, - 0x1b, 0x4f, 0xcd, 0x57, 0x1e, 0x20, 0x82, 0x0a, 0x00, 0x1c, 0xaf, 0x9b, 0x5d, 0x29, 0x4a, 0x8b, - 0x3f, 0x92, 0xea, 0x92, 0xaf, 0xd8, 0x83, 0x0f, 0x40, 0x1a, 0xfd, 0xf9, 0x53, 0xe0, 0xe9, 0xc6, - 0x3c, 0xe4, 0xf7, 0x9f, 0x55, 0xab, 0x47, 0x8d, 0xfd, 0xfa, 0xe1, 0x51, 0x65, 0xff, 0x80, 0xbd, - 0x15, 0x3c, 0x22, 0x95, 0x63, 0xab, 0x51, 0x93, 0xa2, 0x0f, 0x3e, 0x80, 0xe2, 0x88, 0x42, 0x20, - 0x80, 0xe4, 0xc1, 0xd3, 0xcd, 0xbd, 0x46, 0x75, 0xe2, 0xd3, 0x0f, 0x94, 0x85, 0x54, 0x6b, 0x6b, - 0x6b, 0xaf, 0xd1, 0xac, 0x4b, 0xb1, 0x07, 0x3f, 0x80, 0x5c, 0x30, 0x21, 0x45, 0x12, 0xe4, 0x7e, - 0xde, 0x6a, 0xd6, 0x95, 0xad, 0x4a, 0x63, 0xef, 0xa9, 0x4c, 0x66, 0x80, 0xa0, 0xc0, 0xfd, 0x8a, - 0x80, 0x45, 0x36, 0x57, 0xbf, 0xf8, 0xb7, 0xa5, 0xb9, 0x2f, 0xce, 0x97, 0x22, 0xbf, 0x39, 0x5f, - 0x8a, 0xfc, 0xf6, 0x7c, 0x29, 0xf2, 0xaf, 0xe7, 0x4b, 0x91, 0x3f, 0xfd, 0x72, 0x69, 0xee, 0x37, - 0x5f, 0x2e, 0xcd, 0xfd, 0xf6, 0xcb, 0xa5, 0xb9, 0x9f, 0x27, 0xd9, 0xaf, 0xb7, 0xff, 0x37, 0x00, - 0x00, 0xff, 0xff, 0xdd, 0xc9, 0x6f, 0x3e, 0x28, 0x3e, 0x00, 0x00, + proto.RegisterFile("sql/catalog/descpb/structured.proto", fileDescriptor_structured_0fd341afaf30beaa) +} + +var fileDescriptor_structured_0fd341afaf30beaa = []byte{ + // 4806 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x3b, 0x49, 0x6c, 0x23, 0x57, + 0x76, 0xe2, 0x4e, 0x3e, 0x6e, 0xa5, 0xdf, 0xea, 0x6e, 0xb6, 0xc6, 0x23, 0xa9, 0xd9, 0x6e, 0x5b, + 0xde, 0xa4, 0xb6, 0xda, 0x33, 0xd3, 0x63, 0xc7, 0x03, 0x53, 0x24, 0xd5, 0xa2, 0x16, 0x52, 0x2e, + 0x49, 0xdd, 0x9e, 0x71, 0x92, 0x9a, 0x12, 0xeb, 0x93, 0x2a, 0x77, 0xb1, 0x8a, 0x5d, 0x55, 0x54, + 0x4b, 0x41, 0x4e, 0xc9, 0x25, 0xa7, 0x2c, 0x87, 0x1c, 0x83, 0x18, 0x81, 0x81, 0xcc, 0x2d, 0x98, + 0x4b, 0x72, 0x0b, 0x90, 0x9b, 0x8f, 0x93, 0xdb, 0x9c, 0x84, 0x44, 0xbe, 0xe4, 0x16, 0x04, 0x08, + 0x12, 0xc0, 0x40, 0x80, 0xe0, 0x6f, 0xb5, 0x70, 0x91, 0x29, 0xc9, 0xc9, 0xa1, 0x1b, 0xaa, 0xb7, + 0xfd, 0xed, 0xed, 0xff, 0x13, 0x1e, 0x38, 0x2f, 0x8d, 0xd5, 0xb6, 0xea, 0xaa, 0x86, 0xd5, 0x5d, + 0xd5, 0xb0, 0xd3, 0xee, 0x1f, 0xad, 0x3a, 0xae, 0x3d, 0x68, 0xbb, 0x03, 0x1b, 0x6b, 0x2b, 0x7d, + 0xdb, 0x72, 0x2d, 0x74, 0xbb, 0x6d, 0xb5, 0x5f, 0xd8, 0x96, 0xda, 0x3e, 0x5e, 0x71, 0x5e, 0x1a, + 0xe4, 0xdf, 0x91, 0xea, 0xe0, 0xf9, 0xd2, 0xc0, 0xd5, 0x8d, 0xd5, 0x63, 0xa3, 0xbd, 0xea, 0xea, + 0x3d, 0xec, 0xb8, 0x6a, 0xaf, 0xcf, 0x18, 0xe6, 0xcb, 0x63, 0xa4, 0xf6, 0x6d, 0xfd, 0x44, 0x37, + 0x70, 0x17, 0x73, 0x9a, 0xdb, 0x84, 0xc6, 0x3d, 0xeb, 0x63, 0x87, 0xfd, 0xcf, 0xc1, 0xf7, 0xba, + 0xd8, 0x5a, 0xed, 0x62, 0x4b, 0x37, 0x35, 0x7c, 0xba, 0xda, 0xb6, 0xcc, 0x8e, 0xde, 0xe5, 0xa8, + 0xb9, 0xae, 0xd5, 0xb5, 0xe8, 0x9f, 0xab, 0xe4, 0x2f, 0x06, 0x2d, 0xff, 0x51, 0x02, 0x6e, 0x6d, + 0x58, 0x36, 0xd6, 0xbb, 0xe6, 0x36, 0x3e, 0x93, 0x71, 0x07, 0xdb, 0xd8, 0x6c, 0x63, 0xb4, 0x04, + 0x09, 0x57, 0x3d, 0x32, 0x70, 0x29, 0xb2, 0x14, 0x59, 0xce, 0xaf, 0xc3, 0xd7, 0xe7, 0x8b, 0x33, + 0xdf, 0x9e, 0x2f, 0x46, 0x1b, 0x35, 0x99, 0x21, 0xd0, 0x43, 0x48, 0xd0, 0x51, 0x4a, 0x51, 0x4a, + 0x51, 0xe4, 0x14, 0xa9, 0x06, 0x01, 0x12, 0x32, 0x8a, 0x45, 0x25, 0x88, 0x9b, 0x6a, 0x0f, 0x97, + 0x62, 0x4b, 0x91, 0xe5, 0xcc, 0x7a, 0x9c, 0x50, 0xc9, 0x14, 0x82, 0xb6, 0x21, 0x7d, 0xa2, 0x1a, + 0xba, 0xa6, 0xbb, 0x67, 0xa5, 0xf8, 0x52, 0x64, 0xb9, 0xb0, 0xf6, 0xd6, 0xca, 0xd8, 0xad, 0x5a, + 0xa9, 0x5a, 0xa6, 0xe3, 0xda, 0xaa, 0x6e, 0xba, 0xcf, 0x38, 0x03, 0x17, 0xe4, 0x09, 0x40, 0x8f, + 0x60, 0xd6, 0x39, 0x56, 0x6d, 0xac, 0x29, 0x7d, 0x1b, 0x77, 0xf4, 0x53, 0xc5, 0xc0, 0x66, 0x29, + 0xb1, 0x14, 0x59, 0x4e, 0x70, 0xd2, 0x22, 0x43, 0xef, 0x51, 0xec, 0x0e, 0x36, 0xd1, 0x01, 0x64, + 0x2c, 0x53, 0xd1, 0xb0, 0x81, 0x5d, 0x5c, 0x4a, 0xd2, 0xf1, 0xdf, 0x9f, 0x30, 0xfe, 0x98, 0x0d, + 0x5a, 0xa9, 0xb4, 0x5d, 0xdd, 0x32, 0xc5, 0x3c, 0x2c, 0xb3, 0x46, 0x05, 0x71, 0xa9, 0x83, 0xbe, + 0xa6, 0xba, 0xb8, 0x94, 0xba, 0xb1, 0xd4, 0x43, 0x2a, 0x08, 0xed, 0x40, 0xa2, 0xa7, 0xba, 0xed, + 0xe3, 0x52, 0x9a, 0x4a, 0x7c, 0x74, 0x05, 0x89, 0xbb, 0x84, 0x8f, 0x0b, 0x64, 0x42, 0xca, 0xcf, + 0x21, 0xc9, 0xc6, 0x41, 0x79, 0xc8, 0x34, 0x5b, 0x4a, 0xa5, 0x7a, 0xd0, 0x68, 0x35, 0xa5, 0x19, + 0x94, 0x83, 0xb4, 0x5c, 0xdf, 0x3f, 0x90, 0x1b, 0xd5, 0x03, 0x29, 0x42, 0xbe, 0xf6, 0xeb, 0x07, + 0x4a, 0xf3, 0x70, 0x67, 0x47, 0x8a, 0xa2, 0x22, 0x64, 0xc9, 0x57, 0xad, 0xbe, 0x51, 0x39, 0xdc, + 0x39, 0x90, 0x62, 0x28, 0x0b, 0xa9, 0x6a, 0x65, 0xbf, 0x5a, 0xa9, 0xd5, 0xa5, 0xf8, 0x7c, 0xfc, + 0x57, 0x5f, 0x2d, 0xcc, 0x94, 0x1f, 0x41, 0x82, 0x0e, 0x87, 0x00, 0x92, 0xfb, 0x8d, 0xdd, 0xbd, + 0x9d, 0xba, 0x34, 0x83, 0xd2, 0x10, 0xdf, 0x20, 0x22, 0x22, 0x84, 0x63, 0xaf, 0x22, 0x1f, 0x34, + 0x2a, 0x3b, 0x52, 0x94, 0x71, 0x7c, 0x18, 0xff, 0xb7, 0x2f, 0x17, 0x23, 0xe5, 0x7f, 0x4e, 0xc0, + 0x9c, 0x3f, 0x77, 0xff, 0xb4, 0x51, 0x15, 0x8a, 0x96, 0xad, 0x77, 0x75, 0x53, 0xa1, 0x3a, 0xa7, + 0xe8, 0x1a, 0xd7, 0xc7, 0x1f, 0x90, 0xf5, 0x5c, 0x9c, 0x2f, 0xe6, 0x5b, 0x14, 0x7d, 0x40, 0xb0, + 0x8d, 0x1a, 0x57, 0xd0, 0xbc, 0x15, 0x00, 0x6a, 0x68, 0x1b, 0x66, 0xb9, 0x90, 0xb6, 0x65, 0x0c, + 0x7a, 0xa6, 0xa2, 0x6b, 0x4e, 0x29, 0xba, 0x14, 0x5b, 0xce, 0xaf, 0x2f, 0x5e, 0x9c, 0x2f, 0x16, + 0x99, 0x88, 0x2a, 0xc5, 0x35, 0x6a, 0xce, 0xb7, 0xe7, 0x8b, 0x69, 0xf1, 0x21, 0xf3, 0xe1, 0xf9, + 0xb7, 0xe6, 0xa0, 0xe7, 0x70, 0xdb, 0x16, 0x7b, 0xab, 0x05, 0x05, 0xc6, 0xa8, 0xc0, 0x07, 0x17, + 0xe7, 0x8b, 0xb7, 0xbc, 0xcd, 0xd7, 0xc6, 0x0b, 0xbd, 0x65, 0x0f, 0x13, 0x68, 0x0e, 0x6a, 0x41, + 0x00, 0xec, 0x2f, 0x37, 0x4e, 0x97, 0xbb, 0xc8, 0x97, 0x3b, 0xeb, 0x8b, 0x0e, 0x2f, 0x79, 0xd6, + 0x1e, 0x42, 0x68, 0x9e, 0xe1, 0x25, 0x2e, 0x35, 0xbc, 0xe4, 0x4d, 0x0d, 0x2f, 0x64, 0x46, 0xa9, + 0xff, 0x13, 0x33, 0x4a, 0x7f, 0xef, 0x66, 0x94, 0xf9, 0x1e, 0xcc, 0x88, 0xe9, 0xee, 0x56, 0x3c, + 0x0d, 0x52, 0x76, 0x2b, 0x9e, 0xce, 0x4a, 0xb9, 0xad, 0x78, 0x3a, 0x27, 0xe5, 0xb7, 0xe2, 0xe9, + 0xbc, 0x54, 0x28, 0xff, 0x47, 0x1c, 0x24, 0x76, 0xba, 0x35, 0xec, 0xb4, 0x6d, 0xbd, 0xef, 0x5a, + 0xb6, 0x77, 0x26, 0x91, 0x91, 0x33, 0x79, 0x03, 0xa2, 0xba, 0xc6, 0x5d, 0xe9, 0x1d, 0x7e, 0xda, + 0x51, 0x7a, 0xbc, 0xbe, 0xde, 0x44, 0x75, 0x0d, 0xad, 0x40, 0x9c, 0xf8, 0x7b, 0xea, 0x4e, 0xb3, + 0x6b, 0xf3, 0xc3, 0x2b, 0xc0, 0xbd, 0x15, 0x16, 0x0e, 0x0e, 0x64, 0x4a, 0x87, 0x96, 0x20, 0x6d, + 0x0e, 0x0c, 0x83, 0xba, 0x72, 0xa2, 0x4b, 0x69, 0xb1, 0x29, 0x02, 0x8a, 0xee, 0x43, 0x4e, 0xc3, + 0x1d, 0x75, 0x60, 0xb8, 0x0a, 0x3e, 0xed, 0xdb, 0x4c, 0x5f, 0xe4, 0x2c, 0x87, 0xd5, 0x4f, 0xfb, + 0x36, 0x7a, 0x0d, 0x92, 0xc7, 0xba, 0xa6, 0x61, 0x93, 0xaa, 0x8b, 0x10, 0xc1, 0x61, 0x68, 0x0d, + 0x66, 0x07, 0x0e, 0x76, 0x14, 0x07, 0xbf, 0x1c, 0x90, 0xbd, 0xa2, 0xe6, 0x00, 0xd4, 0x1c, 0x92, + 0x5c, 0x3d, 0x8b, 0x84, 0x60, 0x9f, 0xe3, 0x89, 0xb6, 0xdf, 0x87, 0x5c, 0xdb, 0xea, 0xf5, 0x07, + 0x2e, 0x66, 0x83, 0x66, 0xd9, 0xa0, 0x1c, 0x46, 0x07, 0x5d, 0x83, 0x59, 0xeb, 0x95, 0x39, 0x24, + 0x36, 0x17, 0x16, 0x4b, 0x08, 0x82, 0x62, 0x3f, 0x01, 0xa9, 0xdf, 0x55, 0x54, 0xd7, 0xb5, 0xf5, + 0x23, 0x22, 0xdb, 0x1c, 0xf4, 0x4a, 0xf9, 0xd0, 0x9e, 0x16, 0xf6, 0x9e, 0x56, 0x04, 0xba, 0x39, + 0xe8, 0xc9, 0x85, 0x7e, 0x37, 0xf8, 0x8d, 0x36, 0xe0, 0x87, 0xaa, 0xe1, 0x62, 0x5b, 0x98, 0x36, + 0xd9, 0x44, 0x45, 0x37, 0x95, 0xbe, 0x6d, 0x75, 0x6d, 0xec, 0x38, 0xa5, 0x42, 0x60, 0x07, 0xee, + 0x51, 0x52, 0x76, 0x3e, 0x07, 0x67, 0x7d, 0xdc, 0x30, 0xf7, 0x38, 0x19, 0xfa, 0x1c, 0x90, 0x73, + 0xe6, 0xb8, 0xb8, 0x27, 0x04, 0xbd, 0xd0, 0x4d, 0xad, 0x54, 0xa4, 0x7a, 0xf7, 0xe6, 0x04, 0xbd, + 0xdb, 0xa7, 0x0c, 0x4c, 0xdc, 0xb6, 0x6e, 0x6a, 0x7c, 0x14, 0xc9, 0x19, 0x82, 0x7b, 0x9a, 0x97, + 0x96, 0x32, 0x5b, 0xf1, 0x74, 0x46, 0x82, 0xad, 0x78, 0x3a, 0x25, 0xa5, 0xcb, 0x7f, 0x1a, 0x85, + 0x3b, 0x8c, 0x6c, 0x43, 0xed, 0xe9, 0xc6, 0xd9, 0x4d, 0x35, 0x8f, 0x49, 0xe1, 0x9a, 0x47, 0x8f, + 0x8c, 0x2e, 0x85, 0xb0, 0x31, 0x87, 0x47, 0x8f, 0x8c, 0xc0, 0x9a, 0x04, 0x84, 0x9e, 0x00, 0x04, + 0x3c, 0x62, 0x9c, 0x9e, 0xd5, 0xbd, 0x8b, 0xf3, 0xc5, 0xcc, 0x78, 0x3f, 0x98, 0x69, 0x07, 0xbc, + 0xdf, 0xac, 0x50, 0x42, 0x4f, 0x02, 0xd5, 0xc4, 0xfc, 0xfa, 0x03, 0x3e, 0xa7, 0x62, 0x8d, 0x11, + 0x08, 0xf6, 0xb0, 0x9f, 0xd6, 0x42, 0x48, 0xbe, 0x45, 0xe5, 0x7f, 0x88, 0xc2, 0x5c, 0xc3, 0x74, + 0xb1, 0x6d, 0x60, 0xf5, 0x04, 0x07, 0xb6, 0xe3, 0x33, 0xc8, 0xa8, 0x66, 0x1b, 0x3b, 0xae, 0x65, + 0x3b, 0xa5, 0xc8, 0x52, 0x6c, 0x39, 0xbb, 0xf6, 0xc1, 0x84, 0x53, 0x19, 0xc7, 0xbf, 0x52, 0xe1, + 0xcc, 0x7c, 0x27, 0x7d, 0x61, 0xf3, 0xff, 0x18, 0x81, 0xb4, 0xc0, 0xa2, 0x47, 0x90, 0x1e, 0x0a, + 0x5c, 0xb7, 0xf9, 0x6a, 0x52, 0x61, 0xff, 0x9d, 0x72, 0xb9, 0xd7, 0xfe, 0x11, 0xa4, 0x69, 0xde, + 0xa4, 0x78, 0x67, 0x32, 0x2f, 0x38, 0x78, 0x62, 0x15, 0xcc, 0xb1, 0x52, 0x94, 0xb6, 0xa1, 0xa1, + 0xea, 0xb8, 0xf4, 0x27, 0x46, 0xf9, 0xef, 0x8a, 0xfd, 0xdb, 0x0f, 0x27, 0x40, 0x23, 0x19, 0x11, + 0xdb, 0x33, 0xbe, 0x73, 0x7f, 0x1f, 0x81, 0x59, 0xc2, 0xa0, 0x61, 0x2d, 0xb0, 0x6d, 0x0f, 0x00, + 0x74, 0x47, 0x71, 0x18, 0x9c, 0xae, 0x48, 0x98, 0x42, 0x46, 0x77, 0x38, 0xb9, 0xa7, 0x6a, 0xd1, + 0x11, 0x55, 0xfb, 0x29, 0xe4, 0x29, 0xaf, 0x72, 0x34, 0x68, 0xbf, 0xc0, 0xae, 0x43, 0x67, 0x98, + 0x58, 0x9f, 0xe3, 0x33, 0xcc, 0x51, 0x09, 0xeb, 0x0c, 0x27, 0xe7, 0x9c, 0xc0, 0xd7, 0x88, 0xf6, + 0xc5, 0x47, 0xb4, 0x8f, 0x4f, 0xfc, 0xbf, 0x63, 0x70, 0x67, 0x4f, 0xb5, 0x5d, 0x9d, 0x44, 0x00, + 0xdd, 0xec, 0x06, 0x66, 0xff, 0x10, 0xb2, 0xe6, 0x40, 0x18, 0xa4, 0xc3, 0x0f, 0x84, 0xcd, 0x0f, + 0xcc, 0x01, 0x37, 0x30, 0x07, 0xed, 0x40, 0xdc, 0xd0, 0x1d, 0x97, 0xa6, 0x08, 0xd9, 0xb5, 0xb5, + 0x09, 0x6a, 0x31, 0x7e, 0x8c, 0x95, 0x1d, 0xdd, 0x71, 0xc5, 0x9a, 0x89, 0x14, 0xd4, 0x82, 0x84, + 0xad, 0x9a, 0x5d, 0x4c, 0xed, 0x25, 0xbb, 0xf6, 0xf8, 0x6a, 0xe2, 0x64, 0xc2, 0x2a, 0xc2, 0x0e, + 0x95, 0x33, 0xff, 0x57, 0x11, 0x88, 0x93, 0x51, 0x2e, 0x31, 0xe9, 0x3b, 0x90, 0x3c, 0x51, 0x8d, + 0x01, 0x66, 0x69, 0x4e, 0x4e, 0xe6, 0x5f, 0xe8, 0xf7, 0xa0, 0xe8, 0x0c, 0x8e, 0xfa, 0x81, 0xa1, + 0x78, 0x1c, 0x79, 0xef, 0x4a, 0xb3, 0xf2, 0x32, 0xea, 0xb0, 0x2c, 0x76, 0x00, 0xf3, 0x2f, 0x21, + 0x41, 0x67, 0x7d, 0xc9, 0xfc, 0xee, 0x43, 0xce, 0xb5, 0x14, 0x7c, 0xda, 0x36, 0x06, 0x8e, 0x7e, + 0xc2, 0x34, 0x25, 0x27, 0x67, 0x5d, 0xab, 0x2e, 0x40, 0xe8, 0x21, 0x14, 0x3a, 0xb6, 0xd5, 0x53, + 0x74, 0x53, 0x10, 0xc5, 0x28, 0x51, 0x9e, 0x40, 0x1b, 0x02, 0x18, 0x52, 0xd9, 0xbf, 0xcc, 0x41, + 0x91, 0x1a, 0xc6, 0x54, 0x6e, 0xef, 0x61, 0xc0, 0xed, 0xdd, 0x0e, 0xb9, 0x3d, 0xcf, 0xba, 0x88, + 0xd7, 0x7b, 0x0d, 0x92, 0x03, 0x53, 0x7f, 0x39, 0x60, 0xe3, 0x7b, 0xa1, 0x8f, 0xc1, 0xa6, 0xd0, + 0x4a, 0xf4, 0x2e, 0x20, 0xe2, 0x0a, 0xb0, 0x12, 0x22, 0x4c, 0x50, 0x42, 0x89, 0x62, 0xaa, 0x13, + 0x3d, 0x68, 0xf2, 0x0a, 0x1e, 0x74, 0x13, 0x24, 0x7c, 0xea, 0xda, 0x6a, 0x30, 0x27, 0x4d, 0x51, + 0xfe, 0x05, 0x12, 0xf6, 0xea, 0x04, 0x37, 0x5e, 0x48, 0x01, 0x07, 0x70, 0x1a, 0xd1, 0x92, 0x59, + 0x2e, 0x43, 0xd3, 0x6d, 0x4c, 0x33, 0x29, 0xa7, 0x94, 0x5e, 0x8a, 0x5d, 0x92, 0x31, 0x0d, 0x6d, + 0xfb, 0x4a, 0x4d, 0x30, 0xca, 0x12, 0x13, 0xe5, 0x01, 0x1c, 0xb4, 0x0f, 0xd9, 0x0e, 0x4b, 0xb0, + 0x94, 0x17, 0xf8, 0x8c, 0xa6, 0x62, 0xd9, 0xb5, 0xb7, 0xa7, 0x4f, 0xc5, 0xd6, 0x93, 0xe4, 0x08, + 0x4a, 0x11, 0x19, 0x3a, 0x1e, 0x12, 0x3d, 0x87, 0x7c, 0x20, 0x7b, 0x3e, 0x3a, 0xa3, 0xf9, 0xc7, + 0xf5, 0xc4, 0xe6, 0x7c, 0x41, 0xeb, 0x67, 0xe8, 0x53, 0x00, 0xdd, 0x0b, 0x00, 0x34, 0x4d, 0xc9, + 0xae, 0xbd, 0x73, 0x85, 0x48, 0x21, 0xfc, 0x8b, 0x2f, 0x04, 0x3d, 0x87, 0x82, 0xff, 0x45, 0x27, + 0x9b, 0xbb, 0xf2, 0x64, 0x99, 0xd4, 0x7c, 0x40, 0xce, 0x3a, 0x49, 0xc5, 0xe7, 0x48, 0x02, 0x65, + 0x39, 0xba, 0x8b, 0x83, 0x6a, 0x90, 0xa7, 0x6a, 0x50, 0xbe, 0x38, 0x5f, 0x44, 0x55, 0x81, 0x1f, + 0xaf, 0x0a, 0xa8, 0x3d, 0x84, 0x67, 0x8a, 0x15, 0x52, 0x60, 0x22, 0xb1, 0xe0, 0x2b, 0xd6, 0xbe, + 0xaf, 0xc2, 0x23, 0x8a, 0x15, 0x50, 0x6f, 0x56, 0x3b, 0xe5, 0x42, 0xbe, 0xa7, 0x78, 0x7d, 0xdf, + 0x13, 0x12, 0x84, 0xea, 0x3c, 0x29, 0x96, 0x68, 0x7a, 0xf5, 0xce, 0x94, 0x4a, 0x4a, 0x32, 0x36, + 0xe1, 0x12, 0x68, 0xae, 0xfc, 0x18, 0x50, 0xdb, 0xc6, 0xaa, 0x8b, 0x35, 0x92, 0x94, 0x1a, 0x7a, + 0x5b, 0x77, 0x8d, 0xb3, 0xd2, 0x6c, 0xc0, 0xee, 0x67, 0x39, 0xbe, 0xee, 0xa1, 0xd1, 0x13, 0x48, + 0x9d, 0x60, 0xdb, 0xd1, 0x2d, 0xb3, 0x84, 0xa8, 0x33, 0x59, 0xe0, 0x8d, 0x90, 0x3b, 0x43, 0xe3, + 0x3d, 0x63, 0x54, 0xb2, 0x20, 0x47, 0x9b, 0x90, 0xc7, 0x66, 0xdb, 0xd2, 0x74, 0xb3, 0x4b, 0xd3, + 0xcc, 0xd2, 0x2d, 0x3f, 0xdf, 0xf9, 0xf6, 0x7c, 0xf1, 0x07, 0x43, 0xfc, 0x75, 0x4e, 0x4b, 0xa6, + 0x2d, 0xe7, 0x70, 0xe0, 0x0b, 0x6d, 0x42, 0x4a, 0xc4, 0xe4, 0x39, 0xba, 0xa7, 0xcb, 0x93, 0x32, + 0xcc, 0xe1, 0x88, 0xce, 0xd7, 0x25, 0xd8, 0x49, 0xb9, 0xa0, 0xe9, 0x0e, 0xc9, 0x45, 0xb4, 0xd2, + 0xed, 0x60, 0xb9, 0x20, 0xa0, 0xa8, 0x0a, 0xd0, 0xc5, 0x96, 0xc2, 0x5a, 0x4b, 0xa5, 0x3b, 0x74, + 0xb8, 0x85, 0xc0, 0x70, 0x5d, 0x6c, 0xad, 0x88, 0x06, 0x14, 0xa9, 0x1f, 0x3b, 0x7a, 0x57, 0xa4, + 0x08, 0x5d, 0x6c, 0x31, 0x00, 0x2a, 0x43, 0xa6, 0x6f, 0x63, 0x4d, 0x6f, 0x93, 0xf2, 0xee, 0x6e, + 0xc0, 0x37, 0xfb, 0xe0, 0xf2, 0x02, 0x64, 0x3c, 0xaf, 0x81, 0x52, 0x10, 0xab, 0xec, 0x57, 0x59, + 0x37, 0xa1, 0x56, 0xdf, 0xaf, 0x4a, 0x91, 0xf2, 0x7d, 0x88, 0xd3, 0xc5, 0x67, 0x21, 0xb5, 0xd1, + 0x92, 0x9f, 0x57, 0xe4, 0x1a, 0xeb, 0x60, 0x34, 0x9a, 0xcf, 0xea, 0xf2, 0x41, 0xbd, 0x26, 0x89, + 0xb8, 0xf0, 0x4f, 0x31, 0x40, 0x7e, 0x21, 0x7b, 0x60, 0xf1, 0x62, 0xb0, 0x0b, 0xc5, 0xb6, 0x07, + 0x65, 0x07, 0x10, 0x59, 0x8a, 0x2e, 0x17, 0xd6, 0x9e, 0x7c, 0x67, 0x31, 0x2c, 0x64, 0x04, 0x41, + 0xbe, 0x32, 0x15, 0xda, 0x21, 0x68, 0x20, 0x1f, 0x8a, 0x0e, 0xc5, 0x20, 0x19, 0x12, 0xed, 0x63, + 0xdc, 0x7e, 0xc1, 0xa3, 0xf0, 0x8f, 0x27, 0x0c, 0x4c, 0x53, 0xc5, 0x80, 0xe2, 0x56, 0x09, 0x8f, + 0x3f, 0xb4, 0x48, 0x0f, 0xa8, 0x28, 0x24, 0x87, 0xdd, 0x6b, 0xfc, 0x52, 0x8f, 0x35, 0xae, 0xe9, + 0x22, 0x3c, 0x56, 0xc0, 0xbb, 0x3e, 0x81, 0xa2, 0x69, 0xb9, 0x0a, 0x29, 0x19, 0xb9, 0x17, 0xa0, + 0x85, 0x60, 0x7e, 0x5d, 0xe2, 0xba, 0xea, 0xdb, 0x7c, 0xde, 0xb4, 0xdc, 0xe6, 0xc0, 0x30, 0x18, + 0xa0, 0xfc, 0x21, 0x14, 0xc2, 0x7b, 0x84, 0x32, 0x90, 0xa8, 0x6e, 0xd6, 0xab, 0xdb, 0xd2, 0x0c, + 0x2a, 0x42, 0x76, 0xa3, 0x25, 0xd7, 0x1b, 0x4f, 0x9b, 0xca, 0x76, 0xfd, 0xe7, 0xac, 0xe3, 0xd4, + 0x6c, 0x89, 0x8e, 0x93, 0x57, 0xe5, 0x24, 0xa4, 0x64, 0xf9, 0xbf, 0x22, 0x50, 0xd8, 0xb3, 0xf5, + 0x9e, 0x6a, 0x9f, 0x6d, 0xe3, 0xb3, 0xfd, 0x57, 0x6a, 0x1f, 0x7d, 0x02, 0x73, 0x26, 0x7e, 0xa5, + 0xf4, 0x19, 0x54, 0xf1, 0xb2, 0xe6, 0xc8, 0xf8, 0x76, 0xe4, 0xac, 0x89, 0x5f, 0x71, 0x09, 0x0d, + 0x9e, 0x34, 0xbf, 0x0b, 0x59, 0xcb, 0xd0, 0x18, 0x27, 0x16, 0x2d, 0xa1, 0x6c, 0x90, 0x09, 0x2c, + 0x43, 0x6b, 0x30, 0x34, 0xa1, 0x26, 0xe3, 0x09, 0xea, 0xd8, 0x18, 0x6a, 0x13, 0xbf, 0x12, 0xd4, + 0x9f, 0xc0, 0x1c, 0x91, 0x3d, 0x32, 0xbb, 0xf8, 0x84, 0xd9, 0x59, 0x86, 0x16, 0x9e, 0x1d, 0x57, + 0xde, 0xbf, 0x8b, 0x00, 0x75, 0xda, 0x03, 0x57, 0x34, 0x8b, 0xe8, 0xe2, 0x3f, 0x80, 0x3c, 0x99, + 0x8c, 0x5f, 0x2b, 0x45, 0x26, 0x9c, 0x07, 0x99, 0xb3, 0xf0, 0xc0, 0x84, 0x8b, 0x4c, 0xca, 0xe7, + 0x8a, 0x4e, 0xe2, 0xb2, 0x0c, 0xaf, 0x35, 0x85, 0xde, 0x84, 0x9c, 0x6e, 0x12, 0xa7, 0xc5, 0x6b, + 0xf5, 0x60, 0x27, 0x37, 0xcb, 0x31, 0xa4, 0x62, 0xe7, 0x33, 0xfe, 0x75, 0x14, 0xee, 0xee, 0xaa, + 0x2e, 0xb6, 0x75, 0xd5, 0xd0, 0xff, 0x00, 0x6b, 0xcf, 0x74, 0xfc, 0x4a, 0xc6, 0x1d, 0x1b, 0x3b, + 0xc7, 0xe8, 0x33, 0x98, 0x1d, 0x39, 0x33, 0x3a, 0xf5, 0xec, 0xda, 0x1b, 0xd3, 0x79, 0x6d, 0x91, + 0x7b, 0x0e, 0x9d, 0x26, 0xda, 0x0d, 0x9f, 0x0e, 0xcb, 0xdd, 0xaf, 0x26, 0x33, 0x78, 0x7c, 0x4f, + 0x20, 0xa1, 0x3a, 0x8a, 0xd5, 0xe1, 0x96, 0xf9, 0xc3, 0x80, 0xa0, 0x81, 0xab, 0x1b, 0x2b, 0xc7, + 0x46, 0x7b, 0xe5, 0x40, 0xb4, 0xed, 0x85, 0x4d, 0xab, 0x4e, 0xab, 0x83, 0xde, 0x83, 0xa2, 0x73, + 0x6c, 0x0d, 0x0c, 0x4d, 0x39, 0x52, 0xdb, 0x2f, 0x3a, 0xba, 0x61, 0x84, 0xfa, 0x2e, 0x05, 0x86, + 0x5c, 0xe7, 0x38, 0xbe, 0x67, 0x7f, 0x96, 0x02, 0xe4, 0xcf, 0x67, 0x77, 0xe0, 0xaa, 0xd4, 0xeb, + 0x55, 0x20, 0xc9, 0xcd, 0x8d, 0xed, 0xd1, 0x9b, 0x13, 0x3d, 0x53, 0xb8, 0xcf, 0xb4, 0x39, 0x23, + 0x73, 0x46, 0xf4, 0xb3, 0x60, 0x97, 0x7e, 0xea, 0x1d, 0xd9, 0x9c, 0x11, 0xed, 0xfb, 0x6d, 0x48, + 0x38, 0x2e, 0xf1, 0xd2, 0x31, 0x1a, 0x5b, 0x57, 0x27, 0xf0, 0x8f, 0x4e, 0x7e, 0x65, 0x9f, 0xb0, + 0x09, 0xdf, 0x44, 0x65, 0xa0, 0xe7, 0x90, 0xf1, 0x52, 0x4a, 0xde, 0xf2, 0x7f, 0x3c, 0xbd, 0x40, + 0x2f, 0x1a, 0x88, 0x58, 0xe1, 0xc9, 0x42, 0x15, 0xc8, 0xf6, 0x38, 0x99, 0xdf, 0x38, 0x58, 0xe2, + 0x59, 0x3d, 0x08, 0x09, 0x34, 0xbb, 0x0f, 0x7c, 0xc9, 0x20, 0x98, 0x1a, 0x34, 0xf2, 0xd9, 0x96, + 0x61, 0x90, 0x43, 0xa3, 0x6d, 0x4c, 0x2f, 0xf2, 0x09, 0x28, 0xda, 0x26, 0xb9, 0xb9, 0xf0, 0x65, + 0xb4, 0x29, 0x99, 0x9d, 0xa2, 0x71, 0x2a, 0x62, 0xc5, 0xe6, 0x8c, 0x1c, 0x60, 0x47, 0x2d, 0x28, + 0xf4, 0x43, 0xfe, 0x8c, 0x27, 0xc2, 0x0f, 0x27, 0x65, 0x43, 0x21, 0xe2, 0xcd, 0x19, 0x79, 0x88, + 0x1d, 0x7d, 0x0e, 0xa8, 0x3d, 0xe2, 0x27, 0x4a, 0xf0, 0x1d, 0xb3, 0x1c, 0x66, 0xd8, 0x9c, 0x91, + 0xc7, 0x88, 0x41, 0x5f, 0xc0, 0xdd, 0xde, 0x78, 0x93, 0xe6, 0x29, 0xf1, 0xca, 0x84, 0x11, 0x26, + 0x38, 0x82, 0xcd, 0x19, 0x79, 0x92, 0xc0, 0xf2, 0x27, 0x90, 0xa0, 0xaa, 0x43, 0x02, 0xfb, 0x61, + 0x73, 0xbb, 0xd9, 0x7a, 0xde, 0x64, 0xb1, 0xa2, 0x56, 0xdf, 0xa9, 0x1f, 0xd4, 0x95, 0x56, 0x73, + 0x87, 0xc4, 0x8a, 0x7b, 0x70, 0x9b, 0x03, 0x2a, 0xcd, 0x9a, 0xf2, 0x5c, 0x6e, 0x08, 0x54, 0xb4, + 0xbc, 0x1c, 0xcc, 0x1c, 0xd2, 0x10, 0x6f, 0xb6, 0x9a, 0x75, 0x69, 0x86, 0xe6, 0x10, 0xb5, 0x9a, + 0x14, 0xa1, 0x39, 0x84, 0xdc, 0xda, 0x13, 0x21, 0x66, 0x3d, 0x07, 0xa0, 0x79, 0xea, 0xb6, 0x15, + 0x4f, 0x27, 0xa5, 0x54, 0xf9, 0x6f, 0x23, 0x90, 0x26, 0x25, 0x59, 0xc3, 0xec, 0x58, 0xe8, 0x31, + 0x64, 0xfa, 0xaa, 0x8d, 0x4d, 0xd7, 0xf7, 0xb4, 0xa2, 0x53, 0x96, 0xde, 0xa3, 0x08, 0xaf, 0x91, + 0x93, 0x66, 0x84, 0x8d, 0xcb, 0xda, 0x20, 0x1b, 0x20, 0x71, 0x71, 0x4e, 0xfb, 0x18, 0xf7, 0x54, + 0x22, 0x95, 0xf5, 0x6a, 0x5e, 0xf3, 0xba, 0x94, 0x14, 0xbf, 0x4f, 0xd1, 0x9e, 0xec, 0x42, 0x3f, + 0x08, 0x15, 0x11, 0xe2, 0x3f, 0xef, 0x43, 0x71, 0x28, 0x43, 0xb8, 0xa4, 0xec, 0x5d, 0xa2, 0x65, + 0x6f, 0xcc, 0xf7, 0xfb, 0x5e, 0xd9, 0x1b, 0xe5, 0x15, 0x6f, 0x68, 0xb1, 0xf1, 0x29, 0x17, 0xfb, + 0xd8, 0xcf, 0x82, 0x99, 0xf1, 0xdd, 0xe3, 0x31, 0x65, 0xf6, 0x92, 0x04, 0x78, 0x0f, 0x66, 0x7b, + 0x96, 0xa6, 0x77, 0x48, 0xbe, 0x47, 0x2c, 0xd7, 0xd5, 0x7b, 0xec, 0x0a, 0x61, 0x4a, 0x87, 0x2b, + 0x05, 0xb9, 0x09, 0x12, 0x3d, 0x85, 0x94, 0xe8, 0xee, 0xa4, 0x69, 0x04, 0x98, 0xd6, 0x63, 0x8a, + 0x3c, 0x98, 0x73, 0xa3, 0x0d, 0x28, 0x98, 0xf8, 0x34, 0xd8, 0x8c, 0xcc, 0x84, 0x7c, 0x4a, 0xae, + 0x89, 0x4f, 0xc7, 0x77, 0x22, 0x73, 0xa6, 0x8f, 0xd1, 0xd0, 0xa7, 0x90, 0x0f, 0x07, 0x3b, 0xb8, + 0x46, 0xb0, 0xcb, 0xf5, 0x83, 0x91, 0x6e, 0x03, 0x52, 0x22, 0xca, 0x65, 0xaf, 0x11, 0xe5, 0x04, + 0x33, 0x5a, 0x27, 0x29, 0xc4, 0xa9, 0xeb, 0xa7, 0x26, 0x39, 0xbf, 0x7c, 0xb9, 0x38, 0x5f, 0xcc, + 0x92, 0x15, 0x8e, 0x69, 0x39, 0x66, 0x4d, 0x0f, 0xae, 0xa1, 0x2d, 0x00, 0xef, 0x62, 0xda, 0xa1, + 0x9d, 0xf6, 0xc9, 0x65, 0xec, 0x9e, 0x20, 0xf4, 0xa7, 0x24, 0x07, 0xb8, 0xd1, 0x2e, 0x64, 0x84, + 0x3b, 0x66, 0x05, 0xe6, 0x64, 0xbf, 0x35, 0x1a, 0x1c, 0x44, 0x48, 0xf0, 0x24, 0x90, 0xdc, 0xda, + 0xc0, 0xaa, 0x83, 0x79, 0x95, 0xf9, 0x64, 0xca, 0xdc, 0x9a, 0x19, 0x57, 0xf5, 0x58, 0x35, 0xbb, + 0x78, 0x87, 0xf0, 0xaf, 0x47, 0x4b, 0x11, 0x99, 0x89, 0x42, 0x4d, 0x90, 0xe8, 0x96, 0x05, 0x63, + 0x8d, 0x44, 0x77, 0xed, 0x75, 0x61, 0xb8, 0x64, 0xd7, 0x26, 0xc6, 0x1b, 0xaa, 0x53, 0xbb, 0x7e, + 0xcc, 0xf9, 0x1d, 0x28, 0x74, 0x2c, 0xbb, 0xa7, 0xba, 0x8a, 0x30, 0x9e, 0x59, 0xbf, 0x1f, 0xf5, + 0xed, 0xf9, 0x62, 0x7e, 0x83, 0x62, 0x85, 0xe1, 0xe4, 0x3b, 0xc1, 0x4f, 0xb4, 0x2e, 0x42, 0xf3, + 0x2d, 0x1a, 0x49, 0xdf, 0xf8, 0xce, 0xcd, 0x1a, 0x13, 0x91, 0x9b, 0x90, 0xa4, 0x65, 0x83, 0x53, + 0x9a, 0xa3, 0x3b, 0x7e, 0xcd, 0x12, 0x44, 0xe6, 0x52, 0xd0, 0x0e, 0x14, 0x34, 0x02, 0x21, 0x35, + 0x2d, 0xeb, 0x74, 0xdd, 0xa6, 0x72, 0x17, 0x27, 0xc8, 0x15, 0x2e, 0x56, 0x34, 0x34, 0x04, 0x33, + 0xeb, 0x86, 0xb5, 0x20, 0xdd, 0x51, 0x7b, 0xba, 0xa1, 0x63, 0xa7, 0x74, 0x87, 0xca, 0x79, 0xef, + 0x52, 0x7b, 0x1e, 0xbe, 0xf5, 0x10, 0x21, 0x5c, 0x08, 0xf1, 0xcc, 0x9a, 0x02, 0xce, 0xc8, 0xf1, + 0xdd, 0x1d, 0x35, 0x6b, 0x71, 0xeb, 0x11, 0xba, 0x01, 0xa1, 0x66, 0xcd, 0xbf, 0x34, 0xf4, 0x00, + 0xe0, 0x44, 0xc7, 0xaf, 0x94, 0x97, 0x03, 0x6c, 0x9f, 0x95, 0x4a, 0xc1, 0x02, 0x96, 0xc0, 0x3f, + 0x25, 0x60, 0xf4, 0x3e, 0x64, 0x34, 0xdc, 0xc7, 0xa6, 0xe6, 0xb4, 0xcc, 0xd2, 0x3d, 0x5a, 0x2e, + 0xdc, 0xba, 0x38, 0x5f, 0xcc, 0xd4, 0x04, 0x90, 0x7b, 0x51, 0x9f, 0x0a, 0x7d, 0x01, 0x39, 0xf6, + 0x81, 0xb5, 0x96, 0xb9, 0x7e, 0x56, 0x9a, 0xa7, 0x8b, 0x7e, 0x34, 0xe5, 0xa1, 0xf8, 0xed, 0x21, + 0xaf, 0xa3, 0x5e, 0x0b, 0x48, 0x93, 0x43, 0xb2, 0xd1, 0xef, 0x42, 0x4e, 0xe8, 0xf1, 0x96, 0x75, + 0xe4, 0x94, 0x7e, 0x70, 0x69, 0xbb, 0x7b, 0x78, 0xac, 0x5d, 0x9f, 0x55, 0x78, 0xa9, 0xa0, 0x34, + 0xf4, 0x19, 0xe4, 0xbd, 0x8b, 0x3b, 0xab, 0xef, 0x3a, 0xa5, 0xd7, 0xa8, 0x19, 0x3e, 0x9e, 0xd6, + 0x0c, 0x39, 0x6f, 0xab, 0x4f, 0x6f, 0x02, 0x02, 0x5f, 0xe8, 0x3e, 0x64, 0x34, 0xdb, 0xea, 0xb3, + 0x68, 0xf1, 0xc3, 0xa5, 0xc8, 0x72, 0xcc, 0xeb, 0x51, 0xd8, 0x56, 0x9f, 0x86, 0x01, 0x05, 0x0a, + 0x36, 0xee, 0x1b, 0x6a, 0x1b, 0xf7, 0x48, 0x1c, 0xb3, 0x3a, 0xa5, 0x05, 0x3a, 0xfa, 0xda, 0xd4, + 0x1b, 0xe9, 0x31, 0x0b, 0xc5, 0x0c, 0xc8, 0x6b, 0x75, 0xd0, 0x21, 0x80, 0x3a, 0xd0, 0x74, 0x57, + 0xe9, 0x59, 0x1a, 0x2e, 0x2d, 0x5e, 0x7a, 0x9b, 0x3c, 0x2c, 0xbc, 0x42, 0x18, 0x77, 0x2d, 0x0d, + 0x7b, 0x77, 0x47, 0x02, 0x80, 0xde, 0x87, 0x2c, 0x5d, 0xda, 0x17, 0xd6, 0x11, 0xd1, 0xcd, 0x25, + 0xba, 0xb8, 0x59, 0x7e, 0x96, 0x99, 0x9a, 0x6d, 0xf5, 0xb7, 0xac, 0x23, 0xaa, 0x31, 0xfc, 0x4f, + 0x0d, 0x39, 0x90, 0xeb, 0xb6, 0x15, 0xdf, 0x71, 0xde, 0xa7, 0xa7, 0xf8, 0xd1, 0x94, 0x73, 0x79, + 0x5a, 0x1d, 0xe3, 0x4a, 0x6f, 0x89, 0x08, 0xf0, 0xb4, 0x2a, 0x60, 0x8e, 0x9c, 0xed, 0xb6, 0xbd, + 0x0f, 0x52, 0x11, 0xb2, 0x46, 0x18, 0x37, 0x80, 0x72, 0xb0, 0x22, 0x64, 0x18, 0x66, 0x02, 0x4d, + 0xe0, 0x1d, 0x33, 0x85, 0x56, 0x53, 0xec, 0xcc, 0x1e, 0x4c, 0x1f, 0xe1, 0x0b, 0x8c, 0xbb, 0xe2, + 0xb4, 0x3a, 0xf4, 0x60, 0xdb, 0x90, 0xb3, 0x06, 0xee, 0x91, 0x35, 0x30, 0x35, 0xa5, 0xf3, 0xc2, + 0x29, 0xbd, 0x4e, 0x57, 0x7b, 0xa5, 0xee, 0x86, 0xb7, 0xba, 0x16, 0x17, 0xb4, 0xb1, 0xed, 0xc8, + 0x59, 0x21, 0x75, 0xe3, 0x85, 0x83, 0x7e, 0x09, 0x59, 0xdd, 0xf4, 0xc7, 0x78, 0x78, 0xf5, 0x31, + 0x90, 0xa8, 0x3c, 0x1a, 0xa6, 0x37, 0x04, 0x70, 0x99, 0x64, 0x84, 0x77, 0xa0, 0x60, 0x75, 0x3a, + 0x86, 0x6e, 0x62, 0xc5, 0xc6, 0xaa, 0x63, 0x99, 0xa5, 0x37, 0x02, 0x3b, 0x98, 0xe7, 0x38, 0x99, + 0xa2, 0x50, 0x19, 0x32, 0x2e, 0xee, 0xf5, 0x2d, 0x5b, 0xb5, 0xcf, 0x4a, 0x6f, 0x06, 0xaf, 0xdc, + 0x3c, 0x30, 0x3a, 0x82, 0xf9, 0x81, 0x89, 0x4f, 0xfb, 0x96, 0x83, 0x35, 0x65, 0x24, 0xb7, 0x5c, + 0xa6, 0x3e, 0xee, 0x21, 0x9f, 0xd4, 0xdd, 0x43, 0x41, 0x39, 0x36, 0xc9, 0xbc, 0x3b, 0x18, 0x8b, + 0xd6, 0xd0, 0x8f, 0x61, 0x4e, 0x77, 0x94, 0x60, 0xd6, 0xae, 0x10, 0x5f, 0x57, 0x7a, 0x2b, 0x30, + 0x25, 0xa4, 0x3b, 0xc3, 0x19, 0xff, 0xfc, 0xaf, 0x22, 0x30, 0x3b, 0x12, 0x55, 0xd1, 0xef, 0x43, + 0xca, 0xb4, 0xb4, 0xc0, 0xc5, 0x68, 0x9d, 0x4f, 0x2f, 0xd9, 0xb4, 0x34, 0x76, 0x2f, 0xfa, 0xb8, + 0xab, 0xbb, 0xc7, 0x83, 0xa3, 0x95, 0xb6, 0xd5, 0x5b, 0xf5, 0x36, 0x5f, 0x3b, 0xf2, 0xff, 0x5e, + 0xed, 0xbf, 0xe8, 0xae, 0xd2, 0xbf, 0xfa, 0x47, 0x2b, 0x8c, 0x4d, 0x4e, 0x12, 0xa9, 0x0d, 0x8d, + 0x94, 0xe1, 0xf8, 0xb4, 0xaf, 0xdb, 0x81, 0xcc, 0x32, 0x1a, 0xf0, 0x15, 0x05, 0x1f, 0x49, 0x14, + 0x8b, 0x5f, 0x5d, 0xfd, 0x3a, 0x0a, 0xc5, 0xa1, 0xc8, 0x46, 0x52, 0x69, 0xda, 0xf5, 0x08, 0xa5, + 0xd2, 0x04, 0x72, 0x49, 0x82, 0x1f, 0x7c, 0x60, 0x13, 0xbb, 0xe9, 0x03, 0x9b, 0xf0, 0x95, 0x50, + 0xe2, 0x0a, 0x57, 0x42, 0x3f, 0x85, 0x3b, 0xba, 0xa3, 0x98, 0x96, 0x29, 0x3a, 0x77, 0x5e, 0xf1, + 0x1a, 0x7c, 0xc6, 0x71, 0x4b, 0x77, 0x9a, 0x96, 0xc9, 0x7a, 0x76, 0xde, 0xaa, 0xfd, 0x17, 0x1f, + 0xa9, 0xd1, 0x17, 0x1f, 0x5e, 0x67, 0x2e, 0x2e, 0x25, 0xe6, 0xbf, 0x8a, 0x40, 0x26, 0xf8, 0x6c, + 0x30, 0x1a, 0x6e, 0x46, 0x8d, 0x94, 0x17, 0xd7, 0xbc, 0xe0, 0x0e, 0xef, 0x42, 0x6c, 0xfa, 0x5d, + 0xe0, 0x47, 0xfb, 0x87, 0x90, 0x0d, 0x84, 0xac, 0xe1, 0x86, 0x41, 0xe4, 0x1a, 0x0d, 0x83, 0xd7, + 0x21, 0xc9, 0xfd, 0x34, 0x53, 0xac, 0x3c, 0xe7, 0x4e, 0x30, 0x1f, 0x9d, 0xf8, 0x82, 0xf8, 0x67, + 0x3e, 0xfa, 0xff, 0xc4, 0x20, 0x17, 0x0c, 0x69, 0xc4, 0xa8, 0x75, 0xb3, 0x6d, 0xd3, 0x78, 0x42, + 0x47, 0x8f, 0x79, 0xf7, 0xe8, 0x02, 0x4c, 0x02, 0x5d, 0x4f, 0x37, 0x15, 0x7a, 0x77, 0x1b, 0x52, + 0xde, 0x74, 0x4f, 0x37, 0x9f, 0x11, 0x28, 0x25, 0x51, 0x4f, 0x39, 0x49, 0x2c, 0x44, 0xa2, 0x9e, + 0x32, 0x92, 0x79, 0x9a, 0x25, 0xda, 0x2e, 0x2d, 0xe5, 0x62, 0x81, 0xec, 0xcf, 0x76, 0xd1, 0x02, + 0xa4, 0x4e, 0x74, 0xdb, 0x1d, 0xa8, 0x06, 0xad, 0xda, 0xc4, 0x31, 0x0b, 0x20, 0x32, 0xa1, 0xe0, + 0x07, 0xf1, 0x57, 0x26, 0xb6, 0xa9, 0xe2, 0x64, 0xd7, 0x2a, 0xd7, 0x88, 0xe2, 0xfe, 0x07, 0x11, + 0x24, 0x5c, 0x9d, 0x13, 0x04, 0xa2, 0x77, 0xa1, 0xa8, 0x3a, 0x8a, 0x6e, 0xba, 0xb8, 0x8b, 0x6d, + 0xd6, 0x92, 0x4f, 0x05, 0x1d, 0xa3, 0xea, 0x34, 0x18, 0xee, 0xe0, 0xac, 0x8f, 0xe7, 0xff, 0x26, + 0x02, 0xf9, 0x90, 0x50, 0xd4, 0x80, 0x22, 0x9d, 0xe6, 0x48, 0x5f, 0xf4, 0xbe, 0xf7, 0x5c, 0x90, + 0xa0, 0xc7, 0xd6, 0x6d, 0x79, 0x2b, 0x80, 0xd2, 0xd0, 0x27, 0x50, 0x60, 0xa2, 0xbc, 0xf7, 0x1b, + 0x61, 0x65, 0xcd, 0x51, 0x49, 0xe1, 0x47, 0x1c, 0x39, 0xcb, 0x87, 0x69, 0xc1, 0xab, 0xe9, 0x79, + 0x13, 0xb2, 0x81, 0x9c, 0x62, 0x0a, 0x2b, 0xf9, 0x09, 0xc4, 0x3d, 0x9f, 0x35, 0x6d, 0xfb, 0xd1, + 0xf5, 0x1d, 0xd9, 0x97, 0x11, 0x98, 0x1b, 0x17, 0xdb, 0x43, 0xd6, 0xc7, 0xd4, 0x6e, 0x2a, 0xeb, + 0x7b, 0x10, 0xcc, 0xb9, 0x98, 0x2a, 0x8a, 0xeb, 0x52, 0x3f, 0xeb, 0x7a, 0xc3, 0x33, 0x08, 0xa6, + 0x89, 0xc5, 0x90, 0x41, 0x90, 0x2a, 0x2a, 0x60, 0x12, 0xe5, 0x65, 0xc8, 0x78, 0x99, 0x10, 0xca, + 0x41, 0xba, 0xd6, 0xd8, 0xaf, 0xac, 0xef, 0xd4, 0x6b, 0xd2, 0x0c, 0xca, 0x43, 0x46, 0xae, 0x57, + 0x6a, 0xb4, 0xa7, 0x23, 0x45, 0x3e, 0x4c, 0xff, 0xc9, 0x97, 0x8b, 0x11, 0xee, 0x71, 0x92, 0x52, + 0x6a, 0x2b, 0x9e, 0x46, 0xd2, 0xad, 0xf2, 0xbf, 0xa7, 0x01, 0xd5, 0x54, 0x57, 0x25, 0x8a, 0x77, + 0x85, 0xce, 0x47, 0xf4, 0x92, 0x4d, 0x0f, 0x57, 0xb3, 0xb1, 0x1b, 0x55, 0xb3, 0x63, 0x7b, 0x1b, + 0xf1, 0x9b, 0xf4, 0x36, 0xae, 0xd5, 0x62, 0x19, 0xad, 0xc7, 0x92, 0x37, 0xa8, 0xc7, 0x9e, 0x41, + 0x8a, 0x65, 0x15, 0xec, 0x69, 0xc1, 0xe4, 0x72, 0x71, 0xf4, 0x60, 0x78, 0x61, 0xed, 0xd4, 0x4d, + 0xd7, 0x3e, 0xf3, 0x6e, 0x1d, 0x19, 0xcc, 0xaf, 0x64, 0xd3, 0xd7, 0xaf, 0x64, 0x47, 0x73, 0xaa, + 0xcc, 0xe4, 0x9c, 0xea, 0x73, 0xc8, 0xdb, 0xb8, 0x4b, 0xce, 0x85, 0xdf, 0x63, 0xc2, 0xa5, 0x17, + 0x70, 0x63, 0x96, 0x23, 0x53, 0x76, 0x76, 0x9d, 0x29, 0xe7, 0xec, 0xc0, 0xd7, 0xfc, 0x01, 0x00, + 0x4f, 0x9a, 0xcc, 0x8e, 0x35, 0x85, 0xad, 0x2f, 0x40, 0x8a, 0xd8, 0x50, 0x1f, 0x33, 0xed, 0xf4, + 0xbc, 0x30, 0x07, 0x72, 0x93, 0xee, 0x43, 0x2e, 0xb8, 0x85, 0x48, 0x82, 0xd8, 0x0b, 0x7c, 0xc6, + 0xf4, 0x5c, 0x26, 0x7f, 0xa2, 0x2d, 0x48, 0xf8, 0xb1, 0x62, 0xf2, 0x7b, 0xb6, 0x89, 0x67, 0x43, + 0xa6, 0x2b, 0x33, 0x11, 0x1f, 0x46, 0x9f, 0x44, 0xe6, 0xff, 0x38, 0x0a, 0xb9, 0xe0, 0x32, 0xd1, + 0xeb, 0x90, 0x62, 0x0b, 0x65, 0x4f, 0xe6, 0x32, 0xeb, 0xf0, 0xed, 0xf9, 0x62, 0x92, 0x91, 0xc8, + 0x02, 0x85, 0x9a, 0x90, 0x77, 0x06, 0xf6, 0x89, 0x7e, 0xa2, 0x1a, 0x4a, 0xd7, 0x52, 0x0d, 0x3a, + 0x9d, 0xc2, 0xda, 0x83, 0x49, 0x57, 0xd2, 0x9c, 0xf6, 0xa9, 0xa5, 0x1a, 0xa2, 0x92, 0x74, 0x02, + 0x30, 0xf4, 0x23, 0xaf, 0x53, 0xae, 0xb0, 0x21, 0xf8, 0x05, 0x54, 0x81, 0xab, 0xbf, 0x98, 0x80, + 0x68, 0xb4, 0xb1, 0x4f, 0xe2, 0xc0, 0xf9, 0x11, 0x63, 0x73, 0xd0, 0xf3, 0x7b, 0x99, 0x9e, 0x03, + 0x67, 0x74, 0x75, 0x73, 0xd0, 0xf3, 0x1d, 0xb8, 0xed, 0xc3, 0x84, 0x03, 0xf7, 0xbc, 0x4f, 0xf9, + 0x4b, 0x80, 0x02, 0x09, 0x3c, 0x01, 0x6f, 0x73, 0xad, 0xc6, 0xf0, 0xb8, 0xf6, 0x6f, 0xf4, 0xea, + 0xed, 0xdf, 0x4b, 0x7e, 0x59, 0xc1, 0x74, 0x2e, 0x7e, 0x89, 0xce, 0xd5, 0x20, 0x4e, 0x1f, 0xa4, + 0x26, 0xe8, 0xd9, 0x4c, 0x72, 0x72, 0xe1, 0xd5, 0xae, 0x04, 0xde, 0xa4, 0x52, 0x6e, 0xf4, 0x73, + 0xc8, 0xd1, 0xcd, 0xed, 0xe1, 0xde, 0x11, 0xb6, 0x85, 0x6f, 0x79, 0x34, 0x9d, 0x34, 0xb2, 0xcb, + 0xbb, 0x94, 0x51, 0x54, 0x8e, 0xd8, 0x83, 0x38, 0xe8, 0x11, 0x24, 0x54, 0x43, 0xa7, 0x8e, 0xe6, + 0xbb, 0x1e, 0x3a, 0x33, 0x42, 0xf4, 0x31, 0xe4, 0x55, 0xdb, 0x56, 0xcf, 0xf8, 0x93, 0x5d, 0x8d, + 0x3a, 0x13, 0xee, 0x25, 0x49, 0xbd, 0x57, 0x21, 0x48, 0xfa, 0x4a, 0x57, 0x6c, 0x44, 0x56, 0xf5, + 0x40, 0xa1, 0x0e, 0x76, 0xe6, 0x66, 0x1d, 0x6c, 0xb8, 0x89, 0x97, 0x1f, 0x75, 0xd8, 0xd9, 0x1b, + 0x38, 0xec, 0x5f, 0xc2, 0xbc, 0x78, 0xcd, 0x44, 0x04, 0xfa, 0xb7, 0x1c, 0x81, 0xc7, 0xd4, 0xe5, + 0x8b, 0xf3, 0xc5, 0x92, 0xec, 0x53, 0xf9, 0xcb, 0x65, 0x49, 0x35, 0xd9, 0xa9, 0x92, 0x3d, 0x16, + 0xaf, 0x05, 0x5c, 0x77, 0xfe, 0xfa, 0xae, 0x3b, 0x1c, 0x77, 0x0b, 0x37, 0x8a, 0xbb, 0xa3, 0x61, + 0xa0, 0x38, 0x31, 0x0c, 0xcc, 0xff, 0x45, 0x14, 0xc0, 0x57, 0x43, 0xf4, 0x13, 0xb8, 0xdb, 0x3f, + 0x3e, 0x73, 0xf4, 0xb6, 0x6a, 0x28, 0x36, 0xee, 0xdb, 0xd8, 0xc1, 0x26, 0xcb, 0x9b, 0xa8, 0x6d, + 0xe7, 0xe4, 0x3b, 0x02, 0x2d, 0x87, 0xb0, 0xe8, 0x23, 0xb8, 0x63, 0x58, 0xdd, 0x71, 0x7c, 0xc1, + 0xda, 0xf0, 0x36, 0xa7, 0x19, 0x62, 0x56, 0x01, 0xda, 0x6a, 0x5f, 0x3d, 0xd2, 0x0d, 0xbf, 0x5c, + 0xfc, 0xe8, 0xaa, 0x26, 0xb4, 0x52, 0xf5, 0x44, 0x88, 0xdb, 0x6c, 0x5f, 0x68, 0xf9, 0x75, 0x00, + 0x1f, 0x4f, 0xef, 0xc1, 0x76, 0x76, 0xfc, 0x3c, 0x8b, 0xdf, 0xa8, 0xf1, 0xbc, 0xec, 0x7d, 0x88, + 0x13, 0x3b, 0x47, 0x69, 0x88, 0xd7, 0x9b, 0x87, 0xbb, 0xd2, 0x0c, 0xca, 0x40, 0xa2, 0xb2, 0xd3, + 0xa8, 0xec, 0x4b, 0x11, 0x34, 0x07, 0xd2, 0xee, 0xe1, 0xce, 0x41, 0x43, 0xae, 0x3f, 0x6d, 0xb4, + 0x9a, 0x0a, 0x25, 0x88, 0x06, 0x5c, 0xe4, 0x5f, 0xc7, 0x41, 0x62, 0xfe, 0xe9, 0xa6, 0x4e, 0x72, + 0x72, 0x71, 0xfd, 0xdd, 0x37, 0x58, 0x61, 0x7d, 0x8a, 0x7f, 0xff, 0x79, 0x5c, 0xe2, 0x7b, 0xca, + 0xe3, 0x92, 0x37, 0xc8, 0xe3, 0x52, 0x37, 0x70, 0x0b, 0xff, 0xdf, 0xf9, 0x56, 0x40, 0x43, 0xbe, + 0x8a, 0x02, 0x04, 0x74, 0xe3, 0x67, 0xc1, 0x9f, 0x19, 0x4e, 0xbe, 0xca, 0x1a, 0x2a, 0x2c, 0x37, + 0x67, 0xc4, 0x8f, 0x10, 0x9f, 0x42, 0x5a, 0xe3, 0xf9, 0x0c, 0x4f, 0x7b, 0xde, 0x9a, 0x3a, 0xed, + 0xd9, 0x9c, 0x91, 0x3d, 0x66, 0xf4, 0x51, 0xe8, 0x77, 0x35, 0x0f, 0xa7, 0xb2, 0xbf, 0x4d, 0xf1, + 0x70, 0xb0, 0x02, 0x49, 0x16, 0xca, 0xb9, 0xb2, 0x4d, 0xfc, 0x81, 0xc7, 0x90, 0x69, 0x6c, 0xce, + 0xc8, 0x9c, 0x91, 0xdf, 0x44, 0xa7, 0x20, 0x31, 0x30, 0x75, 0xcb, 0x7c, 0x5b, 0x0e, 0x3e, 0x59, + 0x13, 0xad, 0x21, 0x62, 0xb0, 0xf4, 0x6f, 0xd5, 0xc5, 0x1a, 0xbb, 0x13, 0x3f, 0x34, 0x4f, 0x3c, + 0x40, 0x04, 0x15, 0x00, 0x38, 0x5e, 0x37, 0xbb, 0x52, 0x94, 0x96, 0x55, 0x24, 0x89, 0x24, 0x5f, + 0xb1, 0xb7, 0x3f, 0x06, 0x69, 0xf8, 0x17, 0x26, 0x81, 0xdb, 0xf1, 0x59, 0xc8, 0xef, 0x3e, 0xab, + 0x56, 0x0f, 0x1a, 0xbb, 0xf5, 0xfd, 0x83, 0xca, 0xee, 0x1e, 0x7b, 0x8e, 0x75, 0x40, 0x6a, 0xb2, + 0x56, 0xa3, 0x26, 0x45, 0xdf, 0xfe, 0x18, 0x8a, 0x43, 0x0a, 0x81, 0x00, 0x92, 0x7b, 0x87, 0xeb, + 0x3b, 0x8d, 0xea, 0xd8, 0xdb, 0x75, 0x94, 0x85, 0x54, 0x6b, 0x63, 0x63, 0xa7, 0xd1, 0xac, 0x4b, + 0xb1, 0xb7, 0x3f, 0x80, 0x5c, 0x30, 0xd5, 0x43, 0x12, 0xe4, 0x7e, 0xd1, 0x6a, 0xd6, 0x95, 0x8d, + 0x4a, 0x63, 0xe7, 0x50, 0x26, 0x33, 0x40, 0x50, 0xe0, 0x7e, 0x45, 0xc0, 0x22, 0xeb, 0xcb, 0x5f, + 0xff, 0xeb, 0xc2, 0xcc, 0xd7, 0x17, 0x0b, 0x91, 0xdf, 0x5c, 0x2c, 0x44, 0x7e, 0x7b, 0xb1, 0x10, + 0xf9, 0x97, 0x8b, 0x85, 0xc8, 0x9f, 0x7f, 0xb3, 0x30, 0xf3, 0x9b, 0x6f, 0x16, 0x66, 0x7e, 0xfb, + 0xcd, 0xc2, 0xcc, 0x2f, 0x92, 0xec, 0x07, 0xb2, 0xff, 0x1b, 0x00, 0x00, 0xff, 0xff, 0xde, 0x5b, + 0xa7, 0x87, 0x8b, 0x3b, 0x00, 0x00, } diff --git a/pkg/sql/catalog/descpb/structured.proto b/pkg/sql/catalog/descpb/structured.proto index dd316a31f99c..21df92f9a24c 100644 --- a/pkg/sql/catalog/descpb/structured.proto +++ b/pkg/sql/catalog/descpb/structured.proto @@ -958,6 +958,9 @@ message TableDescriptor { } optional SequenceOwner sequence_owner = 6 [(gogoproto.nullable) = false]; + + optional string as_integer_type = 7 [(gogoproto.nullable) = false]; + } // The presence of sequence_opts indicates that this descriptor is for a sequence. diff --git a/pkg/sql/parser/parse_test.go b/pkg/sql/parser/parse_test.go index 732d1a063eaa..dd9a8826735b 100644 --- a/pkg/sql/parser/parse_test.go +++ b/pkg/sql/parser/parse_test.go @@ -392,6 +392,7 @@ func TestParse(t *testing.T) { {`CREATE TEMPORARY SEQUENCE a`}, {`CREATE SEQUENCE a OWNED BY b`}, {`CREATE SEQUENCE a OWNED BY NONE`}, + {`CREATE SEQUENCE a AS int`}, {`CREATE EXTENSION bob`}, {`CREATE EXTENSION IF NOT EXISTS bob`}, @@ -1863,6 +1864,10 @@ func TestParse2(t *testing.T) { {`CREATE TABLE a (b INT, FOREIGN KEY (b) REFERENCES other (b) NOT VALID)`, `CREATE TABLE a (b INT8, FOREIGN KEY (b) REFERENCES other (b))`}, + // `int` and `integer` parse to nakedIntTyoe which by default is Int/int64. + {`CREATE SEQUENCE a AS integer`, `CREATE SEQUENCE a AS int`}, + {`CREATE SEQUENCE a AS bigint`, `CREATE SEQUENCE a AS int`}, + {`CREATE STATISTICS a ON col1 FROM t AS OF SYSTEM TIME '2016-01-01'`, `CREATE STATISTICS a ON col1 FROM t WITH OPTIONS AS OF SYSTEM TIME '2016-01-01'`}, diff --git a/pkg/sql/parser/sql.y b/pkg/sql/parser/sql.y index 152a1e9ac817..db2b4d80355d 100644 --- a/pkg/sql/parser/sql.y +++ b/pkg/sql/parser/sql.y @@ -197,6 +197,16 @@ func (u *sqlSymUnion) arraySubscripts() tree.ArraySubscripts { } return nil } + + +func (u *sqlSymUnion) colType2() *types.T { + if colType, ok := u.val.(*types.T); ok && colType != nil { + if colType.Family() == types.IntFamily { + return colType + } + } + return nil +} func (u *sqlSymUnion) stmt() tree.Statement { if stmt, ok := u.val.(tree.Statement); ok { return stmt @@ -242,6 +252,9 @@ func (u *sqlSymUnion) likeTableOption() tree.LikeTableOption { func (u *sqlSymUnion) likeTableOptionList() []tree.LikeTableOption { return u.val.([]tree.LikeTableOption) } +func (u *sqlSymUnion) sequenceOptAs() tree.SequenceOptAs { + return u.val.(tree.SequenceOptAs) +} func (u *sqlSymUnion) colQual() tree.NamedColumnQualification { return u.val.(tree.NamedColumnQualification) } @@ -1119,6 +1132,7 @@ func (u *sqlSymUnion) objectNamePrefixList() tree.ObjectNamePrefixList { %type <*tree.AlterTypeAddValuePlacement> opt_add_val_placement %type opt_timezone %type <*types.T> numeric opt_numeric_modifiers +%type seq_opt_as_int %type <*types.T> opt_float %type <*types.T> character_with_length character_without_length %type <*types.T> const_datetime interval_type @@ -6516,6 +6530,7 @@ reference_action: // %Category: DDL // %Text: // CREATE [TEMPORARY | TEMP] SEQUENCE +// [AS ] // [INCREMENT ] // [MINVALUE | NO MINVALUE] // [MAXVALUE | NO MAXVALUE] @@ -6555,7 +6570,7 @@ sequence_option_list: | sequence_option_list sequence_option_elem { $$.val = append($1.seqOpts(), $2.seqOpt()) } sequence_option_elem: - AS typename { return unimplementedWithIssueDetail(sqllex, 25110, $2.typeReference().SQLString()) } + AS seq_opt_as_int { $$.val = tree.SequenceOption{Name: tree.SeqOptAs, AsIntegerType: $2.colType()}} | CYCLE { /* SKIP DOC */ $$.val = tree.SequenceOption{Name: tree.SeqOptCycle} } | NO CYCLE { $$.val = tree.SequenceOption{Name: tree.SeqOptNoCycle} } @@ -9469,6 +9484,7 @@ opt_numeric_modifiers: $$.val = nil } + // SQL numeric data types numeric: INT @@ -10381,6 +10397,25 @@ c_expr: $$.val = &tree.Subquery{Select: $2.selectStmt(), Exists: true} } +// Possible option values for CREATE SEQUENCE, AS +seq_opt_as_int: + INT + { + $$.val = sqllex.(*lexer).nakedIntType + } +| INTEGER + { + $$.val = sqllex.(*lexer).nakedIntType + } +| BIGINT + { + $$.val = types.Int + } +| SMALLINT + { + $$.val = types.Int2 + } + // Productions that can be followed by a postfix operator. // // Currently we support array indexing (see c_expr above). diff --git a/pkg/sql/sem/tree/create.go b/pkg/sql/sem/tree/create.go index f98bcc900f9e..76f4fa6f444f 100644 --- a/pkg/sql/sem/tree/create.go +++ b/pkg/sql/sem/tree/create.go @@ -1409,6 +1409,10 @@ func (node *SequenceOptions) Format(ctx *FmtCtx) { option := &(*node)[i] ctx.WriteByte(' ') switch option.Name { + case SeqOptAs: + ctx.WriteString(option.Name) + ctx.WriteByte(' ') + ctx.WriteString(option.AsIntegerType.Name()) case SeqOptCycle, SeqOptNoCycle: ctx.WriteString(option.Name) case SeqOptCache: @@ -1455,10 +1459,37 @@ func (node *SequenceOptions) Format(ctx *FmtCtx) { } } +// SequenceOptAs represents possible values (integer types) +// the AS option of a CREATE SEQUENCE statement can have. +type SequenceOptAs int + +// Possible AS option values (integer types). +const ( + SequenceOptAsInteger SequenceOptAs = iota + SequenceOptAsBigInt + SequenceOptAsSmallInt +) + +func (o SequenceOptAs) String() string { + switch o { + case SequenceOptAsInteger: + return "integer" + case SequenceOptAsBigInt: + return "bigint" + case SequenceOptAsSmallInt: + return "smallint" + default: + panic("unknown sequence opt as value %s" + strconv.Itoa(int(o))) + } +} + // SequenceOption represents an option on a CREATE SEQUENCE statement. type SequenceOption struct { Name string + // AsIntegerType specifies default min and max values of a sequence. + AsIntegerType *types.T + IntVal *int64 OptionalWord bool diff --git a/pkg/sql/sequence.go b/pkg/sql/sequence.go index c7e548fbe05b..fb47180d7c73 100644 --- a/pkg/sql/sequence.go +++ b/pkg/sql/sequence.go @@ -29,6 +29,7 @@ import ( "github.com/cockroachdb/cockroach/pkg/sql/privilege" "github.com/cockroachdb/cockroach/pkg/sql/sem/builtins" "github.com/cockroachdb/cockroach/pkg/sql/sem/tree" + "github.com/cockroachdb/cockroach/pkg/sql/types" "github.com/cockroachdb/cockroach/pkg/util/errorutil/unimplemented" "github.com/cockroachdb/cockroach/pkg/util/log" "github.com/cockroachdb/cockroach/pkg/util/sequence" @@ -238,11 +239,20 @@ func assignSequenceOptions( sequenceID descpb.ID, sequenceParentID descpb.ID, ) error { + + // Set the default integer type of a sequence. + var integerType = types.Int + var upperIntBound = int64(math.MaxInt64) + var lowerIntBound = int64(math.MinInt64) + // All other defaults are dependent on the value of increment, // i.e. whether the sequence is ascending or descending. for _, option := range optsNode { if option.Name == tree.SeqOptIncrement { opts.Increment = *option.IntVal + } else if option.Name == tree.SeqOptAs { + integerType = option.AsIntegerType + opts.AsIntegerType = integerType.Name() } } if opts.Increment == 0 { @@ -253,14 +263,48 @@ func assignSequenceOptions( // Set increment-dependent defaults. if setDefaults { + + // TODO: Move this to a setDefaults helper function + opts.MinValue = math.MinInt64 + opts.MaxValue = math.MaxInt64 + if isAscending { + opts.Start = 1 opts.MinValue = 1 - opts.MaxValue = math.MaxInt64 - opts.Start = opts.MinValue + + switch integerType { + case types.Int2: + opts.MaxValue = math.MaxInt16 + upperIntBound = math.MaxInt16 + lowerIntBound = math.MinInt16 + case types.Int4: + opts.MaxValue = math.MaxInt32 + upperIntBound = math.MaxInt32 + lowerIntBound = math.MinInt32 + case types.Int: + // Do nothing, it's the default. + default: + return pgerror.Newf(pgcode.InvalidParameterValue, + "CREATE SEQUENCE option AS received type %s, must be integer", integerType) + } } else { - opts.MinValue = math.MinInt64 + opts.Start = -1 opts.MaxValue = -1 - opts.Start = opts.MaxValue + switch integerType { + case types.Int2: + opts.MinValue = math.MinInt16 + upperIntBound = math.MaxInt16 + lowerIntBound = math.MinInt16 + case types.Int4: + opts.MinValue = math.MinInt32 + upperIntBound = math.MaxInt32 + lowerIntBound = math.MinInt32 + case types.Int: + // Do nothing, it's the default. + default: + return pgerror.Newf(pgcode.InvalidParameterValue, + "CREATE SEQUENCE option AS received type %s, must be integer", integerType) + } } } @@ -295,11 +339,24 @@ func assignSequenceOptions( case tree.SeqOptIncrement: // Do nothing; this has already been set. case tree.SeqOptMinValue: + minValueToSet := *option.IntVal + if minValueToSet < lowerIntBound { + return pgerror.Newf(pgcode.InvalidParameterValue, + "MINVALUE (%d) must be greater than (%d) for type %s", + minValueToSet, lowerIntBound, integerType.Name()) + } // A value of nil represents the user explicitly saying `NO MINVALUE`. if option.IntVal != nil { opts.MinValue = *option.IntVal } case tree.SeqOptMaxValue: + maxValueToSet := *option.IntVal + if maxValueToSet > upperIntBound { + return pgerror.Newf(pgcode.InvalidParameterValue, + "MAXVALUE (%d) must be less than (%d) for type %s", + maxValueToSet, upperIntBound, integerType.Name()) + } + // A value of nil represents the user explicitly saying `NO MAXVALUE`. if option.IntVal != nil { opts.MaxValue = *option.IntVal diff --git a/pkg/sql/sequence_test.go b/pkg/sql/sequence_test.go index 8f523ccba7a9..0e73405928a2 100644 --- a/pkg/sql/sequence_test.go +++ b/pkg/sql/sequence_test.go @@ -21,9 +21,11 @@ import ( "github.com/cockroachdb/cockroach/pkg/sql/catalog/catalogkeys" "github.com/cockroachdb/cockroach/pkg/sql/catalog/catalogkv" "github.com/cockroachdb/cockroach/pkg/sql/catalog/tabledesc" + "github.com/cockroachdb/cockroach/pkg/sql/tests" "github.com/cockroachdb/cockroach/pkg/testutils/serverutils" "github.com/cockroachdb/cockroach/pkg/testutils/sqlutils" "github.com/cockroachdb/cockroach/pkg/util/leaktest" + "github.com/cockroachdb/cockroach/pkg/util/log" "github.com/stretchr/testify/require" ) @@ -406,3 +408,160 @@ func breakOwnershipMapping( ) require.NoError(t, err) } + +func TestCreateSequenceAsOption(t *testing.T) { + defer leaktest.AfterTest(t)() + defer log.Scope(t).Close(t) + + ctx := context.Background() + params, _ := tests.CreateTestServerParams() + s, sqlDBRaw, _ := serverutils.StartServer(t, params) + sqlDB := sqlutils.MakeSQLRunner(sqlDBRaw) + defer s.Stopper().Stop(ctx) + + tests := []struct { + name string + data string + verifyQuery string + err string + expected [][]string + }{ + { + name: "as integer", + data: ` + CREATE SEQUENCE public.a_seq AS integer + START WITH 2 + INCREMENT BY 1 + MINVALUE 0 + MAXVALUE 234567 + CACHE 1;`, + verifyQuery: `SHOW CREATE SEQUENCE a_seq`, + expected: [][]string{{ + "a_seq", `CREATE SEQUENCE public.a_seq AS int MINVALUE 0 MAXVALUE 234567 INCREMENT 1 START 2`, + }}, + }, + { + name: "as integer desc", + data: ` + CREATE SEQUENCE public.a_seq AS integer + START WITH -20000 + INCREMENT BY -1 + MINVALUE -20000 + MAXVALUE 0 + CACHE 1;`, + verifyQuery: `SHOW CREATE SEQUENCE a_seq`, + expected: [][]string{{ + "a_seq", `CREATE SEQUENCE public.a_seq AS int MINVALUE -20000 MAXVALUE 0 INCREMENT -1 START -20000`, + }}, + }, + { + name: "as bigint", + data: ` + CREATE SEQUENCE public.a_seq AS bigint + START WITH 1 + INCREMENT BY 1 + CACHE 1;`, + verifyQuery: `SHOW CREATE SEQUENCE a_seq`, + expected: [][]string{{ + "a_seq", `CREATE SEQUENCE public.a_seq AS int MINVALUE 1 MAXVALUE 9223372036854775807 INCREMENT 1 START 1`, + }}, + }, + { + name: "as smallint", + data: ` + CREATE SEQUENCE public.a_seq AS smallint + START WITH 2 + INCREMENT BY 3 + CACHE 1;`, + verifyQuery: `SHOW CREATE SEQUENCE a_seq`, + expected: [][]string{{ + "a_seq", `CREATE SEQUENCE public.a_seq AS int2 MINVALUE 1 MAXVALUE 32767 INCREMENT 3 START 2`, + }}, + }, + { + name: "as smallint desc", + data: ` + CREATE SEQUENCE public.a_seq AS smallint + START WITH -4 + INCREMENT BY -3`, + verifyQuery: `SHOW CREATE SEQUENCE a_seq`, + expected: [][]string{{ + "a_seq", `CREATE SEQUENCE public.a_seq AS int2 MINVALUE -32768 MAXVALUE -1 INCREMENT -3 START -4`, + }}, + }, + { + name: "start value out of bounds", + data: ` + CREATE SEQUENCE public.a_seq AS smallint + START WITH 45678 + INCREMENT BY 1;`, + verifyQuery: `SHOW CREATE SEQUENCE a_seq`, + err: `START value`, + }, + { + name: "invalid syntax int2", + data: ` + CREATE SEQUENCE public.a_seq + AS int2 + START WITH 1 + INCREMENT BY 1 + CACHE 1;`, + err: `syntax error`, + }, + { + name: "min out of inttype bounds", + data: ` + CREATE SEQUENCE public.a_seq + AS smallint + START WITH 1 + INCREMENT BY 1 + MINVALUE -1000000 + CACHE 1;`, + err: `must be greater than`, + }, + { + name: "max out of inttype bounds", + data: ` + CREATE SEQUENCE public.a_seq + AS smallint + START WITH 1 + INCREMENT BY 1 + MAXVALUE 123456 + CACHE 1;`, + err: `must be less than`, + }, + { + name: `MAXINT overrides integer type default max`, + data: `CREATE SEQUENCE public.a_seq + AS integer + START WITH 1 + INCREMENT BY 1 + MAXVALUE 9001 + CACHE 1;`, + verifyQuery: `SHOW CREATE SEQUENCE a_seq`, + expected: [][]string{{ + "a_seq", `CREATE SEQUENCE public.a_seq AS int MINVALUE 1 MAXVALUE 9001 INCREMENT 1 START 1`, + }}, + }, + } + for _, test := range tests { + + t.Run(test.name, func(t *testing.T) { + // Set up clean testing enviornment. + sqlDB.Exec(t, `DROP SEQUENCE IF EXISTS a_seq`) + query := test.data + + if test.err != "" { + sqlDB.ExpectErr(t, test.err, query) + sqlDB.ExpectErr(t, `relation "a_seq" does not exist`, `DROP SEQUENCE a_seq`) + + } else { + + // Verify expected behaviour of CREATE SEQUENCE AS option. + sqlDB.Exec(t, query) + sqlDB.CheckQueryResults(t, test.verifyQuery, test.expected) + sqlDB.Exec(t, `DROP SEQUENCE a_seq`) + } + }) + } +} diff --git a/pkg/sql/show_create_clauses.go b/pkg/sql/show_create_clauses.go index 83442377aaff..9c63d5d2bbc0 100644 --- a/pkg/sql/show_create_clauses.go +++ b/pkg/sql/show_create_clauses.go @@ -234,6 +234,9 @@ func ShowCreateSequence( f.WriteString("SEQUENCE ") f.FormatNode(tn) opts := desc.GetSequenceOpts() + if opts.AsIntegerType != "" { + f.Printf(" AS %s", opts.AsIntegerType) + } f.Printf(" MINVALUE %d", opts.MinValue) f.Printf(" MAXVALUE %d", opts.MaxValue) f.Printf(" INCREMENT %d", opts.Increment) diff --git a/pkg/sql/show_test.go b/pkg/sql/show_test.go index 44739cf68b77..1b7de654f44c 100644 --- a/pkg/sql/show_test.go +++ b/pkg/sql/show_test.go @@ -461,6 +461,24 @@ func TestShowCreateSequence(t *testing.T) { `CREATE SEQUENCE %s INCREMENT 5 MAXVALUE 10000 START 10 MINVALUE 0`, `CREATE SEQUENCE public.%s MINVALUE 0 MAXVALUE 10000 INCREMENT 5 START 10`, }, + // TODO: add a smallint test case - but int2 token is not supported. + { + `CREATE SEQUENCE %s AS smallint`, + `CREATE SEQUENCE public.%s AS int2 MINVALUE 1 MAXVALUE 32767 INCREMENT 1 START 1`, + }, + { + `CREATE SEQUENCE %s AS int`, + `CREATE SEQUENCE public.%s AS int MINVALUE 1 MAXVALUE 9223372036854775807 INCREMENT 1 START 1`, + }, + { + `CREATE SEQUENCE %s AS bigint`, + `CREATE SEQUENCE public.%s AS int MINVALUE 1 MAXVALUE 9223372036854775807 INCREMENT 1 START 1`, + }, + // Override int/bigint's max value with user configured max value. + { + `CREATE SEQUENCE %s AS integer MINVALUE -5 MAXVALUE 9001`, + `CREATE SEQUENCE public.%s AS int MINVALUE -5 MAXVALUE 9001 INCREMENT 1 START -5`, + }, } for i, test := range tests { t.Run(fmt.Sprint(i), func(t *testing.T) {