#![allow(dead_code)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
#![allow(non_upper_case_globals)]
#![allow(unused_imports)]
use protobuf::Message as Message_imported_for_functions;
use protobuf::ProtobufEnum as ProtobufEnum_imported_for_functions;
use super::mesos::FrameworkID;
use super::mesos::OfferID;
use super::mesos::AgentID;
use super::mesos::TaskID;
use super::mesos::ExecutorID;
use super::mesos::ContainerID;
use super::mesos::TimeInfo;
use super::mesos::DurationInfo;
use super::mesos::Address;
use super::mesos::URL;
use super::mesos::Unavailability;
use super::mesos::MachineID;
use super::mesos::MachineInfo;
use super::mesos::FrameworkInfo;
use super::mesos::HealthCheck;
use super::mesos::CommandInfo;
use super::mesos::ExecutorInfo;
use super::mesos::MasterInfo;
use super::mesos::AgentInfo;
use super::mesos::Value;
use super::mesos::Attribute;
use super::mesos::Resource;
use super::mesos::TrafficControlStatistics;
use super::mesos::ResourceStatistics;
use super::mesos::ResourceUsage;
use super::mesos::PerfStatistics;
use super::mesos::Request;
use super::mesos::Offer;
use super::mesos::InverseOffer;
use super::mesos::TaskInfo;
use super::mesos::TaskStatus;
use super::mesos::Filters;
use super::mesos::Environment;
use super::mesos::Parameter;
use super::mesos::Parameters;
use super::mesos::Credential;
use super::mesos::Credentials;
use super::mesos::RateLimit;
use super::mesos::RateLimits;
use super::mesos::Image;
use super::mesos::Volume;
use super::mesos::ContainerInfo;
use super::mesos::Labels;
use super::mesos::Label;
use super::mesos::Port;
use super::mesos::Ports;
use super::mesos::DiscoveryInfo;
use super::mesos::Status;
use super::mesos::TaskState;
#[derive(Clone,Default)]
pub struct Event {
field_type: ::std::option::Option<Event_Type>,
subscribed: ::protobuf::SingularPtrField<Event_Subscribed>,
acknowledged: ::protobuf::SingularPtrField<Event_Acknowledged>,
launch: ::protobuf::SingularPtrField<Event_Launch>,
kill: ::protobuf::SingularPtrField<Event_Kill>,
message: ::protobuf::SingularPtrField<Event_Message>,
error: ::protobuf::SingularPtrField<Event_Error>,
unknown_fields: ::protobuf::UnknownFields,
cached_size: ::std::cell::Cell<u32>,
}
impl Event {
pub fn new() -> Event {
::std::default::Default::default()
}
pub fn default_instance() -> &'static Event {
static mut instance: ::protobuf::lazy::Lazy<Event> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const Event,
};
unsafe {
instance.get(|| {
Event {
field_type: ::std::option::Option::None,
subscribed: ::protobuf::SingularPtrField::none(),
acknowledged: ::protobuf::SingularPtrField::none(),
launch: ::protobuf::SingularPtrField::none(),
kill: ::protobuf::SingularPtrField::none(),
message: ::protobuf::SingularPtrField::none(),
error: ::protobuf::SingularPtrField::none(),
unknown_fields: ::protobuf::UnknownFields::new(),
cached_size: ::std::cell::Cell::new(0),
}
})
}
}
pub fn clear_field_type(&mut self) {
self.field_type = ::std::option::Option::None;
}
pub fn has_field_type(&self) -> bool {
self.field_type.is_some()
}
pub fn set_field_type(&mut self, v: Event_Type) {
self.field_type = ::std::option::Option::Some(v);
}
pub fn get_field_type<'a>(&self) -> Event_Type {
self.field_type.unwrap_or(Event_Type::SUBSCRIBED)
}
pub fn clear_subscribed(&mut self) {
self.subscribed.clear();
}
pub fn has_subscribed(&self) -> bool {
self.subscribed.is_some()
}
pub fn set_subscribed(&mut self, v: Event_Subscribed) {
self.subscribed = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_subscribed<'a>(&'a mut self) -> &'a mut Event_Subscribed {
if self.subscribed.is_none() {
self.subscribed.set_default();
};
self.subscribed.as_mut().unwrap()
}
pub fn take_subscribed(&mut self) -> Event_Subscribed {
self.subscribed.take().unwrap_or_else(|| Event_Subscribed::new())
}
pub fn get_subscribed<'a>(&'a self) -> &'a Event_Subscribed {
self.subscribed.as_ref().unwrap_or_else(|| Event_Subscribed::default_instance())
}
pub fn clear_acknowledged(&mut self) {
self.acknowledged.clear();
}
pub fn has_acknowledged(&self) -> bool {
self.acknowledged.is_some()
}
pub fn set_acknowledged(&mut self, v: Event_Acknowledged) {
self.acknowledged = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_acknowledged<'a>(&'a mut self) -> &'a mut Event_Acknowledged {
if self.acknowledged.is_none() {
self.acknowledged.set_default();
};
self.acknowledged.as_mut().unwrap()
}
pub fn take_acknowledged(&mut self) -> Event_Acknowledged {
self.acknowledged.take().unwrap_or_else(|| Event_Acknowledged::new())
}
pub fn get_acknowledged<'a>(&'a self) -> &'a Event_Acknowledged {
self.acknowledged.as_ref().unwrap_or_else(|| Event_Acknowledged::default_instance())
}
pub fn clear_launch(&mut self) {
self.launch.clear();
}
pub fn has_launch(&self) -> bool {
self.launch.is_some()
}
pub fn set_launch(&mut self, v: Event_Launch) {
self.launch = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_launch<'a>(&'a mut self) -> &'a mut Event_Launch {
if self.launch.is_none() {
self.launch.set_default();
};
self.launch.as_mut().unwrap()
}
pub fn take_launch(&mut self) -> Event_Launch {
self.launch.take().unwrap_or_else(|| Event_Launch::new())
}
pub fn get_launch<'a>(&'a self) -> &'a Event_Launch {
self.launch.as_ref().unwrap_or_else(|| Event_Launch::default_instance())
}
pub fn clear_kill(&mut self) {
self.kill.clear();
}
pub fn has_kill(&self) -> bool {
self.kill.is_some()
}
pub fn set_kill(&mut self, v: Event_Kill) {
self.kill = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_kill<'a>(&'a mut self) -> &'a mut Event_Kill {
if self.kill.is_none() {
self.kill.set_default();
};
self.kill.as_mut().unwrap()
}
pub fn take_kill(&mut self) -> Event_Kill {
self.kill.take().unwrap_or_else(|| Event_Kill::new())
}
pub fn get_kill<'a>(&'a self) -> &'a Event_Kill {
self.kill.as_ref().unwrap_or_else(|| Event_Kill::default_instance())
}
pub fn clear_message(&mut self) {
self.message.clear();
}
pub fn has_message(&self) -> bool {
self.message.is_some()
}
pub fn set_message(&mut self, v: Event_Message) {
self.message = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_message<'a>(&'a mut self) -> &'a mut Event_Message {
if self.message.is_none() {
self.message.set_default();
};
self.message.as_mut().unwrap()
}
pub fn take_message(&mut self) -> Event_Message {
self.message.take().unwrap_or_else(|| Event_Message::new())
}
pub fn get_message<'a>(&'a self) -> &'a Event_Message {
self.message.as_ref().unwrap_or_else(|| Event_Message::default_instance())
}
pub fn clear_error(&mut self) {
self.error.clear();
}
pub fn has_error(&self) -> bool {
self.error.is_some()
}
pub fn set_error(&mut self, v: Event_Error) {
self.error = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_error<'a>(&'a mut self) -> &'a mut Event_Error {
if self.error.is_none() {
self.error.set_default();
};
self.error.as_mut().unwrap()
}
pub fn take_error(&mut self) -> Event_Error {
self.error.take().unwrap_or_else(|| Event_Error::new())
}
pub fn get_error<'a>(&'a self) -> &'a Event_Error {
self.error.as_ref().unwrap_or_else(|| Event_Error::default_instance())
}
}
impl ::protobuf::Message for Event {
fn is_initialized(&self) -> bool {
if self.field_type.is_none() {
return false;
};
true
}
fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream) -> ::protobuf::ProtobufResult<()> {
while !try!(is.eof()) {
let (field_number, wire_type) = try!(is.read_tag_unpack());
match field_number {
1 => {
if wire_type != ::protobuf::wire_format::WireTypeVarint {
return ::std::result::Result::Err(::protobuf::ProtobufError::WireError("unexpected wire type".to_string()));
};
let tmp = try!(is.read_enum());
self.field_type = ::std::option::Option::Some(tmp);
},
2 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::ProtobufError::WireError("unexpected wire type".to_string()));
};
let tmp = self.subscribed.set_default();
try!(is.merge_message(tmp))
},
3 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::ProtobufError::WireError("unexpected wire type".to_string()));
};
let tmp = self.acknowledged.set_default();
try!(is.merge_message(tmp))
},
4 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::ProtobufError::WireError("unexpected wire type".to_string()));
};
let tmp = self.launch.set_default();
try!(is.merge_message(tmp))
},
5 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::ProtobufError::WireError("unexpected wire type".to_string()));
};
let tmp = self.kill.set_default();
try!(is.merge_message(tmp))
},
6 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::ProtobufError::WireError("unexpected wire type".to_string()));
};
let tmp = self.message.set_default();
try!(is.merge_message(tmp))
},
7 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::ProtobufError::WireError("unexpected wire type".to_string()));
};
let tmp = self.error.set_default();
try!(is.merge_message(tmp))
},
_ => {
let unknown = try!(is.read_unknown(wire_type));
self.mut_unknown_fields().add_value(field_number, unknown);
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u32 {
let mut my_size = 0;
for value in self.field_type.iter() {
my_size += ::protobuf::rt::enum_size(1, *value);
};
for value in self.subscribed.iter() {
let len = value.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
};
for value in self.acknowledged.iter() {
let len = value.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
};
for value in self.launch.iter() {
let len = value.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
};
for value in self.kill.iter() {
let len = value.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
};
for value in self.message.iter() {
let len = value.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
};
for value in self.error.iter() {
let len = value.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
};
my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields());
self.cached_size.set(my_size);
my_size
}
fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream) -> ::protobuf::ProtobufResult<()> {
if let Some(v) = self.field_type {
try!(os.write_enum(1, v as i32));
};
if let Some(v) = self.subscribed.as_ref() {
try!(os.write_tag(2, ::protobuf::wire_format::WireTypeLengthDelimited));
try!(os.write_raw_varint32(v.get_cached_size()));
try!(v.write_to_with_cached_sizes(os));
};
if let Some(v) = self.acknowledged.as_ref() {
try!(os.write_tag(3, ::protobuf::wire_format::WireTypeLengthDelimited));
try!(os.write_raw_varint32(v.get_cached_size()));
try!(v.write_to_with_cached_sizes(os));
};
if let Some(v) = self.launch.as_ref() {
try!(os.write_tag(4, ::protobuf::wire_format::WireTypeLengthDelimited));
try!(os.write_raw_varint32(v.get_cached_size()));
try!(v.write_to_with_cached_sizes(os));
};
if let Some(v) = self.kill.as_ref() {
try!(os.write_tag(5, ::protobuf::wire_format::WireTypeLengthDelimited));
try!(os.write_raw_varint32(v.get_cached_size()));
try!(v.write_to_with_cached_sizes(os));
};
if let Some(v) = self.message.as_ref() {
try!(os.write_tag(6, ::protobuf::wire_format::WireTypeLengthDelimited));
try!(os.write_raw_varint32(v.get_cached_size()));
try!(v.write_to_with_cached_sizes(os));
};
if let Some(v) = self.error.as_ref() {
try!(os.write_tag(7, ::protobuf::wire_format::WireTypeLengthDelimited));
try!(os.write_raw_varint32(v.get_cached_size()));
try!(v.write_to_with_cached_sizes(os));
};
try!(os.write_unknown_fields(self.get_unknown_fields()));
::std::result::Result::Ok(())
}
fn get_cached_size(&self) -> u32 {
self.cached_size.get()
}
fn get_unknown_fields<'s>(&'s self) -> &'s ::protobuf::UnknownFields {
&self.unknown_fields
}
fn mut_unknown_fields<'s>(&'s mut self) -> &'s mut ::protobuf::UnknownFields {
&mut self.unknown_fields
}
fn type_id(&self) -> ::std::any::TypeId {
::std::any::TypeId::of::<Event>()
}
fn as_any(&self) -> &::std::any::Any {
self as &::std::any::Any
}
fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
::protobuf::MessageStatic::descriptor_static(None::<Self>)
}
}
impl ::protobuf::MessageStatic for Event {
fn new() -> Event {
Event::new()
}
fn descriptor_static(_: ::std::option::Option<Event>) -> &'static ::protobuf::reflect::MessageDescriptor {
static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const ::protobuf::reflect::MessageDescriptor,
};
unsafe {
descriptor.get(|| {
let mut fields = ::std::vec::Vec::new();
fields.push(::protobuf::reflect::accessor::make_singular_enum_accessor(
"field_type",
Event::has_field_type,
Event::get_field_type,
));
fields.push(::protobuf::reflect::accessor::make_singular_message_accessor(
"subscribed",
Event::has_subscribed,
Event::get_subscribed,
));
fields.push(::protobuf::reflect::accessor::make_singular_message_accessor(
"acknowledged",
Event::has_acknowledged,
Event::get_acknowledged,
));
fields.push(::protobuf::reflect::accessor::make_singular_message_accessor(
"launch",
Event::has_launch,
Event::get_launch,
));
fields.push(::protobuf::reflect::accessor::make_singular_message_accessor(
"kill",
Event::has_kill,
Event::get_kill,
));
fields.push(::protobuf::reflect::accessor::make_singular_message_accessor(
"message",
Event::has_message,
Event::get_message,
));
fields.push(::protobuf::reflect::accessor::make_singular_message_accessor(
"error",
Event::has_error,
Event::get_error,
));
::protobuf::reflect::MessageDescriptor::new::<Event>(
"Event",
fields,
file_descriptor_proto()
)
})
}
}
}
impl ::protobuf::Clear for Event {
fn clear(&mut self) {
self.clear_field_type();
self.clear_subscribed();
self.clear_acknowledged();
self.clear_launch();
self.clear_kill();
self.clear_message();
self.clear_error();
self.unknown_fields.clear();
}
}
impl ::std::cmp::PartialEq for Event {
fn eq(&self, other: &Event) -> bool {
self.field_type == other.field_type &&
self.subscribed == other.subscribed &&
self.acknowledged == other.acknowledged &&
self.launch == other.launch &&
self.kill == other.kill &&
self.message == other.message &&
self.error == other.error &&
self.unknown_fields == other.unknown_fields
}
}
impl ::std::fmt::Debug for Event {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
#[derive(Clone,Default)]
pub struct Event_Subscribed {
executor_info: ::protobuf::SingularPtrField<ExecutorInfo>,
framework_info: ::protobuf::SingularPtrField<FrameworkInfo>,
agent_info: ::protobuf::SingularPtrField<AgentInfo>,
unknown_fields: ::protobuf::UnknownFields,
cached_size: ::std::cell::Cell<u32>,
}
impl Event_Subscribed {
pub fn new() -> Event_Subscribed {
::std::default::Default::default()
}
pub fn default_instance() -> &'static Event_Subscribed {
static mut instance: ::protobuf::lazy::Lazy<Event_Subscribed> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const Event_Subscribed,
};
unsafe {
instance.get(|| {
Event_Subscribed {
executor_info: ::protobuf::SingularPtrField::none(),
framework_info: ::protobuf::SingularPtrField::none(),
agent_info: ::protobuf::SingularPtrField::none(),
unknown_fields: ::protobuf::UnknownFields::new(),
cached_size: ::std::cell::Cell::new(0),
}
})
}
}
pub fn clear_executor_info(&mut self) {
self.executor_info.clear();
}
pub fn has_executor_info(&self) -> bool {
self.executor_info.is_some()
}
pub fn set_executor_info(&mut self, v: ExecutorInfo) {
self.executor_info = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_executor_info<'a>(&'a mut self) -> &'a mut ExecutorInfo {
if self.executor_info.is_none() {
self.executor_info.set_default();
};
self.executor_info.as_mut().unwrap()
}
pub fn take_executor_info(&mut self) -> ExecutorInfo {
self.executor_info.take().unwrap_or_else(|| ExecutorInfo::new())
}
pub fn get_executor_info<'a>(&'a self) -> &'a ExecutorInfo {
self.executor_info.as_ref().unwrap_or_else(|| ExecutorInfo::default_instance())
}
pub fn clear_framework_info(&mut self) {
self.framework_info.clear();
}
pub fn has_framework_info(&self) -> bool {
self.framework_info.is_some()
}
pub fn set_framework_info(&mut self, v: FrameworkInfo) {
self.framework_info = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_framework_info<'a>(&'a mut self) -> &'a mut FrameworkInfo {
if self.framework_info.is_none() {
self.framework_info.set_default();
};
self.framework_info.as_mut().unwrap()
}
pub fn take_framework_info(&mut self) -> FrameworkInfo {
self.framework_info.take().unwrap_or_else(|| FrameworkInfo::new())
}
pub fn get_framework_info<'a>(&'a self) -> &'a FrameworkInfo {
self.framework_info.as_ref().unwrap_or_else(|| FrameworkInfo::default_instance())
}
pub fn clear_agent_info(&mut self) {
self.agent_info.clear();
}
pub fn has_agent_info(&self) -> bool {
self.agent_info.is_some()
}
pub fn set_agent_info(&mut self, v: AgentInfo) {
self.agent_info = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_agent_info<'a>(&'a mut self) -> &'a mut AgentInfo {
if self.agent_info.is_none() {
self.agent_info.set_default();
};
self.agent_info.as_mut().unwrap()
}
pub fn take_agent_info(&mut self) -> AgentInfo {
self.agent_info.take().unwrap_or_else(|| AgentInfo::new())
}
pub fn get_agent_info<'a>(&'a self) -> &'a AgentInfo {
self.agent_info.as_ref().unwrap_or_else(|| AgentInfo::default_instance())
}
}
impl ::protobuf::Message for Event_Subscribed {
fn is_initialized(&self) -> bool {
if self.executor_info.is_none() {
return false;
};
if self.framework_info.is_none() {
return false;
};
if self.agent_info.is_none() {
return false;
};
true
}
fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream) -> ::protobuf::ProtobufResult<()> {
while !try!(is.eof()) {
let (field_number, wire_type) = try!(is.read_tag_unpack());
match field_number {
1 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::ProtobufError::WireError("unexpected wire type".to_string()));
};
let tmp = self.executor_info.set_default();
try!(is.merge_message(tmp))
},
2 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::ProtobufError::WireError("unexpected wire type".to_string()));
};
let tmp = self.framework_info.set_default();
try!(is.merge_message(tmp))
},
3 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::ProtobufError::WireError("unexpected wire type".to_string()));
};
let tmp = self.agent_info.set_default();
try!(is.merge_message(tmp))
},
_ => {
let unknown = try!(is.read_unknown(wire_type));
self.mut_unknown_fields().add_value(field_number, unknown);
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u32 {
let mut my_size = 0;
for value in self.executor_info.iter() {
let len = value.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
};
for value in self.framework_info.iter() {
let len = value.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
};
for value in self.agent_info.iter() {
let len = value.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
};
my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields());
self.cached_size.set(my_size);
my_size
}
fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream) -> ::protobuf::ProtobufResult<()> {
if let Some(v) = self.executor_info.as_ref() {
try!(os.write_tag(1, ::protobuf::wire_format::WireTypeLengthDelimited));
try!(os.write_raw_varint32(v.get_cached_size()));
try!(v.write_to_with_cached_sizes(os));
};
if let Some(v) = self.framework_info.as_ref() {
try!(os.write_tag(2, ::protobuf::wire_format::WireTypeLengthDelimited));
try!(os.write_raw_varint32(v.get_cached_size()));
try!(v.write_to_with_cached_sizes(os));
};
if let Some(v) = self.agent_info.as_ref() {
try!(os.write_tag(3, ::protobuf::wire_format::WireTypeLengthDelimited));
try!(os.write_raw_varint32(v.get_cached_size()));
try!(v.write_to_with_cached_sizes(os));
};
try!(os.write_unknown_fields(self.get_unknown_fields()));
::std::result::Result::Ok(())
}
fn get_cached_size(&self) -> u32 {
self.cached_size.get()
}
fn get_unknown_fields<'s>(&'s self) -> &'s ::protobuf::UnknownFields {
&self.unknown_fields
}
fn mut_unknown_fields<'s>(&'s mut self) -> &'s mut ::protobuf::UnknownFields {
&mut self.unknown_fields
}
fn type_id(&self) -> ::std::any::TypeId {
::std::any::TypeId::of::<Event_Subscribed>()
}
fn as_any(&self) -> &::std::any::Any {
self as &::std::any::Any
}
fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
::protobuf::MessageStatic::descriptor_static(None::<Self>)
}
}
impl ::protobuf::MessageStatic for Event_Subscribed {
fn new() -> Event_Subscribed {
Event_Subscribed::new()
}
fn descriptor_static(_: ::std::option::Option<Event_Subscribed>) -> &'static ::protobuf::reflect::MessageDescriptor {
static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const ::protobuf::reflect::MessageDescriptor,
};
unsafe {
descriptor.get(|| {
let mut fields = ::std::vec::Vec::new();
fields.push(::protobuf::reflect::accessor::make_singular_message_accessor(
"executor_info",
Event_Subscribed::has_executor_info,
Event_Subscribed::get_executor_info,
));
fields.push(::protobuf::reflect::accessor::make_singular_message_accessor(
"framework_info",
Event_Subscribed::has_framework_info,
Event_Subscribed::get_framework_info,
));
fields.push(::protobuf::reflect::accessor::make_singular_message_accessor(
"agent_info",
Event_Subscribed::has_agent_info,
Event_Subscribed::get_agent_info,
));
::protobuf::reflect::MessageDescriptor::new::<Event_Subscribed>(
"Event_Subscribed",
fields,
file_descriptor_proto()
)
})
}
}
}
impl ::protobuf::Clear for Event_Subscribed {
fn clear(&mut self) {
self.clear_executor_info();
self.clear_framework_info();
self.clear_agent_info();
self.unknown_fields.clear();
}
}
impl ::std::cmp::PartialEq for Event_Subscribed {
fn eq(&self, other: &Event_Subscribed) -> bool {
self.executor_info == other.executor_info &&
self.framework_info == other.framework_info &&
self.agent_info == other.agent_info &&
self.unknown_fields == other.unknown_fields
}
}
impl ::std::fmt::Debug for Event_Subscribed {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
#[derive(Clone,Default)]
pub struct Event_Launch {
task: ::protobuf::SingularPtrField<TaskInfo>,
unknown_fields: ::protobuf::UnknownFields,
cached_size: ::std::cell::Cell<u32>,
}
impl Event_Launch {
pub fn new() -> Event_Launch {
::std::default::Default::default()
}
pub fn default_instance() -> &'static Event_Launch {
static mut instance: ::protobuf::lazy::Lazy<Event_Launch> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const Event_Launch,
};
unsafe {
instance.get(|| {
Event_Launch {
task: ::protobuf::SingularPtrField::none(),
unknown_fields: ::protobuf::UnknownFields::new(),
cached_size: ::std::cell::Cell::new(0),
}
})
}
}
pub fn clear_task(&mut self) {
self.task.clear();
}
pub fn has_task(&self) -> bool {
self.task.is_some()
}
pub fn set_task(&mut self, v: TaskInfo) {
self.task = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_task<'a>(&'a mut self) -> &'a mut TaskInfo {
if self.task.is_none() {
self.task.set_default();
};
self.task.as_mut().unwrap()
}
pub fn take_task(&mut self) -> TaskInfo {
self.task.take().unwrap_or_else(|| TaskInfo::new())
}
pub fn get_task<'a>(&'a self) -> &'a TaskInfo {
self.task.as_ref().unwrap_or_else(|| TaskInfo::default_instance())
}
}
impl ::protobuf::Message for Event_Launch {
fn is_initialized(&self) -> bool {
if self.task.is_none() {
return false;
};
true
}
fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream) -> ::protobuf::ProtobufResult<()> {
while !try!(is.eof()) {
let (field_number, wire_type) = try!(is.read_tag_unpack());
match field_number {
1 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::ProtobufError::WireError("unexpected wire type".to_string()));
};
let tmp = self.task.set_default();
try!(is.merge_message(tmp))
},
_ => {
let unknown = try!(is.read_unknown(wire_type));
self.mut_unknown_fields().add_value(field_number, unknown);
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u32 {
let mut my_size = 0;
for value in self.task.iter() {
let len = value.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
};
my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields());
self.cached_size.set(my_size);
my_size
}
fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream) -> ::protobuf::ProtobufResult<()> {
if let Some(v) = self.task.as_ref() {
try!(os.write_tag(1, ::protobuf::wire_format::WireTypeLengthDelimited));
try!(os.write_raw_varint32(v.get_cached_size()));
try!(v.write_to_with_cached_sizes(os));
};
try!(os.write_unknown_fields(self.get_unknown_fields()));
::std::result::Result::Ok(())
}
fn get_cached_size(&self) -> u32 {
self.cached_size.get()
}
fn get_unknown_fields<'s>(&'s self) -> &'s ::protobuf::UnknownFields {
&self.unknown_fields
}
fn mut_unknown_fields<'s>(&'s mut self) -> &'s mut ::protobuf::UnknownFields {
&mut self.unknown_fields
}
fn type_id(&self) -> ::std::any::TypeId {
::std::any::TypeId::of::<Event_Launch>()
}
fn as_any(&self) -> &::std::any::Any {
self as &::std::any::Any
}
fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
::protobuf::MessageStatic::descriptor_static(None::<Self>)
}
}
impl ::protobuf::MessageStatic for Event_Launch {
fn new() -> Event_Launch {
Event_Launch::new()
}
fn descriptor_static(_: ::std::option::Option<Event_Launch>) -> &'static ::protobuf::reflect::MessageDescriptor {
static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const ::protobuf::reflect::MessageDescriptor,
};
unsafe {
descriptor.get(|| {
let mut fields = ::std::vec::Vec::new();
fields.push(::protobuf::reflect::accessor::make_singular_message_accessor(
"task",
Event_Launch::has_task,
Event_Launch::get_task,
));
::protobuf::reflect::MessageDescriptor::new::<Event_Launch>(
"Event_Launch",
fields,
file_descriptor_proto()
)
})
}
}
}
impl ::protobuf::Clear for Event_Launch {
fn clear(&mut self) {
self.clear_task();
self.unknown_fields.clear();
}
}
impl ::std::cmp::PartialEq for Event_Launch {
fn eq(&self, other: &Event_Launch) -> bool {
self.task == other.task &&
self.unknown_fields == other.unknown_fields
}
}
impl ::std::fmt::Debug for Event_Launch {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
#[derive(Clone,Default)]
pub struct Event_Kill {
task_id: ::protobuf::SingularPtrField<TaskID>,
unknown_fields: ::protobuf::UnknownFields,
cached_size: ::std::cell::Cell<u32>,
}
impl Event_Kill {
pub fn new() -> Event_Kill {
::std::default::Default::default()
}
pub fn default_instance() -> &'static Event_Kill {
static mut instance: ::protobuf::lazy::Lazy<Event_Kill> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const Event_Kill,
};
unsafe {
instance.get(|| {
Event_Kill {
task_id: ::protobuf::SingularPtrField::none(),
unknown_fields: ::protobuf::UnknownFields::new(),
cached_size: ::std::cell::Cell::new(0),
}
})
}
}
pub fn clear_task_id(&mut self) {
self.task_id.clear();
}
pub fn has_task_id(&self) -> bool {
self.task_id.is_some()
}
pub fn set_task_id(&mut self, v: TaskID) {
self.task_id = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_task_id<'a>(&'a mut self) -> &'a mut TaskID {
if self.task_id.is_none() {
self.task_id.set_default();
};
self.task_id.as_mut().unwrap()
}
pub fn take_task_id(&mut self) -> TaskID {
self.task_id.take().unwrap_or_else(|| TaskID::new())
}
pub fn get_task_id<'a>(&'a self) -> &'a TaskID {
self.task_id.as_ref().unwrap_or_else(|| TaskID::default_instance())
}
}
impl ::protobuf::Message for Event_Kill {
fn is_initialized(&self) -> bool {
if self.task_id.is_none() {
return false;
};
true
}
fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream) -> ::protobuf::ProtobufResult<()> {
while !try!(is.eof()) {
let (field_number, wire_type) = try!(is.read_tag_unpack());
match field_number {
1 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::ProtobufError::WireError("unexpected wire type".to_string()));
};
let tmp = self.task_id.set_default();
try!(is.merge_message(tmp))
},
_ => {
let unknown = try!(is.read_unknown(wire_type));
self.mut_unknown_fields().add_value(field_number, unknown);
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u32 {
let mut my_size = 0;
for value in self.task_id.iter() {
let len = value.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
};
my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields());
self.cached_size.set(my_size);
my_size
}
fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream) -> ::protobuf::ProtobufResult<()> {
if let Some(v) = self.task_id.as_ref() {
try!(os.write_tag(1, ::protobuf::wire_format::WireTypeLengthDelimited));
try!(os.write_raw_varint32(v.get_cached_size()));
try!(v.write_to_with_cached_sizes(os));
};
try!(os.write_unknown_fields(self.get_unknown_fields()));
::std::result::Result::Ok(())
}
fn get_cached_size(&self) -> u32 {
self.cached_size.get()
}
fn get_unknown_fields<'s>(&'s self) -> &'s ::protobuf::UnknownFields {
&self.unknown_fields
}
fn mut_unknown_fields<'s>(&'s mut self) -> &'s mut ::protobuf::UnknownFields {
&mut self.unknown_fields
}
fn type_id(&self) -> ::std::any::TypeId {
::std::any::TypeId::of::<Event_Kill>()
}
fn as_any(&self) -> &::std::any::Any {
self as &::std::any::Any
}
fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
::protobuf::MessageStatic::descriptor_static(None::<Self>)
}
}
impl ::protobuf::MessageStatic for Event_Kill {
fn new() -> Event_Kill {
Event_Kill::new()
}
fn descriptor_static(_: ::std::option::Option<Event_Kill>) -> &'static ::protobuf::reflect::MessageDescriptor {
static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const ::protobuf::reflect::MessageDescriptor,
};
unsafe {
descriptor.get(|| {
let mut fields = ::std::vec::Vec::new();
fields.push(::protobuf::reflect::accessor::make_singular_message_accessor(
"task_id",
Event_Kill::has_task_id,
Event_Kill::get_task_id,
));
::protobuf::reflect::MessageDescriptor::new::<Event_Kill>(
"Event_Kill",
fields,
file_descriptor_proto()
)
})
}
}
}
impl ::protobuf::Clear for Event_Kill {
fn clear(&mut self) {
self.clear_task_id();
self.unknown_fields.clear();
}
}
impl ::std::cmp::PartialEq for Event_Kill {
fn eq(&self, other: &Event_Kill) -> bool {
self.task_id == other.task_id &&
self.unknown_fields == other.unknown_fields
}
}
impl ::std::fmt::Debug for Event_Kill {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
#[derive(Clone,Default)]
pub struct Event_Acknowledged {
task_id: ::protobuf::SingularPtrField<TaskID>,
uuid: ::protobuf::SingularField<::std::vec::Vec<u8>>,
unknown_fields: ::protobuf::UnknownFields,
cached_size: ::std::cell::Cell<u32>,
}
impl Event_Acknowledged {
pub fn new() -> Event_Acknowledged {
::std::default::Default::default()
}
pub fn default_instance() -> &'static Event_Acknowledged {
static mut instance: ::protobuf::lazy::Lazy<Event_Acknowledged> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const Event_Acknowledged,
};
unsafe {
instance.get(|| {
Event_Acknowledged {
task_id: ::protobuf::SingularPtrField::none(),
uuid: ::protobuf::SingularField::none(),
unknown_fields: ::protobuf::UnknownFields::new(),
cached_size: ::std::cell::Cell::new(0),
}
})
}
}
pub fn clear_task_id(&mut self) {
self.task_id.clear();
}
pub fn has_task_id(&self) -> bool {
self.task_id.is_some()
}
pub fn set_task_id(&mut self, v: TaskID) {
self.task_id = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_task_id<'a>(&'a mut self) -> &'a mut TaskID {
if self.task_id.is_none() {
self.task_id.set_default();
};
self.task_id.as_mut().unwrap()
}
pub fn take_task_id(&mut self) -> TaskID {
self.task_id.take().unwrap_or_else(|| TaskID::new())
}
pub fn get_task_id<'a>(&'a self) -> &'a TaskID {
self.task_id.as_ref().unwrap_or_else(|| TaskID::default_instance())
}
pub fn clear_uuid(&mut self) {
self.uuid.clear();
}
pub fn has_uuid(&self) -> bool {
self.uuid.is_some()
}
pub fn set_uuid(&mut self, v: ::std::vec::Vec<u8>) {
self.uuid = ::protobuf::SingularField::some(v);
}
pub fn mut_uuid<'a>(&'a mut self) -> &'a mut ::std::vec::Vec<u8> {
if self.uuid.is_none() {
self.uuid.set_default();
};
self.uuid.as_mut().unwrap()
}
pub fn take_uuid(&mut self) -> ::std::vec::Vec<u8> {
self.uuid.take().unwrap_or_else(|| ::std::vec::Vec::new())
}
pub fn get_uuid<'a>(&'a self) -> &'a [u8] {
match self.uuid.as_ref() {
Some(v) => &v,
None => &[],
}
}
}
impl ::protobuf::Message for Event_Acknowledged {
fn is_initialized(&self) -> bool {
if self.task_id.is_none() {
return false;
};
if self.uuid.is_none() {
return false;
};
true
}
fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream) -> ::protobuf::ProtobufResult<()> {
while !try!(is.eof()) {
let (field_number, wire_type) = try!(is.read_tag_unpack());
match field_number {
1 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::ProtobufError::WireError("unexpected wire type".to_string()));
};
let tmp = self.task_id.set_default();
try!(is.merge_message(tmp))
},
2 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::ProtobufError::WireError("unexpected wire type".to_string()));
};
let tmp = self.uuid.set_default();
try!(is.read_bytes_into(tmp))
},
_ => {
let unknown = try!(is.read_unknown(wire_type));
self.mut_unknown_fields().add_value(field_number, unknown);
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u32 {
let mut my_size = 0;
for value in self.task_id.iter() {
let len = value.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
};
for value in self.uuid.iter() {
my_size += ::protobuf::rt::bytes_size(2, &value);
};
my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields());
self.cached_size.set(my_size);
my_size
}
fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream) -> ::protobuf::ProtobufResult<()> {
if let Some(v) = self.task_id.as_ref() {
try!(os.write_tag(1, ::protobuf::wire_format::WireTypeLengthDelimited));
try!(os.write_raw_varint32(v.get_cached_size()));
try!(v.write_to_with_cached_sizes(os));
};
if let Some(v) = self.uuid.as_ref() {
try!(os.write_bytes(2, &v));
};
try!(os.write_unknown_fields(self.get_unknown_fields()));
::std::result::Result::Ok(())
}
fn get_cached_size(&self) -> u32 {
self.cached_size.get()
}
fn get_unknown_fields<'s>(&'s self) -> &'s ::protobuf::UnknownFields {
&self.unknown_fields
}
fn mut_unknown_fields<'s>(&'s mut self) -> &'s mut ::protobuf::UnknownFields {
&mut self.unknown_fields
}
fn type_id(&self) -> ::std::any::TypeId {
::std::any::TypeId::of::<Event_Acknowledged>()
}
fn as_any(&self) -> &::std::any::Any {
self as &::std::any::Any
}
fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
::protobuf::MessageStatic::descriptor_static(None::<Self>)
}
}
impl ::protobuf::MessageStatic for Event_Acknowledged {
fn new() -> Event_Acknowledged {
Event_Acknowledged::new()
}
fn descriptor_static(_: ::std::option::Option<Event_Acknowledged>) -> &'static ::protobuf::reflect::MessageDescriptor {
static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const ::protobuf::reflect::MessageDescriptor,
};
unsafe {
descriptor.get(|| {
let mut fields = ::std::vec::Vec::new();
fields.push(::protobuf::reflect::accessor::make_singular_message_accessor(
"task_id",
Event_Acknowledged::has_task_id,
Event_Acknowledged::get_task_id,
));
fields.push(::protobuf::reflect::accessor::make_singular_bytes_accessor(
"uuid",
Event_Acknowledged::has_uuid,
Event_Acknowledged::get_uuid,
));
::protobuf::reflect::MessageDescriptor::new::<Event_Acknowledged>(
"Event_Acknowledged",
fields,
file_descriptor_proto()
)
})
}
}
}
impl ::protobuf::Clear for Event_Acknowledged {
fn clear(&mut self) {
self.clear_task_id();
self.clear_uuid();
self.unknown_fields.clear();
}
}
impl ::std::cmp::PartialEq for Event_Acknowledged {
fn eq(&self, other: &Event_Acknowledged) -> bool {
self.task_id == other.task_id &&
self.uuid == other.uuid &&
self.unknown_fields == other.unknown_fields
}
}
impl ::std::fmt::Debug for Event_Acknowledged {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
#[derive(Clone,Default)]
pub struct Event_Message {
data: ::protobuf::SingularField<::std::vec::Vec<u8>>,
unknown_fields: ::protobuf::UnknownFields,
cached_size: ::std::cell::Cell<u32>,
}
impl Event_Message {
pub fn new() -> Event_Message {
::std::default::Default::default()
}
pub fn default_instance() -> &'static Event_Message {
static mut instance: ::protobuf::lazy::Lazy<Event_Message> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const Event_Message,
};
unsafe {
instance.get(|| {
Event_Message {
data: ::protobuf::SingularField::none(),
unknown_fields: ::protobuf::UnknownFields::new(),
cached_size: ::std::cell::Cell::new(0),
}
})
}
}
pub fn clear_data(&mut self) {
self.data.clear();
}
pub fn has_data(&self) -> bool {
self.data.is_some()
}
pub fn set_data(&mut self, v: ::std::vec::Vec<u8>) {
self.data = ::protobuf::SingularField::some(v);
}
pub fn mut_data<'a>(&'a mut self) -> &'a mut ::std::vec::Vec<u8> {
if self.data.is_none() {
self.data.set_default();
};
self.data.as_mut().unwrap()
}
pub fn take_data(&mut self) -> ::std::vec::Vec<u8> {
self.data.take().unwrap_or_else(|| ::std::vec::Vec::new())
}
pub fn get_data<'a>(&'a self) -> &'a [u8] {
match self.data.as_ref() {
Some(v) => &v,
None => &[],
}
}
}
impl ::protobuf::Message for Event_Message {
fn is_initialized(&self) -> bool {
if self.data.is_none() {
return false;
};
true
}
fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream) -> ::protobuf::ProtobufResult<()> {
while !try!(is.eof()) {
let (field_number, wire_type) = try!(is.read_tag_unpack());
match field_number {
1 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::ProtobufError::WireError("unexpected wire type".to_string()));
};
let tmp = self.data.set_default();
try!(is.read_bytes_into(tmp))
},
_ => {
let unknown = try!(is.read_unknown(wire_type));
self.mut_unknown_fields().add_value(field_number, unknown);
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u32 {
let mut my_size = 0;
for value in self.data.iter() {
my_size += ::protobuf::rt::bytes_size(1, &value);
};
my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields());
self.cached_size.set(my_size);
my_size
}
fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream) -> ::protobuf::ProtobufResult<()> {
if let Some(v) = self.data.as_ref() {
try!(os.write_bytes(1, &v));
};
try!(os.write_unknown_fields(self.get_unknown_fields()));
::std::result::Result::Ok(())
}
fn get_cached_size(&self) -> u32 {
self.cached_size.get()
}
fn get_unknown_fields<'s>(&'s self) -> &'s ::protobuf::UnknownFields {
&self.unknown_fields
}
fn mut_unknown_fields<'s>(&'s mut self) -> &'s mut ::protobuf::UnknownFields {
&mut self.unknown_fields
}
fn type_id(&self) -> ::std::any::TypeId {
::std::any::TypeId::of::<Event_Message>()
}
fn as_any(&self) -> &::std::any::Any {
self as &::std::any::Any
}
fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
::protobuf::MessageStatic::descriptor_static(None::<Self>)
}
}
impl ::protobuf::MessageStatic for Event_Message {
fn new() -> Event_Message {
Event_Message::new()
}
fn descriptor_static(_: ::std::option::Option<Event_Message>) -> &'static ::protobuf::reflect::MessageDescriptor {
static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const ::protobuf::reflect::MessageDescriptor,
};
unsafe {
descriptor.get(|| {
let mut fields = ::std::vec::Vec::new();
fields.push(::protobuf::reflect::accessor::make_singular_bytes_accessor(
"data",
Event_Message::has_data,
Event_Message::get_data,
));
::protobuf::reflect::MessageDescriptor::new::<Event_Message>(
"Event_Message",
fields,
file_descriptor_proto()
)
})
}
}
}
impl ::protobuf::Clear for Event_Message {
fn clear(&mut self) {
self.clear_data();
self.unknown_fields.clear();
}
}
impl ::std::cmp::PartialEq for Event_Message {
fn eq(&self, other: &Event_Message) -> bool {
self.data == other.data &&
self.unknown_fields == other.unknown_fields
}
}
impl ::std::fmt::Debug for Event_Message {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
#[derive(Clone,Default)]
pub struct Event_Error {
message: ::protobuf::SingularField<::std::string::String>,
unknown_fields: ::protobuf::UnknownFields,
cached_size: ::std::cell::Cell<u32>,
}
impl Event_Error {
pub fn new() -> Event_Error {
::std::default::Default::default()
}
pub fn default_instance() -> &'static Event_Error {
static mut instance: ::protobuf::lazy::Lazy<Event_Error> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const Event_Error,
};
unsafe {
instance.get(|| {
Event_Error {
message: ::protobuf::SingularField::none(),
unknown_fields: ::protobuf::UnknownFields::new(),
cached_size: ::std::cell::Cell::new(0),
}
})
}
}
pub fn clear_message(&mut self) {
self.message.clear();
}
pub fn has_message(&self) -> bool {
self.message.is_some()
}
pub fn set_message(&mut self, v: ::std::string::String) {
self.message = ::protobuf::SingularField::some(v);
}
pub fn mut_message<'a>(&'a mut self) -> &'a mut ::std::string::String {
if self.message.is_none() {
self.message.set_default();
};
self.message.as_mut().unwrap()
}
pub fn take_message(&mut self) -> ::std::string::String {
self.message.take().unwrap_or_else(|| ::std::string::String::new())
}
pub fn get_message<'a>(&'a self) -> &'a str {
match self.message.as_ref() {
Some(v) => &v,
None => "",
}
}
}
impl ::protobuf::Message for Event_Error {
fn is_initialized(&self) -> bool {
if self.message.is_none() {
return false;
};
true
}
fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream) -> ::protobuf::ProtobufResult<()> {
while !try!(is.eof()) {
let (field_number, wire_type) = try!(is.read_tag_unpack());
match field_number {
1 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::ProtobufError::WireError("unexpected wire type".to_string()));
};
let tmp = self.message.set_default();
try!(is.read_string_into(tmp))
},
_ => {
let unknown = try!(is.read_unknown(wire_type));
self.mut_unknown_fields().add_value(field_number, unknown);
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u32 {
let mut my_size = 0;
for value in self.message.iter() {
my_size += ::protobuf::rt::string_size(1, &value);
};
my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields());
self.cached_size.set(my_size);
my_size
}
fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream) -> ::protobuf::ProtobufResult<()> {
if let Some(v) = self.message.as_ref() {
try!(os.write_string(1, &v));
};
try!(os.write_unknown_fields(self.get_unknown_fields()));
::std::result::Result::Ok(())
}
fn get_cached_size(&self) -> u32 {
self.cached_size.get()
}
fn get_unknown_fields<'s>(&'s self) -> &'s ::protobuf::UnknownFields {
&self.unknown_fields
}
fn mut_unknown_fields<'s>(&'s mut self) -> &'s mut ::protobuf::UnknownFields {
&mut self.unknown_fields
}
fn type_id(&self) -> ::std::any::TypeId {
::std::any::TypeId::of::<Event_Error>()
}
fn as_any(&self) -> &::std::any::Any {
self as &::std::any::Any
}
fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
::protobuf::MessageStatic::descriptor_static(None::<Self>)
}
}
impl ::protobuf::MessageStatic for Event_Error {
fn new() -> Event_Error {
Event_Error::new()
}
fn descriptor_static(_: ::std::option::Option<Event_Error>) -> &'static ::protobuf::reflect::MessageDescriptor {
static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const ::protobuf::reflect::MessageDescriptor,
};
unsafe {
descriptor.get(|| {
let mut fields = ::std::vec::Vec::new();
fields.push(::protobuf::reflect::accessor::make_singular_string_accessor(
"message",
Event_Error::has_message,
Event_Error::get_message,
));
::protobuf::reflect::MessageDescriptor::new::<Event_Error>(
"Event_Error",
fields,
file_descriptor_proto()
)
})
}
}
}
impl ::protobuf::Clear for Event_Error {
fn clear(&mut self) {
self.clear_message();
self.unknown_fields.clear();
}
}
impl ::std::cmp::PartialEq for Event_Error {
fn eq(&self, other: &Event_Error) -> bool {
self.message == other.message &&
self.unknown_fields == other.unknown_fields
}
}
impl ::std::fmt::Debug for Event_Error {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
#[derive(Clone,PartialEq,Eq,Debug,Hash)]
pub enum Event_Type {
SUBSCRIBED = 1,
LAUNCH = 2,
KILL = 3,
ACKNOWLEDGED = 4,
MESSAGE = 5,
SHUTDOWN = 6,
ERROR = 7,
}
impl ::protobuf::ProtobufEnum for Event_Type {
fn value(&self) -> i32 {
*self as i32
}
fn from_i32(value: i32) -> ::std::option::Option<Event_Type> {
match value {
1 => ::std::option::Option::Some(Event_Type::SUBSCRIBED),
2 => ::std::option::Option::Some(Event_Type::LAUNCH),
3 => ::std::option::Option::Some(Event_Type::KILL),
4 => ::std::option::Option::Some(Event_Type::ACKNOWLEDGED),
5 => ::std::option::Option::Some(Event_Type::MESSAGE),
6 => ::std::option::Option::Some(Event_Type::SHUTDOWN),
7 => ::std::option::Option::Some(Event_Type::ERROR),
_ => ::std::option::Option::None
}
}
fn enum_descriptor_static(_: Option<Event_Type>) -> &'static ::protobuf::reflect::EnumDescriptor {
static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::EnumDescriptor> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const ::protobuf::reflect::EnumDescriptor,
};
unsafe {
descriptor.get(|| {
::protobuf::reflect::EnumDescriptor::new("Event_Type", file_descriptor_proto())
})
}
}
}
impl ::std::marker::Copy for Event_Type {
}
#[derive(Clone,Default)]
pub struct Call {
executor_id: ::protobuf::SingularPtrField<ExecutorID>,
framework_id: ::protobuf::SingularPtrField<FrameworkID>,
field_type: ::std::option::Option<Call_Type>,
subscribe: ::protobuf::SingularPtrField<Call_Subscribe>,
update: ::protobuf::SingularPtrField<Call_Update>,
message: ::protobuf::SingularPtrField<Call_Message>,
unknown_fields: ::protobuf::UnknownFields,
cached_size: ::std::cell::Cell<u32>,
}
impl Call {
pub fn new() -> Call {
::std::default::Default::default()
}
pub fn default_instance() -> &'static Call {
static mut instance: ::protobuf::lazy::Lazy<Call> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const Call,
};
unsafe {
instance.get(|| {
Call {
executor_id: ::protobuf::SingularPtrField::none(),
framework_id: ::protobuf::SingularPtrField::none(),
field_type: ::std::option::Option::None,
subscribe: ::protobuf::SingularPtrField::none(),
update: ::protobuf::SingularPtrField::none(),
message: ::protobuf::SingularPtrField::none(),
unknown_fields: ::protobuf::UnknownFields::new(),
cached_size: ::std::cell::Cell::new(0),
}
})
}
}
pub fn clear_executor_id(&mut self) {
self.executor_id.clear();
}
pub fn has_executor_id(&self) -> bool {
self.executor_id.is_some()
}
pub fn set_executor_id(&mut self, v: ExecutorID) {
self.executor_id = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_executor_id<'a>(&'a mut self) -> &'a mut ExecutorID {
if self.executor_id.is_none() {
self.executor_id.set_default();
};
self.executor_id.as_mut().unwrap()
}
pub fn take_executor_id(&mut self) -> ExecutorID {
self.executor_id.take().unwrap_or_else(|| ExecutorID::new())
}
pub fn get_executor_id<'a>(&'a self) -> &'a ExecutorID {
self.executor_id.as_ref().unwrap_or_else(|| ExecutorID::default_instance())
}
pub fn clear_framework_id(&mut self) {
self.framework_id.clear();
}
pub fn has_framework_id(&self) -> bool {
self.framework_id.is_some()
}
pub fn set_framework_id(&mut self, v: FrameworkID) {
self.framework_id = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_framework_id<'a>(&'a mut self) -> &'a mut FrameworkID {
if self.framework_id.is_none() {
self.framework_id.set_default();
};
self.framework_id.as_mut().unwrap()
}
pub fn take_framework_id(&mut self) -> FrameworkID {
self.framework_id.take().unwrap_or_else(|| FrameworkID::new())
}
pub fn get_framework_id<'a>(&'a self) -> &'a FrameworkID {
self.framework_id.as_ref().unwrap_or_else(|| FrameworkID::default_instance())
}
pub fn clear_field_type(&mut self) {
self.field_type = ::std::option::Option::None;
}
pub fn has_field_type(&self) -> bool {
self.field_type.is_some()
}
pub fn set_field_type(&mut self, v: Call_Type) {
self.field_type = ::std::option::Option::Some(v);
}
pub fn get_field_type<'a>(&self) -> Call_Type {
self.field_type.unwrap_or(Call_Type::SUBSCRIBE)
}
pub fn clear_subscribe(&mut self) {
self.subscribe.clear();
}
pub fn has_subscribe(&self) -> bool {
self.subscribe.is_some()
}
pub fn set_subscribe(&mut self, v: Call_Subscribe) {
self.subscribe = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_subscribe<'a>(&'a mut self) -> &'a mut Call_Subscribe {
if self.subscribe.is_none() {
self.subscribe.set_default();
};
self.subscribe.as_mut().unwrap()
}
pub fn take_subscribe(&mut self) -> Call_Subscribe {
self.subscribe.take().unwrap_or_else(|| Call_Subscribe::new())
}
pub fn get_subscribe<'a>(&'a self) -> &'a Call_Subscribe {
self.subscribe.as_ref().unwrap_or_else(|| Call_Subscribe::default_instance())
}
pub fn clear_update(&mut self) {
self.update.clear();
}
pub fn has_update(&self) -> bool {
self.update.is_some()
}
pub fn set_update(&mut self, v: Call_Update) {
self.update = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_update<'a>(&'a mut self) -> &'a mut Call_Update {
if self.update.is_none() {
self.update.set_default();
};
self.update.as_mut().unwrap()
}
pub fn take_update(&mut self) -> Call_Update {
self.update.take().unwrap_or_else(|| Call_Update::new())
}
pub fn get_update<'a>(&'a self) -> &'a Call_Update {
self.update.as_ref().unwrap_or_else(|| Call_Update::default_instance())
}
pub fn clear_message(&mut self) {
self.message.clear();
}
pub fn has_message(&self) -> bool {
self.message.is_some()
}
pub fn set_message(&mut self, v: Call_Message) {
self.message = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_message<'a>(&'a mut self) -> &'a mut Call_Message {
if self.message.is_none() {
self.message.set_default();
};
self.message.as_mut().unwrap()
}
pub fn take_message(&mut self) -> Call_Message {
self.message.take().unwrap_or_else(|| Call_Message::new())
}
pub fn get_message<'a>(&'a self) -> &'a Call_Message {
self.message.as_ref().unwrap_or_else(|| Call_Message::default_instance())
}
}
impl ::protobuf::Message for Call {
fn is_initialized(&self) -> bool {
if self.executor_id.is_none() {
return false;
};
if self.framework_id.is_none() {
return false;
};
if self.field_type.is_none() {
return false;
};
true
}
fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream) -> ::protobuf::ProtobufResult<()> {
while !try!(is.eof()) {
let (field_number, wire_type) = try!(is.read_tag_unpack());
match field_number {
1 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::ProtobufError::WireError("unexpected wire type".to_string()));
};
let tmp = self.executor_id.set_default();
try!(is.merge_message(tmp))
},
2 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::ProtobufError::WireError("unexpected wire type".to_string()));
};
let tmp = self.framework_id.set_default();
try!(is.merge_message(tmp))
},
3 => {
if wire_type != ::protobuf::wire_format::WireTypeVarint {
return ::std::result::Result::Err(::protobuf::ProtobufError::WireError("unexpected wire type".to_string()));
};
let tmp = try!(is.read_enum());
self.field_type = ::std::option::Option::Some(tmp);
},
4 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::ProtobufError::WireError("unexpected wire type".to_string()));
};
let tmp = self.subscribe.set_default();
try!(is.merge_message(tmp))
},
5 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::ProtobufError::WireError("unexpected wire type".to_string()));
};
let tmp = self.update.set_default();
try!(is.merge_message(tmp))
},
6 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::ProtobufError::WireError("unexpected wire type".to_string()));
};
let tmp = self.message.set_default();
try!(is.merge_message(tmp))
},
_ => {
let unknown = try!(is.read_unknown(wire_type));
self.mut_unknown_fields().add_value(field_number, unknown);
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u32 {
let mut my_size = 0;
for value in self.executor_id.iter() {
let len = value.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
};
for value in self.framework_id.iter() {
let len = value.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
};
for value in self.field_type.iter() {
my_size += ::protobuf::rt::enum_size(3, *value);
};
for value in self.subscribe.iter() {
let len = value.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
};
for value in self.update.iter() {
let len = value.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
};
for value in self.message.iter() {
let len = value.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
};
my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields());
self.cached_size.set(my_size);
my_size
}
fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream) -> ::protobuf::ProtobufResult<()> {
if let Some(v) = self.executor_id.as_ref() {
try!(os.write_tag(1, ::protobuf::wire_format::WireTypeLengthDelimited));
try!(os.write_raw_varint32(v.get_cached_size()));
try!(v.write_to_with_cached_sizes(os));
};
if let Some(v) = self.framework_id.as_ref() {
try!(os.write_tag(2, ::protobuf::wire_format::WireTypeLengthDelimited));
try!(os.write_raw_varint32(v.get_cached_size()));
try!(v.write_to_with_cached_sizes(os));
};
if let Some(v) = self.field_type {
try!(os.write_enum(3, v as i32));
};
if let Some(v) = self.subscribe.as_ref() {
try!(os.write_tag(4, ::protobuf::wire_format::WireTypeLengthDelimited));
try!(os.write_raw_varint32(v.get_cached_size()));
try!(v.write_to_with_cached_sizes(os));
};
if let Some(v) = self.update.as_ref() {
try!(os.write_tag(5, ::protobuf::wire_format::WireTypeLengthDelimited));
try!(os.write_raw_varint32(v.get_cached_size()));
try!(v.write_to_with_cached_sizes(os));
};
if let Some(v) = self.message.as_ref() {
try!(os.write_tag(6, ::protobuf::wire_format::WireTypeLengthDelimited));
try!(os.write_raw_varint32(v.get_cached_size()));
try!(v.write_to_with_cached_sizes(os));
};
try!(os.write_unknown_fields(self.get_unknown_fields()));
::std::result::Result::Ok(())
}
fn get_cached_size(&self) -> u32 {
self.cached_size.get()
}
fn get_unknown_fields<'s>(&'s self) -> &'s ::protobuf::UnknownFields {
&self.unknown_fields
}
fn mut_unknown_fields<'s>(&'s mut self) -> &'s mut ::protobuf::UnknownFields {
&mut self.unknown_fields
}
fn type_id(&self) -> ::std::any::TypeId {
::std::any::TypeId::of::<Call>()
}
fn as_any(&self) -> &::std::any::Any {
self as &::std::any::Any
}
fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
::protobuf::MessageStatic::descriptor_static(None::<Self>)
}
}
impl ::protobuf::MessageStatic for Call {
fn new() -> Call {
Call::new()
}
fn descriptor_static(_: ::std::option::Option<Call>) -> &'static ::protobuf::reflect::MessageDescriptor {
static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const ::protobuf::reflect::MessageDescriptor,
};
unsafe {
descriptor.get(|| {
let mut fields = ::std::vec::Vec::new();
fields.push(::protobuf::reflect::accessor::make_singular_message_accessor(
"executor_id",
Call::has_executor_id,
Call::get_executor_id,
));
fields.push(::protobuf::reflect::accessor::make_singular_message_accessor(
"framework_id",
Call::has_framework_id,
Call::get_framework_id,
));
fields.push(::protobuf::reflect::accessor::make_singular_enum_accessor(
"field_type",
Call::has_field_type,
Call::get_field_type,
));
fields.push(::protobuf::reflect::accessor::make_singular_message_accessor(
"subscribe",
Call::has_subscribe,
Call::get_subscribe,
));
fields.push(::protobuf::reflect::accessor::make_singular_message_accessor(
"update",
Call::has_update,
Call::get_update,
));
fields.push(::protobuf::reflect::accessor::make_singular_message_accessor(
"message",
Call::has_message,
Call::get_message,
));
::protobuf::reflect::MessageDescriptor::new::<Call>(
"Call",
fields,
file_descriptor_proto()
)
})
}
}
}
impl ::protobuf::Clear for Call {
fn clear(&mut self) {
self.clear_executor_id();
self.clear_framework_id();
self.clear_field_type();
self.clear_subscribe();
self.clear_update();
self.clear_message();
self.unknown_fields.clear();
}
}
impl ::std::cmp::PartialEq for Call {
fn eq(&self, other: &Call) -> bool {
self.executor_id == other.executor_id &&
self.framework_id == other.framework_id &&
self.field_type == other.field_type &&
self.subscribe == other.subscribe &&
self.update == other.update &&
self.message == other.message &&
self.unknown_fields == other.unknown_fields
}
}
impl ::std::fmt::Debug for Call {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
#[derive(Clone,Default)]
pub struct Call_Subscribe {
tasks: ::protobuf::RepeatedField<TaskInfo>,
updates: ::protobuf::RepeatedField<Call_Update>,
unknown_fields: ::protobuf::UnknownFields,
cached_size: ::std::cell::Cell<u32>,
}
impl Call_Subscribe {
pub fn new() -> Call_Subscribe {
::std::default::Default::default()
}
pub fn default_instance() -> &'static Call_Subscribe {
static mut instance: ::protobuf::lazy::Lazy<Call_Subscribe> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const Call_Subscribe,
};
unsafe {
instance.get(|| {
Call_Subscribe {
tasks: ::protobuf::RepeatedField::new(),
updates: ::protobuf::RepeatedField::new(),
unknown_fields: ::protobuf::UnknownFields::new(),
cached_size: ::std::cell::Cell::new(0),
}
})
}
}
pub fn clear_tasks(&mut self) {
self.tasks.clear();
}
pub fn set_tasks(&mut self, v: ::protobuf::RepeatedField<TaskInfo>) {
self.tasks = v;
}
pub fn mut_tasks<'a>(&'a mut self) -> &'a mut ::protobuf::RepeatedField<TaskInfo> {
&mut self.tasks
}
pub fn take_tasks(&mut self) -> ::protobuf::RepeatedField<TaskInfo> {
::std::mem::replace(&mut self.tasks, ::protobuf::RepeatedField::new())
}
pub fn get_tasks<'a>(&'a self) -> &'a [TaskInfo] {
&self.tasks
}
pub fn clear_updates(&mut self) {
self.updates.clear();
}
pub fn set_updates(&mut self, v: ::protobuf::RepeatedField<Call_Update>) {
self.updates = v;
}
pub fn mut_updates<'a>(&'a mut self) -> &'a mut ::protobuf::RepeatedField<Call_Update> {
&mut self.updates
}
pub fn take_updates(&mut self) -> ::protobuf::RepeatedField<Call_Update> {
::std::mem::replace(&mut self.updates, ::protobuf::RepeatedField::new())
}
pub fn get_updates<'a>(&'a self) -> &'a [Call_Update] {
&self.updates
}
}
impl ::protobuf::Message for Call_Subscribe {
fn is_initialized(&self) -> bool {
true
}
fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream) -> ::protobuf::ProtobufResult<()> {
while !try!(is.eof()) {
let (field_number, wire_type) = try!(is.read_tag_unpack());
match field_number {
1 => {
try!(::protobuf::rt::read_repeated_message_into(wire_type, is, &mut self.tasks));
},
2 => {
try!(::protobuf::rt::read_repeated_message_into(wire_type, is, &mut self.updates));
},
_ => {
let unknown = try!(is.read_unknown(wire_type));
self.mut_unknown_fields().add_value(field_number, unknown);
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u32 {
let mut my_size = 0;
for value in self.tasks.iter() {
let len = value.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
};
for value in self.updates.iter() {
let len = value.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
};
my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields());
self.cached_size.set(my_size);
my_size
}
fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream) -> ::protobuf::ProtobufResult<()> {
for v in self.tasks.iter() {
try!(os.write_tag(1, ::protobuf::wire_format::WireTypeLengthDelimited));
try!(os.write_raw_varint32(v.get_cached_size()));
try!(v.write_to_with_cached_sizes(os));
};
for v in self.updates.iter() {
try!(os.write_tag(2, ::protobuf::wire_format::WireTypeLengthDelimited));
try!(os.write_raw_varint32(v.get_cached_size()));
try!(v.write_to_with_cached_sizes(os));
};
try!(os.write_unknown_fields(self.get_unknown_fields()));
::std::result::Result::Ok(())
}
fn get_cached_size(&self) -> u32 {
self.cached_size.get()
}
fn get_unknown_fields<'s>(&'s self) -> &'s ::protobuf::UnknownFields {
&self.unknown_fields
}
fn mut_unknown_fields<'s>(&'s mut self) -> &'s mut ::protobuf::UnknownFields {
&mut self.unknown_fields
}
fn type_id(&self) -> ::std::any::TypeId {
::std::any::TypeId::of::<Call_Subscribe>()
}
fn as_any(&self) -> &::std::any::Any {
self as &::std::any::Any
}
fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
::protobuf::MessageStatic::descriptor_static(None::<Self>)
}
}
impl ::protobuf::MessageStatic for Call_Subscribe {
fn new() -> Call_Subscribe {
Call_Subscribe::new()
}
fn descriptor_static(_: ::std::option::Option<Call_Subscribe>) -> &'static ::protobuf::reflect::MessageDescriptor {
static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const ::protobuf::reflect::MessageDescriptor,
};
unsafe {
descriptor.get(|| {
let mut fields = ::std::vec::Vec::new();
fields.push(::protobuf::reflect::accessor::make_repeated_message_accessor(
"tasks",
Call_Subscribe::get_tasks,
));
fields.push(::protobuf::reflect::accessor::make_repeated_message_accessor(
"updates",
Call_Subscribe::get_updates,
));
::protobuf::reflect::MessageDescriptor::new::<Call_Subscribe>(
"Call_Subscribe",
fields,
file_descriptor_proto()
)
})
}
}
}
impl ::protobuf::Clear for Call_Subscribe {
fn clear(&mut self) {
self.clear_tasks();
self.clear_updates();
self.unknown_fields.clear();
}
}
impl ::std::cmp::PartialEq for Call_Subscribe {
fn eq(&self, other: &Call_Subscribe) -> bool {
self.tasks == other.tasks &&
self.updates == other.updates &&
self.unknown_fields == other.unknown_fields
}
}
impl ::std::fmt::Debug for Call_Subscribe {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
#[derive(Clone,Default)]
pub struct Call_Update {
status: ::protobuf::SingularPtrField<TaskStatus>,
timestamp: ::std::option::Option<f64>,
uuid: ::protobuf::SingularField<::std::vec::Vec<u8>>,
unknown_fields: ::protobuf::UnknownFields,
cached_size: ::std::cell::Cell<u32>,
}
impl Call_Update {
pub fn new() -> Call_Update {
::std::default::Default::default()
}
pub fn default_instance() -> &'static Call_Update {
static mut instance: ::protobuf::lazy::Lazy<Call_Update> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const Call_Update,
};
unsafe {
instance.get(|| {
Call_Update {
status: ::protobuf::SingularPtrField::none(),
timestamp: ::std::option::Option::None,
uuid: ::protobuf::SingularField::none(),
unknown_fields: ::protobuf::UnknownFields::new(),
cached_size: ::std::cell::Cell::new(0),
}
})
}
}
pub fn clear_status(&mut self) {
self.status.clear();
}
pub fn has_status(&self) -> bool {
self.status.is_some()
}
pub fn set_status(&mut self, v: TaskStatus) {
self.status = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_status<'a>(&'a mut self) -> &'a mut TaskStatus {
if self.status.is_none() {
self.status.set_default();
};
self.status.as_mut().unwrap()
}
pub fn take_status(&mut self) -> TaskStatus {
self.status.take().unwrap_or_else(|| TaskStatus::new())
}
pub fn get_status<'a>(&'a self) -> &'a TaskStatus {
self.status.as_ref().unwrap_or_else(|| TaskStatus::default_instance())
}
pub fn clear_timestamp(&mut self) {
self.timestamp = ::std::option::Option::None;
}
pub fn has_timestamp(&self) -> bool {
self.timestamp.is_some()
}
pub fn set_timestamp(&mut self, v: f64) {
self.timestamp = ::std::option::Option::Some(v);
}
pub fn get_timestamp<'a>(&self) -> f64 {
self.timestamp.unwrap_or(0.)
}
pub fn clear_uuid(&mut self) {
self.uuid.clear();
}
pub fn has_uuid(&self) -> bool {
self.uuid.is_some()
}
pub fn set_uuid(&mut self, v: ::std::vec::Vec<u8>) {
self.uuid = ::protobuf::SingularField::some(v);
}
pub fn mut_uuid<'a>(&'a mut self) -> &'a mut ::std::vec::Vec<u8> {
if self.uuid.is_none() {
self.uuid.set_default();
};
self.uuid.as_mut().unwrap()
}
pub fn take_uuid(&mut self) -> ::std::vec::Vec<u8> {
self.uuid.take().unwrap_or_else(|| ::std::vec::Vec::new())
}
pub fn get_uuid<'a>(&'a self) -> &'a [u8] {
match self.uuid.as_ref() {
Some(v) => &v,
None => &[],
}
}
}
impl ::protobuf::Message for Call_Update {
fn is_initialized(&self) -> bool {
if self.status.is_none() {
return false;
};
if self.timestamp.is_none() {
return false;
};
if self.uuid.is_none() {
return false;
};
true
}
fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream) -> ::protobuf::ProtobufResult<()> {
while !try!(is.eof()) {
let (field_number, wire_type) = try!(is.read_tag_unpack());
match field_number {
1 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::ProtobufError::WireError("unexpected wire type".to_string()));
};
let tmp = self.status.set_default();
try!(is.merge_message(tmp))
},
2 => {
if wire_type != ::protobuf::wire_format::WireTypeFixed64 {
return ::std::result::Result::Err(::protobuf::ProtobufError::WireError("unexpected wire type".to_string()));
};
let tmp = try!(is.read_double());
self.timestamp = ::std::option::Option::Some(tmp);
},
3 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::ProtobufError::WireError("unexpected wire type".to_string()));
};
let tmp = self.uuid.set_default();
try!(is.read_bytes_into(tmp))
},
_ => {
let unknown = try!(is.read_unknown(wire_type));
self.mut_unknown_fields().add_value(field_number, unknown);
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u32 {
let mut my_size = 0;
for value in self.status.iter() {
let len = value.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
};
if self.timestamp.is_some() {
my_size += 9;
};
for value in self.uuid.iter() {
my_size += ::protobuf::rt::bytes_size(3, &value);
};
my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields());
self.cached_size.set(my_size);
my_size
}
fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream) -> ::protobuf::ProtobufResult<()> {
if let Some(v) = self.status.as_ref() {
try!(os.write_tag(1, ::protobuf::wire_format::WireTypeLengthDelimited));
try!(os.write_raw_varint32(v.get_cached_size()));
try!(v.write_to_with_cached_sizes(os));
};
if let Some(v) = self.timestamp {
try!(os.write_double(2, v));
};
if let Some(v) = self.uuid.as_ref() {
try!(os.write_bytes(3, &v));
};
try!(os.write_unknown_fields(self.get_unknown_fields()));
::std::result::Result::Ok(())
}
fn get_cached_size(&self) -> u32 {
self.cached_size.get()
}
fn get_unknown_fields<'s>(&'s self) -> &'s ::protobuf::UnknownFields {
&self.unknown_fields
}
fn mut_unknown_fields<'s>(&'s mut self) -> &'s mut ::protobuf::UnknownFields {
&mut self.unknown_fields
}
fn type_id(&self) -> ::std::any::TypeId {
::std::any::TypeId::of::<Call_Update>()
}
fn as_any(&self) -> &::std::any::Any {
self as &::std::any::Any
}
fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
::protobuf::MessageStatic::descriptor_static(None::<Self>)
}
}
impl ::protobuf::MessageStatic for Call_Update {
fn new() -> Call_Update {
Call_Update::new()
}
fn descriptor_static(_: ::std::option::Option<Call_Update>) -> &'static ::protobuf::reflect::MessageDescriptor {
static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const ::protobuf::reflect::MessageDescriptor,
};
unsafe {
descriptor.get(|| {
let mut fields = ::std::vec::Vec::new();
fields.push(::protobuf::reflect::accessor::make_singular_message_accessor(
"status",
Call_Update::has_status,
Call_Update::get_status,
));
fields.push(::protobuf::reflect::accessor::make_singular_f64_accessor(
"timestamp",
Call_Update::has_timestamp,
Call_Update::get_timestamp,
));
fields.push(::protobuf::reflect::accessor::make_singular_bytes_accessor(
"uuid",
Call_Update::has_uuid,
Call_Update::get_uuid,
));
::protobuf::reflect::MessageDescriptor::new::<Call_Update>(
"Call_Update",
fields,
file_descriptor_proto()
)
})
}
}
}
impl ::protobuf::Clear for Call_Update {
fn clear(&mut self) {
self.clear_status();
self.clear_timestamp();
self.clear_uuid();
self.unknown_fields.clear();
}
}
impl ::std::cmp::PartialEq for Call_Update {
fn eq(&self, other: &Call_Update) -> bool {
self.status == other.status &&
self.timestamp == other.timestamp &&
self.uuid == other.uuid &&
self.unknown_fields == other.unknown_fields
}
}
impl ::std::fmt::Debug for Call_Update {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
#[derive(Clone,Default)]
pub struct Call_Message {
data: ::protobuf::SingularField<::std::vec::Vec<u8>>,
unknown_fields: ::protobuf::UnknownFields,
cached_size: ::std::cell::Cell<u32>,
}
impl Call_Message {
pub fn new() -> Call_Message {
::std::default::Default::default()
}
pub fn default_instance() -> &'static Call_Message {
static mut instance: ::protobuf::lazy::Lazy<Call_Message> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const Call_Message,
};
unsafe {
instance.get(|| {
Call_Message {
data: ::protobuf::SingularField::none(),
unknown_fields: ::protobuf::UnknownFields::new(),
cached_size: ::std::cell::Cell::new(0),
}
})
}
}
pub fn clear_data(&mut self) {
self.data.clear();
}
pub fn has_data(&self) -> bool {
self.data.is_some()
}
pub fn set_data(&mut self, v: ::std::vec::Vec<u8>) {
self.data = ::protobuf::SingularField::some(v);
}
pub fn mut_data<'a>(&'a mut self) -> &'a mut ::std::vec::Vec<u8> {
if self.data.is_none() {
self.data.set_default();
};
self.data.as_mut().unwrap()
}
pub fn take_data(&mut self) -> ::std::vec::Vec<u8> {
self.data.take().unwrap_or_else(|| ::std::vec::Vec::new())
}
pub fn get_data<'a>(&'a self) -> &'a [u8] {
match self.data.as_ref() {
Some(v) => &v,
None => &[],
}
}
}
impl ::protobuf::Message for Call_Message {
fn is_initialized(&self) -> bool {
if self.data.is_none() {
return false;
};
true
}
fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream) -> ::protobuf::ProtobufResult<()> {
while !try!(is.eof()) {
let (field_number, wire_type) = try!(is.read_tag_unpack());
match field_number {
2 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::ProtobufError::WireError("unexpected wire type".to_string()));
};
let tmp = self.data.set_default();
try!(is.read_bytes_into(tmp))
},
_ => {
let unknown = try!(is.read_unknown(wire_type));
self.mut_unknown_fields().add_value(field_number, unknown);
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u32 {
let mut my_size = 0;
for value in self.data.iter() {
my_size += ::protobuf::rt::bytes_size(2, &value);
};
my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields());
self.cached_size.set(my_size);
my_size
}
fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream) -> ::protobuf::ProtobufResult<()> {
if let Some(v) = self.data.as_ref() {
try!(os.write_bytes(2, &v));
};
try!(os.write_unknown_fields(self.get_unknown_fields()));
::std::result::Result::Ok(())
}
fn get_cached_size(&self) -> u32 {
self.cached_size.get()
}
fn get_unknown_fields<'s>(&'s self) -> &'s ::protobuf::UnknownFields {
&self.unknown_fields
}
fn mut_unknown_fields<'s>(&'s mut self) -> &'s mut ::protobuf::UnknownFields {
&mut self.unknown_fields
}
fn type_id(&self) -> ::std::any::TypeId {
::std::any::TypeId::of::<Call_Message>()
}
fn as_any(&self) -> &::std::any::Any {
self as &::std::any::Any
}
fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
::protobuf::MessageStatic::descriptor_static(None::<Self>)
}
}
impl ::protobuf::MessageStatic for Call_Message {
fn new() -> Call_Message {
Call_Message::new()
}
fn descriptor_static(_: ::std::option::Option<Call_Message>) -> &'static ::protobuf::reflect::MessageDescriptor {
static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const ::protobuf::reflect::MessageDescriptor,
};
unsafe {
descriptor.get(|| {
let mut fields = ::std::vec::Vec::new();
fields.push(::protobuf::reflect::accessor::make_singular_bytes_accessor(
"data",
Call_Message::has_data,
Call_Message::get_data,
));
::protobuf::reflect::MessageDescriptor::new::<Call_Message>(
"Call_Message",
fields,
file_descriptor_proto()
)
})
}
}
}
impl ::protobuf::Clear for Call_Message {
fn clear(&mut self) {
self.clear_data();
self.unknown_fields.clear();
}
}
impl ::std::cmp::PartialEq for Call_Message {
fn eq(&self, other: &Call_Message) -> bool {
self.data == other.data &&
self.unknown_fields == other.unknown_fields
}
}
impl ::std::fmt::Debug for Call_Message {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
#[derive(Clone,PartialEq,Eq,Debug,Hash)]
pub enum Call_Type {
SUBSCRIBE = 1,
UPDATE = 2,
MESSAGE = 3,
}
impl ::protobuf::ProtobufEnum for Call_Type {
fn value(&self) -> i32 {
*self as i32
}
fn from_i32(value: i32) -> ::std::option::Option<Call_Type> {
match value {
1 => ::std::option::Option::Some(Call_Type::SUBSCRIBE),
2 => ::std::option::Option::Some(Call_Type::UPDATE),
3 => ::std::option::Option::Some(Call_Type::MESSAGE),
_ => ::std::option::Option::None
}
}
fn enum_descriptor_static(_: Option<Call_Type>) -> &'static ::protobuf::reflect::EnumDescriptor {
static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::EnumDescriptor> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const ::protobuf::reflect::EnumDescriptor,
};
unsafe {
descriptor.get(|| {
::protobuf::reflect::EnumDescriptor::new("Call_Type", file_descriptor_proto())
})
}
}
}
impl ::std::marker::Copy for Call_Type {
}
static file_descriptor_proto_data: &'static [u8] = &[
0x0a, 0x20, 0x6d, 0x65, 0x73, 0x6f, 0x73, 0x2f, 0x76, 0x31, 0x2f, 0x65, 0x78, 0x65, 0x63, 0x75,
0x74, 0x6f, 0x72, 0x2f, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x11, 0x6d, 0x65, 0x73, 0x6f, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x65, 0x78, 0x65,
0x63, 0x75, 0x74, 0x6f, 0x72, 0x1a, 0x14, 0x6d, 0x65, 0x73, 0x6f, 0x73, 0x2f, 0x76, 0x31, 0x2f,
0x6d, 0x65, 0x73, 0x6f, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xb3, 0x06, 0x0a, 0x05,
0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x2b, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20,
0x02, 0x28, 0x0e, 0x32, 0x1d, 0x2e, 0x6d, 0x65, 0x73, 0x6f, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x65,
0x78, 0x65, 0x63, 0x75, 0x74, 0x6f, 0x72, 0x2e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x54, 0x79,
0x70, 0x65, 0x12, 0x37, 0x0a, 0x0a, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x64,
0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x6d, 0x65, 0x73, 0x6f, 0x73, 0x2e, 0x76,
0x31, 0x2e, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x6f, 0x72, 0x2e, 0x45, 0x76, 0x65, 0x6e, 0x74,
0x2e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x64, 0x12, 0x3b, 0x0a, 0x0c, 0x61,
0x63, 0x6b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28,
0x0b, 0x32, 0x25, 0x2e, 0x6d, 0x65, 0x73, 0x6f, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x65, 0x78, 0x65,
0x63, 0x75, 0x74, 0x6f, 0x72, 0x2e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x41, 0x63, 0x6b, 0x6e,
0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65, 0x64, 0x12, 0x2f, 0x0a, 0x06, 0x6c, 0x61, 0x75, 0x6e,
0x63, 0x68, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x6d, 0x65, 0x73, 0x6f, 0x73,
0x2e, 0x76, 0x31, 0x2e, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x6f, 0x72, 0x2e, 0x45, 0x76, 0x65,
0x6e, 0x74, 0x2e, 0x4c, 0x61, 0x75, 0x6e, 0x63, 0x68, 0x12, 0x2b, 0x0a, 0x04, 0x6b, 0x69, 0x6c,
0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x6d, 0x65, 0x73, 0x6f, 0x73, 0x2e,
0x76, 0x31, 0x2e, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x6f, 0x72, 0x2e, 0x45, 0x76, 0x65, 0x6e,
0x74, 0x2e, 0x4b, 0x69, 0x6c, 0x6c, 0x12, 0x31, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x6d, 0x65, 0x73, 0x6f, 0x73, 0x2e,
0x76, 0x31, 0x2e, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x6f, 0x72, 0x2e, 0x45, 0x76, 0x65, 0x6e,
0x74, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x2d, 0x0a, 0x05, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x6d, 0x65, 0x73, 0x6f, 0x73,
0x2e, 0x76, 0x31, 0x2e, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x6f, 0x72, 0x2e, 0x45, 0x76, 0x65,
0x6e, 0x74, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x1a, 0x95, 0x01, 0x0a, 0x0a, 0x53, 0x75, 0x62,
0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x64, 0x12, 0x2d, 0x0a, 0x0d, 0x65, 0x78, 0x65, 0x63, 0x75,
0x74, 0x6f, 0x72, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x01, 0x20, 0x02, 0x28, 0x0b, 0x32, 0x16,
0x2e, 0x6d, 0x65, 0x73, 0x6f, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74,
0x6f, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x2f, 0x0a, 0x0e, 0x66, 0x72, 0x61, 0x6d, 0x65, 0x77,
0x6f, 0x72, 0x6b, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x02, 0x20, 0x02, 0x28, 0x0b, 0x32, 0x17,
0x2e, 0x6d, 0x65, 0x73, 0x6f, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x77,
0x6f, 0x72, 0x6b, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x27, 0x0a, 0x0a, 0x61, 0x67, 0x65, 0x6e, 0x74,
0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x03, 0x20, 0x02, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x6d, 0x65,
0x73, 0x6f, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f,
0x1a, 0x2a, 0x0a, 0x06, 0x4c, 0x61, 0x75, 0x6e, 0x63, 0x68, 0x12, 0x20, 0x0a, 0x04, 0x74, 0x61,
0x73, 0x6b, 0x18, 0x01, 0x20, 0x02, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x6d, 0x65, 0x73, 0x6f, 0x73,
0x2e, 0x76, 0x31, 0x2e, 0x54, 0x61, 0x73, 0x6b, 0x49, 0x6e, 0x66, 0x6f, 0x1a, 0x29, 0x0a, 0x04,
0x4b, 0x69, 0x6c, 0x6c, 0x12, 0x21, 0x0a, 0x07, 0x74, 0x61, 0x73, 0x6b, 0x5f, 0x69, 0x64, 0x18,
0x01, 0x20, 0x02, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x6d, 0x65, 0x73, 0x6f, 0x73, 0x2e, 0x76, 0x31,
0x2e, 0x54, 0x61, 0x73, 0x6b, 0x49, 0x44, 0x1a, 0x3f, 0x0a, 0x0c, 0x41, 0x63, 0x6b, 0x6e, 0x6f,
0x77, 0x6c, 0x65, 0x64, 0x67, 0x65, 0x64, 0x12, 0x21, 0x0a, 0x07, 0x74, 0x61, 0x73, 0x6b, 0x5f,
0x69, 0x64, 0x18, 0x01, 0x20, 0x02, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x6d, 0x65, 0x73, 0x6f, 0x73,
0x2e, 0x76, 0x31, 0x2e, 0x54, 0x61, 0x73, 0x6b, 0x49, 0x44, 0x12, 0x0c, 0x0a, 0x04, 0x75, 0x75,
0x69, 0x64, 0x18, 0x02, 0x20, 0x02, 0x28, 0x0c, 0x1a, 0x17, 0x0a, 0x07, 0x4d, 0x65, 0x73, 0x73,
0x61, 0x67, 0x65, 0x12, 0x0c, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x02, 0x28,
0x0c, 0x1a, 0x18, 0x0a, 0x05, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x07, 0x6d, 0x65,
0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x02, 0x28, 0x09, 0x22, 0x64, 0x0a, 0x04, 0x54,
0x79, 0x70, 0x65, 0x12, 0x0e, 0x0a, 0x0a, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x42, 0x45,
0x44, 0x10, 0x01, 0x12, 0x0a, 0x0a, 0x06, 0x4c, 0x41, 0x55, 0x4e, 0x43, 0x48, 0x10, 0x02, 0x12,
0x08, 0x0a, 0x04, 0x4b, 0x49, 0x4c, 0x4c, 0x10, 0x03, 0x12, 0x10, 0x0a, 0x0c, 0x41, 0x43, 0x4b,
0x4e, 0x4f, 0x57, 0x4c, 0x45, 0x44, 0x47, 0x45, 0x44, 0x10, 0x04, 0x12, 0x0b, 0x0a, 0x07, 0x4d,
0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x10, 0x05, 0x12, 0x0c, 0x0a, 0x08, 0x53, 0x48, 0x55, 0x54,
0x44, 0x4f, 0x57, 0x4e, 0x10, 0x06, 0x12, 0x09, 0x0a, 0x05, 0x45, 0x52, 0x52, 0x4f, 0x52, 0x10,
0x07, 0x22, 0x9d, 0x04, 0x0a, 0x04, 0x43, 0x61, 0x6c, 0x6c, 0x12, 0x29, 0x0a, 0x0b, 0x65, 0x78,
0x65, 0x63, 0x75, 0x74, 0x6f, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x02, 0x28, 0x0b, 0x32,
0x14, 0x2e, 0x6d, 0x65, 0x73, 0x6f, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x45, 0x78, 0x65, 0x63, 0x75,
0x74, 0x6f, 0x72, 0x49, 0x44, 0x12, 0x2b, 0x0a, 0x0c, 0x66, 0x72, 0x61, 0x6d, 0x65, 0x77, 0x6f,
0x72, 0x6b, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x02, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x6d, 0x65,
0x73, 0x6f, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x77, 0x6f, 0x72, 0x6b,
0x49, 0x44, 0x12, 0x2a, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x02, 0x28, 0x0e,
0x32, 0x1c, 0x2e, 0x6d, 0x65, 0x73, 0x6f, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x65, 0x78, 0x65, 0x63,
0x75, 0x74, 0x6f, 0x72, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x2e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x34,
0x0a, 0x09, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28,
0x0b, 0x32, 0x21, 0x2e, 0x6d, 0x65, 0x73, 0x6f, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x65, 0x78, 0x65,
0x63, 0x75, 0x74, 0x6f, 0x72, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x2e, 0x53, 0x75, 0x62, 0x73, 0x63,
0x72, 0x69, 0x62, 0x65, 0x12, 0x2e, 0x0a, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x18, 0x05,
0x20, 0x01, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x6d, 0x65, 0x73, 0x6f, 0x73, 0x2e, 0x76, 0x31, 0x2e,
0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x6f, 0x72, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x2e, 0x55, 0x70,
0x64, 0x61, 0x74, 0x65, 0x12, 0x30, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18,
0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x6d, 0x65, 0x73, 0x6f, 0x73, 0x2e, 0x76, 0x31,
0x2e, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x6f, 0x72, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x2e, 0x4d,
0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x1a, 0x5f, 0x0a, 0x09, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72,
0x69, 0x62, 0x65, 0x12, 0x21, 0x0a, 0x05, 0x74, 0x61, 0x73, 0x6b, 0x73, 0x18, 0x01, 0x20, 0x03,
0x28, 0x0b, 0x32, 0x12, 0x2e, 0x6d, 0x65, 0x73, 0x6f, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x54, 0x61,
0x73, 0x6b, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x2f, 0x0a, 0x07, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65,
0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x6d, 0x65, 0x73, 0x6f, 0x73, 0x2e,
0x76, 0x31, 0x2e, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x6f, 0x72, 0x2e, 0x43, 0x61, 0x6c, 0x6c,
0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x1a, 0x4f, 0x0a, 0x06, 0x55, 0x70, 0x64, 0x61, 0x74,
0x65, 0x12, 0x24, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x02, 0x28,
0x0b, 0x32, 0x14, 0x2e, 0x6d, 0x65, 0x73, 0x6f, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x54, 0x61, 0x73,
0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x11, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73,
0x74, 0x61, 0x6d, 0x70, 0x18, 0x02, 0x20, 0x02, 0x28, 0x01, 0x12, 0x0c, 0x0a, 0x04, 0x75, 0x75,
0x69, 0x64, 0x18, 0x03, 0x20, 0x02, 0x28, 0x0c, 0x1a, 0x17, 0x0a, 0x07, 0x4d, 0x65, 0x73, 0x73,
0x61, 0x67, 0x65, 0x12, 0x0c, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x02, 0x20, 0x02, 0x28,
0x0c, 0x22, 0x2e, 0x0a, 0x04, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0d, 0x0a, 0x09, 0x53, 0x55, 0x42,
0x53, 0x43, 0x52, 0x49, 0x42, 0x45, 0x10, 0x01, 0x12, 0x0a, 0x0a, 0x06, 0x55, 0x50, 0x44, 0x41,
0x54, 0x45, 0x10, 0x02, 0x12, 0x0b, 0x0a, 0x07, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x10,
0x03, 0x42, 0x26, 0x0a, 0x1c, 0x6f, 0x72, 0x67, 0x2e, 0x61, 0x70, 0x61, 0x63, 0x68, 0x65, 0x2e,
0x6d, 0x65, 0x73, 0x6f, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x6f,
0x72, 0x42, 0x06, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x4a, 0xf4, 0x33, 0x0a, 0x07, 0x12, 0x05,
0x12, 0x00, 0xab, 0x01, 0x01, 0x0a, 0x09, 0x0a, 0x02, 0x03, 0x00, 0x12, 0x03, 0x12, 0x07, 0x1d,
0x0a, 0x08, 0x0a, 0x01, 0x02, 0x12, 0x03, 0x14, 0x08, 0x19, 0x0a, 0x08, 0x0a, 0x01, 0x08, 0x12,
0x03, 0x16, 0x00, 0x35, 0x0a, 0x0b, 0x0a, 0x04, 0x08, 0xe7, 0x07, 0x00, 0x12, 0x03, 0x16, 0x00,
0x35, 0x0a, 0x0c, 0x0a, 0x05, 0x08, 0xe7, 0x07, 0x00, 0x02, 0x12, 0x03, 0x16, 0x07, 0x13, 0x0a,
0x0d, 0x0a, 0x06, 0x08, 0xe7, 0x07, 0x00, 0x02, 0x00, 0x12, 0x03, 0x16, 0x07, 0x13, 0x0a, 0x0e,
0x0a, 0x07, 0x08, 0xe7, 0x07, 0x00, 0x02, 0x00, 0x01, 0x12, 0x03, 0x16, 0x07, 0x13, 0x0a, 0x0c,
0x0a, 0x05, 0x08, 0xe7, 0x07, 0x00, 0x07, 0x12, 0x03, 0x16, 0x16, 0x34, 0x0a, 0x08, 0x0a, 0x01,
0x08, 0x12, 0x03, 0x17, 0x00, 0x27, 0x0a, 0x0b, 0x0a, 0x04, 0x08, 0xe7, 0x07, 0x01, 0x12, 0x03,
0x17, 0x00, 0x27, 0x0a, 0x0c, 0x0a, 0x05, 0x08, 0xe7, 0x07, 0x01, 0x02, 0x12, 0x03, 0x17, 0x07,
0x1b, 0x0a, 0x0d, 0x0a, 0x06, 0x08, 0xe7, 0x07, 0x01, 0x02, 0x00, 0x12, 0x03, 0x17, 0x07, 0x1b,
0x0a, 0x0e, 0x0a, 0x07, 0x08, 0xe7, 0x07, 0x01, 0x02, 0x00, 0x01, 0x12, 0x03, 0x17, 0x07, 0x1b,
0x0a, 0x0c, 0x0a, 0x05, 0x08, 0xe7, 0x07, 0x01, 0x07, 0x12, 0x03, 0x17, 0x1e, 0x26, 0x0a, 0xb9,
0x01, 0x0a, 0x02, 0x04, 0x00, 0x12, 0x04, 0x20, 0x00, 0x6e, 0x01, 0x1a, 0xac, 0x01, 0x2a, 0x0a,
0x20, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x6f, 0x72, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20,
0x41, 0x50, 0x49, 0x2e, 0x0a, 0x0a, 0x20, 0x41, 0x6e, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20,
0x69, 0x73, 0x20, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x64, 0x20, 0x75, 0x73, 0x69,
0x6e, 0x67, 0x20, 0x74, 0x68, 0x65, 0x20, 0x73, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x20, 0x62, 0x75, 0x66, 0x66, 0x65, 0x72, 0x20,
0x22, 0x75, 0x6e, 0x69, 0x6f, 0x6e, 0x22, 0x0a, 0x20, 0x74, 0x72, 0x69, 0x63, 0x6b, 0x2c, 0x20,
0x73, 0x65, 0x65, 0x20, 0x68, 0x74, 0x74, 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x64, 0x65, 0x76, 0x65,
0x6c, 0x6f, 0x70, 0x65, 0x72, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x63, 0x6f,
0x6d, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x2d, 0x62, 0x75, 0x66, 0x66, 0x65,
0x72, 0x73, 0x2f, 0x64, 0x6f, 0x63, 0x73, 0x2f, 0x74, 0x65, 0x63, 0x68, 0x6e, 0x69, 0x71, 0x75,
0x65, 0x73, 0x23, 0x75, 0x6e, 0x69, 0x6f, 0x6e, 0x2e, 0x0a, 0x0a, 0x0a, 0x0a, 0x03, 0x04, 0x00,
0x01, 0x12, 0x03, 0x20, 0x08, 0x0d, 0x0a, 0x55, 0x0a, 0x04, 0x04, 0x00, 0x04, 0x00, 0x12, 0x04,
0x23, 0x02, 0x2e, 0x03, 0x1a, 0x47, 0x20, 0x50, 0x6f, 0x73, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x20,
0x65, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x74, 0x79, 0x70, 0x65, 0x73, 0x2c, 0x20, 0x66, 0x6f, 0x6c,
0x6c, 0x6f, 0x77, 0x65, 0x64, 0x20, 0x62, 0x79, 0x20, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
0x20, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x69, 0x66, 0x0a,
0x20, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x0a, 0x0a, 0x0c, 0x0a,
0x05, 0x04, 0x00, 0x04, 0x00, 0x01, 0x12, 0x03, 0x23, 0x07, 0x0b, 0x0a, 0x28, 0x0a, 0x06, 0x04,
0x00, 0x04, 0x00, 0x02, 0x00, 0x12, 0x03, 0x24, 0x04, 0x13, 0x22, 0x19, 0x20, 0x53, 0x65, 0x65,
0x20, 0x27, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x64, 0x27, 0x20, 0x62, 0x65,
0x6c, 0x6f, 0x77, 0x2e, 0x0a, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01,
0x12, 0x03, 0x24, 0x04, 0x0e, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02,
0x12, 0x03, 0x24, 0x11, 0x12, 0x0a, 0x24, 0x0a, 0x06, 0x04, 0x00, 0x04, 0x00, 0x02, 0x01, 0x12,
0x03, 0x25, 0x04, 0x0f, 0x22, 0x15, 0x20, 0x53, 0x65, 0x65, 0x20, 0x27, 0x4c, 0x61, 0x75, 0x6e,
0x63, 0x68, 0x27, 0x20, 0x62, 0x65, 0x6c, 0x6f, 0x77, 0x2e, 0x0a, 0x0a, 0x0e, 0x0a, 0x07, 0x04,
0x00, 0x04, 0x00, 0x02, 0x01, 0x01, 0x12, 0x03, 0x25, 0x04, 0x0a, 0x0a, 0x0e, 0x0a, 0x07, 0x04,
0x00, 0x04, 0x00, 0x02, 0x01, 0x02, 0x12, 0x03, 0x25, 0x0d, 0x0e, 0x0a, 0x22, 0x0a, 0x06, 0x04,
0x00, 0x04, 0x00, 0x02, 0x02, 0x12, 0x03, 0x26, 0x04, 0x0d, 0x22, 0x13, 0x20, 0x53, 0x65, 0x65,
0x20, 0x27, 0x4b, 0x69, 0x6c, 0x6c, 0x27, 0x20, 0x62, 0x65, 0x6c, 0x6f, 0x77, 0x2e, 0x0a, 0x0a,
0x0e, 0x0a, 0x07, 0x04, 0x00, 0x04, 0x00, 0x02, 0x02, 0x01, 0x12, 0x03, 0x26, 0x04, 0x08, 0x0a,
0x0e, 0x0a, 0x07, 0x04, 0x00, 0x04, 0x00, 0x02, 0x02, 0x02, 0x12, 0x03, 0x26, 0x0b, 0x0c, 0x0a,
0x2a, 0x0a, 0x06, 0x04, 0x00, 0x04, 0x00, 0x02, 0x03, 0x12, 0x03, 0x27, 0x04, 0x15, 0x22, 0x1b,
0x20, 0x53, 0x65, 0x65, 0x20, 0x27, 0x41, 0x63, 0x6b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67,
0x65, 0x64, 0x27, 0x20, 0x62, 0x65, 0x6c, 0x6f, 0x77, 0x2e, 0x0a, 0x0a, 0x0e, 0x0a, 0x07, 0x04,
0x00, 0x04, 0x00, 0x02, 0x03, 0x01, 0x12, 0x03, 0x27, 0x04, 0x10, 0x0a, 0x0e, 0x0a, 0x07, 0x04,
0x00, 0x04, 0x00, 0x02, 0x03, 0x02, 0x12, 0x03, 0x27, 0x13, 0x14, 0x0a, 0x25, 0x0a, 0x06, 0x04,
0x00, 0x04, 0x00, 0x02, 0x04, 0x12, 0x03, 0x28, 0x04, 0x10, 0x22, 0x16, 0x20, 0x53, 0x65, 0x65,
0x20, 0x27, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x27, 0x20, 0x62, 0x65, 0x6c, 0x6f, 0x77,
0x2e, 0x0a, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x04, 0x00, 0x02, 0x04, 0x01, 0x12, 0x03, 0x28,
0x04, 0x0b, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x04, 0x00, 0x02, 0x04, 0x02, 0x12, 0x03, 0x28,
0x0e, 0x0f, 0x0a, 0x53, 0x0a, 0x06, 0x04, 0x00, 0x04, 0x00, 0x02, 0x05, 0x12, 0x03, 0x2b, 0x04,
0x11, 0x1a, 0x44, 0x20, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x64, 0x20, 0x77, 0x68, 0x65,
0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x61, 0x67, 0x65, 0x6e, 0x74, 0x20, 0x61, 0x73, 0x6b, 0x73,
0x20, 0x74, 0x68, 0x65, 0x20, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x6f, 0x72, 0x20, 0x74, 0x6f,
0x20, 0x73, 0x68, 0x75, 0x74, 0x64, 0x6f, 0x77, 0x6e, 0x2f, 0x6b, 0x69, 0x6c, 0x6c, 0x20, 0x69,
0x74, 0x73, 0x65, 0x6c, 0x66, 0x2e, 0x0a, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x04, 0x00, 0x02,
0x05, 0x01, 0x12, 0x03, 0x2b, 0x04, 0x0c, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x04, 0x00, 0x02,
0x05, 0x02, 0x12, 0x03, 0x2b, 0x0f, 0x10, 0x0a, 0x23, 0x0a, 0x06, 0x04, 0x00, 0x04, 0x00, 0x02,
0x06, 0x12, 0x03, 0x2d, 0x04, 0x0e, 0x22, 0x14, 0x20, 0x53, 0x65, 0x65, 0x20, 0x27, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x27, 0x20, 0x62, 0x65, 0x6c, 0x6f, 0x77, 0x2e, 0x0a, 0x0a, 0x0e, 0x0a, 0x07,
0x04, 0x00, 0x04, 0x00, 0x02, 0x06, 0x01, 0x12, 0x03, 0x2d, 0x04, 0x09, 0x0a, 0x0e, 0x0a, 0x07,
0x04, 0x00, 0x04, 0x00, 0x02, 0x06, 0x02, 0x12, 0x03, 0x2d, 0x0c, 0x0d, 0x0a, 0x77, 0x0a, 0x04,
0x04, 0x00, 0x03, 0x00, 0x12, 0x04, 0x32, 0x03, 0x36, 0x03, 0x1a, 0x69, 0x20, 0x46, 0x69, 0x72,
0x73, 0x74, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65,
0x64, 0x20, 0x77, 0x68, 0x65, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x65, 0x78, 0x65, 0x63, 0x75,
0x74, 0x6f, 0x72, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x73, 0x2e, 0x0a,
0x20, 0x54, 0x68, 0x65, 0x20, 0x27, 0x69, 0x64, 0x27, 0x20, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x20,
0x69, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x27, 0x66, 0x72, 0x61, 0x6d, 0x65, 0x77, 0x6f, 0x72,
0x6b, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x27, 0x20, 0x77, 0x69, 0x6c, 0x6c, 0x20, 0x62, 0x65, 0x20,
0x73, 0x65, 0x74, 0x2e, 0x0a, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x00, 0x03, 0x00, 0x01, 0x12, 0x03,
0x32, 0x0b, 0x15, 0x0a, 0x0d, 0x0a, 0x06, 0x04, 0x00, 0x03, 0x00, 0x02, 0x00, 0x12, 0x03, 0x33,
0x04, 0x2c, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x03, 0x00, 0x02, 0x00, 0x04, 0x12, 0x03, 0x33,
0x04, 0x0c, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x03, 0x00, 0x02, 0x00, 0x06, 0x12, 0x03, 0x33,
0x0d, 0x19, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x03, 0x00, 0x02, 0x00, 0x01, 0x12, 0x03, 0x33,
0x1a, 0x27, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x03, 0x00, 0x02, 0x00, 0x03, 0x12, 0x03, 0x33,
0x2a, 0x2b, 0x0a, 0x0d, 0x0a, 0x06, 0x04, 0x00, 0x03, 0x00, 0x02, 0x01, 0x12, 0x03, 0x34, 0x04,
0x2e, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x03, 0x00, 0x02, 0x01, 0x04, 0x12, 0x03, 0x34, 0x04,
0x0c, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x03, 0x00, 0x02, 0x01, 0x06, 0x12, 0x03, 0x34, 0x0d,
0x1a, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x03, 0x00, 0x02, 0x01, 0x01, 0x12, 0x03, 0x34, 0x1b,
0x29, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x03, 0x00, 0x02, 0x01, 0x03, 0x12, 0x03, 0x34, 0x2c,
0x2d, 0x0a, 0x0d, 0x0a, 0x06, 0x04, 0x00, 0x03, 0x00, 0x02, 0x02, 0x12, 0x03, 0x35, 0x04, 0x26,
0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x03, 0x00, 0x02, 0x02, 0x04, 0x12, 0x03, 0x35, 0x04, 0x0c,
0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x03, 0x00, 0x02, 0x02, 0x06, 0x12, 0x03, 0x35, 0x0d, 0x16,
0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x03, 0x00, 0x02, 0x02, 0x01, 0x12, 0x03, 0x35, 0x17, 0x21,
0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x03, 0x00, 0x02, 0x02, 0x03, 0x12, 0x03, 0x35, 0x24, 0x25,
0x0a, 0xc9, 0x01, 0x0a, 0x04, 0x04, 0x00, 0x03, 0x01, 0x12, 0x04, 0x3b, 0x02, 0x3d, 0x03, 0x1a,
0xba, 0x01, 0x20, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x64, 0x20, 0x77, 0x68, 0x65, 0x6e,
0x20, 0x74, 0x68, 0x65, 0x20, 0x66, 0x72, 0x61, 0x6d, 0x65, 0x77, 0x6f, 0x72, 0x6b, 0x20, 0x61,
0x74, 0x74, 0x65, 0x6d, 0x70, 0x74, 0x73, 0x20, 0x74, 0x6f, 0x20, 0x6c, 0x61, 0x75, 0x6e, 0x63,
0x68, 0x20, 0x61, 0x20, 0x74, 0x61, 0x73, 0x6b, 0x2e, 0x20, 0x4f, 0x6e, 0x63, 0x65, 0x0a, 0x20,
0x74, 0x68, 0x65, 0x20, 0x74, 0x61, 0x73, 0x6b, 0x20, 0x69, 0x73, 0x20, 0x73, 0x75, 0x63, 0x63,
0x65, 0x73, 0x73, 0x66, 0x75, 0x6c, 0x6c, 0x79, 0x20, 0x6c, 0x61, 0x75, 0x6e, 0x63, 0x68, 0x65,
0x64, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x20, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x6f, 0x72, 0x20,
0x6d, 0x75, 0x73, 0x74, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x64, 0x20, 0x77, 0x69, 0x74,
0x68, 0x0a, 0x20, 0x61, 0x20, 0x54, 0x41, 0x53, 0x4b, 0x5f, 0x52, 0x55, 0x4e, 0x4e, 0x49, 0x4e,
0x47, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x28, 0x53, 0x65, 0x65, 0x20, 0x54, 0x61,
0x73, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x65, 0x20, 0x69, 0x6e, 0x20, 0x76, 0x31, 0x2f, 0x6d, 0x65,
0x73, 0x6f, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x29, 0x2e, 0x0a, 0x0a, 0x0c, 0x0a, 0x05,
0x04, 0x00, 0x03, 0x01, 0x01, 0x12, 0x03, 0x3b, 0x0a, 0x10, 0x0a, 0x0d, 0x0a, 0x06, 0x04, 0x00,
0x03, 0x01, 0x02, 0x00, 0x12, 0x03, 0x3c, 0x04, 0x1f, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x03,
0x01, 0x02, 0x00, 0x04, 0x12, 0x03, 0x3c, 0x04, 0x0c, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x03,
0x01, 0x02, 0x00, 0x06, 0x12, 0x03, 0x3c, 0x0d, 0x15, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x03,
0x01, 0x02, 0x00, 0x01, 0x12, 0x03, 0x3c, 0x16, 0x1a, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x03,
0x01, 0x02, 0x00, 0x03, 0x12, 0x03, 0x3c, 0x1d, 0x1e, 0x0a, 0x89, 0x02, 0x0a, 0x04, 0x04, 0x00,
0x03, 0x02, 0x12, 0x04, 0x43, 0x02, 0x45, 0x03, 0x1a, 0xfa, 0x01, 0x20, 0x52, 0x65, 0x63, 0x65,
0x69, 0x76, 0x65, 0x64, 0x20, 0x77, 0x68, 0x65, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x73, 0x63,
0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x72, 0x20, 0x77, 0x61, 0x6e, 0x74, 0x73, 0x20, 0x74, 0x6f,
0x20, 0x6b, 0x69, 0x6c, 0x6c, 0x20, 0x61, 0x20, 0x73, 0x70, 0x65, 0x63, 0x69, 0x66, 0x69, 0x63,
0x20, 0x74, 0x61, 0x73, 0x6b, 0x2e, 0x20, 0x4f, 0x6e, 0x63, 0x65, 0x0a, 0x20, 0x74, 0x68, 0x65,
0x20, 0x74, 0x61, 0x73, 0x6b, 0x20, 0x69, 0x73, 0x20, 0x74, 0x65, 0x72, 0x6d, 0x69, 0x6e, 0x61,
0x74, 0x65, 0x64, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x20, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x6f,
0x72, 0x20, 0x73, 0x68, 0x6f, 0x75, 0x6c, 0x64, 0x20, 0x73, 0x65, 0x6e, 0x64, 0x20, 0x61, 0x20,
0x54, 0x41, 0x53, 0x4b, 0x5f, 0x4b, 0x49, 0x4c, 0x4c, 0x45, 0x44, 0x0a, 0x20, 0x28, 0x6f, 0x72,
0x20, 0x54, 0x41, 0x53, 0x4b, 0x5f, 0x46, 0x41, 0x49, 0x4c, 0x45, 0x44, 0x29, 0x20, 0x75, 0x70,
0x64, 0x61, 0x74, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x65, 0x20, 0x74, 0x65, 0x72, 0x6d, 0x69, 0x6e,
0x61, 0x6c, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x65, 0x63,
0x65, 0x73, 0x73, 0x61, 0x72, 0x79, 0x20, 0x73, 0x6f, 0x0a, 0x20, 0x4d, 0x65, 0x73, 0x6f, 0x73,
0x20, 0x63, 0x61, 0x6e, 0x20, 0x72, 0x65, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x20, 0x74, 0x68, 0x65,
0x20, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x20, 0x61, 0x73, 0x73, 0x6f, 0x63,
0x69, 0x61, 0x74, 0x65, 0x64, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x74, 0x68, 0x65, 0x20, 0x74,
0x61, 0x73, 0x6b, 0x2e, 0x0a, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x00, 0x03, 0x02, 0x01, 0x12, 0x03,
0x43, 0x0a, 0x0e, 0x0a, 0x0d, 0x0a, 0x06, 0x04, 0x00, 0x03, 0x02, 0x02, 0x00, 0x12, 0x03, 0x44,
0x04, 0x20, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x03, 0x02, 0x02, 0x00, 0x04, 0x12, 0x03, 0x44,
0x04, 0x0c, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x03, 0x02, 0x02, 0x00, 0x06, 0x12, 0x03, 0x44,
0x0d, 0x13, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x03, 0x02, 0x02, 0x00, 0x01, 0x12, 0x03, 0x44,
0x14, 0x1b, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x03, 0x02, 0x02, 0x00, 0x03, 0x12, 0x03, 0x44,
0x1e, 0x1f, 0x0a, 0xd7, 0x02, 0x0a, 0x04, 0x04, 0x00, 0x03, 0x03, 0x12, 0x04, 0x4d, 0x02, 0x50,
0x03, 0x1a, 0xc8, 0x02, 0x20, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x64, 0x20, 0x77, 0x68,
0x65, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x61, 0x67, 0x65, 0x6e, 0x74, 0x20, 0x61, 0x63, 0x6b,
0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65, 0x73, 0x20, 0x74, 0x68, 0x65, 0x20, 0x72, 0x65,
0x63, 0x65, 0x69, 0x70, 0x74, 0x20, 0x6f, 0x66, 0x20, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x0a,
0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x2e, 0x20, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c,
0x65, 0x72, 0x73, 0x20, 0x61, 0x72, 0x65, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x69,
0x62, 0x6c, 0x65, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x65, 0x78, 0x70, 0x6c, 0x69, 0x63, 0x69, 0x74,
0x6c, 0x79, 0x20, 0x61, 0x63, 0x6b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x69, 0x6e, 0x67,
0x0a, 0x20, 0x74, 0x68, 0x65, 0x20, 0x72, 0x65, 0x63, 0x65, 0x69, 0x70, 0x74, 0x20, 0x6f, 0x66,
0x20, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x73, 0x20,
0x74, 0x68, 0x61, 0x74, 0x20, 0x68, 0x61, 0x76, 0x65, 0x20, 0x27, 0x75, 0x70, 0x64, 0x61, 0x74,
0x65, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x28, 0x29, 0x2e, 0x75, 0x75, 0x69, 0x64, 0x28,
0x29, 0x27, 0x0a, 0x20, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x73, 0x65, 0x74, 0x2e, 0x20, 0x55,
0x6e, 0x61, 0x63, 0x6b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65, 0x64, 0x20, 0x75, 0x70,
0x64, 0x61, 0x74, 0x65, 0x73, 0x20, 0x63, 0x61, 0x6e, 0x20, 0x62, 0x65, 0x20, 0x72, 0x65, 0x74,
0x72, 0x69, 0x65, 0x64, 0x20, 0x62, 0x79, 0x20, 0x74, 0x68, 0x65, 0x20, 0x65, 0x78, 0x65, 0x63,
0x75, 0x74, 0x6f, 0x72, 0x2e, 0x0a, 0x20, 0x54, 0x68, 0x65, 0x79, 0x20, 0x73, 0x68, 0x6f, 0x75,
0x6c, 0x64, 0x20, 0x61, 0x6c, 0x73, 0x6f, 0x20, 0x62, 0x65, 0x20, 0x73, 0x65, 0x6e, 0x74, 0x20,
0x62, 0x79, 0x20, 0x74, 0x68, 0x65, 0x20, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x6f, 0x72, 0x20,
0x77, 0x68, 0x65, 0x6e, 0x65, 0x76, 0x65, 0x72, 0x20, 0x69, 0x74, 0x0a, 0x20, 0x72, 0x65, 0x2d,
0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x73, 0x2e, 0x0a, 0x0a, 0x0c, 0x0a, 0x05,
0x04, 0x00, 0x03, 0x03, 0x01, 0x12, 0x03, 0x4d, 0x0a, 0x16, 0x0a, 0x0d, 0x0a, 0x06, 0x04, 0x00,
0x03, 0x03, 0x02, 0x00, 0x12, 0x03, 0x4e, 0x04, 0x20, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x03,
0x03, 0x02, 0x00, 0x04, 0x12, 0x03, 0x4e, 0x04, 0x0c, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x03,
0x03, 0x02, 0x00, 0x06, 0x12, 0x03, 0x4e, 0x0d, 0x13, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x03,
0x03, 0x02, 0x00, 0x01, 0x12, 0x03, 0x4e, 0x14, 0x1b, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x03,
0x03, 0x02, 0x00, 0x03, 0x12, 0x03, 0x4e, 0x1e, 0x1f, 0x0a, 0x0d, 0x0a, 0x06, 0x04, 0x00, 0x03,
0x03, 0x02, 0x01, 0x12, 0x03, 0x4f, 0x04, 0x1c, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x03, 0x03,
0x02, 0x01, 0x04, 0x12, 0x03, 0x4f, 0x04, 0x0c, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x03, 0x03,
0x02, 0x01, 0x05, 0x12, 0x03, 0x4f, 0x0d, 0x12, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x03, 0x03,
0x02, 0x01, 0x01, 0x12, 0x03, 0x4f, 0x13, 0x17, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x03, 0x03,
0x02, 0x01, 0x03, 0x12, 0x03, 0x4f, 0x1a, 0x1b, 0x0a, 0xb1, 0x02, 0x0a, 0x04, 0x04, 0x00, 0x03,
0x04, 0x12, 0x04, 0x57, 0x02, 0x59, 0x03, 0x1a, 0xa2, 0x02, 0x20, 0x52, 0x65, 0x63, 0x65, 0x69,
0x76, 0x65, 0x64, 0x20, 0x77, 0x68, 0x65, 0x6e, 0x20, 0x61, 0x20, 0x63, 0x75, 0x73, 0x74, 0x6f,
0x6d, 0x20, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x20, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61,
0x74, 0x65, 0x64, 0x20, 0x62, 0x79, 0x20, 0x74, 0x68, 0x65, 0x20, 0x73, 0x63, 0x68, 0x65, 0x64,
0x75, 0x6c, 0x65, 0x72, 0x20, 0x69, 0x73, 0x0a, 0x20, 0x66, 0x6f, 0x72, 0x77, 0x61, 0x72, 0x64,
0x65, 0x64, 0x20, 0x62, 0x79, 0x20, 0x74, 0x68, 0x65, 0x20, 0x61, 0x67, 0x65, 0x6e, 0x74, 0x2e,
0x20, 0x4e, 0x6f, 0x74, 0x65, 0x20, 0x74, 0x68, 0x61, 0x74, 0x20, 0x74, 0x68, 0x69, 0x73, 0x20,
0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x0a, 0x20,
0x69, 0x6e, 0x74, 0x65, 0x72, 0x70, 0x72, 0x65, 0x74, 0x65, 0x64, 0x20, 0x62, 0x79, 0x20, 0x4d,
0x65, 0x73, 0x6f, 0x73, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x69, 0x73, 0x20, 0x6f, 0x6e, 0x6c, 0x79,
0x20, 0x66, 0x6f, 0x72, 0x77, 0x61, 0x72, 0x64, 0x65, 0x64, 0x20, 0x28, 0x77, 0x69, 0x74, 0x68,
0x6f, 0x75, 0x74, 0x20, 0x72, 0x65, 0x6c, 0x69, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x0a,
0x20, 0x67, 0x75, 0x61, 0x72, 0x61, 0x6e, 0x74, 0x65, 0x65, 0x73, 0x29, 0x20, 0x74, 0x6f, 0x20,
0x74, 0x68, 0x65, 0x20, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x6f, 0x72, 0x2e, 0x20, 0x49, 0x74,
0x20, 0x69, 0x73, 0x20, 0x75, 0x70, 0x20, 0x74, 0x6f, 0x20, 0x74, 0x68, 0x65, 0x20, 0x73, 0x63,
0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x72, 0x20, 0x74, 0x6f, 0x20, 0x72, 0x65, 0x74, 0x72, 0x79,
0x0a, 0x20, 0x69, 0x66, 0x20, 0x74, 0x68, 0x65, 0x20, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
0x20, 0x69, 0x73, 0x20, 0x64, 0x72, 0x6f, 0x70, 0x70, 0x65, 0x64, 0x20, 0x66, 0x6f, 0x72, 0x20,
0x61, 0x6e, 0x79, 0x20, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x2e, 0x0a, 0x0a, 0x0c, 0x0a, 0x05,
0x04, 0x00, 0x03, 0x04, 0x01, 0x12, 0x03, 0x57, 0x0a, 0x11, 0x0a, 0x0d, 0x0a, 0x06, 0x04, 0x00,
0x03, 0x04, 0x02, 0x00, 0x12, 0x03, 0x58, 0x04, 0x1c, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x03,
0x04, 0x02, 0x00, 0x04, 0x12, 0x03, 0x58, 0x04, 0x0c, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x03,
0x04, 0x02, 0x00, 0x05, 0x12, 0x03, 0x58, 0x0d, 0x12, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x03,
0x04, 0x02, 0x00, 0x01, 0x12, 0x03, 0x58, 0x13, 0x17, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x03,
0x04, 0x02, 0x00, 0x03, 0x12, 0x03, 0x58, 0x1a, 0x1b, 0x0a, 0xf9, 0x01, 0x0a, 0x04, 0x04, 0x00,
0x03, 0x05, 0x12, 0x04, 0x60, 0x02, 0x62, 0x03, 0x1a, 0xea, 0x01, 0x20, 0x52, 0x65, 0x63, 0x65,
0x69, 0x76, 0x65, 0x64, 0x20, 0x69, 0x6e, 0x20, 0x63, 0x61, 0x73, 0x65, 0x20, 0x74, 0x68, 0x65,
0x20, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x6f, 0x72, 0x20, 0x73, 0x65, 0x6e, 0x64, 0x73, 0x20,
0x69, 0x6e, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x20, 0x63, 0x61, 0x6c, 0x6c, 0x73, 0x20, 0x28, 0x65,
0x2e, 0x67, 0x2e, 0x2c, 0x0a, 0x20, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x20, 0x76,
0x61, 0x6c, 0x75, 0x65, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x73, 0x65, 0x74, 0x29, 0x2e, 0x0a,
0x20, 0x54, 0x4f, 0x44, 0x4f, 0x28, 0x61, 0x72, 0x6f, 0x6a, 0x61, 0x73, 0x29, 0x3a, 0x20, 0x52,
0x65, 0x6d, 0x6f, 0x76, 0x65, 0x20, 0x74, 0x68, 0x69, 0x73, 0x20, 0x6f, 0x6e, 0x63, 0x65, 0x20,
0x74, 0x68, 0x65, 0x20, 0x6f, 0x6c, 0x64, 0x20, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x6f, 0x72,
0x20, 0x64, 0x72, 0x69, 0x76, 0x65, 0x72, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x0a, 0x20, 0x6c,
0x6f, 0x6e, 0x67, 0x65, 0x72, 0x20, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x65, 0x64, 0x2e,
0x20, 0x57, 0x69, 0x74, 0x68, 0x20, 0x48, 0x54, 0x54, 0x50, 0x20, 0x41, 0x50, 0x49, 0x20, 0x61,
0x6c, 0x6c, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x20, 0x77, 0x69, 0x6c, 0x6c, 0x20, 0x62,
0x65, 0x20, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x65, 0x64, 0x20, 0x76, 0x69, 0x61, 0x0a, 0x20,
0x48, 0x54, 0x54, 0x50, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x20, 0x63, 0x6f,
0x64, 0x65, 0x73, 0x2e, 0x0a, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x00, 0x03, 0x05, 0x01, 0x12, 0x03,
0x60, 0x0a, 0x0f, 0x0a, 0x0d, 0x0a, 0x06, 0x04, 0x00, 0x03, 0x05, 0x02, 0x00, 0x12, 0x03, 0x61,
0x04, 0x20, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x03, 0x05, 0x02, 0x00, 0x04, 0x12, 0x03, 0x61,
0x04, 0x0c, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x03, 0x05, 0x02, 0x00, 0x05, 0x12, 0x03, 0x61,
0x0d, 0x13, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x03, 0x05, 0x02, 0x00, 0x01, 0x12, 0x03, 0x61,
0x14, 0x1b, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x00, 0x03, 0x05, 0x02, 0x00, 0x03, 0x12, 0x03, 0x61,
0x1e, 0x1f, 0x0a, 0x87, 0x01, 0x0a, 0x04, 0x04, 0x00, 0x02, 0x00, 0x12, 0x03, 0x66, 0x02, 0x19,
0x1a, 0x7a, 0x20, 0x54, 0x79, 0x70, 0x65, 0x20, 0x6f, 0x66, 0x20, 0x74, 0x68, 0x65, 0x20, 0x65,
0x76, 0x65, 0x6e, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x64, 0x69, 0x63, 0x61, 0x74, 0x65, 0x73, 0x20,
0x77, 0x68, 0x69, 0x63, 0x68, 0x20, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x20, 0x66,
0x69, 0x65, 0x6c, 0x64, 0x20, 0x62, 0x65, 0x6c, 0x6f, 0x77, 0x20, 0x73, 0x68, 0x6f, 0x75, 0x6c,
0x64, 0x20, 0x62, 0x65, 0x0a, 0x20, 0x70, 0x72, 0x65, 0x73, 0x65, 0x6e, 0x74, 0x20, 0x69, 0x66,
0x20, 0x74, 0x68, 0x61, 0x74, 0x20, 0x74, 0x79, 0x70, 0x65, 0x20, 0x68, 0x61, 0x73, 0x20, 0x61,
0x20, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x20, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x20,
0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x0a, 0x0a, 0x0c, 0x0a, 0x05,
0x04, 0x00, 0x02, 0x00, 0x04, 0x12, 0x03, 0x66, 0x02, 0x0a, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x00,
0x02, 0x00, 0x06, 0x12, 0x03, 0x66, 0x0b, 0x0f, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x00, 0x02, 0x00,
0x01, 0x12, 0x03, 0x66, 0x10, 0x14, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x00, 0x02, 0x00, 0x03, 0x12,
0x03, 0x66, 0x17, 0x18, 0x0a, 0x0b, 0x0a, 0x04, 0x04, 0x00, 0x02, 0x01, 0x12, 0x03, 0x68, 0x02,
0x25, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x00, 0x02, 0x01, 0x04, 0x12, 0x03, 0x68, 0x02, 0x0a, 0x0a,
0x0c, 0x0a, 0x05, 0x04, 0x00, 0x02, 0x01, 0x06, 0x12, 0x03, 0x68, 0x0b, 0x15, 0x0a, 0x0c, 0x0a,
0x05, 0x04, 0x00, 0x02, 0x01, 0x01, 0x12, 0x03, 0x68, 0x16, 0x20, 0x0a, 0x0c, 0x0a, 0x05, 0x04,
0x00, 0x02, 0x01, 0x03, 0x12, 0x03, 0x68, 0x23, 0x24, 0x0a, 0x0b, 0x0a, 0x04, 0x04, 0x00, 0x02,
0x02, 0x12, 0x03, 0x69, 0x02, 0x29, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x00, 0x02, 0x02, 0x04, 0x12,
0x03, 0x69, 0x02, 0x0a, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x00, 0x02, 0x02, 0x06, 0x12, 0x03, 0x69,
0x0b, 0x17, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x00, 0x02, 0x02, 0x01, 0x12, 0x03, 0x69, 0x18, 0x24,
0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x00, 0x02, 0x02, 0x03, 0x12, 0x03, 0x69, 0x27, 0x28, 0x0a, 0x0b,
0x0a, 0x04, 0x04, 0x00, 0x02, 0x03, 0x12, 0x03, 0x6a, 0x02, 0x1d, 0x0a, 0x0c, 0x0a, 0x05, 0x04,
0x00, 0x02, 0x03, 0x04, 0x12, 0x03, 0x6a, 0x02, 0x0a, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x00, 0x02,
0x03, 0x06, 0x12, 0x03, 0x6a, 0x0b, 0x11, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x00, 0x02, 0x03, 0x01,
0x12, 0x03, 0x6a, 0x12, 0x18, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x00, 0x02, 0x03, 0x03, 0x12, 0x03,
0x6a, 0x1b, 0x1c, 0x0a, 0x0b, 0x0a, 0x04, 0x04, 0x00, 0x02, 0x04, 0x12, 0x03, 0x6b, 0x02, 0x19,
0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x00, 0x02, 0x04, 0x04, 0x12, 0x03, 0x6b, 0x02, 0x0a, 0x0a, 0x0c,
0x0a, 0x05, 0x04, 0x00, 0x02, 0x04, 0x06, 0x12, 0x03, 0x6b, 0x0b, 0x0f, 0x0a, 0x0c, 0x0a, 0x05,
0x04, 0x00, 0x02, 0x04, 0x01, 0x12, 0x03, 0x6b, 0x10, 0x14, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x00,
0x02, 0x04, 0x03, 0x12, 0x03, 0x6b, 0x17, 0x18, 0x0a, 0x0b, 0x0a, 0x04, 0x04, 0x00, 0x02, 0x05,
0x12, 0x03, 0x6c, 0x02, 0x1f, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x00, 0x02, 0x05, 0x04, 0x12, 0x03,
0x6c, 0x02, 0x0a, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x00, 0x02, 0x05, 0x06, 0x12, 0x03, 0x6c, 0x0b,
0x12, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x00, 0x02, 0x05, 0x01, 0x12, 0x03, 0x6c, 0x13, 0x1a, 0x0a,
0x0c, 0x0a, 0x05, 0x04, 0x00, 0x02, 0x05, 0x03, 0x12, 0x03, 0x6c, 0x1d, 0x1e, 0x0a, 0x0b, 0x0a,
0x04, 0x04, 0x00, 0x02, 0x06, 0x12, 0x03, 0x6d, 0x02, 0x1b, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x00,
0x02, 0x06, 0x04, 0x12, 0x03, 0x6d, 0x02, 0x0a, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x00, 0x02, 0x06,
0x06, 0x12, 0x03, 0x6d, 0x0b, 0x10, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x00, 0x02, 0x06, 0x01, 0x12,
0x03, 0x6d, 0x11, 0x16, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x00, 0x02, 0x06, 0x03, 0x12, 0x03, 0x6d,
0x19, 0x1a, 0x0a, 0x84, 0x01, 0x0a, 0x02, 0x04, 0x01, 0x12, 0x05, 0x77, 0x01, 0xab, 0x01, 0x01,
0x1a, 0x77, 0x2a, 0x0a, 0x20, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x6f, 0x72, 0x20, 0x63, 0x61,
0x6c, 0x6c, 0x20, 0x41, 0x50, 0x49, 0x2e, 0x0a, 0x0a, 0x20, 0x4c, 0x69, 0x6b, 0x65, 0x20, 0x45,
0x76, 0x65, 0x6e, 0x74, 0x2c, 0x20, 0x61, 0x20, 0x43, 0x61, 0x6c, 0x6c, 0x20, 0x69, 0x73, 0x20,
0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x64, 0x20, 0x75, 0x73, 0x69, 0x6e, 0x67, 0x20,
0x74, 0x68, 0x65, 0x20, 0x73, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x20, 0x62, 0x75, 0x66, 0x66, 0x65, 0x72, 0x0a, 0x20, 0x22, 0x75,
0x6e, 0x69, 0x6f, 0x6e, 0x22, 0x20, 0x74, 0x72, 0x69, 0x63, 0x6b, 0x20, 0x28, 0x73, 0x65, 0x65,
0x20, 0x61, 0x62, 0x6f, 0x76, 0x65, 0x29, 0x2e, 0x0a, 0x0a, 0x0a, 0x0a, 0x03, 0x04, 0x01, 0x01,
0x12, 0x03, 0x77, 0x09, 0x0d, 0x0a, 0x54, 0x0a, 0x04, 0x04, 0x01, 0x04, 0x00, 0x12, 0x04, 0x7a,
0x02, 0x7e, 0x03, 0x1a, 0x46, 0x20, 0x50, 0x6f, 0x73, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x20, 0x63,
0x61, 0x6c, 0x6c, 0x20, 0x74, 0x79, 0x70, 0x65, 0x73, 0x2c, 0x20, 0x66, 0x6f, 0x6c, 0x6c, 0x6f,
0x77, 0x65, 0x64, 0x20, 0x62, 0x79, 0x20, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x20, 0x64,
0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x69, 0x66, 0x0a, 0x20, 0x61,
0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x0a, 0x0a, 0x0c, 0x0a, 0x05, 0x04,
0x01, 0x04, 0x00, 0x01, 0x12, 0x03, 0x7a, 0x07, 0x0b, 0x0a, 0x27, 0x0a, 0x06, 0x04, 0x01, 0x04,
0x00, 0x02, 0x00, 0x12, 0x03, 0x7b, 0x04, 0x12, 0x22, 0x18, 0x20, 0x53, 0x65, 0x65, 0x20, 0x27,
0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x27, 0x20, 0x62, 0x65, 0x6c, 0x6f, 0x77,
0x2e, 0x0a, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x01, 0x04, 0x00, 0x02, 0x00, 0x01, 0x12, 0x03, 0x7b,
0x04, 0x0d, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x01, 0x04, 0x00, 0x02, 0x00, 0x02, 0x12, 0x03, 0x7b,
0x10, 0x11, 0x0a, 0x24, 0x0a, 0x06, 0x04, 0x01, 0x04, 0x00, 0x02, 0x01, 0x12, 0x03, 0x7c, 0x04,
0x0f, 0x22, 0x15, 0x20, 0x53, 0x65, 0x65, 0x20, 0x27, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x27,
0x20, 0x62, 0x65, 0x6c, 0x6f, 0x77, 0x2e, 0x0a, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x01, 0x04, 0x00,
0x02, 0x01, 0x01, 0x12, 0x03, 0x7c, 0x04, 0x0a, 0x0a, 0x0e, 0x0a, 0x07, 0x04, 0x01, 0x04, 0x00,
0x02, 0x01, 0x02, 0x12, 0x03, 0x7c, 0x0d, 0x0e, 0x0a, 0x25, 0x0a, 0x06, 0x04, 0x01, 0x04, 0x00,
0x02, 0x02, 0x12, 0x03, 0x7d, 0x04, 0x10, 0x22, 0x16, 0x20, 0x53, 0x65, 0x65, 0x20, 0x27, 0x4d,
0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x27, 0x20, 0x62, 0x65, 0x6c, 0x6f, 0x77, 0x2e, 0x0a, 0x0a,
0x0e, 0x0a, 0x07, 0x04, 0x01, 0x04, 0x00, 0x02, 0x02, 0x01, 0x12, 0x03, 0x7d, 0x04, 0x0b, 0x0a,
0x0e, 0x0a, 0x07, 0x04, 0x01, 0x04, 0x00, 0x02, 0x02, 0x02, 0x12, 0x03, 0x7d, 0x0e, 0x0f, 0x0a,
0xc5, 0x01, 0x0a, 0x04, 0x04, 0x01, 0x03, 0x00, 0x12, 0x06, 0x83, 0x01, 0x02, 0x86, 0x01, 0x03,
0x1a, 0xb4, 0x01, 0x20, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x20, 0x74, 0x6f, 0x20, 0x73,
0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x74, 0x68,
0x65, 0x20, 0x61, 0x67, 0x65, 0x6e, 0x74, 0x2e, 0x20, 0x49, 0x66, 0x20, 0x73, 0x75, 0x62, 0x73,
0x63, 0x72, 0x69, 0x62, 0x69, 0x6e, 0x67, 0x20, 0x61, 0x66, 0x74, 0x65, 0x72, 0x20, 0x61, 0x20,
0x64, 0x69, 0x73, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2c, 0x0a, 0x20,
0x69, 0x74, 0x20, 0x6d, 0x75, 0x73, 0x74, 0x20, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x20,
0x61, 0x20, 0x6c, 0x69, 0x73, 0x74, 0x20, 0x6f, 0x66, 0x20, 0x61, 0x6c, 0x6c, 0x20, 0x74, 0x68,
0x65, 0x20, 0x74, 0x61, 0x73, 0x6b, 0x73, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x75, 0x70, 0x64, 0x61,
0x74, 0x65, 0x73, 0x20, 0x77, 0x68, 0x69, 0x63, 0x68, 0x20, 0x68, 0x61, 0x76, 0x65, 0x6e, 0x27,
0x74, 0x20, 0x62, 0x65, 0x65, 0x6e, 0x0a, 0x20, 0x61, 0x63, 0x6b, 0x6e, 0x6f, 0x77, 0x6c, 0x65,
0x64, 0x67, 0x65, 0x64, 0x20, 0x62, 0x79, 0x20, 0x74, 0x68, 0x65, 0x20, 0x73, 0x63, 0x68, 0x65,
0x64, 0x75, 0x6c, 0x65, 0x72, 0x2e, 0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x01, 0x03, 0x00, 0x01,
0x12, 0x04, 0x83, 0x01, 0x0a, 0x13, 0x0a, 0x0e, 0x0a, 0x06, 0x04, 0x01, 0x03, 0x00, 0x02, 0x00,
0x12, 0x04, 0x84, 0x01, 0x04, 0x20, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x01, 0x03, 0x00, 0x02, 0x00,
0x04, 0x12, 0x04, 0x84, 0x01, 0x04, 0x0c, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x01, 0x03, 0x00, 0x02,
0x00, 0x06, 0x12, 0x04, 0x84, 0x01, 0x0d, 0x15, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x01, 0x03, 0x00,
0x02, 0x00, 0x01, 0x12, 0x04, 0x84, 0x01, 0x16, 0x1b, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x01, 0x03,
0x00, 0x02, 0x00, 0x03, 0x12, 0x04, 0x84, 0x01, 0x1e, 0x1f, 0x0a, 0x0e, 0x0a, 0x06, 0x04, 0x01,
0x03, 0x00, 0x02, 0x01, 0x12, 0x04, 0x85, 0x01, 0x04, 0x20, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x01,
0x03, 0x00, 0x02, 0x01, 0x04, 0x12, 0x04, 0x85, 0x01, 0x04, 0x0c, 0x0a, 0x0f, 0x0a, 0x07, 0x04,
0x01, 0x03, 0x00, 0x02, 0x01, 0x06, 0x12, 0x04, 0x85, 0x01, 0x0d, 0x13, 0x0a, 0x0f, 0x0a, 0x07,
0x04, 0x01, 0x03, 0x00, 0x02, 0x01, 0x01, 0x12, 0x04, 0x85, 0x01, 0x14, 0x1b, 0x0a, 0x0f, 0x0a,
0x07, 0x04, 0x01, 0x03, 0x00, 0x02, 0x01, 0x03, 0x12, 0x04, 0x85, 0x01, 0x1e, 0x1f, 0x0a, 0xc1,
0x04, 0x0a, 0x04, 0x04, 0x01, 0x03, 0x01, 0x12, 0x06, 0x91, 0x01, 0x02, 0x95, 0x01, 0x03, 0x1a,
0xb0, 0x04, 0x20, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x69, 0x65, 0x73, 0x20, 0x74, 0x68, 0x65, 0x20,
0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x72, 0x20, 0x74, 0x68, 0x61, 0x74, 0x20, 0x61,
0x20, 0x74, 0x61, 0x73, 0x6b, 0x20, 0x68, 0x61, 0x73, 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x69,
0x74, 0x69, 0x6f, 0x6e, 0x65, 0x64, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x6f, 0x6e, 0x65, 0x0a,
0x20, 0x73, 0x74, 0x61, 0x74, 0x65, 0x20, 0x74, 0x6f, 0x20, 0x61, 0x6e, 0x6f, 0x74, 0x68, 0x65,
0x72, 0x2e, 0x20, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65,
0x73, 0x20, 0x73, 0x68, 0x6f, 0x75, 0x6c, 0x64, 0x20, 0x62, 0x65, 0x20, 0x75, 0x73, 0x65, 0x64,
0x20, 0x62, 0x79, 0x20, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x6f, 0x72, 0x73, 0x0a, 0x20, 0x74,
0x6f, 0x20, 0x72, 0x65, 0x6c, 0x69, 0x61, 0x62, 0x6c, 0x79, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x75,
0x6e, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x74, 0x68, 0x65, 0x20, 0x73, 0x74, 0x61, 0x74, 0x75,
0x73, 0x20, 0x6f, 0x66, 0x20, 0x74, 0x68, 0x65, 0x20, 0x74, 0x61, 0x73, 0x6b, 0x73, 0x20, 0x74,
0x68, 0x61, 0x74, 0x20, 0x74, 0x68, 0x65, 0x79, 0x0a, 0x20, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
0x2e, 0x20, 0x49, 0x74, 0x20, 0x69, 0x73, 0x20, 0x63, 0x72, 0x75, 0x63, 0x69, 0x61, 0x6c, 0x20,
0x74, 0x68, 0x61, 0x74, 0x20, 0x61, 0x20, 0x74, 0x65, 0x72, 0x6d, 0x69, 0x6e, 0x61, 0x6c, 0x20,
0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x28, 0x73, 0x65, 0x65, 0x20, 0x54, 0x61, 0x73, 0x6b,
0x53, 0x74, 0x61, 0x74, 0x65, 0x0a, 0x20, 0x69, 0x6e, 0x20, 0x76, 0x31, 0x2f, 0x6d, 0x65, 0x73,
0x6f, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x29, 0x20, 0x69, 0x73, 0x20, 0x73, 0x65, 0x6e,
0x74, 0x20, 0x74, 0x6f, 0x20, 0x74, 0x68, 0x65, 0x20, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c,
0x65, 0x72, 0x20, 0x61, 0x73, 0x20, 0x73, 0x6f, 0x6f, 0x6e, 0x20, 0x61, 0x73, 0x20, 0x74, 0x68,
0x65, 0x20, 0x74, 0x61, 0x73, 0x6b, 0x0a, 0x20, 0x74, 0x65, 0x72, 0x6d, 0x69, 0x6e, 0x61, 0x74,
0x65, 0x73, 0x2c, 0x20, 0x69, 0x6e, 0x20, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x20, 0x66, 0x6f, 0x72,
0x20, 0x4d, 0x65, 0x73, 0x6f, 0x73, 0x20, 0x74, 0x6f, 0x20, 0x72, 0x65, 0x6c, 0x65, 0x61, 0x73,
0x65, 0x20, 0x74, 0x68, 0x65, 0x20, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x20,
0x61, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x64, 0x0a, 0x20, 0x74, 0x6f, 0x20, 0x74, 0x68,
0x65, 0x20, 0x74, 0x61, 0x73, 0x6b, 0x2e, 0x20, 0x49, 0x74, 0x20, 0x69, 0x73, 0x20, 0x74, 0x68,
0x65, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79,
0x20, 0x6f, 0x66, 0x20, 0x74, 0x68, 0x65, 0x20, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65,
0x72, 0x20, 0x74, 0x6f, 0x0a, 0x20, 0x65, 0x78, 0x70, 0x6c, 0x69, 0x63, 0x69, 0x74, 0x6c, 0x79,
0x20, 0x61, 0x63, 0x6b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65, 0x20, 0x74, 0x68, 0x65,
0x20, 0x72, 0x65, 0x63, 0x65, 0x69, 0x70, 0x74, 0x20, 0x6f, 0x66, 0x20, 0x61, 0x20, 0x73, 0x74,
0x61, 0x74, 0x75, 0x73, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x2e, 0x20, 0x53, 0x65, 0x65,
0x0a, 0x20, 0x27, 0x41, 0x63, 0x6b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65, 0x64, 0x27,
0x20, 0x69, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x27, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x27,
0x20, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x61, 0x62, 0x6f, 0x76, 0x65, 0x20, 0x66,
0x6f, 0x72, 0x20, 0x74, 0x68, 0x65, 0x20, 0x73, 0x65, 0x6d, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x73,
0x2e, 0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x01, 0x03, 0x01, 0x01, 0x12, 0x04, 0x91, 0x01, 0x0a,
0x10, 0x0a, 0x0e, 0x0a, 0x06, 0x04, 0x01, 0x03, 0x01, 0x02, 0x00, 0x12, 0x04, 0x92, 0x01, 0x04,
0x23, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x01, 0x03, 0x01, 0x02, 0x00, 0x04, 0x12, 0x04, 0x92, 0x01,
0x04, 0x0c, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x01, 0x03, 0x01, 0x02, 0x00, 0x06, 0x12, 0x04, 0x92,
0x01, 0x0d, 0x17, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x01, 0x03, 0x01, 0x02, 0x00, 0x01, 0x12, 0x04,
0x92, 0x01, 0x18, 0x1e, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x01, 0x03, 0x01, 0x02, 0x00, 0x03, 0x12,
0x04, 0x92, 0x01, 0x21, 0x22, 0x0a, 0x0e, 0x0a, 0x06, 0x04, 0x01, 0x03, 0x01, 0x02, 0x01, 0x12,
0x04, 0x93, 0x01, 0x04, 0x22, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x01, 0x03, 0x01, 0x02, 0x01, 0x04,
0x12, 0x04, 0x93, 0x01, 0x04, 0x0c, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x01, 0x03, 0x01, 0x02, 0x01,
0x05, 0x12, 0x04, 0x93, 0x01, 0x0d, 0x13, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x01, 0x03, 0x01, 0x02,
0x01, 0x01, 0x12, 0x04, 0x93, 0x01, 0x14, 0x1d, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x01, 0x03, 0x01,
0x02, 0x01, 0x03, 0x12, 0x04, 0x93, 0x01, 0x20, 0x21, 0x0a, 0x0e, 0x0a, 0x06, 0x04, 0x01, 0x03,
0x01, 0x02, 0x02, 0x12, 0x04, 0x94, 0x01, 0x04, 0x1c, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x01, 0x03,
0x01, 0x02, 0x02, 0x04, 0x12, 0x04, 0x94, 0x01, 0x04, 0x0c, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x01,
0x03, 0x01, 0x02, 0x02, 0x05, 0x12, 0x04, 0x94, 0x01, 0x0d, 0x12, 0x0a, 0x0f, 0x0a, 0x07, 0x04,
0x01, 0x03, 0x01, 0x02, 0x02, 0x01, 0x12, 0x04, 0x94, 0x01, 0x13, 0x17, 0x0a, 0x0f, 0x0a, 0x07,
0x04, 0x01, 0x03, 0x01, 0x02, 0x02, 0x03, 0x12, 0x04, 0x94, 0x01, 0x1a, 0x1b, 0x0a, 0xe5, 0x01,
0x0a, 0x04, 0x04, 0x01, 0x03, 0x02, 0x12, 0x06, 0x9b, 0x01, 0x02, 0x9d, 0x01, 0x03, 0x1a, 0xd4,
0x01, 0x20, 0x53, 0x65, 0x6e, 0x64, 0x73, 0x20, 0x61, 0x72, 0x62, 0x69, 0x74, 0x72, 0x61, 0x72,
0x79, 0x20, 0x62, 0x69, 0x6e, 0x61, 0x72, 0x79, 0x20, 0x64, 0x61, 0x74, 0x61, 0x20, 0x74, 0x6f,
0x20, 0x74, 0x68, 0x65, 0x20, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x72, 0x2e, 0x20,
0x4e, 0x6f, 0x74, 0x65, 0x20, 0x74, 0x68, 0x61, 0x74, 0x20, 0x4d, 0x65, 0x73, 0x6f, 0x73, 0x0a,
0x20, 0x6e, 0x65, 0x69, 0x74, 0x68, 0x65, 0x72, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x70, 0x72,
0x65, 0x74, 0x73, 0x20, 0x74, 0x68, 0x69, 0x73, 0x20, 0x64, 0x61, 0x74, 0x61, 0x20, 0x6e, 0x6f,
0x72, 0x20, 0x6d, 0x61, 0x6b, 0x65, 0x73, 0x20, 0x61, 0x6e, 0x79, 0x20, 0x67, 0x75, 0x61, 0x72,
0x61, 0x6e, 0x74, 0x65, 0x65, 0x73, 0x20, 0x61, 0x62, 0x6f, 0x75, 0x74, 0x20, 0x74, 0x68, 0x65,
0x0a, 0x20, 0x64, 0x65, 0x6c, 0x69, 0x76, 0x65, 0x72, 0x79, 0x20, 0x6f, 0x66, 0x20, 0x74, 0x68,
0x69, 0x73, 0x20, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x20, 0x74, 0x6f, 0x20, 0x74, 0x68,
0x65, 0x20, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x72, 0x2e, 0x0a, 0x20, 0x53, 0x65,
0x65, 0x20, 0x27, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x27, 0x20, 0x69, 0x6e, 0x20, 0x74,
0x68, 0x65, 0x20, 0x27, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x27, 0x20, 0x73, 0x65, 0x63, 0x74,
0x69, 0x6f, 0x6e, 0x2e, 0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x01, 0x03, 0x02, 0x01, 0x12, 0x04,
0x9b, 0x01, 0x0a, 0x11, 0x0a, 0x0e, 0x0a, 0x06, 0x04, 0x01, 0x03, 0x02, 0x02, 0x00, 0x12, 0x04,
0x9c, 0x01, 0x04, 0x1c, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x01, 0x03, 0x02, 0x02, 0x00, 0x04, 0x12,
0x04, 0x9c, 0x01, 0x04, 0x0c, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x01, 0x03, 0x02, 0x02, 0x00, 0x05,
0x12, 0x04, 0x9c, 0x01, 0x0d, 0x12, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x01, 0x03, 0x02, 0x02, 0x00,
0x01, 0x12, 0x04, 0x9c, 0x01, 0x13, 0x17, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x01, 0x03, 0x02, 0x02,
0x00, 0x03, 0x12, 0x04, 0x9c, 0x01, 0x1a, 0x1b, 0x0a, 0x42, 0x0a, 0x04, 0x04, 0x01, 0x02, 0x00,
0x12, 0x04, 0xa0, 0x01, 0x02, 0x26, 0x1a, 0x34, 0x20, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66,
0x69, 0x65, 0x73, 0x20, 0x74, 0x68, 0x65, 0x20, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x6f, 0x72,
0x20, 0x77, 0x68, 0x69, 0x63, 0x68, 0x20, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64,
0x20, 0x74, 0x68, 0x69, 0x73, 0x20, 0x63, 0x61, 0x6c, 0x6c, 0x2e, 0x0a, 0x0a, 0x0d, 0x0a, 0x05,
0x04, 0x01, 0x02, 0x00, 0x04, 0x12, 0x04, 0xa0, 0x01, 0x02, 0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04,
0x01, 0x02, 0x00, 0x06, 0x12, 0x04, 0xa0, 0x01, 0x0b, 0x15, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x01,
0x02, 0x00, 0x01, 0x12, 0x04, 0xa0, 0x01, 0x16, 0x21, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x01, 0x02,
0x00, 0x03, 0x12, 0x04, 0xa0, 0x01, 0x24, 0x25, 0x0a, 0x0c, 0x0a, 0x04, 0x04, 0x01, 0x02, 0x01,
0x12, 0x04, 0xa1, 0x01, 0x02, 0x28, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x01, 0x02, 0x01, 0x04, 0x12,
0x04, 0xa1, 0x01, 0x02, 0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x01, 0x02, 0x01, 0x06, 0x12, 0x04,
0xa1, 0x01, 0x0b, 0x16, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x01, 0x02, 0x01, 0x01, 0x12, 0x04, 0xa1,
0x01, 0x17, 0x23, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x01, 0x02, 0x01, 0x03, 0x12, 0x04, 0xa1, 0x01,
0x26, 0x27, 0x0a, 0xc1, 0x01, 0x0a, 0x04, 0x04, 0x01, 0x02, 0x02, 0x12, 0x04, 0xa6, 0x01, 0x02,
0x19, 0x1a, 0xb2, 0x01, 0x20, 0x54, 0x79, 0x70, 0x65, 0x20, 0x6f, 0x66, 0x20, 0x74, 0x68, 0x65,
0x20, 0x63, 0x61, 0x6c, 0x6c, 0x2c, 0x20, 0x69, 0x6e, 0x64, 0x69, 0x63, 0x61, 0x74, 0x65, 0x73,
0x20, 0x77, 0x68, 0x69, 0x63, 0x68, 0x20, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x20,
0x66, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x62, 0x65, 0x6c, 0x6f, 0x77, 0x20, 0x73, 0x68, 0x6f, 0x75,
0x6c, 0x64, 0x20, 0x62, 0x65, 0x0a, 0x20, 0x70, 0x72, 0x65, 0x73, 0x65, 0x6e, 0x74, 0x20, 0x69,
0x66, 0x20, 0x74, 0x68, 0x61, 0x74, 0x20, 0x74, 0x79, 0x70, 0x65, 0x20, 0x68, 0x61, 0x73, 0x20,
0x61, 0x20, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x20, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
0x20, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x0a, 0x20, 0x49, 0x6e,
0x20, 0x63, 0x61, 0x73, 0x65, 0x20, 0x74, 0x79, 0x70, 0x65, 0x20, 0x69, 0x73, 0x20, 0x53, 0x55,
0x42, 0x53, 0x43, 0x52, 0x49, 0x42, 0x45, 0x44, 0x2c, 0x20, 0x6e, 0x6f, 0x20, 0x6d, 0x65, 0x73,
0x73, 0x61, 0x67, 0x65, 0x20, 0x6e, 0x65, 0x65, 0x64, 0x73, 0x20, 0x74, 0x6f, 0x20, 0x62, 0x65,
0x20, 0x73, 0x65, 0x74, 0x2e, 0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x01, 0x02, 0x02, 0x04, 0x12,
0x04, 0xa6, 0x01, 0x02, 0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x01, 0x02, 0x02, 0x06, 0x12, 0x04,
0xa6, 0x01, 0x0b, 0x0f, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x01, 0x02, 0x02, 0x01, 0x12, 0x04, 0xa6,
0x01, 0x10, 0x14, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x01, 0x02, 0x02, 0x03, 0x12, 0x04, 0xa6, 0x01,
0x17, 0x18, 0x0a, 0x0c, 0x0a, 0x04, 0x04, 0x01, 0x02, 0x03, 0x12, 0x04, 0xa8, 0x01, 0x02, 0x23,
0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x01, 0x02, 0x03, 0x04, 0x12, 0x04, 0xa8, 0x01, 0x02, 0x0a, 0x0a,
0x0d, 0x0a, 0x05, 0x04, 0x01, 0x02, 0x03, 0x06, 0x12, 0x04, 0xa8, 0x01, 0x0b, 0x14, 0x0a, 0x0d,
0x0a, 0x05, 0x04, 0x01, 0x02, 0x03, 0x01, 0x12, 0x04, 0xa8, 0x01, 0x15, 0x1e, 0x0a, 0x0d, 0x0a,
0x05, 0x04, 0x01, 0x02, 0x03, 0x03, 0x12, 0x04, 0xa8, 0x01, 0x21, 0x22, 0x0a, 0x0c, 0x0a, 0x04,
0x04, 0x01, 0x02, 0x04, 0x12, 0x04, 0xa9, 0x01, 0x02, 0x1d, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x01,
0x02, 0x04, 0x04, 0x12, 0x04, 0xa9, 0x01, 0x02, 0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x01, 0x02,
0x04, 0x06, 0x12, 0x04, 0xa9, 0x01, 0x0b, 0x11, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x01, 0x02, 0x04,
0x01, 0x12, 0x04, 0xa9, 0x01, 0x12, 0x18, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x01, 0x02, 0x04, 0x03,
0x12, 0x04, 0xa9, 0x01, 0x1b, 0x1c, 0x0a, 0x0c, 0x0a, 0x04, 0x04, 0x01, 0x02, 0x05, 0x12, 0x04,
0xaa, 0x01, 0x02, 0x1f, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x01, 0x02, 0x05, 0x04, 0x12, 0x04, 0xaa,
0x01, 0x02, 0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x01, 0x02, 0x05, 0x06, 0x12, 0x04, 0xaa, 0x01,
0x0b, 0x12, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x01, 0x02, 0x05, 0x01, 0x12, 0x04, 0xaa, 0x01, 0x13,
0x1a, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x01, 0x02, 0x05, 0x03, 0x12, 0x04, 0xaa, 0x01, 0x1d, 0x1e,
];
static mut file_descriptor_proto_lazy: ::protobuf::lazy::Lazy<::protobuf::descriptor::FileDescriptorProto> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const ::protobuf::descriptor::FileDescriptorProto,
};
fn parse_descriptor_proto() -> ::protobuf::descriptor::FileDescriptorProto {
::protobuf::parse_from_bytes(file_descriptor_proto_data).unwrap()
}
pub fn file_descriptor_proto() -> &'static ::protobuf::descriptor::FileDescriptorProto {
unsafe {
file_descriptor_proto_lazy.get(|| {
parse_descriptor_proto()
})
}
}