diff --git a/client.go b/client.go index a58a2d90a9..108260a5f6 100644 --- a/client.go +++ b/client.go @@ -458,14 +458,24 @@ func (s *Client) LoopOutQuote(ctx context.Context, return nil, err } - minerFee, err := s.sweeper.GetSweepFee( + var changeAddr btcutil.Address + if request.WithChange { + changeAddr = p2wshAddress + } + + minerFeeOnlyDest, _, minerFeeBoth, err := s.sweeper.GetSweepFee( ctx, swap.QuoteHtlc.AddSuccessToEstimator, - p2wshAddress, request.SweepConfTarget, + p2wshAddress, changeAddr, request.SweepConfTarget, ) if err != nil { return nil, err } + minerFee := minerFeeOnlyDest + if request.WithChange { + minerFee = minerFeeBoth + } + return &LoopOutQuote{ SwapFee: swapFee, MinerFee: minerFee, diff --git a/cmd/loop/loopout.go b/cmd/loop/loopout.go index 2c8c380845..05bb22d720 100644 --- a/cmd/loop/loopout.go +++ b/cmd/loop/loopout.go @@ -43,6 +43,17 @@ var loopOutCommand = cli.Command{ Name: "amt", Usage: "the amount in satoshis to loop out", }, + cli.Uint64Flag{ + Name: "dest_amt", + Usage: "the optional exact amount in satoshis to send to " + + "'addr'; useful to pay to merchants", + }, + cli.StringFlag{ + Name: "change_addr", + Usage: "the optional address where to send change in case " + + "'dest_amt' is specified; if left empty and 'dest_amt' " + + "is provided, the funds will go to lnd's wallet", + }, cli.Uint64Flag{ Name: "htlc_confs", Usage: "the number of of confirmations, in blocks " + @@ -128,6 +139,19 @@ func loopOut(ctx *cli.Context) error { destAddr = args.First() } + var destAmount btcutil.Amount + if ctx.IsSet("dest_amt") { + destAmount, err = parseAmt(ctx.String("dest_amt")) + if err != nil { + return err + } + } + + var changeAddr string + if ctx.IsSet("change_addr") { + changeAddr = ctx.String("changeAddr") + } + client, cleanup, err := getClient(ctx) if err != nil { return err @@ -185,6 +209,8 @@ func loopOut(ctx *cli.Context) error { resp, err := client.LoopOut(context.Background(), &looprpc.LoopOutRequest{ Amt: int64(amt), Dest: destAddr, + DestAmount: int64(destAmount), + ChangeAddr: changeAddr, MaxMinerFee: int64(limits.maxMinerFee), MaxPrepayAmt: int64(limits.maxPrepayAmt), MaxSwapFee: int64(limits.maxSwapFee), diff --git a/cmd/loop/quote.go b/cmd/loop/quote.go index b63bac9aa8..b2fb9bd17a 100644 --- a/cmd/loop/quote.go +++ b/cmd/loop/quote.go @@ -76,6 +76,11 @@ var quoteOutCommand = cli.Command{ ArgsUsage: "amt", Description: "Allows to determine the cost of a swap up front", Flags: []cli.Flag{ + cli.BoolFlag{ + Name: "with_change", + Usage: "Indicate you want to add change output; " + + "this is needed when making exact amount payment", + }, cli.Uint64Flag{ Name: "conf_target", Usage: "the number of blocks from the swap " + @@ -124,6 +129,7 @@ func quoteOut(ctx *cli.Context) error { ctxb := context.Background() quoteReq := &looprpc.QuoteRequest{ Amt: int64(amt), + WithChange: ctx.Bool("with_change"), ConfTarget: int32(ctx.Uint64("conf_target")), SwapPublicationDeadline: uint64(swapDeadline.Unix()), } diff --git a/interface.go b/interface.go index f03d8b2e13..a61220420e 100644 --- a/interface.go +++ b/interface.go @@ -19,6 +19,17 @@ type OutRequest struct { // Destination address for the swap. DestAddr btcutil.Address + // DestAmount specifies the exact amount to send to DestAddr. If this + // field is enabled, ChangeAddr must also be specified. If it fails to + // send exactly DestAmount to DestAddr due to fees increase, it sends + // everything to ChangeAddr. Otherwise only the change goes to ChangeAddr. + // This is useful when a merchant asks you to pay exactly X to address. + DestAmount btcutil.Amount + + // Where to send change in case DestAmount is specified. See description + // of DestAmount. + ChangeAddr btcutil.Address + // MaxSwapRoutingFee is the maximum off-chain fee in msat that may be // paid for payment to the server. This limit is applied during path // finding. Typically this value is taken from the response of the @@ -106,6 +117,11 @@ type LoopOutQuoteRequest struct { // include the swap and miner fee. Amount btcutil.Amount + // WithChange specifies if change output is added to sweep tx. + // This is useful when a merchant asks you to pay exactly X to address. + // See the description of OutRequest.DestAmount. + WithChange bool + // SweepConfTarget specifies the targeted confirmation target for the // client sweep tx. SweepConfTarget int32 diff --git a/loopd/swapclient_server.go b/loopd/swapclient_server.go index 5b12ed9e87..13db8c1b2c 100644 --- a/loopd/swapclient_server.go +++ b/loopd/swapclient_server.go @@ -81,6 +81,24 @@ func (s *swapClientServer) LoopOut(ctx context.Context, } } + var changeAddr btcutil.Address + if in.ChangeAddr != "" { + var err error + changeAddr, err = btcutil.DecodeAddress( + in.ChangeAddr, s.lnd.ChainParams, + ) + if err != nil { + return nil, fmt.Errorf("decode change address: %v", err) + } + } else if in.DestAmount != 0 { + // Generate change address. + var err error + changeAddr, err = s.lnd.WalletKit.NextAddr(context.Background()) + if err != nil { + return nil, fmt.Errorf("NextAddr error: %v", err) + } + } + // Check that the label is valid. if err := labels.Validate(in.Label); err != nil { return nil, err @@ -89,6 +107,8 @@ func (s *swapClientServer) LoopOut(ctx context.Context, req := &loop.OutRequest{ Amount: btcutil.Amount(in.Amt), DestAddr: sweepAddr, + DestAmount: btcutil.Amount(in.DestAmount), + ChangeAddr: changeAddr, MaxMinerFee: btcutil.Amount(in.MaxMinerFee), MaxPrepayAmount: btcutil.Amount(in.MaxPrepayAmt), MaxPrepayRoutingFee: btcutil.Amount(in.MaxPrepayRoutingFee), @@ -409,6 +429,7 @@ func (s *swapClientServer) LoopOutQuote(ctx context.Context, } quote, err := s.impl.LoopOutQuote(ctx, &loop.LoopOutQuoteRequest{ Amount: btcutil.Amount(req.Amt), + WithChange: req.WithChange, SweepConfTarget: confTarget, SwapPublicationDeadline: time.Unix( int64(req.SwapPublicationDeadline), 0, diff --git a/loopdb/loopout.go b/loopdb/loopout.go index 54b31c0b17..07c4ab3607 100644 --- a/loopdb/loopout.go +++ b/loopdb/loopout.go @@ -24,6 +24,14 @@ type LoopOutContract struct { // DestAddr is the destination address of the loop out swap. DestAddr btcutil.Address + // DestAmount specifies the exact amount to send to DestAddr. Optional. + // Used together with ChangeAddr. + DestAmount btcutil.Amount + + // Where to send change in case DestAmount is specified. Optional. + // Used together with DestAmount. + ChangeAddr btcutil.Address + // SwapInvoice is the invoice that is to be paid by the client to // initiate the loop out swap. SwapInvoice string diff --git a/loopin.go b/loopin.go index 689976c48c..a062962167 100644 --- a/loopin.go +++ b/loopin.go @@ -849,8 +849,8 @@ func (s *loopInSwap) publishTimeoutTx(ctx context.Context, } // Calculate sweep tx fee - fee, err := s.sweeper.GetSweepFee( - ctx, s.htlc.AddTimeoutToEstimator, s.timeoutAddr, + fee, _, _, err := s.sweeper.GetSweepFee( + ctx, s.htlc.AddTimeoutToEstimator, s.timeoutAddr, nil, TimeoutTxConfTarget, ) if err != nil { @@ -864,7 +864,7 @@ func (s *loopInSwap) publishTimeoutTx(ctx context.Context, sequence := uint32(0) timeoutTx, err := s.sweeper.CreateSweepTx( ctx, s.height, sequence, s.htlc, *htlcOutpoint, s.SenderKey, - witnessFunc, htlcValue, fee, s.timeoutAddr, + witnessFunc, htlcValue, 0, fee, 0, 0, s.timeoutAddr, nil, ) if err != nil { return err diff --git a/loopout.go b/loopout.go index dc100204ce..2a1fe037a1 100644 --- a/loopout.go +++ b/loopout.go @@ -149,6 +149,8 @@ func newLoopOutSwap(globalCtx context.Context, cfg *swapConfig, contract := loopdb.LoopOutContract{ SwapInvoice: swapResp.swapInvoice, DestAddr: request.DestAddr, + DestAmount: request.DestAmount, + ChangeAddr: request.ChangeAddr, MaxSwapRoutingFee: request.MaxSwapRoutingFee, SweepConfTarget: request.SweepConfTarget, HtlcConfirmations: confs, @@ -910,23 +912,27 @@ func (s *loopOutSwap) sweep(ctx context.Context, confTarget > DefaultSweepConfTarget { confTarget = DefaultSweepConfTarget } - fee, err := s.sweeper.GetSweepFee( - ctx, s.htlc.AddSuccessToEstimator, s.DestAddr, confTarget, + + feeOnlyDest, feeOnlyChange, feeBoth, err := s.sweeper.GetSweepFee( + ctx, s.htlc.AddSuccessToEstimator, s.DestAddr, s.ChangeAddr, confTarget, ) if err != nil { return err } // Ensure it doesn't exceed our maximum fee allowed. - if fee > s.MaxMinerFee { + for _, fee := range []*btcutil.Amount{&feeOnlyDest, &feeOnlyChange, &feeBoth} { + if *fee == 0 || *fee <= s.MaxMinerFee { + continue + } s.log.Warnf("Required fee %v exceeds max miner fee of %v", - fee, s.MaxMinerFee) + *fee, s.MaxMinerFee) if s.state == loopdb.StatePreimageRevealed { // The currently required fee exceeds the max, but we // already revealed the preimage. The best we can do now // is to republish with the max fee. - fee = s.MaxMinerFee + *fee = s.MaxMinerFee } else { s.log.Warnf("Not revealing preimage") return nil @@ -936,7 +942,9 @@ func (s *loopOutSwap) sweep(ctx context.Context, // Create sweep tx. sweepTx, err := s.sweeper.CreateSweepTx( ctx, s.height, s.htlc.SuccessSequence(), s.htlc, htlcOutpoint, - s.ReceiverKey, witnessFunc, htlcValue, fee, s.DestAddr, + s.ReceiverKey, witnessFunc, htlcValue, s.DestAmount, + feeOnlyDest, feeOnlyChange, feeBoth, + s.DestAddr, s.ChangeAddr, ) if err != nil { return err @@ -955,6 +963,11 @@ func (s *loopOutSwap) sweep(ctx context.Context, } // Publish tx. + var sumOutputs int64 + for _, txout := range sweepTx.TxOut { + sumOutputs += txout.Value + } + fee := htlcValue - btcutil.Amount(sumOutputs) s.log.Infof("Sweep on chain HTLC to address %v with fee %v (tx %v)", s.DestAddr, fee, sweepTx.TxHash()) @@ -975,6 +988,10 @@ func validateLoopOutContract(lnd *lndclient.LndServices, height int32, request *OutRequest, swapHash lntypes.Hash, response *newLoopOutResponse) error { + if (request.DestAmount != 0) != (request.ChangeAddr != nil) { + return fmt.Errorf("provide either both DestAmount and ChangeAddr or none of them") + } + // Check invoice amounts. chainParams := lnd.ChainParams diff --git a/looprpc/client.pb.go b/looprpc/client.pb.go index fe754f6ae8..adbe317de0 100644 --- a/looprpc/client.pb.go +++ b/looprpc/client.pb.go @@ -208,6 +208,12 @@ type LoopOutRequest struct { //Base58 encoded destination address for the swap. Dest string `protobuf:"bytes,2,opt,name=dest,proto3" json:"dest,omitempty"` //* + //Exact amount in satoshis to send to 'dest'. Optional. + DestAmount int64 `protobuf:"varint,14,opt,name=dest_amount,json=destAmount,proto3" json:"dest_amount,omitempty"` + //* + //Base58 encoded change address for the swap. + ChangeAddr string `protobuf:"bytes,15,opt,name=change_addr,json=changeAddr,proto3" json:"change_addr,omitempty"` + //* //Maximum off-chain fee in sat that may be paid for swap payment to the server. //This limit is applied during path finding. Typically this value is taken //from the response of the GetQuote call. @@ -316,6 +322,20 @@ func (m *LoopOutRequest) GetDest() string { return "" } +func (m *LoopOutRequest) GetDestAmount() int64 { + if m != nil { + return m.DestAmount + } + return 0 +} + +func (m *LoopOutRequest) GetChangeAddr() string { + if m != nil { + return m.ChangeAddr + } + return "" +} + func (m *LoopOutRequest) GetMaxSwapRoutingFee() int64 { if m != nil { return m.MaxSwapRoutingFee @@ -1100,6 +1120,9 @@ type QuoteRequest struct { //The amount to swap in satoshis. Amt int64 `protobuf:"varint,1,opt,name=amt,proto3" json:"amt,omitempty"` //* + //If change output will be added. This is needed to send exact amount. + WithChange bool `protobuf:"varint,5,opt,name=with_change,json=withChange,proto3" json:"with_change,omitempty"` + //* //The confirmation target that should be used either for the sweep of the //on-chain HTLC broadcast by the swap server in the case of a Loop Out, or for //the confirmation of the on-chain HTLC broadcast by the swap client in the @@ -1153,6 +1176,13 @@ func (m *QuoteRequest) GetAmt() int64 { return 0 } +func (m *QuoteRequest) GetWithChange() bool { + if m != nil { + return m.WithChange + } + return false +} + func (m *QuoteRequest) GetConfTarget() int32 { if m != nil { return m.ConfTarget @@ -1977,155 +2007,158 @@ func init() { func init() { proto.RegisterFile("client.proto", fileDescriptor_014de31d7ac8c57c) } var fileDescriptor_014de31d7ac8c57c = []byte{ - // 2365 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x58, 0xcd, 0x6e, 0x23, 0xc7, - 0xf1, 0x5f, 0x7e, 0x89, 0x64, 0xf1, 0x6b, 0xd4, 0xda, 0x95, 0x28, 0x5a, 0x86, 0xb5, 0x63, 0xef, - 0xdf, 0xb2, 0x6c, 0x2f, 0xff, 0x96, 0x2f, 0x89, 0x61, 0x07, 0xd0, 0x52, 0x94, 0xc5, 0x8d, 0x44, - 0x32, 0x43, 0x6a, 0x0d, 0x07, 0x01, 0x06, 0x2d, 0xb2, 0x25, 0x0d, 0xcc, 0xf9, 0xd8, 0x99, 0xe6, - 0xae, 0x04, 0x23, 0x09, 0x90, 0x17, 0xf0, 0x21, 0x6f, 0x90, 0x67, 0xc8, 0x2d, 0x79, 0x84, 0x9c, - 0x92, 0x63, 0xae, 0x01, 0x82, 0x1c, 0xf2, 0x08, 0x01, 0x82, 0xaa, 0x9e, 0x19, 0xce, 0x50, 0x94, - 0x82, 0x1c, 0x72, 0xe3, 0x54, 0xfd, 0xba, 0xba, 0xeb, 0xbb, 0x8a, 0x50, 0x9d, 0xcc, 0x2c, 0xe1, - 0xc8, 0xe7, 0x9e, 0xef, 0x4a, 0x97, 0x15, 0x67, 0xae, 0xeb, 0xf9, 0xde, 0xa4, 0xb5, 0x73, 0xe5, - 0xba, 0x57, 0x33, 0xd1, 0xe6, 0x9e, 0xd5, 0xe6, 0x8e, 0xe3, 0x4a, 0x2e, 0x2d, 0xd7, 0x09, 0x14, - 0x4c, 0xff, 0x21, 0x0f, 0xf5, 0x53, 0xd7, 0xf5, 0x06, 0x73, 0x69, 0x88, 0xd7, 0x73, 0x11, 0x48, - 0xa6, 0x41, 0x8e, 0xdb, 0xb2, 0x99, 0xd9, 0xcd, 0xec, 0xe5, 0x0c, 0xfc, 0xc9, 0x18, 0xe4, 0xa7, - 0x22, 0x90, 0xcd, 0xec, 0x6e, 0x66, 0xaf, 0x6c, 0xd0, 0x6f, 0xd6, 0x86, 0xc7, 0x36, 0xbf, 0x31, - 0x83, 0xb7, 0xdc, 0x33, 0x7d, 0x77, 0x2e, 0x2d, 0xe7, 0xca, 0xbc, 0x14, 0xa2, 0x99, 0xa3, 0x63, - 0xeb, 0x36, 0xbf, 0x19, 0xbd, 0xe5, 0x9e, 0xa1, 0x38, 0xc7, 0x42, 0xb0, 0xcf, 0x61, 0x13, 0x0f, - 0x78, 0xbe, 0xf0, 0xf8, 0x6d, 0xea, 0x48, 0x9e, 0x8e, 0x6c, 0xd8, 0xfc, 0x66, 0x48, 0xcc, 0xc4, - 0xa1, 0x5d, 0xa8, 0xc6, 0xb7, 0x20, 0xb4, 0x40, 0x50, 0x08, 0xa5, 0x23, 0xe2, 0x03, 0xa8, 0x27, - 0xc4, 0xe2, 0xc3, 0xd7, 0x08, 0x53, 0x8d, 0xc5, 0x1d, 0xda, 0x92, 0xe9, 0x50, 0x43, 0x94, 0x6d, - 0x39, 0xc2, 0x27, 0x41, 0x45, 0x02, 0x55, 0x6c, 0x7e, 0x73, 0x86, 0x34, 0x94, 0xf4, 0x09, 0x68, - 0x68, 0x33, 0xd3, 0x9d, 0x4b, 0x73, 0x72, 0xcd, 0x1d, 0x47, 0xcc, 0x9a, 0xa5, 0xdd, 0xcc, 0x5e, - 0xfe, 0x45, 0xb6, 0x99, 0x31, 0xea, 0x33, 0x65, 0xa5, 0x8e, 0xe2, 0xb0, 0x7d, 0x58, 0x77, 0xe7, - 0xf2, 0xca, 0x45, 0x25, 0x10, 0x6d, 0x06, 0x42, 0x36, 0x2b, 0xbb, 0xb9, 0xbd, 0xbc, 0xd1, 0x88, - 0x18, 0x88, 0x1d, 0x09, 0x89, 0xd8, 0xe0, 0xad, 0x10, 0x9e, 0x39, 0x71, 0x9d, 0x4b, 0x53, 0x72, - 0xff, 0x4a, 0xc8, 0x66, 0x79, 0x37, 0xb3, 0x57, 0x30, 0x1a, 0xc4, 0xe8, 0xb8, 0xce, 0xe5, 0x98, - 0xc8, 0xec, 0x53, 0x60, 0xd7, 0x72, 0x36, 0x21, 0xa8, 0xe5, 0xdb, 0xca, 0x59, 0xcd, 0x1a, 0x81, - 0xd7, 0x91, 0xd3, 0x49, 0x32, 0xd8, 0x17, 0xb0, 0x4d, 0xc6, 0xf1, 0xe6, 0x17, 0x33, 0x6b, 0x42, - 0x44, 0x73, 0x2a, 0xf8, 0x74, 0x66, 0x39, 0xa2, 0x09, 0xf8, 0x7a, 0x63, 0x0b, 0x01, 0xc3, 0x05, - 0xff, 0x28, 0x64, 0xb3, 0xc7, 0x50, 0x98, 0xf1, 0x0b, 0x31, 0x6b, 0x56, 0xc9, 0xaf, 0xea, 0x43, - 0xff, 0x7b, 0x06, 0x6a, 0x18, 0x11, 0x3d, 0xe7, 0xfe, 0x80, 0x58, 0x76, 0x4b, 0xf6, 0x8e, 0x5b, - 0xee, 0x18, 0x3c, 0x77, 0xd7, 0xe0, 0xdb, 0x50, 0x9a, 0xf1, 0x40, 0x9a, 0xd7, 0xae, 0x47, 0x31, - 0x50, 0x35, 0x8a, 0xf8, 0x7d, 0xe2, 0x7a, 0xec, 0x7d, 0xa8, 0x89, 0x1b, 0x29, 0x7c, 0x87, 0xcf, - 0x4c, 0x54, 0x9a, 0x1c, 0x5f, 0x32, 0xaa, 0x11, 0xf1, 0x44, 0xce, 0x26, 0x6c, 0x0f, 0xb4, 0xd8, - 0x54, 0x91, 0x55, 0xd7, 0xc8, 0x50, 0xf5, 0xc8, 0x50, 0xa1, 0x51, 0x63, 0x4d, 0x8b, 0x49, 0x4d, - 0xff, 0x91, 0x81, 0x2a, 0x05, 0xa9, 0x08, 0x3c, 0xd7, 0x09, 0x04, 0x63, 0x90, 0xb5, 0xa6, 0xa4, - 0x67, 0x99, 0x7c, 0x9e, 0xb5, 0xa6, 0xf8, 0x48, 0x6b, 0x6a, 0x5e, 0xdc, 0x4a, 0x11, 0x90, 0x0e, - 0x55, 0xa3, 0x68, 0x4d, 0x5f, 0xe0, 0x27, 0x7b, 0x06, 0x55, 0xba, 0x9f, 0x4f, 0xa7, 0xbe, 0x08, - 0x02, 0x95, 0x1e, 0x74, 0xb0, 0x82, 0xf4, 0x43, 0x45, 0x66, 0xcf, 0x61, 0x23, 0x09, 0x33, 0x1d, - 0xef, 0xe0, 0x6d, 0x70, 0x4d, 0x1a, 0x97, 0x95, 0x4b, 0x43, 0x64, 0x9f, 0x18, 0xec, 0x93, 0x30, - 0x02, 0x22, 0xbc, 0x82, 0x17, 0x08, 0xae, 0x25, 0xe0, 0x43, 0x42, 0x3f, 0x83, 0x7a, 0x20, 0xfc, - 0x37, 0xc2, 0x37, 0x6d, 0x11, 0x04, 0xfc, 0x4a, 0x90, 0x09, 0xca, 0x46, 0x4d, 0x51, 0xcf, 0x14, - 0x51, 0xd7, 0xa0, 0x7e, 0xe6, 0x3a, 0x96, 0x74, 0xfd, 0xd0, 0xab, 0xfa, 0xef, 0xf3, 0x00, 0xa8, - 0xfd, 0x48, 0x72, 0x39, 0x0f, 0x56, 0x66, 0x3d, 0x5a, 0x23, 0x7b, 0xaf, 0x35, 0x2a, 0xcb, 0xd6, - 0xc8, 0xcb, 0x5b, 0x4f, 0x39, 0xba, 0x7e, 0xb0, 0xfe, 0x3c, 0xac, 0x3f, 0xcf, 0xf1, 0x8e, 0xf1, - 0xad, 0x27, 0x0c, 0x62, 0xb3, 0x3d, 0x28, 0x04, 0x92, 0x4b, 0x95, 0xf5, 0xf5, 0x03, 0x96, 0xc2, - 0xe1, 0x5b, 0x84, 0xa1, 0x00, 0xec, 0x2b, 0xa8, 0x5f, 0x72, 0x6b, 0x36, 0xf7, 0x85, 0xe9, 0x0b, - 0x1e, 0xb8, 0x4e, 0xb3, 0x4e, 0x47, 0x36, 0xe3, 0x23, 0xc7, 0x8a, 0x6d, 0x10, 0xd7, 0xa8, 0x5d, - 0x26, 0x3f, 0xd9, 0x87, 0xd0, 0xb0, 0x1c, 0x4b, 0x5a, 0x2a, 0x27, 0xa4, 0x65, 0x47, 0xd5, 0xa3, - 0xbe, 0x20, 0x8f, 0x2d, 0x1b, 0x5f, 0xa4, 0x51, 0x18, 0xce, 0xbd, 0x29, 0x97, 0x42, 0x21, 0x55, - 0x0d, 0xa9, 0x23, 0xfd, 0x9c, 0xc8, 0x84, 0x5c, 0x76, 0x78, 0x71, 0xb5, 0xc3, 0x57, 0x3b, 0xb0, - 0x7a, 0x8f, 0x03, 0xef, 0x09, 0x8f, 0xda, 0x7d, 0xe1, 0xf1, 0x1e, 0x54, 0x26, 0x6e, 0x20, 0x4d, - 0xe5, 0x5f, 0xaa, 0x50, 0x39, 0x03, 0x90, 0x34, 0x22, 0x0a, 0x7b, 0x0a, 0x55, 0x02, 0xb8, 0xce, - 0xe4, 0x9a, 0x5b, 0x0e, 0x15, 0x9a, 0x9c, 0x41, 0x87, 0x06, 0x8a, 0x84, 0xe9, 0xa5, 0x20, 0x97, - 0x97, 0x0a, 0x03, 0xaa, 0x66, 0x12, 0x26, 0xa4, 0x2d, 0x92, 0xa6, 0x91, 0x4c, 0x1a, 0x06, 0xda, - 0xa9, 0x15, 0x48, 0xf4, 0x56, 0x10, 0x85, 0xd2, 0x4f, 0x60, 0x3d, 0x41, 0x0b, 0x93, 0xe9, 0x23, - 0x28, 0x60, 0x7d, 0x08, 0x9a, 0x99, 0xdd, 0xdc, 0x5e, 0xe5, 0x60, 0xe3, 0x8e, 0xa3, 0xe7, 0x81, - 0xa1, 0x10, 0xfa, 0x53, 0x68, 0x20, 0xb1, 0xe7, 0x5c, 0xba, 0x51, 0xcd, 0xa9, 0xc7, 0xa9, 0x58, - 0xc5, 0xc0, 0xd3, 0xeb, 0x50, 0x1d, 0x0b, 0xdf, 0x8e, 0xaf, 0xfc, 0x35, 0x34, 0x7a, 0x4e, 0x48, - 0x09, 0x2f, 0xfc, 0x3f, 0x68, 0xd8, 0x96, 0xa3, 0x8a, 0x12, 0xb7, 0xdd, 0xb9, 0x23, 0x43, 0x87, - 0xd7, 0x6c, 0xcb, 0x41, 0xf9, 0x87, 0x44, 0x24, 0x5c, 0x54, 0xbc, 0x42, 0xdc, 0x5a, 0x88, 0x53, - 0xf5, 0x4b, 0xe1, 0x5e, 0xe6, 0x4b, 0x19, 0x2d, 0xfb, 0x32, 0x5f, 0xca, 0x6a, 0xb9, 0x97, 0xf9, - 0x52, 0x4e, 0xcb, 0xbf, 0xcc, 0x97, 0xf2, 0x5a, 0xe1, 0x65, 0xbe, 0x54, 0xd4, 0x4a, 0xfa, 0x9f, - 0x32, 0xa0, 0x0d, 0xe6, 0xf2, 0x7f, 0xfa, 0x04, 0x6a, 0x6e, 0x96, 0x63, 0x4e, 0x66, 0xf2, 0x8d, - 0x39, 0x15, 0x33, 0xc9, 0xc9, 0xdd, 0x05, 0xa3, 0x6a, 0x5b, 0x4e, 0x67, 0x26, 0xdf, 0x1c, 0x21, - 0x2d, 0x6a, 0x81, 0x09, 0x54, 0x39, 0x44, 0xf1, 0x9b, 0x18, 0xf5, 0x1f, 0xd4, 0xf9, 0x5d, 0x06, - 0xaa, 0x3f, 0x9b, 0xbb, 0x52, 0xdc, 0x5f, 0xf4, 0x29, 0xf0, 0x16, 0x95, 0x36, 0x4b, 0x77, 0xc0, - 0x64, 0x51, 0x65, 0xef, 0x14, 0xed, 0xdc, 0x8a, 0xa2, 0xfd, 0x60, 0xc3, 0xca, 0x3f, 0xd8, 0xb0, - 0xf4, 0x1f, 0x32, 0xe8, 0xf5, 0xf0, 0x99, 0xa1, 0xc9, 0x77, 0xa1, 0x1a, 0xb5, 0x21, 0x33, 0xe0, - 0xd1, 0x83, 0x21, 0x50, 0x7d, 0x68, 0xc4, 0x69, 0x52, 0xa1, 0x04, 0xa3, 0x1b, 0x83, 0xeb, 0x18, - 0x19, 0x4e, 0x2a, 0xc8, 0x1b, 0x2a, 0x56, 0x78, 0xe0, 0x5d, 0x80, 0x84, 0x2d, 0x0b, 0xa4, 0x67, - 0x79, 0x92, 0x30, 0xa4, 0x32, 0x61, 0x5e, 0x2b, 0xe8, 0x7f, 0x56, 0x51, 0xf0, 0xdf, 0x3e, 0xe9, - 0x03, 0xa8, 0x2f, 0x06, 0x16, 0xc2, 0xa8, 0x0e, 0x5a, 0xf5, 0xa2, 0x89, 0x05, 0x51, 0x1f, 0x87, - 0x75, 0x44, 0xcd, 0x0e, 0xe9, 0x67, 0x37, 0x90, 0x33, 0x42, 0x46, 0x28, 0x92, 0x66, 0x0c, 0xb4, - 0x2b, 0xbf, 0xb5, 0x85, 0x23, 0x4d, 0x1a, 0xd8, 0x54, 0x57, 0x6d, 0x90, 0x3d, 0x15, 0xfd, 0x08, - 0x7d, 0xfb, 0xb0, 0x82, 0x7a, 0x03, 0x6a, 0x63, 0xf7, 0x3b, 0xe1, 0xc4, 0xc9, 0xf6, 0x25, 0xd4, - 0x23, 0x42, 0xa8, 0xe2, 0x3e, 0xac, 0x49, 0xa2, 0x84, 0xd9, 0xbd, 0x28, 0xe3, 0xa7, 0x01, 0x97, - 0x04, 0x36, 0x42, 0x84, 0xfe, 0x87, 0x2c, 0x94, 0x63, 0x2a, 0x06, 0xc9, 0x05, 0x0f, 0x84, 0x69, - 0xf3, 0x09, 0xf7, 0x5d, 0xd7, 0x09, 0x73, 0xbc, 0x8a, 0xc4, 0xb3, 0x90, 0x86, 0x25, 0x2c, 0xd2, - 0xe3, 0x9a, 0x07, 0xd7, 0x64, 0x9d, 0xaa, 0x51, 0x09, 0x69, 0x27, 0x3c, 0xb8, 0x66, 0x1f, 0x81, - 0x16, 0x41, 0x3c, 0x5f, 0x58, 0x36, 0x76, 0x3e, 0xd5, 0x9f, 0x1b, 0x21, 0x7d, 0x18, 0x92, 0xb1, - 0xc0, 0xab, 0x24, 0x33, 0x3d, 0x6e, 0x4d, 0x4d, 0x1b, 0xad, 0xa8, 0x66, 0xce, 0xba, 0xa2, 0x0f, - 0xb9, 0x35, 0x3d, 0x0b, 0xb8, 0x64, 0x9f, 0xc1, 0x93, 0xc4, 0x60, 0x9a, 0x80, 0xab, 0x2c, 0x66, - 0x7e, 0x3c, 0x99, 0xc6, 0x47, 0x9e, 0x42, 0x15, 0x3b, 0x86, 0x39, 0xf1, 0x05, 0x97, 0x62, 0x1a, - 0xe6, 0x71, 0x05, 0x69, 0x1d, 0x45, 0x62, 0x4d, 0x28, 0x8a, 0x1b, 0xcf, 0xf2, 0xc5, 0x94, 0x3a, - 0x46, 0xc9, 0x88, 0x3e, 0xf1, 0x70, 0x20, 0x5d, 0x9f, 0x5f, 0x09, 0xd3, 0xe1, 0xb6, 0xa0, 0xec, - 0x2e, 0x1b, 0x95, 0x90, 0xd6, 0xe7, 0xb6, 0xd0, 0xdf, 0x81, 0xed, 0xaf, 0x85, 0x3c, 0xb5, 0x5e, - 0xcf, 0xad, 0xa9, 0x25, 0x6f, 0x87, 0xdc, 0xe7, 0x8b, 0x2a, 0xf8, 0xaf, 0x3c, 0x6c, 0xa4, 0x59, - 0x42, 0x0a, 0x1f, 0x3b, 0x50, 0xc1, 0x9f, 0xcf, 0x44, 0xe4, 0x9d, 0x45, 0xc7, 0x8c, 0xc1, 0xc6, - 0x7c, 0x26, 0x0c, 0x05, 0x62, 0x5f, 0xc1, 0xce, 0x22, 0xc4, 0x7c, 0xec, 0x81, 0x01, 0x97, 0xa6, - 0x27, 0x7c, 0xf3, 0x0d, 0x76, 0x7a, 0xb2, 0x3e, 0x65, 0xa5, 0x8a, 0x36, 0x83, 0x4b, 0x8c, 0xb8, - 0xa1, 0xf0, 0x5f, 0x21, 0x9b, 0x7d, 0x08, 0x5a, 0x72, 0x18, 0x34, 0x3d, 0xcf, 0x26, 0x4f, 0xe4, - 0xe3, 0x6a, 0x86, 0xf6, 0xf2, 0x6c, 0xf6, 0x29, 0xe0, 0x8c, 0x6f, 0xa6, 0x2c, 0xec, 0xd9, 0x61, - 0xd2, 0xa3, 0x8c, 0xc5, 0xe0, 0x8f, 0xf0, 0x2f, 0xa0, 0xb5, 0x7a, 0x61, 0xa0, 0x53, 0x05, 0x3a, - 0xb5, 0xb9, 0x62, 0x69, 0xc0, 0xb3, 0xe9, 0xad, 0x00, 0x3d, 0xb8, 0x46, 0xf8, 0xc5, 0x56, 0x80, - 0x39, 0xf3, 0x11, 0xac, 0xa7, 0x86, 0x54, 0x02, 0x16, 0x09, 0x58, 0x4f, 0x0c, 0xaa, 0x71, 0x7a, - 0x2d, 0x8f, 0xf0, 0xa5, 0xd5, 0x23, 0xfc, 0x73, 0xd8, 0x88, 0x06, 0x97, 0x0b, 0x3e, 0xf9, 0xce, - 0xbd, 0xbc, 0x34, 0x03, 0x31, 0xa1, 0xa2, 0x9c, 0x37, 0xd6, 0x43, 0xd6, 0x0b, 0xc5, 0x19, 0x89, - 0x09, 0xce, 0xca, 0x7c, 0x2e, 0x5d, 0x33, 0xda, 0x3e, 0xa8, 0x1b, 0x97, 0x8c, 0x0a, 0x12, 0xc3, - 0xdd, 0x0c, 0x6d, 0x47, 0x18, 0x5c, 0x4e, 0x2e, 0xe6, 0xd3, 0x2b, 0xa1, 0xca, 0x46, 0x45, 0xd9, - 0x0e, 0x59, 0x83, 0xb9, 0x7c, 0x41, 0x0c, 0x7c, 0xee, 0x8f, 0x60, 0xfb, 0x0e, 0x5c, 0x72, 0x5f, - 0xd2, 0x43, 0xaa, 0x74, 0xe8, 0x49, 0xfa, 0x10, 0x72, 0xf1, 0x31, 0x1f, 0x03, 0xa3, 0x93, 0x68, - 0x18, 0xcb, 0x31, 0x2f, 0x67, 0xd6, 0xd5, 0xb5, 0xa4, 0x69, 0x24, 0x6f, 0x34, 0x90, 0x73, 0xc6, - 0x6f, 0x7a, 0xce, 0x31, 0x91, 0xf5, 0x3f, 0xe2, 0xae, 0x90, 0x0c, 0x29, 0x2a, 0x2d, 0x6a, 0x43, - 0x32, 0xc3, 0xfe, 0x9d, 0x37, 0xca, 0x21, 0xa5, 0x37, 0x65, 0xcf, 0xc3, 0x21, 0x31, 0x4b, 0x93, - 0x5c, 0x6b, 0x75, 0x5c, 0x26, 0xa6, 0xc5, 0x4f, 0x81, 0x59, 0xce, 0xc4, 0xb5, 0xd1, 0xf3, 0xf2, - 0xda, 0x17, 0xc1, 0xb5, 0x3b, 0x9b, 0x52, 0x74, 0xd5, 0x8c, 0xf5, 0x88, 0x33, 0x8e, 0x18, 0x08, - 0x8f, 0x97, 0xb2, 0x05, 0x3c, 0xaf, 0xe0, 0x11, 0x27, 0x86, 0xeb, 0xdf, 0xc2, 0xf6, 0xe8, 0xbe, - 0xdc, 0x62, 0x5f, 0x02, 0x78, 0x71, 0x46, 0x91, 0x26, 0x95, 0x83, 0x9d, 0xbb, 0x0f, 0x5e, 0x64, - 0x9d, 0x91, 0xc0, 0xeb, 0x3b, 0xd0, 0x5a, 0x25, 0x5a, 0x95, 0x4f, 0xfd, 0x09, 0x6c, 0x8c, 0xe6, - 0x57, 0x57, 0x62, 0x69, 0x8e, 0x7a, 0x09, 0x8f, 0xd3, 0xe4, 0xb0, 0xda, 0x1e, 0x40, 0x29, 0x8e, - 0x0d, 0x95, 0xd1, 0x5b, 0x8b, 0x87, 0xa4, 0x96, 0x77, 0xa3, 0x18, 0xae, 0xa9, 0xfb, 0xcf, 0xa0, - 0x14, 0x4d, 0xde, 0xac, 0x0a, 0xa5, 0xd3, 0xc1, 0x60, 0x68, 0x0e, 0xce, 0xc7, 0xda, 0x23, 0x56, - 0x81, 0x22, 0x7d, 0xf5, 0xfa, 0x5a, 0x66, 0x3f, 0x80, 0x72, 0x3c, 0x78, 0xb3, 0x1a, 0x94, 0x7b, - 0xfd, 0xde, 0xb8, 0x77, 0x38, 0xee, 0x1e, 0x69, 0x8f, 0xd8, 0x13, 0x58, 0x1f, 0x1a, 0xdd, 0xde, - 0xd9, 0xe1, 0xd7, 0x5d, 0xd3, 0xe8, 0xbe, 0xea, 0x1e, 0x9e, 0x76, 0x8f, 0xb4, 0x0c, 0x63, 0x50, - 0x3f, 0x19, 0x9f, 0x76, 0xcc, 0xe1, 0xf9, 0x8b, 0xd3, 0xde, 0xe8, 0xa4, 0x7b, 0xa4, 0x65, 0x51, - 0xe6, 0xe8, 0xbc, 0xd3, 0xe9, 0x8e, 0x46, 0x5a, 0x8e, 0x01, 0xac, 0x1d, 0x1f, 0xf6, 0x10, 0x9c, - 0x67, 0x1b, 0xd0, 0xe8, 0xf5, 0x5f, 0x0d, 0x7a, 0x9d, 0xae, 0x39, 0xea, 0x8e, 0xc7, 0x48, 0x2c, - 0xec, 0xff, 0x33, 0x03, 0xb5, 0xd4, 0xec, 0xce, 0xb6, 0x60, 0x03, 0x8f, 0x9c, 0x1b, 0x78, 0xd3, - 0xe1, 0x68, 0xd0, 0x37, 0xfb, 0x83, 0x7e, 0x57, 0x7b, 0xc4, 0xde, 0x81, 0xad, 0x25, 0xc6, 0xe0, - 0xf8, 0xb8, 0x73, 0x72, 0x88, 0x8f, 0x67, 0x2d, 0xd8, 0x5c, 0x62, 0x8e, 0x7b, 0x67, 0x5d, 0xd4, - 0x32, 0xcb, 0x76, 0x61, 0x67, 0x89, 0x37, 0xfa, 0xa6, 0xdb, 0x1d, 0xc6, 0x88, 0x1c, 0x7b, 0x06, - 0x4f, 0x97, 0x10, 0xbd, 0xfe, 0xe8, 0xfc, 0xf8, 0xb8, 0xd7, 0xe9, 0x75, 0xfb, 0x63, 0xf3, 0xd5, - 0xe1, 0xe9, 0x79, 0x57, 0xcb, 0xb3, 0x1d, 0x68, 0x2e, 0x5f, 0xd2, 0x3d, 0x1b, 0x0e, 0x8c, 0x43, - 0xe3, 0x5b, 0xad, 0xc0, 0xde, 0x87, 0xf7, 0xee, 0x08, 0xe9, 0x0c, 0x0c, 0xa3, 0xdb, 0x19, 0x9b, - 0x87, 0x67, 0x83, 0xf3, 0xfe, 0x58, 0x5b, 0xdb, 0x6f, 0xe3, 0x7c, 0xbc, 0x14, 0xe0, 0x68, 0xb2, - 0xf3, 0xfe, 0x4f, 0xfb, 0x83, 0x6f, 0xfa, 0xda, 0x23, 0xb4, 0xfc, 0xf8, 0xc4, 0xe8, 0x8e, 0x4e, - 0x06, 0xa7, 0x47, 0x5a, 0xe6, 0xe0, 0xaf, 0x65, 0xb5, 0x9b, 0x75, 0xe8, 0x1f, 0x1d, 0x66, 0x40, - 0x31, 0xaa, 0x03, 0xf7, 0x39, 0xbe, 0xf5, 0x24, 0x35, 0x5f, 0xc7, 0x91, 0xb6, 0xf5, 0x9b, 0xbf, - 0xfc, 0xed, 0xb7, 0xd9, 0x75, 0xbd, 0xda, 0x7e, 0xf3, 0x59, 0x1b, 0x11, 0x6d, 0x77, 0x2e, 0xbf, - 0xc8, 0xec, 0xb3, 0x01, 0xac, 0xa9, 0x2d, 0x9f, 0x6d, 0xa6, 0x44, 0xc6, 0x6b, 0xff, 0x7d, 0x12, - 0x37, 0x49, 0xa2, 0xa6, 0x57, 0x62, 0x89, 0x96, 0x83, 0x02, 0x7f, 0x0c, 0xc5, 0x70, 0xc3, 0x4c, - 0x3c, 0x32, 0xbd, 0x73, 0xb6, 0x56, 0x2d, 0x01, 0xff, 0x9f, 0x61, 0x3f, 0x87, 0x72, 0xbc, 0x3f, - 0xb0, 0xed, 0x44, 0x8e, 0xa5, 0xf3, 0xa3, 0xd5, 0x5a, 0xc5, 0x4a, 0x3f, 0x8b, 0xd5, 0xe3, 0x67, - 0xd1, 0x6e, 0xc1, 0xce, 0x55, 0x1e, 0xe0, 0x6e, 0xc1, 0x9a, 0xa9, 0xeb, 0x13, 0xeb, 0xc6, 0xca, - 0x87, 0xe9, 0x2d, 0x12, 0xf9, 0x98, 0xb1, 0x94, 0xc8, 0xf6, 0xf7, 0xd6, 0xf4, 0x97, 0xec, 0x17, - 0x50, 0x0d, 0x1d, 0x40, 0x1b, 0x00, 0x5b, 0x18, 0x2b, 0xb9, 0xa6, 0xb4, 0x16, 0xca, 0x2c, 0xef, - 0x0a, 0x2b, 0xa4, 0xbb, 0x73, 0xd9, 0x96, 0x24, 0xed, 0x22, 0x96, 0x4e, 0x93, 0x65, 0x42, 0x7a, - 0x72, 0x46, 0x4f, 0x4b, 0x4f, 0xcd, 0xa0, 0xfa, 0x2e, 0x49, 0x6f, 0xb1, 0x66, 0x4a, 0xfa, 0x6b, - 0xc4, 0xb4, 0xbf, 0xe7, 0xb6, 0x44, 0x0d, 0xea, 0x38, 0x58, 0x90, 0xcb, 0x1f, 0xd4, 0x61, 0x61, - 0xb5, 0xa5, 0x8d, 0x4b, 0xdf, 0xa6, 0x4b, 0x36, 0xd8, 0x7a, 0x22, 0x14, 0x62, 0x0d, 0x16, 0xd2, - 0x1f, 0xd4, 0x21, 0x29, 0x3d, 0xad, 0xc2, 0x7b, 0x24, 0x7d, 0x9b, 0x6d, 0x25, 0xa5, 0x27, 0x35, - 0xf8, 0x16, 0x6a, 0x78, 0x47, 0x34, 0x5a, 0x06, 0x89, 0x48, 0x4e, 0xcd, 0xaf, 0xad, 0xad, 0x3b, - 0xf4, 0x74, 0x76, 0xb0, 0x06, 0x5d, 0x11, 0x70, 0xd9, 0x56, 0x33, 0x2b, 0x93, 0xc0, 0xee, 0x4e, - 0x5d, 0x4c, 0x8f, 0xe5, 0xdc, 0x3b, 0x92, 0xb5, 0x1e, 0x6c, 0x11, 0xfa, 0x0e, 0x5d, 0xb8, 0xc9, - 0x1e, 0xd3, 0x85, 0x11, 0xa0, 0xed, 0x29, 0xf9, 0xbf, 0x02, 0x36, 0x7a, 0xe8, 0xd6, 0x7b, 0x9b, - 0x55, 0xeb, 0xfd, 0x07, 0x31, 0x69, 0x83, 0xea, 0x2b, 0x2f, 0xc7, 0x14, 0x16, 0x50, 0x4d, 0xf6, - 0x1f, 0xb6, 0xd0, 0x65, 0x45, 0xb7, 0x6a, 0xbd, 0x7b, 0x0f, 0x37, 0xbc, 0xad, 0x49, 0xb7, 0x31, - 0xa6, 0xe1, 0x6d, 0x38, 0x38, 0xb4, 0x03, 0x05, 0xbb, 0x58, 0xa3, 0xbf, 0x9e, 0x3f, 0xff, 0x77, - 0x00, 0x00, 0x00, 0xff, 0xff, 0xd9, 0x97, 0x5c, 0x27, 0xb1, 0x16, 0x00, 0x00, + // 2415 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x58, 0xcf, 0x6f, 0xe3, 0xc6, + 0xf5, 0x5f, 0x49, 0x94, 0x25, 0x3d, 0x51, 0x12, 0x3d, 0xde, 0xb5, 0x65, 0xc5, 0xc1, 0x7a, 0x99, + 0xec, 0x37, 0x8e, 0x93, 0xac, 0xbe, 0x71, 0x2e, 0x6d, 0x90, 0x14, 0xd0, 0xca, 0x72, 0xac, 0xad, + 0x2d, 0xa9, 0x94, 0xbc, 0x41, 0x8a, 0x02, 0xc4, 0x58, 0x1a, 0x4b, 0x44, 0xc4, 0x1f, 0x21, 0x47, + 0xbb, 0x36, 0x82, 0xb6, 0x40, 0xff, 0x81, 0x1e, 0xfa, 0xaf, 0xf4, 0xd6, 0xde, 0x7a, 0xed, 0xa5, + 0xed, 0xb1, 0xd7, 0x02, 0x45, 0x0f, 0xfd, 0x13, 0x0a, 0x14, 0x6f, 0x86, 0xa4, 0x48, 0x59, 0x72, + 0xd1, 0x43, 0x4f, 0x36, 0xdf, 0xfb, 0xcc, 0x9b, 0x79, 0xbf, 0xdf, 0x13, 0xa8, 0xe3, 0xb9, 0xc5, + 0x1c, 0xfe, 0xc2, 0xf3, 0x5d, 0xee, 0x92, 0xc2, 0xdc, 0x75, 0x3d, 0xdf, 0x1b, 0x37, 0x0e, 0xa6, + 0xae, 0x3b, 0x9d, 0xb3, 0x26, 0xf5, 0xac, 0x26, 0x75, 0x1c, 0x97, 0x53, 0x6e, 0xb9, 0x4e, 0x20, + 0x61, 0xfa, 0x9f, 0x14, 0xa8, 0x5e, 0xb8, 0xae, 0xd7, 0x5f, 0x70, 0x83, 0x7d, 0xb7, 0x60, 0x01, + 0x27, 0x1a, 0xe4, 0xa8, 0xcd, 0xeb, 0x99, 0xc3, 0xcc, 0x51, 0xce, 0xc0, 0x7f, 0x09, 0x01, 0x65, + 0xc2, 0x02, 0x5e, 0xcf, 0x1e, 0x66, 0x8e, 0x4a, 0x86, 0xf8, 0x9f, 0x3c, 0x85, 0x32, 0xfe, 0x35, + 0xa9, 0xed, 0x2e, 0x1c, 0x5e, 0xaf, 0x0a, 0x34, 0x20, 0xa9, 0x25, 0x28, 0x08, 0x18, 0xcf, 0xa8, + 0x33, 0x65, 0x26, 0x9d, 0x4c, 0xfc, 0x7a, 0x4d, 0x9c, 0x05, 0x49, 0x6a, 0x4d, 0x26, 0x3e, 0x69, + 0xc2, 0x63, 0x9b, 0xde, 0x9a, 0xc1, 0x5b, 0xea, 0x99, 0xbe, 0xbb, 0xe0, 0x96, 0x33, 0x35, 0x6f, + 0x18, 0xab, 0xe7, 0x84, 0xa8, 0x6d, 0x9b, 0xde, 0x0e, 0xdf, 0x52, 0xcf, 0x90, 0x9c, 0x33, 0xc6, + 0xc8, 0x67, 0xb0, 0x8b, 0x07, 0x3c, 0x9f, 0x79, 0xf4, 0x2e, 0x75, 0x44, 0x11, 0x47, 0x76, 0x6c, + 0x7a, 0x3b, 0x10, 0xcc, 0xc4, 0xa1, 0x43, 0x50, 0xe3, 0x5b, 0x10, 0x9a, 0x97, 0x0f, 0x0d, 0xa5, + 0x23, 0xe2, 0x7d, 0xa8, 0x26, 0xc4, 0xa2, 0xea, 0x5b, 0x02, 0xa3, 0xc6, 0xe2, 0x5a, 0x36, 0x27, + 0x3a, 0x54, 0x10, 0x65, 0x5b, 0x0e, 0xf3, 0x85, 0xa0, 0x82, 0x00, 0x95, 0x6d, 0x7a, 0x7b, 0x89, + 0x34, 0x94, 0xf4, 0x31, 0x68, 0x68, 0x75, 0xd3, 0x5d, 0x70, 0x13, 0x15, 0x75, 0xd8, 0xbc, 0x5e, + 0x3c, 0xcc, 0x1c, 0x29, 0x2f, 0xb3, 0xf5, 0x8c, 0x51, 0x9d, 0x4b, 0x3b, 0xb7, 0x25, 0x87, 0x1c, + 0xc3, 0xb6, 0xbb, 0xe0, 0x53, 0x17, 0x95, 0x40, 0xb4, 0x19, 0x30, 0x5e, 0x2f, 0x1f, 0xe6, 0x8e, + 0x14, 0xa3, 0x16, 0x31, 0x10, 0x3b, 0x64, 0x1c, 0xb1, 0xc1, 0x5b, 0xc6, 0x3c, 0x73, 0xec, 0x3a, + 0x37, 0x26, 0xa7, 0xfe, 0x94, 0xf1, 0x7a, 0xe9, 0x30, 0x73, 0x94, 0x37, 0x6a, 0x82, 0xd1, 0x76, + 0x9d, 0x9b, 0x91, 0x20, 0x93, 0x4f, 0x80, 0xcc, 0xf8, 0x7c, 0x2c, 0xa0, 0x96, 0x6f, 0x4b, 0x77, + 0xd7, 0x2b, 0x02, 0xbc, 0x8d, 0x9c, 0x76, 0x92, 0x41, 0x3e, 0x87, 0x7d, 0x61, 0x1c, 0x6f, 0x71, + 0x3d, 0xb7, 0xc6, 0x82, 0x68, 0x4e, 0x18, 0x9d, 0xcc, 0x2d, 0x87, 0xd5, 0x01, 0x5f, 0x6f, 0xec, + 0x21, 0x60, 0xb0, 0xe4, 0x9f, 0x86, 0x6c, 0xf2, 0x18, 0xf2, 0x73, 0x7a, 0xcd, 0xe6, 0x75, 0x55, + 0x78, 0x57, 0x7e, 0xe8, 0x7f, 0xcf, 0x40, 0x05, 0x63, 0xaa, 0xeb, 0x6c, 0x0e, 0xa9, 0x55, 0xb7, + 0x64, 0xef, 0xb9, 0xe5, 0x9e, 0xc1, 0x73, 0xf7, 0x0d, 0xbe, 0x0f, 0xc5, 0x39, 0x0d, 0xb8, 0x39, + 0x73, 0x3d, 0x11, 0x03, 0xaa, 0x51, 0xc0, 0xef, 0x73, 0xd7, 0x23, 0xef, 0x41, 0x85, 0xdd, 0x72, + 0xe6, 0x3b, 0x74, 0x6e, 0xa2, 0xd2, 0xc2, 0xf1, 0x45, 0x43, 0x8d, 0x88, 0xe7, 0x7c, 0x3e, 0x26, + 0x47, 0xa0, 0xc5, 0xa6, 0x8a, 0xac, 0xba, 0x25, 0x0c, 0x55, 0x8d, 0x0c, 0x15, 0x1a, 0x35, 0xd6, + 0xb4, 0x90, 0xd4, 0xf4, 0x1f, 0x19, 0x50, 0x45, 0x90, 0xb2, 0xc0, 0x73, 0x9d, 0x80, 0x11, 0x02, + 0x59, 0x6b, 0x22, 0xf4, 0x2c, 0x09, 0x9f, 0x67, 0xad, 0x09, 0x3e, 0xd2, 0x9a, 0x98, 0xd7, 0x77, + 0x9c, 0x05, 0x42, 0x07, 0xd5, 0x28, 0x58, 0x93, 0x97, 0xf8, 0x49, 0x9e, 0x83, 0x2a, 0xee, 0xc7, + 0x0c, 0x61, 0x41, 0x20, 0x13, 0x4c, 0x1c, 0x2c, 0x23, 0xbd, 0x25, 0xc9, 0xe4, 0x05, 0xec, 0x24, + 0x61, 0xa6, 0xe3, 0x9d, 0xbc, 0x0d, 0x66, 0x42, 0xe3, 0x92, 0x74, 0x69, 0x88, 0xec, 0x09, 0x06, + 0xf9, 0x38, 0x8c, 0x80, 0x08, 0x2f, 0xe1, 0x79, 0x01, 0xd7, 0x12, 0xf0, 0x81, 0x40, 0x3f, 0x87, + 0x6a, 0xc0, 0xfc, 0x37, 0xcc, 0x37, 0x6d, 0x16, 0x04, 0x74, 0xca, 0x84, 0x09, 0x4a, 0x46, 0x45, + 0x52, 0x2f, 0x25, 0x51, 0xd7, 0xa0, 0x7a, 0xe9, 0x3a, 0x16, 0x77, 0xfd, 0xd0, 0xab, 0xfa, 0x6f, + 0x15, 0x00, 0xd4, 0x7e, 0xc8, 0x29, 0x5f, 0x04, 0x6b, 0xeb, 0x06, 0x5a, 0x23, 0xbb, 0xd1, 0x1a, + 0xe5, 0x55, 0x6b, 0x28, 0xfc, 0xce, 0x93, 0x8e, 0xae, 0x9e, 0x6c, 0xbf, 0x08, 0x2b, 0xd8, 0x0b, + 0xbc, 0x63, 0x74, 0xe7, 0x31, 0x43, 0xb0, 0xc9, 0x11, 0xe4, 0x03, 0x4e, 0xb9, 0xcc, 0xfa, 0xea, + 0x09, 0x49, 0xe1, 0xf0, 0x2d, 0xcc, 0x90, 0x00, 0xf2, 0x25, 0x54, 0x6f, 0xa8, 0x35, 0x5f, 0xf8, + 0xcc, 0xf4, 0x19, 0x0d, 0x5c, 0x47, 0x94, 0xa9, 0xea, 0xc9, 0x6e, 0x7c, 0xe4, 0x4c, 0xb2, 0x0d, + 0xc1, 0x35, 0x2a, 0x37, 0xc9, 0x4f, 0xf2, 0x01, 0xd4, 0x2c, 0xc7, 0xe2, 0x96, 0xcc, 0x09, 0x6e, + 0xd9, 0x51, 0xf5, 0xa8, 0x2e, 0xc9, 0x23, 0xcb, 0xc6, 0x17, 0x69, 0x22, 0x0c, 0x17, 0xde, 0x84, + 0x72, 0x26, 0x91, 0xb2, 0x86, 0x54, 0x91, 0x7e, 0x25, 0xc8, 0x02, 0xb9, 0xea, 0xf0, 0xc2, 0x7a, + 0x87, 0xaf, 0x77, 0xa0, 0xba, 0xc1, 0x81, 0x1b, 0xc2, 0xa3, 0xb2, 0x29, 0x3c, 0xb0, 0x32, 0xbb, + 0x01, 0x37, 0xa5, 0x7f, 0x45, 0x85, 0xca, 0x19, 0x80, 0xa4, 0xa1, 0xa0, 0x90, 0x67, 0xa0, 0x0a, + 0x80, 0xeb, 0x8c, 0x67, 0xd4, 0x72, 0x44, 0xa1, 0xc9, 0x19, 0xe2, 0x50, 0x5f, 0x92, 0x30, 0xbd, + 0x24, 0xe4, 0xe6, 0x46, 0x62, 0x40, 0xd6, 0x4c, 0x81, 0x09, 0x69, 0xcb, 0xa4, 0xa9, 0x25, 0x93, + 0x86, 0x80, 0x76, 0x61, 0x05, 0x1c, 0xbd, 0x15, 0x44, 0xa1, 0xf4, 0x23, 0xd8, 0x4e, 0xd0, 0xc2, + 0x64, 0xfa, 0x10, 0xf2, 0x58, 0x1f, 0x82, 0x7a, 0xe6, 0x30, 0x77, 0x54, 0x3e, 0xd9, 0xb9, 0xe7, + 0xe8, 0x45, 0x60, 0x48, 0x84, 0xfe, 0x0c, 0x6a, 0x48, 0xec, 0x3a, 0x37, 0x6e, 0x54, 0x73, 0xaa, + 0x71, 0x2a, 0xaa, 0x18, 0x78, 0x7a, 0x15, 0xd4, 0x11, 0xf3, 0xed, 0xf8, 0xca, 0x5f, 0x42, 0xad, + 0xeb, 0x84, 0x94, 0xf0, 0xc2, 0xff, 0x83, 0x9a, 0x6d, 0x39, 0xb2, 0x28, 0x85, 0x7d, 0x4d, 0x3a, + 0xbc, 0x62, 0x5b, 0x0e, 0xca, 0x0f, 0x5b, 0x1b, 0xe2, 0xa2, 0xe2, 0x15, 0xe2, 0xb6, 0x42, 0x9c, + 0xac, 0x5f, 0x12, 0xf7, 0x4a, 0x29, 0x66, 0xb4, 0xec, 0x2b, 0xa5, 0x98, 0xd5, 0x72, 0xaf, 0x94, + 0x62, 0x4e, 0x53, 0x5e, 0x29, 0x45, 0x45, 0xcb, 0xbf, 0x52, 0x8a, 0x05, 0xad, 0xa8, 0xff, 0x31, + 0x03, 0x5a, 0x7f, 0xc1, 0xff, 0xa7, 0x4f, 0x10, 0xcd, 0xcd, 0x72, 0xcc, 0xf1, 0x9c, 0xbf, 0x31, + 0x27, 0x6c, 0xce, 0xa9, 0x70, 0x77, 0xde, 0x50, 0x6d, 0xcb, 0x69, 0xcf, 0xf9, 0x9b, 0x53, 0xa4, + 0x45, 0x2d, 0x30, 0x81, 0x2a, 0x85, 0x28, 0x7a, 0x1b, 0xa3, 0xfe, 0x83, 0x3a, 0x7f, 0xc8, 0x80, + 0xfa, 0x93, 0x85, 0xcb, 0xd9, 0xe6, 0xa2, 0xff, 0x14, 0xca, 0x6f, 0x2d, 0x3e, 0x33, 0xe5, 0x10, + 0x10, 0x56, 0x64, 0x40, 0x52, 0x5b, 0x50, 0x64, 0x64, 0x2e, 0x4b, 0x71, 0x56, 0x3c, 0x02, 0xc6, + 0xcb, 0x32, 0x7c, 0xaf, 0xaa, 0xe7, 0xd6, 0x54, 0xf5, 0x07, 0x3b, 0x9a, 0xf2, 0x60, 0x47, 0xd3, + 0x7f, 0x9d, 0xc1, 0xb0, 0x08, 0xf5, 0x08, 0x7d, 0x72, 0x08, 0x6a, 0xd4, 0xa7, 0xcc, 0x80, 0x46, + 0x1a, 0x41, 0x20, 0x1b, 0xd5, 0x90, 0x72, 0x1c, 0x65, 0x44, 0x06, 0x8a, 0x1b, 0x83, 0x59, 0x8c, + 0x0c, 0x47, 0x19, 0xe4, 0x0d, 0x24, 0x2b, 0x3c, 0xf0, 0x2e, 0x40, 0xc2, 0xd8, 0x79, 0xa1, 0x67, + 0x69, 0x9c, 0xb0, 0xb4, 0xb4, 0xb1, 0xa2, 0xe5, 0xf5, 0x3f, 0xcb, 0x30, 0xf9, 0x6f, 0x9f, 0xf4, + 0x3e, 0x54, 0x97, 0x13, 0x8d, 0xc0, 0xc8, 0x16, 0xab, 0x7a, 0xd1, 0x48, 0x83, 0xa8, 0x8f, 0xc2, + 0x42, 0x23, 0x87, 0x8b, 0xf4, 0xb3, 0x6b, 0xc8, 0x19, 0x22, 0x23, 0x14, 0x29, 0x86, 0x10, 0xb4, + 0x2b, 0xbd, 0xb3, 0x99, 0xc3, 0x4d, 0x31, 0x13, 0xca, 0xb6, 0x5b, 0x13, 0xf6, 0x94, 0xf4, 0x53, + 0x74, 0xfe, 0xc3, 0x0a, 0xea, 0x35, 0xa8, 0x8c, 0xdc, 0x6f, 0x99, 0x13, 0x67, 0xe3, 0x17, 0x50, + 0x8d, 0x08, 0xa1, 0x8a, 0xc7, 0xb0, 0xc5, 0x05, 0x25, 0x4c, 0xff, 0x65, 0x9d, 0xbf, 0x08, 0x28, + 0x17, 0x60, 0x23, 0x44, 0xe8, 0xbf, 0xcb, 0x42, 0x29, 0xa6, 0x62, 0x90, 0x5c, 0xd3, 0x80, 0x99, + 0x36, 0x1d, 0x53, 0xdf, 0x75, 0x9d, 0xb0, 0x08, 0xa8, 0x48, 0xbc, 0x0c, 0x69, 0x58, 0xe3, 0x22, + 0x3d, 0x66, 0x34, 0x98, 0x09, 0xeb, 0xa8, 0x46, 0x39, 0xa4, 0x9d, 0xd3, 0x60, 0x46, 0x3e, 0x04, + 0x2d, 0x82, 0x78, 0x3e, 0xb3, 0x6c, 0x6c, 0x8d, 0xb2, 0x81, 0xd7, 0x42, 0xfa, 0x20, 0x24, 0x63, + 0x07, 0x90, 0x59, 0x68, 0x7a, 0xd4, 0x9a, 0x98, 0x36, 0x5a, 0x51, 0x0e, 0xa5, 0x55, 0x49, 0x1f, + 0x50, 0x6b, 0x72, 0x19, 0x50, 0x4e, 0x3e, 0x85, 0x27, 0x89, 0xc9, 0x35, 0x01, 0x97, 0x69, 0x4e, + 0xfc, 0x78, 0x74, 0x8d, 0x8f, 0x3c, 0x03, 0x15, 0x5b, 0x8a, 0x39, 0xf6, 0x19, 0xe5, 0x6c, 0x12, + 0x26, 0x7a, 0x19, 0x69, 0x6d, 0x49, 0x22, 0x75, 0x28, 0xb0, 0x5b, 0xcf, 0xf2, 0xd9, 0x44, 0xb4, + 0x94, 0xa2, 0x11, 0x7d, 0xe2, 0xe1, 0x80, 0xbb, 0x3e, 0x9d, 0x32, 0xd3, 0xa1, 0x36, 0x13, 0xe9, + 0x5f, 0x32, 0xca, 0x21, 0xad, 0x47, 0x6d, 0xa6, 0xbf, 0x03, 0xfb, 0x5f, 0x31, 0x7e, 0x61, 0x7d, + 0xb7, 0xb0, 0x26, 0x16, 0xbf, 0x1b, 0x50, 0x9f, 0x2e, 0xcb, 0xe4, 0xbf, 0x14, 0xd8, 0x49, 0xb3, + 0x18, 0x67, 0x3e, 0xb6, 0xa8, 0xbc, 0xbf, 0x98, 0xb3, 0xc8, 0x3b, 0xcb, 0x96, 0x1a, 0x83, 0x8d, + 0xc5, 0x9c, 0x19, 0x12, 0x44, 0xbe, 0x84, 0x83, 0x65, 0x88, 0xf9, 0xd8, 0x24, 0x03, 0xca, 0x4d, + 0x8f, 0xf9, 0xe6, 0x1b, 0x1c, 0x05, 0x84, 0xf5, 0x45, 0x56, 0xca, 0x68, 0x33, 0x28, 0xc7, 0x88, + 0x1b, 0x30, 0xff, 0x35, 0xb2, 0xc9, 0x07, 0xa0, 0x25, 0xa7, 0x45, 0xd3, 0xf3, 0x6c, 0xe1, 0x09, + 0x25, 0x2e, 0x77, 0x68, 0x2f, 0xcf, 0x26, 0x9f, 0x00, 0x2e, 0x01, 0x66, 0xca, 0xc2, 0x9e, 0x1d, + 0x26, 0x3d, 0xca, 0x58, 0x6e, 0x06, 0x08, 0xff, 0x1c, 0x1a, 0xeb, 0x37, 0x0a, 0x71, 0x2a, 0x2f, + 0x4e, 0xed, 0xae, 0xd9, 0x2a, 0xf0, 0x6c, 0x7a, 0x6d, 0x40, 0x0f, 0x6e, 0x09, 0xfc, 0x72, 0x6d, + 0xc0, 0x9c, 0xf9, 0x10, 0xb6, 0x53, 0x53, 0xac, 0x00, 0x16, 0x04, 0xb0, 0x9a, 0x98, 0x64, 0xe3, + 0xf4, 0x5a, 0x9d, 0xf1, 0x8b, 0xeb, 0x67, 0xfc, 0x17, 0xb0, 0x13, 0x4d, 0x36, 0xd7, 0x74, 0xfc, + 0xad, 0x7b, 0x73, 0x63, 0x06, 0x6c, 0x2c, 0xaa, 0xb6, 0x62, 0x6c, 0x87, 0xac, 0x97, 0x92, 0x33, + 0x64, 0x63, 0x1c, 0xa6, 0xe9, 0x82, 0xbb, 0x66, 0xb4, 0x9e, 0x88, 0x76, 0x5d, 0x34, 0xca, 0x48, + 0x0c, 0xd7, 0x3f, 0xb4, 0x9d, 0xc0, 0xe0, 0xf6, 0x72, 0xbd, 0x98, 0x4c, 0x99, 0x2c, 0x1b, 0x65, + 0x69, 0x3b, 0x64, 0xf5, 0x17, 0xfc, 0xa5, 0x60, 0xe0, 0x73, 0x7f, 0x00, 0xfb, 0xf7, 0xe0, 0x9c, + 0xfa, 0x5c, 0x3c, 0x44, 0x15, 0x87, 0x9e, 0xa4, 0x0f, 0x21, 0x17, 0x1f, 0xf3, 0x11, 0x10, 0x71, + 0x12, 0x0d, 0x63, 0x39, 0xe6, 0xcd, 0xdc, 0x9a, 0xce, 0xb8, 0x18, 0x57, 0x14, 0xa3, 0x86, 0x9c, + 0x4b, 0x7a, 0xdb, 0x75, 0xce, 0x04, 0x59, 0xff, 0x3d, 0x2e, 0x13, 0xc9, 0x90, 0x12, 0xa5, 0x45, + 0xae, 0x50, 0x66, 0xd8, 0xe0, 0x15, 0xa3, 0x14, 0x52, 0xba, 0x13, 0xf2, 0x22, 0x9c, 0x22, 0xb3, + 0x62, 0xd4, 0x6b, 0xac, 0x8f, 0xcb, 0xc4, 0x38, 0xf9, 0x09, 0x10, 0xcb, 0x19, 0xbb, 0x36, 0x7a, + 0x9e, 0xcf, 0x7c, 0x16, 0xcc, 0xdc, 0xf9, 0x44, 0x44, 0x57, 0xc5, 0xd8, 0x8e, 0x38, 0xa3, 0x88, + 0x81, 0xf0, 0x78, 0x6b, 0x5b, 0xc2, 0x15, 0x09, 0x8f, 0x38, 0x31, 0x5c, 0xff, 0x06, 0xf6, 0x87, + 0x9b, 0x72, 0x8b, 0x7c, 0x01, 0xe0, 0xc5, 0x19, 0x25, 0x34, 0x29, 0x9f, 0x1c, 0xdc, 0x7f, 0xf0, + 0x32, 0xeb, 0x8c, 0x04, 0x5e, 0x3f, 0x80, 0xc6, 0x3a, 0xd1, 0xb2, 0x7c, 0xea, 0x4f, 0x60, 0x67, + 0xb8, 0x98, 0x4e, 0xd9, 0xca, 0xa0, 0xf5, 0x0a, 0x1e, 0xa7, 0xc9, 0x61, 0xb5, 0x3d, 0x81, 0x62, + 0x1c, 0x1b, 0x32, 0xa3, 0xf7, 0x96, 0x0f, 0x49, 0xfd, 0x3e, 0x60, 0x14, 0xc2, 0x3d, 0xf6, 0xf8, + 0x39, 0x14, 0xa3, 0xd1, 0x9c, 0xa8, 0x50, 0xbc, 0xe8, 0xf7, 0x07, 0x66, 0xff, 0x6a, 0xa4, 0x3d, + 0x22, 0x65, 0x28, 0x88, 0xaf, 0x6e, 0x4f, 0xcb, 0x1c, 0x07, 0x50, 0x8a, 0x27, 0x73, 0x52, 0x81, + 0x52, 0xb7, 0xd7, 0x1d, 0x75, 0x5b, 0xa3, 0xce, 0xa9, 0xf6, 0x88, 0x3c, 0x81, 0xed, 0x81, 0xd1, + 0xe9, 0x5e, 0xb6, 0xbe, 0xea, 0x98, 0x46, 0xe7, 0x75, 0xa7, 0x75, 0xd1, 0x39, 0xd5, 0x32, 0x84, + 0x40, 0xf5, 0x7c, 0x74, 0xd1, 0x36, 0x07, 0x57, 0x2f, 0x2f, 0xba, 0xc3, 0xf3, 0xce, 0xa9, 0x96, + 0x45, 0x99, 0xc3, 0xab, 0x76, 0xbb, 0x33, 0x1c, 0x6a, 0x39, 0x02, 0xb0, 0x75, 0xd6, 0xea, 0x22, + 0x58, 0x21, 0x3b, 0x50, 0xeb, 0xf6, 0x5e, 0xf7, 0xbb, 0xed, 0x8e, 0x39, 0xec, 0x8c, 0x46, 0x48, + 0xcc, 0x1f, 0xff, 0x33, 0x03, 0x95, 0xd4, 0x70, 0x4f, 0xf6, 0x60, 0x07, 0x8f, 0x5c, 0x19, 0x78, + 0x53, 0x6b, 0xd8, 0xef, 0x99, 0xbd, 0x7e, 0xaf, 0xa3, 0x3d, 0x22, 0xef, 0xc0, 0xde, 0x0a, 0xa3, + 0x7f, 0x76, 0xd6, 0x3e, 0x6f, 0xe1, 0xe3, 0x49, 0x03, 0x76, 0x57, 0x98, 0xa3, 0xee, 0x65, 0x07, + 0xb5, 0xcc, 0x92, 0x43, 0x38, 0x58, 0xe1, 0x0d, 0xbf, 0xee, 0x74, 0x06, 0x31, 0x22, 0x47, 0x9e, + 0xc3, 0xb3, 0x15, 0x44, 0xb7, 0x37, 0xbc, 0x3a, 0x3b, 0xeb, 0xb6, 0xbb, 0x9d, 0xde, 0xc8, 0x7c, + 0xdd, 0xba, 0xb8, 0xea, 0x68, 0x0a, 0x39, 0x80, 0xfa, 0xea, 0x25, 0x9d, 0xcb, 0x41, 0xdf, 0x68, + 0x19, 0xdf, 0x68, 0x79, 0xf2, 0x1e, 0x3c, 0xbd, 0x27, 0xa4, 0xdd, 0x37, 0x8c, 0x4e, 0x7b, 0x64, + 0xb6, 0x2e, 0xfb, 0x57, 0xbd, 0x91, 0xb6, 0x75, 0xdc, 0xc4, 0x01, 0x7a, 0x25, 0xc0, 0xd1, 0x64, + 0x57, 0xbd, 0x1f, 0xf7, 0xfa, 0x5f, 0xf7, 0xb4, 0x47, 0x68, 0xf9, 0xd1, 0xb9, 0xd1, 0x19, 0x9e, + 0xf7, 0x2f, 0x4e, 0xb5, 0xcc, 0xc9, 0x5f, 0x4b, 0x72, 0x79, 0x6b, 0x8b, 0x1f, 0x8d, 0x88, 0x01, + 0x85, 0xa8, 0x0e, 0x6c, 0x72, 0x7c, 0xe3, 0x49, 0x6a, 0x00, 0x8f, 0x23, 0x6d, 0xef, 0x57, 0x7f, + 0xf9, 0xdb, 0x6f, 0xb2, 0xdb, 0xba, 0xda, 0x7c, 0xf3, 0x69, 0x13, 0x11, 0x4d, 0x77, 0xc1, 0x3f, + 0xcf, 0x1c, 0x93, 0x3e, 0x6c, 0xc9, 0x9f, 0x01, 0xc8, 0x6e, 0x4a, 0x64, 0xfc, 0xbb, 0xc0, 0x26, + 0x89, 0xbb, 0x42, 0xa2, 0xa6, 0x97, 0x63, 0x89, 0x96, 0x83, 0x02, 0x7f, 0x08, 0x85, 0x70, 0x05, + 0x4d, 0x3c, 0x32, 0xbd, 0x94, 0x36, 0xd6, 0x6d, 0x09, 0xff, 0x9f, 0x21, 0x3f, 0x85, 0x52, 0xbc, + 0x60, 0x90, 0xfd, 0x44, 0x8e, 0xa5, 0xf3, 0xa3, 0xd1, 0x58, 0xc7, 0x4a, 0x3f, 0x8b, 0x54, 0xe3, + 0x67, 0x89, 0xe5, 0x83, 0x5c, 0xc9, 0x3c, 0xc0, 0xe5, 0x83, 0xd4, 0x53, 0xd7, 0x27, 0xf6, 0x91, + 0xb5, 0x0f, 0xd3, 0x1b, 0x42, 0xe4, 0x63, 0x42, 0x52, 0x22, 0x9b, 0xdf, 0x5b, 0x93, 0x9f, 0x93, + 0x9f, 0x81, 0x1a, 0x3a, 0x40, 0xac, 0x08, 0x64, 0x69, 0xac, 0xe4, 0x1e, 0xd3, 0x58, 0x2a, 0xb3, + 0xba, 0x4c, 0xac, 0x91, 0xee, 0x2e, 0x78, 0x93, 0x0b, 0x69, 0xd7, 0xb1, 0x74, 0x31, 0x59, 0x26, + 0xa4, 0x27, 0x87, 0xf8, 0xb4, 0xf4, 0xd4, 0x0c, 0xaa, 0x1f, 0x0a, 0xe9, 0x0d, 0x52, 0x4f, 0x49, + 0xff, 0x0e, 0x31, 0xcd, 0xef, 0xa9, 0xcd, 0x51, 0x83, 0x2a, 0x0e, 0x16, 0xc2, 0xe5, 0x0f, 0xea, + 0xb0, 0xb4, 0xda, 0xca, 0x4a, 0xa6, 0xef, 0x8b, 0x4b, 0x76, 0xc8, 0x76, 0x22, 0x14, 0x62, 0x0d, + 0x96, 0xd2, 0x1f, 0xd4, 0x21, 0x29, 0x3d, 0xad, 0xc2, 0x53, 0x21, 0x7d, 0x9f, 0xec, 0x25, 0xa5, + 0x27, 0x35, 0xf8, 0x06, 0x2a, 0x78, 0x47, 0x34, 0x5a, 0x06, 0x89, 0x48, 0x4e, 0xcd, 0xaf, 0x8d, + 0xbd, 0x7b, 0xf4, 0x74, 0x76, 0x90, 0x9a, 0xb8, 0x22, 0xa0, 0xbc, 0x29, 0x67, 0x56, 0xc2, 0x81, + 0xdc, 0x9f, 0xba, 0x88, 0x1e, 0xcb, 0xd9, 0x38, 0x92, 0x35, 0x1e, 0x6c, 0x11, 0xfa, 0x81, 0xb8, + 0x70, 0x97, 0x3c, 0x16, 0x17, 0x46, 0x80, 0xa6, 0x27, 0xe5, 0xff, 0x02, 0xc8, 0xf0, 0xa1, 0x5b, + 0x37, 0x36, 0xab, 0xc6, 0x7b, 0x0f, 0x62, 0xd2, 0x06, 0xd5, 0xd7, 0x5e, 0x8e, 0x29, 0xcc, 0x40, + 0x4d, 0xf6, 0x1f, 0xb2, 0xd4, 0x65, 0x4d, 0xb7, 0x6a, 0xbc, 0xbb, 0x81, 0x1b, 0xde, 0x56, 0x17, + 0xb7, 0x11, 0xa2, 0xe1, 0x6d, 0x38, 0x38, 0x34, 0x03, 0x09, 0xbb, 0xde, 0x12, 0xbf, 0x6e, 0x7f, + 0xf6, 0xef, 0x00, 0x00, 0x00, 0xff, 0xff, 0x74, 0x8c, 0x0d, 0xec, 0x14, 0x17, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/looprpc/client.proto b/looprpc/client.proto index e61e263c95..3f52b0dc58 100644 --- a/looprpc/client.proto +++ b/looprpc/client.proto @@ -153,6 +153,16 @@ message LoopOutRequest { */ string dest = 2; + /** + Exact amount in satoshis to send to 'dest'. Optional. + */ + int64 dest_amount = 14; + + /** + Base58 encoded change address for the swap. + */ + string change_addr = 15; + /** Maximum off-chain fee in sat that may be paid for swap payment to the server. This limit is applied during path finding. Typically this value is taken @@ -571,6 +581,11 @@ message QuoteRequest { */ int64 amt = 1; + /** + If change output will be added. This is needed to send exact amount. + */ + bool with_change = 5; + /** The confirmation target that should be used either for the sweep of the on-chain HTLC broadcast by the swap server in the case of a Loop Out, or for diff --git a/looprpc/client.swagger.json b/looprpc/client.swagger.json index cb3362cfd5..9968ce37b0 100644 --- a/looprpc/client.swagger.json +++ b/looprpc/client.swagger.json @@ -148,6 +148,14 @@ "type": "string", "format": "int64" }, + { + "name": "with_change", + "description": "*\nIf change output will be added. This is needed to send exact amount.", + "in": "query", + "required": false, + "type": "boolean", + "format": "boolean" + }, { "name": "conf_target", "description": "*\nThe confirmation target that should be used either for the sweep of the\non-chain HTLC broadcast by the swap server in the case of a Loop Out, or for\nthe confirmation of the on-chain HTLC broadcast by the swap client in the\ncase of a Loop In.", @@ -261,6 +269,14 @@ "type": "string", "format": "int64" }, + { + "name": "with_change", + "description": "*\nIf change output will be added. This is needed to send exact amount.", + "in": "query", + "required": false, + "type": "boolean", + "format": "boolean" + }, { "name": "conf_target", "description": "*\nThe confirmation target that should be used either for the sweep of the\non-chain HTLC broadcast by the swap server in the case of a Loop Out, or for\nthe confirmation of the on-chain HTLC broadcast by the swap client in the\ncase of a Loop In.", @@ -611,6 +627,15 @@ "type": "string", "description": "*\nBase58 encoded destination address for the swap." }, + "dest_amount": { + "type": "string", + "format": "int64", + "description": "*\nExact amount in satoshis to send to 'dest'. Optional." + }, + "change_addr": { + "type": "string", + "description": "*\nBase58 encoded change address for the swap." + }, "max_swap_routing_fee": { "type": "string", "format": "int64", diff --git a/sweep/sweeper.go b/sweep/sweeper.go index c22b8dad83..559e7b4a86 100644 --- a/sweep/sweeper.go +++ b/sweep/sweeper.go @@ -25,8 +25,8 @@ func (s *Sweeper) CreateSweepTx( htlc *swap.Htlc, htlcOutpoint wire.OutPoint, keyBytes [33]byte, witnessFunc func(sig []byte) (wire.TxWitness, error), - amount, fee btcutil.Amount, - destAddr btcutil.Address) (*wire.MsgTx, error) { + amount, destAmount, feeOnlyDest, feeOnlyChange, feeBoth btcutil.Amount, + destAddr, changeAddr btcutil.Address) (*wire.MsgTx, error) { // Compose tx. sweepTx := wire.NewMsgTx(2) @@ -40,16 +40,25 @@ func (s *Sweeper) CreateSweepTx( Sequence: sequence, }) - // Add output for the destination address. - sweepPkScript, err := txscript.PayToAddrScript(destAddr) + destinations, err := deduceDestinations(amount, destAmount, + feeOnlyDest, feeOnlyChange, feeBoth, + destAddr, changeAddr) if err != nil { return nil, err } - sweepTx.AddTxOut(&wire.TxOut{ - PkScript: sweepPkScript, - Value: int64(amount - fee), - }) + // Add outputs. + for _, dst := range destinations { + sweepPkScript, err := txscript.PayToAddrScript(dst.addr) + if err != nil { + return nil, err + } + + sweepTx.AddTxOut(&wire.TxOut{ + PkScript: sweepPkScript, + Value: int64(dst.amount), + }) + } // Generate a signature for the swap htlc transaction. @@ -92,18 +101,49 @@ func (s *Sweeper) CreateSweepTx( // estimator. func (s *Sweeper) GetSweepFee(ctx context.Context, addInputEstimate func(*input.TxWeightEstimator), - destAddr btcutil.Address, sweepConfTarget int32) ( - btcutil.Amount, error) { + destAddr, changeAddr btcutil.Address, sweepConfTarget int32) ( + feeOnlyDest, feeOnlyChange, feeBoth btcutil.Amount, err error) { // Get fee estimate from lnd. feeRate, err := s.Lnd.WalletKit.EstimateFee(ctx, sweepConfTarget) if err != nil { - return 0, fmt.Errorf("estimate fee: %v", err) + return 0, 0, 0, fmt.Errorf("estimate fee: %v", err) + } + + // Calculate feeOnlyDest. + var estOnlyDest input.TxWeightEstimator + if err := addOutput(&estOnlyDest, destAddr); err != nil { + return 0, 0, 0, err + } + addInputEstimate(&estOnlyDest) + feeOnlyDest = feeRate.FeeForWeight(int64(estOnlyDest.Weight())) + + if changeAddr != nil { + // Calculate feeOnlyChange. + var estOnlyChange input.TxWeightEstimator + if err := addOutput(&estOnlyChange, changeAddr); err != nil { + return 0, 0, 0, err + } + addInputEstimate(&estOnlyChange) + feeOnlyChange = feeRate.FeeForWeight(int64(estOnlyChange.Weight())) + + // Calculate feeBoth. + var estBoth input.TxWeightEstimator + if err := addOutput(&estBoth, destAddr); err != nil { + return 0, 0, 0, err + } + if err := addOutput(&estBoth, changeAddr); err != nil { + return 0, 0, 0, err + } + addInputEstimate(&estBoth) + feeBoth = feeRate.FeeForWeight(int64(estBoth.Weight())) } - // Calculate weight for this tx. - var weightEstimate input.TxWeightEstimator - switch destAddr.(type) { + return feeOnlyDest, feeOnlyChange, feeBoth, nil +} + +func addOutput(weightEstimate *input.TxWeightEstimator, addr btcutil.Address) error { + switch addr.(type) { case *btcutil.AddressWitnessScriptHash: weightEstimate.AddP2WSHOutput() case *btcutil.AddressWitnessPubKeyHash: @@ -113,11 +153,78 @@ func (s *Sweeper) GetSweepFee(ctx context.Context, case *btcutil.AddressPubKeyHash: weightEstimate.AddP2PKHOutput() default: - return 0, fmt.Errorf("unknown address type %T", destAddr) + return fmt.Errorf("unknown address type %T", addr) + } + return nil +} + +const dustOutput = 2020 // FIXME: find the actual value. + +type destination struct { + addr btcutil.Address + amount btcutil.Amount +} + +func deduceDestinations(amount, destAmount, feeOnlyDest, feeOnlyChange, feeBoth btcutil.Amount, + destAddr, changeAddr btcutil.Address) ([]destination, error) { + + if (destAmount != 0) != (changeAddr != nil) { + return nil, fmt.Errorf("provide either both destAmount and changeAddr or none of them") + } + if (feeOnlyChange != 0) != (changeAddr != nil) { + return nil, fmt.Errorf("provide either both feeOnlyChange and changeAddr or none of them") + } + if (feeBoth != 0) != (changeAddr != nil) { + return nil, fmt.Errorf("provide either both feeBoth and changeAddr or none of them") + } + + if changeAddr == nil { + // No change. Just put everything on the main destination address. + return []destination{ + { + addr: destAddr, + amount: amount - feeOnlyDest, + }, + }, nil } - addInputEstimate(&weightEstimate) - weight := weightEstimate.Weight() + changeAmount := amount - destAmount - feeBoth + + if changeAmount > dustOutput { + // Change is large enough. Return tx with 2 outputs. + return []destination{ + { + addr: destAddr, + amount: destAmount, + }, + { + addr: changeAddr, + amount: changeAmount, + }, + }, nil + } + + // If we are here, then changeAmount is below dustOutput so we drop the change. + + if amount-destAmount >= feeOnlyDest { + // We still can send destAmount to destAddr. + return []destination{ + { + addr: destAddr, + amount: destAmount, + }, + }, nil + } + + // We can not send destAmount to destAddr. We have to abandon the idea to + // do it, because we must either send exact amount there or do not send + // at all, because it is likely to be an address of a merchant. To recover + // the funds, send everything to changeAddr which is controlled by us. - return feeRate.FeeForWeight(int64(weight)), nil + return []destination{ + { + addr: changeAddr, + amount: amount - feeOnlyChange, + }, + }, nil } diff --git a/sweep/sweeper_test.go b/sweep/sweeper_test.go new file mode 100644 index 0000000000..0db2424167 --- /dev/null +++ b/sweep/sweeper_test.go @@ -0,0 +1,184 @@ +package sweep + +import ( + "reflect" + "testing" + + "github.com/btcsuite/btcd/chaincfg" + "github.com/btcsuite/btcutil" +) + +func TestDeduceDestinations(t *testing.T) { + wpkh := [20]byte{} + addr1, err := btcutil.NewAddressWitnessPubKeyHash(wpkh[:], &chaincfg.MainNetParams) + if err != nil { + t.Fatal(err) + } + wsh := [32]byte{} + addr2, err := btcutil.NewAddressWitnessScriptHash(wsh[:], &chaincfg.MainNetParams) + if err != nil { + t.Fatal(err) + } + + testCases := []struct { + name string + amount, destAmount, feeOnlyDest, feeOnlyChange, feeBoth btcutil.Amount + destAddr, changeAddr btcutil.Address + wantedDestinations []destination + wantError bool + }{ + { + name: "missing changeAddr", + amount: 1000000, + destAmount: 950000, + feeOnlyDest: 150, + feeOnlyChange: 150, + feeBoth: 200, + destAddr: addr1, + changeAddr: nil, // Error! + wantError: true, + }, + { + name: "missing feeOnlyChange", + amount: 1000000, + destAmount: 950000, + feeOnlyDest: 150, + feeOnlyChange: 0, // Error! + feeBoth: 200, + destAddr: addr1, + changeAddr: addr2, + wantError: true, + }, + { + name: "missing feeBoth", + amount: 1000000, + destAmount: 950000, + feeOnlyDest: 150, + feeOnlyChange: 150, + feeBoth: 0, // Error! + destAddr: addr1, + changeAddr: addr2, + wantError: true, + }, + + { + name: "exact amount was not requested", + amount: 1000000, + feeOnlyDest: 150, + destAddr: addr1, + wantedDestinations: []destination{ + { + addr: addr1, + amount: 1000000 - 150, + }, + }, + }, + { + name: "exact amount and change", + amount: 1000000, + destAmount: 950000, + feeOnlyDest: 150, + feeOnlyChange: 160, + feeBoth: 200, + destAddr: addr1, + changeAddr: addr2, + wantedDestinations: []destination{ + { + addr: addr1, + amount: 950000, + }, + { + addr: addr2, + amount: 1000000 - 950000 - 200, + }, + }, + }, + { + name: "fee for both outputs is too large, but can send to destAddr", + amount: 1000000, + destAmount: 950000, + feeOnlyDest: 50000, + feeOnlyChange: 51000, + feeBoth: 70000, + destAddr: addr1, + changeAddr: addr2, + wantedDestinations: []destination{ + { + addr: addr1, + amount: 950000, + }, + }, + }, + { + name: "fee for both outputs does not left room for change output", + amount: 1000000, + destAmount: 950000, + feeOnlyDest: 45000, + feeOnlyChange: 46000, + feeBoth: 50000, + destAddr: addr1, + changeAddr: addr2, + wantedDestinations: []destination{ + { + addr: addr1, + amount: 950000, + }, + }, + }, + { + name: "fee for both outputs makes change output below dust", + amount: 1000000, + destAmount: 950000, + feeOnlyDest: 45000, + feeOnlyChange: 46000, + feeBoth: 49990, + destAddr: addr1, + changeAddr: addr2, + wantedDestinations: []destination{ + { + addr: addr1, + amount: 950000, + }, + }, + }, + { + name: "fee for both and for dest is too large, send everything to change address", + amount: 1000000, + destAmount: 950000, + feeOnlyDest: 51000, + feeOnlyChange: 52000, + feeBoth: 53000, + destAddr: addr1, + changeAddr: addr2, + wantedDestinations: []destination{ + { + addr: addr2, + amount: 948000, + }, + }, + }, + } + + for _, tc := range testCases { + gotDestinations, err := deduceDestinations( + tc.amount, tc.destAmount, tc.feeOnlyDest, tc.feeOnlyChange, tc.feeBoth, + tc.destAddr, tc.changeAddr, + ) + + if tc.wantError { + if err == nil { + t.Errorf("case %q: wanted error, but there is no error", tc.name) + } + continue + } + + if err != nil { + t.Errorf("case %q: failed: %v", tc.name, err) + continue + } + + if !reflect.DeepEqual(tc.wantedDestinations, gotDestinations) { + t.Errorf("case %q: wanted %v, got %v", tc.name, tc.wantedDestinations, gotDestinations) + } + } +}