diff --git a/protocol/communities/persistence.go b/protocol/communities/persistence.go index b7a2e3a9f..21726af46 100644 --- a/protocol/communities/persistence.go +++ b/protocol/communities/persistence.go @@ -345,7 +345,7 @@ func (p *Persistence) SaveRequestToJoinRevealedAddresses(request *RequestToJoin) _ = tx.Rollback() }() - query := `INSERT OR REPLACE INTO communities_requests_to_join_revealed_addresses (request_id, address, chain_ids) VALUES (?, ?, ?)` + query := `INSERT OR REPLACE INTO communities_requests_to_join_revealed_addresses (request_id, address, chain_ids, is_airdrop_address) VALUES (?, ?, ?, ?)` stmt, err := tx.Prepare(query) if err != nil { return @@ -362,6 +362,7 @@ func (p *Persistence) SaveRequestToJoinRevealedAddresses(request *RequestToJoin) request.ID, account.Address, strings.Join(chainIDs, ","), + account.IsAirdropAddress, ) if err != nil { return @@ -531,7 +532,7 @@ func (p *Persistence) GetPermissionTokenCriteriaResult(permissionID string, comm func (p *Persistence) GetRequestToJoinRevealedAddresses(requestID []byte) ([]*protobuf.RevealedAccount, error) { revealedAccounts := make([]*protobuf.RevealedAccount, 0) - rows, err := p.db.Query(`SELECT address, chain_ids FROM communities_requests_to_join_revealed_addresses WHERE request_id = ?`, requestID) + rows, err := p.db.Query(`SELECT address, chain_ids, is_airdrop_address FROM communities_requests_to_join_revealed_addresses WHERE request_id = ?`, requestID) if err != nil { return nil, err } @@ -540,7 +541,8 @@ func (p *Persistence) GetRequestToJoinRevealedAddresses(requestID []byte) ([]*pr for rows.Next() { address := "" chainIDsStr := "" - err := rows.Scan(&address, &chainIDsStr) + isAirDropAddress := false + err := rows.Scan(&address, &chainIDsStr, &isAirDropAddress) if err != nil { return nil, err } @@ -557,8 +559,9 @@ func (p *Persistence) GetRequestToJoinRevealedAddresses(requestID []byte) ([]*pr } revealedAccount := &protobuf.RevealedAccount{ - Address: address, - ChainIds: chainIDs, + Address: address, + ChainIds: chainIDs, + IsAirdropAddress: isAirDropAddress, } revealedAccounts = append(revealedAccounts, revealedAccount) } diff --git a/protocol/communities_messenger_token_permissions_test.go b/protocol/communities_messenger_token_permissions_test.go index 7376eb929..75e1281f7 100644 --- a/protocol/communities_messenger_token_permissions_test.go +++ b/protocol/communities_messenger_token_permissions_test.go @@ -161,8 +161,16 @@ func (s *MessengerCommunitiesTokenPermissionsSuite) newMessenger(password string } func (s *MessengerCommunitiesTokenPermissionsSuite) joinCommunity(community *communities.Community, user *Messenger, password string, addresses []string) { + s.joinCommunityWithAirdropAddress(community, user, password, addresses, "") +} + +func (s *MessengerCommunitiesTokenPermissionsSuite) joinCommunityWithAirdropAddress(community *communities.Community, user *Messenger, password string, addresses []string, airdropAddress string) { passwdHash := types.EncodeHex(crypto.Keccak256([]byte(password))) - request := &requests.RequestToJoinCommunity{CommunityID: community.ID(), Password: passwdHash, AddressesToReveal: addresses} + if airdropAddress == "" && len(addresses) > 0 { + airdropAddress = addresses[0] + } + + request := &requests.RequestToJoinCommunity{CommunityID: community.ID(), Password: passwdHash, AddressesToReveal: addresses, AirdropAddress: airdropAddress} joinCommunity(&s.Suite, community, s.owner, user, request) } @@ -412,9 +420,11 @@ func (s *MessengerCommunitiesTokenPermissionsSuite) TestJoinedCommunityMembersSh s.Require().Len(member.RevealedAccounts, 2) s.Require().Equal(member.RevealedAccounts[0].Address, aliceAddress1) s.Require().Equal(member.RevealedAccounts[1].Address, aliceAddress2) + s.Require().Equal(true, member.RevealedAccounts[0].IsAirdropAddress) case common.PubkeyToHex(&s.bob.identity.PublicKey): s.Require().Len(member.RevealedAccounts, 1) s.Require().Equal(member.RevealedAccounts[0].Address, bobAddress) + s.Require().Equal(true, member.RevealedAccounts[0].IsAirdropAddress) default: s.Require().Fail("pubKey does not match expected keys") } @@ -440,6 +450,34 @@ func (s *MessengerCommunitiesTokenPermissionsSuite) TestJoinedCommunityMembersSe switch pubKey { case common.PubkeyToHex(&s.alice.identity.PublicKey): s.Require().Equal(member.RevealedAccounts[0].Address, aliceAddress2) + s.Require().Equal(true, member.RevealedAccounts[0].IsAirdropAddress) + default: + s.Require().Fail("pubKey does not match expected keys") + } + } + } +} + +func (s *MessengerCommunitiesTokenPermissionsSuite) TestJoinedCommunityMembersMultipleSelectedSharedAddresses() { + community, _ := s.createCommunity() + s.advertiseCommunityTo(community, s.alice) + + s.joinCommunityWithAirdropAddress(community, s.alice, alicePassword, []string{aliceAddress1, aliceAddress2}, aliceAddress2) + + community, err := s.owner.GetCommunityByID(community.ID()) + s.Require().NoError(err) + + s.Require().Equal(2, community.MembersCount()) + + for pubKey, member := range community.Members() { + if pubKey != common.PubkeyToHex(&s.owner.identity.PublicKey) { + s.Require().Len(member.RevealedAccounts, 2) + + switch pubKey { + case common.PubkeyToHex(&s.alice.identity.PublicKey): + s.Require().Equal(member.RevealedAccounts[0].Address, aliceAddress1) + s.Require().Equal(member.RevealedAccounts[1].Address, aliceAddress2) + s.Require().Equal(true, member.RevealedAccounts[1].IsAirdropAddress) default: s.Require().Fail("pubKey does not match expected keys") } @@ -480,7 +518,7 @@ func (s *MessengerCommunitiesTokenPermissionsSuite) TestEditSharedAddresses() { s.Require().NoError(err) passwdHash := types.EncodeHex(crypto.Keccak256([]byte(alicePassword))) - request := &requests.EditSharedAddresses{CommunityID: community.ID(), Password: passwdHash, AddressesToReveal: []string{aliceAddress1}} + request := &requests.EditSharedAddresses{CommunityID: community.ID(), Password: passwdHash, AddressesToReveal: []string{aliceAddress1}, AirdropAddress: aliceAddress1} response, err := s.alice.EditSharedAddressesForCommunity(request) s.Require().NoError(err) s.Require().NotNil(response) @@ -614,7 +652,7 @@ func (s *MessengerCommunitiesTokenPermissionsSuite) TestBecomeMemberPermissions( // bob tries to join, but he doesn't satisfy so the request isn't sent passwdHash := types.EncodeHex(crypto.Keccak256([]byte(bobPassword))) - request := &requests.RequestToJoinCommunity{CommunityID: community.ID(), Password: passwdHash, AddressesToReveal: []string{bobAddress}} + request := &requests.RequestToJoinCommunity{CommunityID: community.ID(), Password: passwdHash, AddressesToReveal: []string{bobAddress}, AirdropAddress: bobAddress} _, err = s.bob.RequestToJoinCommunity(request) s.Require().Error(err) s.Require().ErrorContains(err, "permission to join not satisfied") diff --git a/protocol/messenger_communities.go b/protocol/messenger_communities.go index 18cb7e1d5..61b596e86 100644 --- a/protocol/messenger_communities.go +++ b/protocol/messenger_communities.go @@ -664,7 +664,7 @@ func (m *Messenger) SetMutePropertyOnChatsByCategory(request *requests.MuteCateg // getAccountsToShare is used to get the wallet accounts to share either when requesting to join a community or when editing // requestToJoinID can be empty when editing -func (m *Messenger) getAccountsToShare(addressesToReveal []string, communityID types.HexBytes, password string, requestToJoinID []byte) (map[gethcommon.Address]*protobuf.RevealedAccount, []gethcommon.Address, error) { +func (m *Messenger) getAccountsToShare(addressesToReveal []string, airdropAddress string, communityID types.HexBytes, password string, requestToJoinID []byte) (map[gethcommon.Address]*protobuf.RevealedAccount, []gethcommon.Address, error) { walletAccounts, err := m.settings.GetAccounts() if err != nil { return nil, nil, err @@ -682,7 +682,7 @@ func (m *Messenger) getAccountsToShare(addressesToReveal []string, communityID t return false } - for _, walletAccount := range walletAccounts { + for i, walletAccount := range walletAccounts { if walletAccount.Chat || walletAccount.Type == accounts.AccountTypeWatch { continue } @@ -709,10 +709,16 @@ func (m *Messenger) getAccountsToShare(addressesToReveal []string, communityID t revealedAddress := gethcommon.HexToAddress(verifiedAccount.Address.Hex()) revealedAddresses = append(revealedAddresses, revealedAddress) + address := verifiedAccount.Address.Hex() + isAirdropAddress := address == airdropAddress + if airdropAddress == "" { + isAirdropAddress = i == 0 + } revealedAccounts[revealedAddress] = &protobuf.RevealedAccount{ - Address: verifiedAccount.Address.Hex(), - Signature: signatureBytes, - ChainIds: make([]uint64, 0), + Address: address, + IsAirdropAddress: isAirdropAddress, + Signature: signatureBytes, + ChainIds: make([]uint64, 0), } } return revealedAccounts, revealedAddresses, nil @@ -761,6 +767,7 @@ func (m *Messenger) RequestToJoinCommunity(request *requests.RequestToJoinCommun if request.Password != "" { revealedAccounts, revealedAddresses, err := m.getAccountsToShare( request.AddressesToReveal, + request.AirdropAddress, request.CommunityID, request.Password, requestToJoin.ID, @@ -783,6 +790,7 @@ func (m *Messenger) RequestToJoinCommunity(request *requests.RequestToJoinCommun for _, revealedAccount := range revealedAccounts { requestToJoinProto.RevealedAccounts = append(requestToJoinProto.RevealedAccounts, revealedAccount) + requestToJoin.RevealedAccounts = append(requestToJoinProto.RevealedAccounts, revealedAccount) } } @@ -906,6 +914,7 @@ func (m *Messenger) EditSharedAddressesForCommunity(request *requests.EditShared // signatures to request revealedAccounts, revealedAddresses, err := m.getAccountsToShare( request.AddressesToReveal, + request.AirdropAddress, request.CommunityID, request.Password, []byte{}, diff --git a/protocol/migrations/migrations.go b/protocol/migrations/migrations.go index 06b9f80e1..2cfb539bc 100644 --- a/protocol/migrations/migrations.go +++ b/protocol/migrations/migrations.go @@ -97,6 +97,7 @@ // 1687416607_add_communities_check_channel_permission_responses_table.up.sql (739B) // 1687856939_add_community_tokens_decimals.up.sql (65B) // 1687959987_modify_community_tokens_supply_as_string.up.sql (77B) +// 1689258900_add_airdrop_address_to_revealed_addresses.up.sql (99B) // README.md (554B) // doc.go (850B) @@ -182,7 +183,7 @@ func _000001_initDownDbSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "000001_init.down.db.sql", size: 65, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "000001_init.down.db.sql", size: 65, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5e, 0xbb, 0x3f, 0x1, 0x75, 0x19, 0x70, 0x86, 0xa7, 0x34, 0x40, 0x17, 0x34, 0x3e, 0x18, 0x51, 0x79, 0xd4, 0x22, 0xad, 0x8f, 0x80, 0xcc, 0xa6, 0xcc, 0x6, 0x2b, 0x62, 0x2, 0x47, 0xba, 0xf9}} return a, nil } @@ -202,7 +203,7 @@ func _000001_initUpDbSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "000001_init.up.db.sql", size: 2719, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "000001_init.up.db.sql", size: 2719, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x60, 0xdc, 0xeb, 0xe, 0xc2, 0x4f, 0x75, 0xa, 0xf6, 0x3e, 0xc7, 0xc4, 0x4, 0xe2, 0xe1, 0xa4, 0x73, 0x2f, 0x4a, 0xad, 0x1a, 0x0, 0xc3, 0x93, 0x9d, 0x77, 0x3e, 0x31, 0x91, 0x77, 0x2e, 0xc8}} return a, nil } @@ -222,7 +223,7 @@ func _000002_add_last_ens_clock_valueUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "000002_add_last_ens_clock_value.up.sql", size: 77, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "000002_add_last_ens_clock_value.up.sql", size: 77, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4d, 0x3, 0x8f, 0xd5, 0x85, 0x83, 0x47, 0xbe, 0xf9, 0x82, 0x7e, 0x81, 0xa4, 0xbd, 0xaa, 0xd5, 0x98, 0x18, 0x5, 0x2d, 0x82, 0x42, 0x3b, 0x3, 0x50, 0xc3, 0x1e, 0x84, 0x35, 0xf, 0xb6, 0x2b}} return a, nil } @@ -242,7 +243,7 @@ func _1586358095_add_replaceUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1586358095_add_replace.up.sql", size: 224, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1586358095_add_replace.up.sql", size: 224, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd2, 0xb3, 0xa9, 0xc7, 0x7f, 0x9d, 0x8f, 0x43, 0x8c, 0x9e, 0x58, 0x8d, 0x44, 0xbc, 0xfa, 0x6b, 0x5f, 0x3f, 0x5a, 0xbe, 0xe8, 0xb1, 0x16, 0xf, 0x91, 0x2a, 0xa0, 0x71, 0xbb, 0x8d, 0x6b, 0xcb}} return a, nil } @@ -262,7 +263,7 @@ func _1588665364_add_image_dataUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1588665364_add_image_data.up.sql", size: 186, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1588665364_add_image_data.up.sql", size: 186, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd6, 0xc6, 0x35, 0xb4, 0x4c, 0x39, 0x96, 0x29, 0x30, 0xda, 0xf4, 0x8f, 0xcb, 0xf1, 0x9f, 0x84, 0xdc, 0x88, 0xd4, 0xd5, 0xbc, 0xb6, 0x5b, 0x46, 0x78, 0x67, 0x76, 0x1a, 0x5, 0x36, 0xdc, 0xe5}} return a, nil } @@ -282,7 +283,7 @@ func _1589365189_add_pow_targetUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1589365189_add_pow_target.up.sql", size: 66, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1589365189_add_pow_target.up.sql", size: 66, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4e, 0x3a, 0xe2, 0x2e, 0x7d, 0xaf, 0xbb, 0xcc, 0x21, 0xa1, 0x7a, 0x41, 0x9a, 0xd0, 0xbb, 0xa9, 0xc8, 0x35, 0xf9, 0x32, 0x34, 0x46, 0x44, 0x9a, 0x86, 0x40, 0x7c, 0xb9, 0x23, 0xc7, 0x3, 0x3f}} return a, nil } @@ -302,7 +303,7 @@ func _1591277220_add_index_messagesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1591277220_add_index_messages.up.sql", size: 240, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1591277220_add_index_messages.up.sql", size: 240, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9c, 0xfe, 0xbe, 0xd5, 0xb8, 0x8f, 0xdd, 0xef, 0xbb, 0xa8, 0xad, 0x7f, 0xed, 0x5b, 0x5b, 0x2f, 0xe6, 0x82, 0x27, 0x78, 0x1f, 0xb9, 0x57, 0xdc, 0x8, 0xc2, 0xb2, 0xa9, 0x9a, 0x4, 0xe1, 0x7a}} return a, nil } @@ -322,7 +323,7 @@ func _1593087212_add_mute_chat_and_raw_message_fieldsUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1593087212_add_mute_chat_and_raw_message_fields.up.sql", size: 215, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1593087212_add_mute_chat_and_raw_message_fields.up.sql", size: 215, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x73, 0x99, 0x61, 0xd1, 0xaa, 0xb4, 0xbf, 0xaf, 0xd7, 0x20, 0x17, 0x40, 0xf9, 0x2, 0xfb, 0xcc, 0x40, 0x2a, 0xd, 0x86, 0x36, 0x30, 0x88, 0x89, 0x25, 0x80, 0x42, 0xb0, 0x5b, 0xe9, 0x73, 0x78}} return a, nil } @@ -342,7 +343,7 @@ func _1595862781_add_audio_dataUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1595862781_add_audio_data.up.sql", size: 246, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1595862781_add_audio_data.up.sql", size: 246, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xae, 0xd2, 0xee, 0x55, 0xfb, 0x36, 0xa4, 0x92, 0x66, 0xe, 0x81, 0x62, 0x1e, 0x7a, 0x69, 0xa, 0xd5, 0x4b, 0xa5, 0x6a, 0x8d, 0x1d, 0xce, 0xf3, 0x3e, 0xc0, 0x5f, 0x9c, 0x66, 0x1b, 0xb4, 0xed}} return a, nil } @@ -362,7 +363,7 @@ func _1595865249_create_emoji_reactions_tableUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1595865249_create_emoji_reactions_table.up.sql", size: 300, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1595865249_create_emoji_reactions_table.up.sql", size: 300, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3e, 0xc5, 0x43, 0x5c, 0x3d, 0x53, 0x43, 0x2c, 0x1a, 0xa5, 0xb6, 0xbf, 0x7, 0x4, 0x5a, 0x3e, 0x40, 0x8b, 0xa4, 0x57, 0x12, 0x58, 0xbc, 0x42, 0xe2, 0xc3, 0xde, 0x76, 0x98, 0x80, 0xe2, 0xbe}} return a, nil } @@ -382,7 +383,7 @@ func _1596805115_create_group_chat_invitations_tableUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1596805115_create_group_chat_invitations_table.up.sql", size: 231, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1596805115_create_group_chat_invitations_table.up.sql", size: 231, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6d, 0xb1, 0x14, 0x6d, 0x54, 0x28, 0x67, 0xc3, 0x23, 0x6a, 0xfc, 0x80, 0xdf, 0x9e, 0x4c, 0x35, 0x36, 0xf, 0xf8, 0xf3, 0x5f, 0xae, 0xad, 0xb, 0xc1, 0x51, 0x8e, 0x17, 0x7, 0xe5, 0x7f, 0x91}} return a, nil } @@ -402,7 +403,7 @@ func _1597322655_add_invitation_admin_chat_fieldUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1597322655_add_invitation_admin_chat_field.up.sql", size: 54, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1597322655_add_invitation_admin_chat_field.up.sql", size: 54, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa9, 0x7a, 0xa0, 0xf2, 0xdb, 0x13, 0x91, 0x91, 0xa8, 0x34, 0x1a, 0xa1, 0x49, 0x68, 0xd5, 0xae, 0x2c, 0xd8, 0xd5, 0xea, 0x8f, 0x8c, 0xc7, 0x2, 0x4e, 0x58, 0x2c, 0x3a, 0x14, 0xd4, 0x4f, 0x2c}} return a, nil } @@ -422,7 +423,7 @@ func _1597757544_add_nicknameUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1597757544_add_nickname.up.sql", size: 52, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1597757544_add_nickname.up.sql", size: 52, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf4, 0xa2, 0x64, 0x50, 0xc5, 0x4, 0xb9, 0x8b, 0xd1, 0x18, 0x9b, 0xc3, 0x91, 0x36, 0x2a, 0x1f, 0xc3, 0x6c, 0x2d, 0x92, 0xf8, 0x5e, 0xff, 0xb1, 0x59, 0x61, 0x2, 0x1c, 0xe1, 0x85, 0x90, 0xa4}} return a, nil } @@ -442,7 +443,7 @@ func _1598955122_add_mentionsUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1598955122_add_mentions.up.sql", size: 52, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1598955122_add_mentions.up.sql", size: 52, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8d, 0x22, 0x17, 0x92, 0xd2, 0x11, 0x4e, 0x7, 0x93, 0x9a, 0x55, 0xfd, 0xb, 0x97, 0xc4, 0x63, 0x6a, 0x81, 0x97, 0xcd, 0xb2, 0xf8, 0x4b, 0x5f, 0x3c, 0xfa, 0x3a, 0x38, 0x53, 0x10, 0xed, 0x9d}} return a, nil } @@ -462,7 +463,7 @@ func _1599641390_add_emoji_reactions_indexUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1599641390_add_emoji_reactions_index.up.sql", size: 126, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1599641390_add_emoji_reactions_index.up.sql", size: 126, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf9, 0xd8, 0xdc, 0xa7, 0xb, 0x92, 0x7a, 0x61, 0x37, 0x24, 0x1c, 0x77, 0x5e, 0xe, 0x7e, 0xfc, 0x9f, 0x98, 0x7b, 0x65, 0xe7, 0xf9, 0x71, 0x57, 0x89, 0x2d, 0x90, 0x1b, 0xf6, 0x5e, 0x37, 0xe8}} return a, nil } @@ -482,7 +483,7 @@ func _1599720851_add_seen_index_remove_long_messagesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1599720851_add_seen_index_remove_long_messages.up.sql", size: 150, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1599720851_add_seen_index_remove_long_messages.up.sql", size: 150, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x24, 0x1c, 0xc4, 0x78, 0x91, 0xc7, 0xeb, 0xfe, 0xc8, 0xa0, 0xd8, 0x13, 0x27, 0x97, 0xc8, 0x96, 0x56, 0x97, 0x33, 0x2c, 0x1e, 0x16, 0x8a, 0xd3, 0x49, 0x99, 0x3, 0xe9, 0xbb, 0xc4, 0x5, 0x3c}} return a, nil } @@ -502,7 +503,7 @@ func _1603198582_add_profile_chat_fieldUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1603198582_add_profile_chat_field.up.sql", size: 45, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1603198582_add_profile_chat_field.up.sql", size: 45, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaa, 0xca, 0xe, 0x46, 0xa0, 0x9, 0x9d, 0x47, 0x57, 0xe9, 0xfb, 0x17, 0xeb, 0x9c, 0xf6, 0xb8, 0x1d, 0xe9, 0xd, 0x0, 0xd5, 0xe5, 0xd8, 0x9e, 0x60, 0xa, 0xbf, 0x32, 0x2c, 0x52, 0x7f, 0x6a}} return a, nil } @@ -522,7 +523,7 @@ func _1603816533_add_linksUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1603816533_add_links.up.sql", size: 48, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1603816533_add_links.up.sql", size: 48, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc9, 0x24, 0xd6, 0x1d, 0xa, 0x83, 0x1e, 0x4d, 0xf, 0xae, 0x4d, 0x8c, 0x51, 0x32, 0xa8, 0x37, 0xb0, 0x14, 0xfb, 0x32, 0x34, 0xc8, 0xc, 0x4e, 0x5b, 0xc5, 0x15, 0x65, 0x73, 0x0, 0x0, 0x1d}} return a, nil } @@ -542,7 +543,7 @@ func _1603888149_create_chat_identity_last_published_tableUpSql() (*asset, error return nil, err } - info := bindataFileInfo{name: "1603888149_create_chat_identity_last_published_table.up.sql", size: 407, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1603888149_create_chat_identity_last_published_table.up.sql", size: 407, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7f, 0x9, 0xf, 0xfb, 0xdb, 0x3c, 0x86, 0x70, 0x82, 0xda, 0x10, 0x25, 0xe2, 0x4e, 0x40, 0x45, 0xab, 0x8b, 0x1c, 0x91, 0x7c, 0xf1, 0x70, 0x2e, 0x81, 0xf3, 0x71, 0x45, 0xda, 0xe2, 0xa4, 0x57}} return a, nil } @@ -562,7 +563,7 @@ func _1605075346_add_communitiesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1605075346_add_communities.up.sql", size: 6971, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1605075346_add_communities.up.sql", size: 6971, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1f, 0x64, 0xea, 0xb4, 0xae, 0x9e, 0xdb, 0x9, 0x58, 0xb6, 0x5c, 0x7a, 0x50, 0xc5, 0xfe, 0x93, 0x5d, 0x36, 0x85, 0x5d, 0x6a, 0xba, 0xc9, 0x7e, 0x84, 0xd7, 0xbf, 0x2a, 0x53, 0xf3, 0x97, 0xf1}} return a, nil } @@ -582,7 +583,7 @@ func _1610117927_add_message_cacheUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1610117927_add_message_cache.up.sql", size: 142, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1610117927_add_message_cache.up.sql", size: 142, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x34, 0xf1, 0xf0, 0x82, 0x79, 0x28, 0x19, 0xc2, 0x39, 0x6a, 0xa5, 0x96, 0x59, 0x23, 0xa0, 0xed, 0x60, 0x58, 0x86, 0x9, 0xb9, 0xad, 0xfb, 0xa, 0xe3, 0x47, 0x6e, 0xa1, 0x18, 0xe8, 0x39, 0x2c}} return a, nil } @@ -602,7 +603,7 @@ func _1610959908_add_dont_wrap_to_raw_messagesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1610959908_add_dont_wrap_to_raw_messages.up.sql", size: 83, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1610959908_add_dont_wrap_to_raw_messages.up.sql", size: 83, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x71, 0x2, 0x9a, 0xca, 0xd4, 0x38, 0x44, 0x30, 0x2b, 0xa8, 0x27, 0x32, 0x63, 0x53, 0x22, 0x60, 0x59, 0x84, 0x23, 0x96, 0x77, 0xf0, 0x56, 0xd7, 0x94, 0xe0, 0x95, 0x28, 0x6, 0x1d, 0x4e, 0xb1}} return a, nil } @@ -622,7 +623,7 @@ func _1610960912_add_send_on_personal_topicUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1610960912_add_send_on_personal_topic.up.sql", size: 82, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1610960912_add_send_on_personal_topic.up.sql", size: 82, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x77, 0xac, 0x2f, 0xc4, 0xd, 0xa7, 0x1b, 0x37, 0x30, 0xc2, 0x68, 0xee, 0xde, 0x54, 0x5e, 0xbf, 0x3f, 0xa0, 0xd6, 0xc6, 0x9f, 0xd4, 0x34, 0x12, 0x76, 0x1e, 0x66, 0x4a, 0xfc, 0xf, 0xee, 0xc9}} return a, nil } @@ -642,7 +643,7 @@ func _1612870480_add_datasync_idUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1612870480_add_datasync_id.up.sql", size: 111, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1612870480_add_datasync_id.up.sql", size: 111, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x34, 0x9a, 0xbc, 0xfa, 0xaa, 0x8c, 0x9c, 0x37, 0x67, 0x15, 0x9c, 0x7e, 0x78, 0x75, 0x66, 0x82, 0x18, 0x72, 0x10, 0xbc, 0xd4, 0xab, 0x44, 0xfe, 0x57, 0x85, 0x6d, 0x19, 0xf5, 0x96, 0x8a, 0xbe}} return a, nil } @@ -662,7 +663,7 @@ func _1614152139_add_communities_request_to_joinUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1614152139_add_communities_request_to_join.up.sql", size: 831, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1614152139_add_communities_request_to_join.up.sql", size: 831, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x11, 0x3, 0x26, 0xf9, 0x29, 0x50, 0x4f, 0xcd, 0x46, 0xe5, 0xb1, 0x6b, 0xb9, 0x2, 0x40, 0xb1, 0xdf, 0x4a, 0x4c, 0x7a, 0xda, 0x3, 0x35, 0xcd, 0x2d, 0xcc, 0x80, 0x7d, 0x57, 0x5f, 0x3, 0x5c}} return a, nil } @@ -682,7 +683,7 @@ func _1615374373_add_confirmationsUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1615374373_add_confirmations.up.sql", size: 227, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1615374373_add_confirmations.up.sql", size: 227, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdd, 0xa6, 0x65, 0xc5, 0x1d, 0xb2, 0x77, 0x36, 0xe3, 0x79, 0xda, 0xe8, 0x7a, 0xa4, 0xdf, 0x45, 0xae, 0xd8, 0xb4, 0xba, 0x90, 0xfd, 0x74, 0x71, 0x14, 0x75, 0x73, 0x72, 0xb9, 0x9e, 0x1, 0x81}} return a, nil } @@ -702,7 +703,7 @@ func _1617694931_add_notification_centerUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1617694931_add_notification_center.up.sql", size: 572, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1617694931_add_notification_center.up.sql", size: 572, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x10, 0x45, 0xc6, 0xc9, 0x73, 0xbb, 0x1f, 0xda, 0xa3, 0x4d, 0x19, 0x98, 0x85, 0x2d, 0xca, 0xda, 0xcc, 0x3b, 0x32, 0xff, 0xc7, 0x7b, 0xe3, 0x9f, 0x9b, 0x2a, 0x93, 0xf5, 0xdf, 0x65, 0x38, 0x91}} return a, nil } @@ -722,7 +723,7 @@ func _1618923660_create_pin_messagesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1618923660_create_pin_messages.up.sql", size: 265, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1618923660_create_pin_messages.up.sql", size: 265, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x61, 0x44, 0x3a, 0xbe, 0x30, 0xd2, 0x7e, 0xc0, 0xe2, 0x8e, 0x65, 0x53, 0x54, 0xbb, 0x7a, 0x1c, 0xb3, 0x5d, 0xd2, 0xa6, 0xa9, 0x28, 0xb7, 0xa4, 0x5f, 0x8b, 0x9, 0x5f, 0x17, 0xc1, 0x85, 0x21}} return a, nil } @@ -742,7 +743,7 @@ func _1619094007_add_joined_chat_fieldUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1619094007_add_joined_chat_field.up.sql", size: 101, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1619094007_add_joined_chat_field.up.sql", size: 101, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfa, 0x30, 0x81, 0x3a, 0x2f, 0x9f, 0xb3, 0x0, 0x55, 0x8e, 0x1d, 0xa8, 0xb0, 0x68, 0xf0, 0x40, 0x1a, 0x6c, 0xaa, 0xfc, 0x33, 0xd1, 0xd1, 0x55, 0x3f, 0xf2, 0xbd, 0x54, 0xa1, 0x2b, 0x40, 0x95}} return a, nil } @@ -762,7 +763,7 @@ func _1619099821_add_last_synced_fieldUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1619099821_add_last_synced_field.up.sql", size: 226, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1619099821_add_last_synced_field.up.sql", size: 226, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf, 0x52, 0x22, 0xe, 0x2f, 0xd7, 0x93, 0x5f, 0x42, 0xc2, 0x93, 0x4, 0x35, 0x6f, 0xc9, 0x19, 0xed, 0x6b, 0x52, 0x6f, 0xae, 0x99, 0xe2, 0x68, 0x3d, 0x4f, 0x40, 0xe, 0xe1, 0xa, 0x47, 0x21}} return a, nil } @@ -782,7 +783,7 @@ func _1621933219_add_mentionedUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1621933219_add_mentioned.up.sql", size: 70, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1621933219_add_mentioned.up.sql", size: 70, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x36, 0x76, 0x8a, 0xc9, 0x7, 0x8f, 0xa5, 0xcb, 0x12, 0x21, 0x4e, 0xfe, 0x96, 0x77, 0xcf, 0x7f, 0x76, 0x75, 0x36, 0x2c, 0xf8, 0x1d, 0x13, 0xcb, 0xcd, 0x6e, 0x70, 0xbf, 0xf5, 0x93, 0x67, 0xd1}} return a, nil } @@ -802,7 +803,7 @@ func _1622010048_add_unviewed_mentions_countUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1622010048_add_unviewed_mentions_count.up.sql", size: 114, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1622010048_add_unviewed_mentions_count.up.sql", size: 114, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7c, 0x16, 0x85, 0xa6, 0x5b, 0xe1, 0x66, 0xb9, 0x84, 0xbe, 0x7f, 0xa, 0x77, 0x23, 0xb9, 0xef, 0x8e, 0x2, 0x8, 0xfc, 0x61, 0xb2, 0x43, 0xa9, 0x63, 0xae, 0xb4, 0xdf, 0x30, 0xb1, 0x61, 0x4b}} return a, nil } @@ -822,7 +823,7 @@ func _1622061278_add_message_activity_center_notification_fieldUpSql() (*asset, return nil, err } - info := bindataFileInfo{name: "1622061278_add_message_activity_center_notification_field.up.sql", size: 80, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1622061278_add_message_activity_center_notification_field.up.sql", size: 80, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8, 0xc, 0xa6, 0x1f, 0xa5, 0xc6, 0x7c, 0x6f, 0xab, 0x2c, 0x2d, 0xb5, 0xa4, 0xdd, 0xc1, 0xd6, 0x44, 0x83, 0xf9, 0xb1, 0xa5, 0xce, 0x34, 0x3d, 0x2, 0xa9, 0x35, 0xcf, 0xc6, 0xb2, 0x43, 0x37}} return a, nil } @@ -842,7 +843,7 @@ func _1622464518_set_synced_to_fromUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1622464518_set_synced_to_from.up.sql", size: 105, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1622464518_set_synced_to_from.up.sql", size: 105, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x33, 0x3e, 0x2b, 0xa, 0x1e, 0xc7, 0x6d, 0x6f, 0xd1, 0x1d, 0xe8, 0x4b, 0xdd, 0x92, 0x76, 0xea, 0xf2, 0x3e, 0x15, 0x85, 0xc4, 0xc3, 0x31, 0xf1, 0xc0, 0xa2, 0xd7, 0x47, 0xde, 0x4e, 0xfd, 0xc6}} return a, nil } @@ -862,7 +863,7 @@ func _1622464519_add_chat_descriptionUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1622464519_add_chat_description.up.sql", size: 93, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1622464519_add_chat_description.up.sql", size: 93, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x36, 0x2e, 0x89, 0x31, 0xec, 0xef, 0xeb, 0x43, 0xf5, 0x96, 0x6d, 0xce, 0x91, 0x8a, 0x37, 0x2a, 0x11, 0x7a, 0x3f, 0xd9, 0x10, 0xbb, 0xa1, 0xbc, 0x7, 0xe0, 0x3b, 0xa5, 0xf4, 0xa6, 0xf4, 0xa1}} return a, nil } @@ -882,7 +883,7 @@ func _1622622253_add_pinned_by_to_pin_messagesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1622622253_add_pinned_by_to_pin_messages.up.sql", size: 52, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1622622253_add_pinned_by_to_pin_messages.up.sql", size: 52, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9b, 0x94, 0xa3, 0x45, 0x91, 0x1e, 0x66, 0xd1, 0x96, 0x5a, 0xaf, 0xfa, 0x29, 0x39, 0xa8, 0x3a, 0x97, 0x4c, 0x65, 0x6, 0x96, 0x90, 0x4c, 0xfe, 0xce, 0x7d, 0x5d, 0xd4, 0xb3, 0x8, 0x6d, 0x5f}} return a, nil } @@ -902,7 +903,7 @@ func _1623938329_add_author_activity_center_notification_fieldUpSql() (*asset, e return nil, err } - info := bindataFileInfo{name: "1623938329_add_author_activity_center_notification_field.up.sql", size: 66, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1623938329_add_author_activity_center_notification_field.up.sql", size: 66, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x36, 0xe6, 0xa7, 0xd5, 0x26, 0xff, 0xab, 0x92, 0x88, 0xf0, 0xd3, 0x34, 0xd9, 0x2f, 0xe7, 0x18, 0x1a, 0x40, 0xf9, 0xbe, 0x8e, 0xfc, 0xd0, 0x4f, 0x1f, 0x4a, 0xb9, 0x83, 0x3f, 0xa9, 0xde, 0xb}} return a, nil } @@ -922,7 +923,7 @@ func _1623938330_add_edit_messagesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1623938330_add_edit_messages.up.sql", size: 369, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1623938330_add_edit_messages.up.sql", size: 369, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7e, 0xd2, 0xce, 0xe, 0x5c, 0x19, 0xbe, 0x5e, 0x29, 0xbe, 0x9b, 0x31, 0x53, 0x76, 0xb2, 0xc8, 0x56, 0xf0, 0x82, 0xfe, 0x7d, 0x6c, 0xe8, 0x5c, 0xe9, 0x7a, 0x5d, 0x5, 0xc4, 0x92, 0x38, 0xe3}} return a, nil } @@ -942,7 +943,7 @@ func _1624978434_add_muted_communityUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1624978434_add_muted_community.up.sql", size: 82, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1624978434_add_muted_community.up.sql", size: 82, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6, 0xdc, 0x6e, 0x6f, 0x97, 0xc7, 0x3d, 0x50, 0xab, 0x80, 0x87, 0x44, 0x43, 0x38, 0xe6, 0xc5, 0xc1, 0x91, 0x26, 0xf, 0x16, 0xe, 0xd9, 0x32, 0x37, 0x25, 0x96, 0x25, 0x6, 0xc8, 0xb5, 0x4a}} return a, nil } @@ -962,7 +963,7 @@ func _1625018910_add_repply_message_activity_center_notification_fieldUpSql() (* return nil, err } - info := bindataFileInfo{name: "1625018910_add_repply_message_activity_center_notification_field.up.sql", size: 86, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1625018910_add_repply_message_activity_center_notification_field.up.sql", size: 86, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf2, 0x52, 0x12, 0x40, 0xd8, 0x6f, 0x71, 0x97, 0x46, 0x39, 0xaa, 0x74, 0x41, 0xcd, 0x45, 0x4c, 0xe8, 0xd9, 0xe2, 0x56, 0x8e, 0x78, 0x18, 0x62, 0xf6, 0xa8, 0x36, 0xe9, 0x9a, 0x1f, 0xc, 0xb1}} return a, nil } @@ -982,7 +983,7 @@ func _1625762506_add_deleted_messagesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1625762506_add_deleted_messages.up.sql", size: 357, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1625762506_add_deleted_messages.up.sql", size: 357, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd5, 0x61, 0x42, 0xb6, 0x8c, 0x7f, 0x2d, 0xec, 0xa9, 0x6d, 0x3d, 0x0, 0xa3, 0x32, 0xd8, 0x4a, 0x38, 0x5c, 0x97, 0xfc, 0x68, 0xde, 0xa9, 0xb7, 0xd8, 0xde, 0xb, 0x29, 0x93, 0xdc, 0x81, 0xf8}} return a, nil } @@ -1002,7 +1003,7 @@ func _1627388946_add_communities_synced_atUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1627388946_add_communities_synced_at.up.sql", size: 87, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1627388946_add_communities_synced_at.up.sql", size: 87, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc1, 0xbd, 0x9b, 0x6a, 0xc9, 0x1a, 0x7a, 0x34, 0xcf, 0x5f, 0x80, 0x9e, 0x8c, 0x1c, 0xc0, 0xec, 0x4e, 0x78, 0xb0, 0x2d, 0x15, 0x77, 0x38, 0x4a, 0x6a, 0x5, 0x84, 0xf5, 0x8d, 0x8b, 0xbe, 0x9}} return a, nil } @@ -1022,7 +1023,7 @@ func _1628280060_createUsermessagesIndexSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1628280060_create-usermessages-index.sql", size: 80, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1628280060_create-usermessages-index.sql", size: 80, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x10, 0x6f, 0x70, 0x47, 0x40, 0xab, 0xa8, 0x60, 0xe0, 0xf9, 0x8, 0x7e, 0x19, 0x9d, 0xba, 0x33, 0x16, 0xfc, 0x3c, 0xdc, 0xa8, 0xa6, 0x53, 0x61, 0x39, 0x82, 0x91, 0xcf, 0x69, 0xd8, 0xf2, 0xcf}} return a, nil } @@ -1042,7 +1043,7 @@ func _1632303896_modify_contacts_tableUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1632303896_modify_contacts_table.up.sql", size: 1574, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1632303896_modify_contacts_table.up.sql", size: 1574, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x81, 0x1e, 0x6c, 0x3c, 0xd, 0xd7, 0x7d, 0xbb, 0x19, 0xbc, 0xe4, 0x7, 0xfd, 0xf8, 0x66, 0x6d, 0x78, 0xf6, 0x4, 0xe6, 0x51, 0xe4, 0xe6, 0xdc, 0xe, 0x5a, 0x2e, 0xac, 0xe6, 0xe7, 0x24, 0x69}} return a, nil } @@ -1062,7 +1063,7 @@ func _1633349838_add_emoji_column_in_chatsUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1633349838_add_emoji_column_in_chats.up.sql", size: 52, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1633349838_add_emoji_column_in_chats.up.sql", size: 52, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcb, 0x33, 0xcb, 0x3b, 0xa9, 0x99, 0x77, 0x6a, 0xea, 0xc4, 0x39, 0xd7, 0xa1, 0x49, 0xa7, 0xdf, 0xff, 0x72, 0xda, 0x34, 0x21, 0x67, 0x66, 0xca, 0x65, 0x46, 0x1, 0xa6, 0x4e, 0xf9, 0x38, 0x86}} return a, nil } @@ -1082,7 +1083,7 @@ func _1634831235_add_highlight_column_in_chatsUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1634831235_add_highlight_column_in_chats.up.sql", size: 62, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1634831235_add_highlight_column_in_chats.up.sql", size: 62, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaa, 0x63, 0x5c, 0x73, 0x19, 0x83, 0xbd, 0x35, 0x80, 0x9f, 0x66, 0xec, 0x4c, 0xbc, 0x9d, 0x2d, 0x52, 0x91, 0x6d, 0xb3, 0x2b, 0x87, 0xde, 0x24, 0x46, 0x5c, 0xd, 0xfd, 0x78, 0xf5, 0xe3, 0xe9}} return a, nil } @@ -1102,7 +1103,7 @@ func _1634896007_add_last_updated_locally_and_removedUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1634896007_add_last_updated_locally_and_removed.up.sql", size: 131, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1634896007_add_last_updated_locally_and_removed.up.sql", size: 131, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0xa8, 0x34, 0xe2, 0xc0, 0x62, 0xc8, 0xd6, 0x5a, 0x87, 0xe3, 0x70, 0xe1, 0xc4, 0x16, 0x9c, 0x60, 0x2e, 0x98, 0xf0, 0x91, 0x84, 0xbe, 0xe0, 0xdf, 0x3e, 0x4d, 0x24, 0xc4, 0x6c, 0x40, 0x17}} return a, nil } @@ -1122,7 +1123,7 @@ func _1635840039_add_clock_read_at_column_in_chatsUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1635840039_add_clock_read_at_column_in_chats.up.sql", size: 245, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1635840039_add_clock_read_at_column_in_chats.up.sql", size: 245, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6c, 0xba, 0x3f, 0xba, 0x1a, 0x71, 0xa8, 0x9, 0x19, 0xbe, 0x1e, 0x38, 0x50, 0x30, 0x3a, 0x52, 0x15, 0x29, 0xee, 0x49, 0x19, 0x6f, 0x53, 0xc2, 0xc6, 0x6c, 0xd9, 0x80, 0x7e, 0xb9, 0x58, 0x7a}} return a, nil } @@ -1142,7 +1143,7 @@ func _1637852321_add_received_invitation_admin_column_in_chatsUpSql() (*asset, e return nil, err } - info := bindataFileInfo{name: "1637852321_add_received_invitation_admin_column_in_chats.up.sql", size: 72, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1637852321_add_received_invitation_admin_column_in_chats.up.sql", size: 72, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x70, 0x8b, 0x92, 0x56, 0x83, 0x70, 0x7f, 0x6, 0xb2, 0xd, 0x1c, 0x2f, 0xcc, 0x93, 0xc3, 0x85, 0x8c, 0xc2, 0x38, 0x94, 0x7e, 0x88, 0x3f, 0x39, 0x34, 0xf8, 0x90, 0xcf, 0x83, 0x68, 0x3d, 0xe5}} return a, nil } @@ -1162,7 +1163,7 @@ func _1645034601_display_nameUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1645034601_display_name.up.sql", size: 110, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1645034601_display_name.up.sql", size: 110, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x15, 0xfc, 0xda, 0x70, 0x53, 0x19, 0x90, 0x20, 0x4, 0x1c, 0x99, 0x42, 0x53, 0x1a, 0xd6, 0xb8, 0xbb, 0x8a, 0xe8, 0xbe, 0xcc, 0xb7, 0xc, 0x7f, 0x73, 0x50, 0x18, 0xf1, 0x8b, 0x18, 0x54, 0x64}} return a, nil } @@ -1182,7 +1183,7 @@ func _1645034602_add_mutual_contact_requestUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1645034602_add_mutual_contact_request.up.sql", size: 454, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1645034602_add_mutual_contact_request.up.sql", size: 454, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1a, 0xe0, 0x5d, 0x68, 0xb8, 0x50, 0xa4, 0xbb, 0x3e, 0x4f, 0x2, 0x87, 0xad, 0x87, 0x6e, 0x38, 0xdf, 0xc8, 0x4c, 0xe2, 0x5f, 0xd1, 0x6, 0xdc, 0xe7, 0xbd, 0x4a, 0x9c, 0xf3, 0x91, 0xa1, 0x51}} return a, nil } @@ -1202,7 +1203,7 @@ func _1650373957_add_contact_request_stateUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1650373957_add_contact_request_state.up.sql", size: 59, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1650373957_add_contact_request_state.up.sql", size: 59, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5e, 0xc1, 0x3f, 0x29, 0xe, 0x19, 0x86, 0x1a, 0x4c, 0x6c, 0x2a, 0x90, 0x9d, 0xdf, 0xb1, 0xb, 0x72, 0x25, 0xcd, 0x6c, 0x5f, 0xd, 0x51, 0x9e, 0x85, 0xc0, 0x9, 0xb7, 0xbc, 0x87, 0x23, 0xec}} return a, nil } @@ -1222,7 +1223,7 @@ func _1656958989_contact_verificationUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1656958989_contact_verification.up.sql", size: 624, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1656958989_contact_verification.up.sql", size: 624, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3a, 0x3f, 0x28, 0x38, 0x33, 0xdb, 0xe9, 0x4d, 0xc0, 0x54, 0x8c, 0x2a, 0x73, 0xc4, 0xdd, 0x5c, 0xc5, 0x1a, 0x93, 0x4b, 0x6, 0x13, 0xbe, 0x42, 0xd2, 0x7f, 0xd4, 0xc, 0xc5, 0x4e, 0x6d, 0xce}} return a, nil } @@ -1242,7 +1243,7 @@ func _1658236268_add_discord_message_authors_tableUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1658236268_add_discord_message_authors_table.up.sql", size: 191, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1658236268_add_discord_message_authors_table.up.sql", size: 191, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3d, 0xb7, 0xdb, 0x79, 0x1, 0x15, 0xe7, 0x76, 0x5d, 0x22, 0x54, 0x82, 0x9a, 0xbe, 0x24, 0xc1, 0x82, 0xcf, 0x67, 0x91, 0x53, 0xcc, 0xac, 0x74, 0x18, 0x61, 0x69, 0x68, 0x19, 0xca, 0x2b, 0xa8}} return a, nil } @@ -1262,7 +1263,7 @@ func _1659619997_add_discord_messages_tableUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1659619997_add_discord_messages_table.up.sql", size: 371, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1659619997_add_discord_messages_table.up.sql", size: 371, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xde, 0x12, 0x9c, 0x96, 0xe2, 0x42, 0x3f, 0x94, 0x62, 0xc2, 0x76, 0xab, 0x3b, 0x4c, 0x85, 0x36, 0x48, 0xcc, 0x73, 0x60, 0x93, 0x5a, 0xd6, 0x7, 0xd6, 0x0, 0xee, 0x1b, 0x1e, 0x34, 0x58, 0x99}} return a, nil } @@ -1282,7 +1283,7 @@ func _1660226788_create_chat_identity_social_linksUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1660226788_create_chat_identity_social_links.up.sql", size: 318, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1660226788_create_chat_identity_social_links.up.sql", size: 318, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3c, 0x76, 0x40, 0xe9, 0x85, 0xc4, 0x38, 0xf8, 0xe5, 0x5d, 0xe8, 0x13, 0x46, 0x1b, 0xc, 0x1, 0xe9, 0x2f, 0x74, 0xd1, 0x79, 0x59, 0xa4, 0xdb, 0x4a, 0x4a, 0xf4, 0x98, 0x58, 0x3c, 0x57, 0xd3}} return a, nil } @@ -1302,7 +1303,7 @@ func _1660226789_add_walletconnectsessions_tableUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1660226789_add_walletconnectsessions_table.up.sql", size: 215, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1660226789_add_walletconnectsessions_table.up.sql", size: 215, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf8, 0x5c, 0x72, 0x2, 0xed, 0x36, 0x19, 0x91, 0x4d, 0x1a, 0xc1, 0xab, 0x84, 0xfa, 0x41, 0xb1, 0x46, 0xa5, 0xdb, 0x3f, 0x76, 0x47, 0xd3, 0x75, 0x3c, 0x6a, 0x8e, 0x78, 0xe6, 0x41, 0xdc, 0x7f}} return a, nil } @@ -1322,7 +1323,7 @@ func _1661242854_add_communities_requests_to_leaveUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1661242854_add_communities_requests_to_leave.up.sql", size: 204, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1661242854_add_communities_requests_to_leave.up.sql", size: 204, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x49, 0x2e, 0x7d, 0x14, 0xef, 0x6e, 0x95, 0x4b, 0x6, 0x70, 0x2e, 0xd1, 0xf6, 0x59, 0xf9, 0xe, 0x56, 0xa, 0x9c, 0x80, 0x18, 0xca, 0xb9, 0x49, 0x19, 0xf, 0x89, 0x94, 0x36, 0x6d, 0x93, 0x9a}} return a, nil } @@ -1342,7 +1343,7 @@ func _1662044232_add_chat_imageUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1662044232_add_chat_image.up.sql", size: 49, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1662044232_add_chat_image.up.sql", size: 49, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb3, 0x74, 0xdf, 0x50, 0x79, 0x73, 0x9e, 0xd0, 0xff, 0xa4, 0xd3, 0x87, 0xc3, 0x48, 0x31, 0x6c, 0xdf, 0xa6, 0x20, 0x85, 0xe6, 0x4e, 0x19, 0x9d, 0xef, 0xcc, 0x84, 0x2b, 0x5d, 0x44, 0x34, 0x6}} return a, nil } @@ -1362,7 +1363,7 @@ func _1662106895_add_chat_first_message_timestampUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1662106895_add_chat_first_message_timestamp.up.sql", size: 113, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1662106895_add_chat_first_message_timestamp.up.sql", size: 113, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8b, 0x55, 0x74, 0xfa, 0xf5, 0x51, 0x85, 0x19, 0xfd, 0xfb, 0x6, 0x79, 0x4d, 0x1d, 0xd, 0x3, 0x46, 0x66, 0x34, 0x1e, 0xce, 0x91, 0x21, 0x29, 0xf6, 0x71, 0xe7, 0x31, 0x39, 0x8f, 0x9d, 0x5}} return a, nil } @@ -1382,7 +1383,7 @@ func _1662723928_add_discord_author_image_fieldsUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1662723928_add_discord_author_image_fields.up.sql", size: 75, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1662723928_add_discord_author_image_fields.up.sql", size: 75, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1e, 0x5b, 0x48, 0x57, 0x98, 0x55, 0x9a, 0xf1, 0x75, 0xf7, 0xb5, 0x41, 0x5e, 0x96, 0xc5, 0xce, 0xfc, 0x30, 0x5c, 0x15, 0x35, 0x9e, 0x4e, 0x4a, 0x3b, 0x38, 0x42, 0xc4, 0x27, 0x3c, 0x87, 0xbf}} return a, nil } @@ -1402,7 +1403,7 @@ func _1664195977_add_deleted_for_mesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1664195977_add_deleted_for_mes.up.sql", size: 352, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1664195977_add_deleted_for_mes.up.sql", size: 352, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7d, 0x9d, 0x13, 0x9, 0xaa, 0x44, 0x14, 0x93, 0xe2, 0xf5, 0x53, 0xb7, 0x79, 0xa8, 0x18, 0xf0, 0x6c, 0xa4, 0x9c, 0x73, 0xc1, 0xaa, 0xc5, 0x2e, 0xc5, 0x41, 0xd7, 0x24, 0xb0, 0xd7, 0xb8, 0xdf}} return a, nil } @@ -1422,7 +1423,7 @@ func _1664367420_add_discord_attachments_tableUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1664367420_add_discord_attachments_table.up.sql", size: 350, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1664367420_add_discord_attachments_table.up.sql", size: 350, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x48, 0xe1, 0xb6, 0x4f, 0x6f, 0x92, 0x0, 0xb4, 0xf, 0x55, 0x12, 0x1c, 0x98, 0x6d, 0xbc, 0x1e, 0xfd, 0xae, 0x1c, 0xce, 0xd1, 0x3d, 0x2, 0x21, 0x2e, 0xc0, 0x13, 0xa, 0xb2, 0xec, 0x81, 0x13}} return a, nil } @@ -1442,7 +1443,7 @@ func _1665079662_add_spectated_column_in_communitiesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1665079662_add_spectated_column_in_communities.up.sql", size: 86, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1665079662_add_spectated_column_in_communities.up.sql", size: 86, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa0, 0x5d, 0xfe, 0xe2, 0xbe, 0xdf, 0xba, 0x45, 0xe9, 0xfc, 0xa7, 0x5f, 0xda, 0x19, 0xdb, 0x40, 0x96, 0x59, 0x78, 0xa, 0xd7, 0x4a, 0xca, 0x1a, 0x93, 0xfb, 0xae, 0x6d, 0x74, 0x7, 0x36, 0xdd}} return a, nil } @@ -1462,7 +1463,7 @@ func _1665479047_add_community_id_in_notificationsUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1665479047_add_community_id_in_notifications.up.sql", size: 169, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1665479047_add_community_id_in_notifications.up.sql", size: 169, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd9, 0x8f, 0x8b, 0x1c, 0xaa, 0x6a, 0x56, 0xd6, 0xa5, 0x88, 0x57, 0x13, 0x8f, 0xea, 0xb9, 0x23, 0x82, 0x50, 0xb7, 0x65, 0x1f, 0xab, 0xfa, 0x23, 0x6f, 0x0, 0x7, 0xb6, 0x6e, 0xb5, 0x85, 0x44}} return a, nil } @@ -1482,7 +1483,7 @@ func _1665484435_add_encrypted_messagesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1665484435_add_encrypted_messages.up.sql", size: 402, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1665484435_add_encrypted_messages.up.sql", size: 402, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8f, 0x5c, 0x1e, 0x1c, 0x7f, 0xae, 0x5f, 0xeb, 0x3c, 0x6c, 0xcd, 0xc2, 0x99, 0x48, 0x5c, 0x83, 0xa0, 0xa2, 0x97, 0x5, 0x39, 0x82, 0x71, 0x90, 0x47, 0x21, 0x84, 0x29, 0x19, 0xa4, 0x7a, 0x90}} return a, nil } @@ -1502,7 +1503,7 @@ func _1665560200_add_contact_verification_individualUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1665560200_add_contact_verification_individual.up.sql", size: 509, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1665560200_add_contact_verification_individual.up.sql", size: 509, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc5, 0xbb, 0x61, 0xfd, 0xbf, 0x33, 0x1d, 0x4e, 0x5f, 0xbd, 0x86, 0x42, 0xb0, 0x6c, 0xf7, 0x39, 0x19, 0x6e, 0x72, 0x35, 0xfd, 0x1b, 0xd6, 0xbd, 0xf6, 0x81, 0x21, 0xc4, 0xaa, 0x6, 0x62, 0x40}} return a, nil } @@ -1522,7 +1523,7 @@ func _1670921937_add_album_idUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1670921937_add_album_id.up.sql", size: 55, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1670921937_add_album_id.up.sql", size: 55, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7e, 0xae, 0x83, 0x58, 0xb7, 0x77, 0x5, 0xca, 0xe3, 0xda, 0x32, 0x8f, 0x7b, 0xa4, 0x2f, 0x4c, 0xaf, 0x5f, 0xfa, 0x94, 0x36, 0xe4, 0xf9, 0x7, 0xc6, 0xd6, 0xb7, 0x90, 0xf3, 0xe5, 0xb5, 0x3}} return a, nil } @@ -1542,7 +1543,7 @@ func _1673373000_add_repliedUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1673373000_add_replied.up.sql", size: 67, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1673373000_add_replied.up.sql", size: 67, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd5, 0x1c, 0xae, 0xf2, 0xf, 0xb4, 0xc2, 0xba, 0x3c, 0xfe, 0x7b, 0xb0, 0xf, 0xf, 0xd5, 0xbc, 0xe2, 0xa7, 0xad, 0x50, 0xd9, 0x5a, 0xe8, 0x96, 0x22, 0x65, 0x89, 0xcf, 0x4a, 0x9a, 0x1b, 0x94}} return a, nil } @@ -1562,7 +1563,7 @@ func _1673428910_add_image_width_heightUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1673428910_add_image_width_height.up.sql", size: 117, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1673428910_add_image_width_height.up.sql", size: 117, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x74, 0xda, 0x93, 0x2a, 0x9b, 0x6b, 0xb7, 0x96, 0xcd, 0xac, 0xf, 0xaf, 0x54, 0x89, 0x9e, 0x91, 0x5b, 0xd0, 0x4a, 0xa, 0x8d, 0x9e, 0x80, 0x66, 0x26, 0x9e, 0xb5, 0xa9, 0x8, 0xec, 0x2d, 0x6c}} return a, nil } @@ -1582,7 +1583,7 @@ func _1674210659_add_contact_request_local_clockUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1674210659_add_contact_request_local_clock.up.sql", size: 691, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1674210659_add_contact_request_local_clock.up.sql", size: 691, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x92, 0x72, 0x39, 0xfe, 0x72, 0x98, 0xfc, 0x91, 0x20, 0x10, 0xe8, 0xf5, 0xac, 0x79, 0xa8, 0x1c, 0xca, 0x7b, 0x35, 0xa, 0xc1, 0x56, 0x49, 0x9a, 0xfc, 0xbd, 0x64, 0x9d, 0xdf, 0xd2, 0x60, 0x70}} return a, nil } @@ -1602,7 +1603,7 @@ func _1675212323_add_deleted_byUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1675212323_add_deleted_by.up.sql", size: 57, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1675212323_add_deleted_by.up.sql", size: 57, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x85, 0x37, 0x29, 0x2f, 0xd, 0x5a, 0xb6, 0xdb, 0xa7, 0x8, 0x86, 0xfc, 0x7a, 0x70, 0xd8, 0x4d, 0xe6, 0xf0, 0x57, 0xe7, 0xd1, 0x95, 0xd5, 0x4, 0x40, 0x2f, 0x7a, 0x5, 0x4f, 0xc2, 0x97, 0xbc}} return a, nil } @@ -1622,7 +1623,7 @@ func _1675247084_add_activity_center_statesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1675247084_add_activity_center_states.up.sql", size: 136, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1675247084_add_activity_center_states.up.sql", size: 136, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xba, 0x90, 0x7d, 0x55, 0xc7, 0x40, 0x29, 0x26, 0x97, 0x45, 0x5c, 0xdf, 0xba, 0x61, 0xb, 0xfc, 0x3d, 0x7a, 0x6c, 0x42, 0xe4, 0x95, 0x78, 0xb0, 0xc5, 0x1f, 0x73, 0xe9, 0x33, 0x51, 0xc8, 0x81}} return a, nil } @@ -1642,7 +1643,7 @@ func _1675272329_fix_protocol_migrationUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1675272329_fix_protocol_migration.up.sql", size: 183, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1675272329_fix_protocol_migration.up.sql", size: 183, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb6, 0xe0, 0x11, 0x4c, 0x66, 0x55, 0x72, 0xd3, 0xe6, 0x98, 0xa4, 0xe7, 0x44, 0xf9, 0x3b, 0x3a, 0x3f, 0xd9, 0x91, 0x1e, 0x4f, 0xfc, 0x56, 0x63, 0xe5, 0xa4, 0x83, 0xfc, 0x7c, 0xcf, 0x18, 0x99}} return a, nil } @@ -1662,7 +1663,7 @@ func _1676998418_fix_activity_center_migrationUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1676998418_fix_activity_center_migration.up.sql", size: 178, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1676998418_fix_activity_center_migration.up.sql", size: 178, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8a, 0xdc, 0x64, 0xb1, 0x47, 0x67, 0xda, 0x2c, 0x26, 0x29, 0x6b, 0x6f, 0xb, 0xfa, 0x45, 0xf3, 0xad, 0x8b, 0x1a, 0x5f, 0x1c, 0xed, 0xd7, 0xea, 0x54, 0xf5, 0x3f, 0xb8, 0xf6, 0xf9, 0x44, 0x53}} return a, nil } @@ -1682,7 +1683,7 @@ func _1677278861_add_deleted_column_to_activity_center_notifications_tableUpSql( return nil, err } - info := bindataFileInfo{name: "1677278861_add_deleted_column_to_activity_center_notifications_table.up.sql", size: 381, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1677278861_add_deleted_column_to_activity_center_notifications_table.up.sql", size: 381, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x38, 0x3a, 0x95, 0xaf, 0x81, 0xb0, 0x85, 0x8d, 0x73, 0xda, 0x7b, 0x2a, 0x35, 0xa6, 0xaa, 0xcc, 0x4c, 0x35, 0xa3, 0xa8, 0xbd, 0xd1, 0x37, 0xe8, 0x5d, 0x83, 0xa4, 0x33, 0x1f, 0x10, 0xe4, 0xe6}} return a, nil } @@ -1702,7 +1703,7 @@ func _1677486338_add_community_tokens_tableUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1677486338_add_community_tokens_table.up.sql", size: 527, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1677486338_add_community_tokens_table.up.sql", size: 527, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfb, 0x7b, 0x3d, 0x7e, 0x79, 0xc4, 0x3a, 0xf1, 0xda, 0x4b, 0xc6, 0xd1, 0xd, 0xfb, 0xb2, 0xb9, 0x7f, 0x81, 0x29, 0xab, 0xd8, 0x1, 0x20, 0xd7, 0xe1, 0xaf, 0x3e, 0x67, 0x1b, 0xdb, 0xf9, 0xd5}} return a, nil } @@ -1722,7 +1723,7 @@ func _1678292329_add_collapsed_categoriesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1678292329_add_collapsed_categories.up.sql", size: 170, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1678292329_add_collapsed_categories.up.sql", size: 170, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x46, 0x63, 0x86, 0xd5, 0x7, 0xe2, 0x25, 0x15, 0x1b, 0xfe, 0xf3, 0xe, 0x50, 0x48, 0x11, 0x3c, 0x7c, 0xc6, 0xe5, 0xab, 0x8d, 0x1f, 0xe8, 0x3c, 0xcb, 0xf0, 0x8d, 0xa7, 0x49, 0x4c, 0x16, 0x4f}} return a, nil } @@ -1742,7 +1743,7 @@ func _1678800760_add_index_to_raw_messagesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1678800760_add_index_to_raw_messages.up.sql", size: 88, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1678800760_add_index_to_raw_messages.up.sql", size: 88, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9d, 0xd9, 0x8d, 0x22, 0x46, 0xae, 0x7b, 0x53, 0x3e, 0x51, 0x39, 0xad, 0xad, 0x38, 0x50, 0x6, 0xfa, 0xb9, 0xc4, 0x9f, 0x8d, 0xd2, 0x67, 0x0, 0xef, 0x58, 0x13, 0xab, 0x6a, 0x67, 0xf3, 0x7e}} return a, nil } @@ -1762,7 +1763,7 @@ func _1678877478_add_communities_requests_to_join_revealed_addresses_tableUpSql( return nil, err } - info := bindataFileInfo{name: "1678877478_add_communities_requests_to_join_revealed_addresses_table.up.sql", size: 168, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1678877478_add_communities_requests_to_join_revealed_addresses_table.up.sql", size: 168, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x82, 0x1, 0xb4, 0xb2, 0x94, 0x25, 0xd5, 0x2e, 0x45, 0xc3, 0xb1, 0x2c, 0xeb, 0x1a, 0x52, 0xe0, 0x4b, 0x9b, 0x46, 0xf4, 0xc, 0xac, 0x1, 0x1e, 0x90, 0xbc, 0x64, 0x38, 0x10, 0xf1, 0xaf, 0xac}} return a, nil } @@ -1782,7 +1783,7 @@ func _1679326850_add_community_token_ownersUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1679326850_add_community_token_owners.up.sql", size: 206, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1679326850_add_community_token_owners.up.sql", size: 206, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe9, 0xe6, 0x25, 0x67, 0xd1, 0xd6, 0x54, 0x88, 0xb1, 0x80, 0x1e, 0x2d, 0x9c, 0xfa, 0x1c, 0xc7, 0x63, 0x6e, 0xf9, 0x66, 0xb1, 0x68, 0xc6, 0xf8, 0x51, 0xb6, 0xd5, 0x4e, 0x93, 0x39, 0x5e, 0xc0}} return a, nil } @@ -1802,7 +1803,7 @@ func _1680011500_add_album_images_countUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1680011500_add_album_images_count.up.sql", size: 71, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1680011500_add_album_images_count.up.sql", size: 71, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0x55, 0x99, 0x31, 0xcc, 0x80, 0x78, 0xc3, 0x51, 0x13, 0x63, 0x6f, 0x1a, 0xfd, 0x53, 0xd2, 0xf4, 0x13, 0x4b, 0xb2, 0x4f, 0x99, 0xb8, 0x7b, 0x7, 0x99, 0xb6, 0xab, 0x88, 0x2e, 0x7, 0x8}} return a, nil } @@ -1822,7 +1823,7 @@ func _1680114896_add_index_on_album_idUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1680114896_add_index_on_album_id.up.sql", size: 83, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1680114896_add_index_on_album_id.up.sql", size: 83, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb3, 0x7e, 0xd5, 0xcd, 0x2d, 0xab, 0xd4, 0x32, 0x26, 0x50, 0x3a, 0x5b, 0x8e, 0x1c, 0xcc, 0x35, 0xf8, 0xa1, 0x2a, 0xc1, 0x23, 0xf6, 0x90, 0xfe, 0x84, 0x3, 0xde, 0x5a, 0xee, 0xc6, 0xfc, 0x2a}} return a, nil } @@ -1842,7 +1843,7 @@ func _1681655289_add_mute_tillUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1681655289_add_mute_till.up.sql", size: 51, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1681655289_add_mute_till.up.sql", size: 51, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd1, 0xbe, 0xce, 0xb8, 0xe1, 0x30, 0xe7, 0xa7, 0xe0, 0x7d, 0x97, 0xf4, 0x26, 0xb8, 0x57, 0x1d, 0x2a, 0xed, 0x18, 0xf2, 0xa, 0xe3, 0x77, 0x29, 0x18, 0x55, 0x9, 0x74, 0x2c, 0x24, 0x5a, 0x19}} return a, nil } @@ -1862,7 +1863,7 @@ func _1681934966_add_index_response_toUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1681934966_add_index_response_to.up.sql", size: 70, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1681934966_add_index_response_to.up.sql", size: 70, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3b, 0xed, 0xa6, 0x7e, 0x51, 0xf2, 0xa1, 0x3c, 0x78, 0x9a, 0xa7, 0x7a, 0x51, 0x25, 0x7d, 0xdd, 0x4b, 0xf3, 0x45, 0xeb, 0x3f, 0xad, 0x23, 0x3e, 0xac, 0x16, 0x28, 0x62, 0x7, 0x8c, 0xe0, 0xa0}} return a, nil } @@ -1882,7 +1883,7 @@ func _1682528339_add_index_user_messages_unseenUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1682528339_add_index_user_messages_unseen.up.sql", size: 104, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1682528339_add_index_user_messages_unseen.up.sql", size: 104, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x35, 0xfa, 0x98, 0xdd, 0x74, 0x5e, 0x21, 0x1f, 0xf2, 0x56, 0x17, 0x96, 0xfe, 0xbb, 0x44, 0x4c, 0xa1, 0xd8, 0x9f, 0x2e, 0x6, 0x2f, 0xd8, 0x23, 0xec, 0x94, 0x8c, 0x53, 0xf3, 0xf0, 0x40, 0xe7}} return a, nil } @@ -1902,7 +1903,7 @@ func _1683707289_recreate_deleted_for_mesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1683707289_recreate_deleted_for_mes.up.sql", size: 408, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1683707289_recreate_deleted_for_mes.up.sql", size: 408, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5b, 0x9d, 0xd6, 0x45, 0x41, 0x29, 0x44, 0xf6, 0x14, 0x38, 0xeb, 0xdf, 0x6b, 0x5d, 0x9c, 0x45, 0x4b, 0xc3, 0xa8, 0xbd, 0x38, 0x14, 0xd9, 0x73, 0xf1, 0x51, 0xbb, 0x9f, 0x14, 0x36, 0xf2, 0x11}} return a, nil } @@ -1922,7 +1923,7 @@ func _1683725607_mark_discord_messages_as_seenUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1683725607_mark_discord_messages_as_seen.up.sql", size: 108, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1683725607_mark_discord_messages_as_seen.up.sql", size: 108, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd7, 0x2a, 0xc3, 0x43, 0xea, 0x5e, 0x3, 0x2e, 0xce, 0x79, 0xea, 0xa5, 0x67, 0x61, 0x8c, 0xe4, 0xb9, 0xb7, 0x4d, 0xd5, 0xd5, 0xb0, 0x35, 0xc8, 0x2b, 0xa0, 0x3f, 0xd8, 0xde, 0xea, 0x4e, 0x16}} return a, nil } @@ -1942,7 +1943,7 @@ func _1684174617_add_url_previews_to_user_messagesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1684174617_add_url_previews_to_user_messages.up.sql", size: 58, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1684174617_add_url_previews_to_user_messages.up.sql", size: 58, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdc, 0xb0, 0x72, 0xe3, 0xe4, 0xa9, 0x63, 0x82, 0xea, 0x52, 0x70, 0xb6, 0xa0, 0x73, 0x55, 0x7a, 0x78, 0xa8, 0xd2, 0xb0, 0xf4, 0x78, 0x8a, 0xd, 0x5a, 0xa2, 0x9d, 0x92, 0xdc, 0xce, 0x1c, 0x71}} return a, nil } @@ -1962,7 +1963,7 @@ func _1684175608_add_token_balancesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1684175608_add_token_balances.up.sql", size: 467, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1684175608_add_token_balances.up.sql", size: 467, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1b, 0x4e, 0xe0, 0x48, 0x34, 0x1, 0x4d, 0x88, 0x11, 0x54, 0x20, 0x52, 0x5c, 0x57, 0x14, 0xa9, 0xa9, 0x36, 0xa4, 0x28, 0x59, 0x48, 0xa8, 0xa, 0x76, 0xec, 0x37, 0xee, 0x9e, 0xd2, 0x20, 0xaa}} return a, nil } @@ -1982,7 +1983,7 @@ func _1684979808_sync_activity_center_notificationsUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1684979808_sync_activity_center_notifications.up.sql", size: 169, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1684979808_sync_activity_center_notifications.up.sql", size: 169, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd8, 0xf5, 0xf7, 0x94, 0xa9, 0xa1, 0x60, 0x26, 0x9d, 0xca, 0x31, 0xf, 0x14, 0xd, 0x70, 0xf8, 0xab, 0x40, 0x29, 0x73, 0x61, 0xbd, 0x1b, 0xb6, 0xc4, 0x31, 0x77, 0x9e, 0x32, 0xa8, 0xce, 0x6d}} return a, nil } @@ -2002,7 +2003,7 @@ func _1685383829_add_communities_mute_tillUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1685383829_add_communities_mute_till.up.sql", size: 69, mode: os.FileMode(0644), modTime: time.Unix(1687941008, 0)} + info := bindataFileInfo{name: "1685383829_add_communities_mute_till.up.sql", size: 69, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbf, 0x58, 0x96, 0xe5, 0x66, 0xcb, 0xde, 0xed, 0x76, 0xb8, 0x5a, 0x86, 0x81, 0x9a, 0x60, 0x51, 0x12, 0x37, 0x54, 0x9a, 0x36, 0x3e, 0xd1, 0x4a, 0xbe, 0x9a, 0xab, 0x20, 0x7f, 0x1d, 0xf4, 0x73}} return a, nil } @@ -2022,7 +2023,7 @@ func _1685964183_add_chainids_to_revealed_addressesUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1685964183_add_chainids_to_revealed_addresses.up.sql", size: 88, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1685964183_add_chainids_to_revealed_addresses.up.sql", size: 88, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc, 0xb5, 0xa8, 0xd7, 0xad, 0x9c, 0x54, 0xa5, 0xe9, 0xdb, 0x42, 0x2d, 0xd0, 0xd7, 0x22, 0x1, 0x93, 0xf3, 0x4f, 0x53, 0xf7, 0x1e, 0xbe, 0x4b, 0xac, 0xc7, 0x63, 0x15, 0xdf, 0xe0, 0x6, 0xf8}} return a, nil } @@ -2042,7 +2043,7 @@ func _1687370421_add_communities_muted_till_newUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1687370421_add_communities_muted_till_new.up.sql", size: 635, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1687370421_add_communities_muted_till_new.up.sql", size: 635, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x65, 0x73, 0x96, 0x1d, 0xc8, 0x3e, 0xca, 0xf5, 0xdc, 0xe3, 0xac, 0x3f, 0x9c, 0xc3, 0x67, 0x12, 0x9c, 0x19, 0x1, 0x4, 0x2b, 0xea, 0x6b, 0xe1, 0x59, 0x59, 0x89, 0x3d, 0xef, 0x4a, 0x6e, 0xbe}} return a, nil } @@ -2062,7 +2063,7 @@ func _1687416607_add_communities_check_channel_permission_responses_tableUpSql() return nil, err } - info := bindataFileInfo{name: "1687416607_add_communities_check_channel_permission_responses_table.up.sql", size: 739, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "1687416607_add_communities_check_channel_permission_responses_table.up.sql", size: 739, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc2, 0x6, 0x3, 0x1a, 0xde, 0x9d, 0xbc, 0x50, 0x9d, 0xf1, 0x6d, 0x5a, 0x1c, 0x28, 0x92, 0x19, 0x89, 0x76, 0x4e, 0x8b, 0x60, 0xa9, 0xf, 0xe9, 0x76, 0xf1, 0xee, 0x75, 0x92, 0xbd, 0xda, 0x72}} return a, nil } @@ -2082,7 +2083,7 @@ func _1687856939_add_community_tokens_decimalsUpSql() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "1687856939_add_community_tokens_decimals.up.sql", size: 65, mode: os.FileMode(0644), modTime: time.Unix(1688745415, 0)} + info := bindataFileInfo{name: "1687856939_add_community_tokens_decimals.up.sql", size: 65, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x59, 0x76, 0x42, 0x70, 0xc9, 0x7b, 0x16, 0xf6, 0xfe, 0x7, 0x1c, 0x99, 0xe5, 0x38, 0xfd, 0xa0, 0x3b, 0x93, 0x40, 0xbc, 0x66, 0xc2, 0xd1, 0xdd, 0xe9, 0xc7, 0xbf, 0xae, 0x36, 0xcc, 0x46, 0x57}} return a, nil } @@ -2102,11 +2103,31 @@ func _1687959987_modify_community_tokens_supply_as_stringUpSql() (*asset, error) return nil, err } - info := bindataFileInfo{name: "1687959987_modify_community_tokens_supply_as_string.up.sql", size: 77, mode: os.FileMode(0644), modTime: time.Unix(1689257472, 0)} + info := bindataFileInfo{name: "1687959987_modify_community_tokens_supply_as_string.up.sql", size: 77, mode: os.FileMode(0644), modTime: time.Unix(1689354449, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x57, 0x89, 0xbf, 0x9b, 0xed, 0x9b, 0x18, 0x3f, 0x84, 0xb5, 0x3c, 0x78, 0x40, 0x60, 0xea, 0x33, 0x26, 0x50, 0x3, 0xda, 0x28, 0x92, 0xd3, 0xb6, 0xff, 0x40, 0xa7, 0x19, 0x2, 0xa7, 0x17, 0xf9}} return a, nil } +var __1689258900_add_airdrop_address_to_revealed_addressesUpSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xc9\x31\x0e\xc2\x30\x0c\x05\xd0\x9d\x53\xf8\x1e\x4c\x29\xcd\x66\x1a\x09\x95\xd9\x8a\xf0\x1f\x8c\x68\x0d\x76\xca\xf9\x99\x98\x5f\xe1\xb5\xde\x68\x2d\x13\x57\x7a\xf8\xb6\x1d\xbb\x0d\x43\x4a\xe0\x73\x20\x47\xca\x70\x79\xba\xed\x12\xf8\xa2\xbf\xa0\xd2\x55\x03\x99\x48\x2a\xf3\x4c\x97\xc6\xf7\xeb\x42\x96\xd2\x2d\x34\xfc\xfd\x77\x9a\x5a\xe3\x5a\x96\xf3\xe9\x17\x00\x00\xff\xff\xa2\x39\x8f\xf1\x63\x00\x00\x00") + +func _1689258900_add_airdrop_address_to_revealed_addressesUpSqlBytes() ([]byte, error) { + return bindataRead( + __1689258900_add_airdrop_address_to_revealed_addressesUpSql, + "1689258900_add_airdrop_address_to_revealed_addresses.up.sql", + ) +} + +func _1689258900_add_airdrop_address_to_revealed_addressesUpSql() (*asset, error) { + bytes, err := _1689258900_add_airdrop_address_to_revealed_addressesUpSqlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "1689258900_add_airdrop_address_to_revealed_addresses.up.sql", size: 99, mode: os.FileMode(0644), modTime: time.Unix(1689354458, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xea, 0x7e, 0xaf, 0x5c, 0xd, 0xe5, 0x1e, 0x67, 0x1a, 0x6d, 0xd, 0x28, 0x20, 0x7a, 0x1a, 0x45, 0x6e, 0xba, 0x80, 0x91, 0xb0, 0xd6, 0xfd, 0xc2, 0xb9, 0x42, 0x5c, 0x8d, 0x6e, 0x3e, 0x6e, 0xb2}} + return a, nil +} + var _readmeMd = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x91\xc1\xce\xd3\x30\x10\x84\xef\x7e\x8a\x91\x7a\x01\xa9\x2a\x8f\xc0\x0d\x71\x82\x03\x48\x1c\xc9\x36\x9e\x36\x96\x1c\x6f\xf0\xae\x93\xe6\xed\x91\xa3\xc2\xdf\xff\x66\xed\xd8\x33\xdf\x78\x4f\xa7\x13\xbe\xea\x06\x57\x6c\x35\x39\x31\xa7\x7b\x15\x4f\x5a\xec\x73\x08\xbf\x08\x2d\x79\x7f\x4a\x43\x5b\x86\x17\xfd\x8c\x21\xea\x56\x5e\x47\x90\x4a\x14\x75\x48\xde\x64\x37\x2c\x6a\x96\xae\x99\x48\x05\xf6\x27\x77\x13\xad\x08\xae\x8a\x51\xe7\x25\xf3\xf1\xa9\x9f\xf9\x58\x58\x2c\xad\xbc\xe0\x8b\x56\xf0\x21\x5d\xeb\x4c\x95\xb3\xae\x84\x60\xd4\xdc\xe6\x82\x5d\x1b\x36\x6d\x39\x62\x92\xf5\xb8\x11\xdb\x92\xd3\x28\xce\xe0\x13\xe1\x72\xcd\x3c\x63\xd4\x65\x87\xae\xac\xe8\xc3\x28\x2e\x67\x44\x66\x3a\x21\x25\xa2\x72\xac\x14\x67\xbc\x84\x9f\x53\x32\x8c\x52\x70\x25\x56\xd6\xfd\x8d\x05\x37\xad\x30\x9d\x9f\xa6\x86\x0f\xcd\x58\x7f\xcf\x34\x93\x3b\xed\x90\x9f\xa4\x1f\xcf\x30\x85\x4d\x07\x58\xaf\x7f\x25\xc4\x9d\xf3\x72\x64\x84\xd0\x7f\xf9\x9b\x3a\x2d\x84\xef\x85\x48\x66\x8d\xd8\x88\x9b\x8c\x8c\x98\x5b\xf6\x74\x14\x4e\x33\x0d\xc9\xe0\x93\x38\xda\x12\xc5\x69\xbd\xe4\xf0\x2e\x7a\x78\x07\x1c\xfe\x13\x9f\x91\x29\x31\x95\x7b\x7f\x62\x59\x37\xb4\xe5\x5e\x25\xfe\x33\xee\xd5\x53\x71\xd6\xda\x3a\xd8\xcb\xde\x2e\xf8\xa1\x90\x55\x53\x0c\xc7\xaa\x0d\xe9\x76\x14\x29\x1c\x7b\x68\xdd\x2f\xe1\x6f\x00\x00\x00\xff\xff\x3c\x0a\xc2\xfe\x2a\x02\x00\x00") func readmeMdBytes() ([]byte, error) { @@ -2122,7 +2143,7 @@ func readmeMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "README.md", size: 554, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "README.md", size: 554, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1c, 0x6e, 0xfb, 0xcc, 0x81, 0x94, 0x4d, 0x8c, 0xa0, 0x3b, 0x5, 0xb0, 0x18, 0xd6, 0xbb, 0xb3, 0x79, 0xc8, 0x8f, 0xff, 0xc1, 0x10, 0xf9, 0xf, 0x20, 0x1b, 0x4a, 0x74, 0x96, 0x42, 0xd7, 0xa8}} return a, nil } @@ -2142,7 +2163,7 @@ func docGo() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "doc.go", size: 850, mode: os.FileMode(0644), modTime: time.Unix(1687889856, 0)} + info := bindataFileInfo{name: "doc.go", size: 850, mode: os.FileMode(0664), modTime: time.Unix(1689253812, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa0, 0xcc, 0x41, 0xe1, 0x61, 0x12, 0x97, 0xe, 0x36, 0x8c, 0xa7, 0x9e, 0xe0, 0x6e, 0x59, 0x9e, 0xee, 0xd5, 0x4a, 0xcf, 0x1e, 0x60, 0xd6, 0xc3, 0x3a, 0xc9, 0x6c, 0xf2, 0x86, 0x5a, 0xb4, 0x1e}} return a, nil } @@ -2432,6 +2453,8 @@ var _bindata = map[string]func() (*asset, error){ "1687959987_modify_community_tokens_supply_as_string.up.sql": _1687959987_modify_community_tokens_supply_as_stringUpSql, + "1689258900_add_airdrop_address_to_revealed_addresses.up.sql": _1689258900_add_airdrop_address_to_revealed_addressesUpSql, + "README.md": readmeMd, "doc.go": docGo, @@ -2575,6 +2598,7 @@ var _bintree = &bintree{nil, map[string]*bintree{ "1687416607_add_communities_check_channel_permission_responses_table.up.sql": &bintree{_1687416607_add_communities_check_channel_permission_responses_tableUpSql, map[string]*bintree{}}, "1687856939_add_community_tokens_decimals.up.sql": &bintree{_1687856939_add_community_tokens_decimalsUpSql, map[string]*bintree{}}, "1687959987_modify_community_tokens_supply_as_string.up.sql": &bintree{_1687959987_modify_community_tokens_supply_as_stringUpSql, map[string]*bintree{}}, + "1689258900_add_airdrop_address_to_revealed_addresses.up.sql": &bintree{_1689258900_add_airdrop_address_to_revealed_addressesUpSql, map[string]*bintree{}}, "README.md": &bintree{readmeMd, map[string]*bintree{}}, "doc.go": &bintree{docGo, map[string]*bintree{}}, }} diff --git a/protocol/migrations/sqlite/1689258900_add_airdrop_address_to_revealed_addresses.up.sql b/protocol/migrations/sqlite/1689258900_add_airdrop_address_to_revealed_addresses.up.sql new file mode 100644 index 000000000..1a08bc911 --- /dev/null +++ b/protocol/migrations/sqlite/1689258900_add_airdrop_address_to_revealed_addresses.up.sql @@ -0,0 +1 @@ +ALTER TABLE communities_requests_to_join_revealed_addresses ADD COLUMN is_airdrop_address BOOLEAN; diff --git a/protocol/protobuf/communities.pb.go b/protocol/protobuf/communities.pb.go index 0a9000a34..852025404 100644 --- a/protocol/protobuf/communities.pb.go +++ b/protocol/protobuf/communities.pb.go @@ -937,6 +937,7 @@ type RevealedAccount struct { Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"` Signature []byte `protobuf:"bytes,2,opt,name=signature,proto3" json:"signature,omitempty"` ChainIds []uint64 `protobuf:"varint,3,rep,packed,name=chain_ids,json=chainIds,proto3" json:"chain_ids,omitempty"` + IsAirdropAddress bool `protobuf:"varint,4,opt,name=isAirdropAddress,proto3" json:"isAirdropAddress,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -988,6 +989,13 @@ func (m *RevealedAccount) GetChainIds() []uint64 { return nil } +func (m *RevealedAccount) GetIsAirdropAddress() bool { + if m != nil { + return m.IsAirdropAddress + } + return false +} + type CommunityRequestToJoin struct { Clock uint64 `protobuf:"varint,1,opt,name=clock,proto3" json:"clock,omitempty"` EnsName string `protobuf:"bytes,2,opt,name=ens_name,json=ensName,proto3" json:"ens_name,omitempty"` @@ -1723,133 +1731,135 @@ func init() { } var fileDescriptor_f937943d74c1cd8b = []byte{ - // 2046 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x58, 0xcd, 0x73, 0x1b, 0x49, - 0x15, 0xcf, 0x48, 0xb2, 0x2d, 0x3d, 0x59, 0xb6, 0xdc, 0x49, 0xec, 0xb1, 0x93, 0x6c, 0x94, 0x01, - 0x0a, 0x2f, 0x14, 0xca, 0xae, 0x17, 0x8a, 0xd4, 0x2e, 0xec, 0xae, 0x22, 0x0f, 0x59, 0x91, 0x78, - 0xe4, 0x6d, 0xcb, 0x1b, 0xd8, 0x02, 0xa6, 0xda, 0x33, 0x6d, 0xbb, 0x2b, 0xd2, 0x8c, 0x98, 0x6e, - 0xb9, 0x10, 0x87, 0x3d, 0x50, 0xfc, 0x11, 0x1c, 0xa9, 0xa2, 0x8a, 0x23, 0xff, 0x02, 0x07, 0xee, - 0xdc, 0xb9, 0xc1, 0x8d, 0x23, 0x27, 0xce, 0x54, 0x7f, 0xcc, 0x68, 0x46, 0x96, 0xf2, 0xc1, 0x42, - 0xd5, 0x9e, 0x34, 0xef, 0xf5, 0xeb, 0xd7, 0xef, 0xe3, 0xd7, 0xaf, 0xdf, 0x13, 0x6c, 0x05, 0xf1, - 0x68, 0x34, 0x89, 0x98, 0x60, 0x94, 0xb7, 0xc7, 0x49, 0x2c, 0x62, 0x54, 0x55, 0x3f, 0x67, 0x93, - 0xf3, 0xbd, 0x9b, 0xc1, 0x25, 0x11, 0x3e, 0x0b, 0x69, 0x24, 0x98, 0x98, 0xea, 0xe5, 0xbd, 0x3a, - 0x8d, 0x26, 0x23, 0x23, 0xeb, 0x5c, 0xc1, 0xca, 0x93, 0x84, 0x44, 0x02, 0x3d, 0x80, 0xf5, 0x54, - 0xd3, 0xd4, 0x67, 0xa1, 0x6d, 0xb5, 0xac, 0xfd, 0x75, 0x5c, 0xcf, 0x78, 0xbd, 0x10, 0xdd, 0x81, - 0xda, 0x88, 0x8e, 0xce, 0x68, 0x22, 0xd7, 0x4b, 0x6a, 0xbd, 0xaa, 0x19, 0xbd, 0x10, 0xed, 0xc0, - 0x9a, 0x39, 0xcc, 0x2e, 0xb7, 0xac, 0xfd, 0x1a, 0x5e, 0x95, 0x64, 0x2f, 0x44, 0xb7, 0x60, 0x25, - 0x18, 0xc6, 0xc1, 0x0b, 0xbb, 0xd2, 0xb2, 0xf6, 0x2b, 0x58, 0x13, 0xce, 0x1f, 0x4b, 0xb0, 0xd9, - 0x4d, 0x75, 0x1f, 0x29, 0x25, 0xe8, 0x7b, 0xb0, 0x92, 0xc4, 0x43, 0xca, 0x6d, 0xab, 0x55, 0xde, - 0xdf, 0x38, 0xb8, 0xdf, 0x4e, 0xfd, 0x68, 0xcf, 0x49, 0xb6, 0xb1, 0x14, 0xc3, 0x5a, 0x1a, 0xfd, - 0x08, 0xb6, 0x12, 0x7a, 0x45, 0xc9, 0x90, 0x86, 0x3e, 0x09, 0x82, 0x78, 0x12, 0x09, 0x6e, 0x97, - 0x5a, 0xe5, 0xfd, 0xfa, 0xc1, 0xee, 0x4c, 0x05, 0x36, 0x22, 0x1d, 0x2d, 0x81, 0x9b, 0x49, 0x91, - 0xc1, 0xd1, 0xb7, 0x60, 0x6b, 0x48, 0xb8, 0xf0, 0x27, 0xe3, 0x90, 0x08, 0xea, 0x6b, 0xa3, 0xcb, - 0xca, 0xe8, 0x4d, 0xb9, 0x70, 0xaa, 0xf8, 0x5d, 0x65, 0xfe, 0x25, 0xac, 0x28, 0x1b, 0x50, 0x03, - 0x6a, 0xb8, 0xff, 0xcc, 0xf5, 0xbd, 0xbe, 0xe7, 0x36, 0x6f, 0xa0, 0x0d, 0x00, 0x45, 0xf6, 0x9f, - 0x7b, 0x2e, 0x6e, 0x5a, 0xe8, 0x36, 0x6c, 0x29, 0xfa, 0xa8, 0xe3, 0x75, 0x9e, 0xb8, 0xfe, 0xe9, - 0x89, 0x8b, 0x4f, 0x9a, 0x25, 0xb4, 0x0b, 0xb7, 0x35, 0xbb, 0x7f, 0xe8, 0xe2, 0xce, 0xc0, 0xf5, - 0xbb, 0x7d, 0x6f, 0xe0, 0x7a, 0x83, 0x66, 0x39, 0xd3, 0xd0, 0x39, 0x3c, 0xea, 0x79, 0xcd, 0x8a, - 0xf3, 0x9b, 0x32, 0x6c, 0x67, 0xee, 0x0f, 0xe2, 0x17, 0x34, 0x3a, 0xa2, 0x82, 0x84, 0x44, 0x10, - 0x74, 0x0e, 0x28, 0x88, 0x23, 0x91, 0x90, 0x40, 0xf8, 0x24, 0x0c, 0x13, 0xca, 0xb9, 0x09, 0x5e, - 0xfd, 0xe0, 0xfb, 0x0b, 0x82, 0x57, 0xd8, 0xdd, 0xee, 0x9a, 0xad, 0x9d, 0x74, 0xa7, 0x1b, 0x89, - 0x64, 0x8a, 0xb7, 0x82, 0x79, 0x3e, 0x6a, 0x41, 0x3d, 0xa4, 0x3c, 0x48, 0xd8, 0x58, 0xb0, 0x38, - 0x52, 0x99, 0xaf, 0xe1, 0x3c, 0x4b, 0xe6, 0x98, 0x8d, 0xc8, 0x05, 0x35, 0xa9, 0xd7, 0x04, 0x7a, - 0x1f, 0x6a, 0x42, 0x1e, 0x39, 0x98, 0x8e, 0xa9, 0xca, 0xfe, 0xc6, 0xc1, 0xdd, 0x65, 0x66, 0x49, - 0x19, 0x3c, 0x13, 0x47, 0xdb, 0xb0, 0xca, 0xa7, 0xa3, 0xb3, 0x78, 0x68, 0xaf, 0x68, 0x34, 0x69, - 0x0a, 0x21, 0xa8, 0x44, 0x64, 0x44, 0xed, 0x55, 0xc5, 0x55, 0xdf, 0x68, 0x0f, 0xaa, 0x21, 0x0d, - 0xd8, 0x88, 0x0c, 0xb9, 0xbd, 0xd6, 0xb2, 0xf6, 0x1b, 0x38, 0xa3, 0xf7, 0x0e, 0x65, 0xf4, 0x16, - 0x39, 0x8a, 0x9a, 0x50, 0x7e, 0x41, 0xa7, 0x0a, 0xe7, 0x15, 0x2c, 0x3f, 0xa5, 0x17, 0x57, 0x64, - 0x38, 0xa1, 0xc6, 0x43, 0x4d, 0xbc, 0x5f, 0x7a, 0x64, 0x39, 0x7f, 0xb7, 0xe0, 0x56, 0x66, 0xef, - 0x31, 0x4d, 0x46, 0x8c, 0x73, 0x16, 0x47, 0x1c, 0xed, 0x42, 0x95, 0x46, 0xdc, 0x8f, 0xa3, 0xa1, - 0xd6, 0x54, 0xc5, 0x6b, 0x34, 0xe2, 0xfd, 0x68, 0x38, 0x45, 0x36, 0xac, 0x8d, 0x13, 0x76, 0x45, - 0x84, 0xd6, 0x57, 0xc5, 0x29, 0x89, 0x7e, 0x08, 0xab, 0x24, 0x08, 0x28, 0xe7, 0x2a, 0x5c, 0x1b, - 0x07, 0xdf, 0x58, 0x10, 0x94, 0xdc, 0x21, 0xed, 0x8e, 0x12, 0xc6, 0x66, 0x93, 0x33, 0x80, 0x55, - 0xcd, 0x41, 0x08, 0x36, 0x4e, 0xbd, 0xa7, 0x5e, 0xff, 0xb9, 0xe7, 0x77, 0xba, 0x5d, 0xf7, 0xe4, - 0xa4, 0x79, 0x03, 0x6d, 0x41, 0xc3, 0xeb, 0xfb, 0x47, 0xee, 0xd1, 0x63, 0x17, 0x9f, 0x7c, 0xd2, - 0x3b, 0x6e, 0x5a, 0xe8, 0x26, 0x6c, 0xf6, 0xbc, 0xcf, 0x7a, 0x83, 0xce, 0xa0, 0xd7, 0xf7, 0xfc, - 0xbe, 0xf7, 0xec, 0xa7, 0xcd, 0x92, 0xc4, 0x59, 0xdf, 0xf3, 0xb1, 0xfb, 0xe9, 0xa9, 0x7b, 0x32, - 0x68, 0x96, 0x9d, 0xdf, 0x96, 0xa1, 0xa1, 0x32, 0xd1, 0x4d, 0x98, 0xa0, 0x09, 0x23, 0xe8, 0xe7, - 0x2f, 0x81, 0x57, 0x7b, 0x66, 0x72, 0x61, 0xd3, 0x1b, 0xa0, 0xea, 0x1d, 0xa8, 0x08, 0x09, 0x8c, - 0xd2, 0x6b, 0x00, 0x43, 0x49, 0xe6, 0x30, 0x51, 0x5e, 0x88, 0x89, 0x4a, 0x0e, 0x13, 0xdb, 0xb0, - 0x4a, 0x46, 0xf2, 0x5e, 0xa7, 0xf8, 0xd1, 0x94, 0xac, 0x61, 0x0a, 0x64, 0x3e, 0x0b, 0xb9, 0xbd, - 0xda, 0x2a, 0xef, 0x57, 0x70, 0x55, 0x31, 0x7a, 0x21, 0x47, 0xf7, 0xa1, 0x2e, 0xb3, 0x39, 0x26, - 0x42, 0xd0, 0x24, 0x52, 0x58, 0xaa, 0x61, 0xa0, 0x11, 0x3f, 0xd6, 0x9c, 0x02, 0xd2, 0xaa, 0x0a, - 0x38, 0xff, 0x6b, 0xa4, 0xfd, 0xa3, 0x04, 0x76, 0x31, 0x00, 0x33, 0x24, 0xa0, 0x0d, 0x28, 0x99, - 0xca, 0x5c, 0xc3, 0x25, 0x16, 0xa2, 0x0f, 0x0a, 0x21, 0xfc, 0xe6, 0xb2, 0x10, 0xce, 0x34, 0xb4, - 0x73, 0xd1, 0xfc, 0x10, 0x36, 0x74, 0x24, 0x02, 0x93, 0x3b, 0xbb, 0xac, 0x52, 0xbb, 0xb3, 0x24, - 0xb5, 0xb8, 0x21, 0x0a, 0xf0, 0xd8, 0x85, 0xaa, 0x29, 0xf8, 0xdc, 0xae, 0xb4, 0xca, 0xfb, 0x35, - 0xbc, 0xa6, 0x2b, 0x3e, 0x47, 0xf7, 0x00, 0x18, 0xf7, 0x53, 0xf4, 0xaf, 0x28, 0xf4, 0xd7, 0x18, - 0x3f, 0xd6, 0x0c, 0xe7, 0x0b, 0xa8, 0xa8, 0x3b, 0x7e, 0x17, 0xec, 0x14, 0xbe, 0x83, 0xfe, 0x53, - 0xd7, 0xf3, 0x8f, 0x5d, 0x7c, 0xd4, 0x3b, 0x39, 0xe9, 0xf5, 0xbd, 0xe6, 0x0d, 0xd4, 0x84, 0xf5, - 0xc7, 0x6e, 0xb7, 0x7f, 0x94, 0x96, 0x42, 0x4b, 0x42, 0xdb, 0x70, 0x34, 0xbc, 0x9b, 0x25, 0x74, - 0x0b, 0x9a, 0xdd, 0x8e, 0xe7, 0x7f, 0xd6, 0x73, 0x9f, 0xfb, 0xdd, 0x4f, 0x3a, 0x9e, 0xe7, 0x3e, - 0x6b, 0x96, 0xd1, 0x3d, 0xd8, 0xcd, 0xb8, 0x1d, 0xef, 0xd0, 0x3f, 0xee, 0x9f, 0x0c, 0xb2, 0xe5, - 0x8a, 0xf3, 0xef, 0x5a, 0xee, 0x36, 0x1f, 0x16, 0xcb, 0x98, 0xae, 0xfa, 0x56, 0xee, 0xa9, 0x42, - 0x2e, 0xac, 0xe9, 0x57, 0x2e, 0x7d, 0x55, 0xbe, 0xbd, 0x20, 0xd0, 0x39, 0x35, 0x6d, 0xfd, 0x48, - 0x19, 0xe4, 0xa7, 0x7b, 0xd1, 0xc7, 0x50, 0x1f, 0xcf, 0x2e, 0xb5, 0x82, 0x70, 0xfd, 0xe0, 0xad, - 0x97, 0x5f, 0x7d, 0x9c, 0xdf, 0x82, 0x0e, 0xa0, 0x9a, 0x3e, 0xe5, 0x2a, 0xa8, 0xf5, 0x83, 0xed, - 0xdc, 0x76, 0x15, 0x7b, 0xbd, 0x8a, 0x33, 0x39, 0xf4, 0x11, 0xac, 0xc8, 0xac, 0x68, 0xac, 0xd7, - 0x0f, 0xde, 0x7e, 0x85, 0xe9, 0x52, 0x8b, 0x31, 0x5c, 0xef, 0x93, 0x69, 0x3e, 0x23, 0x91, 0x3f, - 0x64, 0x5c, 0xd8, 0x6b, 0x3a, 0xcd, 0x67, 0x24, 0x7a, 0xc6, 0xb8, 0x40, 0x1e, 0x40, 0x40, 0x04, - 0xbd, 0x88, 0x13, 0x46, 0xe5, 0x7d, 0x98, 0x2b, 0x0c, 0x8b, 0x0f, 0xc8, 0x36, 0xe8, 0x53, 0x72, - 0x1a, 0xd0, 0x23, 0xb0, 0x49, 0x12, 0x5c, 0xb2, 0x2b, 0xea, 0x8f, 0xc8, 0x45, 0x44, 0xc5, 0x90, - 0x45, 0x2f, 0xcc, 0x3b, 0x5c, 0x53, 0x19, 0xd9, 0x36, 0xeb, 0x47, 0xd9, 0xb2, 0x7a, 0x8e, 0xd1, - 0x13, 0xd8, 0x20, 0xe1, 0x88, 0x45, 0x3e, 0xa7, 0x42, 0xb0, 0xe8, 0x82, 0xdb, 0xa0, 0xe2, 0xd3, - 0x5a, 0x60, 0x4d, 0x47, 0x0a, 0x9e, 0x18, 0x39, 0xdc, 0x20, 0x79, 0x12, 0x7d, 0x0d, 0x1a, 0x2c, - 0x12, 0x49, 0xec, 0x8f, 0x28, 0xe7, 0xf2, 0x41, 0xab, 0xab, 0xcb, 0xb6, 0xae, 0x98, 0x47, 0x9a, - 0x27, 0x85, 0xe2, 0x49, 0x5e, 0x68, 0x5d, 0x0b, 0x29, 0x66, 0x2a, 0x74, 0x17, 0x6a, 0x34, 0x0a, - 0x92, 0xe9, 0x58, 0xd0, 0xd0, 0x6e, 0xe8, 0x2b, 0x90, 0x31, 0x64, 0xc9, 0x12, 0xe4, 0x82, 0xdb, - 0x1b, 0x2a, 0xa2, 0xea, 0x1b, 0x11, 0xd8, 0xd2, 0x17, 0x32, 0x0f, 0x93, 0x4d, 0x15, 0xd5, 0xef, - 0xbe, 0x22, 0xaa, 0x73, 0xd7, 0xdc, 0xc4, 0xb6, 0x29, 0xe6, 0xd8, 0xe8, 0x67, 0xb0, 0x3b, 0x6b, - 0xf2, 0xd4, 0x2a, 0xf7, 0x47, 0xa6, 0x21, 0xb0, 0x9b, 0xea, 0xa8, 0xd6, 0xab, 0x1a, 0x07, 0xbc, - 0x13, 0x14, 0xf8, 0x3c, 0xeb, 0x47, 0xde, 0x81, 0x5b, 0x24, 0x10, 0x2a, 0x7d, 0x1a, 0xf3, 0xbe, - 0xea, 0xac, 0xec, 0x2d, 0x95, 0x3b, 0xa4, 0xd7, 0xcc, 0xe5, 0xe8, 0xca, 0x95, 0xbd, 0x53, 0x58, - 0xcf, 0x5f, 0x96, 0x7c, 0xa5, 0xac, 0xe9, 0x4a, 0xf9, 0x30, 0x5f, 0x29, 0x0b, 0x0d, 0xdd, 0x5c, - 0x4f, 0x98, 0x2b, 0xa2, 0x7b, 0x9f, 0x02, 0xcc, 0x80, 0xbc, 0x40, 0xe9, 0x77, 0x8a, 0x4a, 0x77, - 0x16, 0x28, 0x95, 0xfb, 0xf3, 0x2a, 0x3f, 0x87, 0xcd, 0x39, 0xe8, 0x2e, 0xd0, 0xfb, 0x6e, 0x51, - 0xef, 0x9d, 0x45, 0x7a, 0xb5, 0x92, 0x69, 0x5e, 0xf7, 0x05, 0xdc, 0x5e, 0x98, 0xc0, 0x05, 0x27, - 0x3c, 0x2a, 0x9e, 0xe0, 0xbc, 0xba, 0xe4, 0xe7, 0x1f, 0x97, 0x5f, 0xe4, 0x5a, 0xc9, 0xc2, 0x35, - 0x40, 0x87, 0x70, 0x7f, 0xcc, 0xa2, 0x14, 0xd0, 0x3e, 0x19, 0x0e, 0xb3, 0x1c, 0xd2, 0x88, 0x9c, - 0x0d, 0x69, 0x68, 0xda, 0x9b, 0x3b, 0x63, 0x16, 0x19, 0x88, 0x77, 0x86, 0xc3, 0x2c, 0x79, 0x4a, - 0xc4, 0xf9, 0x5b, 0x09, 0x1a, 0x85, 0x08, 0xa2, 0x0f, 0x67, 0xb5, 0x53, 0x37, 0x0e, 0x5f, 0x5f, - 0x12, 0xeb, 0xd7, 0x2b, 0x9a, 0xa5, 0x2f, 0x57, 0x34, 0xcb, 0xaf, 0x59, 0x34, 0xef, 0x43, 0xdd, - 0x94, 0x25, 0x35, 0x0a, 0xe9, 0xbe, 0x22, 0xad, 0x54, 0x72, 0x12, 0xda, 0x83, 0xea, 0x38, 0xe6, - 0x4c, 0xb5, 0xc3, 0xb2, 0x12, 0xaf, 0xe0, 0x8c, 0xfe, 0x3f, 0x61, 0xda, 0x09, 0x61, 0xeb, 0x1a, - 0x88, 0xe6, 0x0d, 0xb5, 0xae, 0x19, 0x9a, 0xb6, 0x46, 0xa5, 0x62, 0xbb, 0x9c, 0x19, 0x5f, 0x2e, - 0x1a, 0xef, 0xfc, 0xce, 0x82, 0x9b, 0xd9, 0x31, 0xbd, 0xe8, 0x8a, 0x09, 0xa2, 0x5e, 0xc6, 0xf7, - 0xe0, 0xf6, 0xac, 0x70, 0xe4, 0x87, 0x01, 0x3d, 0x26, 0xde, 0x0a, 0x96, 0x3c, 0xa7, 0x17, 0x72, - 0xb6, 0x34, 0xb3, 0xa2, 0x26, 0x96, 0x0f, 0x8a, 0xf7, 0x00, 0xc6, 0x93, 0xb3, 0x21, 0x0b, 0x7c, - 0x19, 0xaf, 0x8a, 0xda, 0x53, 0xd3, 0x9c, 0xa7, 0x74, 0xea, 0x9c, 0xc3, 0xe6, 0xdc, 0x0c, 0x27, - 0x5b, 0x6c, 0xd3, 0x98, 0x1a, 0xd7, 0x53, 0x52, 0x56, 0x5f, 0xce, 0x2e, 0x22, 0x22, 0x26, 0x09, - 0x35, 0xc7, 0xcf, 0x18, 0xb2, 0x09, 0x0c, 0x2e, 0x09, 0xd3, 0x4d, 0x60, 0x59, 0x37, 0x81, 0x8a, - 0xd1, 0x0b, 0xb9, 0xf3, 0x2f, 0x2b, 0x77, 0x4b, 0x30, 0xfd, 0xe5, 0x84, 0x72, 0x31, 0x88, 0x7f, - 0x1c, 0xb3, 0x65, 0xfd, 0x81, 0x99, 0x01, 0x72, 0x71, 0x96, 0x33, 0x80, 0x27, 0x43, 0xbd, 0xd4, - 0xd7, 0xf9, 0x69, 0xbb, 0x72, 0x7d, 0xda, 0x7e, 0x00, 0xeb, 0x21, 0xe3, 0xe3, 0x21, 0x99, 0x6a, - 0xd5, 0x2b, 0x66, 0xec, 0xd2, 0x3c, 0xa5, 0x7e, 0xe1, 0xe4, 0xbb, 0xfa, 0xc6, 0x93, 0xaf, 0xf3, - 0x7b, 0x0b, 0xee, 0x65, 0x2e, 0xbb, 0x21, 0x13, 0x78, 0x7e, 0x36, 0x5e, 0xec, 0xf9, 0xbc, 0x17, - 0xa5, 0xeb, 0x5e, 0x2c, 0x34, 0xb1, 0xfc, 0xe6, 0x26, 0xfe, 0xc9, 0x82, 0xbb, 0x39, 0xfc, 0x47, - 0x01, 0x1d, 0x7e, 0xa5, 0x73, 0xe3, 0xfc, 0xd3, 0x82, 0xb7, 0x16, 0xc3, 0x08, 0x53, 0x3e, 0x8e, - 0x23, 0x4e, 0x97, 0x98, 0xfc, 0x03, 0xa8, 0x65, 0x47, 0xbd, 0xa4, 0xe0, 0xe5, 0x2e, 0x1a, 0x9e, - 0x6d, 0x90, 0x97, 0x5b, 0x8e, 0x89, 0xaa, 0xeb, 0x28, 0xab, 0x8a, 0x9d, 0xd1, 0xb3, 0xfb, 0x58, - 0xc9, 0xdf, 0xc7, 0x79, 0x77, 0x57, 0xae, 0xbb, 0x7b, 0x0f, 0x40, 0x37, 0x64, 0xfe, 0x24, 0x61, - 0x66, 0xf4, 0xae, 0x69, 0xce, 0x69, 0xc2, 0x1c, 0x0c, 0x3b, 0xd7, 0x3d, 0x7d, 0x46, 0xc9, 0x15, - 0xfd, 0xaf, 0x71, 0xe3, 0xfc, 0x04, 0x1e, 0xe4, 0x8a, 0xa1, 0x7e, 0x6f, 0xe6, 0x7b, 0xbf, 0x25, - 0xda, 0x8b, 0xd6, 0x96, 0xe6, 0xad, 0xfd, 0xb3, 0x05, 0xf5, 0xe7, 0xe4, 0xc5, 0x24, 0x6d, 0xd4, - 0x9a, 0x50, 0xe6, 0xec, 0xc2, 0x14, 0x32, 0xf9, 0x29, 0x8b, 0x87, 0x60, 0x23, 0xca, 0x05, 0x19, - 0x8d, 0xd5, 0xfe, 0x0a, 0x9e, 0x31, 0xe4, 0xa1, 0x22, 0x1e, 0xb3, 0x40, 0x85, 0x77, 0x1d, 0x6b, - 0x42, 0x4d, 0xfb, 0x64, 0x3a, 0x8c, 0x49, 0x8a, 0x97, 0x94, 0xd4, 0x2b, 0x61, 0xc8, 0xa2, 0x0b, - 0x13, 0xda, 0x94, 0x94, 0xc5, 0xf9, 0x92, 0xf0, 0x4b, 0x15, 0xd0, 0x75, 0xac, 0xbe, 0x91, 0x03, - 0xeb, 0xe2, 0x92, 0x25, 0xe1, 0x31, 0x49, 0x64, 0x1c, 0xcc, 0x0c, 0x5a, 0xe0, 0x39, 0x5f, 0xc0, - 0x5e, 0xce, 0x81, 0x34, 0x2c, 0x69, 0x17, 0x66, 0xc3, 0xda, 0x15, 0x4d, 0x78, 0x5a, 0x9c, 0x1b, - 0x38, 0x25, 0xe5, 0x79, 0xe7, 0x49, 0x3c, 0x32, 0x2e, 0xa9, 0x6f, 0x39, 0x52, 0x8a, 0xd8, 0xfc, - 0xcb, 0x55, 0x12, 0xb1, 0x3c, 0x5f, 0x8e, 0xea, 0x34, 0x12, 0x03, 0xe5, 0xa4, 0x9c, 0xec, 0xd6, - 0x71, 0x81, 0xe7, 0xfc, 0xc1, 0x02, 0x74, 0xdd, 0x80, 0x97, 0x1c, 0xfc, 0x31, 0x54, 0xb3, 0x2e, - 0x53, 0x23, 0x3a, 0xd7, 0x06, 0x2c, 0x77, 0x05, 0x67, 0xbb, 0xd0, 0xbb, 0x52, 0x83, 0x92, 0x49, - 0xab, 0xc7, 0xed, 0x85, 0x1a, 0x70, 0x26, 0xe6, 0xfc, 0xc5, 0x82, 0xfb, 0xd7, 0x75, 0xf7, 0xa2, - 0x90, 0xfe, 0xea, 0x35, 0x62, 0xf5, 0xe5, 0x4d, 0xde, 0x86, 0xd5, 0xf8, 0xfc, 0x9c, 0x53, 0x61, - 0xa2, 0x6b, 0x28, 0x99, 0x05, 0xce, 0x7e, 0x4d, 0xcd, 0xdf, 0xa1, 0xea, 0x7b, 0x1e, 0x23, 0x95, - 0x0c, 0x23, 0xce, 0x5f, 0x2d, 0xd8, 0x59, 0xe2, 0x05, 0x7a, 0x0a, 0x55, 0x33, 0x0f, 0xa5, 0xdd, - 0xd5, 0xc3, 0x97, 0xd9, 0xa8, 0x36, 0xb5, 0x0d, 0x61, 0x1a, 0xad, 0x4c, 0xc1, 0xde, 0x39, 0x34, - 0x0a, 0x4b, 0x0b, 0xfa, 0x96, 0x8f, 0x8a, 0x7d, 0xcb, 0xdb, 0xaf, 0x3c, 0x2c, 0x8b, 0xca, 0xac, - 0x8f, 0x79, 0xdc, 0xf8, 0xbc, 0xde, 0x7e, 0xf8, 0x41, 0xba, 0xf3, 0x6c, 0x55, 0x7d, 0xbd, 0xf7, - 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0x4a, 0xe4, 0x94, 0xc7, 0x16, 0x00, 0x00, + // 2068 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x58, 0x4d, 0x73, 0x23, 0x49, + 0xd1, 0x9e, 0x96, 0x64, 0x5b, 0x4a, 0x59, 0xb6, 0x5c, 0x33, 0x63, 0xb7, 0x3d, 0x33, 0x3b, 0x9a, + 0x7e, 0x5f, 0x02, 0xef, 0x12, 0x68, 0x76, 0xbd, 0x10, 0x4c, 0xec, 0xc2, 0xee, 0x6a, 0xe4, 0x66, + 0x56, 0xcc, 0xb8, 0xe5, 0x2d, 0xcb, 0x3b, 0xb0, 0x01, 0x74, 0x94, 0xbb, 0xcb, 0x76, 0xc5, 0x48, + 0xdd, 0xa2, 0xab, 0xe4, 0x40, 0x1c, 0xf6, 0x40, 0xf0, 0x0b, 0x38, 0x71, 0x24, 0x82, 0x08, 0x8e, + 0xfc, 0x05, 0x0e, 0xdc, 0xb9, 0x73, 0x83, 0x1b, 0x47, 0x4e, 0x9c, 0x89, 0xfa, 0xe8, 0x56, 0xb7, + 0x2c, 0xcd, 0x07, 0x0b, 0x11, 0x9c, 0xd4, 0x99, 0x95, 0x95, 0x95, 0x95, 0xf9, 0x64, 0x56, 0xa6, + 0x60, 0x2b, 0x88, 0x47, 0xa3, 0x49, 0xc4, 0x04, 0xa3, 0xbc, 0x3d, 0x4e, 0x62, 0x11, 0xa3, 0xaa, + 0xfa, 0x39, 0x9b, 0x9c, 0xef, 0xdd, 0x0c, 0x2e, 0x89, 0xf0, 0x59, 0x48, 0x23, 0xc1, 0xc4, 0x54, + 0x2f, 0xef, 0xd5, 0x69, 0x34, 0x19, 0x19, 0x59, 0xe7, 0x0a, 0x56, 0x9e, 0x24, 0x24, 0x12, 0xe8, + 0x01, 0xac, 0xa7, 0x9a, 0xa6, 0x3e, 0x0b, 0x6d, 0xab, 0x65, 0xed, 0xaf, 0xe3, 0x7a, 0xc6, 0xeb, + 0x85, 0xe8, 0x0e, 0xd4, 0x46, 0x74, 0x74, 0x46, 0x13, 0xb9, 0x5e, 0x52, 0xeb, 0x55, 0xcd, 0xe8, + 0x85, 0x68, 0x07, 0xd6, 0xcc, 0x61, 0x76, 0xb9, 0x65, 0xed, 0xd7, 0xf0, 0xaa, 0x24, 0x7b, 0x21, + 0xba, 0x05, 0x2b, 0xc1, 0x30, 0x0e, 0x5e, 0xd8, 0x95, 0x96, 0xb5, 0x5f, 0xc1, 0x9a, 0x70, 0x7e, + 0x5f, 0x82, 0xcd, 0x6e, 0xaa, 0xfb, 0x48, 0x29, 0x41, 0xdf, 0x86, 0x95, 0x24, 0x1e, 0x52, 0x6e, + 0x5b, 0xad, 0xf2, 0xfe, 0xc6, 0xc1, 0xfd, 0x76, 0x7a, 0x8f, 0xf6, 0x9c, 0x64, 0x1b, 0x4b, 0x31, + 0xac, 0xa5, 0xd1, 0xf7, 0x61, 0x2b, 0xa1, 0x57, 0x94, 0x0c, 0x69, 0xe8, 0x93, 0x20, 0x88, 0x27, + 0x91, 0xe0, 0x76, 0xa9, 0x55, 0xde, 0xaf, 0x1f, 0xec, 0xce, 0x54, 0x60, 0x23, 0xd2, 0xd1, 0x12, + 0xb8, 0x99, 0x14, 0x19, 0x1c, 0xbd, 0x03, 0x5b, 0x43, 0xc2, 0x85, 0x3f, 0x19, 0x87, 0x44, 0x50, + 0x5f, 0x1b, 0x5d, 0x56, 0x46, 0x6f, 0xca, 0x85, 0x53, 0xc5, 0xef, 0x2a, 0xf3, 0x2f, 0x61, 0x45, + 0xd9, 0x80, 0x1a, 0x50, 0xc3, 0xfd, 0x67, 0xae, 0xef, 0xf5, 0x3d, 0xb7, 0x79, 0x03, 0x6d, 0x00, + 0x28, 0xb2, 0xff, 0xdc, 0x73, 0x71, 0xd3, 0x42, 0xb7, 0x61, 0x4b, 0xd1, 0x47, 0x1d, 0xaf, 0xf3, + 0xc4, 0xf5, 0x4f, 0x4f, 0x5c, 0x7c, 0xd2, 0x2c, 0xa1, 0x5d, 0xb8, 0xad, 0xd9, 0xfd, 0x43, 0x17, + 0x77, 0x06, 0xae, 0xdf, 0xed, 0x7b, 0x03, 0xd7, 0x1b, 0x34, 0xcb, 0x99, 0x86, 0xce, 0xe1, 0x51, + 0xcf, 0x6b, 0x56, 0x9c, 0x5f, 0x96, 0x61, 0x3b, 0xbb, 0xfe, 0x20, 0x7e, 0x41, 0xa3, 0x23, 0x2a, + 0x48, 0x48, 0x04, 0x41, 0xe7, 0x80, 0x82, 0x38, 0x12, 0x09, 0x09, 0x84, 0x4f, 0xc2, 0x30, 0xa1, + 0x9c, 0x1b, 0xe7, 0xd5, 0x0f, 0xbe, 0xb3, 0xc0, 0x79, 0x85, 0xdd, 0xed, 0xae, 0xd9, 0xda, 0x49, + 0x77, 0xba, 0x91, 0x48, 0xa6, 0x78, 0x2b, 0x98, 0xe7, 0xa3, 0x16, 0xd4, 0x43, 0xca, 0x83, 0x84, + 0x8d, 0x05, 0x8b, 0x23, 0x15, 0xf9, 0x1a, 0xce, 0xb3, 0x64, 0x8c, 0xd9, 0x88, 0x5c, 0x50, 0x13, + 0x7a, 0x4d, 0xa0, 0x0f, 0xa0, 0x26, 0xe4, 0x91, 0x83, 0xe9, 0x98, 0xaa, 0xe8, 0x6f, 0x1c, 0xdc, + 0x5d, 0x66, 0x96, 0x94, 0xc1, 0x33, 0x71, 0xb4, 0x0d, 0xab, 0x7c, 0x3a, 0x3a, 0x8b, 0x87, 0xf6, + 0x8a, 0x46, 0x93, 0xa6, 0x10, 0x82, 0x4a, 0x44, 0x46, 0xd4, 0x5e, 0x55, 0x5c, 0xf5, 0x8d, 0xf6, + 0xa0, 0x1a, 0xd2, 0x80, 0x8d, 0xc8, 0x90, 0xdb, 0x6b, 0x2d, 0x6b, 0xbf, 0x81, 0x33, 0x7a, 0xef, + 0x50, 0x7a, 0x6f, 0xd1, 0x45, 0x51, 0x13, 0xca, 0x2f, 0xe8, 0x54, 0xe1, 0xbc, 0x82, 0xe5, 0xa7, + 0xbc, 0xc5, 0x15, 0x19, 0x4e, 0xa8, 0xb9, 0xa1, 0x26, 0x3e, 0x28, 0x3d, 0xb2, 0x9c, 0xbf, 0x5a, + 0x70, 0x2b, 0xb3, 0xf7, 0x98, 0x26, 0x23, 0xc6, 0x39, 0x8b, 0x23, 0x8e, 0x76, 0xa1, 0x4a, 0x23, + 0xee, 0xc7, 0xd1, 0x50, 0x6b, 0xaa, 0xe2, 0x35, 0x1a, 0xf1, 0x7e, 0x34, 0x9c, 0x22, 0x1b, 0xd6, + 0xc6, 0x09, 0xbb, 0x22, 0x42, 0xeb, 0xab, 0xe2, 0x94, 0x44, 0xdf, 0x83, 0x55, 0x12, 0x04, 0x94, + 0x73, 0xe5, 0xae, 0x8d, 0x83, 0xaf, 0x2d, 0x70, 0x4a, 0xee, 0x90, 0x76, 0x47, 0x09, 0x63, 0xb3, + 0xc9, 0x19, 0xc0, 0xaa, 0xe6, 0x20, 0x04, 0x1b, 0xa7, 0xde, 0x53, 0xaf, 0xff, 0xdc, 0xf3, 0x3b, + 0xdd, 0xae, 0x7b, 0x72, 0xd2, 0xbc, 0x81, 0xb6, 0xa0, 0xe1, 0xf5, 0xfd, 0x23, 0xf7, 0xe8, 0xb1, + 0x8b, 0x4f, 0x3e, 0xed, 0x1d, 0x37, 0x2d, 0x74, 0x13, 0x36, 0x7b, 0xde, 0xe7, 0xbd, 0x41, 0x67, + 0xd0, 0xeb, 0x7b, 0x7e, 0xdf, 0x7b, 0xf6, 0xa3, 0x66, 0x49, 0xe2, 0xac, 0xef, 0xf9, 0xd8, 0xfd, + 0xec, 0xd4, 0x3d, 0x19, 0x34, 0xcb, 0xce, 0xaf, 0xca, 0xd0, 0x50, 0x91, 0xe8, 0x26, 0x4c, 0xd0, + 0x84, 0x11, 0xf4, 0x93, 0x97, 0xc0, 0xab, 0x3d, 0x33, 0xb9, 0xb0, 0xe9, 0x0d, 0x50, 0xf5, 0x2e, + 0x54, 0x84, 0x04, 0x46, 0xe9, 0x35, 0x80, 0xa1, 0x24, 0x73, 0x98, 0x28, 0x2f, 0xc4, 0x44, 0x25, + 0x87, 0x89, 0x6d, 0x58, 0x25, 0x23, 0x99, 0xd7, 0x29, 0x7e, 0x34, 0x25, 0x6b, 0x98, 0x02, 0x99, + 0xcf, 0x42, 0x6e, 0xaf, 0xb6, 0xca, 0xfb, 0x15, 0x5c, 0x55, 0x8c, 0x5e, 0xc8, 0xd1, 0x7d, 0xa8, + 0xcb, 0x68, 0x8e, 0x89, 0x10, 0x34, 0x89, 0x14, 0x96, 0x6a, 0x18, 0x68, 0xc4, 0x8f, 0x35, 0xa7, + 0x80, 0xb4, 0xaa, 0x02, 0xce, 0x7f, 0x1a, 0x69, 0x7f, 0x2b, 0x81, 0x5d, 0x74, 0xc0, 0x0c, 0x09, + 0x68, 0x03, 0x4a, 0xa6, 0x32, 0xd7, 0x70, 0x89, 0x85, 0xe8, 0xc3, 0x82, 0x0b, 0xbf, 0xbe, 0xcc, + 0x85, 0x33, 0x0d, 0xed, 0x9c, 0x37, 0x3f, 0x82, 0x0d, 0xed, 0x89, 0xc0, 0xc4, 0xce, 0x2e, 0xab, + 0xd0, 0xee, 0x2c, 0x09, 0x2d, 0x6e, 0x88, 0x02, 0x3c, 0x76, 0xa1, 0x6a, 0x0a, 0x3e, 0xb7, 0x2b, + 0xad, 0xf2, 0x7e, 0x0d, 0xaf, 0xe9, 0x8a, 0xcf, 0xd1, 0x3d, 0x00, 0xc6, 0xfd, 0x14, 0xfd, 0x2b, + 0x0a, 0xfd, 0x35, 0xc6, 0x8f, 0x35, 0xc3, 0xf9, 0x12, 0x2a, 0x2a, 0xc7, 0xef, 0x82, 0x9d, 0xc2, + 0x77, 0xd0, 0x7f, 0xea, 0x7a, 0xfe, 0xb1, 0x8b, 0x8f, 0x7a, 0x27, 0x27, 0xbd, 0xbe, 0xd7, 0xbc, + 0x81, 0x9a, 0xb0, 0xfe, 0xd8, 0xed, 0xf6, 0x8f, 0xd2, 0x52, 0x68, 0x49, 0x68, 0x1b, 0x8e, 0x86, + 0x77, 0xb3, 0x84, 0x6e, 0x41, 0xb3, 0xdb, 0xf1, 0xfc, 0xcf, 0x7b, 0xee, 0x73, 0xbf, 0xfb, 0x69, + 0xc7, 0xf3, 0xdc, 0x67, 0xcd, 0x32, 0xba, 0x07, 0xbb, 0x19, 0xb7, 0xe3, 0x1d, 0xfa, 0xc7, 0xfd, + 0x93, 0x41, 0xb6, 0x5c, 0x71, 0xfe, 0x59, 0xcb, 0x65, 0xf3, 0x61, 0xb1, 0x8c, 0xe9, 0xaa, 0x6f, + 0xe5, 0x9e, 0x2a, 0xe4, 0xc2, 0x9a, 0x7e, 0xe5, 0xd2, 0x57, 0xe5, 0x1b, 0x0b, 0x1c, 0x9d, 0x53, + 0xd3, 0xd6, 0x8f, 0x94, 0x41, 0x7e, 0xba, 0x17, 0x7d, 0x02, 0xf5, 0xf1, 0x2c, 0xa9, 0x15, 0x84, + 0xeb, 0x07, 0x6f, 0xbd, 0x3c, 0xf5, 0x71, 0x7e, 0x0b, 0x3a, 0x80, 0x6a, 0xfa, 0x94, 0x2b, 0xa7, + 0xd6, 0x0f, 0xb6, 0x73, 0xdb, 0x95, 0xef, 0xf5, 0x2a, 0xce, 0xe4, 0xd0, 0xc7, 0xb0, 0x22, 0xa3, + 0xa2, 0xb1, 0x5e, 0x3f, 0x78, 0xfb, 0x15, 0xa6, 0x4b, 0x2d, 0xc6, 0x70, 0xbd, 0x4f, 0x86, 0xf9, + 0x8c, 0x44, 0xfe, 0x90, 0x71, 0x61, 0xaf, 0xe9, 0x30, 0x9f, 0x91, 0xe8, 0x19, 0xe3, 0x02, 0x79, + 0x00, 0x01, 0x11, 0xf4, 0x22, 0x4e, 0x18, 0x95, 0xf9, 0x30, 0x57, 0x18, 0x16, 0x1f, 0x90, 0x6d, + 0xd0, 0xa7, 0xe4, 0x34, 0xa0, 0x47, 0x60, 0x93, 0x24, 0xb8, 0x64, 0x57, 0xd4, 0x1f, 0x91, 0x8b, + 0x88, 0x8a, 0x21, 0x8b, 0x5e, 0x98, 0x77, 0xb8, 0xa6, 0x22, 0xb2, 0x6d, 0xd6, 0x8f, 0xb2, 0x65, + 0xf5, 0x1c, 0xa3, 0x27, 0xb0, 0x41, 0xc2, 0x11, 0x8b, 0x7c, 0x4e, 0x85, 0x60, 0xd1, 0x05, 0xb7, + 0x41, 0xf9, 0xa7, 0xb5, 0xc0, 0x9a, 0x8e, 0x14, 0x3c, 0x31, 0x72, 0xb8, 0x41, 0xf2, 0x24, 0xfa, + 0x3f, 0x68, 0xb0, 0x48, 0x24, 0xb1, 0x3f, 0xa2, 0x9c, 0xcb, 0x07, 0xad, 0xae, 0x92, 0x6d, 0x5d, + 0x31, 0x8f, 0x34, 0x4f, 0x0a, 0xc5, 0x93, 0xbc, 0xd0, 0xba, 0x16, 0x52, 0xcc, 0x54, 0xe8, 0x2e, + 0xd4, 0x68, 0x14, 0x24, 0xd3, 0xb1, 0xa0, 0xa1, 0xdd, 0xd0, 0x29, 0x90, 0x31, 0x64, 0xc9, 0x12, + 0xe4, 0x82, 0xdb, 0x1b, 0xca, 0xa3, 0xea, 0x1b, 0x11, 0xd8, 0xd2, 0x09, 0x99, 0x87, 0xc9, 0xa6, + 0xf2, 0xea, 0xb7, 0x5e, 0xe1, 0xd5, 0xb9, 0x34, 0x37, 0xbe, 0x6d, 0x8a, 0x39, 0x36, 0xfa, 0x31, + 0xec, 0xce, 0x9a, 0x3c, 0xb5, 0xca, 0xfd, 0x91, 0x69, 0x08, 0xec, 0xa6, 0x3a, 0xaa, 0xf5, 0xaa, + 0xc6, 0x01, 0xef, 0x04, 0x05, 0x3e, 0xcf, 0xfa, 0x91, 0x77, 0xe1, 0x16, 0x09, 0x84, 0x0a, 0x9f, + 0xc6, 0xbc, 0xaf, 0x3a, 0x2b, 0x7b, 0x4b, 0xc5, 0x0e, 0xe9, 0x35, 0x93, 0x1c, 0x5d, 0xb9, 0xb2, + 0x77, 0x0a, 0xeb, 0xf9, 0x64, 0xc9, 0x57, 0xca, 0x9a, 0xae, 0x94, 0x0f, 0xf3, 0x95, 0xb2, 0xd0, + 0xd0, 0xcd, 0xf5, 0x84, 0xb9, 0x22, 0xba, 0xf7, 0x19, 0xc0, 0x0c, 0xc8, 0x0b, 0x94, 0x7e, 0xb3, + 0xa8, 0x74, 0x67, 0x81, 0x52, 0xb9, 0x3f, 0xaf, 0xf2, 0x0b, 0xd8, 0x9c, 0x83, 0xee, 0x02, 0xbd, + 0xef, 0x15, 0xf5, 0xde, 0x59, 0xa4, 0x57, 0x2b, 0x99, 0xe6, 0x75, 0x5f, 0xc0, 0xed, 0x85, 0x01, + 0x5c, 0x70, 0xc2, 0xa3, 0xe2, 0x09, 0xce, 0xab, 0x4b, 0x7e, 0xfe, 0x71, 0xf9, 0x69, 0xae, 0x95, + 0x2c, 0xa4, 0x01, 0x3a, 0x84, 0xfb, 0x63, 0x16, 0xa5, 0x80, 0xf6, 0xc9, 0x70, 0x98, 0xc5, 0x90, + 0x46, 0xe4, 0x6c, 0x48, 0x43, 0xd3, 0xde, 0xdc, 0x19, 0xb3, 0xc8, 0x40, 0xbc, 0x33, 0x1c, 0x66, + 0xc1, 0x53, 0x22, 0xce, 0x5f, 0x4a, 0xd0, 0x28, 0x78, 0x10, 0x7d, 0x34, 0xab, 0x9d, 0xba, 0x71, + 0xf8, 0xff, 0x25, 0xbe, 0x7e, 0xbd, 0xa2, 0x59, 0xfa, 0x6a, 0x45, 0xb3, 0xfc, 0x9a, 0x45, 0xf3, + 0x3e, 0xd4, 0x4d, 0x59, 0x52, 0xa3, 0x90, 0xee, 0x2b, 0xd2, 0x4a, 0x25, 0x27, 0xa1, 0x3d, 0xa8, + 0x8e, 0x63, 0xce, 0x54, 0x3b, 0x2c, 0x2b, 0xf1, 0x0a, 0xce, 0xe8, 0xff, 0x12, 0xa6, 0x9d, 0x10, + 0xb6, 0xae, 0x81, 0x68, 0xde, 0x50, 0xeb, 0x9a, 0xa1, 0x69, 0x6b, 0x54, 0x2a, 0xb6, 0xcb, 0x99, + 0xf1, 0xe5, 0xa2, 0xf1, 0xce, 0x6f, 0x2c, 0xb8, 0x99, 0x1d, 0xd3, 0x8b, 0xae, 0x98, 0x20, 0xea, + 0x65, 0x7c, 0x1f, 0x6e, 0xcf, 0x0a, 0x47, 0x7e, 0x18, 0xd0, 0x63, 0xe2, 0xad, 0x60, 0xc9, 0x73, + 0x7a, 0x21, 0x67, 0x4b, 0x33, 0x2b, 0x6a, 0x62, 0xf9, 0xa0, 0x78, 0x0f, 0x60, 0x3c, 0x39, 0x1b, + 0xb2, 0xc0, 0x97, 0xfe, 0xaa, 0xa8, 0x3d, 0x35, 0xcd, 0x79, 0x4a, 0xa7, 0xce, 0xaf, 0x2d, 0xd8, + 0x9c, 0x1b, 0xe2, 0x64, 0x8f, 0x6d, 0x3a, 0x53, 0x73, 0xf7, 0x94, 0x94, 0xe5, 0x97, 0xb3, 0x8b, + 0x88, 0x88, 0x49, 0x42, 0xcd, 0xf9, 0x33, 0x86, 0xec, 0x02, 0x83, 0x4b, 0xc2, 0x74, 0x17, 0x58, + 0xd6, 0x5d, 0xa0, 0x62, 0xc8, 0xee, 0xe5, 0x1d, 0x68, 0x32, 0xde, 0x61, 0x49, 0x98, 0xc4, 0x63, + 0xd3, 0xc9, 0x29, 0x6b, 0xaa, 0xf8, 0x1a, 0xdf, 0xf9, 0x87, 0x95, 0x4b, 0x29, 0x4c, 0x7f, 0x36, + 0xa1, 0x5c, 0x0c, 0xe2, 0x1f, 0xc4, 0x6c, 0x59, 0x33, 0x61, 0x06, 0x86, 0x5c, 0x50, 0xe4, 0xc0, + 0xe0, 0xc9, 0xb8, 0x2c, 0x75, 0xcc, 0xfc, 0x68, 0x5e, 0xb9, 0x3e, 0x9a, 0x3f, 0x80, 0xf5, 0x90, + 0xf1, 0xf1, 0x90, 0x4c, 0xb5, 0xea, 0x15, 0x33, 0xa3, 0x69, 0x9e, 0x52, 0xbf, 0x70, 0x4c, 0x5e, + 0x7d, 0xe3, 0x31, 0xd9, 0xf9, 0xad, 0x05, 0xf7, 0xb2, 0x2b, 0xbb, 0x21, 0x13, 0x78, 0x7e, 0x90, + 0x5e, 0x7c, 0xf3, 0xf9, 0x5b, 0x94, 0xae, 0xdf, 0x62, 0xa1, 0x89, 0xe5, 0x37, 0x37, 0xf1, 0x0f, + 0x16, 0xdc, 0xcd, 0x25, 0x4b, 0x14, 0xd0, 0xe1, 0xff, 0x74, 0x6c, 0x9c, 0xbf, 0x5b, 0xf0, 0xd6, + 0x62, 0x18, 0x61, 0xca, 0xc7, 0x71, 0xc4, 0xe9, 0x12, 0x93, 0xbf, 0x0b, 0xb5, 0xec, 0xa8, 0x97, + 0x54, 0xc7, 0x5c, 0x56, 0xe2, 0xd9, 0x06, 0x59, 0x09, 0xe4, 0x4c, 0xa9, 0x5a, 0x94, 0xb2, 0x42, + 0x78, 0x46, 0xcf, 0x92, 0xb7, 0x92, 0x4f, 0xde, 0xf9, 0xeb, 0xae, 0x5c, 0xbf, 0xee, 0x3d, 0x00, + 0xdd, 0xbd, 0xf9, 0x93, 0x84, 0x99, 0x39, 0xbd, 0xa6, 0x39, 0xa7, 0x09, 0x73, 0x30, 0xec, 0x5c, + 0xbf, 0xe9, 0x33, 0x4a, 0xae, 0xe8, 0xbf, 0x8d, 0x1b, 0xe7, 0x87, 0xf0, 0x20, 0x57, 0x39, 0xf5, + 0xe3, 0x34, 0xdf, 0x28, 0x2e, 0xd1, 0x5e, 0xb4, 0xb6, 0x34, 0x6f, 0xed, 0x1f, 0x2d, 0xa8, 0x3f, + 0x27, 0x2f, 0x26, 0x69, 0x57, 0xd7, 0x84, 0x32, 0x67, 0x17, 0xa6, 0xea, 0xc9, 0x4f, 0x59, 0x68, + 0x04, 0x1b, 0x51, 0x2e, 0xc8, 0x68, 0xac, 0xf6, 0x57, 0xf0, 0x8c, 0x21, 0x0f, 0x15, 0xf1, 0x98, + 0x05, 0xca, 0xbd, 0xeb, 0x58, 0x13, 0xea, 0xaf, 0x01, 0x32, 0x1d, 0xc6, 0x24, 0xc5, 0x4b, 0x4a, + 0xea, 0x95, 0x30, 0x64, 0xd1, 0x85, 0x71, 0x6d, 0x4a, 0xca, 0x4a, 0x7e, 0x49, 0xf8, 0xa5, 0x72, + 0xe8, 0x3a, 0x56, 0xdf, 0xc8, 0x81, 0x75, 0x71, 0xc9, 0x92, 0xf0, 0x98, 0x24, 0xd2, 0x0f, 0x66, + 0x60, 0x2d, 0xf0, 0x9c, 0x2f, 0x61, 0x2f, 0x77, 0x81, 0xd4, 0x2d, 0x69, 0xcb, 0x66, 0xc3, 0xda, + 0x15, 0x4d, 0x78, 0x5a, 0xc9, 0x1b, 0x38, 0x25, 0xe5, 0x79, 0xe7, 0x49, 0x3c, 0x32, 0x57, 0x52, + 0xdf, 0x72, 0xfe, 0x14, 0xb1, 0xf9, 0x4b, 0xac, 0x24, 0x62, 0x79, 0xbe, 0x9c, 0xeb, 0x69, 0x24, + 0x06, 0xea, 0x92, 0x72, 0x0c, 0x5c, 0xc7, 0x05, 0x9e, 0xf3, 0x3b, 0x0b, 0xd0, 0x75, 0x03, 0x5e, + 0x72, 0xf0, 0x27, 0x50, 0xcd, 0x5a, 0x52, 0x8d, 0xe8, 0x5c, 0xcf, 0xb0, 0xfc, 0x2a, 0x38, 0xdb, + 0x85, 0xde, 0x93, 0x1a, 0x94, 0x4c, 0x5a, 0x3d, 0x6e, 0x2f, 0xd4, 0x80, 0x33, 0x31, 0xe7, 0x4f, + 0x16, 0xdc, 0xbf, 0xae, 0xbb, 0x17, 0x85, 0xf4, 0xe7, 0xaf, 0xe1, 0xab, 0xaf, 0x6e, 0xf2, 0x36, + 0xac, 0xc6, 0xe7, 0xe7, 0x9c, 0x0a, 0xe3, 0x5d, 0x43, 0xc9, 0x28, 0x70, 0xf6, 0x0b, 0x6a, 0xfe, + 0x3b, 0x55, 0xdf, 0xf3, 0x18, 0xa9, 0x64, 0x18, 0x71, 0xfe, 0x6c, 0xc1, 0xce, 0x92, 0x5b, 0xa0, + 0xa7, 0x50, 0x35, 0xc3, 0x53, 0xda, 0x8a, 0x3d, 0x7c, 0x99, 0x8d, 0x6a, 0x53, 0xdb, 0x10, 0xa6, + 0x2b, 0xcb, 0x14, 0xec, 0x9d, 0x43, 0xa3, 0xb0, 0xb4, 0xa0, 0xc9, 0xf9, 0xb8, 0xd8, 0xe4, 0xbc, + 0xfd, 0xca, 0xc3, 0x32, 0xaf, 0xcc, 0x9a, 0x9e, 0xc7, 0x8d, 0x2f, 0xea, 0xed, 0x87, 0x1f, 0xa6, + 0x3b, 0xcf, 0x56, 0xd5, 0xd7, 0xfb, 0xff, 0x0a, 0x00, 0x00, 0xff, 0xff, 0x3a, 0x9c, 0x85, 0xa9, + 0xf4, 0x16, 0x00, 0x00, } diff --git a/protocol/protobuf/communities.proto b/protocol/protobuf/communities.proto index b3e7dd2b0..c2940660c 100644 --- a/protocol/protobuf/communities.proto +++ b/protocol/protobuf/communities.proto @@ -126,6 +126,7 @@ message RevealedAccount { string address = 1; bytes signature = 2; repeated uint64 chain_ids = 3; + bool isAirdropAddress = 4; } message CommunityRequestToJoin { diff --git a/protocol/requests/edit_shared_addresses.go b/protocol/requests/edit_shared_addresses.go index 0db28c1eb..06ba9cf8b 100644 --- a/protocol/requests/edit_shared_addresses.go +++ b/protocol/requests/edit_shared_addresses.go @@ -9,11 +9,13 @@ import ( var ErrInvalidCommunityID = errors.New("invalid community id") var ErrMissingPassword = errors.New("password is necessary when sending a list of addresses") var ErrMissingSharedAddresses = errors.New("list of shared addresses is needed") +var ErrMissingAirdropAddress = errors.New("airdropAddress is needed") type EditSharedAddresses struct { CommunityID types.HexBytes `json:"communityId"` Password string `json:"password"` AddressesToReveal []string `json:"addressesToReveal"` + AirdropAddress string `json:"airdropAddress"` } func (j *EditSharedAddresses) Validate() error { @@ -26,6 +28,9 @@ func (j *EditSharedAddresses) Validate() error { if len(j.AddressesToReveal) == 0 { return ErrMissingSharedAddresses } + if j.AirdropAddress == "" { + return ErrMissingAirdropAddress + } return nil } diff --git a/protocol/requests/request_to_join_community.go b/protocol/requests/request_to_join_community.go index 2016540d2..813c41780 100644 --- a/protocol/requests/request_to_join_community.go +++ b/protocol/requests/request_to_join_community.go @@ -8,12 +8,14 @@ import ( var ErrRequestToJoinCommunityInvalidCommunityID = errors.New("request-to-join-community: invalid community id") var ErrRequestToJoinCommunityMissingPassword = errors.New("request-to-join-community: password is necessary when sending a list of addresses") +var ErrRequestToJoinNoAirdropAddress = errors.New("request-to-join-community: airdropAddress is necessary when sending a list of addresses") type RequestToJoinCommunity struct { CommunityID types.HexBytes `json:"communityId"` ENSName string `json:"ensName"` Password string `json:"password"` AddressesToReveal []string `json:"addressesToReveal"` + AirdropAddress string `json:"airdropAddress"` } func (j *RequestToJoinCommunity) Validate() error { @@ -23,6 +25,9 @@ func (j *RequestToJoinCommunity) Validate() error { if len(j.AddressesToReveal) > 0 && j.Password == "" { return ErrRequestToJoinCommunityMissingPassword } + if len(j.AddressesToReveal) > 0 && j.AirdropAddress == "" { + return ErrRequestToJoinNoAirdropAddress + } return nil }