OLD | NEW |
1 // Code generated by protoc-gen-go. | 1 // Code generated by protoc-gen-go. |
2 // source: cq.proto | 2 // source: cq.proto |
3 // DO NOT EDIT! | 3 // DO NOT EDIT! |
4 | 4 |
5 /* | 5 /* |
6 Package cq is a generated protocol buffer package. | 6 Package cq is a generated protocol buffer package. |
7 | 7 |
8 It is generated from these files: | 8 It is generated from these files: |
9 cq.proto | 9 cq.proto |
10 | 10 |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 Gerrit *Gerrit `protobuf:"bytes,15,opt,name=gerrit" json:"gerrit,omitemp
ty"` | 60 Gerrit *Gerrit `protobuf:"bytes,15,opt,name=gerrit" json:"gerrit,omitemp
ty"` |
61 // This can be used to override the Git repository URL used to checkout
and | 61 // This can be used to override the Git repository URL used to checkout
and |
62 // commit changes on CQ host. This should only be used in case, when the | 62 // commit changes on CQ host. This should only be used in case, when the |
63 // source repository is not supported by luci-config (e.g. GitHub). | 63 // source repository is not supported by luci-config (e.g. GitHub). |
64 GitRepoUrl *string `protobuf:"bytes,10,opt,name=git_repo_url" json:"git_
repo_url,omitempty"` | 64 GitRepoUrl *string `protobuf:"bytes,10,opt,name=git_repo_url" json:"git_
repo_url,omitempty"` |
65 // Target ref to commit to. This can be used to specify a different ref
than | 65 // Target ref to commit to. This can be used to specify a different ref
than |
66 // the one where the luci config is located. This is useful, e.g. for pr
ojects | 66 // the one where the luci config is located. This is useful, e.g. for pr
ojects |
67 // that use gnumbd where CQ should commit into a pending ref. | 67 // that use gnumbd where CQ should commit into a pending ref. |
68 TargetRef *string `protobuf:"bytes,11,opt,name=target_ref" json:"target_
ref,omitempty"` | 68 TargetRef *string `protobuf:"bytes,11,opt,name=target_ref" json:"target_
ref,omitempty"` |
69 // Deprecated. URL of the SVN repository. We are deprecating SVN support
. | 69 // Deprecated. URL of the SVN repository. We are deprecating SVN support
. |
70 » SvnRepoUrl *string `protobuf:"bytes,12,opt,name=svn_repo_url" json
:"svn_repo_url,omitempty"` | 70 » SvnRepoUrl *string `protobuf:"bytes,12,opt,name=svn_repo_url" json:"svn_
repo_url,omitempty"` |
71 » XXX_unrecognized []byte `json:"-"` | 71 » // If present, the CQ will refrain from processing any commits whose sta
rt |
| 72 » // time is >= this time. |
| 73 » // |
| 74 » // This is an UTC RFC3339 (stiptime(tm)) string representing the time. |
| 75 » DrainingStartTime *string `protobuf:"bytes,13,opt,name=draining_start_ti
me" json:"draining_start_time,omitempty"` |
| 76 » XXX_unrecognized []byte `json:"-"` |
72 } | 77 } |
73 | 78 |
74 func (m *Config) Reset() { *m = Config{} } | 79 func (m *Config) Reset() { *m = Config{} } |
75 func (m *Config) String() string { return proto.CompactTextString(m)
} | 80 func (m *Config) String() string { return proto.CompactTextString(m)
} |
76 func (*Config) ProtoMessage() {} | 81 func (*Config) ProtoMessage() {} |
77 func (*Config) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} } | 82 func (*Config) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} } |
78 | 83 |
79 func (m *Config) GetVersion() int32 { | 84 func (m *Config) GetVersion() int32 { |
80 if m != nil && m.Version != nil { | 85 if m != nil && m.Version != nil { |
81 return *m.Version | 86 return *m.Version |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 return "" | 165 return "" |
161 } | 166 } |
162 | 167 |
163 func (m *Config) GetSvnRepoUrl() string { | 168 func (m *Config) GetSvnRepoUrl() string { |
164 if m != nil && m.SvnRepoUrl != nil { | 169 if m != nil && m.SvnRepoUrl != nil { |
165 return *m.SvnRepoUrl | 170 return *m.SvnRepoUrl |
166 } | 171 } |
167 return "" | 172 return "" |
168 } | 173 } |
169 | 174 |
| 175 func (m *Config) GetDrainingStartTime() string { |
| 176 if m != nil && m.DrainingStartTime != nil { |
| 177 return *m.DrainingStartTime |
| 178 } |
| 179 return "" |
| 180 } |
| 181 |
170 type Rietveld struct { | 182 type Rietveld struct { |
171 // Required. URL of the codereview site. | 183 // Required. URL of the codereview site. |
172 Url *string `protobuf:"bytes,1,opt,name=url" json:"url,omitempty"` | 184 Url *string `protobuf:"bytes,1,opt,name=url" json:"url,omitempty"` |
173 // List of regular expressions used to check if CL's base URL should be | 185 // List of regular expressions used to check if CL's base URL should be |
174 // processed by this CQ. This may be useful if a single branch has multi
ple | 186 // processed by this CQ. This may be useful if a single branch has multi
ple |
175 // sub-directories that are handled by different CQs. When no regular | 187 // sub-directories that are handled by different CQs. When no regular |
176 // expressions are specified, the regular expression '.*', which matches
any | 188 // expressions are specified, the regular expression '.*', which matches
any |
177 // directory, is used. | 189 // directory, is used. |
178 ProjectBases []string `protobuf:"bytes,2,rep,name=project_bases" jso
n:"project_bases,omitempty"` | 190 ProjectBases []string `protobuf:"bytes,2,rep,name=project_bases" jso
n:"project_bases,omitempty"` |
179 XXX_unrecognized []byte `json:"-"` | 191 XXX_unrecognized []byte `json:"-"` |
(...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
540 proto.RegisterType((*Verifiers_ReviewerLgtmVerifier)(nil), "Verifiers.Re
viewerLgtmVerifier") | 552 proto.RegisterType((*Verifiers_ReviewerLgtmVerifier)(nil), "Verifiers.Re
viewerLgtmVerifier") |
541 proto.RegisterType((*Verifiers_TreeStatusLgtmVerifier)(nil), "Verifiers.
TreeStatusLgtmVerifier") | 553 proto.RegisterType((*Verifiers_TreeStatusLgtmVerifier)(nil), "Verifiers.
TreeStatusLgtmVerifier") |
542 proto.RegisterType((*Verifiers_TryJobVerifier)(nil), "Verifiers.TryJobVe
rifier") | 554 proto.RegisterType((*Verifiers_TryJobVerifier)(nil), "Verifiers.TryJobVe
rifier") |
543 proto.RegisterType((*Verifiers_TryJobVerifier_Builder)(nil), "Verifiers.
TryJobVerifier.Builder") | 555 proto.RegisterType((*Verifiers_TryJobVerifier_Builder)(nil), "Verifiers.
TryJobVerifier.Builder") |
544 proto.RegisterType((*Verifiers_TryJobVerifier_Bucket)(nil), "Verifiers.T
ryJobVerifier.Bucket") | 556 proto.RegisterType((*Verifiers_TryJobVerifier_Bucket)(nil), "Verifiers.T
ryJobVerifier.Bucket") |
545 proto.RegisterType((*Verifiers_TryJobVerifier_TryJobRetryConfig)(nil), "
Verifiers.TryJobVerifier.TryJobRetryConfig") | 557 proto.RegisterType((*Verifiers_TryJobVerifier_TryJobRetryConfig)(nil), "
Verifiers.TryJobVerifier.TryJobRetryConfig") |
546 proto.RegisterType((*Verifiers_SignCLAVerifier)(nil), "Verifiers.SignCLA
Verifier") | 558 proto.RegisterType((*Verifiers_SignCLAVerifier)(nil), "Verifiers.SignCLA
Verifier") |
547 } | 559 } |
548 | 560 |
549 var fileDescriptor0 = []byte{ | 561 var fileDescriptor0 = []byte{ |
550 » // 660 bytes of a gzipped FileDescriptorProto | 562 » // 674 bytes of a gzipped FileDescriptorProto |
551 » 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x74, 0x54,
0xdd, 0x4e, 0xdb, 0x4c, | 563 » 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x74, 0x54,
0x4d, 0x4f, 0xdb, 0x40, |
552 » 0x10, 0x55, 0x08, 0x49, 0x9c, 0x31, 0x90, 0x0f, 0x13, 0xc0, 0xf8, 0xeb,
0x0f, 0x50, 0xa9, 0xaa, | 564 » 0x10, 0x55, 0x08, 0x49, 0x9c, 0x31, 0x90, 0x62, 0x02, 0x18, 0xd3, 0x0f,
0xa0, 0x52, 0x55, 0xb5, |
553 » 0xda, 0xca, 0x12, 0xa9, 0xd4, 0xfb, 0xc2, 0x45, 0xd5, 0x96, 0x2b, 0xa8,
0x7a, 0xd1, 0x9b, 0xd5, | 565 » 0x95, 0x25, 0x52, 0xa9, 0xf7, 0xc2, 0xa1, 0x6a, 0xcb, 0x09, 0xaa, 0x1e,
0x7a, 0x59, 0xad, 0xed, |
554 » 0xda, 0x9e, 0x98, 0xa5, 0xfe, 0x81, 0xf5, 0x3a, 0x90, 0xb7, 0xea, 0x53,
0xf4, 0x11, 0x7a, 0xd5, | 566 » 0x89, 0x59, 0xea, 0x0f, 0x58, 0xaf, 0x03, 0xf9, 0x57, 0xfd, 0x35, 0x3d,
0xf5, 0xd6, 0x3f, 0xd2, |
555 » 0x87, 0xe9, 0x78, 0xbd, 0x09, 0x71, 0x4a, 0xae, 0x6c, 0xcf, 0x39, 0xb3,
0x7b, 0x66, 0xce, 0x8c, | 567 » 0xd9, 0xb5, 0x13, 0xe2, 0x14, 0x4e, 0x89, 0xe7, 0xbd, 0x19, 0xbf, 0x99,
0x79, 0x63, 0xb0, 0xc2, |
556 » 0xc1, 0x0a, 0x6f, 0xfd, 0x1b, 0x99, 0xab, 0xfc, 0xf8, 0xd7, 0x1a, 0x74,
0xcf, 0xf2, 0x6c, 0x2c, | 568 » 0x1b, 0xff, 0x5a, 0xe6, 0x2a, 0x3f, 0xfa, 0xbb, 0x02, 0xdd, 0xd3, 0x3c,
0x1b, 0x8b, 0xd8, 0x19, |
557 » 0x62, 0x67, 0x00, 0xbd, 0x09, 0xca, 0x42, 0xe4, 0x99, 0xdb, 0x3a, 0x6c,
0xbd, 0xea, 0x54, 0x81, | 569 » 0x40, 0x6f, 0x82, 0xb2, 0x10, 0x79, 0xe6, 0xb6, 0x0e, 0x5a, 0xaf, 0x3b,
0x3a, 0x10, 0xde, 0xb0, |
558 » 0xf0, 0x96, 0x65, 0x3c, 0x45, 0x77, 0x8d, 0x02, 0x7d, 0xe7, 0x29, 0xf4,
0x89, 0x21, 0xc6, 0x82, | 570 » 0x8c, 0xa7, 0xe8, 0xae, 0x50, 0xa0, 0xef, 0x3c, 0x83, 0x3e, 0x31, 0xc4,
0x58, 0x10, 0xcd, 0x6d, |
559 » 0x68, 0x6e, 0x9b, 0x42, 0xf6, 0x08, 0xfc, 0x6f, 0xb3, 0x88, 0xb3, 0x0b,
0x9b, 0xc4, 0x2f, 0x14, | 571 » 0x53, 0xc8, 0x1e, 0x81, 0xff, 0x7d, 0x16, 0x71, 0xb6, 0x61, 0x9d, 0xf8,
0x85, 0xe2, 0xaa, 0x2c, |
560 » 0x57, 0x65, 0xc1, 0x4a, 0x99, 0xb8, 0xeb, 0x3a, 0xeb, 0x08, 0x0e, 0xae,
0x44, 0x84, 0x4c, 0xe2, | 572 » 0x58, 0x29, 0x13, 0x77, 0xd5, 0x64, 0x1d, 0xc2, 0xde, 0xa5, 0x88, 0x90,
0x49, 0x1c, 0x33, 0x91, |
561 » 0x98, 0x89, 0x8c, 0x85, 0x79, 0x9a, 0x0a, 0xa5, 0x30, 0x62, 0x69, 0x11,
0xbb, 0x1d, 0xa2, 0x58, | 573 » 0xb1, 0x30, 0x4f, 0x53, 0xa1, 0x14, 0x46, 0x2c, 0x2d, 0x62, 0xb7, 0x43,
0x14, 0xcb, 0xf1, 0xc0, |
562 » 0x8e, 0x07, 0x4e, 0x1d, 0x66, 0x41, 0x29, 0x0b, 0xc5, 0x22, 0x4c, 0xf8,
0xd4, 0xed, 0x6a, 0x15, | 574 » 0xa9, 0xc2, 0x2c, 0x28, 0x65, 0xa1, 0x58, 0x84, 0x09, 0x9f, 0xba, 0x5d,
0xa3, 0xc2, 0x85, 0x27, |
563 » 0x2e, 0xfc, 0x97, 0xf2, 0x7b, 0xb6, 0x88, 0xbb, 0x3d, 0x8d, 0xd0, 0x7d,
0x74, 0x1e, 0xd5, 0x11, | 575 » 0x29, 0xbf, 0x63, 0x8b, 0xb8, 0xdb, 0x33, 0x08, 0xbd, 0x8f, 0xea, 0x51,
0x1f, 0x51, 0x19, 0x2a, |
564 » 0x95, 0xa1, 0xaa, 0x64, 0x5b, 0xfa, 0xb0, 0xff, 0xc1, 0x92, 0x02, 0xd5,
0x04, 0x93, 0xc8, 0xed, | 576 » 0x2d, 0xdb, 0x32, 0xc5, 0xf6, 0xc1, 0x92, 0x02, 0xd5, 0x04, 0x93, 0xc8,
0xed, 0x1b, 0x91, 0x7d, |
565 » 0x6b, 0x91, 0x7d, 0xff, 0xc2, 0x04, 0x9c, 0x7d, 0xe8, 0xc6, 0x28, 0xa5,
0x50, 0xee, 0x40, 0x43, | 577 » 0xff, 0xbc, 0x0e, 0x38, 0xbb, 0xd0, 0x8d, 0x51, 0x4a, 0xa1, 0xdc, 0x81,
0x81, 0x7a, 0xfe, 0x27, |
566 » 0x3d, 0xff, 0xa3, 0xfe, 0x74, 0x86, 0xb0, 0x11, 0xd3, 0xf9, 0x12, 0x6f,
0x72, 0xad, 0x1d, 0xb4, | 578 » 0xf3, 0xe8, 0x0c, 0x61, 0x2d, 0xa6, 0xfa, 0x12, 0xaf, 0x73, 0xa3, 0x1d,
0x8c, 0x76, 0x07, 0x40, |
567 » 0x76, 0x07, 0x40, 0x71, 0x19, 0x63, 0x05, 0x8c, 0x5d, 0x5b, 0xc7, 0x88,
0x59, 0x4c, 0xb2, 0x07, | 579 » 0x71, 0x19, 0xa3, 0x06, 0xc6, 0xae, 0x6d, 0x62, 0xc4, 0x2c, 0x26, 0xd9,
0x3d, 0x73, 0xcd, 0x44, |
568 » 0xe6, 0x46, 0x15, 0x3d, 0xf6, 0xc1, 0x9a, 0x5f, 0x62, 0x43, 0xbb, 0x02,
0x5a, 0x9a, 0x4e, 0x2a, | 580 » 0xf7, 0x61, 0x2b, 0x92, 0x5c, 0x64, 0x22, 0x8b, 0xf5, 0x08, 0xa4, 0x62,
0x4a, 0xd0, 0xe0, 0xd6, |
569 » 0x49, 0xe2, 0x35, 0x86, 0x24, 0x9e, 0x17, 0x58, 0x50, 0x2f, 0xdb, 0xc4,
0x7f, 0x01, 0x5d, 0x73, | 581 » 0x35, 0x78, 0xe4, 0x83, 0x35, 0x57, 0x60, 0x43, 0x5b, 0x67, 0xb5, 0x4c,
0x16, 0xb5, 0x40, 0xfa, |
570 » 0xf3, 0x01, 0x6c, 0x53, 0xdb, 0x4c, 0x63, 0x23, 0x96, 0xf0, 0x00, 0x4d,
0xee, 0xf1, 0xef, 0x2e, | 582 » 0xaf, 0x30, 0xa4, 0xce, 0x78, 0x81, 0x05, 0x0d, 0xba, 0x4d, 0xfc, 0x97,
0xd0, 0xad, 0x65, 0xed, |
571 » 0xf4, 0x1f, 0xfa, 0xfb, 0x1e, 0x36, 0x25, 0x4e, 0x04, 0xde, 0xa1, 0x64,
0x49, 0xac, 0x52, 0x4d, | 583 » 0xc1, 0x26, 0xcd, 0xb4, 0x9e, 0x7a, 0xc4, 0x12, 0x1e, 0x60, 0x9d, 0x7b,
0xf4, 0xbb, 0x0b, 0xfd, |
572 » 0xb2, 0x47, 0xcf, 0x1f, 0x2c, 0xf0, 0x2f, 0x0c, 0x7e, 0x4e, 0xf0, 0x2c,
0x4a, 0x79, 0xb6, 0x92, | 584 » 0xfb, 0xe1, 0x7f, 0x80, 0x75, 0x89, 0x13, 0x81, 0xb7, 0x28, 0x59, 0x12,
0xab, 0xd4, 0x90, 0xec, |
573 » 0x88, 0xc6, 0x19, 0xed, 0xa5, 0x3d, 0x3a, 0x5a, 0xc8, 0xfa, 0x4a, 0xe8,
0xa5, 0x06, 0x1b, 0x79, | 585 » 0xd1, 0x8b, 0xfb, 0xfd, 0xf8, 0xe7, 0x35, 0x7e, 0x46, 0xf0, 0x2c, 0x4a,
0x79, 0xb6, 0x92, 0x88, |
574 » 0xaf, 0xa1, 0xa7, 0xe4, 0x94, 0x5d, 0xe7, 0x81, 0x31, 0xfb, 0xa0, 0x91,
0x33, 0xfd, 0x9c, 0x07, | 586 » 0xf5, 0xda, 0xcc, 0xa2, 0xed, 0xd1, 0xe1, 0x42, 0xd6, 0x37, 0x42, 0x2f,
0x0c, 0xd8, 0xc8, 0x7b, |
575 » 0x73, 0xee, 0x5b, 0xb0, 0x0a, 0x11, 0x93, 0xbb, 0x09, 0xd7, 0xb6, 0xdb,
0x23, 0x6f, 0x81, 0x7c, | 587 » 0x03, 0x3d, 0x25, 0xa7, 0xec, 0x2a, 0x0f, 0x6a, 0x27, 0xec, 0x35, 0x72,
0xa6, 0x5f, 0xf2, 0x60, |
576 » 0x49, 0xd0, 0xd9, 0xf9, 0x87, 0x59, 0xc0, 0xfb, 0x0e, 0xc3, 0x47, 0x95,
0xee, 0xc1, 0xd6, 0x6c, | 588 » 0xce, 0x7d, 0x07, 0x56, 0x21, 0x62, 0x5a, 0x7d, 0xc2, 0x8d, 0x27, 0xec,
0x91, 0xb7, 0x40, 0xbe, |
577 » 0x3c, 0xa8, 0x44, 0x41, 0x4e, 0xcf, 0x7b, 0x58, 0xcd, 0xc0, 0x1d, 0x27,
0x87, 0x0a, 0x0c, 0xeb, | 589 » 0x20, 0xe8, 0xf4, 0xec, 0xe3, 0x2c, 0xe0, 0xfd, 0x80, 0xe1, 0x83, 0x4a,
0x77, 0x60, 0x63, 0xe6, |
578 » 0x1a, 0x3a, 0xce, 0x0e, 0xd8, 0x59, 0xae, 0x5b, 0xa1, 0x67, 0xa9, 0x12,
0xd9, 0xf7, 0x4e, 0x60, | 590 » 0x1d, 0x6a, 0x51, 0x90, 0x0d, 0xe6, 0x33, 0xd4, 0x06, 0xb9, 0xe5, 0xb4,
0xbe, 0x02, 0xc3, 0xaa, |
579 » 0x6f, 0x45, 0x3d, 0xfb, 0x30, 0x58, 0xe8, 0x03, 0x9b, 0x5b, 0xe4, 0xfd,
0x69, 0xc3, 0xd6, 0x52, | 591 » 0x87, 0x8e, 0xb3, 0x05, 0x76, 0x96, 0x9b, 0x51, 0x18, 0xa3, 0x69, 0x91,
0x7d, 0xef, 0x18, 0x76, |
580 » 0x3d, 0x27, 0xd0, 0x0b, 0xca, 0xf0, 0x07, 0xaa, 0x82, 0x38, 0x6d, 0x2a,
0xe7, 0x70, 0x65, 0xed, | 592 » 0x1e, 0xe9, 0x67, 0x17, 0x06, 0x0b, 0x73, 0x60, 0xf3, 0x15, 0x79, 0x7f,
0xda, 0xb0, 0xb1, 0xd4, |
581 » 0xfe, 0xa9, 0x26, 0x3a, 0x9f, 0x60, 0x68, 0xda, 0x45, 0xb3, 0x51, 0xbd,
0x85, 0x7a, 0xaf, 0x4c, | 593 » 0xcf, 0x31, 0xf4, 0x82, 0x32, 0xfc, 0x89, 0xaa, 0x20, 0x4e, 0x9b, 0xda,
0x39, 0x78, 0xb4, 0x77, |
582 » 0xbf, 0xdf, 0xac, 0xce, 0xaf, 0x3f, 0x2f, 0xaa, 0x9c, 0x7a, 0x15, 0xbd,
0x73, 0xe8, 0x9d, 0x96, | 594 » 0xff, 0xc4, 0x10, 0x9d, 0xcf, 0x30, 0xac, 0xc7, 0x45, 0xc6, 0xd1, 0xff,
0x42, 0x73, 0x74, 0xf5, |
583 » 0x22, 0x89, 0x48, 0xc8, 0x06, 0xac, 0xeb, 0x0d, 0x6c, 0xcd, 0x66, 0x4f,
0x49, 0x11, 0xd3, 0x08, | 595 » 0xbc, 0xdf, 0x3e, 0x9e, 0x5f, 0x3d, 0x9e, 0xeb, 0x9c, 0xea, 0x4e, 0xbd,
0x33, 0xe8, 0x9d, 0x94, |
584 » 0xd3, 0xa4, 0x04, 0xd3, 0xf9, 0x5e, 0xee, 0xe2, 0xfd, 0x0d, 0x1d, 0x97,
0x62, 0xa6, 0x18, 0xbd, | 596 » 0x22, 0x89, 0x48, 0xc8, 0x1a, 0xac, 0x9a, 0xf3, 0x6c, 0xcd, 0x8c, 0xa9,
0xa4, 0x88, 0xc9, 0xdf, |
585 » 0x84, 0xf4, 0xe4, 0x31, 0x6a, 0x27, 0xd6, 0xbc, 0x2f, 0xd0, 0x35, 0x12,
0x9b, 0x87, 0xbd, 0x03, | 597 » 0xe4, 0x94, 0x60, 0x3a, 0x3f, 0xda, 0x6d, 0xbc, 0xbb, 0xa6, 0x72, 0x29,
0x66, 0x8a, 0xd1, 0x9f, |
586 » 0x2b, 0xa8, 0x6f, 0xa9, 0x87, 0x72, 0x79, 0x28, 0x96, 0x8a, 0xd4, 0x4c,
0xef, 0x67, 0x0b, 0xb6, | 598 » 0x90, 0x7e, 0x79, 0x8c, 0x66, 0x13, 0x2b, 0xde, 0x57, 0xe8, 0xd6, 0x12,
0x9b, 0xc5, 0xde, 0x83, |
587 » 0xff, 0x11, 0x4c, 0x3b, 0xb7, 0xd3, 0xac, 0xfd, 0xb6, 0xcc, 0x15, 0x37,
0xff, 0x11, 0xda, 0xee, | 599 » 0x15, 0x54, 0x6f, 0xa9, 0x4c, 0xb9, 0x6c, 0x8a, 0xa5, 0x26, 0x0d, 0xd3,
0xfb, 0xd5, 0x82, 0xcd, |
588 » 0x38, 0xc9, 0x03, 0x9e, 0x34, 0xb0, 0xda, 0xc2, 0x27, 0x30, 0x1c, 0x73,
0x91, 0x94, 0x12, 0x0d, | 600 » 0xff, 0x04, 0xeb, 0xd3, 0x68, 0xf6, 0x7e, 0x53, 0xe6, 0x8a, 0xd7, 0x1f,
0x19, 0x3a, 0xfd, 0x38, |
589 » 0x78, 0x87, 0x22, 0xbe, 0x52, 0xda, 0xcb, 0x8e, 0xf3, 0x12, 0x9e, 0x29,
0xc9, 0xb3, 0x42, 0x54, | 601 » 0xc9, 0x03, 0x9e, 0x34, 0xb0, 0x6a, 0x85, 0x4f, 0x61, 0x38, 0xe6, 0x22,
0x29, 0x25, 0xd6, 0xe0, |
590 » 0x75, 0x3d, 0xca, 0x5b, 0x9f, 0x9d, 0xa2, 0xa8, 0xf8, 0xbc, 0x54, 0x4d,
0xb4, 0xfa, 0xbb, 0x74, | 602 » 0x2d, 0x8a, 0xf8, 0x52, 0x99, 0x5d, 0x76, 0x9c, 0x57, 0xf0, 0x5c, 0x49,
0x9e, 0x15, 0x42, 0xf7, |
591 » 0xbc, 0x6d, 0x18, 0x2c, 0x0d, 0xe0, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff,
0x0e, 0x52, 0xce, 0xf8, | 603 » 0xf5, 0x20, 0x6f, 0x75, 0x56, 0x45, 0x9f, 0x62, 0x5e, 0xaa, 0x26, 0xaa,
0x3f, 0x3d, 0x1d, 0x6f, |
592 » 0x01, 0x05, 0x00, 0x00, | 604 » 0x13, 0x06, 0x4b, 0x06, 0xfc, 0x17, 0x00, 0x00, 0xff, 0xff, 0x0c, 0x91,
0xda, 0xff, 0x1e, 0x05, |
| 605 » 0x00, 0x00, |
593 } | 606 } |
OLD | NEW |