#![allow(unknown_lints)]
#![allow(clippy::all)]
#![cfg_attr(rustfmt, rustfmt_skip)]
#![allow(box_pointers)]
#![allow(dead_code)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
#![allow(non_upper_case_globals)]
#![allow(trivial_casts)]
#![allow(unsafe_code)]
#![allow(unused_imports)]
#![allow(unused_results)]
use protobuf::Message as Message_imported_for_functions;
use protobuf::ProtobufEnum as ProtobufEnum_imported_for_functions;
#[derive(Clone,Default)]
pub struct Row {
key: ::protobuf::SingularField<::std::vec::Vec<u8>>,
families: ::protobuf::RepeatedField<Family>,
unknown_fields: ::protobuf::UnknownFields,
cached_size: ::std::cell::Cell<u32>,
}
unsafe impl ::std::marker::Sync for Row {}
impl Row {
pub fn new() -> Row {
::std::default::Default::default()
}
pub fn default_instance() -> &'static Row {
static mut instance: ::protobuf::lazy::Lazy<Row> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const Row,
};
unsafe {
instance.get(|| {
Row {
key: ::protobuf::SingularField::none(),
families: ::protobuf::RepeatedField::new(),
unknown_fields: ::protobuf::UnknownFields::new(),
cached_size: ::std::cell::Cell::new(0),
}
})
}
}
pub fn clear_key(&mut self) {
self.key.clear();
}
pub fn has_key(&self) -> bool {
self.key.is_some()
}
pub fn set_key(&mut self, v: ::std::vec::Vec<u8>) {
self.key = ::protobuf::SingularField::some(v);
}
pub fn mut_key(&mut self) -> &mut ::std::vec::Vec<u8> {
if self.key.is_none() {
self.key.set_default();
};
self.key.as_mut().unwrap()
}
pub fn take_key(&mut self) -> ::std::vec::Vec<u8> {
self.key.take().unwrap_or_else(|| ::std::vec::Vec::new())
}
pub fn get_key(&self) -> &[u8] {
match self.key.as_ref() {
Some(v) => &v,
None => &[],
}
}
pub fn clear_families(&mut self) {
self.families.clear();
}
pub fn set_families(&mut self, v: ::protobuf::RepeatedField<Family>) {
self.families = v;
}
pub fn mut_families(&mut self) -> &mut ::protobuf::RepeatedField<Family> {
&mut self.families
}
pub fn take_families(&mut self) -> ::protobuf::RepeatedField<Family> {
::std::mem::replace(&mut self.families, ::protobuf::RepeatedField::new())
}
pub fn get_families(&self) -> &[Family] {
&self.families
}
}
impl ::protobuf::Message for Row {
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_singular_bytes_into(wire_type, is, &mut self.key));
},
2 => {
try!(::protobuf::rt::read_repeated_message_into(wire_type, is, &mut self.families));
},
_ => {
try!(::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields()));
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u32 {
let mut my_size = 0;
for value in &self.key {
my_size += ::protobuf::rt::bytes_size(1, &value);
};
for value in &self.families {
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.key.as_ref() {
try!(os.write_bytes(1, &v));
};
for v in &self.families {
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(&self) -> &::protobuf::UnknownFields {
&self.unknown_fields
}
fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields {
&mut self.unknown_fields
}
fn type_id(&self) -> ::std::any::TypeId {
::std::any::TypeId::of::<Row>()
}
fn as_any(&self) -> &dyn (::std::any::Any) {
self as &dyn (::std::any::Any)
}
fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
::protobuf::MessageStatic::descriptor_static(None::<Self>)
}
}
impl ::protobuf::MessageStatic for Row {
fn new() -> Row {
Row::new()
}
fn descriptor_static(_: ::std::option::Option<Row>) -> &'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(
"key",
Row::has_key,
Row::get_key,
));
fields.push(::protobuf::reflect::accessor::make_repeated_message_accessor(
"families",
Row::get_families,
));
::protobuf::reflect::MessageDescriptor::new::<Row>(
"Row",
fields,
file_descriptor_proto()
)
})
}
}
}
impl ::protobuf::Clear for Row {
fn clear(&mut self) {
self.clear_key();
self.clear_families();
self.unknown_fields.clear();
}
}
impl ::std::cmp::PartialEq for Row {
fn eq(&self, other: &Row) -> bool {
self.key == other.key &&
self.families == other.families &&
self.unknown_fields == other.unknown_fields
}
}
impl ::std::fmt::Debug for Row {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
#[derive(Clone,Default)]
pub struct Family {
name: ::protobuf::SingularField<::std::string::String>,
columns: ::protobuf::RepeatedField<Column>,
unknown_fields: ::protobuf::UnknownFields,
cached_size: ::std::cell::Cell<u32>,
}
unsafe impl ::std::marker::Sync for Family {}
impl Family {
pub fn new() -> Family {
::std::default::Default::default()
}
pub fn default_instance() -> &'static Family {
static mut instance: ::protobuf::lazy::Lazy<Family> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const Family,
};
unsafe {
instance.get(|| {
Family {
name: ::protobuf::SingularField::none(),
columns: ::protobuf::RepeatedField::new(),
unknown_fields: ::protobuf::UnknownFields::new(),
cached_size: ::std::cell::Cell::new(0),
}
})
}
}
pub fn clear_name(&mut self) {
self.name.clear();
}
pub fn has_name(&self) -> bool {
self.name.is_some()
}
pub fn set_name(&mut self, v: ::std::string::String) {
self.name = ::protobuf::SingularField::some(v);
}
pub fn mut_name(&mut self) -> &mut ::std::string::String {
if self.name.is_none() {
self.name.set_default();
};
self.name.as_mut().unwrap()
}
pub fn take_name(&mut self) -> ::std::string::String {
self.name.take().unwrap_or_else(|| ::std::string::String::new())
}
pub fn get_name(&self) -> &str {
match self.name.as_ref() {
Some(v) => &v,
None => "",
}
}
pub fn clear_columns(&mut self) {
self.columns.clear();
}
pub fn set_columns(&mut self, v: ::protobuf::RepeatedField<Column>) {
self.columns = v;
}
pub fn mut_columns(&mut self) -> &mut ::protobuf::RepeatedField<Column> {
&mut self.columns
}
pub fn take_columns(&mut self) -> ::protobuf::RepeatedField<Column> {
::std::mem::replace(&mut self.columns, ::protobuf::RepeatedField::new())
}
pub fn get_columns(&self) -> &[Column] {
&self.columns
}
}
impl ::protobuf::Message for Family {
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_singular_string_into(wire_type, is, &mut self.name));
},
2 => {
try!(::protobuf::rt::read_repeated_message_into(wire_type, is, &mut self.columns));
},
_ => {
try!(::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields()));
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u32 {
let mut my_size = 0;
for value in &self.name {
my_size += ::protobuf::rt::string_size(1, &value);
};
for value in &self.columns {
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.name.as_ref() {
try!(os.write_string(1, &v));
};
for v in &self.columns {
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(&self) -> &::protobuf::UnknownFields {
&self.unknown_fields
}
fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields {
&mut self.unknown_fields
}
fn type_id(&self) -> ::std::any::TypeId {
::std::any::TypeId::of::<Family>()
}
fn as_any(&self) -> &dyn (::std::any::Any) {
self as &dyn (::std::any::Any)
}
fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
::protobuf::MessageStatic::descriptor_static(None::<Self>)
}
}
impl ::protobuf::MessageStatic for Family {
fn new() -> Family {
Family::new()
}
fn descriptor_static(_: ::std::option::Option<Family>) -> &'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(
"name",
Family::has_name,
Family::get_name,
));
fields.push(::protobuf::reflect::accessor::make_repeated_message_accessor(
"columns",
Family::get_columns,
));
::protobuf::reflect::MessageDescriptor::new::<Family>(
"Family",
fields,
file_descriptor_proto()
)
})
}
}
}
impl ::protobuf::Clear for Family {
fn clear(&mut self) {
self.clear_name();
self.clear_columns();
self.unknown_fields.clear();
}
}
impl ::std::cmp::PartialEq for Family {
fn eq(&self, other: &Family) -> bool {
self.name == other.name &&
self.columns == other.columns &&
self.unknown_fields == other.unknown_fields
}
}
impl ::std::fmt::Debug for Family {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
#[derive(Clone,Default)]
pub struct Column {
qualifier: ::protobuf::SingularField<::std::vec::Vec<u8>>,
cells: ::protobuf::RepeatedField<Cell>,
unknown_fields: ::protobuf::UnknownFields,
cached_size: ::std::cell::Cell<u32>,
}
unsafe impl ::std::marker::Sync for Column {}
impl Column {
pub fn new() -> Column {
::std::default::Default::default()
}
pub fn default_instance() -> &'static Column {
static mut instance: ::protobuf::lazy::Lazy<Column> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const Column,
};
unsafe {
instance.get(|| {
Column {
qualifier: ::protobuf::SingularField::none(),
cells: ::protobuf::RepeatedField::new(),
unknown_fields: ::protobuf::UnknownFields::new(),
cached_size: ::std::cell::Cell::new(0),
}
})
}
}
pub fn clear_qualifier(&mut self) {
self.qualifier.clear();
}
pub fn has_qualifier(&self) -> bool {
self.qualifier.is_some()
}
pub fn set_qualifier(&mut self, v: ::std::vec::Vec<u8>) {
self.qualifier = ::protobuf::SingularField::some(v);
}
pub fn mut_qualifier(&mut self) -> &mut ::std::vec::Vec<u8> {
if self.qualifier.is_none() {
self.qualifier.set_default();
};
self.qualifier.as_mut().unwrap()
}
pub fn take_qualifier(&mut self) -> ::std::vec::Vec<u8> {
self.qualifier.take().unwrap_or_else(|| ::std::vec::Vec::new())
}
pub fn get_qualifier(&self) -> &[u8] {
match self.qualifier.as_ref() {
Some(v) => &v,
None => &[],
}
}
pub fn clear_cells(&mut self) {
self.cells.clear();
}
pub fn set_cells(&mut self, v: ::protobuf::RepeatedField<Cell>) {
self.cells = v;
}
pub fn mut_cells(&mut self) -> &mut ::protobuf::RepeatedField<Cell> {
&mut self.cells
}
pub fn take_cells(&mut self) -> ::protobuf::RepeatedField<Cell> {
::std::mem::replace(&mut self.cells, ::protobuf::RepeatedField::new())
}
pub fn get_cells(&self) -> &[Cell] {
&self.cells
}
}
impl ::protobuf::Message for Column {
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_singular_bytes_into(wire_type, is, &mut self.qualifier));
},
2 => {
try!(::protobuf::rt::read_repeated_message_into(wire_type, is, &mut self.cells));
},
_ => {
try!(::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields()));
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u32 {
let mut my_size = 0;
for value in &self.qualifier {
my_size += ::protobuf::rt::bytes_size(1, &value);
};
for value in &self.cells {
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.qualifier.as_ref() {
try!(os.write_bytes(1, &v));
};
for v in &self.cells {
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(&self) -> &::protobuf::UnknownFields {
&self.unknown_fields
}
fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields {
&mut self.unknown_fields
}
fn type_id(&self) -> ::std::any::TypeId {
::std::any::TypeId::of::<Column>()
}
fn as_any(&self) -> &dyn (::std::any::Any) {
self as &dyn (::std::any::Any)
}
fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
::protobuf::MessageStatic::descriptor_static(None::<Self>)
}
}
impl ::protobuf::MessageStatic for Column {
fn new() -> Column {
Column::new()
}
fn descriptor_static(_: ::std::option::Option<Column>) -> &'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(
"qualifier",
Column::has_qualifier,
Column::get_qualifier,
));
fields.push(::protobuf::reflect::accessor::make_repeated_message_accessor(
"cells",
Column::get_cells,
));
::protobuf::reflect::MessageDescriptor::new::<Column>(
"Column",
fields,
file_descriptor_proto()
)
})
}
}
}
impl ::protobuf::Clear for Column {
fn clear(&mut self) {
self.clear_qualifier();
self.clear_cells();
self.unknown_fields.clear();
}
}
impl ::std::cmp::PartialEq for Column {
fn eq(&self, other: &Column) -> bool {
self.qualifier == other.qualifier &&
self.cells == other.cells &&
self.unknown_fields == other.unknown_fields
}
}
impl ::std::fmt::Debug for Column {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
#[derive(Clone,Default)]
pub struct Cell {
timestamp_micros: ::std::option::Option<i64>,
value: ::protobuf::SingularField<::std::vec::Vec<u8>>,
labels: ::protobuf::RepeatedField<::std::string::String>,
unknown_fields: ::protobuf::UnknownFields,
cached_size: ::std::cell::Cell<u32>,
}
unsafe impl ::std::marker::Sync for Cell {}
impl Cell {
pub fn new() -> Cell {
::std::default::Default::default()
}
pub fn default_instance() -> &'static Cell {
static mut instance: ::protobuf::lazy::Lazy<Cell> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const Cell,
};
unsafe {
instance.get(|| {
Cell {
timestamp_micros: ::std::option::Option::None,
value: ::protobuf::SingularField::none(),
labels: ::protobuf::RepeatedField::new(),
unknown_fields: ::protobuf::UnknownFields::new(),
cached_size: ::std::cell::Cell::new(0),
}
})
}
}
pub fn clear_timestamp_micros(&mut self) {
self.timestamp_micros = ::std::option::Option::None;
}
pub fn has_timestamp_micros(&self) -> bool {
self.timestamp_micros.is_some()
}
pub fn set_timestamp_micros(&mut self, v: i64) {
self.timestamp_micros = ::std::option::Option::Some(v);
}
pub fn get_timestamp_micros(&self) -> i64 {
self.timestamp_micros.unwrap_or(0)
}
pub fn clear_value(&mut self) {
self.value.clear();
}
pub fn has_value(&self) -> bool {
self.value.is_some()
}
pub fn set_value(&mut self, v: ::std::vec::Vec<u8>) {
self.value = ::protobuf::SingularField::some(v);
}
pub fn mut_value(&mut self) -> &mut ::std::vec::Vec<u8> {
if self.value.is_none() {
self.value.set_default();
};
self.value.as_mut().unwrap()
}
pub fn take_value(&mut self) -> ::std::vec::Vec<u8> {
self.value.take().unwrap_or_else(|| ::std::vec::Vec::new())
}
pub fn get_value(&self) -> &[u8] {
match self.value.as_ref() {
Some(v) => &v,
None => &[],
}
}
pub fn clear_labels(&mut self) {
self.labels.clear();
}
pub fn set_labels(&mut self, v: ::protobuf::RepeatedField<::std::string::String>) {
self.labels = v;
}
pub fn mut_labels(&mut self) -> &mut ::protobuf::RepeatedField<::std::string::String> {
&mut self.labels
}
pub fn take_labels(&mut self) -> ::protobuf::RepeatedField<::std::string::String> {
::std::mem::replace(&mut self.labels, ::protobuf::RepeatedField::new())
}
pub fn get_labels(&self) -> &[::std::string::String] {
&self.labels
}
}
impl ::protobuf::Message for Cell {
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 => {
if wire_type != ::protobuf::wire_format::WireTypeVarint {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
};
let tmp = try!(is.read_int64());
self.timestamp_micros = ::std::option::Option::Some(tmp);
},
2 => {
try!(::protobuf::rt::read_singular_bytes_into(wire_type, is, &mut self.value));
},
3 => {
try!(::protobuf::rt::read_repeated_string_into(wire_type, is, &mut self.labels));
},
_ => {
try!(::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields()));
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u32 {
let mut my_size = 0;
for value in &self.timestamp_micros {
my_size += ::protobuf::rt::value_size(1, *value, ::protobuf::wire_format::WireTypeVarint);
};
for value in &self.value {
my_size += ::protobuf::rt::bytes_size(2, &value);
};
for value in &self.labels {
my_size += ::protobuf::rt::string_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.timestamp_micros {
try!(os.write_int64(1, v));
};
if let Some(v) = self.value.as_ref() {
try!(os.write_bytes(2, &v));
};
for v in &self.labels {
try!(os.write_string(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(&self) -> &::protobuf::UnknownFields {
&self.unknown_fields
}
fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields {
&mut self.unknown_fields
}
fn type_id(&self) -> ::std::any::TypeId {
::std::any::TypeId::of::<Cell>()
}
fn as_any(&self) -> &dyn (::std::any::Any) {
self as &dyn (::std::any::Any)
}
fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
::protobuf::MessageStatic::descriptor_static(None::<Self>)
}
}
impl ::protobuf::MessageStatic for Cell {
fn new() -> Cell {
Cell::new()
}
fn descriptor_static(_: ::std::option::Option<Cell>) -> &'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_i64_accessor(
"timestamp_micros",
Cell::has_timestamp_micros,
Cell::get_timestamp_micros,
));
fields.push(::protobuf::reflect::accessor::make_singular_bytes_accessor(
"value",
Cell::has_value,
Cell::get_value,
));
fields.push(::protobuf::reflect::accessor::make_repeated_string_accessor(
"labels",
Cell::get_labels,
));
::protobuf::reflect::MessageDescriptor::new::<Cell>(
"Cell",
fields,
file_descriptor_proto()
)
})
}
}
}
impl ::protobuf::Clear for Cell {
fn clear(&mut self) {
self.clear_timestamp_micros();
self.clear_value();
self.clear_labels();
self.unknown_fields.clear();
}
}
impl ::std::cmp::PartialEq for Cell {
fn eq(&self, other: &Cell) -> bool {
self.timestamp_micros == other.timestamp_micros &&
self.value == other.value &&
self.labels == other.labels &&
self.unknown_fields == other.unknown_fields
}
}
impl ::std::fmt::Debug for Cell {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
#[derive(Clone,Default)]
pub struct RowRange {
start_key: ::std::option::Option<RowRange_oneof_start_key>,
end_key: ::std::option::Option<RowRange_oneof_end_key>,
unknown_fields: ::protobuf::UnknownFields,
cached_size: ::std::cell::Cell<u32>,
}
unsafe impl ::std::marker::Sync for RowRange {}
#[derive(Clone,PartialEq)]
pub enum RowRange_oneof_start_key {
start_key_closed(::std::vec::Vec<u8>),
start_key_open(::std::vec::Vec<u8>),
}
#[derive(Clone,PartialEq)]
pub enum RowRange_oneof_end_key {
end_key_open(::std::vec::Vec<u8>),
end_key_closed(::std::vec::Vec<u8>),
}
impl RowRange {
pub fn new() -> RowRange {
::std::default::Default::default()
}
pub fn default_instance() -> &'static RowRange {
static mut instance: ::protobuf::lazy::Lazy<RowRange> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const RowRange,
};
unsafe {
instance.get(|| {
RowRange {
start_key: ::std::option::Option::None,
end_key: ::std::option::Option::None,
unknown_fields: ::protobuf::UnknownFields::new(),
cached_size: ::std::cell::Cell::new(0),
}
})
}
}
pub fn clear_start_key_closed(&mut self) {
self.start_key = ::std::option::Option::None;
}
pub fn has_start_key_closed(&self) -> bool {
match self.start_key {
::std::option::Option::Some(RowRange_oneof_start_key::start_key_closed(..)) => true,
_ => false,
}
}
pub fn set_start_key_closed(&mut self, v: ::std::vec::Vec<u8>) {
self.start_key = ::std::option::Option::Some(RowRange_oneof_start_key::start_key_closed(v))
}
pub fn mut_start_key_closed(&mut self) -> &mut ::std::vec::Vec<u8> {
if let ::std::option::Option::Some(RowRange_oneof_start_key::start_key_closed(_)) = self.start_key {
} else {
self.start_key = ::std::option::Option::Some(RowRange_oneof_start_key::start_key_closed(::std::vec::Vec::new()));
}
match self.start_key {
::std::option::Option::Some(RowRange_oneof_start_key::start_key_closed(ref mut v)) => v,
_ => panic!(),
}
}
pub fn take_start_key_closed(&mut self) -> ::std::vec::Vec<u8> {
if self.has_start_key_closed() {
match self.start_key.take() {
::std::option::Option::Some(RowRange_oneof_start_key::start_key_closed(v)) => v,
_ => panic!(),
}
} else {
::std::vec::Vec::new()
}
}
pub fn get_start_key_closed(&self) -> &[u8] {
match self.start_key {
::std::option::Option::Some(RowRange_oneof_start_key::start_key_closed(ref v)) => v,
_ => &[],
}
}
pub fn clear_start_key_open(&mut self) {
self.start_key = ::std::option::Option::None;
}
pub fn has_start_key_open(&self) -> bool {
match self.start_key {
::std::option::Option::Some(RowRange_oneof_start_key::start_key_open(..)) => true,
_ => false,
}
}
pub fn set_start_key_open(&mut self, v: ::std::vec::Vec<u8>) {
self.start_key = ::std::option::Option::Some(RowRange_oneof_start_key::start_key_open(v))
}
pub fn mut_start_key_open(&mut self) -> &mut ::std::vec::Vec<u8> {
if let ::std::option::Option::Some(RowRange_oneof_start_key::start_key_open(_)) = self.start_key {
} else {
self.start_key = ::std::option::Option::Some(RowRange_oneof_start_key::start_key_open(::std::vec::Vec::new()));
}
match self.start_key {
::std::option::Option::Some(RowRange_oneof_start_key::start_key_open(ref mut v)) => v,
_ => panic!(),
}
}
pub fn take_start_key_open(&mut self) -> ::std::vec::Vec<u8> {
if self.has_start_key_open() {
match self.start_key.take() {
::std::option::Option::Some(RowRange_oneof_start_key::start_key_open(v)) => v,
_ => panic!(),
}
} else {
::std::vec::Vec::new()
}
}
pub fn get_start_key_open(&self) -> &[u8] {
match self.start_key {
::std::option::Option::Some(RowRange_oneof_start_key::start_key_open(ref v)) => v,
_ => &[],
}
}
pub fn clear_end_key_open(&mut self) {
self.end_key = ::std::option::Option::None;
}
pub fn has_end_key_open(&self) -> bool {
match self.end_key {
::std::option::Option::Some(RowRange_oneof_end_key::end_key_open(..)) => true,
_ => false,
}
}
pub fn set_end_key_open(&mut self, v: ::std::vec::Vec<u8>) {
self.end_key = ::std::option::Option::Some(RowRange_oneof_end_key::end_key_open(v))
}
pub fn mut_end_key_open(&mut self) -> &mut ::std::vec::Vec<u8> {
if let ::std::option::Option::Some(RowRange_oneof_end_key::end_key_open(_)) = self.end_key {
} else {
self.end_key = ::std::option::Option::Some(RowRange_oneof_end_key::end_key_open(::std::vec::Vec::new()));
}
match self.end_key {
::std::option::Option::Some(RowRange_oneof_end_key::end_key_open(ref mut v)) => v,
_ => panic!(),
}
}
pub fn take_end_key_open(&mut self) -> ::std::vec::Vec<u8> {
if self.has_end_key_open() {
match self.end_key.take() {
::std::option::Option::Some(RowRange_oneof_end_key::end_key_open(v)) => v,
_ => panic!(),
}
} else {
::std::vec::Vec::new()
}
}
pub fn get_end_key_open(&self) -> &[u8] {
match self.end_key {
::std::option::Option::Some(RowRange_oneof_end_key::end_key_open(ref v)) => v,
_ => &[],
}
}
pub fn clear_end_key_closed(&mut self) {
self.end_key = ::std::option::Option::None;
}
pub fn has_end_key_closed(&self) -> bool {
match self.end_key {
::std::option::Option::Some(RowRange_oneof_end_key::end_key_closed(..)) => true,
_ => false,
}
}
pub fn set_end_key_closed(&mut self, v: ::std::vec::Vec<u8>) {
self.end_key = ::std::option::Option::Some(RowRange_oneof_end_key::end_key_closed(v))
}
pub fn mut_end_key_closed(&mut self) -> &mut ::std::vec::Vec<u8> {
if let ::std::option::Option::Some(RowRange_oneof_end_key::end_key_closed(_)) = self.end_key {
} else {
self.end_key = ::std::option::Option::Some(RowRange_oneof_end_key::end_key_closed(::std::vec::Vec::new()));
}
match self.end_key {
::std::option::Option::Some(RowRange_oneof_end_key::end_key_closed(ref mut v)) => v,
_ => panic!(),
}
}
pub fn take_end_key_closed(&mut self) -> ::std::vec::Vec<u8> {
if self.has_end_key_closed() {
match self.end_key.take() {
::std::option::Option::Some(RowRange_oneof_end_key::end_key_closed(v)) => v,
_ => panic!(),
}
} else {
::std::vec::Vec::new()
}
}
pub fn get_end_key_closed(&self) -> &[u8] {
match self.end_key {
::std::option::Option::Some(RowRange_oneof_end_key::end_key_closed(ref v)) => v,
_ => &[],
}
}
}
impl ::protobuf::Message for RowRange {
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 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
};
self.start_key = ::std::option::Option::Some(RowRange_oneof_start_key::start_key_closed(try!(is.read_bytes())));
},
2 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
};
self.start_key = ::std::option::Option::Some(RowRange_oneof_start_key::start_key_open(try!(is.read_bytes())));
},
3 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
};
self.end_key = ::std::option::Option::Some(RowRange_oneof_end_key::end_key_open(try!(is.read_bytes())));
},
4 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
};
self.end_key = ::std::option::Option::Some(RowRange_oneof_end_key::end_key_closed(try!(is.read_bytes())));
},
_ => {
try!(::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields()));
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u32 {
let mut my_size = 0;
if let ::std::option::Option::Some(ref v) = self.start_key {
match v {
&RowRange_oneof_start_key::start_key_closed(ref v) => {
my_size += ::protobuf::rt::bytes_size(1, &v);
},
&RowRange_oneof_start_key::start_key_open(ref v) => {
my_size += ::protobuf::rt::bytes_size(2, &v);
},
};
};
if let ::std::option::Option::Some(ref v) = self.end_key {
match v {
&RowRange_oneof_end_key::end_key_open(ref v) => {
my_size += ::protobuf::rt::bytes_size(3, &v);
},
&RowRange_oneof_end_key::end_key_closed(ref v) => {
my_size += ::protobuf::rt::bytes_size(4, &v);
},
};
};
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 ::std::option::Option::Some(ref v) = self.start_key {
match v {
&RowRange_oneof_start_key::start_key_closed(ref v) => {
try!(os.write_bytes(1, v));
},
&RowRange_oneof_start_key::start_key_open(ref v) => {
try!(os.write_bytes(2, v));
},
};
};
if let ::std::option::Option::Some(ref v) = self.end_key {
match v {
&RowRange_oneof_end_key::end_key_open(ref v) => {
try!(os.write_bytes(3, v));
},
&RowRange_oneof_end_key::end_key_closed(ref v) => {
try!(os.write_bytes(4, 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(&self) -> &::protobuf::UnknownFields {
&self.unknown_fields
}
fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields {
&mut self.unknown_fields
}
fn type_id(&self) -> ::std::any::TypeId {
::std::any::TypeId::of::<RowRange>()
}
fn as_any(&self) -> &dyn (::std::any::Any) {
self as &dyn (::std::any::Any)
}
fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
::protobuf::MessageStatic::descriptor_static(None::<Self>)
}
}
impl ::protobuf::MessageStatic for RowRange {
fn new() -> RowRange {
RowRange::new()
}
fn descriptor_static(_: ::std::option::Option<RowRange>) -> &'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(
"start_key_closed",
RowRange::has_start_key_closed,
RowRange::get_start_key_closed,
));
fields.push(::protobuf::reflect::accessor::make_singular_bytes_accessor(
"start_key_open",
RowRange::has_start_key_open,
RowRange::get_start_key_open,
));
fields.push(::protobuf::reflect::accessor::make_singular_bytes_accessor(
"end_key_open",
RowRange::has_end_key_open,
RowRange::get_end_key_open,
));
fields.push(::protobuf::reflect::accessor::make_singular_bytes_accessor(
"end_key_closed",
RowRange::has_end_key_closed,
RowRange::get_end_key_closed,
));
::protobuf::reflect::MessageDescriptor::new::<RowRange>(
"RowRange",
fields,
file_descriptor_proto()
)
})
}
}
}
impl ::protobuf::Clear for RowRange {
fn clear(&mut self) {
self.clear_start_key_closed();
self.clear_start_key_open();
self.clear_end_key_open();
self.clear_end_key_closed();
self.unknown_fields.clear();
}
}
impl ::std::cmp::PartialEq for RowRange {
fn eq(&self, other: &RowRange) -> bool {
self.start_key == other.start_key &&
self.end_key == other.end_key &&
self.unknown_fields == other.unknown_fields
}
}
impl ::std::fmt::Debug for RowRange {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
#[derive(Clone,Default)]
pub struct RowSet {
row_keys: ::protobuf::RepeatedField<::std::vec::Vec<u8>>,
row_ranges: ::protobuf::RepeatedField<RowRange>,
unknown_fields: ::protobuf::UnknownFields,
cached_size: ::std::cell::Cell<u32>,
}
unsafe impl ::std::marker::Sync for RowSet {}
impl RowSet {
pub fn new() -> RowSet {
::std::default::Default::default()
}
pub fn default_instance() -> &'static RowSet {
static mut instance: ::protobuf::lazy::Lazy<RowSet> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const RowSet,
};
unsafe {
instance.get(|| {
RowSet {
row_keys: ::protobuf::RepeatedField::new(),
row_ranges: ::protobuf::RepeatedField::new(),
unknown_fields: ::protobuf::UnknownFields::new(),
cached_size: ::std::cell::Cell::new(0),
}
})
}
}
pub fn clear_row_keys(&mut self) {
self.row_keys.clear();
}
pub fn set_row_keys(&mut self, v: ::protobuf::RepeatedField<::std::vec::Vec<u8>>) {
self.row_keys = v;
}
pub fn mut_row_keys(&mut self) -> &mut ::protobuf::RepeatedField<::std::vec::Vec<u8>> {
&mut self.row_keys
}
pub fn take_row_keys(&mut self) -> ::protobuf::RepeatedField<::std::vec::Vec<u8>> {
::std::mem::replace(&mut self.row_keys, ::protobuf::RepeatedField::new())
}
pub fn get_row_keys(&self) -> &[::std::vec::Vec<u8>] {
&self.row_keys
}
pub fn clear_row_ranges(&mut self) {
self.row_ranges.clear();
}
pub fn set_row_ranges(&mut self, v: ::protobuf::RepeatedField<RowRange>) {
self.row_ranges = v;
}
pub fn mut_row_ranges(&mut self) -> &mut ::protobuf::RepeatedField<RowRange> {
&mut self.row_ranges
}
pub fn take_row_ranges(&mut self) -> ::protobuf::RepeatedField<RowRange> {
::std::mem::replace(&mut self.row_ranges, ::protobuf::RepeatedField::new())
}
pub fn get_row_ranges(&self) -> &[RowRange] {
&self.row_ranges
}
}
impl ::protobuf::Message for RowSet {
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_bytes_into(wire_type, is, &mut self.row_keys));
},
2 => {
try!(::protobuf::rt::read_repeated_message_into(wire_type, is, &mut self.row_ranges));
},
_ => {
try!(::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields()));
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u32 {
let mut my_size = 0;
for value in &self.row_keys {
my_size += ::protobuf::rt::bytes_size(1, &value);
};
for value in &self.row_ranges {
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.row_keys {
try!(os.write_bytes(1, &v));
};
for v in &self.row_ranges {
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(&self) -> &::protobuf::UnknownFields {
&self.unknown_fields
}
fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields {
&mut self.unknown_fields
}
fn type_id(&self) -> ::std::any::TypeId {
::std::any::TypeId::of::<RowSet>()
}
fn as_any(&self) -> &dyn (::std::any::Any) {
self as &dyn (::std::any::Any)
}
fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
::protobuf::MessageStatic::descriptor_static(None::<Self>)
}
}
impl ::protobuf::MessageStatic for RowSet {
fn new() -> RowSet {
RowSet::new()
}
fn descriptor_static(_: ::std::option::Option<RowSet>) -> &'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_bytes_accessor(
"row_keys",
RowSet::get_row_keys,
));
fields.push(::protobuf::reflect::accessor::make_repeated_message_accessor(
"row_ranges",
RowSet::get_row_ranges,
));
::protobuf::reflect::MessageDescriptor::new::<RowSet>(
"RowSet",
fields,
file_descriptor_proto()
)
})
}
}
}
impl ::protobuf::Clear for RowSet {
fn clear(&mut self) {
self.clear_row_keys();
self.clear_row_ranges();
self.unknown_fields.clear();
}
}
impl ::std::cmp::PartialEq for RowSet {
fn eq(&self, other: &RowSet) -> bool {
self.row_keys == other.row_keys &&
self.row_ranges == other.row_ranges &&
self.unknown_fields == other.unknown_fields
}
}
impl ::std::fmt::Debug for RowSet {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
#[derive(Clone,Default)]
pub struct ColumnRange {
family_name: ::protobuf::SingularField<::std::string::String>,
start_qualifier: ::std::option::Option<ColumnRange_oneof_start_qualifier>,
end_qualifier: ::std::option::Option<ColumnRange_oneof_end_qualifier>,
unknown_fields: ::protobuf::UnknownFields,
cached_size: ::std::cell::Cell<u32>,
}
unsafe impl ::std::marker::Sync for ColumnRange {}
#[derive(Clone,PartialEq)]
pub enum ColumnRange_oneof_start_qualifier {
start_qualifier_closed(::std::vec::Vec<u8>),
start_qualifier_open(::std::vec::Vec<u8>),
}
#[derive(Clone,PartialEq)]
pub enum ColumnRange_oneof_end_qualifier {
end_qualifier_closed(::std::vec::Vec<u8>),
end_qualifier_open(::std::vec::Vec<u8>),
}
impl ColumnRange {
pub fn new() -> ColumnRange {
::std::default::Default::default()
}
pub fn default_instance() -> &'static ColumnRange {
static mut instance: ::protobuf::lazy::Lazy<ColumnRange> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const ColumnRange,
};
unsafe {
instance.get(|| {
ColumnRange {
family_name: ::protobuf::SingularField::none(),
start_qualifier: ::std::option::Option::None,
end_qualifier: ::std::option::Option::None,
unknown_fields: ::protobuf::UnknownFields::new(),
cached_size: ::std::cell::Cell::new(0),
}
})
}
}
pub fn clear_family_name(&mut self) {
self.family_name.clear();
}
pub fn has_family_name(&self) -> bool {
self.family_name.is_some()
}
pub fn set_family_name(&mut self, v: ::std::string::String) {
self.family_name = ::protobuf::SingularField::some(v);
}
pub fn mut_family_name(&mut self) -> &mut ::std::string::String {
if self.family_name.is_none() {
self.family_name.set_default();
};
self.family_name.as_mut().unwrap()
}
pub fn take_family_name(&mut self) -> ::std::string::String {
self.family_name.take().unwrap_or_else(|| ::std::string::String::new())
}
pub fn get_family_name(&self) -> &str {
match self.family_name.as_ref() {
Some(v) => &v,
None => "",
}
}
pub fn clear_start_qualifier_closed(&mut self) {
self.start_qualifier = ::std::option::Option::None;
}
pub fn has_start_qualifier_closed(&self) -> bool {
match self.start_qualifier {
::std::option::Option::Some(ColumnRange_oneof_start_qualifier::start_qualifier_closed(..)) => true,
_ => false,
}
}
pub fn set_start_qualifier_closed(&mut self, v: ::std::vec::Vec<u8>) {
self.start_qualifier = ::std::option::Option::Some(ColumnRange_oneof_start_qualifier::start_qualifier_closed(v))
}
pub fn mut_start_qualifier_closed(&mut self) -> &mut ::std::vec::Vec<u8> {
if let ::std::option::Option::Some(ColumnRange_oneof_start_qualifier::start_qualifier_closed(_)) = self.start_qualifier {
} else {
self.start_qualifier = ::std::option::Option::Some(ColumnRange_oneof_start_qualifier::start_qualifier_closed(::std::vec::Vec::new()));
}
match self.start_qualifier {
::std::option::Option::Some(ColumnRange_oneof_start_qualifier::start_qualifier_closed(ref mut v)) => v,
_ => panic!(),
}
}
pub fn take_start_qualifier_closed(&mut self) -> ::std::vec::Vec<u8> {
if self.has_start_qualifier_closed() {
match self.start_qualifier.take() {
::std::option::Option::Some(ColumnRange_oneof_start_qualifier::start_qualifier_closed(v)) => v,
_ => panic!(),
}
} else {
::std::vec::Vec::new()
}
}
pub fn get_start_qualifier_closed(&self) -> &[u8] {
match self.start_qualifier {
::std::option::Option::Some(ColumnRange_oneof_start_qualifier::start_qualifier_closed(ref v)) => v,
_ => &[],
}
}
pub fn clear_start_qualifier_open(&mut self) {
self.start_qualifier = ::std::option::Option::None;
}
pub fn has_start_qualifier_open(&self) -> bool {
match self.start_qualifier {
::std::option::Option::Some(ColumnRange_oneof_start_qualifier::start_qualifier_open(..)) => true,
_ => false,
}
}
pub fn set_start_qualifier_open(&mut self, v: ::std::vec::Vec<u8>) {
self.start_qualifier = ::std::option::Option::Some(ColumnRange_oneof_start_qualifier::start_qualifier_open(v))
}
pub fn mut_start_qualifier_open(&mut self) -> &mut ::std::vec::Vec<u8> {
if let ::std::option::Option::Some(ColumnRange_oneof_start_qualifier::start_qualifier_open(_)) = self.start_qualifier {
} else {
self.start_qualifier = ::std::option::Option::Some(ColumnRange_oneof_start_qualifier::start_qualifier_open(::std::vec::Vec::new()));
}
match self.start_qualifier {
::std::option::Option::Some(ColumnRange_oneof_start_qualifier::start_qualifier_open(ref mut v)) => v,
_ => panic!(),
}
}
pub fn take_start_qualifier_open(&mut self) -> ::std::vec::Vec<u8> {
if self.has_start_qualifier_open() {
match self.start_qualifier.take() {
::std::option::Option::Some(ColumnRange_oneof_start_qualifier::start_qualifier_open(v)) => v,
_ => panic!(),
}
} else {
::std::vec::Vec::new()
}
}
pub fn get_start_qualifier_open(&self) -> &[u8] {
match self.start_qualifier {
::std::option::Option::Some(ColumnRange_oneof_start_qualifier::start_qualifier_open(ref v)) => v,
_ => &[],
}
}
pub fn clear_end_qualifier_closed(&mut self) {
self.end_qualifier = ::std::option::Option::None;
}
pub fn has_end_qualifier_closed(&self) -> bool {
match self.end_qualifier {
::std::option::Option::Some(ColumnRange_oneof_end_qualifier::end_qualifier_closed(..)) => true,
_ => false,
}
}
pub fn set_end_qualifier_closed(&mut self, v: ::std::vec::Vec<u8>) {
self.end_qualifier = ::std::option::Option::Some(ColumnRange_oneof_end_qualifier::end_qualifier_closed(v))
}
pub fn mut_end_qualifier_closed(&mut self) -> &mut ::std::vec::Vec<u8> {
if let ::std::option::Option::Some(ColumnRange_oneof_end_qualifier::end_qualifier_closed(_)) = self.end_qualifier {
} else {
self.end_qualifier = ::std::option::Option::Some(ColumnRange_oneof_end_qualifier::end_qualifier_closed(::std::vec::Vec::new()));
}
match self.end_qualifier {
::std::option::Option::Some(ColumnRange_oneof_end_qualifier::end_qualifier_closed(ref mut v)) => v,
_ => panic!(),
}
}
pub fn take_end_qualifier_closed(&mut self) -> ::std::vec::Vec<u8> {
if self.has_end_qualifier_closed() {
match self.end_qualifier.take() {
::std::option::Option::Some(ColumnRange_oneof_end_qualifier::end_qualifier_closed(v)) => v,
_ => panic!(),
}
} else {
::std::vec::Vec::new()
}
}
pub fn get_end_qualifier_closed(&self) -> &[u8] {
match self.end_qualifier {
::std::option::Option::Some(ColumnRange_oneof_end_qualifier::end_qualifier_closed(ref v)) => v,
_ => &[],
}
}
pub fn clear_end_qualifier_open(&mut self) {
self.end_qualifier = ::std::option::Option::None;
}
pub fn has_end_qualifier_open(&self) -> bool {
match self.end_qualifier {
::std::option::Option::Some(ColumnRange_oneof_end_qualifier::end_qualifier_open(..)) => true,
_ => false,
}
}
pub fn set_end_qualifier_open(&mut self, v: ::std::vec::Vec<u8>) {
self.end_qualifier = ::std::option::Option::Some(ColumnRange_oneof_end_qualifier::end_qualifier_open(v))
}
pub fn mut_end_qualifier_open(&mut self) -> &mut ::std::vec::Vec<u8> {
if let ::std::option::Option::Some(ColumnRange_oneof_end_qualifier::end_qualifier_open(_)) = self.end_qualifier {
} else {
self.end_qualifier = ::std::option::Option::Some(ColumnRange_oneof_end_qualifier::end_qualifier_open(::std::vec::Vec::new()));
}
match self.end_qualifier {
::std::option::Option::Some(ColumnRange_oneof_end_qualifier::end_qualifier_open(ref mut v)) => v,
_ => panic!(),
}
}
pub fn take_end_qualifier_open(&mut self) -> ::std::vec::Vec<u8> {
if self.has_end_qualifier_open() {
match self.end_qualifier.take() {
::std::option::Option::Some(ColumnRange_oneof_end_qualifier::end_qualifier_open(v)) => v,
_ => panic!(),
}
} else {
::std::vec::Vec::new()
}
}
pub fn get_end_qualifier_open(&self) -> &[u8] {
match self.end_qualifier {
::std::option::Option::Some(ColumnRange_oneof_end_qualifier::end_qualifier_open(ref v)) => v,
_ => &[],
}
}
}
impl ::protobuf::Message for ColumnRange {
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_singular_string_into(wire_type, is, &mut self.family_name));
},
2 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
};
self.start_qualifier = ::std::option::Option::Some(ColumnRange_oneof_start_qualifier::start_qualifier_closed(try!(is.read_bytes())));
},
3 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
};
self.start_qualifier = ::std::option::Option::Some(ColumnRange_oneof_start_qualifier::start_qualifier_open(try!(is.read_bytes())));
},
4 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
};
self.end_qualifier = ::std::option::Option::Some(ColumnRange_oneof_end_qualifier::end_qualifier_closed(try!(is.read_bytes())));
},
5 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
};
self.end_qualifier = ::std::option::Option::Some(ColumnRange_oneof_end_qualifier::end_qualifier_open(try!(is.read_bytes())));
},
_ => {
try!(::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields()));
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u32 {
let mut my_size = 0;
for value in &self.family_name {
my_size += ::protobuf::rt::string_size(1, &value);
};
if let ::std::option::Option::Some(ref v) = self.start_qualifier {
match v {
&ColumnRange_oneof_start_qualifier::start_qualifier_closed(ref v) => {
my_size += ::protobuf::rt::bytes_size(2, &v);
},
&ColumnRange_oneof_start_qualifier::start_qualifier_open(ref v) => {
my_size += ::protobuf::rt::bytes_size(3, &v);
},
};
};
if let ::std::option::Option::Some(ref v) = self.end_qualifier {
match v {
&ColumnRange_oneof_end_qualifier::end_qualifier_closed(ref v) => {
my_size += ::protobuf::rt::bytes_size(4, &v);
},
&ColumnRange_oneof_end_qualifier::end_qualifier_open(ref v) => {
my_size += ::protobuf::rt::bytes_size(5, &v);
},
};
};
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.family_name.as_ref() {
try!(os.write_string(1, &v));
};
if let ::std::option::Option::Some(ref v) = self.start_qualifier {
match v {
&ColumnRange_oneof_start_qualifier::start_qualifier_closed(ref v) => {
try!(os.write_bytes(2, v));
},
&ColumnRange_oneof_start_qualifier::start_qualifier_open(ref v) => {
try!(os.write_bytes(3, v));
},
};
};
if let ::std::option::Option::Some(ref v) = self.end_qualifier {
match v {
&ColumnRange_oneof_end_qualifier::end_qualifier_closed(ref v) => {
try!(os.write_bytes(4, v));
},
&ColumnRange_oneof_end_qualifier::end_qualifier_open(ref v) => {
try!(os.write_bytes(5, 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(&self) -> &::protobuf::UnknownFields {
&self.unknown_fields
}
fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields {
&mut self.unknown_fields
}
fn type_id(&self) -> ::std::any::TypeId {
::std::any::TypeId::of::<ColumnRange>()
}
fn as_any(&self) -> &dyn (::std::any::Any) {
self as &dyn (::std::any::Any)
}
fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
::protobuf::MessageStatic::descriptor_static(None::<Self>)
}
}
impl ::protobuf::MessageStatic for ColumnRange {
fn new() -> ColumnRange {
ColumnRange::new()
}
fn descriptor_static(_: ::std::option::Option<ColumnRange>) -> &'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(
"family_name",
ColumnRange::has_family_name,
ColumnRange::get_family_name,
));
fields.push(::protobuf::reflect::accessor::make_singular_bytes_accessor(
"start_qualifier_closed",
ColumnRange::has_start_qualifier_closed,
ColumnRange::get_start_qualifier_closed,
));
fields.push(::protobuf::reflect::accessor::make_singular_bytes_accessor(
"start_qualifier_open",
ColumnRange::has_start_qualifier_open,
ColumnRange::get_start_qualifier_open,
));
fields.push(::protobuf::reflect::accessor::make_singular_bytes_accessor(
"end_qualifier_closed",
ColumnRange::has_end_qualifier_closed,
ColumnRange::get_end_qualifier_closed,
));
fields.push(::protobuf::reflect::accessor::make_singular_bytes_accessor(
"end_qualifier_open",
ColumnRange::has_end_qualifier_open,
ColumnRange::get_end_qualifier_open,
));
::protobuf::reflect::MessageDescriptor::new::<ColumnRange>(
"ColumnRange",
fields,
file_descriptor_proto()
)
})
}
}
}
impl ::protobuf::Clear for ColumnRange {
fn clear(&mut self) {
self.clear_family_name();
self.clear_start_qualifier_closed();
self.clear_start_qualifier_open();
self.clear_end_qualifier_closed();
self.clear_end_qualifier_open();
self.unknown_fields.clear();
}
}
impl ::std::cmp::PartialEq for ColumnRange {
fn eq(&self, other: &ColumnRange) -> bool {
self.family_name == other.family_name &&
self.start_qualifier == other.start_qualifier &&
self.end_qualifier == other.end_qualifier &&
self.unknown_fields == other.unknown_fields
}
}
impl ::std::fmt::Debug for ColumnRange {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
#[derive(Clone,Default)]
pub struct TimestampRange {
start_timestamp_micros: ::std::option::Option<i64>,
end_timestamp_micros: ::std::option::Option<i64>,
unknown_fields: ::protobuf::UnknownFields,
cached_size: ::std::cell::Cell<u32>,
}
unsafe impl ::std::marker::Sync for TimestampRange {}
impl TimestampRange {
pub fn new() -> TimestampRange {
::std::default::Default::default()
}
pub fn default_instance() -> &'static TimestampRange {
static mut instance: ::protobuf::lazy::Lazy<TimestampRange> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const TimestampRange,
};
unsafe {
instance.get(|| {
TimestampRange {
start_timestamp_micros: ::std::option::Option::None,
end_timestamp_micros: ::std::option::Option::None,
unknown_fields: ::protobuf::UnknownFields::new(),
cached_size: ::std::cell::Cell::new(0),
}
})
}
}
pub fn clear_start_timestamp_micros(&mut self) {
self.start_timestamp_micros = ::std::option::Option::None;
}
pub fn has_start_timestamp_micros(&self) -> bool {
self.start_timestamp_micros.is_some()
}
pub fn set_start_timestamp_micros(&mut self, v: i64) {
self.start_timestamp_micros = ::std::option::Option::Some(v);
}
pub fn get_start_timestamp_micros(&self) -> i64 {
self.start_timestamp_micros.unwrap_or(0)
}
pub fn clear_end_timestamp_micros(&mut self) {
self.end_timestamp_micros = ::std::option::Option::None;
}
pub fn has_end_timestamp_micros(&self) -> bool {
self.end_timestamp_micros.is_some()
}
pub fn set_end_timestamp_micros(&mut self, v: i64) {
self.end_timestamp_micros = ::std::option::Option::Some(v);
}
pub fn get_end_timestamp_micros(&self) -> i64 {
self.end_timestamp_micros.unwrap_or(0)
}
}
impl ::protobuf::Message for TimestampRange {
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 => {
if wire_type != ::protobuf::wire_format::WireTypeVarint {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
};
let tmp = try!(is.read_int64());
self.start_timestamp_micros = ::std::option::Option::Some(tmp);
},
2 => {
if wire_type != ::protobuf::wire_format::WireTypeVarint {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
};
let tmp = try!(is.read_int64());
self.end_timestamp_micros = ::std::option::Option::Some(tmp);
},
_ => {
try!(::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields()));
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u32 {
let mut my_size = 0;
for value in &self.start_timestamp_micros {
my_size += ::protobuf::rt::value_size(1, *value, ::protobuf::wire_format::WireTypeVarint);
};
for value in &self.end_timestamp_micros {
my_size += ::protobuf::rt::value_size(2, *value, ::protobuf::wire_format::WireTypeVarint);
};
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.start_timestamp_micros {
try!(os.write_int64(1, v));
};
if let Some(v) = self.end_timestamp_micros {
try!(os.write_int64(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(&self) -> &::protobuf::UnknownFields {
&self.unknown_fields
}
fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields {
&mut self.unknown_fields
}
fn type_id(&self) -> ::std::any::TypeId {
::std::any::TypeId::of::<TimestampRange>()
}
fn as_any(&self) -> &dyn (::std::any::Any) {
self as &dyn (::std::any::Any)
}
fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
::protobuf::MessageStatic::descriptor_static(None::<Self>)
}
}
impl ::protobuf::MessageStatic for TimestampRange {
fn new() -> TimestampRange {
TimestampRange::new()
}
fn descriptor_static(_: ::std::option::Option<TimestampRange>) -> &'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_i64_accessor(
"start_timestamp_micros",
TimestampRange::has_start_timestamp_micros,
TimestampRange::get_start_timestamp_micros,
));
fields.push(::protobuf::reflect::accessor::make_singular_i64_accessor(
"end_timestamp_micros",
TimestampRange::has_end_timestamp_micros,
TimestampRange::get_end_timestamp_micros,
));
::protobuf::reflect::MessageDescriptor::new::<TimestampRange>(
"TimestampRange",
fields,
file_descriptor_proto()
)
})
}
}
}
impl ::protobuf::Clear for TimestampRange {
fn clear(&mut self) {
self.clear_start_timestamp_micros();
self.clear_end_timestamp_micros();
self.unknown_fields.clear();
}
}
impl ::std::cmp::PartialEq for TimestampRange {
fn eq(&self, other: &TimestampRange) -> bool {
self.start_timestamp_micros == other.start_timestamp_micros &&
self.end_timestamp_micros == other.end_timestamp_micros &&
self.unknown_fields == other.unknown_fields
}
}
impl ::std::fmt::Debug for TimestampRange {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
#[derive(Clone,Default)]
pub struct ValueRange {
start_value: ::std::option::Option<ValueRange_oneof_start_value>,
end_value: ::std::option::Option<ValueRange_oneof_end_value>,
unknown_fields: ::protobuf::UnknownFields,
cached_size: ::std::cell::Cell<u32>,
}
unsafe impl ::std::marker::Sync for ValueRange {}
#[derive(Clone,PartialEq)]
pub enum ValueRange_oneof_start_value {
start_value_closed(::std::vec::Vec<u8>),
start_value_open(::std::vec::Vec<u8>),
}
#[derive(Clone,PartialEq)]
pub enum ValueRange_oneof_end_value {
end_value_closed(::std::vec::Vec<u8>),
end_value_open(::std::vec::Vec<u8>),
}
impl ValueRange {
pub fn new() -> ValueRange {
::std::default::Default::default()
}
pub fn default_instance() -> &'static ValueRange {
static mut instance: ::protobuf::lazy::Lazy<ValueRange> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const ValueRange,
};
unsafe {
instance.get(|| {
ValueRange {
start_value: ::std::option::Option::None,
end_value: ::std::option::Option::None,
unknown_fields: ::protobuf::UnknownFields::new(),
cached_size: ::std::cell::Cell::new(0),
}
})
}
}
pub fn clear_start_value_closed(&mut self) {
self.start_value = ::std::option::Option::None;
}
pub fn has_start_value_closed(&self) -> bool {
match self.start_value {
::std::option::Option::Some(ValueRange_oneof_start_value::start_value_closed(..)) => true,
_ => false,
}
}
pub fn set_start_value_closed(&mut self, v: ::std::vec::Vec<u8>) {
self.start_value = ::std::option::Option::Some(ValueRange_oneof_start_value::start_value_closed(v))
}
pub fn mut_start_value_closed(&mut self) -> &mut ::std::vec::Vec<u8> {
if let ::std::option::Option::Some(ValueRange_oneof_start_value::start_value_closed(_)) = self.start_value {
} else {
self.start_value = ::std::option::Option::Some(ValueRange_oneof_start_value::start_value_closed(::std::vec::Vec::new()));
}
match self.start_value {
::std::option::Option::Some(ValueRange_oneof_start_value::start_value_closed(ref mut v)) => v,
_ => panic!(),
}
}
pub fn take_start_value_closed(&mut self) -> ::std::vec::Vec<u8> {
if self.has_start_value_closed() {
match self.start_value.take() {
::std::option::Option::Some(ValueRange_oneof_start_value::start_value_closed(v)) => v,
_ => panic!(),
}
} else {
::std::vec::Vec::new()
}
}
pub fn get_start_value_closed(&self) -> &[u8] {
match self.start_value {
::std::option::Option::Some(ValueRange_oneof_start_value::start_value_closed(ref v)) => v,
_ => &[],
}
}
pub fn clear_start_value_open(&mut self) {
self.start_value = ::std::option::Option::None;
}
pub fn has_start_value_open(&self) -> bool {
match self.start_value {
::std::option::Option::Some(ValueRange_oneof_start_value::start_value_open(..)) => true,
_ => false,
}
}
pub fn set_start_value_open(&mut self, v: ::std::vec::Vec<u8>) {
self.start_value = ::std::option::Option::Some(ValueRange_oneof_start_value::start_value_open(v))
}
pub fn mut_start_value_open(&mut self) -> &mut ::std::vec::Vec<u8> {
if let ::std::option::Option::Some(ValueRange_oneof_start_value::start_value_open(_)) = self.start_value {
} else {
self.start_value = ::std::option::Option::Some(ValueRange_oneof_start_value::start_value_open(::std::vec::Vec::new()));
}
match self.start_value {
::std::option::Option::Some(ValueRange_oneof_start_value::start_value_open(ref mut v)) => v,
_ => panic!(),
}
}
pub fn take_start_value_open(&mut self) -> ::std::vec::Vec<u8> {
if self.has_start_value_open() {
match self.start_value.take() {
::std::option::Option::Some(ValueRange_oneof_start_value::start_value_open(v)) => v,
_ => panic!(),
}
} else {
::std::vec::Vec::new()
}
}
pub fn get_start_value_open(&self) -> &[u8] {
match self.start_value {
::std::option::Option::Some(ValueRange_oneof_start_value::start_value_open(ref v)) => v,
_ => &[],
}
}
pub fn clear_end_value_closed(&mut self) {
self.end_value = ::std::option::Option::None;
}
pub fn has_end_value_closed(&self) -> bool {
match self.end_value {
::std::option::Option::Some(ValueRange_oneof_end_value::end_value_closed(..)) => true,
_ => false,
}
}
pub fn set_end_value_closed(&mut self, v: ::std::vec::Vec<u8>) {
self.end_value = ::std::option::Option::Some(ValueRange_oneof_end_value::end_value_closed(v))
}
pub fn mut_end_value_closed(&mut self) -> &mut ::std::vec::Vec<u8> {
if let ::std::option::Option::Some(ValueRange_oneof_end_value::end_value_closed(_)) = self.end_value {
} else {
self.end_value = ::std::option::Option::Some(ValueRange_oneof_end_value::end_value_closed(::std::vec::Vec::new()));
}
match self.end_value {
::std::option::Option::Some(ValueRange_oneof_end_value::end_value_closed(ref mut v)) => v,
_ => panic!(),
}
}
pub fn take_end_value_closed(&mut self) -> ::std::vec::Vec<u8> {
if self.has_end_value_closed() {
match self.end_value.take() {
::std::option::Option::Some(ValueRange_oneof_end_value::end_value_closed(v)) => v,
_ => panic!(),
}
} else {
::std::vec::Vec::new()
}
}
pub fn get_end_value_closed(&self) -> &[u8] {
match self.end_value {
::std::option::Option::Some(ValueRange_oneof_end_value::end_value_closed(ref v)) => v,
_ => &[],
}
}
pub fn clear_end_value_open(&mut self) {
self.end_value = ::std::option::Option::None;
}
pub fn has_end_value_open(&self) -> bool {
match self.end_value {
::std::option::Option::Some(ValueRange_oneof_end_value::end_value_open(..)) => true,
_ => false,
}
}
pub fn set_end_value_open(&mut self, v: ::std::vec::Vec<u8>) {
self.end_value = ::std::option::Option::Some(ValueRange_oneof_end_value::end_value_open(v))
}
pub fn mut_end_value_open(&mut self) -> &mut ::std::vec::Vec<u8> {
if let ::std::option::Option::Some(ValueRange_oneof_end_value::end_value_open(_)) = self.end_value {
} else {
self.end_value = ::std::option::Option::Some(ValueRange_oneof_end_value::end_value_open(::std::vec::Vec::new()));
}
match self.end_value {
::std::option::Option::Some(ValueRange_oneof_end_value::end_value_open(ref mut v)) => v,
_ => panic!(),
}
}
pub fn take_end_value_open(&mut self) -> ::std::vec::Vec<u8> {
if self.has_end_value_open() {
match self.end_value.take() {
::std::option::Option::Some(ValueRange_oneof_end_value::end_value_open(v)) => v,
_ => panic!(),
}
} else {
::std::vec::Vec::new()
}
}
pub fn get_end_value_open(&self) -> &[u8] {
match self.end_value {
::std::option::Option::Some(ValueRange_oneof_end_value::end_value_open(ref v)) => v,
_ => &[],
}
}
}
impl ::protobuf::Message for ValueRange {
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 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
};
self.start_value = ::std::option::Option::Some(ValueRange_oneof_start_value::start_value_closed(try!(is.read_bytes())));
},
2 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
};
self.start_value = ::std::option::Option::Some(ValueRange_oneof_start_value::start_value_open(try!(is.read_bytes())));
},
3 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
};
self.end_value = ::std::option::Option::Some(ValueRange_oneof_end_value::end_value_closed(try!(is.read_bytes())));
},
4 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
};
self.end_value = ::std::option::Option::Some(ValueRange_oneof_end_value::end_value_open(try!(is.read_bytes())));
},
_ => {
try!(::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields()));
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u32 {
let mut my_size = 0;
if let ::std::option::Option::Some(ref v) = self.start_value {
match v {
&ValueRange_oneof_start_value::start_value_closed(ref v) => {
my_size += ::protobuf::rt::bytes_size(1, &v);
},
&ValueRange_oneof_start_value::start_value_open(ref v) => {
my_size += ::protobuf::rt::bytes_size(2, &v);
},
};
};
if let ::std::option::Option::Some(ref v) = self.end_value {
match v {
&ValueRange_oneof_end_value::end_value_closed(ref v) => {
my_size += ::protobuf::rt::bytes_size(3, &v);
},
&ValueRange_oneof_end_value::end_value_open(ref v) => {
my_size += ::protobuf::rt::bytes_size(4, &v);
},
};
};
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 ::std::option::Option::Some(ref v) = self.start_value {
match v {
&ValueRange_oneof_start_value::start_value_closed(ref v) => {
try!(os.write_bytes(1, v));
},
&ValueRange_oneof_start_value::start_value_open(ref v) => {
try!(os.write_bytes(2, v));
},
};
};
if let ::std::option::Option::Some(ref v) = self.end_value {
match v {
&ValueRange_oneof_end_value::end_value_closed(ref v) => {
try!(os.write_bytes(3, v));
},
&ValueRange_oneof_end_value::end_value_open(ref v) => {
try!(os.write_bytes(4, 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(&self) -> &::protobuf::UnknownFields {
&self.unknown_fields
}
fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields {
&mut self.unknown_fields
}
fn type_id(&self) -> ::std::any::TypeId {
::std::any::TypeId::of::<ValueRange>()
}
fn as_any(&self) -> &dyn (::std::any::Any) {
self as &dyn (::std::any::Any)
}
fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
::protobuf::MessageStatic::descriptor_static(None::<Self>)
}
}
impl ::protobuf::MessageStatic for ValueRange {
fn new() -> ValueRange {
ValueRange::new()
}
fn descriptor_static(_: ::std::option::Option<ValueRange>) -> &'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(
"start_value_closed",
ValueRange::has_start_value_closed,
ValueRange::get_start_value_closed,
));
fields.push(::protobuf::reflect::accessor::make_singular_bytes_accessor(
"start_value_open",
ValueRange::has_start_value_open,
ValueRange::get_start_value_open,
));
fields.push(::protobuf::reflect::accessor::make_singular_bytes_accessor(
"end_value_closed",
ValueRange::has_end_value_closed,
ValueRange::get_end_value_closed,
));
fields.push(::protobuf::reflect::accessor::make_singular_bytes_accessor(
"end_value_open",
ValueRange::has_end_value_open,
ValueRange::get_end_value_open,
));
::protobuf::reflect::MessageDescriptor::new::<ValueRange>(
"ValueRange",
fields,
file_descriptor_proto()
)
})
}
}
}
impl ::protobuf::Clear for ValueRange {
fn clear(&mut self) {
self.clear_start_value_closed();
self.clear_start_value_open();
self.clear_end_value_closed();
self.clear_end_value_open();
self.unknown_fields.clear();
}
}
impl ::std::cmp::PartialEq for ValueRange {
fn eq(&self, other: &ValueRange) -> bool {
self.start_value == other.start_value &&
self.end_value == other.end_value &&
self.unknown_fields == other.unknown_fields
}
}
impl ::std::fmt::Debug for ValueRange {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
#[derive(Clone,Default)]
pub struct RowFilter {
filter: ::std::option::Option<RowFilter_oneof_filter>,
unknown_fields: ::protobuf::UnknownFields,
cached_size: ::std::cell::Cell<u32>,
}
unsafe impl ::std::marker::Sync for RowFilter {}
#[derive(Clone,PartialEq)]
pub enum RowFilter_oneof_filter {
chain(RowFilter_Chain),
interleave(RowFilter_Interleave),
condition(RowFilter_Condition),
sink(bool),
pass_all_filter(bool),
block_all_filter(bool),
row_key_regex_filter(::std::vec::Vec<u8>),
row_sample_filter(f64),
family_name_regex_filter(::std::string::String),
column_qualifier_regex_filter(::std::vec::Vec<u8>),
column_range_filter(ColumnRange),
timestamp_range_filter(TimestampRange),
value_regex_filter(::std::vec::Vec<u8>),
value_range_filter(ValueRange),
cells_per_row_offset_filter(i32),
cells_per_row_limit_filter(i32),
cells_per_column_limit_filter(i32),
strip_value_transformer(bool),
apply_label_transformer(::std::string::String),
}
impl RowFilter {
pub fn new() -> RowFilter {
::std::default::Default::default()
}
pub fn default_instance() -> &'static RowFilter {
static mut instance: ::protobuf::lazy::Lazy<RowFilter> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const RowFilter,
};
unsafe {
instance.get(|| {
RowFilter {
filter: ::std::option::Option::None,
unknown_fields: ::protobuf::UnknownFields::new(),
cached_size: ::std::cell::Cell::new(0),
}
})
}
}
pub fn clear_chain(&mut self) {
self.filter = ::std::option::Option::None;
}
pub fn has_chain(&self) -> bool {
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::chain(..)) => true,
_ => false,
}
}
pub fn set_chain(&mut self, v: RowFilter_Chain) {
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::chain(v))
}
pub fn mut_chain(&mut self) -> &mut RowFilter_Chain {
if let ::std::option::Option::Some(RowFilter_oneof_filter::chain(_)) = self.filter {
} else {
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::chain(RowFilter_Chain::new()));
}
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::chain(ref mut v)) => v,
_ => panic!(),
}
}
pub fn take_chain(&mut self) -> RowFilter_Chain {
if self.has_chain() {
match self.filter.take() {
::std::option::Option::Some(RowFilter_oneof_filter::chain(v)) => v,
_ => panic!(),
}
} else {
RowFilter_Chain::new()
}
}
pub fn get_chain(&self) -> &RowFilter_Chain {
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::chain(ref v)) => v,
_ => RowFilter_Chain::default_instance(),
}
}
pub fn clear_interleave(&mut self) {
self.filter = ::std::option::Option::None;
}
pub fn has_interleave(&self) -> bool {
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::interleave(..)) => true,
_ => false,
}
}
pub fn set_interleave(&mut self, v: RowFilter_Interleave) {
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::interleave(v))
}
pub fn mut_interleave(&mut self) -> &mut RowFilter_Interleave {
if let ::std::option::Option::Some(RowFilter_oneof_filter::interleave(_)) = self.filter {
} else {
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::interleave(RowFilter_Interleave::new()));
}
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::interleave(ref mut v)) => v,
_ => panic!(),
}
}
pub fn take_interleave(&mut self) -> RowFilter_Interleave {
if self.has_interleave() {
match self.filter.take() {
::std::option::Option::Some(RowFilter_oneof_filter::interleave(v)) => v,
_ => panic!(),
}
} else {
RowFilter_Interleave::new()
}
}
pub fn get_interleave(&self) -> &RowFilter_Interleave {
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::interleave(ref v)) => v,
_ => RowFilter_Interleave::default_instance(),
}
}
pub fn clear_condition(&mut self) {
self.filter = ::std::option::Option::None;
}
pub fn has_condition(&self) -> bool {
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::condition(..)) => true,
_ => false,
}
}
pub fn set_condition(&mut self, v: RowFilter_Condition) {
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::condition(v))
}
pub fn mut_condition(&mut self) -> &mut RowFilter_Condition {
if let ::std::option::Option::Some(RowFilter_oneof_filter::condition(_)) = self.filter {
} else {
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::condition(RowFilter_Condition::new()));
}
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::condition(ref mut v)) => v,
_ => panic!(),
}
}
pub fn take_condition(&mut self) -> RowFilter_Condition {
if self.has_condition() {
match self.filter.take() {
::std::option::Option::Some(RowFilter_oneof_filter::condition(v)) => v,
_ => panic!(),
}
} else {
RowFilter_Condition::new()
}
}
pub fn get_condition(&self) -> &RowFilter_Condition {
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::condition(ref v)) => v,
_ => RowFilter_Condition::default_instance(),
}
}
pub fn clear_sink(&mut self) {
self.filter = ::std::option::Option::None;
}
pub fn has_sink(&self) -> bool {
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::sink(..)) => true,
_ => false,
}
}
pub fn set_sink(&mut self, v: bool) {
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::sink(v))
}
pub fn get_sink(&self) -> bool {
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::sink(v)) => v,
_ => false,
}
}
pub fn clear_pass_all_filter(&mut self) {
self.filter = ::std::option::Option::None;
}
pub fn has_pass_all_filter(&self) -> bool {
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::pass_all_filter(..)) => true,
_ => false,
}
}
pub fn set_pass_all_filter(&mut self, v: bool) {
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::pass_all_filter(v))
}
pub fn get_pass_all_filter(&self) -> bool {
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::pass_all_filter(v)) => v,
_ => false,
}
}
pub fn clear_block_all_filter(&mut self) {
self.filter = ::std::option::Option::None;
}
pub fn has_block_all_filter(&self) -> bool {
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::block_all_filter(..)) => true,
_ => false,
}
}
pub fn set_block_all_filter(&mut self, v: bool) {
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::block_all_filter(v))
}
pub fn get_block_all_filter(&self) -> bool {
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::block_all_filter(v)) => v,
_ => false,
}
}
pub fn clear_row_key_regex_filter(&mut self) {
self.filter = ::std::option::Option::None;
}
pub fn has_row_key_regex_filter(&self) -> bool {
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::row_key_regex_filter(..)) => true,
_ => false,
}
}
pub fn set_row_key_regex_filter(&mut self, v: ::std::vec::Vec<u8>) {
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::row_key_regex_filter(v))
}
pub fn mut_row_key_regex_filter(&mut self) -> &mut ::std::vec::Vec<u8> {
if let ::std::option::Option::Some(RowFilter_oneof_filter::row_key_regex_filter(_)) = self.filter {
} else {
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::row_key_regex_filter(::std::vec::Vec::new()));
}
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::row_key_regex_filter(ref mut v)) => v,
_ => panic!(),
}
}
pub fn take_row_key_regex_filter(&mut self) -> ::std::vec::Vec<u8> {
if self.has_row_key_regex_filter() {
match self.filter.take() {
::std::option::Option::Some(RowFilter_oneof_filter::row_key_regex_filter(v)) => v,
_ => panic!(),
}
} else {
::std::vec::Vec::new()
}
}
pub fn get_row_key_regex_filter(&self) -> &[u8] {
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::row_key_regex_filter(ref v)) => v,
_ => &[],
}
}
pub fn clear_row_sample_filter(&mut self) {
self.filter = ::std::option::Option::None;
}
pub fn has_row_sample_filter(&self) -> bool {
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::row_sample_filter(..)) => true,
_ => false,
}
}
pub fn set_row_sample_filter(&mut self, v: f64) {
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::row_sample_filter(v))
}
pub fn get_row_sample_filter(&self) -> f64 {
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::row_sample_filter(v)) => v,
_ => 0.,
}
}
pub fn clear_family_name_regex_filter(&mut self) {
self.filter = ::std::option::Option::None;
}
pub fn has_family_name_regex_filter(&self) -> bool {
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::family_name_regex_filter(..)) => true,
_ => false,
}
}
pub fn set_family_name_regex_filter(&mut self, v: ::std::string::String) {
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::family_name_regex_filter(v))
}
pub fn mut_family_name_regex_filter(&mut self) -> &mut ::std::string::String {
if let ::std::option::Option::Some(RowFilter_oneof_filter::family_name_regex_filter(_)) = self.filter {
} else {
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::family_name_regex_filter(::std::string::String::new()));
}
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::family_name_regex_filter(ref mut v)) => v,
_ => panic!(),
}
}
pub fn take_family_name_regex_filter(&mut self) -> ::std::string::String {
if self.has_family_name_regex_filter() {
match self.filter.take() {
::std::option::Option::Some(RowFilter_oneof_filter::family_name_regex_filter(v)) => v,
_ => panic!(),
}
} else {
::std::string::String::new()
}
}
pub fn get_family_name_regex_filter(&self) -> &str {
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::family_name_regex_filter(ref v)) => v,
_ => "",
}
}
pub fn clear_column_qualifier_regex_filter(&mut self) {
self.filter = ::std::option::Option::None;
}
pub fn has_column_qualifier_regex_filter(&self) -> bool {
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::column_qualifier_regex_filter(..)) => true,
_ => false,
}
}
pub fn set_column_qualifier_regex_filter(&mut self, v: ::std::vec::Vec<u8>) {
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::column_qualifier_regex_filter(v))
}
pub fn mut_column_qualifier_regex_filter(&mut self) -> &mut ::std::vec::Vec<u8> {
if let ::std::option::Option::Some(RowFilter_oneof_filter::column_qualifier_regex_filter(_)) = self.filter {
} else {
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::column_qualifier_regex_filter(::std::vec::Vec::new()));
}
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::column_qualifier_regex_filter(ref mut v)) => v,
_ => panic!(),
}
}
pub fn take_column_qualifier_regex_filter(&mut self) -> ::std::vec::Vec<u8> {
if self.has_column_qualifier_regex_filter() {
match self.filter.take() {
::std::option::Option::Some(RowFilter_oneof_filter::column_qualifier_regex_filter(v)) => v,
_ => panic!(),
}
} else {
::std::vec::Vec::new()
}
}
pub fn get_column_qualifier_regex_filter(&self) -> &[u8] {
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::column_qualifier_regex_filter(ref v)) => v,
_ => &[],
}
}
pub fn clear_column_range_filter(&mut self) {
self.filter = ::std::option::Option::None;
}
pub fn has_column_range_filter(&self) -> bool {
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::column_range_filter(..)) => true,
_ => false,
}
}
pub fn set_column_range_filter(&mut self, v: ColumnRange) {
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::column_range_filter(v))
}
pub fn mut_column_range_filter(&mut self) -> &mut ColumnRange {
if let ::std::option::Option::Some(RowFilter_oneof_filter::column_range_filter(_)) = self.filter {
} else {
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::column_range_filter(ColumnRange::new()));
}
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::column_range_filter(ref mut v)) => v,
_ => panic!(),
}
}
pub fn take_column_range_filter(&mut self) -> ColumnRange {
if self.has_column_range_filter() {
match self.filter.take() {
::std::option::Option::Some(RowFilter_oneof_filter::column_range_filter(v)) => v,
_ => panic!(),
}
} else {
ColumnRange::new()
}
}
pub fn get_column_range_filter(&self) -> &ColumnRange {
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::column_range_filter(ref v)) => v,
_ => ColumnRange::default_instance(),
}
}
pub fn clear_timestamp_range_filter(&mut self) {
self.filter = ::std::option::Option::None;
}
pub fn has_timestamp_range_filter(&self) -> bool {
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::timestamp_range_filter(..)) => true,
_ => false,
}
}
pub fn set_timestamp_range_filter(&mut self, v: TimestampRange) {
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::timestamp_range_filter(v))
}
pub fn mut_timestamp_range_filter(&mut self) -> &mut TimestampRange {
if let ::std::option::Option::Some(RowFilter_oneof_filter::timestamp_range_filter(_)) = self.filter {
} else {
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::timestamp_range_filter(TimestampRange::new()));
}
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::timestamp_range_filter(ref mut v)) => v,
_ => panic!(),
}
}
pub fn take_timestamp_range_filter(&mut self) -> TimestampRange {
if self.has_timestamp_range_filter() {
match self.filter.take() {
::std::option::Option::Some(RowFilter_oneof_filter::timestamp_range_filter(v)) => v,
_ => panic!(),
}
} else {
TimestampRange::new()
}
}
pub fn get_timestamp_range_filter(&self) -> &TimestampRange {
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::timestamp_range_filter(ref v)) => v,
_ => TimestampRange::default_instance(),
}
}
pub fn clear_value_regex_filter(&mut self) {
self.filter = ::std::option::Option::None;
}
pub fn has_value_regex_filter(&self) -> bool {
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::value_regex_filter(..)) => true,
_ => false,
}
}
pub fn set_value_regex_filter(&mut self, v: ::std::vec::Vec<u8>) {
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::value_regex_filter(v))
}
pub fn mut_value_regex_filter(&mut self) -> &mut ::std::vec::Vec<u8> {
if let ::std::option::Option::Some(RowFilter_oneof_filter::value_regex_filter(_)) = self.filter {
} else {
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::value_regex_filter(::std::vec::Vec::new()));
}
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::value_regex_filter(ref mut v)) => v,
_ => panic!(),
}
}
pub fn take_value_regex_filter(&mut self) -> ::std::vec::Vec<u8> {
if self.has_value_regex_filter() {
match self.filter.take() {
::std::option::Option::Some(RowFilter_oneof_filter::value_regex_filter(v)) => v,
_ => panic!(),
}
} else {
::std::vec::Vec::new()
}
}
pub fn get_value_regex_filter(&self) -> &[u8] {
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::value_regex_filter(ref v)) => v,
_ => &[],
}
}
pub fn clear_value_range_filter(&mut self) {
self.filter = ::std::option::Option::None;
}
pub fn has_value_range_filter(&self) -> bool {
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::value_range_filter(..)) => true,
_ => false,
}
}
pub fn set_value_range_filter(&mut self, v: ValueRange) {
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::value_range_filter(v))
}
pub fn mut_value_range_filter(&mut self) -> &mut ValueRange {
if let ::std::option::Option::Some(RowFilter_oneof_filter::value_range_filter(_)) = self.filter {
} else {
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::value_range_filter(ValueRange::new()));
}
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::value_range_filter(ref mut v)) => v,
_ => panic!(),
}
}
pub fn take_value_range_filter(&mut self) -> ValueRange {
if self.has_value_range_filter() {
match self.filter.take() {
::std::option::Option::Some(RowFilter_oneof_filter::value_range_filter(v)) => v,
_ => panic!(),
}
} else {
ValueRange::new()
}
}
pub fn get_value_range_filter(&self) -> &ValueRange {
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::value_range_filter(ref v)) => v,
_ => ValueRange::default_instance(),
}
}
pub fn clear_cells_per_row_offset_filter(&mut self) {
self.filter = ::std::option::Option::None;
}
pub fn has_cells_per_row_offset_filter(&self) -> bool {
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::cells_per_row_offset_filter(..)) => true,
_ => false,
}
}
pub fn set_cells_per_row_offset_filter(&mut self, v: i32) {
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::cells_per_row_offset_filter(v))
}
pub fn get_cells_per_row_offset_filter(&self) -> i32 {
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::cells_per_row_offset_filter(v)) => v,
_ => 0,
}
}
pub fn clear_cells_per_row_limit_filter(&mut self) {
self.filter = ::std::option::Option::None;
}
pub fn has_cells_per_row_limit_filter(&self) -> bool {
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::cells_per_row_limit_filter(..)) => true,
_ => false,
}
}
pub fn set_cells_per_row_limit_filter(&mut self, v: i32) {
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::cells_per_row_limit_filter(v))
}
pub fn get_cells_per_row_limit_filter(&self) -> i32 {
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::cells_per_row_limit_filter(v)) => v,
_ => 0,
}
}
pub fn clear_cells_per_column_limit_filter(&mut self) {
self.filter = ::std::option::Option::None;
}
pub fn has_cells_per_column_limit_filter(&self) -> bool {
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::cells_per_column_limit_filter(..)) => true,
_ => false,
}
}
pub fn set_cells_per_column_limit_filter(&mut self, v: i32) {
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::cells_per_column_limit_filter(v))
}
pub fn get_cells_per_column_limit_filter(&self) -> i32 {
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::cells_per_column_limit_filter(v)) => v,
_ => 0,
}
}
pub fn clear_strip_value_transformer(&mut self) {
self.filter = ::std::option::Option::None;
}
pub fn has_strip_value_transformer(&self) -> bool {
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::strip_value_transformer(..)) => true,
_ => false,
}
}
pub fn set_strip_value_transformer(&mut self, v: bool) {
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::strip_value_transformer(v))
}
pub fn get_strip_value_transformer(&self) -> bool {
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::strip_value_transformer(v)) => v,
_ => false,
}
}
pub fn clear_apply_label_transformer(&mut self) {
self.filter = ::std::option::Option::None;
}
pub fn has_apply_label_transformer(&self) -> bool {
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::apply_label_transformer(..)) => true,
_ => false,
}
}
pub fn set_apply_label_transformer(&mut self, v: ::std::string::String) {
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::apply_label_transformer(v))
}
pub fn mut_apply_label_transformer(&mut self) -> &mut ::std::string::String {
if let ::std::option::Option::Some(RowFilter_oneof_filter::apply_label_transformer(_)) = self.filter {
} else {
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::apply_label_transformer(::std::string::String::new()));
}
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::apply_label_transformer(ref mut v)) => v,
_ => panic!(),
}
}
pub fn take_apply_label_transformer(&mut self) -> ::std::string::String {
if self.has_apply_label_transformer() {
match self.filter.take() {
::std::option::Option::Some(RowFilter_oneof_filter::apply_label_transformer(v)) => v,
_ => panic!(),
}
} else {
::std::string::String::new()
}
}
pub fn get_apply_label_transformer(&self) -> &str {
match self.filter {
::std::option::Option::Some(RowFilter_oneof_filter::apply_label_transformer(ref v)) => v,
_ => "",
}
}
}
impl ::protobuf::Message for RowFilter {
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 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
};
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::chain(try!(is.read_message())));
},
2 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
};
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::interleave(try!(is.read_message())));
},
3 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
};
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::condition(try!(is.read_message())));
},
16 => {
if wire_type != ::protobuf::wire_format::WireTypeVarint {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
};
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::sink(try!(is.read_bool())));
},
17 => {
if wire_type != ::protobuf::wire_format::WireTypeVarint {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
};
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::pass_all_filter(try!(is.read_bool())));
},
18 => {
if wire_type != ::protobuf::wire_format::WireTypeVarint {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
};
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::block_all_filter(try!(is.read_bool())));
},
4 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
};
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::row_key_regex_filter(try!(is.read_bytes())));
},
14 => {
if wire_type != ::protobuf::wire_format::WireTypeFixed64 {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
};
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::row_sample_filter(try!(is.read_double())));
},
5 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
};
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::family_name_regex_filter(try!(is.read_string())));
},
6 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
};
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::column_qualifier_regex_filter(try!(is.read_bytes())));
},
7 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
};
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::column_range_filter(try!(is.read_message())));
},
8 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
};
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::timestamp_range_filter(try!(is.read_message())));
},
9 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
};
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::value_regex_filter(try!(is.read_bytes())));
},
15 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
};
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::value_range_filter(try!(is.read_message())));
},
10 => {
if wire_type != ::protobuf::wire_format::WireTypeVarint {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
};
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::cells_per_row_offset_filter(try!(is.read_int32())));
},
11 => {
if wire_type != ::protobuf::wire_format::WireTypeVarint {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
};
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::cells_per_row_limit_filter(try!(is.read_int32())));
},
12 => {
if wire_type != ::protobuf::wire_format::WireTypeVarint {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
};
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::cells_per_column_limit_filter(try!(is.read_int32())));
},
13 => {
if wire_type != ::protobuf::wire_format::WireTypeVarint {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
};
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::strip_value_transformer(try!(is.read_bool())));
},
19 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
};
self.filter = ::std::option::Option::Some(RowFilter_oneof_filter::apply_label_transformer(try!(is.read_string())));
},
_ => {
try!(::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields()));
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u32 {
let mut my_size = 0;
if let ::std::option::Option::Some(ref v) = self.filter {
match v {
&RowFilter_oneof_filter::chain(ref v) => {
let len = v.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
},
&RowFilter_oneof_filter::interleave(ref v) => {
let len = v.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
},
&RowFilter_oneof_filter::condition(ref v) => {
let len = v.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
},
&RowFilter_oneof_filter::sink(v) => {
my_size += 3;
},
&RowFilter_oneof_filter::pass_all_filter(v) => {
my_size += 3;
},
&RowFilter_oneof_filter::block_all_filter(v) => {
my_size += 3;
},
&RowFilter_oneof_filter::row_key_regex_filter(ref v) => {
my_size += ::protobuf::rt::bytes_size(4, &v);
},
&RowFilter_oneof_filter::row_sample_filter(v) => {
my_size += 9;
},
&RowFilter_oneof_filter::family_name_regex_filter(ref v) => {
my_size += ::protobuf::rt::string_size(5, &v);
},
&RowFilter_oneof_filter::column_qualifier_regex_filter(ref v) => {
my_size += ::protobuf::rt::bytes_size(6, &v);
},
&RowFilter_oneof_filter::column_range_filter(ref v) => {
let len = v.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
},
&RowFilter_oneof_filter::timestamp_range_filter(ref v) => {
let len = v.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
},
&RowFilter_oneof_filter::value_regex_filter(ref v) => {
my_size += ::protobuf::rt::bytes_size(9, &v);
},
&RowFilter_oneof_filter::value_range_filter(ref v) => {
let len = v.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
},
&RowFilter_oneof_filter::cells_per_row_offset_filter(v) => {
my_size += ::protobuf::rt::value_size(10, v, ::protobuf::wire_format::WireTypeVarint);
},
&RowFilter_oneof_filter::cells_per_row_limit_filter(v) => {
my_size += ::protobuf::rt::value_size(11, v, ::protobuf::wire_format::WireTypeVarint);
},
&RowFilter_oneof_filter::cells_per_column_limit_filter(v) => {
my_size += ::protobuf::rt::value_size(12, v, ::protobuf::wire_format::WireTypeVarint);
},
&RowFilter_oneof_filter::strip_value_transformer(v) => {
my_size += 2;
},
&RowFilter_oneof_filter::apply_label_transformer(ref v) => {
my_size += ::protobuf::rt::string_size(19, &v);
},
};
};
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 ::std::option::Option::Some(ref v) = self.filter {
match v {
&RowFilter_oneof_filter::chain(ref v) => {
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));
},
&RowFilter_oneof_filter::interleave(ref v) => {
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));
},
&RowFilter_oneof_filter::condition(ref v) => {
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));
},
&RowFilter_oneof_filter::sink(v) => {
try!(os.write_bool(16, v));
},
&RowFilter_oneof_filter::pass_all_filter(v) => {
try!(os.write_bool(17, v));
},
&RowFilter_oneof_filter::block_all_filter(v) => {
try!(os.write_bool(18, v));
},
&RowFilter_oneof_filter::row_key_regex_filter(ref v) => {
try!(os.write_bytes(4, v));
},
&RowFilter_oneof_filter::row_sample_filter(v) => {
try!(os.write_double(14, v));
},
&RowFilter_oneof_filter::family_name_regex_filter(ref v) => {
try!(os.write_string(5, v));
},
&RowFilter_oneof_filter::column_qualifier_regex_filter(ref v) => {
try!(os.write_bytes(6, v));
},
&RowFilter_oneof_filter::column_range_filter(ref v) => {
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));
},
&RowFilter_oneof_filter::timestamp_range_filter(ref v) => {
try!(os.write_tag(8, ::protobuf::wire_format::WireTypeLengthDelimited));
try!(os.write_raw_varint32(v.get_cached_size()));
try!(v.write_to_with_cached_sizes(os));
},
&RowFilter_oneof_filter::value_regex_filter(ref v) => {
try!(os.write_bytes(9, v));
},
&RowFilter_oneof_filter::value_range_filter(ref v) => {
try!(os.write_tag(15, ::protobuf::wire_format::WireTypeLengthDelimited));
try!(os.write_raw_varint32(v.get_cached_size()));
try!(v.write_to_with_cached_sizes(os));
},
&RowFilter_oneof_filter::cells_per_row_offset_filter(v) => {
try!(os.write_int32(10, v));
},
&RowFilter_oneof_filter::cells_per_row_limit_filter(v) => {
try!(os.write_int32(11, v));
},
&RowFilter_oneof_filter::cells_per_column_limit_filter(v) => {
try!(os.write_int32(12, v));
},
&RowFilter_oneof_filter::strip_value_transformer(v) => {
try!(os.write_bool(13, v));
},
&RowFilter_oneof_filter::apply_label_transformer(ref v) => {
try!(os.write_string(19, 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(&self) -> &::protobuf::UnknownFields {
&self.unknown_fields
}
fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields {
&mut self.unknown_fields
}
fn type_id(&self) -> ::std::any::TypeId {
::std::any::TypeId::of::<RowFilter>()
}
fn as_any(&self) -> &dyn (::std::any::Any) {
self as &dyn (::std::any::Any)
}
fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
::protobuf::MessageStatic::descriptor_static(None::<Self>)
}
}
impl ::protobuf::MessageStatic for RowFilter {
fn new() -> RowFilter {
RowFilter::new()
}
fn descriptor_static(_: ::std::option::Option<RowFilter>) -> &'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(
"chain",
RowFilter::has_chain,
RowFilter::get_chain,
));
fields.push(::protobuf::reflect::accessor::make_singular_message_accessor(
"interleave",
RowFilter::has_interleave,
RowFilter::get_interleave,
));
fields.push(::protobuf::reflect::accessor::make_singular_message_accessor(
"condition",
RowFilter::has_condition,
RowFilter::get_condition,
));
fields.push(::protobuf::reflect::accessor::make_singular_bool_accessor(
"sink",
RowFilter::has_sink,
RowFilter::get_sink,
));
fields.push(::protobuf::reflect::accessor::make_singular_bool_accessor(
"pass_all_filter",
RowFilter::has_pass_all_filter,
RowFilter::get_pass_all_filter,
));
fields.push(::protobuf::reflect::accessor::make_singular_bool_accessor(
"block_all_filter",
RowFilter::has_block_all_filter,
RowFilter::get_block_all_filter,
));
fields.push(::protobuf::reflect::accessor::make_singular_bytes_accessor(
"row_key_regex_filter",
RowFilter::has_row_key_regex_filter,
RowFilter::get_row_key_regex_filter,
));
fields.push(::protobuf::reflect::accessor::make_singular_f64_accessor(
"row_sample_filter",
RowFilter::has_row_sample_filter,
RowFilter::get_row_sample_filter,
));
fields.push(::protobuf::reflect::accessor::make_singular_string_accessor(
"family_name_regex_filter",
RowFilter::has_family_name_regex_filter,
RowFilter::get_family_name_regex_filter,
));
fields.push(::protobuf::reflect::accessor::make_singular_bytes_accessor(
"column_qualifier_regex_filter",
RowFilter::has_column_qualifier_regex_filter,
RowFilter::get_column_qualifier_regex_filter,
));
fields.push(::protobuf::reflect::accessor::make_singular_message_accessor(
"column_range_filter",
RowFilter::has_column_range_filter,
RowFilter::get_column_range_filter,
));
fields.push(::protobuf::reflect::accessor::make_singular_message_accessor(
"timestamp_range_filter",
RowFilter::has_timestamp_range_filter,
RowFilter::get_timestamp_range_filter,
));
fields.push(::protobuf::reflect::accessor::make_singular_bytes_accessor(
"value_regex_filter",
RowFilter::has_value_regex_filter,
RowFilter::get_value_regex_filter,
));
fields.push(::protobuf::reflect::accessor::make_singular_message_accessor(
"value_range_filter",
RowFilter::has_value_range_filter,
RowFilter::get_value_range_filter,
));
fields.push(::protobuf::reflect::accessor::make_singular_i32_accessor(
"cells_per_row_offset_filter",
RowFilter::has_cells_per_row_offset_filter,
RowFilter::get_cells_per_row_offset_filter,
));
fields.push(::protobuf::reflect::accessor::make_singular_i32_accessor(
"cells_per_row_limit_filter",
RowFilter::has_cells_per_row_limit_filter,
RowFilter::get_cells_per_row_limit_filter,
));
fields.push(::protobuf::reflect::accessor::make_singular_i32_accessor(
"cells_per_column_limit_filter",
RowFilter::has_cells_per_column_limit_filter,
RowFilter::get_cells_per_column_limit_filter,
));
fields.push(::protobuf::reflect::accessor::make_singular_bool_accessor(
"strip_value_transformer",
RowFilter::has_strip_value_transformer,
RowFilter::get_strip_value_transformer,
));
fields.push(::protobuf::reflect::accessor::make_singular_string_accessor(
"apply_label_transformer",
RowFilter::has_apply_label_transformer,
RowFilter::get_apply_label_transformer,
));
::protobuf::reflect::MessageDescriptor::new::<RowFilter>(
"RowFilter",
fields,
file_descriptor_proto()
)
})
}
}
}
impl ::protobuf::Clear for RowFilter {
fn clear(&mut self) {
self.clear_chain();
self.clear_interleave();
self.clear_condition();
self.clear_sink();
self.clear_pass_all_filter();
self.clear_block_all_filter();
self.clear_row_key_regex_filter();
self.clear_row_sample_filter();
self.clear_family_name_regex_filter();
self.clear_column_qualifier_regex_filter();
self.clear_column_range_filter();
self.clear_timestamp_range_filter();
self.clear_value_regex_filter();
self.clear_value_range_filter();
self.clear_cells_per_row_offset_filter();
self.clear_cells_per_row_limit_filter();
self.clear_cells_per_column_limit_filter();
self.clear_strip_value_transformer();
self.clear_apply_label_transformer();
self.unknown_fields.clear();
}
}
impl ::std::cmp::PartialEq for RowFilter {
fn eq(&self, other: &RowFilter) -> bool {
self.filter == other.filter &&
self.unknown_fields == other.unknown_fields
}
}
impl ::std::fmt::Debug for RowFilter {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
#[derive(Clone,Default)]
pub struct RowFilter_Chain {
filters: ::protobuf::RepeatedField<RowFilter>,
unknown_fields: ::protobuf::UnknownFields,
cached_size: ::std::cell::Cell<u32>,
}
unsafe impl ::std::marker::Sync for RowFilter_Chain {}
impl RowFilter_Chain {
pub fn new() -> RowFilter_Chain {
::std::default::Default::default()
}
pub fn default_instance() -> &'static RowFilter_Chain {
static mut instance: ::protobuf::lazy::Lazy<RowFilter_Chain> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const RowFilter_Chain,
};
unsafe {
instance.get(|| {
RowFilter_Chain {
filters: ::protobuf::RepeatedField::new(),
unknown_fields: ::protobuf::UnknownFields::new(),
cached_size: ::std::cell::Cell::new(0),
}
})
}
}
pub fn clear_filters(&mut self) {
self.filters.clear();
}
pub fn set_filters(&mut self, v: ::protobuf::RepeatedField<RowFilter>) {
self.filters = v;
}
pub fn mut_filters(&mut self) -> &mut ::protobuf::RepeatedField<RowFilter> {
&mut self.filters
}
pub fn take_filters(&mut self) -> ::protobuf::RepeatedField<RowFilter> {
::std::mem::replace(&mut self.filters, ::protobuf::RepeatedField::new())
}
pub fn get_filters(&self) -> &[RowFilter] {
&self.filters
}
}
impl ::protobuf::Message for RowFilter_Chain {
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.filters));
},
_ => {
try!(::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields()));
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u32 {
let mut my_size = 0;
for value in &self.filters {
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.filters {
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(&self) -> &::protobuf::UnknownFields {
&self.unknown_fields
}
fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields {
&mut self.unknown_fields
}
fn type_id(&self) -> ::std::any::TypeId {
::std::any::TypeId::of::<RowFilter_Chain>()
}
fn as_any(&self) -> &dyn (::std::any::Any) {
self as &dyn (::std::any::Any)
}
fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
::protobuf::MessageStatic::descriptor_static(None::<Self>)
}
}
impl ::protobuf::MessageStatic for RowFilter_Chain {
fn new() -> RowFilter_Chain {
RowFilter_Chain::new()
}
fn descriptor_static(_: ::std::option::Option<RowFilter_Chain>) -> &'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(
"filters",
RowFilter_Chain::get_filters,
));
::protobuf::reflect::MessageDescriptor::new::<RowFilter_Chain>(
"RowFilter_Chain",
fields,
file_descriptor_proto()
)
})
}
}
}
impl ::protobuf::Clear for RowFilter_Chain {
fn clear(&mut self) {
self.clear_filters();
self.unknown_fields.clear();
}
}
impl ::std::cmp::PartialEq for RowFilter_Chain {
fn eq(&self, other: &RowFilter_Chain) -> bool {
self.filters == other.filters &&
self.unknown_fields == other.unknown_fields
}
}
impl ::std::fmt::Debug for RowFilter_Chain {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
#[derive(Clone,Default)]
pub struct RowFilter_Interleave {
filters: ::protobuf::RepeatedField<RowFilter>,
unknown_fields: ::protobuf::UnknownFields,
cached_size: ::std::cell::Cell<u32>,
}
unsafe impl ::std::marker::Sync for RowFilter_Interleave {}
impl RowFilter_Interleave {
pub fn new() -> RowFilter_Interleave {
::std::default::Default::default()
}
pub fn default_instance() -> &'static RowFilter_Interleave {
static mut instance: ::protobuf::lazy::Lazy<RowFilter_Interleave> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const RowFilter_Interleave,
};
unsafe {
instance.get(|| {
RowFilter_Interleave {
filters: ::protobuf::RepeatedField::new(),
unknown_fields: ::protobuf::UnknownFields::new(),
cached_size: ::std::cell::Cell::new(0),
}
})
}
}
pub fn clear_filters(&mut self) {
self.filters.clear();
}
pub fn set_filters(&mut self, v: ::protobuf::RepeatedField<RowFilter>) {
self.filters = v;
}
pub fn mut_filters(&mut self) -> &mut ::protobuf::RepeatedField<RowFilter> {
&mut self.filters
}
pub fn take_filters(&mut self) -> ::protobuf::RepeatedField<RowFilter> {
::std::mem::replace(&mut self.filters, ::protobuf::RepeatedField::new())
}
pub fn get_filters(&self) -> &[RowFilter] {
&self.filters
}
}
impl ::protobuf::Message for RowFilter_Interleave {
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.filters));
},
_ => {
try!(::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields()));
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u32 {
let mut my_size = 0;
for value in &self.filters {
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.filters {
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(&self) -> &::protobuf::UnknownFields {
&self.unknown_fields
}
fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields {
&mut self.unknown_fields
}
fn type_id(&self) -> ::std::any::TypeId {
::std::any::TypeId::of::<RowFilter_Interleave>()
}
fn as_any(&self) -> &dyn (::std::any::Any) {
self as &dyn (::std::any::Any)
}
fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
::protobuf::MessageStatic::descriptor_static(None::<Self>)
}
}
impl ::protobuf::MessageStatic for RowFilter_Interleave {
fn new() -> RowFilter_Interleave {
RowFilter_Interleave::new()
}
fn descriptor_static(_: ::std::option::Option<RowFilter_Interleave>) -> &'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(
"filters",
RowFilter_Interleave::get_filters,
));
::protobuf::reflect::MessageDescriptor::new::<RowFilter_Interleave>(
"RowFilter_Interleave",
fields,
file_descriptor_proto()
)
})
}
}
}
impl ::protobuf::Clear for RowFilter_Interleave {
fn clear(&mut self) {
self.clear_filters();
self.unknown_fields.clear();
}
}
impl ::std::cmp::PartialEq for RowFilter_Interleave {
fn eq(&self, other: &RowFilter_Interleave) -> bool {
self.filters == other.filters &&
self.unknown_fields == other.unknown_fields
}
}
impl ::std::fmt::Debug for RowFilter_Interleave {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
#[derive(Clone,Default)]
pub struct RowFilter_Condition {
predicate_filter: ::protobuf::SingularPtrField<RowFilter>,
true_filter: ::protobuf::SingularPtrField<RowFilter>,
false_filter: ::protobuf::SingularPtrField<RowFilter>,
unknown_fields: ::protobuf::UnknownFields,
cached_size: ::std::cell::Cell<u32>,
}
unsafe impl ::std::marker::Sync for RowFilter_Condition {}
impl RowFilter_Condition {
pub fn new() -> RowFilter_Condition {
::std::default::Default::default()
}
pub fn default_instance() -> &'static RowFilter_Condition {
static mut instance: ::protobuf::lazy::Lazy<RowFilter_Condition> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const RowFilter_Condition,
};
unsafe {
instance.get(|| {
RowFilter_Condition {
predicate_filter: ::protobuf::SingularPtrField::none(),
true_filter: ::protobuf::SingularPtrField::none(),
false_filter: ::protobuf::SingularPtrField::none(),
unknown_fields: ::protobuf::UnknownFields::new(),
cached_size: ::std::cell::Cell::new(0),
}
})
}
}
pub fn clear_predicate_filter(&mut self) {
self.predicate_filter.clear();
}
pub fn has_predicate_filter(&self) -> bool {
self.predicate_filter.is_some()
}
pub fn set_predicate_filter(&mut self, v: RowFilter) {
self.predicate_filter = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_predicate_filter(&mut self) -> &mut RowFilter {
if self.predicate_filter.is_none() {
self.predicate_filter.set_default();
};
self.predicate_filter.as_mut().unwrap()
}
pub fn take_predicate_filter(&mut self) -> RowFilter {
self.predicate_filter.take().unwrap_or_else(|| RowFilter::new())
}
pub fn get_predicate_filter(&self) -> &RowFilter {
self.predicate_filter.as_ref().unwrap_or_else(|| RowFilter::default_instance())
}
pub fn clear_true_filter(&mut self) {
self.true_filter.clear();
}
pub fn has_true_filter(&self) -> bool {
self.true_filter.is_some()
}
pub fn set_true_filter(&mut self, v: RowFilter) {
self.true_filter = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_true_filter(&mut self) -> &mut RowFilter {
if self.true_filter.is_none() {
self.true_filter.set_default();
};
self.true_filter.as_mut().unwrap()
}
pub fn take_true_filter(&mut self) -> RowFilter {
self.true_filter.take().unwrap_or_else(|| RowFilter::new())
}
pub fn get_true_filter(&self) -> &RowFilter {
self.true_filter.as_ref().unwrap_or_else(|| RowFilter::default_instance())
}
pub fn clear_false_filter(&mut self) {
self.false_filter.clear();
}
pub fn has_false_filter(&self) -> bool {
self.false_filter.is_some()
}
pub fn set_false_filter(&mut self, v: RowFilter) {
self.false_filter = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_false_filter(&mut self) -> &mut RowFilter {
if self.false_filter.is_none() {
self.false_filter.set_default();
};
self.false_filter.as_mut().unwrap()
}
pub fn take_false_filter(&mut self) -> RowFilter {
self.false_filter.take().unwrap_or_else(|| RowFilter::new())
}
pub fn get_false_filter(&self) -> &RowFilter {
self.false_filter.as_ref().unwrap_or_else(|| RowFilter::default_instance())
}
}
impl ::protobuf::Message for RowFilter_Condition {
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_singular_message_into(wire_type, is, &mut self.predicate_filter));
},
2 => {
try!(::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.true_filter));
},
3 => {
try!(::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.false_filter));
},
_ => {
try!(::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields()));
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u32 {
let mut my_size = 0;
for value in &self.predicate_filter {
let len = value.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
};
for value in &self.true_filter {
let len = value.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
};
for value in &self.false_filter {
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.predicate_filter.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.true_filter.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.false_filter.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(&self) -> &::protobuf::UnknownFields {
&self.unknown_fields
}
fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields {
&mut self.unknown_fields
}
fn type_id(&self) -> ::std::any::TypeId {
::std::any::TypeId::of::<RowFilter_Condition>()
}
fn as_any(&self) -> &dyn (::std::any::Any) {
self as &dyn (::std::any::Any)
}
fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
::protobuf::MessageStatic::descriptor_static(None::<Self>)
}
}
impl ::protobuf::MessageStatic for RowFilter_Condition {
fn new() -> RowFilter_Condition {
RowFilter_Condition::new()
}
fn descriptor_static(_: ::std::option::Option<RowFilter_Condition>) -> &'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(
"predicate_filter",
RowFilter_Condition::has_predicate_filter,
RowFilter_Condition::get_predicate_filter,
));
fields.push(::protobuf::reflect::accessor::make_singular_message_accessor(
"true_filter",
RowFilter_Condition::has_true_filter,
RowFilter_Condition::get_true_filter,
));
fields.push(::protobuf::reflect::accessor::make_singular_message_accessor(
"false_filter",
RowFilter_Condition::has_false_filter,
RowFilter_Condition::get_false_filter,
));
::protobuf::reflect::MessageDescriptor::new::<RowFilter_Condition>(
"RowFilter_Condition",
fields,
file_descriptor_proto()
)
})
}
}
}
impl ::protobuf::Clear for RowFilter_Condition {
fn clear(&mut self) {
self.clear_predicate_filter();
self.clear_true_filter();
self.clear_false_filter();
self.unknown_fields.clear();
}
}
impl ::std::cmp::PartialEq for RowFilter_Condition {
fn eq(&self, other: &RowFilter_Condition) -> bool {
self.predicate_filter == other.predicate_filter &&
self.true_filter == other.true_filter &&
self.false_filter == other.false_filter &&
self.unknown_fields == other.unknown_fields
}
}
impl ::std::fmt::Debug for RowFilter_Condition {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
#[derive(Clone,Default)]
pub struct Mutation {
mutation: ::std::option::Option<Mutation_oneof_mutation>,
unknown_fields: ::protobuf::UnknownFields,
cached_size: ::std::cell::Cell<u32>,
}
unsafe impl ::std::marker::Sync for Mutation {}
#[derive(Clone,PartialEq)]
pub enum Mutation_oneof_mutation {
set_cell(Mutation_SetCell),
delete_from_column(Mutation_DeleteFromColumn),
delete_from_family(Mutation_DeleteFromFamily),
delete_from_row(Mutation_DeleteFromRow),
}
impl Mutation {
pub fn new() -> Mutation {
::std::default::Default::default()
}
pub fn default_instance() -> &'static Mutation {
static mut instance: ::protobuf::lazy::Lazy<Mutation> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const Mutation,
};
unsafe {
instance.get(|| {
Mutation {
mutation: ::std::option::Option::None,
unknown_fields: ::protobuf::UnknownFields::new(),
cached_size: ::std::cell::Cell::new(0),
}
})
}
}
pub fn clear_set_cell(&mut self) {
self.mutation = ::std::option::Option::None;
}
pub fn has_set_cell(&self) -> bool {
match self.mutation {
::std::option::Option::Some(Mutation_oneof_mutation::set_cell(..)) => true,
_ => false,
}
}
pub fn set_set_cell(&mut self, v: Mutation_SetCell) {
self.mutation = ::std::option::Option::Some(Mutation_oneof_mutation::set_cell(v))
}
pub fn mut_set_cell(&mut self) -> &mut Mutation_SetCell {
if let ::std::option::Option::Some(Mutation_oneof_mutation::set_cell(_)) = self.mutation {
} else {
self.mutation = ::std::option::Option::Some(Mutation_oneof_mutation::set_cell(Mutation_SetCell::new()));
}
match self.mutation {
::std::option::Option::Some(Mutation_oneof_mutation::set_cell(ref mut v)) => v,
_ => panic!(),
}
}
pub fn take_set_cell(&mut self) -> Mutation_SetCell {
if self.has_set_cell() {
match self.mutation.take() {
::std::option::Option::Some(Mutation_oneof_mutation::set_cell(v)) => v,
_ => panic!(),
}
} else {
Mutation_SetCell::new()
}
}
pub fn get_set_cell(&self) -> &Mutation_SetCell {
match self.mutation {
::std::option::Option::Some(Mutation_oneof_mutation::set_cell(ref v)) => v,
_ => Mutation_SetCell::default_instance(),
}
}
pub fn clear_delete_from_column(&mut self) {
self.mutation = ::std::option::Option::None;
}
pub fn has_delete_from_column(&self) -> bool {
match self.mutation {
::std::option::Option::Some(Mutation_oneof_mutation::delete_from_column(..)) => true,
_ => false,
}
}
pub fn set_delete_from_column(&mut self, v: Mutation_DeleteFromColumn) {
self.mutation = ::std::option::Option::Some(Mutation_oneof_mutation::delete_from_column(v))
}
pub fn mut_delete_from_column(&mut self) -> &mut Mutation_DeleteFromColumn {
if let ::std::option::Option::Some(Mutation_oneof_mutation::delete_from_column(_)) = self.mutation {
} else {
self.mutation = ::std::option::Option::Some(Mutation_oneof_mutation::delete_from_column(Mutation_DeleteFromColumn::new()));
}
match self.mutation {
::std::option::Option::Some(Mutation_oneof_mutation::delete_from_column(ref mut v)) => v,
_ => panic!(),
}
}
pub fn take_delete_from_column(&mut self) -> Mutation_DeleteFromColumn {
if self.has_delete_from_column() {
match self.mutation.take() {
::std::option::Option::Some(Mutation_oneof_mutation::delete_from_column(v)) => v,
_ => panic!(),
}
} else {
Mutation_DeleteFromColumn::new()
}
}
pub fn get_delete_from_column(&self) -> &Mutation_DeleteFromColumn {
match self.mutation {
::std::option::Option::Some(Mutation_oneof_mutation::delete_from_column(ref v)) => v,
_ => Mutation_DeleteFromColumn::default_instance(),
}
}
pub fn clear_delete_from_family(&mut self) {
self.mutation = ::std::option::Option::None;
}
pub fn has_delete_from_family(&self) -> bool {
match self.mutation {
::std::option::Option::Some(Mutation_oneof_mutation::delete_from_family(..)) => true,
_ => false,
}
}
pub fn set_delete_from_family(&mut self, v: Mutation_DeleteFromFamily) {
self.mutation = ::std::option::Option::Some(Mutation_oneof_mutation::delete_from_family(v))
}
pub fn mut_delete_from_family(&mut self) -> &mut Mutation_DeleteFromFamily {
if let ::std::option::Option::Some(Mutation_oneof_mutation::delete_from_family(_)) = self.mutation {
} else {
self.mutation = ::std::option::Option::Some(Mutation_oneof_mutation::delete_from_family(Mutation_DeleteFromFamily::new()));
}
match self.mutation {
::std::option::Option::Some(Mutation_oneof_mutation::delete_from_family(ref mut v)) => v,
_ => panic!(),
}
}
pub fn take_delete_from_family(&mut self) -> Mutation_DeleteFromFamily {
if self.has_delete_from_family() {
match self.mutation.take() {
::std::option::Option::Some(Mutation_oneof_mutation::delete_from_family(v)) => v,
_ => panic!(),
}
} else {
Mutation_DeleteFromFamily::new()
}
}
pub fn get_delete_from_family(&self) -> &Mutation_DeleteFromFamily {
match self.mutation {
::std::option::Option::Some(Mutation_oneof_mutation::delete_from_family(ref v)) => v,
_ => Mutation_DeleteFromFamily::default_instance(),
}
}
pub fn clear_delete_from_row(&mut self) {
self.mutation = ::std::option::Option::None;
}
pub fn has_delete_from_row(&self) -> bool {
match self.mutation {
::std::option::Option::Some(Mutation_oneof_mutation::delete_from_row(..)) => true,
_ => false,
}
}
pub fn set_delete_from_row(&mut self, v: Mutation_DeleteFromRow) {
self.mutation = ::std::option::Option::Some(Mutation_oneof_mutation::delete_from_row(v))
}
pub fn mut_delete_from_row(&mut self) -> &mut Mutation_DeleteFromRow {
if let ::std::option::Option::Some(Mutation_oneof_mutation::delete_from_row(_)) = self.mutation {
} else {
self.mutation = ::std::option::Option::Some(Mutation_oneof_mutation::delete_from_row(Mutation_DeleteFromRow::new()));
}
match self.mutation {
::std::option::Option::Some(Mutation_oneof_mutation::delete_from_row(ref mut v)) => v,
_ => panic!(),
}
}
pub fn take_delete_from_row(&mut self) -> Mutation_DeleteFromRow {
if self.has_delete_from_row() {
match self.mutation.take() {
::std::option::Option::Some(Mutation_oneof_mutation::delete_from_row(v)) => v,
_ => panic!(),
}
} else {
Mutation_DeleteFromRow::new()
}
}
pub fn get_delete_from_row(&self) -> &Mutation_DeleteFromRow {
match self.mutation {
::std::option::Option::Some(Mutation_oneof_mutation::delete_from_row(ref v)) => v,
_ => Mutation_DeleteFromRow::default_instance(),
}
}
}
impl ::protobuf::Message for Mutation {
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 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
};
self.mutation = ::std::option::Option::Some(Mutation_oneof_mutation::set_cell(try!(is.read_message())));
},
2 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
};
self.mutation = ::std::option::Option::Some(Mutation_oneof_mutation::delete_from_column(try!(is.read_message())));
},
3 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
};
self.mutation = ::std::option::Option::Some(Mutation_oneof_mutation::delete_from_family(try!(is.read_message())));
},
4 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
};
self.mutation = ::std::option::Option::Some(Mutation_oneof_mutation::delete_from_row(try!(is.read_message())));
},
_ => {
try!(::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields()));
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u32 {
let mut my_size = 0;
if let ::std::option::Option::Some(ref v) = self.mutation {
match v {
&Mutation_oneof_mutation::set_cell(ref v) => {
let len = v.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
},
&Mutation_oneof_mutation::delete_from_column(ref v) => {
let len = v.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
},
&Mutation_oneof_mutation::delete_from_family(ref v) => {
let len = v.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
},
&Mutation_oneof_mutation::delete_from_row(ref v) => {
let len = v.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 ::std::option::Option::Some(ref v) = self.mutation {
match v {
&Mutation_oneof_mutation::set_cell(ref v) => {
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));
},
&Mutation_oneof_mutation::delete_from_column(ref v) => {
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));
},
&Mutation_oneof_mutation::delete_from_family(ref v) => {
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));
},
&Mutation_oneof_mutation::delete_from_row(ref v) => {
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));
},
};
};
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(&self) -> &::protobuf::UnknownFields {
&self.unknown_fields
}
fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields {
&mut self.unknown_fields
}
fn type_id(&self) -> ::std::any::TypeId {
::std::any::TypeId::of::<Mutation>()
}
fn as_any(&self) -> &dyn (::std::any::Any) {
self as &dyn (::std::any::Any)
}
fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
::protobuf::MessageStatic::descriptor_static(None::<Self>)
}
}
impl ::protobuf::MessageStatic for Mutation {
fn new() -> Mutation {
Mutation::new()
}
fn descriptor_static(_: ::std::option::Option<Mutation>) -> &'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(
"set_cell",
Mutation::has_set_cell,
Mutation::get_set_cell,
));
fields.push(::protobuf::reflect::accessor::make_singular_message_accessor(
"delete_from_column",
Mutation::has_delete_from_column,
Mutation::get_delete_from_column,
));
fields.push(::protobuf::reflect::accessor::make_singular_message_accessor(
"delete_from_family",
Mutation::has_delete_from_family,
Mutation::get_delete_from_family,
));
fields.push(::protobuf::reflect::accessor::make_singular_message_accessor(
"delete_from_row",
Mutation::has_delete_from_row,
Mutation::get_delete_from_row,
));
::protobuf::reflect::MessageDescriptor::new::<Mutation>(
"Mutation",
fields,
file_descriptor_proto()
)
})
}
}
}
impl ::protobuf::Clear for Mutation {
fn clear(&mut self) {
self.clear_set_cell();
self.clear_delete_from_column();
self.clear_delete_from_family();
self.clear_delete_from_row();
self.unknown_fields.clear();
}
}
impl ::std::cmp::PartialEq for Mutation {
fn eq(&self, other: &Mutation) -> bool {
self.mutation == other.mutation &&
self.unknown_fields == other.unknown_fields
}
}
impl ::std::fmt::Debug for Mutation {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
#[derive(Clone,Default)]
pub struct Mutation_SetCell {
family_name: ::protobuf::SingularField<::std::string::String>,
column_qualifier: ::protobuf::SingularField<::std::vec::Vec<u8>>,
timestamp_micros: ::std::option::Option<i64>,
value: ::protobuf::SingularField<::std::vec::Vec<u8>>,
unknown_fields: ::protobuf::UnknownFields,
cached_size: ::std::cell::Cell<u32>,
}
unsafe impl ::std::marker::Sync for Mutation_SetCell {}
impl Mutation_SetCell {
pub fn new() -> Mutation_SetCell {
::std::default::Default::default()
}
pub fn default_instance() -> &'static Mutation_SetCell {
static mut instance: ::protobuf::lazy::Lazy<Mutation_SetCell> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const Mutation_SetCell,
};
unsafe {
instance.get(|| {
Mutation_SetCell {
family_name: ::protobuf::SingularField::none(),
column_qualifier: ::protobuf::SingularField::none(),
timestamp_micros: ::std::option::Option::None,
value: ::protobuf::SingularField::none(),
unknown_fields: ::protobuf::UnknownFields::new(),
cached_size: ::std::cell::Cell::new(0),
}
})
}
}
pub fn clear_family_name(&mut self) {
self.family_name.clear();
}
pub fn has_family_name(&self) -> bool {
self.family_name.is_some()
}
pub fn set_family_name(&mut self, v: ::std::string::String) {
self.family_name = ::protobuf::SingularField::some(v);
}
pub fn mut_family_name(&mut self) -> &mut ::std::string::String {
if self.family_name.is_none() {
self.family_name.set_default();
};
self.family_name.as_mut().unwrap()
}
pub fn take_family_name(&mut self) -> ::std::string::String {
self.family_name.take().unwrap_or_else(|| ::std::string::String::new())
}
pub fn get_family_name(&self) -> &str {
match self.family_name.as_ref() {
Some(v) => &v,
None => "",
}
}
pub fn clear_column_qualifier(&mut self) {
self.column_qualifier.clear();
}
pub fn has_column_qualifier(&self) -> bool {
self.column_qualifier.is_some()
}
pub fn set_column_qualifier(&mut self, v: ::std::vec::Vec<u8>) {
self.column_qualifier = ::protobuf::SingularField::some(v);
}
pub fn mut_column_qualifier(&mut self) -> &mut ::std::vec::Vec<u8> {
if self.column_qualifier.is_none() {
self.column_qualifier.set_default();
};
self.column_qualifier.as_mut().unwrap()
}
pub fn take_column_qualifier(&mut self) -> ::std::vec::Vec<u8> {
self.column_qualifier.take().unwrap_or_else(|| ::std::vec::Vec::new())
}
pub fn get_column_qualifier(&self) -> &[u8] {
match self.column_qualifier.as_ref() {
Some(v) => &v,
None => &[],
}
}
pub fn clear_timestamp_micros(&mut self) {
self.timestamp_micros = ::std::option::Option::None;
}
pub fn has_timestamp_micros(&self) -> bool {
self.timestamp_micros.is_some()
}
pub fn set_timestamp_micros(&mut self, v: i64) {
self.timestamp_micros = ::std::option::Option::Some(v);
}
pub fn get_timestamp_micros(&self) -> i64 {
self.timestamp_micros.unwrap_or(0)
}
pub fn clear_value(&mut self) {
self.value.clear();
}
pub fn has_value(&self) -> bool {
self.value.is_some()
}
pub fn set_value(&mut self, v: ::std::vec::Vec<u8>) {
self.value = ::protobuf::SingularField::some(v);
}
pub fn mut_value(&mut self) -> &mut ::std::vec::Vec<u8> {
if self.value.is_none() {
self.value.set_default();
};
self.value.as_mut().unwrap()
}
pub fn take_value(&mut self) -> ::std::vec::Vec<u8> {
self.value.take().unwrap_or_else(|| ::std::vec::Vec::new())
}
pub fn get_value(&self) -> &[u8] {
match self.value.as_ref() {
Some(v) => &v,
None => &[],
}
}
}
impl ::protobuf::Message for Mutation_SetCell {
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_singular_string_into(wire_type, is, &mut self.family_name));
},
2 => {
try!(::protobuf::rt::read_singular_bytes_into(wire_type, is, &mut self.column_qualifier));
},
3 => {
if wire_type != ::protobuf::wire_format::WireTypeVarint {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
};
let tmp = try!(is.read_int64());
self.timestamp_micros = ::std::option::Option::Some(tmp);
},
4 => {
try!(::protobuf::rt::read_singular_bytes_into(wire_type, is, &mut self.value));
},
_ => {
try!(::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields()));
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u32 {
let mut my_size = 0;
for value in &self.family_name {
my_size += ::protobuf::rt::string_size(1, &value);
};
for value in &self.column_qualifier {
my_size += ::protobuf::rt::bytes_size(2, &value);
};
for value in &self.timestamp_micros {
my_size += ::protobuf::rt::value_size(3, *value, ::protobuf::wire_format::WireTypeVarint);
};
for value in &self.value {
my_size += ::protobuf::rt::bytes_size(4, &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.family_name.as_ref() {
try!(os.write_string(1, &v));
};
if let Some(v) = self.column_qualifier.as_ref() {
try!(os.write_bytes(2, &v));
};
if let Some(v) = self.timestamp_micros {
try!(os.write_int64(3, v));
};
if let Some(v) = self.value.as_ref() {
try!(os.write_bytes(4, &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(&self) -> &::protobuf::UnknownFields {
&self.unknown_fields
}
fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields {
&mut self.unknown_fields
}
fn type_id(&self) -> ::std::any::TypeId {
::std::any::TypeId::of::<Mutation_SetCell>()
}
fn as_any(&self) -> &dyn (::std::any::Any) {
self as &dyn (::std::any::Any)
}
fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
::protobuf::MessageStatic::descriptor_static(None::<Self>)
}
}
impl ::protobuf::MessageStatic for Mutation_SetCell {
fn new() -> Mutation_SetCell {
Mutation_SetCell::new()
}
fn descriptor_static(_: ::std::option::Option<Mutation_SetCell>) -> &'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(
"family_name",
Mutation_SetCell::has_family_name,
Mutation_SetCell::get_family_name,
));
fields.push(::protobuf::reflect::accessor::make_singular_bytes_accessor(
"column_qualifier",
Mutation_SetCell::has_column_qualifier,
Mutation_SetCell::get_column_qualifier,
));
fields.push(::protobuf::reflect::accessor::make_singular_i64_accessor(
"timestamp_micros",
Mutation_SetCell::has_timestamp_micros,
Mutation_SetCell::get_timestamp_micros,
));
fields.push(::protobuf::reflect::accessor::make_singular_bytes_accessor(
"value",
Mutation_SetCell::has_value,
Mutation_SetCell::get_value,
));
::protobuf::reflect::MessageDescriptor::new::<Mutation_SetCell>(
"Mutation_SetCell",
fields,
file_descriptor_proto()
)
})
}
}
}
impl ::protobuf::Clear for Mutation_SetCell {
fn clear(&mut self) {
self.clear_family_name();
self.clear_column_qualifier();
self.clear_timestamp_micros();
self.clear_value();
self.unknown_fields.clear();
}
}
impl ::std::cmp::PartialEq for Mutation_SetCell {
fn eq(&self, other: &Mutation_SetCell) -> bool {
self.family_name == other.family_name &&
self.column_qualifier == other.column_qualifier &&
self.timestamp_micros == other.timestamp_micros &&
self.value == other.value &&
self.unknown_fields == other.unknown_fields
}
}
impl ::std::fmt::Debug for Mutation_SetCell {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
#[derive(Clone,Default)]
pub struct Mutation_DeleteFromColumn {
family_name: ::protobuf::SingularField<::std::string::String>,
column_qualifier: ::protobuf::SingularField<::std::vec::Vec<u8>>,
time_range: ::protobuf::SingularPtrField<TimestampRange>,
unknown_fields: ::protobuf::UnknownFields,
cached_size: ::std::cell::Cell<u32>,
}
unsafe impl ::std::marker::Sync for Mutation_DeleteFromColumn {}
impl Mutation_DeleteFromColumn {
pub fn new() -> Mutation_DeleteFromColumn {
::std::default::Default::default()
}
pub fn default_instance() -> &'static Mutation_DeleteFromColumn {
static mut instance: ::protobuf::lazy::Lazy<Mutation_DeleteFromColumn> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const Mutation_DeleteFromColumn,
};
unsafe {
instance.get(|| {
Mutation_DeleteFromColumn {
family_name: ::protobuf::SingularField::none(),
column_qualifier: ::protobuf::SingularField::none(),
time_range: ::protobuf::SingularPtrField::none(),
unknown_fields: ::protobuf::UnknownFields::new(),
cached_size: ::std::cell::Cell::new(0),
}
})
}
}
pub fn clear_family_name(&mut self) {
self.family_name.clear();
}
pub fn has_family_name(&self) -> bool {
self.family_name.is_some()
}
pub fn set_family_name(&mut self, v: ::std::string::String) {
self.family_name = ::protobuf::SingularField::some(v);
}
pub fn mut_family_name(&mut self) -> &mut ::std::string::String {
if self.family_name.is_none() {
self.family_name.set_default();
};
self.family_name.as_mut().unwrap()
}
pub fn take_family_name(&mut self) -> ::std::string::String {
self.family_name.take().unwrap_or_else(|| ::std::string::String::new())
}
pub fn get_family_name(&self) -> &str {
match self.family_name.as_ref() {
Some(v) => &v,
None => "",
}
}
pub fn clear_column_qualifier(&mut self) {
self.column_qualifier.clear();
}
pub fn has_column_qualifier(&self) -> bool {
self.column_qualifier.is_some()
}
pub fn set_column_qualifier(&mut self, v: ::std::vec::Vec<u8>) {
self.column_qualifier = ::protobuf::SingularField::some(v);
}
pub fn mut_column_qualifier(&mut self) -> &mut ::std::vec::Vec<u8> {
if self.column_qualifier.is_none() {
self.column_qualifier.set_default();
};
self.column_qualifier.as_mut().unwrap()
}
pub fn take_column_qualifier(&mut self) -> ::std::vec::Vec<u8> {
self.column_qualifier.take().unwrap_or_else(|| ::std::vec::Vec::new())
}
pub fn get_column_qualifier(&self) -> &[u8] {
match self.column_qualifier.as_ref() {
Some(v) => &v,
None => &[],
}
}
pub fn clear_time_range(&mut self) {
self.time_range.clear();
}
pub fn has_time_range(&self) -> bool {
self.time_range.is_some()
}
pub fn set_time_range(&mut self, v: TimestampRange) {
self.time_range = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_time_range(&mut self) -> &mut TimestampRange {
if self.time_range.is_none() {
self.time_range.set_default();
};
self.time_range.as_mut().unwrap()
}
pub fn take_time_range(&mut self) -> TimestampRange {
self.time_range.take().unwrap_or_else(|| TimestampRange::new())
}
pub fn get_time_range(&self) -> &TimestampRange {
self.time_range.as_ref().unwrap_or_else(|| TimestampRange::default_instance())
}
}
impl ::protobuf::Message for Mutation_DeleteFromColumn {
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_singular_string_into(wire_type, is, &mut self.family_name));
},
2 => {
try!(::protobuf::rt::read_singular_bytes_into(wire_type, is, &mut self.column_qualifier));
},
3 => {
try!(::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.time_range));
},
_ => {
try!(::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields()));
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u32 {
let mut my_size = 0;
for value in &self.family_name {
my_size += ::protobuf::rt::string_size(1, &value);
};
for value in &self.column_qualifier {
my_size += ::protobuf::rt::bytes_size(2, &value);
};
for value in &self.time_range {
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.family_name.as_ref() {
try!(os.write_string(1, &v));
};
if let Some(v) = self.column_qualifier.as_ref() {
try!(os.write_bytes(2, &v));
};
if let Some(v) = self.time_range.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(&self) -> &::protobuf::UnknownFields {
&self.unknown_fields
}
fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields {
&mut self.unknown_fields
}
fn type_id(&self) -> ::std::any::TypeId {
::std::any::TypeId::of::<Mutation_DeleteFromColumn>()
}
fn as_any(&self) -> &dyn (::std::any::Any) {
self as &dyn (::std::any::Any)
}
fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
::protobuf::MessageStatic::descriptor_static(None::<Self>)
}
}
impl ::protobuf::MessageStatic for Mutation_DeleteFromColumn {
fn new() -> Mutation_DeleteFromColumn {
Mutation_DeleteFromColumn::new()
}
fn descriptor_static(_: ::std::option::Option<Mutation_DeleteFromColumn>) -> &'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(
"family_name",
Mutation_DeleteFromColumn::has_family_name,
Mutation_DeleteFromColumn::get_family_name,
));
fields.push(::protobuf::reflect::accessor::make_singular_bytes_accessor(
"column_qualifier",
Mutation_DeleteFromColumn::has_column_qualifier,
Mutation_DeleteFromColumn::get_column_qualifier,
));
fields.push(::protobuf::reflect::accessor::make_singular_message_accessor(
"time_range",
Mutation_DeleteFromColumn::has_time_range,
Mutation_DeleteFromColumn::get_time_range,
));
::protobuf::reflect::MessageDescriptor::new::<Mutation_DeleteFromColumn>(
"Mutation_DeleteFromColumn",
fields,
file_descriptor_proto()
)
})
}
}
}
impl ::protobuf::Clear for Mutation_DeleteFromColumn {
fn clear(&mut self) {
self.clear_family_name();
self.clear_column_qualifier();
self.clear_time_range();
self.unknown_fields.clear();
}
}
impl ::std::cmp::PartialEq for Mutation_DeleteFromColumn {
fn eq(&self, other: &Mutation_DeleteFromColumn) -> bool {
self.family_name == other.family_name &&
self.column_qualifier == other.column_qualifier &&
self.time_range == other.time_range &&
self.unknown_fields == other.unknown_fields
}
}
impl ::std::fmt::Debug for Mutation_DeleteFromColumn {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
#[derive(Clone,Default)]
pub struct Mutation_DeleteFromFamily {
family_name: ::protobuf::SingularField<::std::string::String>,
unknown_fields: ::protobuf::UnknownFields,
cached_size: ::std::cell::Cell<u32>,
}
unsafe impl ::std::marker::Sync for Mutation_DeleteFromFamily {}
impl Mutation_DeleteFromFamily {
pub fn new() -> Mutation_DeleteFromFamily {
::std::default::Default::default()
}
pub fn default_instance() -> &'static Mutation_DeleteFromFamily {
static mut instance: ::protobuf::lazy::Lazy<Mutation_DeleteFromFamily> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const Mutation_DeleteFromFamily,
};
unsafe {
instance.get(|| {
Mutation_DeleteFromFamily {
family_name: ::protobuf::SingularField::none(),
unknown_fields: ::protobuf::UnknownFields::new(),
cached_size: ::std::cell::Cell::new(0),
}
})
}
}
pub fn clear_family_name(&mut self) {
self.family_name.clear();
}
pub fn has_family_name(&self) -> bool {
self.family_name.is_some()
}
pub fn set_family_name(&mut self, v: ::std::string::String) {
self.family_name = ::protobuf::SingularField::some(v);
}
pub fn mut_family_name(&mut self) -> &mut ::std::string::String {
if self.family_name.is_none() {
self.family_name.set_default();
};
self.family_name.as_mut().unwrap()
}
pub fn take_family_name(&mut self) -> ::std::string::String {
self.family_name.take().unwrap_or_else(|| ::std::string::String::new())
}
pub fn get_family_name(&self) -> &str {
match self.family_name.as_ref() {
Some(v) => &v,
None => "",
}
}
}
impl ::protobuf::Message for Mutation_DeleteFromFamily {
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_singular_string_into(wire_type, is, &mut self.family_name));
},
_ => {
try!(::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields()));
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u32 {
let mut my_size = 0;
for value in &self.family_name {
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.family_name.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(&self) -> &::protobuf::UnknownFields {
&self.unknown_fields
}
fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields {
&mut self.unknown_fields
}
fn type_id(&self) -> ::std::any::TypeId {
::std::any::TypeId::of::<Mutation_DeleteFromFamily>()
}
fn as_any(&self) -> &dyn (::std::any::Any) {
self as &dyn (::std::any::Any)
}
fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
::protobuf::MessageStatic::descriptor_static(None::<Self>)
}
}
impl ::protobuf::MessageStatic for Mutation_DeleteFromFamily {
fn new() -> Mutation_DeleteFromFamily {
Mutation_DeleteFromFamily::new()
}
fn descriptor_static(_: ::std::option::Option<Mutation_DeleteFromFamily>) -> &'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(
"family_name",
Mutation_DeleteFromFamily::has_family_name,
Mutation_DeleteFromFamily::get_family_name,
));
::protobuf::reflect::MessageDescriptor::new::<Mutation_DeleteFromFamily>(
"Mutation_DeleteFromFamily",
fields,
file_descriptor_proto()
)
})
}
}
}
impl ::protobuf::Clear for Mutation_DeleteFromFamily {
fn clear(&mut self) {
self.clear_family_name();
self.unknown_fields.clear();
}
}
impl ::std::cmp::PartialEq for Mutation_DeleteFromFamily {
fn eq(&self, other: &Mutation_DeleteFromFamily) -> bool {
self.family_name == other.family_name &&
self.unknown_fields == other.unknown_fields
}
}
impl ::std::fmt::Debug for Mutation_DeleteFromFamily {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
#[derive(Clone,Default)]
pub struct Mutation_DeleteFromRow {
unknown_fields: ::protobuf::UnknownFields,
cached_size: ::std::cell::Cell<u32>,
}
unsafe impl ::std::marker::Sync for Mutation_DeleteFromRow {}
impl Mutation_DeleteFromRow {
pub fn new() -> Mutation_DeleteFromRow {
::std::default::Default::default()
}
pub fn default_instance() -> &'static Mutation_DeleteFromRow {
static mut instance: ::protobuf::lazy::Lazy<Mutation_DeleteFromRow> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const Mutation_DeleteFromRow,
};
unsafe {
instance.get(|| {
Mutation_DeleteFromRow {
unknown_fields: ::protobuf::UnknownFields::new(),
cached_size: ::std::cell::Cell::new(0),
}
})
}
}
}
impl ::protobuf::Message for Mutation_DeleteFromRow {
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 {
_ => {
try!(::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields()));
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u32 {
let mut my_size = 0;
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<()> {
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(&self) -> &::protobuf::UnknownFields {
&self.unknown_fields
}
fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields {
&mut self.unknown_fields
}
fn type_id(&self) -> ::std::any::TypeId {
::std::any::TypeId::of::<Mutation_DeleteFromRow>()
}
fn as_any(&self) -> &dyn (::std::any::Any) {
self as &dyn (::std::any::Any)
}
fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
::protobuf::MessageStatic::descriptor_static(None::<Self>)
}
}
impl ::protobuf::MessageStatic for Mutation_DeleteFromRow {
fn new() -> Mutation_DeleteFromRow {
Mutation_DeleteFromRow::new()
}
fn descriptor_static(_: ::std::option::Option<Mutation_DeleteFromRow>) -> &'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 fields = ::std::vec::Vec::new();
::protobuf::reflect::MessageDescriptor::new::<Mutation_DeleteFromRow>(
"Mutation_DeleteFromRow",
fields,
file_descriptor_proto()
)
})
}
}
}
impl ::protobuf::Clear for Mutation_DeleteFromRow {
fn clear(&mut self) {
self.unknown_fields.clear();
}
}
impl ::std::cmp::PartialEq for Mutation_DeleteFromRow {
fn eq(&self, other: &Mutation_DeleteFromRow) -> bool {
self.unknown_fields == other.unknown_fields
}
}
impl ::std::fmt::Debug for Mutation_DeleteFromRow {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
#[derive(Clone,Default)]
pub struct ReadModifyWriteRule {
family_name: ::protobuf::SingularField<::std::string::String>,
column_qualifier: ::protobuf::SingularField<::std::vec::Vec<u8>>,
rule: ::std::option::Option<ReadModifyWriteRule_oneof_rule>,
unknown_fields: ::protobuf::UnknownFields,
cached_size: ::std::cell::Cell<u32>,
}
unsafe impl ::std::marker::Sync for ReadModifyWriteRule {}
#[derive(Clone,PartialEq)]
pub enum ReadModifyWriteRule_oneof_rule {
append_value(::std::vec::Vec<u8>),
increment_amount(i64),
}
impl ReadModifyWriteRule {
pub fn new() -> ReadModifyWriteRule {
::std::default::Default::default()
}
pub fn default_instance() -> &'static ReadModifyWriteRule {
static mut instance: ::protobuf::lazy::Lazy<ReadModifyWriteRule> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const ReadModifyWriteRule,
};
unsafe {
instance.get(|| {
ReadModifyWriteRule {
family_name: ::protobuf::SingularField::none(),
column_qualifier: ::protobuf::SingularField::none(),
rule: ::std::option::Option::None,
unknown_fields: ::protobuf::UnknownFields::new(),
cached_size: ::std::cell::Cell::new(0),
}
})
}
}
pub fn clear_family_name(&mut self) {
self.family_name.clear();
}
pub fn has_family_name(&self) -> bool {
self.family_name.is_some()
}
pub fn set_family_name(&mut self, v: ::std::string::String) {
self.family_name = ::protobuf::SingularField::some(v);
}
pub fn mut_family_name(&mut self) -> &mut ::std::string::String {
if self.family_name.is_none() {
self.family_name.set_default();
};
self.family_name.as_mut().unwrap()
}
pub fn take_family_name(&mut self) -> ::std::string::String {
self.family_name.take().unwrap_or_else(|| ::std::string::String::new())
}
pub fn get_family_name(&self) -> &str {
match self.family_name.as_ref() {
Some(v) => &v,
None => "",
}
}
pub fn clear_column_qualifier(&mut self) {
self.column_qualifier.clear();
}
pub fn has_column_qualifier(&self) -> bool {
self.column_qualifier.is_some()
}
pub fn set_column_qualifier(&mut self, v: ::std::vec::Vec<u8>) {
self.column_qualifier = ::protobuf::SingularField::some(v);
}
pub fn mut_column_qualifier(&mut self) -> &mut ::std::vec::Vec<u8> {
if self.column_qualifier.is_none() {
self.column_qualifier.set_default();
};
self.column_qualifier.as_mut().unwrap()
}
pub fn take_column_qualifier(&mut self) -> ::std::vec::Vec<u8> {
self.column_qualifier.take().unwrap_or_else(|| ::std::vec::Vec::new())
}
pub fn get_column_qualifier(&self) -> &[u8] {
match self.column_qualifier.as_ref() {
Some(v) => &v,
None => &[],
}
}
pub fn clear_append_value(&mut self) {
self.rule = ::std::option::Option::None;
}
pub fn has_append_value(&self) -> bool {
match self.rule {
::std::option::Option::Some(ReadModifyWriteRule_oneof_rule::append_value(..)) => true,
_ => false,
}
}
pub fn set_append_value(&mut self, v: ::std::vec::Vec<u8>) {
self.rule = ::std::option::Option::Some(ReadModifyWriteRule_oneof_rule::append_value(v))
}
pub fn mut_append_value(&mut self) -> &mut ::std::vec::Vec<u8> {
if let ::std::option::Option::Some(ReadModifyWriteRule_oneof_rule::append_value(_)) = self.rule {
} else {
self.rule = ::std::option::Option::Some(ReadModifyWriteRule_oneof_rule::append_value(::std::vec::Vec::new()));
}
match self.rule {
::std::option::Option::Some(ReadModifyWriteRule_oneof_rule::append_value(ref mut v)) => v,
_ => panic!(),
}
}
pub fn take_append_value(&mut self) -> ::std::vec::Vec<u8> {
if self.has_append_value() {
match self.rule.take() {
::std::option::Option::Some(ReadModifyWriteRule_oneof_rule::append_value(v)) => v,
_ => panic!(),
}
} else {
::std::vec::Vec::new()
}
}
pub fn get_append_value(&self) -> &[u8] {
match self.rule {
::std::option::Option::Some(ReadModifyWriteRule_oneof_rule::append_value(ref v)) => v,
_ => &[],
}
}
pub fn clear_increment_amount(&mut self) {
self.rule = ::std::option::Option::None;
}
pub fn has_increment_amount(&self) -> bool {
match self.rule {
::std::option::Option::Some(ReadModifyWriteRule_oneof_rule::increment_amount(..)) => true,
_ => false,
}
}
pub fn set_increment_amount(&mut self, v: i64) {
self.rule = ::std::option::Option::Some(ReadModifyWriteRule_oneof_rule::increment_amount(v))
}
pub fn get_increment_amount(&self) -> i64 {
match self.rule {
::std::option::Option::Some(ReadModifyWriteRule_oneof_rule::increment_amount(v)) => v,
_ => 0,
}
}
}
impl ::protobuf::Message for ReadModifyWriteRule {
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_singular_string_into(wire_type, is, &mut self.family_name));
},
2 => {
try!(::protobuf::rt::read_singular_bytes_into(wire_type, is, &mut self.column_qualifier));
},
3 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
};
self.rule = ::std::option::Option::Some(ReadModifyWriteRule_oneof_rule::append_value(try!(is.read_bytes())));
},
4 => {
if wire_type != ::protobuf::wire_format::WireTypeVarint {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
};
self.rule = ::std::option::Option::Some(ReadModifyWriteRule_oneof_rule::increment_amount(try!(is.read_int64())));
},
_ => {
try!(::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields()));
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u32 {
let mut my_size = 0;
for value in &self.family_name {
my_size += ::protobuf::rt::string_size(1, &value);
};
for value in &self.column_qualifier {
my_size += ::protobuf::rt::bytes_size(2, &value);
};
if let ::std::option::Option::Some(ref v) = self.rule {
match v {
&ReadModifyWriteRule_oneof_rule::append_value(ref v) => {
my_size += ::protobuf::rt::bytes_size(3, &v);
},
&ReadModifyWriteRule_oneof_rule::increment_amount(v) => {
my_size += ::protobuf::rt::value_size(4, v, ::protobuf::wire_format::WireTypeVarint);
},
};
};
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.family_name.as_ref() {
try!(os.write_string(1, &v));
};
if let Some(v) = self.column_qualifier.as_ref() {
try!(os.write_bytes(2, &v));
};
if let ::std::option::Option::Some(ref v) = self.rule {
match v {
&ReadModifyWriteRule_oneof_rule::append_value(ref v) => {
try!(os.write_bytes(3, v));
},
&ReadModifyWriteRule_oneof_rule::increment_amount(v) => {
try!(os.write_int64(4, 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(&self) -> &::protobuf::UnknownFields {
&self.unknown_fields
}
fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields {
&mut self.unknown_fields
}
fn type_id(&self) -> ::std::any::TypeId {
::std::any::TypeId::of::<ReadModifyWriteRule>()
}
fn as_any(&self) -> &dyn (::std::any::Any) {
self as &dyn (::std::any::Any)
}
fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
::protobuf::MessageStatic::descriptor_static(None::<Self>)
}
}
impl ::protobuf::MessageStatic for ReadModifyWriteRule {
fn new() -> ReadModifyWriteRule {
ReadModifyWriteRule::new()
}
fn descriptor_static(_: ::std::option::Option<ReadModifyWriteRule>) -> &'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(
"family_name",
ReadModifyWriteRule::has_family_name,
ReadModifyWriteRule::get_family_name,
));
fields.push(::protobuf::reflect::accessor::make_singular_bytes_accessor(
"column_qualifier",
ReadModifyWriteRule::has_column_qualifier,
ReadModifyWriteRule::get_column_qualifier,
));
fields.push(::protobuf::reflect::accessor::make_singular_bytes_accessor(
"append_value",
ReadModifyWriteRule::has_append_value,
ReadModifyWriteRule::get_append_value,
));
fields.push(::protobuf::reflect::accessor::make_singular_i64_accessor(
"increment_amount",
ReadModifyWriteRule::has_increment_amount,
ReadModifyWriteRule::get_increment_amount,
));
::protobuf::reflect::MessageDescriptor::new::<ReadModifyWriteRule>(
"ReadModifyWriteRule",
fields,
file_descriptor_proto()
)
})
}
}
}
impl ::protobuf::Clear for ReadModifyWriteRule {
fn clear(&mut self) {
self.clear_family_name();
self.clear_column_qualifier();
self.clear_append_value();
self.clear_increment_amount();
self.unknown_fields.clear();
}
}
impl ::std::cmp::PartialEq for ReadModifyWriteRule {
fn eq(&self, other: &ReadModifyWriteRule) -> bool {
self.family_name == other.family_name &&
self.column_qualifier == other.column_qualifier &&
self.rule == other.rule &&
self.unknown_fields == other.unknown_fields
}
}
impl ::std::fmt::Debug for ReadModifyWriteRule {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
static file_descriptor_proto_data: &'static [u8] = &[
0x0a, 0x1d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x62, 0x69, 0x67, 0x74, 0x61, 0x62, 0x6c,
0x65, 0x2f, 0x76, 0x32, 0x2f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
0x12, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x62, 0x69, 0x67, 0x74, 0x61, 0x62, 0x6c, 0x65,
0x2e, 0x76, 0x32, 0x22, 0x4f, 0x0a, 0x03, 0x52, 0x6f, 0x77, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65,
0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x36, 0x0a, 0x08,
0x66, 0x61, 0x6d, 0x69, 0x6c, 0x69, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1a,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x62, 0x69, 0x67, 0x74, 0x61, 0x62, 0x6c, 0x65,
0x2e, 0x76, 0x32, 0x2e, 0x46, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x52, 0x08, 0x66, 0x61, 0x6d, 0x69,
0x6c, 0x69, 0x65, 0x73, 0x22, 0x52, 0x0a, 0x06, 0x46, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x12, 0x12,
0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61,
0x6d, 0x65, 0x12, 0x34, 0x0a, 0x07, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x18, 0x02, 0x20,
0x03, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x62, 0x69, 0x67,
0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x76, 0x32, 0x2e, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x52,
0x07, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x22, 0x56, 0x0a, 0x06, 0x43, 0x6f, 0x6c, 0x75,
0x6d, 0x6e, 0x12, 0x1c, 0x0a, 0x09, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x66, 0x69, 0x65, 0x72, 0x18,
0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x09, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x66, 0x69, 0x65, 0x72,
0x12, 0x2e, 0x0a, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32,
0x18, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x62, 0x69, 0x67, 0x74, 0x61, 0x62, 0x6c,
0x65, 0x2e, 0x76, 0x32, 0x2e, 0x43, 0x65, 0x6c, 0x6c, 0x52, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73,
0x22, 0x5f, 0x0a, 0x04, 0x43, 0x65, 0x6c, 0x6c, 0x12, 0x29, 0x0a, 0x10, 0x74, 0x69, 0x6d, 0x65,
0x73, 0x74, 0x61, 0x6d, 0x70, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0x01, 0x20, 0x01,
0x28, 0x03, 0x52, 0x0f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x4d, 0x69, 0x63,
0x72, 0x6f, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01,
0x28, 0x0c, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6c, 0x61, 0x62,
0x65, 0x6c, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x6c, 0x61, 0x62, 0x65, 0x6c,
0x73, 0x22, 0xc2, 0x01, 0x0a, 0x08, 0x52, 0x6f, 0x77, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x12, 0x2a,
0x0a, 0x10, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x6b, 0x65, 0x79, 0x5f, 0x63, 0x6c, 0x6f, 0x73,
0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x48, 0x00, 0x52, 0x0e, 0x73, 0x74, 0x61, 0x72,
0x74, 0x4b, 0x65, 0x79, 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x64, 0x12, 0x26, 0x0a, 0x0e, 0x73, 0x74,
0x61, 0x72, 0x74, 0x5f, 0x6b, 0x65, 0x79, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x18, 0x02, 0x20, 0x01,
0x28, 0x0c, 0x48, 0x00, 0x52, 0x0c, 0x73, 0x74, 0x61, 0x72, 0x74, 0x4b, 0x65, 0x79, 0x4f, 0x70,
0x65, 0x6e, 0x12, 0x22, 0x0a, 0x0c, 0x65, 0x6e, 0x64, 0x5f, 0x6b, 0x65, 0x79, 0x5f, 0x6f, 0x70,
0x65, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x48, 0x01, 0x52, 0x0a, 0x65, 0x6e, 0x64, 0x4b,
0x65, 0x79, 0x4f, 0x70, 0x65, 0x6e, 0x12, 0x26, 0x0a, 0x0e, 0x65, 0x6e, 0x64, 0x5f, 0x6b, 0x65,
0x79, 0x5f, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0c, 0x48, 0x01,
0x52, 0x0c, 0x65, 0x6e, 0x64, 0x4b, 0x65, 0x79, 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x64, 0x42, 0x0b,
0x0a, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x6b, 0x65, 0x79, 0x42, 0x09, 0x0a, 0x07, 0x65,
0x6e, 0x64, 0x5f, 0x6b, 0x65, 0x79, 0x22, 0x60, 0x0a, 0x06, 0x52, 0x6f, 0x77, 0x53, 0x65, 0x74,
0x12, 0x19, 0x0a, 0x08, 0x72, 0x6f, 0x77, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x18, 0x01, 0x20, 0x03,
0x28, 0x0c, 0x52, 0x07, 0x72, 0x6f, 0x77, 0x4b, 0x65, 0x79, 0x73, 0x12, 0x3b, 0x0a, 0x0a, 0x72,
0x6f, 0x77, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32,
0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x62, 0x69, 0x67, 0x74, 0x61, 0x62, 0x6c,
0x65, 0x2e, 0x76, 0x32, 0x2e, 0x52, 0x6f, 0x77, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x52, 0x09, 0x72,
0x6f, 0x77, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x73, 0x22, 0xa2, 0x02, 0x0a, 0x0b, 0x43, 0x6f, 0x6c,
0x75, 0x6d, 0x6e, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x66, 0x61, 0x6d, 0x69,
0x6c, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x66,
0x61, 0x6d, 0x69, 0x6c, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x36, 0x0a, 0x16, 0x73, 0x74, 0x61,
0x72, 0x74, 0x5f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x66, 0x69, 0x65, 0x72, 0x5f, 0x63, 0x6c, 0x6f,
0x73, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x48, 0x00, 0x52, 0x14, 0x73, 0x74, 0x61,
0x72, 0x74, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x66, 0x69, 0x65, 0x72, 0x43, 0x6c, 0x6f, 0x73, 0x65,
0x64, 0x12, 0x32, 0x0a, 0x14, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x71, 0x75, 0x61, 0x6c, 0x69,
0x66, 0x69, 0x65, 0x72, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x48,
0x00, 0x52, 0x12, 0x73, 0x74, 0x61, 0x72, 0x74, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x66, 0x69, 0x65,
0x72, 0x4f, 0x70, 0x65, 0x6e, 0x12, 0x32, 0x0a, 0x14, 0x65, 0x6e, 0x64, 0x5f, 0x71, 0x75, 0x61,
0x6c, 0x69, 0x66, 0x69, 0x65, 0x72, 0x5f, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x64, 0x18, 0x04, 0x20,
0x01, 0x28, 0x0c, 0x48, 0x01, 0x52, 0x12, 0x65, 0x6e, 0x64, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x66,
0x69, 0x65, 0x72, 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x64, 0x12, 0x2e, 0x0a, 0x12, 0x65, 0x6e, 0x64,
0x5f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x66, 0x69, 0x65, 0x72, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x18,
0x05, 0x20, 0x01, 0x28, 0x0c, 0x48, 0x01, 0x52, 0x10, 0x65, 0x6e, 0x64, 0x51, 0x75, 0x61, 0x6c,
0x69, 0x66, 0x69, 0x65, 0x72, 0x4f, 0x70, 0x65, 0x6e, 0x42, 0x11, 0x0a, 0x0f, 0x73, 0x74, 0x61,
0x72, 0x74, 0x5f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x66, 0x69, 0x65, 0x72, 0x42, 0x0f, 0x0a, 0x0d,
0x65, 0x6e, 0x64, 0x5f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x66, 0x69, 0x65, 0x72, 0x22, 0x78, 0x0a,
0x0e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x12,
0x34, 0x0a, 0x16, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61,
0x6d, 0x70, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
0x14, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x4d,
0x69, 0x63, 0x72, 0x6f, 0x73, 0x12, 0x30, 0x0a, 0x14, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d,
0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0x02, 0x20,
0x01, 0x28, 0x03, 0x52, 0x12, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d,
0x70, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x22, 0xd8, 0x01, 0x0a, 0x0a, 0x56, 0x61, 0x6c, 0x75,
0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x12, 0x2e, 0x0a, 0x12, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f,
0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01,
0x28, 0x0c, 0x48, 0x00, 0x52, 0x10, 0x73, 0x74, 0x61, 0x72, 0x74, 0x56, 0x61, 0x6c, 0x75, 0x65,
0x43, 0x6c, 0x6f, 0x73, 0x65, 0x64, 0x12, 0x2a, 0x0a, 0x10, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f,
0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c,
0x48, 0x00, 0x52, 0x0e, 0x73, 0x74, 0x61, 0x72, 0x74, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x4f, 0x70,
0x65, 0x6e, 0x12, 0x2a, 0x0a, 0x10, 0x65, 0x6e, 0x64, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f,
0x63, 0x6c, 0x6f, 0x73, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x48, 0x01, 0x52, 0x0e,
0x65, 0x6e, 0x64, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x64, 0x12, 0x26,
0x0a, 0x0e, 0x65, 0x6e, 0x64, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x6f, 0x70, 0x65, 0x6e,
0x18, 0x04, 0x20, 0x01, 0x28, 0x0c, 0x48, 0x01, 0x52, 0x0c, 0x65, 0x6e, 0x64, 0x56, 0x61, 0x6c,
0x75, 0x65, 0x4f, 0x70, 0x65, 0x6e, 0x42, 0x0d, 0x0a, 0x0b, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f,
0x76, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x0b, 0x0a, 0x09, 0x65, 0x6e, 0x64, 0x5f, 0x76, 0x61, 0x6c,
0x75, 0x65, 0x22, 0xfc, 0x0b, 0x0a, 0x09, 0x52, 0x6f, 0x77, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72,
0x12, 0x3b, 0x0a, 0x05, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
0x23, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x62, 0x69, 0x67, 0x74, 0x61, 0x62, 0x6c,
0x65, 0x2e, 0x76, 0x32, 0x2e, 0x52, 0x6f, 0x77, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e, 0x43,
0x68, 0x61, 0x69, 0x6e, 0x48, 0x00, 0x52, 0x05, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x12, 0x4a, 0x0a,
0x0a, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6c, 0x65, 0x61, 0x76, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
0x0b, 0x32, 0x28, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x62, 0x69, 0x67, 0x74, 0x61,
0x62, 0x6c, 0x65, 0x2e, 0x76, 0x32, 0x2e, 0x52, 0x6f, 0x77, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72,
0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6c, 0x65, 0x61, 0x76, 0x65, 0x48, 0x00, 0x52, 0x0a, 0x69,
0x6e, 0x74, 0x65, 0x72, 0x6c, 0x65, 0x61, 0x76, 0x65, 0x12, 0x47, 0x0a, 0x09, 0x63, 0x6f, 0x6e,
0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x62, 0x69, 0x67, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x76,
0x32, 0x2e, 0x52, 0x6f, 0x77, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e, 0x43, 0x6f, 0x6e, 0x64,
0x69, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x09, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69,
0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x04, 0x73, 0x69, 0x6e, 0x6b, 0x18, 0x10, 0x20, 0x01, 0x28, 0x08,
0x48, 0x00, 0x52, 0x04, 0x73, 0x69, 0x6e, 0x6b, 0x12, 0x28, 0x0a, 0x0f, 0x70, 0x61, 0x73, 0x73,
0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x18, 0x11, 0x20, 0x01, 0x28,
0x08, 0x48, 0x00, 0x52, 0x0d, 0x70, 0x61, 0x73, 0x73, 0x41, 0x6c, 0x6c, 0x46, 0x69, 0x6c, 0x74,
0x65, 0x72, 0x12, 0x2a, 0x0a, 0x10, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x61, 0x6c, 0x6c, 0x5f,
0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x18, 0x12, 0x20, 0x01, 0x28, 0x08, 0x48, 0x00, 0x52, 0x0e,
0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x41, 0x6c, 0x6c, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x12, 0x31,
0x0a, 0x14, 0x72, 0x6f, 0x77, 0x5f, 0x6b, 0x65, 0x79, 0x5f, 0x72, 0x65, 0x67, 0x65, 0x78, 0x5f,
0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0c, 0x48, 0x00, 0x52, 0x11,
0x72, 0x6f, 0x77, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x67, 0x65, 0x78, 0x46, 0x69, 0x6c, 0x74, 0x65,
0x72, 0x12, 0x2c, 0x0a, 0x11, 0x72, 0x6f, 0x77, 0x5f, 0x73, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x5f,
0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x01, 0x48, 0x00, 0x52, 0x0f,
0x72, 0x6f, 0x77, 0x53, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x12,
0x39, 0x0a, 0x18, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x5f, 0x72,
0x65, 0x67, 0x65, 0x78, 0x5f, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28,
0x09, 0x48, 0x00, 0x52, 0x15, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x52,
0x65, 0x67, 0x65, 0x78, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x12, 0x43, 0x0a, 0x1d, 0x63, 0x6f,
0x6c, 0x75, 0x6d, 0x6e, 0x5f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x66, 0x69, 0x65, 0x72, 0x5f, 0x72,
0x65, 0x67, 0x65, 0x78, 0x5f, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x18, 0x06, 0x20, 0x01, 0x28,
0x0c, 0x48, 0x00, 0x52, 0x1a, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x51, 0x75, 0x61, 0x6c, 0x69,
0x66, 0x69, 0x65, 0x72, 0x52, 0x65, 0x67, 0x65, 0x78, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x12,
0x51, 0x0a, 0x13, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x5f,
0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x62, 0x69, 0x67, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x76,
0x32, 0x2e, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x48, 0x00, 0x52,
0x11, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x46, 0x69, 0x6c, 0x74,
0x65, 0x72, 0x12, 0x5a, 0x0a, 0x16, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x5f,
0x72, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x18, 0x08, 0x20, 0x01,
0x28, 0x0b, 0x32, 0x22, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x62, 0x69, 0x67, 0x74,
0x61, 0x62, 0x6c, 0x65, 0x2e, 0x76, 0x32, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d,
0x70, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x48, 0x00, 0x52, 0x14, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74,
0x61, 0x6d, 0x70, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x12, 0x2e,
0x0a, 0x12, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x72, 0x65, 0x67, 0x65, 0x78, 0x5f, 0x66, 0x69,
0x6c, 0x74, 0x65, 0x72, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0c, 0x48, 0x00, 0x52, 0x10, 0x76, 0x61,
0x6c, 0x75, 0x65, 0x52, 0x65, 0x67, 0x65, 0x78, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x12, 0x4e,
0x0a, 0x12, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x66, 0x69,
0x6c, 0x74, 0x65, 0x72, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x62, 0x69, 0x67, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x76, 0x32, 0x2e,
0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x48, 0x00, 0x52, 0x10, 0x76, 0x61,
0x6c, 0x75, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x12, 0x3e,
0x0a, 0x1b, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x72, 0x6f, 0x77, 0x5f,
0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x18, 0x0a, 0x20,
0x01, 0x28, 0x05, 0x48, 0x00, 0x52, 0x17, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x50, 0x65, 0x72, 0x52,
0x6f, 0x77, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x12, 0x3c,
0x0a, 0x1a, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x72, 0x6f, 0x77, 0x5f,
0x6c, 0x69, 0x6d, 0x69, 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x18, 0x0b, 0x20, 0x01,
0x28, 0x05, 0x48, 0x00, 0x52, 0x16, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x50, 0x65, 0x72, 0x52, 0x6f,
0x77, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x12, 0x42, 0x0a, 0x1d,
0x63, 0x65, 0x6c, 0x6c, 0x73, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e,
0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x18, 0x0c, 0x20,
0x01, 0x28, 0x05, 0x48, 0x00, 0x52, 0x19, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x50, 0x65, 0x72, 0x43,
0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72,
0x12, 0x38, 0x0a, 0x17, 0x73, 0x74, 0x72, 0x69, 0x70, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f,
0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x65, 0x72, 0x18, 0x0d, 0x20, 0x01, 0x28,
0x08, 0x48, 0x00, 0x52, 0x15, 0x73, 0x74, 0x72, 0x69, 0x70, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x54,
0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x65, 0x72, 0x12, 0x38, 0x0a, 0x17, 0x61, 0x70,
0x70, 0x6c, 0x79, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66,
0x6f, 0x72, 0x6d, 0x65, 0x72, 0x18, 0x13, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x15, 0x61,
0x70, 0x70, 0x6c, 0x79, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f,
0x72, 0x6d, 0x65, 0x72, 0x1a, 0x40, 0x0a, 0x05, 0x43, 0x68, 0x61, 0x69, 0x6e, 0x12, 0x37, 0x0a,
0x07, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1d,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x62, 0x69, 0x67, 0x74, 0x61, 0x62, 0x6c, 0x65,
0x2e, 0x76, 0x32, 0x2e, 0x52, 0x6f, 0x77, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x52, 0x07, 0x66,
0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x1a, 0x45, 0x0a, 0x0a, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6c,
0x65, 0x61, 0x76, 0x65, 0x12, 0x37, 0x0a, 0x07, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x18,
0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x62,
0x69, 0x67, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x76, 0x32, 0x2e, 0x52, 0x6f, 0x77, 0x46, 0x69,
0x6c, 0x74, 0x65, 0x72, 0x52, 0x07, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x1a, 0xd7, 0x01,
0x0a, 0x09, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x48, 0x0a, 0x10, 0x70,
0x72, 0x65, 0x64, 0x69, 0x63, 0x61, 0x74, 0x65, 0x5f, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x18,
0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x62,
0x69, 0x67, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x76, 0x32, 0x2e, 0x52, 0x6f, 0x77, 0x46, 0x69,
0x6c, 0x74, 0x65, 0x72, 0x52, 0x0f, 0x70, 0x72, 0x65, 0x64, 0x69, 0x63, 0x61, 0x74, 0x65, 0x46,
0x69, 0x6c, 0x74, 0x65, 0x72, 0x12, 0x3e, 0x0a, 0x0b, 0x74, 0x72, 0x75, 0x65, 0x5f, 0x66, 0x69,
0x6c, 0x74, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x62, 0x69, 0x67, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x76, 0x32, 0x2e,
0x52, 0x6f, 0x77, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x52, 0x0a, 0x74, 0x72, 0x75, 0x65, 0x46,
0x69, 0x6c, 0x74, 0x65, 0x72, 0x12, 0x40, 0x0a, 0x0c, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x5f, 0x66,
0x69, 0x6c, 0x74, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x62, 0x69, 0x67, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x76, 0x32,
0x2e, 0x52, 0x6f, 0x77, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x52, 0x0b, 0x66, 0x61, 0x6c, 0x73,
0x65, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x42, 0x08, 0x0a, 0x06, 0x66, 0x69, 0x6c, 0x74, 0x65,
0x72, 0x22, 0xf0, 0x05, 0x0a, 0x08, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x41,
0x0a, 0x08, 0x73, 0x65, 0x74, 0x5f, 0x63, 0x65, 0x6c, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
0x32, 0x24, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x62, 0x69, 0x67, 0x74, 0x61, 0x62,
0x6c, 0x65, 0x2e, 0x76, 0x32, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x53,
0x65, 0x74, 0x43, 0x65, 0x6c, 0x6c, 0x48, 0x00, 0x52, 0x07, 0x73, 0x65, 0x74, 0x43, 0x65, 0x6c,
0x6c, 0x12, 0x5d, 0x0a, 0x12, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x5f, 0x66, 0x72, 0x6f, 0x6d,
0x5f, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x62, 0x69, 0x67, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e,
0x76, 0x32, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x44, 0x65, 0x6c, 0x65,
0x74, 0x65, 0x46, 0x72, 0x6f, 0x6d, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x48, 0x00, 0x52, 0x10,
0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x46, 0x72, 0x6f, 0x6d, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e,
0x12, 0x5d, 0x0a, 0x12, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f,
0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x62, 0x69, 0x67, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x76,
0x32, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74,
0x65, 0x46, 0x72, 0x6f, 0x6d, 0x46, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x48, 0x00, 0x52, 0x10, 0x64,
0x65, 0x6c, 0x65, 0x74, 0x65, 0x46, 0x72, 0x6f, 0x6d, 0x46, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x12,
0x54, 0x0a, 0x0f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x72,
0x6f, 0x77, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x62, 0x69, 0x67, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x76, 0x32, 0x2e, 0x4d, 0x75,
0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x46, 0x72, 0x6f,
0x6d, 0x52, 0x6f, 0x77, 0x48, 0x00, 0x52, 0x0d, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x46, 0x72,
0x6f, 0x6d, 0x52, 0x6f, 0x77, 0x1a, 0x96, 0x01, 0x0a, 0x07, 0x53, 0x65, 0x74, 0x43, 0x65, 0x6c,
0x6c, 0x12, 0x1f, 0x0a, 0x0b, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65,
0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x4e, 0x61,
0x6d, 0x65, 0x12, 0x29, 0x0a, 0x10, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x5f, 0x71, 0x75, 0x61,
0x6c, 0x69, 0x66, 0x69, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0f, 0x63, 0x6f,
0x6c, 0x75, 0x6d, 0x6e, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x66, 0x69, 0x65, 0x72, 0x12, 0x29, 0x0a,
0x10, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f,
0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61,
0x6d, 0x70, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75,
0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x1a, 0xa1,
0x01, 0x0a, 0x10, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x46, 0x72, 0x6f, 0x6d, 0x43, 0x6f, 0x6c,
0x75, 0x6d, 0x6e, 0x12, 0x1f, 0x0a, 0x0b, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x5f, 0x6e, 0x61,
0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79,
0x4e, 0x61, 0x6d, 0x65, 0x12, 0x29, 0x0a, 0x10, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x5f, 0x71,
0x75, 0x61, 0x6c, 0x69, 0x66, 0x69, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0f,
0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x66, 0x69, 0x65, 0x72, 0x12,
0x41, 0x0a, 0x0a, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x18, 0x03, 0x20,
0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x62, 0x69, 0x67,
0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x76, 0x32, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61,
0x6d, 0x70, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x52, 0x61, 0x6e,
0x67, 0x65, 0x1a, 0x33, 0x0a, 0x10, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x46, 0x72, 0x6f, 0x6d,
0x46, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x12, 0x1f, 0x0a, 0x0b, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79,
0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x66, 0x61, 0x6d,
0x69, 0x6c, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x1a, 0x0f, 0x0a, 0x0d, 0x44, 0x65, 0x6c, 0x65, 0x74,
0x65, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x6f, 0x77, 0x42, 0x0a, 0x0a, 0x08, 0x6d, 0x75, 0x74, 0x61,
0x74, 0x69, 0x6f, 0x6e, 0x22, 0xbb, 0x01, 0x0a, 0x13, 0x52, 0x65, 0x61, 0x64, 0x4d, 0x6f, 0x64,
0x69, 0x66, 0x79, 0x57, 0x72, 0x69, 0x74, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x12, 0x1f, 0x0a, 0x0b,
0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
0x09, 0x52, 0x0a, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x29, 0x0a,
0x10, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x5f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x66, 0x69, 0x65,
0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0f, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x51,
0x75, 0x61, 0x6c, 0x69, 0x66, 0x69, 0x65, 0x72, 0x12, 0x23, 0x0a, 0x0c, 0x61, 0x70, 0x70, 0x65,
0x6e, 0x64, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x48, 0x00,
0x52, 0x0b, 0x61, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x2b, 0x0a,
0x10, 0x69, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x6d, 0x6f, 0x75, 0x6e,
0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x48, 0x00, 0x52, 0x0f, 0x69, 0x6e, 0x63, 0x72, 0x65,
0x6d, 0x65, 0x6e, 0x74, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x06, 0x0a, 0x04, 0x72, 0x75,
0x6c, 0x65, 0x42, 0x61, 0x0a, 0x16, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x62, 0x69, 0x67, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x76, 0x32, 0x42, 0x09, 0x44, 0x61,
0x74, 0x61, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
0x2f, 0x62, 0x69, 0x67, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2f, 0x76, 0x32, 0x3b, 0x62, 0x69, 0x67,
0x74, 0x61, 0x62, 0x6c, 0x65, 0x4a, 0xe7, 0xb9, 0x01, 0x0a, 0x07, 0x12, 0x05, 0x0e, 0x00, 0x94,
0x04, 0x01, 0x0a, 0xbd, 0x04, 0x0a, 0x01, 0x0c, 0x12, 0x03, 0x0e, 0x00, 0x12, 0x32, 0xb2, 0x04,
0x20, 0x43, 0x6f, 0x70, 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x20, 0x32, 0x30, 0x31, 0x36, 0x20,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x0a, 0x0a, 0x20, 0x4c, 0x69,
0x63, 0x65, 0x6e, 0x73, 0x65, 0x64, 0x20, 0x75, 0x6e, 0x64, 0x65, 0x72, 0x20, 0x74, 0x68, 0x65,
0x20, 0x41, 0x70, 0x61, 0x63, 0x68, 0x65, 0x20, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x2c,
0x20, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x20, 0x32, 0x2e, 0x30, 0x20, 0x28, 0x74, 0x68,
0x65, 0x20, 0x22, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x22, 0x29, 0x3b, 0x0a, 0x20, 0x79,
0x6f, 0x75, 0x20, 0x6d, 0x61, 0x79, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x75, 0x73, 0x65, 0x20, 0x74,
0x68, 0x69, 0x73, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x20, 0x65, 0x78, 0x63, 0x65, 0x70, 0x74, 0x20,
0x69, 0x6e, 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x69, 0x61, 0x6e, 0x63, 0x65, 0x20, 0x77, 0x69,
0x74, 0x68, 0x20, 0x74, 0x68, 0x65, 0x20, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x2e, 0x0a,
0x20, 0x59, 0x6f, 0x75, 0x20, 0x6d, 0x61, 0x79, 0x20, 0x6f, 0x62, 0x74, 0x61, 0x69, 0x6e, 0x20,
0x61, 0x20, 0x63, 0x6f, 0x70, 0x79, 0x20, 0x6f, 0x66, 0x20, 0x74, 0x68, 0x65, 0x20, 0x4c, 0x69,
0x63, 0x65, 0x6e, 0x73, 0x65, 0x20, 0x61, 0x74, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x68,
0x74, 0x74, 0x70, 0x3a, 0x2f, 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x61, 0x70, 0x61, 0x63, 0x68, 0x65,
0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x73, 0x2f, 0x4c, 0x49,
0x43, 0x45, 0x4e, 0x53, 0x45, 0x2d, 0x32, 0x2e, 0x30, 0x0a, 0x0a, 0x20, 0x55, 0x6e, 0x6c, 0x65,
0x73, 0x73, 0x20, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x20, 0x62, 0x79, 0x20, 0x61,
0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x62, 0x6c, 0x65, 0x20, 0x6c, 0x61, 0x77, 0x20, 0x6f, 0x72,
0x20, 0x61, 0x67, 0x72, 0x65, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x69, 0x6e, 0x20, 0x77, 0x72,
0x69, 0x74, 0x69, 0x6e, 0x67, 0x2c, 0x20, 0x73, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x0a,
0x20, 0x64, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x20, 0x75, 0x6e, 0x64,
0x65, 0x72, 0x20, 0x74, 0x68, 0x65, 0x20, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x20, 0x69,
0x73, 0x20, 0x64, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x20, 0x6f, 0x6e,
0x20, 0x61, 0x6e, 0x20, 0x22, 0x41, 0x53, 0x20, 0x49, 0x53, 0x22, 0x20, 0x42, 0x41, 0x53, 0x49,
0x53, 0x2c, 0x0a, 0x20, 0x57, 0x49, 0x54, 0x48, 0x4f, 0x55, 0x54, 0x20, 0x57, 0x41, 0x52, 0x52,
0x41, 0x4e, 0x54, 0x49, 0x45, 0x53, 0x20, 0x4f, 0x52, 0x20, 0x43, 0x4f, 0x4e, 0x44, 0x49, 0x54,
0x49, 0x4f, 0x4e, 0x53, 0x20, 0x4f, 0x46, 0x20, 0x41, 0x4e, 0x59, 0x20, 0x4b, 0x49, 0x4e, 0x44,
0x2c, 0x20, 0x65, 0x69, 0x74, 0x68, 0x65, 0x72, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73,
0x20, 0x6f, 0x72, 0x20, 0x69, 0x6d, 0x70, 0x6c, 0x69, 0x65, 0x64, 0x2e, 0x0a, 0x20, 0x53, 0x65,
0x65, 0x20, 0x74, 0x68, 0x65, 0x20, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x20, 0x66, 0x6f,
0x72, 0x20, 0x74, 0x68, 0x65, 0x20, 0x73, 0x70, 0x65, 0x63, 0x69, 0x66, 0x69, 0x63, 0x20, 0x6c,
0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x20, 0x67, 0x6f, 0x76, 0x65, 0x72, 0x6e, 0x69, 0x6e,
0x67, 0x20, 0x70, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x61, 0x6e,
0x64, 0x0a, 0x20, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x75,
0x6e, 0x64, 0x65, 0x72, 0x20, 0x74, 0x68, 0x65, 0x20, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65,
0x2e, 0x0a, 0x0a, 0x08, 0x0a, 0x01, 0x02, 0x12, 0x03, 0x10, 0x08, 0x1a, 0x0a, 0x08, 0x0a, 0x01,
0x08, 0x12, 0x03, 0x12, 0x00, 0x51, 0x0a, 0x0b, 0x0a, 0x04, 0x08, 0xe7, 0x07, 0x00, 0x12, 0x03,
0x12, 0x00, 0x51, 0x0a, 0x0c, 0x0a, 0x05, 0x08, 0xe7, 0x07, 0x00, 0x02, 0x12, 0x03, 0x12, 0x07,
0x11, 0x0a, 0x0d, 0x0a, 0x06, 0x08, 0xe7, 0x07, 0x00, 0x02, 0x00, 0x12, 0x03, 0x12, 0x07, 0x11,
0x0a, 0x0e, 0x0a, 0x07, 0x08, 0xe7, 0x07, 0x00, 0x02, 0x00, 0x01, 0x12, 0x03, 0x12, 0x07, 0x11,
0x0a, 0x0c, 0x0a, 0x05, 0x08, 0xe7, 0x07, 0x00, 0x07, 0x12, 0x03, 0x12, 0x14, 0x50, 0x0a, 0x08,
0x0a, 0x01, 0x08, 0x12, 0x03, 0x13, 0x00, 0x22, 0x0a, 0x0b, 0x0a, 0x04, 0x08, 0xe7, 0x07, 0x01,
0x12, 0x03, 0x13, 0x00, 0x22, 0x0a, 0x0c, 0x0a, 0x05, 0x08, 0xe7, 0x07, 0x01, 0x02, 0x12, 0x03,
0x13, 0x07, 0x1a, 0x0a, 0x0d, 0x0a, 0x06, 0x08, 0xe7, 0x07, 0x01, 0x02, 0x00, 0x12, 0x03, 0x13,
0x07, 0x1a, 0x0a, 0x0e, 0x0a, 0x07, 0x08, 0xe7, 0x07, 0x01, 0x02, 0x00, 0x01, 0x12, 0x03, 0x13,
0x07, 0x1a, 0x0a, 0x0c, 0x0a, 0x05, 0x08, 0xe7, 0x07, 0x01, 0x03, 0x12, 0x03, 0x13, 0x1d, 0x21,
0x0a, 0x08, 0x0a, 0x01, 0x08, 0x12, 0x03, 0x14, 0x00, 0x2a, 0x0a, 0x0b, 0x0a, 0x04, 0x08, 0xe7,
0x07, 0x02, 0x12, 0x03, 0x14, 0x00, 0x2a, 0x0a, 0x0c, 0x0a, 0x05, 0x08, 0xe7, 0x07, 0x02, 0x02,
0x12, 0x03, 0x14, 0x07, 0x1b, 0x0a, 0x0d, 0x0a, 0x06, 0x08, 0xe7, 0x07, 0x02, 0x02, 0x00, 0x12,
0x03, 0x14, 0x07, 0x1b, 0x0a, 0x0e, 0x0a, 0x07, 0x08, 0xe7, 0x07, 0x02, 0x02, 0x00, 0x01, 0x12,
0x03, 0x14, 0x07, 0x1b, 0x0a, 0x0c, 0x0a, 0x05, 0x08, 0xe7, 0x07, 0x02, 0x07, 0x12, 0x03, 0x14,
0x1e, 0x29, 0x0a, 0x08, 0x0a, 0x01, 0x08, 0x12, 0x03, 0x15, 0x00, 0x2f, 0x0a, 0x0b, 0x0a, 0x04,
0x08, 0xe7, 0x07, 0x03, 0x12, 0x03, 0x15, 0x00, 0x2f, 0x0a, 0x0c, 0x0a, 0x05, 0x08, 0xe7, 0x07,
0x03, 0x02, 0x12, 0x03, 0x15, 0x07, 0x13, 0x0a, 0x0d, 0x0a, 0x06, 0x08, 0xe7, 0x07, 0x03, 0x02,
0x00, 0x12, 0x03, 0x15, 0x07, 0x13, 0x0a, 0x0e, 0x0a, 0x07, 0x08, 0xe7, 0x07, 0x03, 0x02, 0x00,
0x01, 0x12, 0x03, 0x15, 0x07, 0x13, 0x0a, 0x0c, 0x0a, 0x05, 0x08, 0xe7, 0x07, 0x03, 0x07, 0x12,
0x03, 0x15, 0x16, 0x2e, 0x0a, 0x90, 0x01, 0x0a, 0x02, 0x04, 0x00, 0x12, 0x04, 0x1a, 0x00, 0x23,
0x01, 0x1a, 0x83, 0x01, 0x20, 0x53, 0x70, 0x65, 0x63, 0x69, 0x66, 0x69, 0x65, 0x73, 0x20, 0x74,
0x68, 0x65, 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x20, 0x28, 0x72, 0x65, 0x71,
0x75, 0x65, 0x73, 0x74, 0x65, 0x64, 0x29, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x73,
0x20, 0x6f, 0x66, 0x20, 0x61, 0x20, 0x73, 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x20, 0x72, 0x6f, 0x77,
0x20, 0x6f, 0x66, 0x20, 0x61, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x0a, 0x20, 0x52, 0x6f,
0x77, 0x73, 0x20, 0x77, 0x68, 0x69, 0x63, 0x68, 0x20, 0x65, 0x78, 0x63, 0x65, 0x65, 0x64, 0x20,
0x32, 0x35, 0x36, 0x4d, 0x69, 0x42, 0x20, 0x69, 0x6e, 0x20, 0x73, 0x69, 0x7a, 0x65, 0x20, 0x63,
0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x20, 0x62, 0x65, 0x20, 0x72, 0x65, 0x61, 0x64, 0x20, 0x69, 0x6e,
0x20, 0x66, 0x75, 0x6c, 0x6c, 0x2e, 0x0a, 0x0a, 0x0a, 0x0a, 0x03, 0x04, 0x00, 0x01, 0x12, 0x03,
0x1a, 0x08, 0x0b, 0x0a, 0xe2, 0x01, 0x0a, 0x04, 0x04, 0x00, 0x02, 0x00, 0x12, 0x03, 0x1e, 0x02,
0x10, 0x1a, 0xd4, 0x01, 0x20, 0x54, 0x68, 0x65, 0x20, 0x75, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x20,
0x6b, 0x65, 0x79, 0x20, 0x77, 0x68, 0x69, 0x63, 0x68, 0x20, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69,
0x66, 0x69, 0x65, 0x73, 0x20, 0x74, 0x68, 0x69, 0x73, 0x20, 0x72, 0x6f, 0x77, 0x20, 0x77, 0x69,
0x74, 0x68, 0x69, 0x6e, 0x20, 0x69, 0x74, 0x73, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x20,
0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x74, 0x68, 0x65, 0x20, 0x73, 0x61, 0x6d, 0x65,
0x0a, 0x20, 0x6b, 0x65, 0x79, 0x20, 0x74, 0x68, 0x61, 0x74, 0x27, 0x73, 0x20, 0x75, 0x73, 0x65,
0x64, 0x20, 0x74, 0x6f, 0x20, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x20, 0x74, 0x68,
0x65, 0x20, 0x72, 0x6f, 0x77, 0x20, 0x69, 0x6e, 0x2c, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x65, 0x78,
0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2c, 0x20, 0x61, 0x20, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x52,
0x6f, 0x77, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x0a, 0x20, 0x4d, 0x61, 0x79, 0x20,
0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x20, 0x61, 0x6e, 0x79, 0x20, 0x6e, 0x6f, 0x6e, 0x2d,
0x65, 0x6d, 0x70, 0x74, 0x79, 0x20, 0x62, 0x79, 0x74, 0x65, 0x20, 0x73, 0x74, 0x72, 0x69, 0x6e,
0x67, 0x20, 0x75, 0x70, 0x20, 0x74, 0x6f, 0x20, 0x34, 0x4b, 0x69, 0x42, 0x20, 0x69, 0x6e, 0x20,
0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x2e, 0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x00, 0x02, 0x00,
0x04, 0x12, 0x04, 0x1e, 0x02, 0x1a, 0x0d, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x00, 0x02, 0x00, 0x05,
0x12, 0x03, 0x1e, 0x02, 0x07, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x00, 0x02, 0x00, 0x01, 0x12, 0x03,
0x1e, 0x08, 0x0b, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x00, 0x02, 0x00, 0x03, 0x12, 0x03, 0x1e, 0x0e,
0x0f, 0x0a, 0x7b, 0x0a, 0x04, 0x04, 0x00, 0x02, 0x01, 0x12, 0x03, 0x22, 0x02, 0x1f, 0x1a, 0x6e,
0x20, 0x4d, 0x61, 0x79, 0x20, 0x62, 0x65, 0x20, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2c, 0x20, 0x62,
0x75, 0x74, 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x20, 0x69, 0x66, 0x20, 0x74, 0x68, 0x65, 0x20, 0x65,
0x6e, 0x74, 0x69, 0x72, 0x65, 0x20, 0x72, 0x6f, 0x77, 0x20, 0x69, 0x73, 0x20, 0x65, 0x6d, 0x70,
0x74, 0x79, 0x2e, 0x0a, 0x20, 0x54, 0x68, 0x65, 0x20, 0x6d, 0x75, 0x74, 0x75, 0x61, 0x6c, 0x20,
0x6f, 0x72, 0x64, 0x65, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x6f, 0x66, 0x20, 0x63, 0x6f, 0x6c, 0x75,
0x6d, 0x6e, 0x20, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x69, 0x65, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e,
0x6f, 0x74, 0x20, 0x73, 0x70, 0x65, 0x63, 0x69, 0x66, 0x69, 0x65, 0x64, 0x2e, 0x0a, 0x0a, 0x0c,
0x0a, 0x05, 0x04, 0x00, 0x02, 0x01, 0x04, 0x12, 0x03, 0x22, 0x02, 0x0a, 0x0a, 0x0c, 0x0a, 0x05,
0x04, 0x00, 0x02, 0x01, 0x06, 0x12, 0x03, 0x22, 0x0b, 0x11, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x00,
0x02, 0x01, 0x01, 0x12, 0x03, 0x22, 0x12, 0x1a, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x00, 0x02, 0x01,
0x03, 0x12, 0x03, 0x22, 0x1d, 0x1e, 0x0a, 0x66, 0x0a, 0x02, 0x04, 0x01, 0x12, 0x04, 0x27, 0x00,
0x32, 0x01, 0x1a, 0x5a, 0x20, 0x53, 0x70, 0x65, 0x63, 0x69, 0x66, 0x69, 0x65, 0x73, 0x20, 0x28,
0x73, 0x6f, 0x6d, 0x65, 0x20, 0x6f, 0x66, 0x29, 0x20, 0x74, 0x68, 0x65, 0x20, 0x63, 0x6f, 0x6e,
0x74, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x6f, 0x66, 0x20, 0x61, 0x20, 0x73, 0x69, 0x6e, 0x67, 0x6c,
0x65, 0x20, 0x72, 0x6f, 0x77, 0x2f, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x20, 0x66, 0x61, 0x6d,
0x69, 0x6c, 0x79, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
0x0a, 0x20, 0x6f, 0x66, 0x20, 0x61, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x0a, 0x0a, 0x0a,
0x0a, 0x03, 0x04, 0x01, 0x01, 0x12, 0x03, 0x27, 0x08, 0x0e, 0x0a, 0x85, 0x03, 0x0a, 0x04, 0x04,
0x01, 0x02, 0x00, 0x12, 0x03, 0x2e, 0x02, 0x12, 0x1a, 0xf7, 0x02, 0x20, 0x54, 0x68, 0x65, 0x20,
0x75, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x20, 0x6b, 0x65, 0x79, 0x20, 0x77, 0x68, 0x69, 0x63, 0x68,
0x20, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x73, 0x20, 0x74, 0x68, 0x69, 0x73,
0x20, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x20, 0x77, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x20, 0x69,
0x74, 0x73, 0x20, 0x72, 0x6f, 0x77, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20,
0x74, 0x68, 0x65, 0x0a, 0x20, 0x73, 0x61, 0x6d, 0x65, 0x20, 0x6b, 0x65, 0x79, 0x20, 0x74, 0x68,
0x61, 0x74, 0x27, 0x73, 0x20, 0x75, 0x73, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x69, 0x64, 0x65,
0x6e, 0x74, 0x69, 0x66, 0x79, 0x20, 0x74, 0x68, 0x65, 0x20, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79,
0x20, 0x69, 0x6e, 0x2c, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65,
0x2c, 0x20, 0x61, 0x20, 0x52, 0x6f, 0x77, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x0a, 0x20, 0x77,
0x68, 0x69, 0x63, 0x68, 0x20, 0x73, 0x65, 0x74, 0x73, 0x20, 0x69, 0x74, 0x73, 0x20, 0x22, 0x66,
0x61, 0x6d, 0x69, 0x6c, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x5f, 0x72, 0x65, 0x67, 0x65, 0x78,
0x5f, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x22, 0x20, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x2e, 0x0a,
0x20, 0x4d, 0x75, 0x73, 0x74, 0x20, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x20, 0x60, 0x5b, 0x2d, 0x5f,
0x2e, 0x61, 0x2d, 0x7a, 0x41, 0x2d, 0x5a, 0x30, 0x2d, 0x39, 0x5d, 0x2b, 0x60, 0x2c, 0x20, 0x65,
0x78, 0x63, 0x65, 0x70, 0x74, 0x20, 0x74, 0x68, 0x61, 0x74, 0x20, 0x41, 0x67, 0x67, 0x72, 0x65,
0x67, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x6f, 0x77, 0x50, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73,
0x6f, 0x72, 0x73, 0x20, 0x6d, 0x61, 0x79, 0x0a, 0x20, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65,
0x20, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x20, 0x69, 0x6e, 0x20, 0x61, 0x20, 0x73, 0x65, 0x6e, 0x74,
0x69, 0x6e, 0x65, 0x6c, 0x20, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x20, 0x77, 0x69, 0x74, 0x68,
0x20, 0x61, 0x6e, 0x20, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x2e, 0x0a,
0x20, 0x4d, 0x75, 0x73, 0x74, 0x20, 0x62, 0x65, 0x20, 0x6e, 0x6f, 0x20, 0x67, 0x72, 0x65, 0x61,
0x74, 0x65, 0x72, 0x20, 0x74, 0x68, 0x61, 0x6e, 0x20, 0x36, 0x34, 0x20, 0x63, 0x68, 0x61, 0x72,
0x61, 0x63, 0x74, 0x65, 0x72, 0x73, 0x20, 0x69, 0x6e, 0x20, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68,
0x2e, 0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x01, 0x02, 0x00, 0x04, 0x12, 0x04, 0x2e, 0x02, 0x27,
0x10, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x01, 0x02, 0x00, 0x05, 0x12, 0x03, 0x2e, 0x02, 0x08, 0x0a,
0x0c, 0x0a, 0x05, 0x04, 0x01, 0x02, 0x00, 0x01, 0x12, 0x03, 0x2e, 0x09, 0x0d, 0x0a, 0x0c, 0x0a,
0x05, 0x04, 0x01, 0x02, 0x00, 0x03, 0x12, 0x03, 0x2e, 0x10, 0x11, 0x0a, 0x4c, 0x0a, 0x04, 0x04,
0x01, 0x02, 0x01, 0x12, 0x03, 0x31, 0x02, 0x1e, 0x1a, 0x3f, 0x20, 0x4d, 0x75, 0x73, 0x74, 0x20,
0x6e, 0x6f, 0x74, 0x20, 0x62, 0x65, 0x20, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2e, 0x20, 0x53, 0x6f,
0x72, 0x74, 0x65, 0x64, 0x20, 0x69, 0x6e, 0x20, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x20, 0x6f, 0x66,
0x20, 0x69, 0x6e, 0x63, 0x72, 0x65, 0x61, 0x73, 0x69, 0x6e, 0x67, 0x20, 0x22, 0x71, 0x75, 0x61,
0x6c, 0x69, 0x66, 0x69, 0x65, 0x72, 0x22, 0x2e, 0x0a, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x01, 0x02,
0x01, 0x04, 0x12, 0x03, 0x31, 0x02, 0x0a, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x01, 0x02, 0x01, 0x06,
0x12, 0x03, 0x31, 0x0b, 0x11, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x01, 0x02, 0x01, 0x01, 0x12, 0x03,
0x31, 0x12, 0x19, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x01, 0x02, 0x01, 0x03, 0x12, 0x03, 0x31, 0x1c,
0x1d, 0x0a, 0x5f, 0x0a, 0x02, 0x04, 0x02, 0x12, 0x04, 0x36, 0x00, 0x40, 0x01, 0x1a, 0x53, 0x20,
0x53, 0x70, 0x65, 0x63, 0x69, 0x66, 0x69, 0x65, 0x73, 0x20, 0x28, 0x73, 0x6f, 0x6d, 0x65, 0x20,
0x6f, 0x66, 0x29, 0x20, 0x74, 0x68, 0x65, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x73,
0x20, 0x6f, 0x66, 0x20, 0x61, 0x20, 0x73, 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x20, 0x72, 0x6f, 0x77,
0x2f, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x73, 0x65, 0x63,
0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6f, 0x66, 0x20, 0x61, 0x0a, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65,
0x2e, 0x0a, 0x0a, 0x0a, 0x0a, 0x03, 0x04, 0x02, 0x01, 0x12, 0x03, 0x36, 0x08, 0x0e, 0x0a, 0xad,
0x02, 0x0a, 0x04, 0x04, 0x02, 0x02, 0x00, 0x12, 0x03, 0x3c, 0x02, 0x16, 0x1a, 0x9f, 0x02, 0x20,
0x54, 0x68, 0x65, 0x20, 0x75, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x20, 0x6b, 0x65, 0x79, 0x20, 0x77,
0x68, 0x69, 0x63, 0x68, 0x20, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x73, 0x20,
0x74, 0x68, 0x69, 0x73, 0x20, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x20, 0x77, 0x69, 0x74, 0x68,
0x69, 0x6e, 0x20, 0x69, 0x74, 0x73, 0x20, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x2e, 0x20, 0x54,
0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x74, 0x68, 0x65, 0x0a, 0x20, 0x73, 0x61, 0x6d, 0x65,
0x20, 0x6b, 0x65, 0x79, 0x20, 0x74, 0x68, 0x61, 0x74, 0x27, 0x73, 0x20, 0x75, 0x73, 0x65, 0x64,
0x20, 0x74, 0x6f, 0x20, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x20, 0x74, 0x68, 0x65,
0x20, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x20, 0x69, 0x6e, 0x2c, 0x20, 0x66, 0x6f, 0x72, 0x20,
0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2c, 0x20, 0x61, 0x20, 0x52, 0x6f, 0x77, 0x46, 0x69,
0x6c, 0x74, 0x65, 0x72, 0x0a, 0x20, 0x77, 0x68, 0x69, 0x63, 0x68, 0x20, 0x73, 0x65, 0x74, 0x73,
0x20, 0x69, 0x74, 0x73, 0x20, 0x60, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x5f, 0x71, 0x75, 0x61,
0x6c, 0x69, 0x66, 0x69, 0x65, 0x72, 0x5f, 0x72, 0x65, 0x67, 0x65, 0x78, 0x5f, 0x66, 0x69, 0x6c,
0x74, 0x65, 0x72, 0x60, 0x20, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x2e, 0x0a, 0x20, 0x4d, 0x61, 0x79,
0x20, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x20, 0x61, 0x6e, 0x79, 0x20, 0x62, 0x79, 0x74,
0x65, 0x20, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x2c, 0x20, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64,
0x69, 0x6e, 0x67, 0x20, 0x74, 0x68, 0x65, 0x20, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x20, 0x73, 0x74,
0x72, 0x69, 0x6e, 0x67, 0x2c, 0x20, 0x75, 0x70, 0x20, 0x74, 0x6f, 0x20, 0x31, 0x36, 0x6b, 0x69,
0x42, 0x20, 0x69, 0x6e, 0x0a, 0x20, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x2e, 0x0a, 0x0a, 0x0d,
0x0a, 0x05, 0x04, 0x02, 0x02, 0x00, 0x04, 0x12, 0x04, 0x3c, 0x02, 0x36, 0x10, 0x0a, 0x0c, 0x0a,
0x05, 0x04, 0x02, 0x02, 0x00, 0x05, 0x12, 0x03, 0x3c, 0x02, 0x07, 0x0a, 0x0c, 0x0a, 0x05, 0x04,
0x02, 0x02, 0x00, 0x01, 0x12, 0x03, 0x3c, 0x08, 0x11, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x02, 0x02,
0x00, 0x03, 0x12, 0x03, 0x3c, 0x14, 0x15, 0x0a, 0x53, 0x0a, 0x04, 0x04, 0x02, 0x02, 0x01, 0x12,
0x03, 0x3f, 0x02, 0x1a, 0x1a, 0x46, 0x20, 0x4d, 0x75, 0x73, 0x74, 0x20, 0x6e, 0x6f, 0x74, 0x20,
0x62, 0x65, 0x20, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2e, 0x20, 0x53, 0x6f, 0x72, 0x74, 0x65, 0x64,
0x20, 0x69, 0x6e, 0x20, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x20, 0x6f, 0x66, 0x20, 0x64, 0x65, 0x63,
0x72, 0x65, 0x61, 0x73, 0x69, 0x6e, 0x67, 0x20, 0x22, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61,
0x6d, 0x70, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x22, 0x2e, 0x0a, 0x0a, 0x0c, 0x0a, 0x05,
0x04, 0x02, 0x02, 0x01, 0x04, 0x12, 0x03, 0x3f, 0x02, 0x0a, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x02,
0x02, 0x01, 0x06, 0x12, 0x03, 0x3f, 0x0b, 0x0f, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x02, 0x02, 0x01,
0x01, 0x12, 0x03, 0x3f, 0x10, 0x15, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x02, 0x02, 0x01, 0x03, 0x12,
0x03, 0x3f, 0x18, 0x19, 0x0a, 0x5b, 0x0a, 0x02, 0x04, 0x03, 0x12, 0x04, 0x43, 0x00, 0x53, 0x01,
0x1a, 0x4f, 0x20, 0x53, 0x70, 0x65, 0x63, 0x69, 0x66, 0x69, 0x65, 0x73, 0x20, 0x28, 0x73, 0x6f,
0x6d, 0x65, 0x20, 0x6f, 0x66, 0x29, 0x20, 0x74, 0x68, 0x65, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x65,
0x6e, 0x74, 0x73, 0x20, 0x6f, 0x66, 0x20, 0x61, 0x20, 0x73, 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x20,
0x72, 0x6f, 0x77, 0x2f, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x73,
0x74, 0x61, 0x6d, 0x70, 0x20, 0x6f, 0x66, 0x20, 0x61, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e,
0x0a, 0x0a, 0x0a, 0x0a, 0x03, 0x04, 0x03, 0x01, 0x12, 0x03, 0x43, 0x08, 0x0c, 0x0a, 0xf6, 0x02,
0x0a, 0x04, 0x04, 0x03, 0x02, 0x00, 0x12, 0x03, 0x4a, 0x02, 0x1d, 0x1a, 0xe8, 0x02, 0x20, 0x54,
0x68, 0x65, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x27, 0x73, 0x20, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x64,
0x20, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2c, 0x20, 0x77, 0x68, 0x69, 0x63,
0x68, 0x20, 0x61, 0x6c, 0x73, 0x6f, 0x20, 0x75, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x6c, 0x79, 0x20,
0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x73, 0x20, 0x69, 0x74, 0x20, 0x77, 0x69,
0x74, 0x68, 0x69, 0x6e, 0x0a, 0x20, 0x69, 0x74, 0x73, 0x20, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e,
0x2e, 0x0a, 0x20, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x20, 0x61, 0x72, 0x65, 0x20, 0x61, 0x6c,
0x77, 0x61, 0x79, 0x73, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x20, 0x69,
0x6e, 0x20, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x2c, 0x20,
0x62, 0x75, 0x74, 0x20, 0x69, 0x6e, 0x64, 0x69, 0x76, 0x69, 0x64, 0x75, 0x61, 0x6c, 0x20, 0x74,
0x61, 0x62, 0x6c, 0x65, 0x73, 0x20, 0x6d, 0x61, 0x79, 0x20, 0x73, 0x65, 0x74, 0x0a, 0x20, 0x61,
0x20, 0x63, 0x6f, 0x61, 0x72, 0x73, 0x65, 0x72, 0x20, 0x67, 0x72, 0x61, 0x6e, 0x75, 0x6c, 0x61,
0x72, 0x69, 0x74, 0x79, 0x20, 0x74, 0x6f, 0x20, 0x66, 0x75, 0x72, 0x74, 0x68, 0x65, 0x72, 0x20,
0x72, 0x65, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x20, 0x74, 0x68, 0x65, 0x20, 0x61, 0x6c, 0x6c,
0x6f, 0x77, 0x65, 0x64, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x2e, 0x20, 0x46, 0x6f, 0x72,
0x0a, 0x20, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2c, 0x20, 0x61, 0x20, 0x74, 0x61, 0x62,
0x6c, 0x65, 0x20, 0x77, 0x68, 0x69, 0x63, 0x68, 0x20, 0x73, 0x70, 0x65, 0x63, 0x69, 0x66, 0x69,
0x65, 0x73, 0x20, 0x6d, 0x69, 0x6c, 0x6c, 0x69, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x20, 0x67,
0x72, 0x61, 0x6e, 0x75, 0x6c, 0x61, 0x72, 0x69, 0x74, 0x79, 0x20, 0x77, 0x69, 0x6c, 0x6c, 0x20,
0x6f, 0x6e, 0x6c, 0x79, 0x20, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x0a, 0x20, 0x76, 0x61, 0x6c, 0x75,
0x65, 0x73, 0x20, 0x6f, 0x66, 0x20, 0x60, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70,
0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x60, 0x20, 0x77, 0x68, 0x69, 0x63, 0x68, 0x20, 0x61,
0x72, 0x65, 0x20, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x65, 0x73, 0x20, 0x6f, 0x66, 0x20,
0x31, 0x30, 0x30, 0x30, 0x2e, 0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x03, 0x02, 0x00, 0x04, 0x12,
0x04, 0x4a, 0x02, 0x43, 0x0e, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x03, 0x02, 0x00, 0x05, 0x12, 0x03,
0x4a, 0x02, 0x07, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x03, 0x02, 0x00, 0x01, 0x12, 0x03, 0x4a, 0x08,
0x18, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x03, 0x02, 0x00, 0x03, 0x12, 0x03, 0x4a, 0x1b, 0x1c, 0x0a,
0x7f, 0x0a, 0x04, 0x04, 0x03, 0x02, 0x01, 0x12, 0x03, 0x4f, 0x02, 0x12, 0x1a, 0x72, 0x20, 0x54,
0x68, 0x65, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x64, 0x20,
0x69, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x2e, 0x0a, 0x20, 0x4d, 0x61,
0x79, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x20, 0x61, 0x6e, 0x79, 0x20, 0x62, 0x79,
0x74, 0x65, 0x20, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x2c, 0x20, 0x69, 0x6e, 0x63, 0x6c, 0x75,
0x64, 0x69, 0x6e, 0x67, 0x20, 0x74, 0x68, 0x65, 0x20, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x20, 0x73,
0x74, 0x72, 0x69, 0x6e, 0x67, 0x2c, 0x20, 0x75, 0x70, 0x20, 0x74, 0x6f, 0x20, 0x31, 0x30, 0x30,
0x4d, 0x69, 0x42, 0x20, 0x69, 0x6e, 0x0a, 0x20, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x2e, 0x0a,
0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x03, 0x02, 0x01, 0x04, 0x12, 0x04, 0x4f, 0x02, 0x4a, 0x1d, 0x0a,
0x0c, 0x0a, 0x05, 0x04, 0x03, 0x02, 0x01, 0x05, 0x12, 0x03, 0x4f, 0x02, 0x07, 0x0a, 0x0c, 0x0a,
0x05, 0x04, 0x03, 0x02, 0x01, 0x01, 0x12, 0x03, 0x4f, 0x08, 0x0d, 0x0a, 0x0c, 0x0a, 0x05, 0x04,
0x03, 0x02, 0x01, 0x03, 0x12, 0x03, 0x4f, 0x10, 0x11, 0x0a, 0x59, 0x0a, 0x04, 0x04, 0x03, 0x02,
0x02, 0x12, 0x03, 0x52, 0x02, 0x1d, 0x1a, 0x4c, 0x20, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x20,
0x61, 0x70, 0x70, 0x6c, 0x69, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x74, 0x68, 0x65, 0x20, 0x63,
0x65, 0x6c, 0x6c, 0x20, 0x62, 0x79, 0x20, 0x61, 0x20, 0x5b, 0x52, 0x6f, 0x77, 0x46, 0x69, 0x6c,
0x74, 0x65, 0x72, 0x5d, 0x5b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x62, 0x69, 0x67, 0x74,
0x61, 0x62, 0x6c, 0x65, 0x2e, 0x76, 0x32, 0x2e, 0x52, 0x6f, 0x77, 0x46, 0x69, 0x6c, 0x74, 0x65,
0x72, 0x5d, 0x2e, 0x0a, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x03, 0x02, 0x02, 0x04, 0x12, 0x03, 0x52,
0x02, 0x0a, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x03, 0x02, 0x02, 0x05, 0x12, 0x03, 0x52, 0x0b, 0x11,
0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x03, 0x02, 0x02, 0x01, 0x12, 0x03, 0x52, 0x12, 0x18, 0x0a, 0x0c,
0x0a, 0x05, 0x04, 0x03, 0x02, 0x02, 0x03, 0x12, 0x03, 0x52, 0x1b, 0x1c, 0x0a, 0x33, 0x0a, 0x02,
0x04, 0x04, 0x12, 0x04, 0x56, 0x00, 0x6a, 0x01, 0x1a, 0x27, 0x20, 0x53, 0x70, 0x65, 0x63, 0x69,
0x66, 0x69, 0x65, 0x73, 0x20, 0x61, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x69, 0x67, 0x75, 0x6f, 0x75,
0x73, 0x20, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x20, 0x6f, 0x66, 0x20, 0x72, 0x6f, 0x77, 0x73, 0x2e,
0x0a, 0x0a, 0x0a, 0x0a, 0x03, 0x04, 0x04, 0x01, 0x12, 0x03, 0x56, 0x08, 0x10, 0x0a, 0x7e, 0x0a,
0x04, 0x04, 0x04, 0x08, 0x00, 0x12, 0x04, 0x59, 0x02, 0x5f, 0x03, 0x1a, 0x70, 0x20, 0x54, 0x68,
0x65, 0x20, 0x72, 0x6f, 0x77, 0x20, 0x6b, 0x65, 0x79, 0x20, 0x61, 0x74, 0x20, 0x77, 0x68, 0x69,
0x63, 0x68, 0x20, 0x74, 0x6f, 0x20, 0x73, 0x74, 0x61, 0x72, 0x74, 0x20, 0x74, 0x68, 0x65, 0x20,
0x72, 0x61, 0x6e, 0x67, 0x65, 0x2e, 0x0a, 0x20, 0x49, 0x66, 0x20, 0x6e, 0x65, 0x69, 0x74, 0x68,
0x65, 0x72, 0x20, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x69, 0x73, 0x20, 0x73, 0x65, 0x74, 0x2c,
0x20, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x70, 0x72, 0x65, 0x74, 0x65, 0x64, 0x20, 0x61, 0x73, 0x20,
0x74, 0x68, 0x65, 0x20, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x20, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67,
0x2c, 0x20, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x76, 0x65, 0x2e, 0x0a, 0x0a, 0x0c, 0x0a,
0x05, 0x04, 0x04, 0x08, 0x00, 0x01, 0x12, 0x03, 0x59, 0x08, 0x11, 0x0a, 0x47, 0x0a, 0x04, 0x04,
0x04, 0x02, 0x00, 0x12, 0x03, 0x5b, 0x04, 0x1f, 0x1a, 0x3a, 0x20, 0x55, 0x73, 0x65, 0x64, 0x20,
0x77, 0x68, 0x65, 0x6e, 0x20, 0x67, 0x69, 0x76, 0x69, 0x6e, 0x67, 0x20, 0x61, 0x6e, 0x20, 0x69,
0x6e, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x76, 0x65, 0x20, 0x6c, 0x6f, 0x77, 0x65, 0x72, 0x20, 0x62,
0x6f, 0x75, 0x6e, 0x64, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x74, 0x68, 0x65, 0x20, 0x72, 0x61, 0x6e,
0x67, 0x65, 0x2e, 0x0a, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x04, 0x02, 0x00, 0x05, 0x12, 0x03, 0x5b,
0x04, 0x09, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x04, 0x02, 0x00, 0x01, 0x12, 0x03, 0x5b, 0x0a, 0x1a,
0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x04, 0x02, 0x00, 0x03, 0x12, 0x03, 0x5b, 0x1d, 0x1e, 0x0a, 0x47,
0x0a, 0x04, 0x04, 0x04, 0x02, 0x01, 0x12, 0x03, 0x5e, 0x04, 0x1d, 0x1a, 0x3a, 0x20, 0x55, 0x73,
0x65, 0x64, 0x20, 0x77, 0x68, 0x65, 0x6e, 0x20, 0x67, 0x69, 0x76, 0x69, 0x6e, 0x67, 0x20, 0x61,
0x6e, 0x20, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x76, 0x65, 0x20, 0x6c, 0x6f, 0x77, 0x65,
0x72, 0x20, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x74, 0x68, 0x65, 0x20,
0x72, 0x61, 0x6e, 0x67, 0x65, 0x2e, 0x0a, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x04, 0x02, 0x01, 0x05,
0x12, 0x03, 0x5e, 0x04, 0x09, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x04, 0x02, 0x01, 0x01, 0x12, 0x03,
0x5e, 0x0a, 0x18, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x04, 0x02, 0x01, 0x03, 0x12, 0x03, 0x5e, 0x1b,
0x1c, 0x0a, 0x80, 0x01, 0x0a, 0x04, 0x04, 0x04, 0x08, 0x01, 0x12, 0x04, 0x63, 0x02, 0x69, 0x03,
0x1a, 0x72, 0x20, 0x54, 0x68, 0x65, 0x20, 0x72, 0x6f, 0x77, 0x20, 0x6b, 0x65, 0x79, 0x20, 0x61,
0x74, 0x20, 0x77, 0x68, 0x69, 0x63, 0x68, 0x20, 0x74, 0x6f, 0x20, 0x65, 0x6e, 0x64, 0x20, 0x74,
0x68, 0x65, 0x20, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x2e, 0x0a, 0x20, 0x49, 0x66, 0x20, 0x6e, 0x65,
0x69, 0x74, 0x68, 0x65, 0x72, 0x20, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x69, 0x73, 0x20, 0x73,
0x65, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x70, 0x72, 0x65, 0x74, 0x65, 0x64, 0x20,
0x61, 0x73, 0x20, 0x74, 0x68, 0x65, 0x20, 0x69, 0x6e, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x65, 0x20,
0x72, 0x6f, 0x77, 0x20, 0x6b, 0x65, 0x79, 0x2c, 0x20, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69,
0x76, 0x65, 0x2e, 0x0a, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x04, 0x08, 0x01, 0x01, 0x12, 0x03, 0x63,
0x08, 0x0f, 0x0a, 0x47, 0x0a, 0x04, 0x04, 0x04, 0x02, 0x02, 0x12, 0x03, 0x65, 0x04, 0x1b, 0x1a,
0x3a, 0x20, 0x55, 0x73, 0x65, 0x64, 0x20, 0x77, 0x68, 0x65, 0x6e, 0x20, 0x67, 0x69, 0x76, 0x69,
0x6e, 0x67, 0x20, 0x61, 0x6e, 0x20, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x76, 0x65, 0x20,
0x75, 0x70, 0x70, 0x65, 0x72, 0x20, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x20, 0x66, 0x6f, 0x72, 0x20,
0x74, 0x68, 0x65, 0x20, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x2e, 0x0a, 0x0a, 0x0c, 0x0a, 0x05, 0x04,
0x04, 0x02, 0x02, 0x05, 0x12, 0x03, 0x65, 0x04, 0x09, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x04, 0x02,
0x02, 0x01, 0x12, 0x03, 0x65, 0x0a, 0x16, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x04, 0x02, 0x02, 0x03,
0x12, 0x03, 0x65, 0x19, 0x1a, 0x0a, 0x47, 0x0a, 0x04, 0x04, 0x04, 0x02, 0x03, 0x12, 0x03, 0x68,
0x04, 0x1d, 0x1a, 0x3a, 0x20, 0x55, 0x73, 0x65, 0x64, 0x20, 0x77, 0x68, 0x65, 0x6e, 0x20, 0x67,
0x69, 0x76, 0x69, 0x6e, 0x67, 0x20, 0x61, 0x6e, 0x20, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x73, 0x69,
0x76, 0x65, 0x20, 0x75, 0x70, 0x70, 0x65, 0x72, 0x20, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x20, 0x66,
0x6f, 0x72, 0x20, 0x74, 0x68, 0x65, 0x20, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x2e, 0x0a, 0x0a, 0x0c,
0x0a, 0x05, 0x04, 0x04, 0x02, 0x03, 0x05, 0x12, 0x03, 0x68, 0x04, 0x09, 0x0a, 0x0c, 0x0a, 0x05,
0x04, 0x04, 0x02, 0x03, 0x01, 0x12, 0x03, 0x68, 0x0a, 0x18, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x04,
0x02, 0x03, 0x03, 0x12, 0x03, 0x68, 0x1b, 0x1c, 0x0a, 0x35, 0x0a, 0x02, 0x04, 0x05, 0x12, 0x04,
0x6d, 0x00, 0x73, 0x01, 0x1a, 0x29, 0x20, 0x53, 0x70, 0x65, 0x63, 0x69, 0x66, 0x69, 0x65, 0x73,
0x20, 0x61, 0x20, 0x6e, 0x6f, 0x6e, 0x2d, 0x63, 0x6f, 0x6e, 0x74, 0x69, 0x67, 0x75, 0x6f, 0x75,
0x73, 0x20, 0x73, 0x65, 0x74, 0x20, 0x6f, 0x66, 0x20, 0x72, 0x6f, 0x77, 0x73, 0x2e, 0x0a, 0x0a,
0x0a, 0x0a, 0x03, 0x04, 0x05, 0x01, 0x12, 0x03, 0x6d, 0x08, 0x0e, 0x0a, 0x2f, 0x0a, 0x04, 0x04,
0x05, 0x02, 0x00, 0x12, 0x03, 0x6f, 0x02, 0x1e, 0x1a, 0x22, 0x20, 0x53, 0x69, 0x6e, 0x67, 0x6c,
0x65, 0x20, 0x72, 0x6f, 0x77, 0x73, 0x20, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x64, 0x20,
0x69, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x73, 0x65, 0x74, 0x2e, 0x0a, 0x0a, 0x0c, 0x0a, 0x05,
0x04, 0x05, 0x02, 0x00, 0x04, 0x12, 0x03, 0x6f, 0x02, 0x0a, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x05,
0x02, 0x00, 0x05, 0x12, 0x03, 0x6f, 0x0b, 0x10, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x05, 0x02, 0x00,
0x01, 0x12, 0x03, 0x6f, 0x11, 0x19, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x05, 0x02, 0x00, 0x03, 0x12,
0x03, 0x6f, 0x1c, 0x1d, 0x0a, 0x39, 0x0a, 0x04, 0x04, 0x05, 0x02, 0x01, 0x12, 0x03, 0x72, 0x02,
0x23, 0x1a, 0x2c, 0x20, 0x43, 0x6f, 0x6e, 0x74, 0x69, 0x67, 0x75, 0x6f, 0x75, 0x73, 0x20, 0x72,
0x6f, 0x77, 0x20, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x73, 0x20, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64,
0x65, 0x64, 0x20, 0x69, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x73, 0x65, 0x74, 0x2e, 0x0a, 0x0a,
0x0c, 0x0a, 0x05, 0x04, 0x05, 0x02, 0x01, 0x04, 0x12, 0x03, 0x72, 0x02, 0x0a, 0x0a, 0x0c, 0x0a,
0x05, 0x04, 0x05, 0x02, 0x01, 0x06, 0x12, 0x03, 0x72, 0x0b, 0x13, 0x0a, 0x0c, 0x0a, 0x05, 0x04,
0x05, 0x02, 0x01, 0x01, 0x12, 0x03, 0x72, 0x14, 0x1e, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x05, 0x02,
0x01, 0x03, 0x12, 0x03, 0x72, 0x21, 0x22, 0x0a, 0x84, 0x02, 0x0a, 0x02, 0x04, 0x06, 0x12, 0x05,
0x79, 0x00, 0x90, 0x01, 0x01, 0x1a, 0xf6, 0x01, 0x20, 0x53, 0x70, 0x65, 0x63, 0x69, 0x66, 0x69,
0x65, 0x73, 0x20, 0x61, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x69, 0x67, 0x75, 0x6f, 0x75, 0x73, 0x20,
0x72, 0x61, 0x6e, 0x67, 0x65, 0x20, 0x6f, 0x66, 0x20, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73,
0x20, 0x77, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x20, 0x61, 0x20, 0x73, 0x69, 0x6e, 0x67, 0x6c, 0x65,
0x20, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x20, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x2e, 0x0a,
0x20, 0x54, 0x68, 0x65, 0x20, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x20, 0x73, 0x70, 0x61, 0x6e, 0x73,
0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x26, 0x6c, 0x74, 0x3b, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e,
0x5f, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x26, 0x67, 0x74, 0x3b, 0x3a, 0x26, 0x6c, 0x74, 0x3b,
0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x66, 0x69, 0x65, 0x72, 0x26,
0x67, 0x74, 0x3b, 0x20, 0x74, 0x6f, 0x0a, 0x20, 0x26, 0x6c, 0x74, 0x3b, 0x63, 0x6f, 0x6c, 0x75,
0x6d, 0x6e, 0x5f, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x26, 0x67, 0x74, 0x3b, 0x3a, 0x26, 0x6c,
0x74, 0x3b, 0x65, 0x6e, 0x64, 0x5f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x66, 0x69, 0x65, 0x72, 0x26,
0x67, 0x74, 0x3b, 0x2c, 0x20, 0x77, 0x68, 0x65, 0x72, 0x65, 0x20, 0x62, 0x6f, 0x74, 0x68, 0x20,
0x62, 0x6f, 0x75, 0x6e, 0x64, 0x73, 0x20, 0x63, 0x61, 0x6e, 0x20, 0x62, 0x65, 0x20, 0x65, 0x69,
0x74, 0x68, 0x65, 0x72, 0x0a, 0x20, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x76, 0x65, 0x20,
0x6f, 0x72, 0x20, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x76, 0x65, 0x2e, 0x0a, 0x0a, 0x0a,
0x0a, 0x03, 0x04, 0x06, 0x01, 0x12, 0x03, 0x79, 0x08, 0x13, 0x0a, 0x4b, 0x0a, 0x04, 0x04, 0x06,
0x02, 0x00, 0x12, 0x03, 0x7b, 0x02, 0x19, 0x1a, 0x3e, 0x20, 0x54, 0x68, 0x65, 0x20, 0x6e, 0x61,
0x6d, 0x65, 0x20, 0x6f, 0x66, 0x20, 0x74, 0x68, 0x65, 0x20, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e,
0x20, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x20, 0x77, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x20, 0x77,
0x68, 0x69, 0x63, 0x68, 0x20, 0x74, 0x68, 0x69, 0x73, 0x20, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x20,
0x66, 0x61, 0x6c, 0x6c, 0x73, 0x2e, 0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x06, 0x02, 0x00, 0x04,
0x12, 0x04, 0x7b, 0x02, 0x79, 0x15, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x06, 0x02, 0x00, 0x05, 0x12,
0x03, 0x7b, 0x02, 0x08, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x06, 0x02, 0x00, 0x01, 0x12, 0x03, 0x7b,
0x09, 0x14, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x06, 0x02, 0x00, 0x03, 0x12, 0x03, 0x7b, 0x17, 0x18,
0x0a, 0xa2, 0x01, 0x0a, 0x04, 0x04, 0x06, 0x08, 0x00, 0x12, 0x05, 0x7f, 0x02, 0x85, 0x01, 0x03,
0x1a, 0x92, 0x01, 0x20, 0x54, 0x68, 0x65, 0x20, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x20, 0x71,
0x75, 0x61, 0x6c, 0x69, 0x66, 0x69, 0x65, 0x72, 0x20, 0x61, 0x74, 0x20, 0x77, 0x68, 0x69, 0x63,
0x68, 0x20, 0x74, 0x6f, 0x20, 0x73, 0x74, 0x61, 0x72, 0x74, 0x20, 0x74, 0x68, 0x65, 0x20, 0x72,
0x61, 0x6e, 0x67, 0x65, 0x20, 0x28, 0x77, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x20, 0x60, 0x63, 0x6f,
0x6c, 0x75, 0x6d, 0x6e, 0x5f, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x60, 0x29, 0x2e, 0x0a, 0x20,
0x49, 0x66, 0x20, 0x6e, 0x65, 0x69, 0x74, 0x68, 0x65, 0x72, 0x20, 0x66, 0x69, 0x65, 0x6c, 0x64,
0x20, 0x69, 0x73, 0x20, 0x73, 0x65, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x70, 0x72,
0x65, 0x74, 0x65, 0x64, 0x20, 0x61, 0x73, 0x20, 0x74, 0x68, 0x65, 0x20, 0x65, 0x6d, 0x70, 0x74,
0x79, 0x20, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x2c, 0x20, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x73,
0x69, 0x76, 0x65, 0x2e, 0x0a, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x06, 0x08, 0x00, 0x01, 0x12, 0x03,
0x7f, 0x08, 0x17, 0x0a, 0x48, 0x0a, 0x04, 0x04, 0x06, 0x02, 0x01, 0x12, 0x04, 0x81, 0x01, 0x04,
0x25, 0x1a, 0x3a, 0x20, 0x55, 0x73, 0x65, 0x64, 0x20, 0x77, 0x68, 0x65, 0x6e, 0x20, 0x67, 0x69,
0x76, 0x69, 0x6e, 0x67, 0x20, 0x61, 0x6e, 0x20, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x76,
0x65, 0x20, 0x6c, 0x6f, 0x77, 0x65, 0x72, 0x20, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x20, 0x66, 0x6f,
0x72, 0x20, 0x74, 0x68, 0x65, 0x20, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x2e, 0x0a, 0x0a, 0x0d, 0x0a,
0x05, 0x04, 0x06, 0x02, 0x01, 0x05, 0x12, 0x04, 0x81, 0x01, 0x04, 0x09, 0x0a, 0x0d, 0x0a, 0x05,
0x04, 0x06, 0x02, 0x01, 0x01, 0x12, 0x04, 0x81, 0x01, 0x0a, 0x20, 0x0a, 0x0d, 0x0a, 0x05, 0x04,
0x06, 0x02, 0x01, 0x03, 0x12, 0x04, 0x81, 0x01, 0x23, 0x24, 0x0a, 0x48, 0x0a, 0x04, 0x04, 0x06,
0x02, 0x02, 0x12, 0x04, 0x84, 0x01, 0x04, 0x23, 0x1a, 0x3a, 0x20, 0x55, 0x73, 0x65, 0x64, 0x20,
0x77, 0x68, 0x65, 0x6e, 0x20, 0x67, 0x69, 0x76, 0x69, 0x6e, 0x67, 0x20, 0x61, 0x6e, 0x20, 0x65,
0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x76, 0x65, 0x20, 0x6c, 0x6f, 0x77, 0x65, 0x72, 0x20, 0x62,
0x6f, 0x75, 0x6e, 0x64, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x74, 0x68, 0x65, 0x20, 0x72, 0x61, 0x6e,
0x67, 0x65, 0x2e, 0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x06, 0x02, 0x02, 0x05, 0x12, 0x04, 0x84,
0x01, 0x04, 0x09, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x06, 0x02, 0x02, 0x01, 0x12, 0x04, 0x84, 0x01,
0x0a, 0x1e, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x06, 0x02, 0x02, 0x03, 0x12, 0x04, 0x84, 0x01, 0x21,
0x22, 0x0a, 0xa4, 0x01, 0x0a, 0x04, 0x04, 0x06, 0x08, 0x01, 0x12, 0x06, 0x89, 0x01, 0x02, 0x8f,
0x01, 0x03, 0x1a, 0x93, 0x01, 0x20, 0x54, 0x68, 0x65, 0x20, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e,
0x20, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x66, 0x69, 0x65, 0x72, 0x20, 0x61, 0x74, 0x20, 0x77, 0x68,
0x69, 0x63, 0x68, 0x20, 0x74, 0x6f, 0x20, 0x65, 0x6e, 0x64, 0x20, 0x74, 0x68, 0x65, 0x20, 0x72,
0x61, 0x6e, 0x67, 0x65, 0x20, 0x28, 0x77, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x20, 0x60, 0x63, 0x6f,
0x6c, 0x75, 0x6d, 0x6e, 0x5f, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x60, 0x29, 0x2e, 0x0a, 0x20,
0x49, 0x66, 0x20, 0x6e, 0x65, 0x69, 0x74, 0x68, 0x65, 0x72, 0x20, 0x66, 0x69, 0x65, 0x6c, 0x64,
0x20, 0x69, 0x73, 0x20, 0x73, 0x65, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x70, 0x72,
0x65, 0x74, 0x65, 0x64, 0x20, 0x61, 0x73, 0x20, 0x74, 0x68, 0x65, 0x20, 0x69, 0x6e, 0x66, 0x69,
0x6e, 0x69, 0x74, 0x65, 0x20, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x2c, 0x20, 0x65, 0x78, 0x63,
0x6c, 0x75, 0x73, 0x69, 0x76, 0x65, 0x2e, 0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x06, 0x08, 0x01,
0x01, 0x12, 0x04, 0x89, 0x01, 0x08, 0x15, 0x0a, 0x48, 0x0a, 0x04, 0x04, 0x06, 0x02, 0x03, 0x12,
0x04, 0x8b, 0x01, 0x04, 0x23, 0x1a, 0x3a, 0x20, 0x55, 0x73, 0x65, 0x64, 0x20, 0x77, 0x68, 0x65,
0x6e, 0x20, 0x67, 0x69, 0x76, 0x69, 0x6e, 0x67, 0x20, 0x61, 0x6e, 0x20, 0x69, 0x6e, 0x63, 0x6c,
0x75, 0x73, 0x69, 0x76, 0x65, 0x20, 0x75, 0x70, 0x70, 0x65, 0x72, 0x20, 0x62, 0x6f, 0x75, 0x6e,
0x64, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x74, 0x68, 0x65, 0x20, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x2e,
0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x06, 0x02, 0x03, 0x05, 0x12, 0x04, 0x8b, 0x01, 0x04, 0x09,
0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x06, 0x02, 0x03, 0x01, 0x12, 0x04, 0x8b, 0x01, 0x0a, 0x1e, 0x0a,
0x0d, 0x0a, 0x05, 0x04, 0x06, 0x02, 0x03, 0x03, 0x12, 0x04, 0x8b, 0x01, 0x21, 0x22, 0x0a, 0x48,
0x0a, 0x04, 0x04, 0x06, 0x02, 0x04, 0x12, 0x04, 0x8e, 0x01, 0x04, 0x21, 0x1a, 0x3a, 0x20, 0x55,
0x73, 0x65, 0x64, 0x20, 0x77, 0x68, 0x65, 0x6e, 0x20, 0x67, 0x69, 0x76, 0x69, 0x6e, 0x67, 0x20,
0x61, 0x6e, 0x20, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x76, 0x65, 0x20, 0x75, 0x70, 0x70,
0x65, 0x72, 0x20, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x74, 0x68, 0x65,
0x20, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x2e, 0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x06, 0x02, 0x04,
0x05, 0x12, 0x04, 0x8e, 0x01, 0x04, 0x09, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x06, 0x02, 0x04, 0x01,
0x12, 0x04, 0x8e, 0x01, 0x0a, 0x1c, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x06, 0x02, 0x04, 0x03, 0x12,
0x04, 0x8e, 0x01, 0x1f, 0x20, 0x0a, 0x47, 0x0a, 0x02, 0x04, 0x07, 0x12, 0x06, 0x93, 0x01, 0x00,
0x99, 0x01, 0x01, 0x1a, 0x39, 0x20, 0x53, 0x70, 0x65, 0x63, 0x69, 0x66, 0x69, 0x65, 0x64, 0x20,
0x61, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x69, 0x67, 0x75, 0x6f, 0x75, 0x73, 0x20, 0x72, 0x61, 0x6e,
0x67, 0x65, 0x20, 0x6f, 0x66, 0x20, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x65, 0x63, 0x6f, 0x6e,
0x64, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x73, 0x2e, 0x0a, 0x0a, 0x0b,
0x0a, 0x03, 0x04, 0x07, 0x01, 0x12, 0x04, 0x93, 0x01, 0x08, 0x16, 0x0a, 0x47, 0x0a, 0x04, 0x04,
0x07, 0x02, 0x00, 0x12, 0x04, 0x95, 0x01, 0x02, 0x23, 0x1a, 0x39, 0x20, 0x49, 0x6e, 0x63, 0x6c,
0x75, 0x73, 0x69, 0x76, 0x65, 0x20, 0x6c, 0x6f, 0x77, 0x65, 0x72, 0x20, 0x62, 0x6f, 0x75, 0x6e,
0x64, 0x2e, 0x20, 0x49, 0x66, 0x20, 0x6c, 0x65, 0x66, 0x74, 0x20, 0x65, 0x6d, 0x70, 0x74, 0x79,
0x2c, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x70, 0x72, 0x65, 0x74, 0x65, 0x64, 0x20, 0x61, 0x73,
0x20, 0x30, 0x2e, 0x0a, 0x0a, 0x0f, 0x0a, 0x05, 0x04, 0x07, 0x02, 0x00, 0x04, 0x12, 0x06, 0x95,
0x01, 0x02, 0x93, 0x01, 0x18, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x07, 0x02, 0x00, 0x05, 0x12, 0x04,
0x95, 0x01, 0x02, 0x07, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x07, 0x02, 0x00, 0x01, 0x12, 0x04, 0x95,
0x01, 0x08, 0x1e, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x07, 0x02, 0x00, 0x03, 0x12, 0x04, 0x95, 0x01,
0x21, 0x22, 0x0a, 0x4e, 0x0a, 0x04, 0x04, 0x07, 0x02, 0x01, 0x12, 0x04, 0x98, 0x01, 0x02, 0x21,
0x1a, 0x40, 0x20, 0x45, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x76, 0x65, 0x20, 0x75, 0x70, 0x70,
0x65, 0x72, 0x20, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x20, 0x49, 0x66, 0x20, 0x6c, 0x65, 0x66,
0x74, 0x20, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2c, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x70, 0x72,
0x65, 0x74, 0x65, 0x64, 0x20, 0x61, 0x73, 0x20, 0x69, 0x6e, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x79,
0x2e, 0x0a, 0x0a, 0x0f, 0x0a, 0x05, 0x04, 0x07, 0x02, 0x01, 0x04, 0x12, 0x06, 0x98, 0x01, 0x02,
0x95, 0x01, 0x23, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x07, 0x02, 0x01, 0x05, 0x12, 0x04, 0x98, 0x01,
0x02, 0x07, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x07, 0x02, 0x01, 0x01, 0x12, 0x04, 0x98, 0x01, 0x08,
0x1c, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x07, 0x02, 0x01, 0x03, 0x12, 0x04, 0x98, 0x01, 0x1f, 0x20,
0x0a, 0x40, 0x0a, 0x02, 0x04, 0x08, 0x12, 0x06, 0x9c, 0x01, 0x00, 0xb0, 0x01, 0x01, 0x1a, 0x32,
0x20, 0x53, 0x70, 0x65, 0x63, 0x69, 0x66, 0x69, 0x65, 0x73, 0x20, 0x61, 0x20, 0x63, 0x6f, 0x6e,
0x74, 0x69, 0x67, 0x75, 0x6f, 0x75, 0x73, 0x20, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x20, 0x6f, 0x66,
0x20, 0x72, 0x61, 0x77, 0x20, 0x62, 0x79, 0x74, 0x65, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73,
0x2e, 0x0a, 0x0a, 0x0b, 0x0a, 0x03, 0x04, 0x08, 0x01, 0x12, 0x04, 0x9c, 0x01, 0x08, 0x12, 0x0a,
0x7e, 0x0a, 0x04, 0x04, 0x08, 0x08, 0x00, 0x12, 0x06, 0x9f, 0x01, 0x02, 0xa5, 0x01, 0x03, 0x1a,
0x6e, 0x20, 0x54, 0x68, 0x65, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x61, 0x74, 0x20, 0x77,
0x68, 0x69, 0x63, 0x68, 0x20, 0x74, 0x6f, 0x20, 0x73, 0x74, 0x61, 0x72, 0x74, 0x20, 0x74, 0x68,
0x65, 0x20, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x2e, 0x0a, 0x20, 0x49, 0x66, 0x20, 0x6e, 0x65, 0x69,
0x74, 0x68, 0x65, 0x72, 0x20, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x69, 0x73, 0x20, 0x73, 0x65,
0x74, 0x2c, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x70, 0x72, 0x65, 0x74, 0x65, 0x64, 0x20, 0x61,
0x73, 0x20, 0x74, 0x68, 0x65, 0x20, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x20, 0x73, 0x74, 0x72, 0x69,
0x6e, 0x67, 0x2c, 0x20, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x76, 0x65, 0x2e, 0x0a, 0x0a,
0x0d, 0x0a, 0x05, 0x04, 0x08, 0x08, 0x00, 0x01, 0x12, 0x04, 0x9f, 0x01, 0x08, 0x13, 0x0a, 0x48,
0x0a, 0x04, 0x04, 0x08, 0x02, 0x00, 0x12, 0x04, 0xa1, 0x01, 0x04, 0x21, 0x1a, 0x3a, 0x20, 0x55,
0x73, 0x65, 0x64, 0x20, 0x77, 0x68, 0x65, 0x6e, 0x20, 0x67, 0x69, 0x76, 0x69, 0x6e, 0x67, 0x20,
0x61, 0x6e, 0x20, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x76, 0x65, 0x20, 0x6c, 0x6f, 0x77,
0x65, 0x72, 0x20, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x74, 0x68, 0x65,
0x20, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x2e, 0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x08, 0x02, 0x00,
0x05, 0x12, 0x04, 0xa1, 0x01, 0x04, 0x09, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x08, 0x02, 0x00, 0x01,
0x12, 0x04, 0xa1, 0x01, 0x0a, 0x1c, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x08, 0x02, 0x00, 0x03, 0x12,
0x04, 0xa1, 0x01, 0x1f, 0x20, 0x0a, 0x48, 0x0a, 0x04, 0x04, 0x08, 0x02, 0x01, 0x12, 0x04, 0xa4,
0x01, 0x04, 0x1f, 0x1a, 0x3a, 0x20, 0x55, 0x73, 0x65, 0x64, 0x20, 0x77, 0x68, 0x65, 0x6e, 0x20,
0x67, 0x69, 0x76, 0x69, 0x6e, 0x67, 0x20, 0x61, 0x6e, 0x20, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73,
0x69, 0x76, 0x65, 0x20, 0x6c, 0x6f, 0x77, 0x65, 0x72, 0x20, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x20,
0x66, 0x6f, 0x72, 0x20, 0x74, 0x68, 0x65, 0x20, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x2e, 0x0a, 0x0a,
0x0d, 0x0a, 0x05, 0x04, 0x08, 0x02, 0x01, 0x05, 0x12, 0x04, 0xa4, 0x01, 0x04, 0x09, 0x0a, 0x0d,
0x0a, 0x05, 0x04, 0x08, 0x02, 0x01, 0x01, 0x12, 0x04, 0xa4, 0x01, 0x0a, 0x1a, 0x0a, 0x0d, 0x0a,
0x05, 0x04, 0x08, 0x02, 0x01, 0x03, 0x12, 0x04, 0xa4, 0x01, 0x1d, 0x1e, 0x0a, 0x7f, 0x0a, 0x04,
0x04, 0x08, 0x08, 0x01, 0x12, 0x06, 0xa9, 0x01, 0x02, 0xaf, 0x01, 0x03, 0x1a, 0x6f, 0x20, 0x54,
0x68, 0x65, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x61, 0x74, 0x20, 0x77, 0x68, 0x69, 0x63,
0x68, 0x20, 0x74, 0x6f, 0x20, 0x65, 0x6e, 0x64, 0x20, 0x74, 0x68, 0x65, 0x20, 0x72, 0x61, 0x6e,
0x67, 0x65, 0x2e, 0x0a, 0x20, 0x49, 0x66, 0x20, 0x6e, 0x65, 0x69, 0x74, 0x68, 0x65, 0x72, 0x20,
0x66, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x69, 0x73, 0x20, 0x73, 0x65, 0x74, 0x2c, 0x20, 0x69, 0x6e,
0x74, 0x65, 0x72, 0x70, 0x72, 0x65, 0x74, 0x65, 0x64, 0x20, 0x61, 0x73, 0x20, 0x74, 0x68, 0x65,
0x20, 0x69, 0x6e, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x65, 0x20, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67,
0x2c, 0x20, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x76, 0x65, 0x2e, 0x0a, 0x0a, 0x0d, 0x0a,
0x05, 0x04, 0x08, 0x08, 0x01, 0x01, 0x12, 0x04, 0xa9, 0x01, 0x08, 0x11, 0x0a, 0x48, 0x0a, 0x04,
0x04, 0x08, 0x02, 0x02, 0x12, 0x04, 0xab, 0x01, 0x04, 0x1f, 0x1a, 0x3a, 0x20, 0x55, 0x73, 0x65,
0x64, 0x20, 0x77, 0x68, 0x65, 0x6e, 0x20, 0x67, 0x69, 0x76, 0x69, 0x6e, 0x67, 0x20, 0x61, 0x6e,
0x20, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x76, 0x65, 0x20, 0x75, 0x70, 0x70, 0x65, 0x72,
0x20, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x74, 0x68, 0x65, 0x20, 0x72,
0x61, 0x6e, 0x67, 0x65, 0x2e, 0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x08, 0x02, 0x02, 0x05, 0x12,
0x04, 0xab, 0x01, 0x04, 0x09, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x08, 0x02, 0x02, 0x01, 0x12, 0x04,
0xab, 0x01, 0x0a, 0x1a, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x08, 0x02, 0x02, 0x03, 0x12, 0x04, 0xab,
0x01, 0x1d, 0x1e, 0x0a, 0x48, 0x0a, 0x04, 0x04, 0x08, 0x02, 0x03, 0x12, 0x04, 0xae, 0x01, 0x04,
0x1d, 0x1a, 0x3a, 0x20, 0x55, 0x73, 0x65, 0x64, 0x20, 0x77, 0x68, 0x65, 0x6e, 0x20, 0x67, 0x69,
0x76, 0x69, 0x6e, 0x67, 0x20, 0x61, 0x6e, 0x20, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x76,
0x65, 0x20, 0x75, 0x70, 0x70, 0x65, 0x72, 0x20, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x20, 0x66, 0x6f,
0x72, 0x20, 0x74, 0x68, 0x65, 0x20, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x2e, 0x0a, 0x0a, 0x0d, 0x0a,
0x05, 0x04, 0x08, 0x02, 0x03, 0x05, 0x12, 0x04, 0xae, 0x01, 0x04, 0x09, 0x0a, 0x0d, 0x0a, 0x05,
0x04, 0x08, 0x02, 0x03, 0x01, 0x12, 0x04, 0xae, 0x01, 0x0a, 0x18, 0x0a, 0x0d, 0x0a, 0x05, 0x04,
0x08, 0x02, 0x03, 0x03, 0x12, 0x04, 0xae, 0x01, 0x1b, 0x1c, 0x0a, 0xa9, 0x0f, 0x0a, 0x02, 0x04,
0x09, 0x12, 0x06, 0xd3, 0x01, 0x00, 0xb6, 0x03, 0x01, 0x1a, 0x9a, 0x0f, 0x20, 0x54, 0x61, 0x6b,
0x65, 0x73, 0x20, 0x61, 0x20, 0x72, 0x6f, 0x77, 0x20, 0x61, 0x73, 0x20, 0x69, 0x6e, 0x70, 0x75,
0x74, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x73, 0x20, 0x61,
0x6e, 0x20, 0x61, 0x6c, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x74, 0x65, 0x20, 0x76, 0x69, 0x65, 0x77,
0x20, 0x6f, 0x66, 0x20, 0x74, 0x68, 0x65, 0x20, 0x72, 0x6f, 0x77, 0x20, 0x62, 0x61, 0x73, 0x65,
0x64, 0x20, 0x6f, 0x6e, 0x0a, 0x20, 0x73, 0x70, 0x65, 0x63, 0x69, 0x66, 0x69, 0x65, 0x64, 0x20,
0x72, 0x75, 0x6c, 0x65, 0x73, 0x2e, 0x20, 0x46, 0x6f, 0x72, 0x20, 0x65, 0x78, 0x61, 0x6d, 0x70,
0x6c, 0x65, 0x2c, 0x20, 0x61, 0x20, 0x52, 0x6f, 0x77, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x20,
0x6d, 0x69, 0x67, 0x68, 0x74, 0x20, 0x74, 0x72, 0x69, 0x6d, 0x20, 0x64, 0x6f, 0x77, 0x6e, 0x20,
0x61, 0x20, 0x72, 0x6f, 0x77, 0x20, 0x74, 0x6f, 0x20, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65,
0x0a, 0x20, 0x6a, 0x75, 0x73, 0x74, 0x20, 0x74, 0x68, 0x65, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x73,
0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x20, 0x6d, 0x61,
0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x20, 0x61, 0x20, 0x67, 0x69, 0x76, 0x65, 0x6e, 0x20, 0x72,
0x65, 0x67, 0x75, 0x6c, 0x61, 0x72, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
0x6e, 0x2c, 0x20, 0x6f, 0x72, 0x20, 0x6d, 0x69, 0x67, 0x68, 0x74, 0x0a, 0x20, 0x72, 0x65, 0x74,
0x75, 0x72, 0x6e, 0x20, 0x61, 0x6c, 0x6c, 0x20, 0x74, 0x68, 0x65, 0x20, 0x63, 0x65, 0x6c, 0x6c,
0x73, 0x20, 0x6f, 0x66, 0x20, 0x61, 0x20, 0x72, 0x6f, 0x77, 0x20, 0x62, 0x75, 0x74, 0x20, 0x6e,
0x6f, 0x74, 0x20, 0x74, 0x68, 0x65, 0x69, 0x72, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x2e,
0x20, 0x4d, 0x6f, 0x72, 0x65, 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x65,
0x64, 0x20, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x0a, 0x20, 0x63, 0x61, 0x6e, 0x20, 0x62,
0x65, 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x6f, 0x73, 0x65, 0x64, 0x20, 0x6f, 0x75, 0x74, 0x20, 0x6f,
0x66, 0x20, 0x74, 0x68, 0x65, 0x73, 0x65, 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e,
0x74, 0x73, 0x20, 0x74, 0x6f, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x20, 0x72, 0x65,
0x71, 0x75, 0x65, 0x73, 0x74, 0x73, 0x20, 0x73, 0x75, 0x63, 0x68, 0x20, 0x61, 0x73, 0x2c, 0x20,
0x22, 0x77, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x0a, 0x20, 0x65, 0x76, 0x65, 0x72, 0x79, 0x20, 0x63,
0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x20, 0x6f, 0x66, 0x20, 0x61, 0x20, 0x70, 0x61, 0x72, 0x74, 0x69,
0x63, 0x75, 0x6c, 0x61, 0x72, 0x20, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x2c, 0x20, 0x67, 0x69,
0x76, 0x65, 0x20, 0x6a, 0x75, 0x73, 0x74, 0x20, 0x74, 0x68, 0x65, 0x20, 0x74, 0x77, 0x6f, 0x20,
0x6d, 0x6f, 0x73, 0x74, 0x20, 0x72, 0x65, 0x63, 0x65, 0x6e, 0x74, 0x20, 0x63, 0x65, 0x6c, 0x6c,
0x73, 0x0a, 0x20, 0x77, 0x68, 0x69, 0x63, 0x68, 0x20, 0x61, 0x72, 0x65, 0x20, 0x6f, 0x6c, 0x64,
0x65, 0x72, 0x20, 0x74, 0x68, 0x61, 0x6e, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d,
0x70, 0x20, 0x58, 0x2e, 0x22, 0x0a, 0x0a, 0x20, 0x54, 0x68, 0x65, 0x72, 0x65, 0x20, 0x61, 0x72,
0x65, 0x20, 0x74, 0x77, 0x6f, 0x20, 0x62, 0x72, 0x6f, 0x61, 0x64, 0x20, 0x63, 0x61, 0x74, 0x65,
0x67, 0x6f, 0x72, 0x69, 0x65, 0x73, 0x20, 0x6f, 0x66, 0x20, 0x52, 0x6f, 0x77, 0x46, 0x69, 0x6c,
0x74, 0x65, 0x72, 0x73, 0x20, 0x28, 0x74, 0x72, 0x75, 0x65, 0x20, 0x66, 0x69, 0x6c, 0x74, 0x65,
0x72, 0x73, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d,
0x65, 0x72, 0x73, 0x29, 0x2c, 0x0a, 0x20, 0x61, 0x73, 0x20, 0x77, 0x65, 0x6c, 0x6c, 0x20, 0x61,
0x73, 0x20, 0x74, 0x77, 0x6f, 0x20, 0x77, 0x61, 0x79, 0x73, 0x20, 0x74, 0x6f, 0x20, 0x63, 0x6f,
0x6d, 0x70, 0x6f, 0x73, 0x65, 0x20, 0x73, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x20, 0x66, 0x69, 0x6c,
0x74, 0x65, 0x72, 0x73, 0x20, 0x69, 0x6e, 0x74, 0x6f, 0x20, 0x6d, 0x6f, 0x72, 0x65, 0x20, 0x63,
0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x78, 0x20, 0x6f, 0x6e, 0x65, 0x73, 0x0a, 0x20, 0x28, 0x63, 0x68,
0x61, 0x69, 0x6e, 0x73, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6c, 0x65,
0x61, 0x76, 0x65, 0x73, 0x29, 0x2e, 0x20, 0x54, 0x68, 0x65, 0x79, 0x20, 0x77, 0x6f, 0x72, 0x6b,
0x20, 0x61, 0x73, 0x20, 0x66, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x73, 0x3a, 0x0a, 0x0a, 0x20, 0x2a,
0x20, 0x54, 0x72, 0x75, 0x65, 0x20, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x20, 0x61, 0x6c,
0x74, 0x65, 0x72, 0x20, 0x74, 0x68, 0x65, 0x20, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x20, 0x72, 0x6f,
0x77, 0x20, 0x62, 0x79, 0x20, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x69, 0x6e, 0x67, 0x20, 0x73,
0x6f, 0x6d, 0x65, 0x20, 0x6f, 0x66, 0x20, 0x69, 0x74, 0x73, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x73,
0x20, 0x77, 0x68, 0x6f, 0x6c, 0x65, 0x73, 0x61, 0x6c, 0x65, 0x0a, 0x20, 0x66, 0x72, 0x6f, 0x6d,
0x20, 0x74, 0x68, 0x65, 0x20, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x20, 0x72, 0x6f, 0x77, 0x2e,
0x20, 0x41, 0x6e, 0x20, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x20, 0x6f, 0x66, 0x20, 0x61,
0x20, 0x74, 0x72, 0x75, 0x65, 0x20, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x20, 0x69, 0x73, 0x20,
0x74, 0x68, 0x65, 0x20, 0x60, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x72, 0x65, 0x67, 0x65, 0x78,
0x5f, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x60, 0x2c, 0x0a, 0x20, 0x77, 0x68, 0x69, 0x63, 0x68,
0x20, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x73, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x20,
0x77, 0x68, 0x6f, 0x73, 0x65, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x20, 0x64, 0x6f, 0x6e,
0x27, 0x74, 0x20, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x20, 0x74, 0x68, 0x65, 0x20, 0x73, 0x70, 0x65,
0x63, 0x69, 0x66, 0x69, 0x65, 0x64, 0x20, 0x70, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x2e, 0x20,
0x41, 0x6c, 0x6c, 0x0a, 0x20, 0x72, 0x65, 0x67, 0x65, 0x78, 0x20, 0x74, 0x72, 0x75, 0x65, 0x20,
0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x20, 0x75, 0x73, 0x65, 0x20, 0x52, 0x45, 0x32, 0x20,
0x73, 0x79, 0x6e, 0x74, 0x61, 0x78, 0x20, 0x28, 0x68, 0x74, 0x74, 0x70, 0x73, 0x3a, 0x2f, 0x2f,
0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2f, 0x72, 0x65, 0x32, 0x2f, 0x77, 0x69, 0x6b, 0x69, 0x2f, 0x53, 0x79, 0x6e, 0x74, 0x61,
0x78, 0x29, 0x0a, 0x20, 0x69, 0x6e, 0x20, 0x72, 0x61, 0x77, 0x20, 0x62, 0x79, 0x74, 0x65, 0x20,
0x6d, 0x6f, 0x64, 0x65, 0x20, 0x28, 0x52, 0x45, 0x32, 0x3a, 0x3a, 0x4c, 0x61, 0x74, 0x69, 0x6e,
0x31, 0x29, 0x2c, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x61, 0x72, 0x65, 0x20, 0x65, 0x76, 0x61, 0x6c,
0x75, 0x61, 0x74, 0x65, 0x64, 0x20, 0x61, 0x73, 0x20, 0x66, 0x75, 0x6c, 0x6c, 0x20, 0x6d, 0x61,
0x74, 0x63, 0x68, 0x65, 0x73, 0x2e, 0x20, 0x41, 0x6e, 0x0a, 0x20, 0x69, 0x6d, 0x70, 0x6f, 0x72,
0x74, 0x61, 0x6e, 0x74, 0x20, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x20, 0x74, 0x6f, 0x20, 0x6b, 0x65,
0x65, 0x70, 0x20, 0x69, 0x6e, 0x20, 0x6d, 0x69, 0x6e, 0x64, 0x20, 0x69, 0x73, 0x20, 0x74, 0x68,
0x61, 0x74, 0x20, 0x60, 0x52, 0x45, 0x32, 0x28, 0x2e, 0x29, 0x60, 0x20, 0x69, 0x73, 0x20, 0x65,
0x71, 0x75, 0x69, 0x76, 0x61, 0x6c, 0x65, 0x6e, 0x74, 0x20, 0x62, 0x79, 0x20, 0x64, 0x65, 0x66,
0x61, 0x75, 0x6c, 0x74, 0x20, 0x74, 0x6f, 0x0a, 0x20, 0x60, 0x52, 0x45, 0x32, 0x28, 0x5b, 0x5e,
0x5c, 0x6e, 0x5d, 0x29, 0x60, 0x2c, 0x20, 0x6d, 0x65, 0x61, 0x6e, 0x69, 0x6e, 0x67, 0x20, 0x74,
0x68, 0x61, 0x74, 0x20, 0x69, 0x74, 0x20, 0x64, 0x6f, 0x65, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20,
0x6d, 0x61, 0x74, 0x63, 0x68, 0x20, 0x6e, 0x65, 0x77, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x2e, 0x20,
0x57, 0x68, 0x65, 0x6e, 0x20, 0x61, 0x74, 0x74, 0x65, 0x6d, 0x70, 0x74, 0x69, 0x6e, 0x67, 0x20,
0x74, 0x6f, 0x0a, 0x20, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x20, 0x61, 0x6e, 0x20, 0x61, 0x72, 0x62,
0x69, 0x74, 0x72, 0x61, 0x72, 0x79, 0x20, 0x62, 0x79, 0x74, 0x65, 0x2c, 0x20, 0x79, 0x6f, 0x75,
0x20, 0x73, 0x68, 0x6f, 0x75, 0x6c, 0x64, 0x20, 0x74, 0x68, 0x65, 0x72, 0x65, 0x66, 0x6f, 0x72,
0x65, 0x20, 0x75, 0x73, 0x65, 0x20, 0x74, 0x68, 0x65, 0x20, 0x65, 0x73, 0x63, 0x61, 0x70, 0x65,
0x20, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x20, 0x60, 0x5c, 0x43, 0x60, 0x2c, 0x0a,
0x20, 0x77, 0x68, 0x69, 0x63, 0x68, 0x20, 0x6d, 0x61, 0x79, 0x20, 0x6e, 0x65, 0x65, 0x64, 0x20,
0x74, 0x6f, 0x20, 0x62, 0x65, 0x20, 0x66, 0x75, 0x72, 0x74, 0x68, 0x65, 0x72, 0x20, 0x65, 0x73,
0x63, 0x61, 0x70, 0x65, 0x64, 0x20, 0x61, 0x73, 0x20, 0x60, 0x5c, 0x5c, 0x43, 0x60, 0x20, 0x69,
0x6e, 0x20, 0x79, 0x6f, 0x75, 0x72, 0x20, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x20, 0x6c, 0x61,
0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x2e, 0x0a, 0x0a, 0x20, 0x2a, 0x20, 0x54, 0x72, 0x61, 0x6e,
0x73, 0x66, 0x6f, 0x72, 0x6d, 0x65, 0x72, 0x73, 0x20, 0x61, 0x6c, 0x74, 0x65, 0x72, 0x20, 0x74,
0x68, 0x65, 0x20, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x20, 0x72, 0x6f, 0x77, 0x20, 0x62, 0x79, 0x20,
0x63, 0x68, 0x61, 0x6e, 0x67, 0x69, 0x6e, 0x67, 0x20, 0x74, 0x68, 0x65, 0x20, 0x76, 0x61, 0x6c,
0x75, 0x65, 0x73, 0x20, 0x6f, 0x66, 0x20, 0x73, 0x6f, 0x6d, 0x65, 0x20, 0x6f, 0x66, 0x20, 0x69,
0x74, 0x73, 0x0a, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x20, 0x69, 0x6e, 0x20, 0x74, 0x68, 0x65,
0x20, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x2c, 0x20, 0x77, 0x69, 0x74, 0x68, 0x6f, 0x75, 0x74,
0x20, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x69, 0x6e, 0x67, 0x20, 0x74, 0x68, 0x65, 0x6d, 0x20,
0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x6c, 0x79, 0x2e, 0x20, 0x43, 0x75, 0x72, 0x72,
0x65, 0x6e, 0x74, 0x6c, 0x79, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x0a,
0x20, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x65, 0x64, 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73,
0x66, 0x6f, 0x72, 0x6d, 0x65, 0x72, 0x20, 0x69, 0x73, 0x20, 0x74, 0x68, 0x65, 0x20, 0x60, 0x73,
0x74, 0x72, 0x69, 0x70, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x74, 0x72, 0x61, 0x6e, 0x73,
0x66, 0x6f, 0x72, 0x6d, 0x65, 0x72, 0x60, 0x2c, 0x20, 0x77, 0x68, 0x69, 0x63, 0x68, 0x20, 0x72,
0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x73, 0x20, 0x65, 0x76, 0x65, 0x72, 0x79, 0x0a, 0x20, 0x63,
0x65, 0x6c, 0x6c, 0x27, 0x73, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x77, 0x69, 0x74, 0x68,
0x20, 0x74, 0x68, 0x65, 0x20, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x20, 0x73, 0x74, 0x72, 0x69, 0x6e,
0x67, 0x2e, 0x0a, 0x0a, 0x20, 0x2a, 0x20, 0x43, 0x68, 0x61, 0x69, 0x6e, 0x73, 0x20, 0x61, 0x6e,
0x64, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6c, 0x65, 0x61, 0x76, 0x65, 0x73, 0x20, 0x61, 0x72,
0x65, 0x20, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x64, 0x20, 0x69, 0x6e, 0x20, 0x6d,
0x6f, 0x72, 0x65, 0x20, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x20, 0x69, 0x6e, 0x20, 0x74, 0x68,
0x65, 0x0a, 0x20, 0x52, 0x6f, 0x77, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e, 0x43, 0x68, 0x61,
0x69, 0x6e, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x52, 0x6f, 0x77, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72,
0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6c, 0x65, 0x61, 0x76, 0x65, 0x20, 0x64, 0x6f, 0x63, 0x75,
0x6d, 0x65, 0x6e, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x0a, 0x0a, 0x20, 0x54, 0x68, 0x65,
0x20, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x20, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65,
0x64, 0x20, 0x73, 0x69, 0x7a, 0x65, 0x20, 0x6f, 0x66, 0x20, 0x61, 0x20, 0x52, 0x6f, 0x77, 0x46,
0x69, 0x6c, 0x74, 0x65, 0x72, 0x20, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x20, 0x6d, 0x75,
0x73, 0x74, 0x20, 0x6e, 0x6f, 0x74, 0x0a, 0x20, 0x65, 0x78, 0x63, 0x65, 0x65, 0x64, 0x20, 0x34,
0x30, 0x39, 0x36, 0x20, 0x62, 0x79, 0x74, 0x65, 0x73, 0x2c, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x52,
0x6f, 0x77, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x20, 0x6d, 0x61, 0x79, 0x20, 0x6e, 0x6f,
0x74, 0x20, 0x62, 0x65, 0x20, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x20, 0x77, 0x69, 0x74, 0x68,
0x69, 0x6e, 0x20, 0x65, 0x61, 0x63, 0x68, 0x20, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x0a, 0x20, 0x28,
0x69, 0x6e, 0x20, 0x43, 0x68, 0x61, 0x69, 0x6e, 0x73, 0x20, 0x6f, 0x72, 0x20, 0x49, 0x6e, 0x74,
0x65, 0x72, 0x6c, 0x65, 0x61, 0x76, 0x65, 0x73, 0x29, 0x20, 0x74, 0x6f, 0x20, 0x61, 0x20, 0x64,
0x65, 0x70, 0x74, 0x68, 0x20, 0x6f, 0x66, 0x20, 0x6d, 0x6f, 0x72, 0x65, 0x20, 0x74, 0x68, 0x61,
0x6e, 0x20, 0x32, 0x30, 0x2e, 0x0a, 0x0a, 0x0b, 0x0a, 0x03, 0x04, 0x09, 0x01, 0x12, 0x04, 0xd3,
0x01, 0x08, 0x11, 0x0a, 0x56, 0x0a, 0x04, 0x04, 0x09, 0x03, 0x00, 0x12, 0x06, 0xd5, 0x01, 0x02,
0xda, 0x01, 0x03, 0x1a, 0x46, 0x20, 0x41, 0x20, 0x52, 0x6f, 0x77, 0x46, 0x69, 0x6c, 0x74, 0x65,
0x72, 0x20, 0x77, 0x68, 0x69, 0x63, 0x68, 0x20, 0x73, 0x65, 0x6e, 0x64, 0x73, 0x20, 0x72, 0x6f,
0x77, 0x73, 0x20, 0x74, 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68, 0x20, 0x73, 0x65, 0x76, 0x65, 0x72,
0x61, 0x6c, 0x20, 0x52, 0x6f, 0x77, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x20, 0x69, 0x6e,
0x20, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x2e, 0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04,
0x09, 0x03, 0x00, 0x01, 0x12, 0x04, 0xd5, 0x01, 0x0a, 0x0f, 0x0a, 0xc9, 0x01, 0x0a, 0x06, 0x04,
0x09, 0x03, 0x00, 0x02, 0x00, 0x12, 0x04, 0xd9, 0x01, 0x04, 0x23, 0x1a, 0xb8, 0x01, 0x20, 0x54,
0x68, 0x65, 0x20, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x6f, 0x66, 0x20, 0x22,
0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x22, 0x20, 0x61, 0x72, 0x65, 0x20, 0x63, 0x68, 0x61,
0x69, 0x6e, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x67, 0x65, 0x74, 0x68, 0x65, 0x72, 0x20, 0x74, 0x6f,
0x20, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x20, 0x74, 0x68, 0x65, 0x20, 0x69, 0x6e, 0x70,
0x75, 0x74, 0x20, 0x72, 0x6f, 0x77, 0x3a, 0x0a, 0x20, 0x69, 0x6e, 0x20, 0x72, 0x6f, 0x77, 0x20,
0x2d, 0x3e, 0x20, 0x66, 0x28, 0x30, 0x29, 0x20, 0x2d, 0x3e, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72,
0x6d, 0x65, 0x64, 0x69, 0x61, 0x74, 0x65, 0x20, 0x72, 0x6f, 0x77, 0x20, 0x2d, 0x3e, 0x20, 0x66,
0x28, 0x31, 0x29, 0x20, 0x2d, 0x3e, 0x20, 0x2e, 0x2e, 0x2e, 0x20, 0x2d, 0x3e, 0x20, 0x66, 0x28,
0x4e, 0x29, 0x20, 0x2d, 0x3e, 0x20, 0x6f, 0x75, 0x74, 0x20, 0x72, 0x6f, 0x77, 0x0a, 0x20, 0x54,
0x68, 0x65, 0x20, 0x66, 0x75, 0x6c, 0x6c, 0x20, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x20, 0x69, 0x73,
0x20, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x64, 0x20, 0x61, 0x74, 0x6f, 0x6d, 0x69, 0x63,
0x61, 0x6c, 0x6c, 0x79, 0x2e, 0x0a, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x09, 0x03, 0x00, 0x02, 0x00,
0x04, 0x12, 0x04, 0xd9, 0x01, 0x04, 0x0c, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x09, 0x03, 0x00, 0x02,
0x00, 0x06, 0x12, 0x04, 0xd9, 0x01, 0x0d, 0x16, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x09, 0x03, 0x00,
0x02, 0x00, 0x01, 0x12, 0x04, 0xd9, 0x01, 0x17, 0x1e, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x09, 0x03,
0x00, 0x02, 0x00, 0x03, 0x12, 0x04, 0xd9, 0x01, 0x21, 0x22, 0x0a, 0x78, 0x0a, 0x04, 0x04, 0x09,
0x03, 0x01, 0x12, 0x06, 0xde, 0x01, 0x02, 0xf9, 0x01, 0x03, 0x1a, 0x68, 0x20, 0x41, 0x20, 0x52,
0x6f, 0x77, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x20, 0x77, 0x68, 0x69, 0x63, 0x68, 0x20, 0x73,
0x65, 0x6e, 0x64, 0x73, 0x20, 0x65, 0x61, 0x63, 0x68, 0x20, 0x72, 0x6f, 0x77, 0x20, 0x74, 0x6f,
0x20, 0x65, 0x61, 0x63, 0x68, 0x20, 0x6f, 0x66, 0x20, 0x73, 0x65, 0x76, 0x65, 0x72, 0x61, 0x6c,
0x20, 0x63, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x52, 0x6f, 0x77, 0x46,
0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72,
0x6c, 0x65, 0x61, 0x76, 0x65, 0x73, 0x20, 0x74, 0x68, 0x65, 0x20, 0x72, 0x65, 0x73, 0x75, 0x6c,
0x74, 0x73, 0x2e, 0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x09, 0x03, 0x01, 0x01, 0x12, 0x04, 0xde,
0x01, 0x0a, 0x14, 0x0a, 0x93, 0x0b, 0x0a, 0x06, 0x04, 0x09, 0x03, 0x01, 0x02, 0x00, 0x12, 0x04,
0xf8, 0x01, 0x04, 0x23, 0x1a, 0x82, 0x0b, 0x20, 0x54, 0x68, 0x65, 0x20, 0x65, 0x6c, 0x65, 0x6d,
0x65, 0x6e, 0x74, 0x73, 0x20, 0x6f, 0x66, 0x20, 0x22, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73,
0x22, 0x20, 0x61, 0x6c, 0x6c, 0x20, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x20, 0x61, 0x20,
0x63, 0x6f, 0x70, 0x79, 0x20, 0x6f, 0x66, 0x20, 0x74, 0x68, 0x65, 0x20, 0x69, 0x6e, 0x70, 0x75,
0x74, 0x20, 0x72, 0x6f, 0x77, 0x2c, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x74, 0x68, 0x65, 0x0a, 0x20,
0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x20, 0x61, 0x72, 0x65, 0x20, 0x70, 0x6f, 0x6f, 0x6c,
0x65, 0x64, 0x2c, 0x20, 0x73, 0x6f, 0x72, 0x74, 0x65, 0x64, 0x2c, 0x20, 0x61, 0x6e, 0x64, 0x20,
0x63, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x65, 0x64, 0x20, 0x69, 0x6e, 0x74, 0x6f, 0x20, 0x61, 0x20,
0x73, 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x20, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x20, 0x72, 0x6f,
0x77, 0x2e, 0x0a, 0x20, 0x49, 0x66, 0x20, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x65, 0x20,
0x63, 0x65, 0x6c, 0x6c, 0x73, 0x20, 0x61, 0x72, 0x65, 0x20, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63,
0x65, 0x64, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x74, 0x68, 0x65, 0x20, 0x73, 0x61, 0x6d, 0x65,
0x20, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x74, 0x69, 0x6d, 0x65,
0x73, 0x74, 0x61, 0x6d, 0x70, 0x2c, 0x0a, 0x20, 0x74, 0x68, 0x65, 0x79, 0x20, 0x77, 0x69, 0x6c,
0x6c, 0x20, 0x61, 0x6c, 0x6c, 0x20, 0x61, 0x70, 0x70, 0x65, 0x61, 0x72, 0x20, 0x69, 0x6e, 0x20,
0x74, 0x68, 0x65, 0x20, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x20, 0x72, 0x6f, 0x77, 0x20, 0x69,
0x6e, 0x20, 0x61, 0x6e, 0x20, 0x75, 0x6e, 0x73, 0x70, 0x65, 0x63, 0x69, 0x66, 0x69, 0x65, 0x64,
0x20, 0x6d, 0x75, 0x74, 0x75, 0x61, 0x6c, 0x20, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x2e, 0x0a, 0x20,
0x43, 0x6f, 0x6e, 0x73, 0x69, 0x64, 0x65, 0x72, 0x20, 0x74, 0x68, 0x65, 0x20, 0x66, 0x6f, 0x6c,
0x6c, 0x6f, 0x77, 0x69, 0x6e, 0x67, 0x20, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2c, 0x20,
0x77, 0x69, 0x74, 0x68, 0x20, 0x74, 0x68, 0x72, 0x65, 0x65, 0x20, 0x66, 0x69, 0x6c, 0x74, 0x65,
0x72, 0x73, 0x3a, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x20, 0x72, 0x6f, 0x77,
0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d,
0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d,
0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d,
0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7c, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x7c, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7c, 0x0a, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x28, 0x30, 0x29, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x66, 0x28, 0x31, 0x29, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x28, 0x32, 0x29,
0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7c, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7c, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x7c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x31, 0x3a, 0x20, 0x66, 0x6f, 0x6f, 0x2c, 0x62,
0x61, 0x72, 0x2c, 0x31, 0x30, 0x2c, 0x78, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x66, 0x6f, 0x6f, 0x2c, 0x62, 0x61, 0x72, 0x2c, 0x31, 0x30, 0x2c, 0x7a,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x61,
0x72, 0x2c, 0x62, 0x61, 0x72, 0x2c, 0x37, 0x2c, 0x61, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x32,
0x3a, 0x20, 0x66, 0x6f, 0x6f, 0x2c, 0x62, 0x6c, 0x61, 0x68, 0x2c, 0x31, 0x31, 0x2c, 0x7a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x61, 0x72, 0x2c, 0x62,
0x6c, 0x61, 0x68, 0x2c, 0x35, 0x2c, 0x78, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x61, 0x72, 0x2c, 0x62, 0x6c, 0x61, 0x68, 0x2c, 0x35, 0x2c,
0x78, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7c, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7c, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x7c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d,
0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d,
0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d,
0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7c, 0x0a, 0x20, 0x20,
0x20, 0x20, 0x20, 0x31, 0x3a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x6f, 0x6f, 0x2c, 0x62,
0x61, 0x72, 0x2c, 0x31, 0x30, 0x2c, 0x7a, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x63, 0x6f, 0x75,
0x6c, 0x64, 0x20, 0x68, 0x61, 0x76, 0x65, 0x20, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x65, 0x64,
0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x23, 0x32, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x32, 0x3a,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x6f, 0x6f, 0x2c, 0x62, 0x61, 0x72, 0x2c, 0x31, 0x30,
0x2c, 0x78, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x63, 0x6f, 0x75, 0x6c, 0x64, 0x20, 0x68, 0x61,
0x76, 0x65, 0x20, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x65, 0x64, 0x20, 0x77, 0x69, 0x74, 0x68,
0x20, 0x23, 0x31, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x33, 0x3a, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x66, 0x6f, 0x6f, 0x2c, 0x62, 0x6c, 0x61, 0x68, 0x2c, 0x31, 0x31, 0x2c, 0x7a, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x34, 0x3a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x61, 0x72, 0x2c,
0x62, 0x61, 0x72, 0x2c, 0x37, 0x2c, 0x61, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x35, 0x3a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x61, 0x72, 0x2c, 0x62, 0x6c, 0x61, 0x68, 0x2c, 0x35, 0x2c,
0x78, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x6c,
0x20, 0x74, 0x6f, 0x20, 0x23, 0x36, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x36, 0x3a, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x66, 0x61, 0x72, 0x2c, 0x62, 0x6c, 0x61, 0x68, 0x2c, 0x35, 0x2c, 0x78,
0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x20,
0x74, 0x6f, 0x20, 0x23, 0x35, 0x0a, 0x0a, 0x20, 0x41, 0x6c, 0x6c, 0x20, 0x69, 0x6e, 0x74, 0x65,
0x72, 0x6c, 0x65, 0x61, 0x76, 0x65, 0x64, 0x20, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x20,
0x61, 0x72, 0x65, 0x20, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x64, 0x20, 0x61, 0x74, 0x6f,
0x6d, 0x69, 0x63, 0x61, 0x6c, 0x6c, 0x79, 0x2e, 0x0a, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x09, 0x03,
0x01, 0x02, 0x00, 0x04, 0x12, 0x04, 0xf8, 0x01, 0x04, 0x0c, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x09,
0x03, 0x01, 0x02, 0x00, 0x06, 0x12, 0x04, 0xf8, 0x01, 0x0d, 0x16, 0x0a, 0x0f, 0x0a, 0x07, 0x04,
0x09, 0x03, 0x01, 0x02, 0x00, 0x01, 0x12, 0x04, 0xf8, 0x01, 0x17, 0x1e, 0x0a, 0x0f, 0x0a, 0x07,
0x04, 0x09, 0x03, 0x01, 0x02, 0x00, 0x03, 0x12, 0x04, 0xf8, 0x01, 0x21, 0x22, 0x0a, 0xb4, 0x03,
0x0a, 0x04, 0x04, 0x09, 0x03, 0x02, 0x12, 0x06, 0x82, 0x02, 0x02, 0x8f, 0x02, 0x03, 0x1a, 0xa3,
0x03, 0x20, 0x41, 0x20, 0x52, 0x6f, 0x77, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x20, 0x77, 0x68,
0x69, 0x63, 0x68, 0x20, 0x65, 0x76, 0x61, 0x6c, 0x75, 0x61, 0x74, 0x65, 0x73, 0x20, 0x6f, 0x6e,
0x65, 0x20, 0x6f, 0x66, 0x20, 0x74, 0x77, 0x6f, 0x20, 0x70, 0x6f, 0x73, 0x73, 0x69, 0x62, 0x6c,
0x65, 0x20, 0x52, 0x6f, 0x77, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x2c, 0x20, 0x64, 0x65,
0x70, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x20, 0x6f, 0x6e, 0x0a, 0x20, 0x77, 0x68, 0x65, 0x74,
0x68, 0x65, 0x72, 0x20, 0x6f, 0x72, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x20, 0x70, 0x72, 0x65,
0x64, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x52, 0x6f, 0x77, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72,
0x20, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x73, 0x20, 0x61, 0x6e, 0x79, 0x20, 0x63, 0x65, 0x6c,
0x6c, 0x73, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x74, 0x68, 0x65, 0x20, 0x69, 0x6e, 0x70, 0x75,
0x74, 0x20, 0x72, 0x6f, 0x77, 0x2e, 0x0a, 0x0a, 0x20, 0x49, 0x4d, 0x50, 0x4f, 0x52, 0x54, 0x41,
0x4e, 0x54, 0x20, 0x4e, 0x4f, 0x54, 0x45, 0x3a, 0x20, 0x54, 0x68, 0x65, 0x20, 0x70, 0x72, 0x65,
0x64, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x20, 0x64, 0x6f,
0x65, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x20, 0x61,
0x74, 0x6f, 0x6d, 0x69, 0x63, 0x61, 0x6c, 0x6c, 0x79, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x74,
0x68, 0x65, 0x0a, 0x20, 0x74, 0x72, 0x75, 0x65, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x66, 0x61, 0x6c,
0x73, 0x65, 0x20, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x2c, 0x20, 0x77, 0x68, 0x69, 0x63,
0x68, 0x20, 0x6d, 0x61, 0x79, 0x20, 0x6c, 0x65, 0x61, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x69, 0x6e,
0x63, 0x6f, 0x6e, 0x73, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x6f, 0x72, 0x20, 0x75, 0x6e,
0x65, 0x78, 0x70, 0x65, 0x63, 0x74, 0x65, 0x64, 0x0a, 0x20, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74,
0x73, 0x2e, 0x20, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x6c, 0x79, 0x2c,
0x20, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x66, 0x69, 0x6c, 0x74, 0x65,
0x72, 0x73, 0x20, 0x68, 0x61, 0x76, 0x65, 0x20, 0x70, 0x6f, 0x6f, 0x72, 0x20, 0x70, 0x65, 0x72,
0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x2c, 0x20, 0x65, 0x73, 0x70, 0x65, 0x63, 0x69,
0x61, 0x6c, 0x6c, 0x79, 0x0a, 0x20, 0x77, 0x68, 0x65, 0x6e, 0x20, 0x66, 0x69, 0x6c, 0x74, 0x65,
0x72, 0x73, 0x20, 0x61, 0x72, 0x65, 0x20, 0x73, 0x65, 0x74, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x74,
0x68, 0x65, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x20, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69,
0x6f, 0x6e, 0x2e, 0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x09, 0x03, 0x02, 0x01, 0x12, 0x04, 0x82,
0x02, 0x0a, 0x13, 0x0a, 0xa0, 0x01, 0x0a, 0x06, 0x04, 0x09, 0x03, 0x02, 0x02, 0x00, 0x12, 0x04,
0x85, 0x02, 0x04, 0x23, 0x1a, 0x8f, 0x01, 0x20, 0x49, 0x66, 0x20, 0x60, 0x70, 0x72, 0x65, 0x64,
0x69, 0x63, 0x61, 0x74, 0x65, 0x5f, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x60, 0x20, 0x6f, 0x75,
0x74, 0x70, 0x75, 0x74, 0x73, 0x20, 0x61, 0x6e, 0x79, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x2c,
0x20, 0x74, 0x68, 0x65, 0x6e, 0x20, 0x60, 0x74, 0x72, 0x75, 0x65, 0x5f, 0x66, 0x69, 0x6c, 0x74,
0x65, 0x72, 0x60, 0x20, 0x77, 0x69, 0x6c, 0x6c, 0x20, 0x62, 0x65, 0x0a, 0x20, 0x65, 0x76, 0x61,
0x6c, 0x75, 0x61, 0x74, 0x65, 0x64, 0x20, 0x6f, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x69, 0x6e,
0x70, 0x75, 0x74, 0x20, 0x72, 0x6f, 0x77, 0x2e, 0x20, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x77, 0x69,
0x73, 0x65, 0x2c, 0x20, 0x60, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x5f, 0x66, 0x69, 0x6c, 0x74, 0x65,
0x72, 0x60, 0x20, 0x77, 0x69, 0x6c, 0x6c, 0x20, 0x62, 0x65, 0x20, 0x65, 0x76, 0x61, 0x6c, 0x75,
0x61, 0x74, 0x65, 0x64, 0x2e, 0x0a, 0x0a, 0x11, 0x0a, 0x07, 0x04, 0x09, 0x03, 0x02, 0x02, 0x00,
0x04, 0x12, 0x06, 0x85, 0x02, 0x04, 0x82, 0x02, 0x15, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x09, 0x03,
0x02, 0x02, 0x00, 0x06, 0x12, 0x04, 0x85, 0x02, 0x04, 0x0d, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x09,
0x03, 0x02, 0x02, 0x00, 0x01, 0x12, 0x04, 0x85, 0x02, 0x0e, 0x1e, 0x0a, 0x0f, 0x0a, 0x07, 0x04,
0x09, 0x03, 0x02, 0x02, 0x00, 0x03, 0x12, 0x04, 0x85, 0x02, 0x21, 0x22, 0x0a, 0xa2, 0x01, 0x0a,
0x06, 0x04, 0x09, 0x03, 0x02, 0x02, 0x01, 0x12, 0x04, 0x89, 0x02, 0x04, 0x1e, 0x1a, 0x91, 0x01,
0x20, 0x54, 0x68, 0x65, 0x20, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x20, 0x74, 0x6f, 0x20, 0x61,
0x70, 0x70, 0x6c, 0x79, 0x20, 0x74, 0x6f, 0x20, 0x74, 0x68, 0x65, 0x20, 0x69, 0x6e, 0x70, 0x75,
0x74, 0x20, 0x72, 0x6f, 0x77, 0x20, 0x69, 0x66, 0x20, 0x60, 0x70, 0x72, 0x65, 0x64, 0x69, 0x63,
0x61, 0x74, 0x65, 0x5f, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x60, 0x20, 0x72, 0x65, 0x74, 0x75,
0x72, 0x6e, 0x73, 0x20, 0x61, 0x6e, 0x79, 0x0a, 0x20, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73,
0x2e, 0x20, 0x49, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65,
0x64, 0x2c, 0x20, 0x6e, 0x6f, 0x20, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x20, 0x77, 0x69,
0x6c, 0x6c, 0x20, 0x62, 0x65, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x65, 0x64, 0x20, 0x69,
0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x74, 0x72, 0x75, 0x65, 0x20, 0x63, 0x61, 0x73, 0x65, 0x2e,
0x0a, 0x0a, 0x11, 0x0a, 0x07, 0x04, 0x09, 0x03, 0x02, 0x02, 0x01, 0x04, 0x12, 0x06, 0x89, 0x02,
0x04, 0x85, 0x02, 0x23, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x09, 0x03, 0x02, 0x02, 0x01, 0x06, 0x12,
0x04, 0x89, 0x02, 0x04, 0x0d, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x09, 0x03, 0x02, 0x02, 0x01, 0x01,
0x12, 0x04, 0x89, 0x02, 0x0e, 0x19, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x09, 0x03, 0x02, 0x02, 0x01,
0x03, 0x12, 0x04, 0x89, 0x02, 0x1c, 0x1d, 0x0a, 0xac, 0x01, 0x0a, 0x06, 0x04, 0x09, 0x03, 0x02,
0x02, 0x02, 0x12, 0x04, 0x8e, 0x02, 0x04, 0x1f, 0x1a, 0x9b, 0x01, 0x20, 0x54, 0x68, 0x65, 0x20,
0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x20, 0x74, 0x6f, 0x20, 0x61, 0x70, 0x70, 0x6c, 0x79, 0x20,
0x74, 0x6f, 0x20, 0x74, 0x68, 0x65, 0x20, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x20, 0x72, 0x6f, 0x77,
0x20, 0x69, 0x66, 0x20, 0x60, 0x70, 0x72, 0x65, 0x64, 0x69, 0x63, 0x61, 0x74, 0x65, 0x5f, 0x66,
0x69, 0x6c, 0x74, 0x65, 0x72, 0x60, 0x20, 0x64, 0x6f, 0x65, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x0a,
0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x61, 0x6e, 0x79, 0x20, 0x72, 0x65, 0x73, 0x75,
0x6c, 0x74, 0x73, 0x2e, 0x20, 0x49, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x70, 0x72, 0x6f, 0x76,
0x69, 0x64, 0x65, 0x64, 0x2c, 0x20, 0x6e, 0x6f, 0x20, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73,
0x20, 0x77, 0x69, 0x6c, 0x6c, 0x20, 0x62, 0x65, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x65,
0x64, 0x20, 0x69, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x0a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x20,
0x63, 0x61, 0x73, 0x65, 0x2e, 0x0a, 0x0a, 0x11, 0x0a, 0x07, 0x04, 0x09, 0x03, 0x02, 0x02, 0x02,
0x04, 0x12, 0x06, 0x8e, 0x02, 0x04, 0x89, 0x02, 0x1e, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x09, 0x03,
0x02, 0x02, 0x02, 0x06, 0x12, 0x04, 0x8e, 0x02, 0x04, 0x0d, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x09,
0x03, 0x02, 0x02, 0x02, 0x01, 0x12, 0x04, 0x8e, 0x02, 0x0e, 0x1a, 0x0a, 0x0f, 0x0a, 0x07, 0x04,
0x09, 0x03, 0x02, 0x02, 0x02, 0x03, 0x12, 0x04, 0x8e, 0x02, 0x1d, 0x1e, 0x0a, 0x86, 0x01, 0x0a,
0x04, 0x04, 0x09, 0x08, 0x00, 0x12, 0x06, 0x93, 0x02, 0x02, 0xb5, 0x03, 0x03, 0x1a, 0x76, 0x20,
0x57, 0x68, 0x69, 0x63, 0x68, 0x20, 0x6f, 0x66, 0x20, 0x74, 0x68, 0x65, 0x20, 0x70, 0x6f, 0x73,
0x73, 0x69, 0x62, 0x6c, 0x65, 0x20, 0x52, 0x6f, 0x77, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x20,
0x74, 0x79, 0x70, 0x65, 0x73, 0x20, 0x74, 0x6f, 0x20, 0x61, 0x70, 0x70, 0x6c, 0x79, 0x2e, 0x20,
0x49, 0x66, 0x20, 0x6e, 0x6f, 0x6e, 0x65, 0x20, 0x61, 0x72, 0x65, 0x20, 0x73, 0x65, 0x74, 0x2c,
0x20, 0x74, 0x68, 0x69, 0x73, 0x0a, 0x20, 0x52, 0x6f, 0x77, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72,
0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x73, 0x20, 0x61, 0x6c, 0x6c, 0x20, 0x63, 0x65, 0x6c,
0x6c, 0x73, 0x20, 0x69, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x20,
0x72, 0x6f, 0x77, 0x2e, 0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x09, 0x08, 0x00, 0x01, 0x12, 0x04,
0x93, 0x02, 0x08, 0x0e, 0x0a, 0x69, 0x0a, 0x04, 0x04, 0x09, 0x02, 0x00, 0x12, 0x04, 0x96, 0x02,
0x04, 0x14, 0x1a, 0x5b, 0x20, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x65, 0x73, 0x20, 0x73, 0x65, 0x76,
0x65, 0x72, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x77, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x20,
0x74, 0x6f, 0x20, 0x74, 0x68, 0x65, 0x20, 0x64, 0x61, 0x74, 0x61, 0x20, 0x69, 0x6e, 0x20, 0x73,
0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x2c, 0x20, 0x70, 0x72, 0x6f, 0x67, 0x72, 0x65, 0x73,
0x73, 0x69, 0x76, 0x65, 0x6c, 0x79, 0x0a, 0x20, 0x6e, 0x61, 0x72, 0x72, 0x6f, 0x77, 0x69, 0x6e,
0x67, 0x20, 0x74, 0x68, 0x65, 0x20, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x2e, 0x0a, 0x0a,
0x0d, 0x0a, 0x05, 0x04, 0x09, 0x02, 0x00, 0x06, 0x12, 0x04, 0x96, 0x02, 0x04, 0x09, 0x0a, 0x0d,
0x0a, 0x05, 0x04, 0x09, 0x02, 0x00, 0x01, 0x12, 0x04, 0x96, 0x02, 0x0a, 0x0f, 0x0a, 0x0d, 0x0a,
0x05, 0x04, 0x09, 0x02, 0x00, 0x03, 0x12, 0x04, 0x96, 0x02, 0x12, 0x13, 0x0a, 0x5d, 0x0a, 0x04,
0x04, 0x09, 0x02, 0x01, 0x12, 0x04, 0x9a, 0x02, 0x04, 0x1e, 0x1a, 0x4f, 0x20, 0x41, 0x70, 0x70,
0x6c, 0x69, 0x65, 0x73, 0x20, 0x73, 0x65, 0x76, 0x65, 0x72, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x77,
0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x20, 0x74, 0x6f, 0x20, 0x74, 0x68, 0x65, 0x20, 0x64,
0x61, 0x74, 0x61, 0x20, 0x69, 0x6e, 0x20, 0x70, 0x61, 0x72, 0x61, 0x6c, 0x6c, 0x65, 0x6c, 0x20,
0x61, 0x6e, 0x64, 0x20, 0x63, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x65, 0x73, 0x20, 0x74, 0x68, 0x65,
0x0a, 0x20, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x2e, 0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04,
0x09, 0x02, 0x01, 0x06, 0x12, 0x04, 0x9a, 0x02, 0x04, 0x0e, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x09,
0x02, 0x01, 0x01, 0x12, 0x04, 0x9a, 0x02, 0x0f, 0x19, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x09, 0x02,
0x01, 0x03, 0x12, 0x04, 0x9a, 0x02, 0x1c, 0x1d, 0x0a, 0x71, 0x0a, 0x04, 0x04, 0x09, 0x02, 0x02,
0x12, 0x04, 0x9e, 0x02, 0x04, 0x1c, 0x1a, 0x63, 0x20, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x65, 0x73,
0x20, 0x6f, 0x6e, 0x65, 0x20, 0x6f, 0x66, 0x20, 0x74, 0x77, 0x6f, 0x20, 0x70, 0x6f, 0x73, 0x73,
0x69, 0x62, 0x6c, 0x65, 0x20, 0x52, 0x6f, 0x77, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x20,
0x74, 0x6f, 0x20, 0x74, 0x68, 0x65, 0x20, 0x64, 0x61, 0x74, 0x61, 0x20, 0x62, 0x61, 0x73, 0x65,
0x64, 0x20, 0x6f, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x20,
0x6f, 0x66, 0x0a, 0x20, 0x61, 0x20, 0x70, 0x72, 0x65, 0x64, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20,
0x52, 0x6f, 0x77, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e, 0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04,
0x09, 0x02, 0x02, 0x06, 0x12, 0x04, 0x9e, 0x02, 0x04, 0x0d, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x09,
0x02, 0x02, 0x01, 0x12, 0x04, 0x9e, 0x02, 0x0e, 0x17, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x09, 0x02,
0x02, 0x03, 0x12, 0x04, 0x9e, 0x02, 0x1a, 0x1b, 0x0a, 0xb7, 0x14, 0x0a, 0x04, 0x04, 0x09, 0x02,
0x03, 0x12, 0x04, 0xdb, 0x02, 0x04, 0x13, 0x1a, 0xa8, 0x14, 0x20, 0x41, 0x44, 0x56, 0x41, 0x4e,
0x43, 0x45, 0x44, 0x20, 0x55, 0x53, 0x45, 0x20, 0x4f, 0x4e, 0x4c, 0x59, 0x2e, 0x0a, 0x20, 0x48,
0x6f, 0x6f, 0x6b, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x73, 0x70, 0x65,
0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x69, 0x6e, 0x74, 0x6f, 0x20, 0x74, 0x68, 0x65, 0x20, 0x52,
0x6f, 0x77, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e, 0x20, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74,
0x73, 0x20, 0x61, 0x6c, 0x6c, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x20, 0x64, 0x69, 0x72, 0x65,
0x63, 0x74, 0x6c, 0x79, 0x20, 0x74, 0x6f, 0x0a, 0x20, 0x74, 0x68, 0x65, 0x20, 0x6f, 0x75, 0x74,
0x70, 0x75, 0x74, 0x20, 0x6f, 0x66, 0x20, 0x74, 0x68, 0x65, 0x20, 0x72, 0x65, 0x61, 0x64, 0x20,
0x72, 0x61, 0x74, 0x68, 0x65, 0x72, 0x20, 0x74, 0x68, 0x61, 0x6e, 0x20, 0x74, 0x6f, 0x20, 0x61,
0x6e, 0x79, 0x20, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x20, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72,
0x2e, 0x20, 0x43, 0x6f, 0x6e, 0x73, 0x69, 0x64, 0x65, 0x72, 0x20, 0x74, 0x68, 0x65, 0x0a, 0x20,
0x66, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x69, 0x6e, 0x67, 0x20, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c,
0x65, 0x3a, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x43, 0x68, 0x61, 0x69, 0x6e, 0x28, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x46, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x52, 0x65, 0x67,
0x65, 0x78, 0x28, 0x22, 0x41, 0x22, 0x29, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x49, 0x6e, 0x74, 0x65, 0x72, 0x6c, 0x65, 0x61, 0x76, 0x65, 0x28, 0x0a, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x41, 0x6c, 0x6c, 0x28, 0x29, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x43, 0x68, 0x61, 0x69, 0x6e, 0x28, 0x4c, 0x61, 0x62, 0x65, 0x6c,
0x28, 0x22, 0x66, 0x6f, 0x6f, 0x22, 0x29, 0x2c, 0x20, 0x53, 0x69, 0x6e, 0x6b, 0x28, 0x29, 0x29,
0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x29, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x66, 0x69, 0x65, 0x72, 0x52, 0x65, 0x67, 0x65, 0x78,
0x28, 0x22, 0x42, 0x22, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x29, 0x0a, 0x0a, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x41, 0x2c, 0x41, 0x2c, 0x31, 0x2c, 0x77, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x41, 0x2c, 0x42, 0x2c, 0x32, 0x2c, 0x78, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x42, 0x2c, 0x42, 0x2c, 0x34, 0x2c, 0x7a,
0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7c, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x46, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x52, 0x65, 0x67, 0x65, 0x78, 0x28,
0x22, 0x41, 0x22, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x7c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x41, 0x2c, 0x41, 0x2c,
0x31, 0x2c, 0x77, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x41, 0x2c, 0x42,
0x2c, 0x32, 0x2c, 0x78, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x7c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x2b, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2b,
0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2b, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7c, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x41, 0x6c, 0x6c, 0x28, 0x29, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x28, 0x66, 0x6f, 0x6f, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7c, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x41, 0x2c, 0x41, 0x2c, 0x31, 0x2c, 0x77, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x41, 0x2c, 0x41, 0x2c, 0x31, 0x2c, 0x77,
0x2c, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x3a, 0x5b, 0x66, 0x6f, 0x6f, 0x5d, 0x0a, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x41, 0x2c, 0x42, 0x2c, 0x32, 0x2c,
0x78, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x41,
0x2c, 0x42, 0x2c, 0x32, 0x2c, 0x78, 0x2c, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x3a, 0x5b, 0x66,
0x6f, 0x6f, 0x5d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x7c, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7c, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7c,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x53, 0x69, 0x6e, 0x6b, 0x28, 0x29, 0x20, 0x2d,
0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2b, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7c, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7c, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7c, 0x0a, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2b, 0x2d, 0x2d,
0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2b, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x78, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2b, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x41, 0x2c, 0x41, 0x2c, 0x31, 0x2c, 0x77, 0x2c, 0x6c, 0x61, 0x62, 0x65, 0x6c,
0x73, 0x3a, 0x5b, 0x66, 0x6f, 0x6f, 0x5d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x7c, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x41, 0x2c, 0x42,
0x2c, 0x32, 0x2c, 0x78, 0x2c, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x3a, 0x5b, 0x66, 0x6f, 0x6f,
0x5d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x41, 0x2c, 0x41, 0x2c, 0x31,
0x2c, 0x77, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7c,
0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x41, 0x2c, 0x42, 0x2c, 0x32, 0x2c,
0x78, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7c, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7c, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7c, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x66, 0x69, 0x65, 0x72, 0x52, 0x65, 0x67, 0x65,
0x78, 0x28, 0x22, 0x42, 0x22, 0x29, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7c, 0x0a, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7c, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7c, 0x0a, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x41, 0x2c, 0x42, 0x2c, 0x32, 0x2c, 0x78, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7c, 0x0a, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7c, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2b, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d,
0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d,
0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x41, 0x2c, 0x41, 0x2c, 0x31, 0x2c, 0x77, 0x2c, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x3a,
0x5b, 0x66, 0x6f, 0x6f, 0x5d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x41,
0x2c, 0x42, 0x2c, 0x32, 0x2c, 0x78, 0x2c, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x3a, 0x5b, 0x66,
0x6f, 0x6f, 0x5d, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x63, 0x6f, 0x75, 0x6c, 0x64, 0x20, 0x62, 0x65,
0x20, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x65, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x41, 0x2c, 0x42, 0x2c, 0x32, 0x2c, 0x78, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x63, 0x6f, 0x75, 0x6c,
0x64, 0x20, 0x62, 0x65, 0x20, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x65, 0x64, 0x0a, 0x0a, 0x20,
0x44, 0x65, 0x73, 0x70, 0x69, 0x74, 0x65, 0x20, 0x62, 0x65, 0x69, 0x6e, 0x67, 0x20, 0x65, 0x78,
0x63, 0x6c, 0x75, 0x64, 0x65, 0x64, 0x20, 0x62, 0x79, 0x20, 0x74, 0x68, 0x65, 0x20, 0x71, 0x75,
0x61, 0x6c, 0x69, 0x66, 0x69, 0x65, 0x72, 0x20, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2c, 0x20,
0x61, 0x20, 0x63, 0x6f, 0x70, 0x79, 0x20, 0x6f, 0x66, 0x20, 0x65, 0x76, 0x65, 0x72, 0x79, 0x20,
0x63, 0x65, 0x6c, 0x6c, 0x0a, 0x20, 0x74, 0x68, 0x61, 0x74, 0x20, 0x72, 0x65, 0x61, 0x63, 0x68,
0x65, 0x73, 0x20, 0x74, 0x68, 0x65, 0x20, 0x73, 0x69, 0x6e, 0x6b, 0x20, 0x69, 0x73, 0x20, 0x70,
0x72, 0x65, 0x73, 0x65, 0x6e, 0x74, 0x20, 0x69, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x66, 0x69,
0x6e, 0x61, 0x6c, 0x20, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x2e, 0x0a, 0x0a, 0x20, 0x41, 0x73,
0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x61, 0x6e, 0x20, 0x5b, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6c,
0x65, 0x61, 0x76, 0x65, 0x5d, 0x5b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x62, 0x69, 0x67,
0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x76, 0x32, 0x2e, 0x52, 0x6f, 0x77, 0x46, 0x69, 0x6c, 0x74,
0x65, 0x72, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6c, 0x65, 0x61, 0x76, 0x65, 0x5d, 0x2c, 0x0a,
0x20, 0x64, 0x75, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x73,
0x20, 0x61, 0x72, 0x65, 0x20, 0x70, 0x6f, 0x73, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x2c, 0x20, 0x61,
0x6e, 0x64, 0x20, 0x61, 0x70, 0x70, 0x65, 0x61, 0x72, 0x20, 0x69, 0x6e, 0x20, 0x61, 0x6e, 0x20,
0x75, 0x6e, 0x73, 0x70, 0x65, 0x63, 0x69, 0x66, 0x69, 0x65, 0x64, 0x20, 0x6d, 0x75, 0x74, 0x75,
0x61, 0x6c, 0x20, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x2e, 0x0a, 0x20, 0x49, 0x6e, 0x20, 0x74, 0x68,
0x69, 0x73, 0x20, 0x63, 0x61, 0x73, 0x65, 0x20, 0x77, 0x65, 0x20, 0x68, 0x61, 0x76, 0x65, 0x20,
0x61, 0x20, 0x64, 0x75, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x77, 0x69, 0x74, 0x68,
0x20, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x20, 0x22, 0x41, 0x3a, 0x42, 0x22, 0x20, 0x61, 0x6e,
0x64, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x20, 0x32, 0x2c, 0x0a, 0x20,
0x62, 0x65, 0x63, 0x61, 0x75, 0x73, 0x65, 0x20, 0x6f, 0x6e, 0x65, 0x20, 0x63, 0x6f, 0x70, 0x79,
0x20, 0x70, 0x61, 0x73, 0x73, 0x65, 0x64, 0x20, 0x74, 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68, 0x20,
0x74, 0x68, 0x65, 0x20, 0x61, 0x6c, 0x6c, 0x20, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x20, 0x77,
0x68, 0x69, 0x6c, 0x65, 0x20, 0x74, 0x68, 0x65, 0x20, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x20, 0x77,
0x61, 0x73, 0x0a, 0x20, 0x70, 0x61, 0x73, 0x73, 0x65, 0x64, 0x20, 0x74, 0x68, 0x72, 0x6f, 0x75,
0x67, 0x68, 0x20, 0x74, 0x68, 0x65, 0x20, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x20, 0x61, 0x6e, 0x64,
0x20, 0x73, 0x69, 0x6e, 0x6b, 0x2e, 0x20, 0x4e, 0x6f, 0x74, 0x65, 0x20, 0x74, 0x68, 0x61, 0x74,
0x20, 0x6f, 0x6e, 0x65, 0x20, 0x63, 0x6f, 0x70, 0x79, 0x20, 0x68, 0x61, 0x73, 0x20, 0x6c, 0x61,
0x62, 0x65, 0x6c, 0x20, 0x22, 0x66, 0x6f, 0x6f, 0x22, 0x2c, 0x0a, 0x20, 0x77, 0x68, 0x69, 0x6c,
0x65, 0x20, 0x74, 0x68, 0x65, 0x20, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x20, 0x64, 0x6f, 0x65, 0x73,
0x20, 0x6e, 0x6f, 0x74, 0x2e, 0x0a, 0x0a, 0x20, 0x43, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x20, 0x62,
0x65, 0x20, 0x75, 0x73, 0x65, 0x64, 0x20, 0x77, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x20, 0x74, 0x68,
0x65, 0x20, 0x60, 0x70, 0x72, 0x65, 0x64, 0x69, 0x63, 0x61, 0x74, 0x65, 0x5f, 0x66, 0x69, 0x6c,
0x74, 0x65, 0x72, 0x60, 0x2c, 0x20, 0x60, 0x74, 0x72, 0x75, 0x65, 0x5f, 0x66, 0x69, 0x6c, 0x74,
0x65, 0x72, 0x60, 0x2c, 0x20, 0x6f, 0x72, 0x0a, 0x20, 0x60, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x5f,
0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x60, 0x20, 0x6f, 0x66, 0x20, 0x61, 0x20, 0x5b, 0x43, 0x6f,
0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5d, 0x5b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x62, 0x69, 0x67, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x76, 0x32, 0x2e, 0x52, 0x6f, 0x77, 0x46,
0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5d,
0x2e, 0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x09, 0x02, 0x03, 0x05, 0x12, 0x04, 0xdb, 0x02, 0x04,
0x08, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x09, 0x02, 0x03, 0x01, 0x12, 0x04, 0xdb, 0x02, 0x09, 0x0d,
0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x09, 0x02, 0x03, 0x03, 0x12, 0x04, 0xdb, 0x02, 0x10, 0x12, 0x0a,
0x8a, 0x01, 0x0a, 0x04, 0x04, 0x09, 0x02, 0x04, 0x12, 0x04, 0xdf, 0x02, 0x04, 0x1e, 0x1a, 0x7c,
0x20, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x73, 0x20, 0x61, 0x6c, 0x6c, 0x20, 0x63, 0x65, 0x6c,
0x6c, 0x73, 0x2c, 0x20, 0x72, 0x65, 0x67, 0x61, 0x72, 0x64, 0x6c, 0x65, 0x73, 0x73, 0x20, 0x6f,
0x66, 0x20, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x2e, 0x20, 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f,
0x6e, 0x61, 0x6c, 0x6c, 0x79, 0x20, 0x65, 0x71, 0x75, 0x69, 0x76, 0x61, 0x6c, 0x65, 0x6e, 0x74,
0x20, 0x74, 0x6f, 0x0a, 0x20, 0x6c, 0x65, 0x61, 0x76, 0x69, 0x6e, 0x67, 0x20, 0x60, 0x66, 0x69,
0x6c, 0x74, 0x65, 0x72, 0x60, 0x20, 0x75, 0x6e, 0x73, 0x65, 0x74, 0x2c, 0x20, 0x62, 0x75, 0x74,
0x20, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x64, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x63, 0x6f,
0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x6e, 0x65, 0x73, 0x73, 0x2e, 0x0a, 0x0a, 0x0d, 0x0a, 0x05,
0x04, 0x09, 0x02, 0x04, 0x05, 0x12, 0x04, 0xdf, 0x02, 0x04, 0x08, 0x0a, 0x0d, 0x0a, 0x05, 0x04,
0x09, 0x02, 0x04, 0x01, 0x12, 0x04, 0xdf, 0x02, 0x09, 0x18, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x09,
0x02, 0x04, 0x03, 0x12, 0x04, 0xdf, 0x02, 0x1b, 0x1d, 0x0a, 0x77, 0x0a, 0x04, 0x04, 0x09, 0x02,
0x05, 0x12, 0x04, 0xe3, 0x02, 0x04, 0x1f, 0x1a, 0x69, 0x20, 0x44, 0x6f, 0x65, 0x73, 0x20, 0x6e,
0x6f, 0x74, 0x20, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x20, 0x61, 0x6e, 0x79, 0x20, 0x63, 0x65, 0x6c,
0x6c, 0x73, 0x2c, 0x20, 0x72, 0x65, 0x67, 0x61, 0x72, 0x64, 0x6c, 0x65, 0x73, 0x73, 0x20, 0x6f,
0x66, 0x20, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x2e, 0x20, 0x55, 0x73, 0x65, 0x66, 0x75, 0x6c, 0x20,
0x66, 0x6f, 0x72, 0x20, 0x74, 0x65, 0x6d, 0x70, 0x6f, 0x72, 0x61, 0x72, 0x69, 0x6c, 0x79, 0x0a,
0x20, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x69, 0x6e, 0x67, 0x20, 0x6a, 0x75, 0x73, 0x74, 0x20,
0x70, 0x61, 0x72, 0x74, 0x20, 0x6f, 0x66, 0x20, 0x61, 0x20, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72,
0x2e, 0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x09, 0x02, 0x05, 0x05, 0x12, 0x04, 0xe3, 0x02, 0x04,
0x08, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x09, 0x02, 0x05, 0x01, 0x12, 0x04, 0xe3, 0x02, 0x09, 0x19,
0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x09, 0x02, 0x05, 0x03, 0x12, 0x04, 0xe3, 0x02, 0x1c, 0x1e, 0x0a,
0xa4, 0x03, 0x0a, 0x04, 0x04, 0x09, 0x02, 0x06, 0x12, 0x04, 0xec, 0x02, 0x04, 0x23, 0x1a, 0x95,
0x03, 0x20, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x73, 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x20, 0x63,
0x65, 0x6c, 0x6c, 0x73, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x72, 0x6f, 0x77, 0x73, 0x20, 0x77,
0x68, 0x6f, 0x73, 0x65, 0x20, 0x6b, 0x65, 0x79, 0x73, 0x20, 0x73, 0x61, 0x74, 0x69, 0x73, 0x66,
0x79, 0x20, 0x74, 0x68, 0x65, 0x20, 0x67, 0x69, 0x76, 0x65, 0x6e, 0x20, 0x52, 0x45, 0x32, 0x20,
0x72, 0x65, 0x67, 0x65, 0x78, 0x2e, 0x20, 0x49, 0x6e, 0x0a, 0x20, 0x6f, 0x74, 0x68, 0x65, 0x72,
0x20, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x2c, 0x20, 0x70, 0x61, 0x73, 0x73, 0x65, 0x73, 0x20, 0x74,
0x68, 0x72, 0x6f, 0x75, 0x67, 0x68, 0x20, 0x74, 0x68, 0x65, 0x20, 0x65, 0x6e, 0x74, 0x69, 0x72,
0x65, 0x20, 0x72, 0x6f, 0x77, 0x20, 0x77, 0x68, 0x65, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x6b,
0x65, 0x79, 0x20, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x73, 0x2c, 0x20, 0x61, 0x6e, 0x64, 0x0a,
0x20, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x77, 0x69, 0x73, 0x65, 0x20, 0x70, 0x72, 0x6f, 0x64, 0x75,
0x63, 0x65, 0x73, 0x20, 0x61, 0x6e, 0x20, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x20, 0x72, 0x6f, 0x77,
0x2e, 0x0a, 0x20, 0x4e, 0x6f, 0x74, 0x65, 0x20, 0x74, 0x68, 0x61, 0x74, 0x2c, 0x20, 0x73, 0x69,
0x6e, 0x63, 0x65, 0x20, 0x72, 0x6f, 0x77, 0x20, 0x6b, 0x65, 0x79, 0x73, 0x20, 0x63, 0x61, 0x6e,
0x20, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x20, 0x61, 0x72, 0x62, 0x69, 0x74, 0x72, 0x61,
0x72, 0x79, 0x20, 0x62, 0x79, 0x74, 0x65, 0x73, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x20, 0x60, 0x5c,
0x43, 0x60, 0x20, 0x65, 0x73, 0x63, 0x61, 0x70, 0x65, 0x0a, 0x20, 0x73, 0x65, 0x71, 0x75, 0x65,
0x6e, 0x63, 0x65, 0x20, 0x6d, 0x75, 0x73, 0x74, 0x20, 0x62, 0x65, 0x20, 0x75, 0x73, 0x65, 0x64,
0x20, 0x69, 0x66, 0x20, 0x61, 0x20, 0x74, 0x72, 0x75, 0x65, 0x20, 0x77, 0x69, 0x6c, 0x64, 0x63,
0x61, 0x72, 0x64, 0x20, 0x69, 0x73, 0x20, 0x64, 0x65, 0x73, 0x69, 0x72, 0x65, 0x64, 0x2e, 0x20,
0x54, 0x68, 0x65, 0x20, 0x60, 0x2e, 0x60, 0x20, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65,
0x72, 0x0a, 0x20, 0x77, 0x69, 0x6c, 0x6c, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6d, 0x61, 0x74, 0x63,
0x68, 0x20, 0x74, 0x68, 0x65, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x6c, 0x69, 0x6e, 0x65, 0x20, 0x63,
0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x20, 0x60, 0x5c, 0x6e, 0x60, 0x2c, 0x20, 0x77,
0x68, 0x69, 0x63, 0x68, 0x20, 0x6d, 0x61, 0x79, 0x20, 0x62, 0x65, 0x20, 0x70, 0x72, 0x65, 0x73,
0x65, 0x6e, 0x74, 0x20, 0x69, 0x6e, 0x20, 0x61, 0x0a, 0x20, 0x62, 0x69, 0x6e, 0x61, 0x72, 0x79,
0x20, 0x6b, 0x65, 0x79, 0x2e, 0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x09, 0x02, 0x06, 0x05, 0x12,
0x04, 0xec, 0x02, 0x04, 0x09, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x09, 0x02, 0x06, 0x01, 0x12, 0x04,
0xec, 0x02, 0x0a, 0x1e, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x09, 0x02, 0x06, 0x03, 0x12, 0x04, 0xec,
0x02, 0x21, 0x22, 0x0a, 0x79, 0x0a, 0x04, 0x04, 0x09, 0x02, 0x07, 0x12, 0x04, 0xf0, 0x02, 0x04,
0x22, 0x1a, 0x6b, 0x20, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x73, 0x20, 0x61, 0x6c, 0x6c, 0x20,
0x63, 0x65, 0x6c, 0x6c, 0x73, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x61, 0x20, 0x72, 0x6f, 0x77,
0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x70, 0x72, 0x6f, 0x62, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74,
0x79, 0x20, 0x70, 0x2c, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x73,
0x20, 0x6e, 0x6f, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x0a, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20,
0x74, 0x68, 0x65, 0x20, 0x72, 0x6f, 0x77, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x70, 0x72, 0x6f,
0x62, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x20, 0x31, 0x2d, 0x70, 0x2e, 0x0a, 0x0a, 0x0d,
0x0a, 0x05, 0x04, 0x09, 0x02, 0x07, 0x05, 0x12, 0x04, 0xf0, 0x02, 0x04, 0x0a, 0x0a, 0x0d, 0x0a,
0x05, 0x04, 0x09, 0x02, 0x07, 0x01, 0x12, 0x04, 0xf0, 0x02, 0x0b, 0x1c, 0x0a, 0x0d, 0x0a, 0x05,
0x04, 0x09, 0x02, 0x07, 0x03, 0x12, 0x04, 0xf0, 0x02, 0x1f, 0x21, 0x0a, 0xf0, 0x02, 0x0a, 0x04,
0x04, 0x09, 0x02, 0x08, 0x12, 0x04, 0xf8, 0x02, 0x04, 0x28, 0x1a, 0xe1, 0x02, 0x20, 0x4d, 0x61,
0x74, 0x63, 0x68, 0x65, 0x73, 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x73,
0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x20, 0x77, 0x68,
0x6f, 0x73, 0x65, 0x20, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x69, 0x65, 0x73, 0x20, 0x73, 0x61, 0x74,
0x69, 0x73, 0x66, 0x79, 0x20, 0x74, 0x68, 0x65, 0x20, 0x67, 0x69, 0x76, 0x65, 0x6e, 0x20, 0x52,
0x45, 0x32, 0x0a, 0x20, 0x72, 0x65, 0x67, 0x65, 0x78, 0x2e, 0x20, 0x46, 0x6f, 0x72, 0x20, 0x74,
0x65, 0x63, 0x68, 0x6e, 0x69, 0x63, 0x61, 0x6c, 0x20, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x73,
0x2c, 0x20, 0x74, 0x68, 0x65, 0x20, 0x72, 0x65, 0x67, 0x65, 0x78, 0x20, 0x6d, 0x75, 0x73, 0x74,
0x20, 0x6e, 0x6f, 0x74, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x20, 0x74, 0x68, 0x65,
0x20, 0x60, 0x3a, 0x60, 0x0a, 0x20, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x2c,
0x20, 0x65, 0x76, 0x65, 0x6e, 0x20, 0x69, 0x66, 0x20, 0x69, 0x74, 0x20, 0x69, 0x73, 0x20, 0x6e,
0x6f, 0x74, 0x20, 0x62, 0x65, 0x69, 0x6e, 0x67, 0x20, 0x75, 0x73, 0x65, 0x64, 0x20, 0x61, 0x73,
0x20, 0x61, 0x20, 0x6c, 0x69, 0x74, 0x65, 0x72, 0x61, 0x6c, 0x2e, 0x0a, 0x20, 0x4e, 0x6f, 0x74,
0x65, 0x20, 0x74, 0x68, 0x61, 0x74, 0x2c, 0x20, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x20, 0x63, 0x6f,
0x6c, 0x75, 0x6d, 0x6e, 0x20, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x69, 0x65, 0x73, 0x20, 0x63, 0x61,
0x6e, 0x6e, 0x6f, 0x74, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x20, 0x74, 0x68, 0x65,
0x20, 0x6e, 0x65, 0x77, 0x20, 0x6c, 0x69, 0x6e, 0x65, 0x20, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63,
0x74, 0x65, 0x72, 0x0a, 0x20, 0x60, 0x5c, 0x6e, 0x60, 0x2c, 0x20, 0x69, 0x74, 0x20, 0x69, 0x73,
0x20, 0x73, 0x75, 0x66, 0x66, 0x69, 0x63, 0x69, 0x65, 0x6e, 0x74, 0x20, 0x74, 0x6f, 0x20, 0x75,
0x73, 0x65, 0x20, 0x60, 0x2e, 0x60, 0x20, 0x61, 0x73, 0x20, 0x61, 0x20, 0x66, 0x75, 0x6c, 0x6c,
0x20, 0x77, 0x69, 0x6c, 0x64, 0x63, 0x61, 0x72, 0x64, 0x20, 0x77, 0x68, 0x65, 0x6e, 0x20, 0x6d,
0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x0a, 0x20, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x20,
0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x2e, 0x0a, 0x0a, 0x0d,
0x0a, 0x05, 0x04, 0x09, 0x02, 0x08, 0x05, 0x12, 0x04, 0xf8, 0x02, 0x04, 0x0a, 0x0a, 0x0d, 0x0a,
0x05, 0x04, 0x09, 0x02, 0x08, 0x01, 0x12, 0x04, 0xf8, 0x02, 0x0b, 0x23, 0x0a, 0x0d, 0x0a, 0x05,
0x04, 0x09, 0x02, 0x08, 0x03, 0x12, 0x04, 0xf8, 0x02, 0x26, 0x27, 0x0a, 0xd2, 0x02, 0x0a, 0x04,
0x04, 0x09, 0x02, 0x09, 0x12, 0x04, 0x80, 0x03, 0x04, 0x2c, 0x1a, 0xc3, 0x02, 0x20, 0x4d, 0x61,
0x74, 0x63, 0x68, 0x65, 0x73, 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x73,
0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x20, 0x77, 0x68,
0x6f, 0x73, 0x65, 0x20, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x66, 0x69, 0x65, 0x72, 0x73, 0x20, 0x73,
0x61, 0x74, 0x69, 0x73, 0x66, 0x79, 0x20, 0x74, 0x68, 0x65, 0x20, 0x67, 0x69, 0x76, 0x65, 0x6e,
0x20, 0x52, 0x45, 0x32, 0x0a, 0x20, 0x72, 0x65, 0x67, 0x65, 0x78, 0x2e, 0x0a, 0x20, 0x4e, 0x6f,
0x74, 0x65, 0x20, 0x74, 0x68, 0x61, 0x74, 0x2c, 0x20, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x20, 0x63,
0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x20, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x66, 0x69, 0x65, 0x72, 0x73,
0x20, 0x63, 0x61, 0x6e, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x20, 0x61, 0x72, 0x62,
0x69, 0x74, 0x72, 0x61, 0x72, 0x79, 0x20, 0x62, 0x79, 0x74, 0x65, 0x73, 0x2c, 0x20, 0x74, 0x68,
0x65, 0x20, 0x60, 0x5c, 0x43, 0x60, 0x0a, 0x20, 0x65, 0x73, 0x63, 0x61, 0x70, 0x65, 0x20, 0x73,
0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x20, 0x6d, 0x75, 0x73, 0x74, 0x20, 0x62, 0x65, 0x20,
0x75, 0x73, 0x65, 0x64, 0x20, 0x69, 0x66, 0x20, 0x61, 0x20, 0x74, 0x72, 0x75, 0x65, 0x20, 0x77,
0x69, 0x6c, 0x64, 0x63, 0x61, 0x72, 0x64, 0x20, 0x69, 0x73, 0x20, 0x64, 0x65, 0x73, 0x69, 0x72,
0x65, 0x64, 0x2e, 0x20, 0x54, 0x68, 0x65, 0x20, 0x60, 0x2e, 0x60, 0x0a, 0x20, 0x63, 0x68, 0x61,
0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x20, 0x77, 0x69, 0x6c, 0x6c, 0x20, 0x6e, 0x6f, 0x74, 0x20,
0x6d, 0x61, 0x74, 0x63, 0x68, 0x20, 0x74, 0x68, 0x65, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x6c, 0x69,
0x6e, 0x65, 0x20, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x20, 0x60, 0x5c, 0x6e,
0x60, 0x2c, 0x20, 0x77, 0x68, 0x69, 0x63, 0x68, 0x20, 0x6d, 0x61, 0x79, 0x20, 0x62, 0x65, 0x0a,
0x20, 0x70, 0x72, 0x65, 0x73, 0x65, 0x6e, 0x74, 0x20, 0x69, 0x6e, 0x20, 0x61, 0x20, 0x62, 0x69,
0x6e, 0x61, 0x72, 0x79, 0x20, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x66, 0x69, 0x65, 0x72, 0x2e, 0x0a,
0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x09, 0x02, 0x09, 0x05, 0x12, 0x04, 0x80, 0x03, 0x04, 0x09, 0x0a,
0x0d, 0x0a, 0x05, 0x04, 0x09, 0x02, 0x09, 0x01, 0x12, 0x04, 0x80, 0x03, 0x0a, 0x27, 0x0a, 0x0d,
0x0a, 0x05, 0x04, 0x09, 0x02, 0x09, 0x03, 0x12, 0x04, 0x80, 0x03, 0x2a, 0x2b, 0x0a, 0x47, 0x0a,
0x04, 0x04, 0x09, 0x02, 0x0a, 0x12, 0x04, 0x83, 0x03, 0x04, 0x28, 0x1a, 0x39, 0x20, 0x4d, 0x61,
0x74, 0x63, 0x68, 0x65, 0x73, 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x73,
0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x20, 0x77, 0x69,
0x74, 0x68, 0x69, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x67, 0x69, 0x76, 0x65, 0x6e, 0x20, 0x72,
0x61, 0x6e, 0x67, 0x65, 0x2e, 0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x09, 0x02, 0x0a, 0x06, 0x12,
0x04, 0x83, 0x03, 0x04, 0x0f, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x09, 0x02, 0x0a, 0x01, 0x12, 0x04,
0x83, 0x03, 0x10, 0x23, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x09, 0x02, 0x0a, 0x03, 0x12, 0x04, 0x83,
0x03, 0x26, 0x27, 0x0a, 0x4a, 0x0a, 0x04, 0x04, 0x09, 0x02, 0x0b, 0x12, 0x04, 0x86, 0x03, 0x04,
0x2e, 0x1a, 0x3c, 0x20, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x73, 0x20, 0x6f, 0x6e, 0x6c, 0x79,
0x20, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x74, 0x69, 0x6d, 0x65,
0x73, 0x74, 0x61, 0x6d, 0x70, 0x73, 0x20, 0x77, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x20, 0x74, 0x68,
0x65, 0x20, 0x67, 0x69, 0x76, 0x65, 0x6e, 0x20, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x2e, 0x0a, 0x0a,
0x0d, 0x0a, 0x05, 0x04, 0x09, 0x02, 0x0b, 0x06, 0x12, 0x04, 0x86, 0x03, 0x04, 0x12, 0x0a, 0x0d,
0x0a, 0x05, 0x04, 0x09, 0x02, 0x0b, 0x01, 0x12, 0x04, 0x86, 0x03, 0x13, 0x29, 0x0a, 0x0d, 0x0a,
0x05, 0x04, 0x09, 0x02, 0x0b, 0x03, 0x12, 0x04, 0x86, 0x03, 0x2c, 0x2d, 0x0a, 0xc3, 0x02, 0x0a,
0x04, 0x04, 0x09, 0x02, 0x0c, 0x12, 0x04, 0x8d, 0x03, 0x04, 0x21, 0x1a, 0xb4, 0x02, 0x20, 0x4d,
0x61, 0x74, 0x63, 0x68, 0x65, 0x73, 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x20, 0x63, 0x65, 0x6c, 0x6c,
0x73, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x20, 0x74, 0x68,
0x61, 0x74, 0x20, 0x73, 0x61, 0x74, 0x69, 0x73, 0x66, 0x79, 0x20, 0x74, 0x68, 0x65, 0x20, 0x67,
0x69, 0x76, 0x65, 0x6e, 0x20, 0x72, 0x65, 0x67, 0x75, 0x6c, 0x61, 0x72, 0x20, 0x65, 0x78, 0x70,
0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x0a, 0x20, 0x4e, 0x6f, 0x74, 0x65, 0x20, 0x74,
0x68, 0x61, 0x74, 0x2c, 0x20, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x20,
0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x20, 0x63, 0x61, 0x6e, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x61,
0x69, 0x6e, 0x20, 0x61, 0x72, 0x62, 0x69, 0x74, 0x72, 0x61, 0x72, 0x79, 0x20, 0x62, 0x79, 0x74,
0x65, 0x73, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x20, 0x60, 0x5c, 0x43, 0x60, 0x20, 0x65, 0x73, 0x63,
0x61, 0x70, 0x65, 0x0a, 0x20, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x20, 0x6d, 0x75,
0x73, 0x74, 0x20, 0x62, 0x65, 0x20, 0x75, 0x73, 0x65, 0x64, 0x20, 0x69, 0x66, 0x20, 0x61, 0x20,
0x74, 0x72, 0x75, 0x65, 0x20, 0x77, 0x69, 0x6c, 0x64, 0x63, 0x61, 0x72, 0x64, 0x20, 0x69, 0x73,
0x20, 0x64, 0x65, 0x73, 0x69, 0x72, 0x65, 0x64, 0x2e, 0x20, 0x54, 0x68, 0x65, 0x20, 0x60, 0x2e,
0x60, 0x20, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x0a, 0x20, 0x77, 0x69, 0x6c,
0x6c, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x20, 0x74, 0x68, 0x65, 0x20,
0x6e, 0x65, 0x77, 0x20, 0x6c, 0x69, 0x6e, 0x65, 0x20, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74,
0x65, 0x72, 0x20, 0x60, 0x5c, 0x6e, 0x60, 0x2c, 0x20, 0x77, 0x68, 0x69, 0x63, 0x68, 0x20, 0x6d,
0x61, 0x79, 0x20, 0x62, 0x65, 0x20, 0x70, 0x72, 0x65, 0x73, 0x65, 0x6e, 0x74, 0x20, 0x69, 0x6e,
0x20, 0x61, 0x0a, 0x20, 0x62, 0x69, 0x6e, 0x61, 0x72, 0x79, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65,
0x2e, 0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x09, 0x02, 0x0c, 0x05, 0x12, 0x04, 0x8d, 0x03, 0x04,
0x09, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x09, 0x02, 0x0c, 0x01, 0x12, 0x04, 0x8d, 0x03, 0x0a, 0x1c,
0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x09, 0x02, 0x0c, 0x03, 0x12, 0x04, 0x8d, 0x03, 0x1f, 0x20, 0x0a,
0x50, 0x0a, 0x04, 0x04, 0x09, 0x02, 0x0d, 0x12, 0x04, 0x90, 0x03, 0x04, 0x27, 0x1a, 0x42, 0x20,
0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x73, 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x20, 0x63, 0x65, 0x6c,
0x6c, 0x73, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x20, 0x74,
0x68, 0x61, 0x74, 0x20, 0x66, 0x61, 0x6c, 0x6c, 0x20, 0x77, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x20,
0x74, 0x68, 0x65, 0x20, 0x67, 0x69, 0x76, 0x65, 0x6e, 0x20, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x2e,
0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x09, 0x02, 0x0d, 0x06, 0x12, 0x04, 0x90, 0x03, 0x04, 0x0e,
0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x09, 0x02, 0x0d, 0x01, 0x12, 0x04, 0x90, 0x03, 0x0f, 0x21, 0x0a,
0x0d, 0x0a, 0x05, 0x04, 0x09, 0x02, 0x0d, 0x03, 0x12, 0x04, 0x90, 0x03, 0x24, 0x26, 0x0a, 0xcc,
0x01, 0x0a, 0x04, 0x04, 0x09, 0x02, 0x0e, 0x12, 0x04, 0x95, 0x03, 0x04, 0x2b, 0x1a, 0xbd, 0x01,
0x20, 0x53, 0x6b, 0x69, 0x70, 0x73, 0x20, 0x74, 0x68, 0x65, 0x20, 0x66, 0x69, 0x72, 0x73, 0x74,
0x20, 0x4e, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x20, 0x6f, 0x66, 0x20, 0x65, 0x61, 0x63, 0x68,
0x20, 0x72, 0x6f, 0x77, 0x2c, 0x20, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x20, 0x61,
0x6c, 0x6c, 0x20, 0x73, 0x75, 0x62, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x74, 0x20, 0x63, 0x65,
0x6c, 0x6c, 0x73, 0x2e, 0x0a, 0x20, 0x49, 0x66, 0x20, 0x64, 0x75, 0x70, 0x6c, 0x69, 0x63, 0x61,
0x74, 0x65, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x20, 0x61, 0x72, 0x65, 0x20, 0x70, 0x72, 0x65,
0x73, 0x65, 0x6e, 0x74, 0x2c, 0x20, 0x61, 0x73, 0x20, 0x69, 0x73, 0x20, 0x70, 0x6f, 0x73, 0x73,
0x69, 0x62, 0x6c, 0x65, 0x20, 0x77, 0x68, 0x65, 0x6e, 0x20, 0x75, 0x73, 0x69, 0x6e, 0x67, 0x20,
0x61, 0x6e, 0x20, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6c, 0x65, 0x61, 0x76, 0x65, 0x2c, 0x0a, 0x20,
0x65, 0x61, 0x63, 0x68, 0x20, 0x63, 0x6f, 0x70, 0x79, 0x20, 0x6f, 0x66, 0x20, 0x74, 0x68, 0x65,
0x20, 0x63, 0x65, 0x6c, 0x6c, 0x20, 0x69, 0x73, 0x20, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x65, 0x64,
0x20, 0x73, 0x65, 0x70, 0x61, 0x72, 0x61, 0x74, 0x65, 0x6c, 0x79, 0x2e, 0x0a, 0x0a, 0x0d, 0x0a,
0x05, 0x04, 0x09, 0x02, 0x0e, 0x05, 0x12, 0x04, 0x95, 0x03, 0x04, 0x09, 0x0a, 0x0d, 0x0a, 0x05,
0x04, 0x09, 0x02, 0x0e, 0x01, 0x12, 0x04, 0x95, 0x03, 0x0a, 0x25, 0x0a, 0x0d, 0x0a, 0x05, 0x04,
0x09, 0x02, 0x0e, 0x03, 0x12, 0x04, 0x95, 0x03, 0x28, 0x2a, 0x0a, 0xb4, 0x01, 0x0a, 0x04, 0x04,
0x09, 0x02, 0x0f, 0x12, 0x04, 0x9a, 0x03, 0x04, 0x2a, 0x1a, 0xa5, 0x01, 0x20, 0x4d, 0x61, 0x74,
0x63, 0x68, 0x65, 0x73, 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x20, 0x74, 0x68, 0x65, 0x20, 0x66, 0x69,
0x72, 0x73, 0x74, 0x20, 0x4e, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x20, 0x6f, 0x66, 0x20, 0x65,
0x61, 0x63, 0x68, 0x20, 0x72, 0x6f, 0x77, 0x2e, 0x0a, 0x20, 0x49, 0x66, 0x20, 0x64, 0x75, 0x70,
0x6c, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x20, 0x61, 0x72, 0x65,
0x20, 0x70, 0x72, 0x65, 0x73, 0x65, 0x6e, 0x74, 0x2c, 0x20, 0x61, 0x73, 0x20, 0x69, 0x73, 0x20,
0x70, 0x6f, 0x73, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x20, 0x77, 0x68, 0x65, 0x6e, 0x20, 0x75, 0x73,
0x69, 0x6e, 0x67, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6c, 0x65, 0x61, 0x76,
0x65, 0x2c, 0x0a, 0x20, 0x65, 0x61, 0x63, 0x68, 0x20, 0x63, 0x6f, 0x70, 0x79, 0x20, 0x6f, 0x66,
0x20, 0x74, 0x68, 0x65, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x20, 0x69, 0x73, 0x20, 0x63, 0x6f, 0x75,
0x6e, 0x74, 0x65, 0x64, 0x20, 0x73, 0x65, 0x70, 0x61, 0x72, 0x61, 0x74, 0x65, 0x6c, 0x79, 0x2e,
0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x09, 0x02, 0x0f, 0x05, 0x12, 0x04, 0x9a, 0x03, 0x04, 0x09,
0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x09, 0x02, 0x0f, 0x01, 0x12, 0x04, 0x9a, 0x03, 0x0a, 0x24, 0x0a,
0x0d, 0x0a, 0x05, 0x04, 0x09, 0x02, 0x0f, 0x03, 0x12, 0x04, 0x9a, 0x03, 0x27, 0x29, 0x0a, 0xf3,
0x02, 0x0a, 0x04, 0x04, 0x09, 0x02, 0x10, 0x12, 0x04, 0xa2, 0x03, 0x04, 0x2d, 0x1a, 0xe4, 0x02,
0x20, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x73, 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x20, 0x74, 0x68,
0x65, 0x20, 0x6d, 0x6f, 0x73, 0x74, 0x20, 0x72, 0x65, 0x63, 0x65, 0x6e, 0x74, 0x20, 0x4e, 0x20,
0x63, 0x65, 0x6c, 0x6c, 0x73, 0x20, 0x77, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x20, 0x65, 0x61, 0x63,
0x68, 0x20, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x2e, 0x20, 0x46, 0x6f, 0x72, 0x20, 0x65, 0x78,
0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2c, 0x0a, 0x20, 0x69, 0x66, 0x20, 0x4e, 0x3d, 0x32, 0x2c, 0x20,
0x74, 0x68, 0x69, 0x73, 0x20, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x20, 0x77, 0x6f, 0x75, 0x6c,
0x64, 0x20, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x20, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x20, 0x60,
0x66, 0x6f, 0x6f, 0x3a, 0x62, 0x61, 0x72, 0x60, 0x20, 0x61, 0x74, 0x20, 0x74, 0x69, 0x6d, 0x65,
0x73, 0x74, 0x61, 0x6d, 0x70, 0x73, 0x20, 0x31, 0x30, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x39, 0x2c,
0x0a, 0x20, 0x73, 0x6b, 0x69, 0x70, 0x20, 0x61, 0x6c, 0x6c, 0x20, 0x65, 0x61, 0x72, 0x6c, 0x69,
0x65, 0x72, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x20, 0x69, 0x6e, 0x20, 0x60, 0x66, 0x6f, 0x6f,
0x3a, 0x62, 0x61, 0x72, 0x60, 0x2c, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x20,
0x62, 0x65, 0x67, 0x69, 0x6e, 0x20, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x20, 0x61,
0x67, 0x61, 0x69, 0x6e, 0x20, 0x69, 0x6e, 0x0a, 0x20, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x20,
0x60, 0x66, 0x6f, 0x6f, 0x3a, 0x62, 0x61, 0x72, 0x32, 0x60, 0x2e, 0x0a, 0x20, 0x49, 0x66, 0x20,
0x64, 0x75, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x20,
0x61, 0x72, 0x65, 0x20, 0x70, 0x72, 0x65, 0x73, 0x65, 0x6e, 0x74, 0x2c, 0x20, 0x61, 0x73, 0x20,
0x69, 0x73, 0x20, 0x70, 0x6f, 0x73, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x20, 0x77, 0x68, 0x65, 0x6e,
0x20, 0x75, 0x73, 0x69, 0x6e, 0x67, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6c,
0x65, 0x61, 0x76, 0x65, 0x2c, 0x0a, 0x20, 0x65, 0x61, 0x63, 0x68, 0x20, 0x63, 0x6f, 0x70, 0x79,
0x20, 0x6f, 0x66, 0x20, 0x74, 0x68, 0x65, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x20, 0x69, 0x73, 0x20,
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x65, 0x64, 0x20, 0x73, 0x65, 0x70, 0x61, 0x72, 0x61, 0x74, 0x65,
0x6c, 0x79, 0x2e, 0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x09, 0x02, 0x10, 0x05, 0x12, 0x04, 0xa2,
0x03, 0x04, 0x09, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x09, 0x02, 0x10, 0x01, 0x12, 0x04, 0xa2, 0x03,
0x0a, 0x27, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x09, 0x02, 0x10, 0x03, 0x12, 0x04, 0xa2, 0x03, 0x2a,
0x2c, 0x0a, 0x41, 0x0a, 0x04, 0x04, 0x09, 0x02, 0x11, 0x12, 0x04, 0xa5, 0x03, 0x04, 0x26, 0x1a,
0x33, 0x20, 0x52, 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x73, 0x20, 0x65, 0x61, 0x63, 0x68, 0x20,
0x63, 0x65, 0x6c, 0x6c, 0x27, 0x73, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x77, 0x69, 0x74,
0x68, 0x20, 0x74, 0x68, 0x65, 0x20, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x20, 0x73, 0x74, 0x72, 0x69,
0x6e, 0x67, 0x2e, 0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x09, 0x02, 0x11, 0x05, 0x12, 0x04, 0xa5,
0x03, 0x04, 0x08, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x09, 0x02, 0x11, 0x01, 0x12, 0x04, 0xa5, 0x03,
0x09, 0x20, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x09, 0x02, 0x11, 0x03, 0x12, 0x04, 0xa5, 0x03, 0x23,
0x25, 0x0a, 0xfb, 0x04, 0x0a, 0x04, 0x04, 0x09, 0x02, 0x12, 0x12, 0x04, 0xb4, 0x03, 0x04, 0x28,
0x1a, 0xec, 0x04, 0x20, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x65, 0x73, 0x20, 0x74, 0x68, 0x65, 0x20,
0x67, 0x69, 0x76, 0x65, 0x6e, 0x20, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x20, 0x74, 0x6f, 0x20, 0x61,
0x6c, 0x6c, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x20, 0x69, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20,
0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x20, 0x72, 0x6f, 0x77, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73,
0x20, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x73, 0x0a, 0x20, 0x74, 0x68, 0x65, 0x20, 0x63, 0x6c, 0x69,
0x65, 0x6e, 0x74, 0x20, 0x74, 0x6f, 0x20, 0x64, 0x65, 0x74, 0x65, 0x72, 0x6d, 0x69, 0x6e, 0x65,
0x20, 0x77, 0x68, 0x69, 0x63, 0x68, 0x20, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x20, 0x77,
0x65, 0x72, 0x65, 0x20, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x64, 0x20, 0x66, 0x72, 0x6f,
0x6d, 0x20, 0x77, 0x68, 0x69, 0x63, 0x68, 0x20, 0x70, 0x61, 0x72, 0x74, 0x20, 0x6f, 0x66, 0x0a,
0x20, 0x74, 0x68, 0x65, 0x20, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e, 0x0a, 0x0a, 0x20, 0x56,
0x61, 0x6c, 0x75, 0x65, 0x73, 0x20, 0x6d, 0x75, 0x73, 0x74, 0x20, 0x62, 0x65, 0x20, 0x61, 0x74,
0x20, 0x6d, 0x6f, 0x73, 0x74, 0x20, 0x31, 0x35, 0x20, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74,
0x65, 0x72, 0x73, 0x20, 0x69, 0x6e, 0x20, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x2c, 0x20, 0x61,
0x6e, 0x64, 0x20, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x20, 0x74, 0x68, 0x65, 0x20, 0x52, 0x45, 0x32,
0x0a, 0x20, 0x70, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x20, 0x60, 0x5b, 0x61, 0x2d, 0x7a, 0x30,
0x2d, 0x39, 0x5c, 0x5c, 0x2d, 0x5d, 0x2b, 0x60, 0x0a, 0x0a, 0x20, 0x44, 0x75, 0x65, 0x20, 0x74,
0x6f, 0x20, 0x61, 0x20, 0x74, 0x65, 0x63, 0x68, 0x6e, 0x69, 0x63, 0x61, 0x6c, 0x20, 0x6c, 0x69,
0x6d, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2c, 0x20, 0x69, 0x74, 0x20, 0x69, 0x73, 0x20,
0x6e, 0x6f, 0x74, 0x20, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x6c, 0x79, 0x20, 0x70, 0x6f,
0x73, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x20, 0x74, 0x6f, 0x20, 0x61, 0x70, 0x70, 0x6c, 0x79, 0x0a,
0x20, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x65, 0x20, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73,
0x20, 0x74, 0x6f, 0x20, 0x61, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x2e, 0x20, 0x41, 0x73, 0x20, 0x61,
0x20, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x2c, 0x20, 0x61, 0x20, 0x43, 0x68, 0x61, 0x69, 0x6e,
0x20, 0x6d, 0x61, 0x79, 0x20, 0x68, 0x61, 0x76, 0x65, 0x20, 0x6e, 0x6f, 0x20, 0x6d, 0x6f, 0x72,
0x65, 0x20, 0x74, 0x68, 0x61, 0x6e, 0x0a, 0x20, 0x6f, 0x6e, 0x65, 0x20, 0x73, 0x75, 0x62, 0x2d,
0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x20, 0x77, 0x68, 0x69, 0x63, 0x68, 0x20, 0x63, 0x6f, 0x6e,
0x74, 0x61, 0x69, 0x6e, 0x73, 0x20, 0x61, 0x20, 0x60, 0x61, 0x70, 0x70, 0x6c, 0x79, 0x5f, 0x6c,
0x61, 0x62, 0x65, 0x6c, 0x5f, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x65, 0x72,
0x60, 0x2e, 0x20, 0x49, 0x74, 0x20, 0x69, 0x73, 0x20, 0x6f, 0x6b, 0x61, 0x79, 0x20, 0x66, 0x6f,
0x72, 0x0a, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6c, 0x65, 0x61, 0x76, 0x65,
0x20, 0x74, 0x6f, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x20, 0x6d, 0x75, 0x6c, 0x74,
0x69, 0x70, 0x6c, 0x65, 0x20, 0x60, 0x61, 0x70, 0x70, 0x6c, 0x79, 0x5f, 0x6c, 0x61, 0x62, 0x65,
0x6c, 0x5f, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x65, 0x72, 0x73, 0x60, 0x2c,
0x20, 0x61, 0x73, 0x20, 0x74, 0x68, 0x65, 0x79, 0x0a, 0x20, 0x77, 0x69, 0x6c, 0x6c, 0x20, 0x62,
0x65, 0x20, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x73, 0x65, 0x70,
0x61, 0x72, 0x61, 0x74, 0x65, 0x20, 0x63, 0x6f, 0x70, 0x69, 0x65, 0x73, 0x20, 0x6f, 0x66, 0x20,
0x74, 0x68, 0x65, 0x20, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20,
0x6d, 0x61, 0x79, 0x20, 0x62, 0x65, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x78, 0x65, 0x64, 0x20, 0x69,
0x6e, 0x0a, 0x20, 0x74, 0x68, 0x65, 0x20, 0x66, 0x75, 0x74, 0x75, 0x72, 0x65, 0x2e, 0x0a, 0x0a,
0x0d, 0x0a, 0x05, 0x04, 0x09, 0x02, 0x12, 0x05, 0x12, 0x04, 0xb4, 0x03, 0x04, 0x0a, 0x0a, 0x0d,
0x0a, 0x05, 0x04, 0x09, 0x02, 0x12, 0x01, 0x12, 0x04, 0xb4, 0x03, 0x0b, 0x22, 0x0a, 0x0d, 0x0a,
0x05, 0x04, 0x09, 0x02, 0x12, 0x03, 0x12, 0x04, 0xb4, 0x03, 0x25, 0x27, 0x0a, 0x52, 0x0a, 0x02,
0x04, 0x0a, 0x12, 0x06, 0xb9, 0x03, 0x00, 0xf8, 0x03, 0x01, 0x1a, 0x44, 0x20, 0x53, 0x70, 0x65,
0x63, 0x69, 0x66, 0x69, 0x65, 0x73, 0x20, 0x61, 0x20, 0x70, 0x61, 0x72, 0x74, 0x69, 0x63, 0x75,
0x6c, 0x61, 0x72, 0x20, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x20, 0x74, 0x6f, 0x20, 0x62, 0x65,
0x20, 0x6d, 0x61, 0x64, 0x65, 0x20, 0x74, 0x6f, 0x20, 0x74, 0x68, 0x65, 0x20, 0x63, 0x6f, 0x6e,
0x74, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x6f, 0x66, 0x20, 0x61, 0x20, 0x72, 0x6f, 0x77, 0x2e, 0x0a,
0x0a, 0x0b, 0x0a, 0x03, 0x04, 0x0a, 0x01, 0x12, 0x04, 0xb9, 0x03, 0x08, 0x10, 0x0a, 0x48, 0x0a,
0x04, 0x04, 0x0a, 0x03, 0x00, 0x12, 0x06, 0xbb, 0x03, 0x02, 0xcd, 0x03, 0x03, 0x1a, 0x38, 0x20,
0x41, 0x20, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x77, 0x68, 0x69, 0x63, 0x68,
0x20, 0x73, 0x65, 0x74, 0x73, 0x20, 0x74, 0x68, 0x65, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x20,
0x6f, 0x66, 0x20, 0x74, 0x68, 0x65, 0x20, 0x73, 0x70, 0x65, 0x63, 0x69, 0x66, 0x69, 0x65, 0x64,
0x20, 0x63, 0x65, 0x6c, 0x6c, 0x2e, 0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x0a, 0x03, 0x00, 0x01,
0x12, 0x04, 0xbb, 0x03, 0x0a, 0x11, 0x0a, 0x6d, 0x0a, 0x06, 0x04, 0x0a, 0x03, 0x00, 0x02, 0x00,
0x12, 0x04, 0xbe, 0x03, 0x04, 0x1b, 0x1a, 0x5d, 0x20, 0x54, 0x68, 0x65, 0x20, 0x6e, 0x61, 0x6d,
0x65, 0x20, 0x6f, 0x66, 0x20, 0x74, 0x68, 0x65, 0x20, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x20,
0x69, 0x6e, 0x74, 0x6f, 0x20, 0x77, 0x68, 0x69, 0x63, 0x68, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x64,
0x61, 0x74, 0x61, 0x20, 0x73, 0x68, 0x6f, 0x75, 0x6c, 0x64, 0x20, 0x62, 0x65, 0x20, 0x77, 0x72,
0x69, 0x74, 0x74, 0x65, 0x6e, 0x2e, 0x0a, 0x20, 0x4d, 0x75, 0x73, 0x74, 0x20, 0x6d, 0x61, 0x74,
0x63, 0x68, 0x20, 0x60, 0x5b, 0x2d, 0x5f, 0x2e, 0x61, 0x2d, 0x7a, 0x41, 0x2d, 0x5a, 0x30, 0x2d,
0x39, 0x5d, 0x2b, 0x60, 0x0a, 0x0a, 0x11, 0x0a, 0x07, 0x04, 0x0a, 0x03, 0x00, 0x02, 0x00, 0x04,
0x12, 0x06, 0xbe, 0x03, 0x04, 0xbb, 0x03, 0x13, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x0a, 0x03, 0x00,
0x02, 0x00, 0x05, 0x12, 0x04, 0xbe, 0x03, 0x04, 0x0a, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x0a, 0x03,
0x00, 0x02, 0x00, 0x01, 0x12, 0x04, 0xbe, 0x03, 0x0b, 0x16, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x0a,
0x03, 0x00, 0x02, 0x00, 0x03, 0x12, 0x04, 0xbe, 0x03, 0x19, 0x1a, 0x0a, 0x89, 0x01, 0x0a, 0x06,
0x04, 0x0a, 0x03, 0x00, 0x02, 0x01, 0x12, 0x04, 0xc2, 0x03, 0x04, 0x1f, 0x1a, 0x79, 0x20, 0x54,
0x68, 0x65, 0x20, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x66, 0x69, 0x65, 0x72, 0x20, 0x6f, 0x66, 0x20,
0x74, 0x68, 0x65, 0x20, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x20, 0x69, 0x6e, 0x74, 0x6f, 0x20,
0x77, 0x68, 0x69, 0x63, 0x68, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x64, 0x61, 0x74, 0x61, 0x20, 0x73,
0x68, 0x6f, 0x75, 0x6c, 0x64, 0x20, 0x62, 0x65, 0x20, 0x77, 0x72, 0x69, 0x74, 0x74, 0x65, 0x6e,
0x2e, 0x0a, 0x20, 0x43, 0x61, 0x6e, 0x20, 0x62, 0x65, 0x20, 0x61, 0x6e, 0x79, 0x20, 0x62, 0x79,
0x74, 0x65, 0x20, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x2c, 0x20, 0x69, 0x6e, 0x63, 0x6c, 0x75,
0x64, 0x69, 0x6e, 0x67, 0x20, 0x74, 0x68, 0x65, 0x20, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x20, 0x73,
0x74, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x0a, 0x0a, 0x11, 0x0a, 0x07, 0x04, 0x0a, 0x03, 0x00, 0x02,
0x01, 0x04, 0x12, 0x06, 0xc2, 0x03, 0x04, 0xbe, 0x03, 0x1b, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x0a,
0x03, 0x00, 0x02, 0x01, 0x05, 0x12, 0x04, 0xc2, 0x03, 0x04, 0x09, 0x0a, 0x0f, 0x0a, 0x07, 0x04,
0x0a, 0x03, 0x00, 0x02, 0x01, 0x01, 0x12, 0x04, 0xc2, 0x03, 0x0a, 0x1a, 0x0a, 0x0f, 0x0a, 0x07,
0x04, 0x0a, 0x03, 0x00, 0x02, 0x01, 0x03, 0x12, 0x04, 0xc2, 0x03, 0x1d, 0x1e, 0x0a, 0xd1, 0x02,
0x0a, 0x06, 0x04, 0x0a, 0x03, 0x00, 0x02, 0x02, 0x12, 0x04, 0xc9, 0x03, 0x04, 0x1f, 0x1a, 0xc0,
0x02, 0x20, 0x54, 0x68, 0x65, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x20,
0x6f, 0x66, 0x20, 0x74, 0x68, 0x65, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x20, 0x69, 0x6e, 0x74, 0x6f,
0x20, 0x77, 0x68, 0x69, 0x63, 0x68, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x64, 0x61, 0x74, 0x61, 0x20,
0x73, 0x68, 0x6f, 0x75, 0x6c, 0x64, 0x20, 0x62, 0x65, 0x20, 0x77, 0x72, 0x69, 0x74, 0x74, 0x65,
0x6e, 0x2e, 0x0a, 0x20, 0x55, 0x73, 0x65, 0x20, 0x2d, 0x31, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x63,
0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x20, 0x42, 0x69, 0x67, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x20,
0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x0a, 0x20, 0x4f, 0x74,
0x68, 0x65, 0x72, 0x77, 0x69, 0x73, 0x65, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x20, 0x63, 0x6c, 0x69,
0x65, 0x6e, 0x74, 0x20, 0x73, 0x68, 0x6f, 0x75, 0x6c, 0x64, 0x20, 0x73, 0x65, 0x74, 0x20, 0x74,
0x68, 0x69, 0x73, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x69, 0x74, 0x73, 0x65, 0x6c, 0x66,
0x2c, 0x20, 0x6e, 0x6f, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x74, 0x68, 0x61, 0x74, 0x20, 0x74, 0x68,
0x65, 0x0a, 0x20, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65,
0x20, 0x69, 0x73, 0x20, 0x61, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x20,
0x6f, 0x66, 0x20, 0x7a, 0x65, 0x72, 0x6f, 0x20, 0x69, 0x66, 0x20, 0x74, 0x68, 0x65, 0x20, 0x66,
0x69, 0x65, 0x6c, 0x64, 0x20, 0x69, 0x73, 0x20, 0x6c, 0x65, 0x66, 0x74, 0x20, 0x75, 0x6e, 0x73,
0x70, 0x65, 0x63, 0x69, 0x66, 0x69, 0x65, 0x64, 0x2e, 0x0a, 0x20, 0x56, 0x61, 0x6c, 0x75, 0x65,
0x73, 0x20, 0x6d, 0x75, 0x73, 0x74, 0x20, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x20, 0x74, 0x68, 0x65,
0x20, 0x67, 0x72, 0x61, 0x6e, 0x75, 0x6c, 0x61, 0x72, 0x69, 0x74, 0x79, 0x20, 0x6f, 0x66, 0x20,
0x74, 0x68, 0x65, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x20, 0x28, 0x65, 0x2e, 0x67, 0x2e, 0x20,
0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x2c, 0x20, 0x6d, 0x69, 0x6c, 0x6c, 0x69, 0x73, 0x29, 0x2e,
0x0a, 0x0a, 0x11, 0x0a, 0x07, 0x04, 0x0a, 0x03, 0x00, 0x02, 0x02, 0x04, 0x12, 0x06, 0xc9, 0x03,
0x04, 0xc2, 0x03, 0x1f, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x0a, 0x03, 0x00, 0x02, 0x02, 0x05, 0x12,
0x04, 0xc9, 0x03, 0x04, 0x09, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x0a, 0x03, 0x00, 0x02, 0x02, 0x01,
0x12, 0x04, 0xc9, 0x03, 0x0a, 0x1a, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x0a, 0x03, 0x00, 0x02, 0x02,
0x03, 0x12, 0x04, 0xc9, 0x03, 0x1d, 0x1e, 0x0a, 0x42, 0x0a, 0x06, 0x04, 0x0a, 0x03, 0x00, 0x02,
0x03, 0x12, 0x04, 0xcc, 0x03, 0x04, 0x14, 0x1a, 0x32, 0x20, 0x54, 0x68, 0x65, 0x20, 0x76, 0x61,
0x6c, 0x75, 0x65, 0x20, 0x74, 0x6f, 0x20, 0x62, 0x65, 0x20, 0x77, 0x72, 0x69, 0x74, 0x74, 0x65,
0x6e, 0x20, 0x69, 0x6e, 0x74, 0x6f, 0x20, 0x74, 0x68, 0x65, 0x20, 0x73, 0x70, 0x65, 0x63, 0x69,
0x66, 0x69, 0x65, 0x64, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x2e, 0x0a, 0x0a, 0x11, 0x0a, 0x07, 0x04,
0x0a, 0x03, 0x00, 0x02, 0x03, 0x04, 0x12, 0x06, 0xcc, 0x03, 0x04, 0xc9, 0x03, 0x1f, 0x0a, 0x0f,
0x0a, 0x07, 0x04, 0x0a, 0x03, 0x00, 0x02, 0x03, 0x05, 0x12, 0x04, 0xcc, 0x03, 0x04, 0x09, 0x0a,
0x0f, 0x0a, 0x07, 0x04, 0x0a, 0x03, 0x00, 0x02, 0x03, 0x01, 0x12, 0x04, 0xcc, 0x03, 0x0a, 0x0f,
0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x0a, 0x03, 0x00, 0x02, 0x03, 0x03, 0x12, 0x04, 0xcc, 0x03, 0x12,
0x13, 0x0a, 0x8d, 0x01, 0x0a, 0x04, 0x04, 0x0a, 0x03, 0x01, 0x12, 0x06, 0xd1, 0x03, 0x02, 0xdc,
0x03, 0x03, 0x1a, 0x7d, 0x20, 0x41, 0x20, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20,
0x77, 0x68, 0x69, 0x63, 0x68, 0x20, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x73, 0x20, 0x63, 0x65,
0x6c, 0x6c, 0x73, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x74, 0x68, 0x65, 0x20, 0x73, 0x70, 0x65,
0x63, 0x69, 0x66, 0x69, 0x65, 0x64, 0x20, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x2c, 0x20, 0x6f,
0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x6c, 0x79, 0x0a, 0x20, 0x72, 0x65, 0x73, 0x74, 0x72,
0x69, 0x63, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x74, 0x68, 0x65, 0x20, 0x64, 0x65, 0x6c, 0x65, 0x74,
0x69, 0x6f, 0x6e, 0x73, 0x20, 0x74, 0x6f, 0x20, 0x61, 0x20, 0x67, 0x69, 0x76, 0x65, 0x6e, 0x20,
0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x20, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x2e,
0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x0a, 0x03, 0x01, 0x01, 0x12, 0x04, 0xd1, 0x03, 0x0a, 0x1a,
0x0a, 0x6a, 0x0a, 0x06, 0x04, 0x0a, 0x03, 0x01, 0x02, 0x00, 0x12, 0x04, 0xd4, 0x03, 0x04, 0x1b,
0x1a, 0x5a, 0x20, 0x54, 0x68, 0x65, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x20, 0x6f, 0x66, 0x20, 0x74,
0x68, 0x65, 0x20, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x77,
0x68, 0x69, 0x63, 0x68, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x20, 0x73, 0x68, 0x6f, 0x75, 0x6c,
0x64, 0x20, 0x62, 0x65, 0x20, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x2e, 0x0a, 0x20, 0x4d,
0x75, 0x73, 0x74, 0x20, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x20, 0x60, 0x5b, 0x2d, 0x5f, 0x2e, 0x61,
0x2d, 0x7a, 0x41, 0x2d, 0x5a, 0x30, 0x2d, 0x39, 0x5d, 0x2b, 0x60, 0x0a, 0x0a, 0x11, 0x0a, 0x07,
0x04, 0x0a, 0x03, 0x01, 0x02, 0x00, 0x04, 0x12, 0x06, 0xd4, 0x03, 0x04, 0xd1, 0x03, 0x1c, 0x0a,
0x0f, 0x0a, 0x07, 0x04, 0x0a, 0x03, 0x01, 0x02, 0x00, 0x05, 0x12, 0x04, 0xd4, 0x03, 0x04, 0x0a,
0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x0a, 0x03, 0x01, 0x02, 0x00, 0x01, 0x12, 0x04, 0xd4, 0x03, 0x0b,
0x16, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x0a, 0x03, 0x01, 0x02, 0x00, 0x03, 0x12, 0x04, 0xd4, 0x03,
0x19, 0x1a, 0x0a, 0x86, 0x01, 0x0a, 0x06, 0x04, 0x0a, 0x03, 0x01, 0x02, 0x01, 0x12, 0x04, 0xd8,
0x03, 0x04, 0x1f, 0x1a, 0x76, 0x20, 0x54, 0x68, 0x65, 0x20, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x66,
0x69, 0x65, 0x72, 0x20, 0x6f, 0x66, 0x20, 0x74, 0x68, 0x65, 0x20, 0x63, 0x6f, 0x6c, 0x75, 0x6d,
0x6e, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x77, 0x68, 0x69, 0x63, 0x68, 0x20, 0x63, 0x65, 0x6c,
0x6c, 0x73, 0x20, 0x73, 0x68, 0x6f, 0x75, 0x6c, 0x64, 0x20, 0x62, 0x65, 0x20, 0x64, 0x65, 0x6c,
0x65, 0x74, 0x65, 0x64, 0x2e, 0x0a, 0x20, 0x43, 0x61, 0x6e, 0x20, 0x62, 0x65, 0x20, 0x61, 0x6e,
0x79, 0x20, 0x62, 0x79, 0x74, 0x65, 0x20, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x2c, 0x20, 0x69,
0x6e, 0x63, 0x6c, 0x75, 0x64, 0x69, 0x6e, 0x67, 0x20, 0x74, 0x68, 0x65, 0x20, 0x65, 0x6d, 0x70,
0x74, 0x79, 0x20, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x0a, 0x0a, 0x11, 0x0a, 0x07, 0x04,
0x0a, 0x03, 0x01, 0x02, 0x01, 0x04, 0x12, 0x06, 0xd8, 0x03, 0x04, 0xd4, 0x03, 0x1b, 0x0a, 0x0f,
0x0a, 0x07, 0x04, 0x0a, 0x03, 0x01, 0x02, 0x01, 0x05, 0x12, 0x04, 0xd8, 0x03, 0x04, 0x09, 0x0a,
0x0f, 0x0a, 0x07, 0x04, 0x0a, 0x03, 0x01, 0x02, 0x01, 0x01, 0x12, 0x04, 0xd8, 0x03, 0x0a, 0x1a,
0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x0a, 0x03, 0x01, 0x02, 0x01, 0x03, 0x12, 0x04, 0xd8, 0x03, 0x1d,
0x1e, 0x0a, 0x4f, 0x0a, 0x06, 0x04, 0x0a, 0x03, 0x01, 0x02, 0x02, 0x12, 0x04, 0xdb, 0x03, 0x04,
0x22, 0x1a, 0x3f, 0x20, 0x54, 0x68, 0x65, 0x20, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x20, 0x6f, 0x66,
0x20, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x73, 0x20, 0x77, 0x69, 0x74, 0x68,
0x69, 0x6e, 0x20, 0x77, 0x68, 0x69, 0x63, 0x68, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x20, 0x73,
0x68, 0x6f, 0x75, 0x6c, 0x64, 0x20, 0x62, 0x65, 0x20, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64,
0x2e, 0x0a, 0x0a, 0x11, 0x0a, 0x07, 0x04, 0x0a, 0x03, 0x01, 0x02, 0x02, 0x04, 0x12, 0x06, 0xdb,
0x03, 0x04, 0xd8, 0x03, 0x1f, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x0a, 0x03, 0x01, 0x02, 0x02, 0x06,
0x12, 0x04, 0xdb, 0x03, 0x04, 0x12, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x0a, 0x03, 0x01, 0x02, 0x02,
0x01, 0x12, 0x04, 0xdb, 0x03, 0x13, 0x1d, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x0a, 0x03, 0x01, 0x02,
0x02, 0x03, 0x12, 0x04, 0xdb, 0x03, 0x20, 0x21, 0x0a, 0x56, 0x0a, 0x04, 0x04, 0x0a, 0x03, 0x02,
0x12, 0x06, 0xdf, 0x03, 0x02, 0xe3, 0x03, 0x03, 0x1a, 0x46, 0x20, 0x41, 0x20, 0x4d, 0x75, 0x74,
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x77, 0x68, 0x69, 0x63, 0x68, 0x20, 0x64, 0x65, 0x6c, 0x65,
0x74, 0x65, 0x73, 0x20, 0x61, 0x6c, 0x6c, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x20, 0x66, 0x72,
0x6f, 0x6d, 0x20, 0x74, 0x68, 0x65, 0x20, 0x73, 0x70, 0x65, 0x63, 0x69, 0x66, 0x69, 0x65, 0x64,
0x20, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x20, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x2e, 0x0a,
0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x0a, 0x03, 0x02, 0x01, 0x12, 0x04, 0xdf, 0x03, 0x0a, 0x1a, 0x0a,
0x6a, 0x0a, 0x06, 0x04, 0x0a, 0x03, 0x02, 0x02, 0x00, 0x12, 0x04, 0xe2, 0x03, 0x04, 0x1b, 0x1a,
0x5a, 0x20, 0x54, 0x68, 0x65, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x20, 0x6f, 0x66, 0x20, 0x74, 0x68,
0x65, 0x20, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x77, 0x68,
0x69, 0x63, 0x68, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x20, 0x73, 0x68, 0x6f, 0x75, 0x6c, 0x64,
0x20, 0x62, 0x65, 0x20, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x2e, 0x0a, 0x20, 0x4d, 0x75,
0x73, 0x74, 0x20, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x20, 0x60, 0x5b, 0x2d, 0x5f, 0x2e, 0x61, 0x2d,
0x7a, 0x41, 0x2d, 0x5a, 0x30, 0x2d, 0x39, 0x5d, 0x2b, 0x60, 0x0a, 0x0a, 0x11, 0x0a, 0x07, 0x04,
0x0a, 0x03, 0x02, 0x02, 0x00, 0x04, 0x12, 0x06, 0xe2, 0x03, 0x04, 0xdf, 0x03, 0x1c, 0x0a, 0x0f,
0x0a, 0x07, 0x04, 0x0a, 0x03, 0x02, 0x02, 0x00, 0x05, 0x12, 0x04, 0xe2, 0x03, 0x04, 0x0a, 0x0a,
0x0f, 0x0a, 0x07, 0x04, 0x0a, 0x03, 0x02, 0x02, 0x00, 0x01, 0x12, 0x04, 0xe2, 0x03, 0x0b, 0x16,
0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x0a, 0x03, 0x02, 0x02, 0x00, 0x03, 0x12, 0x04, 0xe2, 0x03, 0x19,
0x1a, 0x0a, 0x4d, 0x0a, 0x04, 0x04, 0x0a, 0x03, 0x03, 0x12, 0x06, 0xe6, 0x03, 0x02, 0xe8, 0x03,
0x03, 0x1a, 0x3d, 0x20, 0x41, 0x20, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x77,
0x68, 0x69, 0x63, 0x68, 0x20, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x73, 0x20, 0x61, 0x6c, 0x6c,
0x20, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x74, 0x68, 0x65, 0x20,
0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x20, 0x72, 0x6f, 0x77, 0x2e, 0x0a,
0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x0a, 0x03, 0x03, 0x01, 0x12, 0x04, 0xe6, 0x03, 0x0a, 0x17, 0x0a,
0x40, 0x0a, 0x04, 0x04, 0x0a, 0x08, 0x00, 0x12, 0x06, 0xeb, 0x03, 0x02, 0xf7, 0x03, 0x03, 0x1a,
0x30, 0x20, 0x57, 0x68, 0x69, 0x63, 0x68, 0x20, 0x6f, 0x66, 0x20, 0x74, 0x68, 0x65, 0x20, 0x70,
0x6f, 0x73, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x20, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e,
0x20, 0x74, 0x79, 0x70, 0x65, 0x73, 0x20, 0x74, 0x6f, 0x20, 0x61, 0x70, 0x70, 0x6c, 0x79, 0x2e,
0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x0a, 0x08, 0x00, 0x01, 0x12, 0x04, 0xeb, 0x03, 0x08, 0x10,
0x0a, 0x23, 0x0a, 0x04, 0x04, 0x0a, 0x02, 0x00, 0x12, 0x04, 0xed, 0x03, 0x04, 0x19, 0x1a, 0x15,
0x20, 0x53, 0x65, 0x74, 0x20, 0x61, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x27, 0x73, 0x20, 0x76, 0x61,
0x6c, 0x75, 0x65, 0x2e, 0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x0a, 0x02, 0x00, 0x06, 0x12, 0x04,
0xed, 0x03, 0x04, 0x0b, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x0a, 0x02, 0x00, 0x01, 0x12, 0x04, 0xed,
0x03, 0x0c, 0x14, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x0a, 0x02, 0x00, 0x03, 0x12, 0x04, 0xed, 0x03,
0x17, 0x18, 0x0a, 0x2c, 0x0a, 0x04, 0x04, 0x0a, 0x02, 0x01, 0x12, 0x04, 0xf0, 0x03, 0x04, 0x2c,
0x1a, 0x1e, 0x20, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x73, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x73,
0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x61, 0x20, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x2e, 0x0a,
0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x0a, 0x02, 0x01, 0x06, 0x12, 0x04, 0xf0, 0x03, 0x04, 0x14, 0x0a,
0x0d, 0x0a, 0x05, 0x04, 0x0a, 0x02, 0x01, 0x01, 0x12, 0x04, 0xf0, 0x03, 0x15, 0x27, 0x0a, 0x0d,
0x0a, 0x05, 0x04, 0x0a, 0x02, 0x01, 0x03, 0x12, 0x04, 0xf0, 0x03, 0x2a, 0x2b, 0x0a, 0x33, 0x0a,
0x04, 0x04, 0x0a, 0x02, 0x02, 0x12, 0x04, 0xf3, 0x03, 0x04, 0x2c, 0x1a, 0x25, 0x20, 0x44, 0x65,
0x6c, 0x65, 0x74, 0x65, 0x73, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x20, 0x66, 0x72, 0x6f, 0x6d,
0x20, 0x61, 0x20, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x20, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79,
0x2e, 0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x0a, 0x02, 0x02, 0x06, 0x12, 0x04, 0xf3, 0x03, 0x04,
0x14, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x0a, 0x02, 0x02, 0x01, 0x12, 0x04, 0xf3, 0x03, 0x15, 0x27,
0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x0a, 0x02, 0x02, 0x03, 0x12, 0x04, 0xf3, 0x03, 0x2a, 0x2b, 0x0a,
0x32, 0x0a, 0x04, 0x04, 0x0a, 0x02, 0x03, 0x12, 0x04, 0xf6, 0x03, 0x04, 0x26, 0x1a, 0x24, 0x20,
0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x73, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x20, 0x66, 0x72,
0x6f, 0x6d, 0x20, 0x74, 0x68, 0x65, 0x20, 0x65, 0x6e, 0x74, 0x69, 0x72, 0x65, 0x20, 0x72, 0x6f,
0x77, 0x2e, 0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x0a, 0x02, 0x03, 0x06, 0x12, 0x04, 0xf6, 0x03,
0x04, 0x11, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x0a, 0x02, 0x03, 0x01, 0x12, 0x04, 0xf6, 0x03, 0x12,
0x21, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x0a, 0x02, 0x03, 0x03, 0x12, 0x04, 0xf6, 0x03, 0x24, 0x25,
0x0a, 0x6d, 0x0a, 0x02, 0x04, 0x0b, 0x12, 0x06, 0xfc, 0x03, 0x00, 0x94, 0x04, 0x01, 0x1a, 0x5f,
0x20, 0x53, 0x70, 0x65, 0x63, 0x69, 0x66, 0x69, 0x65, 0x73, 0x20, 0x61, 0x6e, 0x20, 0x61, 0x74,
0x6f, 0x6d, 0x69, 0x63, 0x20, 0x72, 0x65, 0x61, 0x64, 0x2f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x79,
0x2f, 0x77, 0x72, 0x69, 0x74, 0x65, 0x20, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
0x20, 0x6f, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x6c, 0x61, 0x74, 0x65, 0x73, 0x74, 0x20, 0x76,
0x61, 0x6c, 0x75, 0x65, 0x20, 0x6f, 0x66, 0x20, 0x74, 0x68, 0x65, 0x0a, 0x20, 0x73, 0x70, 0x65,
0x63, 0x69, 0x66, 0x69, 0x65, 0x64, 0x20, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x2e, 0x0a, 0x0a,
0x0b, 0x0a, 0x03, 0x04, 0x0b, 0x01, 0x12, 0x04, 0xfc, 0x03, 0x08, 0x1b, 0x0a, 0x76, 0x0a, 0x04,
0x04, 0x0b, 0x02, 0x00, 0x12, 0x04, 0xff, 0x03, 0x02, 0x19, 0x1a, 0x68, 0x20, 0x54, 0x68, 0x65,
0x20, 0x6e, 0x61, 0x6d, 0x65, 0x20, 0x6f, 0x66, 0x20, 0x74, 0x68, 0x65, 0x20, 0x66, 0x61, 0x6d,
0x69, 0x6c, 0x79, 0x20, 0x74, 0x6f, 0x20, 0x77, 0x68, 0x69, 0x63, 0x68, 0x20, 0x74, 0x68, 0x65,
0x20, 0x72, 0x65, 0x61, 0x64, 0x2f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x79, 0x2f, 0x77, 0x72, 0x69,
0x74, 0x65, 0x20, 0x73, 0x68, 0x6f, 0x75, 0x6c, 0x64, 0x20, 0x62, 0x65, 0x20, 0x61, 0x70, 0x70,
0x6c, 0x69, 0x65, 0x64, 0x2e, 0x0a, 0x20, 0x4d, 0x75, 0x73, 0x74, 0x20, 0x6d, 0x61, 0x74, 0x63,
0x68, 0x20, 0x60, 0x5b, 0x2d, 0x5f, 0x2e, 0x61, 0x2d, 0x7a, 0x41, 0x2d, 0x5a, 0x30, 0x2d, 0x39,
0x5d, 0x2b, 0x60, 0x0a, 0x0a, 0x0f, 0x0a, 0x05, 0x04, 0x0b, 0x02, 0x00, 0x04, 0x12, 0x06, 0xff,
0x03, 0x02, 0xfc, 0x03, 0x1d, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x0b, 0x02, 0x00, 0x05, 0x12, 0x04,
0xff, 0x03, 0x02, 0x08, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x0b, 0x02, 0x00, 0x01, 0x12, 0x04, 0xff,
0x03, 0x09, 0x14, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x0b, 0x02, 0x00, 0x03, 0x12, 0x04, 0xff, 0x03,
0x17, 0x18, 0x0a, 0x94, 0x01, 0x0a, 0x04, 0x04, 0x0b, 0x02, 0x01, 0x12, 0x04, 0x84, 0x04, 0x02,
0x1d, 0x1a, 0x85, 0x01, 0x20, 0x54, 0x68, 0x65, 0x20, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x66, 0x69,
0x65, 0x72, 0x20, 0x6f, 0x66, 0x20, 0x74, 0x68, 0x65, 0x20, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e,
0x20, 0x74, 0x6f, 0x20, 0x77, 0x68, 0x69, 0x63, 0x68, 0x20, 0x74, 0x68, 0x65, 0x20, 0x72, 0x65,
0x61, 0x64, 0x2f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x79, 0x2f, 0x77, 0x72, 0x69, 0x74, 0x65, 0x20,
0x73, 0x68, 0x6f, 0x75, 0x6c, 0x64, 0x20, 0x62, 0x65, 0x0a, 0x20, 0x61, 0x70, 0x70, 0x6c, 0x69,
0x65, 0x64, 0x2e, 0x0a, 0x20, 0x43, 0x61, 0x6e, 0x20, 0x62, 0x65, 0x20, 0x61, 0x6e, 0x79, 0x20,
0x62, 0x79, 0x74, 0x65, 0x20, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x2c, 0x20, 0x69, 0x6e, 0x63,
0x6c, 0x75, 0x64, 0x69, 0x6e, 0x67, 0x20, 0x74, 0x68, 0x65, 0x20, 0x65, 0x6d, 0x70, 0x74, 0x79,
0x20, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x0a, 0x0a, 0x0f, 0x0a, 0x05, 0x04, 0x0b, 0x02,
0x01, 0x04, 0x12, 0x06, 0x84, 0x04, 0x02, 0xff, 0x03, 0x19, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x0b,
0x02, 0x01, 0x05, 0x12, 0x04, 0x84, 0x04, 0x02, 0x07, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x0b, 0x02,
0x01, 0x01, 0x12, 0x04, 0x84, 0x04, 0x08, 0x18, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x0b, 0x02, 0x01,
0x03, 0x12, 0x04, 0x84, 0x04, 0x1b, 0x1c, 0x0a, 0x6a, 0x0a, 0x04, 0x04, 0x0b, 0x08, 0x00, 0x12,
0x06, 0x88, 0x04, 0x02, 0x93, 0x04, 0x03, 0x1a, 0x5a, 0x20, 0x54, 0x68, 0x65, 0x20, 0x72, 0x75,
0x6c, 0x65, 0x20, 0x75, 0x73, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x64, 0x65, 0x74, 0x65, 0x72,
0x6d, 0x69, 0x6e, 0x65, 0x20, 0x74, 0x68, 0x65, 0x20, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x27,
0x73, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x6c, 0x61, 0x74, 0x65, 0x73, 0x74, 0x20, 0x76, 0x61, 0x6c,
0x75, 0x65, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x69, 0x74, 0x73, 0x20, 0x63, 0x75, 0x72, 0x72,
0x65, 0x6e, 0x74, 0x0a, 0x20, 0x6c, 0x61, 0x74, 0x65, 0x73, 0x74, 0x20, 0x76, 0x61, 0x6c, 0x75,
0x65, 0x2e, 0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x0b, 0x08, 0x00, 0x01, 0x12, 0x04, 0x88, 0x04,
0x08, 0x0c, 0x0a, 0xab, 0x01, 0x0a, 0x04, 0x04, 0x0b, 0x02, 0x02, 0x12, 0x04, 0x8c, 0x04, 0x04,
0x1b, 0x1a, 0x9c, 0x01, 0x20, 0x52, 0x75, 0x6c, 0x65, 0x20, 0x73, 0x70, 0x65, 0x63, 0x69, 0x66,
0x79, 0x69, 0x6e, 0x67, 0x20, 0x74, 0x68, 0x61, 0x74, 0x20, 0x60, 0x61, 0x70, 0x70, 0x65, 0x6e,
0x64, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x60, 0x20, 0x62, 0x65, 0x20, 0x61, 0x70, 0x70, 0x65,
0x6e, 0x64, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x74, 0x68, 0x65, 0x20, 0x65, 0x78, 0x69, 0x73,
0x74, 0x69, 0x6e, 0x67, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x2e, 0x0a, 0x20, 0x49, 0x66, 0x20,
0x74, 0x68, 0x65, 0x20, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x65, 0x64, 0x20, 0x63, 0x65, 0x6c,
0x6c, 0x20, 0x69, 0x73, 0x20, 0x75, 0x6e, 0x73, 0x65, 0x74, 0x2c, 0x20, 0x69, 0x74, 0x20, 0x77,
0x69, 0x6c, 0x6c, 0x20, 0x62, 0x65, 0x20, 0x74, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x20, 0x61,
0x73, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x20, 0x74, 0x68, 0x65,
0x0a, 0x20, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x20, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x0a,
0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x0b, 0x02, 0x02, 0x05, 0x12, 0x04, 0x8c, 0x04, 0x04, 0x09, 0x0a,
0x0d, 0x0a, 0x05, 0x04, 0x0b, 0x02, 0x02, 0x01, 0x12, 0x04, 0x8c, 0x04, 0x0a, 0x16, 0x0a, 0x0d,
0x0a, 0x05, 0x04, 0x0b, 0x02, 0x02, 0x03, 0x12, 0x04, 0x8c, 0x04, 0x19, 0x1a, 0x0a, 0xb3, 0x02,
0x0a, 0x04, 0x04, 0x0b, 0x02, 0x03, 0x12, 0x04, 0x92, 0x04, 0x04, 0x1f, 0x1a, 0xa4, 0x02, 0x20,
0x52, 0x75, 0x6c, 0x65, 0x20, 0x73, 0x70, 0x65, 0x63, 0x69, 0x66, 0x79, 0x69, 0x6e, 0x67, 0x20,
0x74, 0x68, 0x61, 0x74, 0x20, 0x60, 0x69, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f,
0x61, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x60, 0x20, 0x62, 0x65, 0x20, 0x61, 0x64, 0x64, 0x65, 0x64,
0x20, 0x74, 0x6f, 0x20, 0x74, 0x68, 0x65, 0x20, 0x65, 0x78, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67,
0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x2e, 0x0a, 0x20, 0x49, 0x66, 0x20, 0x74, 0x68, 0x65, 0x20,
0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x65, 0x64, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x20, 0x69, 0x73,
0x20, 0x75, 0x6e, 0x73, 0x65, 0x74, 0x2c, 0x20, 0x69, 0x74, 0x20, 0x77, 0x69, 0x6c, 0x6c, 0x20,
0x62, 0x65, 0x20, 0x74, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x20, 0x61, 0x73, 0x20, 0x63, 0x6f,
0x6e, 0x74, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x20, 0x61, 0x20, 0x7a, 0x65, 0x72, 0x6f, 0x2e,
0x0a, 0x20, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x77, 0x69, 0x73, 0x65, 0x2c, 0x20, 0x74, 0x68, 0x65,
0x20, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x65, 0x64, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x20, 0x6d,
0x75, 0x73, 0x74, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x20, 0x61, 0x6e, 0x20, 0x38,
0x2d, 0x62, 0x79, 0x74, 0x65, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x28, 0x69, 0x6e, 0x74,
0x65, 0x72, 0x70, 0x72, 0x65, 0x74, 0x65, 0x64, 0x0a, 0x20, 0x61, 0x73, 0x20, 0x61, 0x20, 0x36,
0x34, 0x2d, 0x62, 0x69, 0x74, 0x20, 0x62, 0x69, 0x67, 0x2d, 0x65, 0x6e, 0x64, 0x69, 0x61, 0x6e,
0x20, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x65, 0x72, 0x29,
0x2c, 0x20, 0x6f, 0x72, 0x20, 0x74, 0x68, 0x65, 0x20, 0x65, 0x6e, 0x74, 0x69, 0x72, 0x65, 0x20,
0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x20, 0x77, 0x69, 0x6c, 0x6c, 0x20, 0x66, 0x61, 0x69,
0x6c, 0x2e, 0x0a, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x0b, 0x02, 0x03, 0x05, 0x12, 0x04, 0x92, 0x04,
0x04, 0x09, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x0b, 0x02, 0x03, 0x01, 0x12, 0x04, 0x92, 0x04, 0x0a,
0x1a, 0x0a, 0x0d, 0x0a, 0x05, 0x04, 0x0b, 0x02, 0x03, 0x03, 0x12, 0x04, 0x92, 0x04, 0x1d, 0x1e,
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
];
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()
})
}
}